]> git.proxmox.com Git - mirror_zfs.git/blobdiff - module/zfs/include/sys/zfs_ioctl.h
Update core ZFS code from build 121 to build 141.
[mirror_zfs.git] / module / zfs / include / sys / zfs_ioctl.h
index 3a3e6e7118ad8da7fc02194016ce5e3372524db9..b0cb4955e1999f8e602f1d45b663b8b1acf880e1 100644 (file)
@@ -19,7 +19,7 @@
  * CDDL HEADER END
  */
 /*
- * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
+ * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
  * Use is subject to license terms.
  */
 
@@ -30,6 +30,7 @@
 #include <sys/dmu.h>
 #include <sys/zio.h>
 #include <sys/dsl_deleg.h>
+#include <sys/spa.h>
 
 #ifdef _KERNEL
 #include <sys/nvpair.h>
@@ -45,26 +46,86 @@ extern "C" {
 #define        ZFS_SNAPDIR_HIDDEN              0
 #define        ZFS_SNAPDIR_VISIBLE             1
 
-#define        DMU_BACKUP_STREAM_VERSION (1ULL)
-#define        DMU_BACKUP_HEADER_VERSION (2ULL)
+/*
+ * Field manipulation macros for the drr_versioninfo field of the
+ * send stream header.
+ */
+
+/*
+ * Header types for zfs send streams.
+ */
+typedef enum drr_headertype {
+       DMU_SUBSTREAM = 0x1,
+       DMU_COMPOUNDSTREAM = 0x2
+} drr_headertype_t;
+
+#define        DMU_GET_STREAM_HDRTYPE(vi)      BF64_GET((vi), 0, 2)
+#define        DMU_SET_STREAM_HDRTYPE(vi, x)   BF64_SET((vi), 0, 2, x)
+
+#define        DMU_GET_FEATUREFLAGS(vi)        BF64_GET((vi), 2, 30)
+#define        DMU_SET_FEATUREFLAGS(vi, x)     BF64_SET((vi), 2, 30, x)
+
+/*
+ * Feature flags for zfs send streams (flags in drr_versioninfo)
+ */
+
+#define        DMU_BACKUP_FEATURE_DEDUP        (0x1)
+#define        DMU_BACKUP_FEATURE_DEDUPPROPS   (0x2)
+#define        DMU_BACKUP_FEATURE_SA_SPILL     (0x4)
+
+/*
+ * Mask of all supported backup features
+ */
+#define        DMU_BACKUP_FEATURE_MASK (DMU_BACKUP_FEATURE_DEDUP | \
+               DMU_BACKUP_FEATURE_DEDUPPROPS | DMU_BACKUP_FEATURE_SA_SPILL)
+
+/* Are all features in the given flag word currently supported? */
+#define        DMU_STREAM_SUPPORTED(x) (!((x) & ~DMU_BACKUP_FEATURE_MASK))
+
+/*
+ * The drr_versioninfo field of the dmu_replay_record has the
+ * following layout:
+ *
+ *     64      56      48      40      32      24      16      8       0
+ *     +-------+-------+-------+-------+-------+-------+-------+-------+
+ *     |               reserved        |        feature-flags      |C|S|
+ *     +-------+-------+-------+-------+-------+-------+-------+-------+
+ *
+ * The low order two bits indicate the header type: SUBSTREAM (0x1)
+ * or COMPOUNDSTREAM (0x2).  Using two bits for this is historical:
+ * this field used to be a version number, where the two version types
+ * were 1 and 2.  Using two bits for this allows earlier versions of
+ * the code to be able to recognize send streams that don't use any
+ * of the features indicated by feature flags.
+ */
+
 #define        DMU_BACKUP_MAGIC 0x2F5bacbacULL
 
 #define        DRR_FLAG_CLONE          (1<<0)
 #define        DRR_FLAG_CI_DATA        (1<<1)
 
