473,408 Members | 1,830 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,408 software developers and data experts.

Yet another free() question.

I have a question regarding the use of free() based on some code I need
to decipher:

{
struct A {<A fields>};
struct B {<A fields+ <Bfields>};

typedef struct A Aobj;
typedef struct B Bobj;

Aobj *ptrToA = (struct A*) calloc(1,sizeof(struct B));

free(ptrToA);
}

Will this free the entire memory block of size sizeof(struct B), or
only a block starting at ptrToA of size sizeof(struct A)? The posts I
have read strongly suggest this will, as probably intended, free the
entire block produced by calloc(), but in those posts it seems
sizeof(Aobj) == N*sizeof(Bobj), i.e. the size of the allocated block is
an integer multiple of the dereferenced type of the pointer to which
the allocated block's void pointer is cast (Don't know how to express
this well). Such would be the case when allocating a single instance
of an object or an array of the same objects on the heap. Just want to
make sure what is done above is safe (assuming the type interpretation
of the allocated block elsewhere is correct.)

Thank you for your time.

Jan 8 '07 #1
19 1471
la*******@gmail.com wrote:
I have a question regarding the use of free() based on some code I need
to decipher:

{
struct A {<A fields>};
struct B {<A fields+ <Bfields>};

typedef struct A Aobj;
typedef struct B Bobj;

Aobj *ptrToA = (struct A*) calloc(1,sizeof(struct B));

free(ptrToA);
}

Will this free the entire memory block of size sizeof(struct B), or
only a block starting at ptrToA of size sizeof(struct A)? The posts I
have read strongly suggest this will, as probably intended, free the
entire block produced by calloc(),
Yes , that's what it will do. It is worth noting that if the
calloc succeeded then it allocated memory which is *at
least* as large as sizeof(struct B) , it doesn't have to be
exactly sizeof(struct B).
but in those posts it seems
sizeof(Aobj) == N*sizeof(Bobj), i.e. the size of the allocated block is
an integer multiple of the dereferenced type of the pointer to which
the allocated block's void pointer is cast (Don't know how to express
this well).
I will guess that by "dereferenced type of the pointer" you
mean the type of object the pointer points to. In any case
whether sizeof(Aobj) == N*sizeof(Bobj) holds or whether
sizeof(*Aobj) == N*sizeof(*Bobj) holds is irrelevant , the
free() will free all the memory (if any) which was allocated
by calloc.
Such would be the case when allocating a single instance
of an object or an array of the same objects on the heap.
Since the presence of a heap is up to an implementation
it's best not use the term. If you mean memory obtained
through the malloc family of functions then that's what
you should say.

Having said that , which case are you referring to ? The
formula sizeof(Aobj) == N*sizeof(Bobj) you gave mentions
2 different object types.
Just want to
make sure what is done above is safe (assuming the type interpretation
of the allocated block elsewhere is correct.)
I don't know what "the type interpretation of the
allocated block" is. mallocing memory and freeing
it right away is safe but obviously pointless. Whether
your code is safe depends on what's happening between
the calloc() and the free().

Jan 8 '07 #2
la*******@gmail.com writes:
I have a question regarding the use of free() based on some code I need
to decipher:

{
struct A {<A fields>};
struct B {<A fields+ <Bfields>};

typedef struct A Aobj;
typedef struct B Bobj;

Aobj *ptrToA = (struct A*) calloc(1,sizeof(struct B));

free(ptrToA);
}

Will this free the entire memory block of size sizeof(struct B), or
only a block starting at ptrToA of size sizeof(struct A)? The posts I
have read strongly suggest this will, as probably intended, free the
entire block produced by calloc(), but in those posts it seems
sizeof(Aobj) == N*sizeof(Bobj), i.e. the size of the allocated block is
an integer multiple of the dereferenced type of the pointer to which
the allocated block's void pointer is cast (Don't know how to express
this well). Such would be the case when allocating a single instance
of an object or an array of the same objects on the heap. Just want to
make sure what is done above is safe (assuming the type interpretation
of the allocated block elsewhere is correct.)
Yes.

