dm: add missing empty lines
[linux-block.git] / drivers / md / dm-snap-persistent.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (C) 2001-2002 Sistina Software (UK) Limited.
4  * Copyright (C) 2006-2008 Red Hat GmbH
5  *
6  * This file is released under the GPL.
7  */
8
9 #include "dm-exception-store.h"
10
11 #include <linux/ctype.h>
12 #include <linux/mm.h>
13 #include <linux/pagemap.h>
14 #include <linux/vmalloc.h>
15 #include <linux/export.h>
16 #include <linux/slab.h>
17 #include <linux/dm-io.h>
18 #include <linux/dm-bufio.h>
19
20 #define DM_MSG_PREFIX "persistent snapshot"
21 #define DM_CHUNK_SIZE_DEFAULT_SECTORS 32U       /* 16KB */
22
23 #define DM_PREFETCH_CHUNKS              12
24
25 /*
26  *---------------------------------------------------------------
27  * Persistent snapshots, by persistent we mean that the snapshot
28  * will survive a reboot.
29  *---------------------------------------------------------------
30  */
31
32 /*
33  * We need to store a record of which parts of the origin have
34  * been copied to the snapshot device.  The snapshot code
35  * requires that we copy exception chunks to chunk aligned areas
36  * of the COW store.  It makes sense therefore, to store the
37  * metadata in chunk size blocks.
38  *
39  * There is no backward or forward compatibility implemented,
40  * snapshots with different disk versions than the kernel will
41  * not be usable.  It is expected that "lvcreate" will blank out
42  * the start of a fresh COW device before calling the snapshot
43  * constructor.
44  *
45  * The first chunk of the COW device just contains the header.
46  * After this there is a chunk filled with exception metadata,
47  * followed by as many exception chunks as can fit in the
48  * metadata areas.
49  *
50  * All on disk structures are in little-endian format.  The end
51  * of the exceptions info is indicated by an exception with a
52  * new_chunk of 0, which is invalid since it would point to the
53  * header chunk.
54  */
55
56 /*
57  * Magic for persistent snapshots: "SnAp" - Feeble isn't it.
58  */
59 #define SNAP_MAGIC 0x70416e53
60
61 /*
62  * The on-disk version of the metadata.
63  */
64 #define SNAPSHOT_DISK_VERSION 1
65
66 #define NUM_SNAPSHOT_HDR_CHUNKS 1
67
68 struct disk_header {
69         __le32 magic;
70
71         /*
72          * Is this snapshot valid.  There is no way of recovering
73          * an invalid snapshot.
74          */
75         __le32 valid;
76
77         /*
78          * Simple, incrementing version. no backward
79          * compatibility.
80          */
81         __le32 version;
82
83         /* In sectors */
84         __le32 chunk_size;
85 } __packed;
86
87 struct disk_exception {
88         __le64 old_chunk;
89         __le64 new_chunk;
90 } __packed;
91
92 struct core_exception {
93         uint64_t old_chunk;
94         uint64_t new_chunk;
95 };
96
97 struct commit_callback {
98         void (*callback)(void *ref, int success);
99         void *context;
100 };
101
102 /*
103  * The top level structure for a persistent exception store.
104  */
105 struct pstore {
106         struct dm_exception_store *store;
107         int version;
108         int valid;
109         uint32_t exceptions_per_area;
110
111         /*
112          * Now that we have an asynchronous kcopyd there is no
113          * need for large chunk sizes, so it wont hurt to have a
114          * whole chunks worth of metadata in memory at once.
115          */
116         void *area;
117
118         /*
119          * An area of zeros used to clear the next area.
120          */
121         void *zero_area;
122
123         /*
124          * An area used for header. The header can be written
125          * concurrently with metadata (when invalidating the snapshot),
126          * so it needs a separate buffer.
127          */
128         void *header_area;
129
130         /*
131          * Used to keep track of which metadata area the data in
132          * 'chunk' refers to.
133          */
134         chunk_t current_area;
135
136         /*
137          * The next free chunk for an exception.
138          *
139          * When creating exceptions, all the chunks here and above are
140          * free.  It holds the next chunk to be allocated.  On rare
141          * occasions (e.g. after a system crash) holes can be left in
142          * the exception store because chunks can be committed out of
143          * order.
144          *
145          * When merging exceptions, it does not necessarily mean all the
146          * chunks here and above are free.  It holds the value it would
147          * have held if all chunks had been committed in order of
148          * allocation.  Consequently the value may occasionally be
149          * slightly too low, but since it's only used for 'status' and
150          * it can never reach its minimum value too early this doesn't
151          * matter.
152          */
153
154         chunk_t next_free;
155
156         /*
157          * The index of next free exception in the current
158          * metadata area.
159          */
160         uint32_t current_committed;
161
162         atomic_t pending_count;
163         uint32_t callback_count;
164         struct commit_callback *callbacks;
165         struct dm_io_client *io_client;
166
167         struct workqueue_struct *metadata_wq;
168 };
169
170 static int alloc_area(struct pstore *ps)
171 {
172         int r = -ENOMEM;
173         size_t len;
174
175         len = ps->store->chunk_size << SECTOR_SHIFT;
176
177         /*
178          * Allocate the chunk_size block of memory that will hold
179          * a single metadata area.
180          */
181         ps->area = vmalloc(len);
182         if (!ps->area)
183                 goto err_area;
184
185         ps->zero_area = vzalloc(len);
186         if (!ps->zero_area)
187                 goto err_zero_area;
188
189         ps->header_area = vmalloc(len);
190         if (!ps->header_area)
191                 goto err_header_area;
192
193         return 0;
194
195 err_header_area:
196         vfree(ps->zero_area);
197
198 err_zero_area:
199         vfree(ps->area);
200
201 err_area:
202         return r;
203 }
204
205 static void free_area(struct pstore *ps)
206 {
207         vfree(ps->area);
208         ps->area = NULL;
209         vfree(ps->zero_area);
210         ps->zero_area = NULL;
211         vfree(ps->header_area);
212         ps->header_area = NULL;
213 }
214
215 struct mdata_req {
216         struct dm_io_region *where;
217         struct dm_io_request *io_req;
218         struct work_struct work;
219         int result;
220 };
221
222 static void do_metadata(struct work_struct *work)
223 {
224         struct mdata_req *req = container_of(work, struct mdata_req, work);
225
226         req->result = dm_io(req->io_req, 1, req->where, NULL);
227 }
228
229 /*
230  * Read or write a chunk aligned and sized block of data from a device.
231  */
232 static int chunk_io(struct pstore *ps, void *area, chunk_t chunk, blk_opf_t opf,
233                     int metadata)
234 {
235         struct dm_io_region where = {
236                 .bdev = dm_snap_cow(ps->store->snap)->bdev,
237                 .sector = ps->store->chunk_size * chunk,
238                 .count = ps->store->chunk_size,
239         };
240         struct dm_io_request io_req = {
241                 .bi_opf = opf,
242                 .mem.type = DM_IO_VMA,
243                 .mem.ptr.vma = area,
244                 .client = ps->io_client,
245                 .notify.fn = NULL,
246         };
247         struct mdata_req req;
248
249         if (!metadata)
250                 return dm_io(&io_req, 1, &where, NULL);
251
252         req.where = &where;
253         req.io_req = &io_req;
254
255         /*
256          * Issue the synchronous I/O from a different thread
257          * to avoid submit_bio_noacct recursion.
258          */
259         INIT_WORK_ONSTACK(&req.work, do_metadata);
260         queue_work(ps->metadata_wq, &req.work);
261         flush_workqueue(ps->metadata_wq);
262         destroy_work_on_stack(&req.work);
263
264         return req.result;
265 }
266
267 /*
268  * Convert a metadata area index to a chunk index.
269  */
270 static chunk_t area_location(struct pstore *ps, chunk_t area)
271 {
272         return NUM_SNAPSHOT_HDR_CHUNKS + ((ps->exceptions_per_area + 1) * area);
273 }
274
275 static void skip_metadata(struct pstore *ps)
276 {
277         uint32_t stride = ps->exceptions_per_area + 1;
278         chunk_t next_free = ps->next_free;
279
280         if (sector_div(next_free, stride) == NUM_SNAPSHOT_HDR_CHUNKS)
281                 ps->next_free++;
282 }
283
284 /*
285  * Read or write a metadata area.  Remembering to skip the first
286  * chunk which holds the header.
287  */
288 static int area_io(struct pstore *ps, blk_opf_t opf)
289 {
290         chunk_t chunk = area_location(ps, ps->current_area);
291
292         return chunk_io(ps, ps->area, chunk, opf, 0);
293 }
294
295 static void zero_memory_area(struct pstore *ps)
296 {
297         memset(ps->area, 0, ps->store->chunk_size << SECTOR_SHIFT);
298 }
299
300 static int zero_disk_area(struct pstore *ps, chunk_t area)
301 {
302         return chunk_io(ps, ps->zero_area, area_location(ps, area),
303                         REQ_OP_WRITE, 0);
304 }
305
306 static int read_header(struct pstore *ps, int *new_snapshot)
307 {
308         int r;
309         struct disk_header *dh;
310         unsigned int chunk_size;
311         int chunk_size_supplied = 1;
312         char *chunk_err;
313
314         /*
315          * Use default chunk size (or logical_block_size, if larger)
316          * if none supplied
317          */
318         if (!ps->store->chunk_size) {
319                 ps->store->chunk_size = max(DM_CHUNK_SIZE_DEFAULT_SECTORS,
320                     bdev_logical_block_size(dm_snap_cow(ps->store->snap)->
321                                             bdev) >> 9);
322                 ps->store->chunk_mask = ps->store->chunk_size - 1;
323                 ps->store->chunk_shift = __ffs(ps->store->chunk_size);
324                 chunk_size_supplied = 0;
325         }
326
327         ps->io_client = dm_io_client_create();
328         if (IS_ERR(ps->io_client))
329                 return PTR_ERR(ps->io_client);
330
331         r = alloc_area(ps);
332         if (r)
333                 return r;
334
335         r = chunk_io(ps, ps->header_area, 0, REQ_OP_READ, 1);
336         if (r)
337                 goto bad;
338
339         dh = ps->header_area;
340
341         if (le32_to_cpu(dh->magic) == 0) {
342                 *new_snapshot = 1;
343                 return 0;
344         }
345
346         if (le32_to_cpu(dh->magic) != SNAP_MAGIC) {
347                 DMWARN("Invalid or corrupt snapshot");
348                 r = -ENXIO;
349                 goto bad;
350         }
351
352         *new_snapshot = 0;
353         ps->valid = le32_to_cpu(dh->valid);
354         ps->version = le32_to_cpu(dh->version);
355         chunk_size = le32_to_cpu(dh->chunk_size);
356
357         if (ps->store->chunk_size == chunk_size)
358                 return 0;
359
360         if (chunk_size_supplied)
361                 DMWARN("chunk size %u in device metadata overrides "
362                        "table chunk size of %u.",
363                        chunk_size, ps->store->chunk_size);
364
365         /* We had a bogus chunk_size. Fix stuff up. */
366         free_area(ps);
367
368         r = dm_exception_store_set_chunk_size(ps->store, chunk_size,
369                                               &chunk_err);
370         if (r) {
371                 DMERR("invalid on-disk chunk size %u: %s.",
372                       chunk_size, chunk_err);
373                 return r;
374         }
375
376         r = alloc_area(ps);
377         return r;
378
379 bad:
380         free_area(ps);
381         return r;
382 }
383
384 static int write_header(struct pstore *ps)
385 {
386         struct disk_header *dh;
387
388         memset(ps->header_area, 0, ps->store->chunk_size << SECTOR_SHIFT);
389
390         dh = ps->header_area;
391         dh->magic = cpu_to_le32(SNAP_MAGIC);
392         dh->valid = cpu_to_le32(ps->valid);
393         dh->version = cpu_to_le32(ps->version);
394         dh->chunk_size = cpu_to_le32(ps->store->chunk_size);
395
396         return chunk_io(ps, ps->header_area, 0, REQ_OP_WRITE, 1);
397 }
398
399 /*
400  * Access functions for the disk exceptions, these do the endian conversions.
401  */
402 static struct disk_exception *get_exception(struct pstore *ps, void *ps_area,
403                                             uint32_t index)
404 {
405         BUG_ON(index >= ps->exceptions_per_area);
406
407         return ((struct disk_exception *) ps_area) + index;
408 }
409
410 static void read_exception(struct pstore *ps, void *ps_area,
411                            uint32_t index, struct core_exception *result)
412 {
413         struct disk_exception *de = get_exception(ps, ps_area, index);
414
415         /* copy it */
416         result->old_chunk = le64_to_cpu(de->old_chunk);
417         result->new_chunk = le64_to_cpu(de->new_chunk);
418 }
419
420 static void write_exception(struct pstore *ps,
421                             uint32_t index, struct core_exception *e)
422 {
423         struct disk_exception *de = get_exception(ps, ps->area, index);
424
425         /* copy it */
426         de->old_chunk = cpu_to_le64(e->old_chunk);
427         de->new_chunk = cpu_to_le64(e->new_chunk);
428 }
429
430 static void clear_exception(struct pstore *ps, uint32_t index)
431 {
432         struct disk_exception *de = get_exception(ps, ps->area, index);
433
434         /* clear it */
435         de->old_chunk = 0;
436         de->new_chunk = 0;
437 }
438
439 /*
440  * Registers the exceptions that are present in the current area.
441  * 'full' is filled in to indicate if the area has been
442  * filled.
443  */
444 static int insert_exceptions(struct pstore *ps, void *ps_area,
445                              int (*callback)(void *callback_context,
446                                              chunk_t old, chunk_t new),
447                              void *callback_context,
448                              int *full)
449 {
450         int r;
451         unsigned int i;
452         struct core_exception e;
453
454         /* presume the area is full */
455         *full = 1;
456
457         for (i = 0; i < ps->exceptions_per_area; i++) {
458                 read_exception(ps, ps_area, i, &e);
459
460                 /*
461                  * If the new_chunk is pointing at the start of
462                  * the COW device, where the first metadata area
463                  * is we know that we've hit the end of the
464                  * exceptions.  Therefore the area is not full.
465                  */
466                 if (e.new_chunk == 0LL) {
467                         ps->current_committed = i;
468                         *full = 0;
469                         break;
470                 }
471
472                 /*
473                  * Keep track of the start of the free chunks.
474                  */
475                 if (ps->next_free <= e.new_chunk)
476                         ps->next_free = e.new_chunk + 1;
477
478                 /*
479                  * Otherwise we add the exception to the snapshot.
480                  */
481                 r = callback(callback_context, e.old_chunk, e.new_chunk);
482                 if (r)
483                         return r;
484         }
485
486         return 0;
487 }
488
489 static int read_exceptions(struct pstore *ps,
490                            int (*callback)(void *callback_context, chunk_t old,
491                                            chunk_t new),
492                            void *callback_context)
493 {
494         int r, full = 1;
495         struct dm_bufio_client *client;
496         chunk_t prefetch_area = 0;
497
498         client = dm_bufio_client_create(dm_snap_cow(ps->store->snap)->bdev,
499                                         ps->store->chunk_size << SECTOR_SHIFT,
500                                         1, 0, NULL, NULL, 0);
501
502         if (IS_ERR(client))
503                 return PTR_ERR(client);
504
505         /*
506          * Setup for one current buffer + desired readahead buffers.
507          */
508         dm_bufio_set_minimum_buffers(client, 1 + DM_PREFETCH_CHUNKS);
509
510         /*
511          * Keeping reading chunks and inserting exceptions until
512          * we find a partially full area.
513          */
514         for (ps->current_area = 0; full; ps->current_area++) {
515                 struct dm_buffer *bp;
516                 void *area;
517                 chunk_t chunk;
518
519                 if (unlikely(prefetch_area < ps->current_area))
520                         prefetch_area = ps->current_area;
521
522                 if (DM_PREFETCH_CHUNKS) {
523                         do {
524                                 chunk_t pf_chunk = area_location(ps, prefetch_area);
525
526                                 if (unlikely(pf_chunk >= dm_bufio_get_device_size(client)))
527                                         break;
528                                 dm_bufio_prefetch(client, pf_chunk, 1);
529                                 prefetch_area++;
530                                 if (unlikely(!prefetch_area))
531                                         break;
532                         } while (prefetch_area <= ps->current_area + DM_PREFETCH_CHUNKS);
533                 }
534
535                 chunk = area_location(ps, ps->current_area);
536
537                 area = dm_bufio_read(client, chunk, &bp);
538                 if (IS_ERR(area)) {
539                         r = PTR_ERR(area);
540                         goto ret_destroy_bufio;
541                 }
542
543                 r = insert_exceptions(ps, area, callback, callback_context,
544                                       &full);
545
546                 if (!full)
547                         memcpy(ps->area, area, ps->store->chunk_size << SECTOR_SHIFT);
548
549                 dm_bufio_release(bp);
550
551                 dm_bufio_forget(client, chunk);
552
553                 if (unlikely(r))
554                         goto ret_destroy_bufio;
555         }
556
557         ps->current_area--;
558
559         skip_metadata(ps);
560
561         r = 0;
562
563 ret_destroy_bufio:
564         dm_bufio_client_destroy(client);
565
566         return r;
567 }
568
569 static struct pstore *get_info(struct dm_exception_store *store)
570 {
571         return (struct pstore *) store->context;
572 }
573
574 static void persistent_usage(struct dm_exception_store *store,
575                              sector_t *total_sectors,
576                              sector_t *sectors_allocated,
577                              sector_t *metadata_sectors)
578 {
579         struct pstore *ps = get_info(store);
580
581         *sectors_allocated = ps->next_free * store->chunk_size;
582         *total_sectors = get_dev_size(dm_snap_cow(store->snap)->bdev);
583
584         /*
585          * First chunk is the fixed header.
586          * Then there are (ps->current_area + 1) metadata chunks, each one
587          * separated from the next by ps->exceptions_per_area data chunks.
588          */
589         *metadata_sectors = (ps->current_area + 1 + NUM_SNAPSHOT_HDR_CHUNKS) *
590                             store->chunk_size;
591 }
592
593 static void persistent_dtr(struct dm_exception_store *store)
594 {
595         struct pstore *ps = get_info(store);
596
597         destroy_workqueue(ps->metadata_wq);
598
599         /* Created in read_header */
600         if (ps->io_client)
601                 dm_io_client_destroy(ps->io_client);
602         free_area(ps);
603
604         /* Allocated in persistent_read_metadata */
605         kvfree(ps->callbacks);
606
607         kfree(ps);
608 }
609
610 static int persistent_read_metadata(struct dm_exception_store *store,
611                                     int (*callback)(void *callback_context,
612                                                     chunk_t old, chunk_t new),
613                                     void *callback_context)
614 {
615         int r, new_snapshot;
616         struct pstore *ps = get_info(store);
617
618         /*
619          * Read the snapshot header.
620          */
621         r = read_header(ps, &new_snapshot);
622         if (r)
623                 return r;
624
625         /*
626          * Now we know correct chunk_size, complete the initialisation.
627          */
628         ps->exceptions_per_area = (ps->store->chunk_size << SECTOR_SHIFT) /
629                                   sizeof(struct disk_exception);
630         ps->callbacks = kvcalloc(ps->exceptions_per_area,
631                                  sizeof(*ps->callbacks), GFP_KERNEL);
632         if (!ps->callbacks)
633                 return -ENOMEM;
634
635         /*
636          * Do we need to setup a new snapshot ?
637          */
638         if (new_snapshot) {
639                 r = write_header(ps);
640                 if (r) {
641                         DMWARN("write_header failed");
642                         return r;
643                 }
644
645                 ps->current_area = 0;
646                 zero_memory_area(ps);
647                 r = zero_disk_area(ps, 0);
648                 if (r)
649                         DMWARN("zero_disk_area(0) failed");
650                 return r;
651         }
652         /*
653          * Sanity checks.
654          */
655         if (ps->version != SNAPSHOT_DISK_VERSION) {
656                 DMWARN("unable to handle snapshot disk version %d",
657                        ps->version);
658                 return -EINVAL;
659         }
660
661         /*
662          * Metadata are valid, but snapshot is invalidated
663          */
664         if (!ps->valid)
665                 return 1;
666
667         /*
668          * Read the metadata.
669          */
670         r = read_exceptions(ps, callback, callback_context);
671
672         return r;
673 }
674
675 static int persistent_prepare_exception(struct dm_exception_store *store,
676                                         struct dm_exception *e)
677 {
678         struct pstore *ps = get_info(store);
679         sector_t size = get_dev_size(dm_snap_cow(store->snap)->bdev);
680
681         /* Is there enough room ? */
682         if (size < ((ps->next_free + 1) * store->chunk_size))
683                 return -ENOSPC;
684
685         e->new_chunk = ps->next_free;
686
687         /*
688          * Move onto the next free pending, making sure to take
689          * into account the location of the metadata chunks.
690          */
691         ps->next_free++;
692         skip_metadata(ps);
693
694         atomic_inc(&ps->pending_count);
695         return 0;
696 }
697
698 static void persistent_commit_exception(struct dm_exception_store *store,
699                                         struct dm_exception *e, int valid,
700                                         void (*callback)(void *, int success),
701                                         void *callback_context)
702 {
703         unsigned int i;
704         struct pstore *ps = get_info(store);
705         struct core_exception ce;
706         struct commit_callback *cb;
707
708         if (!valid)
709                 ps->valid = 0;
710
711         ce.old_chunk = e->old_chunk;
712         ce.new_chunk = e->new_chunk;
713         write_exception(ps, ps->current_committed++, &ce);
714
715         /*
716          * Add the callback to the back of the array.  This code
717          * is the only place where the callback array is
718          * manipulated, and we know that it will never be called
719          * multiple times concurrently.
720          */
721         cb = ps->callbacks + ps->callback_count++;
722         cb->callback = callback;
723         cb->context = callback_context;
724
725         /*
726          * If there are exceptions in flight and we have not yet
727          * filled this metadata area there's nothing more to do.
728          */
729         if (!atomic_dec_and_test(&ps->pending_count) &&
730             (ps->current_committed != ps->exceptions_per_area))
731                 return;
732
733         /*
734          * If we completely filled the current area, then wipe the next one.
735          */
736         if ((ps->current_committed == ps->exceptions_per_area) &&
737             zero_disk_area(ps, ps->current_area + 1))
738                 ps->valid = 0;
739
740         /*
741          * Commit exceptions to disk.
742          */
743         if (ps->valid && area_io(ps, REQ_OP_WRITE | REQ_PREFLUSH | REQ_FUA |
744                                  REQ_SYNC))
745                 ps->valid = 0;
746
747         /*
748          * Advance to the next area if this one is full.
749          */
750         if (ps->current_committed == ps->exceptions_per_area) {
751                 ps->current_committed = 0;
752                 ps->current_area++;
753                 zero_memory_area(ps);
754         }
755
756         for (i = 0; i < ps->callback_count; i++) {
757                 cb = ps->callbacks + i;
758                 cb->callback(cb->context, ps->valid);
759         }
760
761         ps->callback_count = 0;
762 }
763
764 static int persistent_prepare_merge(struct dm_exception_store *store,
765                                     chunk_t *last_old_chunk,
766                                     chunk_t *last_new_chunk)
767 {
768         struct pstore *ps = get_info(store);
769         struct core_exception ce;
770         int nr_consecutive;
771         int r;
772
773         /*
774          * When current area is empty, move back to preceding area.
775          */
776         if (!ps->current_committed) {
777                 /*
778                  * Have we finished?
779                  */
780                 if (!ps->current_area)
781                         return 0;
782
783                 ps->current_area--;
784                 r = area_io(ps, REQ_OP_READ);
785                 if (r < 0)
786                         return r;
787                 ps->current_committed = ps->exceptions_per_area;
788         }
789
790         read_exception(ps, ps->area, ps->current_committed - 1, &ce);
791         *last_old_chunk = ce.old_chunk;
792         *last_new_chunk = ce.new_chunk;
793
794         /*
795          * Find number of consecutive chunks within the current area,
796          * working backwards.
797          */
798         for (nr_consecutive = 1; nr_consecutive < ps->current_committed;
799              nr_consecutive++) {
800                 read_exception(ps, ps->area,
801                                ps->current_committed - 1 - nr_consecutive, &ce);
802                 if (ce.old_chunk != *last_old_chunk - nr_consecutive ||
803                     ce.new_chunk != *last_new_chunk - nr_consecutive)
804                         break;
805         }
806
807         return nr_consecutive;
808 }
809
810 static int persistent_commit_merge(struct dm_exception_store *store,
811                                    int nr_merged)
812 {
813         int r, i;
814         struct pstore *ps = get_info(store);
815
816         BUG_ON(nr_merged > ps->current_committed);
817
818         for (i = 0; i < nr_merged; i++)
819                 clear_exception(ps, ps->current_committed - 1 - i);
820
821         r = area_io(ps, REQ_OP_WRITE | REQ_PREFLUSH | REQ_FUA);
822         if (r < 0)
823                 return r;
824
825         ps->current_committed -= nr_merged;
826
827         /*
828          * At this stage, only persistent_usage() uses ps->next_free, so
829          * we make no attempt to keep ps->next_free strictly accurate
830          * as exceptions may have been committed out-of-order originally.
831          * Once a snapshot has become merging, we set it to the value it
832          * would have held had all the exceptions been committed in order.
833          *
834          * ps->current_area does not get reduced by prepare_merge() until
835          * after commit_merge() has removed the nr_merged previous exceptions.
836          */
837         ps->next_free = area_location(ps, ps->current_area) +
838                         ps->current_committed + 1;
839
840         return 0;
841 }
842
843 static void persistent_drop_snapshot(struct dm_exception_store *store)
844 {
845         struct pstore *ps = get_info(store);
846
847         ps->valid = 0;
848         if (write_header(ps))
849                 DMWARN("write header failed");
850 }
851
852 static int persistent_ctr(struct dm_exception_store *store, char *options)
853 {
854         struct pstore *ps;
855         int r;
856
857         /* allocate the pstore */
858         ps = kzalloc(sizeof(*ps), GFP_KERNEL);
859         if (!ps)
860                 return -ENOMEM;
861
862         ps->store = store;
863         ps->valid = 1;
864         ps->version = SNAPSHOT_DISK_VERSION;
865         ps->area = NULL;
866         ps->zero_area = NULL;
867         ps->header_area = NULL;
868         ps->next_free = NUM_SNAPSHOT_HDR_CHUNKS + 1; /* header and 1st area */
869         ps->current_committed = 0;
870
871         ps->callback_count = 0;
872         atomic_set(&ps->pending_count, 0);
873         ps->callbacks = NULL;
874
875         ps->metadata_wq = alloc_workqueue("ksnaphd", WQ_MEM_RECLAIM, 0);
876         if (!ps->metadata_wq) {
877                 DMERR("couldn't start header metadata update thread");
878                 r = -ENOMEM;
879                 goto err_workqueue;
880         }
881
882         if (options) {
883                 char overflow = toupper(options[0]);
884
885                 if (overflow == 'O')
886                         store->userspace_supports_overflow = true;
887                 else {
888                         DMERR("Unsupported persistent store option: %s", options);
889                         r = -EINVAL;
890                         goto err_options;
891                 }
892         }
893
894         store->context = ps;
895
896         return 0;
897
898 err_options:
899         destroy_workqueue(ps->metadata_wq);
900 err_workqueue:
901         kfree(ps);
902
903         return r;
904 }
905
906 static unsigned int persistent_status(struct dm_exception_store *store,
907                                   status_type_t status, char *result,
908                                   unsigned int maxlen)
909 {
910         unsigned int sz = 0;
911
912         switch (status) {
913         case STATUSTYPE_INFO:
914                 break;
915         case STATUSTYPE_TABLE:
916                 DMEMIT(" %s %llu", store->userspace_supports_overflow ? "PO" : "P",
917                        (unsigned long long)store->chunk_size);
918                 break;
919         case STATUSTYPE_IMA:
920                 *result = '\0';
921                 break;
922         }
923
924         return sz;
925 }
926
927 static struct dm_exception_store_type _persistent_type = {
928         .name = "persistent",
929         .module = THIS_MODULE,
930         .ctr = persistent_ctr,
931         .dtr = persistent_dtr,
932         .read_metadata = persistent_read_metadata,
933         .prepare_exception = persistent_prepare_exception,
934         .commit_exception = persistent_commit_exception,
935         .prepare_merge = persistent_prepare_merge,
936         .commit_merge = persistent_commit_merge,
937         .drop_snapshot = persistent_drop_snapshot,
938         .usage = persistent_usage,
939         .status = persistent_status,
940 };
941
942 static struct dm_exception_store_type _persistent_compat_type = {
943         .name = "P",
944         .module = THIS_MODULE,
945         .ctr = persistent_ctr,
946         .dtr = persistent_dtr,
947         .read_metadata = persistent_read_metadata,
948         .prepare_exception = persistent_prepare_exception,
949         .commit_exception = persistent_commit_exception,
950         .prepare_merge = persistent_prepare_merge,
951         .commit_merge = persistent_commit_merge,
952         .drop_snapshot = persistent_drop_snapshot,
953         .usage = persistent_usage,
954         .status = persistent_status,
955 };
956
957 int dm_persistent_snapshot_init(void)
958 {
959         int r;
960
961         r = dm_exception_store_type_register(&_persistent_type);
962         if (r) {
963                 DMERR("Unable to register persistent exception store type");
964                 return r;
965         }
966
967         r = dm_exception_store_type_register(&_persistent_compat_type);
968         if (r) {
969                 DMERR("Unable to register old-style persistent exception "
970                       "store type");
971                 dm_exception_store_type_unregister(&_persistent_type);
972                 return r;
973         }
974
975         return r;
976 }
977
978 void dm_persistent_snapshot_exit(void)
979 {
980         dm_exception_store_type_unregister(&_persistent_type);
981         dm_exception_store_type_unregister(&_persistent_compat_type);
982 }