| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 1 | /**************************************************************************** | 
 | 2 |  **************************************************************************** | 
 | 3 |  *** | 
 | 4 |  ***   This header was automatically generated from a Linux kernel header | 
 | 5 |  ***   of the same name, to make information necessary for userspace to | 
 | 6 |  ***   call into the kernel available to libc.  It contains only constants, | 
 | 7 |  ***   structures, and macros generated from the original header, and thus, | 
 | 8 |  ***   contains no copyrightable information. | 
 | 9 |  *** | 
 | 10 |  ***   To edit the content of this header, modify the corresponding | 
 | 11 |  ***   source file (e.g. under external/kernel-headers/original/) then | 
 | 12 |  ***   run bionic/libc/kernel/tools/update_all.py | 
 | 13 |  *** | 
 | 14 |  ***   Any manual change here will be lost the next time this script will | 
 | 15 |  ***   be run. You've been warned! | 
 | 16 |  *** | 
 | 17 |  **************************************************************************** | 
 | 18 |  ****************************************************************************/ | 
 | 19 | #ifndef _LINUX_DM_IOCTL_V4_H | 
 | 20 | #define _LINUX_DM_IOCTL_V4_H | 
 | 21 | #include <linux/types.h> | 
 | 22 | #define DM_DIR "mapper" | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 23 | #define DM_CONTROL_NODE "control" | 
 | 24 | #define DM_MAX_TYPE_NAME 16 | 
 | 25 | #define DM_NAME_LEN 128 | 
 | 26 | #define DM_UUID_LEN 129 | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 27 | struct dm_ioctl { | 
| Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 28 |   __u32 version[3]; | 
 | 29 |   __u32 data_size; | 
 | 30 |   __u32 data_start; | 
| Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 31 |   __u32 target_count; | 
 | 32 |   __s32 open_count; | 
 | 33 |   __u32 flags; | 
 | 34 |   __u32 event_nr; | 
| Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 35 |   __u32 padding; | 
 | 36 |   __u64 dev; | 
 | 37 |   char name[DM_NAME_LEN]; | 
 | 38 |   char uuid[DM_UUID_LEN]; | 
| Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 39 |   char data[7]; | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 40 | }; | 
 | 41 | struct dm_target_spec { | 
| Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 42 |   __u64 sector_start; | 
| Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 43 |   __u64 length; | 
 | 44 |   __s32 status; | 
 | 45 |   __u32 next; | 
 | 46 |   char target_type[DM_MAX_TYPE_NAME]; | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 47 | }; | 
 | 48 | struct dm_target_deps { | 
| Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 49 |   __u32 count; | 
 | 50 |   __u32 padding; | 
| Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 51 |   __u64 dev[0]; | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 52 | }; | 
 | 53 | struct dm_name_list { | 
| Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 54 |   __u64 dev; | 
| Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 55 |   __u32 next; | 
 | 56 |   char name[0]; | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 57 | }; | 
 | 58 | struct dm_target_versions { | 
| Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 59 |   __u32 next; | 
 | 60 |   __u32 version[3]; | 
 | 61 |   char name[0]; | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 62 | }; | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 63 | struct dm_target_msg { | 
| Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 64 |   __u64 sector; | 
 | 65 |   char message[0]; | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 66 | }; | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 67 | enum { | 
| Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 68 |   DM_VERSION_CMD = 0, | 
 | 69 |   DM_REMOVE_ALL_CMD, | 
 | 70 |   DM_LIST_DEVICES_CMD, | 
| Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 71 |   DM_DEV_CREATE_CMD, | 
 | 72 |   DM_DEV_REMOVE_CMD, | 
 | 73 |   DM_DEV_RENAME_CMD, | 
 | 74 |   DM_DEV_SUSPEND_CMD, | 
| Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 75 |   DM_DEV_STATUS_CMD, | 
 | 76 |   DM_DEV_WAIT_CMD, | 
 | 77 |   DM_TABLE_LOAD_CMD, | 
 | 78 |   DM_TABLE_CLEAR_CMD, | 
| Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 79 |   DM_TABLE_DEPS_CMD, | 
 | 80 |   DM_TABLE_STATUS_CMD, | 
 | 81 |   DM_LIST_VERSIONS_CMD, | 
 | 82 |   DM_TARGET_MSG_CMD, | 
| Christopher Ferris | 1308ad3 | 2017-11-14 17:32:13 -0800 | [diff] [blame] | 83 |   DM_DEV_SET_GEOMETRY_CMD, | 
 | 84 |   DM_DEV_ARM_POLL_CMD, | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 85 | }; | 
 | 86 | #define DM_IOCTL 0xfd | 
 | 87 | #define DM_VERSION _IOWR(DM_IOCTL, DM_VERSION_CMD, struct dm_ioctl) | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 88 | #define DM_REMOVE_ALL _IOWR(DM_IOCTL, DM_REMOVE_ALL_CMD, struct dm_ioctl) | 
 | 89 | #define DM_LIST_DEVICES _IOWR(DM_IOCTL, DM_LIST_DEVICES_CMD, struct dm_ioctl) | 
 | 90 | #define DM_DEV_CREATE _IOWR(DM_IOCTL, DM_DEV_CREATE_CMD, struct dm_ioctl) | 
 | 91 | #define DM_DEV_REMOVE _IOWR(DM_IOCTL, DM_DEV_REMOVE_CMD, struct dm_ioctl) | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 92 | #define DM_DEV_RENAME _IOWR(DM_IOCTL, DM_DEV_RENAME_CMD, struct dm_ioctl) | 
 | 93 | #define DM_DEV_SUSPEND _IOWR(DM_IOCTL, DM_DEV_SUSPEND_CMD, struct dm_ioctl) | 
 | 94 | #define DM_DEV_STATUS _IOWR(DM_IOCTL, DM_DEV_STATUS_CMD, struct dm_ioctl) | 
 | 95 | #define DM_DEV_WAIT _IOWR(DM_IOCTL, DM_DEV_WAIT_CMD, struct dm_ioctl) | 
