xref: /dragonfly/share/man/man9/kmalloc.9 (revision 9f3fc534)
1.\"
2.\" Copyright (c) 1996 The NetBSD Foundation, Inc.
3.\" All rights reserved.
4.\"
5.\" This code is derived from software contributed to The NetBSD Foundation
6.\" by Paul Kranenburg.
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 NetBSD
19.\"        Foundation, Inc. and its contributors.
20.\" 4. Neither the name of The NetBSD Foundation nor the names of its
21.\"    contributors may be used to endorse or promote products derived
22.\"    from this software without specific prior written permission.
23.\"
24.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
25.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
26.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
27.\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
28.\" LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34.\" POSSIBILITY OF SUCH DAMAGE.
35.\"
36.\" $NetBSD: malloc.9,v 1.3 1996/11/11 00:05:11 lukem Exp $
37.\" $FreeBSD: src/share/man/man9/malloc.9,v 1.42 2005/02/22 17:20:20 brueffer Exp $
38.\" $DragonFly: src/share/man/man9/kmalloc.9,v 1.8 2008/01/19 08:23:17 swildner Exp $
39.\"
40.Dd June 12, 2003
41.Dt KMALLOC 9
42.Os
43.Sh NAME
44.Nm kmalloc ,
45.Nm MALLOC ,
46.Nm kfree ,
47.Nm FREE ,
48.Nm krealloc ,
49.Nm MALLOC_DEFINE ,
50.Nm MALLOC_DECLARE
51.Nd kernel memory management routines
52.Sh SYNOPSIS
53.In sys/types.h
54.In sys/malloc.h
55.Ft void *
56.Fn kmalloc "unsigned long size" "struct malloc_type *type" "int flags"
57.Fn MALLOC space cast "unsigned long size" "struct malloc_type *type" "int flags"
58.Ft void
59.Fn kfree "void *addr" "struct malloc_type *type"
60.Fn FREE "void *addr" "struct malloc_type *type"
61.Ft void *
62.Fn krealloc "void *addr" "unsigned long size" "struct malloc_type *type" "int flags"
63.Fn MALLOC_DECLARE type
64.In sys/param.h
65.In sys/malloc.h
66.In sys/kernel.h
67.Fn MALLOC_DEFINE type shortdesc longdesc
68.Sh DESCRIPTION
69The
70.Fn kmalloc
71function allocates uninitialized memory in kernel address space for an
72object whose size is specified by
73.Fa size .
74.Pp
75The
76.Fn kfree
77function releases memory at address
78.Fa addr
79that was previously allocated by
80.Fn kmalloc
81for re-use.
82The memory is not zeroed.
83The kernel implementation of
84.Fn kfree
85does not allow
86.Fa addr
87to be
88.Dv NULL .
89.Pp
90The
91.Fn krealloc
92function changes the size of the previously allocated memory referenced by
93.Fa addr
94to
95.Fa size
96bytes.
97The contents of the memory are unchanged up to the lesser of the new and
98old sizes.
99Note that the returned value may differ from
100.Fa addr .
101If the requested memory cannot be allocated,
102.Dv NULL
103is returned and the memory referenced by
104.Fa addr
105is valid and unchanged.
106If
107.Fa addr
108is
109.Dv NULL ,
110the
111.Fn krealloc
112function behaves identically to
113.Fn kmalloc
114for the specified size.
115.Pp
116The
117.Fn MALLOC
118macro variant is functionally equivalent to
119.Bd -literal -offset indent
120(space) = (cast)kmalloc((u_long)(size), type, flags)
121.Ed
122.Pp
123and the
124.Fn FREE
125macro variant is equivalent to
126.Bd -literal -offset indent
127kfree((addr), type)
128.Ed
129.Pp
130Unlike its standard C library counterpart
131.Pq Xr malloc 3 ,
132the kernel version takes two more arguments.
133The
134.Fa flags
135argument further qualifies
136.Fn kmalloc Ns 's
137operational characteristics as follows:
138.Bl -tag -width indent
139.It Dv M_ZERO
140Causes the allocated memory to be set to all zeros.
141.It Dv M_NOWAIT
142Causes
143.Fn kmalloc
144and
145.Fn krealloc ,
146to return
147.Dv NULL
148if the request cannot be immediately fulfilled due to resource shortage.
149Note that
150.Dv M_NOWAIT
151is required when running in an interrupt context.
152.It Dv M_WAITOK
153Indicates that it is OK to wait for resources.
154If the request cannot be immediately fulfilled, the current process is put
155to sleep to wait for resources to be released by other processes.
156The
157.Fn kmalloc
158and
159.Fn krealloc ,
160functions cannot return
161.Dv NULL
162if
163.Dv M_WAITOK
164is specified.
165.It Dv M_USE_RESERVE
166Indicates that the system can dig into its reserve in order to obtain the
167requested memory.
168This option used to be called
169.Dv M_KERNEL
170but has been renamed to something more obvious.
171This option has been deprecated and is slowly being removed from the kernel,
172and so should not be used with any new code.
173.El
174.Pp
175Exactly one of either
176.Dv M_WAITOK
177or
178.Dv M_NOWAIT
179must be specified.
180.Pp
181The
182.Fa type
183argument is used to perform statistics on memory usage, and for
184basic sanity checks.
185It can be used to identify multiple allocations.
186The statistics can be examined by
187.Sq vmstat -m .
188.Pp
189A
190.Fa type
191is defined using the
192.Va malloc_type_t
193typedef via the
194.Fn MALLOC_DECLARE
195and
196.Fn MALLOC_DEFINE
197macros.
198.Bd -literal -offset indent
199/* sys/something/foo_extern.h */
200
201MALLOC_DECLARE(M_FOOBUF);
202
203/* sys/something/foo_main.c */
204
205MALLOC_DEFINE(M_FOOBUF, "foobuffers", "Buffers to foo data into the ether");
206
207/* sys/something/foo_subr.c */
208
209\&...
210MALLOC(buf, struct foo_buf *, sizeof *buf, M_FOOBUF, M_NOWAIT);
211
212.Ed
213.Sh IMPLEMENTATION NOTES
214The memory allocator allocates memory in chunks that have size a power
215of two for requests up to the size of a page of memory.
216For larger requests, one or more pages is allocated.
217While it should not be relied upon, this information may be useful for
218optimizing the efficiency of memory use.
219.Sh RETURN VALUES
220The
221.Fn kmalloc
222and
223.Fn krealloc ,
224functions return a kernel virtual address that is suitably aligned for
225storage of any type of object, or
226.Dv NULL
227if the request could not be satisfied (implying that
228.Dv M_NOWAIT
229was set).
230.Sh DIAGNOSTICS
231A kernel compiled with the
232.Dv INVARIANTS
233configuration option attempts to detect memory corruption caused by
234such things as writing outside the allocated area and imbalanced calls to the
235.Fn kmalloc
236and
237.Fn kfree
238functions.
239Failing consistency checks will cause a panic or a system console
240message.
241.Sh SEE ALSO
242.Xr vmstat 8 ,
243.Xr contigmalloc 9 ,
244.Xr vnode 9
245