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