- 论坛徽章:
- 14
|
本帖最后由 lxyscls 于 2015-10-08 12:29 编辑
回复 3# 何必抱怨 - void
- public_fREe(void* mem)
- {
- mstate ar_ptr;
- mchunkptr p; /* chunk corresponding to mem */
- void (*hook) (__malloc_ptr_t, __const __malloc_ptr_t)
- = force_reg (__free_hook);
- if (__builtin_expect (hook != NULL, 0)) {
- (*hook)(mem, RETURN_ADDRESS (0));
- return;
- }
- if (mem == 0) /* free(0) has no effect */
- return;
- p = mem2chunk(mem);
- ... ...
- ar_ptr = arena_for_chunk(p);
- _int_free(ar_ptr, p, 0);
- }
复制代码 对于较小的内存分配,都在chunk里面分配,使用_init_free()。- static void
- _int_free(mstate av, mchunkptr p, int have_lock)
- {
- INTERNAL_SIZE_T size; /* its size */
- mfastbinptr* fb; /* associated fastbin */
- mchunkptr nextchunk; /* next contiguous chunk */
- INTERNAL_SIZE_T nextsize; /* its size */
- int nextinuse; /* true if nextchunk is used */
- INTERNAL_SIZE_T prevsize; /* size of previous contiguous chunk */
- mchunkptr bck; /* misc temp for linking */
- mchunkptr fwd; /* misc temp for linking */
- const char *errstr = NULL;
- int locked = 0;
- size = chunksize(p);
- ... ...
- /*
- If eligible, place chunk on a fastbin so it can be found
- and used quickly in malloc.
- */
- if ((unsigned long)(size) <= (unsigned long)(get_max_fast ())
- ... ...
- set_fastchunks(av);
- unsigned int idx = fastbin_index(size);
- fb = &fastbin (av, idx);
- mchunkptr fd;
- mchunkptr old = *fb;
- unsigned int old_idx = ~0u;
- do
- {
- /* Another simple check: make sure the top of the bin is not the
- record we are going to add (i.e., double free). */
- if (__builtin_expect (old == p, 0))
- {
- errstr = "double free or corruption (fasttop)";
- goto errout;
- }
复制代码 为什么free(p1);free(p1);会"double free",没有细看代码,我个人的理解是:两次取得的chunk_size一样,所以它认为是"double free"。
为什么中间加了一个free(p2),就不会"double free"了,是因为再free(p1)的时候,chunk_size变了
因为p1,p2的大小都是10,所以它们都在fastbin里面分配;如果把p2设置成一个比较大的值,比如13B,free(p1);free(p2);free(p1);一样会"double free",因为p2分配的chunk和p1不一样,不影响第二次free(p1)时候的判断
|
|