Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to write a size function like this:

size(void *p,int size);

Which would return the size of an array which is pointed to by p. For example:

Int *a = malloc((sizeof(int)*100));
size(a,sizeof(int)); // this should return 100

I think this is possible because if I recall, malloc keeps track of the space allocated in some header bytes.

Here's what I have so far:

int size(void *p, int size)
{
  p = (unsigned int *)p - 1;
  unsigned int elements = (*(unsigned int *)p);
  return elements/size;
}

Now, assuming that the size of the space allocated is in the 4 bytes before the pointer, this should return the bytes, or offset. This is where I'm a bit in the dark. I can't figure out the specifics of how malloc formats these header bytes. How does malloc pack the header bits?

Thanks, I appreciate this. I'm sure there are things wrong with this code and it's not particularly portable and may be very system dependent, but I'm doing it for fun.

share|improve this question
3  
If you can get this to work, it will only work on your particular implementation of malloc. Another system may use a different malloc and attempting to de-reference the pointer after moving it backwards past the end of the array might cause a memory access violation and crash your app. A more reliable way is to record the size of the memory region when you call malloc, and refer to that value instead of trying to dissect malloc's metadata. – bta Oct 7 '10 at 23:20
Don't do this. If you need to know the size, store it yourself, but it's probably not even useful in most cases. Keep in mind that an advanced futuristic implementation of C will not store the size anywhere that's even reachable from your program, will not have casts between pointers and integer types, and will really trap and abort the program if you increment or decrement a pointer past the bounds of the object or try to do arithmetic on pointers to different objects. The standard allows this flexibility of implementation for very good reasons. – R.. Oct 8 '10 at 0:26
1  
Suppose that your malloc is restricted to allocating power-of-two-sized blocks. Suppose that you have a dynamically-sized array of 12-byte objects, and request an initial capacity of 100. If you do things by the C standard, you have to realloc when your array grows to 100 elements. If you could get the actual size of the block, you could let your array grow to 170 elements before reallocating. So there's an efficiency advantage to being able to get the size of the block. – dan04 Oct 8 '10 at 2:50
1  
@dan04: That's nonsense. On such an implementation, realloc will immediately see that the allocated size is already sufficient for the newly requested size, and return right away without doing anything. – R.. Oct 8 '10 at 5:01
@R..: You're assuming the next request will be for 101 elements. More realistically, it will be for 200, as exponential growth is required to keep appends having amortized constant time, and 2 is a common factor. Then you've got a 4096-byte block allocated to satisfy a request for 2400 bytes for an array with a logical size of only 1212 bytes. – dan04 Oct 8 '10 at 6:49
show 5 more comments

7 Answers

up vote 5 down vote accepted

If you like to peek and poke around beyond the memory your malloc() returns I recommend obtaining the source code of your allocator. This will be faster and safer than experimenting. ;-)

share|improve this answer

In Visual Studio you can use _msize().

share|improve this answer

I think you're relying on some implementation-specific malloc() behaviour. The implementation of malloc() is system-specific and the specification mentions very little about how this is performed.

share|improve this answer

There's no portable way to do this. As others have said, either look at your allocator's code if you're doing a one-off program just poking around, or for some libraries (MS) there are extensions like _msize. malloc is allowed to do what it wants inside the allocator to track stuff, and there's no "safe" or standard-compliant way of getting that data.

If you really need this capability reliably in a real application, you'll have to build a shim around malloc/free that keeps a table of allocation sizes.

share|improve this answer

You may find the glibc malloc-related functions to be of use. In particular you can call mallinfo() to get heap information. Some systems also define malloc_size, which is the BSD equivalent of _msize.

share|improve this answer

If you really want to go that route, dlmalloc (the malloc used on glibc and uClibc among others) has some docs at http://g.oswego.edu/dl/html/malloc.html. Also, googling for how to exploit heap overflows will probably get you details for every platform out there, including ones without source code available.

share|improve this answer

It's not in the standard. But there are platform-specific functions to do this, like _msize or malloc_usable_size.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.