1
2
3
4
5
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
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 } status_type_t;
35
36union map_info {
37 void *ptr;
38};
39
40
41
42
43
44typedef int (*dm_ctr_fn) (struct dm_target *target,
45 unsigned int argc, char **argv);
46
47
48
49
50
51typedef void (*dm_dtr_fn) (struct dm_target *ti);
52
53
54
55
56
57
58
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
70
71
72
73
74
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
103
104
105
106typedef int (*dm_report_zones_fn) (struct dm_target *dummy);
107#endif
108
109
110
111
112
113
114
115
116
117
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
126
127
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
138
139
140
141typedef int (*dm_busy_fn) (struct dm_target *ti);
142
143
144
145
146
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 size_t (*dm_dax_copy_iter_fn)(struct dm_target *ti, pgoff_t pgoff,
151 void *addr, size_t bytes, struct iov_iter *i);
152typedef int (*dm_dax_zero_page_range_fn)(struct dm_target *ti, pgoff_t pgoff,
153 size_t nr_pages);
154#define PAGE_SECTORS (PAGE_SIZE / 512)
155
156void dm_error(const char *message);
157
158struct dm_dev {
159 struct block_device *bdev;
160 struct dax_device *dax_dev;
161 fmode_t mode;
162 char name[16];
163};
164
165dev_t dm_get_dev_t(const char *path);
166
167
168
169
170
171int dm_get_device(struct dm_target *ti, const char *path, fmode_t mode,
172 struct dm_dev **result);
173void dm_put_device(struct dm_target *ti, struct dm_dev *d);
174
175
176
177
178
179struct target_type {
180 uint64_t features;
181 const char *name;
182 struct module *module;
183 unsigned version[3];
184 dm_ctr_fn ctr;
185 dm_dtr_fn dtr;
186 dm_map_fn map;
187 dm_clone_and_map_request_fn clone_and_map_rq;
188 dm_release_clone_request_fn release_clone_rq;
189 dm_endio_fn end_io;
190 dm_request_endio_fn rq_end_io;
191 dm_presuspend_fn presuspend;
192 dm_presuspend_undo_fn presuspend_undo;
193 dm_postsuspend_fn postsuspend;
194 dm_preresume_fn preresume;
195 dm_resume_fn resume;
196 dm_status_fn status;
197 dm_message_fn message;
198 dm_prepare_ioctl_fn prepare_ioctl;
199 dm_report_zones_fn report_zones;
200 dm_busy_fn busy;
201 dm_iterate_devices_fn iterate_devices;
202 dm_io_hints_fn io_hints;
203 dm_dax_direct_access_fn direct_access;
204 dm_dax_copy_iter_fn dax_copy_from_iter;
205 dm_dax_copy_iter_fn dax_copy_to_iter;
206 dm_dax_zero_page_range_fn dax_zero_page_range;
207
208
209 struct list_head list;
210};
211
212
213
214
215
216
217
218
219#define DM_TARGET_SINGLETON 0x00000001
220#define dm_target_needs_singleton(type) ((type)->features & DM_TARGET_SINGLETON)
221
222
223
224
225#define DM_TARGET_ALWAYS_WRITEABLE 0x00000002
226#define dm_target_always_writeable(type) \
227 ((type)->features & DM_TARGET_ALWAYS_WRITEABLE)
228
229
230
231
232
233#define DM_TARGET_IMMUTABLE 0x00000004
234#define dm_target_is_immutable(type) ((type)->features & DM_TARGET_IMMUTABLE)
235
236
237
238
239
240#define DM_TARGET_WILDCARD 0x00000008
241#define dm_target_is_wildcard(type) ((type)->features & DM_TARGET_WILDCARD)
242
243
244
245
246#define DM_TARGET_INTEGRITY 0x00000010
247#define dm_target_has_integrity(type) ((type)->features & DM_TARGET_INTEGRITY)
248
249
250
251
252#define DM_TARGET_PASSES_INTEGRITY 0x00000020
253#define dm_target_passes_integrity(type) ((type)->features & DM_TARGET_PASSES_INTEGRITY)
254
255
256
257
258
259
260
261
262#ifdef CONFIG_BLK_DEV_ZONED
263#define DM_TARGET_ZONED_HM 0x00000040
264#define dm_target_supports_zoned_hm(type) ((type)->features & DM_TARGET_ZONED_HM)
265#else
266#define DM_TARGET_ZONED_HM 0x00000000
267#define dm_target_supports_zoned_hm(type) (false)
268#endif
269
270
271
272
273#define DM_TARGET_NOWAIT 0x00000080
274#define dm_target_supports_nowait(type) ((type)->features & DM_TARGET_NOWAIT)
275
276
277
278
279#define DM_TARGET_PASSES_CRYPTO 0x00000100
280#define dm_target_passes_crypto(type) ((type)->features & DM_TARGET_PASSES_CRYPTO)
281
282#ifdef CONFIG_BLK_DEV_ZONED
283#define DM_TARGET_MIXED_ZONED_MODEL 0x00000200
284#define dm_target_supports_mixed_zoned_model(type) \
285 ((type)->features & DM_TARGET_MIXED_ZONED_MODEL)
286#else
287#define DM_TARGET_MIXED_ZONED_MODEL 0x00000000
288#define dm_target_supports_mixed_zoned_model(type) (false)
289#endif
290
291struct dm_target {
292 struct dm_table *table;
293 struct target_type *type;
294
295
296 sector_t begin;
297 sector_t len;
298
299
300 uint32_t max_io_len;
301
302
303
304
305
306
307
308
309
310 unsigned num_flush_bios;
311
312
313
314
315
316 unsigned num_discard_bios;
317
318
319
320
321
322 unsigned num_secure_erase_bios;
323
324
325
326
327
328 unsigned num_write_same_bios;
329
330
331
332
333
334 unsigned num_write_zeroes_bios;
335
336
337
338
339
340 unsigned per_io_data_size;
341
342
343 void *private;
344
345
346 char *error;
347
348
349
350
351
352 bool flush_supported:1;
353
354
355
356
357
358 bool discards_supported:1;
359
360
361
362
363 bool limit_swap_bios:1;
364
365
366
367
368
369 bool emulate_zone_append:1;
370};
371
372void *dm_per_bio_data(struct bio *bio, size_t data_size);
373struct bio *dm_bio_from_per_bio_data(void *data, size_t data_size);
374unsigned dm_bio_get_target_bio_nr(const struct bio *bio);
375
376u64 dm_start_time_ns_from_clone(struct bio *bio);
377
378int dm_register_target(struct target_type *t);
379void dm_unregister_target(struct target_type *t);
380
381
382
383
384struct dm_arg_set {
385 unsigned argc;
386 char **argv;
387};
388
389
390
391
392
393struct dm_arg {
394 unsigned min;
395 unsigned max;
396 char *error;
397};
398
399
400
401
402
403int dm_read_arg(const struct dm_arg *arg, struct dm_arg_set *arg_set,
404 unsigned *value, char **error);
405
406
407
408
409
410
411int dm_read_arg_group(const struct dm_arg *arg, struct dm_arg_set *arg_set,
412 unsigned *num_args, char **error);
413
414
415
416
417const char *dm_shift_arg(struct dm_arg_set *as);
418
419
420
421
422void dm_consume_args(struct dm_arg_set *as, unsigned num_args);
423
424
425
426
427
428
429
430
431
432#define DM_ANY_MINOR (-1)
433int dm_create(int minor, struct mapped_device **md);
434
435
436
437
438struct mapped_device *dm_get_md(dev_t dev);
439void dm_get(struct mapped_device *md);
440int dm_hold(struct mapped_device *md);
441void dm_put(struct mapped_device *md);
442
443
444
445
446void dm_set_mdptr(struct mapped_device *md, void *ptr);
447void *dm_get_mdptr(struct mapped_device *md);
448
449
450
451
452int dm_suspend(struct mapped_device *md, unsigned suspend_flags);
453int dm_resume(struct mapped_device *md);
454
455
456
457
458uint32_t dm_get_event_nr(struct mapped_device *md);
459int dm_wait_event(struct mapped_device *md, int event_nr);
460uint32_t dm_next_uevent_seq(struct mapped_device *md);
461void dm_uevent_add(struct mapped_device *md, struct list_head *elist);
462
463
464
465
466const char *dm_device_name(struct mapped_device *md);
467int dm_copy_name_and_uuid(struct mapped_device *md, char *name, char *uuid);
468struct gendisk *dm_disk(struct mapped_device *md);
469int dm_suspended(struct dm_target *ti);
470int dm_post_suspending(struct dm_target *ti);
471int dm_noflush_suspending(struct dm_target *ti);
472void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors);
473union map_info *dm_get_rq_mapinfo(struct request *rq);
474
475#ifdef CONFIG_BLK_DEV_ZONED
476struct dm_report_zones_args {
477 struct dm_target *tgt;
478 sector_t next_sector;
479
480 void *orig_data;
481 report_zones_cb orig_cb;
482 unsigned int zone_idx;
483
484
485 sector_t start;
486};
487int dm_report_zones(struct block_device *bdev, sector_t start, sector_t sector,
488 struct dm_report_zones_args *args, unsigned int nr_zones);
489#endif
490
491
492
493
494
495int __init dm_early_create(struct dm_ioctl *dmi,
496 struct dm_target_spec **spec_array,
497 char **target_params_array);
498
499struct queue_limits *dm_get_queue_limits(struct mapped_device *md);
500
501
502
503
504int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo);
505int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo);
506
507
508
509
510
511
512
513
514int dm_table_create(struct dm_table **result, fmode_t mode,
515 unsigned num_targets, struct mapped_device *md);
516
517
518
519
520int dm_table_add_target(struct dm_table *t, const char *type,
521 sector_t start, sector_t len, char *params);
522
523
524
525
526
527
528
529void dm_table_set_type(struct dm_table *t, enum dm_queue_mode type);
530
531
532
533
534int dm_table_complete(struct dm_table *t);
535
536
537
538
539void dm_table_destroy(struct dm_table *t);
540
541
542
543
544int __must_check dm_set_target_max_io_len(struct dm_target *ti, sector_t len);
545
546
547
548
549struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx);
550void dm_put_live_table(struct mapped_device *md, int srcu_idx);
551void dm_sync_table(struct mapped_device *md);
552
553
554
555
556sector_t dm_table_get_size(struct dm_table *t);
557unsigned int dm_table_get_num_targets(struct dm_table *t);
558fmode_t dm_table_get_mode(struct dm_table *t);
559struct mapped_device *dm_table_get_md(struct dm_table *t);
560const char *dm_table_device_name(struct dm_table *t);
561
562
563
564
565void dm_table_event(struct dm_table *t);
566
567
568
569
570void dm_table_run_md_queue_async(struct dm_table *t);
571
572
573
574
575
576struct dm_table *dm_swap_table(struct mapped_device *md,
577 struct dm_table *t);
578
579
580
581
582void dm_destroy_keyslot_manager(struct blk_keyslot_manager *ksm);
583
584
585
586
587#define DM_NAME "device-mapper"
588
589#define DM_FMT(fmt) DM_NAME ": " DM_MSG_PREFIX ": " fmt "\n"
590
591#define DMCRIT(fmt, ...) pr_crit(DM_FMT(fmt), ##__VA_ARGS__)
592
593#define DMERR(fmt, ...) pr_err(DM_FMT(fmt), ##__VA_ARGS__)
594#define DMERR_LIMIT(fmt, ...) pr_err_ratelimited(DM_FMT(fmt), ##__VA_ARGS__)
595#define DMWARN(fmt, ...) pr_warn(DM_FMT(fmt), ##__VA_ARGS__)
596#define DMWARN_LIMIT(fmt, ...) pr_warn_ratelimited(DM_FMT(fmt), ##__VA_ARGS__)
597#define DMINFO(fmt, ...) pr_info(DM_FMT(fmt), ##__VA_ARGS__)
598#define DMINFO_LIMIT(fmt, ...) pr_info_ratelimited(DM_FMT(fmt), ##__VA_ARGS__)
599
600#define DMDEBUG(fmt, ...) pr_debug(DM_FMT(fmt), ##__VA_ARGS__)
601#define DMDEBUG_LIMIT(fmt, ...) pr_debug_ratelimited(DM_FMT(fmt), ##__VA_ARGS__)
602
603#define DMEMIT(x...) sz += ((sz >= maxlen) ? \
604 0 : scnprintf(result + sz, maxlen - sz, x))
605
606
607
608
609#define DM_ENDIO_DONE 0
610#define DM_ENDIO_INCOMPLETE 1
611#define DM_ENDIO_REQUEUE 2
612#define DM_ENDIO_DELAY_REQUEUE 3
613
614
615
616
617#define DM_MAPIO_SUBMITTED 0
618#define DM_MAPIO_REMAPPED 1
619#define DM_MAPIO_REQUEUE DM_ENDIO_REQUEUE
620#define DM_MAPIO_DELAY_REQUEUE DM_ENDIO_DELAY_REQUEUE
621#define DM_MAPIO_KILL 4
622
623#define dm_sector_div64(x, y)( \
624{ \
625 u64 _res; \
626 (x) = div64_u64_rem(x, y, &_res); \
627 _res; \
628} \
629)
630
631
632
633
634#define dm_div_up(n, sz) (((n) + (sz) - 1) / (sz))
635
636#define dm_sector_div_up(n, sz) ( \
637{ \
638 sector_t _r = ((n) + (sz) - 1); \
639 sector_div(_r, (sz)); \
640 _r; \
641} \
642)
643
644
645
646
647#define dm_round_up(n, sz) (dm_div_up((n), (sz)) * (sz))
648
649
650
651
652
653#define dm_target_offset(ti, sector) ((sector) - (ti)->begin)
654
655static inline sector_t to_sector(unsigned long long n)
656{
657 return (n >> SECTOR_SHIFT);
658}
659
660static inline unsigned long to_bytes(sector_t n)
661{
662 return (n << SECTOR_SHIFT);
663}
664
665#endif
666