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