The malloc/calloc/realloc/free subsystem does not, and cannot,
keep track of what you do with the newly allocated pointer after
its value is returned to you. Suppose sizeof(struct A) == 10,
and sizeof(struct b) == 20. In your code, calloc (if successful)
simply returns a void* pointer to 20 bytes of newly allocated memory;
it has no idea that the value 20 was computed as "sizeof(struct B),
or that you then converted the result from void* to struct A*.

When you call free(PtrToA), free() sees only an argument of type
void*, which happens to have the same value as what was returned by
calloc(), so it frees 20 bytes.

The sizeof, the cast, and the assignment are entirely invisible to
calloc() and free(), and cannot affect their behavior. So as far as
calloc() and free() are concerned, your code is equivalent to:

void *ptr = calloc(1, 20);
free(ptr);

Incidentally, the standard doesn't *quite* guarantee that the initial
fields of your struct A and struct B will be laid out consistently,
unless you happen to declare a union of the two types, though it's
difficult to imagine an implementation in which they wouldn't match.
You might consider making the first member of struct B be of type
struct A, rather than duplicating all the fields explicitly; this
would also avoid any errors that might be introduced by writing the
same sequence of member declarations twice,

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Jan 8 '07 #3
Keith Thompson wrote:
Incidentally, the standard doesn't *quite* guarantee that the initial
fields of your struct A and struct B will be laid out consistently,
unless you happen to declare a union of the two types, though it's
difficult to imagine an implementation in which they wouldn't match.
You might consider making the first member of struct B be of type
struct A, rather than duplicating all the fields explicitly; this
would also avoid any errors that might be introduced by writing the
same sequence of member declarations twice,
Since what is returned by calloc() is guaranteed to
be properly alligned for any type I don't see what
might go wrong even in theory. Unless you're saying
that sizeof(struct A) may be larger than sizeof(struct B).

Jan 8 '07 #4
<la*******@gmail.comwrote in message
news:11**********************@38g2000cwa.googlegro ups.com...
>I have a question regarding the use of free() based on some code I need
to decipher:

{
struct A {<A fields>};
struct B {<A fields+ <Bfields>};

typedef struct A Aobj;
typedef struct B Bobj;

Aobj *ptrToA = (struct A*) calloc(1,sizeof(struct B));

free(ptrToA);
}

Will this free the entire memory block of size sizeof(struct B), or
only a block starting at ptrToA of size sizeof(struct A)?
malloc(), calloc(), and free() are block-oriented only. They operate only
in terms of a starting address and a length. There is no type information
involved.

The code in calloc() has no way to determine what calculations went into the
parameters it was passed. They are just integers.

The whole block gets free()'d.
Jan 8 '07 #5

<la*******@gmail.comwrote in message
news:11**********************@38g2000cwa.googlegro ups.com...
>I have a question regarding the use of free() based on some code I need
to decipher:

{
struct A {<A fields>};
struct B {<A fields+ <Bfields>};

typedef struct A Aobj;
typedef struct B Bobj;

Aobj *ptrToA = (struct A*) calloc(1,sizeof(struct B));

free(ptrToA);
}

Will this free the entire memory block of size sizeof(struct B), or
only a block starting at ptrToA of size sizeof(struct A)?
It will free the entire block that was allocated.
The signature of free is
void free( void *ptr )
It knows only that it was passed a pointer. It will free the memory
that was allocated by the malloc/calloc/realloc call, regardless of what
that pointer may have been cast to.

Note that
Aobj *ptrToA = (struct A*) calloc(1,sizeof(struct B));

is equivalent to
Aobj *ptrTob = calloc(1,sizeof(struct B));
Aobj *ptrToA = (struct A*) ptrTob;
--
Fred L. Kleinschmidt
Boeing Associate Technical Fellow
Technical Architect, Software Reuse Project


Jan 8 '07 #6
"David T. Ashley" <dt*@e3ft.comwrites:
<la*******@gmail.comwrote in message
news:11**********************@38g2000cwa.googlegro ups.com...
>>I have a question regarding the use of free() based on some code I need
to decipher:

