]> git.proxmox.com Git - mirror_zfs.git/blame - include/sys/zfs_ioctl.h
RHEL 7.5 compat: FMODE_KABI_ITERATE
[mirror_zfs.git] / include / sys / zfs_ioctl.h
CommitLineData
34dc7c2f
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/*
572e2857 22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
8d103d88 23 * Copyright (c) 2012, 2017 by Delphix. All rights reserved.
b607405f 24 * Copyright 2016 RackTop Systems.
0241e491 25 * Copyright (c) 2017, Intel Corporation.
34dc7c2f
BB
26 */
27
28#ifndef _SYS_ZFS_IOCTL_H
29#define _SYS_ZFS_IOCTL_H
30
34dc7c2f
BB
31#include <sys/cred.h>
32#include <sys/dmu.h>
33#include <sys/zio.h>
34#include <sys/dsl_deleg.h>
428870ff 35#include <sys/spa.h>
572e2857 36#include <sys/zfs_stat.h>
34dc7c2f
BB
37
38#ifdef _KERNEL
39#include <sys/nvpair.h>
40#endif /* _KERNEL */
41
42#ifdef __cplusplus
43extern "C" {
44#endif
45
6f1ffb06
MA
46/*
47 * The structures in this file are passed between userland and the
48 * kernel. Userland may be running a 32-bit process, while the kernel
49 * is 64-bit. Therefore, these structures need to compile the same in
50 * 32-bit and 64-bit. This means not using type "long", and adding
51 * explicit padding so that the 32-bit structure will not be packed more
52 * tightly than the 64-bit structure (which requires 64-bit alignment).
53 */
54
34dc7c2f
BB
55/*
56 * Property values for snapdir
57 */
58#define ZFS_SNAPDIR_HIDDEN 0
59#define ZFS_SNAPDIR_VISIBLE 1
60
0b4d1b58
ED
61/*
62 * Property values for snapdev
63 */
64#define ZFS_SNAPDEV_HIDDEN 0
65#define ZFS_SNAPDEV_VISIBLE 1
023699cd
MM
66/*
67 * Property values for acltype
68 */
69#define ZFS_ACLTYPE_OFF 0
70#define ZFS_ACLTYPE_POSIXACL 1
0b4d1b58 71
428870ff
BB
72/*
73 * Field manipulation macros for the drr_versioninfo field of the
74 * send stream header.
75 */
76
77/*
78 * Header types for zfs send streams.
79 */
80typedef enum drr_headertype {
81 DMU_SUBSTREAM = 0x1,
82 DMU_COMPOUNDSTREAM = 0x2
83} drr_headertype_t;
84
85#define DMU_GET_STREAM_HDRTYPE(vi) BF64_GET((vi), 0, 2)
86#define DMU_SET_STREAM_HDRTYPE(vi, x) BF64_SET((vi), 0, 2, x)
87
88#define DMU_GET_FEATUREFLAGS(vi) BF64_GET((vi), 2, 30)
89#define DMU_SET_FEATUREFLAGS(vi, x) BF64_SET((vi), 2, 30, x)
90
91/*
92 * Feature flags for zfs send streams (flags in drr_versioninfo)
93 */
94
47dfff3b
MA
95#define DMU_BACKUP_FEATURE_DEDUP (1 << 0)
96#define DMU_BACKUP_FEATURE_DEDUPPROPS (1 << 1)
97#define DMU_BACKUP_FEATURE_SA_SPILL (1 << 2)
9b67f605 98/* flags #3 - #15 are reserved for incompatible closed-source implementations */
47dfff3b 99#define DMU_BACKUP_FEATURE_EMBED_DATA (1 << 16)
2aa34383 100#define DMU_BACKUP_FEATURE_LZ4 (1 << 17)
f1512ee6 101/* flag #18 is reserved for a Delphix feature */
47dfff3b
MA
102#define DMU_BACKUP_FEATURE_LARGE_BLOCKS (1 << 19)
103#define DMU_BACKUP_FEATURE_RESUMING (1 << 20)
a9f0d7dd 104/* flag #21 is reserved for a Delphix feature */
2aa34383 105#define DMU_BACKUP_FEATURE_COMPRESSED (1 << 22)
a9f0d7dd 106#define DMU_BACKUP_FEATURE_LARGE_DNODE (1 << 23)
b5256303 107#define DMU_BACKUP_FEATURE_RAW (1 << 24)
428870ff
BB
108
109/*
110 * Mask of all supported backup features
111 */
112#define DMU_BACKUP_FEATURE_MASK (DMU_BACKUP_FEATURE_DEDUP | \
9b67f605 113 DMU_BACKUP_FEATURE_DEDUPPROPS | DMU_BACKUP_FEATURE_SA_SPILL | \
2aa34383 114 DMU_BACKUP_FEATURE_EMBED_DATA | DMU_BACKUP_FEATURE_LZ4 | \
47dfff3b 115 DMU_BACKUP_FEATURE_RESUMING | DMU_BACKUP_FEATURE_LARGE_BLOCKS | \
b5256303
TC
116 DMU_BACKUP_FEATURE_COMPRESSED | DMU_BACKUP_FEATURE_LARGE_DNODE | \
117 DMU_BACKUP_FEATURE_RAW)
428870ff
BB
118
119/* Are all features in the given flag word currently supported? */
120#define DMU_STREAM_SUPPORTED(x) (!((x) & ~DMU_BACKUP_FEATURE_MASK))
121
47dfff3b
MA
122typedef enum dmu_send_resume_token_version {
123 ZFS_SEND_RESUME_TOKEN_VERSION = 1
124} dmu_send_resume_token_version_t;
125
428870ff
BB
126/*
127 * The drr_versioninfo field of the dmu_replay_record has the
128 * following layout:
129 *
130 * 64 56 48 40 32 24 16 8 0
131 * +-------+-------+-------+-------+-------+-------+-------+-------+
132 * | reserved | feature-flags |C|S|
133 * +-------+-------+-------+-------+-------+-------+-------+-------+
134 *
135 * The low order two bits indicate the header type: SUBSTREAM (0x1)
136 * or COMPOUNDSTREAM (0x2). Using two bits for this is historical:
137 * this field used to be a version number, where the two version types
138 * were 1 and 2. Using two bits for this allows earlier versions of
139 * the code to be able to recognize send streams that don't use any
140 * of the features indicated by feature flags.
141 */
142
34dc7c2f
BB
143#define DMU_BACKUP_MAGIC 0x2F5bacbacULL
144
b607405f
AS
145/*
146 * Send stream flags. Bits 24-31 are reserved for vendor-specific
147 * implementations and should not be used.
148 */
34dc7c2f
BB
149#define DRR_FLAG_CLONE (1<<0)
150#define DRR_FLAG_CI_DATA (1<<1)
e6d3a843
PD
151/*
152 * This send stream, if it is a full send, includes the FREE and FREEOBJECT
153 * records that are created by the sending process. This means that the send
154 * stream can be received as a clone, even though it is not an incremental.
155 * This is not implemented as a feature flag, because the receiving side does
156 * not need to have implemented it to receive this stream; it is fully backwards
157 * compatible. We need a flag, though, because full send streams without it
158 * cannot necessarily be received as a clone correctly.
159 */
160#define DRR_FLAG_FREERECORDS (1<<2)
34dc7c2f 161
428870ff 162/*
b5256303
TC
163 * flags in the drr_flags field in the DRR_WRITE, DRR_SPILL, DRR_OBJECT,
164 * DRR_WRITE_BYREF, and DRR_OBJECT_RANGE blocks
428870ff 165 */
b5256303 166#define DRR_CHECKSUM_DEDUP (1<<0) /* not used for DRR_SPILL blocks */
9b840763 167#define DRR_RAW_BYTESWAP (1<<1)
428870ff
BB
168
169#define DRR_IS_DEDUP_CAPABLE(flags) ((flags) & DRR_CHECKSUM_DEDUP)
b5256303 170#define DRR_IS_RAW_BYTESWAPPED(flags) ((flags) & DRR_RAW_BYTESWAP)
428870ff 171
2aa34383
DK
172/* deal with compressed drr_write replay records */
173#define DRR_WRITE_COMPRESSED(drrw) ((drrw)->drr_compressiontype != 0)
174#define DRR_WRITE_PAYLOAD_SIZE(drrw) \
175 (DRR_WRITE_COMPRESSED(drrw) ? (drrw)->drr_compressed_size : \
176 (drrw)->drr_logical_size)
b5256303 177#define DRR_SPILL_PAYLOAD_SIZE(drrs) \
9b840763 178 ((drrs)->drr_compressed_size ? \
b5256303
TC
179 (drrs)->drr_compressed_size : (drrs)->drr_length)
180#define DRR_OBJECT_PAYLOAD_SIZE(drro) \
9b840763
TC
181 ((drro)->drr_raw_bonuslen != 0 ? \
182 (drro)->drr_raw_bonuslen : P2ROUNDUP((drro)->drr_bonuslen, 8))
2aa34383 183
34dc7c2f
BB
184/*
185 * zfs ioctl command structure
186 */
187typedef struct dmu_replay_record {
188 enum {
189 DRR_BEGIN, DRR_OBJECT, DRR_FREEOBJECTS,
428870ff 190 DRR_WRITE, DRR_FREE, DRR_END, DRR_WRITE_BYREF,
b5256303
TC
191 DRR_SPILL, DRR_WRITE_EMBEDDED, DRR_OBJECT_RANGE,
192 DRR_NUMTYPES
34dc7c2f
BB
193 } drr_type;
194 uint32_t drr_payloadlen;
195 union {
196 struct drr_begin {
197 uint64_t drr_magic;
428870ff 198 uint64_t drr_versioninfo; /* was drr_version */
34dc7c2f
BB
199 uint64_t drr_creation_time;
200 dmu_objset_type_t drr_type;
201 uint32_t drr_flags;
202 uint64_t drr_toguid;
203 uint64_t drr_fromguid;
204 char drr_toname[MAXNAMELEN];
205 } drr_begin;
206 struct drr_end {
207 zio_cksum_t drr_checksum;
428870ff 208 uint64_t drr_toguid;
34dc7c2f
BB
209 } drr_end;
210 struct drr_object {
211 uint64_t drr_object;
212 dmu_object_type_t drr_type;
213 dmu_object_type_t drr_bonustype;
214 uint32_t drr_blksz;
215 uint32_t drr_bonuslen;
428870ff 216 uint8_t drr_checksumtype;
34dc7c2f 217 uint8_t drr_compress;
50c957f7 218 uint8_t drr_dn_slots;
b5256303
TC
219 uint8_t drr_flags;
220 uint32_t drr_raw_bonuslen;
428870ff 221 uint64_t drr_toguid;
ae76f45c 222 /* only (possibly) nonzero for raw streams */
b5256303
TC
223 uint8_t drr_indblkshift;
224 uint8_t drr_nlevels;
225 uint8_t drr_nblkptr;
ae76f45c
TC
226 uint8_t drr_pad[5];
227 uint64_t drr_maxblkid;
34dc7c2f
BB
228 /* bonus content follows */
229 } drr_object;
230 struct drr_freeobjects {
231 uint64_t drr_firstobj;
232 uint64_t drr_numobjs;
428870ff 233 uint64_t drr_toguid;
34dc7c2f
BB
234 } drr_freeobjects;
235 struct drr_write {
236 uint64_t drr_object;
237 dmu_object_type_t drr_type;
238 uint32_t drr_pad;
239 uint64_t drr_offset;
2aa34383 240 uint64_t drr_logical_size;
428870ff
BB
241 uint64_t drr_toguid;
242 uint8_t drr_checksumtype;
b5256303 243 uint8_t drr_flags;
2aa34383
DK
244 uint8_t drr_compressiontype;
245 uint8_t drr_pad2[5];
246 /* deduplication key */
247 ddt_key_t drr_key;
248 /* only nonzero if drr_compressiontype is not 0 */
249 uint64_t drr_compressed_size;
9b840763 250 /* only nonzero for raw streams */
b5256303
TC
251 uint8_t drr_salt[ZIO_DATA_SALT_LEN];
252 uint8_t drr_iv[ZIO_DATA_IV_LEN];
253 uint8_t drr_mac[ZIO_DATA_MAC_LEN];
34dc7c2f
BB
254 /* content follows */
255 } drr_write;
256 struct drr_free {
257 uint64_t drr_object;
258 uint64_t drr_offset;
259 uint64_t drr_length;
428870ff 260 uint64_t drr_toguid;
34dc7c2f 261 } drr_free;
428870ff
BB
262 struct drr_write_byref {
263 /* where to put the data */
264 uint64_t drr_object;
265 uint64_t drr_offset;
266 uint64_t drr_length;
267 uint64_t drr_toguid;
268 /* where to find the prior copy of the data */
269 uint64_t drr_refguid;
270 uint64_t drr_refobject;
271 uint64_t drr_refoffset;
272 /* properties of the data */
273 uint8_t drr_checksumtype;
b5256303 274 uint8_t drr_flags;
428870ff
BB
275 uint8_t drr_pad2[6];
276 ddt_key_t drr_key; /* deduplication key */
277 } drr_write_byref;
278 struct drr_spill {
279 uint64_t drr_object;
280 uint64_t drr_length;
281 uint64_t drr_toguid;
b5256303
TC
282 uint8_t drr_flags;
283 uint8_t drr_compressiontype;
284 uint8_t drr_pad[6];
9b840763 285 /* only nonzero for raw streams */
b5256303
TC
286 uint64_t drr_compressed_size;
287 uint8_t drr_salt[ZIO_DATA_SALT_LEN];
288 uint8_t drr_iv[ZIO_DATA_IV_LEN];
289 uint8_t drr_mac[ZIO_DATA_MAC_LEN];
290 dmu_object_type_t drr_type;
428870ff
BB
291 /* spill data follows */
292 } drr_spill;
9b67f605
MA
293 struct drr_write_embedded {
294 uint64_t drr_object;
295 uint64_t drr_offset;
296 /* logical length, should equal blocksize */
297 uint64_t drr_length;
298 uint64_t drr_toguid;
299 uint8_t drr_compression;
300 uint8_t drr_etype;
301 uint8_t drr_pad[6];
302 uint32_t drr_lsize; /* uncompressed size of payload */
303 uint32_t drr_psize; /* compr. (real) size of payload */
304 /* (possibly compressed) content follows */
305 } drr_write_embedded;
b5256303
TC
306 struct drr_object_range {
307 uint64_t drr_firstobj;
308 uint64_t drr_numslots;
309 uint64_t drr_toguid;
310 uint8_t drr_salt[ZIO_DATA_SALT_LEN];
311 uint8_t drr_iv[ZIO_DATA_IV_LEN];
312 uint8_t drr_mac[ZIO_DATA_MAC_LEN];
313 uint8_t drr_flags;
314 uint8_t drr_pad[3];
315 } drr_object_range;
37f8a883
MA
316
317 /*
318 * Nore: drr_checksum is overlaid with all record types
319 * except DRR_BEGIN. Therefore its (non-pad) members
320 * must not overlap with members from the other structs.
321 * We accomplish this by putting its members at the very
322 * end of the struct.
323 */
324 struct drr_checksum {
325 uint64_t drr_pad[34];
326 /*
327 * fletcher-4 checksum of everything preceding the
328 * checksum.
329 */
330 zio_cksum_t drr_checksum;
331 } drr_checksum;
34dc7c2f
BB
332 } drr_u;
333} dmu_replay_record_t;
334
572e2857
BB
335/* diff record range types */
336typedef enum diff_type {
337 DDR_NONE = 0x1,
338 DDR_INUSE = 0x2,
339 DDR_FREE = 0x4
340} diff_type_t;
341
342/*
343 * The diff reports back ranges of free or in-use objects.
344 */
345typedef struct dmu_diff_record {
346 uint64_t ddr_type;
347 uint64_t ddr_first;
348 uint64_t ddr_last;
349} dmu_diff_record_t;
350
34dc7c2f
BB
351typedef struct zinject_record {
352 uint64_t zi_objset;
353 uint64_t zi_object;
354 uint64_t zi_start;
355 uint64_t zi_end;
356 uint64_t zi_guid;
357 uint32_t zi_level;
358 uint32_t zi_error;
359 uint64_t zi_type;
360 uint32_t zi_freq;
9babb374 361 uint32_t zi_failfast;
428870ff
BB
362 char zi_func[MAXNAMELEN];
363 uint32_t zi_iotype;
364 int32_t zi_duration;
365 uint64_t zi_timer;
26ef0cc7 366 uint64_t zi_nlanes;
cc92e9d0
GW
367 uint32_t zi_cmd;
368 uint32_t zi_pad;
34dc7c2f
BB
369} zinject_record_t;
370
371#define ZINJECT_NULL 0x1
372#define ZINJECT_FLUSH_ARC 0x2
373#define ZINJECT_UNLOAD_SPA 0x4
374
8c7aa0cf 375#define ZEVENT_NONE 0x0
26685276
BB
376#define ZEVENT_NONBLOCK 0x1
377#define ZEVENT_SIZE 1024
378
75e3ff58
BB
379#define ZEVENT_SEEK_START 0
380#define ZEVENT_SEEK_END UINT64_MAX
381
0241e491
DB
382/* scaled frequency ranges */
383#define ZI_PERCENTAGE_MIN 4294UL
384#define ZI_PERCENTAGE_MAX UINT32_MAX
385
cc92e9d0
GW
386typedef enum zinject_type {
387 ZINJECT_UNINITIALIZED,
388 ZINJECT_DATA_FAULT,
389 ZINJECT_DEVICE_FAULT,
390 ZINJECT_LABEL_FAULT,
391 ZINJECT_IGNORED_WRITES,
392 ZINJECT_PANIC,
393 ZINJECT_DELAY_IO,
394} zinject_type_t;
395
34dc7c2f
BB
396typedef struct zfs_share {
397 uint64_t z_exportdata;
398 uint64_t z_sharedata;
399 uint64_t z_sharetype; /* 0 = share, 1 = unshare */
400 uint64_t z_sharemax; /* max length of share string */
401} zfs_share_t;
402
403/*
404 * ZFS file systems may behave the usual, POSIX-compliant way, where
405 * name lookups are case-sensitive. They may also be set up so that
406 * all the name lookups are case-insensitive, or so that only some
407 * lookups, the ones that set an FIGNORECASE flag, are case-insensitive.
408 */
409typedef enum zfs_case {
410 ZFS_CASE_SENSITIVE,
411 ZFS_CASE_INSENSITIVE,
412 ZFS_CASE_MIXED
413} zfs_case_t;
414
47dfff3b
MA
415/*
416 * Note: this struct must have the same layout in 32-bit and 64-bit, so
417 * that 32-bit processes (like /sbin/zfs) can pass it to the 64-bit
418 * kernel. Therefore, we add padding to it so that no "hidden" padding
419 * is automatically added on 64-bit (but not on 32-bit).
420 */
34dc7c2f 421typedef struct zfs_cmd {
6f1ffb06
MA
422 char zc_name[MAXPATHLEN]; /* name of pool or dataset */
423 uint64_t zc_nvlist_src; /* really (char *) */
424 uint64_t zc_nvlist_src_size;
425 uint64_t zc_nvlist_dst; /* really (char *) */
426 uint64_t zc_nvlist_dst_size;
427 boolean_t zc_nvlist_dst_filled; /* put an nvlist in dst? */
428 int zc_pad2;
429
430 /*
431 * The following members are for legacy ioctls which haven't been
432 * converted to the new method.
433 */
434 uint64_t zc_history; /* really (char *) */
34dc7c2f
BB
435 char zc_value[MAXPATHLEN * 2];
436 char zc_string[MAXNAMELEN];
437 uint64_t zc_guid;
438 uint64_t zc_nvlist_conf; /* really (char *) */
439 uint64_t zc_nvlist_conf_size;
34dc7c2f
BB
440 uint64_t zc_cookie;
441 uint64_t zc_objset_type;
442 uint64_t zc_perm_action;
6f1ffb06 443 uint64_t zc_history_len;
34dc7c2f
BB
444 uint64_t zc_history_offset;
445 uint64_t zc_obj;
9babb374 446 uint64_t zc_iflags; /* internal to zfs(7fs) */
34dc7c2f
BB
447 zfs_share_t zc_share;
448 dmu_objset_stats_t zc_objset_stats;
43e52edd 449 struct drr_begin zc_begin_record;
34dc7c2f 450 zinject_record_t zc_inject_record;
9b67f605
MA
451 uint32_t zc_defer_destroy;
452 uint32_t zc_flags;
572e2857
BB
453 uint64_t zc_action_handle;
454 int zc_cleanup_fd;
0cee2406 455 uint8_t zc_simple;
43e52edd 456 uint8_t zc_pad[3]; /* alignment */
572e2857
BB
457 uint64_t zc_sendobj;
458 uint64_t zc_fromobj;
459 uint64_t zc_createtxg;
460 zfs_stat_t zc_stat;
34dc7c2f
BB
461} zfs_cmd_t;
462
9babb374
BB
463typedef struct zfs_useracct {
464 char zu_domain[256];
465 uid_t zu_rid;
466 uint32_t zu_pad;
467 uint64_t zu_space;
468} zfs_useracct_t;
469
572e2857
BB
470#define ZFSDEV_MAX_MINOR (1 << 16)
471#define ZFS_MIN_MINOR (ZFSDEV_MAX_MINOR + 1)
34dc7c2f 472
428870ff
BB
473#define ZPOOL_EXPORT_AFTER_SPLIT 0x1
474
34dc7c2f 475#ifdef _KERNEL
d99a0153
CW
476struct objset;
477struct zfsvfs;
34dc7c2f
BB
478
479typedef struct zfs_creat {
480 nvlist_t *zct_zplprops;
481 nvlist_t *zct_props;
482} zfs_creat_t;
483
d99a0153
CW
484extern int zfs_secpolicy_snapshot_perms(const char *, cred_t *);
485extern int zfs_secpolicy_rename_perms(const char *, const char *, cred_t *);
486extern int zfs_secpolicy_destroy_perms(const char *, cred_t *);
8d103d88 487extern void zfs_unmount_snap(const char *);
13fe0198 488extern void zfs_destroy_unmount_origin(const char *);
d99a0153
CW
489extern boolean_t dataset_name_hidden(const char *);
490extern int getzfsvfs_impl(struct objset *, struct zfsvfs **);
8d103d88 491extern int getzfsvfs(const char *, struct zfsvfs **);
ba6a2402 492
325f0235
BB
493enum zfsdev_state_type {
494 ZST_ONEXIT,
495 ZST_ZEVENT,
496 ZST_ALL,
572e2857
BB
497};
498
3937ab20
TC
499/*
500 * The zfsdev_state_t structure is managed as a singly-linked list
501 * from which items are never deleted. This allows for lock-free
502 * reading of the list so long as assignments to the zs_next and
503 * reads from zs_minor are performed atomically. Empty items are
504 * indicated by storing -1 into zs_minor.
505 */
325f0235 506typedef struct zfsdev_state {
3937ab20 507 struct zfsdev_state *zs_next; /* next zfsdev_state_t link */
325f0235
BB
508 struct file *zs_file; /* associated file struct */
509 minor_t zs_minor; /* made up minor number */
510 void *zs_onexit; /* onexit data */
511 void *zs_zevent; /* zevent data */
512} zfsdev_state_t;
572e2857 513
325f0235 514extern void *zfsdev_get_state(minor_t minor, enum zfsdev_state_type which);
72540ea3 515extern int zfsdev_getminor(struct file *filp, minor_t *minorp);
572e2857
BB
516extern minor_t zfsdev_minor_alloc(void);
517
34dc7c2f
BB
518#endif /* _KERNEL */
519
520#ifdef __cplusplus
521}
522#endif
523
524#endif /* _SYS_ZFS_IOCTL_H */