xref: /dflybsd-src/sys/sys/malloc.h (revision c443c74f42cc6a7f2385d56cc2b07c21939330d1)
1 /*
2  * Copyright (c) 1987, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  *	@(#)malloc.h	8.5 (Berkeley) 5/3/95
30  * $FreeBSD: src/sys/sys/malloc.h,v 1.48.2.2 2002/03/16 02:19:16 archie Exp $
31  */
32 
33 #ifndef _SYS_MALLOC_H_
34 #define	_SYS_MALLOC_H_
35 
36 #ifndef _SYS_TYPES_H_
37 #include <sys/types.h>
38 #endif
39 #ifndef _MACHINE_TYPES_H_
40 #include <machine/types.h>	/* vm_paddr_t and __* types */
41 #endif
42 
43 /*
44  * flags to malloc.
45  */
46 #define	M_RNOWAIT	0x0001	/* do not block */
47 #define	M_WAITOK	0x0002	/* wait for resources / alloc from cache */
48 #define	M_ZERO		0x0100	/* bzero() the allocation */
49 #define	M_USE_RESERVE	0x0200	/* can eat into free list reserve */
50 #define	M_NULLOK	0x0400	/* ok to return NULL */
51 #define	M_PASSIVE_ZERO	0x0800	/* (internal to the slab code only) */
52 #define	M_USE_INTERRUPT_RESERVE \
53 			0x1000	/* can exhaust free list entirely */
54 #define	M_POWEROF2	0x2000	/* roundup size to the nearest power of 2 */
55 #define	M_CACHEALIGN	0x4000	/* force CPU cache line alignment */
56 /* GFP_DMA32 0x10000 reserved for drm layer (not handled by kmalloc) */
57 
58 /*
59  * M_NOWAIT has to be a set of flags for equivalence to prior use.
60  *
61  * M_SYSALLOC should be used for any critical infrastructure allocations
62  * made by the kernel proper.
63  *
64  * M_INTNOWAIT should be used for any critical infrastructure allocations
65  * made by interrupts.  Such allocations can still fail but will not fail
66  * as often as M_NOWAIT.
67  *
68  * NOTE ON DRAGONFLY USE OF M_NOWAIT.  In FreeBSD M_NOWAIT allocations
69  * almost always succeed.  In DragonFly, however, there is a good chance
70  * that an allocation will fail.  M_NOWAIT should only be used when
71  * allocations can fail without any serious detriment to the system.
72  *
73  * Note that allocations made from (preempted) interrupts will attempt to
74  * use pages from the VM PAGE CACHE (PQ_CACHE) (i.e. those associated with
75  * objects).  This is automatic.
76  */
77 
78 #define	M_INTNOWAIT	(M_RNOWAIT | M_NULLOK | 			\
79 			 M_USE_RESERVE | M_USE_INTERRUPT_RESERVE)
80 #define	M_SYSNOWAIT	(M_RNOWAIT | M_NULLOK | M_USE_RESERVE)
81 #define	M_INTWAIT	(M_WAITOK | M_USE_RESERVE | M_USE_INTERRUPT_RESERVE)
82 #define	M_SYSWAIT	(M_WAITOK | M_USE_RESERVE)
83 
84 #define	M_NOWAIT	(M_RNOWAIT | M_NULLOK | M_USE_RESERVE)
85 #define	M_SYSALLOC	M_SYSWAIT
86 
87 #define	M_MAGIC		877983977	/* time when first defined :-) */
88 
89 #if defined(_KERNEL) || defined(_KERNEL_STRUCTURES)
90 #include <sys/_malloc.h>		/* struct malloc_type */
91 #endif
92 
93 #if defined(_KERNEL) || defined(_KERNEL_STRUCTURES)
94 #define	MALLOC_DEFINE(type, shortdesc, longdesc)			\
95 	struct malloc_type type[1] = {					\
96 	    { NULL, 0, 0, { { 0, 0, 0, 0 } }, M_MAGIC, shortdesc,	\
97 		{ 0 } }							\
98 	};								\
99 	SYSINIT(type##_init, SI_BOOT1_KMALLOC, SI_ORDER_ANY,		\
100 	    malloc_init, type);						\
101 	SYSUNINIT(type##_uninit, SI_BOOT1_KMALLOC, SI_ORDER_ANY,	\
102 	    malloc_uninit, type)
103 #else
104 #define	MALLOC_DEFINE(type, shortdesc, longdesc)			\
105 	struct malloc_type type[1] = {					\
106 	    { NULL, 0, 0, { { 0, 0, 0, 0 } }, M_MAGIC, shortdesc,	\
107 	        { 0 } }							\
108 	}
109 #endif
110 
111 #ifdef _KERNEL
112 
113 MALLOC_DECLARE(M_CACHE);
114 MALLOC_DECLARE(M_DEVBUF);
115 MALLOC_DECLARE(M_TEMP);
116 
117 MALLOC_DECLARE(M_IP6OPT); /* for INET6 */
118 MALLOC_DECLARE(M_IP6NDP); /* for INET6 */
119 
120 #endif /* _KERNEL */
121 
122 #ifdef _KERNEL
123 
124 #define	MINALLOCSIZE	sizeof(void *)
125 
126 /* XXX struct malloc_type is unused for contig*(). */
127 size_t  kmem_lim_size(void);
128 void	contigfree(void *addr, unsigned long size, struct malloc_type *type)
129 	    __nonnull(1);
130 void	*contigmalloc(unsigned long size, struct malloc_type *type, int flags,
131 		      vm_paddr_t low, vm_paddr_t high, unsigned long alignment,
132 		      unsigned long boundary) __malloclike __heedresult
133 		      __alloc_size(1) __alloc_align(6);
134 void	malloc_init(void *);
135 void	malloc_uninit(void *);
136 void	kmalloc_raise_limit(struct malloc_type *type, size_t bytes);
137 void	kmalloc_set_unlimited(struct malloc_type *type);
138 void	kmalloc_create(struct malloc_type **typep, const char *descr);
139 void	kmalloc_destroy(struct malloc_type **typep);
140 
141 /*
142  * Debug and non-debug kmalloc() prototypes.
143  *
144  * The kmalloc() macro allows M_ZERO to be optimized external to
145  * the kmalloc() function.  When combined with the use a builtin
146  * for bzero() this can get rid of a considerable amount of overhead
147  * for M_ZERO based kmalloc() calls.
148  */
149 #ifdef SLAB_DEBUG
150 void	*kmalloc_debug(unsigned long size, struct malloc_type *type, int flags,
151 			const char *file, int line) __malloclike __heedresult
152 			__alloc_size(1);
153 void	*krealloc_debug(void *addr, unsigned long size,
154 			struct malloc_type *type, int flags,
155 			const char *file, int line) __heedresult __alloc_size(2);
156 char	*kstrdup_debug(const char *, struct malloc_type *,
157 			const char *file, int line) __malloclike __heedresult;
158 char	*kstrndup_debug(const char *, size_t maxlen, struct malloc_type *,
159 			const char *file, int line) __malloclike __heedresult;
160 #if 1
161 #define kmalloc(size, type, flags) ({					\
162 	void *_malloc_item;						\
163 	size_t _size = (size);						\
164 									\
165 	if (__builtin_constant_p(size) &&				\
166 	    __builtin_constant_p(flags) &&				\
167 	    ((flags) & M_ZERO)) {					\
168 		_malloc_item = kmalloc_debug(_size, type,		\
169 					    (flags) & ~M_ZERO,		\
170 					    __FILE__, __LINE__);	\
171 		if (((flags) & (M_WAITOK|M_NULLOK)) == M_WAITOK ||	\
172 		    __predict_true(_malloc_item != NULL)) {		\
173 			bzero(_malloc_item, _size);			\
174 		}							\
175 	} else {							\
176 	    _malloc_item = kmalloc_debug(_size, type, flags,		\
177 				   __FILE__, __LINE__);			\
178 	}								\
179 	_malloc_item;							\
180 })
181 #endif
182 #define krealloc(addr, size, type, flags)	\
183 	krealloc_debug(addr, size, type, flags, __FILE__, __LINE__)
184 #define kstrdup(str, type)			\
185 	kstrdup_debug(str, type, __FILE__, __LINE__)
186 #define kstrndup(str, maxlen, type)			\
187 	kstrndup_debug(str, maxlen, type, __FILE__, __LINE__)
188 
189 #else	/* !SLAB_DEBUG */
190 
191 void	*kmalloc(unsigned long size, struct malloc_type *type, int flags)
192 		 __malloclike __heedresult __alloc_size(1);
193 #if 1
194 #define kmalloc(size, type, flags) ({					\
195 	void *_malloc_item;						\
196 	size_t _size = (size);						\
197 									\
198 	if (__builtin_constant_p(size) &&				\
199 	    __builtin_constant_p(flags) &&				\
200 	    ((flags) & M_ZERO)) {					\
201 		_malloc_item = kmalloc(_size, type, (flags) & ~M_ZERO);	\
202 		if (((flags) & (M_WAITOK|M_NULLOK)) == M_WAITOK ||	\
203 		    __predict_true(_malloc_item != NULL)) {		\
204 			bzero(_malloc_item, _size);			\
205 		}							\
206 	} else {							\
207 	    _malloc_item = kmalloc(_size, type, flags);			\
208 	}								\
209 	_malloc_item;							\
210 })
211 #endif
212 void	*krealloc(void *addr, unsigned long size, struct malloc_type *type,
213 		  int flags) __heedresult __alloc_size(2);
214 char	*kstrdup(const char *, struct malloc_type *)
215 		 __malloclike __heedresult;
216 char	*kstrndup(const char *, size_t maxlen, struct malloc_type *)
217 		  __malloclike __heedresult;
218 #define kmalloc_debug(size, type, flags, file, line)		\
219 	kmalloc(size, type, flags)
220 #define krealloc_debug(addr, size, type, flags, file, line)	\
221 	krealloc(addr, size, type, flags)
222 #define kstrdup_debug(str, type, file, line)			\
223 	kstrdup(str, type)
224 #define kstrndup_debug(str, maxlen, type, file, line)		\
225 	kstrndup(str, maxlen, type)
226 #endif
227 void	kfree(void *addr, struct malloc_type *type) __nonnull(2);
228 long	kmalloc_limit(struct malloc_type *type);
229 void	slab_cleanup(void);
230 
231 #endif /* _KERNEL */
232 
233 #endif /* !_SYS_MALLOC_H_ */
234