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