740d8eda4e670f19b73c53decacf81d6d1b133ff
[zfs.git] / include / sys / zfs_ioctl.h
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 /*
22  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23  */
24
25 #ifndef _SYS_ZFS_IOCTL_H
26 #define _SYS_ZFS_IOCTL_H
27
28 #include <sys/cred.h>
29 #include <sys/dmu.h>
30 #include <sys/zio.h>
31 #include <sys/dsl_deleg.h>
32 #include <sys/spa.h>
33 #include <sys/zfs_stat.h>
34
35 #ifdef _KERNEL
36 #include <sys/nvpair.h>
37 #endif  /* _KERNEL */
38
39 #ifdef  __cplusplus
40 extern "C" {
41 #endif
42
43 /*
44  * Property values for snapdir
45  */
46 #define ZFS_SNAPDIR_HIDDEN              0
47 #define ZFS_SNAPDIR_VISIBLE             1
48
49 /*
50  * Property values for snapdev
51  */
52 #define ZFS_SNAPDEV_HIDDEN              0
53 #define ZFS_SNAPDEV_VISIBLE             1
54
55 /*
56  * Field manipulation macros for the drr_versioninfo field of the
57  * send stream header.
58  */
59
60 /*
61  * Header types for zfs send streams.
62  */
63 typedef enum drr_headertype {
64         DMU_SUBSTREAM = 0x1,
65         DMU_COMPOUNDSTREAM = 0x2
66 } drr_headertype_t;
67
68 #define DMU_GET_STREAM_HDRTYPE(vi)      BF64_GET((vi), 0, 2)
69 #define DMU_SET_STREAM_HDRTYPE(vi, x)   BF64_SET((vi), 0, 2, x)
70
71 #define DMU_GET_FEATUREFLAGS(vi)        BF64_GET((vi), 2, 30)
72 #define DMU_SET_FEATUREFLAGS(vi, x)     BF64_SET((vi), 2, 30, x)
73
74 /*
75  * Feature flags for zfs send streams (flags in drr_versioninfo)
76  */
77
78 #define DMU_BACKUP_FEATURE_DEDUP        (0x1)
79 #define DMU_BACKUP_FEATURE_DEDUPPROPS   (0x2)
80 #define DMU_BACKUP_FEATURE_SA_SPILL     (0x4)
81
82 /*
83  * Mask of all supported backup features
84  */
85 #define DMU_BACKUP_FEATURE_MASK (DMU_BACKUP_FEATURE_DEDUP | \
86                 DMU_BACKUP_FEATURE_DEDUPPROPS | DMU_BACKUP_FEATURE_SA_SPILL)
87
88 /* Are all features in the given flag word currently supported? */
89 #define DMU_STREAM_SUPPORTED(x) (!((x) & ~DMU_BACKUP_FEATURE_MASK))
90
91 /*
92  * The drr_versioninfo field of the dmu_replay_record has the
93  * following layout:
94  *
95  *      64      56      48      40      32      24      16      8       0
96  *      +-------+-------+-------+-------+-------+-------+-------+-------+
97  *      |               reserved        |        feature-flags      |C|S|
98  *      +-------+-------+-------+-------+-------+-------+-------+-------+
99  *
100  * The low order two bits indicate the header type: SUBSTREAM (0x1)
101  * or COMPOUNDSTREAM (0x2).  Using two bits for this is historical:
102  * this field used to be a version number, where the two version types
103  * were 1 and 2.  Using two bits for this allows earlier versions of
104  * the code to be able to recognize send streams that don't use any
105  * of the features indicated by feature flags.
106  */
107
108 #define DMU_BACKUP_MAGIC 0x2F5bacbacULL
109
110 #define DRR_FLAG_CLONE          (1<<0)
111 #define DRR_FLAG_CI_DATA        (1<<1)
112
113 /*
114  * flags in the drr_checksumflags field in the DRR_WRITE and
115  * DRR_WRITE_BYREF blocks
116  */
117 #define DRR_CHECKSUM_DEDUP      (1<<0)
118
119 #define DRR_IS_DEDUP_CAPABLE(flags)     ((flags) & DRR_CHECKSUM_DEDUP)
120
121 /*
122  * zfs ioctl command structure
123  */
124 typedef struct dmu_replay_record {
125         enum {
126                 DRR_BEGIN, DRR_OBJECT, DRR_FREEOBJECTS,
127                 DRR_WRITE, DRR_FREE, DRR_END, DRR_WRITE_BYREF,
128                 DRR_SPILL, DRR_NUMTYPES
129         } drr_type;
130         uint32_t drr_payloadlen;
131         union {
132                 struct drr_begin {
133                         uint64_t drr_magic;
134                         uint64_t drr_versioninfo; /* was drr_version */
135                         uint64_t drr_creation_time;
136                         dmu_objset_type_t drr_type;
137                         uint32_t drr_flags;
138                         uint64_t drr_toguid;
139                         uint64_t drr_fromguid;
140                         char drr_toname[MAXNAMELEN];
141                 } drr_begin;
142                 struct drr_end {
143                         zio_cksum_t drr_checksum;
144                         uint64_t drr_toguid;
145                 } drr_end;
146                 struct drr_object {
147                         uint64_t drr_object;
148                         dmu_object_type_t drr_type;
149                         dmu_object_type_t drr_bonustype;
150                         uint32_t drr_blksz;
151                         uint32_t drr_bonuslen;
152                         uint8_t drr_checksumtype;
153                         uint8_t drr_compress;
154                         uint8_t drr_pad[6];
155                         uint64_t drr_toguid;
156                         /* bonus content follows */
157                 } drr_object;
158                 struct drr_freeobjects {
159                         uint64_t drr_firstobj;
160                         uint64_t drr_numobjs;
161                         uint64_t drr_toguid;
162                 } drr_freeobjects;
163                 struct drr_write {
164                         uint64_t drr_object;
165                         dmu_object_type_t drr_type;
166                         uint32_t drr_pad;
167                         uint64_t drr_offset;
168                         uint64_t drr_length;
169                         uint64_t drr_toguid;
170                         uint8_t drr_checksumtype;
171                         uint8_t drr_checksumflags;
172                         uint8_t drr_pad2[6];
173                         ddt_key_t drr_key; /* deduplication key */
174                         /* content follows */
175                 } drr_write;
176                 struct drr_free {
177                         uint64_t drr_object;
178                         uint64_t drr_offset;
179                         uint64_t drr_length;
180                         uint64_t drr_toguid;
181                 } drr_free;
182                 struct drr_write_byref {
183                         /* where to put the data */
184                         uint64_t drr_object;
185                         uint64_t drr_offset;
186                         uint64_t drr_length;
187                         uint64_t drr_toguid;
188                         /* where to find the prior copy of the data */
189                         uint64_t drr_refguid;
190                         uint64_t drr_refobject;
191                         uint64_t drr_refoffset;
192                         /* properties of the data */
193                         uint8_t drr_checksumtype;
194                         uint8_t drr_checksumflags;
195                         uint8_t drr_pad2[6];
196                         ddt_key_t drr_key; /* deduplication key */
197                 } drr_write_byref;
198                 struct drr_spill {
199                         uint64_t drr_object;
200                         uint64_t drr_length;
201                         uint64_t drr_toguid;
202                         uint64_t drr_pad[4]; /* needed for crypto */
203                         /* spill data follows */
204                 } drr_spill;
205         } drr_u;
206 } dmu_replay_record_t;
207
208 /* diff record range types */
209 typedef enum diff_type {
210         DDR_NONE = 0x1,
211         DDR_INUSE = 0x2,
212         DDR_FREE = 0x4
213 } diff_type_t;
214
215 /*
216  * The diff reports back ranges of free or in-use objects.
217  */
218 typedef struct dmu_diff_record {
219         uint64_t ddr_type;
220         uint64_t ddr_first;
221         uint64_t ddr_last;
222 } dmu_diff_record_t;
223
224 typedef struct zinject_record {
225         uint64_t        zi_objset;
226         uint64_t        zi_object;
227         uint64_t        zi_start;
228         uint64_t        zi_end;
229         uint64_t        zi_guid;
230         uint32_t        zi_level;
231         uint32_t        zi_error;
232         uint64_t        zi_type;
233         uint32_t        zi_freq;
234         uint32_t        zi_failfast;
235         char            zi_func[MAXNAMELEN];
236         uint32_t        zi_iotype;
237         int32_t         zi_duration;
238         uint64_t        zi_timer;
239 } zinject_record_t;
240
241 #define ZINJECT_NULL            0x1
242 #define ZINJECT_FLUSH_ARC       0x2
243 #define ZINJECT_UNLOAD_SPA      0x4
244
245 #define ZEVENT_NONBLOCK         0x1
246 #define ZEVENT_SIZE             1024
247
248 typedef struct zfs_share {
249         uint64_t        z_exportdata;
250         uint64_t        z_sharedata;
251         uint64_t        z_sharetype;    /* 0 = share, 1 = unshare */
252         uint64_t        z_sharemax;  /* max length of share string */
253 } zfs_share_t;
254
255 /*
256  * ZFS file systems may behave the usual, POSIX-compliant way, where
257  * name lookups are case-sensitive.  They may also be set up so that
258  * all the name lookups are case-insensitive, or so that only some
259  * lookups, the ones that set an FIGNORECASE flag, are case-insensitive.
260  */
261 typedef enum zfs_case {
262         ZFS_CASE_SENSITIVE,
263         ZFS_CASE_INSENSITIVE,
264         ZFS_CASE_MIXED
265 } zfs_case_t;
266
267 typedef struct zfs_cmd {
268         char            zc_name[MAXPATHLEN];
269         char            zc_value[MAXPATHLEN * 2];
270         char            zc_string[MAXNAMELEN];
271         char            zc_top_ds[MAXPATHLEN];
272         uint64_t        zc_guid;
273         uint64_t        zc_nvlist_conf;         /* really (char *) */
274         uint64_t        zc_nvlist_conf_size;
275         uint64_t        zc_nvlist_src;          /* really (char *) */
276         uint64_t        zc_nvlist_src_size;
277         uint64_t        zc_nvlist_dst;          /* really (char *) */
278         uint64_t        zc_nvlist_dst_size;
279         uint64_t        zc_cookie;
280         uint64_t        zc_objset_type;
281         uint64_t        zc_perm_action;
282         uint64_t        zc_history;             /* really (char *) */
283         uint64_t        zc_history_len;
284         uint64_t        zc_history_offset;
285         uint64_t        zc_obj;
286         uint64_t        zc_iflags;              /* internal to zfs(7fs) */
287         zfs_share_t     zc_share;
288         dmu_objset_stats_t zc_objset_stats;
289         struct drr_begin zc_begin_record;
290         zinject_record_t zc_inject_record;
291         boolean_t       zc_defer_destroy;
292         boolean_t       zc_temphold;
293         uint64_t        zc_action_handle;
294         int             zc_cleanup_fd;
295         uint8_t         zc_simple;
296         uint8_t         zc_pad[3];              /* alignment */
297         uint64_t        zc_sendobj;
298         uint64_t        zc_fromobj;
299         uint64_t        zc_createtxg;
300         zfs_stat_t      zc_stat;
301 } zfs_cmd_t;
302
303 typedef struct zfs_useracct {
304         char zu_domain[256];
305         uid_t zu_rid;
306         uint32_t zu_pad;
307         uint64_t zu_space;
308 } zfs_useracct_t;
309
310 #define ZFSDEV_MAX_MINOR        (1 << 16)
311 #define ZFS_MIN_MINOR   (ZFSDEV_MAX_MINOR + 1)
312
313 #define ZPOOL_EXPORT_AFTER_SPLIT 0x1
314
315 #ifdef _KERNEL
316
317 typedef struct zfs_creat {
318         nvlist_t        *zct_zplprops;
319         nvlist_t        *zct_props;
320 } zfs_creat_t;
321
322 extern int zfs_secpolicy_snapshot_perms(const char *name, cred_t *cr);
323 extern int zfs_secpolicy_rename_perms(const char *from,
324     const char *to, cred_t *cr);
325 extern int zfs_secpolicy_destroy_perms(const char *name, cred_t *cr);
326 extern int zfs_unmount_snap(const char *, void *);
327
328 enum zfsdev_state_type {
329         ZST_ONEXIT,
330         ZST_ZEVENT,
331         ZST_ALL,
332 };
333
334 typedef struct zfsdev_state {
335         list_node_t             zs_next;        /* next zfsdev_state_t link */
336         struct file             *zs_file;       /* associated file struct */
337         minor_t                 zs_minor;       /* made up minor number */
338         void                    *zs_onexit;     /* onexit data */
339         void                    *zs_zevent;     /* zevent data */
340 } zfsdev_state_t;
341
342 extern void *zfsdev_get_state(minor_t minor, enum zfsdev_state_type which);
343 extern minor_t zfsdev_getminor(struct file *filp);
344 extern minor_t zfsdev_minor_alloc(void);
345
346 #endif  /* _KERNEL */
347
348 #ifdef  __cplusplus
349 }
350 #endif
351
352 #endif  /* _SYS_ZFS_IOCTL_H */