]> git.saurik.com Git - apple/xnu.git/blame - bsd/sys/systm.h
xnu-792.21.3.tar.gz
[apple/xnu.git] / bsd / sys / systm.h
CommitLineData
1c79356b 1/*
5d5c5d0d
A
2 * Copyright (c) 2000-2004 Apple Computer, Inc. All rights reserved.
3 *
8f6c56a5 4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
1c79356b 5 *
8f6c56a5
A
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
8ad349bb 24 * limitations under the License.
8f6c56a5
A
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
1c79356b
A
27 */
28/* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
29/*-
30 * Copyright (c) 1982, 1988, 1991, 1993
31 * The Regents of the University of California. All rights reserved.
32 * (c) UNIX System Laboratories, Inc.
33 * All or some portions of this file are derived from material licensed
34 * to the University of California by American Telephone and Telegraph
35 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
36 * the permission of UNIX System Laboratories, Inc.
37 *
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
40 * are met:
41 * 1. Redistributions of source code must retain the above copyright
42 * notice, this list of conditions and the following disclaimer.
43 * 2. Redistributions in binary form must reproduce the above copyright
44 * notice, this list of conditions and the following disclaimer in the
45 * documentation and/or other materials provided with the distribution.
46 * 3. All advertising materials mentioning features or use of this software
47 * must display the following acknowledgement:
48 * This product includes software developed by the University of
49 * California, Berkeley and its contributors.
50 * 4. Neither the name of the University nor the names of its contributors
51 * may be used to endorse or promote products derived from this software
52 * without specific prior written permission.
53 *
54 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64 * SUCH DAMAGE.
65 *
66 * @(#)systm.h 8.7 (Berkeley) 3/29/95
67 */
68
69/*
70 * The `securelevel' variable controls the security level of the system.
71 * It can only be decreased by process 1 (/sbin/init).
72 *
73 * Security levels are as follows:
74 * -1 permannently insecure mode - always run system in level 0 mode.
75 * 0 insecure mode - immutable and append-only flags make be turned off.
76 * All devices may be read or written subject to permission modes.
77 * 1 secure mode - immutable and append-only flags may not be changed;
78 * raw disks of mounted filesystems, /dev/mem, and /dev/kmem are
79 * read-only.
80 * 2 highly secure mode - same as (1) plus raw disks are always
81 * read-only whether mounted or not. This level precludes tampering
82 * with filesystems by unmounting them, but also inhibits running
83 * newfs while the system is secured.
84 *
85 * In normal operation, the system runs in level 0 mode while single user
86 * and in level 1 mode while multiuser. If level 2 mode is desired while
87 * running multiuser, it can be set in the multiuser startup script
88 * (/etc/rc.local) using sysctl(1). If it is desired to run the system
89 * in level 0 mode while multiuser, initialize the variable securelevel
90 * in /sys/kern/kern_sysctl.c to -1. Note that it is NOT initialized to
91 * zero as that would allow the vmunix binary to be patched to -1.
92 * Without initialization, securelevel loads in the BSS area which only
93 * comes into existence when the kernel is loaded and hence cannot be
94 * patched by a stalking hacker.
95 */
96
97#ifndef _SYS_SYSTM_H_
98#define _SYS_SYSTM_H_
99
9bccf70c 100#include <sys/appleapiopts.h>
1c79356b 101#include <sys/cdefs.h>
1c79356b
A
102#include <sys/types.h>
103#include <sys/time.h>
91447636
A
104#include <sys/ioctl.h>
105#include <sys/malloc.h>
106#ifdef BSD_KERNEL_PRIVATE
1c79356b
A
107#include <sys/tty.h>
108#include <sys/vm.h>
1c79356b 109#include <sys/linker_set.h>
91447636
A
110#endif
111#include <sys/proc.h>
1c79356b 112__BEGIN_DECLS
91447636
A
113#ifdef KERNEL
114#include <libkern/libkern.h>
115#endif
1c79356b 116#include <kern/thread.h>
91447636 117#include <kern/debug.h>
1c79356b
A
118__END_DECLS
119
91447636 120#ifdef BSD_KERNEL_PRIVATE
1c79356b
A
121extern char version[]; /* system version */
122extern char copyright[]; /* system copyright */
123
1c79356b 124
1c79356b
A
125extern int boothowto; /* reboot flags, from console subsystem */
126extern int show_space;
127
9bccf70c
A
128extern int nblkdev; /* number of entries in bdevsw */
129extern int nchrdev; /* number of entries in cdevsw */
91447636 130#endif /* BSD_KERNEL_PRIVATE */
9bccf70c 131
91447636 132#ifdef KERNEL_PRIVATE
9bccf70c
A
133#define NO_FUNNEL 0
134#define KERNEL_FUNNEL 1
9bccf70c 135
91447636
A
136extern int securelevel; /* system security level */
137extern dev_t rootdev; /* root device */
138extern struct vnode *rootvp; /* vnode equivalent to above */
1c79356b 139extern funnel_t * kernel_flock;
91447636
A
140
141#endif /* KERNEL_PRIVATE */
1c79356b
A
142
143#define SYSINIT(a,b,c,d,e)
144#define MALLOC_DEFINE(a,b,c)
145
1c79356b
A
146#define getenv_int(a,b) (*b = 0)
147#define KASSERT(exp,msg)
148
149/*
150 * General function declarations.
151 */
152__BEGIN_DECLS
91447636
A
153int nullop(void);
154int nulldev(void);
155int enoioctl(void);
156int enxio(void);
157int eopnotsupp(void);
158int einval(void);
159
160#ifdef BSD_KERNEL_PRIVATE
161int seltrue(dev_t dev, int which, struct proc *p);
162void ttyprintf(struct tty *, const char *, ...);
163void realitexpire(void *);
164int hzto(struct timeval *tv);
9bccf70c
A
165#endif /* __APPLE_API_UNSTABLE */
166
91447636
A
167void *hashinit(int count, int type, u_long *hashmask);
168
169void tablefull(const char *);
170
171int kvprintf(char const *, void (*)(int, void*), void *, int,
172 __darwin_va_list);
173
174void uprintf(const char *, ...);
175
176
177void ovbcopy(const void *from, void *to, size_t len);
178int copywithin(void *saddr, void *daddr, size_t len);
179
180int fubyte(user_addr_t addr);
181int fuibyte(user_addr_t addr);
182int subyte(user_addr_t addr, int byte);
183int suibyte(user_addr_t addr, int byte);
184long fuword(user_addr_t addr);
185long fuiword(user_addr_t addr);
186int suword(user_addr_t addr, long word);
187int suiword(user_addr_t addr, long word);
188int64_t fulong(user_addr_t addr);
189int sulong(user_addr_t addr, int64_t longword);
190uint64_t fuulong(user_addr_t addr);
191int suulong(user_addr_t addr, uint64_t ulongword);
192#define fusize(_a) ((user_size_t)fulong(_a))
193#define susize(_a, _s) sulong((_a), (_s))
194#define fuptr(a) ((user_addr_t)fulong(_a)
195#define suptr(_a, _p) sulong((_a), (_p))
196int useracc(user_addr_t addr, user_size_t len,int prot);
1c79356b 197
1c79356b 198typedef void (*timeout_fcn_t)(void *);
91447636
A
199#ifdef KERNEL_PRIVATE
200void timeout(void (*)(void *), void *arg, int ticks);
201void untimeout(void (*)(void *), void *arg);
202#endif /* KERNEL_PRIVATE */
203void bsd_timeout(void (*)(void *), void *arg, struct timespec * ts);
204void bsd_untimeout(void (*)(void *), void *arg);
1c79356b 205
91447636 206void set_fsblocksize(struct vnode *);
1c79356b 207
91447636
A
208#ifdef BSD_KERNEL_PRIVATE
209int vslock(user_addr_t addr, user_size_t len);
210int vsunlock(user_addr_t addr, user_size_t len, int dirtied);
211int clone_system_shared_regions(int shared_regions_active,
212 int chain_regions,
213 int base_vnode);
1c79356b 214
91447636
A
215extern kern_return_t bsd_exception(int, exception_data_type_t codes[], int);
216extern void bsdinit_task(void);
217void bsd_hardclock(boolean_t usermode, caddr_t pc, int numticks);
218void gatherstats(boolean_t usermode, caddr_t pc);
9bccf70c 219
91447636 220void initclocks(void);
1c79356b 221
91447636
A
222void startprofclock(struct proc *);
223void stopprofclock(struct proc *);
224void setstatclockrate(int hzrate);
1c79356b 225
91447636
A
226struct time_value;
227void get_procrustime(struct time_value *tv);
228
229void load_init_program(struct proc *p);
230#endif /* BSD_KERNEL_PRIVATE */
1c79356b 231
1c79356b 232
1c79356b
A
233__END_DECLS
234
235#endif /* !_SYS_SYSTM_H_ */
236