{
struct A {<A fields>};
struct B {<A fields+ <Bfields>};

typedef struct A Aobj;
typedef struct B Bobj;

Aobj *ptrToA = (struct A*) calloc(1,sizeof(struct B));

free(ptrToA);
}

Will this free the entire memory block of size sizeof(struct B), or
only a block starting at ptrToA of size sizeof(struct A)?

malloc(), calloc(), and free() are block-oriented only. They operate only
in terms of a starting address and a length. There is no type information
involved.
Can someone explain again why people keep saying (in this NG) that ints or pointers
to chars etc might be stored in different memory blocks? And if they
are, how would one possibly use malloc?
Jan 9 '07 #7
Richard wrote:
"David T. Ashley" <dt*@e3ft.comwrites:
<la*******@gmail.comwrote in message
news:11**********************@38g2000cwa.googlegro ups.com...
>I have a question regarding the use of free() based on some code I need
to decipher:

{
struct A {<A fields>};
struct B {<A fields+ <Bfields>};

typedef struct A Aobj;
typedef struct B Bobj;

Aobj *ptrToA = (struct A*) calloc(1,sizeof(struct B));

free(ptrToA);
}

Will this free the entire memory block of size sizeof(struct B), or
only a block starting at ptrToA of size sizeof(struct A)?
malloc(), calloc(), and free() are block-oriented only. They operate only
in terms of a starting address and a length. There is no type information
involved.

Can someone explain again why people keep saying (in this NG) that ints or pointers
to chars etc might be stored in different memory blocks? And if they
are, how would one possibly use malloc?
I don't know what "stored in different memory blocks"
means or whether it has been said in some thread but
noone has said it in this thread.

Jan 9 '07 #8
"Spiros Bousbouras" <sp****@gmail.comwrites:
Keith Thompson wrote:
>Incidentally, the standard doesn't *quite* guarantee that the initial
fields of your struct A and struct B will be laid out consistently,
unless you happen to declare a union of the two types, though it's
difficult to imagine an implementation in which they wouldn't match.
You might consider making the first member of struct B be of type
struct A, rather than duplicating all the fields explicitly; this
would also avoid any errors that might be introduced by writing the
same sequence of member declarations twice,

Since what is returned by calloc() is guaranteed to
be properly alligned for any type I don't see what
might go wrong even in theory. Unless you're saying
that sizeof(struct A) may be larger than sizeof(struct B).
Yes, sizeof(struct A) may theoretically, given a sufficiently insane
implementation, be larger than sizeof(struct B), but that's not what I
had in mind.

The code in question was:
| {
| struct A {<A fields>};
| struct B {<A fields+ <Bfields>};
|
| typedef struct A Aobj;
| typedef struct B Bobj;
|
| Aobj *ptrToA = (struct A*) calloc(1,sizeof(struct B));
|
| free(ptrToA);
| }

I assumed that the reason for declaring struct B that way was to allow
the initial part of a struct B object to be treated as a struct A.
That's the only reason I can think of to allocate sizeof(struct B)
bytes.

There's one other thing I should mention here. calloc() initializes
the allocated memory to all-bits-zero. If struct A or struct B
contains members of some pointer or floating-point type, there's no
guarantee that this will set them to null pointers or 0.0,
respectively. It may be safer to use malloc() and then initialize the
members explicitly.

For example (ignoring the struct A vs. struct B business):

struct foo { /* ... */ };
const struct foo foo_zero = { 0 };
struct foo *ptr_to_foo = malloc(sizeof *ptr_to_foo);
if (ptr_to_foo == NULL) { /* OOPS! */ }
*ptr_to_foo = foo_zero;

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Jan 9 '07 #9
Richard <rg****@gmail.comwrites:
"David T. Ashley" <dt*@e3ft.comwrites:
><la*******@gmail.comwrote in message
news:11**********************@38g2000cwa.googlegr oups.com...
>>>I have a question regarding the use of free() based on some code I need
to decipher:

