blob: ed419c62dde1876f4561179b6b4bc3052a50ed14 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2001 Sistina Software (UK) Limited.
Alasdair G Kergon0da336e2008-04-24 21:43:52 +01003 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This file is released under the LGPL.
6 */
7
8#ifndef _LINUX_DEVICE_MAPPER_H
9#define _LINUX_DEVICE_MAPPER_H
10
Heinz Mauelshagen416cd172008-04-24 21:43:35 +010011#include <linux/bio.h>
Milan Brozf6fccb12008-07-21 12:00:37 +010012#include <linux/blkdev.h>
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -040013#include <linux/math64.h>
Namhyung Kim71a16732011-10-31 20:18:54 +000014#include <linux/ratelimit.h>
Heinz Mauelshagen416cd172008-04-24 21:43:35 +010015
Mike Snitzeraf4874e2009-06-22 10:12:33 +010016struct dm_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017struct dm_target;
18struct dm_table;
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070019struct mapped_device;
Milan Brozf6fccb12008-07-21 12:00:37 +010020struct bio_vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
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 * In the constructor the target parameter will already have the
31 * table, type, begin and len fields filled in.
32 */
33typedef int (*dm_ctr_fn) (struct dm_target *target,
34 unsigned int argc, char **argv);
35
36/*
37 * The destructor doesn't need to free the dm_target, just
38 * anything hidden ti->private.
39 */
40typedef void (*dm_dtr_fn) (struct dm_target *ti);
41
42/*
43 * The map function must return:
44 * < 0: error
45 * = 0: The target will handle the io by resubmitting it later
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -080046 * = 1: simple remap complete
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -080047 * = 2: The target wants to push back the io
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 */
Mikulas Patocka7de3ee52012-12-21 20:23:41 +000049typedef int (*dm_map_fn) (struct dm_target *ti, struct bio *bio);
Kiyoshi Ueda7d763452009-01-06 03:05:07 +000050typedef int (*dm_map_request_fn) (struct dm_target *ti, struct request *clone,
51 union map_info *map_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/*
54 * Returns:
55 * < 0 : error (currently ignored)
56 * 0 : ended successfully
57 * 1 : for some reason the io has still not completed (eg,
58 * multipath target might want to requeue a failed io).
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -080059 * 2 : The target wants to push back the io
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 */
61typedef int (*dm_endio_fn) (struct dm_target *ti,
Mikulas Patocka7de3ee52012-12-21 20:23:41 +000062 struct bio *bio, int error);
Kiyoshi Ueda7d763452009-01-06 03:05:07 +000063typedef int (*dm_request_endio_fn) (struct dm_target *ti,
64 struct request *clone, int error,
65 union map_info *map_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67typedef void (*dm_presuspend_fn) (struct dm_target *ti);
68typedef void (*dm_postsuspend_fn) (struct dm_target *ti);
Milan Broz8757b772006-10-03 01:15:36 -070069typedef int (*dm_preresume_fn) (struct dm_target *ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070typedef void (*dm_resume_fn) (struct dm_target *ti);
71
Mikulas Patockafd7c0922013-03-01 22:45:44 +000072typedef void (*dm_status_fn) (struct dm_target *ti, status_type_t status_type,
73 unsigned status_flags, char *result, unsigned maxlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75typedef int (*dm_message_fn) (struct dm_target *ti, unsigned argc, char **argv);
76
Al Viro647b3d02007-08-28 22:15:59 -040077typedef int (*dm_ioctl_fn) (struct dm_target *ti, unsigned int cmd,
Milan Brozaa129a22006-10-03 01:15:15 -070078 unsigned long arg);
79
Milan Brozf6fccb12008-07-21 12:00:37 +010080typedef int (*dm_merge_fn) (struct dm_target *ti, struct bvec_merge_data *bvm,
81 struct bio_vec *biovec, int max_size);
82
Alasdair G Kergon058ce5c2013-05-10 14:37:17 +010083/*
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 */
Mike Snitzeraf4874e2009-06-22 10:12:33 +010093typedef int (*iterate_devices_callout_fn) (struct dm_target *ti,
94 struct dm_dev *dev,
Mike Snitzer5dea2712009-07-23 20:30:42 +010095 sector_t start, sector_t len,
Mike Snitzeraf4874e2009-06-22 10:12:33 +010096 void *data);
97
Alasdair G Kergon058ce5c2013-05-10 14:37:17 +010098/*
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 */
Mike Snitzeraf4874e2009-06-22 10:12:33 +0100103typedef int (*dm_iterate_devices_fn) (struct dm_target *ti,
104 iterate_devices_callout_fn fn,
105 void *data);
106
Mike Snitzer40bea432009-09-04 20:40:25 +0100107typedef void (*dm_io_hints_fn) (struct dm_target *ti,
108 struct queue_limits *limits);
109
Kiyoshi Ueda7d763452009-01-06 03:05:07 +0000110/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117void dm_error(const char *message);
118
119/*
Bryn Reeves3cb40212006-10-03 01:15:42 -0700120 * Combine device limits.
121 */
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100122int dm_set_device_limits(struct dm_target *ti, struct dm_dev *dev,
Mike Snitzer5dea2712009-07-23 20:30:42 +0100123 sector_t start, sector_t len, void *data);
Bryn Reeves3cb40212006-10-03 01:15:42 -0700124
Mikulas Patocka82b15192008-10-10 13:37:09 +0100125struct dm_dev {
126 struct block_device *bdev;
Al Viroaeb5d722008-09-02 15:28:45 -0400127 fmode_t mode;
Mikulas Patocka82b15192008-10-10 13:37:09 +0100128 char name[16];
129};
130
Bryn Reeves3cb40212006-10-03 01:15:42 -0700131/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 * Constructors should call these functions to ensure destination devices
133 * are opened/closed correctly.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 */
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +0000135int dm_get_device(struct dm_target *ti, const char *path, fmode_t mode,
136 struct dm_dev **result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137void dm_put_device(struct dm_target *ti, struct dm_dev *d);
138
139/*
140 * Information about a target type
141 */
Andi Kleenab4c142482009-01-06 03:05:09 +0000142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143struct target_type {
Andi Kleenab4c142482009-01-06 03:05:09 +0000144 uint64_t features;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 const char *name;
146 struct module *module;
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700147 unsigned version[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 dm_ctr_fn ctr;
149 dm_dtr_fn dtr;
150 dm_map_fn map;
Kiyoshi Ueda7d763452009-01-06 03:05:07 +0000151 dm_map_request_fn map_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 dm_endio_fn end_io;
Kiyoshi Ueda7d763452009-01-06 03:05:07 +0000153 dm_request_endio_fn rq_end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 dm_presuspend_fn presuspend;
155 dm_postsuspend_fn postsuspend;
Milan Broz8757b772006-10-03 01:15:36 -0700156 dm_preresume_fn preresume;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 dm_resume_fn resume;
158 dm_status_fn status;
159 dm_message_fn message;
Milan Brozaa129a22006-10-03 01:15:15 -0700160 dm_ioctl_fn ioctl;
Milan Brozf6fccb12008-07-21 12:00:37 +0100161 dm_merge_fn merge;
Kiyoshi Ueda7d763452009-01-06 03:05:07 +0000162 dm_busy_fn busy;
Mike Snitzeraf4874e2009-06-22 10:12:33 +0100163 dm_iterate_devices_fn iterate_devices;
Mike Snitzer40bea432009-09-04 20:40:25 +0100164 dm_io_hints_fn io_hints;
Cheng Renquan45194e42009-04-02 19:55:28 +0100165
166 /* For internal device-mapper use. */
167 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168};
169
Alasdair G Kergon3791e2f2011-10-31 20:19:00 +0000170/*
171 * Target features
172 */
173
174/*
175 * Any table that contains an instance of this target must have only one.
176 */
177#define DM_TARGET_SINGLETON 0x00000001
178#define dm_target_needs_singleton(type) ((type)->features & DM_TARGET_SINGLETON)
179
Alasdair G Kergoncc6cbe12011-10-31 20:19:02 +0000180/*
181 * Indicates that a target does not support read-only devices.
182 */
183#define DM_TARGET_ALWAYS_WRITEABLE 0x00000002
184#define dm_target_always_writeable(type) \
185 ((type)->features & DM_TARGET_ALWAYS_WRITEABLE)
186
Alasdair G Kergon36a04562011-10-31 20:19:04 +0000187/*
188 * Any device that contains a table with an instance of this target may never
189 * have tables containing any different target type.
190 */
191#define DM_TARGET_IMMUTABLE 0x00000004
192#define dm_target_is_immutable(type) ((type)->features & DM_TARGET_IMMUTABLE)
193
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +0000194/*
195 * Some targets need to be sent the same WRITE bio severals times so
196 * that they can send copies of it to different devices. This function
197 * examines any supplied bio and returns the number of copies of it the
198 * target requires.
199 */
200typedef unsigned (*dm_num_write_bios_fn) (struct dm_target *ti, struct bio *bio);
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202struct dm_target {
203 struct dm_table *table;
204 struct target_type *type;
205
206 /* target limits */
207 sector_t begin;
208 sector_t len;
209
Mike Snitzer542f9032012-07-27 15:08:00 +0100210 /* If non-zero, maximum size of I/O submitted to a target. */
211 uint32_t max_io_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 /*
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +0000214 * A number of zero-length barrier bios that will be submitted
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +0100215 * to the target for the purpose of flushing cache.
216 *
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +0000217 * The bio number can be accessed with dm_bio_get_target_bio_nr.
218 * It is a responsibility of the target driver to remap these bios
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +0100219 * to the real underlying devices.
220 */
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +0000221 unsigned num_flush_bios;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +0100222
Mike Snitzer5ae89a82010-08-12 04:14:08 +0100223 /*
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +0000224 * The number of discard bios that will be submitted to the target.
225 * The bio number can be accessed with dm_bio_get_target_bio_nr.
Mike Snitzer5ae89a82010-08-12 04:14:08 +0100226 */
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +0000227 unsigned num_discard_bios;
Mike Snitzer5ae89a82010-08-12 04:14:08 +0100228
Mike Snitzerd54eaa52012-12-21 20:23:36 +0000229 /*
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +0000230 * The number of WRITE SAME bios that will be submitted to the target.
231 * The bio number can be accessed with dm_bio_get_target_bio_nr.
Mike Snitzerd54eaa52012-12-21 20:23:36 +0000232 */
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +0000233 unsigned num_write_same_bios;
Mike Snitzerd54eaa52012-12-21 20:23:36 +0000234
Mikulas Patockac0820cf2012-12-21 20:23:38 +0000235 /*
236 * The minimum number of extra bytes allocated in each bio for the
237 * target to use. dm_per_bio_data returns the data location.
238 */
239 unsigned per_bio_data_size;
240
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +0000241 /*
242 * If defined, this function is called to find out how many
243 * duplicate bios should be sent to the target when writing
244 * data.
245 */
246 dm_num_write_bios_fn num_write_bios;
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 /* target specific data */
249 void *private;
250
251 /* Used to provide an error string from the ctr */
252 char *error;
Mike Snitzer4c259322011-05-29 12:52:55 +0100253
254 /*
Joe Thornber0e9c24e2012-07-27 15:08:07 +0100255 * Set if this target needs to receive flushes regardless of
256 * whether or not its underlying devices have support.
257 */
258 bool flush_supported:1;
259
260 /*
Mike Snitzer4c259322011-05-29 12:52:55 +0100261 * Set if this target needs to receive discards regardless of
262 * whether or not its underlying devices have support.
263 */
Alasdair G Kergon0ac55482012-07-27 15:08:08 +0100264 bool discards_supported:1;
Milan Broz983c7db2011-09-25 23:26:21 +0100265
266 /*
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +0000267 * Set if the target required discard bios to be split
Mikulas Patocka7acf0272012-07-27 15:08:03 +0100268 * on max_io_len boundary.
269 */
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +0000270 bool split_discard_bios:1;
Mikulas Patocka7acf0272012-07-27 15:08:03 +0100271
272 /*
Milan Broz983c7db2011-09-25 23:26:21 +0100273 * Set if this target does not return zeroes on discarded blocks.
274 */
Alasdair G Kergon0ac55482012-07-27 15:08:08 +0100275 bool discard_zeroes_data_unsupported:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276};
277
NeilBrown9d357b02011-01-13 20:00:01 +0000278/* Each target can link one of these into the table */
279struct dm_target_callbacks {
280 struct list_head list;
281 int (*congested_fn) (struct dm_target_callbacks *, int);
282};
283
Mikulas Patockac0820cf2012-12-21 20:23:38 +0000284/*
285 * For bio-based dm.
286 * One of these is allocated for each bio.
287 * This structure shouldn't be touched directly by target drivers.
288 * It is here so that we can inline dm_per_bio_data and
289 * dm_bio_from_per_bio_data
290 */
291struct dm_target_io {
292 struct dm_io *io;
293 struct dm_target *ti;
294 union map_info info;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +0000295 unsigned target_bio_nr;
Mikulas Patockac0820cf2012-12-21 20:23:38 +0000296 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
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +0000309static inline unsigned dm_bio_get_target_bio_nr(const struct bio *bio)
Mikulas Patockaddbd6582012-12-21 20:23:39 +0000310{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +0000311 return container_of(bio, struct dm_target_io, clone)->target_bio_nr;
Mikulas Patockaddbd6582012-12-21 20:23:39 +0000312}
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314int dm_register_target(struct target_type *t);
Mikulas Patocka10d3bd02009-01-06 03:04:58 +0000315void dm_unregister_target(struct target_type *t);
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700316
Mike Snitzer498f0102011-08-02 12:32:04 +0100317/*
318 * Target argument parsing.
319 */
320struct dm_arg_set {
321 unsigned argc;
322 char **argv;
323};
324
325/*
326 * The minimum and maximum value of a numeric argument, together with
327 * the error message to use if the number is found to be outside that range.
328 */
329struct dm_arg {
330 unsigned min;
331 unsigned max;
332 char *error;
333};
334
335/*
336 * Validate the next argument, either returning it as *value or, if invalid,
337 * returning -EINVAL and setting *error.
338 */
339int dm_read_arg(struct dm_arg *arg, struct dm_arg_set *arg_set,
340 unsigned *value, char **error);
341
342/*
343 * Process the next argument as the start of a group containing between
344 * arg->min and arg->max further arguments. Either return the size as
345 * *num_args or, if invalid, return -EINVAL and set *error.
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 * Return the current argument and shift to the next.
352 */
353const char *dm_shift_arg(struct dm_arg_set *as);
354
355/*
356 * Move through num_args arguments.
357 */
358void dm_consume_args(struct dm_arg_set *as, unsigned num_args);
359
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700360/*-----------------------------------------------------------------
361 * Functions for creating and manipulating mapped devices.
362 * Drop the reference with dm_put when you finish with the object.
363 *---------------------------------------------------------------*/
364
365/*
366 * DM_ANY_MINOR chooses the next available minor number.
367 */
368#define DM_ANY_MINOR (-1)
369int dm_create(int minor, struct mapped_device **md);
370
371/*
372 * Reference counting for md.
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 * An arbitrary pointer may be stored alongside a mapped device.
380 */
381void dm_set_mdptr(struct mapped_device *md, void *ptr);
382void *dm_get_mdptr(struct mapped_device *md);
383
384/*
385 * A device can still be used while suspended, but I/O is deferred.
386 */
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -0800387int dm_suspend(struct mapped_device *md, unsigned suspend_flags);
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700388int dm_resume(struct mapped_device *md);
389
390/*
391 * Event functions.
392 */
393uint32_t dm_get_event_nr(struct mapped_device *md);
394int dm_wait_event(struct mapped_device *md, int event_nr);
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100395uint32_t dm_next_uevent_seq(struct mapped_device *md);
396void dm_uevent_add(struct mapped_device *md, struct list_head *elist);
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700397
398/*
399 * Info functions.
400 */
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700401const char *dm_device_name(struct mapped_device *md);
Mike Anderson96a1f7d2007-10-19 22:47:59 +0100402int dm_copy_name_and_uuid(struct mapped_device *md, char *name, char *uuid);
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700403struct gendisk *dm_disk(struct mapped_device *md);
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +0000404int dm_suspended(struct dm_target *ti);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800405int dm_noflush_suspending(struct dm_target *ti);
Mikulas Patocka89343da2008-10-10 13:37:10 +0100406union map_info *dm_get_mapinfo(struct bio *bio);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100407union map_info *dm_get_rq_mapinfo(struct request *rq);
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700408
Mike Snitzerf84cb8a2013-09-19 12:13:58 -0400409struct queue_limits *dm_get_queue_limits(struct mapped_device *md);
410
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700411/*
412 * Geometry functions.
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
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700417/*-----------------------------------------------------------------
418 * Functions for manipulating device-mapper tables.
419 *---------------------------------------------------------------*/
420
421/*
422 * First create an empty table.
423 */
Al Viroaeb5d722008-09-02 15:28:45 -0400424int dm_table_create(struct dm_table **result, fmode_t mode,
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700425 unsigned num_targets, struct mapped_device *md);
426
427/*
428 * Then call this once for each target.
429 */
430int dm_table_add_target(struct dm_table *t, const char *type,
431 sector_t start, sector_t len, char *params);
432
433/*
NeilBrown9d357b02011-01-13 20:00:01 +0000434 * Target_ctr should call this if it needs to add any callbacks.
435 */
436void dm_table_add_target_callbacks(struct dm_table *t, struct dm_target_callbacks *cb);
437
438/*
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700439 * Finally call this to make the table ready for use.
440 */
441int dm_table_complete(struct dm_table *t);
442
443/*
Mike Snitzer542f9032012-07-27 15:08:00 +0100444 * Target may require that it is never sent I/O larger than len.
445 */
446int __must_check dm_set_target_max_io_len(struct dm_target *ti, sector_t len);
447
448/*
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700449 * Table reference counting.
450 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100451struct 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);
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700454
455/*
456 * Queries
457 */
458sector_t dm_table_get_size(struct dm_table *t);
459unsigned int dm_table_get_num_targets(struct dm_table *t);
Al Viroaeb5d722008-09-02 15:28:45 -0400460fmode_t dm_table_get_mode(struct dm_table *t);
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700461struct mapped_device *dm_table_get_md(struct dm_table *t);
462
463/*
464 * Trigger an event.
465 */
466void dm_table_event(struct dm_table *t);
467
468/*
469 * The device must be suspended before calling this method.
Alasdair G Kergon042d2a92009-12-10 23:52:24 +0000470 * Returns the previous table, which the caller must destroy.
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700471 */
Alasdair G Kergon042d2a92009-12-10 23:52:24 +0000472struct dm_table *dm_swap_table(struct mapped_device *md,
473 struct dm_table *t);
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700474
Mikulas Patocka54160902008-10-10 13:37:12 +0100475/*
476 * A wrapper around vmalloc.
477 */
478void *dm_vcalloc(unsigned long nmemb, unsigned long elem_size);
479
Alasdair G Kergon0da336e2008-04-24 21:43:52 +0100480/*-----------------------------------------------------------------
481 * Macros.
482 *---------------------------------------------------------------*/
483#define DM_NAME "device-mapper"
484
Namhyung Kim71a16732011-10-31 20:18:54 +0000485#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
Mikulas Patocka10d3bd02009-01-06 03:04:58 +0000493#define DMCRIT(f, arg...) \
494 printk(KERN_CRIT DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg)
495
Alasdair G Kergon0da336e2008-04-24 21:43:52 +0100496#define DMERR(f, arg...) \
497 printk(KERN_ERR DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg)
498#define DMERR_LIMIT(f, arg...) \
499 do { \
Namhyung Kim71a16732011-10-31 20:18:54 +0000500 if (dm_ratelimit()) \
Alasdair G Kergon0da336e2008-04-24 21:43:52 +0100501 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 { \
Namhyung Kim71a16732011-10-31 20:18:54 +0000509 if (dm_ratelimit()) \
Alasdair G Kergon0da336e2008-04-24 21:43:52 +0100510 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 { \
Namhyung Kim71a16732011-10-31 20:18:54 +0000518 if (dm_ratelimit()) \
Alasdair G Kergon0da336e2008-04-24 21:43:52 +0100519 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 { \
Namhyung Kim71a16732011-10-31 20:18:54 +0000528 if (dm_ratelimit()) \
Alasdair G Kergon0da336e2008-04-24 21:43:52 +0100529 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
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400555#define dm_sector_div64(x, y)( \
556{ \
557 u64 _res; \
558 (x) = div64_u64_rem(x, y, &_res); \
559 _res; \
560} \
561)
562
Alasdair G Kergon0da336e2008-04-24 21:43:52 +0100563/*
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
Mikulas Patockad63a5ce2008-10-21 17:44:57 +0100581#define dm_array_too_big(fixed, obj, num) \
582 ((num) > (UINT_MAX - (fixed)) / (obj))
583
Mike Snitzer56a67df2010-08-12 04:14:10 +0100584/*
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
Alasdair G Kergon0da336e2008-04-24 21:43:52 +0100590static 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
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100600/*-----------------------------------------------------------------
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
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700608#endif /* _LINUX_DEVICE_MAPPER_H */