systm.h revision 289032
1/*-
2 * Copyright (c) 1982, 1988, 1991, 1993
3 *	The Regents of the University of California.  All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 *    notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 *    notice, this list of conditions and the following disclaimer in the
17 *    documentation and/or other materials provided with the distribution.
18 * 4. Neither the name of the University nor the names of its contributors
19 *    may be used to endorse or promote products derived from this software
20 *    without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 *	@(#)systm.h	8.7 (Berkeley) 3/29/95
35 * $FreeBSD: stable/10/sys/sys/systm.h 289032 2015-10-08 15:48:44Z cperciva $
36 */
37
38#ifndef _SYS_SYSTM_H_
39#define	_SYS_SYSTM_H_
40
41#include <machine/atomic.h>
42#include <machine/cpufunc.h>
43#include <sys/callout.h>
44#include <sys/cdefs.h>
45#include <sys/queue.h>
46#include <sys/stdint.h>		/* for people using printf mainly */
47
48extern int cold;		/* nonzero if we are doing a cold boot */
49extern int suspend_blocked;	/* block suspend due to pending shutdown */
50extern int rebooting;		/* kern_reboot() has been called. */
51extern const char *panicstr;	/* panic message */
52extern char version[];		/* system version */
53extern char compiler_version[];	/* compiler version */
54extern char copyright[];	/* system copyright */
55extern int kstack_pages;	/* number of kernel stack pages */
56
57extern u_long pagesizes[];	/* supported page sizes */
58extern long physmem;		/* physical memory */
59extern long realmem;		/* 'real' memory */
60
61extern char *rootdevnames[2];	/* names of possible root devices */
62
63extern int boothowto;		/* reboot flags, from console subsystem */
64extern int bootverbose;		/* nonzero to print verbose messages */
65
66extern int maxusers;		/* system tune hint */
67extern int ngroups_max;		/* max # of supplemental groups */
68extern int vm_guest;		/* Running as virtual machine guest? */
69
70/*
71 * Detected virtual machine guest types. The intention is to expand
72 * and/or add to the VM_GUEST_VM type if specific VM functionality is
73 * ever implemented (e.g. vendor-specific paravirtualization features).
74 * Keep in sync with vm_guest_sysctl_names[].
75 */
76enum VM_GUEST { VM_GUEST_NO = 0, VM_GUEST_VM, VM_GUEST_XEN, VM_GUEST_HV,
77		VM_GUEST_VMWARE, VM_LAST };
78
79#if defined(WITNESS) || defined(INVARIANTS)
80void	kassert_panic(const char *fmt, ...)  __printflike(1, 2);
81#endif
82
83#ifdef	INVARIANTS		/* The option is always available */
84#define	KASSERT(exp,msg) do {						\
85	if (__predict_false(!(exp)))					\
86		kassert_panic msg;						\
87} while (0)
88#define	VNASSERT(exp, vp, msg) do {					\
89	if (__predict_false(!(exp))) {					\
90		vn_printf(vp, "VNASSERT failed\n");			\
91		kassert_panic msg;						\
92	}								\
93} while (0)
94#else
95#define	KASSERT(exp,msg) do { \
96} while (0)
97
98#define	VNASSERT(exp, vp, msg) do { \
99} while (0)
100#endif
101
102#ifndef CTASSERT	/* Allow lint to override */
103#define	CTASSERT(x)	_Static_assert(x, "compile-time assertion failed")
104#endif
105
106/*
107 * Assert that a pointer can be loaded from memory atomically.
108 *
109 * This assertion enforces stronger alignment than necessary.  For example,
110 * on some architectures, atomicity for unaligned loads will depend on
111 * whether or not the load spans multiple cache lines.
112 */
113#define	ASSERT_ATOMIC_LOAD_PTR(var, msg)				\
114	KASSERT(sizeof(var) == sizeof(void *) &&			\
115	    ((uintptr_t)&(var) & (sizeof(void *) - 1)) == 0, msg)
116
117/*
118 * Assert that a thread is in critical(9) section.
119 */
120#define	CRITICAL_ASSERT(td)						\
121	KASSERT((td)->td_critnest >= 1, ("Not in critical section"));
122
123/*
124 * If we have already panic'd and this is the thread that called
125 * panic(), then don't block on any mutexes but silently succeed.
126 * Otherwise, the kernel will deadlock since the scheduler isn't
127 * going to run the thread that holds any lock we need.
128 */
129#define	SCHEDULER_STOPPED() __predict_false(curthread->td_stopsched)
130
131/*
132 * XXX the hints declarations are even more misplaced than most declarations
133 * in this file, since they are needed in one file (per arch) and only used
134 * in two files.
135 * XXX most of these variables should be const.
136 */
137extern int osreldate;
138extern int envmode;
139extern int hintmode;		/* 0 = off. 1 = config, 2 = fallback */
140extern int dynamic_kenv;
141extern struct mtx kenv_lock;
142extern char *kern_envp;
143extern char static_env[];
144extern char static_hints[];	/* by config for now */
145
146extern char **kenvp;
147
148extern const void *zero_region;	/* address space maps to a zeroed page	*/
149
150extern int unmapped_buf_allowed;
151extern int iosize_max_clamp;
152extern int devfs_iosize_max_clamp;
153#define	IOSIZE_MAX	(iosize_max_clamp ? INT_MAX : SSIZE_MAX)
154#define	DEVFS_IOSIZE_MAX	(devfs_iosize_max_clamp ? INT_MAX : SSIZE_MAX)
155
156/*
157 * General function declarations.
158 */
159
160struct inpcb;
161struct lock_object;
162struct malloc_type;
163struct mtx;
164struct proc;
165struct socket;
166struct thread;
167struct tty;
168struct ucred;
169struct uio;
170struct _jmp_buf;
171struct trapframe;
172struct eventtimer;
173
174int	setjmp(struct _jmp_buf *) __returns_twice;
175void	longjmp(struct _jmp_buf *, int) __dead2;
176int	dumpstatus(vm_offset_t addr, off_t count);
177int	nullop(void);
178int	eopnotsupp(void);
179int	ureadc(int, struct uio *);
180void	hashdestroy(void *, struct malloc_type *, u_long);
181void	*hashinit(int count, struct malloc_type *type, u_long *hashmask);
182void	*hashinit_flags(int count, struct malloc_type *type,
183    u_long *hashmask, int flags);
184#define	HASH_NOWAIT	0x00000001
185#define	HASH_WAITOK	0x00000002
186
187void	*phashinit(int count, struct malloc_type *type, u_long *nentries);
188void	g_waitidle(void);
189
190void	panic(const char *, ...) __dead2 __printflike(1, 2);
191void	vpanic(const char *, __va_list) __dead2 __printflike(1, 0);
192
193void	cpu_boot(int);
194void	cpu_flush_dcache(void *, size_t);
195void	cpu_rootconf(void);
196void	critical_enter(void);
197void	critical_exit(void);
198void	init_param1(void);
199void	init_param2(long physpages);
200void	init_static_kenv(char *, size_t);
201void	tablefull(const char *);
202#ifdef  EARLY_PRINTF
203typedef void early_putc_t(int ch);
204extern early_putc_t *early_putc;
205#endif
206int	kvprintf(char const *, void (*)(int, void*), void *, int,
207	    __va_list) __printflike(1, 0);
208void	log(int, const char *, ...) __printflike(2, 3);
209void	log_console(struct uio *);
210int	asprintf(char **ret, struct malloc_type *mtp, const char *format,
211	    ...) __printflike(3, 4);
212int	printf(const char *, ...) __printflike(1, 2);
213int	snprintf(char *, size_t, const char *, ...) __printflike(3, 4);
214int	sprintf(char *buf, const char *, ...) __printflike(2, 3);
215int	uprintf(const char *, ...) __printflike(1, 2);
216int	vprintf(const char *, __va_list) __printflike(1, 0);
217int	vasprintf(char **ret, struct malloc_type *mtp, const char *format,
218	    __va_list ap) __printflike(3, 0);
219int	vsnprintf(char *, size_t, const char *, __va_list) __printflike(3, 0);
220int	vsnrprintf(char *, size_t, int, const char *, __va_list) __printflike(4, 0);
221int	vsprintf(char *buf, const char *, __va_list) __printflike(2, 0);
222int	ttyprintf(struct tty *, const char *, ...) __printflike(2, 3);
223int	sscanf(const char *, char const *, ...) __nonnull(1) __nonnull(2);
224int	vsscanf(const char *, char const *, __va_list) __nonnull(1) __nonnull(2);
225long	strtol(const char *, char **, int) __nonnull(1);
226u_long	strtoul(const char *, char **, int) __nonnull(1);
227quad_t	strtoq(const char *, char **, int) __nonnull(1);
228u_quad_t strtouq(const char *, char **, int) __nonnull(1);
229void	tprintf(struct proc *p, int pri, const char *, ...) __printflike(3, 4);
230void	vtprintf(struct proc *, int, const char *, __va_list) __printflike(3, 0);
231void	hexdump(const void *ptr, int length, const char *hdr, int flags);
232#define	HD_COLUMN_MASK	0xff
233#define	HD_DELIM_MASK	0xff00
234#define	HD_OMIT_COUNT	(1 << 16)
235#define	HD_OMIT_HEX	(1 << 17)
236#define	HD_OMIT_CHARS	(1 << 18)
237
238#define ovbcopy(f, t, l) bcopy((f), (t), (l))
239void	bcopy(const void *from, void *to, size_t len) __nonnull(1) __nonnull(2);
240void	bzero(void *buf, size_t len) __nonnull(1);
241
242void	*memcpy(void *to, const void *from, size_t len) __nonnull(1) __nonnull(2);
243void	*memmove(void *dest, const void *src, size_t n) __nonnull(1) __nonnull(2);
244
245int	copystr(const void * __restrict kfaddr, void * __restrict kdaddr,
246	    size_t len, size_t * __restrict lencopied)
247	    __nonnull(1) __nonnull(2);
248int	copyinstr(const void * __restrict udaddr, void * __restrict kaddr,
249	    size_t len, size_t * __restrict lencopied)
250	    __nonnull(1) __nonnull(2);
251int	copyin(const void * __restrict udaddr, void * __restrict kaddr,
252	    size_t len) __nonnull(1) __nonnull(2);
253int	copyin_nofault(const void * __restrict udaddr, void * __restrict kaddr,
254	    size_t len) __nonnull(1) __nonnull(2);
255int	copyout(const void * __restrict kaddr, void * __restrict udaddr,
256	    size_t len) __nonnull(1) __nonnull(2);
257int	copyout_nofault(const void * __restrict kaddr, void * __restrict udaddr,
258	    size_t len) __nonnull(1) __nonnull(2);
259
260int	fubyte(volatile const void *base);
261long	fuword(volatile const void *base);
262int	fuword16(volatile const void *base);
263int32_t	fuword32(volatile const void *base);
264int64_t	fuword64(volatile const void *base);
265int	fueword(volatile const void *base, long *val);
266int	fueword32(volatile const void *base, int32_t *val);
267int	fueword64(volatile const void *base, int64_t *val);
268int	subyte(volatile void *base, int byte);
269int	suword(volatile void *base, long word);
270int	suword16(volatile void *base, int word);
271int	suword32(volatile void *base, int32_t word);
272int	suword64(volatile void *base, int64_t word);
273uint32_t casuword32(volatile uint32_t *base, uint32_t oldval, uint32_t newval);
274u_long	casuword(volatile u_long *p, u_long oldval, u_long newval);
275int	casueword32(volatile uint32_t *base, uint32_t oldval, uint32_t *oldvalp,
276	    uint32_t newval);
277int	casueword(volatile u_long *p, u_long oldval, u_long *oldvalp,
278	    u_long newval);
279
280void	realitexpire(void *);
281
282int	sysbeep(int hertz, int period);
283
284void	hardclock(int usermode, uintfptr_t pc);
285void	hardclock_cnt(int cnt, int usermode);
286void	hardclock_cpu(int usermode);
287void	hardclock_sync(int cpu);
288void	softclock(void *);
289void	statclock(int usermode);
290void	statclock_cnt(int cnt, int usermode);
291void	profclock(int usermode, uintfptr_t pc);
292void	profclock_cnt(int cnt, int usermode, uintfptr_t pc);
293
294int	hardclockintr(void);
295
296void	startprofclock(struct proc *);
297void	stopprofclock(struct proc *);
298void	cpu_startprofclock(void);
299void	cpu_stopprofclock(void);
300sbintime_t 	cpu_idleclock(void);
301void	cpu_activeclock(void);
302void	cpu_new_callout(int cpu, sbintime_t bt, sbintime_t bt_opt);
303void	cpu_et_frequency(struct eventtimer *et, uint64_t newfreq);
304extern int	cpu_deepest_sleep;
305extern int	cpu_disable_c2_sleep;
306extern int	cpu_disable_c3_sleep;
307
308int	cr_cansee(struct ucred *u1, struct ucred *u2);
309int	cr_canseesocket(struct ucred *cred, struct socket *so);
310int	cr_canseeinpcb(struct ucred *cred, struct inpcb *inp);
311
312char	*getenv(const char *name);
313void	freeenv(char *env);
314int	getenv_int(const char *name, int *data);
315int	getenv_uint(const char *name, unsigned int *data);
316int	getenv_long(const char *name, long *data);
317int	getenv_ulong(const char *name, unsigned long *data);
318int	getenv_string(const char *name, char *data, int size);
319int	getenv_quad(const char *name, quad_t *data);
320int	setenv(const char *name, const char *value);
321int	unsetenv(const char *name);
322int	testenv(const char *name);
323
324typedef uint64_t (cpu_tick_f)(void);
325void set_cputicker(cpu_tick_f *func, uint64_t freq, unsigned var);
326extern cpu_tick_f *cpu_ticks;
327uint64_t cpu_tickrate(void);
328uint64_t cputick2usec(uint64_t tick);
329
330#ifdef APM_FIXUP_CALLTODO
331struct timeval;
332void	adjust_timeout_calltodo(struct timeval *time_change);
333#endif /* APM_FIXUP_CALLTODO */
334
335#include <sys/libkern.h>
336
337/* Initialize the world */
338void	consinit(void);
339void	cpu_initclocks(void);
340void	cpu_initclocks_bsp(void);
341void	cpu_initclocks_ap(void);
342void	usrinfoinit(void);
343
344/* Finalize the world */
345void	kern_reboot(int) __dead2;
346void	shutdown_nice(int);
347
348/* Timeouts */
349typedef void timeout_t(void *);	/* timeout function type */
350#define CALLOUT_HANDLE_INITIALIZER(handle)	\
351	{ NULL }
352
353void	callout_handle_init(struct callout_handle *);
354struct	callout_handle timeout(timeout_t *, void *, int);
355void	untimeout(timeout_t *, void *, struct callout_handle);
356
357/* Stubs for obsolete functions that used to be for interrupt management */
358static __inline intrmask_t	splbio(void)		{ return 0; }
359static __inline intrmask_t	splcam(void)		{ return 0; }
360static __inline intrmask_t	splclock(void)		{ return 0; }
361static __inline intrmask_t	splhigh(void)		{ return 0; }
362static __inline intrmask_t	splimp(void)		{ return 0; }
363static __inline intrmask_t	splnet(void)		{ return 0; }
364static __inline intrmask_t	spltty(void)		{ return 0; }
365static __inline intrmask_t	splvm(void)		{ return 0; }
366static __inline void		splx(intrmask_t ipl __unused)	{ return; }
367
368/*
369 * Common `proc' functions are declared here so that proc.h can be included
370 * less often.
371 */
372int	_sleep(void *chan, struct lock_object *lock, int pri, const char *wmesg,
373	   sbintime_t sbt, sbintime_t pr, int flags) __nonnull(1);
374#define	msleep(chan, mtx, pri, wmesg, timo)				\
375	_sleep((chan), &(mtx)->lock_object, (pri), (wmesg),		\
376	    tick_sbt * (timo), 0, C_HARDCLOCK)
377#define	msleep_sbt(chan, mtx, pri, wmesg, bt, pr, flags)		\
378	_sleep((chan), &(mtx)->lock_object, (pri), (wmesg), (bt), (pr),	\
379	    (flags))
380int	msleep_spin_sbt(void *chan, struct mtx *mtx, const char *wmesg,
381	    sbintime_t sbt, sbintime_t pr, int flags) __nonnull(1);
382#define	msleep_spin(chan, mtx, wmesg, timo)				\
383	msleep_spin_sbt((chan), (mtx), (wmesg), tick_sbt * (timo),	\
384	    0, C_HARDCLOCK)
385int	pause_sbt(const char *wmesg, sbintime_t sbt, sbintime_t pr,
386	    int flags);
387#define	pause(wmesg, timo)						\
388	pause_sbt((wmesg), tick_sbt * (timo), 0, C_HARDCLOCK)
389#define	tsleep(chan, pri, wmesg, timo)					\
390	_sleep((chan), NULL, (pri), (wmesg), tick_sbt * (timo),		\
391	    0, C_HARDCLOCK)
392#define	tsleep_sbt(chan, pri, wmesg, bt, pr, flags)			\
393	_sleep((chan), NULL, (pri), (wmesg), (bt), (pr), (flags))
394void	wakeup(void *chan) __nonnull(1);
395void	wakeup_one(void *chan) __nonnull(1);
396
397/*
398 * Common `struct cdev *' stuff are declared here to avoid #include poisoning
399 */
400
401struct cdev;
402dev_t dev2udev(struct cdev *x);
403const char *devtoname(struct cdev *cdev);
404
405int poll_no_poll(int events);
406
407/* XXX: Should be void nanodelay(u_int nsec); */
408void	DELAY(int usec);
409
410/* Root mount holdback API */
411struct root_hold_token;
412
413struct root_hold_token *root_mount_hold(const char *identifier);
414void root_mount_rel(struct root_hold_token *h);
415void root_mount_wait(void);
416int root_mounted(void);
417
418
419/*
420 * Unit number allocation API. (kern/subr_unit.c)
421 */
422struct unrhdr;
423struct unrhdr *new_unrhdr(int low, int high, struct mtx *mutex);
424void init_unrhdr(struct unrhdr *uh, int low, int high, struct mtx *mutex);
425void delete_unrhdr(struct unrhdr *uh);
426void clean_unrhdr(struct unrhdr *uh);
427void clean_unrhdrl(struct unrhdr *uh);
428int alloc_unr(struct unrhdr *uh);
429int alloc_unr_specific(struct unrhdr *uh, u_int item);
430int alloc_unrl(struct unrhdr *uh);
431void free_unr(struct unrhdr *uh, u_int item);
432
433void	intr_prof_stack_use(struct thread *td, struct trapframe *frame);
434
435extern void (*softdep_ast_cleanup)(void);
436
437#endif /* !_SYS_SYSTM_H_ */
438