{
struct A {<A fields>};
struct B {<A fields+ <Bfields>};

typedef struct A Aobj;
typedef struct B Bobj;

Aobj *ptrToA = (struct A*) calloc(1,sizeof(struct B));

free(ptrToA);
}

Will this free the entire memory block of size sizeof(struct B), or
only a block starting at ptrToA of size sizeof(struct A)?

malloc(), calloc(), and free() are block-oriented only. They operate only
in terms of a starting address and a length. There is no type information
involved.

Can someone explain again why people keep saying (in this NG) that
ints or pointers to chars etc might be stored in different memory
blocks? And if they are, how would one possibly use malloc?
I don't think anyone has said so in this thread, particularly in the
article to which you replied. I think David was referring to the
"block" of memory allocated by each call to calloc or malloc.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Jan 9 '07 #10
Keith Thompson wrote:
"Spiros Bousbouras" <sp****@gmail.comwrites:
Keith Thompson wrote:
Incidentally, the standard doesn't *quite* guarantee that the initial
fields of your struct A and struct B will be laid out consistently,
unless you happen to declare a union of the two types, though it's
difficult to imagine an implementation in which they wouldn't match.
You might consider making the first member of struct B be of type
struct A, rather than duplicating all the fields explicitly; this
would also avoid any errors that might be introduced by writing the
same sequence of member declarations twice,
Since what is returned by calloc() is guaranteed to
be properly alligned for any type I don't see what
might go wrong even in theory. Unless you're saying
that sizeof(struct A) may be larger than sizeof(struct B).

Yes, sizeof(struct A) may theoretically, given a sufficiently insane
implementation, be larger than sizeof(struct B), but that's not what I
had in mind.

The code in question was:
| {
| struct A {<A fields>};
| struct B {<A fields+ <Bfields>};
|
| typedef struct A Aobj;
| typedef struct B Bobj;
|
| Aobj *ptrToA = (struct A*) calloc(1,sizeof(struct B));
|
| free(ptrToA);
| }

I assumed that the reason for declaring struct B that way was to allow
the initial part of a struct B object to be treated as a struct A.
So how would an insane (but conforming) implementation
prevent you from doing this ?

Jan 9 '07 #11
"Keith Thompson" <ks***@mib.orgwrote in message
news:ln************@nuthaus.mib.org...
Richard <rg****@gmail.comwrites:
>"David T. Ashley" <dt*@e3ft.comwrites:
>><la*******@gmail.comwrote in message
news:11**********************@38g2000cwa.googleg roups.com...
I have a question regarding the use of free() based on some code I need
to decipher:

{
struct A {<A fields>};
struct B {<A fields+ <Bfields>};

typedef struct A Aobj;
typedef struct B Bobj;

Aobj *ptrToA = (struct A*) calloc(1,sizeof(struct B));

free(ptrToA);
}

Will this free the entire memory block of size sizeof(struct B), or
only a block starting at ptrToA of size sizeof(struct A)?

malloc(), calloc(), and free() are block-oriented only. They operate
only
in terms of a starting address and a length. There is no type
information
involved.

Can someone explain again why people keep saying (in this NG) that
ints or pointers to chars etc might be stored in different memory
blocks? And if they are, how would one possibly use malloc?

I don't think anyone has said so in this thread, particularly in the
article to which you replied. I think David was referring to the
"block" of memory allocated by each call to calloc or malloc.
Yep. What I meant in particular is that when you call free() with an
address, it has no idea why you originally wanted the memory, what you did
with the memory while you had it, what you believed that you might one day
be capable of doing with the memory, etc.

The memory is just a ____block____ with start address and size.

