dm.c 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666
  1. /*
  2. * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
  3. * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
  4. *
  5. * This file is released under the GPL.
  6. */
  7. #include "dm.h"
  8. #include "dm-bio-list.h"
  9. #include "dm-uevent.h"
  10. #include <linux/init.h>
  11. #include <linux/module.h>
  12. #include <linux/mutex.h>
  13. #include <linux/moduleparam.h>
  14. #include <linux/blkpg.h>
  15. #include <linux/bio.h>
  16. #include <linux/buffer_head.h>
  17. #include <linux/mempool.h>
  18. #include <linux/slab.h>
  19. #include <linux/idr.h>
  20. #include <linux/hdreg.h>
  21. #include <linux/blktrace_api.h>
  22. #include <linux/smp_lock.h>
  23. #define DM_MSG_PREFIX "core"
  24. static const char *_name = DM_NAME;
  25. static unsigned int major = 0;
  26. static unsigned int _major = 0;
  27. static DEFINE_SPINLOCK(_minor_lock);
  28. /*
  29. * One of these is allocated per bio.
  30. */
  31. struct dm_io {
  32. struct mapped_device *md;
  33. int error;
  34. struct bio *bio;
  35. atomic_t io_count;
  36. unsigned long start_time;
  37. };
  38. /*
  39. * One of these is allocated per target within a bio. Hopefully
  40. * this will be simplified out one day.
  41. */
  42. struct dm_target_io {
  43. struct dm_io *io;
  44. struct dm_target *ti;
  45. union map_info info;
  46. };
  47. union map_info *dm_get_mapinfo(struct bio *bio)
  48. {
  49. if (bio && bio->bi_private)
  50. return &((struct dm_target_io *)bio->bi_private)->info;
  51. return NULL;
  52. }
  53. #define MINOR_ALLOCED ((void *)-1)
  54. /*
  55. * Bits for the md->flags field.
  56. */
  57. #define DMF_BLOCK_IO 0
  58. #define DMF_SUSPENDED 1
  59. #define DMF_FROZEN 2
  60. #define DMF_FREEING 3
  61. #define DMF_DELETING 4
  62. #define DMF_NOFLUSH_SUSPENDING 5
  63. /*
  64. * Work processed by per-device workqueue.
  65. */
  66. struct dm_wq_req {
  67. enum {
  68. DM_WQ_FLUSH_ALL,
  69. DM_WQ_FLUSH_DEFERRED,
  70. } type;
  71. struct work_struct work;
  72. struct mapped_device *md;
  73. void *context;
  74. };
  75. struct mapped_device {
  76. struct rw_semaphore io_lock;
  77. struct mutex suspend_lock;
  78. spinlock_t pushback_lock;
  79. rwlock_t map_lock;
  80. atomic_t holders;
  81. atomic_t open_count;
  82. unsigned long flags;
  83. struct request_queue *queue;
  84. struct gendisk *disk;
  85. char name[16];
  86. void *interface_ptr;
  87. /*
  88. * A list of ios that arrived while we were suspended.
  89. */
  90. atomic_t pending;
  91. wait_queue_head_t wait;
  92. struct bio_list deferred;
  93. struct bio_list pushback;
  94. /*
  95. * Processing queue (flush/barriers)
  96. */
  97. struct workqueue_struct *wq;
  98. /*
  99. * The current mapping.
  100. */
  101. struct dm_table *map;
  102. /*
  103. * io objects are allocated from here.
  104. */
  105. mempool_t *io_pool;
  106. mempool_t *tio_pool;
  107. struct bio_set *bs;
  108. /*
  109. * Event handling.
  110. */
  111. atomic_t event_nr;
  112. wait_queue_head_t eventq;
  113. atomic_t uevent_seq;
  114. struct list_head uevent_list;
  115. spinlock_t uevent_lock; /* Protect access to uevent_list */
  116. /*
  117. * freeze/thaw support require holding onto a super block
  118. */
  119. struct super_block *frozen_sb;
  120. struct block_device *suspended_bdev;
  121. /* forced geometry settings */
  122. struct hd_geometry geometry;
  123. };
  124. #define MIN_IOS 256
  125. static struct kmem_cache *_io_cache;
  126. static struct kmem_cache *_tio_cache;
  127. static int __init local_init(void)
  128. {
  129. int r;
  130. /* allocate a slab for the dm_ios */
  131. _io_cache = KMEM_CACHE(dm_io, 0);
  132. if (!_io_cache)
  133. return -ENOMEM;
  134. /* allocate a slab for the target ios */
  135. _tio_cache = KMEM_CACHE(dm_target_io, 0);
  136. if (!_tio_cache) {
  137. kmem_cache_destroy(_io_cache);
  138. return -ENOMEM;
  139. }
  140. r = dm_uevent_init();
  141. if (r) {
  142. kmem_cache_destroy(_tio_cache);
  143. kmem_cache_destroy(_io_cache);
  144. return r;
  145. }
  146. _major = major;
  147. r = register_blkdev(_major, _name);
  148. if (r < 0) {
  149. kmem_cache_destroy(_tio_cache);
  150. kmem_cache_destroy(_io_cache);
  151. dm_uevent_exit();
  152. return r;
  153. }
  154. if (!_major)
  155. _major = r;
  156. return 0;
  157. }
  158. static void local_exit(void)
  159. {
  160. kmem_cache_destroy(_tio_cache);
  161. kmem_cache_destroy(_io_cache);
  162. unregister_blkdev(_major, _name);
  163. dm_uevent_exit();
  164. _major = 0;
  165. DMINFO("cleaned up");
  166. }
  167. static int (*_inits[])(void) __initdata = {
  168. local_init,
  169. dm_target_init,
  170. dm_linear_init,
  171. dm_stripe_init,
  172. dm_kcopyd_init,
  173. dm_interface_init,
  174. };
  175. static void (*_exits[])(void) = {
  176. local_exit,
  177. dm_target_exit,
  178. dm_linear_exit,
  179. dm_stripe_exit,
  180. dm_kcopyd_exit,
  181. dm_interface_exit,
  182. };
  183. static int __init dm_init(void)
  184. {
  185. const int count = ARRAY_SIZE(_inits);
  186. int r, i;
  187. for (i = 0; i < count; i++) {
  188. r = _inits[i]();
  189. if (r)
  190. goto bad;
  191. }
  192. return 0;
  193. bad:
  194. while (i--)
  195. _exits[i]();
  196. return r;
  197. }
  198. static void __exit dm_exit(void)
  199. {
  200. int i = ARRAY_SIZE(_exits);
  201. while (i--)
  202. _exits[i]();
  203. }
  204. /*
  205. * Block device functions
  206. */
  207. static int dm_blk_open(struct inode *inode, struct file *file)
  208. {
  209. struct mapped_device *md;
  210. spin_lock(&_minor_lock);
  211. md = inode->i_bdev->bd_disk->private_data;
  212. if (!md)
  213. goto out;
  214. if (test_bit(DMF_FREEING, &md->flags) ||
  215. test_bit(DMF_DELETING, &md->flags)) {
  216. md = NULL;
  217. goto out;
  218. }
  219. dm_get(md);
  220. atomic_inc(&md->open_count);
  221. out:
  222. spin_unlock(&_minor_lock);
  223. return md ? 0 : -ENXIO;
  224. }
  225. static int dm_blk_close(struct inode *inode, struct file *file)
  226. {
  227. struct mapped_device *md;
  228. md = inode->i_bdev->bd_disk->private_data;
  229. atomic_dec(&md->open_count);
  230. dm_put(md);
  231. return 0;
  232. }
  233. int dm_open_count(struct mapped_device *md)
  234. {
  235. return atomic_read(&md->open_count);
  236. }
  237. /*
  238. * Guarantees nothing is using the device before it's deleted.
  239. */
  240. int dm_lock_for_deletion(struct mapped_device *md)
  241. {
  242. int r = 0;
  243. spin_lock(&_minor_lock);
  244. if (dm_open_count(md))
  245. r = -EBUSY;
  246. else
  247. set_bit(DMF_DELETING, &md->flags);
  248. spin_unlock(&_minor_lock);
  249. return r;
  250. }
  251. static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
  252. {
  253. struct mapped_device *md = bdev->bd_disk->private_data;
  254. return dm_get_geometry(md, geo);
  255. }
  256. static int dm_blk_ioctl(struct inode *inode, struct file *file,
  257. unsigned int cmd, unsigned long arg)
  258. {
  259. struct mapped_device *md;
  260. struct dm_table *map;
  261. struct dm_target *tgt;
  262. int r = -ENOTTY;
  263. /* We don't really need this lock, but we do need 'inode'. */
  264. unlock_kernel();
  265. md = inode->i_bdev->bd_disk->private_data;
  266. map = dm_get_table(md);
  267. if (!map || !dm_table_get_size(map))
  268. goto out;
  269. /* We only support devices that have a single target */
  270. if (dm_table_get_num_targets(map) != 1)
  271. goto out;
  272. tgt = dm_table_get_target(map, 0);
  273. if (dm_suspended(md)) {
  274. r = -EAGAIN;
  275. goto out;
  276. }
  277. if (tgt->type->ioctl)
  278. r = tgt->type->ioctl(tgt, inode, file, cmd, arg);
  279. out:
  280. dm_table_put(map);
  281. lock_kernel();
  282. return r;
  283. }
  284. static struct dm_io *alloc_io(struct mapped_device *md)
  285. {
  286. return mempool_alloc(md->io_pool, GFP_NOIO);
  287. }
  288. static void free_io(struct mapped_device *md, struct dm_io *io)
  289. {
  290. mempool_free(io, md->io_pool);
  291. }
  292. static struct dm_target_io *alloc_tio(struct mapped_device *md)
  293. {
  294. return mempool_alloc(md->tio_pool, GFP_NOIO);
  295. }
  296. static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
  297. {
  298. mempool_free(tio, md->tio_pool);
  299. }
  300. static void start_io_acct(struct dm_io *io)
  301. {
  302. struct mapped_device *md = io->md;
  303. io->start_time = jiffies;
  304. preempt_disable();
  305. disk_round_stats(dm_disk(md));
  306. preempt_enable();
  307. dm_disk(md)->in_flight = atomic_inc_return(&md->pending);
  308. }
  309. static int end_io_acct(struct dm_io *io)
  310. {
  311. struct mapped_device *md = io->md;
  312. struct bio *bio = io->bio;
  313. unsigned long duration = jiffies - io->start_time;
  314. int pending;
  315. int rw = bio_data_dir(bio);
  316. preempt_disable();
  317. disk_round_stats(dm_disk(md));
  318. preempt_enable();
  319. dm_disk(md)->in_flight = pending = atomic_dec_return(&md->pending);
  320. disk_stat_add(dm_disk(md), ticks[rw], duration);
  321. return !pending;
  322. }
  323. /*
  324. * Add the bio to the list of deferred io.
  325. */
  326. static int queue_io(struct mapped_device *md, struct bio *bio)
  327. {
  328. down_write(&md->io_lock);
  329. if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
  330. up_write(&md->io_lock);
  331. return 1;
  332. }
  333. bio_list_add(&md->deferred, bio);
  334. up_write(&md->io_lock);
  335. return 0; /* deferred successfully */
  336. }
  337. /*
  338. * Everyone (including functions in this file), should use this
  339. * function to access the md->map field, and make sure they call
  340. * dm_table_put() when finished.
  341. */
  342. struct dm_table *dm_get_table(struct mapped_device *md)
  343. {
  344. struct dm_table *t;
  345. read_lock(&md->map_lock);
  346. t = md->map;
  347. if (t)
  348. dm_table_get(t);
  349. read_unlock(&md->map_lock);
  350. return t;
  351. }
  352. /*
  353. * Get the geometry associated with a dm device
  354. */
  355. int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
  356. {
  357. *geo = md->geometry;
  358. return 0;
  359. }
  360. /*
  361. * Set the geometry of a device.
  362. */
  363. int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
  364. {
  365. sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
  366. if (geo->start > sz) {
  367. DMWARN("Start sector is beyond the geometry limits.");
  368. return -EINVAL;
  369. }
  370. md->geometry = *geo;
  371. return 0;
  372. }
  373. /*-----------------------------------------------------------------
  374. * CRUD START:
  375. * A more elegant soln is in the works that uses the queue
  376. * merge fn, unfortunately there are a couple of changes to
  377. * the block layer that I want to make for this. So in the
  378. * interests of getting something for people to use I give
  379. * you this clearly demarcated crap.
  380. *---------------------------------------------------------------*/
  381. static int __noflush_suspending(struct mapped_device *md)
  382. {
  383. return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
  384. }
  385. /*
  386. * Decrements the number of outstanding ios that a bio has been
  387. * cloned into, completing the original io if necc.
  388. */
  389. static void dec_pending(struct dm_io *io, int error)
  390. {
  391. unsigned long flags;
  392. /* Push-back supersedes any I/O errors */
  393. if (error && !(io->error > 0 && __noflush_suspending(io->md)))
  394. io->error = error;
  395. if (atomic_dec_and_test(&io->io_count)) {
  396. if (io->error == DM_ENDIO_REQUEUE) {
  397. /*
  398. * Target requested pushing back the I/O.
  399. * This must be handled before the sleeper on
  400. * suspend queue merges the pushback list.
  401. */
  402. spin_lock_irqsave(&io->md->pushback_lock, flags);
  403. if (__noflush_suspending(io->md))
  404. bio_list_add(&io->md->pushback, io->bio);
  405. else
  406. /* noflush suspend was interrupted. */
  407. io->error = -EIO;
  408. spin_unlock_irqrestore(&io->md->pushback_lock, flags);
  409. }
  410. if (end_io_acct(io))
  411. /* nudge anyone waiting on suspend queue */
  412. wake_up(&io->md->wait);
  413. if (io->error != DM_ENDIO_REQUEUE) {
  414. blk_add_trace_bio(io->md->queue, io->bio,
  415. BLK_TA_COMPLETE);
  416. bio_endio(io->bio, io->error);
  417. }
  418. free_io(io->md, io);
  419. }
  420. }
  421. static void clone_endio(struct bio *bio, int error)
  422. {
  423. int r = 0;
  424. struct dm_target_io *tio = bio->bi_private;
  425. struct mapped_device *md = tio->io->md;
  426. dm_endio_fn endio = tio->ti->type->end_io;
  427. if (!bio_flagged(bio, BIO_UPTODATE) && !error)
  428. error = -EIO;
  429. if (endio) {
  430. r = endio(tio->ti, bio, error, &tio->info);
  431. if (r < 0 || r == DM_ENDIO_REQUEUE)
  432. /*
  433. * error and requeue request are handled
  434. * in dec_pending().
  435. */
  436. error = r;
  437. else if (r == DM_ENDIO_INCOMPLETE)
  438. /* The target will handle the io */
  439. return;
  440. else if (r) {
  441. DMWARN("unimplemented target endio return value: %d", r);
  442. BUG();
  443. }
  444. }
  445. dec_pending(tio->io, error);
  446. /*
  447. * Store md for cleanup instead of tio which is about to get freed.
  448. */
  449. bio->bi_private = md->bs;
  450. bio_put(bio);
  451. free_tio(md, tio);
  452. }
  453. static sector_t max_io_len(struct mapped_device *md,
  454. sector_t sector, struct dm_target *ti)
  455. {
  456. sector_t offset = sector - ti->begin;
  457. sector_t len = ti->len - offset;
  458. /*
  459. * Does the target need to split even further ?
  460. */
  461. if (ti->split_io) {
  462. sector_t boundary;
  463. boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
  464. - offset;
  465. if (len > boundary)
  466. len = boundary;
  467. }
  468. return len;
  469. }
  470. static void __map_bio(struct dm_target *ti, struct bio *clone,
  471. struct dm_target_io *tio)
  472. {
  473. int r;
  474. sector_t sector;
  475. struct mapped_device *md;
  476. /*
  477. * Sanity checks.
  478. */
  479. BUG_ON(!clone->bi_size);
  480. clone->bi_end_io = clone_endio;
  481. clone->bi_private = tio;
  482. /*
  483. * Map the clone. If r == 0 we don't need to do
  484. * anything, the target has assumed ownership of
  485. * this io.
  486. */
  487. atomic_inc(&tio->io->io_count);
  488. sector = clone->bi_sector;
  489. r = ti->type->map(ti, clone, &tio->info);
  490. if (r == DM_MAPIO_REMAPPED) {
  491. /* the bio has been remapped so dispatch it */
  492. blk_add_trace_remap(bdev_get_queue(clone->bi_bdev), clone,
  493. tio->io->bio->bi_bdev->bd_dev,
  494. clone->bi_sector, sector);
  495. generic_make_request(clone);
  496. } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
  497. /* error the io and bail out, or requeue it if needed */
  498. md = tio->io->md;
  499. dec_pending(tio->io, r);
  500. /*
  501. * Store bio_set for cleanup.
  502. */
  503. clone->bi_private = md->bs;
  504. bio_put(clone);
  505. free_tio(md, tio);
  506. } else if (r) {
  507. DMWARN("unimplemented target map return value: %d", r);
  508. BUG();
  509. }
  510. }
  511. struct clone_info {
  512. struct mapped_device *md;
  513. struct dm_table *map;
  514. struct bio *bio;
  515. struct dm_io *io;
  516. sector_t sector;
  517. sector_t sector_count;
  518. unsigned short idx;
  519. };
  520. static void dm_bio_destructor(struct bio *bio)
  521. {
  522. struct bio_set *bs = bio->bi_private;
  523. bio_free(bio, bs);
  524. }
  525. /*
  526. * Creates a little bio that is just does part of a bvec.
  527. */
  528. static struct bio *split_bvec(struct bio *bio, sector_t sector,
  529. unsigned short idx, unsigned int offset,
  530. unsigned int len, struct bio_set *bs)
  531. {
  532. struct bio *clone;
  533. struct bio_vec *bv = bio->bi_io_vec + idx;
  534. clone = bio_alloc_bioset(GFP_NOIO, 1, bs);
  535. clone->bi_destructor = dm_bio_destructor;
  536. *clone->bi_io_vec = *bv;
  537. clone->bi_sector = sector;
  538. clone->bi_bdev = bio->bi_bdev;
  539. clone->bi_rw = bio->bi_rw;
  540. clone->bi_vcnt = 1;
  541. clone->bi_size = to_bytes(len);
  542. clone->bi_io_vec->bv_offset = offset;
  543. clone->bi_io_vec->bv_len = clone->bi_size;
  544. return clone;
  545. }
  546. /*
  547. * Creates a bio that consists of range of complete bvecs.
  548. */
  549. static struct bio *clone_bio(struct bio *bio, sector_t sector,
  550. unsigned short idx, unsigned short bv_count,
  551. unsigned int len, struct bio_set *bs)
  552. {
  553. struct bio *clone;
  554. clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
  555. __bio_clone(clone, bio);
  556. clone->bi_destructor = dm_bio_destructor;
  557. clone->bi_sector = sector;
  558. clone->bi_idx = idx;
  559. clone->bi_vcnt = idx + bv_count;
  560. clone->bi_size = to_bytes(len);
  561. clone->bi_flags &= ~(1 << BIO_SEG_VALID);
  562. return clone;
  563. }
  564. static int __clone_and_map(struct clone_info *ci)
  565. {
  566. struct bio *clone, *bio = ci->bio;
  567. struct dm_target *ti;
  568. sector_t len = 0, max;
  569. struct dm_target_io *tio;
  570. ti = dm_table_find_target(ci->map, ci->sector);
  571. if (!dm_target_is_valid(ti))
  572. return -EIO;
  573. max = max_io_len(ci->md, ci->sector, ti);
  574. /*
  575. * Allocate a target io object.
  576. */
  577. tio = alloc_tio(ci->md);
  578. tio->io = ci->io;
  579. tio->ti = ti;
  580. memset(&tio->info, 0, sizeof(tio->info));
  581. if (ci->sector_count <= max) {
  582. /*
  583. * Optimise for the simple case where we can do all of
  584. * the remaining io with a single clone.
  585. */
  586. clone = clone_bio(bio, ci->sector, ci->idx,
  587. bio->bi_vcnt - ci->idx, ci->sector_count,
  588. ci->md->bs);
  589. __map_bio(ti, clone, tio);
  590. ci->sector_count = 0;
  591. } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
  592. /*
  593. * There are some bvecs that don't span targets.
  594. * Do as many of these as possible.
  595. */
  596. int i;
  597. sector_t remaining = max;
  598. sector_t bv_len;
  599. for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
  600. bv_len = to_sector(bio->bi_io_vec[i].bv_len);
  601. if (bv_len > remaining)
  602. break;
  603. remaining -= bv_len;
  604. len += bv_len;
  605. }
  606. clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len,
  607. ci->md->bs);
  608. __map_bio(ti, clone, tio);
  609. ci->sector += len;
  610. ci->sector_count -= len;
  611. ci->idx = i;
  612. } else {
  613. /*
  614. * Handle a bvec that must be split between two or more targets.
  615. */
  616. struct bio_vec *bv = bio->bi_io_vec + ci->idx;
  617. sector_t remaining = to_sector(bv->bv_len);
  618. unsigned int offset = 0;
  619. do {
  620. if (offset) {
  621. ti = dm_table_find_target(ci->map, ci->sector);
  622. if (!dm_target_is_valid(ti))
  623. return -EIO;
  624. max = max_io_len(ci->md, ci->sector, ti);
  625. tio = alloc_tio(ci->md);
  626. tio->io = ci->io;
  627. tio->ti = ti;
  628. memset(&tio->info, 0, sizeof(tio->info));
  629. }
  630. len = min(remaining, max);
  631. clone = split_bvec(bio, ci->sector, ci->idx,
  632. bv->bv_offset + offset, len,
  633. ci->md->bs);
  634. __map_bio(ti, clone, tio);
  635. ci->sector += len;
  636. ci->sector_count -= len;
  637. offset += to_bytes(len);
  638. } while (remaining -= len);
  639. ci->idx++;
  640. }
  641. return 0;
  642. }
  643. /*
  644. * Split the bio into several clones.
  645. */
  646. static int __split_bio(struct mapped_device *md, struct bio *bio)
  647. {
  648. struct clone_info ci;
  649. int error = 0;
  650. ci.map = dm_get_table(md);
  651. if (unlikely(!ci.map))
  652. return -EIO;
  653. ci.md = md;
  654. ci.bio = bio;
  655. ci.io = alloc_io(md);
  656. ci.io->error = 0;
  657. atomic_set(&ci.io->io_count, 1);
  658. ci.io->bio = bio;
  659. ci.io->md = md;
  660. ci.sector = bio->bi_sector;
  661. ci.sector_count = bio_sectors(bio);
  662. ci.idx = bio->bi_idx;
  663. start_io_acct(ci.io);
  664. while (ci.sector_count && !error)
  665. error = __clone_and_map(&ci);
  666. /* drop the extra reference count */
  667. dec_pending(ci.io, error);
  668. dm_table_put(ci.map);
  669. return 0;
  670. }
  671. /*-----------------------------------------------------------------
  672. * CRUD END
  673. *---------------------------------------------------------------*/
  674. /*
  675. * The request function that just remaps the bio built up by
  676. * dm_merge_bvec.
  677. */
  678. static int dm_request(struct request_queue *q, struct bio *bio)
  679. {
  680. int r = -EIO;
  681. int rw = bio_data_dir(bio);
  682. struct mapped_device *md = q->queuedata;
  683. /*
  684. * There is no use in forwarding any barrier request since we can't
  685. * guarantee it is (or can be) handled by the targets correctly.
  686. */
  687. if (unlikely(bio_barrier(bio))) {
  688. bio_endio(bio, -EOPNOTSUPP);
  689. return 0;
  690. }
  691. down_read(&md->io_lock);
  692. disk_stat_inc(dm_disk(md), ios[rw]);
  693. disk_stat_add(dm_disk(md), sectors[rw], bio_sectors(bio));
  694. /*
  695. * If we're suspended we have to queue
  696. * this io for later.
  697. */
  698. while (test_bit(DMF_BLOCK_IO, &md->flags)) {
  699. up_read(&md->io_lock);
  700. if (bio_rw(bio) != READA)
  701. r = queue_io(md, bio);
  702. if (r <= 0)
  703. goto out_req;
  704. /*
  705. * We're in a while loop, because someone could suspend
  706. * before we get to the following read lock.
  707. */
  708. down_read(&md->io_lock);
  709. }
  710. r = __split_bio(md, bio);
  711. up_read(&md->io_lock);
  712. out_req:
  713. if (r < 0)
  714. bio_io_error(bio);
  715. return 0;
  716. }
  717. static void dm_unplug_all(struct request_queue *q)
  718. {
  719. struct mapped_device *md = q->queuedata;
  720. struct dm_table *map = dm_get_table(md);
  721. if (map) {
  722. dm_table_unplug_all(map);
  723. dm_table_put(map);
  724. }
  725. }
  726. static int dm_any_congested(void *congested_data, int bdi_bits)
  727. {
  728. int r;
  729. struct mapped_device *md = (struct mapped_device *) congested_data;
  730. struct dm_table *map = dm_get_table(md);
  731. if (!map || test_bit(DMF_BLOCK_IO, &md->flags))
  732. r = bdi_bits;
  733. else
  734. r = dm_table_any_congested(map, bdi_bits);
  735. dm_table_put(map);
  736. return r;
  737. }
  738. /*-----------------------------------------------------------------
  739. * An IDR is used to keep track of allocated minor numbers.
  740. *---------------------------------------------------------------*/
  741. static DEFINE_IDR(_minor_idr);
  742. static void free_minor(int minor)
  743. {
  744. spin_lock(&_minor_lock);
  745. idr_remove(&_minor_idr, minor);
  746. spin_unlock(&_minor_lock);
  747. }
  748. /*
  749. * See if the device with a specific minor # is free.
  750. */
  751. static int specific_minor(int minor)
  752. {
  753. int r, m;
  754. if (minor >= (1 << MINORBITS))
  755. return -EINVAL;
  756. r = idr_pre_get(&_minor_idr, GFP_KERNEL);
  757. if (!r)
  758. return -ENOMEM;
  759. spin_lock(&_minor_lock);
  760. if (idr_find(&_minor_idr, minor)) {
  761. r = -EBUSY;
  762. goto out;
  763. }
  764. r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
  765. if (r)
  766. goto out;
  767. if (m != minor) {
  768. idr_remove(&_minor_idr, m);
  769. r = -EBUSY;
  770. goto out;
  771. }
  772. out:
  773. spin_unlock(&_minor_lock);
  774. return r;
  775. }
  776. static int next_free_minor(int *minor)
  777. {
  778. int r, m;
  779. r = idr_pre_get(&_minor_idr, GFP_KERNEL);
  780. if (!r)
  781. return -ENOMEM;
  782. spin_lock(&_minor_lock);
  783. r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
  784. if (r)
  785. goto out;
  786. if (m >= (1 << MINORBITS)) {
  787. idr_remove(&_minor_idr, m);
  788. r = -ENOSPC;
  789. goto out;
  790. }
  791. *minor = m;
  792. out:
  793. spin_unlock(&_minor_lock);
  794. return r;
  795. }
  796. static struct block_device_operations dm_blk_dops;
  797. /*
  798. * Allocate and initialise a blank device with a given minor.
  799. */
  800. static struct mapped_device *alloc_dev(int minor)
  801. {
  802. int r;
  803. struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
  804. void *old_md;
  805. if (!md) {
  806. DMWARN("unable to allocate device, out of memory.");
  807. return NULL;
  808. }
  809. if (!try_module_get(THIS_MODULE))
  810. goto bad_module_get;
  811. /* get a minor number for the dev */
  812. if (minor == DM_ANY_MINOR)
  813. r = next_free_minor(&minor);
  814. else
  815. r = specific_minor(minor);
  816. if (r < 0)
  817. goto bad_minor;
  818. init_rwsem(&md->io_lock);
  819. mutex_init(&md->suspend_lock);
  820. spin_lock_init(&md->pushback_lock);
  821. rwlock_init(&md->map_lock);
  822. atomic_set(&md->holders, 1);
  823. atomic_set(&md->open_count, 0);
  824. atomic_set(&md->event_nr, 0);
  825. atomic_set(&md->uevent_seq, 0);
  826. INIT_LIST_HEAD(&md->uevent_list);
  827. spin_lock_init(&md->uevent_lock);
  828. md->queue = blk_alloc_queue(GFP_KERNEL);
  829. if (!md->queue)
  830. goto bad_queue;
  831. md->queue->queuedata = md;
  832. md->queue->backing_dev_info.congested_fn = dm_any_congested;
  833. md->queue->backing_dev_info.congested_data = md;
  834. blk_queue_make_request(md->queue, dm_request);
  835. blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
  836. md->queue->unplug_fn = dm_unplug_all;
  837. md->io_pool = mempool_create_slab_pool(MIN_IOS, _io_cache);
  838. if (!md->io_pool)
  839. goto bad_io_pool;
  840. md->tio_pool = mempool_create_slab_pool(MIN_IOS, _tio_cache);
  841. if (!md->tio_pool)
  842. goto bad_tio_pool;
  843. md->bs = bioset_create(16, 16);
  844. if (!md->bs)
  845. goto bad_no_bioset;
  846. md->disk = alloc_disk(1);
  847. if (!md->disk)
  848. goto bad_disk;
  849. atomic_set(&md->pending, 0);
  850. init_waitqueue_head(&md->wait);
  851. init_waitqueue_head(&md->eventq);
  852. md->disk->major = _major;
  853. md->disk->first_minor = minor;
  854. md->disk->fops = &dm_blk_dops;
  855. md->disk->queue = md->queue;
  856. md->disk->private_data = md;
  857. sprintf(md->disk->disk_name, "dm-%d", minor);
  858. add_disk(md->disk);
  859. format_dev_t(md->name, MKDEV(_major, minor));
  860. md->wq = create_singlethread_workqueue("kdmflush");
  861. if (!md->wq)
  862. goto bad_thread;
  863. /* Populate the mapping, nobody knows we exist yet */
  864. spin_lock(&_minor_lock);
  865. old_md = idr_replace(&_minor_idr, md, minor);
  866. spin_unlock(&_minor_lock);
  867. BUG_ON(old_md != MINOR_ALLOCED);
  868. return md;
  869. bad_thread:
  870. put_disk(md->disk);
  871. bad_disk:
  872. bioset_free(md->bs);
  873. bad_no_bioset:
  874. mempool_destroy(md->tio_pool);
  875. bad_tio_pool:
  876. mempool_destroy(md->io_pool);
  877. bad_io_pool:
  878. blk_cleanup_queue(md->queue);
  879. bad_queue:
  880. free_minor(minor);
  881. bad_minor:
  882. module_put(THIS_MODULE);
  883. bad_module_get:
  884. kfree(md);
  885. return NULL;
  886. }
  887. static void unlock_fs(struct mapped_device *md);
  888. static void free_dev(struct mapped_device *md)
  889. {
  890. int minor = md->disk->first_minor;
  891. if (md->suspended_bdev) {
  892. unlock_fs(md);
  893. bdput(md->suspended_bdev);
  894. }
  895. destroy_workqueue(md->wq);
  896. mempool_destroy(md->tio_pool);
  897. mempool_destroy(md->io_pool);
  898. bioset_free(md->bs);
  899. del_gendisk(md->disk);
  900. free_minor(minor);
  901. spin_lock(&_minor_lock);
  902. md->disk->private_data = NULL;
  903. spin_unlock(&_minor_lock);
  904. put_disk(md->disk);
  905. blk_cleanup_queue(md->queue);
  906. module_put(THIS_MODULE);
  907. kfree(md);
  908. }
  909. /*
  910. * Bind a table to the device.
  911. */
  912. static void event_callback(void *context)
  913. {
  914. unsigned long flags;
  915. LIST_HEAD(uevents);
  916. struct mapped_device *md = (struct mapped_device *) context;
  917. spin_lock_irqsave(&md->uevent_lock, flags);
  918. list_splice_init(&md->uevent_list, &uevents);
  919. spin_unlock_irqrestore(&md->uevent_lock, flags);
  920. dm_send_uevents(&uevents, &md->disk->dev.kobj);
  921. atomic_inc(&md->event_nr);
  922. wake_up(&md->eventq);
  923. }
  924. static void __set_size(struct mapped_device *md, sector_t size)
  925. {
  926. set_capacity(md->disk, size);
  927. mutex_lock(&md->suspended_bdev->bd_inode->i_mutex);
  928. i_size_write(md->suspended_bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
  929. mutex_unlock(&md->suspended_bdev->bd_inode->i_mutex);
  930. }
  931. static int __bind(struct mapped_device *md, struct dm_table *t)
  932. {
  933. struct request_queue *q = md->queue;
  934. sector_t size;
  935. size = dm_table_get_size(t);
  936. /*
  937. * Wipe any geometry if the size of the table changed.
  938. */
  939. if (size != get_capacity(md->disk))
  940. memset(&md->geometry, 0, sizeof(md->geometry));
  941. if (md->suspended_bdev)
  942. __set_size(md, size);
  943. if (size == 0)
  944. return 0;
  945. dm_table_get(t);
  946. dm_table_event_callback(t, event_callback, md);
  947. write_lock(&md->map_lock);
  948. md->map = t;
  949. dm_table_set_restrictions(t, q);
  950. write_unlock(&md->map_lock);
  951. return 0;
  952. }
  953. static void __unbind(struct mapped_device *md)
  954. {
  955. struct dm_table *map = md->map;
  956. if (!map)
  957. return;
  958. dm_table_event_callback(map, NULL, NULL);
  959. write_lock(&md->map_lock);
  960. md->map = NULL;
  961. write_unlock(&md->map_lock);
  962. dm_table_put(map);
  963. }
  964. /*
  965. * Constructor for a new device.
  966. */
  967. int dm_create(int minor, struct mapped_device **result)
  968. {
  969. struct mapped_device *md;
  970. md = alloc_dev(minor);
  971. if (!md)
  972. return -ENXIO;
  973. *result = md;
  974. return 0;
  975. }
  976. static struct mapped_device *dm_find_md(dev_t dev)
  977. {
  978. struct mapped_device *md;
  979. unsigned minor = MINOR(dev);
  980. if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
  981. return NULL;
  982. spin_lock(&_minor_lock);
  983. md = idr_find(&_minor_idr, minor);
  984. if (md && (md == MINOR_ALLOCED ||
  985. (dm_disk(md)->first_minor != minor) ||
  986. test_bit(DMF_FREEING, &md->flags))) {
  987. md = NULL;
  988. goto out;
  989. }
  990. out:
  991. spin_unlock(&_minor_lock);
  992. return md;
  993. }
  994. struct mapped_device *dm_get_md(dev_t dev)
  995. {
  996. struct mapped_device *md = dm_find_md(dev);
  997. if (md)
  998. dm_get(md);
  999. return md;
  1000. }
  1001. void *dm_get_mdptr(struct mapped_device *md)
  1002. {
  1003. return md->interface_ptr;
  1004. }
  1005. void dm_set_mdptr(struct mapped_device *md, void *ptr)
  1006. {
  1007. md->interface_ptr = ptr;
  1008. }
  1009. void dm_get(struct mapped_device *md)
  1010. {
  1011. atomic_inc(&md->holders);
  1012. }
  1013. const char *dm_device_name(struct mapped_device *md)
  1014. {
  1015. return md->name;
  1016. }
  1017. EXPORT_SYMBOL_GPL(dm_device_name);
  1018. void dm_put(struct mapped_device *md)
  1019. {
  1020. struct dm_table *map;
  1021. BUG_ON(test_bit(DMF_FREEING, &md->flags));
  1022. if (atomic_dec_and_lock(&md->holders, &_minor_lock)) {
  1023. map = dm_get_table(md);
  1024. idr_replace(&_minor_idr, MINOR_ALLOCED, dm_disk(md)->first_minor);
  1025. set_bit(DMF_FREEING, &md->flags);
  1026. spin_unlock(&_minor_lock);
  1027. if (!dm_suspended(md)) {
  1028. dm_table_presuspend_targets(map);
  1029. dm_table_postsuspend_targets(map);
  1030. }
  1031. __unbind(md);
  1032. dm_table_put(map);
  1033. free_dev(md);
  1034. }
  1035. }
  1036. EXPORT_SYMBOL_GPL(dm_put);
  1037. static int dm_wait_for_completion(struct mapped_device *md)
  1038. {
  1039. int r = 0;
  1040. while (1) {
  1041. set_current_state(TASK_INTERRUPTIBLE);
  1042. smp_mb();
  1043. if (!atomic_read(&md->pending))
  1044. break;
  1045. if (signal_pending(current)) {
  1046. r = -EINTR;
  1047. break;
  1048. }
  1049. io_schedule();
  1050. }
  1051. set_current_state(TASK_RUNNING);
  1052. return r;
  1053. }
  1054. /*
  1055. * Process the deferred bios
  1056. */
  1057. static void __flush_deferred_io(struct mapped_device *md)
  1058. {
  1059. struct bio *c;
  1060. while ((c = bio_list_pop(&md->deferred))) {
  1061. if (__split_bio(md, c))
  1062. bio_io_error(c);
  1063. }
  1064. clear_bit(DMF_BLOCK_IO, &md->flags);
  1065. }
  1066. static void __merge_pushback_list(struct mapped_device *md)
  1067. {
  1068. unsigned long flags;
  1069. spin_lock_irqsave(&md->pushback_lock, flags);
  1070. clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
  1071. bio_list_merge_head(&md->deferred, &md->pushback);
  1072. bio_list_init(&md->pushback);
  1073. spin_unlock_irqrestore(&md->pushback_lock, flags);
  1074. }
  1075. static void dm_wq_work(struct work_struct *work)
  1076. {
  1077. struct dm_wq_req *req = container_of(work, struct dm_wq_req, work);
  1078. struct mapped_device *md = req->md;
  1079. down_write(&md->io_lock);
  1080. switch (req->type) {
  1081. case DM_WQ_FLUSH_ALL:
  1082. __merge_pushback_list(md);
  1083. /* pass through */
  1084. case DM_WQ_FLUSH_DEFERRED:
  1085. __flush_deferred_io(md);
  1086. break;
  1087. default:
  1088. DMERR("dm_wq_work: unrecognised work type %d", req->type);
  1089. BUG();
  1090. }
  1091. up_write(&md->io_lock);
  1092. }
  1093. static void dm_wq_queue(struct mapped_device *md, int type, void *context,
  1094. struct dm_wq_req *req)
  1095. {
  1096. req->type = type;
  1097. req->md = md;
  1098. req->context = context;
  1099. INIT_WORK(&req->work, dm_wq_work);
  1100. queue_work(md->wq, &req->work);
  1101. }
  1102. static void dm_queue_flush(struct mapped_device *md, int type, void *context)
  1103. {
  1104. struct dm_wq_req req;
  1105. dm_wq_queue(md, type, context, &req);
  1106. flush_workqueue(md->wq);
  1107. }
  1108. /*
  1109. * Swap in a new table (destroying old one).
  1110. */
  1111. int dm_swap_table(struct mapped_device *md, struct dm_table *table)
  1112. {
  1113. int r = -EINVAL;
  1114. mutex_lock(&md->suspend_lock);
  1115. /* device must be suspended */
  1116. if (!dm_suspended(md))
  1117. goto out;
  1118. /* without bdev, the device size cannot be changed */
  1119. if (!md->suspended_bdev)
  1120. if (get_capacity(md->disk) != dm_table_get_size(table))
  1121. goto out;
  1122. __unbind(md);
  1123. r = __bind(md, table);
  1124. out:
  1125. mutex_unlock(&md->suspend_lock);
  1126. return r;
  1127. }
  1128. /*
  1129. * Functions to lock and unlock any filesystem running on the
  1130. * device.
  1131. */
  1132. static int lock_fs(struct mapped_device *md)
  1133. {
  1134. int r;
  1135. WARN_ON(md->frozen_sb);
  1136. md->frozen_sb = freeze_bdev(md->suspended_bdev);
  1137. if (IS_ERR(md->frozen_sb)) {
  1138. r = PTR_ERR(md->frozen_sb);
  1139. md->frozen_sb = NULL;
  1140. return r;
  1141. }
  1142. set_bit(DMF_FROZEN, &md->flags);
  1143. /* don't bdput right now, we don't want the bdev
  1144. * to go away while it is locked.
  1145. */
  1146. return 0;
  1147. }
  1148. static void unlock_fs(struct mapped_device *md)
  1149. {
  1150. if (!test_bit(DMF_FROZEN, &md->flags))
  1151. return;
  1152. thaw_bdev(md->suspended_bdev, md->frozen_sb);
  1153. md->frozen_sb = NULL;
  1154. clear_bit(DMF_FROZEN, &md->flags);
  1155. }
  1156. /*
  1157. * We need to be able to change a mapping table under a mounted
  1158. * filesystem. For example we might want to move some data in
  1159. * the background. Before the table can be swapped with
  1160. * dm_bind_table, dm_suspend must be called to flush any in
  1161. * flight bios and ensure that any further io gets deferred.
  1162. */
  1163. int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
  1164. {
  1165. struct dm_table *map = NULL;
  1166. DECLARE_WAITQUEUE(wait, current);
  1167. int r = 0;
  1168. int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
  1169. int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
  1170. mutex_lock(&md->suspend_lock);
  1171. if (dm_suspended(md)) {
  1172. r = -EINVAL;
  1173. goto out_unlock;
  1174. }
  1175. map = dm_get_table(md);
  1176. /*
  1177. * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
  1178. * This flag is cleared before dm_suspend returns.
  1179. */
  1180. if (noflush)
  1181. set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
  1182. /* This does not get reverted if there's an error later. */
  1183. dm_table_presuspend_targets(map);
  1184. /* bdget() can stall if the pending I/Os are not flushed */
  1185. if (!noflush) {
  1186. md->suspended_bdev = bdget_disk(md->disk, 0);
  1187. if (!md->suspended_bdev) {
  1188. DMWARN("bdget failed in dm_suspend");
  1189. r = -ENOMEM;
  1190. goto flush_and_out;
  1191. }
  1192. /*
  1193. * Flush I/O to the device. noflush supersedes do_lockfs,
  1194. * because lock_fs() needs to flush I/Os.
  1195. */
  1196. if (do_lockfs) {
  1197. r = lock_fs(md);
  1198. if (r)
  1199. goto out;
  1200. }
  1201. }
  1202. /*
  1203. * First we set the BLOCK_IO flag so no more ios will be mapped.
  1204. */
  1205. down_write(&md->io_lock);
  1206. set_bit(DMF_BLOCK_IO, &md->flags);
  1207. add_wait_queue(&md->wait, &wait);
  1208. up_write(&md->io_lock);
  1209. /* unplug */
  1210. if (map)
  1211. dm_table_unplug_all(map);
  1212. /*
  1213. * Wait for the already-mapped ios to complete.
  1214. */
  1215. r = dm_wait_for_completion(md);
  1216. down_write(&md->io_lock);
  1217. remove_wait_queue(&md->wait, &wait);
  1218. if (noflush)
  1219. __merge_pushback_list(md);
  1220. up_write(&md->io_lock);
  1221. /* were we interrupted ? */
  1222. if (r < 0) {
  1223. dm_queue_flush(md, DM_WQ_FLUSH_DEFERRED, NULL);
  1224. unlock_fs(md);
  1225. goto out; /* pushback list is already flushed, so skip flush */
  1226. }
  1227. dm_table_postsuspend_targets(map);
  1228. set_bit(DMF_SUSPENDED, &md->flags);
  1229. flush_and_out:
  1230. if (r && noflush)
  1231. /*
  1232. * Because there may be already I/Os in the pushback list,
  1233. * flush them before return.
  1234. */
  1235. dm_queue_flush(md, DM_WQ_FLUSH_ALL, NULL);
  1236. out:
  1237. if (r && md->suspended_bdev) {
  1238. bdput(md->suspended_bdev);
  1239. md->suspended_bdev = NULL;
  1240. }
  1241. dm_table_put(map);
  1242. out_unlock:
  1243. mutex_unlock(&md->suspend_lock);
  1244. return r;
  1245. }
  1246. int dm_resume(struct mapped_device *md)
  1247. {
  1248. int r = -EINVAL;
  1249. struct dm_table *map = NULL;
  1250. mutex_lock(&md->suspend_lock);
  1251. if (!dm_suspended(md))
  1252. goto out;
  1253. map = dm_get_table(md);
  1254. if (!map || !dm_table_get_size(map))
  1255. goto out;
  1256. r = dm_table_resume_targets(map);
  1257. if (r)
  1258. goto out;
  1259. dm_queue_flush(md, DM_WQ_FLUSH_DEFERRED, NULL);
  1260. unlock_fs(md);
  1261. if (md->suspended_bdev) {
  1262. bdput(md->suspended_bdev);
  1263. md->suspended_bdev = NULL;
  1264. }
  1265. clear_bit(DMF_SUSPENDED, &md->flags);
  1266. dm_table_unplug_all(map);
  1267. dm_kobject_uevent(md);
  1268. r = 0;
  1269. out:
  1270. dm_table_put(map);
  1271. mutex_unlock(&md->suspend_lock);
  1272. return r;
  1273. }
  1274. /*-----------------------------------------------------------------
  1275. * Event notification.
  1276. *---------------------------------------------------------------*/
  1277. void dm_kobject_uevent(struct mapped_device *md)
  1278. {
  1279. kobject_uevent(&md->disk->dev.kobj, KOBJ_CHANGE);
  1280. }
  1281. uint32_t dm_next_uevent_seq(struct mapped_device *md)
  1282. {
  1283. return atomic_add_return(1, &md->uevent_seq);
  1284. }
  1285. uint32_t dm_get_event_nr(struct mapped_device *md)
  1286. {
  1287. return atomic_read(&md->event_nr);
  1288. }
  1289. int dm_wait_event(struct mapped_device *md, int event_nr)
  1290. {
  1291. return wait_event_interruptible(md->eventq,
  1292. (event_nr != atomic_read(&md->event_nr)));
  1293. }
  1294. void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
  1295. {
  1296. unsigned long flags;
  1297. spin_lock_irqsave(&md->uevent_lock, flags);
  1298. list_add(elist, &md->uevent_list);
  1299. spin_unlock_irqrestore(&md->uevent_lock, flags);
  1300. }
  1301. /*
  1302. * The gendisk is only valid as long as you have a reference
  1303. * count on 'md'.
  1304. */
  1305. struct gendisk *dm_disk(struct mapped_device *md)
  1306. {
  1307. return md->disk;
  1308. }
  1309. int dm_suspended(struct mapped_device *md)
  1310. {
  1311. return test_bit(DMF_SUSPENDED, &md->flags);
  1312. }
  1313. int dm_noflush_suspending(struct dm_target *ti)
  1314. {
  1315. struct mapped_device *md = dm_table_get_md(ti->table);
  1316. int r = __noflush_suspending(md);
  1317. dm_put(md);
  1318. return r;
  1319. }
  1320. EXPORT_SYMBOL_GPL(dm_noflush_suspending);
  1321. static struct block_device_operations dm_blk_dops = {
  1322. .open = dm_blk_open,
  1323. .release = dm_blk_close,
  1324. .ioctl = dm_blk_ioctl,
  1325. .getgeo = dm_blk_getgeo,
  1326. .owner = THIS_MODULE
  1327. };
  1328. EXPORT_SYMBOL(dm_get_mapinfo);
  1329. /*
  1330. * module hooks
  1331. */
  1332. module_init(dm_init);
  1333. module_exit(dm_exit);
  1334. module_param(major, uint, 0);
  1335. MODULE_PARM_DESC(major, "The major number of the device mapper");
  1336. MODULE_DESCRIPTION(DM_NAME " driver");
  1337. MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
  1338. MODULE_LICENSE("GPL");