xref: /xnu-12377.61.12/bsd/sys/param.h (revision 4d495c6e23c53686cf65f45067f79024cf5dcee8)
1*4d495c6eSApple OSS Distributions /*
2*4d495c6eSApple OSS Distributions  * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3*4d495c6eSApple OSS Distributions  *
4*4d495c6eSApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5*4d495c6eSApple OSS Distributions  *
6*4d495c6eSApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*4d495c6eSApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*4d495c6eSApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*4d495c6eSApple OSS Distributions  * compliance with the License. The rights granted to you under the License
10*4d495c6eSApple OSS Distributions  * may not be used to create, or enable the creation or redistribution of,
11*4d495c6eSApple OSS Distributions  * unlawful or unlicensed copies of an Apple operating system, or to
12*4d495c6eSApple OSS Distributions  * circumvent, violate, or enable the circumvention or violation of, any
13*4d495c6eSApple OSS Distributions  * terms of an Apple operating system software license agreement.
14*4d495c6eSApple OSS Distributions  *
15*4d495c6eSApple OSS Distributions  * Please obtain a copy of the License at
16*4d495c6eSApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this file.
17*4d495c6eSApple OSS Distributions  *
18*4d495c6eSApple OSS Distributions  * The Original Code and all software distributed under the License are
19*4d495c6eSApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20*4d495c6eSApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21*4d495c6eSApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22*4d495c6eSApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23*4d495c6eSApple OSS Distributions  * Please see the License for the specific language governing rights and
24*4d495c6eSApple OSS Distributions  * limitations under the License.
25*4d495c6eSApple OSS Distributions  *
26*4d495c6eSApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27*4d495c6eSApple OSS Distributions  */
28*4d495c6eSApple OSS Distributions /* Copyright (c) 1995, 1997 Apple Computer, Inc. All Rights Reserved */
29*4d495c6eSApple OSS Distributions /*-
30*4d495c6eSApple OSS Distributions  * Copyright (c) 1982, 1986, 1989, 1993
31*4d495c6eSApple OSS Distributions  *	The Regents of the University of California.  All rights reserved.
32*4d495c6eSApple OSS Distributions  * (c) UNIX System Laboratories, Inc.
33*4d495c6eSApple OSS Distributions  * All or some portions of this file are derived from material licensed
34*4d495c6eSApple OSS Distributions  * to the University of California by American Telephone and Telegraph
35*4d495c6eSApple OSS Distributions  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
36*4d495c6eSApple OSS Distributions  * the permission of UNIX System Laboratories, Inc.
37*4d495c6eSApple OSS Distributions  *
38*4d495c6eSApple OSS Distributions  * Redistribution and use in source and binary forms, with or without
39*4d495c6eSApple OSS Distributions  * modification, are permitted provided that the following conditions
40*4d495c6eSApple OSS Distributions  * are met:
41*4d495c6eSApple OSS Distributions  * 1. Redistributions of source code must retain the above copyright
42*4d495c6eSApple OSS Distributions  *    notice, this list of conditions and the following disclaimer.
43*4d495c6eSApple OSS Distributions  * 2. Redistributions in binary form must reproduce the above copyright
44*4d495c6eSApple OSS Distributions  *    notice, this list of conditions and the following disclaimer in the
45*4d495c6eSApple OSS Distributions  *    documentation and/or other materials provided with the distribution.
46*4d495c6eSApple OSS Distributions  * 3. All advertising materials mentioning features or use of this software
47*4d495c6eSApple OSS Distributions  *    must display the following acknowledgement:
48*4d495c6eSApple OSS Distributions  *	This product includes software developed by the University of
49*4d495c6eSApple OSS Distributions  *	California, Berkeley and its contributors.
50*4d495c6eSApple OSS Distributions  * 4. Neither the name of the University nor the names of its contributors
51*4d495c6eSApple OSS Distributions  *    may be used to endorse or promote products derived from this software
52*4d495c6eSApple OSS Distributions  *    without specific prior written permission.
53*4d495c6eSApple OSS Distributions  *
54*4d495c6eSApple OSS Distributions  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55*4d495c6eSApple OSS Distributions  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56*4d495c6eSApple OSS Distributions  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57*4d495c6eSApple OSS Distributions  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58*4d495c6eSApple OSS Distributions  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59*4d495c6eSApple OSS Distributions  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60*4d495c6eSApple OSS Distributions  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61*4d495c6eSApple OSS Distributions  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62*4d495c6eSApple OSS Distributions  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63*4d495c6eSApple OSS Distributions  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64*4d495c6eSApple OSS Distributions  * SUCH DAMAGE.
65*4d495c6eSApple OSS Distributions  *
66*4d495c6eSApple OSS Distributions  *	@(#)param.h	8.3 (Berkeley) 4/4/95
67*4d495c6eSApple OSS Distributions  */
68*4d495c6eSApple OSS Distributions 
69*4d495c6eSApple OSS Distributions #ifndef _SYS_PARAM_H_
70*4d495c6eSApple OSS Distributions #define _SYS_PARAM_H_
71*4d495c6eSApple OSS Distributions 
72*4d495c6eSApple OSS Distributions #define BSD     199506          /* System version (year & month). */
73*4d495c6eSApple OSS Distributions #define BSD4_3  1
74*4d495c6eSApple OSS Distributions #define BSD4_4  1
75*4d495c6eSApple OSS Distributions 
76*4d495c6eSApple OSS Distributions #define NeXTBSD 1995064         /* NeXTBSD version (year, month, release) */
77*4d495c6eSApple OSS Distributions #define NeXTBSD4_0 0            /* NeXTBSD 4.0 */
78*4d495c6eSApple OSS Distributions 
79*4d495c6eSApple OSS Distributions #include <sys/_types.h>
80*4d495c6eSApple OSS Distributions #include <sys/_types/_null.h>
81*4d495c6eSApple OSS Distributions 
82*4d495c6eSApple OSS Distributions #ifndef LOCORE
83*4d495c6eSApple OSS Distributions #include <sys/types.h>
84*4d495c6eSApple OSS Distributions #endif
85*4d495c6eSApple OSS Distributions 
86*4d495c6eSApple OSS Distributions /*
87*4d495c6eSApple OSS Distributions  * Machine-independent constants (some used in following include files).
88*4d495c6eSApple OSS Distributions  * Redefined constants are from POSIX 1003.1 limits file.
89*4d495c6eSApple OSS Distributions  *
90*4d495c6eSApple OSS Distributions  * MAXCOMLEN should be >= sizeof(ac_comm) (see <acct.h>)
91*4d495c6eSApple OSS Distributions  * MAXLOGNAME should be >= UT_NAMESIZE (see <utmp.h>)
92*4d495c6eSApple OSS Distributions  */
93*4d495c6eSApple OSS Distributions #include <sys/syslimits.h>
94*4d495c6eSApple OSS Distributions 
95*4d495c6eSApple OSS Distributions #define MAXCOMLEN       16              /* max command name remembered */
96*4d495c6eSApple OSS Distributions #define MAXINTERP       64              /* max interpreter file name length */
97*4d495c6eSApple OSS Distributions #define MAXLOGNAME      255             /* max login name length */
98*4d495c6eSApple OSS Distributions #define MAXUPRC         CHILD_MAX       /* max simultaneous processes */
99*4d495c6eSApple OSS Distributions #define NCARGS          ARG_MAX         /* max bytes for an exec function */
100*4d495c6eSApple OSS Distributions #define NGROUPS         NGROUPS_MAX     /* max number groups */
101*4d495c6eSApple OSS Distributions #define NOFILE          256             /* default max open files per process */
102*4d495c6eSApple OSS Distributions #define NOGROUP         65535           /* marker for empty group set member */
103*4d495c6eSApple OSS Distributions #define MAXHOSTNAMELEN  256             /* max hostname size */
104*4d495c6eSApple OSS Distributions #define MAXDOMNAMELEN   256             /* maximum domain name length */
105*4d495c6eSApple OSS Distributions 
106*4d495c6eSApple OSS Distributions /* Machine type dependent parameters. */
107*4d495c6eSApple OSS Distributions #include <machine/param.h>
108*4d495c6eSApple OSS Distributions 
109*4d495c6eSApple OSS Distributions /* More types and definitions used throughout the kernel. */
110*4d495c6eSApple OSS Distributions #ifdef KERNEL
111*4d495c6eSApple OSS Distributions #include <machine/limits.h>
112*4d495c6eSApple OSS Distributions #include <sys/cdefs.h>
113*4d495c6eSApple OSS Distributions #include <sys/errno.h>
114*4d495c6eSApple OSS Distributions #include <sys/time.h>
115*4d495c6eSApple OSS Distributions #include <sys/resource.h>
116*4d495c6eSApple OSS Distributions #include <sys/ucred.h>
117*4d495c6eSApple OSS Distributions #include <sys/uio.h>
118*4d495c6eSApple OSS Distributions #else
119*4d495c6eSApple OSS Distributions #include <limits.h>
120*4d495c6eSApple OSS Distributions #endif
121*4d495c6eSApple OSS Distributions 
122*4d495c6eSApple OSS Distributions /* Signals. */
123*4d495c6eSApple OSS Distributions #include <sys/signal.h>
124*4d495c6eSApple OSS Distributions 
125*4d495c6eSApple OSS Distributions /*
126*4d495c6eSApple OSS Distributions  * Priorities.  Note that with 32 run queues, differences less than 4 are
127*4d495c6eSApple OSS Distributions  * insignificant.
128*4d495c6eSApple OSS Distributions  */
129*4d495c6eSApple OSS Distributions #define PSWP    0
130*4d495c6eSApple OSS Distributions #define PVM     4
131*4d495c6eSApple OSS Distributions #define PINOD   8
132*4d495c6eSApple OSS Distributions #define PRIBIO  16
133*4d495c6eSApple OSS Distributions #define PVFS    20
134*4d495c6eSApple OSS Distributions #define PZERO   22              /* No longer magic, shouldn't be here.  XXX */
135*4d495c6eSApple OSS Distributions #define PSOCK   24
136*4d495c6eSApple OSS Distributions #define PWAIT   32
137*4d495c6eSApple OSS Distributions #define PLOCK   36
138*4d495c6eSApple OSS Distributions #define PPAUSE  40
139*4d495c6eSApple OSS Distributions #define PUSER   50
140*4d495c6eSApple OSS Distributions #define MAXPRI  127             /* Priorities range from 0 through MAXPRI. */
141*4d495c6eSApple OSS Distributions 
142*4d495c6eSApple OSS Distributions #define PRIMASK 0x0ff
143*4d495c6eSApple OSS Distributions #define PCATCH  0x100           /* OR'd with pri for tsleep to check signals */
144*4d495c6eSApple OSS Distributions #define PTTYBLOCK 0x200         /* for tty SIGTTOU and SIGTTIN blocking */
145*4d495c6eSApple OSS Distributions #define PDROP   0x400           /* OR'd with pri to stop re-aquistion of mutex upon wakeup */
146*4d495c6eSApple OSS Distributions #define PSPIN   0x800           /* OR'd with pri to require mutex in spin mode upon wakeup */
147*4d495c6eSApple OSS Distributions 
148*4d495c6eSApple OSS Distributions #define NBPW    sizeof(int)     /* number of bytes per word (integer) */
149*4d495c6eSApple OSS Distributions 
150*4d495c6eSApple OSS Distributions #define CMASK   022             /* default file mask: S_IWGRP|S_IWOTH */
151*4d495c6eSApple OSS Distributions #define NODEV   (dev_t)(-1)     /* non-existent device */
152*4d495c6eSApple OSS Distributions 
153*4d495c6eSApple OSS Distributions /*
154*4d495c6eSApple OSS Distributions  * Clustering of hardware pages on machines with ridiculously small
155*4d495c6eSApple OSS Distributions  * page sizes is done here.  The paging subsystem deals with units of
156*4d495c6eSApple OSS Distributions  * CLSIZE pte's describing NBPG (from machine/param.h) pages each.
157*4d495c6eSApple OSS Distributions  */
158*4d495c6eSApple OSS Distributions #define CLBYTES         (CLSIZE*NBPG)
159*4d495c6eSApple OSS Distributions #define CLOFSET         (CLSIZE*NBPG-1) /* for clusters, like PGOFSET */
160*4d495c6eSApple OSS Distributions #define claligned(x)    ((((int)(x))&CLOFSET)==0)
161*4d495c6eSApple OSS Distributions #define CLOFF           CLOFSET
162*4d495c6eSApple OSS Distributions #define CLSHIFT         (PGSHIFT+CLSIZELOG2)
163*4d495c6eSApple OSS Distributions 
164*4d495c6eSApple OSS Distributions #if CLSIZE == 1
165*4d495c6eSApple OSS Distributions #define clbase(i)       (i)
166*4d495c6eSApple OSS Distributions #define clrnd(i)        (i)
167*4d495c6eSApple OSS Distributions #else
168*4d495c6eSApple OSS Distributions /* Give the base virtual address (first of CLSIZE). */
169*4d495c6eSApple OSS Distributions #define clbase(i)       ((i) &~ (CLSIZE-1))
170*4d495c6eSApple OSS Distributions /* Round a number of clicks up to a whole cluster. */
171*4d495c6eSApple OSS Distributions #define clrnd(i)        (((i) + (CLSIZE-1)) &~ (CLSIZE-1))
172*4d495c6eSApple OSS Distributions #endif
173*4d495c6eSApple OSS Distributions 
174*4d495c6eSApple OSS Distributions #define CBLOCK  64              /* Clist block size, must be a power of 2. */
175*4d495c6eSApple OSS Distributions #define CBQSIZE (CBLOCK/NBBY)   /* Quote bytes/cblock - can do better. */
176*4d495c6eSApple OSS Distributions                                 /* Data chars/clist. */
177*4d495c6eSApple OSS Distributions #define CBSIZE  (CBLOCK - sizeof(struct cblock *) - CBQSIZE)
178*4d495c6eSApple OSS Distributions #define CROUND  (CBLOCK - 1)    /* Clist rounding. */
179*4d495c6eSApple OSS Distributions 
180*4d495c6eSApple OSS Distributions /*
181*4d495c6eSApple OSS Distributions  * File system parameters and macros.
182*4d495c6eSApple OSS Distributions  *
183*4d495c6eSApple OSS Distributions  * The file system is made out of blocks of at most MAXPHYS units, with
184*4d495c6eSApple OSS Distributions  * smaller units (fragments) only in the last direct block.  MAXBSIZE
185*4d495c6eSApple OSS Distributions  * primarily determines the size of buffers in the buffer pool.  It may be
186*4d495c6eSApple OSS Distributions  * made larger than MAXPHYS without any effect on existing file systems;
187*4d495c6eSApple OSS Distributions  * however making it smaller may make some file systems unmountable.
188*4d495c6eSApple OSS Distributions  * We set this to track the value of MAX_UPL_TRANSFER_BYTES from
189*4d495c6eSApple OSS Distributions  * osfmk/mach/memory_object_types.h to bound it at the maximum UPL size.
190*4d495c6eSApple OSS Distributions  */
191*4d495c6eSApple OSS Distributions #define MAXBSIZE        (256 * 4096)
192*4d495c6eSApple OSS Distributions #define MAXPHYSIO       MAXPHYS
193*4d495c6eSApple OSS Distributions #define MAXFRAG         8
194*4d495c6eSApple OSS Distributions 
195*4d495c6eSApple OSS Distributions #define MAXPHYSIO_WIRED (16 * 1024 * 1024)
196*4d495c6eSApple OSS Distributions 
197*4d495c6eSApple OSS Distributions /*
198*4d495c6eSApple OSS Distributions  * MAXPATHLEN defines the longest permissable path length after expanding
199*4d495c6eSApple OSS Distributions  * symbolic links. It is used to allocate a temporary buffer from the buffer
200*4d495c6eSApple OSS Distributions  * pool in which to do the name expansion, hence should be a power of two,
201*4d495c6eSApple OSS Distributions  * and must be less than or equal to MAXBSIZE.  MAXSYMLINKS defines the
202*4d495c6eSApple OSS Distributions  * maximum number of symbolic links that may be expanded in a path name.
203*4d495c6eSApple OSS Distributions  * It should be set high enough to allow all legitimate uses, but halt
204*4d495c6eSApple OSS Distributions  * infinite loops reasonably quickly.
205*4d495c6eSApple OSS Distributions  */
206*4d495c6eSApple OSS Distributions #define MAXPATHLEN      PATH_MAX
207*4d495c6eSApple OSS Distributions #define MAXSYMLINKS     32
208*4d495c6eSApple OSS Distributions 
209*4d495c6eSApple OSS Distributions /* Bit map related macros. */
210*4d495c6eSApple OSS Distributions #define setbit(a, i)     (((unsigned char *)(a))[(i)/NBBY] |= 1u<<((i)%NBBY))
211*4d495c6eSApple OSS Distributions #define clrbit(a, i)     (((unsigned char *)(a))[(i)/NBBY] &= ~(1u<<((i)%NBBY)))
212*4d495c6eSApple OSS Distributions #define isset(a, i)      (((unsigned char *)(a))[(i)/NBBY] & (1u<<((i)%NBBY)))
213*4d495c6eSApple OSS Distributions #define isclr(a, i)      ((((unsigned char *)(a))[(i)/NBBY] & (1u<<((i)%NBBY))) == 0)
214*4d495c6eSApple OSS Distributions 
215*4d495c6eSApple OSS Distributions /* Macros for counting, rounding. */
216*4d495c6eSApple OSS Distributions #ifndef howmany
217*4d495c6eSApple OSS Distributions #define howmany(x, y)   ((((x) % (y)) == 0) ? ((x) / (y)) : (((x) / (y)) + 1))
218*4d495c6eSApple OSS Distributions #endif
219*4d495c6eSApple OSS Distributions #define roundup(x, y)   ((((x) % (y)) == 0) ? \
220*4d495c6eSApple OSS Distributions 	                (x) : ((x) + ((y) - ((x) % (y)))))
221*4d495c6eSApple OSS Distributions #define powerof2(x)     ((((x)-1)&(x))==0)
222*4d495c6eSApple OSS Distributions 
223*4d495c6eSApple OSS Distributions /* Macros for min/max. */
224*4d495c6eSApple OSS Distributions #ifndef MIN
225*4d495c6eSApple OSS Distributions #define MIN(a, b) (((a)<(b))?(a):(b))
226*4d495c6eSApple OSS Distributions #endif /* MIN */
227*4d495c6eSApple OSS Distributions #ifndef MAX
228*4d495c6eSApple OSS Distributions #define MAX(a, b) (((a)>(b))?(a):(b))
229*4d495c6eSApple OSS Distributions #endif  /* MAX */
230*4d495c6eSApple OSS Distributions 
231*4d495c6eSApple OSS Distributions /*
232*4d495c6eSApple OSS Distributions  * Scale factor for scaled integers used to count %cpu time and load avgs.
233*4d495c6eSApple OSS Distributions  *
234*4d495c6eSApple OSS Distributions  * The number of CPU `tick's that map to a unique `%age' can be expressed
235*4d495c6eSApple OSS Distributions  * by the formula (1 / (2 ^ (FSHIFT - 11))).  The maximum load average that
236*4d495c6eSApple OSS Distributions  * can be calculated (assuming 32 bits) can be closely approximated using
237*4d495c6eSApple OSS Distributions  * the formula (2 ^ (2 * (16 - FSHIFT))) for (FSHIFT < 15).
238*4d495c6eSApple OSS Distributions  *
239*4d495c6eSApple OSS Distributions  * For the scheduler to maintain a 1:1 mapping of CPU `tick' to `%age',
240*4d495c6eSApple OSS Distributions  * FSHIFT must be at least 11; this gives us a maximum load avg of ~1024.
241*4d495c6eSApple OSS Distributions  */
242*4d495c6eSApple OSS Distributions #define FSHIFT  11              /* bits to right of fixed binary point */
243*4d495c6eSApple OSS Distributions #define FSCALE  (1<<FSHIFT)
244*4d495c6eSApple OSS Distributions 
245*4d495c6eSApple OSS Distributions #endif  /* _SYS_PARAM_H_ */
246