Whatever the size of _____block_____ allocated via malloc() or calloc() or
realloc() ... that is the size that gets free()'d. There are no partial
free()s. Soup can in ... soup can out. Bushel basket in ... bushel basket
out.
Jan 9 '07 #12
"Spiros Bousbouras" <sp****@gmail.comwrites:
Keith Thompson wrote:
>"Spiros Bousbouras" <sp****@gmail.comwrites:
Keith Thompson wrote:
Incidentally, the standard doesn't *quite* guarantee that the initial
fields of your struct A and struct B will be laid out consistently,
unless you happen to declare a union of the two types, though it's
difficult to imagine an implementation in which they wouldn't match.
You might consider making the first member of struct B be of type
struct A, rather than duplicating all the fields explicitly; this
would also avoid any errors that might be introduced by writing the
same sequence of member declarations twice,

Since what is returned by calloc() is guaranteed to
be properly alligned for any type I don't see what
might go wrong even in theory. Unless you're saying
that sizeof(struct A) may be larger than sizeof(struct B).

Yes, sizeof(struct A) may theoretically, given a sufficiently insane
implementation, be larger than sizeof(struct B), but that's not what I
had in mind.

The code in question was:
| {
| struct A {<A fields>};
| struct B {<A fields+ <Bfields>};
|
| typedef struct A Aobj;
| typedef struct B Bobj;
|
| Aobj *ptrToA = (struct A*) calloc(1,sizeof(struct B));
|
| free(ptrToA);
| }

I assumed that the reason for declaring struct B that way was to allow
the initial part of a struct B object to be treated as a struct A.

So how would an insane (but conforming) implementation
prevent you from doing this ?
By laying out the members of struct A differently than the
corresponding members of struct B.

For example:

struct A {
int a0;
int a1;
};

struct B {
int a0;
int a1;
int b2;
};

a0 in both types must be at an offset of 0, but a compiler *could*
insert different amounts of padding between a0 and a1 for the two
types. The guarantee that the initial common subsequence of two
struct types has the same layout applies only when there's a union
with members of the two types.

Any sane implementation will lay them out the same way anyway.
There's no good reason to have different amounts of padding between
the members, and if you keep it the same, you don't have to keep track
of whether there's a union declared somewhere else.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Jan 9 '07 #13
Keith Thompson wrote:
"Spiros Bousbouras" <sp****@gmail.comwrites:
Keith Thompson wrote:
"Spiros Bousbouras" <sp****@gmail.comwrites:
Keith Thompson wrote:
Incidentally, the standard doesn't *quite* guarantee that the initial
fields of your struct A and struct B will be laid out consistently,
unless you happen to declare a union of the two types, though it's
difficult to imagine an implementation in which they wouldn't match.
You might consider making the first member of struct B be of type
struct A, rather than duplicating all the fields explicitly; this
would also avoid any errors that might be introduced by writing the
same sequence of member declarations twice,

Since what is returned by calloc() is guaranteed to
be properly alligned for any type I don't see what
might go wrong even in theory. Unless you're saying
that sizeof(struct A) may be larger than sizeof(struct B).

Yes, sizeof(struct A) may theoretically, given a sufficiently insane
implementation, be larger than sizeof(struct B), but that's not what I
had in mind.

The code in question was:
| {
| struct A {<A fields>};
| struct B {<A fields+ <Bfields>};
|
| typedef struct A Aobj;
| typedef struct B Bobj;
|
| Aobj *ptrToA = (struct A*) calloc(1,sizeof(struct B));
|
| free(ptrToA);
| }

I assumed that the reason for declaring struct B that way was to allow
the initial part of a struct B object to be treated as a struct A.
So how would an insane (but conforming) implementation
prevent you from doing this ?

By laying out the members of struct A differently than the
corresponding members of struct B.

For example:

struct A {
int a0;
int a1;
};

struct B {
int a0;
int a1;
int b2;
};

a0 in both types must be at an offset of 0, but a compiler *could*
insert different amounts of padding between a0 and a1 for the two
types.
As long as sizeof(struct A) <= sizeof(struct B) I don't see
why that would be a problem. If you write p->a1 where
p is a pointer to A, the compiler would add the correct
padding for A, so as long as calloc supplied sufficient bytes
it would work.

