xref: /dragonfly/sys/sys/malloc.h (revision 277350a0)
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 #ifndef _MACHINE_PARAM_H_
44 #include <machine/param.h>	/* for SMP_MAXCPU */
45 #endif
46 
47 #if defined(_KERNEL) || defined(_KERNEL_STRUCTURES)
48 
49 #endif	/* _KERNEL */
50 
51 /*
52  * flags to malloc.
53  */
54 #define	M_RNOWAIT     	0x0001	/* do not block */
55 #define	M_WAITOK     	0x0002	/* wait for resources / alloc from cache */
56 #define	M_ZERO       	0x0100	/* bzero() the allocation */
57 #define	M_USE_RESERVE	0x0200	/* can eat into free list reserve */
58 #define	M_NULLOK	0x0400	/* ok to return NULL */
59 #define M_PASSIVE_ZERO	0x0800	/* (internal to the slab code only) */
60 #define M_USE_INTERRUPT_RESERVE \
61 			0x1000	/* can exhaust free list entirely */
62 #define M_POWEROF2	0x2000	/* roundup size to the nearest power of 2 */
63 
64 /*
65  * M_NOWAIT has to be a set of flags for equivalence to prior use.
66  *
67  * M_SYSALLOC should be used for any critical infrastructure allocations
68  * made by the kernel proper.
69  *
70  * M_INTNOWAIT should be used for any critical infrastructure allocations
71  * made by interrupts.  Such allocations can still fail but will not fail
72  * as often as M_NOWAIT.
73  *
74  * NOTE ON DRAGONFLY USE OF M_NOWAIT.  In FreeBSD M_NOWAIT allocations
75  * almost always succeed.  In DragonFly, however, there is a good chance
76  * that an allocation will fail.  M_NOWAIT should only be used when
77  * allocations can fail without any serious detriment to the system.
78  *
79  * Note that allocations made from (preempted) interrupts will attempt to
80  * use pages from the VM PAGE CACHE (PQ_CACHE) (i.e. those associated with
81  * objects).  This is automatic.
82  */
83 
84 #define	M_INTNOWAIT	(M_RNOWAIT | M_NULLOK | 			\
85 			 M_USE_RESERVE | M_USE_INTERRUPT_RESERVE)
86 #define	M_SYSNOWAIT	(M_RNOWAIT | M_NULLOK | M_USE_RESERVE)
87 #define	M_INTWAIT	(M_WAITOK | M_USE_RESERVE | M_USE_INTERRUPT_RESERVE)
88 #define	M_SYSWAIT	(M_WAITOK | M_USE_RESERVE)
89 
90 #define	M_NOWAIT	(M_RNOWAIT | M_NULLOK | M_USE_RESERVE)
91 #define	M_SYSALLOC	M_SYSWAIT
92 
93 #define	M_MAGIC		877983977	/* time when first defined :-) */
94 
95 /*
96  * The malloc tracking structure.  Note that per-cpu entries must be
97  * aggregated for accurate statistics, they do not actually break the
98  * stats down by cpu (e.g. the cpu freeing memory will subtract from
99  * its slot, not the originating cpu's slot).
100  *
101  * SMP_MAXCPU is used so modules which use malloc remain compatible
102  * between UP and SMP.
103  */
104 struct malloc_type {
105 	struct malloc_type *ks_next;	/* next in list */
106 	size_t 	ks_memuse[SMP_MAXCPU];	/* total memory held in bytes */
107 	size_t	ks_loosememuse;		/* (inaccurate) aggregate memuse */
108 	size_t	ks_limit;	/* most that are allowed to exist */
109 	long	ks_size;	/* sizes of this thing that are allocated */
110 	size_t	ks_inuse[SMP_MAXCPU]; /* # of allocs currently in use */
111 	__int64_t ks_calls;	/* total packets of this type ever allocated */
112 	long	ks_maxused;	/* maximum number ever used */
113 	__uint32_t ks_magic;	/* if it's not magic, don't touch it */
114 	const char *ks_shortdesc;	/* short description */
115 	__uint16_t ks_limblocks; /* number of times blocked for hitting limit */
116 	__uint16_t ks_mapblocks; /* number of times blocked for kernel map */
117 	long	ks_reserved[4];	/* future use (module compatibility) */
118 };
119 
120 typedef struct malloc_type	*malloc_type_t;
121 
122 #if defined(_KERNEL) || defined(_KERNEL_STRUCTURES)
123 
124 #define	MALLOC_DEFINE(type, shortdesc, longdesc)	\
125 	struct malloc_type type[1] = { 			\
126 	    { NULL, { 0 }, 0, 0, 0, { 0 }, 0, 0, M_MAGIC, shortdesc, 0, 0, { 0 } } \
127 	}; 								    \
128 	SYSINIT(type##_init, SI_BOOT1_KMALLOC, SI_ORDER_ANY, malloc_init, type); \
129 	SYSUNINIT(type##_uninit, SI_BOOT1_KMALLOC, SI_ORDER_ANY, malloc_uninit, type)
130 
131 #else
132 
133 #define	MALLOC_DEFINE(type, shortdesc, longdesc)	\
134 	struct malloc_type type[1] = { 			\
135 	    { NULL, { 0 }, 0, 0, 0, { 0 }, 0, 0, M_MAGIC, shortdesc, 0, 0 } \
136 	}
137 
138 #endif
139 
140 #define	MALLOC_DECLARE(type) \
141 	extern struct malloc_type type[1]
142 
143 #ifdef _KERNEL
144 
145 MALLOC_DECLARE(M_CACHE);
146 MALLOC_DECLARE(M_DEVBUF);
147 MALLOC_DECLARE(M_TEMP);
148 
149 MALLOC_DECLARE(M_IP6OPT); /* for INET6 */
150 MALLOC_DECLARE(M_IP6NDP); /* for INET6 */
151 
152 #endif /* _KERNEL */
153 
154 #ifdef _KERNEL
155 
156 #define	MINALLOCSIZE	sizeof(void *)
157 
158 /*
159  * XXX this should be declared in <sys/uio.h>, but that tends to fail
160  * because <sys/uio.h> is included in a header before the source file
161  * has a chance to include <sys/malloc.h> to get MALLOC_DECLARE() defined.
162  */
163 MALLOC_DECLARE(M_IOV);
164 
165 /* XXX struct malloc_type is unused for contig*(). */
166 size_t  kmem_lim_size(void);
167 void	contigfree(void *addr, unsigned long size, struct malloc_type *type)
168 	    __nonnull(1);
169 void	*contigmalloc (unsigned long size, struct malloc_type *type,
170 			   int flags, vm_paddr_t low, vm_paddr_t high,
171 			   unsigned long alignment, unsigned long boundary)
172 	    __heedresult;
173 void	malloc_init (void *);
174 void	malloc_uninit (void *);
175 void	kmalloc_raise_limit(struct malloc_type *type, size_t bytes);
176 void	kmalloc_create(struct malloc_type **typep, const char *descr);
177 void	kmalloc_destroy(struct malloc_type **typep);
178 
179 #ifdef SLAB_DEBUG
180 void	*kmalloc_debug (unsigned long size, struct malloc_type *type, int flags,
181 			const char *file, int line) __heedresult;
182 void	*krealloc_debug (void *addr, unsigned long size,
183 			struct malloc_type *type, int flags,
184 			const char *file, int line) __heedresult;
185 char	*kstrdup_debug (const char *, struct malloc_type *,
186 			const char *file, int line) __heedresult;
187 char	*kstrndup_debug (const char *, size_t maxlen, struct malloc_type *,
188 			const char *file, int line) __heedresult;
189 #define kmalloc(size, type, flags)		\
190 	kmalloc_debug(size, type, flags, __FILE__, __LINE__)
191 #define krealloc(addr, size, type, flags)	\
192 	krealloc_debug(addr, size, type, flags, __FILE__, __LINE__)
193 #define kstrdup(str, type)			\
194 	kstrdup_debug(str, type, __FILE__, __LINE__)
195 #define kstrndup(str, maxlen, type)			\
196 	kstrndup_debug(str, maxlen, type, __FILE__, __LINE__)
197 #else
198 void	*kmalloc (unsigned long size, struct malloc_type *type, int flags)
199 	    __heedresult;
200 void	*krealloc (void *addr, unsigned long size,
201 		      struct malloc_type *type, int flags) __heedresult;
202 char	*kstrdup (const char *, struct malloc_type *) __heedresult;
203 char	*kstrndup (const char *, size_t maxlen, struct malloc_type *) __heedresult;
204 #define kmalloc_debug(size, type, flags, file, line)		\
205 	kmalloc(size, type, flags)
206 #define krealloc_debug(addr, size, type, flags, file, line)	\
207 	krealloc(addr, size, type, flags)
208 #define kstrdup_debug(str, type, file, line)			\
209 	kstrdup(str, type)
210 #define kstrndup_debug(str, maxlen, type, file, line)			\
211 	kstrndup(str, maxlen, type)
212 #endif
213 void	*kmalloc_cachealign (unsigned long size, struct malloc_type *type,
214 			   int flags) __heedresult;
215 void	kfree(void *addr, struct malloc_type *type)
216 	    __nonnull(1) __nonnull(2);
217 long	kmalloc_limit (struct malloc_type *type);
218 void	slab_cleanup(void);
219 
220 #endif /* _KERNEL */
221 
222 #endif /* !_SYS_MALLOC_H_ */
223