xref: /freebsd/sys/sys/param.h (revision 315ee00f)
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1982, 1986, 1989, 1993
5  *	The Regents of the University of California.  All rights reserved.
6  * (c) UNIX System Laboratories, Inc.
7  * All or some portions of this file are derived from material licensed
8  * to the University of California by American Telephone and Telegraph
9  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
10  * the permission of UNIX System Laboratories, Inc.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. 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  *	@(#)param.h	8.3 (Berkeley) 4/4/95
37  */
38 
39 #ifndef _SYS_PARAM_H_
40 #define _SYS_PARAM_H_
41 
42 #include <sys/_null.h>
43 
44 #define	BSD	199506		/* System version (year & month). */
45 #define BSD4_3	1
46 #define BSD4_4	1
47 
48 /*
49  * __FreeBSD_version numbers are documented in the Porter's Handbook.
50  * If you bump the version for any reason, you should update the documentation
51  * there.
52  * Currently this lives here in the doc/ repository:
53  *
54  *	documentation/content/en/books/porters-handbook/versions/_index.adoc
55  *
56  * Encoding:	<major><two digit minor>Rxx
57  *		'R' is in the range 0 to 4 if this is a release branch or
58  *		X.0-CURRENT before releng/X.0 is created, otherwise 'R' is
59  *		in the range 5 to 9.
60  * Short hand: MMmmXXX
61  *
62  * __FreeBSD_version is bumped every time there's a change in the base system
63  * that's noteworthy. A noteworthy change is any change which changes the
64  * kernel's KBI in -CURRENT, one that changes some detail about the system that
65  * external software (or the ports system) would want to know about, one that
66  * adds a system call, one that adds or deletes a shipped library, a security
67  * fix, or similar change not specifically noted here. Bumps should be limited
68  * to one per day / a couple per week except for security fixes.
69  *
70  * The approved way to obtain this from a shell script is:
71  *	awk '/^\#define[[:space:]]*__FreeBSD_version/ {print $3}'
72  * Other methods to parse this file may work, but are not guaranteed against
73  * future changes. The above script works back to FreeBSD 3.x when this macro
74  * was introduced. This number is propagated to other places needing it that
75  * cannot include sys/param.h and should only be updated here.
76  */
77 #undef __FreeBSD_version
78 #define __FreeBSD_version 1500000
79 
80 /*
81  * __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,
82  * which by definition is always true on FreeBSD. This macro is also defined
83  * on other systems that use the kernel of FreeBSD, such as GNU/kFreeBSD.
84  *
85  * It is tempting to use this macro in userland code when we want to enable
86  * kernel-specific routines, and in fact it's fine to do this in code that
87  * is part of FreeBSD itself.  However, be aware that as presence of this
88  * macro is still not widespread (e.g. older FreeBSD versions, 3rd party
89  * compilers, etc), it is STRONGLY DISCOURAGED to check for this macro in
90  * external applications without also checking for __FreeBSD__ as an
91  * alternative.
92  */
93 #undef __FreeBSD_kernel__
94 #define __FreeBSD_kernel__
95 
96 #if defined(_KERNEL) || defined(_WANT_P_OSREL)
97 #define	P_OSREL_SIGWAIT			700000
98 #define	P_OSREL_SIGSEGV			700004
99 #define	P_OSREL_MAP_ANON		800104
100 #define	P_OSREL_MAP_FSTRICT		1100036
101 #define	P_OSREL_SHUTDOWN_ENOTCONN	1100077
102 #define	P_OSREL_MAP_GUARD		1200035
103 #define	P_OSREL_WRFSBASE		1200041
104 #define	P_OSREL_CK_CYLGRP		1200046
105 #define	P_OSREL_VMTOTAL64		1200054
106 #define	P_OSREL_CK_SUPERBLOCK		1300000
107 #define	P_OSREL_CK_INODE		1300005
108 #define	P_OSREL_POWERPC_NEW_AUX_ARGS	1300070
109 #define	P_OSREL_TIDPID			1400079
110 #define	P_OSREL_ARM64_SPSR		1400084
111 
112 #define	P_OSREL_MAJOR(x)		((x) / 100000)
113 #endif
114 
115 #ifndef LOCORE
116 #include <sys/types.h>
117 #endif
118 
119 /*
120  * Machine-independent constants (some used in following include files).
121  * Redefined constants are from POSIX 1003.1 limits file.
122  *
123  * MAXCOMLEN should be >= sizeof(ac_comm) (see <acct.h>)
124  */
125 #include <sys/syslimits.h>
126 
127 #define	MAXCOMLEN	19		/* max command name remembered */
128 #define	MAXINTERP	PATH_MAX	/* max interpreter file name length */
129 #define	MAXLOGNAME	33		/* max login name length (incl. NUL) */
130 #define	MAXUPRC		CHILD_MAX	/* max simultaneous processes */
131 #define	NCARGS		ARG_MAX		/* max bytes for an exec function */
132 #define	NGROUPS		(NGROUPS_MAX+1)	/* max number groups */
133 #define	NOFILE		OPEN_MAX	/* max open files per process */
134 #define	NOGROUP		65535		/* marker for empty group set member */
135 #define MAXHOSTNAMELEN	256		/* max hostname size */
136 #define SPECNAMELEN	255		/* max length of devicename */
137 
138 /* More types and definitions used throughout the kernel. */
139 #ifdef _KERNEL
140 #include <sys/cdefs.h>
141 #include <sys/errno.h>
142 #ifndef LOCORE
143 #include <sys/time.h>
144 #include <sys/priority.h>
145 #endif
146 
147 #ifndef FALSE
148 #define	FALSE	0
149 #endif
150 #ifndef TRUE
151 #define	TRUE	1
152 #endif
153 #endif
154 
155 #ifndef _KERNEL
156 #ifndef LOCORE
157 /* Signals. */
158 #include <sys/signal.h>
159 #endif
160 #endif
161 
162 /* Machine type dependent parameters. */
163 #include <machine/param.h>
164 #ifndef _KERNEL
165 #include <sys/limits.h>
166 #endif
167 
168 #ifndef DEV_BSHIFT
169 #define	DEV_BSHIFT	9		/* log2(DEV_BSIZE) */
170 #endif
171 #define	DEV_BSIZE	(1<<DEV_BSHIFT)
172 
173 #ifndef BLKDEV_IOSIZE
174 #define BLKDEV_IOSIZE  PAGE_SIZE	/* default block device I/O size */
175 #endif
176 #ifndef DFLTPHYS
177 #define DFLTPHYS	(64 * 1024)	/* default max raw I/O transfer size */
178 #endif
179 #ifndef MAXPHYS				/* max raw I/O transfer size */
180 #ifdef __ILP32__
181 #define MAXPHYS		(128 * 1024)
182 #else
183 #define MAXPHYS		(1024 * 1024)
184 #endif
185 #endif
186 #ifndef MAXDUMPPGS
187 #define MAXDUMPPGS	(DFLTPHYS/PAGE_SIZE)
188 #endif
189 
190 /*
191  * Constants related to network buffer management.
192  * MCLBYTES must be no larger than PAGE_SIZE.
193  */
194 #ifndef	MSIZE
195 #define	MSIZE		256		/* size of an mbuf */
196 #endif
197 
198 #ifndef	MCLSHIFT
199 #define MCLSHIFT	11		/* convert bytes to mbuf clusters */
200 #endif	/* MCLSHIFT */
201 
202 #define MCLBYTES	(1 << MCLSHIFT)	/* size of an mbuf cluster */
203 
204 #if PAGE_SIZE <= 8192
205 #define	MJUMPAGESIZE	PAGE_SIZE
206 #else
207 #define	MJUMPAGESIZE	(8 * 1024)
208 #endif
209 
210 #define	MJUM9BYTES	(9 * 1024)	/* jumbo cluster 9k */
211 #define	MJUM16BYTES	(16 * 1024)	/* jumbo cluster 16k */
212 
213 /*
214  * Some macros for units conversion
215  */
216 
217 /* clicks to bytes */
218 #ifndef ctob
219 #define ctob(x)	((x)<<PAGE_SHIFT)
220 #endif
221 
222 /* bytes to clicks */
223 #ifndef btoc
224 #define btoc(x)	(((vm_offset_t)(x)+PAGE_MASK)>>PAGE_SHIFT)
225 #endif
226 
227 /*
228  * btodb() is messy and perhaps slow because `bytes' may be an off_t.  We
229  * want to shift an unsigned type to avoid sign extension and we don't
230  * want to widen `bytes' unnecessarily.  Assume that the result fits in
231  * a daddr_t.
232  */
233 #ifndef btodb
234 #define btodb(bytes)	 		/* calculates (bytes / DEV_BSIZE) */ \
235 	(sizeof (bytes) > sizeof(long) \
236 	 ? (daddr_t)((unsigned long long)(bytes) >> DEV_BSHIFT) \
237 	 : (daddr_t)((unsigned long)(bytes) >> DEV_BSHIFT))
238 #endif
239 
240 #ifndef dbtob
241 #define dbtob(db)			/* calculates (db * DEV_BSIZE) */ \
242 	((off_t)(db) << DEV_BSHIFT)
243 #endif
244 
245 #define	PRIMASK		0x0ff
246 #define	PCATCH		0x100	/* OR'd with pri for tsleep to check signals */
247 #define	PDROP		0x200	/* OR'd with pri to stop re-entry of interlock mutex */
248 #define	PNOLOCK		0x400	/* OR'd with pri to allow sleeping w/o a lock */
249 #define	PRILASTFLAG	0x400	/* Last flag defined above */
250 
251 #define	NZERO	0		/* default "nice" */
252 
253 #define	NBBY	8		/* number of bits in a byte */
254 #define	NBPW	sizeof(int)	/* number of bytes per word (integer) */
255 
256 #define	CMASK	022		/* default file mask: S_IWGRP|S_IWOTH */
257 
258 #define	NODEV	(dev_t)(-1)	/* non-existent device */
259 
260 /*
261  * File system parameters and macros.
262  *
263  * MAXBSIZE -	Filesystems are made out of blocks of at most MAXBSIZE bytes
264  *		per block.  MAXBSIZE may be made larger without effecting
265  *		any existing filesystems as long as it does not exceed MAXPHYS,
266  *		and may be made smaller at the risk of not being able to use
267  *		filesystems which require a block size exceeding MAXBSIZE.
268  *
269  * MAXBCACHEBUF - Maximum size of a buffer in the buffer cache.  This must
270  *		be >= MAXBSIZE and can be set differently for different
271  *		architectures by defining it in <machine/param.h>.
272  *		Making this larger allows NFS to do larger reads/writes.
273  *
274  * BKVASIZE -	Nominal buffer space per buffer, in bytes.  BKVASIZE is the
275  *		minimum KVM memory reservation the kernel is willing to make.
276  *		Filesystems can of course request smaller chunks.  Actual
277  *		backing memory uses a chunk size of a page (PAGE_SIZE).
278  *		The default value here can be overridden on a per-architecture
279  *		basis by defining it in <machine/param.h>.
280  *
281  *		If you make BKVASIZE too small you risk seriously fragmenting
282  *		the buffer KVM map which may slow things down a bit.  If you
283  *		make it too big the kernel will not be able to optimally use
284  *		the KVM memory reserved for the buffer cache and will wind
285  *		up with too-few buffers.
286  *
287  *		The default is 16384, roughly 2x the block size used by a
288  *		normal UFS filesystem.
289  */
290 #define MAXBSIZE	65536	/* must be power of 2 */
291 #ifndef	MAXBCACHEBUF
292 #define	MAXBCACHEBUF	MAXBSIZE /* must be a power of 2 >= MAXBSIZE */
293 #endif
294 #ifndef	BKVASIZE
295 #define BKVASIZE	16384	/* must be power of 2 */
296 #endif
297 #define BKVAMASK	(BKVASIZE-1)
298 
299 /*
300  * MAXPATHLEN defines the longest permissible path length after expanding
301  * symbolic links. It is used to allocate a temporary buffer from the buffer
302  * pool in which to do the name expansion, hence should be a power of two,
303  * and must be less than or equal to MAXBSIZE.  MAXSYMLINKS defines the
304  * maximum number of symbolic links that may be expanded in a path name.
305  * It should be set high enough to allow all legitimate uses, but halt
306  * infinite loops reasonably quickly.
307  */
308 #define	MAXPATHLEN	PATH_MAX
309 #define MAXSYMLINKS	32
310 
311 /* Bit map related macros. */
312 #define	setbit(a,i)	(((unsigned char *)(a))[(i)/NBBY] |= 1<<((i)%NBBY))
313 #define	clrbit(a,i)	(((unsigned char *)(a))[(i)/NBBY] &= ~(1<<((i)%NBBY)))
314 #define	isset(a,i)							\
315 	(((const unsigned char *)(a))[(i)/NBBY] & (1<<((i)%NBBY)))
316 #define	isclr(a,i)							\
317 	((((const unsigned char *)(a))[(i)/NBBY] & (1<<((i)%NBBY))) == 0)
318 
319 /* Macros for counting and rounding. */
320 #ifndef howmany
321 #define	howmany(x, y)	(((x)+((y)-1))/(y))
322 #endif
323 #define	nitems(x)	(sizeof((x)) / sizeof((x)[0]))
324 #define	rounddown(x, y)	(((x)/(y))*(y))
325 #define	rounddown2(x, y) __align_down(x, y) /* if y is power of two */
326 #define	roundup(x, y)	((((x)+((y)-1))/(y))*(y))  /* to any y */
327 #define	roundup2(x, y)	__align_up(x, y) /* if y is powers of two */
328 #define powerof2(x)	((((x)-1)&(x))==0)
329 
330 /* Macros for min/max. */
331 #define	MIN(a,b) (((a)<(b))?(a):(b))
332 #define	MAX(a,b) (((a)>(b))?(a):(b))
333 
334 #ifdef _KERNEL
335 /*
336  * Basic byte order function prototypes for non-inline functions.
337  */
338 #ifndef LOCORE
339 #ifndef _BYTEORDER_PROTOTYPED
340 #define	_BYTEORDER_PROTOTYPED
341 __BEGIN_DECLS
342 __uint32_t	 htonl(__uint32_t);
343 __uint16_t	 htons(__uint16_t);
344 __uint32_t	 ntohl(__uint32_t);
345 __uint16_t	 ntohs(__uint16_t);
346 __END_DECLS
347 #endif
348 #endif
349 
350 #ifndef _BYTEORDER_FUNC_DEFINED
351 #define	_BYTEORDER_FUNC_DEFINED
352 #define	htonl(x)	__htonl(x)
353 #define	htons(x)	__htons(x)
354 #define	ntohl(x)	__ntohl(x)
355 #define	ntohs(x)	__ntohs(x)
356 #endif /* !_BYTEORDER_FUNC_DEFINED */
357 #endif /* _KERNEL */
358 
359 /*
360  * Scale factor for scaled integers used to count %cpu time and load avgs.
361  *
362  * The number of CPU `tick's that map to a unique `%age' can be expressed
363  * by the formula (1 / (2 ^ (FSHIFT - 11))).  Since the intermediate
364  * calculation is done with 64-bit precision, the maximum load average that can
365  * be calculated is approximately 2^32 / FSCALE.
366  *
367  * For the scheduler to maintain a 1:1 mapping of CPU `tick' to `%age',
368  * FSHIFT must be at least 11.  This gives a maximum load avg of 2 million.
369  */
370 #define	FSHIFT	11		/* bits to right of fixed binary point */
371 #define FSCALE	(1<<FSHIFT)
372 
373 #define dbtoc(db)			/* calculates devblks to pages */ \
374 	((db + (ctodb(1) - 1)) >> (PAGE_SHIFT - DEV_BSHIFT))
375 
376 #define ctodb(db)			/* calculates pages to devblks */ \
377 	((db) << (PAGE_SHIFT - DEV_BSHIFT))
378 
379 /*
380  * Old spelling of __containerof().
381  */
382 #define	member2struct(s, m, x)						\
383 	((struct s *)(void *)((char *)(x) - offsetof(struct s, m)))
384 
385 /*
386  * Access a variable length array that has been declared as a fixed
387  * length array.
388  */
389 #define __PAST_END(array, offset) (((__typeof__(*(array)) *)(array))[offset])
390 
391 #endif	/* _SYS_PARAM_H_ */
392