Jan 9 '07 #14
"Spiros Bousbouras" <sp****@gmail.comwrites:
Keith Thompson wrote:
>"Spiros Bousbouras" <sp****@gmail.comwrites:
Keith Thompson wrote:
"Spiros Bousbouras" <sp****@gmail.comwrites:
Keith Thompson wrote:
Incidentally, the standard doesn't *quite* guarantee that the initial
fields of your struct A and struct B will be laid out consistently,
unless you happen to declare a union of the two types, though it's
difficult to imagine an implementation in which they wouldn't match.
You might consider making the first member of struct B be of type
struct A, rather than duplicating all the fields explicitly; this
would also avoid any errors that might be introduced by writing the
same sequence of member declarations twice,

Since what is returned by calloc() is guaranteed to
be properly alligned for any type I don't see what
might go wrong even in theory. Unless you're saying
that sizeof(struct A) may be larger than sizeof(struct B).

Yes, sizeof(struct A) may theoretically, given a sufficiently insane
implementation, be larger than sizeof(struct B), but that's not what I
had in mind.

The code in question was:
| {
| struct A {<A fields>};
| struct B {<A fields+ <Bfields>};
|
| typedef struct A Aobj;
| typedef struct B Bobj;
|
| Aobj *ptrToA = (struct A*) calloc(1,sizeof(struct B));
|
| free(ptrToA);
| }

I assumed that the reason for declaring struct B that way was to allow
the initial part of a struct B object to be treated as a struct A.

So how would an insane (but conforming) implementation
prevent you from doing this ?

By laying out the members of struct A differently than the
corresponding members of struct B.

For example:

struct A {
int a0;
int a1;
};

struct B {
int a0;
int a1;
int b2;
};

a0 in both types must be at an offset of 0, but a compiler *could*
insert different amounts of padding between a0 and a1 for the two
types.

As long as sizeof(struct A) <= sizeof(struct B) I don't see
why that would be a problem. If you write p->a1 where
p is a pointer to A, the compiler would add the correct
padding for A, so as long as calloc supplied sufficient bytes
it would work.
As long as you use the allocated memory for only one type or the
other, and as long as it's big enough, there's no problem. The
problem shows up if you do type punning. For example (untested code):

void *p = malloc(ENOUGH);
((struct A*)p)->a1 = 42;
if (((struct B*)p)->a1 == 42) {
puts("ok");
}
else {
puts("oops");
}

Under a sane implementation, a1 will have the same offset in both
struct A and struct B, and the above will print "ok". Under an insane
but conforming implementation, a1 could have different offsets in the
two different types, and the code could print "oops" or invoke
undefined behavior.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Jan 9 '07 #15
Keith Thompson <ks***@mib.orgwrites:
"Spiros Bousbouras" <sp****@gmail.comwrites:
Keith Thompson wrote:
"Spiros Bousbouras" <sp****@gmail.comwrites:
Keith Thompson wrote:
I assumed that the reason for declaring struct B that way was to allow
the initial part of a struct B object to be treated as a struct A.

So how would an insane (but conforming) implementation
prevent you from doing this ?

By laying out the members of struct A differently than the
corresponding members of struct B.

For example:

struct A {
int a0;
int a1;
};

struct B {
int a0;
int a1;
int b2;
};

a0 in both types must be at an offset of 0, but a compiler *could*
insert different amounts of padding between a0 and a1 for the two
types.
I don't believe it would be allowed to, within the /common initial
sequence/ between the two structures.
As long as you use the allocated memory for only one type or the
other, and as long as it's big enough, there's no problem. The
problem shows up if you do type punning. For example (untested code):

void *p = malloc(ENOUGH);
((struct A*)p)->a1 = 42;
if (((struct B*)p)->a1 == 42) {
puts("ok");
}
else {
puts("oops");
}

Under a sane implementation, a1 will have the same offset in both
struct A and struct B, and the above will print "ok". Under an insane
but conforming implementation, a1 could have different offsets in the
two different types, and the code could print "oops" or invoke
undefined behavior.
It is my understanding that 6.5.2.3 paragraph 5 forbids this
implicitly since, while it discusses only structures containing a
common initial sequence *as members of a union*, the compiler needs to
keep these offsets the same in case the next definition along is

