Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/*
2 * Copyright (C) 2001 Sistina Software (UK) Limited.
3 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
4 *
5 * This file is released under the LGPL.
6 */
7
8#ifndef _LINUX_DEVICE_MAPPER_H
9#define _LINUX_DEVICE_MAPPER_H
10
11#include <linux/bio.h>
12#include <linux/blkdev.h>
13#include <linux/dm-ioctl.h>
14#include <linux/math64.h>
15#include <linux/ratelimit.h>
16
17struct dm_dev;
18struct dm_target;
19struct dm_table;
20struct dm_report_zones_args;
21struct mapped_device;
22struct bio_vec;
23
24/*
25 * Type of table, mapped_device's mempool and request_queue
26 */
27enum dm_queue_mode {
28 DM_TYPE_NONE = 0,
29 DM_TYPE_BIO_BASED = 1,
30 DM_TYPE_REQUEST_BASED = 2,
31 DM_TYPE_DAX_BIO_BASED = 3,
32};
33
34typedef enum { STATUSTYPE_INFO, STATUSTYPE_TABLE, STATUSTYPE_IMA } status_type_t;
35
36union map_info {
37 void *ptr;
38};
39
40/*
41 * In the constructor the target parameter will already have the
42 * table, type, begin and len fields filled in.
43 */
44typedef int (*dm_ctr_fn) (struct dm_target *target,
45 unsigned int argc, char **argv);
46
47/*
48 * The destructor doesn't need to free the dm_target, just
49 * anything hidden ti->private.
50 */
51typedef void (*dm_dtr_fn) (struct dm_target *ti);
52
53/*
54 * The map function must return:
55 * < 0: error
56 * = 0: The target will handle the io by resubmitting it later
57 * = 1: simple remap complete
58 * = 2: The target wants to push back the io
59 */
60typedef int (*dm_map_fn) (struct dm_target *ti, struct bio *bio);
61typedef int (*dm_clone_and_map_request_fn) (struct dm_target *ti,
62 struct request *rq,
63 union map_info *map_context,
64 struct request **clone);
65typedef void (*dm_release_clone_request_fn) (struct request *clone,
66 union map_info *map_context);
67
68/*
69 * Returns:
70 * < 0 : error (currently ignored)
71 * 0 : ended successfully
72 * 1 : for some reason the io has still not completed (eg,
73 * multipath target might want to requeue a failed io).
74 * 2 : The target wants to push back the io
75 */
76typedef int (*dm_endio_fn) (struct dm_target *ti,
77 struct bio *bio, blk_status_t *error);
78typedef int (*dm_request_endio_fn) (struct dm_target *ti,
79 struct request *clone, blk_status_t error,
80 union map_info *map_context);
81
82typedef void (*dm_presuspend_fn) (struct dm_target *ti);
83typedef void (*dm_presuspend_undo_fn) (struct dm_target *ti);
84typedef void (*dm_postsuspend_fn) (struct dm_target *ti);
85typedef int (*dm_preresume_fn) (struct dm_target *ti);
86typedef void (*dm_resume_fn) (struct dm_target *ti);
87
88typedef void (*dm_status_fn) (struct dm_target *ti, status_type_t status_type,
89 unsigned status_flags, char *result, unsigned maxlen);
90
91typedef int (*dm_message_fn) (struct dm_target *ti, unsigned argc, char **argv,
92 char *result, unsigned maxlen);
93
94typedef int (*dm_prepare_ioctl_fn) (struct dm_target *ti, struct block_device **bdev);
95
96#ifdef CONFIG_BLK_DEV_ZONED
97typedef int (*dm_report_zones_fn) (struct dm_target *ti,
98 struct dm_report_zones_args *args,
99 unsigned int nr_zones);
100#else
101/*
102 * Define dm_report_zones_fn so that targets can assign to NULL if
103 * CONFIG_BLK_DEV_ZONED disabled. Otherwise each target needs to do
104 * awkward #ifdefs in their target_type, etc.
105 */
106typedef int (*dm_report_zones_fn) (struct dm_target *dummy);
107#endif
108
109/*
110 * These iteration functions are typically used to check (and combine)
111 * properties of underlying devices.
112 * E.g. Does at least one underlying device support flush?
113 * Does any underlying device not support WRITE_SAME?
114 *
115 * The callout function is called once for each contiguous section of
116 * an underlying device. State can be maintained in *data.
117 * Return non-zero to stop iterating through any further devices.
118 */
119typedef int (*iterate_devices_callout_fn) (struct dm_target *ti,
120 struct dm_dev *dev,
121 sector_t start, sector_t len,
122 void *data);
123
124/*
125 * This function must iterate through each section of device used by the
126 * target until it encounters a non-zero return code, which it then returns.
127 * Returns zero if no callout returned non-zero.
128 */
129typedef int (*dm_iterate_devices_fn) (struct dm_target *ti,
130 iterate_devices_callout_fn fn,
131 void *data);
132
133typedef void (*dm_io_hints_fn) (struct dm_target *ti,
134 struct queue_limits *limits);
135
136/*
137 * Returns:
138 * 0: The target can handle the next I/O immediately.
139 * 1: The target can't handle the next I/O immediately.
140 */
141typedef int (*dm_busy_fn) (struct dm_target *ti);
142
143/*
144 * Returns:
145 * < 0 : error
146 * >= 0 : the number of bytes accessible at the address
147 */
148typedef long (*dm_dax_direct_access_fn) (struct dm_target *ti, pgoff_t pgoff,
149 long nr_pages, void **kaddr, pfn_t *pfn);
150typedef int (*dm_dax_zero_page_range_fn)(struct dm_target *ti, pgoff_t pgoff,
151 size_t nr_pages);
152
153void dm_error(const char *message);
154
155struct dm_dev {
156 struct block_device *bdev;
157 struct dax_device *dax_dev;
158 fmode_t mode;
159 char name[16];
160};
161
162dev_t dm_get_dev_t(const char *path);
163
164/*
165 * Constructors should call these functions to ensure destination devices
166 * are opened/closed correctly.
167 */
168int dm_get_device(struct dm_target *ti, const char *path, fmode_t mode,
169 struct dm_dev **result);
170void dm_put_device(struct dm_target *ti, struct dm_dev *d);
171
172/*
173 * Information about a target type
174 */
175
176struct target_type {
177 uint64_t features;
178 const char *name;
179 struct module *module;
180 unsigned version[3];
181 dm_ctr_fn ctr;
182 dm_dtr_fn dtr;
183 dm_map_fn map;
184 dm_clone_and_map_request_fn clone_and_map_rq;
185 dm_release_clone_request_fn release_clone_rq;
186 dm_endio_fn end_io;
187 dm_request_endio_fn rq_end_io;
188 dm_presuspend_fn presuspend;
189 dm_presuspend_undo_fn presuspend_undo;
190 dm_postsuspend_fn postsuspend;
191 dm_preresume_fn preresume;
192 dm_resume_fn resume;
193 dm_status_fn status;
194 dm_message_fn message;
195 dm_prepare_ioctl_fn prepare_ioctl;
196 dm_report_zones_fn report_zones;
197 dm_busy_fn busy;
198 dm_iterate_devices_fn iterate_devices;
199 dm_io_hints_fn io_hints;
200 dm_dax_direct_access_fn direct_access;
201 dm_dax_zero_page_range_fn dax_zero_page_range;
202
203 /* For internal device-mapper use. */
204 struct list_head list;
205};
206
207/*
208 * Target features
209 */
210
211/*
212 * Any table that contains an instance of this target must have only one.
213 */
214#define DM_TARGET_SINGLETON 0x00000001
215#define dm_target_needs_singleton(type) ((type)->features & DM_TARGET_SINGLETON)
216
217/*
218 * Indicates that a target does not support read-only devices.
219 */
220#define DM_TARGET_ALWAYS_WRITEABLE 0x00000002
221#define dm_target_always_writeable(type) \
222 ((type)->features & DM_TARGET_ALWAYS_WRITEABLE)
223
224/*
225 * Any device that contains a table with an instance of this target may never
226 * have tables containing any different target type.
227 */
228#define DM_TARGET_IMMUTABLE 0x00000004
229#define dm_target_is_immutable(type) ((type)->features & DM_TARGET_IMMUTABLE)
230
231/*
232 * Indicates that a target may replace any target; even immutable targets.
233 * .map, .map_rq, .clone_and_map_rq and .release_clone_rq are all defined.
234 */
235#define DM_TARGET_WILDCARD 0x00000008
236#define dm_target_is_wildcard(type) ((type)->features & DM_TARGET_WILDCARD)
237
238/*
239 * A target implements own bio data integrity.
240 */
241#define DM_TARGET_INTEGRITY 0x00000010
242#define dm_target_has_integrity(type) ((type)->features & DM_TARGET_INTEGRITY)
243
244/*
245 * A target passes integrity data to the lower device.
246 */
247#define DM_TARGET_PASSES_INTEGRITY 0x00000020
248#define dm_target_passes_integrity(type) ((type)->features & DM_TARGET_PASSES_INTEGRITY)
249
250/*
251 * Indicates support for zoned block devices:
252 * - DM_TARGET_ZONED_HM: the target also supports host-managed zoned
253 * block devices but does not support combining different zoned models.
254 * - DM_TARGET_MIXED_ZONED_MODEL: the target supports combining multiple
255 * devices with different zoned models.
256 */
257#ifdef CONFIG_BLK_DEV_ZONED
258#define DM_TARGET_ZONED_HM 0x00000040
259#define dm_target_supports_zoned_hm(type) ((type)->features & DM_TARGET_ZONED_HM)
260#else
261#define DM_TARGET_ZONED_HM 0x00000000
262#define dm_target_supports_zoned_hm(type) (false)
263#endif
264
265/*
266 * A target handles REQ_NOWAIT
267 */
268#define DM_TARGET_NOWAIT 0x00000080
269#define dm_target_supports_nowait(type) ((type)->features & DM_TARGET_NOWAIT)
270
271/*
272 * A target supports passing through inline crypto support.
273 */
274#define DM_TARGET_PASSES_CRYPTO 0x00000100
275#define dm_target_passes_crypto(type) ((type)->features & DM_TARGET_PASSES_CRYPTO)
276
277#ifdef CONFIG_BLK_DEV_ZONED
278#define DM_TARGET_MIXED_ZONED_MODEL 0x00000200
279#define dm_target_supports_mixed_zoned_model(type) \
280 ((type)->features & DM_TARGET_MIXED_ZONED_MODEL)
281#else
282#define DM_TARGET_MIXED_ZONED_MODEL 0x00000000
283#define dm_target_supports_mixed_zoned_model(type) (false)
284#endif
285
286struct dm_target {
287 struct dm_table *table;
288 struct target_type *type;
289
290 /* target limits */
291 sector_t begin;
292 sector_t len;
293
294 /* If non-zero, maximum size of I/O submitted to a target. */
295 uint32_t max_io_len;
296
297 /*
298 * A number of zero-length barrier bios that will be submitted
299 * to the target for the purpose of flushing cache.
300 *
301 * The bio number can be accessed with dm_bio_get_target_bio_nr.
302 * It is a responsibility of the target driver to remap these bios
303 * to the real underlying devices.
304 */
305 unsigned num_flush_bios;
306
307 /*
308 * The number of discard bios that will be submitted to the target.
309 * The bio number can be accessed with dm_bio_get_target_bio_nr.
310 */
311 unsigned num_discard_bios;
312
313 /*
314 * The number of secure erase bios that will be submitted to the target.
315 * The bio number can be accessed with dm_bio_get_target_bio_nr.
316 */
317 unsigned num_secure_erase_bios;
318
319 /*
320 * The number of WRITE SAME bios that will be submitted to the target.
321 * The bio number can be accessed with dm_bio_get_target_bio_nr.
322 */
323 unsigned num_write_same_bios;
324
325 /*
326 * The number of WRITE ZEROES bios that will be submitted to the target.
327 * The bio number can be accessed with dm_bio_get_target_bio_nr.
328 */
329 unsigned num_write_zeroes_bios;
330
331 /*
332 * The minimum number of extra bytes allocated in each io for the
333 * target to use.
334 */
335 unsigned per_io_data_size;
336
337 /* target specific data */
338 void *private;
339
340 /* Used to provide an error string from the ctr */
341 char *error;
342
343 /*
344 * Set if this target needs to receive flushes regardless of
345 * whether or not its underlying devices have support.
346 */
347 bool flush_supported:1;
348
349 /*
350 * Set if this target needs to receive discards regardless of
351 * whether or not its underlying devices have support.
352 */
353 bool discards_supported:1;
354
355 /*
356 * Set if we need to limit the number of in-flight bios when swapping.
357 */
358 bool limit_swap_bios:1;
359
360 /*
361 * Set if this target implements a a zoned device and needs emulation of
362 * zone append operations using regular writes.
363 */
364 bool emulate_zone_append:1;
365};
366
367void *dm_per_bio_data(struct bio *bio, size_t data_size);
368struct bio *dm_bio_from_per_bio_data(void *data, size_t data_size);
369unsigned dm_bio_get_target_bio_nr(const struct bio *bio);
370
371u64 dm_start_time_ns_from_clone(struct bio *bio);
372
373int dm_register_target(struct target_type *t);
374void dm_unregister_target(struct target_type *t);
375
376/*
377 * Target argument parsing.
378 */
379struct dm_arg_set {
380 unsigned argc;
381 char **argv;
382};
383
384/*
385 * The minimum and maximum value of a numeric argument, together with
386 * the error message to use if the number is found to be outside that range.
387 */
388struct dm_arg {
389 unsigned min;
390 unsigned max;
391 char *error;
392};
393
394/*
395 * Validate the next argument, either returning it as *value or, if invalid,
396 * returning -EINVAL and setting *error.
397 */
398int dm_read_arg(const struct dm_arg *arg, struct dm_arg_set *arg_set,
399 unsigned *value, char **error);
400
401/*
402 * Process the next argument as the start of a group containing between
403 * arg->min and arg->max further arguments. Either return the size as
404 * *num_args or, if invalid, return -EINVAL and set *error.
405 */
406int dm_read_arg_group(const struct dm_arg *arg, struct dm_arg_set *arg_set,
407 unsigned *num_args, char **error);
408
409/*
410 * Return the current argument and shift to the next.
411 */
412const char *dm_shift_arg(struct dm_arg_set *as);
413
414/*
415 * Move through num_args arguments.
416 */
417void dm_consume_args(struct dm_arg_set *as, unsigned num_args);
418
419/*-----------------------------------------------------------------
420 * Functions for creating and manipulating mapped devices.
421 * Drop the reference with dm_put when you finish with the object.
422 *---------------------------------------------------------------*/
423
424/*
425 * DM_ANY_MINOR chooses the next available minor number.
426 */
427#define DM_ANY_MINOR (-1)
428int dm_create(int minor, struct mapped_device **md);
429
430/*
431 * Reference counting for md.
432 */
433struct mapped_device *dm_get_md(dev_t dev);
434void dm_get(struct mapped_device *md);
435int dm_hold(struct mapped_device *md);
436void dm_put(struct mapped_device *md);
437
438/*
439 * An arbitrary pointer may be stored alongside a mapped device.
440 */
441void dm_set_mdptr(struct mapped_device *md, void *ptr);
442void *dm_get_mdptr(struct mapped_device *md);
443
444/*
445 * A device can still be used while suspended, but I/O is deferred.
446 */
447int dm_suspend(struct mapped_device *md, unsigned suspend_flags);
448int dm_resume(struct mapped_device *md);
449
450/*
451 * Event functions.
452 */
453uint32_t dm_get_event_nr(struct mapped_device *md);
454int dm_wait_event(struct mapped_device *md, int event_nr);
455uint32_t dm_next_uevent_seq(struct mapped_device *md);
456void dm_uevent_add(struct mapped_device *md, struct list_head *elist);
457
458/*
459 * Info functions.
460 */
461const char *dm_device_name(struct mapped_device *md);
462int dm_copy_name_and_uuid(struct mapped_device *md, char *name, char *uuid);
463struct gendisk *dm_disk(struct mapped_device *md);
464int dm_suspended(struct dm_target *ti);
465int dm_post_suspending(struct dm_target *ti);
466int dm_noflush_suspending(struct dm_target *ti);
467void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors);
468union map_info *dm_get_rq_mapinfo(struct request *rq);
469
470#ifdef CONFIG_BLK_DEV_ZONED
471struct dm_report_zones_args {
472 struct dm_target *tgt;
473 sector_t next_sector;
474
475 void *orig_data;
476 report_zones_cb orig_cb;
477 unsigned int zone_idx;
478
479 /* must be filled by ->report_zones before calling dm_report_zones_cb */
480 sector_t start;
481};
482int dm_report_zones(struct block_device *bdev, sector_t start, sector_t sector,
483 struct dm_report_zones_args *args, unsigned int nr_zones);
484#endif /* CONFIG_BLK_DEV_ZONED */
485
486/*
487 * Device mapper functions to parse and create devices specified by the
488 * parameter "dm-mod.create="
489 */
490int __init dm_early_create(struct dm_ioctl *dmi,
491 struct dm_target_spec **spec_array,
492 char **target_params_array);
493
494struct queue_limits *dm_get_queue_limits(struct mapped_device *md);
495
496/*
497 * Geometry functions.
498 */
499int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo);
500int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo);
501
502/*-----------------------------------------------------------------
503 * Functions for manipulating device-mapper tables.
504 *---------------------------------------------------------------*/
505
506/*
507 * First create an empty table.
508 */
509int dm_table_create(struct dm_table **result, fmode_t mode,
510 unsigned num_targets, struct mapped_device *md);
511
512/*
513 * Then call this once for each target.
514 */
515int dm_table_add_target(struct dm_table *t, const char *type,
516 sector_t start, sector_t len, char *params);
517
518/*
519 * Target can use this to set the table's type.
520 * Can only ever be called from a target's ctr.
521 * Useful for "hybrid" target (supports both bio-based
522 * and request-based).
523 */
524void dm_table_set_type(struct dm_table *t, enum dm_queue_mode type);
525
526/*
527 * Finally call this to make the table ready for use.
528 */
529int dm_table_complete(struct dm_table *t);
530
531/*
532 * Destroy the table when finished.
533 */
534void dm_table_destroy(struct dm_table *t);
535
536/*
537 * Target may require that it is never sent I/O larger than len.
538 */
539int __must_check dm_set_target_max_io_len(struct dm_target *ti, sector_t len);
540
541/*
542 * Table reference counting.
543 */
544struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx);
545void dm_put_live_table(struct mapped_device *md, int srcu_idx);
546void dm_sync_table(struct mapped_device *md);
547
548/*
549 * Queries
550 */
551sector_t dm_table_get_size(struct dm_table *t);
552unsigned int dm_table_get_num_targets(struct dm_table *t);
553fmode_t dm_table_get_mode(struct dm_table *t);
554struct mapped_device *dm_table_get_md(struct dm_table *t);
555const char *dm_table_device_name(struct dm_table *t);
556
557/*
558 * Trigger an event.
559 */
560void dm_table_event(struct dm_table *t);
561
562/*
563 * Run the queue for request-based targets.
564 */
565void dm_table_run_md_queue_async(struct dm_table *t);
566
567/*
568 * The device must be suspended before calling this method.
569 * Returns the previous table, which the caller must destroy.
570 */
571struct dm_table *dm_swap_table(struct mapped_device *md,
572 struct dm_table *t);
573
574/*
575 * Table blk_crypto_profile functions
576 */
577void dm_destroy_crypto_profile(struct blk_crypto_profile *profile);
578
579/*-----------------------------------------------------------------
580 * Macros.
581 *---------------------------------------------------------------*/
582#define DM_NAME "device-mapper"
583
584#define DM_FMT(fmt) DM_NAME ": " DM_MSG_PREFIX ": " fmt "\n"
585
586#define DMCRIT(fmt, ...) pr_crit(DM_FMT(fmt), ##__VA_ARGS__)
587
588#define DMERR(fmt, ...) pr_err(DM_FMT(fmt), ##__VA_ARGS__)
589#define DMERR_LIMIT(fmt, ...) pr_err_ratelimited(DM_FMT(fmt), ##__VA_ARGS__)
590#define DMWARN(fmt, ...) pr_warn(DM_FMT(fmt), ##__VA_ARGS__)
591#define DMWARN_LIMIT(fmt, ...) pr_warn_ratelimited(DM_FMT(fmt), ##__VA_ARGS__)
592#define DMINFO(fmt, ...) pr_info(DM_FMT(fmt), ##__VA_ARGS__)
593#define DMINFO_LIMIT(fmt, ...) pr_info_ratelimited(DM_FMT(fmt), ##__VA_ARGS__)
594
595#define DMDEBUG(fmt, ...) pr_debug(DM_FMT(fmt), ##__VA_ARGS__)
596#define DMDEBUG_LIMIT(fmt, ...) pr_debug_ratelimited(DM_FMT(fmt), ##__VA_ARGS__)
597
598#define DMEMIT(x...) sz += ((sz >= maxlen) ? \
599 0 : scnprintf(result + sz, maxlen - sz, x))
600
601#define DMEMIT_TARGET_NAME_VERSION(y) \
602 DMEMIT("target_name=%s,target_version=%u.%u.%u", \
603 (y)->name, (y)->version[0], (y)->version[1], (y)->version[2])
604
605/*
606 * Definitions of return values from target end_io function.
607 */
608#define DM_ENDIO_DONE 0
609#define DM_ENDIO_INCOMPLETE 1
610#define DM_ENDIO_REQUEUE 2
611#define DM_ENDIO_DELAY_REQUEUE 3
612
613/*
614 * Definitions of return values from target map function.
615 */
616#define DM_MAPIO_SUBMITTED 0
617#define DM_MAPIO_REMAPPED 1
618#define DM_MAPIO_REQUEUE DM_ENDIO_REQUEUE
619#define DM_MAPIO_DELAY_REQUEUE DM_ENDIO_DELAY_REQUEUE
620#define DM_MAPIO_KILL 4
621
622#define dm_sector_div64(x, y)( \
623{ \
624 u64 _res; \
625 (x) = div64_u64_rem(x, y, &_res); \
626 _res; \
627} \
628)
629
630/*
631 * Ceiling(n / sz)
632 */
633#define dm_div_up(n, sz) (((n) + (sz) - 1) / (sz))
634
635#define dm_sector_div_up(n, sz) ( \
636{ \
637 sector_t _r = ((n) + (sz) - 1); \
638 sector_div(_r, (sz)); \
639 _r; \
640} \
641)
642
643/*
644 * ceiling(n / size) * size
645 */
646#define dm_round_up(n, sz) (dm_div_up((n), (sz)) * (sz))
647
648/*
649 * Sector offset taken relative to the start of the target instead of
650 * relative to the start of the device.
651 */
652#define dm_target_offset(ti, sector) ((sector) - (ti)->begin)
653
654static inline sector_t to_sector(unsigned long long n)
655{
656 return (n >> SECTOR_SHIFT);
657}
658
659static inline unsigned long to_bytes(sector_t n)
660{
661 return (n << SECTOR_SHIFT);
662}
663
664#endif /* _LINUX_DEVICE_MAPPER_H */