]> git.proxmox.com Git - mirror_zfs.git/blame - include/sys/zfs_context.h
Fix NULL deref in balance_pgdat()
[mirror_zfs.git] / include / sys / zfs_context.h
CommitLineData
77755a57
BB
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21/*
6283f55e
BB
22 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
77755a57
BB
24 */
25
26#ifndef _SYS_ZFS_CONTEXT_H
27#define _SYS_ZFS_CONTEXT_H
28
e37e1d30 29#ifdef __KERNEL__
6283f55e
BB
30
31#include <sys/note.h>
32#include <sys/types.h>
33#include <sys/t_lock.h>
34#include <sys/atomic.h>
35#include <sys/sysmacros.h>
36#include <sys/bitmap.h>
37#include <sys/cmn_err.h>
38#include <sys/kmem.h>
39#include <sys/taskq.h>
40#include <sys/buf.h>
41#include <sys/param.h>
42#include <sys/systm.h>
43#include <sys/cpuvar.h>
44#include <sys/kobj.h>
45#include <sys/conf.h>
46#include <sys/disp.h>
47#include <sys/debug.h>
48#include <sys/random.h>
49#include <sys/byteorder.h>
50#include <sys/systm.h>
51#include <sys/list.h>
590329b5 52#include <sys/uio_impl.h>
6283f55e
BB
53#include <sys/dirent.h>
54#include <sys/time.h>
55#include <vm/seg_kmem.h>
56#include <sys/zone.h>
6283f55e
BB
57#include <sys/zfs_debug.h>
58#include <sys/fm/fs/zfs.h>
59#include <sys/sunddi.h>
8299a1f4 60#include <linux/dcache_compat.h>
6283f55e
BB
61
62#else /* _KERNEL */
77755a57
BB
63
64#define _SYS_MUTEX_H
65#define _SYS_RWLOCK_H
66#define _SYS_CONDVAR_H
67#define _SYS_SYSTM_H
68#define _SYS_DEBUG_H
69#define _SYS_T_LOCK_H
70#define _SYS_VNODE_H
71#define _SYS_VFS_H
72#define _SYS_SUNDDI_H
73#define _SYS_CALLB_H
74
75#include <stdio.h>
76#include <stdlib.h>
77#include <stddef.h>
78#include <stdarg.h>
79#include <fcntl.h>
80#include <unistd.h>
81#include <errno.h>
82#include <string.h>
83#include <strings.h>
1e33ac1e 84#include <pthread.h>
77755a57
BB
85#include <assert.h>
86#include <alloca.h>
87#include <umem.h>
88#include <limits.h>
89#include <atomic.h>
90#include <dirent.h>
91#include <time.h>
92#include <sys/note.h>
93#include <sys/types.h>
94#include <sys/cred.h>
95#include <sys/sysmacros.h>
96#include <sys/bitmap.h>
97#include <sys/resource.h>
98#include <sys/byteorder.h>
99#include <sys/list.h>
100#include <sys/uio.h>
101#include <sys/zfs_debug.h>
102#include <sys/sdt.h>
103#include <sys/kstat.h>
104#include <sys/u8_textprep.h>
26685276 105#include <sys/fm/fs/zfs.h>
428870ff 106#include <sys/sunddi.h>
77755a57 107
60948de1
BB
108/*
109 * Stack
110 */
111
112#define noinline __attribute__((noinline))
113
77755a57
BB
114/*
115 * Debugging
116 */
117
118/*
119 * Note that we are not using the debugging levels.
120 */
121
122#define CE_CONT 0 /* continuation */
123#define CE_NOTE 1 /* notice */
124#define CE_WARN 2 /* warning */
125#define CE_PANIC 3 /* panic */
126#define CE_IGNORE 4 /* print nothing */
127
1e33ac1e
BB
128extern int aok;
129
77755a57
BB
130/*
131 * ZFS debugging
132 */
133
134#ifdef ZFS_DEBUG
135extern void dprintf_setup(int *argc, char **argv);
136#endif /* ZFS_DEBUG */
137
138extern void cmn_err(int, const char *, ...);
139extern void vcmn_err(int, const char *, __va_list);
140extern void panic(const char *, ...);
141extern void vpanic(const char *, __va_list);
142
143#define fm_panic panic
144
77755a57
BB
145/*
146 * DTrace SDT probes have different signatures in userland than they do in
147 * kernel. If they're being used in kernel code, re-define them out of
148 * existence for their counterparts in libzpool.
149 */
150
151#ifdef DTRACE_PROBE
152#undef DTRACE_PROBE
153#define DTRACE_PROBE(a) ((void)0)
154#endif /* DTRACE_PROBE */
155
156#ifdef DTRACE_PROBE1
157#undef DTRACE_PROBE1
158#define DTRACE_PROBE1(a, b, c) ((void)0)
159#endif /* DTRACE_PROBE1 */
160
161#ifdef DTRACE_PROBE2
162#undef DTRACE_PROBE2
163#define DTRACE_PROBE2(a, b, c, d, e) ((void)0)
164#endif /* DTRACE_PROBE2 */
165
166#ifdef DTRACE_PROBE3
167#undef DTRACE_PROBE3
168#define DTRACE_PROBE3(a, b, c, d, e, f, g) ((void)0)
169#endif /* DTRACE_PROBE3 */
170
171#ifdef DTRACE_PROBE4
172#undef DTRACE_PROBE4
173#define DTRACE_PROBE4(a, b, c, d, e, f, g, h, i) ((void)0)
174#endif /* DTRACE_PROBE4 */
175
176/*
177 * Threads
178 */
1e33ac1e
BB
179#define TS_MAGIC 0x72f158ab4261e538ull
180#define TS_RUN 0x00000002
181#ifdef __linux__
182#define STACK_SIZE 8192 /* Linux x86 and amd64 */
183#else
184#define STACK_SIZE 24576 /* Solaris */
185#endif
428870ff 186
1e33ac1e
BB
187#ifdef NPTL_GUARD_WITHIN_STACK
188#define EXTRA_GUARD_BYTES PAGESIZE
189#else
190#define EXTRA_GUARD_BYTES 0
191#endif
428870ff
BB
192
193/* in libzpool, p0 exists only to have its address taken */
1e33ac1e 194typedef struct proc {
428870ff 195 uintptr_t this_is_never_used_dont_dereference_it;
1e33ac1e 196} proc_t;
428870ff
BB
197
198extern struct proc p0;
199
1e33ac1e
BB
200typedef void (*thread_func_t)(void *);
201typedef void (*thread_func_arg_t)(void *);
202typedef pthread_t kt_did_t;
203
204typedef struct kthread {
205 kt_did_t t_tid;
206 thread_func_t t_func;
207 void * t_arg;
208} kthread_t;
77755a57 209
1e33ac1e
BB
210#define tsd_get(key) pthread_getspecific(key)
211#define tsd_set(key, val) pthread_setspecific(key, val)
212#define curthread zk_thread_current()
213#define thread_exit zk_thread_exit
214#define thread_create(stk, stksize, func, arg, len, pp, state, pri) \
215 zk_thread_create(stk, stksize, (thread_func_t)func, arg, \
216 len, NULL, state, pri)
217#define thread_join(t) zk_thread_join(t)
218#define newproc(f,a,cid,pri,ctp,pid) (ENOSYS)
219
220extern kthread_t *zk_thread_current(void);
221extern void zk_thread_exit(void);
222extern kthread_t *zk_thread_create(caddr_t stk, size_t stksize,
223 thread_func_t func, void *arg, size_t len,
224 proc_t *pp, int state, pri_t pri);
225extern void zk_thread_join(kt_did_t tid);
226
227#define PS_NONE -1
77755a57
BB
228
229#define issig(why) (FALSE)
230#define ISSIG(thr, why) (FALSE)
231
232/*
233 * Mutexes
234 */
1e33ac1e
BB
235#define MTX_MAGIC 0x9522f51362a6e326ull
236#define MTX_INIT ((void *)NULL)
237#define MTX_DEST ((void *)-1UL)
238
77755a57
BB
239typedef struct kmutex {
240 void *m_owner;
1e33ac1e
BB
241 uint64_t m_magic;
242 pthread_mutex_t m_lock;
77755a57
BB
243} kmutex_t;
244
1e33ac1e
BB
245#define MUTEX_DEFAULT 0
246#define MUTEX_HELD(m) ((m)->m_owner == curthread)
572e2857 247#define MUTEX_NOT_HELD(m) (!MUTEX_HELD(m))
77755a57 248
1e33ac1e
BB
249extern void mutex_init(kmutex_t *mp, char *name, int type, void *cookie);
250extern void mutex_destroy(kmutex_t *mp);
77755a57
BB
251extern void mutex_enter(kmutex_t *mp);
252extern void mutex_exit(kmutex_t *mp);
253extern int mutex_tryenter(kmutex_t *mp);
254extern void *mutex_owner(kmutex_t *mp);
1e33ac1e 255extern int mutex_held(kmutex_t *mp);
77755a57
BB
256
257/*
258 * RW locks
259 */
1e33ac1e
BB
260#define RW_MAGIC 0x4d31fb123648e78aull
261#define RW_INIT ((void *)NULL)
262#define RW_DEST ((void *)-1UL)
263
77755a57 264typedef struct krwlock {
1e33ac1e
BB
265 void *rw_owner;
266 void *rw_wr_owner;
267 uint64_t rw_magic;
268 pthread_rwlock_t rw_lock;
269 uint_t rw_readers;
77755a57
BB
270} krwlock_t;
271
272typedef int krw_t;
273
274#define RW_READER 0
275#define RW_WRITER 1
1e33ac1e 276#define RW_DEFAULT RW_READER
77755a57 277
1e33ac1e
BB
278#define RW_READ_HELD(x) ((x)->rw_readers > 0)
279#define RW_WRITE_HELD(x) ((x)->rw_wr_owner == curthread)
280#define RW_LOCK_HELD(x) (RW_READ_HELD(x) || RW_WRITE_HELD(x))
77755a57
BB
281
282extern void rw_init(krwlock_t *rwlp, char *name, int type, void *arg);
283extern void rw_destroy(krwlock_t *rwlp);
284extern void rw_enter(krwlock_t *rwlp, krw_t rw);
285extern int rw_tryenter(krwlock_t *rwlp, krw_t rw);
286extern int rw_tryupgrade(krwlock_t *rwlp);
287extern void rw_exit(krwlock_t *rwlp);
288#define rw_downgrade(rwlp) do { } while (0)
289
290extern uid_t crgetuid(cred_t *cr);
291extern gid_t crgetgid(cred_t *cr);
292extern int crgetngroups(cred_t *cr);
293extern gid_t *crgetgroups(cred_t *cr);
294
295/*
296 * Condition variables
297 */
1e33ac1e
BB
298#define CV_MAGIC 0xd31ea9a83b1b30c4ull
299
300typedef struct kcondvar {
301 uint64_t cv_magic;
302 pthread_cond_t cv;
303} kcondvar_t;
77755a57 304
1e33ac1e 305#define CV_DEFAULT 0
77755a57
BB
306
307extern void cv_init(kcondvar_t *cv, char *name, int type, void *arg);
308extern void cv_destroy(kcondvar_t *cv);
309extern void cv_wait(kcondvar_t *cv, kmutex_t *mp);
310extern clock_t cv_timedwait(kcondvar_t *cv, kmutex_t *mp, clock_t abstime);
311extern void cv_signal(kcondvar_t *cv);
312extern void cv_broadcast(kcondvar_t *cv);
e88b041e
BB
313#define cv_timedwait_interruptible(cv, mp, at) cv_timedwait(cv, mp, at)
314#define cv_wait_interruptible(cv, mp) cv_wait(cv, mp)
77755a57
BB
315
316/*
317 * kstat creation, installation and deletion
318 */
319extern kstat_t *kstat_create(char *, int,
320 char *, char *, uchar_t, ulong_t, uchar_t);
321extern void kstat_install(kstat_t *);
322extern void kstat_delete(kstat_t *);
323
324/*
325 * Kernel memory
326 */
327#define KM_SLEEP UMEM_NOFAIL
328#define KM_PUSHPAGE KM_SLEEP
329#define KM_NOSLEEP UMEM_DEFAULT
00b46022 330#define KM_NODEBUG 0x0
77755a57
BB
331#define KMC_NODEBUG UMC_NODEBUG
332#define kmem_alloc(_s, _f) umem_alloc(_s, _f)
333#define kmem_zalloc(_s, _f) umem_zalloc(_s, _f)
334#define kmem_free(_b, _s) umem_free(_b, _s)
00b46022
BB
335#define vmem_alloc(_s, _f) kmem_alloc(_s, _f)
336#define vmem_zalloc(_s, _f) kmem_zalloc(_s, _f)
337#define vmem_free(_b, _s) kmem_free(_b, _s)
77755a57
BB
338#define kmem_cache_create(_a, _b, _c, _d, _e, _f, _g, _h, _i) \
339 umem_cache_create(_a, _b, _c, _d, _e, _f, _g, _h, _i)
340#define kmem_cache_destroy(_c) umem_cache_destroy(_c)
341#define kmem_cache_alloc(_c, _f) umem_cache_alloc(_c, _f)
342#define kmem_cache_free(_c, _b) umem_cache_free(_c, _b)
343#define kmem_debugging() 0
572e2857
BB
344#define kmem_cache_reap_now(_c) /* nothing */
345#define kmem_cache_set_move(_c, _cb) /* nothing */
346#define POINTER_INVALIDATE(_pp) /* nothing */
347#define POINTER_IS_VALID(_p) 0
77755a57
BB
348
349typedef umem_cache_t kmem_cache_t;
350
572e2857
BB
351typedef enum kmem_cbrc {
352 KMEM_CBRC_YES,
353 KMEM_CBRC_NO,
354 KMEM_CBRC_LATER,
355 KMEM_CBRC_DONT_NEED,
356 KMEM_CBRC_DONT_KNOW
357} kmem_cbrc_t;
358
77755a57
BB
359/*
360 * Task queues
361 */
362typedef struct taskq taskq_t;
363typedef uintptr_t taskqid_t;
364typedef void (task_func_t)(void *);
365
366#define TASKQ_PREPOPULATE 0x0001
367#define TASKQ_CPR_SAFE 0x0002 /* Use CPR safe protocol */
368#define TASKQ_DYNAMIC 0x0004 /* Use dynamic thread scheduling */
428870ff
BB
369#define TASKQ_THREADS_CPU_PCT 0x0008 /* Scale # threads by # cpus */
370#define TASKQ_DC_BATCH 0x0010 /* Mark threads as batch */
21ade347 371#define TASKQ_NORECLAIM 0x0020 /* Disable direct memory reclaim */
77755a57
BB
372
373#define TQ_SLEEP KM_SLEEP /* Can block for memory */
374#define TQ_NOSLEEP KM_NOSLEEP /* cannot block for memory; may fail */
428870ff
BB
375#define TQ_NOQUEUE 0x02 /* Do not enqueue if can't dispatch */
376#define TQ_FRONT 0x08 /* Queue in front */
77755a57
BB
377
378extern taskq_t *system_taskq;
379
380extern taskq_t *taskq_create(const char *, int, pri_t, int, int, uint_t);
428870ff
BB
381#define taskq_create_proc(a, b, c, d, e, p, f) \
382 (taskq_create(a, b, c, d, e, f))
383#define taskq_create_sysdc(a, b, d, e, p, dc, f) \
384 (taskq_create(a, b, maxclsyspri, d, e, f))
77755a57
BB
385extern taskqid_t taskq_dispatch(taskq_t *, task_func_t, void *, uint_t);
386extern void taskq_destroy(taskq_t *);
387extern void taskq_wait(taskq_t *);
1e33ac1e 388extern int taskq_member(taskq_t *, kthread_t *);
77755a57 389extern void system_taskq_init(void);
428870ff 390extern void system_taskq_fini(void);
77755a57
BB
391
392#define XVA_MAPSIZE 3
393#define XVA_MAGIC 0x78766174
394
395/*
396 * vnodes
397 */
398typedef struct vnode {
399 uint64_t v_size;
400 int v_fd;
401 char *v_path;
402} vnode_t;
403
428870ff 404#define AV_SCANSTAMP_SZ 32 /* length of anti-virus scanstamp */
77755a57
BB
405
406typedef struct xoptattr {
407 timestruc_t xoa_createtime; /* Create time of file */
408 uint8_t xoa_archive;
409 uint8_t xoa_system;
410 uint8_t xoa_readonly;
411 uint8_t xoa_hidden;
412 uint8_t xoa_nounlink;
413 uint8_t xoa_immutable;
414 uint8_t xoa_appendonly;
415 uint8_t xoa_nodump;
416 uint8_t xoa_settable;
417 uint8_t xoa_opaque;
418 uint8_t xoa_av_quarantined;
419 uint8_t xoa_av_modified;
428870ff
BB
420 uint8_t xoa_av_scanstamp[AV_SCANSTAMP_SZ];
421 uint8_t xoa_reparse;
572e2857
BB
422 uint8_t xoa_offline;
423 uint8_t xoa_sparse;
77755a57
BB
424} xoptattr_t;
425
426typedef struct vattr {
427 uint_t va_mask; /* bit-mask of attributes */
428 u_offset_t va_size; /* file size in bytes */
429} vattr_t;
430
431
432typedef struct xvattr {
433 vattr_t xva_vattr; /* Embedded vattr structure */
434 uint32_t xva_magic; /* Magic Number */
435 uint32_t xva_mapsize; /* Size of attr bitmap (32-bit words) */
436 uint32_t *xva_rtnattrmapp; /* Ptr to xva_rtnattrmap[] */
437 uint32_t xva_reqattrmap[XVA_MAPSIZE]; /* Requested attrs */
438 uint32_t xva_rtnattrmap[XVA_MAPSIZE]; /* Returned attrs */
439 xoptattr_t xva_xoptattrs; /* Optional attributes */
440} xvattr_t;
441
442typedef struct vsecattr {
443 uint_t vsa_mask; /* See below */
444 int vsa_aclcnt; /* ACL entry count */
445 void *vsa_aclentp; /* pointer to ACL entries */
446 int vsa_dfaclcnt; /* default ACL entry count */
447 void *vsa_dfaclentp; /* pointer to default ACL entries */
448 size_t vsa_aclentsz; /* ACE size in bytes of vsa_aclentp */
449} vsecattr_t;
450
451#define AT_TYPE 0x00001
452#define AT_MODE 0x00002
453#define AT_UID 0x00004
454#define AT_GID 0x00008
455#define AT_FSID 0x00010
456#define AT_NODEID 0x00020
457#define AT_NLINK 0x00040
458#define AT_SIZE 0x00080
459#define AT_ATIME 0x00100
460#define AT_MTIME 0x00200
461#define AT_CTIME 0x00400
462#define AT_RDEV 0x00800
463#define AT_BLKSIZE 0x01000
464#define AT_NBLOCKS 0x02000
465#define AT_SEQ 0x08000
466#define AT_XVATTR 0x10000
467
468#define CRCREAT 0
469
428870ff
BB
470extern int fop_getattr(vnode_t *vp, vattr_t *vap);
471
77755a57
BB
472#define VOP_CLOSE(vp, f, c, o, cr, ct) 0
473#define VOP_PUTPAGE(vp, of, sz, fl, cr, ct) 0
428870ff 474#define VOP_GETATTR(vp, vap, fl, cr, ct) fop_getattr((vp), (vap));
77755a57
BB
475
476#define VOP_FSYNC(vp, f, cr, ct) fsync((vp)->v_fd)
477
478#define VN_RELE(vp) vn_close(vp)
479
480extern int vn_open(char *path, int x1, int oflags, int mode, vnode_t **vpp,
481 int x2, int x3);
482extern int vn_openat(char *path, int x1, int oflags, int mode, vnode_t **vpp,
483 int x2, int x3, vnode_t *vp, int fd);
484extern int vn_rdwr(int uio, vnode_t *vp, void *addr, ssize_t len,
485 offset_t offset, int x1, int x2, rlim64_t x3, void *x4, ssize_t *residp);
486extern void vn_close(vnode_t *vp);
487
488#define vn_remove(path, x1, x2) remove(path)
489#define vn_rename(from, to, seg) rename((from), (to))
490#define vn_is_readonly(vp) B_FALSE
491
492extern vnode_t *rootdir;
493
494#include <sys/file.h> /* for FREAD, FWRITE, etc */
495
496/*
497 * Random stuff
498 */
428870ff
BB
499#define ddi_get_lbolt() (gethrtime() >> 23)
500#define ddi_get_lbolt64() (gethrtime() >> 23)
77755a57
BB
501#define hz 119 /* frequency when using gethrtime() >> 23 for lbolt */
502
503extern void delay(clock_t ticks);
504
505#define gethrestime_sec() time(NULL)
428870ff
BB
506#define gethrestime(t) \
507 do {\
508 (t)->tv_sec = gethrestime_sec();\
509 (t)->tv_nsec = 0;\
510 } while (0);
77755a57
BB
511
512#define max_ncpus 64
513
514#define minclsyspri 60
515#define maxclsyspri 99
516
1e33ac1e 517#define CPU_SEQID (pthread_self() & (max_ncpus - 1))
77755a57
BB
518
519#define kcred NULL
520#define CRED() NULL
521
522#define ptob(x) ((x) * PAGESIZE)
523
524extern uint64_t physmem;
525
526extern int highbit(ulong_t i);
527extern int random_get_bytes(uint8_t *ptr, size_t len);
528extern int random_get_pseudo_bytes(uint8_t *ptr, size_t len);
529
530extern void kernel_init(int);
531extern void kernel_fini(void);
532
533struct spa;
534extern void nicenum(uint64_t num, char *buf);
535extern void show_pool_stats(struct spa *);
536
537typedef struct callb_cpr {
538 kmutex_t *cc_lockp;
539} callb_cpr_t;
540
541#define CALLB_CPR_INIT(cp, lockp, func, name) { \
542 (cp)->cc_lockp = lockp; \
543}
544
545#define CALLB_CPR_SAFE_BEGIN(cp) { \
546 ASSERT(MUTEX_HELD((cp)->cc_lockp)); \
547}
548
549#define CALLB_CPR_SAFE_END(cp, lockp) { \
550 ASSERT(MUTEX_HELD((cp)->cc_lockp)); \
551}
552
553#define CALLB_CPR_EXIT(cp) { \
554 ASSERT(MUTEX_HELD((cp)->cc_lockp)); \
555 mutex_exit((cp)->cc_lockp); \
556}
557
558#define zone_dataset_visible(x, y) (1)
559#define INGLOBALZONE(z) (1)
560
00b46022 561extern char *kmem_vasprintf(const char *fmt, va_list adx);
428870ff
BB
562extern char *kmem_asprintf(const char *fmt, ...);
563#define strfree(str) kmem_free((str), strlen(str)+1)
564
77755a57
BB
565/*
566 * Hostname information
567 */
d164b209 568extern char hw_serial[]; /* for userland-emulated hostid access */
77755a57
BB
569extern int ddi_strtoul(const char *str, char **nptr, int base,
570 unsigned long *result);
571
428870ff
BB
572extern int ddi_strtoull(const char *str, char **nptr, int base,
573 u_longlong_t *result);
574
77755a57
BB
575/* ZFS Boot Related stuff. */
576
577struct _buf {
578 intptr_t _fd;
579};
580
581struct bootstat {
582 uint64_t st_size;
583};
584
585typedef struct ace_object {
586 uid_t a_who;
587 uint32_t a_access_mask;
588 uint16_t a_flags;
589 uint16_t a_type;
590 uint8_t a_obj_type[16];
591 uint8_t a_inherit_obj_type[16];
592} ace_object_t;
593
594
595#define ACE_ACCESS_ALLOWED_OBJECT_ACE_TYPE 0x05
596#define ACE_ACCESS_DENIED_OBJECT_ACE_TYPE 0x06
597#define ACE_SYSTEM_AUDIT_OBJECT_ACE_TYPE 0x07
598#define ACE_SYSTEM_ALARM_OBJECT_ACE_TYPE 0x08
599
600extern struct _buf *kobj_open_file(char *name);
601extern int kobj_read_file(struct _buf *file, char *buf, unsigned size,
602 unsigned off);
603extern void kobj_close_file(struct _buf *file);
604extern int kobj_get_filesize(struct _buf *file, uint64_t *size);
605extern int zfs_secpolicy_snapshot_perms(const char *name, cred_t *cr);
606extern int zfs_secpolicy_rename_perms(const char *from, const char *to,
607 cred_t *cr);
608extern int zfs_secpolicy_destroy_perms(const char *name, cred_t *cr);
609extern zoneid_t getzoneid(void);
610
611/* SID stuff */
612typedef struct ksiddomain {
613 uint_t kd_ref;
614 uint_t kd_len;
615 char *kd_name;
616} ksiddomain_t;
617
618ksiddomain_t *ksid_lookupdomain(const char *);
619void ksiddomain_rele(ksiddomain_t *);
620
9babb374
BB
621#define DDI_SLEEP KM_SLEEP
622#define ddi_log_sysevent(_a, _b, _c, _d, _e, _f, _g) \
623 sysevent_post_event(_c, _d, _b, "libzpool", _e, _f)
624
6283f55e 625#endif /* _KERNEL */
77755a57
BB
626
627#endif /* _SYS_ZFS_CONTEXT_H */