More xmalloc and related cleanup.
[bpt/emacs.git] / src / gmalloc.c
1 /* Declarations for `malloc' and friends.
2 Copyright (C) 1990, 1991, 1992, 1993, 1995, 1996, 1999, 2002, 2003, 2004,
3 2005, 2006, 2007 Free Software Foundation, Inc.
4 Written May 1989 by Mike Haertel.
5
6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
10
11 This library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU General Public
17 License along with this library; see the file COPYING. If
18 not, write to the Free Software Foundation, Inc., 51 Franklin Street,
19 Fifth Floor, Boston, MA 02110-1301, USA.
20
21 The author may be reached (Email) at the address mike@ai.mit.edu,
22 or (US mail) as Mike Haertel c/o Free Software Foundation. */
23
24 #include <config.h>
25
26 #ifdef HAVE_PTHREAD
27 #define USE_PTHREAD
28 #endif
29
30 #include <string.h>
31 #include <limits.h>
32 #include <stdint.h>
33 #include <unistd.h>
34
35 #ifdef USE_PTHREAD
36 #include <pthread.h>
37 #endif
38
39 #ifdef __cplusplus
40 extern "C"
41 {
42 #endif
43
44 #include <stddef.h>
45
46
47 /* Allocate SIZE bytes of memory. */
48 extern void *malloc (size_t size);
49 /* Re-allocate the previously allocated block
50 in ptr, making the new block SIZE bytes long. */
51 extern void *realloc (void *ptr, size_t size);
52 /* Allocate NMEMB elements of SIZE bytes each, all initialized to 0. */
53 extern void *calloc (size_t nmemb, size_t size);
54 /* Free a block allocated by `malloc', `realloc' or `calloc'. */
55 extern void free (void *ptr);
56
57 /* Allocate SIZE bytes allocated to ALIGNMENT bytes. */
58 #ifdef MSDOS
59 extern void *memalign (size_t, size_t);
60 extern int posix_memalign (void **, size_t, size_t);
61 #endif
62
63 #ifdef USE_PTHREAD
64 /* Set up mutexes and make malloc etc. thread-safe. */
65 extern void malloc_enable_thread (void);
66 #endif
67
68 /* The allocator divides the heap into blocks of fixed size; large
69 requests receive one or more whole blocks, and small requests
70 receive a fragment of a block. Fragment sizes are powers of two,
71 and all fragments of a block are the same size. When all the
72 fragments in a block have been freed, the block itself is freed. */
73 #define INT_BIT (CHAR_BIT * sizeof (int))
74 #define BLOCKLOG (INT_BIT > 16 ? 12 : 9)
75 #define BLOCKSIZE (1 << BLOCKLOG)
76 #define BLOCKIFY(SIZE) (((SIZE) + BLOCKSIZE - 1) / BLOCKSIZE)
77
78 /* Determine the amount of memory spanned by the initial heap table
79 (not an absolute limit). */
80 #define HEAP (INT_BIT > 16 ? 4194304 : 65536)
81
82 /* Number of contiguous free blocks allowed to build up at the end of
83 memory before they will be returned to the system. */
84 #define FINAL_FREE_BLOCKS 8
85
86 /* Data structure giving per-block information. */
87 typedef union
88 {
89 /* Heap information for a busy block. */
90 struct
91 {
92 /* Zero for a large (multiblock) object, or positive giving the
93 logarithm to the base two of the fragment size. */
94 int type;
95 union
96 {
97 struct
98 {
99 size_t nfree; /* Free frags in a fragmented block. */
100 size_t first; /* First free fragment of the block. */
101 } frag;
102 /* For a large object, in its first block, this has the number
103 of blocks in the object. In the other blocks, this has a
104 negative number which says how far back the first block is. */
105 ptrdiff_t size;
106 } info;
107 } busy;
108 /* Heap information for a free block
109 (that may be the first of a free cluster). */
110 struct
111 {
112 size_t size; /* Size (in blocks) of a free cluster. */
113 size_t next; /* Index of next free cluster. */
114 size_t prev; /* Index of previous free cluster. */
115 } free;
116 } malloc_info;
117
118 /* Pointer to first block of the heap. */
119 extern char *_heapbase;
120
121 /* Table indexed by block number giving per-block information. */
122 extern malloc_info *_heapinfo;
123
124 /* Address to block number and vice versa. */
125 #define BLOCK(A) (((char *) (A) - _heapbase) / BLOCKSIZE + 1)
126 #define ADDRESS(B) ((void *) (((B) - 1) * BLOCKSIZE + _heapbase))
127
128 /* Current search index for the heap table. */
129 extern size_t _heapindex;
130
131 /* Limit of valid info table indices. */
132 extern size_t _heaplimit;
133
134 /* Doubly linked lists of free fragments. */
135 struct list
136 {
137 struct list *next;
138 struct list *prev;
139 };
140
141 /* Free list headers for each fragment size. */
142 extern struct list _fraghead[];
143
144 /* List of blocks allocated with `memalign' (or `valloc'). */
145 struct alignlist
146 {
147 struct alignlist *next;
148 void *aligned; /* The address that memaligned returned. */
149 void *exact; /* The address that malloc returned. */
150 };
151 extern struct alignlist *_aligned_blocks;
152
153 /* Instrumentation. */
154 extern size_t _chunks_used;
155 extern size_t _bytes_used;
156 extern size_t _chunks_free;
157 extern size_t _bytes_free;
158
159 /* Internal versions of `malloc', `realloc', and `free'
160 used when these functions need to call each other.
161 They are the same but don't call the hooks. */
162 extern void *_malloc_internal (size_t);
163 extern void *_realloc_internal (void *, size_t);
164 extern void _free_internal (void *);
165 extern void *_malloc_internal_nolock (size_t);
166 extern void *_realloc_internal_nolock (void *, size_t);
167 extern void _free_internal_nolock (void *);
168
169 #ifdef USE_PTHREAD
170 extern pthread_mutex_t _malloc_mutex, _aligned_blocks_mutex;
171 extern int _malloc_thread_enabled_p;
172 #define LOCK() \
173 do { \
174 if (_malloc_thread_enabled_p) \
175 pthread_mutex_lock (&_malloc_mutex); \
176 } while (0)
177 #define UNLOCK() \
178 do { \
179 if (_malloc_thread_enabled_p) \
180 pthread_mutex_unlock (&_malloc_mutex); \
181 } while (0)
182 #define LOCK_ALIGNED_BLOCKS() \
183 do { \
184 if (_malloc_thread_enabled_p) \
185 pthread_mutex_lock (&_aligned_blocks_mutex); \
186 } while (0)
187 #define UNLOCK_ALIGNED_BLOCKS() \
188 do { \
189 if (_malloc_thread_enabled_p) \
190 pthread_mutex_unlock (&_aligned_blocks_mutex); \
191 } while (0)
192 #else
193 #define LOCK()
194 #define UNLOCK()
195 #define LOCK_ALIGNED_BLOCKS()
196 #define UNLOCK_ALIGNED_BLOCKS()
197 #endif
198
199 /* Given an address in the middle of a malloc'd object,
200 return the address of the beginning of the object. */
201 extern void *malloc_find_object_address (void *ptr);
202
203 /* Underlying allocation function; successive calls should
204 return contiguous pieces of memory. */
205 extern void *(*__morecore) (ptrdiff_t size);
206
207 /* Default value of `__morecore'. */
208 extern void *__default_morecore (ptrdiff_t size);
209
210 /* If not NULL, this function is called after each time
211 `__morecore' is called to increase the data size. */
212 extern void (*__after_morecore_hook) (void);
213
214 /* Number of extra blocks to get each time we ask for more core.
215 This reduces the frequency of calling `(*__morecore)'. */
216 extern size_t __malloc_extra_blocks;
217
218 /* Nonzero if `malloc' has been called and done its initialization. */
219 extern int __malloc_initialized;
220 /* Function called to initialize malloc data structures. */
221 extern int __malloc_initialize (void);
222
223 /* Hooks for debugging versions. */
224 extern void (*__malloc_initialize_hook) (void);
225 extern void (*__free_hook) (void *ptr);
226 extern void *(*__malloc_hook) (size_t size);
227 extern void *(*__realloc_hook) (void *ptr, size_t size);
228 extern void *(*__memalign_hook) (size_t size, size_t alignment);
229
230 /* Return values for `mprobe': these are the kinds of inconsistencies that
231 `mcheck' enables detection of. */
232 enum mcheck_status
233 {
234 MCHECK_DISABLED = -1, /* Consistency checking is not turned on. */
235 MCHECK_OK, /* Block is fine. */
236 MCHECK_FREE, /* Block freed twice. */
237 MCHECK_HEAD, /* Memory before the block was clobbered. */
238 MCHECK_TAIL /* Memory after the block was clobbered. */
239 };
240
241 /* Activate a standard collection of debugging hooks. This must be called
242 before `malloc' is ever called. ABORTFUNC is called with an error code
243 (see enum above) when an inconsistency is detected. If ABORTFUNC is
244 null, the standard function prints on stderr and then calls `abort'. */
245 extern int mcheck (void (*abortfunc) (enum mcheck_status));
246
247 /* Check for aberrations in a particular malloc'd block. You must have
248 called `mcheck' already. These are the same checks that `mcheck' does
249 when you free or reallocate a block. */
250 extern enum mcheck_status mprobe (void *ptr);
251
252 /* Activate a standard collection of tracing hooks. */
253 extern void mtrace (void);
254 extern void muntrace (void);
255
256 /* Statistics available to the user. */
257 struct mstats
258 {
259 size_t bytes_total; /* Total size of the heap. */
260 size_t chunks_used; /* Chunks allocated by the user. */
261 size_t bytes_used; /* Byte total of user-allocated chunks. */
262 size_t chunks_free; /* Chunks in the free list. */
263 size_t bytes_free; /* Byte total of chunks in the free list. */
264 };
265
266 /* Pick up the current statistics. */
267 extern struct mstats mstats (void);
268
269 /* Call WARNFUN with a warning message when memory usage is high. */
270 extern void memory_warnings (void *start, void (*warnfun) (const char *));
271
272 #ifdef __cplusplus
273 }
274 #endif
275
276 /* Memory allocator `malloc'.
277 Copyright 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
278 Written May 1989 by Mike Haertel.
279
280 This library is free software; you can redistribute it and/or
281 modify it under the terms of the GNU General Public License as
282 published by the Free Software Foundation; either version 2 of the
283 License, or (at your option) any later version.
284
285 This library is distributed in the hope that it will be useful,
286 but WITHOUT ANY WARRANTY; without even the implied warranty of
287 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
288 General Public License for more details.
289
290 You should have received a copy of the GNU General Public
291 License along with this library; see the file COPYING. If
292 not, write to the Free Software Foundation, Inc., 51 Franklin Street,
293 Fifth Floor, Boston, MA 02110-1301, USA.
294
295 The author may be reached (Email) at the address mike@ai.mit.edu,
296 or (US mail) as Mike Haertel c/o Free Software Foundation. */
297
298 #include <errno.h>
299
300 /* On Cygwin there are two heaps. temacs uses the static heap
301 (defined in sheap.c and managed with bss_sbrk), and the dumped
302 emacs uses the Cygwin heap (managed with sbrk). When emacs starts
303 on Cygwin, it reinitializes malloc, and we save the old info for
304 use by free and realloc if they're called with a pointer into the
305 static heap.
306
307 Currently (2011-08-16) the Cygwin build doesn't use ralloc.c; if
308 this is changed in the future, we'll have to similarly deal with
309 reinitializing ralloc. */
310 #ifdef CYGWIN
311 extern void *bss_sbrk (ptrdiff_t size);
312 extern int bss_sbrk_did_unexec;
313 char *bss_sbrk_heapbase; /* _heapbase for static heap */
314 malloc_info *bss_sbrk_heapinfo; /* _heapinfo for static heap */
315 #endif
316 void *(*__morecore) (ptrdiff_t size) = __default_morecore;
317
318 /* Debugging hook for `malloc'. */
319 void *(*__malloc_hook) (size_t size);
320
321 /* Pointer to the base of the first block. */
322 char *_heapbase;
323
324 /* Block information table. Allocated with align/__free (not malloc/free). */
325 malloc_info *_heapinfo;
326
327 /* Number of info entries. */
328 static size_t heapsize;
329
330 /* Search index in the info table. */
331 size_t _heapindex;
332
333 /* Limit of valid info table indices. */
334 size_t _heaplimit;
335
336 /* Free lists for each fragment size. */
337 struct list _fraghead[BLOCKLOG];
338
339 /* Instrumentation. */
340 size_t _chunks_used;
341 size_t _bytes_used;
342 size_t _chunks_free;
343 size_t _bytes_free;
344
345 /* Are you experienced? */
346 int __malloc_initialized;
347
348 size_t __malloc_extra_blocks;
349
350 void (*__malloc_initialize_hook) (void);
351 void (*__after_morecore_hook) (void);
352
353 #if defined GC_MALLOC_CHECK && defined GC_PROTECT_MALLOC_STATE
354
355 /* Some code for hunting a bug writing into _heapinfo.
356
357 Call this macro with argument PROT non-zero to protect internal
358 malloc state against writing to it, call it with a zero argument to
359 make it readable and writable.
360
361 Note that this only works if BLOCKSIZE == page size, which is
362 the case on the i386. */
363
364 #include <sys/types.h>
365 #include <sys/mman.h>
366
367 static int state_protected_p;
368 static size_t last_state_size;
369 static malloc_info *last_heapinfo;
370
371 void
372 protect_malloc_state (int protect_p)
373 {
374 /* If _heapinfo has been relocated, make sure its old location
375 isn't left read-only; it will be reused by malloc. */
376 if (_heapinfo != last_heapinfo
377 && last_heapinfo
378 && state_protected_p)
379 mprotect (last_heapinfo, last_state_size, PROT_READ | PROT_WRITE);
380
381 last_state_size = _heaplimit * sizeof *_heapinfo;
382 last_heapinfo = _heapinfo;
383
384 if (protect_p != state_protected_p)
385 {
386 state_protected_p = protect_p;
387 if (mprotect (_heapinfo, last_state_size,
388 protect_p ? PROT_READ : PROT_READ | PROT_WRITE) != 0)
389 abort ();
390 }
391 }
392
393 #define PROTECT_MALLOC_STATE(PROT) protect_malloc_state (PROT)
394
395 #else
396 #define PROTECT_MALLOC_STATE(PROT) /* empty */
397 #endif
398
399
400 /* Aligned allocation. */
401 static void *
402 align (size_t size)
403 {
404 void *result;
405 ptrdiff_t adj;
406
407 /* align accepts an unsigned argument, but __morecore accepts a
408 signed one. This could lead to trouble if SIZE overflows the
409 ptrdiff_t type accepted by __morecore. We just punt in that
410 case, since they are requesting a ludicrous amount anyway. */
411 if (PTRDIFF_MAX < size)
412 result = 0;
413 else
414 result = (*__morecore) (size);
415 adj = (uintptr_t) result % BLOCKSIZE;
416 if (adj != 0)
417 {
418 adj = BLOCKSIZE - adj;
419 (*__morecore) (adj);
420 result = (char *) result + adj;
421 }
422
423 if (__after_morecore_hook)
424 (*__after_morecore_hook) ();
425
426 return result;
427 }
428
429 /* Get SIZE bytes, if we can get them starting at END.
430 Return the address of the space we got.
431 If we cannot get space at END, fail and return 0. */
432 static void *
433 get_contiguous_space (ptrdiff_t size, void *position)
434 {
435 void *before;
436 void *after;
437
438 before = (*__morecore) (0);
439 /* If we can tell in advance that the break is at the wrong place,
440 fail now. */
441 if (before != position)
442 return 0;
443
444 /* Allocate SIZE bytes and get the address of them. */
445 after = (*__morecore) (size);
446 if (!after)
447 return 0;
448
449 /* It was not contiguous--reject it. */
450 if (after != position)
451 {
452 (*__morecore) (- size);
453 return 0;
454 }
455
456 return after;
457 }
458
459
460 /* This is called when `_heapinfo' and `heapsize' have just
461 been set to describe a new info table. Set up the table
462 to describe itself and account for it in the statistics. */
463 static inline void
464 register_heapinfo (void)
465 {
466 size_t block, blocks;
467
468 block = BLOCK (_heapinfo);
469 blocks = BLOCKIFY (heapsize * sizeof (malloc_info));
470
471 /* Account for the _heapinfo block itself in the statistics. */
472 _bytes_used += blocks * BLOCKSIZE;
473 ++_chunks_used;
474
475 /* Describe the heapinfo block itself in the heapinfo. */
476 _heapinfo[block].busy.type = 0;
477 _heapinfo[block].busy.info.size = blocks;
478 /* Leave back-pointers for malloc_find_address. */
479 while (--blocks > 0)
480 _heapinfo[block + blocks].busy.info.size = -blocks;
481 }
482
483 #ifdef USE_PTHREAD
484 pthread_mutex_t _malloc_mutex = PTHREAD_MUTEX_INITIALIZER;
485 pthread_mutex_t _aligned_blocks_mutex = PTHREAD_MUTEX_INITIALIZER;
486 int _malloc_thread_enabled_p;
487
488 static void
489 malloc_atfork_handler_prepare (void)
490 {
491 LOCK ();
492 LOCK_ALIGNED_BLOCKS ();
493 }
494
495 static void
496 malloc_atfork_handler_parent (void)
497 {
498 UNLOCK_ALIGNED_BLOCKS ();
499 UNLOCK ();
500 }
501
502 static void
503 malloc_atfork_handler_child (void)
504 {
505 UNLOCK_ALIGNED_BLOCKS ();
506 UNLOCK ();
507 }
508
509 /* Set up mutexes and make malloc etc. thread-safe. */
510 void
511 malloc_enable_thread (void)
512 {
513 if (_malloc_thread_enabled_p)
514 return;
515
516 /* Some pthread implementations call malloc for statically
517 initialized mutexes when they are used first. To avoid such a
518 situation, we initialize mutexes here while their use is
519 disabled in malloc etc. */
520 pthread_mutex_init (&_malloc_mutex, NULL);
521 pthread_mutex_init (&_aligned_blocks_mutex, NULL);
522 pthread_atfork (malloc_atfork_handler_prepare,
523 malloc_atfork_handler_parent,
524 malloc_atfork_handler_child);
525 _malloc_thread_enabled_p = 1;
526 }
527 #endif
528
529 static void
530 malloc_initialize_1 (void)
531 {
532 #ifdef GC_MCHECK
533 mcheck (NULL);
534 #endif
535
536 #ifdef CYGWIN
537 if (bss_sbrk_did_unexec)
538 /* we're reinitializing the dumped emacs */
539 {
540 bss_sbrk_heapbase = _heapbase;
541 bss_sbrk_heapinfo = _heapinfo;
542 memset (_fraghead, 0, BLOCKLOG * sizeof (struct list));
543 }
544 #endif
545
546 if (__malloc_initialize_hook)
547 (*__malloc_initialize_hook) ();
548
549 heapsize = HEAP / BLOCKSIZE;
550 _heapinfo = align (heapsize * sizeof (malloc_info));
551 if (_heapinfo == NULL)
552 return;
553 memset (_heapinfo, 0, heapsize * sizeof (malloc_info));
554 _heapinfo[0].free.size = 0;
555 _heapinfo[0].free.next = _heapinfo[0].free.prev = 0;
556 _heapindex = 0;
557 _heapbase = (char *) _heapinfo;
558 _heaplimit = BLOCK (_heapbase + heapsize * sizeof (malloc_info));
559
560 register_heapinfo ();
561
562 __malloc_initialized = 1;
563 PROTECT_MALLOC_STATE (1);
564 return;
565 }
566
567 /* Set everything up and remember that we have.
568 main will call malloc which calls this function. That is before any threads
569 or signal handlers has been set up, so we don't need thread protection. */
570 int
571 __malloc_initialize (void)
572 {
573 if (__malloc_initialized)
574 return 0;
575
576 malloc_initialize_1 ();
577
578 return __malloc_initialized;
579 }
580
581 static int morecore_recursing;
582
583 /* Get neatly aligned memory, initializing or
584 growing the heap info table as necessary. */
585 static void *
586 morecore_nolock (size_t size)
587 {
588 void *result;
589 malloc_info *newinfo, *oldinfo;
590 size_t newsize;
591
592 if (morecore_recursing)
593 /* Avoid recursion. The caller will know how to handle a null return. */
594 return NULL;
595
596 result = align (size);
597 if (result == NULL)
598 return NULL;
599
600 PROTECT_MALLOC_STATE (0);
601
602 /* Check if we need to grow the info table. */
603 if ((size_t) BLOCK ((char *) result + size) > heapsize)
604 {
605 /* Calculate the new _heapinfo table size. We do not account for the
606 added blocks in the table itself, as we hope to place them in
607 existing free space, which is already covered by part of the
608 existing table. */
609 newsize = heapsize;
610 do
611 newsize *= 2;
612 while ((size_t) BLOCK ((char *) result + size) > newsize);
613
614 /* We must not reuse existing core for the new info table when called
615 from realloc in the case of growing a large block, because the
616 block being grown is momentarily marked as free. In this case
617 _heaplimit is zero so we know not to reuse space for internal
618 allocation. */
619 if (_heaplimit != 0)
620 {
621 /* First try to allocate the new info table in core we already
622 have, in the usual way using realloc. If realloc cannot
623 extend it in place or relocate it to existing sufficient core,
624 we will get called again, and the code above will notice the
625 `morecore_recursing' flag and return null. */
626 int save = errno; /* Don't want to clobber errno with ENOMEM. */
627 morecore_recursing = 1;
628 newinfo = _realloc_internal_nolock (_heapinfo,
629 newsize * sizeof (malloc_info));
630 morecore_recursing = 0;
631 if (newinfo == NULL)
632 errno = save;
633 else
634 {
635 /* We found some space in core, and realloc has put the old
636 table's blocks on the free list. Now zero the new part
637 of the table and install the new table location. */
638 memset (&newinfo[heapsize], 0,
639 (newsize - heapsize) * sizeof (malloc_info));
640 _heapinfo = newinfo;
641 heapsize = newsize;
642 goto got_heap;
643 }
644 }
645
646 /* Allocate new space for the malloc info table. */
647 while (1)
648 {
649 newinfo = align (newsize * sizeof (malloc_info));
650
651 /* Did it fail? */
652 if (newinfo == NULL)
653 {
654 (*__morecore) (-size);
655 return NULL;
656 }
657
658 /* Is it big enough to record status for its own space?
659 If so, we win. */
660 if ((size_t) BLOCK ((char *) newinfo
661 + newsize * sizeof (malloc_info))
662 < newsize)
663 break;
664
665 /* Must try again. First give back most of what we just got. */
666 (*__morecore) (- newsize * sizeof (malloc_info));
667 newsize *= 2;
668 }
669
670 /* Copy the old table to the beginning of the new,
671 and zero the rest of the new table. */
672 memcpy (newinfo, _heapinfo, heapsize * sizeof (malloc_info));
673 memset (&newinfo[heapsize], 0,
674 (newsize - heapsize) * sizeof (malloc_info));
675 oldinfo = _heapinfo;
676 _heapinfo = newinfo;
677 heapsize = newsize;
678
679 register_heapinfo ();
680
681 /* Reset _heaplimit so _free_internal never decides
682 it can relocate or resize the info table. */
683 _heaplimit = 0;
684 _free_internal_nolock (oldinfo);
685 PROTECT_MALLOC_STATE (0);
686
687 /* The new heap limit includes the new table just allocated. */
688 _heaplimit = BLOCK ((char *) newinfo + heapsize * sizeof (malloc_info));
689 return result;
690 }
691
692 got_heap:
693 _heaplimit = BLOCK ((char *) result + size);
694 return result;
695 }
696
697 /* Allocate memory from the heap. */
698 void *
699 _malloc_internal_nolock (size_t size)
700 {
701 void *result;
702 size_t block, blocks, lastblocks, start;
703 register size_t i;
704 struct list *next;
705
706 /* ANSI C allows `malloc (0)' to either return NULL, or to return a
707 valid address you can realloc and free (though not dereference).
708
709 It turns out that some extant code (sunrpc, at least Ultrix's version)
710 expects `malloc (0)' to return non-NULL and breaks otherwise.
711 Be compatible. */
712
713 #if 0
714 if (size == 0)
715 return NULL;
716 #endif
717
718 PROTECT_MALLOC_STATE (0);
719
720 if (size < sizeof (struct list))
721 size = sizeof (struct list);
722
723 /* Determine the allocation policy based on the request size. */
724 if (size <= BLOCKSIZE / 2)
725 {
726 /* Small allocation to receive a fragment of a block.
727 Determine the logarithm to base two of the fragment size. */
728 register size_t log = 1;
729 --size;
730 while ((size /= 2) != 0)
731 ++log;
732
733 /* Look in the fragment lists for a
734 free fragment of the desired size. */
735 next = _fraghead[log].next;
736 if (next != NULL)
737 {
738 /* There are free fragments of this size.
739 Pop a fragment out of the fragment list and return it.
740 Update the block's nfree and first counters. */
741 result = next;
742 next->prev->next = next->next;
743 if (next->next != NULL)
744 next->next->prev = next->prev;
745 block = BLOCK (result);
746 if (--_heapinfo[block].busy.info.frag.nfree != 0)
747 _heapinfo[block].busy.info.frag.first =
748 (uintptr_t) next->next % BLOCKSIZE >> log;
749
750 /* Update the statistics. */
751 ++_chunks_used;
752 _bytes_used += 1 << log;
753 --_chunks_free;
754 _bytes_free -= 1 << log;
755 }
756 else
757 {
758 /* No free fragments of the desired size, so get a new block
759 and break it into fragments, returning the first. */
760 #ifdef GC_MALLOC_CHECK
761 result = _malloc_internal_nolock (BLOCKSIZE);
762 PROTECT_MALLOC_STATE (0);
763 #elif defined (USE_PTHREAD)
764 result = _malloc_internal_nolock (BLOCKSIZE);
765 #else
766 result = malloc (BLOCKSIZE);
767 #endif
768 if (result == NULL)
769 {
770 PROTECT_MALLOC_STATE (1);
771 goto out;
772 }
773
774 /* Link all fragments but the first into the free list. */
775 next = (struct list *) ((char *) result + (1 << log));
776 next->next = NULL;
777 next->prev = &_fraghead[log];
778 _fraghead[log].next = next;
779
780 for (i = 2; i < (size_t) (BLOCKSIZE >> log); ++i)
781 {
782 next = (struct list *) ((char *) result + (i << log));
783 next->next = _fraghead[log].next;
784 next->prev = &_fraghead[log];
785 next->prev->next = next;
786 next->next->prev = next;
787 }
788
789 /* Initialize the nfree and first counters for this block. */
790 block = BLOCK (result);
791 _heapinfo[block].busy.type = log;
792 _heapinfo[block].busy.info.frag.nfree = i - 1;
793 _heapinfo[block].busy.info.frag.first = i - 1;
794
795 _chunks_free += (BLOCKSIZE >> log) - 1;
796 _bytes_free += BLOCKSIZE - (1 << log);
797 _bytes_used -= BLOCKSIZE - (1 << log);
798 }
799 }
800 else
801 {
802 /* Large allocation to receive one or more blocks.
803 Search the free list in a circle starting at the last place visited.
804 If we loop completely around without finding a large enough
805 space we will have to get more memory from the system. */
806 blocks = BLOCKIFY (size);
807 start = block = _heapindex;
808 while (_heapinfo[block].free.size < blocks)
809 {
810 block = _heapinfo[block].free.next;
811 if (block == start)
812 {
813 /* Need to get more from the system. Get a little extra. */
814 size_t wantblocks = blocks + __malloc_extra_blocks;
815 block = _heapinfo[0].free.prev;
816 lastblocks = _heapinfo[block].free.size;
817 /* Check to see if the new core will be contiguous with the
818 final free block; if so we don't need to get as much. */
819 if (_heaplimit != 0 && block + lastblocks == _heaplimit &&
820 /* We can't do this if we will have to make the heap info
821 table bigger to accommodate the new space. */
822 block + wantblocks <= heapsize &&
823 get_contiguous_space ((wantblocks - lastblocks) * BLOCKSIZE,
824 ADDRESS (block + lastblocks)))
825 {
826 /* We got it contiguously. Which block we are extending
827 (the `final free block' referred to above) might have
828 changed, if it got combined with a freed info table. */
829 block = _heapinfo[0].free.prev;
830 _heapinfo[block].free.size += (wantblocks - lastblocks);
831 _bytes_free += (wantblocks - lastblocks) * BLOCKSIZE;
832 _heaplimit += wantblocks - lastblocks;
833 continue;
834 }
835 result = morecore_nolock (wantblocks * BLOCKSIZE);
836 if (result == NULL)
837 goto out;
838 block = BLOCK (result);
839 /* Put the new block at the end of the free list. */
840 _heapinfo[block].free.size = wantblocks;
841 _heapinfo[block].free.prev = _heapinfo[0].free.prev;
842 _heapinfo[block].free.next = 0;
843 _heapinfo[0].free.prev = block;
844 _heapinfo[_heapinfo[block].free.prev].free.next = block;
845 ++_chunks_free;
846 /* Now loop to use some of that block for this allocation. */
847 }
848 }
849
850 /* At this point we have found a suitable free list entry.
851 Figure out how to remove what we need from the list. */
852 result = ADDRESS (block);
853 if (_heapinfo[block].free.size > blocks)
854 {
855 /* The block we found has a bit left over,
856 so relink the tail end back into the free list. */
857 _heapinfo[block + blocks].free.size
858 = _heapinfo[block].free.size - blocks;
859 _heapinfo[block + blocks].free.next
860 = _heapinfo[block].free.next;
861 _heapinfo[block + blocks].free.prev
862 = _heapinfo[block].free.prev;
863 _heapinfo[_heapinfo[block].free.prev].free.next
864 = _heapinfo[_heapinfo[block].free.next].free.prev
865 = _heapindex = block + blocks;
866 }
867 else
868 {
869 /* The block exactly matches our requirements,
870 so just remove it from the list. */
871 _heapinfo[_heapinfo[block].free.next].free.prev
872 = _heapinfo[block].free.prev;
873 _heapinfo[_heapinfo[block].free.prev].free.next
874 = _heapindex = _heapinfo[block].free.next;
875 --_chunks_free;
876 }
877
878 _heapinfo[block].busy.type = 0;
879 _heapinfo[block].busy.info.size = blocks;
880 ++_chunks_used;
881 _bytes_used += blocks * BLOCKSIZE;
882 _bytes_free -= blocks * BLOCKSIZE;
883
884 /* Mark all the blocks of the object just allocated except for the
885 first with a negative number so you can find the first block by
886 adding that adjustment. */
887 while (--blocks > 0)
888 _heapinfo[block + blocks].busy.info.size = -blocks;
889 }
890
891 PROTECT_MALLOC_STATE (1);
892 out:
893 return result;
894 }
895
896 void *
897 _malloc_internal (size_t size)
898 {
899 void *result;
900
901 LOCK ();
902 result = _malloc_internal_nolock (size);
903 UNLOCK ();
904
905 return result;
906 }
907
908 void *
909 malloc (size_t size)
910 {
911 void *(*hook) (size_t);
912
913 if (!__malloc_initialized && !__malloc_initialize ())
914 return NULL;
915
916 /* Copy the value of __malloc_hook to an automatic variable in case
917 __malloc_hook is modified in another thread between its
918 NULL-check and the use.
919
920 Note: Strictly speaking, this is not a right solution. We should
921 use mutexes to access non-read-only variables that are shared
922 among multiple threads. We just leave it for compatibility with
923 glibc malloc (i.e., assignments to __malloc_hook) for now. */
924 hook = __malloc_hook;
925 return (hook != NULL ? *hook : _malloc_internal) (size);
926 }
927 \f
928 #ifndef _LIBC
929
930 /* On some ANSI C systems, some libc functions call _malloc, _free
931 and _realloc. Make them use the GNU functions. */
932
933 extern void *_malloc (size_t);
934 extern void _free (void *);
935 extern void *_realloc (void *, size_t);
936
937 void *
938 _malloc (size_t size)
939 {
940 return malloc (size);
941 }
942
943 void
944 _free (void *ptr)
945 {
946 free (ptr);
947 }
948
949 void *
950 _realloc (void *ptr, size_t size)
951 {
952 return realloc (ptr, size);
953 }
954
955 #endif
956 /* Free a block of memory allocated by `malloc'.
957 Copyright 1990, 1991, 1992, 1994, 1995 Free Software Foundation, Inc.
958 Written May 1989 by Mike Haertel.
959
960 This library is free software; you can redistribute it and/or
961 modify it under the terms of the GNU General Public License as
962 published by the Free Software Foundation; either version 2 of the
963 License, or (at your option) any later version.
964
965 This library is distributed in the hope that it will be useful,
966 but WITHOUT ANY WARRANTY; without even the implied warranty of
967 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
968 General Public License for more details.
969
970 You should have received a copy of the GNU General Public
971 License along with this library; see the file COPYING. If
972 not, write to the Free Software Foundation, Inc., 51 Franklin Street,
973 Fifth Floor, Boston, MA 02110-1301, USA.
974
975 The author may be reached (Email) at the address mike@ai.mit.edu,
976 or (US mail) as Mike Haertel c/o Free Software Foundation. */
977
978
979 /* Debugging hook for free. */
980 void (*__free_hook) (void *__ptr);
981
982 /* List of blocks allocated by memalign. */
983 struct alignlist *_aligned_blocks = NULL;
984
985 /* Return memory to the heap.
986 Like `_free_internal' but don't lock mutex. */
987 void
988 _free_internal_nolock (void *ptr)
989 {
990 int type;
991 size_t block, blocks;
992 register size_t i;
993 struct list *prev, *next;
994 void *curbrk;
995 const size_t lesscore_threshold
996 /* Threshold of free space at which we will return some to the system. */
997 = FINAL_FREE_BLOCKS + 2 * __malloc_extra_blocks;
998
999 register struct alignlist *l;
1000
1001 if (ptr == NULL)
1002 return;
1003
1004 #ifdef CYGWIN
1005 if ((char *) ptr < _heapbase)
1006 /* We're being asked to free something in the static heap. */
1007 return;
1008 #endif
1009
1010 PROTECT_MALLOC_STATE (0);
1011
1012 LOCK_ALIGNED_BLOCKS ();
1013 for (l = _aligned_blocks; l != NULL; l = l->next)
1014 if (l->aligned == ptr)
1015 {
1016 l->aligned = NULL; /* Mark the slot in the list as free. */
1017 ptr = l->exact;
1018 break;
1019 }
1020 UNLOCK_ALIGNED_BLOCKS ();
1021
1022 block = BLOCK (ptr);
1023
1024 type = _heapinfo[block].busy.type;
1025 switch (type)
1026 {
1027 case 0:
1028 /* Get as many statistics as early as we can. */
1029 --_chunks_used;
1030 _bytes_used -= _heapinfo[block].busy.info.size * BLOCKSIZE;
1031 _bytes_free += _heapinfo[block].busy.info.size * BLOCKSIZE;
1032
1033 /* Find the free cluster previous to this one in the free list.
1034 Start searching at the last block referenced; this may benefit
1035 programs with locality of allocation. */
1036 i = _heapindex;
1037 if (i > block)
1038 while (i > block)
1039 i = _heapinfo[i].free.prev;
1040 else
1041 {
1042 do
1043 i = _heapinfo[i].free.next;
1044 while (i > 0 && i < block);
1045 i = _heapinfo[i].free.prev;
1046 }
1047
1048 /* Determine how to link this block into the free list. */
1049 if (block == i + _heapinfo[i].free.size)
1050 {
1051 /* Coalesce this block with its predecessor. */
1052 _heapinfo[i].free.size += _heapinfo[block].busy.info.size;
1053 block = i;
1054 }
1055 else
1056 {
1057 /* Really link this block back into the free list. */
1058 _heapinfo[block].free.size = _heapinfo[block].busy.info.size;
1059 _heapinfo[block].free.next = _heapinfo[i].free.next;
1060 _heapinfo[block].free.prev = i;
1061 _heapinfo[i].free.next = block;
1062 _heapinfo[_heapinfo[block].free.next].free.prev = block;
1063 ++_chunks_free;
1064 }
1065
1066 /* Now that the block is linked in, see if we can coalesce it
1067 with its successor (by deleting its successor from the list
1068 and adding in its size). */
1069 if (block + _heapinfo[block].free.size == _heapinfo[block].free.next)
1070 {
1071 _heapinfo[block].free.size
1072 += _heapinfo[_heapinfo[block].free.next].free.size;
1073 _heapinfo[block].free.next
1074 = _heapinfo[_heapinfo[block].free.next].free.next;
1075 _heapinfo[_heapinfo[block].free.next].free.prev = block;
1076 --_chunks_free;
1077 }
1078
1079 /* How many trailing free blocks are there now? */
1080 blocks = _heapinfo[block].free.size;
1081
1082 /* Where is the current end of accessible core? */
1083 curbrk = (*__morecore) (0);
1084
1085 if (_heaplimit != 0 && curbrk == ADDRESS (_heaplimit))
1086 {
1087 /* The end of the malloc heap is at the end of accessible core.
1088 It's possible that moving _heapinfo will allow us to
1089 return some space to the system. */
1090
1091 size_t info_block = BLOCK (_heapinfo);
1092 size_t info_blocks = _heapinfo[info_block].busy.info.size;
1093 size_t prev_block = _heapinfo[block].free.prev;
1094 size_t prev_blocks = _heapinfo[prev_block].free.size;
1095 size_t next_block = _heapinfo[block].free.next;
1096 size_t next_blocks = _heapinfo[next_block].free.size;
1097
1098 if (/* Win if this block being freed is last in core, the info table
1099 is just before it, the previous free block is just before the
1100 info table, and the two free blocks together form a useful
1101 amount to return to the system. */
1102 (block + blocks == _heaplimit &&
1103 info_block + info_blocks == block &&
1104 prev_block != 0 && prev_block + prev_blocks == info_block &&
1105 blocks + prev_blocks >= lesscore_threshold) ||
1106 /* Nope, not the case. We can also win if this block being
1107 freed is just before the info table, and the table extends
1108 to the end of core or is followed only by a free block,
1109 and the total free space is worth returning to the system. */
1110 (block + blocks == info_block &&
1111 ((info_block + info_blocks == _heaplimit &&
1112 blocks >= lesscore_threshold) ||
1113 (info_block + info_blocks == next_block &&
1114 next_block + next_blocks == _heaplimit &&
1115 blocks + next_blocks >= lesscore_threshold)))
1116 )
1117 {
1118 malloc_info *newinfo;
1119 size_t oldlimit = _heaplimit;
1120
1121 /* Free the old info table, clearing _heaplimit to avoid
1122 recursion into this code. We don't want to return the
1123 table's blocks to the system before we have copied them to
1124 the new location. */
1125 _heaplimit = 0;
1126 _free_internal_nolock (_heapinfo);
1127 _heaplimit = oldlimit;
1128
1129 /* Tell malloc to search from the beginning of the heap for
1130 free blocks, so it doesn't reuse the ones just freed. */
1131 _heapindex = 0;
1132
1133 /* Allocate new space for the info table and move its data. */
1134 newinfo = _malloc_internal_nolock (info_blocks * BLOCKSIZE);
1135 PROTECT_MALLOC_STATE (0);
1136 memmove (newinfo, _heapinfo, info_blocks * BLOCKSIZE);
1137 _heapinfo = newinfo;
1138
1139 /* We should now have coalesced the free block with the
1140 blocks freed from the old info table. Examine the entire
1141 trailing free block to decide below whether to return some
1142 to the system. */
1143 block = _heapinfo[0].free.prev;
1144 blocks = _heapinfo[block].free.size;
1145 }
1146
1147 /* Now see if we can return stuff to the system. */
1148 if (block + blocks == _heaplimit && blocks >= lesscore_threshold)
1149 {
1150 register size_t bytes = blocks * BLOCKSIZE;
1151 _heaplimit -= blocks;
1152 (*__morecore) (-bytes);
1153 _heapinfo[_heapinfo[block].free.prev].free.next
1154 = _heapinfo[block].free.next;
1155 _heapinfo[_heapinfo[block].free.next].free.prev
1156 = _heapinfo[block].free.prev;
1157 block = _heapinfo[block].free.prev;
1158 --_chunks_free;
1159 _bytes_free -= bytes;
1160 }
1161 }
1162
1163 /* Set the next search to begin at this block. */
1164 _heapindex = block;
1165 break;
1166
1167 default:
1168 /* Do some of the statistics. */
1169 --_chunks_used;
1170 _bytes_used -= 1 << type;
1171 ++_chunks_free;
1172 _bytes_free += 1 << type;
1173
1174 /* Get the address of the first free fragment in this block. */
1175 prev = (struct list *) ((char *) ADDRESS (block) +
1176 (_heapinfo[block].busy.info.frag.first << type));
1177
1178 if (_heapinfo[block].busy.info.frag.nfree == (BLOCKSIZE >> type) - 1)
1179 {
1180 /* If all fragments of this block are free, remove them
1181 from the fragment list and free the whole block. */
1182 next = prev;
1183 for (i = 1; i < (size_t) (BLOCKSIZE >> type); ++i)
1184 next = next->next;
1185 prev->prev->next = next;
1186 if (next != NULL)
1187 next->prev = prev->prev;
1188 _heapinfo[block].busy.type = 0;
1189 _heapinfo[block].busy.info.size = 1;
1190
1191 /* Keep the statistics accurate. */
1192 ++_chunks_used;
1193 _bytes_used += BLOCKSIZE;
1194 _chunks_free -= BLOCKSIZE >> type;
1195 _bytes_free -= BLOCKSIZE;
1196
1197 #if defined (GC_MALLOC_CHECK) || defined (USE_PTHREAD)
1198 _free_internal_nolock (ADDRESS (block));
1199 #else
1200 free (ADDRESS (block));
1201 #endif
1202 }
1203 else if (_heapinfo[block].busy.info.frag.nfree != 0)
1204 {
1205 /* If some fragments of this block are free, link this
1206 fragment into the fragment list after the first free
1207 fragment of this block. */
1208 next = ptr;
1209 next->next = prev->next;
1210 next->prev = prev;
1211 prev->next = next;
1212 if (next->next != NULL)
1213 next->next->prev = next;
1214 ++_heapinfo[block].busy.info.frag.nfree;
1215 }
1216 else
1217 {
1218 /* No fragments of this block are free, so link this
1219 fragment into the fragment list and announce that
1220 it is the first free fragment of this block. */
1221 prev = ptr;
1222 _heapinfo[block].busy.info.frag.nfree = 1;
1223 _heapinfo[block].busy.info.frag.first =
1224 (uintptr_t) ptr % BLOCKSIZE >> type;
1225 prev->next = _fraghead[type].next;
1226 prev->prev = &_fraghead[type];
1227 prev->prev->next = prev;
1228 if (prev->next != NULL)
1229 prev->next->prev = prev;
1230 }
1231 break;
1232 }
1233
1234 PROTECT_MALLOC_STATE (1);
1235 }
1236
1237 /* Return memory to the heap.
1238 Like `free' but don't call a __free_hook if there is one. */
1239 void
1240 _free_internal (void *ptr)
1241 {
1242 LOCK ();
1243 _free_internal_nolock (ptr);
1244 UNLOCK ();
1245 }
1246
1247 /* Return memory to the heap. */
1248
1249 void
1250 free (void *ptr)
1251 {
1252 void (*hook) (void *) = __free_hook;
1253
1254 if (hook != NULL)
1255 (*hook) (ptr);
1256 else
1257 _free_internal (ptr);
1258 }
1259
1260 /* Define the `cfree' alias for `free'. */
1261 #ifdef weak_alias
1262 weak_alias (free, cfree)
1263 #else
1264 void
1265 cfree (void *ptr)
1266 {
1267 free (ptr);
1268 }
1269 #endif
1270 /* Change the size of a block allocated by `malloc'.
1271 Copyright 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
1272 Written May 1989 by Mike Haertel.
1273
1274 This library is free software; you can redistribute it and/or
1275 modify it under the terms of the GNU General Public License as
1276 published by the Free Software Foundation; either version 2 of the
1277 License, or (at your option) any later version.
1278
1279 This library is distributed in the hope that it will be useful,
1280 but WITHOUT ANY WARRANTY; without even the implied warranty of
1281 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1282 General Public License for more details.
1283
1284 You should have received a copy of the GNU General Public
1285 License along with this library; see the file COPYING. If
1286 not, write to the Free Software Foundation, Inc., 51 Franklin Street,
1287 Fifth Floor, Boston, MA 02110-1301, USA.
1288
1289 The author may be reached (Email) at the address mike@ai.mit.edu,
1290 or (US mail) as Mike Haertel c/o Free Software Foundation. */
1291
1292 #define min(A, B) ((A) < (B) ? (A) : (B))
1293
1294 /* On Cygwin the dumped emacs may try to realloc storage allocated in
1295 the static heap. We just malloc space in the new heap and copy the
1296 data. */
1297 #ifdef CYGWIN
1298 void *
1299 special_realloc (void *ptr, size_t size)
1300 {
1301 void *result;
1302 int type;
1303 size_t block, oldsize;
1304
1305 block = ((char *) ptr - bss_sbrk_heapbase) / BLOCKSIZE + 1;
1306 type = bss_sbrk_heapinfo[block].busy.type;
1307 oldsize =
1308 type == 0 ? bss_sbrk_heapinfo[block].busy.info.size * BLOCKSIZE
1309 : (size_t) 1 << type;
1310 result = _malloc_internal_nolock (size);
1311 if (result != NULL)
1312 memcpy (result, ptr, min (oldsize, size));
1313 return result;
1314 }
1315 #endif
1316
1317 /* Debugging hook for realloc. */
1318 void *(*__realloc_hook) (void *ptr, size_t size);
1319
1320 /* Resize the given region to the new size, returning a pointer
1321 to the (possibly moved) region. This is optimized for speed;
1322 some benchmarks seem to indicate that greater compactness is
1323 achieved by unconditionally allocating and copying to a
1324 new region. This module has incestuous knowledge of the
1325 internals of both free and malloc. */
1326 void *
1327 _realloc_internal_nolock (void *ptr, size_t size)
1328 {
1329 void *result;
1330 int type;
1331 size_t block, blocks, oldlimit;
1332
1333 if (size == 0)
1334 {
1335 _free_internal_nolock (ptr);
1336 return _malloc_internal_nolock (0);
1337 }
1338 else if (ptr == NULL)
1339 return _malloc_internal_nolock (size);
1340
1341 #ifdef CYGWIN
1342 if ((char *) ptr < _heapbase)
1343 /* ptr points into the static heap */
1344 return special_realloc (ptr, size);
1345 #endif
1346
1347 block = BLOCK (ptr);
1348
1349 PROTECT_MALLOC_STATE (0);
1350
1351 type = _heapinfo[block].busy.type;
1352 switch (type)
1353 {
1354 case 0:
1355 /* Maybe reallocate a large block to a small fragment. */
1356 if (size <= BLOCKSIZE / 2)
1357 {
1358 result = _malloc_internal_nolock (size);
1359 if (result != NULL)
1360 {
1361 memcpy (result, ptr, size);
1362 _free_internal_nolock (ptr);
1363 goto out;
1364 }
1365 }
1366
1367 /* The new size is a large allocation as well;
1368 see if we can hold it in place. */
1369 blocks = BLOCKIFY (size);
1370 if (blocks < _heapinfo[block].busy.info.size)
1371 {
1372 /* The new size is smaller; return
1373 excess memory to the free list. */
1374 _heapinfo[block + blocks].busy.type = 0;
1375 _heapinfo[block + blocks].busy.info.size
1376 = _heapinfo[block].busy.info.size - blocks;
1377 _heapinfo[block].busy.info.size = blocks;
1378 /* We have just created a new chunk by splitting a chunk in two.
1379 Now we will free this chunk; increment the statistics counter
1380 so it doesn't become wrong when _free_internal decrements it. */
1381 ++_chunks_used;
1382 _free_internal_nolock (ADDRESS (block + blocks));
1383 result = ptr;
1384 }
1385 else if (blocks == _heapinfo[block].busy.info.size)
1386 /* No size change necessary. */
1387 result = ptr;
1388 else
1389 {
1390 /* Won't fit, so allocate a new region that will.
1391 Free the old region first in case there is sufficient
1392 adjacent free space to grow without moving. */
1393 blocks = _heapinfo[block].busy.info.size;
1394 /* Prevent free from actually returning memory to the system. */
1395 oldlimit = _heaplimit;
1396 _heaplimit = 0;
1397 _free_internal_nolock (ptr);
1398 result = _malloc_internal_nolock (size);
1399 PROTECT_MALLOC_STATE (0);
1400 if (_heaplimit == 0)
1401 _heaplimit = oldlimit;
1402 if (result == NULL)
1403 {
1404 /* Now we're really in trouble. We have to unfree
1405 the thing we just freed. Unfortunately it might
1406 have been coalesced with its neighbors. */
1407 if (_heapindex == block)
1408 (void) _malloc_internal_nolock (blocks * BLOCKSIZE);
1409 else
1410 {
1411 void *previous
1412 = _malloc_internal_nolock ((block - _heapindex) * BLOCKSIZE);
1413 (void) _malloc_internal_nolock (blocks * BLOCKSIZE);
1414 _free_internal_nolock (previous);
1415 }
1416 goto out;
1417 }
1418 if (ptr != result)
1419 memmove (result, ptr, blocks * BLOCKSIZE);
1420 }
1421 break;
1422
1423 default:
1424 /* Old size is a fragment; type is logarithm
1425 to base two of the fragment size. */
1426 if (size > (size_t) (1 << (type - 1)) &&
1427 size <= (size_t) (1 << type))
1428 /* The new size is the same kind of fragment. */
1429 result = ptr;
1430 else
1431 {
1432 /* The new size is different; allocate a new space,
1433 and copy the lesser of the new size and the old. */
1434 result = _malloc_internal_nolock (size);
1435 if (result == NULL)
1436 goto out;
1437 memcpy (result, ptr, min (size, (size_t) 1 << type));
1438 _free_internal_nolock (ptr);
1439 }
1440 break;
1441 }
1442
1443 PROTECT_MALLOC_STATE (1);
1444 out:
1445 return result;
1446 }
1447
1448 void *
1449 _realloc_internal (void *ptr, size_t size)
1450 {
1451 void *result;
1452
1453 LOCK ();
1454 result = _realloc_internal_nolock (ptr, size);
1455 UNLOCK ();
1456
1457 return result;
1458 }
1459
1460 void *
1461 realloc (void *ptr, size_t size)
1462 {
1463 void *(*hook) (void *, size_t);
1464
1465 if (!__malloc_initialized && !__malloc_initialize ())
1466 return NULL;
1467
1468 hook = __realloc_hook;
1469 return (hook != NULL ? *hook : _realloc_internal) (ptr, size);
1470 }
1471 /* Copyright (C) 1991, 1992, 1994 Free Software Foundation, Inc.
1472
1473 This library is free software; you can redistribute it and/or
1474 modify it under the terms of the GNU General Public License as
1475 published by the Free Software Foundation; either version 2 of the
1476 License, or (at your option) any later version.
1477
1478 This library is distributed in the hope that it will be useful,
1479 but WITHOUT ANY WARRANTY; without even the implied warranty of
1480 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1481 General Public License for more details.
1482
1483 You should have received a copy of the GNU General Public
1484 License along with this library; see the file COPYING. If
1485 not, write to the Free Software Foundation, Inc., 51 Franklin Street,
1486 Fifth Floor, Boston, MA 02110-1301, USA.
1487
1488 The author may be reached (Email) at the address mike@ai.mit.edu,
1489 or (US mail) as Mike Haertel c/o Free Software Foundation. */
1490
1491 /* Allocate an array of NMEMB elements each SIZE bytes long.
1492 The entire array is initialized to zeros. */
1493 void *
1494 calloc (register size_t nmemb, register size_t size)
1495 {
1496 register void *result = malloc (nmemb * size);
1497
1498 if (result != NULL)
1499 (void) memset (result, 0, nmemb * size);
1500
1501 return result;
1502 }
1503 /* Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
1504 This file is part of the GNU C Library.
1505
1506 The GNU C Library is free software; you can redistribute it and/or modify
1507 it under the terms of the GNU General Public License as published by
1508 the Free Software Foundation; either version 2, or (at your option)
1509 any later version.
1510
1511 The GNU C Library is distributed in the hope that it will be useful,
1512 but WITHOUT ANY WARRANTY; without even the implied warranty of
1513 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1514 GNU General Public License for more details.
1515
1516 You should have received a copy of the GNU General Public License
1517 along with the GNU C Library; see the file COPYING. If not, write to
1518 the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
1519 MA 02110-1301, USA. */
1520
1521 /* uClibc defines __GNU_LIBRARY__, but it is not completely
1522 compatible. */
1523 #if !defined (__GNU_LIBRARY__) || defined (__UCLIBC__)
1524 #define __sbrk sbrk
1525 #else /* __GNU_LIBRARY__ && ! defined (__UCLIBC__) */
1526 /* It is best not to declare this and cast its result on foreign operating
1527 systems with potentially hostile include files. */
1528
1529 extern void *__sbrk (ptrdiff_t increment);
1530 #endif /* __GNU_LIBRARY__ && ! defined (__UCLIBC__) */
1531
1532 /* Allocate INCREMENT more bytes of data space,
1533 and return the start of data space, or NULL on errors.
1534 If INCREMENT is negative, shrink data space. */
1535 void *
1536 __default_morecore (ptrdiff_t increment)
1537 {
1538 void *result;
1539 #if defined (CYGWIN)
1540 if (!bss_sbrk_did_unexec)
1541 {
1542 return bss_sbrk (increment);
1543 }
1544 #endif
1545 result = (void *) __sbrk (increment);
1546 if (result == (void *) -1)
1547 return NULL;
1548 return result;
1549 }
1550 /* Copyright (C) 1991, 92, 93, 94, 95, 96 Free Software Foundation, Inc.
1551
1552 This library is free software; you can redistribute it and/or
1553 modify it under the terms of the GNU General Public License as
1554 published by the Free Software Foundation; either version 2 of the
1555 License, or (at your option) any later version.
1556
1557 This library is distributed in the hope that it will be useful,
1558 but WITHOUT ANY WARRANTY; without even the implied warranty of
1559 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1560 General Public License for more details.
1561
1562 You should have received a copy of the GNU General Public
1563 License along with this library; see the file COPYING. If
1564 not, write to the Free Software Foundation, Inc., 51 Franklin Street,
1565 Fifth Floor, Boston, MA 02110-1301, USA. */
1566
1567 void *(*__memalign_hook) (size_t size, size_t alignment);
1568
1569 void *
1570 memalign (size_t alignment, size_t size)
1571 {
1572 void *result;
1573 size_t adj, lastadj;
1574 void *(*hook) (size_t, size_t) = __memalign_hook;
1575
1576 if (hook)
1577 return (*hook) (alignment, size);
1578
1579 /* Allocate a block with enough extra space to pad the block with up to
1580 (ALIGNMENT - 1) bytes if necessary. */
1581 result = malloc (size + alignment - 1);
1582 if (result == NULL)
1583 return NULL;
1584
1585 /* Figure out how much we will need to pad this particular block
1586 to achieve the required alignment. */
1587 adj = (uintptr_t) result % alignment;
1588
1589 do
1590 {
1591 /* Reallocate the block with only as much excess as it needs. */
1592 free (result);
1593 result = malloc (adj + size);
1594 if (result == NULL) /* Impossible unless interrupted. */
1595 return NULL;
1596
1597 lastadj = adj;
1598 adj = (uintptr_t) result % alignment;
1599 /* It's conceivable we might have been so unlucky as to get a
1600 different block with weaker alignment. If so, this block is too
1601 short to contain SIZE after alignment correction. So we must
1602 try again and get another block, slightly larger. */
1603 } while (adj > lastadj);
1604
1605 if (adj != 0)
1606 {
1607 /* Record this block in the list of aligned blocks, so that `free'
1608 can identify the pointer it is passed, which will be in the middle
1609 of an allocated block. */
1610
1611 struct alignlist *l;
1612 LOCK_ALIGNED_BLOCKS ();
1613 for (l = _aligned_blocks; l != NULL; l = l->next)
1614 if (l->aligned == NULL)
1615 /* This slot is free. Use it. */
1616 break;
1617 if (l == NULL)
1618 {
1619 l = malloc (sizeof *l);
1620 if (l != NULL)
1621 {
1622 l->next = _aligned_blocks;
1623 _aligned_blocks = l;
1624 }
1625 }
1626 if (l != NULL)
1627 {
1628 l->exact = result;
1629 result = l->aligned = (char *) result + alignment - adj;
1630 }
1631 UNLOCK_ALIGNED_BLOCKS ();
1632 if (l == NULL)
1633 {
1634 free (result);
1635 result = NULL;
1636 }
1637 }
1638
1639 return result;
1640 }
1641
1642 #ifndef ENOMEM
1643 #define ENOMEM 12
1644 #endif
1645
1646 #ifndef EINVAL
1647 #define EINVAL 22
1648 #endif
1649
1650 int
1651 posix_memalign (void **memptr, size_t alignment, size_t size)
1652 {
1653 void *mem;
1654
1655 if (alignment == 0
1656 || alignment % sizeof (void *) != 0
1657 || (alignment & (alignment - 1)) != 0)
1658 return EINVAL;
1659
1660 mem = memalign (alignment, size);
1661 if (mem == NULL)
1662 return ENOMEM;
1663
1664 *memptr = mem;
1665
1666 return 0;
1667 }
1668
1669 /* Allocate memory on a page boundary.
1670 Copyright (C) 1991, 92, 93, 94, 96 Free Software Foundation, Inc.
1671
1672 This library is free software; you can redistribute it and/or
1673 modify it under the terms of the GNU General Public License as
1674 published by the Free Software Foundation; either version 2 of the
1675 License, or (at your option) any later version.
1676
1677 This library is distributed in the hope that it will be useful,
1678 but WITHOUT ANY WARRANTY; without even the implied warranty of
1679 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1680 General Public License for more details.
1681
1682 You should have received a copy of the GNU General Public
1683 License along with this library; see the file COPYING. If
1684 not, write to the Free Software Foundation, Inc., 51 Franklin Street,
1685 Fifth Floor, Boston, MA 02110-1301, USA.
1686
1687 The author may be reached (Email) at the address mike@ai.mit.edu,
1688 or (US mail) as Mike Haertel c/o Free Software Foundation. */
1689
1690 /* Emacs defines GMALLOC_INHIBIT_VALLOC to avoid this definition
1691 on MSDOS, where it conflicts with a system header file. */
1692
1693 #ifndef GMALLOC_INHIBIT_VALLOC
1694
1695 /* Allocate SIZE bytes on a page boundary. */
1696 extern void *valloc (size_t);
1697
1698 #if defined _SC_PAGESIZE || !defined HAVE_GETPAGESIZE
1699 # include "getpagesize.h"
1700 #elif !defined getpagesize
1701 extern int getpagesize (void);
1702 #endif
1703
1704 static size_t pagesize;
1705
1706 void *
1707 valloc (size_t size)
1708 {
1709 if (pagesize == 0)
1710 pagesize = getpagesize ();
1711
1712 return memalign (pagesize, size);
1713 }
1714
1715 #endif /* Not ELIDE_VALLOC. */
1716
1717 #ifdef GC_MCHECK
1718
1719 /* Standard debugging hooks for `malloc'.
1720 Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
1721 Written May 1989 by Mike Haertel.
1722
1723 This library is free software; you can redistribute it and/or
1724 modify it under the terms of the GNU General Public License as
1725 published by the Free Software Foundation; either version 2 of the
1726 License, or (at your option) any later version.
1727
1728 This library is distributed in the hope that it will be useful,
1729 but WITHOUT ANY WARRANTY; without even the implied warranty of
1730 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1731 General Public License for more details.
1732
1733 You should have received a copy of the GNU General Public
1734 License along with this library; see the file COPYING. If
1735 not, write to the Free Software Foundation, Inc., 51 Franklin Street,
1736 Fifth Floor, Boston, MA 02110-1301, USA.
1737
1738 The author may be reached (Email) at the address mike@ai.mit.edu,
1739 or (US mail) as Mike Haertel c/o Free Software Foundation. */
1740
1741 #include <stdio.h>
1742
1743 /* Old hook values. */
1744 static void (*old_free_hook) (void *ptr);
1745 static void *(*old_malloc_hook) (size_t size);
1746 static void *(*old_realloc_hook) (void *ptr, size_t size);
1747
1748 /* Function to call when something awful happens. */
1749 static void (*abortfunc) (enum mcheck_status);
1750
1751 /* Arbitrary magical numbers. */
1752 #define MAGICWORD (SIZE_MAX / 11 ^ SIZE_MAX / 13 << 3)
1753 #define MAGICFREE (SIZE_MAX / 17 ^ SIZE_MAX / 19 << 4)
1754 #define MAGICBYTE ((char) 0xd7)
1755 #define MALLOCFLOOD ((char) 0x93)
1756 #define FREEFLOOD ((char) 0x95)
1757
1758 struct hdr
1759 {
1760 size_t size; /* Exact size requested by user. */
1761 size_t magic; /* Magic number to check header integrity. */
1762 };
1763
1764 static enum mcheck_status
1765 checkhdr (const struct hdr *hdr)
1766 {
1767 enum mcheck_status status;
1768 switch (hdr->magic)
1769 {
1770 default:
1771 status = MCHECK_HEAD;
1772 break;
1773 case MAGICFREE:
1774 status = MCHECK_FREE;
1775 break;
1776 case MAGICWORD:
1777 if (((char *) &hdr[1])[hdr->size] != MAGICBYTE)
1778 status = MCHECK_TAIL;
1779 else
1780 status = MCHECK_OK;
1781 break;
1782 }
1783 if (status != MCHECK_OK)
1784 (*abortfunc) (status);
1785 return status;
1786 }
1787
1788 static void
1789 freehook (void *ptr)
1790 {
1791 struct hdr *hdr;
1792
1793 if (ptr)
1794 {
1795 hdr = ((struct hdr *) ptr) - 1;
1796 checkhdr (hdr);
1797 hdr->magic = MAGICFREE;
1798 memset (ptr, FREEFLOOD, hdr->size);
1799 }
1800 else
1801 hdr = NULL;
1802
1803 __free_hook = old_free_hook;
1804 free (hdr);
1805 __free_hook = freehook;
1806 }
1807
1808 static void *
1809 mallochook (size_t size)
1810 {
1811 struct hdr *hdr;
1812
1813 __malloc_hook = old_malloc_hook;
1814 hdr = malloc (sizeof *hdr + size + 1);
1815 __malloc_hook = mallochook;
1816 if (hdr == NULL)
1817 return NULL;
1818
1819 hdr->size = size;
1820 hdr->magic = MAGICWORD;
1821 ((char *) &hdr[1])[size] = MAGICBYTE;
1822 memset (hdr + 1, MALLOCFLOOD, size);
1823 return hdr + 1;
1824 }
1825
1826 static void *
1827 reallochook (void *ptr, size_t size)
1828 {
1829 struct hdr *hdr = NULL;
1830 size_t osize = 0;
1831
1832 if (ptr)
1833 {
1834 hdr = ((struct hdr *) ptr) - 1;
1835 osize = hdr->size;
1836
1837 checkhdr (hdr);
1838 if (size < osize)
1839 memset ((char *) ptr + size, FREEFLOOD, osize - size);
1840 }
1841
1842 __free_hook = old_free_hook;
1843 __malloc_hook = old_malloc_hook;
1844 __realloc_hook = old_realloc_hook;
1845 hdr = realloc (hdr, sizeof *hdr + size + 1);
1846 __free_hook = freehook;
1847 __malloc_hook = mallochook;
1848 __realloc_hook = reallochook;
1849 if (hdr == NULL)
1850 return NULL;
1851
1852 hdr->size = size;
1853 hdr->magic = MAGICWORD;
1854 ((char *) &hdr[1])[size] = MAGICBYTE;
1855 if (size > osize)
1856 memset ((char *) (hdr + 1) + osize, MALLOCFLOOD, size - osize);
1857 return hdr + 1;
1858 }
1859
1860 static void
1861 mabort (enum mcheck_status status)
1862 {
1863 const char *msg;
1864 switch (status)
1865 {
1866 case MCHECK_OK:
1867 msg = "memory is consistent, library is buggy";
1868 break;
1869 case MCHECK_HEAD:
1870 msg = "memory clobbered before allocated block";
1871 break;
1872 case MCHECK_TAIL:
1873 msg = "memory clobbered past end of allocated block";
1874 break;
1875 case MCHECK_FREE:
1876 msg = "block freed twice";
1877 break;
1878 default:
1879 msg = "bogus mcheck_status, library is buggy";
1880 break;
1881 }
1882 #ifdef __GNU_LIBRARY__
1883 __libc_fatal (msg);
1884 #else
1885 fprintf (stderr, "mcheck: %s\n", msg);
1886 fflush (stderr);
1887 abort ();
1888 #endif
1889 }
1890
1891 static int mcheck_used = 0;
1892
1893 int
1894 mcheck (void (*func) (enum mcheck_status))
1895 {
1896 abortfunc = (func != NULL) ? func : &mabort;
1897
1898 /* These hooks may not be safely inserted if malloc is already in use. */
1899 if (!__malloc_initialized && !mcheck_used)
1900 {
1901 old_free_hook = __free_hook;
1902 __free_hook = freehook;
1903 old_malloc_hook = __malloc_hook;
1904 __malloc_hook = mallochook;
1905 old_realloc_hook = __realloc_hook;
1906 __realloc_hook = reallochook;
1907 mcheck_used = 1;
1908 }
1909
1910 return mcheck_used ? 0 : -1;
1911 }
1912
1913 enum mcheck_status
1914 mprobe (void *ptr)
1915 {
1916 return mcheck_used ? checkhdr (ptr) : MCHECK_DISABLED;
1917 }
1918
1919 #endif /* GC_MCHECK */