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/math64.h>
14#include <linux/ratelimit.h>
15
16struct dm_dev;
17struct dm_target;
18struct dm_table;
19struct mapped_device;
20struct bio_vec;
21
22typedef enum { STATUSTYPE_INFO, STATUSTYPE_TABLE } status_type_t;
23
24union map_info {
25 void *ptr;
26 unsigned long long ll;
27};
28
29
30
31
32
33typedef int (*dm_ctr_fn) (struct dm_target *target,
34 unsigned int argc, char **argv);
35
36
37
38
39
40typedef void (*dm_dtr_fn) (struct dm_target *ti);
41
42
43
44
45
46
47
48
49typedef int (*dm_map_fn) (struct dm_target *ti, struct bio *bio);
50typedef int (*dm_map_request_fn) (struct dm_target *ti, struct request *clone,
51 union map_info *map_context);
52
53
54
55
56
57
58
59
60
61typedef int (*dm_endio_fn) (struct dm_target *ti,
62 struct bio *bio, int error);
63typedef int (*dm_request_endio_fn) (struct dm_target *ti,
64 struct request *clone, int error,
65 union map_info *map_context);
66
67typedef void (*dm_presuspend_fn) (struct dm_target *ti);
68typedef void (*dm_postsuspend_fn) (struct dm_target *ti);
69typedef int (*dm_preresume_fn) (struct dm_target *ti);
70typedef void (*dm_resume_fn) (struct dm_target *ti);
71
72typedef void (*dm_status_fn) (struct dm_target *ti, status_type_t status_type,
73 unsigned status_flags, char *result, unsigned maxlen);
74
75typedef int (*dm_message_fn) (struct dm_target *ti, unsigned argc, char **argv);
76
77typedef int (*dm_ioctl_fn) (struct dm_target *ti, unsigned int cmd,
78 unsigned long arg);
79
80typedef int (*dm_merge_fn) (struct dm_target *ti, struct bvec_merge_data *bvm,
81 struct bio_vec *biovec, int max_size);
82
83
84
85
86
87
88
89
90
91
92
93typedef int (*iterate_devices_callout_fn) (struct dm_target *ti,
94 struct dm_dev *dev,
95 sector_t start, sector_t len,
96 void *data);
97
98
99
100
101
102
103typedef int (*dm_iterate_devices_fn) (struct dm_target *ti,
104 iterate_devices_callout_fn fn,
105 void *data);
106
107typedef void (*dm_io_hints_fn) (struct dm_target *ti,
108 struct queue_limits *limits);
109
110
111
112
113
114
115typedef int (*dm_busy_fn) (struct dm_target *ti);
116
117void dm_error(const char *message);
118
119
120
121
122int dm_set_device_limits(struct dm_target *ti, struct dm_dev *dev,
123 sector_t start, sector_t len, void *data);
124
125struct dm_dev {
126 struct block_device *bdev;
127 fmode_t mode;
128 char name[16];
129};
130
131
132
133
134
135int dm_get_device(struct dm_target *ti, const char *path, fmode_t mode,
136 struct dm_dev **result);
137void dm_put_device(struct dm_target *ti, struct dm_dev *d);
138
139
140
141
142
143struct target_type {
144 uint64_t features;
145 const char *name;
146 struct module *module;
147 unsigned version[3];
148 dm_ctr_fn ctr;
149 dm_dtr_fn dtr;
150 dm_map_fn map;
151 dm_map_request_fn map_rq;
152 dm_endio_fn end_io;
153 dm_request_endio_fn rq_end_io;
154 dm_presuspend_fn presuspend;
155 dm_postsuspend_fn postsuspend;
156 dm_preresume_fn preresume;
157 dm_resume_fn resume;
158 dm_status_fn status;
159 dm_message_fn message;
160 dm_ioctl_fn ioctl;
161 dm_merge_fn merge;
162 dm_busy_fn busy;
163 dm_iterate_devices_fn iterate_devices;
164 dm_io_hints_fn io_hints;
165
166
167 struct list_head list;
168};
169
170
171
172
173
174
175
176
177#define DM_TARGET_SINGLETON 0x00000001
178#define dm_target_needs_singleton(type) ((type)->features & DM_TARGET_SINGLETON)
179
180
181
182
183#define DM_TARGET_ALWAYS_WRITEABLE 0x00000002
184#define dm_target_always_writeable(type) \
185 ((type)->features & DM_TARGET_ALWAYS_WRITEABLE)
186
187
188
189
190
191#define DM_TARGET_IMMUTABLE 0x00000004
192#define dm_target_is_immutable(type) ((type)->features & DM_TARGET_IMMUTABLE)
193
194
195
196
197
198
199
200typedef unsigned (*dm_num_write_bios_fn) (struct dm_target *ti, struct bio *bio);
201
202struct dm_target {
203 struct dm_table *table;
204 struct target_type *type;
205
206
207 sector_t begin;
208 sector_t len;
209
210
211 uint32_t max_io_len;
212
213
214
215
216
217
218
219
220
221 unsigned num_flush_bios;
222
223
224
225
226
227 unsigned num_discard_bios;
228
229
230
231
232
233 unsigned num_write_same_bios;
234
235
236
237
238
239 unsigned per_bio_data_size;
240
241
242
243
244
245
246 dm_num_write_bios_fn num_write_bios;
247
248
249 void *private;
250
251
252 char *error;
253
254
255
256
257
258 bool flush_supported:1;
259
260
261
262
263
264 bool discards_supported:1;
265
266
267
268
269
270 bool split_discard_bios:1;
271
272
273
274
275 bool discard_zeroes_data_unsupported:1;
276};
277
278
279struct dm_target_callbacks {
280 struct list_head list;
281 int (*congested_fn) (struct dm_target_callbacks *, int);
282};
283
284
285
286
287
288
289
290
291struct dm_target_io {
292 struct dm_io *io;
293 struct dm_target *ti;
294 union map_info info;
295 unsigned target_bio_nr;
296 struct bio clone;
297};
298
299static inline void *dm_per_bio_data(struct bio *bio, size_t data_size)
300{
301 return (char *)bio - offsetof(struct dm_target_io, clone) - data_size;
302}
303
304static inline struct bio *dm_bio_from_per_bio_data(void *data, size_t data_size)
305{
306 return (struct bio *)((char *)data + data_size + offsetof(struct dm_target_io, clone));
307}
308
309static inline unsigned dm_bio_get_target_bio_nr(const struct bio *bio)
310{
311 return container_of(bio, struct dm_target_io, clone)->target_bio_nr;
312}
313
314int dm_register_target(struct target_type *t);
315void dm_unregister_target(struct target_type *t);
316
317
318
319
320struct dm_arg_set {
321 unsigned argc;
322 char **argv;
323};
324
325
326
327
328
329struct dm_arg {
330 unsigned min;
331 unsigned max;
332 char *error;
333};
334
335
336
337
338
339int dm_read_arg(struct dm_arg *arg, struct dm_arg_set *arg_set,
340 unsigned *value, char **error);
341
342
343
344
345
346
347int dm_read_arg_group(struct dm_arg *arg, struct dm_arg_set *arg_set,
348 unsigned *num_args, char **error);
349
350
351
352
353const char *dm_shift_arg(struct dm_arg_set *as);
354
355
356
357
358void dm_consume_args(struct dm_arg_set *as, unsigned num_args);
359
360
361
362
363
364
365
366
367
368#define DM_ANY_MINOR (-1)
369int dm_create(int minor, struct mapped_device **md);
370
371
372
373
374struct mapped_device *dm_get_md(dev_t dev);
375void dm_get(struct mapped_device *md);
376void dm_put(struct mapped_device *md);
377
378
379
380
381void dm_set_mdptr(struct mapped_device *md, void *ptr);
382void *dm_get_mdptr(struct mapped_device *md);
383
384
385
386
387int dm_suspend(struct mapped_device *md, unsigned suspend_flags);
388int dm_resume(struct mapped_device *md);
389
390
391
392
393uint32_t dm_get_event_nr(struct mapped_device *md);
394int dm_wait_event(struct mapped_device *md, int event_nr);
395uint32_t dm_next_uevent_seq(struct mapped_device *md);
396void dm_uevent_add(struct mapped_device *md, struct list_head *elist);
397
398
399
400
401const char *dm_device_name(struct mapped_device *md);
402int dm_copy_name_and_uuid(struct mapped_device *md, char *name, char *uuid);
403struct gendisk *dm_disk(struct mapped_device *md);
404int dm_suspended(struct dm_target *ti);
405int dm_noflush_suspending(struct dm_target *ti);
406union map_info *dm_get_mapinfo(struct bio *bio);
407union map_info *dm_get_rq_mapinfo(struct request *rq);
408
409struct queue_limits *dm_get_queue_limits(struct mapped_device *md);
410
411
412
413
414int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo);
415int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo);
416
417
418
419
420
421
422
423
424int dm_table_create(struct dm_table **result, fmode_t mode,
425 unsigned num_targets, struct mapped_device *md);
426
427
428
429
430int dm_table_add_target(struct dm_table *t, const char *type,
431 sector_t start, sector_t len, char *params);
432
433
434
435
436void dm_table_add_target_callbacks(struct dm_table *t, struct dm_target_callbacks *cb);
437
438
439
440
441int dm_table_complete(struct dm_table *t);
442
443
444
445
446int __must_check dm_set_target_max_io_len(struct dm_target *ti, sector_t len);
447
448
449
450
451struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx);
452void dm_put_live_table(struct mapped_device *md, int srcu_idx);
453void dm_sync_table(struct mapped_device *md);
454
455
456
457
458sector_t dm_table_get_size(struct dm_table *t);
459unsigned int dm_table_get_num_targets(struct dm_table *t);
460fmode_t dm_table_get_mode(struct dm_table *t);
461struct mapped_device *dm_table_get_md(struct dm_table *t);
462
463
464
465
466void dm_table_event(struct dm_table *t);
467
468
469
470
471
472struct dm_table *dm_swap_table(struct mapped_device *md,
473 struct dm_table *t);
474
475
476
477
478void *dm_vcalloc(unsigned long nmemb, unsigned long elem_size);
479
480
481
482
483#define DM_NAME "device-mapper"
484
485#ifdef CONFIG_PRINTK
486extern struct ratelimit_state dm_ratelimit_state;
487
488#define dm_ratelimit() __ratelimit(&dm_ratelimit_state)
489#else
490#define dm_ratelimit() 0
491#endif
492
493#define DMCRIT(f, arg...) \
494 printk(KERN_CRIT DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg)
495
496#define DMERR(f, arg...) \
497 printk(KERN_ERR DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg)
498#define DMERR_LIMIT(f, arg...) \
499 do { \
500 if (dm_ratelimit()) \
501 printk(KERN_ERR DM_NAME ": " DM_MSG_PREFIX ": " \
502 f "\n", ## arg); \
503 } while (0)
504
505#define DMWARN(f, arg...) \
506 printk(KERN_WARNING DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg)
507#define DMWARN_LIMIT(f, arg...) \
508 do { \
509 if (dm_ratelimit()) \
510 printk(KERN_WARNING DM_NAME ": " DM_MSG_PREFIX ": " \
511 f "\n", ## arg); \
512 } while (0)
513
514#define DMINFO(f, arg...) \
515 printk(KERN_INFO DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg)
516#define DMINFO_LIMIT(f, arg...) \
517 do { \
518 if (dm_ratelimit()) \
519 printk(KERN_INFO DM_NAME ": " DM_MSG_PREFIX ": " f \
520 "\n", ## arg); \
521 } while (0)
522
523#ifdef CONFIG_DM_DEBUG
524# define DMDEBUG(f, arg...) \
525 printk(KERN_DEBUG DM_NAME ": " DM_MSG_PREFIX " DEBUG: " f "\n", ## arg)
526# define DMDEBUG_LIMIT(f, arg...) \
527 do { \
528 if (dm_ratelimit()) \
529 printk(KERN_DEBUG DM_NAME ": " DM_MSG_PREFIX ": " f \
530 "\n", ## arg); \
531 } while (0)
532#else
533# define DMDEBUG(f, arg...) do {} while (0)
534# define DMDEBUG_LIMIT(f, arg...) do {} while (0)
535#endif
536
537#define DMEMIT(x...) sz += ((sz >= maxlen) ? \
538 0 : scnprintf(result + sz, maxlen - sz, x))
539
540#define SECTOR_SHIFT 9
541
542
543
544
545#define DM_ENDIO_INCOMPLETE 1
546#define DM_ENDIO_REQUEUE 2
547
548
549
550
551#define DM_MAPIO_SUBMITTED 0
552#define DM_MAPIO_REMAPPED 1
553#define DM_MAPIO_REQUEUE DM_ENDIO_REQUEUE
554
555#define dm_sector_div64(x, y)( \
556{ \
557 u64 _res; \
558 (x) = div64_u64_rem(x, y, &_res); \
559 _res; \
560} \
561)
562
563
564
565
566#define dm_div_up(n, sz) (((n) + (sz) - 1) / (sz))
567
568#define dm_sector_div_up(n, sz) ( \
569{ \
570 sector_t _r = ((n) + (sz) - 1); \
571 sector_div(_r, (sz)); \
572 _r; \
573} \
574)
575
576
577
578
579#define dm_round_up(n, sz) (dm_div_up((n), (sz)) * (sz))
580
581#define dm_array_too_big(fixed, obj, num) \
582 ((num) > (UINT_MAX - (fixed)) / (obj))
583
584
585
586
587
588#define dm_target_offset(ti, sector) ((sector) - (ti)->begin)
589
590static inline sector_t to_sector(unsigned long n)
591{
592 return (n >> SECTOR_SHIFT);
593}
594
595static inline unsigned long to_bytes(sector_t n)
596{
597 return (n << SECTOR_SHIFT);
598}
599
600
601
602
603void dm_dispatch_request(struct request *rq);
604void dm_requeue_unmapped_request(struct request *rq);
605void dm_kill_unmapped_request(struct request *rq, int error);
606int dm_underlying_device_busy(struct request_queue *q);
607
608#endif
609