sys/dev/disk/dm/netbsd-dm.h
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 | /* $NetBSD: netbsd-dm.h,v 1.6 2009/12/05 11:30:26 haad Exp $ */ /* * Copyright (c) 2008 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by Adam Hamsik. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #ifndef __NETBSD_DM_H__ #define __NETBSD_DM_H__ #include <libprop/proplib.h> #define DM_IOCTL 0xfd #define DM_IOCTL_CMD 0 #define NETBSD_DM_IOCTL _IOWR(DM_IOCTL, DM_IOCTL_CMD, struct plistref) /* * DM-ioctl dictionary. * * This contains general information about dm device. * * <dict> * <key>command</key> * <string>...</string> * * <key>event_nr</key> * <integer>...</integer> * * <key>name</key> * <string>...</string> * * <key>uuid</key> * <string>...</string> * * <key>dev</key> * <integer></integer> * * <key>flags</key> * <integer></integer> * * <key>version</key> * <array> * <integer>...</integer> * <integer>...</integer> * <integer>...</integer> * </array> * * <key>cmd_data</key> * <array> * <!-- See below for command * specific dictionaries --> * </array> * </dict> * * Available commands from _cmd_data_v4. * * create, reload, remove, remove_all, suspend, * resume, info, deps, rename, version, status, * table, waitevent, names, clear, mknodes, * targets, message, setgeometry * */ /* * DM_LIST_VERSIONS == "targets" command dictionary entry. * Lists all available targets with their version. * * <array> * <dict> * <key>name<key> * <string>...</string> * * <key>version</key> * <array> * <integer>...</integer> * <integer>...</integer> * <integer>...</integer> * </array> * </dict> * </array> * */ /* * DM_DEV_LIST == "names" * Request list of device-mapper created devices from kernel. * * <array> * <dict> * <key>name<key> * <string>...</string> * * <key>dev</key> * <integer>...</integer> * </dict> * </array> * * dev is uint64_t * */ /* * DM_DEV_RENAME == "rename" * Rename device to string. * * <array> * <string>...</string> * </array> * */ /* * DM_DEV_STATUS == "info, mknodes" * Will change fields DM_IOCTL_OPEN, DM_IOCTL_DEV in received dictionary, * with dm device values with name or uuid from list. * */ /* * DM_TABLE_STATUS == "status,table" * Request list of device-mapper created devices from kernel. * * <array> * <dict> * <key>type<key> * <string>...</string> * * <key>start</key> * <integer>...</integer> * * <key>length</key> * <integer>...</integer> * * <key>params</key> * <string>...</string> * </dict> * </array> * * params is string which contains {device} {parameters} * */ /* * DM_TABLE_DEPS == "deps" * Request list active table device dependiences. * * This command is also run to get dm-device * dependiences for existing real block device. * * eg. vgcreate calls DM_TABLE_DEPS * * <array> * <integer>...</integer> * </array> * */ #define DM_IOCTL_COMMAND "command" #define DM_IOCTL_VERSION "version" #define DM_IOCTL_OPEN "open_count" #define DM_IOCTL_MINOR "minor" #define DM_IOCTL_NAME "name" #define DM_IOCTL_UUID "uuid" #define DM_IOCTL_TARGET_COUNT "target_count" #define DM_IOCTL_EVENT "event_nr" #define DM_IOCTL_FLAGS "flags" #define DM_IOCTL_CMD_DATA "cmd_data" #define DM_TARGETS_NAME "name" #define DM_TARGETS_VERSION "ver" #define DM_DEV_NEWNAME "newname" #define DM_DEV_NAME "name" #define DM_DEV_DEV "dev" #define DM_DEV_UID "uid" #define DM_DEV_GID "gid" #define DM_DEV_MODE "mode" #define DM_TABLE_TYPE "type" #define DM_TABLE_START "start" #define DM_TABLE_STAT "status" #define DM_TABLE_LENGTH "length" #define DM_TABLE_PARAMS "params" #define DM_MESSAGE_SECTOR "sector" #define DM_MESSAGE_STR "message" /* Status bits */ /* IO mode of device */ #define DM_READONLY_FLAG (1 << 0) /* In/Out *//* to kernel/from kernel */ #define DM_SUSPEND_FLAG (1 << 1) /* In/Out */ /* XXX. This flag is undocumented. */ #define DM_EXISTS_FLAG (1 << 2) /* In/Out */ /* Minor number is persistent */ #define DM_PERSISTENT_DEV_FLAG (1 << 3) /* In */ /* * Flag passed into ioctl STATUS command to get table information * rather than current status. */ #define DM_STATUS_TABLE_FLAG (1 << 4) /* In */ /* * Flags that indicate whether a table is present in either of * the two table slots that a device has. */ #define DM_ACTIVE_PRESENT_FLAG (1 << 5) /* Out */ #define DM_INACTIVE_PRESENT_FLAG (1 << 6) /* Out */ /* * Indicates that the buffer passed in wasn't big enough for the * results. */ #define DM_BUFFER_FULL_FLAG (1 << 8) /* Out */ /* * This flag is now ignored. */ #define DM_SKIP_BDGET_FLAG (1 << 9) /* In */ /* * Set this to avoid attempting to freeze any filesystem when suspending. */ #define DM_SKIP_LOCKFS_FLAG (1 << 10) /* In */ /* * Set this to suspend without flushing queued ios. */ #define DM_NOFLUSH_FLAG (1 << 11) /* In */ /* * If set, any table information returned will relate to the inactive * table instead of the live one. Always check DM_INACTIVE_PRESENT_FLAG * is set before using the data returned. */ #define DM_QUERY_INACTIVE_TABLE_FLAG (1 << 12) /* In */ /* * If set, a rename affects the UUID instead of the name. Only valid * if the UUID was empty before. */ #define DM_UUID_FLAG (1 << 14) /* In */ /* * Set this flag for the ioctl buffers to be wiped. */ #define DM_SECURE_DATA_FLAG (1 << 15) /* In */ #endif /* __NETBSD_DM_H__ */ |