xref: /openbmc/linux/include/linux/device-mapper.h (revision 0bdb50c531f7377a9da80d3ce2d61f389c84cb30)
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 
22e83068a5SMike Snitzer /*
23e83068a5SMike Snitzer  * Type of table, mapped_device's mempool and request_queue
24e83068a5SMike Snitzer  */
257e0d574fSBart Van Assche enum dm_queue_mode {
267e0d574fSBart Van Assche 	DM_TYPE_NONE		 = 0,
277e0d574fSBart Van Assche 	DM_TYPE_BIO_BASED	 = 1,
287e0d574fSBart Van Assche 	DM_TYPE_REQUEST_BASED	 = 2,
29953923c0SMike Snitzer 	DM_TYPE_DAX_BIO_BASED	 = 3,
30953923c0SMike Snitzer 	DM_TYPE_NVME_BIO_BASED	 = 4,
317e0d574fSBart Van Assche };
32e83068a5SMike Snitzer 
331da177e4SLinus Torvalds typedef enum { STATUSTYPE_INFO, STATUSTYPE_TABLE } status_type_t;
341da177e4SLinus Torvalds 
351da177e4SLinus Torvalds union map_info {
361da177e4SLinus Torvalds 	void *ptr;
371da177e4SLinus Torvalds };
381da177e4SLinus Torvalds 
391da177e4SLinus Torvalds /*
401da177e4SLinus Torvalds  * In the constructor the target parameter will already have the
411da177e4SLinus Torvalds  * table, type, begin and len fields filled in.
421da177e4SLinus Torvalds  */
431da177e4SLinus Torvalds typedef int (*dm_ctr_fn) (struct dm_target *target,
441da177e4SLinus Torvalds 			  unsigned int argc, char **argv);
451da177e4SLinus Torvalds 
461da177e4SLinus Torvalds /*
471da177e4SLinus Torvalds  * The destructor doesn't need to free the dm_target, just
481da177e4SLinus Torvalds  * anything hidden ti->private.
491da177e4SLinus Torvalds  */
501da177e4SLinus Torvalds typedef void (*dm_dtr_fn) (struct dm_target *ti);
511da177e4SLinus Torvalds 
521da177e4SLinus Torvalds /*
531da177e4SLinus Torvalds  * The map function must return:
541da177e4SLinus Torvalds  * < 0: error
551da177e4SLinus Torvalds  * = 0: The target will handle the io by resubmitting it later
5645cbcd79SKiyoshi Ueda  * = 1: simple remap complete
572e93ccc1SKiyoshi Ueda  * = 2: The target wants to push back the io
581da177e4SLinus Torvalds  */
597de3ee57SMikulas Patocka typedef int (*dm_map_fn) (struct dm_target *ti, struct bio *bio);
60e5863d9aSMike Snitzer typedef int (*dm_clone_and_map_request_fn) (struct dm_target *ti,
61e5863d9aSMike Snitzer 					    struct request *rq,
62e5863d9aSMike Snitzer 					    union map_info *map_context,
63e5863d9aSMike Snitzer 					    struct request **clone);
64e5863d9aSMike Snitzer typedef void (*dm_release_clone_request_fn) (struct request *clone);
651da177e4SLinus Torvalds 
661da177e4SLinus Torvalds /*
671da177e4SLinus Torvalds  * Returns:
681da177e4SLinus Torvalds  * < 0 : error (currently ignored)
691da177e4SLinus Torvalds  * 0   : ended successfully
701da177e4SLinus Torvalds  * 1   : for some reason the io has still not completed (eg,
711da177e4SLinus Torvalds  *       multipath target might want to requeue a failed io).
722e93ccc1SKiyoshi Ueda  * 2   : The target wants to push back the io
731da177e4SLinus Torvalds  */
741da177e4SLinus Torvalds typedef int (*dm_endio_fn) (struct dm_target *ti,
754e4cbee9SChristoph Hellwig 			    struct bio *bio, blk_status_t *error);
767d76345dSKiyoshi Ueda typedef int (*dm_request_endio_fn) (struct dm_target *ti,
772a842acaSChristoph Hellwig 				    struct request *clone, blk_status_t error,
787d76345dSKiyoshi Ueda 				    union map_info *map_context);
791da177e4SLinus Torvalds 
801da177e4SLinus Torvalds typedef void (*dm_presuspend_fn) (struct dm_target *ti);
81d67ee213SMike Snitzer typedef void (*dm_presuspend_undo_fn) (struct dm_target *ti);
821da177e4SLinus Torvalds typedef void (*dm_postsuspend_fn) (struct dm_target *ti);
838757b776SMilan Broz typedef int (*dm_preresume_fn) (struct dm_target *ti);
841da177e4SLinus Torvalds typedef void (*dm_resume_fn) (struct dm_target *ti);
851da177e4SLinus Torvalds 
86fd7c092eSMikulas Patocka typedef void (*dm_status_fn) (struct dm_target *ti, status_type_t status_type,
871f4e0ff0SAlasdair G Kergon 			      unsigned status_flags, char *result, unsigned maxlen);
881da177e4SLinus Torvalds 
891eb5fa84SMike Snitzer typedef int (*dm_message_fn) (struct dm_target *ti, unsigned argc, char **argv,
901eb5fa84SMike Snitzer 			      char *result, unsigned maxlen);
911da177e4SLinus Torvalds 
925bd5e8d8SMike Snitzer typedef int (*dm_prepare_ioctl_fn) (struct dm_target *ti, struct block_device **bdev);
93aa129a22SMilan Broz 
94e76239a3SChristoph Hellwig typedef int (*dm_report_zones_fn) (struct dm_target *ti, sector_t sector,
95e76239a3SChristoph Hellwig 				   struct blk_zone *zones,
96e76239a3SChristoph Hellwig 				   unsigned int *nr_zones,
97e76239a3SChristoph Hellwig 				   gfp_t gfp_mask);
98e76239a3SChristoph Hellwig 
99058ce5caSAlasdair G Kergon /*
100058ce5caSAlasdair G Kergon  * These iteration functions are typically used to check (and combine)
101058ce5caSAlasdair G Kergon  * properties of underlying devices.
102058ce5caSAlasdair G Kergon  * E.g. Does at least one underlying device support flush?
103058ce5caSAlasdair G Kergon  *      Does any underlying device not support WRITE_SAME?
104058ce5caSAlasdair G Kergon  *
105058ce5caSAlasdair G Kergon  * The callout function is called once for each contiguous section of
106058ce5caSAlasdair G Kergon  * an underlying device.  State can be maintained in *data.
107058ce5caSAlasdair G Kergon  * Return non-zero to stop iterating through any further devices.
108058ce5caSAlasdair G Kergon  */
109af4874e0SMike Snitzer typedef int (*iterate_devices_callout_fn) (struct dm_target *ti,
110af4874e0SMike Snitzer 					   struct dm_dev *dev,
1115dea271bSMike Snitzer 					   sector_t start, sector_t len,
112af4874e0SMike Snitzer 					   void *data);
113af4874e0SMike Snitzer 
114058ce5caSAlasdair G Kergon /*
115058ce5caSAlasdair G Kergon  * This function must iterate through each section of device used by the
116058ce5caSAlasdair G Kergon  * target until it encounters a non-zero return code, which it then returns.
117058ce5caSAlasdair G Kergon  * Returns zero if no callout returned non-zero.
118058ce5caSAlasdair G Kergon  */
119af4874e0SMike Snitzer typedef int (*dm_iterate_devices_fn) (struct dm_target *ti,
120af4874e0SMike Snitzer 				      iterate_devices_callout_fn fn,
121af4874e0SMike Snitzer 				      void *data);
122af4874e0SMike Snitzer 
12340bea431SMike Snitzer typedef void (*dm_io_hints_fn) (struct dm_target *ti,
12440bea431SMike Snitzer 				struct queue_limits *limits);
12540bea431SMike Snitzer 
1267d76345dSKiyoshi Ueda /*
1277d76345dSKiyoshi Ueda  * Returns:
1287d76345dSKiyoshi Ueda  *    0: The target can handle the next I/O immediately.
1297d76345dSKiyoshi Ueda  *    1: The target can't handle the next I/O immediately.
1307d76345dSKiyoshi Ueda  */
1317d76345dSKiyoshi Ueda typedef int (*dm_busy_fn) (struct dm_target *ti);
1327d76345dSKiyoshi Ueda 
133545ed20eSToshi Kani /*
134545ed20eSToshi Kani  * Returns:
135545ed20eSToshi Kani  *  < 0 : error
136545ed20eSToshi Kani  * >= 0 : the number of bytes accessible at the address
137545ed20eSToshi Kani  */
138817bf402SDan Williams typedef long (*dm_dax_direct_access_fn) (struct dm_target *ti, pgoff_t pgoff,
139817bf402SDan Williams 		long nr_pages, void **kaddr, pfn_t *pfn);
140b3a9a0c3SDan Williams typedef size_t (*dm_dax_copy_iter_fn)(struct dm_target *ti, pgoff_t pgoff,
1417e026c8cSDan Williams 		void *addr, size_t bytes, struct iov_iter *i);
142f26c5719SDan Williams #define PAGE_SECTORS (PAGE_SIZE / 512)
143545ed20eSToshi Kani 
1441da177e4SLinus Torvalds void dm_error(const char *message);
1451da177e4SLinus Torvalds 
14682b1519bSMikulas Patocka struct dm_dev {
14782b1519bSMikulas Patocka 	struct block_device *bdev;
148817bf402SDan Williams 	struct dax_device *dax_dev;
149aeb5d727SAl Viro 	fmode_t mode;
15082b1519bSMikulas Patocka 	char name[16];
15182b1519bSMikulas Patocka };
15282b1519bSMikulas Patocka 
1534df2bf46SDingXiang dev_t dm_get_dev_t(const char *path);
1544df2bf46SDingXiang 
1553cb40214SBryn Reeves /*
1561da177e4SLinus Torvalds  * Constructors should call these functions to ensure destination devices
1571da177e4SLinus Torvalds  * are opened/closed correctly.
1581da177e4SLinus Torvalds  */
1598215d6ecSNikanth Karthikesan int dm_get_device(struct dm_target *ti, const char *path, fmode_t mode,
1608215d6ecSNikanth Karthikesan 		  struct dm_dev **result);
1611da177e4SLinus Torvalds void dm_put_device(struct dm_target *ti, struct dm_dev *d);
1621da177e4SLinus Torvalds 
1631da177e4SLinus Torvalds /*
1641da177e4SLinus Torvalds  * Information about a target type
1651da177e4SLinus Torvalds  */
166ab4c1424SAndi Kleen 
1671da177e4SLinus Torvalds struct target_type {
168ab4c1424SAndi Kleen 	uint64_t features;
1691da177e4SLinus Torvalds 	const char *name;
1701da177e4SLinus Torvalds 	struct module *module;
1711da177e4SLinus Torvalds 	unsigned version[3];
1721da177e4SLinus Torvalds 	dm_ctr_fn ctr;
1731da177e4SLinus Torvalds 	dm_dtr_fn dtr;
1741da177e4SLinus Torvalds 	dm_map_fn map;
175e5863d9aSMike Snitzer 	dm_clone_and_map_request_fn clone_and_map_rq;
176e5863d9aSMike Snitzer 	dm_release_clone_request_fn release_clone_rq;
1771da177e4SLinus Torvalds 	dm_endio_fn end_io;
1787d76345dSKiyoshi Ueda 	dm_request_endio_fn rq_end_io;
1791da177e4SLinus Torvalds 	dm_presuspend_fn presuspend;
180d67ee213SMike Snitzer 	dm_presuspend_undo_fn presuspend_undo;
1811da177e4SLinus Torvalds 	dm_postsuspend_fn postsuspend;
1828757b776SMilan Broz 	dm_preresume_fn preresume;
1831da177e4SLinus Torvalds 	dm_resume_fn resume;
1841da177e4SLinus Torvalds 	dm_status_fn status;
1851da177e4SLinus Torvalds 	dm_message_fn message;
186e56f81e0SChristoph Hellwig 	dm_prepare_ioctl_fn prepare_ioctl;
187e76239a3SChristoph Hellwig #ifdef CONFIG_BLK_DEV_ZONED
188e76239a3SChristoph Hellwig 	dm_report_zones_fn report_zones;
189e76239a3SChristoph Hellwig #endif
1907d76345dSKiyoshi Ueda 	dm_busy_fn busy;
191af4874e0SMike Snitzer 	dm_iterate_devices_fn iterate_devices;
19240bea431SMike Snitzer 	dm_io_hints_fn io_hints;
193817bf402SDan Williams 	dm_dax_direct_access_fn direct_access;
194b3a9a0c3SDan Williams 	dm_dax_copy_iter_fn dax_copy_from_iter;
195b3a9a0c3SDan Williams 	dm_dax_copy_iter_fn dax_copy_to_iter;
19645194e4fSCheng Renquan 
19745194e4fSCheng Renquan 	/* For internal device-mapper use. */
19845194e4fSCheng Renquan 	struct list_head list;
1991da177e4SLinus Torvalds };
2001da177e4SLinus Torvalds 
2013791e2fcSAlasdair G Kergon /*
2023791e2fcSAlasdair G Kergon  * Target features
2033791e2fcSAlasdair G Kergon  */
2043791e2fcSAlasdair G Kergon 
2053791e2fcSAlasdair G Kergon /*
2063791e2fcSAlasdair G Kergon  * Any table that contains an instance of this target must have only one.
2073791e2fcSAlasdair G Kergon  */
2083791e2fcSAlasdair G Kergon #define DM_TARGET_SINGLETON		0x00000001
2093791e2fcSAlasdair G Kergon #define dm_target_needs_singleton(type)	((type)->features & DM_TARGET_SINGLETON)
2103791e2fcSAlasdair G Kergon 
211cc6cbe14SAlasdair G Kergon /*
212cc6cbe14SAlasdair G Kergon  * Indicates that a target does not support read-only devices.
213cc6cbe14SAlasdair G Kergon  */
214cc6cbe14SAlasdair G Kergon #define DM_TARGET_ALWAYS_WRITEABLE	0x00000002
215cc6cbe14SAlasdair G Kergon #define dm_target_always_writeable(type) \
216cc6cbe14SAlasdair G Kergon 		((type)->features & DM_TARGET_ALWAYS_WRITEABLE)
217cc6cbe14SAlasdair G Kergon 
21836a0456fSAlasdair G Kergon /*
21936a0456fSAlasdair G Kergon  * Any device that contains a table with an instance of this target may never
22036a0456fSAlasdair G Kergon  * have tables containing any different target type.
22136a0456fSAlasdair G Kergon  */
22236a0456fSAlasdair G Kergon #define DM_TARGET_IMMUTABLE		0x00000004
22336a0456fSAlasdair G Kergon #define dm_target_is_immutable(type)	((type)->features & DM_TARGET_IMMUTABLE)
22436a0456fSAlasdair G Kergon 
225b0d8ed4dSAlasdair G Kergon /*
226f083b09bSMike Snitzer  * Indicates that a target may replace any target; even immutable targets.
227f083b09bSMike Snitzer  * .map, .map_rq, .clone_and_map_rq and .release_clone_rq are all defined.
228f083b09bSMike Snitzer  */
229f083b09bSMike Snitzer #define DM_TARGET_WILDCARD		0x00000008
230f083b09bSMike Snitzer #define dm_target_is_wildcard(type)	((type)->features & DM_TARGET_WILDCARD)
231f083b09bSMike Snitzer 
232f083b09bSMike Snitzer /*
2339b4b5a79SMilan Broz  * A target implements own bio data integrity.
2349b4b5a79SMilan Broz  */
2359b4b5a79SMilan Broz #define DM_TARGET_INTEGRITY		0x00000010
2369b4b5a79SMilan Broz #define dm_target_has_integrity(type)	((type)->features & DM_TARGET_INTEGRITY)
2379b4b5a79SMilan Broz 
238e2460f2aSMikulas Patocka /*
239e2460f2aSMikulas Patocka  * A target passes integrity data to the lower device.
240e2460f2aSMikulas Patocka  */
241e2460f2aSMikulas Patocka #define DM_TARGET_PASSES_INTEGRITY	0x00000020
242e2460f2aSMikulas Patocka #define dm_target_passes_integrity(type) ((type)->features & DM_TARGET_PASSES_INTEGRITY)
243e2460f2aSMikulas Patocka 
244dd88d313SDamien Le Moal /*
245dd88d313SDamien Le Moal  * Indicates that a target supports host-managed zoned block devices.
246dd88d313SDamien Le Moal  */
247dd88d313SDamien Le Moal #define DM_TARGET_ZONED_HM		0x00000040
248dd88d313SDamien Le Moal #define dm_target_supports_zoned_hm(type) ((type)->features & DM_TARGET_ZONED_HM)
249dd88d313SDamien Le Moal 
2501da177e4SLinus Torvalds struct dm_target {
2511da177e4SLinus Torvalds 	struct dm_table *table;
2521da177e4SLinus Torvalds 	struct target_type *type;
2531da177e4SLinus Torvalds 
2541da177e4SLinus Torvalds 	/* target limits */
2551da177e4SLinus Torvalds 	sector_t begin;
2561da177e4SLinus Torvalds 	sector_t len;
2571da177e4SLinus Torvalds 
258542f9038SMike Snitzer 	/* If non-zero, maximum size of I/O submitted to a target. */
259542f9038SMike Snitzer 	uint32_t max_io_len;
2601da177e4SLinus Torvalds 
2611da177e4SLinus Torvalds 	/*
26255a62eefSAlasdair G Kergon 	 * A number of zero-length barrier bios that will be submitted
263f9ab94ceSMikulas Patocka 	 * to the target for the purpose of flushing cache.
264f9ab94ceSMikulas Patocka 	 *
26555a62eefSAlasdair G Kergon 	 * The bio number can be accessed with dm_bio_get_target_bio_nr.
26655a62eefSAlasdair G Kergon 	 * It is a responsibility of the target driver to remap these bios
267f9ab94ceSMikulas Patocka 	 * to the real underlying devices.
268f9ab94ceSMikulas Patocka 	 */
26955a62eefSAlasdair G Kergon 	unsigned num_flush_bios;
270f9ab94ceSMikulas Patocka 
2715ae89a87SMike Snitzer 	/*
27255a62eefSAlasdair G Kergon 	 * The number of discard bios that will be submitted to the target.
27355a62eefSAlasdair G Kergon 	 * The bio number can be accessed with dm_bio_get_target_bio_nr.
2745ae89a87SMike Snitzer 	 */
27555a62eefSAlasdair G Kergon 	unsigned num_discard_bios;
2765ae89a87SMike Snitzer 
277d54eaa5aSMike Snitzer 	/*
27800716545SDenis Semakin 	 * The number of secure erase bios that will be submitted to the target.
27900716545SDenis Semakin 	 * The bio number can be accessed with dm_bio_get_target_bio_nr.
28000716545SDenis Semakin 	 */
28100716545SDenis Semakin 	unsigned num_secure_erase_bios;
28200716545SDenis Semakin 
28300716545SDenis Semakin 	/*
28455a62eefSAlasdair G Kergon 	 * The number of WRITE SAME bios that will be submitted to the target.
28555a62eefSAlasdair G Kergon 	 * The bio number can be accessed with dm_bio_get_target_bio_nr.
286d54eaa5aSMike Snitzer 	 */
28755a62eefSAlasdair G Kergon 	unsigned num_write_same_bios;
288d54eaa5aSMike Snitzer 
289c0820cf5SMikulas Patocka 	/*
290ac62d620SChristoph Hellwig 	 * The number of WRITE ZEROES bios that will be submitted to the target.
291ac62d620SChristoph Hellwig 	 * The bio number can be accessed with dm_bio_get_target_bio_nr.
292ac62d620SChristoph Hellwig 	 */
293ac62d620SChristoph Hellwig 	unsigned num_write_zeroes_bios;
294ac62d620SChristoph Hellwig 
295ac62d620SChristoph Hellwig 	/*
29630187e1dSMike Snitzer 	 * The minimum number of extra bytes allocated in each io for the
29730187e1dSMike Snitzer 	 * target to use.
298c0820cf5SMikulas Patocka 	 */
29930187e1dSMike Snitzer 	unsigned per_io_data_size;
300c0820cf5SMikulas Patocka 
3011da177e4SLinus Torvalds 	/* target specific data */
3021da177e4SLinus Torvalds 	void *private;
3031da177e4SLinus Torvalds 
3041da177e4SLinus Torvalds 	/* Used to provide an error string from the ctr */
3051da177e4SLinus Torvalds 	char *error;
3064c259327SMike Snitzer 
3074c259327SMike Snitzer 	/*
3080e9c24edSJoe Thornber 	 * Set if this target needs to receive flushes regardless of
3090e9c24edSJoe Thornber 	 * whether or not its underlying devices have support.
3100e9c24edSJoe Thornber 	 */
3110e9c24edSJoe Thornber 	bool flush_supported:1;
3120e9c24edSJoe Thornber 
3130e9c24edSJoe Thornber 	/*
3144c259327SMike Snitzer 	 * Set if this target needs to receive discards regardless of
3154c259327SMike Snitzer 	 * whether or not its underlying devices have support.
3164c259327SMike Snitzer 	 */
3170ac55489SAlasdair G Kergon 	bool discards_supported:1;
3181da177e4SLinus Torvalds };
3191da177e4SLinus Torvalds 
3209d357b07SNeilBrown /* Each target can link one of these into the table */
3219d357b07SNeilBrown struct dm_target_callbacks {
3229d357b07SNeilBrown 	struct list_head list;
3239d357b07SNeilBrown 	int (*congested_fn) (struct dm_target_callbacks *, int);
3249d357b07SNeilBrown };
3259d357b07SNeilBrown 
32664f52b0eSMike Snitzer void *dm_per_bio_data(struct bio *bio, size_t data_size);
32764f52b0eSMike Snitzer struct bio *dm_bio_from_per_bio_data(void *data, size_t data_size);
32864f52b0eSMike Snitzer unsigned dm_bio_get_target_bio_nr(const struct bio *bio);
329ddbd658fSMikulas Patocka 
3301da177e4SLinus Torvalds int dm_register_target(struct target_type *t);
33110d3bd09SMikulas Patocka void dm_unregister_target(struct target_type *t);
33217b2f66fSAlasdair G Kergon 
333498f0103SMike Snitzer /*
334498f0103SMike Snitzer  * Target argument parsing.
335498f0103SMike Snitzer  */
336498f0103SMike Snitzer struct dm_arg_set {
337498f0103SMike Snitzer 	unsigned argc;
338498f0103SMike Snitzer 	char **argv;
339498f0103SMike Snitzer };
340498f0103SMike Snitzer 
341498f0103SMike Snitzer /*
342498f0103SMike Snitzer  * The minimum and maximum value of a numeric argument, together with
343498f0103SMike Snitzer  * the error message to use if the number is found to be outside that range.
344498f0103SMike Snitzer  */
345498f0103SMike Snitzer struct dm_arg {
346498f0103SMike Snitzer 	unsigned min;
347498f0103SMike Snitzer 	unsigned max;
348498f0103SMike Snitzer 	char *error;
349498f0103SMike Snitzer };
350498f0103SMike Snitzer 
351498f0103SMike Snitzer /*
352498f0103SMike Snitzer  * Validate the next argument, either returning it as *value or, if invalid,
353498f0103SMike Snitzer  * returning -EINVAL and setting *error.
354498f0103SMike Snitzer  */
3555916a22bSEric Biggers int dm_read_arg(const struct dm_arg *arg, struct dm_arg_set *arg_set,
356498f0103SMike Snitzer 		unsigned *value, char **error);
357498f0103SMike Snitzer 
358498f0103SMike Snitzer /*
359498f0103SMike Snitzer  * Process the next argument as the start of a group containing between
360498f0103SMike Snitzer  * arg->min and arg->max further arguments. Either return the size as
361498f0103SMike Snitzer  * *num_args or, if invalid, return -EINVAL and set *error.
362498f0103SMike Snitzer  */
3635916a22bSEric Biggers int dm_read_arg_group(const struct dm_arg *arg, struct dm_arg_set *arg_set,
364498f0103SMike Snitzer 		      unsigned *num_args, char **error);
365498f0103SMike Snitzer 
366498f0103SMike Snitzer /*
367498f0103SMike Snitzer  * Return the current argument and shift to the next.
368498f0103SMike Snitzer  */
369498f0103SMike Snitzer const char *dm_shift_arg(struct dm_arg_set *as);
370498f0103SMike Snitzer 
371498f0103SMike Snitzer /*
372498f0103SMike Snitzer  * Move through num_args arguments.
373498f0103SMike Snitzer  */
374498f0103SMike Snitzer void dm_consume_args(struct dm_arg_set *as, unsigned num_args);
375498f0103SMike Snitzer 
37617b2f66fSAlasdair G Kergon /*-----------------------------------------------------------------
37717b2f66fSAlasdair G Kergon  * Functions for creating and manipulating mapped devices.
37817b2f66fSAlasdair G Kergon  * Drop the reference with dm_put when you finish with the object.
37917b2f66fSAlasdair G Kergon  *---------------------------------------------------------------*/
38017b2f66fSAlasdair G Kergon 
38117b2f66fSAlasdair G Kergon /*
38217b2f66fSAlasdair G Kergon  * DM_ANY_MINOR chooses the next available minor number.
38317b2f66fSAlasdair G Kergon  */
38417b2f66fSAlasdair G Kergon #define DM_ANY_MINOR (-1)
38517b2f66fSAlasdair G Kergon int dm_create(int minor, struct mapped_device **md);
38617b2f66fSAlasdair G Kergon 
38717b2f66fSAlasdair G Kergon /*
38817b2f66fSAlasdair G Kergon  * Reference counting for md.
38917b2f66fSAlasdair G Kergon  */
39017b2f66fSAlasdair G Kergon struct mapped_device *dm_get_md(dev_t dev);
39117b2f66fSAlasdair G Kergon void dm_get(struct mapped_device *md);
39209ee96b2SMikulas Patocka int dm_hold(struct mapped_device *md);
39317b2f66fSAlasdair G Kergon void dm_put(struct mapped_device *md);
39417b2f66fSAlasdair G Kergon 
39517b2f66fSAlasdair G Kergon /*
39617b2f66fSAlasdair G Kergon  * An arbitrary pointer may be stored alongside a mapped device.
39717b2f66fSAlasdair G Kergon  */
39817b2f66fSAlasdair G Kergon void dm_set_mdptr(struct mapped_device *md, void *ptr);
39917b2f66fSAlasdair G Kergon void *dm_get_mdptr(struct mapped_device *md);
40017b2f66fSAlasdair G Kergon 
40117b2f66fSAlasdair G Kergon /*
40217b2f66fSAlasdair G Kergon  * A device can still be used while suspended, but I/O is deferred.
40317b2f66fSAlasdair G Kergon  */
404a3d77d35SKiyoshi Ueda int dm_suspend(struct mapped_device *md, unsigned suspend_flags);
40517b2f66fSAlasdair G Kergon int dm_resume(struct mapped_device *md);
40617b2f66fSAlasdair G Kergon 
40717b2f66fSAlasdair G Kergon /*
40817b2f66fSAlasdair G Kergon  * Event functions.
40917b2f66fSAlasdair G Kergon  */
41017b2f66fSAlasdair G Kergon uint32_t dm_get_event_nr(struct mapped_device *md);
41117b2f66fSAlasdair G Kergon int dm_wait_event(struct mapped_device *md, int event_nr);
4127a8c3d3bSMike Anderson uint32_t dm_next_uevent_seq(struct mapped_device *md);
4137a8c3d3bSMike Anderson void dm_uevent_add(struct mapped_device *md, struct list_head *elist);
41417b2f66fSAlasdair G Kergon 
41517b2f66fSAlasdair G Kergon /*
41617b2f66fSAlasdair G Kergon  * Info functions.
41717b2f66fSAlasdair G Kergon  */
41872d94861SAlasdair G Kergon const char *dm_device_name(struct mapped_device *md);
41996a1f7dbSMike Anderson int dm_copy_name_and_uuid(struct mapped_device *md, char *name, char *uuid);
42017b2f66fSAlasdair G Kergon struct gendisk *dm_disk(struct mapped_device *md);
42164dbce58SKiyoshi Ueda int dm_suspended(struct dm_target *ti);
4222e93ccc1SKiyoshi Ueda int dm_noflush_suspending(struct dm_target *ti);
4231dd40c3eSMikulas Patocka void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors);
424e76239a3SChristoph Hellwig void dm_remap_zone_report(struct dm_target *ti, sector_t start,
425e76239a3SChristoph Hellwig 			  struct blk_zone *zones, unsigned int *nr_zones);
426cec47e3dSKiyoshi Ueda union map_info *dm_get_rq_mapinfo(struct request *rq);
42717b2f66fSAlasdair G Kergon 
428f84cb8a4SMike Snitzer struct queue_limits *dm_get_queue_limits(struct mapped_device *md);
429f84cb8a4SMike Snitzer 
43017b2f66fSAlasdair G Kergon /*
43117b2f66fSAlasdair G Kergon  * Geometry functions.
43217b2f66fSAlasdair G Kergon  */
43317b2f66fSAlasdair G Kergon int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo);
43417b2f66fSAlasdair G Kergon int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo);
43517b2f66fSAlasdair G Kergon 
43617b2f66fSAlasdair G Kergon /*-----------------------------------------------------------------
43717b2f66fSAlasdair G Kergon  * Functions for manipulating device-mapper tables.
43817b2f66fSAlasdair G Kergon  *---------------------------------------------------------------*/
43917b2f66fSAlasdair G Kergon 
44017b2f66fSAlasdair G Kergon /*
44117b2f66fSAlasdair G Kergon  * First create an empty table.
44217b2f66fSAlasdair G Kergon  */
443aeb5d727SAl Viro int dm_table_create(struct dm_table **result, fmode_t mode,
44417b2f66fSAlasdair G Kergon 		    unsigned num_targets, struct mapped_device *md);
44517b2f66fSAlasdair G Kergon 
44617b2f66fSAlasdair G Kergon /*
44717b2f66fSAlasdair G Kergon  * Then call this once for each target.
44817b2f66fSAlasdair G Kergon  */
44917b2f66fSAlasdair G Kergon int dm_table_add_target(struct dm_table *t, const char *type,
45017b2f66fSAlasdair G Kergon 			sector_t start, sector_t len, char *params);
45117b2f66fSAlasdair G Kergon 
45217b2f66fSAlasdair G Kergon /*
4539d357b07SNeilBrown  * Target_ctr should call this if it needs to add any callbacks.
4549d357b07SNeilBrown  */
4559d357b07SNeilBrown void dm_table_add_target_callbacks(struct dm_table *t, struct dm_target_callbacks *cb);
4569d357b07SNeilBrown 
4579d357b07SNeilBrown /*
458e83068a5SMike Snitzer  * Target can use this to set the table's type.
459e83068a5SMike Snitzer  * Can only ever be called from a target's ctr.
460e83068a5SMike Snitzer  * Useful for "hybrid" target (supports both bio-based
461e83068a5SMike Snitzer  * and request-based).
462e83068a5SMike Snitzer  */
4637e0d574fSBart Van Assche void dm_table_set_type(struct dm_table *t, enum dm_queue_mode type);
464e83068a5SMike Snitzer 
465e83068a5SMike Snitzer /*
46617b2f66fSAlasdair G Kergon  * Finally call this to make the table ready for use.
46717b2f66fSAlasdair G Kergon  */
46817b2f66fSAlasdair G Kergon int dm_table_complete(struct dm_table *t);
46917b2f66fSAlasdair G Kergon 
47017b2f66fSAlasdair G Kergon /*
471f6e7baadSBrian Norris  * Destroy the table when finished.
472f6e7baadSBrian Norris  */
473f6e7baadSBrian Norris void dm_table_destroy(struct dm_table *t);
474f6e7baadSBrian Norris 
475f6e7baadSBrian Norris /*
476542f9038SMike Snitzer  * Target may require that it is never sent I/O larger than len.
477542f9038SMike Snitzer  */
478542f9038SMike Snitzer int __must_check dm_set_target_max_io_len(struct dm_target *ti, sector_t len);
479542f9038SMike Snitzer 
480542f9038SMike Snitzer /*
48117b2f66fSAlasdair G Kergon  * Table reference counting.
48217b2f66fSAlasdair G Kergon  */
48383d5e5b0SMikulas Patocka struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx);
48483d5e5b0SMikulas Patocka void dm_put_live_table(struct mapped_device *md, int srcu_idx);
48583d5e5b0SMikulas Patocka void dm_sync_table(struct mapped_device *md);
48617b2f66fSAlasdair G Kergon 
48717b2f66fSAlasdair G Kergon /*
48817b2f66fSAlasdair G Kergon  * Queries
48917b2f66fSAlasdair G Kergon  */
49017b2f66fSAlasdair G Kergon sector_t dm_table_get_size(struct dm_table *t);
49117b2f66fSAlasdair G Kergon unsigned int dm_table_get_num_targets(struct dm_table *t);
492aeb5d727SAl Viro fmode_t dm_table_get_mode(struct dm_table *t);
49317b2f66fSAlasdair G Kergon struct mapped_device *dm_table_get_md(struct dm_table *t);
494f349b0a3SMichał Mirosław const char *dm_table_device_name(struct dm_table *t);
49517b2f66fSAlasdair G Kergon 
49617b2f66fSAlasdair G Kergon /*
49717b2f66fSAlasdair G Kergon  * Trigger an event.
49817b2f66fSAlasdair G Kergon  */
49917b2f66fSAlasdair G Kergon void dm_table_event(struct dm_table *t);
50017b2f66fSAlasdair G Kergon 
50117b2f66fSAlasdair G Kergon /*
5029974fa2cSMike Snitzer  * Run the queue for request-based targets.
5039974fa2cSMike Snitzer  */
5049974fa2cSMike Snitzer void dm_table_run_md_queue_async(struct dm_table *t);
5059974fa2cSMike Snitzer 
5069974fa2cSMike Snitzer /*
50717b2f66fSAlasdair G Kergon  * The device must be suspended before calling this method.
508042d2a9bSAlasdair G Kergon  * Returns the previous table, which the caller must destroy.
50917b2f66fSAlasdair G Kergon  */
510042d2a9bSAlasdair G Kergon struct dm_table *dm_swap_table(struct mapped_device *md,
511042d2a9bSAlasdair G Kergon 			       struct dm_table *t);
51217b2f66fSAlasdair G Kergon 
51354160904SMikulas Patocka /*
51454160904SMikulas Patocka  * A wrapper around vmalloc.
51554160904SMikulas Patocka  */
51654160904SMikulas Patocka void *dm_vcalloc(unsigned long nmemb, unsigned long elem_size);
51754160904SMikulas Patocka 
5180da336e5SAlasdair G Kergon /*-----------------------------------------------------------------
5190da336e5SAlasdair G Kergon  * Macros.
5200da336e5SAlasdair G Kergon  *---------------------------------------------------------------*/
5210da336e5SAlasdair G Kergon #define DM_NAME "device-mapper"
5220da336e5SAlasdair G Kergon 
52360440789SBart Van Assche #define DM_RATELIMIT(pr_func, fmt, ...)					\
52460440789SBart Van Assche do {									\
52560440789SBart Van Assche 	static DEFINE_RATELIMIT_STATE(rs, DEFAULT_RATELIMIT_INTERVAL,	\
52660440789SBart Van Assche 				      DEFAULT_RATELIMIT_BURST);		\
52760440789SBart Van Assche 									\
52860440789SBart Van Assche 	if (__ratelimit(&rs))						\
52960440789SBart Van Assche 		pr_func(DM_FMT(fmt), ##__VA_ARGS__);			\
53060440789SBart Van Assche } while (0)
53171a16736SNamhyung Kim 
532d2c3c8dcSJoe Perches #define DM_FMT(fmt) DM_NAME ": " DM_MSG_PREFIX ": " fmt "\n"
53310d3bd09SMikulas Patocka 
534d2c3c8dcSJoe Perches #define DMCRIT(fmt, ...) pr_crit(DM_FMT(fmt), ##__VA_ARGS__)
535d2c3c8dcSJoe Perches 
536d2c3c8dcSJoe Perches #define DMERR(fmt, ...) pr_err(DM_FMT(fmt), ##__VA_ARGS__)
53760440789SBart Van Assche #define DMERR_LIMIT(fmt, ...) DM_RATELIMIT(pr_err, fmt, ##__VA_ARGS__)
538d2c3c8dcSJoe Perches #define DMWARN(fmt, ...) pr_warn(DM_FMT(fmt), ##__VA_ARGS__)
53960440789SBart Van Assche #define DMWARN_LIMIT(fmt, ...) DM_RATELIMIT(pr_warn, fmt, ##__VA_ARGS__)
540d2c3c8dcSJoe Perches #define DMINFO(fmt, ...) pr_info(DM_FMT(fmt), ##__VA_ARGS__)
54160440789SBart Van Assche #define DMINFO_LIMIT(fmt, ...) DM_RATELIMIT(pr_info, fmt, ##__VA_ARGS__)
5420da336e5SAlasdair G Kergon 
5430da336e5SAlasdair G Kergon #ifdef CONFIG_DM_DEBUG
544d2c3c8dcSJoe Perches #define DMDEBUG(fmt, ...) printk(KERN_DEBUG DM_FMT(fmt), ##__VA_ARGS__)
54560440789SBart Van Assche #define DMDEBUG_LIMIT(fmt, ...) DM_RATELIMIT(pr_debug, fmt, ##__VA_ARGS__)
5460da336e5SAlasdair G Kergon #else
547d2c3c8dcSJoe Perches #define DMDEBUG(fmt, ...) no_printk(fmt, ##__VA_ARGS__)
548d2c3c8dcSJoe Perches #define DMDEBUG_LIMIT(fmt, ...) no_printk(fmt, ##__VA_ARGS__)
5490da336e5SAlasdair G Kergon #endif
5500da336e5SAlasdair G Kergon 
5510da336e5SAlasdair G Kergon #define DMEMIT(x...) sz += ((sz >= maxlen) ? \
5520da336e5SAlasdair G Kergon 			  0 : scnprintf(result + sz, maxlen - sz, x))
5530da336e5SAlasdair G Kergon 
5540da336e5SAlasdair G Kergon /*
5550da336e5SAlasdair G Kergon  * Definitions of return values from target end_io function.
5560da336e5SAlasdair G Kergon  */
5577ed8578aSChristoph Hellwig #define DM_ENDIO_DONE		0
5580da336e5SAlasdair G Kergon #define DM_ENDIO_INCOMPLETE	1
5590da336e5SAlasdair G Kergon #define DM_ENDIO_REQUEUE	2
560ac514ffcSMike Snitzer #define DM_ENDIO_DELAY_REQUEUE	3
5610da336e5SAlasdair G Kergon 
5620da336e5SAlasdair G Kergon /*
5630da336e5SAlasdair G Kergon  * Definitions of return values from target map function.
5640da336e5SAlasdair G Kergon  */
5650da336e5SAlasdair G Kergon #define DM_MAPIO_SUBMITTED	0
5660da336e5SAlasdair G Kergon #define DM_MAPIO_REMAPPED	1
5670da336e5SAlasdair G Kergon #define DM_MAPIO_REQUEUE	DM_ENDIO_REQUEUE
568ac514ffcSMike Snitzer #define DM_MAPIO_DELAY_REQUEUE	DM_ENDIO_DELAY_REQUEUE
569412445acSChristoph Hellwig #define DM_MAPIO_KILL		4
5700da336e5SAlasdair G Kergon 
571fd2ed4d2SMikulas Patocka #define dm_sector_div64(x, y)( \
572fd2ed4d2SMikulas Patocka { \
573fd2ed4d2SMikulas Patocka 	u64 _res; \
574fd2ed4d2SMikulas Patocka 	(x) = div64_u64_rem(x, y, &_res); \
575fd2ed4d2SMikulas Patocka 	_res; \
576fd2ed4d2SMikulas Patocka } \
577fd2ed4d2SMikulas Patocka )
578fd2ed4d2SMikulas Patocka 
5790da336e5SAlasdair G Kergon /*
5800da336e5SAlasdair G Kergon  * Ceiling(n / sz)
5810da336e5SAlasdair G Kergon  */
5820da336e5SAlasdair G Kergon #define dm_div_up(n, sz) (((n) + (sz) - 1) / (sz))
5830da336e5SAlasdair G Kergon 
5840da336e5SAlasdair G Kergon #define dm_sector_div_up(n, sz) ( \
5850da336e5SAlasdair G Kergon { \
5860da336e5SAlasdair G Kergon 	sector_t _r = ((n) + (sz) - 1); \
5870da336e5SAlasdair G Kergon 	sector_div(_r, (sz)); \
5880da336e5SAlasdair G Kergon 	_r; \
5890da336e5SAlasdair G Kergon } \
5900da336e5SAlasdair G Kergon )
5910da336e5SAlasdair G Kergon 
5920da336e5SAlasdair G Kergon /*
5930da336e5SAlasdair G Kergon  * ceiling(n / size) * size
5940da336e5SAlasdair G Kergon  */
5950da336e5SAlasdair G Kergon #define dm_round_up(n, sz) (dm_div_up((n), (sz)) * (sz))
5960da336e5SAlasdair G Kergon 
597d63a5ce3SMikulas Patocka #define dm_array_too_big(fixed, obj, num) \
598d63a5ce3SMikulas Patocka 	((num) > (UINT_MAX - (fixed)) / (obj))
599d63a5ce3SMikulas Patocka 
60056a67df7SMike Snitzer /*
60156a67df7SMike Snitzer  * Sector offset taken relative to the start of the target instead of
60256a67df7SMike Snitzer  * relative to the start of the device.
60356a67df7SMike Snitzer  */
60456a67df7SMike Snitzer #define dm_target_offset(ti, sector) ((sector) - (ti)->begin)
60556a67df7SMike Snitzer 
606*0bdb50c5SNeilBrown static inline sector_t to_sector(unsigned long long n)
6070da336e5SAlasdair G Kergon {
6080da336e5SAlasdair G Kergon 	return (n >> SECTOR_SHIFT);
6090da336e5SAlasdair G Kergon }
6100da336e5SAlasdair G Kergon 
6110da336e5SAlasdair G Kergon static inline unsigned long to_bytes(sector_t n)
6120da336e5SAlasdair G Kergon {
6130da336e5SAlasdair G Kergon 	return (n << SECTOR_SHIFT);
6140da336e5SAlasdair G Kergon }
6150da336e5SAlasdair G Kergon 
6161da177e4SLinus Torvalds #endif	/* _LINUX_DEVICE_MAPPER_H */
617