]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/sys/systm.h
copystr(9): Move to deprecate [2/2]
[FreeBSD/FreeBSD.git] / sys / sys / systm.h
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1982, 1988, 1991, 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  *      @(#)systm.h     8.7 (Berkeley) 3/29/95
37  * $FreeBSD$
38  */
39
40 #ifndef _SYS_SYSTM_H_
41 #define _SYS_SYSTM_H_
42
43 #include <sys/cdefs.h>
44 #include <machine/atomic.h>
45 #include <machine/cpufunc.h>
46 #include <sys/callout.h>
47 #include <sys/queue.h>
48 #include <sys/stdint.h>         /* for people using printf mainly */
49
50 __NULLABILITY_PRAGMA_PUSH
51
52 extern int cold;                /* nonzero if we are doing a cold boot */
53 extern int suspend_blocked;     /* block suspend due to pending shutdown */
54 extern int rebooting;           /* kern_reboot() has been called. */
55 extern const char *panicstr;    /* panic message */
56 extern bool panicked;
57 #define KERNEL_PANICKED()       __predict_false(panicked)
58 extern char version[];          /* system version */
59 extern char compiler_version[]; /* compiler version */
60 extern char copyright[];        /* system copyright */
61 extern int kstack_pages;        /* number of kernel stack pages */
62
63 extern u_long pagesizes[];      /* supported page sizes */
64 extern long physmem;            /* physical memory */
65 extern long realmem;            /* 'real' memory */
66
67 extern char *rootdevnames[2];   /* names of possible root devices */
68
69 extern int boothowto;           /* reboot flags, from console subsystem */
70 extern int bootverbose;         /* nonzero to print verbose messages */
71
72 extern int maxusers;            /* system tune hint */
73 extern int ngroups_max;         /* max # of supplemental groups */
74 extern int vm_guest;            /* Running as virtual machine guest? */
75
76 /*
77  * Detected virtual machine guest types. The intention is to expand
78  * and/or add to the VM_GUEST_VM type if specific VM functionality is
79  * ever implemented (e.g. vendor-specific paravirtualization features).
80  * Keep in sync with vm_guest_sysctl_names[].
81  */
82 enum VM_GUEST { VM_GUEST_NO = 0, VM_GUEST_VM, VM_GUEST_XEN, VM_GUEST_HV,
83                 VM_GUEST_VMWARE, VM_GUEST_KVM, VM_GUEST_BHYVE, VM_GUEST_VBOX,
84                 VM_GUEST_PARALLELS, VM_LAST };
85
86 /*
87  * These functions need to be declared before the KASSERT macro is invoked in
88  * !KASSERT_PANIC_OPTIONAL builds, so their declarations are sort of out of
89  * place compared to other function definitions in this header.  On the other
90  * hand, this header is a bit disorganized anyway.
91  */
92 void    panic(const char *, ...) __dead2 __printflike(1, 2);
93 void    vpanic(const char *, __va_list) __dead2 __printflike(1, 0);
94
95 #if defined(WITNESS) || defined(INVARIANT_SUPPORT)
96 #ifdef KASSERT_PANIC_OPTIONAL
97 void    kassert_panic(const char *fmt, ...)  __printflike(1, 2);
98 #else
99 #define kassert_panic   panic
100 #endif
101 #endif
102
103 #ifdef  INVARIANTS              /* The option is always available */
104 #define KASSERT(exp,msg) do {                                           \
105         if (__predict_false(!(exp)))                                    \
106                 kassert_panic msg;                                      \
107 } while (0)
108 #define VNASSERT(exp, vp, msg) do {                                     \
109         if (__predict_false(!(exp))) {                                  \
110                 vn_printf(vp, "VNASSERT failed: %s not true at %s:%d (%s)\n",\
111                    #exp, __FILE__, __LINE__, __func__);                 \
112                 kassert_panic msg;                                      \
113         }                                                               \
114 } while (0)
115 #define VNPASS(exp, vp) do {                                            \
116         const char *_exp = #exp;                                        \
117         VNASSERT(exp, vp, ("condition %s not met at %s:%d (%s)",        \
118             _exp, __FILE__, __LINE__, __func__));                       \
119 } while (0)
120 #else
121 #define KASSERT(exp,msg) do { \
122 } while (0)
123
124 #define VNASSERT(exp, vp, msg) do { \
125 } while (0)
126 #define VNPASS(exp, vp) do { \
127 } while (0)
128 #endif
129
130 #ifndef CTASSERT        /* Allow lint to override */
131 #define CTASSERT(x)     _Static_assert(x, "compile-time assertion failed")
132 #endif
133
134 #if defined(_KERNEL)
135 #include <sys/param.h>          /* MAXCPU */
136 #include <sys/pcpu.h>           /* curthread */
137 #include <sys/kpilite.h>
138 #endif
139
140 /*
141  * Assert that a pointer can be loaded from memory atomically.
142  *
143  * This assertion enforces stronger alignment than necessary.  For example,
144  * on some architectures, atomicity for unaligned loads will depend on
145  * whether or not the load spans multiple cache lines.
146  */
147 #define ASSERT_ATOMIC_LOAD_PTR(var, msg)                                \
148         KASSERT(sizeof(var) == sizeof(void *) &&                        \
149             ((uintptr_t)&(var) & (sizeof(void *) - 1)) == 0, msg)
150
151 /*
152  * Assert that a thread is in critical(9) section.
153  */
154 #define CRITICAL_ASSERT(td)                                             \
155         KASSERT((td)->td_critnest >= 1, ("Not in critical section"));
156  
157 /*
158  * If we have already panic'd and this is the thread that called
159  * panic(), then don't block on any mutexes but silently succeed.
160  * Otherwise, the kernel will deadlock since the scheduler isn't
161  * going to run the thread that holds any lock we need.
162  */
163 #define SCHEDULER_STOPPED_TD(td)  ({                                    \
164         MPASS((td) == curthread);                                       \
165         __predict_false((td)->td_stopsched);                            \
166 })
167 #define SCHEDULER_STOPPED() SCHEDULER_STOPPED_TD(curthread)
168
169 /*
170  * Align variables.
171  */
172 #define __read_mostly           __section(".data.read_mostly")
173 #define __read_frequently       __section(".data.read_frequently")
174 #define __exclusive_cache_line  __aligned(CACHE_LINE_SIZE) \
175                                     __section(".data.exclusive_cache_line")
176 /*
177  * XXX the hints declarations are even more misplaced than most declarations
178  * in this file, since they are needed in one file (per arch) and only used
179  * in two files.
180  * XXX most of these variables should be const.
181  */
182 extern int osreldate;
183 extern bool dynamic_kenv;
184 extern struct mtx kenv_lock;
185 extern char *kern_envp;
186 extern char *md_envp;
187 extern char static_env[];
188 extern char static_hints[];     /* by config for now */
189
190 extern char **kenvp;
191
192 extern const void *zero_region; /* address space maps to a zeroed page  */
193
194 extern int unmapped_buf_allowed;
195
196 #ifdef __LP64__
197 #define IOSIZE_MAX              iosize_max()
198 #define DEVFS_IOSIZE_MAX        devfs_iosize_max()
199 #else
200 #define IOSIZE_MAX              SSIZE_MAX
201 #define DEVFS_IOSIZE_MAX        SSIZE_MAX
202 #endif
203
204 /*
205  * General function declarations.
206  */
207
208 struct inpcb;
209 struct lock_object;
210 struct malloc_type;
211 struct mtx;
212 struct proc;
213 struct socket;
214 struct thread;
215 struct tty;
216 struct ucred;
217 struct uio;
218 struct _jmp_buf;
219 struct trapframe;
220 struct eventtimer;
221
222 int     setjmp(struct _jmp_buf *) __returns_twice;
223 void    longjmp(struct _jmp_buf *, int) __dead2;
224 int     dumpstatus(vm_offset_t addr, off_t count);
225 int     nullop(void);
226 int     eopnotsupp(void);
227 int     ureadc(int, struct uio *);
228 void    hashdestroy(void *, struct malloc_type *, u_long);
229 void    *hashinit(int count, struct malloc_type *type, u_long *hashmask);
230 void    *hashinit_flags(int count, struct malloc_type *type,
231     u_long *hashmask, int flags);
232 #define HASH_NOWAIT     0x00000001
233 #define HASH_WAITOK     0x00000002
234
235 void    *phashinit(int count, struct malloc_type *type, u_long *nentries);
236 void    *phashinit_flags(int count, struct malloc_type *type, u_long *nentries,
237     int flags);
238 void    g_waitidle(void);
239
240 void    cpu_boot(int);
241 void    cpu_flush_dcache(void *, size_t);
242 void    cpu_rootconf(void);
243 void    critical_enter_KBI(void);
244 void    critical_exit_KBI(void);
245 void    critical_exit_preempt(void);
246 void    init_param1(void);
247 void    init_param2(long physpages);
248 void    init_static_kenv(char *, size_t);
249 void    tablefull(const char *);
250
251 /*
252  * Allocate per-thread "current" state in the linuxkpi
253  */
254 extern int (*lkpi_alloc_current)(struct thread *, int);
255 int linux_alloc_current_noop(struct thread *, int);
256
257
258 #if defined(KLD_MODULE) || defined(KTR_CRITICAL) || !defined(_KERNEL) || defined(GENOFFSET)
259 #define critical_enter() critical_enter_KBI()
260 #define critical_exit() critical_exit_KBI()
261 #else
262 static __inline void
263 critical_enter(void)
264 {
265         struct thread_lite *td;
266
267         td = (struct thread_lite *)curthread;
268         td->td_critnest++;
269         __compiler_membar();
270 }
271
272 static __inline void
273 critical_exit(void)
274 {
275         struct thread_lite *td;
276
277         td = (struct thread_lite *)curthread;
278         KASSERT(td->td_critnest != 0,
279             ("critical_exit: td_critnest == 0"));
280         __compiler_membar();
281         td->td_critnest--;
282         __compiler_membar();
283         if (__predict_false(td->td_owepreempt))
284                 critical_exit_preempt();
285
286 }
287 #endif
288
289
290 #ifdef  EARLY_PRINTF
291 typedef void early_putc_t(int ch);
292 extern early_putc_t *early_putc;
293 #endif
294 int     kvprintf(char const *, void (*)(int, void*), void *, int,
295             __va_list) __printflike(1, 0);
296 void    log(int, const char *, ...) __printflike(2, 3);
297 void    log_console(struct uio *);
298 void    vlog(int, const char *, __va_list) __printflike(2, 0);
299 int     asprintf(char **ret, struct malloc_type *mtp, const char *format, 
300             ...) __printflike(3, 4);
301 int     printf(const char *, ...) __printflike(1, 2);
302 int     snprintf(char *, size_t, const char *, ...) __printflike(3, 4);
303 int     sprintf(char *buf, const char *, ...) __printflike(2, 3);
304 int     uprintf(const char *, ...) __printflike(1, 2);
305 int     vprintf(const char *, __va_list) __printflike(1, 0);
306 int     vasprintf(char **ret, struct malloc_type *mtp, const char *format,
307             __va_list ap) __printflike(3, 0);
308 int     vsnprintf(char *, size_t, const char *, __va_list) __printflike(3, 0);
309 int     vsnrprintf(char *, size_t, int, const char *, __va_list) __printflike(4, 0);
310 int     vsprintf(char *buf, const char *, __va_list) __printflike(2, 0);
311 int     sscanf(const char *, char const * _Nonnull, ...) __scanflike(2, 3);
312 int     vsscanf(const char * _Nonnull, char const * _Nonnull, __va_list)  __scanflike(2, 0);
313 long    strtol(const char *, char **, int);
314 u_long  strtoul(const char *, char **, int);
315 quad_t  strtoq(const char *, char **, int);
316 u_quad_t strtouq(const char *, char **, int);
317 void    tprintf(struct proc *p, int pri, const char *, ...) __printflike(3, 4);
318 void    vtprintf(struct proc *, int, const char *, __va_list) __printflike(3, 0);
319 void    hexdump(const void *ptr, int length, const char *hdr, int flags);
320 #define HD_COLUMN_MASK  0xff
321 #define HD_DELIM_MASK   0xff00
322 #define HD_OMIT_COUNT   (1 << 16)
323 #define HD_OMIT_HEX     (1 << 17)
324 #define HD_OMIT_CHARS   (1 << 18)
325
326 #define ovbcopy(f, t, l) bcopy((f), (t), (l))
327 void    bcopy(const void * _Nonnull from, void * _Nonnull to, size_t len);
328 void    bzero(void * _Nonnull buf, size_t len);
329 void    explicit_bzero(void * _Nonnull, size_t);
330 int     bcmp(const void *b1, const void *b2, size_t len);
331
332 void    *memset(void * _Nonnull buf, int c, size_t len);
333 void    *memcpy(void * _Nonnull to, const void * _Nonnull from, size_t len);
334 void    *memmove(void * _Nonnull dest, const void * _Nonnull src, size_t n);
335 int     memcmp(const void *b1, const void *b2, size_t len);
336
337 #ifdef KCSAN
338 void    *kcsan_memset(void *, int, size_t);
339 void    *kcsan_memcpy(void *, const void *, size_t);
340 void    *kcsan_memmove(void *, const void *, size_t);
341 int     kcsan_memcmp(const void *, const void *, size_t);
342 #define bcopy(from, to, len) kcsan_memmove((to), (from), (len))
343 #define bzero(buf, len) kcsan_memset((buf), 0, (len))
344 #define bcmp(b1, b2, len) kcsan_memcmp((b1), (b2), (len))
345 #define memset(buf, c, len) kcsan_memset((buf), (c), (len))
346 #define memcpy(to, from, len) kcsan_memcpy((to), (from), (len))
347 #define memmove(dest, src, n) kcsan_memmove((dest), (src), (n))
348 #define memcmp(b1, b2, len) kcsan_memcmp((b1), (b2), (len))
349 #else
350 #define bcopy(from, to, len) __builtin_memmove((to), (from), (len))
351 #define bzero(buf, len) __builtin_memset((buf), 0, (len))
352 #define bcmp(b1, b2, len) __builtin_memcmp((b1), (b2), (len))
353 #define memset(buf, c, len) __builtin_memset((buf), (c), (len))
354 #define memcpy(to, from, len) __builtin_memcpy((to), (from), (len))
355 #define memmove(dest, src, n) __builtin_memmove((dest), (src), (n))
356 #define memcmp(b1, b2, len) __builtin_memcmp((b1), (b2), (len))
357 #endif
358
359 void    *memset_early(void * _Nonnull buf, int c, size_t len);
360 #define bzero_early(buf, len) memset_early((buf), 0, (len))
361 void    *memcpy_early(void * _Nonnull to, const void * _Nonnull from, size_t len);
362 void    *memmove_early(void * _Nonnull dest, const void * _Nonnull src, size_t n);
363 #define bcopy_early(from, to, len) memmove_early((to), (from), (len))
364
365 #define copystr(src, dst, len, outlen)  ({                      \
366         size_t __r, __len, *__outlen;                           \
367                                                                 \
368         __len = (len);                                          \
369         __outlen = (outlen);                                    \
370         __r = strlcpy((dst), (src), __len);                     \
371         if (__outlen != NULL)                                   \
372                 *__outlen = ((__r >= __len) ? __len : __r);     \
373         ((__r >= __len) ? ENAMETOOLONG : 0);                    \
374 })
375
376 int     copyinstr(const void * __restrict udaddr,
377             void * _Nonnull __restrict kaddr, size_t len,
378             size_t * __restrict lencopied);
379 int     copyin(const void * __restrict udaddr,
380             void * _Nonnull __restrict kaddr, size_t len);
381 int     copyin_nofault(const void * __restrict udaddr,
382             void * _Nonnull __restrict kaddr, size_t len);
383 int     copyout(const void * _Nonnull __restrict kaddr,
384             void * __restrict udaddr, size_t len);
385 int     copyout_nofault(const void * _Nonnull __restrict kaddr,
386             void * __restrict udaddr, size_t len);
387
388 #ifdef KCSAN
389 int     kcsan_copyin(const void *, void *, size_t);
390 int     kcsan_copyinstr(const void *, void *, size_t, size_t *);
391 int     kcsan_copyout(const void *, void *, size_t);
392 #define copyin(u, k, l) kcsan_copyin((u), (k), (l))
393 #define copyinstr(u, k, l, lc) kcsan_copyinstr((u), (k), (l), (lc))
394 #define copyout(k, u, l) kcsan_copyout((k), (u), (l))
395 #endif
396
397 int     fubyte(volatile const void *base);
398 long    fuword(volatile const void *base);
399 int     fuword16(volatile const void *base);
400 int32_t fuword32(volatile const void *base);
401 int64_t fuword64(volatile const void *base);
402 int     fueword(volatile const void *base, long *val);
403 int     fueword32(volatile const void *base, int32_t *val);
404 int     fueword64(volatile const void *base, int64_t *val);
405 int     subyte(volatile void *base, int byte);
406 int     suword(volatile void *base, long word);
407 int     suword16(volatile void *base, int word);
408 int     suword32(volatile void *base, int32_t word);
409 int     suword64(volatile void *base, int64_t word);
410 uint32_t casuword32(volatile uint32_t *base, uint32_t oldval, uint32_t newval);
411 u_long  casuword(volatile u_long *p, u_long oldval, u_long newval);
412 int     casueword32(volatile uint32_t *base, uint32_t oldval, uint32_t *oldvalp,
413             uint32_t newval);
414 int     casueword(volatile u_long *p, u_long oldval, u_long *oldvalp,
415             u_long newval);
416
417 void    realitexpire(void *);
418
419 int     sysbeep(int hertz, int period);
420
421 void    hardclock(int cnt, int usermode);
422 void    hardclock_sync(int cpu);
423 void    softclock(void *);
424 void    statclock(int cnt, int usermode);
425 void    profclock(int cnt, int usermode, uintfptr_t pc);
426
427 int     hardclockintr(void);
428
429 void    startprofclock(struct proc *);
430 void    stopprofclock(struct proc *);
431 void    cpu_startprofclock(void);
432 void    cpu_stopprofclock(void);
433 void    suspendclock(void);
434 void    resumeclock(void);
435 sbintime_t      cpu_idleclock(void);
436 void    cpu_activeclock(void);
437 void    cpu_new_callout(int cpu, sbintime_t bt, sbintime_t bt_opt);
438 void    cpu_et_frequency(struct eventtimer *et, uint64_t newfreq);
439 extern int      cpu_disable_c2_sleep;
440 extern int      cpu_disable_c3_sleep;
441
442 char    *kern_getenv(const char *name);
443 void    freeenv(char *env);
444 int     getenv_int(const char *name, int *data);
445 int     getenv_uint(const char *name, unsigned int *data);
446 int     getenv_long(const char *name, long *data);
447 int     getenv_ulong(const char *name, unsigned long *data);
448 int     getenv_string(const char *name, char *data, int size);
449 int     getenv_int64(const char *name, int64_t *data);
450 int     getenv_uint64(const char *name, uint64_t *data);
451 int     getenv_quad(const char *name, quad_t *data);
452 int     kern_setenv(const char *name, const char *value);
453 int     kern_unsetenv(const char *name);
454 int     testenv(const char *name);
455
456 int     getenv_array(const char *name, void *data, int size, int *psize,
457     int type_size, bool allow_signed);
458 #define GETENV_UNSIGNED false   /* negative numbers not allowed */
459 #define GETENV_SIGNED   true    /* negative numbers allowed */
460
461 typedef uint64_t (cpu_tick_f)(void);
462 void set_cputicker(cpu_tick_f *func, uint64_t freq, unsigned var);
463 extern cpu_tick_f *cpu_ticks;
464 uint64_t cpu_tickrate(void);
465 uint64_t cputick2usec(uint64_t tick);
466
467 #ifdef APM_FIXUP_CALLTODO
468 struct timeval;
469 void    adjust_timeout_calltodo(struct timeval *time_change);
470 #endif /* APM_FIXUP_CALLTODO */
471
472 #include <sys/libkern.h>
473
474 /* Initialize the world */
475 void    consinit(void);
476 void    cpu_initclocks(void);
477 void    cpu_initclocks_bsp(void);
478 void    cpu_initclocks_ap(void);
479 void    usrinfoinit(void);
480
481 /* Finalize the world */
482 void    kern_reboot(int) __dead2;
483 void    shutdown_nice(int);
484
485 /* Stubs for obsolete functions that used to be for interrupt management */
486 static __inline intrmask_t      splbio(void)            { return 0; }
487 static __inline intrmask_t      splcam(void)            { return 0; }
488 static __inline intrmask_t      splclock(void)          { return 0; }
489 static __inline intrmask_t      splhigh(void)           { return 0; }
490 static __inline intrmask_t      splimp(void)            { return 0; }
491 static __inline intrmask_t      splnet(void)            { return 0; }
492 static __inline intrmask_t      spltty(void)            { return 0; }
493 static __inline void            splx(intrmask_t ipl __unused)   { return; }
494
495 /*
496  * Common `proc' functions are declared here so that proc.h can be included
497  * less often.
498  */
499 int     _sleep(const void * _Nonnull chan, struct lock_object *lock, int pri,
500            const char *wmesg, sbintime_t sbt, sbintime_t pr, int flags);
501 #define msleep(chan, mtx, pri, wmesg, timo)                             \
502         _sleep((chan), &(mtx)->lock_object, (pri), (wmesg),             \
503             tick_sbt * (timo), 0, C_HARDCLOCK)
504 #define msleep_sbt(chan, mtx, pri, wmesg, bt, pr, flags)                \
505         _sleep((chan), &(mtx)->lock_object, (pri), (wmesg), (bt), (pr), \
506             (flags))
507 int     msleep_spin_sbt(const void * _Nonnull chan, struct mtx *mtx,
508             const char *wmesg, sbintime_t sbt, sbintime_t pr, int flags);
509 #define msleep_spin(chan, mtx, wmesg, timo)                             \
510         msleep_spin_sbt((chan), (mtx), (wmesg), tick_sbt * (timo),      \
511             0, C_HARDCLOCK)
512 int     pause_sbt(const char *wmesg, sbintime_t sbt, sbintime_t pr,
513             int flags);
514 #define pause(wmesg, timo)                                              \
515         pause_sbt((wmesg), tick_sbt * (timo), 0, C_HARDCLOCK)
516 #define pause_sig(wmesg, timo)                                          \
517         pause_sbt((wmesg), tick_sbt * (timo), 0, C_HARDCLOCK | C_CATCH)
518 #define tsleep(chan, pri, wmesg, timo)                                  \
519         _sleep((chan), NULL, (pri), (wmesg), tick_sbt * (timo),         \
520             0, C_HARDCLOCK)
521 #define tsleep_sbt(chan, pri, wmesg, bt, pr, flags)                     \
522         _sleep((chan), NULL, (pri), (wmesg), (bt), (pr), (flags))
523 void    wakeup(const void *chan);
524 void    wakeup_one(const void *chan);
525 void    wakeup_any(const void *chan);
526
527 /*
528  * Common `struct cdev *' stuff are declared here to avoid #include poisoning
529  */
530
531 struct cdev;
532 dev_t dev2udev(struct cdev *x);
533 const char *devtoname(struct cdev *cdev);
534
535 #ifdef __LP64__
536 size_t  devfs_iosize_max(void);
537 size_t  iosize_max(void);
538 #endif
539
540 int poll_no_poll(int events);
541
542 /* XXX: Should be void nanodelay(u_int nsec); */
543 void    DELAY(int usec);
544
545 /* Root mount holdback API */
546 struct root_hold_token {
547         int                             flags;
548         const char                      *who;
549         TAILQ_ENTRY(root_hold_token)    list;
550 };
551
552 struct root_hold_token *root_mount_hold(const char *identifier);
553 void root_mount_hold_token(const char *identifier, struct root_hold_token *h);
554 void root_mount_rel(struct root_hold_token *h);
555 int root_mounted(void);
556
557
558 /*
559  * Unit number allocation API. (kern/subr_unit.c)
560  */
561 struct unrhdr;
562 struct unrhdr *new_unrhdr(int low, int high, struct mtx *mutex);
563 void init_unrhdr(struct unrhdr *uh, int low, int high, struct mtx *mutex);
564 void delete_unrhdr(struct unrhdr *uh);
565 void clear_unrhdr(struct unrhdr *uh);
566 void clean_unrhdr(struct unrhdr *uh);
567 void clean_unrhdrl(struct unrhdr *uh);
568 int alloc_unr(struct unrhdr *uh);
569 int alloc_unr_specific(struct unrhdr *uh, u_int item);
570 int alloc_unrl(struct unrhdr *uh);
571 void free_unr(struct unrhdr *uh, u_int item);
572
573 #ifndef __LP64__
574 #define UNR64_LOCKED
575 #endif
576
577 struct unrhdr64 {
578         uint64_t        counter;
579 };
580
581 static __inline void
582 new_unrhdr64(struct unrhdr64 *unr64, uint64_t low)
583 {
584
585         unr64->counter = low;
586 }
587
588 #ifdef UNR64_LOCKED
589 uint64_t alloc_unr64(struct unrhdr64 *);
590 #else
591 static __inline uint64_t
592 alloc_unr64(struct unrhdr64 *unr64)
593 {
594
595         return (atomic_fetchadd_64(&unr64->counter, 1));
596 }
597 #endif
598
599 void    intr_prof_stack_use(struct thread *td, struct trapframe *frame);
600
601 void counted_warning(unsigned *counter, const char *msg);
602
603 /*
604  * APIs to manage deprecation and obsolescence.
605  */
606 struct device;
607 void _gone_in(int major, const char *msg);
608 void _gone_in_dev(struct device *dev, int major, const char *msg);
609 #ifdef NO_OBSOLETE_CODE
610 #define __gone_ok(m, msg)                                        \
611         _Static_assert(m < P_OSREL_MAJOR(__FreeBSD_version)),    \
612             "Obsolete code: " msg);
613 #else
614 #define __gone_ok(m, msg)
615 #endif
616 #define gone_in(major, msg)             __gone_ok(major, msg) _gone_in(major, msg)
617 #define gone_in_dev(dev, major, msg)    __gone_ok(major, msg) _gone_in_dev(dev, major, msg)
618
619 __NULLABILITY_PRAGMA_POP
620
621 #endif /* !_SYS_SYSTM_H_ */