union {
struct A a;
struct B b;
} foo;

at which point 'foo.a' and 'foo.b' must have the same layouts as any
other 'struct A' and 'struct B' respectively throughout the program
(so they could be 'memcpy()'ed, for instance). The only way an insane
but conforming implementation (IBCI? ISAGN) could have different
offsets for those otherwise-common initial sequences would be if it
*knew* that such a union was not used anywhere in anything the current
translation unit might be linked with, which is a pretty tall order.
I suppose that an IBCI might leave structure-member-offset allocation
until link time, though ...

mlp edant
Jan 9 '07 #16
Thank you for the confirmation. The code that uses the struct-casting
construct is from a group's (fairly old) source, and since I am not
experienced in C, I don't want to modify anything I don't have to. In
the code, <A fieldsis a preprocessor macro used to implement
inheritance.

Thanks again for your time!

la*******@gmail.com wrote:
I have a question regarding the use of free() based on some code I need
to decipher:

{
struct A {<A fields>};
struct B {<A fields+ <Bfields>};

typedef struct A Aobj;
typedef struct B Bobj;

Aobj *ptrToA = (struct A*) calloc(1,sizeof(struct B));

free(ptrToA);
}

Will this free the entire memory block of size sizeof(struct B), or
only a block starting at ptrToA of size sizeof(struct A)? The posts I
have read strongly suggest this will, as probably intended, free the
entire block produced by calloc(), but in those posts it seems
sizeof(Aobj) == N*sizeof(Bobj), i.e. the size of the allocated block is
an integer multiple of the dereferenced type of the pointer to which
the allocated block's void pointer is cast (Don't know how to express
this well). Such would be the case when allocating a single instance
of an object or an array of the same objects on the heap. Just want to
make sure what is done above is safe (assuming the type interpretation
of the allocated block elsewhere is correct.)

Thank you for your time.
Jan 9 '07 #17
Mark L Pappin <ml*@acm.orgwrites:
Keith Thompson <ks***@mib.orgwrites:
>"Spiros Bousbouras" <sp****@gmail.comwrites:
Keith Thompson wrote:
"Spiros Bousbouras" <sp****@gmail.comwrites:
Keith Thompson wrote:
I assumed that the reason for declaring struct B that way was to allow
the initial part of a struct B object to be treated as a struct A.

So how would an insane (but conforming) implementation
prevent you from doing this ?

By laying out the members of struct A differently than the
corresponding members of struct B.

For example:

struct A {
int a0;
int a1;
};

struct B {
int a0;
int a1;
int b2;
};

a0 in both types must be at an offset of 0, but a compiler *could*
insert different amounts of padding between a0 and a1 for the two
types.

I don't believe it would be allowed to, within the /common initial
sequence/ between the two structures.
>As long as you use the allocated memory for only one type or the
other, and as long as it's big enough, there's no problem. The
problem shows up if you do type punning. For example (untested code):

void *p = malloc(ENOUGH);
((struct A*)p)->a1 = 42;
if (((struct B*)p)->a1 == 42) {
puts("ok");
}
else {
puts("oops");
}

Under a sane implementation, a1 will have the same offset in both
struct A and struct B, and the above will print "ok". Under an insane
but conforming implementation, a1 could have different offsets in the
two different types, and the code could print "oops" or invoke
undefined behavior.

It is my understanding that 6.5.2.3 paragraph 5 forbids this
implicitly since, while it discusses only structures containing a
common initial sequence *as members of a union*, the compiler needs to
keep these offsets the same in case the next definition along is

union {
struct A a;
struct B b;
} foo;

at which point 'foo.a' and 'foo.b' must have the same layouts as any
other 'struct A' and 'struct B' respectively throughout the program
(so they could be 'memcpy()'ed, for instance). The only way an insane
but conforming implementation (IBCI? ISAGN) could have different
offsets for those otherwise-common initial sequences would be if it
*knew* that such a union was not used anywhere in anything the current
translation unit might be linked with, which is a pretty tall order.
I suppose that an IBCI might leave structure-member-offset allocation
until link time, though ...
Right, that's the kind of thing I had in mind. The possibility I was
thinking of was having both struct declarations in a block scope, so
other translation units wouldn't be an issue, but postponing layout
determination until link time (or run time!) would let you do this
kind of thing for global structs.