| Christopher Ferris | 1308ad3 | 2017-11-14 17:32:13 -0800 | [diff] [blame] | 96 | #define DM_DEV_ARM_POLL _IOWR(DM_IOCTL, DM_DEV_ARM_POLL_CMD, struct dm_ioctl) | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 97 | #define DM_TABLE_LOAD _IOWR(DM_IOCTL, DM_TABLE_LOAD_CMD, struct dm_ioctl) | 
 | 98 | #define DM_TABLE_CLEAR _IOWR(DM_IOCTL, DM_TABLE_CLEAR_CMD, struct dm_ioctl) | 
 | 99 | #define DM_TABLE_DEPS _IOWR(DM_IOCTL, DM_TABLE_DEPS_CMD, struct dm_ioctl) | 
 | 100 | #define DM_TABLE_STATUS _IOWR(DM_IOCTL, DM_TABLE_STATUS_CMD, struct dm_ioctl) | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 101 | #define DM_LIST_VERSIONS _IOWR(DM_IOCTL, DM_LIST_VERSIONS_CMD, struct dm_ioctl) | 
 | 102 | #define DM_TARGET_MSG _IOWR(DM_IOCTL, DM_TARGET_MSG_CMD, struct dm_ioctl) | 
 | 103 | #define DM_DEV_SET_GEOMETRY _IOWR(DM_IOCTL, DM_DEV_SET_GEOMETRY_CMD, struct dm_ioctl) | 
 | 104 | #define DM_VERSION_MAJOR 4 | 
| Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 105 | #define DM_VERSION_MINOR 39 | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 106 | #define DM_VERSION_PATCHLEVEL 0 | 
| Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 107 | #define DM_VERSION_EXTRA "-ioctl(2018-04-03)" | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 108 | #define DM_READONLY_FLAG (1 << 0) | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 109 | #define DM_SUSPEND_FLAG (1 << 1) | 
 | 110 | #define DM_PERSISTENT_DEV_FLAG (1 << 3) | 
 | 111 | #define DM_STATUS_TABLE_FLAG (1 << 4) | 
 | 112 | #define DM_ACTIVE_PRESENT_FLAG (1 << 5) | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 113 | #define DM_INACTIVE_PRESENT_FLAG (1 << 6) | 
 | 114 | #define DM_BUFFER_FULL_FLAG (1 << 8) | 
 | 115 | #define DM_SKIP_BDGET_FLAG (1 << 9) | 
 | 116 | #define DM_SKIP_LOCKFS_FLAG (1 << 10) | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 117 | #define DM_NOFLUSH_FLAG (1 << 11) | 
 | 118 | #define DM_QUERY_INACTIVE_TABLE_FLAG (1 << 12) | 
 | 119 | #define DM_UEVENT_GENERATED_FLAG (1 << 13) | 
 | 120 | #define DM_UUID_FLAG (1 << 14) | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 121 | #define DM_SECURE_DATA_FLAG (1 << 15) | 
 | 122 | #define DM_DATA_OUT_FLAG (1 << 16) | 
| Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 123 | #define DM_DEFERRED_REMOVE (1 << 17) | 
| Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 124 | #define DM_INTERNAL_SUSPEND_FLAG (1 << 18) | 
| Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 125 | #endif |