at v3.19 17 kB view raw
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/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}; 27 28/* 29 * In the constructor the target parameter will already have the 30 * table, type, begin and len fields filled in. 31 */ 32typedef int (*dm_ctr_fn) (struct dm_target *target, 33 unsigned int argc, char **argv); 34 35/* 36 * The destructor doesn't need to free the dm_target, just 37 * anything hidden ti->private. 38 */ 39typedef void (*dm_dtr_fn) (struct dm_target *ti); 40 41/* 42 * The map function must return: 43 * < 0: error 44 * = 0: The target will handle the io by resubmitting it later 45 * = 1: simple remap complete 46 * = 2: The target wants to push back the io 47 */ 48typedef int (*dm_map_fn) (struct dm_target *ti, struct bio *bio); 49typedef int (*dm_map_request_fn) (struct dm_target *ti, struct request *clone, 50 union map_info *map_context); 51 52/* 53 * Returns: 54 * < 0 : error (currently ignored) 55 * 0 : ended successfully 56 * 1 : for some reason the io has still not completed (eg, 57 * multipath target might want to requeue a failed io). 58 * 2 : The target wants to push back the io 59 */ 60typedef int (*dm_endio_fn) (struct dm_target *ti, 61 struct bio *bio, int error); 62typedef int (*dm_request_endio_fn) (struct dm_target *ti, 63 struct request *clone, int error, 64 union map_info *map_context); 65 66typedef void (*dm_presuspend_fn) (struct dm_target *ti); 67typedef void (*dm_presuspend_undo_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 * These iteration functions are typically used to check (and combine) 85 * properties of underlying devices. 86 * E.g. Does at least one underlying device support flush? 87 * Does any underlying device not support WRITE_SAME? 88 * 89 * The callout function is called once for each contiguous section of 90 * an underlying device. State can be maintained in *data. 91 * Return non-zero to stop iterating through any further devices. 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 * This function must iterate through each section of device used by the 100 * target until it encounters a non-zero return code, which it then returns. 101 * Returns zero if no callout returned non-zero. 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 * Returns: 112 * 0: The target can handle the next I/O immediately. 113 * 1: The target can't handle the next I/O immediately. 114 */ 115typedef int (*dm_busy_fn) (struct dm_target *ti); 116 117void dm_error(const char *message); 118 119struct dm_dev { 120 struct block_device *bdev; 121 fmode_t mode; 122 char name[16]; 123}; 124 125/* 126 * Constructors should call these functions to ensure destination devices 127 * are opened/closed correctly. 128 */ 129int dm_get_device(struct dm_target *ti, const char *path, fmode_t mode, 130 struct dm_dev **result); 131void dm_put_device(struct dm_target *ti, struct dm_dev *d); 132 133/* 134 * Information about a target type 135 */ 136 137struct target_type { 138 uint64_t features; 139 const char *name; 140 struct module *module; 141 unsigned version[3]; 142 dm_ctr_fn ctr; 143 dm_dtr_fn dtr; 144 dm_map_fn map; 145 dm_map_request_fn map_rq; 146 dm_endio_fn end_io; 147 dm_request_endio_fn rq_end_io; 148 dm_presuspend_fn presuspend; 149 dm_presuspend_undo_fn presuspend_undo; 150 dm_postsuspend_fn postsuspend; 151 dm_preresume_fn preresume; 152 dm_resume_fn resume; 153 dm_status_fn status; 154 dm_message_fn message; 155 dm_ioctl_fn ioctl; 156 dm_merge_fn merge; 157 dm_busy_fn busy; 158 dm_iterate_devices_fn iterate_devices; 159 dm_io_hints_fn io_hints; 160 161 /* For internal device-mapper use. */ 162 struct list_head list; 163}; 164 165/* 166 * Target features 167 */ 168 169/* 170 * Any table that contains an instance of this target must have only one. 171 */ 172#define DM_TARGET_SINGLETON 0x00000001 173#define dm_target_needs_singleton(type) ((type)->features & DM_TARGET_SINGLETON) 174 175/* 176 * Indicates that a target does not support read-only devices. 177 */ 178#define DM_TARGET_ALWAYS_WRITEABLE 0x00000002 179#define dm_target_always_writeable(type) \ 180 ((type)->features & DM_TARGET_ALWAYS_WRITEABLE) 181 182/* 183 * Any device that contains a table with an instance of this target may never 184 * have tables containing any different target type. 185 */ 186#define DM_TARGET_IMMUTABLE 0x00000004 187#define dm_target_is_immutable(type) ((type)->features & DM_TARGET_IMMUTABLE) 188 189/* 190 * Some targets need to be sent the same WRITE bio severals times so 191 * that they can send copies of it to different devices. This function 192 * examines any supplied bio and returns the number of copies of it the 193 * target requires. 194 */ 195typedef unsigned (*dm_num_write_bios_fn) (struct dm_target *ti, struct bio *bio); 196 197struct dm_target { 198 struct dm_table *table; 199 struct target_type *type; 200 201 /* target limits */ 202 sector_t begin; 203 sector_t len; 204 205 /* If non-zero, maximum size of I/O submitted to a target. */ 206 uint32_t max_io_len; 207 208 /* 209 * A number of zero-length barrier bios that will be submitted 210 * to the target for the purpose of flushing cache. 211 * 212 * The bio number can be accessed with dm_bio_get_target_bio_nr. 213 * It is a responsibility of the target driver to remap these bios 214 * to the real underlying devices. 215 */ 216 unsigned num_flush_bios; 217 218 /* 219 * The number of discard bios that will be submitted to the target. 220 * The bio number can be accessed with dm_bio_get_target_bio_nr. 221 */ 222 unsigned num_discard_bios; 223 224 /* 225 * The number of WRITE SAME bios that will be submitted to the target. 226 * The bio number can be accessed with dm_bio_get_target_bio_nr. 227 */ 228 unsigned num_write_same_bios; 229 230 /* 231 * The minimum number of extra bytes allocated in each bio for the 232 * target to use. dm_per_bio_data returns the data location. 233 */ 234 unsigned per_bio_data_size; 235 236 /* 237 * If defined, this function is called to find out how many 238 * duplicate bios should be sent to the target when writing 239 * data. 240 */ 241 dm_num_write_bios_fn num_write_bios; 242 243 /* target specific data */ 244 void *private; 245 246 /* Used to provide an error string from the ctr */ 247 char *error; 248 249 /* 250 * Set if this target needs to receive flushes regardless of 251 * whether or not its underlying devices have support. 252 */ 253 bool flush_supported:1; 254 255 /* 256 * Set if this target needs to receive discards regardless of 257 * whether or not its underlying devices have support. 258 */ 259 bool discards_supported:1; 260 261 /* 262 * Set if the target required discard bios to be split 263 * on max_io_len boundary. 264 */ 265 bool split_discard_bios:1; 266 267 /* 268 * Set if this target does not return zeroes on discarded blocks. 269 */ 270 bool discard_zeroes_data_unsupported:1; 271}; 272 273/* Each target can link one of these into the table */ 274struct dm_target_callbacks { 275 struct list_head list; 276 int (*congested_fn) (struct dm_target_callbacks *, int); 277}; 278 279/* 280 * For bio-based dm. 281 * One of these is allocated for each bio. 282 * This structure shouldn't be touched directly by target drivers. 283 * It is here so that we can inline dm_per_bio_data and 284 * dm_bio_from_per_bio_data 285 */ 286struct dm_target_io { 287 struct dm_io *io; 288 struct dm_target *ti; 289 unsigned target_bio_nr; 290 unsigned *len_ptr; 291 struct bio clone; 292}; 293 294static inline void *dm_per_bio_data(struct bio *bio, size_t data_size) 295{ 296 return (char *)bio - offsetof(struct dm_target_io, clone) - data_size; 297} 298 299static inline struct bio *dm_bio_from_per_bio_data(void *data, size_t data_size) 300{ 301 return (struct bio *)((char *)data + data_size + offsetof(struct dm_target_io, clone)); 302} 303 304static inline unsigned dm_bio_get_target_bio_nr(const struct bio *bio) 305{ 306 return container_of(bio, struct dm_target_io, clone)->target_bio_nr; 307} 308 309int dm_register_target(struct target_type *t); 310void dm_unregister_target(struct target_type *t); 311 312/* 313 * Target argument parsing. 314 */ 315struct dm_arg_set { 316 unsigned argc; 317 char **argv; 318}; 319 320/* 321 * The minimum and maximum value of a numeric argument, together with 322 * the error message to use if the number is found to be outside that range. 323 */ 324struct dm_arg { 325 unsigned min; 326 unsigned max; 327 char *error; 328}; 329 330/* 331 * Validate the next argument, either returning it as *value or, if invalid, 332 * returning -EINVAL and setting *error. 333 */ 334int dm_read_arg(struct dm_arg *arg, struct dm_arg_set *arg_set, 335 unsigned *value, char **error); 336 337/* 338 * Process the next argument as the start of a group containing between 339 * arg->min and arg->max further arguments. Either return the size as 340 * *num_args or, if invalid, return -EINVAL and set *error. 341 */ 342int dm_read_arg_group(struct dm_arg *arg, struct dm_arg_set *arg_set, 343 unsigned *num_args, char **error); 344 345/* 346 * Return the current argument and shift to the next. 347 */ 348const char *dm_shift_arg(struct dm_arg_set *as); 349 350/* 351 * Move through num_args arguments. 352 */ 353void dm_consume_args(struct dm_arg_set *as, unsigned num_args); 354 355/*----------------------------------------------------------------- 356 * Functions for creating and manipulating mapped devices. 357 * Drop the reference with dm_put when you finish with the object. 358 *---------------------------------------------------------------*/ 359 360/* 361 * DM_ANY_MINOR chooses the next available minor number. 362 */ 363#define DM_ANY_MINOR (-1) 364int dm_create(int minor, struct mapped_device **md); 365 366/* 367 * Reference counting for md. 368 */ 369struct mapped_device *dm_get_md(dev_t dev); 370void dm_get(struct mapped_device *md); 371void dm_put(struct mapped_device *md); 372 373/* 374 * An arbitrary pointer may be stored alongside a mapped device. 375 */ 376void dm_set_mdptr(struct mapped_device *md, void *ptr); 377void *dm_get_mdptr(struct mapped_device *md); 378 379/* 380 * A device can still be used while suspended, but I/O is deferred. 381 */ 382int dm_suspend(struct mapped_device *md, unsigned suspend_flags); 383int dm_resume(struct mapped_device *md); 384 385/* 386 * Event functions. 387 */ 388uint32_t dm_get_event_nr(struct mapped_device *md); 389int dm_wait_event(struct mapped_device *md, int event_nr); 390uint32_t dm_next_uevent_seq(struct mapped_device *md); 391void dm_uevent_add(struct mapped_device *md, struct list_head *elist); 392 393/* 394 * Info functions. 395 */ 396const char *dm_device_name(struct mapped_device *md); 397int dm_copy_name_and_uuid(struct mapped_device *md, char *name, char *uuid); 398struct gendisk *dm_disk(struct mapped_device *md); 399int dm_suspended(struct dm_target *ti); 400int dm_noflush_suspending(struct dm_target *ti); 401void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors); 402union map_info *dm_get_rq_mapinfo(struct request *rq); 403 404struct queue_limits *dm_get_queue_limits(struct mapped_device *md); 405 406/* 407 * Geometry functions. 408 */ 409int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo); 410int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo); 411 412/*----------------------------------------------------------------- 413 * Functions for manipulating device-mapper tables. 414 *---------------------------------------------------------------*/ 415 416/* 417 * First create an empty table. 418 */ 419int dm_table_create(struct dm_table **result, fmode_t mode, 420 unsigned num_targets, struct mapped_device *md); 421 422/* 423 * Then call this once for each target. 424 */ 425int dm_table_add_target(struct dm_table *t, const char *type, 426 sector_t start, sector_t len, char *params); 427 428/* 429 * Target_ctr should call this if it needs to add any callbacks. 430 */ 431void dm_table_add_target_callbacks(struct dm_table *t, struct dm_target_callbacks *cb); 432 433/* 434 * Finally call this to make the table ready for use. 435 */ 436int dm_table_complete(struct dm_table *t); 437 438/* 439 * Target may require that it is never sent I/O larger than len. 440 */ 441int __must_check dm_set_target_max_io_len(struct dm_target *ti, sector_t len); 442 443/* 444 * Table reference counting. 445 */ 446struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx); 447void dm_put_live_table(struct mapped_device *md, int srcu_idx); 448void dm_sync_table(struct mapped_device *md); 449 450/* 451 * Queries 452 */ 453sector_t dm_table_get_size(struct dm_table *t); 454unsigned int dm_table_get_num_targets(struct dm_table *t); 455fmode_t dm_table_get_mode(struct dm_table *t); 456struct mapped_device *dm_table_get_md(struct dm_table *t); 457 458/* 459 * Trigger an event. 460 */ 461void dm_table_event(struct dm_table *t); 462 463/* 464 * Run the queue for request-based targets. 465 */ 466void dm_table_run_md_queue_async(struct dm_table *t); 467 468/* 469 * The device must be suspended before calling this method. 470 * Returns the previous table, which the caller must destroy. 471 */ 472struct dm_table *dm_swap_table(struct mapped_device *md, 473 struct dm_table *t); 474 475/* 476 * A wrapper around vmalloc. 477 */ 478void *dm_vcalloc(unsigned long nmemb, unsigned long elem_size); 479 480/*----------------------------------------------------------------- 481 * Macros. 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 * Definitions of return values from target end_io function. 544 */ 545#define DM_ENDIO_INCOMPLETE 1 546#define DM_ENDIO_REQUEUE 2 547 548/* 549 * Definitions of return values from target map function. 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 * Ceiling(n / sz) 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 * ceiling(n / size) * size 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 * Sector offset taken relative to the start of the target instead of 586 * relative to the start of the device. 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 * Helper for block layer and dm core operations 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 /* _LINUX_DEVICE_MAPPER_H */