5ae9b3d30476ed6dbce88e6ea88eb2ae08ed834a
[dragonfly.git] / lib / libcr / stdlib / malloc.3
1 .\" Copyright (c) 1980, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" This code is derived from software contributed to Berkeley by
5 .\" the American National Standards Committee X3, on Information
6 .\" Processing Systems.
7 .\"
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
10 .\" are met:
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\"    notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\"    notice, this list of conditions and the following disclaimer in the
15 .\"    documentation and/or other materials provided with the distribution.
16 .\" 3. All advertising materials mentioning features or use of this software
17 .\"    must display the following acknowledgement:
18 .\"     This product includes software developed by the University of
19 .\"     California, Berkeley and its contributors.
20 .\" 4. Neither the name of the University nor the names of its contributors
21 .\"    may be used to endorse or promote products derived from this software
22 .\"    without specific prior written permission.
23 .\"
24 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 .\" SUCH DAMAGE.
35 .\"
36 .\"     @(#)malloc.3    8.1 (Berkeley) 6/4/93
37 .\" $FreeBSD: src/lib/libc/stdlib/malloc.3,v 1.25.2.16 2003/01/06 17:10:45 trhodes Exp $
38 .\" $DragonFly: src/lib/libcr/stdlib/Attic/malloc.3,v 1.2 2003/06/17 04:26:46 dillon Exp $
39 .\"
40 .Dd August 27, 1996
41 .Dt MALLOC 3
42 .Os
43 .Sh NAME
44 .Nm malloc , calloc , realloc , free , reallocf
45 .Nd general purpose memory allocation functions
46 .Sh LIBRARY
47 .Lb libc
48 .Sh SYNOPSIS
49 .In stdlib.h
50 .Ft void *
51 .Fn malloc "size_t size"
52 .Ft void *
53 .Fn calloc "size_t number" "size_t size"
54 .Ft void *
55 .Fn realloc "void *ptr" "size_t size"
56 .Ft void *
57 .Fn reallocf "void *ptr" "size_t size"
58 .Ft void
59 .Fn free "void *ptr"
60 .Ft char *
61 .Va malloc_options;
62 .Sh DESCRIPTION
63 The
64 .Fn malloc
65 function allocates
66 .Fa size
67 bytes of memory.
68 The allocated space is suitably aligned (after possible pointer coercion)
69 for storage of any type of object.
70 If the space is at least
71 .Em pagesize
72 bytes in length (see
73 .Xr getpagesize 3 ) ,
74 the returned memory will be page boundary aligned as well.
75 If
76 .Fn malloc
77 fails, a
78 .Dv NULL
79 pointer is returned.
80 .Pp
81 Note that
82 .Fn malloc
83 does
84 .Em NOT
85 normally initialize the returned memory to zero bytes.
86 .Pp
87 The
88 .Fn calloc
89 function allocates space for
90 .Fa number
91 objects,
92 each
93 .Fa size
94 bytes in length.
95 The result is identical to calling
96 .Fn malloc
97 with an argument of
98 .Dq "number * size" ,
99 with the exception that the allocated memory is explicitly initialized
100 to zero bytes.
101 .Pp
102 The
103 .Fn realloc
104 function changes the size of the previously allocated memory referenced by
105 .Fa ptr
106 to
107 .Fa size
108 bytes.
109 The contents of the memory are unchanged up to the lesser of the new and
110 old sizes.
111 If the new size is larger,
112 the value of the newly allocated portion of the memory is undefined.
113 If the requested memory cannot be allocated,
114 .Dv NULL
115 is returned and
116 the memory referenced by
117 .Fa ptr
118 is valid and unchanged.
119 If
120 .Fa ptr
121 is
122 .Dv NULL ,
123 the
124 .Fn realloc
125 function behaves identically to
126 .Fn malloc
127 for the specified size.
128 .Pp
129 The
130 .Fn reallocf
131 function call is identical to the realloc function call, except that it
132 will free the passed pointer when the requested memory cannot be allocated.
133 This is a
134 .Fx
135 specific API designed to ease the problems with traditional coding styles
136 for realloc causing memory leaks in libraries.
137 .Pp
138 The
139 .Fn free
140 function causes the allocated memory referenced by
141 .Fa ptr
142 to be made available for future allocations.
143 If
144 .Fa ptr
145 is
146 .Dv NULL ,
147 no action occurs.
148 .Sh TUNING
149 Once, when the first call is made to one of these memory allocation
150 routines, various flags will be set or reset, which affect the
151 workings of this allocation implementation.
152 .Pp
153 The ``name'' of the file referenced by the symbolic link named
154 .Pa /etc/malloc.conf ,
155 the value of the environment variable
156 .Ev MALLOC_OPTIONS ,
157 and the string pointed to by the global variable
158 .Va malloc_options
159 will be interpreted, in that order, character by character as flags.
160 .Pp
161 Most flags are single letters,
162 where uppercase indicates that the behavior is set, or on,
163 and lowercase means that the behavior is not set, or off.
164 .Bl -tag -width indent
165 .It A
166 All warnings (except for the warning about unknown
167 flags being set) become fatal.
168 The process will call
169 .Xr abort 3
170 in these cases.
171 .It J
172 Each byte of new memory allocated by
173 .Fn malloc ,
174 .Fn realloc
175 or
176 .Fn reallocf
177 as well as all memory returned by
178 .Fn free ,
179 .Fn realloc
180 or
181 .Fn reallocf
182 will be initialized to 0xd0.
183 This options also sets the
184 .Dq R
185 option.
186 This is intended for debugging and will impact performance negatively.
187 .It H
188 Pass a hint to the kernel about pages unused by the allocation functions.
189 This will help performance if the system is paging excessively.  This
190 option is off by default.
191 .It R
192 Causes the
193 .Fn realloc
194 and
195 .Fn reallocf
196 functions to always reallocate memory even if the initial allocation was
197 sufficiently large.
198 This can substantially aid in compacting memory.
199 .It U
200 Generate
201 .Dq utrace
202 entries for
203 .Xr ktrace 1 ,
204 for all operations.
205 Consult the source for details on this option.
206 .It V
207 Attempting to allocate zero bytes will return a
208 .Dv NULL
209 pointer instead of
210 a valid pointer.
211 (The default behavior is to make a minimal allocation and return a
212 pointer to it.)
213 This option is provided for System V compatibility.
214 This option is incompatible with the
215 .Dq X
216 option.
217 .It X
218 Rather than return failure for any allocation function,
219 display a diagnostic message on stderr and cause the program to drop
220 core (using
221 .Xr abort 3 ) .
222 This option should be set at compile time by including the following in
223 the source code:
224 .Bd -literal -offset indent
225 extern char *malloc_options;
226 malloc_options = "X";
227 .Ed
228 .It Z
229 This option implicitly sets the
230 .Dq J
231 and
232 .Dq R
233 options, and then zeros out the bytes that were requested.
234 This is intended for debugging and will impact performance negatively.
235 .It <
236 Reduce the size of the cache by a factor of two.
237 The default cache size is 16 pages.
238 This option can be specified multiple times.
239 .It >
240 Double the size of the cache by a factor of two.
241 The default cache size is 16 pages.
242 This option can be specified multiple times.
243 .El
244 .Pp
245 The
246 .Dq J
247 and
248 .Dq Z
249 options are intended for testing and debugging.
250 An application which changes its behavior when these options are used
251 is flawed.
252 .Sh EXAMPLES
253 To set a systemwide reduction of cache size, and to dump core whenever
254 a problem occurs:
255 .Pp
256 .Bd -literal -offset indent
257 ln -s 'A<' /etc/malloc.conf
258 .Ed
259 .Pp
260 To specify in the source that a program does no return value checking
261 on calls to these functions:
262 .Bd -literal -offset indent
263 extern char *malloc_options;
264 malloc_options = "X";
265 .Ed
266 .Sh ENVIRONMENT
267 The following environment variables affect the execution of the allocation
268 functions:
269 .Bl -tag -width ".Ev MALLOC_OPTIONS"
270 .It Ev MALLOC_OPTIONS
271 If the environment variable
272 .Ev MALLOC_OPTIONS
273 is set, the characters it contains will be interpreted as flags to the
274 allocation functions.
275 .El
276 .Sh RETURN VALUES
277 The
278 .Fn malloc
279 and
280 .Fn calloc
281 functions return a pointer to the allocated memory if successful; otherwise
282 a
283 .Dv NULL
284 pointer is returned and
285 .Va errno
286 is set to
287 .Er ENOMEM .
288 .Pp
289 The
290 .Fn realloc
291 and
292 .Fn reallocf
293 functions return a pointer, possibly identical to
294 .Fa ptr ,
295 to the allocated memory
296 if successful; otherwise a
297 .Dv NULL
298 pointer is returned, and
299 .Va errno
300 is set to
301 .Er ENOMEM
302 if the error was the result of an allocation failure.
303 The
304 .Fn realloc
305 function always leaves the original buffer intact
306 when an error occurs, whereas
307 .Fn reallocf
308 deallocates it in this case.
309 .Pp
310 The
311 .Fn free
312 function returns no value.
313 .Sh DEBUGGING MALLOC PROBLEMS
314 The major difference between this implementation and other allocation
315 implementations is that the free pages are not accessed unless allocated,
316 and are aggressively returned to the kernel for reuse.
317 .Bd -ragged -offset indent
318 Most allocation implementations will store a data structure containing a
319 linked list in the free chunks of memory,
320 used to tie all the free memory together.
321 That can be suboptimal,
322 as every time the free-list is traversed,
323 the otherwise unused, and likely paged out,
324 pages are faulted into primary memory.
325 On systems which are paging,
326 this can result in a factor of five increase in the number of page-faults
327 done by a process.
328 .Ed
329 .Pp
330 A side effect of this architecture is that many minor transgressions on
331 the interface which would traditionally not be detected are in fact
332 detected.  As a result, programs that have been running happily for
333 years may suddenly start to complain loudly, when linked with this
334 allocation implementation.
335 .Pp
336 The first and most important thing to do is to set the
337 .Dq A
338 option.
339 This option forces a coredump (if possible) at the first sign of trouble,
340 rather than the normal policy of trying to continue if at all possible.
341 .Pp
342 It is probably also a good idea to recompile the program with suitable
343 options and symbols for debugger support.
344 .Pp
345 If the program starts to give unusual results, coredump or generally behave
346 differently without emitting any of the messages listed in the next
347 section, it is likely because it depends on the storage being filled with
348 zero bytes.  Try running it with
349 .Dq Z
350 option set;
351 if that improves the situation, this diagnosis has been confirmed.
352 If the program still misbehaves,
353 the likely problem is accessing memory outside the allocated area,
354 more likely after than before the allocated area.
355 .Pp
356 Alternatively, if the symptoms are not easy to reproduce, setting the
357 .Dq J
358 option may help provoke the problem.
359 .Pp
360 In truly difficult cases, the
361 .Dq U
362 option, if supported by the kernel, can provide a detailed trace of
363 all calls made to these functions.
364 .Pp
365 Unfortunately this implementation does not provide much detail about
366 the problems it detects, the performance impact for storing such information
367 would be prohibitive.
368 There are a number of allocation implementations available on the 'Net
369 which focus on detecting and pinpointing problems by trading performance
370 for extra sanity checks and detailed diagnostics.
371 .Sh DIAGNOSTIC MESSAGES
372 If
373 .Fn malloc ,
374 .Fn calloc ,
375 .Fn realloc
376 or
377 .Fn free
378 detect an error or warning condition,
379 a message will be printed to file descriptor STDERR_FILENO.
380 Errors will result in the process dumping core.
381 If the
382 .Dq A
383 option is set, all warnings are treated as errors.
384 .Pp
385 The following is a brief description of possible error messages and
386 their meanings:
387 .Pp
388 .Bl -diag
389 .It "(ES): mumble mumble mumble"
390 The allocation functions were compiled with
391 .Dq EXTRA_SANITY
392 defined, and an error was found during the additional error checking.
393 Consult the source code for further information.
394 .It "mmap(2) failed, check limits"
395 This most likely means that the system is dangerously overloaded or that
396 the process' limits are incorrectly specified.
397 .It "freelist is destroyed"
398 The internal free-list has been corrupted.
399 .It "out of memory"
400 The
401 .Dq X
402 option was specified and an allocation of memory failed.
403 .El
404 .Pp
405 The following is a brief description of possible warning messages and
406 their meanings:
407 .Bl -diag
408 .It "chunk/page is already free"
409 The process attempted to
410 .Fn free
411 memory which had already been freed.
412 .It "junk pointer, ..."
413 A pointer specified to one of the allocation functions points outside the
414 bounds of the memory of which they are aware.
415 .It "malloc() has never been called"
416 No memory has been allocated,
417 yet something is being freed or
418 realloc'ed.
419 .It "modified (chunk-/page-) pointer"
420 The pointer passed to
421 .Fn free
422 or
423 .Fn realloc
424 has been modified.
425 .It "pointer to wrong page"
426 The pointer that
427 .Fn free ,
428 .Fn realloc ,
429 or
430 .Fn reallocf
431 is trying to free does not reference a possible page.
432 .It "recursive call"
433 A process has attempted to call an allocation function recursively.
434 This is not permitted.  In particular, signal handlers should not
435 attempt to allocate memory.
436 .It "unknown char in MALLOC_OPTIONS"
437 An unknown option was specified.
438 Even with the
439 .Dq A
440 option set, this warning is still only a warning.
441 .El
442 .Sh SEE ALSO
443 .Xr brk 2 ,
444 .Xr mmap 2 ,
445 .Xr alloca 3 ,
446 .Xr getpagesize 3 ,
447 .Xr memory 3
448 .Pa /usr/share/doc/papers/malloc.ascii.gz
449 .Sh STANDARDS
450 The
451 .Fn malloc ,
452 .Fn calloc ,
453 .Fn realloc
454 and
455 .Fn free
456 functions conform to
457 .St -isoC .
458 .Sh HISTORY
459 The present allocation implementation started out as a filesystem for a
460 drum attached to a 20bit binary challenged computer which was built
461 with discrete germanium transistors.  It has since graduated to
462 handle primary storage rather than secondary.
463 It first appeared in its new shape and ability in
464 .Fx 2.2 .
465 .Pp
466 The
467 .Fn reallocf
468 function first appeared in
469 .Fx 3.0 .
470 .Sh AUTHORS
471 .An Poul-Henning Kamp Aq phk@FreeBSD.org
472 .Sh BUGS
473 The messages printed in case of problems provide no detail about the
474 actual values.
475 .Pp
476 It can be argued that returning a
477 .Dv NULL
478 pointer when asked to
479 allocate zero bytes is a silly response to a silly question.