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 2009 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 34 #ifdef _KERNEL 35 #include <sys/nvpair.h> 36 #endif /* _KERNEL */ 37 38 #ifdef __cplusplus 39 extern "C" { 40 #endif 41 42 /* 43 * Property values for snapdir 44 */ 45 #define ZFS_SNAPDIR_HIDDEN 0 46 #define ZFS_SNAPDIR_VISIBLE 1 47 48 #define DMU_BACKUP_STREAM_VERSION (1ULL) 49 #define DMU_BACKUP_HEADER_VERSION (2ULL) 50 #define DMU_BACKUP_MAGIC 0x2F5bacbacULL 51 52 #define DRR_FLAG_CLONE (1<<0) 53 #define DRR_FLAG_CI_DATA (1<<1) 54 55 /* 56 * zfs ioctl command structure 57 */ 58 typedef struct dmu_replay_record { 59 enum { 60 DRR_BEGIN, DRR_OBJECT, DRR_FREEOBJECTS, 61 DRR_WRITE, DRR_FREE, DRR_END, DRR_NUMTYPES 62 } drr_type; 63 uint32_t drr_payloadlen; 64 union { 65 struct drr_begin { 66 uint64_t drr_magic; 67 uint64_t drr_version; 68 uint64_t drr_creation_time; 69 dmu_objset_type_t drr_type; 70 uint32_t drr_flags; 71 uint64_t drr_toguid; 72 uint64_t drr_fromguid; 73 char drr_toname[MAXNAMELEN]; 74 } drr_begin; 75 struct drr_end { 76 zio_cksum_t drr_checksum; 77 } drr_end; 78 struct drr_object { 79 uint64_t drr_object; 80 dmu_object_type_t drr_type; 81 dmu_object_type_t drr_bonustype; 82 uint32_t drr_blksz; 83 uint32_t drr_bonuslen; 84 uint8_t drr_checksum; 85 uint8_t drr_compress; 86 uint8_t drr_pad[6]; 87 /* bonus content follows */ 88 } drr_object; 89 struct drr_freeobjects { 90 uint64_t drr_firstobj; 91 uint64_t drr_numobjs; 92 } drr_freeobjects; 93 struct drr_write { 94 uint64_t drr_object; 95 dmu_object_type_t drr_type; 96 uint32_t drr_pad; 97 uint64_t drr_offset; 98 uint64_t drr_length; 99 /* content follows */ 100 } drr_write; 101 struct drr_free { 102 uint64_t drr_object; 103 uint64_t drr_offset; 104 uint64_t drr_length; 105 } drr_free; 106 } drr_u; 107 } dmu_replay_record_t; 108 109 typedef struct zinject_record { 110 uint64_t zi_objset; 111 uint64_t zi_object; 112 uint64_t zi_start; 113 uint64_t zi_end; 114 uint64_t zi_guid; 115 uint32_t zi_level; 116 uint32_t zi_error; 117 uint64_t zi_type; 118 uint32_t zi_freq; 119 uint32_t zi_failfast; 120 char zi_func[MAXNAMELEN]; 121 uint32_t zi_iotype; 122 uint32_t zi_pad; /* 64-bit alignment */ 123 } zinject_record_t; 124 125 #define ZINJECT_NULL 0x1 126 #define ZINJECT_FLUSH_ARC 0x2 127 #define ZINJECT_UNLOAD_SPA 0x4 128 129 typedef struct zfs_share { 130 uint64_t z_exportdata; 131 uint64_t z_sharedata; 132 uint64_t z_sharetype; /* 0 = share, 1 = unshare */ 133 uint64_t z_sharemax; /* max length of share string */ 134 } zfs_share_t; 135 136 /* 137 * ZFS file systems may behave the usual, POSIX-compliant way, where 138 * name lookups are case-sensitive. They may also be set up so that 139 * all the name lookups are case-insensitive, or so that only some 140 * lookups, the ones that set an FIGNORECASE flag, are case-insensitive. 141 */ 142 typedef enum zfs_case { 143 ZFS_CASE_SENSITIVE, 144 ZFS_CASE_INSENSITIVE, 145 ZFS_CASE_MIXED 146 } zfs_case_t; 147 148 typedef struct zfs_cmd { 149 char zc_name[MAXPATHLEN]; 150 char zc_value[MAXPATHLEN * 2]; 151 char zc_string[MAXNAMELEN]; 152 uint64_t zc_guid; 153 uint64_t zc_nvlist_conf; /* really (char *) */ 154 uint64_t zc_nvlist_conf_size; 155 uint64_t zc_nvlist_src; /* really (char *) */ 156 uint64_t zc_nvlist_src_size; 157 uint64_t zc_nvlist_dst; /* really (char *) */ 158 uint64_t zc_nvlist_dst_size; 159 uint64_t zc_cookie; 160 uint64_t zc_objset_type; 161 uint64_t zc_perm_action; 162 uint64_t zc_history; /* really (char *) */ 163 uint64_t zc_history_len; 164 uint64_t zc_history_offset; 165 uint64_t zc_obj; 166 uint64_t zc_iflags; /* internal to zfs(7fs) */ 167 zfs_share_t zc_share; 168 dmu_objset_stats_t zc_objset_stats; 169 struct drr_begin zc_begin_record; 170 zinject_record_t zc_inject_record; 171 boolean_t zc_defer_destroy; 172 boolean_t zc_temphold; 173 } zfs_cmd_t; 174 175 typedef struct zfs_useracct { 176 char zu_domain[256]; 177 uid_t zu_rid; 178 uint32_t zu_pad; 179 uint64_t zu_space; 180 } zfs_useracct_t; 181 182 #define ZVOL_MAX_MINOR (1 << 16) 183 #define ZFS_MIN_MINOR (ZVOL_MAX_MINOR + 1) 184 185 #ifdef _KERNEL 186 187 typedef struct zfs_creat { 188 nvlist_t *zct_zplprops; 189 nvlist_t *zct_props; 190 } zfs_creat_t; 191 192 extern dev_info_t *zfs_dip; 193 194 extern int zfs_secpolicy_snapshot_perms(const char *name, cred_t *cr); 195 extern int zfs_secpolicy_rename_perms(const char *from, 196 const char *to, cred_t *cr); 197 extern int zfs_secpolicy_destroy_perms(const char *name, cred_t *cr); 198 extern int zfs_busy(void); 199 extern int zfs_unmount_snap(char *, void *); 200 201 #endif /* _KERNEL */ 202 203 #ifdef __cplusplus 204 } 205 #endif 206 207 #endif /* _SYS_ZFS_IOCTL_H */ 208