]> git.karo-electronics.de Git - mv-sheeva.git/blob - drivers/md/dm-log.c
dm log: update dm io interface
[mv-sheeva.git] / drivers / md / dm-log.c
1 /*
2  * Copyright (C) 2003 Sistina Software
3  *
4  * This file is released under the LGPL.
5  */
6
7 #include <linux/init.h>
8 #include <linux/slab.h>
9 #include <linux/module.h>
10 #include <linux/vmalloc.h>
11
12 #include "dm-log.h"
13 #include "dm-io.h"
14
15 #define DM_MSG_PREFIX "mirror log"
16
17 static LIST_HEAD(_log_types);
18 static DEFINE_SPINLOCK(_lock);
19
20 int dm_register_dirty_log_type(struct dirty_log_type *type)
21 {
22         spin_lock(&_lock);
23         type->use_count = 0;
24         list_add(&type->list, &_log_types);
25         spin_unlock(&_lock);
26
27         return 0;
28 }
29
30 int dm_unregister_dirty_log_type(struct dirty_log_type *type)
31 {
32         spin_lock(&_lock);
33
34         if (type->use_count)
35                 DMWARN("Attempt to unregister a log type that is still in use");
36         else
37                 list_del(&type->list);
38
39         spin_unlock(&_lock);
40
41         return 0;
42 }
43
44 static struct dirty_log_type *get_type(const char *type_name)
45 {
46         struct dirty_log_type *type;
47
48         spin_lock(&_lock);
49         list_for_each_entry (type, &_log_types, list)
50                 if (!strcmp(type_name, type->name)) {
51                         if (!type->use_count && !try_module_get(type->module)){
52                                 spin_unlock(&_lock);
53                                 return NULL;
54                         }
55                         type->use_count++;
56                         spin_unlock(&_lock);
57                         return type;
58                 }
59
60         spin_unlock(&_lock);
61         return NULL;
62 }
63
64 static void put_type(struct dirty_log_type *type)
65 {
66         spin_lock(&_lock);
67         if (!--type->use_count)
68                 module_put(type->module);
69         spin_unlock(&_lock);
70 }
71
72 struct dirty_log *dm_create_dirty_log(const char *type_name, struct dm_target *ti,
73                                       unsigned int argc, char **argv)
74 {
75         struct dirty_log_type *type;
76         struct dirty_log *log;
77
78         log = kmalloc(sizeof(*log), GFP_KERNEL);
79         if (!log)
80                 return NULL;
81
82         type = get_type(type_name);
83         if (!type) {
84                 kfree(log);
85                 return NULL;
86         }
87
88         log->type = type;
89         if (type->ctr(log, ti, argc, argv)) {
90                 kfree(log);
91                 put_type(type);
92                 return NULL;
93         }
94
95         return log;
96 }
97
98 void dm_destroy_dirty_log(struct dirty_log *log)
99 {
100         log->type->dtr(log);
101         put_type(log->type);
102         kfree(log);
103 }
104
105 /*-----------------------------------------------------------------
106  * Persistent and core logs share a lot of their implementation.
107  * FIXME: need a reload method to be called from a resume
108  *---------------------------------------------------------------*/
109 /*
110  * Magic for persistent mirrors: "MiRr"
111  */
112 #define MIRROR_MAGIC 0x4D695272
113
114 /*
115  * The on-disk version of the metadata.
116  */
117 #define MIRROR_DISK_VERSION 2
118 #define LOG_OFFSET 2
119
120 struct log_header {
121         uint32_t magic;
122
123         /*
124          * Simple, incrementing version. no backward
125          * compatibility.
126          */
127         uint32_t version;
128         sector_t nr_regions;
129 };
130
131 struct log_c {
132         struct dm_target *ti;
133         int touched;
134         uint32_t region_size;
135         unsigned int region_count;
136         region_t sync_count;
137
138         unsigned bitset_uint32_count;
139         uint32_t *clean_bits;
140         uint32_t *sync_bits;
141         uint32_t *recovering_bits;      /* FIXME: this seems excessive */
142
143         int sync_search;
144
145         /* Resync flag */
146         enum sync {
147                 DEFAULTSYNC,    /* Synchronize if necessary */
148                 NOSYNC,         /* Devices known to be already in sync */
149                 FORCESYNC,      /* Force a sync to happen */
150         } sync;
151
152         struct dm_io_request io_req;
153
154         /*
155          * Disk log fields
156          */
157         int log_dev_failed;
158         struct dm_dev *log_dev;
159         struct log_header header;
160
161         struct io_region header_location;
162         struct log_header *disk_header;
163 };
164
165 /*
166  * The touched member needs to be updated every time we access
167  * one of the bitsets.
168  */
169 static  inline int log_test_bit(uint32_t *bs, unsigned bit)
170 {
171         return ext2_test_bit(bit, (unsigned long *) bs) ? 1 : 0;
172 }
173
174 static inline void log_set_bit(struct log_c *l,
175                                uint32_t *bs, unsigned bit)
176 {
177         ext2_set_bit(bit, (unsigned long *) bs);
178         l->touched = 1;
179 }
180
181 static inline void log_clear_bit(struct log_c *l,
182                                  uint32_t *bs, unsigned bit)
183 {
184         ext2_clear_bit(bit, (unsigned long *) bs);
185         l->touched = 1;
186 }
187
188 /*----------------------------------------------------------------
189  * Header IO
190  *--------------------------------------------------------------*/
191 static void header_to_disk(struct log_header *core, struct log_header *disk)
192 {
193         disk->magic = cpu_to_le32(core->magic);
194         disk->version = cpu_to_le32(core->version);
195         disk->nr_regions = cpu_to_le64(core->nr_regions);
196 }
197
198 static void header_from_disk(struct log_header *core, struct log_header *disk)
199 {
200         core->magic = le32_to_cpu(disk->magic);
201         core->version = le32_to_cpu(disk->version);
202         core->nr_regions = le64_to_cpu(disk->nr_regions);
203 }
204
205 static int rw_header(struct log_c *lc, int rw)
206 {
207         lc->io_req.bi_rw = rw;
208         lc->io_req.mem.ptr.vma = lc->disk_header;
209         lc->io_req.notify.fn = NULL;
210
211         return dm_io(&lc->io_req, 1, &lc->header_location, NULL);
212 }
213
214 static int read_header(struct log_c *log)
215 {
216         int r;
217
218         r = rw_header(log, READ);
219         if (r)
220                 return r;
221
222         header_from_disk(&log->header, log->disk_header);
223
224         /* New log required? */
225         if (log->sync != DEFAULTSYNC || log->header.magic != MIRROR_MAGIC) {
226                 log->header.magic = MIRROR_MAGIC;
227                 log->header.version = MIRROR_DISK_VERSION;
228                 log->header.nr_regions = 0;
229         }
230
231 #ifdef __LITTLE_ENDIAN
232         if (log->header.version == 1)
233                 log->header.version = 2;
234 #endif
235
236         if (log->header.version != MIRROR_DISK_VERSION) {
237                 DMWARN("incompatible disk log version");
238                 return -EINVAL;
239         }
240
241         return 0;
242 }
243
244 static inline int write_header(struct log_c *log)
245 {
246         header_to_disk(&log->header, log->disk_header);
247         return rw_header(log, WRITE);
248 }
249
250 /*----------------------------------------------------------------
251  * core log constructor/destructor
252  *
253  * argv contains region_size followed optionally by [no]sync
254  *--------------------------------------------------------------*/
255 #define BYTE_SHIFT 3
256 static int create_log_context(struct dirty_log *log, struct dm_target *ti,
257                               unsigned int argc, char **argv,
258                               struct dm_dev *dev)
259 {
260         enum sync sync = DEFAULTSYNC;
261
262         struct log_c *lc;
263         uint32_t region_size;
264         unsigned int region_count;
265         size_t bitset_size, buf_size;
266         int r;
267
268         if (argc < 1 || argc > 2) {
269                 DMWARN("wrong number of arguments to mirror log");
270                 return -EINVAL;
271         }
272
273         if (argc > 1) {
274                 if (!strcmp(argv[1], "sync"))
275                         sync = FORCESYNC;
276                 else if (!strcmp(argv[1], "nosync"))
277                         sync = NOSYNC;
278                 else {
279                         DMWARN("unrecognised sync argument to mirror log: %s",
280                                argv[1]);
281                         return -EINVAL;
282                 }
283         }
284
285         if (sscanf(argv[0], "%u", &region_size) != 1) {
286                 DMWARN("invalid region size string");
287                 return -EINVAL;
288         }
289
290         region_count = dm_sector_div_up(ti->len, region_size);
291
292         lc = kmalloc(sizeof(*lc), GFP_KERNEL);
293         if (!lc) {
294                 DMWARN("couldn't allocate core log");
295                 return -ENOMEM;
296         }
297
298         lc->ti = ti;
299         lc->touched = 0;
300         lc->region_size = region_size;
301         lc->region_count = region_count;
302         lc->sync = sync;
303
304         /*
305          * Work out how many "unsigned long"s we need to hold the bitset.
306          */
307         bitset_size = dm_round_up(region_count,
308                                   sizeof(*lc->clean_bits) << BYTE_SHIFT);
309         bitset_size >>= BYTE_SHIFT;
310
311         lc->bitset_uint32_count = bitset_size / sizeof(*lc->clean_bits);
312
313         /*
314          * Disk log?
315          */
316         if (!dev) {
317                 lc->clean_bits = vmalloc(bitset_size);
318                 if (!lc->clean_bits) {
319                         DMWARN("couldn't allocate clean bitset");
320                         kfree(lc);
321                         return -ENOMEM;
322                 }
323                 lc->disk_header = NULL;
324         } else {
325                 lc->log_dev = dev;
326                 lc->log_dev_failed = 0;
327                 lc->header_location.bdev = lc->log_dev->bdev;
328                 lc->header_location.sector = 0;
329
330                 /*
331                  * Buffer holds both header and bitset.
332                  */
333                 buf_size = dm_round_up((LOG_OFFSET << SECTOR_SHIFT) +
334                                        bitset_size, ti->limits.hardsect_size);
335                 lc->header_location.count = buf_size >> SECTOR_SHIFT;
336                 lc->io_req.mem.type = DM_IO_VMA;
337                 lc->io_req.client = dm_io_client_create(dm_div_up(buf_size,
338                                                                    PAGE_SIZE));
339                 if (IS_ERR(lc->io_req.client)) {
340                         r = PTR_ERR(lc->io_req.client);
341                         DMWARN("couldn't allocate disk io client");
342                         kfree(lc);
343                         return -ENOMEM;
344                 }
345
346                 lc->disk_header = vmalloc(buf_size);
347                 if (!lc->disk_header) {
348                         DMWARN("couldn't allocate disk log buffer");
349                         kfree(lc);
350                         return -ENOMEM;
351                 }
352
353                 lc->clean_bits = (void *)lc->disk_header +
354                                  (LOG_OFFSET << SECTOR_SHIFT);
355         }
356
357         memset(lc->clean_bits, -1, bitset_size);
358
359         lc->sync_bits = vmalloc(bitset_size);
360         if (!lc->sync_bits) {
361                 DMWARN("couldn't allocate sync bitset");
362                 if (!dev)
363                         vfree(lc->clean_bits);
364                 vfree(lc->disk_header);
365                 kfree(lc);
366                 return -ENOMEM;
367         }
368         memset(lc->sync_bits, (sync == NOSYNC) ? -1 : 0, bitset_size);
369         lc->sync_count = (sync == NOSYNC) ? region_count : 0;
370
371         lc->recovering_bits = vmalloc(bitset_size);
372         if (!lc->recovering_bits) {
373                 DMWARN("couldn't allocate sync bitset");
374                 vfree(lc->sync_bits);
375                 if (!dev)
376                         vfree(lc->clean_bits);
377                 vfree(lc->disk_header);
378                 kfree(lc);
379                 return -ENOMEM;
380         }
381         memset(lc->recovering_bits, 0, bitset_size);
382         lc->sync_search = 0;
383         log->context = lc;
384
385         return 0;
386 }
387
388 static int core_ctr(struct dirty_log *log, struct dm_target *ti,
389                     unsigned int argc, char **argv)
390 {
391         return create_log_context(log, ti, argc, argv, NULL);
392 }
393
394 static void destroy_log_context(struct log_c *lc)
395 {
396         vfree(lc->sync_bits);
397         vfree(lc->recovering_bits);
398         kfree(lc);
399 }
400
401 static void core_dtr(struct dirty_log *log)
402 {
403         struct log_c *lc = (struct log_c *) log->context;
404
405         vfree(lc->clean_bits);
406         destroy_log_context(lc);
407 }
408
409 /*----------------------------------------------------------------
410  * disk log constructor/destructor
411  *
412  * argv contains log_device region_size followed optionally by [no]sync
413  *--------------------------------------------------------------*/
414 static int disk_ctr(struct dirty_log *log, struct dm_target *ti,
415                     unsigned int argc, char **argv)
416 {
417         int r;
418         struct dm_dev *dev;
419
420         if (argc < 2 || argc > 3) {
421                 DMWARN("wrong number of arguments to disk mirror log");
422                 return -EINVAL;
423         }
424
425         r = dm_get_device(ti, argv[0], 0, 0 /* FIXME */,
426                           FMODE_READ | FMODE_WRITE, &dev);
427         if (r)
428                 return r;
429
430         r = create_log_context(log, ti, argc - 1, argv + 1, dev);
431         if (r) {
432                 dm_put_device(ti, dev);
433                 return r;
434         }
435
436         return 0;
437 }
438
439 static void disk_dtr(struct dirty_log *log)
440 {
441         struct log_c *lc = (struct log_c *) log->context;
442
443         dm_put_device(lc->ti, lc->log_dev);
444         vfree(lc->disk_header);
445         dm_io_client_destroy(lc->io_req.client);
446         destroy_log_context(lc);
447 }
448
449 static int count_bits32(uint32_t *addr, unsigned size)
450 {
451         int count = 0, i;
452
453         for (i = 0; i < size; i++) {
454                 count += hweight32(*(addr+i));
455         }
456         return count;
457 }
458
459 static void fail_log_device(struct log_c *lc)
460 {
461         if (lc->log_dev_failed)
462                 return;
463
464         lc->log_dev_failed = 1;
465         dm_table_event(lc->ti->table);
466 }
467
468 static int disk_resume(struct dirty_log *log)
469 {
470         int r;
471         unsigned i;
472         struct log_c *lc = (struct log_c *) log->context;
473         size_t size = lc->bitset_uint32_count * sizeof(uint32_t);
474
475         /* read the disk header */
476         r = read_header(lc);
477         if (r) {
478                 DMWARN("%s: Failed to read header on mirror log device",
479                        lc->log_dev->name);
480                 fail_log_device(lc);
481                 return r;
482         }
483
484         /* set or clear any new bits -- device has grown */
485         if (lc->sync == NOSYNC)
486                 for (i = lc->header.nr_regions; i < lc->region_count; i++)
487                         /* FIXME: amazingly inefficient */
488                         log_set_bit(lc, lc->clean_bits, i);
489         else
490                 for (i = lc->header.nr_regions; i < lc->region_count; i++)
491                         /* FIXME: amazingly inefficient */
492                         log_clear_bit(lc, lc->clean_bits, i);
493
494         /* clear any old bits -- device has shrunk */
495         for (i = lc->region_count; i % (sizeof(*lc->clean_bits) << BYTE_SHIFT); i++)
496                 log_clear_bit(lc, lc->clean_bits, i);
497
498         /* copy clean across to sync */
499         memcpy(lc->sync_bits, lc->clean_bits, size);
500         lc->sync_count = count_bits32(lc->clean_bits, lc->bitset_uint32_count);
501         lc->sync_search = 0;
502
503         /* set the correct number of regions in the header */
504         lc->header.nr_regions = lc->region_count;
505
506         /* write the new header */
507         r = write_header(lc);
508         if (r) {
509                 DMWARN("%s: Failed to write header on mirror log device",
510                        lc->log_dev->name);
511                 fail_log_device(lc);
512         }
513
514         return r;
515 }
516
517 static uint32_t core_get_region_size(struct dirty_log *log)
518 {
519         struct log_c *lc = (struct log_c *) log->context;
520         return lc->region_size;
521 }
522
523 static int core_resume(struct dirty_log *log)
524 {
525         struct log_c *lc = (struct log_c *) log->context;
526         lc->sync_search = 0;
527         return 0;
528 }
529
530 static int core_is_clean(struct dirty_log *log, region_t region)
531 {
532         struct log_c *lc = (struct log_c *) log->context;
533         return log_test_bit(lc->clean_bits, region);
534 }
535
536 static int core_in_sync(struct dirty_log *log, region_t region, int block)
537 {
538         struct log_c *lc = (struct log_c *) log->context;
539         return log_test_bit(lc->sync_bits, region);
540 }
541
542 static int core_flush(struct dirty_log *log)
543 {
544         /* no op */
545         return 0;
546 }
547
548 static int disk_flush(struct dirty_log *log)
549 {
550         int r;
551         struct log_c *lc = (struct log_c *) log->context;
552
553         /* only write if the log has changed */
554         if (!lc->touched)
555                 return 0;
556
557         r = write_header(lc);
558         if (r)
559                 fail_log_device(lc);
560         else
561                 lc->touched = 0;
562
563         return r;
564 }
565
566 static void core_mark_region(struct dirty_log *log, region_t region)
567 {
568         struct log_c *lc = (struct log_c *) log->context;
569         log_clear_bit(lc, lc->clean_bits, region);
570 }
571
572 static void core_clear_region(struct dirty_log *log, region_t region)
573 {
574         struct log_c *lc = (struct log_c *) log->context;
575         log_set_bit(lc, lc->clean_bits, region);
576 }
577
578 static int core_get_resync_work(struct dirty_log *log, region_t *region)
579 {
580         struct log_c *lc = (struct log_c *) log->context;
581
582         if (lc->sync_search >= lc->region_count)
583                 return 0;
584
585         do {
586                 *region = ext2_find_next_zero_bit(
587                                              (unsigned long *) lc->sync_bits,
588                                              lc->region_count,
589                                              lc->sync_search);
590                 lc->sync_search = *region + 1;
591
592                 if (*region >= lc->region_count)
593                         return 0;
594
595         } while (log_test_bit(lc->recovering_bits, *region));
596
597         log_set_bit(lc, lc->recovering_bits, *region);
598         return 1;
599 }
600
601 static void core_set_region_sync(struct dirty_log *log, region_t region,
602                                  int in_sync)
603 {
604         struct log_c *lc = (struct log_c *) log->context;
605
606         log_clear_bit(lc, lc->recovering_bits, region);
607         if (in_sync) {
608                 log_set_bit(lc, lc->sync_bits, region);
609                 lc->sync_count++;
610         } else if (log_test_bit(lc->sync_bits, region)) {
611                 lc->sync_count--;
612                 log_clear_bit(lc, lc->sync_bits, region);
613         }
614 }
615
616 static region_t core_get_sync_count(struct dirty_log *log)
617 {
618         struct log_c *lc = (struct log_c *) log->context;
619
620         return lc->sync_count;
621 }
622
623 #define DMEMIT_SYNC \
624         if (lc->sync != DEFAULTSYNC) \
625                 DMEMIT("%ssync ", lc->sync == NOSYNC ? "no" : "")
626
627 static int core_status(struct dirty_log *log, status_type_t status,
628                        char *result, unsigned int maxlen)
629 {
630         int sz = 0;
631         struct log_c *lc = log->context;
632
633         switch(status) {
634         case STATUSTYPE_INFO:
635                 DMEMIT("1 %s", log->type->name);
636                 break;
637
638         case STATUSTYPE_TABLE:
639                 DMEMIT("%s %u %u ", log->type->name,
640                        lc->sync == DEFAULTSYNC ? 1 : 2, lc->region_size);
641                 DMEMIT_SYNC;
642         }
643
644         return sz;
645 }
646
647 static int disk_status(struct dirty_log *log, status_type_t status,
648                        char *result, unsigned int maxlen)
649 {
650         int sz = 0;
651         struct log_c *lc = log->context;
652
653         switch(status) {
654         case STATUSTYPE_INFO:
655                 DMEMIT("3 %s %s %c", log->type->name, lc->log_dev->name,
656                        lc->log_dev_failed ? 'D' : 'A');
657                 break;
658
659         case STATUSTYPE_TABLE:
660                 DMEMIT("%s %u %s %u ", log->type->name,
661                        lc->sync == DEFAULTSYNC ? 2 : 3, lc->log_dev->name,
662                        lc->region_size);
663                 DMEMIT_SYNC;
664         }
665
666         return sz;
667 }
668
669 static struct dirty_log_type _core_type = {
670         .name = "core",
671         .module = THIS_MODULE,
672         .ctr = core_ctr,
673         .dtr = core_dtr,
674         .resume = core_resume,
675         .get_region_size = core_get_region_size,
676         .is_clean = core_is_clean,
677         .in_sync = core_in_sync,
678         .flush = core_flush,
679         .mark_region = core_mark_region,
680         .clear_region = core_clear_region,
681         .get_resync_work = core_get_resync_work,
682         .set_region_sync = core_set_region_sync,
683         .get_sync_count = core_get_sync_count,
684         .status = core_status,
685 };
686
687 static struct dirty_log_type _disk_type = {
688         .name = "disk",
689         .module = THIS_MODULE,
690         .ctr = disk_ctr,
691         .dtr = disk_dtr,
692         .suspend = disk_flush,
693         .resume = disk_resume,
694         .get_region_size = core_get_region_size,
695         .is_clean = core_is_clean,
696         .in_sync = core_in_sync,
697         .flush = disk_flush,
698         .mark_region = core_mark_region,
699         .clear_region = core_clear_region,
700         .get_resync_work = core_get_resync_work,
701         .set_region_sync = core_set_region_sync,
702         .get_sync_count = core_get_sync_count,
703         .status = disk_status,
704 };
705
706 int __init dm_dirty_log_init(void)
707 {
708         int r;
709
710         r = dm_register_dirty_log_type(&_core_type);
711         if (r)
712                 DMWARN("couldn't register core log");
713
714         r = dm_register_dirty_log_type(&_disk_type);
715         if (r) {
716                 DMWARN("couldn't register disk type");
717                 dm_unregister_dirty_log_type(&_core_type);
718         }
719
720         return r;
721 }
722
723 void dm_dirty_log_exit(void)
724 {
725         dm_unregister_dirty_log_type(&_disk_type);
726         dm_unregister_dirty_log_type(&_core_type);
727 }
728
729 EXPORT_SYMBOL(dm_register_dirty_log_type);
730 EXPORT_SYMBOL(dm_unregister_dirty_log_type);
731 EXPORT_SYMBOL(dm_create_dirty_log);
732 EXPORT_SYMBOL(dm_destroy_dirty_log);