11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * Copyright (C) 2001 Sistina Software (UK) Limited. 30da336e5SAlasdair G Kergon * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved. 41da177e4SLinus Torvalds * 51da177e4SLinus Torvalds * This file is released under the LGPL. 61da177e4SLinus Torvalds */ 71da177e4SLinus Torvalds 81da177e4SLinus Torvalds #ifndef _LINUX_DEVICE_MAPPER_H 91da177e4SLinus Torvalds #define _LINUX_DEVICE_MAPPER_H 101da177e4SLinus Torvalds 11416cd17bSHeinz Mauelshagen #include <linux/bio.h> 12f6fccb12SMilan Broz #include <linux/blkdev.h> 13fd2ed4d2SMikulas Patocka #include <linux/math64.h> 1471a16736SNamhyung Kim #include <linux/ratelimit.h> 15416cd17bSHeinz Mauelshagen 16af4874e0SMike Snitzer struct dm_dev; 171da177e4SLinus Torvalds struct dm_target; 181da177e4SLinus Torvalds struct dm_table; 1917b2f66fSAlasdair G Kergon struct mapped_device; 20f6fccb12SMilan Broz struct bio_vec; 211da177e4SLinus Torvalds 22*e83068a5SMike Snitzer /* 23*e83068a5SMike Snitzer * Type of table, mapped_device's mempool and request_queue 24*e83068a5SMike Snitzer */ 25*e83068a5SMike Snitzer #define DM_TYPE_NONE 0 26*e83068a5SMike Snitzer #define DM_TYPE_BIO_BASED 1 27*e83068a5SMike Snitzer #define DM_TYPE_REQUEST_BASED 2 28*e83068a5SMike Snitzer #define DM_TYPE_MQ_REQUEST_BASED 3 29*e83068a5SMike Snitzer 301da177e4SLinus Torvalds typedef enum { STATUSTYPE_INFO, STATUSTYPE_TABLE } status_type_t; 311da177e4SLinus Torvalds 321da177e4SLinus Torvalds union map_info { 331da177e4SLinus Torvalds void *ptr; 341da177e4SLinus Torvalds }; 351da177e4SLinus Torvalds 361da177e4SLinus Torvalds /* 371da177e4SLinus Torvalds * In the constructor the target parameter will already have the 381da177e4SLinus Torvalds * table, type, begin and len fields filled in. 391da177e4SLinus Torvalds */ 401da177e4SLinus Torvalds typedef int (*dm_ctr_fn) (struct dm_target *target, 411da177e4SLinus Torvalds unsigned int argc, char **argv); 421da177e4SLinus Torvalds 431da177e4SLinus Torvalds /* 441da177e4SLinus Torvalds * The destructor doesn't need to free the dm_target, just 451da177e4SLinus Torvalds * anything hidden ti->private. 461da177e4SLinus Torvalds */ 471da177e4SLinus Torvalds typedef void (*dm_dtr_fn) (struct dm_target *ti); 481da177e4SLinus Torvalds 491da177e4SLinus Torvalds /* 501da177e4SLinus Torvalds * The map function must return: 511da177e4SLinus Torvalds * < 0: error 521da177e4SLinus Torvalds * = 0: The target will handle the io by resubmitting it later 5345cbcd79SKiyoshi Ueda * = 1: simple remap complete 542e93ccc1SKiyoshi Ueda * = 2: The target wants to push back the io 551da177e4SLinus Torvalds */ 567de3ee57SMikulas Patocka typedef int (*dm_map_fn) (struct dm_target *ti, struct bio *bio); 577d76345dSKiyoshi Ueda typedef int (*dm_map_request_fn) (struct dm_target *ti, struct request *clone, 587d76345dSKiyoshi Ueda union map_info *map_context); 59e5863d9aSMike Snitzer typedef int (*dm_clone_and_map_request_fn) (struct dm_target *ti, 60e5863d9aSMike Snitzer struct request *rq, 61e5863d9aSMike Snitzer union map_info *map_context, 62e5863d9aSMike Snitzer struct request **clone); 63e5863d9aSMike Snitzer typedef void (*dm_release_clone_request_fn) (struct request *clone); 641da177e4SLinus Torvalds 651da177e4SLinus Torvalds /* 661da177e4SLinus Torvalds * Returns: 671da177e4SLinus Torvalds * < 0 : error (currently ignored) 681da177e4SLinus Torvalds * 0 : ended successfully 691da177e4SLinus Torvalds * 1 : for some reason the io has still not completed (eg, 701da177e4SLinus Torvalds * multipath target might want to requeue a failed io). 712e93ccc1SKiyoshi Ueda * 2 : The target wants to push back the io 721da177e4SLinus Torvalds */ 731da177e4SLinus Torvalds typedef int (*dm_endio_fn) (struct dm_target *ti, 747de3ee57SMikulas Patocka struct bio *bio, int error); 757d76345dSKiyoshi Ueda typedef int (*dm_request_endio_fn) (struct dm_target *ti, 767d76345dSKiyoshi Ueda struct request *clone, int error, 777d76345dSKiyoshi Ueda union map_info *map_context); 781da177e4SLinus Torvalds 791da177e4SLinus Torvalds typedef void (*dm_presuspend_fn) (struct dm_target *ti); 80d67ee213SMike Snitzer typedef void (*dm_presuspend_undo_fn) (struct dm_target *ti); 811da177e4SLinus Torvalds typedef void (*dm_postsuspend_fn) (struct dm_target *ti); 828757b776SMilan Broz typedef int (*dm_preresume_fn) (struct dm_target *ti); 831da177e4SLinus Torvalds typedef void (*dm_resume_fn) (struct dm_target *ti); 841da177e4SLinus Torvalds 85fd7c092eSMikulas Patocka typedef void (*dm_status_fn) (struct dm_target *ti, status_type_t status_type, 861f4e0ff0SAlasdair G Kergon unsigned status_flags, char *result, unsigned maxlen); 871da177e4SLinus Torvalds 881da177e4SLinus Torvalds typedef int (*dm_message_fn) (struct dm_target *ti, unsigned argc, char **argv); 891da177e4SLinus Torvalds 90e56f81e0SChristoph Hellwig typedef int (*dm_prepare_ioctl_fn) (struct dm_target *ti, 91e56f81e0SChristoph Hellwig struct block_device **bdev, fmode_t *mode); 92aa129a22SMilan Broz 93058ce5caSAlasdair G Kergon /* 94058ce5caSAlasdair G Kergon * These iteration functions are typically used to check (and combine) 95058ce5caSAlasdair G Kergon * properties of underlying devices. 96058ce5caSAlasdair G Kergon * E.g. Does at least one underlying device support flush? 97058ce5caSAlasdair G Kergon * Does any underlying device not support WRITE_SAME? 98058ce5caSAlasdair G Kergon * 99058ce5caSAlasdair G Kergon * The callout function is called once for each contiguous section of 100058ce5caSAlasdair G Kergon * an underlying device. State can be maintained in *data. 101058ce5caSAlasdair G Kergon * Return non-zero to stop iterating through any further devices. 102058ce5caSAlasdair G Kergon */ 103af4874e0SMike Snitzer typedef int (*iterate_devices_callout_fn) (struct dm_target *ti, 104af4874e0SMike Snitzer struct dm_dev *dev, 1055dea271bSMike Snitzer sector_t start, sector_t len, 106af4874e0SMike Snitzer void *data); 107af4874e0SMike Snitzer 108058ce5caSAlasdair G Kergon /* 109058ce5caSAlasdair G Kergon * This function must iterate through each section of device used by the 110058ce5caSAlasdair G Kergon * target until it encounters a non-zero return code, which it then returns. 111058ce5caSAlasdair G Kergon * Returns zero if no callout returned non-zero. 112058ce5caSAlasdair G Kergon */ 113af4874e0SMike Snitzer typedef int (*dm_iterate_devices_fn) (struct dm_target *ti, 114af4874e0SMike Snitzer iterate_devices_callout_fn fn, 115af4874e0SMike Snitzer void *data); 116af4874e0SMike Snitzer 11740bea431SMike Snitzer typedef void (*dm_io_hints_fn) (struct dm_target *ti, 11840bea431SMike Snitzer struct queue_limits *limits); 11940bea431SMike Snitzer 1207d76345dSKiyoshi Ueda /* 1217d76345dSKiyoshi Ueda * Returns: 1227d76345dSKiyoshi Ueda * 0: The target can handle the next I/O immediately. 1237d76345dSKiyoshi Ueda * 1: The target can't handle the next I/O immediately. 1247d76345dSKiyoshi Ueda */ 1257d76345dSKiyoshi Ueda typedef int (*dm_busy_fn) (struct dm_target *ti); 1267d76345dSKiyoshi Ueda 1271da177e4SLinus Torvalds void dm_error(const char *message); 1281da177e4SLinus Torvalds 12982b1519bSMikulas Patocka struct dm_dev { 13082b1519bSMikulas Patocka struct block_device *bdev; 131aeb5d727SAl Viro fmode_t mode; 13282b1519bSMikulas Patocka char name[16]; 13382b1519bSMikulas Patocka }; 13482b1519bSMikulas Patocka 1354df2bf46SDingXiang dev_t dm_get_dev_t(const char *path); 1364df2bf46SDingXiang 1373cb40214SBryn Reeves /* 1381da177e4SLinus Torvalds * Constructors should call these functions to ensure destination devices 1391da177e4SLinus Torvalds * are opened/closed correctly. 1401da177e4SLinus Torvalds */ 1418215d6ecSNikanth Karthikesan int dm_get_device(struct dm_target *ti, const char *path, fmode_t mode, 1428215d6ecSNikanth Karthikesan struct dm_dev **result); 1431da177e4SLinus Torvalds void dm_put_device(struct dm_target *ti, struct dm_dev *d); 1441da177e4SLinus Torvalds 1451da177e4SLinus Torvalds /* 1461da177e4SLinus Torvalds * Information about a target type 1471da177e4SLinus Torvalds */ 148ab4c1424SAndi Kleen 1491da177e4SLinus Torvalds struct target_type { 150ab4c1424SAndi Kleen uint64_t features; 1511da177e4SLinus Torvalds const char *name; 1521da177e4SLinus Torvalds struct module *module; 1531da177e4SLinus Torvalds unsigned version[3]; 1541da177e4SLinus Torvalds dm_ctr_fn ctr; 1551da177e4SLinus Torvalds dm_dtr_fn dtr; 1561da177e4SLinus Torvalds dm_map_fn map; 1577d76345dSKiyoshi Ueda dm_map_request_fn map_rq; 158e5863d9aSMike Snitzer dm_clone_and_map_request_fn clone_and_map_rq; 159e5863d9aSMike Snitzer dm_release_clone_request_fn release_clone_rq; 1601da177e4SLinus Torvalds dm_endio_fn end_io; 1617d76345dSKiyoshi Ueda dm_request_endio_fn rq_end_io; 1621da177e4SLinus Torvalds dm_presuspend_fn presuspend; 163d67ee213SMike Snitzer dm_presuspend_undo_fn presuspend_undo; 1641da177e4SLinus Torvalds dm_postsuspend_fn postsuspend; 1658757b776SMilan Broz dm_preresume_fn preresume; 1661da177e4SLinus Torvalds dm_resume_fn resume; 1671da177e4SLinus Torvalds dm_status_fn status; 1681da177e4SLinus Torvalds dm_message_fn message; 169e56f81e0SChristoph Hellwig dm_prepare_ioctl_fn prepare_ioctl; 1707d76345dSKiyoshi Ueda dm_busy_fn busy; 171af4874e0SMike Snitzer dm_iterate_devices_fn iterate_devices; 17240bea431SMike Snitzer dm_io_hints_fn io_hints; 17345194e4fSCheng Renquan 17445194e4fSCheng Renquan /* For internal device-mapper use. */ 17545194e4fSCheng Renquan struct list_head list; 1761da177e4SLinus Torvalds }; 1771da177e4SLinus Torvalds 1783791e2fcSAlasdair G Kergon /* 1793791e2fcSAlasdair G Kergon * Target features 1803791e2fcSAlasdair G Kergon */ 1813791e2fcSAlasdair G Kergon 1823791e2fcSAlasdair G Kergon /* 1833791e2fcSAlasdair G Kergon * Any table that contains an instance of this target must have only one. 1843791e2fcSAlasdair G Kergon */ 1853791e2fcSAlasdair G Kergon #define DM_TARGET_SINGLETON 0x00000001 1863791e2fcSAlasdair G Kergon #define dm_target_needs_singleton(type) ((type)->features & DM_TARGET_SINGLETON) 1873791e2fcSAlasdair G Kergon 188cc6cbe14SAlasdair G Kergon /* 189cc6cbe14SAlasdair G Kergon * Indicates that a target does not support read-only devices. 190cc6cbe14SAlasdair G Kergon */ 191cc6cbe14SAlasdair G Kergon #define DM_TARGET_ALWAYS_WRITEABLE 0x00000002 192cc6cbe14SAlasdair G Kergon #define dm_target_always_writeable(type) \ 193cc6cbe14SAlasdair G Kergon ((type)->features & DM_TARGET_ALWAYS_WRITEABLE) 194cc6cbe14SAlasdair G Kergon 19536a0456fSAlasdair G Kergon /* 19636a0456fSAlasdair G Kergon * Any device that contains a table with an instance of this target may never 19736a0456fSAlasdair G Kergon * have tables containing any different target type. 19836a0456fSAlasdair G Kergon */ 19936a0456fSAlasdair G Kergon #define DM_TARGET_IMMUTABLE 0x00000004 20036a0456fSAlasdair G Kergon #define dm_target_is_immutable(type) ((type)->features & DM_TARGET_IMMUTABLE) 20136a0456fSAlasdair G Kergon 202b0d8ed4dSAlasdair G Kergon /* 203f083b09bSMike Snitzer * Indicates that a target may replace any target; even immutable targets. 204f083b09bSMike Snitzer * .map, .map_rq, .clone_and_map_rq and .release_clone_rq are all defined. 205f083b09bSMike Snitzer */ 206f083b09bSMike Snitzer #define DM_TARGET_WILDCARD 0x00000008 207f083b09bSMike Snitzer #define dm_target_is_wildcard(type) ((type)->features & DM_TARGET_WILDCARD) 208f083b09bSMike Snitzer 209f083b09bSMike Snitzer /* 210b0d8ed4dSAlasdair G Kergon * Some targets need to be sent the same WRITE bio severals times so 211b0d8ed4dSAlasdair G Kergon * that they can send copies of it to different devices. This function 212b0d8ed4dSAlasdair G Kergon * examines any supplied bio and returns the number of copies of it the 213b0d8ed4dSAlasdair G Kergon * target requires. 214b0d8ed4dSAlasdair G Kergon */ 215b0d8ed4dSAlasdair G Kergon typedef unsigned (*dm_num_write_bios_fn) (struct dm_target *ti, struct bio *bio); 216b0d8ed4dSAlasdair G Kergon 2171da177e4SLinus Torvalds struct dm_target { 2181da177e4SLinus Torvalds struct dm_table *table; 2191da177e4SLinus Torvalds struct target_type *type; 2201da177e4SLinus Torvalds 2211da177e4SLinus Torvalds /* target limits */ 2221da177e4SLinus Torvalds sector_t begin; 2231da177e4SLinus Torvalds sector_t len; 2241da177e4SLinus Torvalds 225542f9038SMike Snitzer /* If non-zero, maximum size of I/O submitted to a target. */ 226542f9038SMike Snitzer uint32_t max_io_len; 2271da177e4SLinus Torvalds 2281da177e4SLinus Torvalds /* 22955a62eefSAlasdair G Kergon * A number of zero-length barrier bios that will be submitted 230f9ab94ceSMikulas Patocka * to the target for the purpose of flushing cache. 231f9ab94ceSMikulas Patocka * 23255a62eefSAlasdair G Kergon * The bio number can be accessed with dm_bio_get_target_bio_nr. 23355a62eefSAlasdair G Kergon * It is a responsibility of the target driver to remap these bios 234f9ab94ceSMikulas Patocka * to the real underlying devices. 235f9ab94ceSMikulas Patocka */ 23655a62eefSAlasdair G Kergon unsigned num_flush_bios; 237f9ab94ceSMikulas Patocka 2385ae89a87SMike Snitzer /* 23955a62eefSAlasdair G Kergon * The number of discard bios that will be submitted to the target. 24055a62eefSAlasdair G Kergon * The bio number can be accessed with dm_bio_get_target_bio_nr. 2415ae89a87SMike Snitzer */ 24255a62eefSAlasdair G Kergon unsigned num_discard_bios; 2435ae89a87SMike Snitzer 244d54eaa5aSMike Snitzer /* 24555a62eefSAlasdair G Kergon * The number of WRITE SAME bios that will be submitted to the target. 24655a62eefSAlasdair G Kergon * The bio number can be accessed with dm_bio_get_target_bio_nr. 247d54eaa5aSMike Snitzer */ 24855a62eefSAlasdair G Kergon unsigned num_write_same_bios; 249d54eaa5aSMike Snitzer 250c0820cf5SMikulas Patocka /* 25130187e1dSMike Snitzer * The minimum number of extra bytes allocated in each io for the 25230187e1dSMike Snitzer * target to use. 253c0820cf5SMikulas Patocka */ 25430187e1dSMike Snitzer unsigned per_io_data_size; 255c0820cf5SMikulas Patocka 256b0d8ed4dSAlasdair G Kergon /* 257b0d8ed4dSAlasdair G Kergon * If defined, this function is called to find out how many 258b0d8ed4dSAlasdair G Kergon * duplicate bios should be sent to the target when writing 259b0d8ed4dSAlasdair G Kergon * data. 260b0d8ed4dSAlasdair G Kergon */ 261b0d8ed4dSAlasdair G Kergon dm_num_write_bios_fn num_write_bios; 262b0d8ed4dSAlasdair G Kergon 2631da177e4SLinus Torvalds /* target specific data */ 2641da177e4SLinus Torvalds void *private; 2651da177e4SLinus Torvalds 2661da177e4SLinus Torvalds /* Used to provide an error string from the ctr */ 2671da177e4SLinus Torvalds char *error; 2684c259327SMike Snitzer 2694c259327SMike Snitzer /* 2700e9c24edSJoe Thornber * Set if this target needs to receive flushes regardless of 2710e9c24edSJoe Thornber * whether or not its underlying devices have support. 2720e9c24edSJoe Thornber */ 2730e9c24edSJoe Thornber bool flush_supported:1; 2740e9c24edSJoe Thornber 2750e9c24edSJoe Thornber /* 2764c259327SMike Snitzer * Set if this target needs to receive discards regardless of 2774c259327SMike Snitzer * whether or not its underlying devices have support. 2784c259327SMike Snitzer */ 2790ac55489SAlasdair G Kergon bool discards_supported:1; 280983c7db3SMilan Broz 281983c7db3SMilan Broz /* 28255a62eefSAlasdair G Kergon * Set if the target required discard bios to be split 2837acf0277SMikulas Patocka * on max_io_len boundary. 2847acf0277SMikulas Patocka */ 28555a62eefSAlasdair G Kergon bool split_discard_bios:1; 2867acf0277SMikulas Patocka 2877acf0277SMikulas Patocka /* 288983c7db3SMilan Broz * Set if this target does not return zeroes on discarded blocks. 289983c7db3SMilan Broz */ 2900ac55489SAlasdair G Kergon bool discard_zeroes_data_unsupported:1; 2911da177e4SLinus Torvalds }; 2921da177e4SLinus Torvalds 2939d357b07SNeilBrown /* Each target can link one of these into the table */ 2949d357b07SNeilBrown struct dm_target_callbacks { 2959d357b07SNeilBrown struct list_head list; 2969d357b07SNeilBrown int (*congested_fn) (struct dm_target_callbacks *, int); 2979d357b07SNeilBrown }; 2989d357b07SNeilBrown 299c0820cf5SMikulas Patocka /* 300c0820cf5SMikulas Patocka * For bio-based dm. 301c0820cf5SMikulas Patocka * One of these is allocated for each bio. 302c0820cf5SMikulas Patocka * This structure shouldn't be touched directly by target drivers. 303c0820cf5SMikulas Patocka * It is here so that we can inline dm_per_bio_data and 304c0820cf5SMikulas Patocka * dm_bio_from_per_bio_data 305c0820cf5SMikulas Patocka */ 306c0820cf5SMikulas Patocka struct dm_target_io { 307c0820cf5SMikulas Patocka struct dm_io *io; 308c0820cf5SMikulas Patocka struct dm_target *ti; 30955a62eefSAlasdair G Kergon unsigned target_bio_nr; 3101dd40c3eSMikulas Patocka unsigned *len_ptr; 311c0820cf5SMikulas Patocka struct bio clone; 312c0820cf5SMikulas Patocka }; 313c0820cf5SMikulas Patocka 314c0820cf5SMikulas Patocka static inline void *dm_per_bio_data(struct bio *bio, size_t data_size) 315c0820cf5SMikulas Patocka { 316c0820cf5SMikulas Patocka return (char *)bio - offsetof(struct dm_target_io, clone) - data_size; 317c0820cf5SMikulas Patocka } 318c0820cf5SMikulas Patocka 319c0820cf5SMikulas Patocka static inline struct bio *dm_bio_from_per_bio_data(void *data, size_t data_size) 320c0820cf5SMikulas Patocka { 321c0820cf5SMikulas Patocka return (struct bio *)((char *)data + data_size + offsetof(struct dm_target_io, clone)); 322c0820cf5SMikulas Patocka } 323c0820cf5SMikulas Patocka 32455a62eefSAlasdair G Kergon static inline unsigned dm_bio_get_target_bio_nr(const struct bio *bio) 325ddbd658fSMikulas Patocka { 32655a62eefSAlasdair G Kergon return container_of(bio, struct dm_target_io, clone)->target_bio_nr; 327ddbd658fSMikulas Patocka } 328ddbd658fSMikulas Patocka 3291da177e4SLinus Torvalds int dm_register_target(struct target_type *t); 33010d3bd09SMikulas Patocka void dm_unregister_target(struct target_type *t); 33117b2f66fSAlasdair G Kergon 332498f0103SMike Snitzer /* 333498f0103SMike Snitzer * Target argument parsing. 334498f0103SMike Snitzer */ 335498f0103SMike Snitzer struct dm_arg_set { 336498f0103SMike Snitzer unsigned argc; 337498f0103SMike Snitzer char **argv; 338498f0103SMike Snitzer }; 339498f0103SMike Snitzer 340498f0103SMike Snitzer /* 341498f0103SMike Snitzer * The minimum and maximum value of a numeric argument, together with 342498f0103SMike Snitzer * the error message to use if the number is found to be outside that range. 343498f0103SMike Snitzer */ 344498f0103SMike Snitzer struct dm_arg { 345498f0103SMike Snitzer unsigned min; 346498f0103SMike Snitzer unsigned max; 347498f0103SMike Snitzer char *error; 348498f0103SMike Snitzer }; 349498f0103SMike Snitzer 350498f0103SMike Snitzer /* 351498f0103SMike Snitzer * Validate the next argument, either returning it as *value or, if invalid, 352498f0103SMike Snitzer * returning -EINVAL and setting *error. 353498f0103SMike Snitzer */ 354498f0103SMike Snitzer int dm_read_arg(struct dm_arg *arg, struct dm_arg_set *arg_set, 355498f0103SMike Snitzer unsigned *value, char **error); 356498f0103SMike Snitzer 357498f0103SMike Snitzer /* 358498f0103SMike Snitzer * Process the next argument as the start of a group containing between 359498f0103SMike Snitzer * arg->min and arg->max further arguments. Either return the size as 360498f0103SMike Snitzer * *num_args or, if invalid, return -EINVAL and set *error. 361498f0103SMike Snitzer */ 362498f0103SMike Snitzer int dm_read_arg_group(struct dm_arg *arg, struct dm_arg_set *arg_set, 363498f0103SMike Snitzer unsigned *num_args, char **error); 364498f0103SMike Snitzer 365498f0103SMike Snitzer /* 366498f0103SMike Snitzer * Return the current argument and shift to the next. 367498f0103SMike Snitzer */ 368498f0103SMike Snitzer const char *dm_shift_arg(struct dm_arg_set *as); 369498f0103SMike Snitzer 370498f0103SMike Snitzer /* 371498f0103SMike Snitzer * Move through num_args arguments. 372498f0103SMike Snitzer */ 373498f0103SMike Snitzer void dm_consume_args(struct dm_arg_set *as, unsigned num_args); 374498f0103SMike Snitzer 37517b2f66fSAlasdair G Kergon /*----------------------------------------------------------------- 37617b2f66fSAlasdair G Kergon * Functions for creating and manipulating mapped devices. 37717b2f66fSAlasdair G Kergon * Drop the reference with dm_put when you finish with the object. 37817b2f66fSAlasdair G Kergon *---------------------------------------------------------------*/ 37917b2f66fSAlasdair G Kergon 38017b2f66fSAlasdair G Kergon /* 38117b2f66fSAlasdair G Kergon * DM_ANY_MINOR chooses the next available minor number. 38217b2f66fSAlasdair G Kergon */ 38317b2f66fSAlasdair G Kergon #define DM_ANY_MINOR (-1) 38417b2f66fSAlasdair G Kergon int dm_create(int minor, struct mapped_device **md); 38517b2f66fSAlasdair G Kergon 38617b2f66fSAlasdair G Kergon /* 38717b2f66fSAlasdair G Kergon * Reference counting for md. 38817b2f66fSAlasdair G Kergon */ 38917b2f66fSAlasdair G Kergon struct mapped_device *dm_get_md(dev_t dev); 39017b2f66fSAlasdair G Kergon void dm_get(struct mapped_device *md); 39109ee96b2SMikulas Patocka int dm_hold(struct mapped_device *md); 39217b2f66fSAlasdair G Kergon void dm_put(struct mapped_device *md); 39317b2f66fSAlasdair G Kergon 39417b2f66fSAlasdair G Kergon /* 39517b2f66fSAlasdair G Kergon * An arbitrary pointer may be stored alongside a mapped device. 39617b2f66fSAlasdair G Kergon */ 39717b2f66fSAlasdair G Kergon void dm_set_mdptr(struct mapped_device *md, void *ptr); 39817b2f66fSAlasdair G Kergon void *dm_get_mdptr(struct mapped_device *md); 39917b2f66fSAlasdair G Kergon 40017b2f66fSAlasdair G Kergon /* 40117b2f66fSAlasdair G Kergon * A device can still be used while suspended, but I/O is deferred. 40217b2f66fSAlasdair G Kergon */ 403a3d77d35SKiyoshi Ueda int dm_suspend(struct mapped_device *md, unsigned suspend_flags); 40417b2f66fSAlasdair G Kergon int dm_resume(struct mapped_device *md); 40517b2f66fSAlasdair G Kergon 40617b2f66fSAlasdair G Kergon /* 40717b2f66fSAlasdair G Kergon * Event functions. 40817b2f66fSAlasdair G Kergon */ 40917b2f66fSAlasdair G Kergon uint32_t dm_get_event_nr(struct mapped_device *md); 41017b2f66fSAlasdair G Kergon int dm_wait_event(struct mapped_device *md, int event_nr); 4117a8c3d3bSMike Anderson uint32_t dm_next_uevent_seq(struct mapped_device *md); 4127a8c3d3bSMike Anderson void dm_uevent_add(struct mapped_device *md, struct list_head *elist); 41317b2f66fSAlasdair G Kergon 41417b2f66fSAlasdair G Kergon /* 41517b2f66fSAlasdair G Kergon * Info functions. 41617b2f66fSAlasdair G Kergon */ 41772d94861SAlasdair G Kergon const char *dm_device_name(struct mapped_device *md); 41896a1f7dbSMike Anderson int dm_copy_name_and_uuid(struct mapped_device *md, char *name, char *uuid); 41917b2f66fSAlasdair G Kergon struct gendisk *dm_disk(struct mapped_device *md); 42064dbce58SKiyoshi Ueda int dm_suspended(struct dm_target *ti); 4212e93ccc1SKiyoshi Ueda int dm_noflush_suspending(struct dm_target *ti); 4221dd40c3eSMikulas Patocka void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors); 423cec47e3dSKiyoshi Ueda union map_info *dm_get_rq_mapinfo(struct request *rq); 42417b2f66fSAlasdair G Kergon 425f84cb8a4SMike Snitzer struct queue_limits *dm_get_queue_limits(struct mapped_device *md); 426f84cb8a4SMike Snitzer 42717b2f66fSAlasdair G Kergon /* 42817b2f66fSAlasdair G Kergon * Geometry functions. 42917b2f66fSAlasdair G Kergon */ 43017b2f66fSAlasdair G Kergon int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo); 43117b2f66fSAlasdair G Kergon int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo); 43217b2f66fSAlasdair G Kergon 43317b2f66fSAlasdair G Kergon /*----------------------------------------------------------------- 43417b2f66fSAlasdair G Kergon * Functions for manipulating device-mapper tables. 43517b2f66fSAlasdair G Kergon *---------------------------------------------------------------*/ 43617b2f66fSAlasdair G Kergon 43717b2f66fSAlasdair G Kergon /* 43817b2f66fSAlasdair G Kergon * First create an empty table. 43917b2f66fSAlasdair G Kergon */ 440aeb5d727SAl Viro int dm_table_create(struct dm_table **result, fmode_t mode, 44117b2f66fSAlasdair G Kergon unsigned num_targets, struct mapped_device *md); 44217b2f66fSAlasdair G Kergon 44317b2f66fSAlasdair G Kergon /* 44417b2f66fSAlasdair G Kergon * Then call this once for each target. 44517b2f66fSAlasdair G Kergon */ 44617b2f66fSAlasdair G Kergon int dm_table_add_target(struct dm_table *t, const char *type, 44717b2f66fSAlasdair G Kergon sector_t start, sector_t len, char *params); 44817b2f66fSAlasdair G Kergon 44917b2f66fSAlasdair G Kergon /* 4509d357b07SNeilBrown * Target_ctr should call this if it needs to add any callbacks. 4519d357b07SNeilBrown */ 4529d357b07SNeilBrown void dm_table_add_target_callbacks(struct dm_table *t, struct dm_target_callbacks *cb); 4539d357b07SNeilBrown 4549d357b07SNeilBrown /* 455*e83068a5SMike Snitzer * Target can use this to set the table's type. 456*e83068a5SMike Snitzer * Can only ever be called from a target's ctr. 457*e83068a5SMike Snitzer * Useful for "hybrid" target (supports both bio-based 458*e83068a5SMike Snitzer * and request-based). 459*e83068a5SMike Snitzer */ 460*e83068a5SMike Snitzer void dm_table_set_type(struct dm_table *t, unsigned type); 461*e83068a5SMike Snitzer 462*e83068a5SMike Snitzer /* 46317b2f66fSAlasdair G Kergon * Finally call this to make the table ready for use. 46417b2f66fSAlasdair G Kergon */ 46517b2f66fSAlasdair G Kergon int dm_table_complete(struct dm_table *t); 46617b2f66fSAlasdair G Kergon 46717b2f66fSAlasdair G Kergon /* 468542f9038SMike Snitzer * Target may require that it is never sent I/O larger than len. 469542f9038SMike Snitzer */ 470542f9038SMike Snitzer int __must_check dm_set_target_max_io_len(struct dm_target *ti, sector_t len); 471542f9038SMike Snitzer 472542f9038SMike Snitzer /* 47317b2f66fSAlasdair G Kergon * Table reference counting. 47417b2f66fSAlasdair G Kergon */ 47583d5e5b0SMikulas Patocka struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx); 47683d5e5b0SMikulas Patocka void dm_put_live_table(struct mapped_device *md, int srcu_idx); 47783d5e5b0SMikulas Patocka void dm_sync_table(struct mapped_device *md); 47817b2f66fSAlasdair G Kergon 47917b2f66fSAlasdair G Kergon /* 48017b2f66fSAlasdair G Kergon * Queries 48117b2f66fSAlasdair G Kergon */ 48217b2f66fSAlasdair G Kergon sector_t dm_table_get_size(struct dm_table *t); 48317b2f66fSAlasdair G Kergon unsigned int dm_table_get_num_targets(struct dm_table *t); 484aeb5d727SAl Viro fmode_t dm_table_get_mode(struct dm_table *t); 48517b2f66fSAlasdair G Kergon struct mapped_device *dm_table_get_md(struct dm_table *t); 48617b2f66fSAlasdair G Kergon 48717b2f66fSAlasdair G Kergon /* 48817b2f66fSAlasdair G Kergon * Trigger an event. 48917b2f66fSAlasdair G Kergon */ 49017b2f66fSAlasdair G Kergon void dm_table_event(struct dm_table *t); 49117b2f66fSAlasdair G Kergon 49217b2f66fSAlasdair G Kergon /* 4939974fa2cSMike Snitzer * Run the queue for request-based targets. 4949974fa2cSMike Snitzer */ 4959974fa2cSMike Snitzer void dm_table_run_md_queue_async(struct dm_table *t); 4969974fa2cSMike Snitzer 4979974fa2cSMike Snitzer /* 49817b2f66fSAlasdair G Kergon * The device must be suspended before calling this method. 499042d2a9bSAlasdair G Kergon * Returns the previous table, which the caller must destroy. 50017b2f66fSAlasdair G Kergon */ 501042d2a9bSAlasdair G Kergon struct dm_table *dm_swap_table(struct mapped_device *md, 502042d2a9bSAlasdair G Kergon struct dm_table *t); 50317b2f66fSAlasdair G Kergon 50454160904SMikulas Patocka /* 50554160904SMikulas Patocka * A wrapper around vmalloc. 50654160904SMikulas Patocka */ 50754160904SMikulas Patocka void *dm_vcalloc(unsigned long nmemb, unsigned long elem_size); 50854160904SMikulas Patocka 5090da336e5SAlasdair G Kergon /*----------------------------------------------------------------- 5100da336e5SAlasdair G Kergon * Macros. 5110da336e5SAlasdair G Kergon *---------------------------------------------------------------*/ 5120da336e5SAlasdair G Kergon #define DM_NAME "device-mapper" 5130da336e5SAlasdair G Kergon 51471a16736SNamhyung Kim #ifdef CONFIG_PRINTK 51571a16736SNamhyung Kim extern struct ratelimit_state dm_ratelimit_state; 51671a16736SNamhyung Kim 51771a16736SNamhyung Kim #define dm_ratelimit() __ratelimit(&dm_ratelimit_state) 51871a16736SNamhyung Kim #else 51971a16736SNamhyung Kim #define dm_ratelimit() 0 52071a16736SNamhyung Kim #endif 52171a16736SNamhyung Kim 52210d3bd09SMikulas Patocka #define DMCRIT(f, arg...) \ 52310d3bd09SMikulas Patocka printk(KERN_CRIT DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg) 52410d3bd09SMikulas Patocka 5250da336e5SAlasdair G Kergon #define DMERR(f, arg...) \ 5260da336e5SAlasdair G Kergon printk(KERN_ERR DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg) 5270da336e5SAlasdair G Kergon #define DMERR_LIMIT(f, arg...) \ 5280da336e5SAlasdair G Kergon do { \ 52971a16736SNamhyung Kim if (dm_ratelimit()) \ 5300da336e5SAlasdair G Kergon printk(KERN_ERR DM_NAME ": " DM_MSG_PREFIX ": " \ 5310da336e5SAlasdair G Kergon f "\n", ## arg); \ 5320da336e5SAlasdair G Kergon } while (0) 5330da336e5SAlasdair G Kergon 5340da336e5SAlasdair G Kergon #define DMWARN(f, arg...) \ 5350da336e5SAlasdair G Kergon printk(KERN_WARNING DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg) 5360da336e5SAlasdair G Kergon #define DMWARN_LIMIT(f, arg...) \ 5370da336e5SAlasdair G Kergon do { \ 53871a16736SNamhyung Kim if (dm_ratelimit()) \ 5390da336e5SAlasdair G Kergon printk(KERN_WARNING DM_NAME ": " DM_MSG_PREFIX ": " \ 5400da336e5SAlasdair G Kergon f "\n", ## arg); \ 5410da336e5SAlasdair G Kergon } while (0) 5420da336e5SAlasdair G Kergon 5430da336e5SAlasdair G Kergon #define DMINFO(f, arg...) \ 5440da336e5SAlasdair G Kergon printk(KERN_INFO DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg) 5450da336e5SAlasdair G Kergon #define DMINFO_LIMIT(f, arg...) \ 5460da336e5SAlasdair G Kergon do { \ 54771a16736SNamhyung Kim if (dm_ratelimit()) \ 5480da336e5SAlasdair G Kergon printk(KERN_INFO DM_NAME ": " DM_MSG_PREFIX ": " f \ 5490da336e5SAlasdair G Kergon "\n", ## arg); \ 5500da336e5SAlasdair G Kergon } while (0) 5510da336e5SAlasdair G Kergon 5520da336e5SAlasdair G Kergon #ifdef CONFIG_DM_DEBUG 5530da336e5SAlasdair G Kergon # define DMDEBUG(f, arg...) \ 5540da336e5SAlasdair G Kergon printk(KERN_DEBUG DM_NAME ": " DM_MSG_PREFIX " DEBUG: " f "\n", ## arg) 5550da336e5SAlasdair G Kergon # define DMDEBUG_LIMIT(f, arg...) \ 5560da336e5SAlasdair G Kergon do { \ 55771a16736SNamhyung Kim if (dm_ratelimit()) \ 5580da336e5SAlasdair G Kergon printk(KERN_DEBUG DM_NAME ": " DM_MSG_PREFIX ": " f \ 5590da336e5SAlasdair G Kergon "\n", ## arg); \ 5600da336e5SAlasdair G Kergon } while (0) 5610da336e5SAlasdair G Kergon #else 5620da336e5SAlasdair G Kergon # define DMDEBUG(f, arg...) do {} while (0) 5630da336e5SAlasdair G Kergon # define DMDEBUG_LIMIT(f, arg...) do {} while (0) 5640da336e5SAlasdair G Kergon #endif 5650da336e5SAlasdair G Kergon 5660da336e5SAlasdair G Kergon #define DMEMIT(x...) sz += ((sz >= maxlen) ? \ 5670da336e5SAlasdair G Kergon 0 : scnprintf(result + sz, maxlen - sz, x)) 5680da336e5SAlasdair G Kergon 5690da336e5SAlasdair G Kergon #define SECTOR_SHIFT 9 5700da336e5SAlasdair G Kergon 5710da336e5SAlasdair G Kergon /* 5720da336e5SAlasdair G Kergon * Definitions of return values from target end_io function. 5730da336e5SAlasdair G Kergon */ 5740da336e5SAlasdair G Kergon #define DM_ENDIO_INCOMPLETE 1 5750da336e5SAlasdair G Kergon #define DM_ENDIO_REQUEUE 2 5760da336e5SAlasdair G Kergon 5770da336e5SAlasdair G Kergon /* 5780da336e5SAlasdair G Kergon * Definitions of return values from target map function. 5790da336e5SAlasdair G Kergon */ 5800da336e5SAlasdair G Kergon #define DM_MAPIO_SUBMITTED 0 5810da336e5SAlasdair G Kergon #define DM_MAPIO_REMAPPED 1 5820da336e5SAlasdair G Kergon #define DM_MAPIO_REQUEUE DM_ENDIO_REQUEUE 5830da336e5SAlasdair G Kergon 584fd2ed4d2SMikulas Patocka #define dm_sector_div64(x, y)( \ 585fd2ed4d2SMikulas Patocka { \ 586fd2ed4d2SMikulas Patocka u64 _res; \ 587fd2ed4d2SMikulas Patocka (x) = div64_u64_rem(x, y, &_res); \ 588fd2ed4d2SMikulas Patocka _res; \ 589fd2ed4d2SMikulas Patocka } \ 590fd2ed4d2SMikulas Patocka ) 591fd2ed4d2SMikulas Patocka 5920da336e5SAlasdair G Kergon /* 5930da336e5SAlasdair G Kergon * Ceiling(n / sz) 5940da336e5SAlasdair G Kergon */ 5950da336e5SAlasdair G Kergon #define dm_div_up(n, sz) (((n) + (sz) - 1) / (sz)) 5960da336e5SAlasdair G Kergon 5970da336e5SAlasdair G Kergon #define dm_sector_div_up(n, sz) ( \ 5980da336e5SAlasdair G Kergon { \ 5990da336e5SAlasdair G Kergon sector_t _r = ((n) + (sz) - 1); \ 6000da336e5SAlasdair G Kergon sector_div(_r, (sz)); \ 6010da336e5SAlasdair G Kergon _r; \ 6020da336e5SAlasdair G Kergon } \ 6030da336e5SAlasdair G Kergon ) 6040da336e5SAlasdair G Kergon 6050da336e5SAlasdair G Kergon /* 6060da336e5SAlasdair G Kergon * ceiling(n / size) * size 6070da336e5SAlasdair G Kergon */ 6080da336e5SAlasdair G Kergon #define dm_round_up(n, sz) (dm_div_up((n), (sz)) * (sz)) 6090da336e5SAlasdair G Kergon 610d63a5ce3SMikulas Patocka #define dm_array_too_big(fixed, obj, num) \ 611d63a5ce3SMikulas Patocka ((num) > (UINT_MAX - (fixed)) / (obj)) 612d63a5ce3SMikulas Patocka 61356a67df7SMike Snitzer /* 61456a67df7SMike Snitzer * Sector offset taken relative to the start of the target instead of 61556a67df7SMike Snitzer * relative to the start of the device. 61656a67df7SMike Snitzer */ 61756a67df7SMike Snitzer #define dm_target_offset(ti, sector) ((sector) - (ti)->begin) 61856a67df7SMike Snitzer 6190da336e5SAlasdair G Kergon static inline sector_t to_sector(unsigned long n) 6200da336e5SAlasdair G Kergon { 6210da336e5SAlasdair G Kergon return (n >> SECTOR_SHIFT); 6220da336e5SAlasdair G Kergon } 6230da336e5SAlasdair G Kergon 6240da336e5SAlasdair G Kergon static inline unsigned long to_bytes(sector_t n) 6250da336e5SAlasdair G Kergon { 6260da336e5SAlasdair G Kergon return (n << SECTOR_SHIFT); 6270da336e5SAlasdair G Kergon } 6280da336e5SAlasdair G Kergon 6291da177e4SLinus Torvalds #endif /* _LINUX_DEVICE_MAPPER_H */ 630