dm-raid1.c 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454
  1. /*
  2. * Copyright (C) 2003 Sistina Software Limited.
  3. * Copyright (C) 2005-2008 Red Hat, Inc. All rights reserved.
  4. *
  5. * This file is released under the GPL.
  6. */
  7. #include "dm-bio-record.h"
  8. #include <linux/init.h>
  9. #include <linux/mempool.h>
  10. #include <linux/module.h>
  11. #include <linux/pagemap.h>
  12. #include <linux/slab.h>
  13. #include <linux/workqueue.h>
  14. #include <linux/device-mapper.h>
  15. #include <linux/dm-io.h>
  16. #include <linux/dm-dirty-log.h>
  17. #include <linux/dm-kcopyd.h>
  18. #include <linux/dm-region-hash.h>
  19. #define DM_MSG_PREFIX "raid1"
  20. #define MAX_RECOVERY 1 /* Maximum number of regions recovered in parallel. */
  21. #define DM_IO_PAGES 64
  22. #define DM_KCOPYD_PAGES 64
  23. #define DM_RAID1_HANDLE_ERRORS 0x01
  24. #define errors_handled(p) ((p)->features & DM_RAID1_HANDLE_ERRORS)
  25. static DECLARE_WAIT_QUEUE_HEAD(_kmirrord_recovery_stopped);
  26. /*-----------------------------------------------------------------
  27. * Mirror set structures.
  28. *---------------------------------------------------------------*/
  29. enum dm_raid1_error {
  30. DM_RAID1_WRITE_ERROR,
  31. DM_RAID1_FLUSH_ERROR,
  32. DM_RAID1_SYNC_ERROR,
  33. DM_RAID1_READ_ERROR
  34. };
  35. struct mirror {
  36. struct mirror_set *ms;
  37. atomic_t error_count;
  38. unsigned long error_type;
  39. struct dm_dev *dev;
  40. sector_t offset;
  41. };
  42. struct mirror_set {
  43. struct dm_target *ti;
  44. struct list_head list;
  45. uint64_t features;
  46. spinlock_t lock; /* protects the lists */
  47. struct bio_list reads;
  48. struct bio_list writes;
  49. struct bio_list failures;
  50. struct bio_list holds; /* bios are waiting until suspend */
  51. struct dm_region_hash *rh;
  52. struct dm_kcopyd_client *kcopyd_client;
  53. struct dm_io_client *io_client;
  54. mempool_t *read_record_pool;
  55. /* recovery */
  56. region_t nr_regions;
  57. int in_sync;
  58. int log_failure;
  59. int leg_failure;
  60. atomic_t suspend;
  61. atomic_t default_mirror; /* Default mirror */
  62. struct workqueue_struct *kmirrord_wq;
  63. struct work_struct kmirrord_work;
  64. struct timer_list timer;
  65. unsigned long timer_pending;
  66. struct work_struct trigger_event;
  67. unsigned nr_mirrors;
  68. struct mirror mirror[0];
  69. };
  70. static void wakeup_mirrord(void *context)
  71. {
  72. struct mirror_set *ms = context;
  73. queue_work(ms->kmirrord_wq, &ms->kmirrord_work);
  74. }
  75. static void delayed_wake_fn(unsigned long data)
  76. {
  77. struct mirror_set *ms = (struct mirror_set *) data;
  78. clear_bit(0, &ms->timer_pending);
  79. wakeup_mirrord(ms);
  80. }
  81. static void delayed_wake(struct mirror_set *ms)
  82. {
  83. if (test_and_set_bit(0, &ms->timer_pending))
  84. return;
  85. ms->timer.expires = jiffies + HZ / 5;
  86. ms->timer.data = (unsigned long) ms;
  87. ms->timer.function = delayed_wake_fn;
  88. add_timer(&ms->timer);
  89. }
  90. static void wakeup_all_recovery_waiters(void *context)
  91. {
  92. wake_up_all(&_kmirrord_recovery_stopped);
  93. }
  94. static void queue_bio(struct mirror_set *ms, struct bio *bio, int rw)
  95. {
  96. unsigned long flags;
  97. int should_wake = 0;
  98. struct bio_list *bl;
  99. bl = (rw == WRITE) ? &ms->writes : &ms->reads;
  100. spin_lock_irqsave(&ms->lock, flags);
  101. should_wake = !(bl->head);
  102. bio_list_add(bl, bio);
  103. spin_unlock_irqrestore(&ms->lock, flags);
  104. if (should_wake)
  105. wakeup_mirrord(ms);
  106. }
  107. static void dispatch_bios(void *context, struct bio_list *bio_list)
  108. {
  109. struct mirror_set *ms = context;
  110. struct bio *bio;
  111. while ((bio = bio_list_pop(bio_list)))
  112. queue_bio(ms, bio, WRITE);
  113. }
  114. #define MIN_READ_RECORDS 20
  115. struct dm_raid1_read_record {
  116. struct mirror *m;
  117. struct dm_bio_details details;
  118. };
  119. static struct kmem_cache *_dm_raid1_read_record_cache;
  120. /*
  121. * Every mirror should look like this one.
  122. */
  123. #define DEFAULT_MIRROR 0
  124. /*
  125. * This is yucky. We squirrel the mirror struct away inside
  126. * bi_next for read/write buffers. This is safe since the bh
  127. * doesn't get submitted to the lower levels of block layer.
  128. */
  129. static struct mirror *bio_get_m(struct bio *bio)
  130. {
  131. return (struct mirror *) bio->bi_next;
  132. }
  133. static void bio_set_m(struct bio *bio, struct mirror *m)
  134. {
  135. bio->bi_next = (struct bio *) m;
  136. }
  137. static struct mirror *get_default_mirror(struct mirror_set *ms)
  138. {
  139. return &ms->mirror[atomic_read(&ms->default_mirror)];
  140. }
  141. static void set_default_mirror(struct mirror *m)
  142. {
  143. struct mirror_set *ms = m->ms;
  144. struct mirror *m0 = &(ms->mirror[0]);
  145. atomic_set(&ms->default_mirror, m - m0);
  146. }
  147. static struct mirror *get_valid_mirror(struct mirror_set *ms)
  148. {
  149. struct mirror *m;
  150. for (m = ms->mirror; m < ms->mirror + ms->nr_mirrors; m++)
  151. if (!atomic_read(&m->error_count))
  152. return m;
  153. return NULL;
  154. }
  155. /* fail_mirror
  156. * @m: mirror device to fail
  157. * @error_type: one of the enum's, DM_RAID1_*_ERROR
  158. *
  159. * If errors are being handled, record the type of
  160. * error encountered for this device. If this type
  161. * of error has already been recorded, we can return;
  162. * otherwise, we must signal userspace by triggering
  163. * an event. Additionally, if the device is the
  164. * primary device, we must choose a new primary, but
  165. * only if the mirror is in-sync.
  166. *
  167. * This function must not block.
  168. */
  169. static void fail_mirror(struct mirror *m, enum dm_raid1_error error_type)
  170. {
  171. struct mirror_set *ms = m->ms;
  172. struct mirror *new;
  173. ms->leg_failure = 1;
  174. /*
  175. * error_count is used for nothing more than a
  176. * simple way to tell if a device has encountered
  177. * errors.
  178. */
  179. atomic_inc(&m->error_count);
  180. if (test_and_set_bit(error_type, &m->error_type))
  181. return;
  182. if (!errors_handled(ms))
  183. return;
  184. if (m != get_default_mirror(ms))
  185. goto out;
  186. if (!ms->in_sync) {
  187. /*
  188. * Better to issue requests to same failing device
  189. * than to risk returning corrupt data.
  190. */
  191. DMERR("Primary mirror (%s) failed while out-of-sync: "
  192. "Reads may fail.", m->dev->name);
  193. goto out;
  194. }
  195. new = get_valid_mirror(ms);
  196. if (new)
  197. set_default_mirror(new);
  198. else
  199. DMWARN("All sides of mirror have failed.");
  200. out:
  201. schedule_work(&ms->trigger_event);
  202. }
  203. static int mirror_flush(struct dm_target *ti)
  204. {
  205. struct mirror_set *ms = ti->private;
  206. unsigned long error_bits;
  207. unsigned int i;
  208. struct dm_io_region io[ms->nr_mirrors];
  209. struct mirror *m;
  210. struct dm_io_request io_req = {
  211. .bi_rw = WRITE_BARRIER,
  212. .mem.type = DM_IO_KMEM,
  213. .mem.ptr.bvec = NULL,
  214. .client = ms->io_client,
  215. };
  216. for (i = 0, m = ms->mirror; i < ms->nr_mirrors; i++, m++) {
  217. io[i].bdev = m->dev->bdev;
  218. io[i].sector = 0;
  219. io[i].count = 0;
  220. }
  221. error_bits = -1;
  222. dm_io(&io_req, ms->nr_mirrors, io, &error_bits);
  223. if (unlikely(error_bits != 0)) {
  224. for (i = 0; i < ms->nr_mirrors; i++)
  225. if (test_bit(i, &error_bits))
  226. fail_mirror(ms->mirror + i,
  227. DM_RAID1_FLUSH_ERROR);
  228. return -EIO;
  229. }
  230. return 0;
  231. }
  232. /*-----------------------------------------------------------------
  233. * Recovery.
  234. *
  235. * When a mirror is first activated we may find that some regions
  236. * are in the no-sync state. We have to recover these by
  237. * recopying from the default mirror to all the others.
  238. *---------------------------------------------------------------*/
  239. static void recovery_complete(int read_err, unsigned long write_err,
  240. void *context)
  241. {
  242. struct dm_region *reg = context;
  243. struct mirror_set *ms = dm_rh_region_context(reg);
  244. int m, bit = 0;
  245. if (read_err) {
  246. /* Read error means the failure of default mirror. */
  247. DMERR_LIMIT("Unable to read primary mirror during recovery");
  248. fail_mirror(get_default_mirror(ms), DM_RAID1_SYNC_ERROR);
  249. }
  250. if (write_err) {
  251. DMERR_LIMIT("Write error during recovery (error = 0x%lx)",
  252. write_err);
  253. /*
  254. * Bits correspond to devices (excluding default mirror).
  255. * The default mirror cannot change during recovery.
  256. */
  257. for (m = 0; m < ms->nr_mirrors; m++) {
  258. if (&ms->mirror[m] == get_default_mirror(ms))
  259. continue;
  260. if (test_bit(bit, &write_err))
  261. fail_mirror(ms->mirror + m,
  262. DM_RAID1_SYNC_ERROR);
  263. bit++;
  264. }
  265. }
  266. dm_rh_recovery_end(reg, !(read_err || write_err));
  267. }
  268. static int recover(struct mirror_set *ms, struct dm_region *reg)
  269. {
  270. int r;
  271. unsigned i;
  272. struct dm_io_region from, to[DM_KCOPYD_MAX_REGIONS], *dest;
  273. struct mirror *m;
  274. unsigned long flags = 0;
  275. region_t key = dm_rh_get_region_key(reg);
  276. sector_t region_size = dm_rh_get_region_size(ms->rh);
  277. /* fill in the source */
  278. m = get_default_mirror(ms);
  279. from.bdev = m->dev->bdev;
  280. from.sector = m->offset + dm_rh_region_to_sector(ms->rh, key);
  281. if (key == (ms->nr_regions - 1)) {
  282. /*
  283. * The final region may be smaller than
  284. * region_size.
  285. */
  286. from.count = ms->ti->len & (region_size - 1);
  287. if (!from.count)
  288. from.count = region_size;
  289. } else
  290. from.count = region_size;
  291. /* fill in the destinations */
  292. for (i = 0, dest = to; i < ms->nr_mirrors; i++) {
  293. if (&ms->mirror[i] == get_default_mirror(ms))
  294. continue;
  295. m = ms->mirror + i;
  296. dest->bdev = m->dev->bdev;
  297. dest->sector = m->offset + dm_rh_region_to_sector(ms->rh, key);
  298. dest->count = from.count;
  299. dest++;
  300. }
  301. /* hand to kcopyd */
  302. if (!errors_handled(ms))
  303. set_bit(DM_KCOPYD_IGNORE_ERROR, &flags);
  304. r = dm_kcopyd_copy(ms->kcopyd_client, &from, ms->nr_mirrors - 1, to,
  305. flags, recovery_complete, reg);
  306. return r;
  307. }
  308. static void do_recovery(struct mirror_set *ms)
  309. {
  310. struct dm_region *reg;
  311. struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
  312. int r;
  313. /*
  314. * Start quiescing some regions.
  315. */
  316. dm_rh_recovery_prepare(ms->rh);
  317. /*
  318. * Copy any already quiesced regions.
  319. */
  320. while ((reg = dm_rh_recovery_start(ms->rh))) {
  321. r = recover(ms, reg);
  322. if (r)
  323. dm_rh_recovery_end(reg, 0);
  324. }
  325. /*
  326. * Update the in sync flag.
  327. */
  328. if (!ms->in_sync &&
  329. (log->type->get_sync_count(log) == ms->nr_regions)) {
  330. /* the sync is complete */
  331. dm_table_event(ms->ti->table);
  332. ms->in_sync = 1;
  333. }
  334. }
  335. /*-----------------------------------------------------------------
  336. * Reads
  337. *---------------------------------------------------------------*/
  338. static struct mirror *choose_mirror(struct mirror_set *ms, sector_t sector)
  339. {
  340. struct mirror *m = get_default_mirror(ms);
  341. do {
  342. if (likely(!atomic_read(&m->error_count)))
  343. return m;
  344. if (m-- == ms->mirror)
  345. m += ms->nr_mirrors;
  346. } while (m != get_default_mirror(ms));
  347. return NULL;
  348. }
  349. static int default_ok(struct mirror *m)
  350. {
  351. struct mirror *default_mirror = get_default_mirror(m->ms);
  352. return !atomic_read(&default_mirror->error_count);
  353. }
  354. static int mirror_available(struct mirror_set *ms, struct bio *bio)
  355. {
  356. struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
  357. region_t region = dm_rh_bio_to_region(ms->rh, bio);
  358. if (log->type->in_sync(log, region, 0))
  359. return choose_mirror(ms, bio->bi_sector) ? 1 : 0;
  360. return 0;
  361. }
  362. /*
  363. * remap a buffer to a particular mirror.
  364. */
  365. static sector_t map_sector(struct mirror *m, struct bio *bio)
  366. {
  367. if (unlikely(!bio->bi_size))
  368. return 0;
  369. return m->offset + (bio->bi_sector - m->ms->ti->begin);
  370. }
  371. static void map_bio(struct mirror *m, struct bio *bio)
  372. {
  373. bio->bi_bdev = m->dev->bdev;
  374. bio->bi_sector = map_sector(m, bio);
  375. }
  376. static void map_region(struct dm_io_region *io, struct mirror *m,
  377. struct bio *bio)
  378. {
  379. io->bdev = m->dev->bdev;
  380. io->sector = map_sector(m, bio);
  381. io->count = bio->bi_size >> 9;
  382. }
  383. static void hold_bio(struct mirror_set *ms, struct bio *bio)
  384. {
  385. /*
  386. * If device is suspended, complete the bio.
  387. */
  388. if (atomic_read(&ms->suspend)) {
  389. if (dm_noflush_suspending(ms->ti))
  390. bio_endio(bio, DM_ENDIO_REQUEUE);
  391. else
  392. bio_endio(bio, -EIO);
  393. return;
  394. }
  395. /*
  396. * Hold bio until the suspend is complete.
  397. */
  398. spin_lock_irq(&ms->lock);
  399. bio_list_add(&ms->holds, bio);
  400. spin_unlock_irq(&ms->lock);
  401. }
  402. /*-----------------------------------------------------------------
  403. * Reads
  404. *---------------------------------------------------------------*/
  405. static void read_callback(unsigned long error, void *context)
  406. {
  407. struct bio *bio = context;
  408. struct mirror *m;
  409. m = bio_get_m(bio);
  410. bio_set_m(bio, NULL);
  411. if (likely(!error)) {
  412. bio_endio(bio, 0);
  413. return;
  414. }
  415. fail_mirror(m, DM_RAID1_READ_ERROR);
  416. if (likely(default_ok(m)) || mirror_available(m->ms, bio)) {
  417. DMWARN_LIMIT("Read failure on mirror device %s. "
  418. "Trying alternative device.",
  419. m->dev->name);
  420. queue_bio(m->ms, bio, bio_rw(bio));
  421. return;
  422. }
  423. DMERR_LIMIT("Read failure on mirror device %s. Failing I/O.",
  424. m->dev->name);
  425. bio_endio(bio, -EIO);
  426. }
  427. /* Asynchronous read. */
  428. static void read_async_bio(struct mirror *m, struct bio *bio)
  429. {
  430. struct dm_io_region io;
  431. struct dm_io_request io_req = {
  432. .bi_rw = READ,
  433. .mem.type = DM_IO_BVEC,
  434. .mem.ptr.bvec = bio->bi_io_vec + bio->bi_idx,
  435. .notify.fn = read_callback,
  436. .notify.context = bio,
  437. .client = m->ms->io_client,
  438. };
  439. map_region(&io, m, bio);
  440. bio_set_m(bio, m);
  441. BUG_ON(dm_io(&io_req, 1, &io, NULL));
  442. }
  443. static inline int region_in_sync(struct mirror_set *ms, region_t region,
  444. int may_block)
  445. {
  446. int state = dm_rh_get_state(ms->rh, region, may_block);
  447. return state == DM_RH_CLEAN || state == DM_RH_DIRTY;
  448. }
  449. static void do_reads(struct mirror_set *ms, struct bio_list *reads)
  450. {
  451. region_t region;
  452. struct bio *bio;
  453. struct mirror *m;
  454. while ((bio = bio_list_pop(reads))) {
  455. region = dm_rh_bio_to_region(ms->rh, bio);
  456. m = get_default_mirror(ms);
  457. /*
  458. * We can only read balance if the region is in sync.
  459. */
  460. if (likely(region_in_sync(ms, region, 1)))
  461. m = choose_mirror(ms, bio->bi_sector);
  462. else if (m && atomic_read(&m->error_count))
  463. m = NULL;
  464. if (likely(m))
  465. read_async_bio(m, bio);
  466. else
  467. bio_endio(bio, -EIO);
  468. }
  469. }
  470. /*-----------------------------------------------------------------
  471. * Writes.
  472. *
  473. * We do different things with the write io depending on the
  474. * state of the region that it's in:
  475. *
  476. * SYNC: increment pending, use kcopyd to write to *all* mirrors
  477. * RECOVERING: delay the io until recovery completes
  478. * NOSYNC: increment pending, just write to the default mirror
  479. *---------------------------------------------------------------*/
  480. static void write_callback(unsigned long error, void *context)
  481. {
  482. unsigned i, ret = 0;
  483. struct bio *bio = (struct bio *) context;
  484. struct mirror_set *ms;
  485. int should_wake = 0;
  486. unsigned long flags;
  487. ms = bio_get_m(bio)->ms;
  488. bio_set_m(bio, NULL);
  489. /*
  490. * NOTE: We don't decrement the pending count here,
  491. * instead it is done by the targets endio function.
  492. * This way we handle both writes to SYNC and NOSYNC
  493. * regions with the same code.
  494. */
  495. if (likely(!error)) {
  496. bio_endio(bio, ret);
  497. return;
  498. }
  499. for (i = 0; i < ms->nr_mirrors; i++)
  500. if (test_bit(i, &error))
  501. fail_mirror(ms->mirror + i, DM_RAID1_WRITE_ERROR);
  502. /*
  503. * Need to raise event. Since raising
  504. * events can block, we need to do it in
  505. * the main thread.
  506. */
  507. spin_lock_irqsave(&ms->lock, flags);
  508. if (!ms->failures.head)
  509. should_wake = 1;
  510. bio_list_add(&ms->failures, bio);
  511. spin_unlock_irqrestore(&ms->lock, flags);
  512. if (should_wake)
  513. wakeup_mirrord(ms);
  514. }
  515. static void do_write(struct mirror_set *ms, struct bio *bio)
  516. {
  517. unsigned int i;
  518. struct dm_io_region io[ms->nr_mirrors], *dest = io;
  519. struct mirror *m;
  520. struct dm_io_request io_req = {
  521. .bi_rw = WRITE | (bio->bi_rw & WRITE_BARRIER),
  522. .mem.type = DM_IO_BVEC,
  523. .mem.ptr.bvec = bio->bi_io_vec + bio->bi_idx,
  524. .notify.fn = write_callback,
  525. .notify.context = bio,
  526. .client = ms->io_client,
  527. };
  528. for (i = 0, m = ms->mirror; i < ms->nr_mirrors; i++, m++)
  529. map_region(dest++, m, bio);
  530. /*
  531. * Use default mirror because we only need it to retrieve the reference
  532. * to the mirror set in write_callback().
  533. */
  534. bio_set_m(bio, get_default_mirror(ms));
  535. BUG_ON(dm_io(&io_req, ms->nr_mirrors, io, NULL));
  536. }
  537. static void do_writes(struct mirror_set *ms, struct bio_list *writes)
  538. {
  539. int state;
  540. struct bio *bio;
  541. struct bio_list sync, nosync, recover, *this_list = NULL;
  542. struct bio_list requeue;
  543. struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
  544. region_t region;
  545. if (!writes->head)
  546. return;
  547. /*
  548. * Classify each write.
  549. */
  550. bio_list_init(&sync);
  551. bio_list_init(&nosync);
  552. bio_list_init(&recover);
  553. bio_list_init(&requeue);
  554. while ((bio = bio_list_pop(writes))) {
  555. if (unlikely(bio_empty_barrier(bio))) {
  556. bio_list_add(&sync, bio);
  557. continue;
  558. }
  559. region = dm_rh_bio_to_region(ms->rh, bio);
  560. if (log->type->is_remote_recovering &&
  561. log->type->is_remote_recovering(log, region)) {
  562. bio_list_add(&requeue, bio);
  563. continue;
  564. }
  565. state = dm_rh_get_state(ms->rh, region, 1);
  566. switch (state) {
  567. case DM_RH_CLEAN:
  568. case DM_RH_DIRTY:
  569. this_list = &sync;
  570. break;
  571. case DM_RH_NOSYNC:
  572. this_list = &nosync;
  573. break;
  574. case DM_RH_RECOVERING:
  575. this_list = &recover;
  576. break;
  577. }
  578. bio_list_add(this_list, bio);
  579. }
  580. /*
  581. * Add bios that are delayed due to remote recovery
  582. * back on to the write queue
  583. */
  584. if (unlikely(requeue.head)) {
  585. spin_lock_irq(&ms->lock);
  586. bio_list_merge(&ms->writes, &requeue);
  587. spin_unlock_irq(&ms->lock);
  588. delayed_wake(ms);
  589. }
  590. /*
  591. * Increment the pending counts for any regions that will
  592. * be written to (writes to recover regions are going to
  593. * be delayed).
  594. */
  595. dm_rh_inc_pending(ms->rh, &sync);
  596. dm_rh_inc_pending(ms->rh, &nosync);
  597. /*
  598. * If the flush fails on a previous call and succeeds here,
  599. * we must not reset the log_failure variable. We need
  600. * userspace interaction to do that.
  601. */
  602. ms->log_failure = dm_rh_flush(ms->rh) ? 1 : ms->log_failure;
  603. /*
  604. * Dispatch io.
  605. */
  606. if (unlikely(ms->log_failure) && errors_handled(ms)) {
  607. spin_lock_irq(&ms->lock);
  608. bio_list_merge(&ms->failures, &sync);
  609. spin_unlock_irq(&ms->lock);
  610. wakeup_mirrord(ms);
  611. } else
  612. while ((bio = bio_list_pop(&sync)))
  613. do_write(ms, bio);
  614. while ((bio = bio_list_pop(&recover)))
  615. dm_rh_delay(ms->rh, bio);
  616. while ((bio = bio_list_pop(&nosync))) {
  617. if (unlikely(ms->leg_failure) && errors_handled(ms)) {
  618. spin_lock_irq(&ms->lock);
  619. bio_list_add(&ms->failures, bio);
  620. spin_unlock_irq(&ms->lock);
  621. wakeup_mirrord(ms);
  622. } else {
  623. map_bio(get_default_mirror(ms), bio);
  624. generic_make_request(bio);
  625. }
  626. }
  627. }
  628. static void do_failures(struct mirror_set *ms, struct bio_list *failures)
  629. {
  630. struct bio *bio;
  631. if (likely(!failures->head))
  632. return;
  633. /*
  634. * If the log has failed, unattempted writes are being
  635. * put on the holds list. We can't issue those writes
  636. * until a log has been marked, so we must store them.
  637. *
  638. * If a 'noflush' suspend is in progress, we can requeue
  639. * the I/O's to the core. This give userspace a chance
  640. * to reconfigure the mirror, at which point the core
  641. * will reissue the writes. If the 'noflush' flag is
  642. * not set, we have no choice but to return errors.
  643. *
  644. * Some writes on the failures list may have been
  645. * submitted before the log failure and represent a
  646. * failure to write to one of the devices. It is ok
  647. * for us to treat them the same and requeue them
  648. * as well.
  649. */
  650. while ((bio = bio_list_pop(failures))) {
  651. if (!ms->log_failure) {
  652. ms->in_sync = 0;
  653. dm_rh_mark_nosync(ms->rh, bio);
  654. }
  655. /*
  656. * If all the legs are dead, fail the I/O.
  657. * If we have been told to handle errors, hold the bio
  658. * and wait for userspace to deal with the problem.
  659. * Otherwise pretend that the I/O succeeded. (This would
  660. * be wrong if the failed leg returned after reboot and
  661. * got replicated back to the good legs.)
  662. */
  663. if (!get_valid_mirror(ms))
  664. bio_endio(bio, -EIO);
  665. else if (errors_handled(ms))
  666. hold_bio(ms, bio);
  667. else
  668. bio_endio(bio, 0);
  669. }
  670. }
  671. static void trigger_event(struct work_struct *work)
  672. {
  673. struct mirror_set *ms =
  674. container_of(work, struct mirror_set, trigger_event);
  675. dm_table_event(ms->ti->table);
  676. }
  677. /*-----------------------------------------------------------------
  678. * kmirrord
  679. *---------------------------------------------------------------*/
  680. static void do_mirror(struct work_struct *work)
  681. {
  682. struct mirror_set *ms = container_of(work, struct mirror_set,
  683. kmirrord_work);
  684. struct bio_list reads, writes, failures;
  685. unsigned long flags;
  686. spin_lock_irqsave(&ms->lock, flags);
  687. reads = ms->reads;
  688. writes = ms->writes;
  689. failures = ms->failures;
  690. bio_list_init(&ms->reads);
  691. bio_list_init(&ms->writes);
  692. bio_list_init(&ms->failures);
  693. spin_unlock_irqrestore(&ms->lock, flags);
  694. dm_rh_update_states(ms->rh, errors_handled(ms));
  695. do_recovery(ms);
  696. do_reads(ms, &reads);
  697. do_writes(ms, &writes);
  698. do_failures(ms, &failures);
  699. dm_table_unplug_all(ms->ti->table);
  700. }
  701. /*-----------------------------------------------------------------
  702. * Target functions
  703. *---------------------------------------------------------------*/
  704. static struct mirror_set *alloc_context(unsigned int nr_mirrors,
  705. uint32_t region_size,
  706. struct dm_target *ti,
  707. struct dm_dirty_log *dl)
  708. {
  709. size_t len;
  710. struct mirror_set *ms = NULL;
  711. len = sizeof(*ms) + (sizeof(ms->mirror[0]) * nr_mirrors);
  712. ms = kzalloc(len, GFP_KERNEL);
  713. if (!ms) {
  714. ti->error = "Cannot allocate mirror context";
  715. return NULL;
  716. }
  717. spin_lock_init(&ms->lock);
  718. bio_list_init(&ms->reads);
  719. bio_list_init(&ms->writes);
  720. bio_list_init(&ms->failures);
  721. bio_list_init(&ms->holds);
  722. ms->ti = ti;
  723. ms->nr_mirrors = nr_mirrors;
  724. ms->nr_regions = dm_sector_div_up(ti->len, region_size);
  725. ms->in_sync = 0;
  726. ms->log_failure = 0;
  727. ms->leg_failure = 0;
  728. atomic_set(&ms->suspend, 0);
  729. atomic_set(&ms->default_mirror, DEFAULT_MIRROR);
  730. ms->read_record_pool = mempool_create_slab_pool(MIN_READ_RECORDS,
  731. _dm_raid1_read_record_cache);
  732. if (!ms->read_record_pool) {
  733. ti->error = "Error creating mirror read_record_pool";
  734. kfree(ms);
  735. return NULL;
  736. }
  737. ms->io_client = dm_io_client_create(DM_IO_PAGES);
  738. if (IS_ERR(ms->io_client)) {
  739. ti->error = "Error creating dm_io client";
  740. mempool_destroy(ms->read_record_pool);
  741. kfree(ms);
  742. return NULL;
  743. }
  744. ms->rh = dm_region_hash_create(ms, dispatch_bios, wakeup_mirrord,
  745. wakeup_all_recovery_waiters,
  746. ms->ti->begin, MAX_RECOVERY,
  747. dl, region_size, ms->nr_regions);
  748. if (IS_ERR(ms->rh)) {
  749. ti->error = "Error creating dirty region hash";
  750. dm_io_client_destroy(ms->io_client);
  751. mempool_destroy(ms->read_record_pool);
  752. kfree(ms);
  753. return NULL;
  754. }
  755. return ms;
  756. }
  757. static void free_context(struct mirror_set *ms, struct dm_target *ti,
  758. unsigned int m)
  759. {
  760. while (m--)
  761. dm_put_device(ti, ms->mirror[m].dev);
  762. dm_io_client_destroy(ms->io_client);
  763. dm_region_hash_destroy(ms->rh);
  764. mempool_destroy(ms->read_record_pool);
  765. kfree(ms);
  766. }
  767. static int get_mirror(struct mirror_set *ms, struct dm_target *ti,
  768. unsigned int mirror, char **argv)
  769. {
  770. unsigned long long offset;
  771. if (sscanf(argv[1], "%llu", &offset) != 1) {
  772. ti->error = "Invalid offset";
  773. return -EINVAL;
  774. }
  775. if (dm_get_device(ti, argv[0], dm_table_get_mode(ti->table),
  776. &ms->mirror[mirror].dev)) {
  777. ti->error = "Device lookup failure";
  778. return -ENXIO;
  779. }
  780. ms->mirror[mirror].ms = ms;
  781. atomic_set(&(ms->mirror[mirror].error_count), 0);
  782. ms->mirror[mirror].error_type = 0;
  783. ms->mirror[mirror].offset = offset;
  784. return 0;
  785. }
  786. /*
  787. * Create dirty log: log_type #log_params <log_params>
  788. */
  789. static struct dm_dirty_log *create_dirty_log(struct dm_target *ti,
  790. unsigned argc, char **argv,
  791. unsigned *args_used)
  792. {
  793. unsigned param_count;
  794. struct dm_dirty_log *dl;
  795. if (argc < 2) {
  796. ti->error = "Insufficient mirror log arguments";
  797. return NULL;
  798. }
  799. if (sscanf(argv[1], "%u", &param_count) != 1) {
  800. ti->error = "Invalid mirror log argument count";
  801. return NULL;
  802. }
  803. *args_used = 2 + param_count;
  804. if (argc < *args_used) {
  805. ti->error = "Insufficient mirror log arguments";
  806. return NULL;
  807. }
  808. dl = dm_dirty_log_create(argv[0], ti, mirror_flush, param_count,
  809. argv + 2);
  810. if (!dl) {
  811. ti->error = "Error creating mirror dirty log";
  812. return NULL;
  813. }
  814. return dl;
  815. }
  816. static int parse_features(struct mirror_set *ms, unsigned argc, char **argv,
  817. unsigned *args_used)
  818. {
  819. unsigned num_features;
  820. struct dm_target *ti = ms->ti;
  821. *args_used = 0;
  822. if (!argc)
  823. return 0;
  824. if (sscanf(argv[0], "%u", &num_features) != 1) {
  825. ti->error = "Invalid number of features";
  826. return -EINVAL;
  827. }
  828. argc--;
  829. argv++;
  830. (*args_used)++;
  831. if (num_features > argc) {
  832. ti->error = "Not enough arguments to support feature count";
  833. return -EINVAL;
  834. }
  835. if (!strcmp("handle_errors", argv[0]))
  836. ms->features |= DM_RAID1_HANDLE_ERRORS;
  837. else {
  838. ti->error = "Unrecognised feature requested";
  839. return -EINVAL;
  840. }
  841. (*args_used)++;
  842. return 0;
  843. }
  844. /*
  845. * Construct a mirror mapping:
  846. *
  847. * log_type #log_params <log_params>
  848. * #mirrors [mirror_path offset]{2,}
  849. * [#features <features>]
  850. *
  851. * log_type is "core" or "disk"
  852. * #log_params is between 1 and 3
  853. *
  854. * If present, features must be "handle_errors".
  855. */
  856. static int mirror_ctr(struct dm_target *ti, unsigned int argc, char **argv)
  857. {
  858. int r;
  859. unsigned int nr_mirrors, m, args_used;
  860. struct mirror_set *ms;
  861. struct dm_dirty_log *dl;
  862. dl = create_dirty_log(ti, argc, argv, &args_used);
  863. if (!dl)
  864. return -EINVAL;
  865. argv += args_used;
  866. argc -= args_used;
  867. if (!argc || sscanf(argv[0], "%u", &nr_mirrors) != 1 ||
  868. nr_mirrors < 2 || nr_mirrors > DM_KCOPYD_MAX_REGIONS + 1) {
  869. ti->error = "Invalid number of mirrors";
  870. dm_dirty_log_destroy(dl);
  871. return -EINVAL;
  872. }
  873. argv++, argc--;
  874. if (argc < nr_mirrors * 2) {
  875. ti->error = "Too few mirror arguments";
  876. dm_dirty_log_destroy(dl);
  877. return -EINVAL;
  878. }
  879. ms = alloc_context(nr_mirrors, dl->type->get_region_size(dl), ti, dl);
  880. if (!ms) {
  881. dm_dirty_log_destroy(dl);
  882. return -ENOMEM;
  883. }
  884. /* Get the mirror parameter sets */
  885. for (m = 0; m < nr_mirrors; m++) {
  886. r = get_mirror(ms, ti, m, argv);
  887. if (r) {
  888. free_context(ms, ti, m);
  889. return r;
  890. }
  891. argv += 2;
  892. argc -= 2;
  893. }
  894. ti->private = ms;
  895. ti->split_io = dm_rh_get_region_size(ms->rh);
  896. ti->num_flush_requests = 1;
  897. ms->kmirrord_wq = create_singlethread_workqueue("kmirrord");
  898. if (!ms->kmirrord_wq) {
  899. DMERR("couldn't start kmirrord");
  900. r = -ENOMEM;
  901. goto err_free_context;
  902. }
  903. INIT_WORK(&ms->kmirrord_work, do_mirror);
  904. init_timer(&ms->timer);
  905. ms->timer_pending = 0;
  906. INIT_WORK(&ms->trigger_event, trigger_event);
  907. r = parse_features(ms, argc, argv, &args_used);
  908. if (r)
  909. goto err_destroy_wq;
  910. argv += args_used;
  911. argc -= args_used;
  912. /*
  913. * Any read-balancing addition depends on the
  914. * DM_RAID1_HANDLE_ERRORS flag being present.
  915. * This is because the decision to balance depends
  916. * on the sync state of a region. If the above
  917. * flag is not present, we ignore errors; and
  918. * the sync state may be inaccurate.
  919. */
  920. if (argc) {
  921. ti->error = "Too many mirror arguments";
  922. r = -EINVAL;
  923. goto err_destroy_wq;
  924. }
  925. r = dm_kcopyd_client_create(DM_KCOPYD_PAGES, &ms->kcopyd_client);
  926. if (r)
  927. goto err_destroy_wq;
  928. wakeup_mirrord(ms);
  929. return 0;
  930. err_destroy_wq:
  931. destroy_workqueue(ms->kmirrord_wq);
  932. err_free_context:
  933. free_context(ms, ti, ms->nr_mirrors);
  934. return r;
  935. }
  936. static void mirror_dtr(struct dm_target *ti)
  937. {
  938. struct mirror_set *ms = (struct mirror_set *) ti->private;
  939. del_timer_sync(&ms->timer);
  940. flush_workqueue(ms->kmirrord_wq);
  941. flush_scheduled_work();
  942. dm_kcopyd_client_destroy(ms->kcopyd_client);
  943. destroy_workqueue(ms->kmirrord_wq);
  944. free_context(ms, ti, ms->nr_mirrors);
  945. }
  946. /*
  947. * Mirror mapping function
  948. */
  949. static int mirror_map(struct dm_target *ti, struct bio *bio,
  950. union map_info *map_context)
  951. {
  952. int r, rw = bio_rw(bio);
  953. struct mirror *m;
  954. struct mirror_set *ms = ti->private;
  955. struct dm_raid1_read_record *read_record = NULL;
  956. struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
  957. if (rw == WRITE) {
  958. /* Save region for mirror_end_io() handler */
  959. map_context->ll = dm_rh_bio_to_region(ms->rh, bio);
  960. queue_bio(ms, bio, rw);
  961. return DM_MAPIO_SUBMITTED;
  962. }
  963. r = log->type->in_sync(log, dm_rh_bio_to_region(ms->rh, bio), 0);
  964. if (r < 0 && r != -EWOULDBLOCK)
  965. return r;
  966. /*
  967. * If region is not in-sync queue the bio.
  968. */
  969. if (!r || (r == -EWOULDBLOCK)) {
  970. if (rw == READA)
  971. return -EWOULDBLOCK;
  972. queue_bio(ms, bio, rw);
  973. return DM_MAPIO_SUBMITTED;
  974. }
  975. /*
  976. * The region is in-sync and we can perform reads directly.
  977. * Store enough information so we can retry if it fails.
  978. */
  979. m = choose_mirror(ms, bio->bi_sector);
  980. if (unlikely(!m))
  981. return -EIO;
  982. read_record = mempool_alloc(ms->read_record_pool, GFP_NOIO);
  983. if (likely(read_record)) {
  984. dm_bio_record(&read_record->details, bio);
  985. map_context->ptr = read_record;
  986. read_record->m = m;
  987. }
  988. map_bio(m, bio);
  989. return DM_MAPIO_REMAPPED;
  990. }
  991. static int mirror_end_io(struct dm_target *ti, struct bio *bio,
  992. int error, union map_info *map_context)
  993. {
  994. int rw = bio_rw(bio);
  995. struct mirror_set *ms = (struct mirror_set *) ti->private;
  996. struct mirror *m = NULL;
  997. struct dm_bio_details *bd = NULL;
  998. struct dm_raid1_read_record *read_record = map_context->ptr;
  999. /*
  1000. * We need to dec pending if this was a write.
  1001. */
  1002. if (rw == WRITE) {
  1003. if (likely(!bio_empty_barrier(bio)))
  1004. dm_rh_dec(ms->rh, map_context->ll);
  1005. return error;
  1006. }
  1007. if (error == -EOPNOTSUPP)
  1008. goto out;
  1009. if ((error == -EWOULDBLOCK) && bio_rw_flagged(bio, BIO_RW_AHEAD))
  1010. goto out;
  1011. if (unlikely(error)) {
  1012. if (!read_record) {
  1013. /*
  1014. * There wasn't enough memory to record necessary
  1015. * information for a retry or there was no other
  1016. * mirror in-sync.
  1017. */
  1018. DMERR_LIMIT("Mirror read failed.");
  1019. return -EIO;
  1020. }
  1021. m = read_record->m;
  1022. DMERR("Mirror read failed from %s. Trying alternative device.",
  1023. m->dev->name);
  1024. fail_mirror(m, DM_RAID1_READ_ERROR);
  1025. /*
  1026. * A failed read is requeued for another attempt using an intact
  1027. * mirror.
  1028. */
  1029. if (default_ok(m) || mirror_available(ms, bio)) {
  1030. bd = &read_record->details;
  1031. dm_bio_restore(bd, bio);
  1032. mempool_free(read_record, ms->read_record_pool);
  1033. map_context->ptr = NULL;
  1034. queue_bio(ms, bio, rw);
  1035. return 1;
  1036. }
  1037. DMERR("All replicated volumes dead, failing I/O");
  1038. }
  1039. out:
  1040. if (read_record) {
  1041. mempool_free(read_record, ms->read_record_pool);
  1042. map_context->ptr = NULL;
  1043. }
  1044. return error;
  1045. }
  1046. static void mirror_presuspend(struct dm_target *ti)
  1047. {
  1048. struct mirror_set *ms = (struct mirror_set *) ti->private;
  1049. struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
  1050. struct bio_list holds;
  1051. struct bio *bio;
  1052. atomic_set(&ms->suspend, 1);
  1053. /*
  1054. * We must finish up all the work that we've
  1055. * generated (i.e. recovery work).
  1056. */
  1057. dm_rh_stop_recovery(ms->rh);
  1058. wait_event(_kmirrord_recovery_stopped,
  1059. !dm_rh_recovery_in_flight(ms->rh));
  1060. if (log->type->presuspend && log->type->presuspend(log))
  1061. /* FIXME: need better error handling */
  1062. DMWARN("log presuspend failed");
  1063. /*
  1064. * Now that recovery is complete/stopped and the
  1065. * delayed bios are queued, we need to wait for
  1066. * the worker thread to complete. This way,
  1067. * we know that all of our I/O has been pushed.
  1068. */
  1069. flush_workqueue(ms->kmirrord_wq);
  1070. /*
  1071. * Now set ms->suspend is set and the workqueue flushed, no more
  1072. * entries can be added to ms->hold list, so process it.
  1073. *
  1074. * Bios can still arrive concurrently with or after this
  1075. * presuspend function, but they cannot join the hold list
  1076. * because ms->suspend is set.
  1077. */
  1078. spin_lock_irq(&ms->lock);
  1079. holds = ms->holds;
  1080. bio_list_init(&ms->holds);
  1081. spin_unlock_irq(&ms->lock);
  1082. while ((bio = bio_list_pop(&holds)))
  1083. hold_bio(ms, bio);
  1084. }
  1085. static void mirror_postsuspend(struct dm_target *ti)
  1086. {
  1087. struct mirror_set *ms = ti->private;
  1088. struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
  1089. if (log->type->postsuspend && log->type->postsuspend(log))
  1090. /* FIXME: need better error handling */
  1091. DMWARN("log postsuspend failed");
  1092. }
  1093. static void mirror_resume(struct dm_target *ti)
  1094. {
  1095. struct mirror_set *ms = ti->private;
  1096. struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
  1097. atomic_set(&ms->suspend, 0);
  1098. if (log->type->resume && log->type->resume(log))
  1099. /* FIXME: need better error handling */
  1100. DMWARN("log resume failed");
  1101. dm_rh_start_recovery(ms->rh);
  1102. }
  1103. /*
  1104. * device_status_char
  1105. * @m: mirror device/leg we want the status of
  1106. *
  1107. * We return one character representing the most severe error
  1108. * we have encountered.
  1109. * A => Alive - No failures
  1110. * D => Dead - A write failure occurred leaving mirror out-of-sync
  1111. * S => Sync - A sychronization failure occurred, mirror out-of-sync
  1112. * R => Read - A read failure occurred, mirror data unaffected
  1113. *
  1114. * Returns: <char>
  1115. */
  1116. static char device_status_char(struct mirror *m)
  1117. {
  1118. if (!atomic_read(&(m->error_count)))
  1119. return 'A';
  1120. return (test_bit(DM_RAID1_FLUSH_ERROR, &(m->error_type))) ? 'F' :
  1121. (test_bit(DM_RAID1_WRITE_ERROR, &(m->error_type))) ? 'D' :
  1122. (test_bit(DM_RAID1_SYNC_ERROR, &(m->error_type))) ? 'S' :
  1123. (test_bit(DM_RAID1_READ_ERROR, &(m->error_type))) ? 'R' : 'U';
  1124. }
  1125. static int mirror_status(struct dm_target *ti, status_type_t type,
  1126. char *result, unsigned int maxlen)
  1127. {
  1128. unsigned int m, sz = 0;
  1129. struct mirror_set *ms = (struct mirror_set *) ti->private;
  1130. struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
  1131. char buffer[ms->nr_mirrors + 1];
  1132. switch (type) {
  1133. case STATUSTYPE_INFO:
  1134. DMEMIT("%d ", ms->nr_mirrors);
  1135. for (m = 0; m < ms->nr_mirrors; m++) {
  1136. DMEMIT("%s ", ms->mirror[m].dev->name);
  1137. buffer[m] = device_status_char(&(ms->mirror[m]));
  1138. }
  1139. buffer[m] = '\0';
  1140. DMEMIT("%llu/%llu 1 %s ",
  1141. (unsigned long long)log->type->get_sync_count(log),
  1142. (unsigned long long)ms->nr_regions, buffer);
  1143. sz += log->type->status(log, type, result+sz, maxlen-sz);
  1144. break;
  1145. case STATUSTYPE_TABLE:
  1146. sz = log->type->status(log, type, result, maxlen);
  1147. DMEMIT("%d", ms->nr_mirrors);
  1148. for (m = 0; m < ms->nr_mirrors; m++)
  1149. DMEMIT(" %s %llu", ms->mirror[m].dev->name,
  1150. (unsigned long long)ms->mirror[m].offset);
  1151. if (ms->features & DM_RAID1_HANDLE_ERRORS)
  1152. DMEMIT(" 1 handle_errors");
  1153. }
  1154. return 0;
  1155. }
  1156. static int mirror_iterate_devices(struct dm_target *ti,
  1157. iterate_devices_callout_fn fn, void *data)
  1158. {
  1159. struct mirror_set *ms = ti->private;
  1160. int ret = 0;
  1161. unsigned i;
  1162. for (i = 0; !ret && i < ms->nr_mirrors; i++)
  1163. ret = fn(ti, ms->mirror[i].dev,
  1164. ms->mirror[i].offset, ti->len, data);
  1165. return ret;
  1166. }
  1167. static struct target_type mirror_target = {
  1168. .name = "mirror",
  1169. .version = {1, 12, 0},
  1170. .module = THIS_MODULE,
  1171. .ctr = mirror_ctr,
  1172. .dtr = mirror_dtr,
  1173. .map = mirror_map,
  1174. .end_io = mirror_end_io,
  1175. .presuspend = mirror_presuspend,
  1176. .postsuspend = mirror_postsuspend,
  1177. .resume = mirror_resume,
  1178. .status = mirror_status,
  1179. .iterate_devices = mirror_iterate_devices,
  1180. };
  1181. static int __init dm_mirror_init(void)
  1182. {
  1183. int r;
  1184. _dm_raid1_read_record_cache = KMEM_CACHE(dm_raid1_read_record, 0);
  1185. if (!_dm_raid1_read_record_cache) {
  1186. DMERR("Can't allocate dm_raid1_read_record cache");
  1187. r = -ENOMEM;
  1188. goto bad_cache;
  1189. }
  1190. r = dm_register_target(&mirror_target);
  1191. if (r < 0) {
  1192. DMERR("Failed to register mirror target");
  1193. goto bad_target;
  1194. }
  1195. return 0;
  1196. bad_target:
  1197. kmem_cache_destroy(_dm_raid1_read_record_cache);
  1198. bad_cache:
  1199. return r;
  1200. }
  1201. static void __exit dm_mirror_exit(void)
  1202. {
  1203. dm_unregister_target(&mirror_target);
  1204. kmem_cache_destroy(_dm_raid1_read_record_cache);
  1205. }
  1206. /* Module hooks */
  1207. module_init(dm_mirror_init);
  1208. module_exit(dm_mirror_exit);
  1209. MODULE_DESCRIPTION(DM_NAME " mirror target");
  1210. MODULE_AUTHOR("Joe Thornber");
  1211. MODULE_LICENSE("GPL");