(Anyone who takes this too seriously should re-read the words "insane
(but conforming)" above.)

Incidentally, a few months ago somebody here (sorry, I don't remember
who) posted an account of some serious problems he ran into doing type
punning between two different structure types with common initial
subsequences. It *wasn't* the hypothetical layout problem we've been
discussing. As I recall, it was something like this:

struct foo {
int i;
char c0;
};
struct bar {
int i;
char c0;
char c1;
};
struct foo foo_obj;
struct bar bar_obj;

Accessing the members i and c0 works just fine, but something like
this:

*(struct foo*)&bar_obj = foo_obj;

could clobber bar_obj.c1, overwriting it with a padding byte from
foo_obj.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Jan 9 '07 #18
In article <ln************@nuthaus.mib.org>,
Keith Thompson <ks***@mib.orgwrote:
>Incidentally, the standard doesn't *quite* guarantee that the initial
fields of your struct A and struct B will be laid out consistently,
unless you happen to declare a union of the two types, though it's
difficult to imagine an implementation in which they wouldn't match.
It's particularly difficult to imagine in the (usual) case of separate
compilation: a union of them might be declared in some other file.

-- Richard
--
"Consideration shall be given to the need for as many as 32 characters
in some alphabets" - X3.4, 1963.
Jan 9 '07 #19
ri*****@cogsci.ed.ac.uk (Richard Tobin) writes:
In article <ln************@nuthaus.mib.org>,
Keith Thompson <ks***@mib.orgwrote:
>>Incidentally, the standard doesn't *quite* guarantee that the initial
fields of your struct A and struct B will be laid out consistently,
unless you happen to declare a union of the two types, though it's
difficult to imagine an implementation in which they wouldn't match.

It's particularly difficult to imagine in the (usual) case of separate
compilation: a union of them might be declared in some other file.
Agreed. It would be nice if the standard made the guarantee more
general.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Jan 9 '07 #20

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

12
by: Aaron Walker | last post by:
I apologize if this is a stupid question. I was just curious... is there any reason why free() doesn't set the pointer (that was passed to it) to NULL after giving the memory back to the heap? I...
9
by: zerro | last post by:
Hello, I try to understand heap overflows (under Linux), but can not understand one thing with freeing memory allocated with malloc(). Here it comes: I have a program called 1.c: main() {...
36
by: Martin Andert | last post by:
Hello, I have a question regarding malloc and free. Here my code sample: int main() { /* allocating dynamic memory for array */ int* array = (int*) malloc(5 * sizeof(int)); /* ... program...
17
by: kj | last post by:
How can one test if a pointer has been "freed" (i.e. with free())? My naive assumption was that such a pointer would equal NULL, but not so. Thanks, kj -- NOTE: In my address everything...
86
by: Walter Roberson | last post by:
If realloc() finds it necessary to move the memory block, then does it free() the previously allocated block? The C89 standard has some reference to undefined behaviour if one realloc()'s memory...
76
by: dbansal | last post by:
Hi group, I have a question to ask you all. I have allocated some chunk of memory using ptr=(int*)malloc(). now I am trying to free that memory using free((void*)ptr). My question is does free()...
13
by: Berk Birand | last post by:
Hi, I am working on a school project where we use lex/yacc to write a compiler for a fictional (Java-like) language. I have handled all the details about the yacc and lex files, but I still have...
13
by: Chad | last post by:
Excercise 6-5 Write a functon undef that will remove a name and defintion from the table maintained by lookup and install. Code: unsigned hash(char *s); void undef(char *s)
2
by: Workarounder | last post by:
Hi! I have a program and in this program I have to do a lot of close´s and free´s. The program is something like this: static int finalize(FILE* f1, FILE* f2, char* c) { if (f1 != NULL) { ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.