+/*
+ * flags in the drr_checksumflags field in the DRR_WRITE and
+ * DRR_WRITE_BYREF blocks
+ */
+#define        DRR_CHECKSUM_DEDUP      (1<<0)
+
+#define        DRR_IS_DEDUP_CAPABLE(flags)     ((flags) & DRR_CHECKSUM_DEDUP)
+
 /*
  * zfs ioctl command structure
  */
 typedef struct dmu_replay_record {
        enum {
                DRR_BEGIN, DRR_OBJECT, DRR_FREEOBJECTS,
-               DRR_WRITE, DRR_FREE, DRR_END,
+               DRR_WRITE, DRR_FREE, DRR_END, DRR_WRITE_BYREF,
+               DRR_SPILL, DRR_NUMTYPES
        } drr_type;
        uint32_t drr_payloadlen;
        union {
                struct drr_begin {
                        uint64_t drr_magic;
-                       uint64_t drr_version;
+                       uint64_t drr_versioninfo; /* was drr_version */
                        uint64_t drr_creation_time;
                        dmu_objset_type_t drr_type;
                        uint32_t drr_flags;
@@ -74,6 +135,7 @@ typedef struct dmu_replay_record {
                } drr_begin;
                struct drr_end {
                        zio_cksum_t drr_checksum;
+                       uint64_t drr_toguid;
                } drr_end;
                struct drr_object {
                        uint64_t drr_object;
@@ -81,14 +143,16 @@ typedef struct dmu_replay_record {
                        dmu_object_type_t drr_bonustype;
                        uint32_t drr_blksz;
                        uint32_t drr_bonuslen;
-                       uint8_t drr_checksum;
+                       uint8_t drr_checksumtype;
                        uint8_t drr_compress;
                        uint8_t drr_pad[6];
+                       uint64_t drr_toguid;
                        /* bonus content follows */
                } drr_object;
                struct drr_freeobjects {
                        uint64_t drr_firstobj;
                        uint64_t drr_numobjs;
+                       uint64_t drr_toguid;
                } drr_freeobjects;
                struct drr_write {
                        uint64_t drr_object;
@@ -96,13 +160,42 @@ typedef struct dmu_replay_record {
                        uint32_t drr_pad;
                        uint64_t drr_offset;
                        uint64_t drr_length;
+                       uint64_t drr_toguid;
+                       uint8_t drr_checksumtype;
+                       uint8_t drr_checksumflags;
+                       uint8_t drr_pad2[6];
+                       ddt_key_t drr_key; /* deduplication key */
                        /* content follows */
                } drr_write;
                struct drr_free {
                        uint64_t drr_object;
                        uint64_t drr_offset;
                        uint64_t drr_length;
+                       uint64_t drr_toguid;
                } drr_free;
+               struct drr_write_byref {
+                       /* where to put the data */
+                       uint64_t drr_object;
+                       uint64_t drr_offset;
+                       uint64_t drr_length;
+                       uint64_t drr_toguid;
+                       /* where to find the prior copy of the data */
+                       uint64_t drr_refguid;
+                       uint64_t drr_refobject;
+                       uint64_t drr_refoffset;
+                       /* properties of the data */
+                       uint8_t drr_checksumtype;
+                       uint8_t drr_checksumflags;
+                       uint8_t drr_pad2[6];
+                       ddt_key_t drr_key; /* deduplication key */
+               } drr_write_byref;
+               struct drr_spill {
+                       uint64_t drr_object;
+                       uint64_t drr_length;
+                       uint64_t drr_toguid;
+                       uint64_t drr_pad[4]; /* needed for crypto */
+                       /* spill data follows */
+               } drr_spill;
        } drr_u;
 } dmu_replay_record_t;
 
@@ -117,6 +210,10 @@ typedef struct zinject_record {
        uint64_t        zi_type;
        uint32_t        zi_freq;
        uint32_t        zi_failfast;
+       char            zi_func[MAXNAMELEN];
+       uint32_t        zi_iotype;
+       int32_t         zi_duration;
+       uint64_t        zi_timer;
 } zinject_record_t;
 
 #define        ZINJECT_NULL            0x1
@@ -146,6 +243,7 @@ typedef struct zfs_cmd {
        char            zc_name[MAXPATHLEN];
        char            zc_value[MAXPATHLEN * 2];
        char            zc_string[MAXNAMELEN];
+       char            zc_top_ds[MAXPATHLEN];
        uint64_t        zc_guid;
        uint64_t        zc_nvlist_conf;         /* really (char *) */
        uint64_t        zc_nvlist_conf_size;
@@ -166,6 +264,7 @@ typedef struct zfs_cmd {
        struct drr_begin zc_begin_record;
        zinject_record_t zc_inject_record;
        boolean_t       zc_defer_destroy;
+       boolean_t       zc_temphold;
 } zfs_cmd_t;
 
 typedef struct zfs_useracct {
@@ -178,6 +277,8 @@ typedef struct zfs_useracct {
 #define        ZVOL_MAX_MINOR  (1 << 16)
 #define        ZFS_MIN_MINOR   (ZVOL_MAX_MINOR + 1)
 
+#define        ZPOOL_EXPORT_AFTER_SPLIT 0x1
+
 #ifdef _KERNEL
 
 typedef struct zfs_creat {
@@ -192,7 +293,7 @@ extern int zfs_secpolicy_rename_perms(const char *from,
     const char *to, cred_t *cr);
 extern int zfs_secpolicy_destroy_perms(const char *name, cred_t *cr);
 extern int zfs_busy(void);
-extern int zfs_unmount_snap(char *, void *);
+extern int zfs_unmount_snap(const char *, void *);
 
 #endif /* _KERNEL */