GNU Linux-libre 5.10.153-gnu1
[releases.git] / drivers / md / dm-integrity.c
1 /*
2  * Copyright (C) 2016-2017 Red Hat, Inc. All rights reserved.
3  * Copyright (C) 2016-2017 Milan Broz
4  * Copyright (C) 2016-2017 Mikulas Patocka
5  *
6  * This file is released under the GPL.
7  */
8
9 #include "dm-bio-record.h"
10
11 #include <linux/compiler.h>
12 #include <linux/module.h>
13 #include <linux/device-mapper.h>
14 #include <linux/dm-io.h>
15 #include <linux/vmalloc.h>
16 #include <linux/sort.h>
17 #include <linux/rbtree.h>
18 #include <linux/delay.h>
19 #include <linux/random.h>
20 #include <linux/reboot.h>
21 #include <crypto/hash.h>
22 #include <crypto/skcipher.h>
23 #include <linux/async_tx.h>
24 #include <linux/dm-bufio.h>
25
26 #define DM_MSG_PREFIX "integrity"
27
28 #define DEFAULT_INTERLEAVE_SECTORS      32768
29 #define DEFAULT_JOURNAL_SIZE_FACTOR     7
30 #define DEFAULT_SECTORS_PER_BITMAP_BIT  32768
31 #define DEFAULT_BUFFER_SECTORS          128
32 #define DEFAULT_JOURNAL_WATERMARK       50
33 #define DEFAULT_SYNC_MSEC               10000
34 #define DEFAULT_MAX_JOURNAL_SECTORS     131072
35 #define MIN_LOG2_INTERLEAVE_SECTORS     3
36 #define MAX_LOG2_INTERLEAVE_SECTORS     31
37 #define METADATA_WORKQUEUE_MAX_ACTIVE   16
38 #define RECALC_SECTORS                  8192
39 #define RECALC_WRITE_SUPER              16
40 #define BITMAP_BLOCK_SIZE               4096    /* don't change it */
41 #define BITMAP_FLUSH_INTERVAL           (10 * HZ)
42 #define DISCARD_FILLER                  0xf6
43
44 /*
45  * Warning - DEBUG_PRINT prints security-sensitive data to the log,
46  * so it should not be enabled in the official kernel
47  */
48 //#define DEBUG_PRINT
49 //#define INTERNAL_VERIFY
50
51 /*
52  * On disk structures
53  */
54
55 #define SB_MAGIC                        "integrt"
56 #define SB_VERSION_1                    1
57 #define SB_VERSION_2                    2
58 #define SB_VERSION_3                    3
59 #define SB_VERSION_4                    4
60 #define SB_SECTORS                      8
61 #define MAX_SECTORS_PER_BLOCK           8
62
63 struct superblock {
64         __u8 magic[8];
65         __u8 version;
66         __u8 log2_interleave_sectors;
67         __u16 integrity_tag_size;
68         __u32 journal_sections;
69         __u64 provided_data_sectors;    /* userspace uses this value */
70         __u32 flags;
71         __u8 log2_sectors_per_block;
72         __u8 log2_blocks_per_bitmap_bit;
73         __u8 pad[2];
74         __u64 recalc_sector;
75 };
76
77 #define SB_FLAG_HAVE_JOURNAL_MAC        0x1
78 #define SB_FLAG_RECALCULATING           0x2
79 #define SB_FLAG_DIRTY_BITMAP            0x4
80 #define SB_FLAG_FIXED_PADDING           0x8
81
82 #define JOURNAL_ENTRY_ROUNDUP           8
83
84 typedef __u64 commit_id_t;
85 #define JOURNAL_MAC_PER_SECTOR          8
86
87 struct journal_entry {
88         union {
89                 struct {
90                         __u32 sector_lo;
91                         __u32 sector_hi;
92                 } s;
93                 __u64 sector;
94         } u;
95         commit_id_t last_bytes[];
96         /* __u8 tag[0]; */
97 };
98
99 #define journal_entry_tag(ic, je)               ((__u8 *)&(je)->last_bytes[(ic)->sectors_per_block])
100
101 #if BITS_PER_LONG == 64
102 #define journal_entry_set_sector(je, x)         do { smp_wmb(); WRITE_ONCE((je)->u.sector, cpu_to_le64(x)); } while (0)
103 #else
104 #define journal_entry_set_sector(je, x)         do { (je)->u.s.sector_lo = cpu_to_le32(x); smp_wmb(); WRITE_ONCE((je)->u.s.sector_hi, cpu_to_le32((x) >> 32)); } while (0)
105 #endif
106 #define journal_entry_get_sector(je)            le64_to_cpu((je)->u.sector)
107 #define journal_entry_is_unused(je)             ((je)->u.s.sector_hi == cpu_to_le32(-1))
108 #define journal_entry_set_unused(je)            do { ((je)->u.s.sector_hi = cpu_to_le32(-1)); } while (0)
109 #define journal_entry_is_inprogress(je)         ((je)->u.s.sector_hi == cpu_to_le32(-2))
110 #define journal_entry_set_inprogress(je)        do { ((je)->u.s.sector_hi = cpu_to_le32(-2)); } while (0)
111
112 #define JOURNAL_BLOCK_SECTORS           8
113 #define JOURNAL_SECTOR_DATA             ((1 << SECTOR_SHIFT) - sizeof(commit_id_t))
114 #define JOURNAL_MAC_SIZE                (JOURNAL_MAC_PER_SECTOR * JOURNAL_BLOCK_SECTORS)
115
116 struct journal_sector {
117         __u8 entries[JOURNAL_SECTOR_DATA - JOURNAL_MAC_PER_SECTOR];
118         __u8 mac[JOURNAL_MAC_PER_SECTOR];
119         commit_id_t commit_id;
120 };
121
122 #define MAX_TAG_SIZE                    (JOURNAL_SECTOR_DATA - JOURNAL_MAC_PER_SECTOR - offsetof(struct journal_entry, last_bytes[MAX_SECTORS_PER_BLOCK]))
123
124 #define METADATA_PADDING_SECTORS        8
125
126 #define N_COMMIT_IDS                    4
127
128 static unsigned char prev_commit_seq(unsigned char seq)
129 {
130         return (seq + N_COMMIT_IDS - 1) % N_COMMIT_IDS;
131 }
132
133 static unsigned char next_commit_seq(unsigned char seq)
134 {
135         return (seq + 1) % N_COMMIT_IDS;
136 }
137
138 /*
139  * In-memory structures
140  */
141
142 struct journal_node {
143         struct rb_node node;
144         sector_t sector;
145 };
146
147 struct alg_spec {
148         char *alg_string;
149         char *key_string;
150         __u8 *key;
151         unsigned key_size;
152 };
153
154 struct dm_integrity_c {
155         struct dm_dev *dev;
156         struct dm_dev *meta_dev;
157         unsigned tag_size;
158         __s8 log2_tag_size;
159         sector_t start;
160         mempool_t journal_io_mempool;
161         struct dm_io_client *io;
162         struct dm_bufio_client *bufio;
163         struct workqueue_struct *metadata_wq;
164         struct superblock *sb;
165         unsigned journal_pages;
166         unsigned n_bitmap_blocks;
167
168         struct page_list *journal;
169         struct page_list *journal_io;
170         struct page_list *journal_xor;
171         struct page_list *recalc_bitmap;
172         struct page_list *may_write_bitmap;
173         struct bitmap_block_status *bbs;
174         unsigned bitmap_flush_interval;
175         int synchronous_mode;
176         struct bio_list synchronous_bios;
177         struct delayed_work bitmap_flush_work;
178
179         struct crypto_skcipher *journal_crypt;
180         struct scatterlist **journal_scatterlist;
181         struct scatterlist **journal_io_scatterlist;
182         struct skcipher_request **sk_requests;
183
184         struct crypto_shash *journal_mac;
185
186         struct journal_node *journal_tree;
187         struct rb_root journal_tree_root;
188
189         sector_t provided_data_sectors;
190
191         unsigned short journal_entry_size;
192         unsigned char journal_entries_per_sector;
193         unsigned char journal_section_entries;
194         unsigned short journal_section_sectors;
195         unsigned journal_sections;
196         unsigned journal_entries;
197         sector_t data_device_sectors;
198         sector_t meta_device_sectors;
199         unsigned initial_sectors;
200         unsigned metadata_run;
201         __s8 log2_metadata_run;
202         __u8 log2_buffer_sectors;
203         __u8 sectors_per_block;
204         __u8 log2_blocks_per_bitmap_bit;
205
206         unsigned char mode;
207
208         int failed;
209
210         struct crypto_shash *internal_hash;
211
212         struct dm_target *ti;
213
214         /* these variables are locked with endio_wait.lock */
215         struct rb_root in_progress;
216         struct list_head wait_list;
217         wait_queue_head_t endio_wait;
218         struct workqueue_struct *wait_wq;
219         struct workqueue_struct *offload_wq;
220
221         unsigned char commit_seq;
222         commit_id_t commit_ids[N_COMMIT_IDS];
223
224         unsigned committed_section;
225         unsigned n_committed_sections;
226
227         unsigned uncommitted_section;
228         unsigned n_uncommitted_sections;
229
230         unsigned free_section;
231         unsigned char free_section_entry;
232         unsigned free_sectors;
233
234         unsigned free_sectors_threshold;
235
236         struct workqueue_struct *commit_wq;
237         struct work_struct commit_work;
238
239         struct workqueue_struct *writer_wq;
240         struct work_struct writer_work;
241
242         struct workqueue_struct *recalc_wq;
243         struct work_struct recalc_work;
244         u8 *recalc_buffer;
245         u8 *recalc_tags;
246
247         struct bio_list flush_bio_list;
248
249         unsigned long autocommit_jiffies;
250         struct timer_list autocommit_timer;
251         unsigned autocommit_msec;
252
253         wait_queue_head_t copy_to_journal_wait;
254
255         struct completion crypto_backoff;
256
257         bool journal_uptodate;
258         bool just_formatted;
259         bool recalculate_flag;
260         bool discard;
261         bool fix_padding;
262         bool legacy_recalculate;
263
264         struct alg_spec internal_hash_alg;
265         struct alg_spec journal_crypt_alg;
266         struct alg_spec journal_mac_alg;
267
268         atomic64_t number_of_mismatches;
269
270         struct notifier_block reboot_notifier;
271 };
272
273 struct dm_integrity_range {
274         sector_t logical_sector;
275         sector_t n_sectors;
276         bool waiting;
277         union {
278                 struct rb_node node;
279                 struct {
280                         struct task_struct *task;
281                         struct list_head wait_entry;
282                 };
283         };
284 };
285
286 struct dm_integrity_io {
287         struct work_struct work;
288
289         struct dm_integrity_c *ic;
290         enum req_opf op;
291         bool fua;
292
293         struct dm_integrity_range range;
294
295         sector_t metadata_block;
296         unsigned metadata_offset;
297
298         atomic_t in_flight;
299         blk_status_t bi_status;
300
301         struct completion *completion;
302
303         struct dm_bio_details bio_details;
304 };
305
306 struct journal_completion {
307         struct dm_integrity_c *ic;
308         atomic_t in_flight;
309         struct completion comp;
310 };
311
312 struct journal_io {
313         struct dm_integrity_range range;
314         struct journal_completion *comp;
315 };
316
317 struct bitmap_block_status {
318         struct work_struct work;
319         struct dm_integrity_c *ic;
320         unsigned idx;
321         unsigned long *bitmap;
322         struct bio_list bio_queue;
323         spinlock_t bio_queue_lock;
324
325 };
326
327 static struct kmem_cache *journal_io_cache;
328
329 #define JOURNAL_IO_MEMPOOL      32
330
331 #ifdef DEBUG_PRINT
332 #define DEBUG_print(x, ...)     printk(KERN_DEBUG x, ##__VA_ARGS__)
333 static void __DEBUG_bytes(__u8 *bytes, size_t len, const char *msg, ...)
334 {
335         va_list args;
336         va_start(args, msg);
337         vprintk(msg, args);
338         va_end(args);
339         if (len)
340                 pr_cont(":");
341         while (len) {
342                 pr_cont(" %02x", *bytes);
343                 bytes++;
344                 len--;
345         }
346         pr_cont("\n");
347 }
348 #define DEBUG_bytes(bytes, len, msg, ...)       __DEBUG_bytes(bytes, len, KERN_DEBUG msg, ##__VA_ARGS__)
349 #else
350 #define DEBUG_print(x, ...)                     do { } while (0)
351 #define DEBUG_bytes(bytes, len, msg, ...)       do { } while (0)
352 #endif
353
354 static void dm_integrity_prepare(struct request *rq)
355 {
356 }
357
358 static void dm_integrity_complete(struct request *rq, unsigned int nr_bytes)
359 {
360 }
361
362 /*
363  * DM Integrity profile, protection is performed layer above (dm-crypt)
364  */
365 static const struct blk_integrity_profile dm_integrity_profile = {
366         .name                   = "DM-DIF-EXT-TAG",
367         .generate_fn            = NULL,
368         .verify_fn              = NULL,
369         .prepare_fn             = dm_integrity_prepare,
370         .complete_fn            = dm_integrity_complete,
371 };
372
373 static void dm_integrity_map_continue(struct dm_integrity_io *dio, bool from_map);
374 static void integrity_bio_wait(struct work_struct *w);
375 static void dm_integrity_dtr(struct dm_target *ti);
376
377 static void dm_integrity_io_error(struct dm_integrity_c *ic, const char *msg, int err)
378 {
379         if (err == -EILSEQ)
380                 atomic64_inc(&ic->number_of_mismatches);
381         if (!cmpxchg(&ic->failed, 0, err))
382                 DMERR("Error on %s: %d", msg, err);
383 }
384
385 static int dm_integrity_failed(struct dm_integrity_c *ic)
386 {
387         return READ_ONCE(ic->failed);
388 }
389
390 static bool dm_integrity_disable_recalculate(struct dm_integrity_c *ic)
391 {
392         if ((ic->internal_hash_alg.key || ic->journal_mac_alg.key) &&
393             !ic->legacy_recalculate)
394                 return true;
395         return false;
396 }
397
398 static commit_id_t dm_integrity_commit_id(struct dm_integrity_c *ic, unsigned i,
399                                           unsigned j, unsigned char seq)
400 {
401         /*
402          * Xor the number with section and sector, so that if a piece of
403          * journal is written at wrong place, it is detected.
404          */
405         return ic->commit_ids[seq] ^ cpu_to_le64(((__u64)i << 32) ^ j);
406 }
407
408 static void get_area_and_offset(struct dm_integrity_c *ic, sector_t data_sector,
409                                 sector_t *area, sector_t *offset)
410 {
411         if (!ic->meta_dev) {
412                 __u8 log2_interleave_sectors = ic->sb->log2_interleave_sectors;
413                 *area = data_sector >> log2_interleave_sectors;
414                 *offset = (unsigned)data_sector & ((1U << log2_interleave_sectors) - 1);
415         } else {
416                 *area = 0;
417                 *offset = data_sector;
418         }
419 }
420
421 #define sector_to_block(ic, n)                                          \
422 do {                                                                    \
423         BUG_ON((n) & (unsigned)((ic)->sectors_per_block - 1));          \
424         (n) >>= (ic)->sb->log2_sectors_per_block;                       \
425 } while (0)
426
427 static __u64 get_metadata_sector_and_offset(struct dm_integrity_c *ic, sector_t area,
428                                             sector_t offset, unsigned *metadata_offset)
429 {
430         __u64 ms;
431         unsigned mo;
432
433         ms = area << ic->sb->log2_interleave_sectors;
434         if (likely(ic->log2_metadata_run >= 0))
435                 ms += area << ic->log2_metadata_run;
436         else
437                 ms += area * ic->metadata_run;
438         ms >>= ic->log2_buffer_sectors;
439
440         sector_to_block(ic, offset);
441
442         if (likely(ic->log2_tag_size >= 0)) {
443                 ms += offset >> (SECTOR_SHIFT + ic->log2_buffer_sectors - ic->log2_tag_size);
444                 mo = (offset << ic->log2_tag_size) & ((1U << SECTOR_SHIFT << ic->log2_buffer_sectors) - 1);
445         } else {
446                 ms += (__u64)offset * ic->tag_size >> (SECTOR_SHIFT + ic->log2_buffer_sectors);
447                 mo = (offset * ic->tag_size) & ((1U << SECTOR_SHIFT << ic->log2_buffer_sectors) - 1);
448         }
449         *metadata_offset = mo;
450         return ms;
451 }
452
453 static sector_t get_data_sector(struct dm_integrity_c *ic, sector_t area, sector_t offset)
454 {
455         sector_t result;
456
457         if (ic->meta_dev)
458                 return offset;
459
460         result = area << ic->sb->log2_interleave_sectors;
461         if (likely(ic->log2_metadata_run >= 0))
462                 result += (area + 1) << ic->log2_metadata_run;
463         else
464                 result += (area + 1) * ic->metadata_run;
465
466         result += (sector_t)ic->initial_sectors + offset;
467         result += ic->start;
468
469         return result;
470 }
471
472 static void wraparound_section(struct dm_integrity_c *ic, unsigned *sec_ptr)
473 {
474         if (unlikely(*sec_ptr >= ic->journal_sections))
475                 *sec_ptr -= ic->journal_sections;
476 }
477
478 static void sb_set_version(struct dm_integrity_c *ic)
479 {
480         if (ic->sb->flags & cpu_to_le32(SB_FLAG_FIXED_PADDING))
481                 ic->sb->version = SB_VERSION_4;
482         else if (ic->mode == 'B' || ic->sb->flags & cpu_to_le32(SB_FLAG_DIRTY_BITMAP))
483                 ic->sb->version = SB_VERSION_3;
484         else if (ic->meta_dev || ic->sb->flags & cpu_to_le32(SB_FLAG_RECALCULATING))
485                 ic->sb->version = SB_VERSION_2;
486         else
487                 ic->sb->version = SB_VERSION_1;
488 }
489
490 static int sync_rw_sb(struct dm_integrity_c *ic, int op, int op_flags)
491 {
492         struct dm_io_request io_req;
493         struct dm_io_region io_loc;
494
495         io_req.bi_op = op;
496         io_req.bi_op_flags = op_flags;
497         io_req.mem.type = DM_IO_KMEM;
498         io_req.mem.ptr.addr = ic->sb;
499         io_req.notify.fn = NULL;
500         io_req.client = ic->io;
501         io_loc.bdev = ic->meta_dev ? ic->meta_dev->bdev : ic->dev->bdev;
502         io_loc.sector = ic->start;
503         io_loc.count = SB_SECTORS;
504
505         if (op == REQ_OP_WRITE)
506                 sb_set_version(ic);
507
508         return dm_io(&io_req, 1, &io_loc, NULL);
509 }
510
511 #define BITMAP_OP_TEST_ALL_SET          0
512 #define BITMAP_OP_TEST_ALL_CLEAR        1
513 #define BITMAP_OP_SET                   2
514 #define BITMAP_OP_CLEAR                 3
515
516 static bool block_bitmap_op(struct dm_integrity_c *ic, struct page_list *bitmap,
517                             sector_t sector, sector_t n_sectors, int mode)
518 {
519         unsigned long bit, end_bit, this_end_bit, page, end_page;
520         unsigned long *data;
521
522         if (unlikely(((sector | n_sectors) & ((1 << ic->sb->log2_sectors_per_block) - 1)) != 0)) {
523                 DMCRIT("invalid bitmap access (%llx,%llx,%d,%d,%d)",
524                         sector,
525                         n_sectors,
526                         ic->sb->log2_sectors_per_block,
527                         ic->log2_blocks_per_bitmap_bit,
528                         mode);
529                 BUG();
530         }
531
532         if (unlikely(!n_sectors))
533                 return true;
534
535         bit = sector >> (ic->sb->log2_sectors_per_block + ic->log2_blocks_per_bitmap_bit);
536         end_bit = (sector + n_sectors - 1) >>
537                 (ic->sb->log2_sectors_per_block + ic->log2_blocks_per_bitmap_bit);
538
539         page = bit / (PAGE_SIZE * 8);
540         bit %= PAGE_SIZE * 8;
541
542         end_page = end_bit / (PAGE_SIZE * 8);
543         end_bit %= PAGE_SIZE * 8;
544
545 repeat:
546         if (page < end_page) {
547                 this_end_bit = PAGE_SIZE * 8 - 1;
548         } else {
549                 this_end_bit = end_bit;
550         }
551
552         data = lowmem_page_address(bitmap[page].page);
553
554         if (mode == BITMAP_OP_TEST_ALL_SET) {
555                 while (bit <= this_end_bit) {
556                         if (!(bit % BITS_PER_LONG) && this_end_bit >= bit + BITS_PER_LONG - 1) {
557                                 do {
558                                         if (data[bit / BITS_PER_LONG] != -1)
559                                                 return false;
560                                         bit += BITS_PER_LONG;
561                                 } while (this_end_bit >= bit + BITS_PER_LONG - 1);
562                                 continue;
563                         }
564                         if (!test_bit(bit, data))
565                                 return false;
566                         bit++;
567                 }
568         } else if (mode == BITMAP_OP_TEST_ALL_CLEAR) {
569                 while (bit <= this_end_bit) {
570                         if (!(bit % BITS_PER_LONG) && this_end_bit >= bit + BITS_PER_LONG - 1) {
571                                 do {
572                                         if (data[bit / BITS_PER_LONG] != 0)
573                                                 return false;
574                                         bit += BITS_PER_LONG;
575                                 } while (this_end_bit >= bit + BITS_PER_LONG - 1);
576                                 continue;
577                         }
578                         if (test_bit(bit, data))
579                                 return false;
580                         bit++;
581                 }
582         } else if (mode == BITMAP_OP_SET) {
583                 while (bit <= this_end_bit) {
584                         if (!(bit % BITS_PER_LONG) && this_end_bit >= bit + BITS_PER_LONG - 1) {
585                                 do {
586                                         data[bit / BITS_PER_LONG] = -1;
587                                         bit += BITS_PER_LONG;
588                                 } while (this_end_bit >= bit + BITS_PER_LONG - 1);
589                                 continue;
590                         }
591                         __set_bit(bit, data);
592                         bit++;
593                 }
594         } else if (mode == BITMAP_OP_CLEAR) {
595                 if (!bit && this_end_bit == PAGE_SIZE * 8 - 1)
596                         clear_page(data);
597                 else while (bit <= this_end_bit) {
598                         if (!(bit % BITS_PER_LONG) && this_end_bit >= bit + BITS_PER_LONG - 1) {
599                                 do {
600                                         data[bit / BITS_PER_LONG] = 0;
601                                         bit += BITS_PER_LONG;
602                                 } while (this_end_bit >= bit + BITS_PER_LONG - 1);
603                                 continue;
604                         }
605                         __clear_bit(bit, data);
606                         bit++;
607                 }
608         } else {
609                 BUG();
610         }
611
612         if (unlikely(page < end_page)) {
613                 bit = 0;
614                 page++;
615                 goto repeat;
616         }
617
618         return true;
619 }
620
621 static void block_bitmap_copy(struct dm_integrity_c *ic, struct page_list *dst, struct page_list *src)
622 {
623         unsigned n_bitmap_pages = DIV_ROUND_UP(ic->n_bitmap_blocks, PAGE_SIZE / BITMAP_BLOCK_SIZE);
624         unsigned i;
625
626         for (i = 0; i < n_bitmap_pages; i++) {
627                 unsigned long *dst_data = lowmem_page_address(dst[i].page);
628                 unsigned long *src_data = lowmem_page_address(src[i].page);
629                 copy_page(dst_data, src_data);
630         }
631 }
632
633 static struct bitmap_block_status *sector_to_bitmap_block(struct dm_integrity_c *ic, sector_t sector)
634 {
635         unsigned bit = sector >> (ic->sb->log2_sectors_per_block + ic->log2_blocks_per_bitmap_bit);
636         unsigned bitmap_block = bit / (BITMAP_BLOCK_SIZE * 8);
637
638         BUG_ON(bitmap_block >= ic->n_bitmap_blocks);
639         return &ic->bbs[bitmap_block];
640 }
641
642 static void access_journal_check(struct dm_integrity_c *ic, unsigned section, unsigned offset,
643                                  bool e, const char *function)
644 {
645 #if defined(CONFIG_DM_DEBUG) || defined(INTERNAL_VERIFY)
646         unsigned limit = e ? ic->journal_section_entries : ic->journal_section_sectors;
647
648         if (unlikely(section >= ic->journal_sections) ||
649             unlikely(offset >= limit)) {
650                 DMCRIT("%s: invalid access at (%u,%u), limit (%u,%u)",
651                        function, section, offset, ic->journal_sections, limit);
652                 BUG();
653         }
654 #endif
655 }
656
657 static void page_list_location(struct dm_integrity_c *ic, unsigned section, unsigned offset,
658                                unsigned *pl_index, unsigned *pl_offset)
659 {
660         unsigned sector;
661
662         access_journal_check(ic, section, offset, false, "page_list_location");
663
664         sector = section * ic->journal_section_sectors + offset;
665
666         *pl_index = sector >> (PAGE_SHIFT - SECTOR_SHIFT);
667         *pl_offset = (sector << SECTOR_SHIFT) & (PAGE_SIZE - 1);
668 }
669
670 static struct journal_sector *access_page_list(struct dm_integrity_c *ic, struct page_list *pl,
671                                                unsigned section, unsigned offset, unsigned *n_sectors)
672 {
673         unsigned pl_index, pl_offset;
674         char *va;
675
676         page_list_location(ic, section, offset, &pl_index, &pl_offset);
677
678         if (n_sectors)
679                 *n_sectors = (PAGE_SIZE - pl_offset) >> SECTOR_SHIFT;
680
681         va = lowmem_page_address(pl[pl_index].page);
682
683         return (struct journal_sector *)(va + pl_offset);
684 }
685
686 static struct journal_sector *access_journal(struct dm_integrity_c *ic, unsigned section, unsigned offset)
687 {
688         return access_page_list(ic, ic->journal, section, offset, NULL);
689 }
690
691 static struct journal_entry *access_journal_entry(struct dm_integrity_c *ic, unsigned section, unsigned n)
692 {
693         unsigned rel_sector, offset;
694         struct journal_sector *js;
695
696         access_journal_check(ic, section, n, true, "access_journal_entry");
697
698         rel_sector = n % JOURNAL_BLOCK_SECTORS;
699         offset = n / JOURNAL_BLOCK_SECTORS;
700
701         js = access_journal(ic, section, rel_sector);
702         return (struct journal_entry *)((char *)js + offset * ic->journal_entry_size);
703 }
704
705 static struct journal_sector *access_journal_data(struct dm_integrity_c *ic, unsigned section, unsigned n)
706 {
707         n <<= ic->sb->log2_sectors_per_block;
708
709         n += JOURNAL_BLOCK_SECTORS;
710
711         access_journal_check(ic, section, n, false, "access_journal_data");
712
713         return access_journal(ic, section, n);
714 }
715
716 static void section_mac(struct dm_integrity_c *ic, unsigned section, __u8 result[JOURNAL_MAC_SIZE])
717 {
718         SHASH_DESC_ON_STACK(desc, ic->journal_mac);
719         int r;
720         unsigned j, size;
721
722         desc->tfm = ic->journal_mac;
723
724         r = crypto_shash_init(desc);
725         if (unlikely(r)) {
726                 dm_integrity_io_error(ic, "crypto_shash_init", r);
727                 goto err;
728         }
729
730         for (j = 0; j < ic->journal_section_entries; j++) {
731                 struct journal_entry *je = access_journal_entry(ic, section, j);
732                 r = crypto_shash_update(desc, (__u8 *)&je->u.sector, sizeof je->u.sector);
733                 if (unlikely(r)) {
734                         dm_integrity_io_error(ic, "crypto_shash_update", r);
735                         goto err;
736                 }
737         }
738
739         size = crypto_shash_digestsize(ic->journal_mac);
740
741         if (likely(size <= JOURNAL_MAC_SIZE)) {
742                 r = crypto_shash_final(desc, result);
743                 if (unlikely(r)) {
744                         dm_integrity_io_error(ic, "crypto_shash_final", r);
745                         goto err;
746                 }
747                 memset(result + size, 0, JOURNAL_MAC_SIZE - size);
748         } else {
749                 __u8 digest[HASH_MAX_DIGESTSIZE];
750
751                 if (WARN_ON(size > sizeof(digest))) {
752                         dm_integrity_io_error(ic, "digest_size", -EINVAL);
753                         goto err;
754                 }
755                 r = crypto_shash_final(desc, digest);
756                 if (unlikely(r)) {
757                         dm_integrity_io_error(ic, "crypto_shash_final", r);
758                         goto err;
759                 }
760                 memcpy(result, digest, JOURNAL_MAC_SIZE);
761         }
762
763         return;
764 err:
765         memset(result, 0, JOURNAL_MAC_SIZE);
766 }
767
768 static void rw_section_mac(struct dm_integrity_c *ic, unsigned section, bool wr)
769 {
770         __u8 result[JOURNAL_MAC_SIZE];
771         unsigned j;
772
773         if (!ic->journal_mac)
774                 return;
775
776         section_mac(ic, section, result);
777
778         for (j = 0; j < JOURNAL_BLOCK_SECTORS; j++) {
779                 struct journal_sector *js = access_journal(ic, section, j);
780
781                 if (likely(wr))
782                         memcpy(&js->mac, result + (j * JOURNAL_MAC_PER_SECTOR), JOURNAL_MAC_PER_SECTOR);
783                 else {
784                         if (memcmp(&js->mac, result + (j * JOURNAL_MAC_PER_SECTOR), JOURNAL_MAC_PER_SECTOR))
785                                 dm_integrity_io_error(ic, "journal mac", -EILSEQ);
786                 }
787         }
788 }
789
790 static void complete_journal_op(void *context)
791 {
792         struct journal_completion *comp = context;
793         BUG_ON(!atomic_read(&comp->in_flight));
794         if (likely(atomic_dec_and_test(&comp->in_flight)))
795                 complete(&comp->comp);
796 }
797
798 static void xor_journal(struct dm_integrity_c *ic, bool encrypt, unsigned section,
799                         unsigned n_sections, struct journal_completion *comp)
800 {
801         struct async_submit_ctl submit;
802         size_t n_bytes = (size_t)(n_sections * ic->journal_section_sectors) << SECTOR_SHIFT;
803         unsigned pl_index, pl_offset, section_index;
804         struct page_list *source_pl, *target_pl;
805
806         if (likely(encrypt)) {
807                 source_pl = ic->journal;
808                 target_pl = ic->journal_io;
809         } else {
810                 source_pl = ic->journal_io;
811                 target_pl = ic->journal;
812         }
813
814         page_list_location(ic, section, 0, &pl_index, &pl_offset);
815
816         atomic_add(roundup(pl_offset + n_bytes, PAGE_SIZE) >> PAGE_SHIFT, &comp->in_flight);
817
818         init_async_submit(&submit, ASYNC_TX_XOR_ZERO_DST, NULL, complete_journal_op, comp, NULL);
819
820         section_index = pl_index;
821
822         do {
823                 size_t this_step;
824                 struct page *src_pages[2];
825                 struct page *dst_page;
826
827                 while (unlikely(pl_index == section_index)) {
828                         unsigned dummy;
829                         if (likely(encrypt))
830                                 rw_section_mac(ic, section, true);
831                         section++;
832                         n_sections--;
833                         if (!n_sections)
834                                 break;
835                         page_list_location(ic, section, 0, &section_index, &dummy);
836                 }
837
838                 this_step = min(n_bytes, (size_t)PAGE_SIZE - pl_offset);
839                 dst_page = target_pl[pl_index].page;
840                 src_pages[0] = source_pl[pl_index].page;
841                 src_pages[1] = ic->journal_xor[pl_index].page;
842
843                 async_xor(dst_page, src_pages, pl_offset, 2, this_step, &submit);
844
845                 pl_index++;
846                 pl_offset = 0;
847                 n_bytes -= this_step;
848         } while (n_bytes);
849
850         BUG_ON(n_sections);
851
852         async_tx_issue_pending_all();
853 }
854
855 static void complete_journal_encrypt(struct crypto_async_request *req, int err)
856 {
857         struct journal_completion *comp = req->data;
858         if (unlikely(err)) {
859                 if (likely(err == -EINPROGRESS)) {
860                         complete(&comp->ic->crypto_backoff);
861                         return;
862                 }
863                 dm_integrity_io_error(comp->ic, "asynchronous encrypt", err);
864         }
865         complete_journal_op(comp);
866 }
867
868 static bool do_crypt(bool encrypt, struct skcipher_request *req, struct journal_completion *comp)
869 {
870         int r;
871         skcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
872                                       complete_journal_encrypt, comp);
873         if (likely(encrypt))
874                 r = crypto_skcipher_encrypt(req);
875         else
876                 r = crypto_skcipher_decrypt(req);
877         if (likely(!r))
878                 return false;
879         if (likely(r == -EINPROGRESS))
880                 return true;
881         if (likely(r == -EBUSY)) {
882                 wait_for_completion(&comp->ic->crypto_backoff);
883                 reinit_completion(&comp->ic->crypto_backoff);
884                 return true;
885         }
886         dm_integrity_io_error(comp->ic, "encrypt", r);
887         return false;
888 }
889
890 static void crypt_journal(struct dm_integrity_c *ic, bool encrypt, unsigned section,
891                           unsigned n_sections, struct journal_completion *comp)
892 {
893         struct scatterlist **source_sg;
894         struct scatterlist **target_sg;
895
896         atomic_add(2, &comp->in_flight);
897
898         if (likely(encrypt)) {
899                 source_sg = ic->journal_scatterlist;
900                 target_sg = ic->journal_io_scatterlist;
901         } else {
902                 source_sg = ic->journal_io_scatterlist;
903                 target_sg = ic->journal_scatterlist;
904         }
905
906         do {
907                 struct skcipher_request *req;
908                 unsigned ivsize;
909                 char *iv;
910
911                 if (likely(encrypt))
912                         rw_section_mac(ic, section, true);
913
914                 req = ic->sk_requests[section];
915                 ivsize = crypto_skcipher_ivsize(ic->journal_crypt);
916                 iv = req->iv;
917
918                 memcpy(iv, iv + ivsize, ivsize);
919
920                 req->src = source_sg[section];
921                 req->dst = target_sg[section];
922
923                 if (unlikely(do_crypt(encrypt, req, comp)))
924                         atomic_inc(&comp->in_flight);
925
926                 section++;
927                 n_sections--;
928         } while (n_sections);
929
930         atomic_dec(&comp->in_flight);
931         complete_journal_op(comp);
932 }
933
934 static void encrypt_journal(struct dm_integrity_c *ic, bool encrypt, unsigned section,
935                             unsigned n_sections, struct journal_completion *comp)
936 {
937         if (ic->journal_xor)
938                 return xor_journal(ic, encrypt, section, n_sections, comp);
939         else
940                 return crypt_journal(ic, encrypt, section, n_sections, comp);
941 }
942
943 static void complete_journal_io(unsigned long error, void *context)
944 {
945         struct journal_completion *comp = context;
946         if (unlikely(error != 0))
947                 dm_integrity_io_error(comp->ic, "writing journal", -EIO);
948         complete_journal_op(comp);
949 }
950
951 static void rw_journal_sectors(struct dm_integrity_c *ic, int op, int op_flags,
952                                unsigned sector, unsigned n_sectors, struct journal_completion *comp)
953 {
954         struct dm_io_request io_req;
955         struct dm_io_region io_loc;
956         unsigned pl_index, pl_offset;
957         int r;
958
959         if (unlikely(dm_integrity_failed(ic))) {
960                 if (comp)
961                         complete_journal_io(-1UL, comp);
962                 return;
963         }
964
965         pl_index = sector >> (PAGE_SHIFT - SECTOR_SHIFT);
966         pl_offset = (sector << SECTOR_SHIFT) & (PAGE_SIZE - 1);
967
968         io_req.bi_op = op;
969         io_req.bi_op_flags = op_flags;
970         io_req.mem.type = DM_IO_PAGE_LIST;
971         if (ic->journal_io)
972                 io_req.mem.ptr.pl = &ic->journal_io[pl_index];
973         else
974                 io_req.mem.ptr.pl = &ic->journal[pl_index];
975         io_req.mem.offset = pl_offset;
976         if (likely(comp != NULL)) {
977                 io_req.notify.fn = complete_journal_io;
978                 io_req.notify.context = comp;
979         } else {
980                 io_req.notify.fn = NULL;
981         }
982         io_req.client = ic->io;
983         io_loc.bdev = ic->meta_dev ? ic->meta_dev->bdev : ic->dev->bdev;
984         io_loc.sector = ic->start + SB_SECTORS + sector;
985         io_loc.count = n_sectors;
986
987         r = dm_io(&io_req, 1, &io_loc, NULL);
988         if (unlikely(r)) {
989                 dm_integrity_io_error(ic, op == REQ_OP_READ ? "reading journal" : "writing journal", r);
990                 if (comp) {
991                         WARN_ONCE(1, "asynchronous dm_io failed: %d", r);
992                         complete_journal_io(-1UL, comp);
993                 }
994         }
995 }
996
997 static void rw_journal(struct dm_integrity_c *ic, int op, int op_flags, unsigned section,
998                        unsigned n_sections, struct journal_completion *comp)
999 {
1000         unsigned sector, n_sectors;
1001
1002         sector = section * ic->journal_section_sectors;
1003         n_sectors = n_sections * ic->journal_section_sectors;
1004
1005         rw_journal_sectors(ic, op, op_flags, sector, n_sectors, comp);
1006 }
1007
1008 static void write_journal(struct dm_integrity_c *ic, unsigned commit_start, unsigned commit_sections)
1009 {
1010         struct journal_completion io_comp;
1011         struct journal_completion crypt_comp_1;
1012         struct journal_completion crypt_comp_2;
1013         unsigned i;
1014
1015         io_comp.ic = ic;
1016         init_completion(&io_comp.comp);
1017
1018         if (commit_start + commit_sections <= ic->journal_sections) {
1019                 io_comp.in_flight = (atomic_t)ATOMIC_INIT(1);
1020                 if (ic->journal_io) {
1021                         crypt_comp_1.ic = ic;
1022                         init_completion(&crypt_comp_1.comp);
1023                         crypt_comp_1.in_flight = (atomic_t)ATOMIC_INIT(0);
1024                         encrypt_journal(ic, true, commit_start, commit_sections, &crypt_comp_1);
1025                         wait_for_completion_io(&crypt_comp_1.comp);
1026                 } else {
1027                         for (i = 0; i < commit_sections; i++)
1028                                 rw_section_mac(ic, commit_start + i, true);
1029                 }
1030                 rw_journal(ic, REQ_OP_WRITE, REQ_FUA | REQ_SYNC, commit_start,
1031                            commit_sections, &io_comp);
1032         } else {
1033                 unsigned to_end;
1034                 io_comp.in_flight = (atomic_t)ATOMIC_INIT(2);
1035                 to_end = ic->journal_sections - commit_start;
1036                 if (ic->journal_io) {
1037                         crypt_comp_1.ic = ic;
1038                         init_completion(&crypt_comp_1.comp);
1039                         crypt_comp_1.in_flight = (atomic_t)ATOMIC_INIT(0);
1040                         encrypt_journal(ic, true, commit_start, to_end, &crypt_comp_1);
1041                         if (try_wait_for_completion(&crypt_comp_1.comp)) {
1042                                 rw_journal(ic, REQ_OP_WRITE, REQ_FUA, commit_start, to_end, &io_comp);
1043                                 reinit_completion(&crypt_comp_1.comp);
1044                                 crypt_comp_1.in_flight = (atomic_t)ATOMIC_INIT(0);
1045                                 encrypt_journal(ic, true, 0, commit_sections - to_end, &crypt_comp_1);
1046                                 wait_for_completion_io(&crypt_comp_1.comp);
1047                         } else {
1048                                 crypt_comp_2.ic = ic;
1049                                 init_completion(&crypt_comp_2.comp);
1050                                 crypt_comp_2.in_flight = (atomic_t)ATOMIC_INIT(0);
1051                                 encrypt_journal(ic, true, 0, commit_sections - to_end, &crypt_comp_2);
1052                                 wait_for_completion_io(&crypt_comp_1.comp);
1053                                 rw_journal(ic, REQ_OP_WRITE, REQ_FUA, commit_start, to_end, &io_comp);
1054                                 wait_for_completion_io(&crypt_comp_2.comp);
1055                         }
1056                 } else {
1057                         for (i = 0; i < to_end; i++)
1058                                 rw_section_mac(ic, commit_start + i, true);
1059                         rw_journal(ic, REQ_OP_WRITE, REQ_FUA, commit_start, to_end, &io_comp);
1060                         for (i = 0; i < commit_sections - to_end; i++)
1061                                 rw_section_mac(ic, i, true);
1062                 }
1063                 rw_journal(ic, REQ_OP_WRITE, REQ_FUA, 0, commit_sections - to_end, &io_comp);
1064         }
1065
1066         wait_for_completion_io(&io_comp.comp);
1067 }
1068
1069 static void copy_from_journal(struct dm_integrity_c *ic, unsigned section, unsigned offset,
1070                               unsigned n_sectors, sector_t target, io_notify_fn fn, void *data)
1071 {
1072         struct dm_io_request io_req;
1073         struct dm_io_region io_loc;
1074         int r;
1075         unsigned sector, pl_index, pl_offset;
1076
1077         BUG_ON((target | n_sectors | offset) & (unsigned)(ic->sectors_per_block - 1));
1078
1079         if (unlikely(dm_integrity_failed(ic))) {
1080                 fn(-1UL, data);
1081                 return;
1082         }
1083
1084         sector = section * ic->journal_section_sectors + JOURNAL_BLOCK_SECTORS + offset;
1085
1086         pl_index = sector >> (PAGE_SHIFT - SECTOR_SHIFT);
1087         pl_offset = (sector << SECTOR_SHIFT) & (PAGE_SIZE - 1);
1088
1089         io_req.bi_op = REQ_OP_WRITE;
1090         io_req.bi_op_flags = 0;
1091         io_req.mem.type = DM_IO_PAGE_LIST;
1092         io_req.mem.ptr.pl = &ic->journal[pl_index];
1093         io_req.mem.offset = pl_offset;
1094         io_req.notify.fn = fn;
1095         io_req.notify.context = data;
1096         io_req.client = ic->io;
1097         io_loc.bdev = ic->dev->bdev;
1098         io_loc.sector = target;
1099         io_loc.count = n_sectors;
1100
1101         r = dm_io(&io_req, 1, &io_loc, NULL);
1102         if (unlikely(r)) {
1103                 WARN_ONCE(1, "asynchronous dm_io failed: %d", r);
1104                 fn(-1UL, data);
1105         }
1106 }
1107
1108 static bool ranges_overlap(struct dm_integrity_range *range1, struct dm_integrity_range *range2)
1109 {
1110         return range1->logical_sector < range2->logical_sector + range2->n_sectors &&
1111                range1->logical_sector + range1->n_sectors > range2->logical_sector;
1112 }
1113
1114 static bool add_new_range(struct dm_integrity_c *ic, struct dm_integrity_range *new_range, bool check_waiting)
1115 {
1116         struct rb_node **n = &ic->in_progress.rb_node;
1117         struct rb_node *parent;
1118
1119         BUG_ON((new_range->logical_sector | new_range->n_sectors) & (unsigned)(ic->sectors_per_block - 1));
1120
1121         if (likely(check_waiting)) {
1122                 struct dm_integrity_range *range;
1123                 list_for_each_entry(range, &ic->wait_list, wait_entry) {
1124                         if (unlikely(ranges_overlap(range, new_range)))
1125                                 return false;
1126                 }
1127         }
1128
1129         parent = NULL;
1130
1131         while (*n) {
1132                 struct dm_integrity_range *range = container_of(*n, struct dm_integrity_range, node);
1133
1134                 parent = *n;
1135                 if (new_range->logical_sector + new_range->n_sectors <= range->logical_sector) {
1136                         n = &range->node.rb_left;
1137                 } else if (new_range->logical_sector >= range->logical_sector + range->n_sectors) {
1138                         n = &range->node.rb_right;
1139                 } else {
1140                         return false;
1141                 }
1142         }
1143
1144         rb_link_node(&new_range->node, parent, n);
1145         rb_insert_color(&new_range->node, &ic->in_progress);
1146
1147         return true;
1148 }
1149
1150 static void remove_range_unlocked(struct dm_integrity_c *ic, struct dm_integrity_range *range)
1151 {
1152         rb_erase(&range->node, &ic->in_progress);
1153         while (unlikely(!list_empty(&ic->wait_list))) {
1154                 struct dm_integrity_range *last_range =
1155                         list_first_entry(&ic->wait_list, struct dm_integrity_range, wait_entry);
1156                 struct task_struct *last_range_task;
1157                 last_range_task = last_range->task;
1158                 list_del(&last_range->wait_entry);
1159                 if (!add_new_range(ic, last_range, false)) {
1160                         last_range->task = last_range_task;
1161                         list_add(&last_range->wait_entry, &ic->wait_list);
1162                         break;
1163                 }
1164                 last_range->waiting = false;
1165                 wake_up_process(last_range_task);
1166         }
1167 }
1168
1169 static void remove_range(struct dm_integrity_c *ic, struct dm_integrity_range *range)
1170 {
1171         unsigned long flags;
1172
1173         spin_lock_irqsave(&ic->endio_wait.lock, flags);
1174         remove_range_unlocked(ic, range);
1175         spin_unlock_irqrestore(&ic->endio_wait.lock, flags);
1176 }
1177
1178 static void wait_and_add_new_range(struct dm_integrity_c *ic, struct dm_integrity_range *new_range)
1179 {
1180         new_range->waiting = true;
1181         list_add_tail(&new_range->wait_entry, &ic->wait_list);
1182         new_range->task = current;
1183         do {
1184                 __set_current_state(TASK_UNINTERRUPTIBLE);
1185                 spin_unlock_irq(&ic->endio_wait.lock);
1186                 io_schedule();
1187                 spin_lock_irq(&ic->endio_wait.lock);
1188         } while (unlikely(new_range->waiting));
1189 }
1190
1191 static void add_new_range_and_wait(struct dm_integrity_c *ic, struct dm_integrity_range *new_range)
1192 {
1193         if (unlikely(!add_new_range(ic, new_range, true)))
1194                 wait_and_add_new_range(ic, new_range);
1195 }
1196
1197 static void init_journal_node(struct journal_node *node)
1198 {
1199         RB_CLEAR_NODE(&node->node);
1200         node->sector = (sector_t)-1;
1201 }
1202
1203 static void add_journal_node(struct dm_integrity_c *ic, struct journal_node *node, sector_t sector)
1204 {
1205         struct rb_node **link;
1206         struct rb_node *parent;
1207
1208         node->sector = sector;
1209         BUG_ON(!RB_EMPTY_NODE(&node->node));
1210
1211         link = &ic->journal_tree_root.rb_node;
1212         parent = NULL;
1213
1214         while (*link) {
1215                 struct journal_node *j;
1216                 parent = *link;
1217                 j = container_of(parent, struct journal_node, node);
1218                 if (sector < j->sector)
1219                         link = &j->node.rb_left;
1220                 else
1221                         link = &j->node.rb_right;
1222         }
1223
1224         rb_link_node(&node->node, parent, link);
1225         rb_insert_color(&node->node, &ic->journal_tree_root);
1226 }
1227
1228 static void remove_journal_node(struct dm_integrity_c *ic, struct journal_node *node)
1229 {
1230         BUG_ON(RB_EMPTY_NODE(&node->node));
1231         rb_erase(&node->node, &ic->journal_tree_root);
1232         init_journal_node(node);
1233 }
1234
1235 #define NOT_FOUND       (-1U)
1236
1237 static unsigned find_journal_node(struct dm_integrity_c *ic, sector_t sector, sector_t *next_sector)
1238 {
1239         struct rb_node *n = ic->journal_tree_root.rb_node;
1240         unsigned found = NOT_FOUND;
1241         *next_sector = (sector_t)-1;
1242         while (n) {
1243                 struct journal_node *j = container_of(n, struct journal_node, node);
1244                 if (sector == j->sector) {
1245                         found = j - ic->journal_tree;
1246                 }
1247                 if (sector < j->sector) {
1248                         *next_sector = j->sector;
1249                         n = j->node.rb_left;
1250                 } else {
1251                         n = j->node.rb_right;
1252                 }
1253         }
1254
1255         return found;
1256 }
1257
1258 static bool test_journal_node(struct dm_integrity_c *ic, unsigned pos, sector_t sector)
1259 {
1260         struct journal_node *node, *next_node;
1261         struct rb_node *next;
1262
1263         if (unlikely(pos >= ic->journal_entries))
1264                 return false;
1265         node = &ic->journal_tree[pos];
1266         if (unlikely(RB_EMPTY_NODE(&node->node)))
1267                 return false;
1268         if (unlikely(node->sector != sector))
1269                 return false;
1270
1271         next = rb_next(&node->node);
1272         if (unlikely(!next))
1273                 return true;
1274
1275         next_node = container_of(next, struct journal_node, node);
1276         return next_node->sector != sector;
1277 }
1278
1279 static bool find_newer_committed_node(struct dm_integrity_c *ic, struct journal_node *node)
1280 {
1281         struct rb_node *next;
1282         struct journal_node *next_node;
1283         unsigned next_section;
1284
1285         BUG_ON(RB_EMPTY_NODE(&node->node));
1286
1287         next = rb_next(&node->node);
1288         if (unlikely(!next))
1289                 return false;
1290
1291         next_node = container_of(next, struct journal_node, node);
1292
1293         if (next_node->sector != node->sector)
1294                 return false;
1295
1296         next_section = (unsigned)(next_node - ic->journal_tree) / ic->journal_section_entries;
1297         if (next_section >= ic->committed_section &&
1298             next_section < ic->committed_section + ic->n_committed_sections)
1299                 return true;
1300         if (next_section + ic->journal_sections < ic->committed_section + ic->n_committed_sections)
1301                 return true;
1302
1303         return false;
1304 }
1305
1306 #define TAG_READ        0
1307 #define TAG_WRITE       1
1308 #define TAG_CMP         2
1309
1310 static int dm_integrity_rw_tag(struct dm_integrity_c *ic, unsigned char *tag, sector_t *metadata_block,
1311                                unsigned *metadata_offset, unsigned total_size, int op)
1312 {
1313 #define MAY_BE_FILLER           1
1314 #define MAY_BE_HASH             2
1315         unsigned hash_offset = 0;
1316         unsigned may_be = MAY_BE_HASH | (ic->discard ? MAY_BE_FILLER : 0);
1317
1318         do {
1319                 unsigned char *data, *dp;
1320                 struct dm_buffer *b;
1321                 unsigned to_copy;
1322                 int r;
1323
1324                 r = dm_integrity_failed(ic);
1325                 if (unlikely(r))
1326                         return r;
1327
1328                 data = dm_bufio_read(ic->bufio, *metadata_block, &b);
1329                 if (IS_ERR(data))
1330                         return PTR_ERR(data);
1331
1332                 to_copy = min((1U << SECTOR_SHIFT << ic->log2_buffer_sectors) - *metadata_offset, total_size);
1333                 dp = data + *metadata_offset;
1334                 if (op == TAG_READ) {
1335                         memcpy(tag, dp, to_copy);
1336                 } else if (op == TAG_WRITE) {
1337                         memcpy(dp, tag, to_copy);
1338                         dm_bufio_mark_partial_buffer_dirty(b, *metadata_offset, *metadata_offset + to_copy);
1339                 } else {
1340                         /* e.g.: op == TAG_CMP */
1341
1342                         if (likely(is_power_of_2(ic->tag_size))) {
1343                                 if (unlikely(memcmp(dp, tag, to_copy)))
1344                                         if (unlikely(!ic->discard) ||
1345                                             unlikely(memchr_inv(dp, DISCARD_FILLER, to_copy) != NULL)) {
1346                                                 goto thorough_test;
1347                                 }
1348                         } else {
1349                                 unsigned i, ts;
1350 thorough_test:
1351                                 ts = total_size;
1352
1353                                 for (i = 0; i < to_copy; i++, ts--) {
1354                                         if (unlikely(dp[i] != tag[i]))
1355                                                 may_be &= ~MAY_BE_HASH;
1356                                         if (likely(dp[i] != DISCARD_FILLER))
1357                                                 may_be &= ~MAY_BE_FILLER;
1358                                         hash_offset++;
1359                                         if (unlikely(hash_offset == ic->tag_size)) {
1360                                                 if (unlikely(!may_be)) {
1361                                                         dm_bufio_release(b);
1362                                                         return ts;
1363                                                 }
1364                                                 hash_offset = 0;
1365                                                 may_be = MAY_BE_HASH | (ic->discard ? MAY_BE_FILLER : 0);
1366                                         }
1367                                 }
1368                         }
1369                 }
1370                 dm_bufio_release(b);
1371
1372                 tag += to_copy;
1373                 *metadata_offset += to_copy;
1374                 if (unlikely(*metadata_offset == 1U << SECTOR_SHIFT << ic->log2_buffer_sectors)) {
1375                         (*metadata_block)++;
1376                         *metadata_offset = 0;
1377                 }
1378
1379                 if (unlikely(!is_power_of_2(ic->tag_size))) {
1380                         hash_offset = (hash_offset + to_copy) % ic->tag_size;
1381                 }
1382
1383                 total_size -= to_copy;
1384         } while (unlikely(total_size));
1385
1386         return 0;
1387 #undef MAY_BE_FILLER
1388 #undef MAY_BE_HASH
1389 }
1390
1391 struct flush_request {
1392         struct dm_io_request io_req;
1393         struct dm_io_region io_reg;
1394         struct dm_integrity_c *ic;
1395         struct completion comp;
1396 };
1397
1398 static void flush_notify(unsigned long error, void *fr_)
1399 {
1400         struct flush_request *fr = fr_;
1401         if (unlikely(error != 0))
1402                 dm_integrity_io_error(fr->ic, "flusing disk cache", -EIO);
1403         complete(&fr->comp);
1404 }
1405
1406 static void dm_integrity_flush_buffers(struct dm_integrity_c *ic, bool flush_data)
1407 {
1408         int r;
1409
1410         struct flush_request fr;
1411
1412         if (!ic->meta_dev)
1413                 flush_data = false;
1414         if (flush_data) {
1415                 fr.io_req.bi_op = REQ_OP_WRITE,
1416                 fr.io_req.bi_op_flags = REQ_PREFLUSH | REQ_SYNC,
1417                 fr.io_req.mem.type = DM_IO_KMEM,
1418                 fr.io_req.mem.ptr.addr = NULL,
1419                 fr.io_req.notify.fn = flush_notify,
1420                 fr.io_req.notify.context = &fr;
1421                 fr.io_req.client = dm_bufio_get_dm_io_client(ic->bufio),
1422                 fr.io_reg.bdev = ic->dev->bdev,
1423                 fr.io_reg.sector = 0,
1424                 fr.io_reg.count = 0,
1425                 fr.ic = ic;
1426                 init_completion(&fr.comp);
1427                 r = dm_io(&fr.io_req, 1, &fr.io_reg, NULL);
1428                 BUG_ON(r);
1429         }
1430
1431         r = dm_bufio_write_dirty_buffers(ic->bufio);
1432         if (unlikely(r))
1433                 dm_integrity_io_error(ic, "writing tags", r);
1434
1435         if (flush_data)
1436                 wait_for_completion(&fr.comp);
1437 }
1438
1439 static void sleep_on_endio_wait(struct dm_integrity_c *ic)
1440 {
1441         DECLARE_WAITQUEUE(wait, current);
1442         __add_wait_queue(&ic->endio_wait, &wait);
1443         __set_current_state(TASK_UNINTERRUPTIBLE);
1444         spin_unlock_irq(&ic->endio_wait.lock);
1445         io_schedule();
1446         spin_lock_irq(&ic->endio_wait.lock);
1447         __remove_wait_queue(&ic->endio_wait, &wait);
1448 }
1449
1450 static void autocommit_fn(struct timer_list *t)
1451 {
1452         struct dm_integrity_c *ic = from_timer(ic, t, autocommit_timer);
1453
1454         if (likely(!dm_integrity_failed(ic)))
1455                 queue_work(ic->commit_wq, &ic->commit_work);
1456 }
1457
1458 static void schedule_autocommit(struct dm_integrity_c *ic)
1459 {
1460         if (!timer_pending(&ic->autocommit_timer))
1461                 mod_timer(&ic->autocommit_timer, jiffies + ic->autocommit_jiffies);
1462 }
1463
1464 static void submit_flush_bio(struct dm_integrity_c *ic, struct dm_integrity_io *dio)
1465 {
1466         struct bio *bio;
1467         unsigned long flags;
1468
1469         spin_lock_irqsave(&ic->endio_wait.lock, flags);
1470         bio = dm_bio_from_per_bio_data(dio, sizeof(struct dm_integrity_io));
1471         bio_list_add(&ic->flush_bio_list, bio);
1472         spin_unlock_irqrestore(&ic->endio_wait.lock, flags);
1473
1474         queue_work(ic->commit_wq, &ic->commit_work);
1475 }
1476
1477 static void do_endio(struct dm_integrity_c *ic, struct bio *bio)
1478 {
1479         int r = dm_integrity_failed(ic);
1480         if (unlikely(r) && !bio->bi_status)
1481                 bio->bi_status = errno_to_blk_status(r);
1482         if (unlikely(ic->synchronous_mode) && bio_op(bio) == REQ_OP_WRITE) {
1483                 unsigned long flags;
1484                 spin_lock_irqsave(&ic->endio_wait.lock, flags);
1485                 bio_list_add(&ic->synchronous_bios, bio);
1486                 queue_delayed_work(ic->commit_wq, &ic->bitmap_flush_work, 0);
1487                 spin_unlock_irqrestore(&ic->endio_wait.lock, flags);
1488                 return;
1489         }
1490         bio_endio(bio);
1491 }
1492
1493 static void do_endio_flush(struct dm_integrity_c *ic, struct dm_integrity_io *dio)
1494 {
1495         struct bio *bio = dm_bio_from_per_bio_data(dio, sizeof(struct dm_integrity_io));
1496
1497         if (unlikely(dio->fua) && likely(!bio->bi_status) && likely(!dm_integrity_failed(ic)))
1498                 submit_flush_bio(ic, dio);
1499         else
1500                 do_endio(ic, bio);
1501 }
1502
1503 static void dec_in_flight(struct dm_integrity_io *dio)
1504 {
1505         if (atomic_dec_and_test(&dio->in_flight)) {
1506                 struct dm_integrity_c *ic = dio->ic;
1507                 struct bio *bio;
1508
1509                 remove_range(ic, &dio->range);
1510
1511                 if (dio->op == REQ_OP_WRITE || unlikely(dio->op == REQ_OP_DISCARD))
1512                         schedule_autocommit(ic);
1513
1514                 bio = dm_bio_from_per_bio_data(dio, sizeof(struct dm_integrity_io));
1515
1516                 if (unlikely(dio->bi_status) && !bio->bi_status)
1517                         bio->bi_status = dio->bi_status;
1518                 if (likely(!bio->bi_status) && unlikely(bio_sectors(bio) != dio->range.n_sectors)) {
1519                         dio->range.logical_sector += dio->range.n_sectors;
1520                         bio_advance(bio, dio->range.n_sectors << SECTOR_SHIFT);
1521                         INIT_WORK(&dio->work, integrity_bio_wait);
1522                         queue_work(ic->offload_wq, &dio->work);
1523                         return;
1524                 }
1525                 do_endio_flush(ic, dio);
1526         }
1527 }
1528
1529 static void integrity_end_io(struct bio *bio)
1530 {
1531         struct dm_integrity_io *dio = dm_per_bio_data(bio, sizeof(struct dm_integrity_io));
1532
1533         dm_bio_restore(&dio->bio_details, bio);
1534         if (bio->bi_integrity)
1535                 bio->bi_opf |= REQ_INTEGRITY;
1536
1537         if (dio->completion)
1538                 complete(dio->completion);
1539
1540         dec_in_flight(dio);
1541 }
1542
1543 static void integrity_sector_checksum(struct dm_integrity_c *ic, sector_t sector,
1544                                       const char *data, char *result)
1545 {
1546         __u64 sector_le = cpu_to_le64(sector);
1547         SHASH_DESC_ON_STACK(req, ic->internal_hash);
1548         int r;
1549         unsigned digest_size;
1550
1551         req->tfm = ic->internal_hash;
1552
1553         r = crypto_shash_init(req);
1554         if (unlikely(r < 0)) {
1555                 dm_integrity_io_error(ic, "crypto_shash_init", r);
1556                 goto failed;
1557         }
1558
1559         r = crypto_shash_update(req, (const __u8 *)&sector_le, sizeof sector_le);
1560         if (unlikely(r < 0)) {
1561                 dm_integrity_io_error(ic, "crypto_shash_update", r);
1562                 goto failed;
1563         }
1564
1565         r = crypto_shash_update(req, data, ic->sectors_per_block << SECTOR_SHIFT);
1566         if (unlikely(r < 0)) {
1567                 dm_integrity_io_error(ic, "crypto_shash_update", r);
1568                 goto failed;
1569         }
1570
1571         r = crypto_shash_final(req, result);
1572         if (unlikely(r < 0)) {
1573                 dm_integrity_io_error(ic, "crypto_shash_final", r);
1574                 goto failed;
1575         }
1576
1577         digest_size = crypto_shash_digestsize(ic->internal_hash);
1578         if (unlikely(digest_size < ic->tag_size))
1579                 memset(result + digest_size, 0, ic->tag_size - digest_size);
1580
1581         return;
1582
1583 failed:
1584         /* this shouldn't happen anyway, the hash functions have no reason to fail */
1585         get_random_bytes(result, ic->tag_size);
1586 }
1587
1588 static void integrity_metadata(struct work_struct *w)
1589 {
1590         struct dm_integrity_io *dio = container_of(w, struct dm_integrity_io, work);
1591         struct dm_integrity_c *ic = dio->ic;
1592
1593         int r;
1594
1595         if (ic->internal_hash) {
1596                 struct bvec_iter iter;
1597                 struct bio_vec bv;
1598                 unsigned digest_size = crypto_shash_digestsize(ic->internal_hash);
1599                 struct bio *bio = dm_bio_from_per_bio_data(dio, sizeof(struct dm_integrity_io));
1600                 char *checksums;
1601                 unsigned extra_space = unlikely(digest_size > ic->tag_size) ? digest_size - ic->tag_size : 0;
1602                 char checksums_onstack[max((size_t)HASH_MAX_DIGESTSIZE, MAX_TAG_SIZE)];
1603                 sector_t sector;
1604                 unsigned sectors_to_process;
1605
1606                 if (unlikely(ic->mode == 'R'))
1607                         goto skip_io;
1608
1609                 if (likely(dio->op != REQ_OP_DISCARD))
1610                         checksums = kmalloc((PAGE_SIZE >> SECTOR_SHIFT >> ic->sb->log2_sectors_per_block) * ic->tag_size + extra_space,
1611                                             GFP_NOIO | __GFP_NORETRY | __GFP_NOWARN);
1612                 else
1613                         checksums = kmalloc(PAGE_SIZE, GFP_NOIO | __GFP_NORETRY | __GFP_NOWARN);
1614                 if (!checksums) {
1615                         checksums = checksums_onstack;
1616                         if (WARN_ON(extra_space &&
1617                                     digest_size > sizeof(checksums_onstack))) {
1618                                 r = -EINVAL;
1619                                 goto error;
1620                         }
1621                 }
1622
1623                 if (unlikely(dio->op == REQ_OP_DISCARD)) {
1624                         sector_t bi_sector = dio->bio_details.bi_iter.bi_sector;
1625                         unsigned bi_size = dio->bio_details.bi_iter.bi_size;
1626                         unsigned max_size = likely(checksums != checksums_onstack) ? PAGE_SIZE : HASH_MAX_DIGESTSIZE;
1627                         unsigned max_blocks = max_size / ic->tag_size;
1628                         memset(checksums, DISCARD_FILLER, max_size);
1629
1630                         while (bi_size) {
1631                                 unsigned this_step_blocks = bi_size >> (SECTOR_SHIFT + ic->sb->log2_sectors_per_block);
1632                                 this_step_blocks = min(this_step_blocks, max_blocks);
1633                                 r = dm_integrity_rw_tag(ic, checksums, &dio->metadata_block, &dio->metadata_offset,
1634                                                         this_step_blocks * ic->tag_size, TAG_WRITE);
1635                                 if (unlikely(r)) {
1636                                         if (likely(checksums != checksums_onstack))
1637                                                 kfree(checksums);
1638                                         goto error;
1639                                 }
1640
1641                                 /*if (bi_size < this_step_blocks << (SECTOR_SHIFT + ic->sb->log2_sectors_per_block)) {
1642                                         printk("BUGG: bi_sector: %llx, bi_size: %u\n", bi_sector, bi_size);
1643                                         printk("BUGG: this_step_blocks: %u\n", this_step_blocks);
1644                                         BUG();
1645                                 }*/
1646                                 bi_size -= this_step_blocks << (SECTOR_SHIFT + ic->sb->log2_sectors_per_block);
1647                                 bi_sector += this_step_blocks << ic->sb->log2_sectors_per_block;
1648                         }
1649
1650                         if (likely(checksums != checksums_onstack))
1651                                 kfree(checksums);
1652                         goto skip_io;
1653                 }
1654
1655                 sector = dio->range.logical_sector;
1656                 sectors_to_process = dio->range.n_sectors;
1657
1658                 __bio_for_each_segment(bv, bio, iter, dio->bio_details.bi_iter) {
1659                         unsigned pos;
1660                         char *mem, *checksums_ptr;
1661
1662 again:
1663                         mem = (char *)kmap_atomic(bv.bv_page) + bv.bv_offset;
1664                         pos = 0;
1665                         checksums_ptr = checksums;
1666                         do {
1667                                 integrity_sector_checksum(ic, sector, mem + pos, checksums_ptr);
1668                                 checksums_ptr += ic->tag_size;
1669                                 sectors_to_process -= ic->sectors_per_block;
1670                                 pos += ic->sectors_per_block << SECTOR_SHIFT;
1671                                 sector += ic->sectors_per_block;
1672                         } while (pos < bv.bv_len && sectors_to_process && checksums != checksums_onstack);
1673                         kunmap_atomic(mem);
1674
1675                         r = dm_integrity_rw_tag(ic, checksums, &dio->metadata_block, &dio->metadata_offset,
1676                                                 checksums_ptr - checksums, dio->op == REQ_OP_READ ? TAG_CMP : TAG_WRITE);
1677                         if (unlikely(r)) {
1678                                 if (r > 0) {
1679                                         char b[BDEVNAME_SIZE];
1680                                         DMERR_LIMIT("%s: Checksum failed at sector 0x%llx", bio_devname(bio, b),
1681                                                     (sector - ((r + ic->tag_size - 1) / ic->tag_size)));
1682                                         r = -EILSEQ;
1683                                         atomic64_inc(&ic->number_of_mismatches);
1684                                 }
1685                                 if (likely(checksums != checksums_onstack))
1686                                         kfree(checksums);
1687                                 goto error;
1688                         }
1689
1690                         if (!sectors_to_process)
1691                                 break;
1692
1693                         if (unlikely(pos < bv.bv_len)) {
1694                                 bv.bv_offset += pos;
1695                                 bv.bv_len -= pos;
1696                                 goto again;
1697                         }
1698                 }
1699
1700                 if (likely(checksums != checksums_onstack))
1701                         kfree(checksums);
1702         } else {
1703                 struct bio_integrity_payload *bip = dio->bio_details.bi_integrity;
1704
1705                 if (bip) {
1706                         struct bio_vec biv;
1707                         struct bvec_iter iter;
1708                         unsigned data_to_process = dio->range.n_sectors;
1709                         sector_to_block(ic, data_to_process);
1710                         data_to_process *= ic->tag_size;
1711
1712                         bip_for_each_vec(biv, bip, iter) {
1713                                 unsigned char *tag;
1714                                 unsigned this_len;
1715
1716                                 BUG_ON(PageHighMem(biv.bv_page));
1717                                 tag = lowmem_page_address(biv.bv_page) + biv.bv_offset;
1718                                 this_len = min(biv.bv_len, data_to_process);
1719                                 r = dm_integrity_rw_tag(ic, tag, &dio->metadata_block, &dio->metadata_offset,
1720                                                         this_len, dio->op == REQ_OP_READ ? TAG_READ : TAG_WRITE);
1721                                 if (unlikely(r))
1722                                         goto error;
1723                                 data_to_process -= this_len;
1724                                 if (!data_to_process)
1725                                         break;
1726                         }
1727                 }
1728         }
1729 skip_io:
1730         dec_in_flight(dio);
1731         return;
1732 error:
1733         dio->bi_status = errno_to_blk_status(r);
1734         dec_in_flight(dio);
1735 }
1736
1737 static int dm_integrity_map(struct dm_target *ti, struct bio *bio)
1738 {
1739         struct dm_integrity_c *ic = ti->private;
1740         struct dm_integrity_io *dio = dm_per_bio_data(bio, sizeof(struct dm_integrity_io));
1741         struct bio_integrity_payload *bip;
1742
1743         sector_t area, offset;
1744
1745         dio->ic = ic;
1746         dio->bi_status = 0;
1747         dio->op = bio_op(bio);
1748
1749         if (unlikely(dio->op == REQ_OP_DISCARD)) {
1750                 if (ti->max_io_len) {
1751                         sector_t sec = dm_target_offset(ti, bio->bi_iter.bi_sector);
1752                         unsigned log2_max_io_len = __fls(ti->max_io_len);
1753                         sector_t start_boundary = sec >> log2_max_io_len;
1754                         sector_t end_boundary = (sec + bio_sectors(bio) - 1) >> log2_max_io_len;
1755                         if (start_boundary < end_boundary) {
1756                                 sector_t len = ti->max_io_len - (sec & (ti->max_io_len - 1));
1757                                 dm_accept_partial_bio(bio, len);
1758                         }
1759                 }
1760         }
1761
1762         if (unlikely(bio->bi_opf & REQ_PREFLUSH)) {
1763                 submit_flush_bio(ic, dio);
1764                 return DM_MAPIO_SUBMITTED;
1765         }
1766
1767         dio->range.logical_sector = dm_target_offset(ti, bio->bi_iter.bi_sector);
1768         dio->fua = dio->op == REQ_OP_WRITE && bio->bi_opf & REQ_FUA;
1769         if (unlikely(dio->fua)) {
1770                 /*
1771                  * Don't pass down the FUA flag because we have to flush
1772                  * disk cache anyway.
1773                  */
1774                 bio->bi_opf &= ~REQ_FUA;
1775         }
1776         if (unlikely(dio->range.logical_sector + bio_sectors(bio) > ic->provided_data_sectors)) {
1777                 DMERR("Too big sector number: 0x%llx + 0x%x > 0x%llx",
1778                       dio->range.logical_sector, bio_sectors(bio),
1779                       ic->provided_data_sectors);
1780                 return DM_MAPIO_KILL;
1781         }
1782         if (unlikely((dio->range.logical_sector | bio_sectors(bio)) & (unsigned)(ic->sectors_per_block - 1))) {
1783                 DMERR("Bio not aligned on %u sectors: 0x%llx, 0x%x",
1784                       ic->sectors_per_block,
1785                       dio->range.logical_sector, bio_sectors(bio));
1786                 return DM_MAPIO_KILL;
1787         }
1788
1789         if (ic->sectors_per_block > 1 && likely(dio->op != REQ_OP_DISCARD)) {
1790                 struct bvec_iter iter;
1791                 struct bio_vec bv;
1792                 bio_for_each_segment(bv, bio, iter) {
1793                         if (unlikely(bv.bv_len & ((ic->sectors_per_block << SECTOR_SHIFT) - 1))) {
1794                                 DMERR("Bio vector (%u,%u) is not aligned on %u-sector boundary",
1795                                         bv.bv_offset, bv.bv_len, ic->sectors_per_block);
1796                                 return DM_MAPIO_KILL;
1797                         }
1798                 }
1799         }
1800
1801         bip = bio_integrity(bio);
1802         if (!ic->internal_hash) {
1803                 if (bip) {
1804                         unsigned wanted_tag_size = bio_sectors(bio) >> ic->sb->log2_sectors_per_block;
1805                         if (ic->log2_tag_size >= 0)
1806                                 wanted_tag_size <<= ic->log2_tag_size;
1807                         else
1808                                 wanted_tag_size *= ic->tag_size;
1809                         if (unlikely(wanted_tag_size != bip->bip_iter.bi_size)) {
1810                                 DMERR("Invalid integrity data size %u, expected %u",
1811                                       bip->bip_iter.bi_size, wanted_tag_size);
1812                                 return DM_MAPIO_KILL;
1813                         }
1814                 }
1815         } else {
1816                 if (unlikely(bip != NULL)) {
1817                         DMERR("Unexpected integrity data when using internal hash");
1818                         return DM_MAPIO_KILL;
1819                 }
1820         }
1821
1822         if (unlikely(ic->mode == 'R') && unlikely(dio->op != REQ_OP_READ))
1823                 return DM_MAPIO_KILL;
1824
1825         get_area_and_offset(ic, dio->range.logical_sector, &area, &offset);
1826         dio->metadata_block = get_metadata_sector_and_offset(ic, area, offset, &dio->metadata_offset);
1827         bio->bi_iter.bi_sector = get_data_sector(ic, area, offset);
1828
1829         dm_integrity_map_continue(dio, true);
1830         return DM_MAPIO_SUBMITTED;
1831 }
1832
1833 static bool __journal_read_write(struct dm_integrity_io *dio, struct bio *bio,
1834                                  unsigned journal_section, unsigned journal_entry)
1835 {
1836         struct dm_integrity_c *ic = dio->ic;
1837         sector_t logical_sector;
1838         unsigned n_sectors;
1839
1840         logical_sector = dio->range.logical_sector;
1841         n_sectors = dio->range.n_sectors;
1842         do {
1843                 struct bio_vec bv = bio_iovec(bio);
1844                 char *mem;
1845
1846                 if (unlikely(bv.bv_len >> SECTOR_SHIFT > n_sectors))
1847                         bv.bv_len = n_sectors << SECTOR_SHIFT;
1848                 n_sectors -= bv.bv_len >> SECTOR_SHIFT;
1849                 bio_advance_iter(bio, &bio->bi_iter, bv.bv_len);
1850 retry_kmap:
1851                 mem = kmap_atomic(bv.bv_page);
1852                 if (likely(dio->op == REQ_OP_WRITE))
1853                         flush_dcache_page(bv.bv_page);
1854
1855                 do {
1856                         struct journal_entry *je = access_journal_entry(ic, journal_section, journal_entry);
1857
1858                         if (unlikely(dio->op == REQ_OP_READ)) {
1859                                 struct journal_sector *js;
1860                                 char *mem_ptr;
1861                                 unsigned s;
1862
1863                                 if (unlikely(journal_entry_is_inprogress(je))) {
1864                                         flush_dcache_page(bv.bv_page);
1865                                         kunmap_atomic(mem);
1866
1867                                         __io_wait_event(ic->copy_to_journal_wait, !journal_entry_is_inprogress(je));
1868                                         goto retry_kmap;
1869                                 }
1870                                 smp_rmb();
1871                                 BUG_ON(journal_entry_get_sector(je) != logical_sector);
1872                                 js = access_journal_data(ic, journal_section, journal_entry);
1873                                 mem_ptr = mem + bv.bv_offset;
1874                                 s = 0;
1875                                 do {
1876                                         memcpy(mem_ptr, js, JOURNAL_SECTOR_DATA);
1877                                         *(commit_id_t *)(mem_ptr + JOURNAL_SECTOR_DATA) = je->last_bytes[s];
1878                                         js++;
1879                                         mem_ptr += 1 << SECTOR_SHIFT;
1880                                 } while (++s < ic->sectors_per_block);
1881 #ifdef INTERNAL_VERIFY
1882                                 if (ic->internal_hash) {
1883                                         char checksums_onstack[max((size_t)HASH_MAX_DIGESTSIZE, MAX_TAG_SIZE)];
1884
1885                                         integrity_sector_checksum(ic, logical_sector, mem + bv.bv_offset, checksums_onstack);
1886                                         if (unlikely(memcmp(checksums_onstack, journal_entry_tag(ic, je), ic->tag_size))) {
1887                                                 DMERR_LIMIT("Checksum failed when reading from journal, at sector 0x%llx",
1888                                                             logical_sector);
1889                                         }
1890                                 }
1891 #endif
1892                         }
1893
1894                         if (!ic->internal_hash) {
1895                                 struct bio_integrity_payload *bip = bio_integrity(bio);
1896                                 unsigned tag_todo = ic->tag_size;
1897                                 char *tag_ptr = journal_entry_tag(ic, je);
1898
1899                                 if (bip) do {
1900                                         struct bio_vec biv = bvec_iter_bvec(bip->bip_vec, bip->bip_iter);
1901                                         unsigned tag_now = min(biv.bv_len, tag_todo);
1902                                         char *tag_addr;
1903                                         BUG_ON(PageHighMem(biv.bv_page));
1904                                         tag_addr = lowmem_page_address(biv.bv_page) + biv.bv_offset;
1905                                         if (likely(dio->op == REQ_OP_WRITE))
1906                                                 memcpy(tag_ptr, tag_addr, tag_now);
1907                                         else
1908                                                 memcpy(tag_addr, tag_ptr, tag_now);
1909                                         bvec_iter_advance(bip->bip_vec, &bip->bip_iter, tag_now);
1910                                         tag_ptr += tag_now;
1911                                         tag_todo -= tag_now;
1912                                 } while (unlikely(tag_todo)); else {
1913                                         if (likely(dio->op == REQ_OP_WRITE))
1914                                                 memset(tag_ptr, 0, tag_todo);
1915                                 }
1916                         }
1917
1918                         if (likely(dio->op == REQ_OP_WRITE)) {
1919                                 struct journal_sector *js;
1920                                 unsigned s;
1921
1922                                 js = access_journal_data(ic, journal_section, journal_entry);
1923                                 memcpy(js, mem + bv.bv_offset, ic->sectors_per_block << SECTOR_SHIFT);
1924
1925                                 s = 0;
1926                                 do {
1927                                         je->last_bytes[s] = js[s].commit_id;
1928                                 } while (++s < ic->sectors_per_block);
1929
1930                                 if (ic->internal_hash) {
1931                                         unsigned digest_size = crypto_shash_digestsize(ic->internal_hash);
1932                                         if (unlikely(digest_size > ic->tag_size)) {
1933                                                 char checksums_onstack[HASH_MAX_DIGESTSIZE];
1934                                                 integrity_sector_checksum(ic, logical_sector, (char *)js, checksums_onstack);
1935                                                 memcpy(journal_entry_tag(ic, je), checksums_onstack, ic->tag_size);
1936                                         } else
1937                                                 integrity_sector_checksum(ic, logical_sector, (char *)js, journal_entry_tag(ic, je));
1938                                 }
1939
1940                                 journal_entry_set_sector(je, logical_sector);
1941                         }
1942                         logical_sector += ic->sectors_per_block;
1943
1944                         journal_entry++;
1945                         if (unlikely(journal_entry == ic->journal_section_entries)) {
1946                                 journal_entry = 0;
1947                                 journal_section++;
1948                                 wraparound_section(ic, &journal_section);
1949                         }
1950
1951                         bv.bv_offset += ic->sectors_per_block << SECTOR_SHIFT;
1952                 } while (bv.bv_len -= ic->sectors_per_block << SECTOR_SHIFT);
1953
1954                 if (unlikely(dio->op == REQ_OP_READ))
1955                         flush_dcache_page(bv.bv_page);
1956                 kunmap_atomic(mem);
1957         } while (n_sectors);
1958
1959         if (likely(dio->op == REQ_OP_WRITE)) {
1960                 smp_mb();
1961                 if (unlikely(waitqueue_active(&ic->copy_to_journal_wait)))
1962                         wake_up(&ic->copy_to_journal_wait);
1963                 if (READ_ONCE(ic->free_sectors) <= ic->free_sectors_threshold) {
1964                         queue_work(ic->commit_wq, &ic->commit_work);
1965                 } else {
1966                         schedule_autocommit(ic);
1967                 }
1968         } else {
1969                 remove_range(ic, &dio->range);
1970         }
1971
1972         if (unlikely(bio->bi_iter.bi_size)) {
1973                 sector_t area, offset;
1974
1975                 dio->range.logical_sector = logical_sector;
1976                 get_area_and_offset(ic, dio->range.logical_sector, &area, &offset);
1977                 dio->metadata_block = get_metadata_sector_and_offset(ic, area, offset, &dio->metadata_offset);
1978                 return true;
1979         }
1980
1981         return false;
1982 }
1983
1984 static void dm_integrity_map_continue(struct dm_integrity_io *dio, bool from_map)
1985 {
1986         struct dm_integrity_c *ic = dio->ic;
1987         struct bio *bio = dm_bio_from_per_bio_data(dio, sizeof(struct dm_integrity_io));
1988         unsigned journal_section, journal_entry;
1989         unsigned journal_read_pos;
1990         struct completion read_comp;
1991         bool discard_retried = false;
1992         bool need_sync_io = ic->internal_hash && dio->op == REQ_OP_READ;
1993         if (unlikely(dio->op == REQ_OP_DISCARD) && ic->mode != 'D')
1994                 need_sync_io = true;
1995
1996         if (need_sync_io && from_map) {
1997                 INIT_WORK(&dio->work, integrity_bio_wait);
1998                 queue_work(ic->offload_wq, &dio->work);
1999                 return;
2000         }
2001
2002 lock_retry:
2003         spin_lock_irq(&ic->endio_wait.lock);
2004 retry:
2005         if (unlikely(dm_integrity_failed(ic))) {
2006                 spin_unlock_irq(&ic->endio_wait.lock);
2007                 do_endio(ic, bio);
2008                 return;
2009         }
2010         dio->range.n_sectors = bio_sectors(bio);
2011         journal_read_pos = NOT_FOUND;
2012         if (ic->mode == 'J' && likely(dio->op != REQ_OP_DISCARD)) {
2013                 if (dio->op == REQ_OP_WRITE) {
2014                         unsigned next_entry, i, pos;
2015                         unsigned ws, we, range_sectors;
2016
2017                         dio->range.n_sectors = min(dio->range.n_sectors,
2018                                                    (sector_t)ic->free_sectors << ic->sb->log2_sectors_per_block);
2019                         if (unlikely(!dio->range.n_sectors)) {
2020                                 if (from_map)
2021                                         goto offload_to_thread;
2022                                 sleep_on_endio_wait(ic);
2023                                 goto retry;
2024                         }
2025                         range_sectors = dio->range.n_sectors >> ic->sb->log2_sectors_per_block;
2026                         ic->free_sectors -= range_sectors;
2027                         journal_section = ic->free_section;
2028                         journal_entry = ic->free_section_entry;
2029
2030                         next_entry = ic->free_section_entry + range_sectors;
2031                         ic->free_section_entry = next_entry % ic->journal_section_entries;
2032                         ic->free_section += next_entry / ic->journal_section_entries;
2033                         ic->n_uncommitted_sections += next_entry / ic->journal_section_entries;
2034                         wraparound_section(ic, &ic->free_section);
2035
2036                         pos = journal_section * ic->journal_section_entries + journal_entry;
2037                         ws = journal_section;
2038                         we = journal_entry;
2039                         i = 0;
2040                         do {
2041                                 struct journal_entry *je;
2042
2043                                 add_journal_node(ic, &ic->journal_tree[pos], dio->range.logical_sector + i);
2044                                 pos++;
2045                                 if (unlikely(pos >= ic->journal_entries))
2046                                         pos = 0;
2047
2048                                 je = access_journal_entry(ic, ws, we);
2049                                 BUG_ON(!journal_entry_is_unused(je));
2050                                 journal_entry_set_inprogress(je);
2051                                 we++;
2052                                 if (unlikely(we == ic->journal_section_entries)) {
2053                                         we = 0;
2054                                         ws++;
2055                                         wraparound_section(ic, &ws);
2056                                 }
2057                         } while ((i += ic->sectors_per_block) < dio->range.n_sectors);
2058
2059                         spin_unlock_irq(&ic->endio_wait.lock);
2060                         goto journal_read_write;
2061                 } else {
2062                         sector_t next_sector;
2063                         journal_read_pos = find_journal_node(ic, dio->range.logical_sector, &next_sector);
2064                         if (likely(journal_read_pos == NOT_FOUND)) {
2065                                 if (unlikely(dio->range.n_sectors > next_sector - dio->range.logical_sector))
2066                                         dio->range.n_sectors = next_sector - dio->range.logical_sector;
2067                         } else {
2068                                 unsigned i;
2069                                 unsigned jp = journal_read_pos + 1;
2070                                 for (i = ic->sectors_per_block; i < dio->range.n_sectors; i += ic->sectors_per_block, jp++) {
2071                                         if (!test_journal_node(ic, jp, dio->range.logical_sector + i))
2072                                                 break;
2073                                 }
2074                                 dio->range.n_sectors = i;
2075                         }
2076                 }
2077         }
2078         if (unlikely(!add_new_range(ic, &dio->range, true))) {
2079                 /*
2080                  * We must not sleep in the request routine because it could
2081                  * stall bios on current->bio_list.
2082                  * So, we offload the bio to a workqueue if we have to sleep.
2083                  */
2084                 if (from_map) {
2085 offload_to_thread:
2086                         spin_unlock_irq(&ic->endio_wait.lock);
2087                         INIT_WORK(&dio->work, integrity_bio_wait);
2088                         queue_work(ic->wait_wq, &dio->work);
2089                         return;
2090                 }
2091                 if (journal_read_pos != NOT_FOUND)
2092                         dio->range.n_sectors = ic->sectors_per_block;
2093                 wait_and_add_new_range(ic, &dio->range);
2094                 /*
2095                  * wait_and_add_new_range drops the spinlock, so the journal
2096                  * may have been changed arbitrarily. We need to recheck.
2097                  * To simplify the code, we restrict I/O size to just one block.
2098                  */
2099                 if (journal_read_pos != NOT_FOUND) {
2100                         sector_t next_sector;
2101                         unsigned new_pos = find_journal_node(ic, dio->range.logical_sector, &next_sector);
2102                         if (unlikely(new_pos != journal_read_pos)) {
2103                                 remove_range_unlocked(ic, &dio->range);
2104                                 goto retry;
2105                         }
2106                 }
2107         }
2108         if (ic->mode == 'J' && likely(dio->op == REQ_OP_DISCARD) && !discard_retried) {
2109                 sector_t next_sector;
2110                 unsigned new_pos = find_journal_node(ic, dio->range.logical_sector, &next_sector);
2111                 if (unlikely(new_pos != NOT_FOUND) ||
2112                     unlikely(next_sector < dio->range.logical_sector - dio->range.n_sectors)) {
2113                         remove_range_unlocked(ic, &dio->range);
2114                         spin_unlock_irq(&ic->endio_wait.lock);
2115                         queue_work(ic->commit_wq, &ic->commit_work);
2116                         flush_workqueue(ic->commit_wq);
2117                         queue_work(ic->writer_wq, &ic->writer_work);
2118                         flush_workqueue(ic->writer_wq);
2119                         discard_retried = true;
2120                         goto lock_retry;
2121                 }
2122         }
2123         spin_unlock_irq(&ic->endio_wait.lock);
2124
2125         if (unlikely(journal_read_pos != NOT_FOUND)) {
2126                 journal_section = journal_read_pos / ic->journal_section_entries;
2127                 journal_entry = journal_read_pos % ic->journal_section_entries;
2128                 goto journal_read_write;
2129         }
2130
2131         if (ic->mode == 'B' && (dio->op == REQ_OP_WRITE || unlikely(dio->op == REQ_OP_DISCARD))) {
2132                 if (!block_bitmap_op(ic, ic->may_write_bitmap, dio->range.logical_sector,
2133                                      dio->range.n_sectors, BITMAP_OP_TEST_ALL_SET)) {
2134                         struct bitmap_block_status *bbs;
2135
2136                         bbs = sector_to_bitmap_block(ic, dio->range.logical_sector);
2137                         spin_lock(&bbs->bio_queue_lock);
2138                         bio_list_add(&bbs->bio_queue, bio);
2139                         spin_unlock(&bbs->bio_queue_lock);
2140                         queue_work(ic->writer_wq, &bbs->work);
2141                         return;
2142                 }
2143         }
2144
2145         dio->in_flight = (atomic_t)ATOMIC_INIT(2);
2146
2147         if (need_sync_io) {
2148                 init_completion(&read_comp);
2149                 dio->completion = &read_comp;
2150         } else
2151                 dio->completion = NULL;
2152
2153         dm_bio_record(&dio->bio_details, bio);
2154         bio_set_dev(bio, ic->dev->bdev);
2155         bio->bi_integrity = NULL;
2156         bio->bi_opf &= ~REQ_INTEGRITY;
2157         bio->bi_end_io = integrity_end_io;
2158         bio->bi_iter.bi_size = dio->range.n_sectors << SECTOR_SHIFT;
2159
2160         if (unlikely(dio->op == REQ_OP_DISCARD) && likely(ic->mode != 'D')) {
2161                 integrity_metadata(&dio->work);
2162                 dm_integrity_flush_buffers(ic, false);
2163
2164                 dio->in_flight = (atomic_t)ATOMIC_INIT(1);
2165                 dio->completion = NULL;
2166
2167                 submit_bio_noacct(bio);
2168
2169                 return;
2170         }
2171
2172         submit_bio_noacct(bio);
2173
2174         if (need_sync_io) {
2175                 wait_for_completion_io(&read_comp);
2176                 if (ic->sb->flags & cpu_to_le32(SB_FLAG_RECALCULATING) &&
2177                     dio->range.logical_sector + dio->range.n_sectors > le64_to_cpu(ic->sb->recalc_sector))
2178                         goto skip_check;
2179                 if (ic->mode == 'B') {
2180                         if (!block_bitmap_op(ic, ic->recalc_bitmap, dio->range.logical_sector,
2181                                              dio->range.n_sectors, BITMAP_OP_TEST_ALL_CLEAR))
2182                                 goto skip_check;
2183                 }
2184
2185                 if (likely(!bio->bi_status))
2186                         integrity_metadata(&dio->work);
2187                 else
2188 skip_check:
2189                         dec_in_flight(dio);
2190
2191         } else {
2192                 INIT_WORK(&dio->work, integrity_metadata);
2193                 queue_work(ic->metadata_wq, &dio->work);
2194         }
2195
2196         return;
2197
2198 journal_read_write:
2199         if (unlikely(__journal_read_write(dio, bio, journal_section, journal_entry)))
2200                 goto lock_retry;
2201
2202         do_endio_flush(ic, dio);
2203 }
2204
2205
2206 static void integrity_bio_wait(struct work_struct *w)
2207 {
2208         struct dm_integrity_io *dio = container_of(w, struct dm_integrity_io, work);
2209
2210         dm_integrity_map_continue(dio, false);
2211 }
2212
2213 static void pad_uncommitted(struct dm_integrity_c *ic)
2214 {
2215         if (ic->free_section_entry) {
2216                 ic->free_sectors -= ic->journal_section_entries - ic->free_section_entry;
2217                 ic->free_section_entry = 0;
2218                 ic->free_section++;
2219                 wraparound_section(ic, &ic->free_section);
2220                 ic->n_uncommitted_sections++;
2221         }
2222         if (WARN_ON(ic->journal_sections * ic->journal_section_entries !=
2223                     (ic->n_uncommitted_sections + ic->n_committed_sections) *
2224                     ic->journal_section_entries + ic->free_sectors)) {
2225                 DMCRIT("journal_sections %u, journal_section_entries %u, "
2226                        "n_uncommitted_sections %u, n_committed_sections %u, "
2227                        "journal_section_entries %u, free_sectors %u",
2228                        ic->journal_sections, ic->journal_section_entries,
2229                        ic->n_uncommitted_sections, ic->n_committed_sections,
2230                        ic->journal_section_entries, ic->free_sectors);
2231         }
2232 }
2233
2234 static void integrity_commit(struct work_struct *w)
2235 {
2236         struct dm_integrity_c *ic = container_of(w, struct dm_integrity_c, commit_work);
2237         unsigned commit_start, commit_sections;
2238         unsigned i, j, n;
2239         struct bio *flushes;
2240
2241         del_timer(&ic->autocommit_timer);
2242
2243         spin_lock_irq(&ic->endio_wait.lock);
2244         flushes = bio_list_get(&ic->flush_bio_list);
2245         if (unlikely(ic->mode != 'J')) {
2246                 spin_unlock_irq(&ic->endio_wait.lock);
2247                 dm_integrity_flush_buffers(ic, true);
2248                 goto release_flush_bios;
2249         }
2250
2251         pad_uncommitted(ic);
2252         commit_start = ic->uncommitted_section;
2253         commit_sections = ic->n_uncommitted_sections;
2254         spin_unlock_irq(&ic->endio_wait.lock);
2255
2256         if (!commit_sections)
2257                 goto release_flush_bios;
2258
2259         i = commit_start;
2260         for (n = 0; n < commit_sections; n++) {
2261                 for (j = 0; j < ic->journal_section_entries; j++) {
2262                         struct journal_entry *je;
2263                         je = access_journal_entry(ic, i, j);
2264                         io_wait_event(ic->copy_to_journal_wait, !journal_entry_is_inprogress(je));
2265                 }
2266                 for (j = 0; j < ic->journal_section_sectors; j++) {
2267                         struct journal_sector *js;
2268                         js = access_journal(ic, i, j);
2269                         js->commit_id = dm_integrity_commit_id(ic, i, j, ic->commit_seq);
2270                 }
2271                 i++;
2272                 if (unlikely(i >= ic->journal_sections))
2273                         ic->commit_seq = next_commit_seq(ic->commit_seq);
2274                 wraparound_section(ic, &i);
2275         }
2276         smp_rmb();
2277
2278         write_journal(ic, commit_start, commit_sections);
2279
2280         spin_lock_irq(&ic->endio_wait.lock);
2281         ic->uncommitted_section += commit_sections;
2282         wraparound_section(ic, &ic->uncommitted_section);
2283         ic->n_uncommitted_sections -= commit_sections;
2284         ic->n_committed_sections += commit_sections;
2285         spin_unlock_irq(&ic->endio_wait.lock);
2286
2287         if (READ_ONCE(ic->free_sectors) <= ic->free_sectors_threshold)
2288                 queue_work(ic->writer_wq, &ic->writer_work);
2289
2290 release_flush_bios:
2291         while (flushes) {
2292                 struct bio *next = flushes->bi_next;
2293                 flushes->bi_next = NULL;
2294                 do_endio(ic, flushes);
2295                 flushes = next;
2296         }
2297 }
2298
2299 static void complete_copy_from_journal(unsigned long error, void *context)
2300 {
2301         struct journal_io *io = context;
2302         struct journal_completion *comp = io->comp;
2303         struct dm_integrity_c *ic = comp->ic;
2304         remove_range(ic, &io->range);
2305         mempool_free(io, &ic->journal_io_mempool);
2306         if (unlikely(error != 0))
2307                 dm_integrity_io_error(ic, "copying from journal", -EIO);
2308         complete_journal_op(comp);
2309 }
2310
2311 static void restore_last_bytes(struct dm_integrity_c *ic, struct journal_sector *js,
2312                                struct journal_entry *je)
2313 {
2314         unsigned s = 0;
2315         do {
2316                 js->commit_id = je->last_bytes[s];
2317                 js++;
2318         } while (++s < ic->sectors_per_block);
2319 }
2320
2321 static void do_journal_write(struct dm_integrity_c *ic, unsigned write_start,
2322                              unsigned write_sections, bool from_replay)
2323 {
2324         unsigned i, j, n;
2325         struct journal_completion comp;
2326         struct blk_plug plug;
2327
2328         blk_start_plug(&plug);
2329
2330         comp.ic = ic;
2331         comp.in_flight = (atomic_t)ATOMIC_INIT(1);
2332         init_completion(&comp.comp);
2333
2334         i = write_start;
2335         for (n = 0; n < write_sections; n++, i++, wraparound_section(ic, &i)) {
2336 #ifndef INTERNAL_VERIFY
2337                 if (unlikely(from_replay))
2338 #endif
2339                         rw_section_mac(ic, i, false);
2340                 for (j = 0; j < ic->journal_section_entries; j++) {
2341                         struct journal_entry *je = access_journal_entry(ic, i, j);
2342                         sector_t sec, area, offset;
2343                         unsigned k, l, next_loop;
2344                         sector_t metadata_block;
2345                         unsigned metadata_offset;
2346                         struct journal_io *io;
2347
2348                         if (journal_entry_is_unused(je))
2349                                 continue;
2350                         BUG_ON(unlikely(journal_entry_is_inprogress(je)) && !from_replay);
2351                         sec = journal_entry_get_sector(je);
2352                         if (unlikely(from_replay)) {
2353                                 if (unlikely(sec & (unsigned)(ic->sectors_per_block - 1))) {
2354                                         dm_integrity_io_error(ic, "invalid sector in journal", -EIO);
2355                                         sec &= ~(sector_t)(ic->sectors_per_block - 1);
2356                                 }
2357                                 if (unlikely(sec >= ic->provided_data_sectors)) {
2358                                         journal_entry_set_unused(je);
2359                                         continue;
2360                                 }
2361                         }
2362                         get_area_and_offset(ic, sec, &area, &offset);
2363                         restore_last_bytes(ic, access_journal_data(ic, i, j), je);
2364                         for (k = j + 1; k < ic->journal_section_entries; k++) {
2365                                 struct journal_entry *je2 = access_journal_entry(ic, i, k);
2366                                 sector_t sec2, area2, offset2;
2367                                 if (journal_entry_is_unused(je2))
2368                                         break;
2369                                 BUG_ON(unlikely(journal_entry_is_inprogress(je2)) && !from_replay);
2370                                 sec2 = journal_entry_get_sector(je2);
2371                                 if (unlikely(sec2 >= ic->provided_data_sectors))
2372                                         break;
2373                                 get_area_and_offset(ic, sec2, &area2, &offset2);
2374                                 if (area2 != area || offset2 != offset + ((k - j) << ic->sb->log2_sectors_per_block))
2375                                         break;
2376                                 restore_last_bytes(ic, access_journal_data(ic, i, k), je2);
2377                         }
2378                         next_loop = k - 1;
2379
2380                         io = mempool_alloc(&ic->journal_io_mempool, GFP_NOIO);
2381                         io->comp = &comp;
2382                         io->range.logical_sector = sec;
2383                         io->range.n_sectors = (k - j) << ic->sb->log2_sectors_per_block;
2384
2385                         spin_lock_irq(&ic->endio_wait.lock);
2386                         add_new_range_and_wait(ic, &io->range);
2387
2388                         if (likely(!from_replay)) {
2389                                 struct journal_node *section_node = &ic->journal_tree[i * ic->journal_section_entries];
2390
2391                                 /* don't write if there is newer committed sector */
2392                                 while (j < k && find_newer_committed_node(ic, &section_node[j])) {
2393                                         struct journal_entry *je2 = access_journal_entry(ic, i, j);
2394
2395                                         journal_entry_set_unused(je2);
2396                                         remove_journal_node(ic, &section_node[j]);
2397                                         j++;
2398                                         sec += ic->sectors_per_block;
2399                                         offset += ic->sectors_per_block;
2400                                 }
2401                                 while (j < k && find_newer_committed_node(ic, &section_node[k - 1])) {
2402                                         struct journal_entry *je2 = access_journal_entry(ic, i, k - 1);
2403
2404                                         journal_entry_set_unused(je2);
2405                                         remove_journal_node(ic, &section_node[k - 1]);
2406                                         k--;
2407                                 }
2408                                 if (j == k) {
2409                                         remove_range_unlocked(ic, &io->range);
2410                                         spin_unlock_irq(&ic->endio_wait.lock);
2411                                         mempool_free(io, &ic->journal_io_mempool);
2412                                         goto skip_io;
2413                                 }
2414                                 for (l = j; l < k; l++) {
2415                                         remove_journal_node(ic, &section_node[l]);
2416                                 }
2417                         }
2418                         spin_unlock_irq(&ic->endio_wait.lock);
2419
2420                         metadata_block = get_metadata_sector_and_offset(ic, area, offset, &metadata_offset);
2421                         for (l = j; l < k; l++) {
2422                                 int r;
2423                                 struct journal_entry *je2 = access_journal_entry(ic, i, l);
2424
2425                                 if (
2426 #ifndef INTERNAL_VERIFY
2427                                     unlikely(from_replay) &&
2428 #endif
2429                                     ic->internal_hash) {
2430                                         char test_tag[max_t(size_t, HASH_MAX_DIGESTSIZE, MAX_TAG_SIZE)];
2431
2432                                         integrity_sector_checksum(ic, sec + ((l - j) << ic->sb->log2_sectors_per_block),
2433                                                                   (char *)access_journal_data(ic, i, l), test_tag);
2434                                         if (unlikely(memcmp(test_tag, journal_entry_tag(ic, je2), ic->tag_size)))
2435                                                 dm_integrity_io_error(ic, "tag mismatch when replaying journal", -EILSEQ);
2436                                 }
2437
2438                                 journal_entry_set_unused(je2);
2439                                 r = dm_integrity_rw_tag(ic, journal_entry_tag(ic, je2), &metadata_block, &metadata_offset,
2440                                                         ic->tag_size, TAG_WRITE);
2441                                 if (unlikely(r)) {
2442                                         dm_integrity_io_error(ic, "reading tags", r);
2443                                 }
2444                         }
2445
2446                         atomic_inc(&comp.in_flight);
2447                         copy_from_journal(ic, i, j << ic->sb->log2_sectors_per_block,
2448                                           (k - j) << ic->sb->log2_sectors_per_block,
2449                                           get_data_sector(ic, area, offset),
2450                                           complete_copy_from_journal, io);
2451 skip_io:
2452                         j = next_loop;
2453                 }
2454         }
2455
2456         dm_bufio_write_dirty_buffers_async(ic->bufio);
2457
2458         blk_finish_plug(&plug);
2459
2460         complete_journal_op(&comp);
2461         wait_for_completion_io(&comp.comp);
2462
2463         dm_integrity_flush_buffers(ic, true);
2464 }
2465
2466 static void integrity_writer(struct work_struct *w)
2467 {
2468         struct dm_integrity_c *ic = container_of(w, struct dm_integrity_c, writer_work);
2469         unsigned write_start, write_sections;
2470
2471         unsigned prev_free_sectors;
2472
2473         /* the following test is not needed, but it tests the replay code */
2474         if (unlikely(dm_post_suspending(ic->ti)) && !ic->meta_dev)
2475                 return;
2476
2477         spin_lock_irq(&ic->endio_wait.lock);
2478         write_start = ic->committed_section;
2479         write_sections = ic->n_committed_sections;
2480         spin_unlock_irq(&ic->endio_wait.lock);
2481
2482         if (!write_sections)
2483                 return;
2484
2485         do_journal_write(ic, write_start, write_sections, false);
2486
2487         spin_lock_irq(&ic->endio_wait.lock);
2488
2489         ic->committed_section += write_sections;
2490         wraparound_section(ic, &ic->committed_section);
2491         ic->n_committed_sections -= write_sections;
2492
2493         prev_free_sectors = ic->free_sectors;
2494         ic->free_sectors += write_sections * ic->journal_section_entries;
2495         if (unlikely(!prev_free_sectors))
2496                 wake_up_locked(&ic->endio_wait);
2497
2498         spin_unlock_irq(&ic->endio_wait.lock);
2499 }
2500
2501 static void recalc_write_super(struct dm_integrity_c *ic)
2502 {
2503         int r;
2504
2505         dm_integrity_flush_buffers(ic, false);
2506         if (dm_integrity_failed(ic))
2507                 return;
2508
2509         r = sync_rw_sb(ic, REQ_OP_WRITE, 0);
2510         if (unlikely(r))
2511                 dm_integrity_io_error(ic, "writing superblock", r);
2512 }
2513
2514 static void integrity_recalc(struct work_struct *w)
2515 {
2516         struct dm_integrity_c *ic = container_of(w, struct dm_integrity_c, recalc_work);
2517         struct dm_integrity_range range;
2518         struct dm_io_request io_req;
2519         struct dm_io_region io_loc;
2520         sector_t area, offset;
2521         sector_t metadata_block;
2522         unsigned metadata_offset;
2523         sector_t logical_sector, n_sectors;
2524         __u8 *t;
2525         unsigned i;
2526         int r;
2527         unsigned super_counter = 0;
2528
2529         DEBUG_print("start recalculation... (position %llx)\n", le64_to_cpu(ic->sb->recalc_sector));
2530
2531         spin_lock_irq(&ic->endio_wait.lock);
2532
2533 next_chunk:
2534
2535         if (unlikely(dm_post_suspending(ic->ti)))
2536                 goto unlock_ret;
2537
2538         range.logical_sector = le64_to_cpu(ic->sb->recalc_sector);
2539         if (unlikely(range.logical_sector >= ic->provided_data_sectors)) {
2540                 if (ic->mode == 'B') {
2541                         block_bitmap_op(ic, ic->recalc_bitmap, 0, ic->provided_data_sectors, BITMAP_OP_CLEAR);
2542                         DEBUG_print("queue_delayed_work: bitmap_flush_work\n");
2543                         queue_delayed_work(ic->commit_wq, &ic->bitmap_flush_work, 0);
2544                 }
2545                 goto unlock_ret;
2546         }
2547
2548         get_area_and_offset(ic, range.logical_sector, &area, &offset);
2549         range.n_sectors = min((sector_t)RECALC_SECTORS, ic->provided_data_sectors - range.logical_sector);
2550         if (!ic->meta_dev)
2551                 range.n_sectors = min(range.n_sectors, ((sector_t)1U << ic->sb->log2_interleave_sectors) - (unsigned)offset);
2552
2553         add_new_range_and_wait(ic, &range);
2554         spin_unlock_irq(&ic->endio_wait.lock);
2555         logical_sector = range.logical_sector;
2556         n_sectors = range.n_sectors;
2557
2558         if (ic->mode == 'B') {
2559                 if (block_bitmap_op(ic, ic->recalc_bitmap, logical_sector, n_sectors, BITMAP_OP_TEST_ALL_CLEAR)) {
2560                         goto advance_and_next;
2561                 }
2562                 while (block_bitmap_op(ic, ic->recalc_bitmap, logical_sector,
2563                                        ic->sectors_per_block, BITMAP_OP_TEST_ALL_CLEAR)) {
2564                         logical_sector += ic->sectors_per_block;
2565                         n_sectors -= ic->sectors_per_block;
2566                         cond_resched();
2567                 }
2568                 while (block_bitmap_op(ic, ic->recalc_bitmap, logical_sector + n_sectors - ic->sectors_per_block,
2569                                        ic->sectors_per_block, BITMAP_OP_TEST_ALL_CLEAR)) {
2570                         n_sectors -= ic->sectors_per_block;
2571                         cond_resched();
2572                 }
2573                 get_area_and_offset(ic, logical_sector, &area, &offset);
2574         }
2575
2576         DEBUG_print("recalculating: %llx, %llx\n", logical_sector, n_sectors);
2577
2578         if (unlikely(++super_counter == RECALC_WRITE_SUPER)) {
2579                 recalc_write_super(ic);
2580                 if (ic->mode == 'B') {
2581                         queue_delayed_work(ic->commit_wq, &ic->bitmap_flush_work, ic->bitmap_flush_interval);
2582                 }
2583                 super_counter = 0;
2584         }
2585
2586         if (unlikely(dm_integrity_failed(ic)))
2587                 goto err;
2588
2589         io_req.bi_op = REQ_OP_READ;
2590         io_req.bi_op_flags = 0;
2591         io_req.mem.type = DM_IO_VMA;
2592         io_req.mem.ptr.addr = ic->recalc_buffer;
2593         io_req.notify.fn = NULL;
2594         io_req.client = ic->io;
2595         io_loc.bdev = ic->dev->bdev;
2596         io_loc.sector = get_data_sector(ic, area, offset);
2597         io_loc.count = n_sectors;
2598
2599         r = dm_io(&io_req, 1, &io_loc, NULL);
2600         if (unlikely(r)) {
2601                 dm_integrity_io_error(ic, "reading data", r);
2602                 goto err;
2603         }
2604
2605         t = ic->recalc_tags;
2606         for (i = 0; i < n_sectors; i += ic->sectors_per_block) {
2607                 integrity_sector_checksum(ic, logical_sector + i, ic->recalc_buffer + (i << SECTOR_SHIFT), t);
2608                 t += ic->tag_size;
2609         }
2610
2611         metadata_block = get_metadata_sector_and_offset(ic, area, offset, &metadata_offset);
2612
2613         r = dm_integrity_rw_tag(ic, ic->recalc_tags, &metadata_block, &metadata_offset, t - ic->recalc_tags, TAG_WRITE);
2614         if (unlikely(r)) {
2615                 dm_integrity_io_error(ic, "writing tags", r);
2616                 goto err;
2617         }
2618
2619         if (ic->mode == 'B') {
2620                 sector_t start, end;
2621                 start = (range.logical_sector >>
2622                          (ic->sb->log2_sectors_per_block + ic->log2_blocks_per_bitmap_bit)) <<
2623                         (ic->sb->log2_sectors_per_block + ic->log2_blocks_per_bitmap_bit);
2624                 end = ((range.logical_sector + range.n_sectors) >>
2625                        (ic->sb->log2_sectors_per_block + ic->log2_blocks_per_bitmap_bit)) <<
2626                         (ic->sb->log2_sectors_per_block + ic->log2_blocks_per_bitmap_bit);
2627                 block_bitmap_op(ic, ic->recalc_bitmap, start, end - start, BITMAP_OP_CLEAR);
2628         }
2629
2630 advance_and_next:
2631         cond_resched();
2632
2633         spin_lock_irq(&ic->endio_wait.lock);
2634         remove_range_unlocked(ic, &range);
2635         ic->sb->recalc_sector = cpu_to_le64(range.logical_sector + range.n_sectors);
2636         goto next_chunk;
2637
2638 err:
2639         remove_range(ic, &range);
2640         return;
2641
2642 unlock_ret:
2643         spin_unlock_irq(&ic->endio_wait.lock);
2644
2645         recalc_write_super(ic);
2646 }
2647
2648 static void bitmap_block_work(struct work_struct *w)
2649 {
2650         struct bitmap_block_status *bbs = container_of(w, struct bitmap_block_status, work);
2651         struct dm_integrity_c *ic = bbs->ic;
2652         struct bio *bio;
2653         struct bio_list bio_queue;
2654         struct bio_list waiting;
2655
2656         bio_list_init(&waiting);
2657
2658         spin_lock(&bbs->bio_queue_lock);
2659         bio_queue = bbs->bio_queue;
2660         bio_list_init(&bbs->bio_queue);
2661         spin_unlock(&bbs->bio_queue_lock);
2662
2663         while ((bio = bio_list_pop(&bio_queue))) {
2664                 struct dm_integrity_io *dio;
2665
2666                 dio = dm_per_bio_data(bio, sizeof(struct dm_integrity_io));
2667
2668                 if (block_bitmap_op(ic, ic->may_write_bitmap, dio->range.logical_sector,
2669                                     dio->range.n_sectors, BITMAP_OP_TEST_ALL_SET)) {
2670                         remove_range(ic, &dio->range);
2671                         INIT_WORK(&dio->work, integrity_bio_wait);
2672                         queue_work(ic->offload_wq, &dio->work);
2673                 } else {
2674                         block_bitmap_op(ic, ic->journal, dio->range.logical_sector,
2675                                         dio->range.n_sectors, BITMAP_OP_SET);
2676                         bio_list_add(&waiting, bio);
2677                 }
2678         }
2679
2680         if (bio_list_empty(&waiting))
2681                 return;
2682
2683         rw_journal_sectors(ic, REQ_OP_WRITE, REQ_FUA | REQ_SYNC,
2684                            bbs->idx * (BITMAP_BLOCK_SIZE >> SECTOR_SHIFT),
2685                            BITMAP_BLOCK_SIZE >> SECTOR_SHIFT, NULL);
2686
2687         while ((bio = bio_list_pop(&waiting))) {
2688                 struct dm_integrity_io *dio = dm_per_bio_data(bio, sizeof(struct dm_integrity_io));
2689
2690                 block_bitmap_op(ic, ic->may_write_bitmap, dio->range.logical_sector,
2691                                 dio->range.n_sectors, BITMAP_OP_SET);
2692
2693                 remove_range(ic, &dio->range);
2694                 INIT_WORK(&dio->work, integrity_bio_wait);
2695                 queue_work(ic->offload_wq, &dio->work);
2696         }
2697
2698         queue_delayed_work(ic->commit_wq, &ic->bitmap_flush_work, ic->bitmap_flush_interval);
2699 }
2700
2701 static void bitmap_flush_work(struct work_struct *work)
2702 {
2703         struct dm_integrity_c *ic = container_of(work, struct dm_integrity_c, bitmap_flush_work.work);
2704         struct dm_integrity_range range;
2705         unsigned long limit;
2706         struct bio *bio;
2707
2708         dm_integrity_flush_buffers(ic, false);
2709
2710         range.logical_sector = 0;
2711         range.n_sectors = ic->provided_data_sectors;
2712
2713         spin_lock_irq(&ic->endio_wait.lock);
2714         add_new_range_and_wait(ic, &range);
2715         spin_unlock_irq(&ic->endio_wait.lock);
2716
2717         dm_integrity_flush_buffers(ic, true);
2718
2719         limit = ic->provided_data_sectors;
2720         if (ic->sb->flags & cpu_to_le32(SB_FLAG_RECALCULATING)) {
2721                 limit = le64_to_cpu(ic->sb->recalc_sector)
2722                         >> (ic->sb->log2_sectors_per_block + ic->log2_blocks_per_bitmap_bit)
2723                         << (ic->sb->log2_sectors_per_block + ic->log2_blocks_per_bitmap_bit);
2724         }
2725         /*DEBUG_print("zeroing journal\n");*/
2726         block_bitmap_op(ic, ic->journal, 0, limit, BITMAP_OP_CLEAR);
2727         block_bitmap_op(ic, ic->may_write_bitmap, 0, limit, BITMAP_OP_CLEAR);
2728
2729         rw_journal_sectors(ic, REQ_OP_WRITE, REQ_FUA | REQ_SYNC, 0,
2730                            ic->n_bitmap_blocks * (BITMAP_BLOCK_SIZE >> SECTOR_SHIFT), NULL);
2731
2732         spin_lock_irq(&ic->endio_wait.lock);
2733         remove_range_unlocked(ic, &range);
2734         while (unlikely((bio = bio_list_pop(&ic->synchronous_bios)) != NULL)) {
2735                 bio_endio(bio);
2736                 spin_unlock_irq(&ic->endio_wait.lock);
2737                 spin_lock_irq(&ic->endio_wait.lock);
2738         }
2739         spin_unlock_irq(&ic->endio_wait.lock);
2740 }
2741
2742
2743 static void init_journal(struct dm_integrity_c *ic, unsigned start_section,
2744                          unsigned n_sections, unsigned char commit_seq)
2745 {
2746         unsigned i, j, n;
2747
2748         if (!n_sections)
2749                 return;
2750
2751         for (n = 0; n < n_sections; n++) {
2752                 i = start_section + n;
2753                 wraparound_section(ic, &i);
2754                 for (j = 0; j < ic->journal_section_sectors; j++) {
2755                         struct journal_sector *js = access_journal(ic, i, j);
2756                         memset(&js->entries, 0, JOURNAL_SECTOR_DATA);
2757                         js->commit_id = dm_integrity_commit_id(ic, i, j, commit_seq);
2758                 }
2759                 for (j = 0; j < ic->journal_section_entries; j++) {
2760                         struct journal_entry *je = access_journal_entry(ic, i, j);
2761                         journal_entry_set_unused(je);
2762                 }
2763         }
2764
2765         write_journal(ic, start_section, n_sections);
2766 }
2767
2768 static int find_commit_seq(struct dm_integrity_c *ic, unsigned i, unsigned j, commit_id_t id)
2769 {
2770         unsigned char k;
2771         for (k = 0; k < N_COMMIT_IDS; k++) {
2772                 if (dm_integrity_commit_id(ic, i, j, k) == id)
2773                         return k;
2774         }
2775         dm_integrity_io_error(ic, "journal commit id", -EIO);
2776         return -EIO;
2777 }
2778
2779 static void replay_journal(struct dm_integrity_c *ic)
2780 {
2781         unsigned i, j;
2782         bool used_commit_ids[N_COMMIT_IDS];
2783         unsigned max_commit_id_sections[N_COMMIT_IDS];
2784         unsigned write_start, write_sections;
2785         unsigned continue_section;
2786         bool journal_empty;
2787         unsigned char unused, last_used, want_commit_seq;
2788
2789         if (ic->mode == 'R')
2790                 return;
2791
2792         if (ic->journal_uptodate)
2793                 return;
2794
2795         last_used = 0;
2796         write_start = 0;
2797
2798         if (!ic->just_formatted) {
2799                 DEBUG_print("reading journal\n");
2800                 rw_journal(ic, REQ_OP_READ, 0, 0, ic->journal_sections, NULL);
2801                 if (ic->journal_io)
2802                         DEBUG_bytes(lowmem_page_address(ic->journal_io[0].page), 64, "read journal");
2803                 if (ic->journal_io) {
2804                         struct journal_completion crypt_comp;
2805                         crypt_comp.ic = ic;
2806                         init_completion(&crypt_comp.comp);
2807                         crypt_comp.in_flight = (atomic_t)ATOMIC_INIT(0);
2808                         encrypt_journal(ic, false, 0, ic->journal_sections, &crypt_comp);
2809                         wait_for_completion(&crypt_comp.comp);
2810                 }
2811                 DEBUG_bytes(lowmem_page_address(ic->journal[0].page), 64, "decrypted journal");
2812         }
2813
2814         if (dm_integrity_failed(ic))
2815                 goto clear_journal;
2816
2817         journal_empty = true;
2818         memset(used_commit_ids, 0, sizeof used_commit_ids);
2819         memset(max_commit_id_sections, 0, sizeof max_commit_id_sections);
2820         for (i = 0; i < ic->journal_sections; i++) {
2821                 for (j = 0; j < ic->journal_section_sectors; j++) {
2822                         int k;
2823                         struct journal_sector *js = access_journal(ic, i, j);
2824                         k = find_commit_seq(ic, i, j, js->commit_id);
2825                         if (k < 0)
2826                                 goto clear_journal;
2827                         used_commit_ids[k] = true;
2828                         max_commit_id_sections[k] = i;
2829                 }
2830                 if (journal_empty) {
2831                         for (j = 0; j < ic->journal_section_entries; j++) {
2832                                 struct journal_entry *je = access_journal_entry(ic, i, j);
2833                                 if (!journal_entry_is_unused(je)) {
2834                                         journal_empty = false;
2835                                         break;
2836                                 }
2837                         }
2838                 }
2839         }
2840
2841         if (!used_commit_ids[N_COMMIT_IDS - 1]) {
2842                 unused = N_COMMIT_IDS - 1;
2843                 while (unused && !used_commit_ids[unused - 1])
2844                         unused--;
2845         } else {
2846                 for (unused = 0; unused < N_COMMIT_IDS; unused++)
2847                         if (!used_commit_ids[unused])
2848                                 break;
2849                 if (unused == N_COMMIT_IDS) {
2850                         dm_integrity_io_error(ic, "journal commit ids", -EIO);
2851                         goto clear_journal;
2852                 }
2853         }
2854         DEBUG_print("first unused commit seq %d [%d,%d,%d,%d]\n",
2855                     unused, used_commit_ids[0], used_commit_ids[1],
2856                     used_commit_ids[2], used_commit_ids[3]);
2857
2858         last_used = prev_commit_seq(unused);
2859         want_commit_seq = prev_commit_seq(last_used);
2860
2861         if (!used_commit_ids[want_commit_seq] && used_commit_ids[prev_commit_seq(want_commit_seq)])
2862                 journal_empty = true;
2863
2864         write_start = max_commit_id_sections[last_used] + 1;
2865         if (unlikely(write_start >= ic->journal_sections))
2866                 want_commit_seq = next_commit_seq(want_commit_seq);
2867         wraparound_section(ic, &write_start);
2868
2869         i = write_start;
2870         for (write_sections = 0; write_sections < ic->journal_sections; write_sections++) {
2871                 for (j = 0; j < ic->journal_section_sectors; j++) {
2872                         struct journal_sector *js = access_journal(ic, i, j);
2873
2874                         if (js->commit_id != dm_integrity_commit_id(ic, i, j, want_commit_seq)) {
2875                                 /*
2876                                  * This could be caused by crash during writing.
2877                                  * We won't replay the inconsistent part of the
2878                                  * journal.
2879                                  */
2880                                 DEBUG_print("commit id mismatch at position (%u, %u): %d != %d\n",
2881                                             i, j, find_commit_seq(ic, i, j, js->commit_id), want_commit_seq);
2882                                 goto brk;
2883                         }
2884                 }
2885                 i++;
2886                 if (unlikely(i >= ic->journal_sections))
2887                         want_commit_seq = next_commit_seq(want_commit_seq);
2888                 wraparound_section(ic, &i);
2889         }
2890 brk:
2891
2892         if (!journal_empty) {
2893                 DEBUG_print("replaying %u sections, starting at %u, commit seq %d\n",
2894                             write_sections, write_start, want_commit_seq);
2895                 do_journal_write(ic, write_start, write_sections, true);
2896         }
2897
2898         if (write_sections == ic->journal_sections && (ic->mode == 'J' || journal_empty)) {
2899                 continue_section = write_start;
2900                 ic->commit_seq = want_commit_seq;
2901                 DEBUG_print("continuing from section %u, commit seq %d\n", write_start, ic->commit_seq);
2902         } else {
2903                 unsigned s;
2904                 unsigned char erase_seq;
2905 clear_journal:
2906                 DEBUG_print("clearing journal\n");
2907
2908                 erase_seq = prev_commit_seq(prev_commit_seq(last_used));
2909                 s = write_start;
2910                 init_journal(ic, s, 1, erase_seq);
2911                 s++;
2912                 wraparound_section(ic, &s);
2913                 if (ic->journal_sections >= 2) {
2914                         init_journal(ic, s, ic->journal_sections - 2, erase_seq);
2915                         s += ic->journal_sections - 2;
2916                         wraparound_section(ic, &s);
2917                         init_journal(ic, s, 1, erase_seq);
2918                 }
2919
2920                 continue_section = 0;
2921                 ic->commit_seq = next_commit_seq(erase_seq);
2922         }
2923
2924         ic->committed_section = continue_section;
2925         ic->n_committed_sections = 0;
2926
2927         ic->uncommitted_section = continue_section;
2928         ic->n_uncommitted_sections = 0;
2929
2930         ic->free_section = continue_section;
2931         ic->free_section_entry = 0;
2932         ic->free_sectors = ic->journal_entries;
2933
2934         ic->journal_tree_root = RB_ROOT;
2935         for (i = 0; i < ic->journal_entries; i++)
2936                 init_journal_node(&ic->journal_tree[i]);
2937 }
2938
2939 static void dm_integrity_enter_synchronous_mode(struct dm_integrity_c *ic)
2940 {
2941         DEBUG_print("dm_integrity_enter_synchronous_mode\n");
2942
2943         if (ic->mode == 'B') {
2944                 ic->bitmap_flush_interval = msecs_to_jiffies(10) + 1;
2945                 ic->synchronous_mode = 1;
2946
2947                 cancel_delayed_work_sync(&ic->bitmap_flush_work);
2948                 queue_delayed_work(ic->commit_wq, &ic->bitmap_flush_work, 0);
2949                 flush_workqueue(ic->commit_wq);
2950         }
2951 }
2952
2953 static int dm_integrity_reboot(struct notifier_block *n, unsigned long code, void *x)
2954 {
2955         struct dm_integrity_c *ic = container_of(n, struct dm_integrity_c, reboot_notifier);
2956
2957         DEBUG_print("dm_integrity_reboot\n");
2958
2959         dm_integrity_enter_synchronous_mode(ic);
2960
2961         return NOTIFY_DONE;
2962 }
2963
2964 static void dm_integrity_postsuspend(struct dm_target *ti)
2965 {
2966         struct dm_integrity_c *ic = (struct dm_integrity_c *)ti->private;
2967         int r;
2968
2969         WARN_ON(unregister_reboot_notifier(&ic->reboot_notifier));
2970
2971         del_timer_sync(&ic->autocommit_timer);
2972
2973         if (ic->recalc_wq)
2974                 drain_workqueue(ic->recalc_wq);
2975
2976         if (ic->mode == 'B')
2977                 cancel_delayed_work_sync(&ic->bitmap_flush_work);
2978
2979         queue_work(ic->commit_wq, &ic->commit_work);
2980         drain_workqueue(ic->commit_wq);
2981
2982         if (ic->mode == 'J') {
2983                 if (ic->meta_dev)
2984                         queue_work(ic->writer_wq, &ic->writer_work);
2985                 drain_workqueue(ic->writer_wq);
2986                 dm_integrity_flush_buffers(ic, true);
2987         }
2988
2989         if (ic->mode == 'B') {
2990                 dm_integrity_flush_buffers(ic, true);
2991 #if 1
2992                 /* set to 0 to test bitmap replay code */
2993                 init_journal(ic, 0, ic->journal_sections, 0);
2994                 ic->sb->flags &= ~cpu_to_le32(SB_FLAG_DIRTY_BITMAP);
2995                 r = sync_rw_sb(ic, REQ_OP_WRITE, REQ_FUA);
2996                 if (unlikely(r))
2997                         dm_integrity_io_error(ic, "writing superblock", r);
2998 #endif
2999         }
3000
3001         BUG_ON(!RB_EMPTY_ROOT(&ic->in_progress));
3002
3003         ic->journal_uptodate = true;
3004 }
3005
3006 static void dm_integrity_resume(struct dm_target *ti)
3007 {
3008         struct dm_integrity_c *ic = (struct dm_integrity_c *)ti->private;
3009         __u64 old_provided_data_sectors = le64_to_cpu(ic->sb->provided_data_sectors);
3010         int r;
3011
3012         DEBUG_print("resume\n");
3013
3014         if (ic->provided_data_sectors != old_provided_data_sectors) {
3015                 if (ic->provided_data_sectors > old_provided_data_sectors &&
3016                     ic->mode == 'B' &&
3017                     ic->sb->log2_blocks_per_bitmap_bit == ic->log2_blocks_per_bitmap_bit) {
3018                         rw_journal_sectors(ic, REQ_OP_READ, 0, 0,
3019                                            ic->n_bitmap_blocks * (BITMAP_BLOCK_SIZE >> SECTOR_SHIFT), NULL);
3020                         block_bitmap_op(ic, ic->journal, old_provided_data_sectors,
3021                                         ic->provided_data_sectors - old_provided_data_sectors, BITMAP_OP_SET);
3022                         rw_journal_sectors(ic, REQ_OP_WRITE, REQ_FUA | REQ_SYNC, 0,
3023                                            ic->n_bitmap_blocks * (BITMAP_BLOCK_SIZE >> SECTOR_SHIFT), NULL);
3024                 }
3025
3026                 ic->sb->provided_data_sectors = cpu_to_le64(ic->provided_data_sectors);
3027                 r = sync_rw_sb(ic, REQ_OP_WRITE, REQ_FUA);
3028                 if (unlikely(r))
3029                         dm_integrity_io_error(ic, "writing superblock", r);
3030         }
3031
3032         if (ic->sb->flags & cpu_to_le32(SB_FLAG_DIRTY_BITMAP)) {
3033                 DEBUG_print("resume dirty_bitmap\n");
3034                 rw_journal_sectors(ic, REQ_OP_READ, 0, 0,
3035                                    ic->n_bitmap_blocks * (BITMAP_BLOCK_SIZE >> SECTOR_SHIFT), NULL);
3036                 if (ic->mode == 'B') {
3037                         if (ic->sb->log2_blocks_per_bitmap_bit == ic->log2_blocks_per_bitmap_bit) {
3038                                 block_bitmap_copy(ic, ic->recalc_bitmap, ic->journal);
3039                                 block_bitmap_copy(ic, ic->may_write_bitmap, ic->journal);
3040                                 if (!block_bitmap_op(ic, ic->journal, 0, ic->provided_data_sectors,
3041                                                      BITMAP_OP_TEST_ALL_CLEAR)) {
3042                                         ic->sb->flags |= cpu_to_le32(SB_FLAG_RECALCULATING);
3043                                         ic->sb->recalc_sector = cpu_to_le64(0);
3044                                 }
3045                         } else {
3046                                 DEBUG_print("non-matching blocks_per_bitmap_bit: %u, %u\n",
3047                                             ic->sb->log2_blocks_per_bitmap_bit, ic->log2_blocks_per_bitmap_bit);
3048                                 ic->sb->log2_blocks_per_bitmap_bit = ic->log2_blocks_per_bitmap_bit;
3049                                 block_bitmap_op(ic, ic->recalc_bitmap, 0, ic->provided_data_sectors, BITMAP_OP_SET);
3050                                 block_bitmap_op(ic, ic->may_write_bitmap, 0, ic->provided_data_sectors, BITMAP_OP_SET);
3051                                 block_bitmap_op(ic, ic->journal, 0, ic->provided_data_sectors, BITMAP_OP_SET);
3052                                 rw_journal_sectors(ic, REQ_OP_WRITE, REQ_FUA | REQ_SYNC, 0,
3053                                                    ic->n_bitmap_blocks * (BITMAP_BLOCK_SIZE >> SECTOR_SHIFT), NULL);
3054                                 ic->sb->flags |= cpu_to_le32(SB_FLAG_RECALCULATING);
3055                                 ic->sb->recalc_sector = cpu_to_le64(0);
3056                         }
3057                 } else {
3058                         if (!(ic->sb->log2_blocks_per_bitmap_bit == ic->log2_blocks_per_bitmap_bit &&
3059                               block_bitmap_op(ic, ic->journal, 0, ic->provided_data_sectors, BITMAP_OP_TEST_ALL_CLEAR))) {
3060                                 ic->sb->flags |= cpu_to_le32(SB_FLAG_RECALCULATING);
3061                                 ic->sb->recalc_sector = cpu_to_le64(0);
3062                         }
3063                         init_journal(ic, 0, ic->journal_sections, 0);
3064                         replay_journal(ic);
3065                         ic->sb->flags &= ~cpu_to_le32(SB_FLAG_DIRTY_BITMAP);
3066                 }
3067                 r = sync_rw_sb(ic, REQ_OP_WRITE, REQ_FUA);
3068                 if (unlikely(r))
3069                         dm_integrity_io_error(ic, "writing superblock", r);
3070         } else {
3071                 replay_journal(ic);
3072                 if (ic->mode == 'B') {
3073                         ic->sb->flags |= cpu_to_le32(SB_FLAG_DIRTY_BITMAP);
3074                         ic->sb->log2_blocks_per_bitmap_bit = ic->log2_blocks_per_bitmap_bit;
3075                         r = sync_rw_sb(ic, REQ_OP_WRITE, REQ_FUA);
3076                         if (unlikely(r))
3077                                 dm_integrity_io_error(ic, "writing superblock", r);
3078
3079                         block_bitmap_op(ic, ic->journal, 0, ic->provided_data_sectors, BITMAP_OP_CLEAR);
3080                         block_bitmap_op(ic, ic->recalc_bitmap, 0, ic->provided_data_sectors, BITMAP_OP_CLEAR);
3081                         block_bitmap_op(ic, ic->may_write_bitmap, 0, ic->provided_data_sectors, BITMAP_OP_CLEAR);
3082                         if (ic->sb->flags & cpu_to_le32(SB_FLAG_RECALCULATING) &&
3083                             le64_to_cpu(ic->sb->recalc_sector) < ic->provided_data_sectors) {
3084                                 block_bitmap_op(ic, ic->journal, le64_to_cpu(ic->sb->recalc_sector),
3085                                                 ic->provided_data_sectors - le64_to_cpu(ic->sb->recalc_sector), BITMAP_OP_SET);
3086                                 block_bitmap_op(ic, ic->recalc_bitmap, le64_to_cpu(ic->sb->recalc_sector),
3087                                                 ic->provided_data_sectors - le64_to_cpu(ic->sb->recalc_sector), BITMAP_OP_SET);
3088                                 block_bitmap_op(ic, ic->may_write_bitmap, le64_to_cpu(ic->sb->recalc_sector),
3089                                                 ic->provided_data_sectors - le64_to_cpu(ic->sb->recalc_sector), BITMAP_OP_SET);
3090                         }
3091                         rw_journal_sectors(ic, REQ_OP_WRITE, REQ_FUA | REQ_SYNC, 0,
3092                                            ic->n_bitmap_blocks * (BITMAP_BLOCK_SIZE >> SECTOR_SHIFT), NULL);
3093                 }
3094         }
3095
3096         DEBUG_print("testing recalc: %x\n", ic->sb->flags);
3097         if (ic->sb->flags & cpu_to_le32(SB_FLAG_RECALCULATING)) {
3098                 __u64 recalc_pos = le64_to_cpu(ic->sb->recalc_sector);
3099                 DEBUG_print("recalc pos: %llx / %llx\n", recalc_pos, ic->provided_data_sectors);
3100                 if (recalc_pos < ic->provided_data_sectors) {
3101                         queue_work(ic->recalc_wq, &ic->recalc_work);
3102                 } else if (recalc_pos > ic->provided_data_sectors) {
3103                         ic->sb->recalc_sector = cpu_to_le64(ic->provided_data_sectors);
3104                         recalc_write_super(ic);
3105                 }
3106         }
3107
3108         ic->reboot_notifier.notifier_call = dm_integrity_reboot;
3109         ic->reboot_notifier.next = NULL;
3110         ic->reboot_notifier.priority = INT_MAX - 1;     /* be notified after md and before hardware drivers */
3111         WARN_ON(register_reboot_notifier(&ic->reboot_notifier));
3112
3113 #if 0
3114         /* set to 1 to stress test synchronous mode */
3115         dm_integrity_enter_synchronous_mode(ic);
3116 #endif
3117 }
3118
3119 static void dm_integrity_status(struct dm_target *ti, status_type_t type,
3120                                 unsigned status_flags, char *result, unsigned maxlen)
3121 {
3122         struct dm_integrity_c *ic = (struct dm_integrity_c *)ti->private;
3123         unsigned arg_count;
3124         size_t sz = 0;
3125
3126         switch (type) {
3127         case STATUSTYPE_INFO:
3128                 DMEMIT("%llu %llu",
3129                         (unsigned long long)atomic64_read(&ic->number_of_mismatches),
3130                         ic->provided_data_sectors);
3131                 if (ic->sb->flags & cpu_to_le32(SB_FLAG_RECALCULATING))
3132                         DMEMIT(" %llu", le64_to_cpu(ic->sb->recalc_sector));
3133                 else
3134                         DMEMIT(" -");
3135                 break;
3136
3137         case STATUSTYPE_TABLE: {
3138                 __u64 watermark_percentage = (__u64)(ic->journal_entries - ic->free_sectors_threshold) * 100;
3139                 watermark_percentage += ic->journal_entries / 2;
3140                 do_div(watermark_percentage, ic->journal_entries);
3141                 arg_count = 3;
3142                 arg_count += !!ic->meta_dev;
3143                 arg_count += ic->sectors_per_block != 1;
3144                 arg_count += !!(ic->sb->flags & cpu_to_le32(SB_FLAG_RECALCULATING));
3145                 arg_count += ic->discard;
3146                 arg_count += ic->mode == 'J';
3147                 arg_count += ic->mode == 'J';
3148                 arg_count += ic->mode == 'B';
3149                 arg_count += ic->mode == 'B';
3150                 arg_count += !!ic->internal_hash_alg.alg_string;
3151                 arg_count += !!ic->journal_crypt_alg.alg_string;
3152                 arg_count += !!ic->journal_mac_alg.alg_string;
3153                 arg_count += (ic->sb->flags & cpu_to_le32(SB_FLAG_FIXED_PADDING)) != 0;
3154                 arg_count += ic->legacy_recalculate;
3155                 DMEMIT("%s %llu %u %c %u", ic->dev->name, ic->start,
3156                        ic->tag_size, ic->mode, arg_count);
3157                 if (ic->meta_dev)
3158                         DMEMIT(" meta_device:%s", ic->meta_dev->name);
3159                 if (ic->sectors_per_block != 1)
3160                         DMEMIT(" block_size:%u", ic->sectors_per_block << SECTOR_SHIFT);
3161                 if (ic->sb->flags & cpu_to_le32(SB_FLAG_RECALCULATING))
3162                         DMEMIT(" recalculate");
3163                 if (ic->discard)
3164                         DMEMIT(" allow_discards");
3165                 DMEMIT(" journal_sectors:%u", ic->initial_sectors - SB_SECTORS);
3166                 DMEMIT(" interleave_sectors:%u", 1U << ic->sb->log2_interleave_sectors);
3167                 DMEMIT(" buffer_sectors:%u", 1U << ic->log2_buffer_sectors);
3168                 if (ic->mode == 'J') {
3169                         DMEMIT(" journal_watermark:%u", (unsigned)watermark_percentage);
3170                         DMEMIT(" commit_time:%u", ic->autocommit_msec);
3171                 }
3172                 if (ic->mode == 'B') {
3173                         DMEMIT(" sectors_per_bit:%llu", (sector_t)ic->sectors_per_block << ic->log2_blocks_per_bitmap_bit);
3174                         DMEMIT(" bitmap_flush_interval:%u", jiffies_to_msecs(ic->bitmap_flush_interval));
3175                 }
3176                 if ((ic->sb->flags & cpu_to_le32(SB_FLAG_FIXED_PADDING)) != 0)
3177                         DMEMIT(" fix_padding");
3178                 if (ic->legacy_recalculate)
3179                         DMEMIT(" legacy_recalculate");
3180
3181 #define EMIT_ALG(a, n)                                                  \
3182                 do {                                                    \
3183                         if (ic->a.alg_string) {                         \
3184                                 DMEMIT(" %s:%s", n, ic->a.alg_string);  \
3185                                 if (ic->a.key_string)                   \
3186                                         DMEMIT(":%s", ic->a.key_string);\
3187                         }                                               \
3188                 } while (0)
3189                 EMIT_ALG(internal_hash_alg, "internal_hash");
3190                 EMIT_ALG(journal_crypt_alg, "journal_crypt");
3191                 EMIT_ALG(journal_mac_alg, "journal_mac");
3192                 break;
3193         }
3194         }
3195 }
3196
3197 static int dm_integrity_iterate_devices(struct dm_target *ti,
3198                                         iterate_devices_callout_fn fn, void *data)
3199 {
3200         struct dm_integrity_c *ic = ti->private;
3201
3202         if (!ic->meta_dev)
3203                 return fn(ti, ic->dev, ic->start + ic->initial_sectors + ic->metadata_run, ti->len, data);
3204         else
3205                 return fn(ti, ic->dev, 0, ti->len, data);
3206 }
3207
3208 static void dm_integrity_io_hints(struct dm_target *ti, struct queue_limits *limits)
3209 {
3210         struct dm_integrity_c *ic = ti->private;
3211
3212         if (ic->sectors_per_block > 1) {
3213                 limits->logical_block_size = ic->sectors_per_block << SECTOR_SHIFT;
3214                 limits->physical_block_size = ic->sectors_per_block << SECTOR_SHIFT;
3215                 blk_limits_io_min(limits, ic->sectors_per_block << SECTOR_SHIFT);
3216         }
3217 }
3218
3219 static void calculate_journal_section_size(struct dm_integrity_c *ic)
3220 {
3221         unsigned sector_space = JOURNAL_SECTOR_DATA;
3222
3223         ic->journal_sections = le32_to_cpu(ic->sb->journal_sections);
3224         ic->journal_entry_size = roundup(offsetof(struct journal_entry, last_bytes[ic->sectors_per_block]) + ic->tag_size,
3225                                          JOURNAL_ENTRY_ROUNDUP);
3226
3227         if (ic->sb->flags & cpu_to_le32(SB_FLAG_HAVE_JOURNAL_MAC))
3228                 sector_space -= JOURNAL_MAC_PER_SECTOR;
3229         ic->journal_entries_per_sector = sector_space / ic->journal_entry_size;
3230         ic->journal_section_entries = ic->journal_entries_per_sector * JOURNAL_BLOCK_SECTORS;
3231         ic->journal_section_sectors = (ic->journal_section_entries << ic->sb->log2_sectors_per_block) + JOURNAL_BLOCK_SECTORS;
3232         ic->journal_entries = ic->journal_section_entries * ic->journal_sections;
3233 }
3234
3235 static int calculate_device_limits(struct dm_integrity_c *ic)
3236 {
3237         __u64 initial_sectors;
3238
3239         calculate_journal_section_size(ic);
3240         initial_sectors = SB_SECTORS + (__u64)ic->journal_section_sectors * ic->journal_sections;
3241         if (initial_sectors + METADATA_PADDING_SECTORS >= ic->meta_device_sectors || initial_sectors > UINT_MAX)
3242                 return -EINVAL;
3243         ic->initial_sectors = initial_sectors;
3244
3245         if (!ic->meta_dev) {
3246                 sector_t last_sector, last_area, last_offset;
3247
3248                 /* we have to maintain excessive padding for compatibility with existing volumes */
3249                 __u64 metadata_run_padding =
3250                         ic->sb->flags & cpu_to_le32(SB_FLAG_FIXED_PADDING) ?
3251                         (__u64)(METADATA_PADDING_SECTORS << SECTOR_SHIFT) :
3252                         (__u64)(1 << SECTOR_SHIFT << METADATA_PADDING_SECTORS);
3253
3254                 ic->metadata_run = round_up((__u64)ic->tag_size << (ic->sb->log2_interleave_sectors - ic->sb->log2_sectors_per_block),
3255                                             metadata_run_padding) >> SECTOR_SHIFT;
3256                 if (!(ic->metadata_run & (ic->metadata_run - 1)))
3257                         ic->log2_metadata_run = __ffs(ic->metadata_run);
3258                 else
3259                         ic->log2_metadata_run = -1;
3260
3261                 get_area_and_offset(ic, ic->provided_data_sectors - 1, &last_area, &last_offset);
3262                 last_sector = get_data_sector(ic, last_area, last_offset);
3263                 if (last_sector < ic->start || last_sector >= ic->meta_device_sectors)
3264                         return -EINVAL;
3265         } else {
3266                 __u64 meta_size = (ic->provided_data_sectors >> ic->sb->log2_sectors_per_block) * ic->tag_size;
3267                 meta_size = (meta_size + ((1U << (ic->log2_buffer_sectors + SECTOR_SHIFT)) - 1))
3268                                 >> (ic->log2_buffer_sectors + SECTOR_SHIFT);
3269                 meta_size <<= ic->log2_buffer_sectors;
3270                 if (ic->initial_sectors + meta_size < ic->initial_sectors ||
3271                     ic->initial_sectors + meta_size > ic->meta_device_sectors)
3272                         return -EINVAL;
3273                 ic->metadata_run = 1;
3274                 ic->log2_metadata_run = 0;
3275         }
3276
3277         return 0;
3278 }
3279
3280 static void get_provided_data_sectors(struct dm_integrity_c *ic)
3281 {
3282         if (!ic->meta_dev) {
3283                 int test_bit;
3284                 ic->provided_data_sectors = 0;
3285                 for (test_bit = fls64(ic->meta_device_sectors) - 1; test_bit >= 3; test_bit--) {
3286                         __u64 prev_data_sectors = ic->provided_data_sectors;
3287
3288                         ic->provided_data_sectors |= (sector_t)1 << test_bit;
3289                         if (calculate_device_limits(ic))
3290                                 ic->provided_data_sectors = prev_data_sectors;
3291                 }
3292         } else {
3293                 ic->provided_data_sectors = ic->data_device_sectors;
3294                 ic->provided_data_sectors &= ~(sector_t)(ic->sectors_per_block - 1);
3295         }
3296 }
3297
3298 static int initialize_superblock(struct dm_integrity_c *ic, unsigned journal_sectors, unsigned interleave_sectors)
3299 {
3300         unsigned journal_sections;
3301         int test_bit;
3302
3303         memset(ic->sb, 0, SB_SECTORS << SECTOR_SHIFT);
3304         memcpy(ic->sb->magic, SB_MAGIC, 8);
3305         ic->sb->integrity_tag_size = cpu_to_le16(ic->tag_size);
3306         ic->sb->log2_sectors_per_block = __ffs(ic->sectors_per_block);
3307         if (ic->journal_mac_alg.alg_string)
3308                 ic->sb->flags |= cpu_to_le32(SB_FLAG_HAVE_JOURNAL_MAC);
3309
3310         calculate_journal_section_size(ic);
3311         journal_sections = journal_sectors / ic->journal_section_sectors;
3312         if (!journal_sections)
3313                 journal_sections = 1;
3314
3315         if (!ic->meta_dev) {
3316                 if (ic->fix_padding)
3317                         ic->sb->flags |= cpu_to_le32(SB_FLAG_FIXED_PADDING);
3318                 ic->sb->journal_sections = cpu_to_le32(journal_sections);
3319                 if (!interleave_sectors)
3320                         interleave_sectors = DEFAULT_INTERLEAVE_SECTORS;
3321                 ic->sb->log2_interleave_sectors = __fls(interleave_sectors);
3322                 ic->sb->log2_interleave_sectors = max((__u8)MIN_LOG2_INTERLEAVE_SECTORS, ic->sb->log2_interleave_sectors);
3323                 ic->sb->log2_interleave_sectors = min((__u8)MAX_LOG2_INTERLEAVE_SECTORS, ic->sb->log2_interleave_sectors);
3324
3325                 get_provided_data_sectors(ic);
3326                 if (!ic->provided_data_sectors)
3327                         return -EINVAL;
3328         } else {
3329                 ic->sb->log2_interleave_sectors = 0;
3330
3331                 get_provided_data_sectors(ic);
3332                 if (!ic->provided_data_sectors)
3333                         return -EINVAL;
3334
3335 try_smaller_buffer:
3336                 ic->sb->journal_sections = cpu_to_le32(0);
3337                 for (test_bit = fls(journal_sections) - 1; test_bit >= 0; test_bit--) {
3338                         __u32 prev_journal_sections = le32_to_cpu(ic->sb->journal_sections);
3339                         __u32 test_journal_sections = prev_journal_sections | (1U << test_bit);
3340                         if (test_journal_sections > journal_sections)
3341                                 continue;
3342                         ic->sb->journal_sections = cpu_to_le32(test_journal_sections);
3343                         if (calculate_device_limits(ic))
3344                                 ic->sb->journal_sections = cpu_to_le32(prev_journal_sections);
3345
3346                 }
3347                 if (!le32_to_cpu(ic->sb->journal_sections)) {
3348                         if (ic->log2_buffer_sectors > 3) {
3349                                 ic->log2_buffer_sectors--;
3350                                 goto try_smaller_buffer;
3351                         }
3352                         return -EINVAL;
3353                 }
3354         }
3355
3356         ic->sb->provided_data_sectors = cpu_to_le64(ic->provided_data_sectors);
3357
3358         sb_set_version(ic);
3359
3360         return 0;
3361 }
3362
3363 static void dm_integrity_set(struct dm_target *ti, struct dm_integrity_c *ic)
3364 {
3365         struct gendisk *disk = dm_disk(dm_table_get_md(ti->table));
3366         struct blk_integrity bi;
3367
3368         memset(&bi, 0, sizeof(bi));
3369         bi.profile = &dm_integrity_profile;
3370         bi.tuple_size = ic->tag_size;
3371         bi.tag_size = bi.tuple_size;
3372         bi.interval_exp = ic->sb->log2_sectors_per_block + SECTOR_SHIFT;
3373
3374         blk_integrity_register(disk, &bi);
3375         blk_queue_max_integrity_segments(disk->queue, UINT_MAX);
3376 }
3377
3378 static void dm_integrity_free_page_list(struct page_list *pl)
3379 {
3380         unsigned i;
3381
3382         if (!pl)
3383                 return;
3384         for (i = 0; pl[i].page; i++)
3385                 __free_page(pl[i].page);
3386         kvfree(pl);
3387 }
3388
3389 static struct page_list *dm_integrity_alloc_page_list(unsigned n_pages)
3390 {
3391         struct page_list *pl;
3392         unsigned i;
3393
3394         pl = kvmalloc_array(n_pages + 1, sizeof(struct page_list), GFP_KERNEL | __GFP_ZERO);
3395         if (!pl)
3396                 return NULL;
3397
3398         for (i = 0; i < n_pages; i++) {
3399                 pl[i].page = alloc_page(GFP_KERNEL);
3400                 if (!pl[i].page) {
3401                         dm_integrity_free_page_list(pl);
3402                         return NULL;
3403                 }
3404                 if (i)
3405                         pl[i - 1].next = &pl[i];
3406         }
3407         pl[i].page = NULL;
3408         pl[i].next = NULL;
3409
3410         return pl;
3411 }
3412
3413 static void dm_integrity_free_journal_scatterlist(struct dm_integrity_c *ic, struct scatterlist **sl)
3414 {
3415         unsigned i;
3416         for (i = 0; i < ic->journal_sections; i++)
3417                 kvfree(sl[i]);
3418         kvfree(sl);
3419 }
3420
3421 static struct scatterlist **dm_integrity_alloc_journal_scatterlist(struct dm_integrity_c *ic,
3422                                                                    struct page_list *pl)
3423 {
3424         struct scatterlist **sl;
3425         unsigned i;
3426
3427         sl = kvmalloc_array(ic->journal_sections,
3428                             sizeof(struct scatterlist *),
3429                             GFP_KERNEL | __GFP_ZERO);
3430         if (!sl)
3431                 return NULL;
3432
3433         for (i = 0; i < ic->journal_sections; i++) {
3434                 struct scatterlist *s;
3435                 unsigned start_index, start_offset;
3436                 unsigned end_index, end_offset;
3437                 unsigned n_pages;
3438                 unsigned idx;
3439
3440                 page_list_location(ic, i, 0, &start_index, &start_offset);
3441                 page_list_location(ic, i, ic->journal_section_sectors - 1,
3442                                    &end_index, &end_offset);
3443
3444                 n_pages = (end_index - start_index + 1);
3445
3446                 s = kvmalloc_array(n_pages, sizeof(struct scatterlist),
3447                                    GFP_KERNEL);
3448                 if (!s) {
3449                         dm_integrity_free_journal_scatterlist(ic, sl);
3450                         return NULL;
3451                 }
3452
3453                 sg_init_table(s, n_pages);
3454                 for (idx = start_index; idx <= end_index; idx++) {
3455                         char *va = lowmem_page_address(pl[idx].page);
3456                         unsigned start = 0, end = PAGE_SIZE;
3457                         if (idx == start_index)
3458                                 start = start_offset;
3459                         if (idx == end_index)
3460                                 end = end_offset + (1 << SECTOR_SHIFT);
3461                         sg_set_buf(&s[idx - start_index], va + start, end - start);
3462                 }
3463
3464                 sl[i] = s;
3465         }
3466
3467         return sl;
3468 }
3469
3470 static void free_alg(struct alg_spec *a)
3471 {
3472         kfree_sensitive(a->alg_string);
3473         kfree_sensitive(a->key);
3474         memset(a, 0, sizeof *a);
3475 }
3476
3477 static int get_alg_and_key(const char *arg, struct alg_spec *a, char **error, char *error_inval)
3478 {
3479         char *k;
3480
3481         free_alg(a);
3482
3483         a->alg_string = kstrdup(strchr(arg, ':') + 1, GFP_KERNEL);
3484         if (!a->alg_string)
3485                 goto nomem;
3486
3487         k = strchr(a->alg_string, ':');
3488         if (k) {
3489                 *k = 0;
3490                 a->key_string = k + 1;
3491                 if (strlen(a->key_string) & 1)
3492                         goto inval;
3493
3494                 a->key_size = strlen(a->key_string) / 2;
3495                 a->key = kmalloc(a->key_size, GFP_KERNEL);
3496                 if (!a->key)
3497                         goto nomem;
3498                 if (hex2bin(a->key, a->key_string, a->key_size))
3499                         goto inval;
3500         }
3501
3502         return 0;
3503 inval:
3504         *error = error_inval;
3505         return -EINVAL;
3506 nomem:
3507         *error = "Out of memory for an argument";
3508         return -ENOMEM;
3509 }
3510
3511 static int get_mac(struct crypto_shash **hash, struct alg_spec *a, char **error,
3512                    char *error_alg, char *error_key)
3513 {
3514         int r;
3515
3516         if (a->alg_string) {
3517                 *hash = crypto_alloc_shash(a->alg_string, 0, CRYPTO_ALG_ALLOCATES_MEMORY);
3518                 if (IS_ERR(*hash)) {
3519                         *error = error_alg;
3520                         r = PTR_ERR(*hash);
3521                         *hash = NULL;
3522                         return r;
3523                 }
3524
3525                 if (a->key) {
3526                         r = crypto_shash_setkey(*hash, a->key, a->key_size);
3527                         if (r) {
3528                                 *error = error_key;
3529                                 return r;
3530                         }
3531                 } else if (crypto_shash_get_flags(*hash) & CRYPTO_TFM_NEED_KEY) {
3532                         *error = error_key;
3533                         return -ENOKEY;
3534                 }
3535         }
3536
3537         return 0;
3538 }
3539
3540 static int create_journal(struct dm_integrity_c *ic, char **error)
3541 {
3542         int r = 0;
3543         unsigned i;
3544         __u64 journal_pages, journal_desc_size, journal_tree_size;
3545         unsigned char *crypt_data = NULL, *crypt_iv = NULL;
3546         struct skcipher_request *req = NULL;
3547
3548         ic->commit_ids[0] = cpu_to_le64(0x1111111111111111ULL);
3549         ic->commit_ids[1] = cpu_to_le64(0x2222222222222222ULL);
3550         ic->commit_ids[2] = cpu_to_le64(0x3333333333333333ULL);
3551         ic->commit_ids[3] = cpu_to_le64(0x4444444444444444ULL);
3552
3553         journal_pages = roundup((__u64)ic->journal_sections * ic->journal_section_sectors,
3554                                 PAGE_SIZE >> SECTOR_SHIFT) >> (PAGE_SHIFT - SECTOR_SHIFT);
3555         journal_desc_size = journal_pages * sizeof(struct page_list);
3556         if (journal_pages >= totalram_pages() - totalhigh_pages() || journal_desc_size > ULONG_MAX) {
3557                 *error = "Journal doesn't fit into memory";
3558                 r = -ENOMEM;
3559                 goto bad;
3560         }
3561         ic->journal_pages = journal_pages;
3562
3563         ic->journal = dm_integrity_alloc_page_list(ic->journal_pages);
3564         if (!ic->journal) {
3565                 *error = "Could not allocate memory for journal";
3566                 r = -ENOMEM;
3567                 goto bad;
3568         }
3569         if (ic->journal_crypt_alg.alg_string) {
3570                 unsigned ivsize, blocksize;
3571                 struct journal_completion comp;
3572
3573                 comp.ic = ic;
3574                 ic->journal_crypt = crypto_alloc_skcipher(ic->journal_crypt_alg.alg_string, 0, CRYPTO_ALG_ALLOCATES_MEMORY);
3575                 if (IS_ERR(ic->journal_crypt)) {
3576                         *error = "Invalid journal cipher";
3577                         r = PTR_ERR(ic->journal_crypt);
3578                         ic->journal_crypt = NULL;
3579                         goto bad;
3580                 }
3581                 ivsize = crypto_skcipher_ivsize(ic->journal_crypt);
3582                 blocksize = crypto_skcipher_blocksize(ic->journal_crypt);
3583
3584                 if (ic->journal_crypt_alg.key) {
3585                         r = crypto_skcipher_setkey(ic->journal_crypt, ic->journal_crypt_alg.key,
3586                                                    ic->journal_crypt_alg.key_size);
3587                         if (r) {
3588                                 *error = "Error setting encryption key";
3589                                 goto bad;
3590                         }
3591                 }
3592                 DEBUG_print("cipher %s, block size %u iv size %u\n",
3593                             ic->journal_crypt_alg.alg_string, blocksize, ivsize);
3594
3595                 ic->journal_io = dm_integrity_alloc_page_list(ic->journal_pages);
3596                 if (!ic->journal_io) {
3597                         *error = "Could not allocate memory for journal io";
3598                         r = -ENOMEM;
3599                         goto bad;
3600                 }
3601
3602                 if (blocksize == 1) {
3603                         struct scatterlist *sg;
3604
3605                         req = skcipher_request_alloc(ic->journal_crypt, GFP_KERNEL);
3606                         if (!req) {
3607                                 *error = "Could not allocate crypt request";
3608                                 r = -ENOMEM;
3609                                 goto bad;
3610                         }
3611
3612                         crypt_iv = kzalloc(ivsize, GFP_KERNEL);
3613                         if (!crypt_iv) {
3614                                 *error = "Could not allocate iv";
3615                                 r = -ENOMEM;
3616                                 goto bad;
3617                         }
3618
3619                         ic->journal_xor = dm_integrity_alloc_page_list(ic->journal_pages);
3620                         if (!ic->journal_xor) {
3621                                 *error = "Could not allocate memory for journal xor";
3622                                 r = -ENOMEM;
3623                                 goto bad;
3624                         }
3625
3626                         sg = kvmalloc_array(ic->journal_pages + 1,
3627                                             sizeof(struct scatterlist),
3628                                             GFP_KERNEL);
3629                         if (!sg) {
3630                                 *error = "Unable to allocate sg list";
3631                                 r = -ENOMEM;
3632                                 goto bad;
3633                         }
3634                         sg_init_table(sg, ic->journal_pages + 1);
3635                         for (i = 0; i < ic->journal_pages; i++) {
3636                                 char *va = lowmem_page_address(ic->journal_xor[i].page);
3637                                 clear_page(va);
3638                                 sg_set_buf(&sg[i], va, PAGE_SIZE);
3639                         }
3640                         sg_set_buf(&sg[i], &ic->commit_ids, sizeof ic->commit_ids);
3641
3642                         skcipher_request_set_crypt(req, sg, sg,
3643                                                    PAGE_SIZE * ic->journal_pages + sizeof ic->commit_ids, crypt_iv);
3644                         init_completion(&comp.comp);
3645                         comp.in_flight = (atomic_t)ATOMIC_INIT(1);
3646                         if (do_crypt(true, req, &comp))
3647                                 wait_for_completion(&comp.comp);
3648                         kvfree(sg);
3649                         r = dm_integrity_failed(ic);
3650                         if (r) {
3651                                 *error = "Unable to encrypt journal";
3652                                 goto bad;
3653                         }
3654                         DEBUG_bytes(lowmem_page_address(ic->journal_xor[0].page), 64, "xor data");
3655
3656                         crypto_free_skcipher(ic->journal_crypt);
3657                         ic->journal_crypt = NULL;
3658                 } else {
3659                         unsigned crypt_len = roundup(ivsize, blocksize);
3660
3661                         req = skcipher_request_alloc(ic->journal_crypt, GFP_KERNEL);
3662                         if (!req) {
3663                                 *error = "Could not allocate crypt request";
3664                                 r = -ENOMEM;
3665                                 goto bad;
3666                         }
3667
3668                         crypt_iv = kmalloc(ivsize, GFP_KERNEL);
3669                         if (!crypt_iv) {
3670                                 *error = "Could not allocate iv";
3671                                 r = -ENOMEM;
3672                                 goto bad;
3673                         }
3674
3675                         crypt_data = kmalloc(crypt_len, GFP_KERNEL);
3676                         if (!crypt_data) {
3677                                 *error = "Unable to allocate crypt data";
3678                                 r = -ENOMEM;
3679                                 goto bad;
3680                         }
3681
3682                         ic->journal_scatterlist = dm_integrity_alloc_journal_scatterlist(ic, ic->journal);
3683                         if (!ic->journal_scatterlist) {
3684                                 *error = "Unable to allocate sg list";
3685                                 r = -ENOMEM;
3686                                 goto bad;
3687                         }
3688                         ic->journal_io_scatterlist = dm_integrity_alloc_journal_scatterlist(ic, ic->journal_io);
3689                         if (!ic->journal_io_scatterlist) {
3690                                 *error = "Unable to allocate sg list";
3691                                 r = -ENOMEM;
3692                                 goto bad;
3693                         }
3694                         ic->sk_requests = kvmalloc_array(ic->journal_sections,
3695                                                          sizeof(struct skcipher_request *),
3696                                                          GFP_KERNEL | __GFP_ZERO);
3697                         if (!ic->sk_requests) {
3698                                 *error = "Unable to allocate sk requests";
3699                                 r = -ENOMEM;
3700                                 goto bad;
3701                         }
3702                         for (i = 0; i < ic->journal_sections; i++) {
3703                                 struct scatterlist sg;
3704                                 struct skcipher_request *section_req;
3705                                 __u32 section_le = cpu_to_le32(i);
3706
3707                                 memset(crypt_iv, 0x00, ivsize);
3708                                 memset(crypt_data, 0x00, crypt_len);
3709                                 memcpy(crypt_data, &section_le, min((size_t)crypt_len, sizeof(section_le)));
3710
3711                                 sg_init_one(&sg, crypt_data, crypt_len);
3712                                 skcipher_request_set_crypt(req, &sg, &sg, crypt_len, crypt_iv);
3713                                 init_completion(&comp.comp);
3714                                 comp.in_flight = (atomic_t)ATOMIC_INIT(1);
3715                                 if (do_crypt(true, req, &comp))
3716                                         wait_for_completion(&comp.comp);
3717
3718                                 r = dm_integrity_failed(ic);
3719                                 if (r) {
3720                                         *error = "Unable to generate iv";
3721                                         goto bad;
3722                                 }
3723
3724                                 section_req = skcipher_request_alloc(ic->journal_crypt, GFP_KERNEL);
3725                                 if (!section_req) {
3726                                         *error = "Unable to allocate crypt request";
3727                                         r = -ENOMEM;
3728                                         goto bad;
3729                                 }
3730                                 section_req->iv = kmalloc_array(ivsize, 2,
3731                                                                 GFP_KERNEL);
3732                                 if (!section_req->iv) {
3733                                         skcipher_request_free(section_req);
3734                                         *error = "Unable to allocate iv";
3735                                         r = -ENOMEM;
3736                                         goto bad;
3737                                 }
3738                                 memcpy(section_req->iv + ivsize, crypt_data, ivsize);
3739                                 section_req->cryptlen = (size_t)ic->journal_section_sectors << SECTOR_SHIFT;
3740                                 ic->sk_requests[i] = section_req;
3741                                 DEBUG_bytes(crypt_data, ivsize, "iv(%u)", i);
3742                         }
3743                 }
3744         }
3745
3746         for (i = 0; i < N_COMMIT_IDS; i++) {
3747                 unsigned j;
3748 retest_commit_id:
3749                 for (j = 0; j < i; j++) {
3750                         if (ic->commit_ids[j] == ic->commit_ids[i]) {
3751                                 ic->commit_ids[i] = cpu_to_le64(le64_to_cpu(ic->commit_ids[i]) + 1);
3752                                 goto retest_commit_id;
3753                         }
3754                 }
3755                 DEBUG_print("commit id %u: %016llx\n", i, ic->commit_ids[i]);
3756         }
3757
3758         journal_tree_size = (__u64)ic->journal_entries * sizeof(struct journal_node);
3759         if (journal_tree_size > ULONG_MAX) {
3760                 *error = "Journal doesn't fit into memory";
3761                 r = -ENOMEM;
3762                 goto bad;
3763         }
3764         ic->journal_tree = kvmalloc(journal_tree_size, GFP_KERNEL);
3765         if (!ic->journal_tree) {
3766                 *error = "Could not allocate memory for journal tree";
3767                 r = -ENOMEM;
3768         }
3769 bad:
3770         kfree(crypt_data);
3771         kfree(crypt_iv);
3772         skcipher_request_free(req);
3773
3774         return r;
3775 }
3776
3777 /*
3778  * Construct a integrity mapping
3779  *
3780  * Arguments:
3781  *      device
3782  *      offset from the start of the device
3783  *      tag size
3784  *      D - direct writes, J - journal writes, B - bitmap mode, R - recovery mode
3785  *      number of optional arguments
3786  *      optional arguments:
3787  *              journal_sectors
3788  *              interleave_sectors
3789  *              buffer_sectors
3790  *              journal_watermark
3791  *              commit_time
3792  *              meta_device
3793  *              block_size
3794  *              sectors_per_bit
3795  *              bitmap_flush_interval
3796  *              internal_hash
3797  *              journal_crypt
3798  *              journal_mac
3799  *              recalculate
3800  */
3801 static int dm_integrity_ctr(struct dm_target *ti, unsigned argc, char **argv)
3802 {
3803         struct dm_integrity_c *ic;
3804         char dummy;
3805         int r;
3806         unsigned extra_args;
3807         struct dm_arg_set as;
3808         static const struct dm_arg _args[] = {
3809                 {0, 16, "Invalid number of feature args"},
3810         };
3811         unsigned journal_sectors, interleave_sectors, buffer_sectors, journal_watermark, sync_msec;
3812         bool should_write_sb;
3813         __u64 threshold;
3814         unsigned long long start;
3815         __s8 log2_sectors_per_bitmap_bit = -1;
3816         __s8 log2_blocks_per_bitmap_bit;
3817         __u64 bits_in_journal;
3818         __u64 n_bitmap_bits;
3819
3820 #define DIRECT_ARGUMENTS        4
3821
3822         if (argc <= DIRECT_ARGUMENTS) {
3823                 ti->error = "Invalid argument count";
3824                 return -EINVAL;
3825         }
3826
3827         ic = kzalloc(sizeof(struct dm_integrity_c), GFP_KERNEL);
3828         if (!ic) {
3829                 ti->error = "Cannot allocate integrity context";
3830                 return -ENOMEM;
3831         }
3832         ti->private = ic;
3833         ti->per_io_data_size = sizeof(struct dm_integrity_io);
3834         ic->ti = ti;
3835
3836         ic->in_progress = RB_ROOT;
3837         INIT_LIST_HEAD(&ic->wait_list);
3838         init_waitqueue_head(&ic->endio_wait);
3839         bio_list_init(&ic->flush_bio_list);
3840         init_waitqueue_head(&ic->copy_to_journal_wait);
3841         init_completion(&ic->crypto_backoff);
3842         atomic64_set(&ic->number_of_mismatches, 0);
3843         ic->bitmap_flush_interval = BITMAP_FLUSH_INTERVAL;
3844
3845         r = dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &ic->dev);
3846         if (r) {
3847                 ti->error = "Device lookup failed";
3848                 goto bad;
3849         }
3850
3851         if (sscanf(argv[1], "%llu%c", &start, &dummy) != 1 || start != (sector_t)start) {
3852                 ti->error = "Invalid starting offset";
3853                 r = -EINVAL;
3854                 goto bad;
3855         }
3856         ic->start = start;
3857
3858         if (strcmp(argv[2], "-")) {
3859                 if (sscanf(argv[2], "%u%c", &ic->tag_size, &dummy) != 1 || !ic->tag_size) {
3860                         ti->error = "Invalid tag size";
3861                         r = -EINVAL;
3862                         goto bad;
3863                 }
3864         }
3865
3866         if (!strcmp(argv[3], "J") || !strcmp(argv[3], "B") ||
3867             !strcmp(argv[3], "D") || !strcmp(argv[3], "R")) {
3868                 ic->mode = argv[3][0];
3869         } else {
3870                 ti->error = "Invalid mode (expecting J, B, D, R)";
3871                 r = -EINVAL;
3872                 goto bad;
3873         }
3874
3875         journal_sectors = 0;
3876         interleave_sectors = DEFAULT_INTERLEAVE_SECTORS;
3877         buffer_sectors = DEFAULT_BUFFER_SECTORS;
3878         journal_watermark = DEFAULT_JOURNAL_WATERMARK;
3879         sync_msec = DEFAULT_SYNC_MSEC;
3880         ic->sectors_per_block = 1;
3881
3882         as.argc = argc - DIRECT_ARGUMENTS;
3883         as.argv = argv + DIRECT_ARGUMENTS;
3884         r = dm_read_arg_group(_args, &as, &extra_args, &ti->error);
3885         if (r)
3886                 goto bad;
3887
3888         while (extra_args--) {
3889                 const char *opt_string;
3890                 unsigned val;
3891                 unsigned long long llval;
3892                 opt_string = dm_shift_arg(&as);
3893                 if (!opt_string) {
3894                         r = -EINVAL;
3895                         ti->error = "Not enough feature arguments";
3896                         goto bad;
3897                 }
3898                 if (sscanf(opt_string, "journal_sectors:%u%c", &val, &dummy) == 1)
3899                         journal_sectors = val ? val : 1;
3900                 else if (sscanf(opt_string, "interleave_sectors:%u%c", &val, &dummy) == 1)
3901                         interleave_sectors = val;
3902                 else if (sscanf(opt_string, "buffer_sectors:%u%c", &val, &dummy) == 1)
3903                         buffer_sectors = val;
3904                 else if (sscanf(opt_string, "journal_watermark:%u%c", &val, &dummy) == 1 && val <= 100)
3905                         journal_watermark = val;
3906                 else if (sscanf(opt_string, "commit_time:%u%c", &val, &dummy) == 1)
3907                         sync_msec = val;
3908                 else if (!strncmp(opt_string, "meta_device:", strlen("meta_device:"))) {
3909                         if (ic->meta_dev) {
3910                                 dm_put_device(ti, ic->meta_dev);
3911                                 ic->meta_dev = NULL;
3912                         }
3913                         r = dm_get_device(ti, strchr(opt_string, ':') + 1,
3914                                           dm_table_get_mode(ti->table), &ic->meta_dev);
3915                         if (r) {
3916                                 ti->error = "Device lookup failed";
3917                                 goto bad;
3918                         }
3919                 } else if (sscanf(opt_string, "block_size:%u%c", &val, &dummy) == 1) {
3920                         if (val < 1 << SECTOR_SHIFT ||
3921                             val > MAX_SECTORS_PER_BLOCK << SECTOR_SHIFT ||
3922                             (val & (val -1))) {
3923                                 r = -EINVAL;
3924                                 ti->error = "Invalid block_size argument";
3925                                 goto bad;
3926                         }
3927                         ic->sectors_per_block = val >> SECTOR_SHIFT;
3928                 } else if (sscanf(opt_string, "sectors_per_bit:%llu%c", &llval, &dummy) == 1) {
3929                         log2_sectors_per_bitmap_bit = !llval ? 0 : __ilog2_u64(llval);
3930                 } else if (sscanf(opt_string, "bitmap_flush_interval:%u%c", &val, &dummy) == 1) {
3931                         if (val >= (uint64_t)UINT_MAX * 1000 / HZ) {
3932                                 r = -EINVAL;
3933                                 ti->error = "Invalid bitmap_flush_interval argument";
3934                                 goto bad;
3935                         }
3936                         ic->bitmap_flush_interval = msecs_to_jiffies(val);
3937                 } else if (!strncmp(opt_string, "internal_hash:", strlen("internal_hash:"))) {
3938                         r = get_alg_and_key(opt_string, &ic->internal_hash_alg, &ti->error,
3939                                             "Invalid internal_hash argument");
3940                         if (r)
3941                                 goto bad;
3942                 } else if (!strncmp(opt_string, "journal_crypt:", strlen("journal_crypt:"))) {
3943                         r = get_alg_and_key(opt_string, &ic->journal_crypt_alg, &ti->error,
3944                                             "Invalid journal_crypt argument");
3945                         if (r)
3946                                 goto bad;
3947                 } else if (!strncmp(opt_string, "journal_mac:", strlen("journal_mac:"))) {
3948                         r = get_alg_and_key(opt_string, &ic->journal_mac_alg,  &ti->error,
3949                                             "Invalid journal_mac argument");
3950                         if (r)
3951                                 goto bad;
3952                 } else if (!strcmp(opt_string, "recalculate")) {
3953                         ic->recalculate_flag = true;
3954                 } else if (!strcmp(opt_string, "allow_discards")) {
3955                         ic->discard = true;
3956                 } else if (!strcmp(opt_string, "fix_padding")) {
3957                         ic->fix_padding = true;
3958                 } else if (!strcmp(opt_string, "legacy_recalculate")) {
3959                         ic->legacy_recalculate = true;
3960                 } else {
3961                         r = -EINVAL;
3962                         ti->error = "Invalid argument";
3963                         goto bad;
3964                 }
3965         }
3966
3967         ic->data_device_sectors = i_size_read(ic->dev->bdev->bd_inode) >> SECTOR_SHIFT;
3968         if (!ic->meta_dev)
3969                 ic->meta_device_sectors = ic->data_device_sectors;
3970         else
3971                 ic->meta_device_sectors = i_size_read(ic->meta_dev->bdev->bd_inode) >> SECTOR_SHIFT;
3972
3973         if (!journal_sectors) {
3974                 journal_sectors = min((sector_t)DEFAULT_MAX_JOURNAL_SECTORS,
3975                                       ic->data_device_sectors >> DEFAULT_JOURNAL_SIZE_FACTOR);
3976         }
3977
3978         if (!buffer_sectors)
3979                 buffer_sectors = 1;
3980         ic->log2_buffer_sectors = min((int)__fls(buffer_sectors), 31 - SECTOR_SHIFT);
3981
3982         r = get_mac(&ic->internal_hash, &ic->internal_hash_alg, &ti->error,
3983                     "Invalid internal hash", "Error setting internal hash key");
3984         if (r)
3985                 goto bad;
3986
3987         r = get_mac(&ic->journal_mac, &ic->journal_mac_alg, &ti->error,
3988                     "Invalid journal mac", "Error setting journal mac key");
3989         if (r)
3990                 goto bad;
3991
3992         if (!ic->tag_size) {
3993                 if (!ic->internal_hash) {
3994                         ti->error = "Unknown tag size";
3995                         r = -EINVAL;
3996                         goto bad;
3997                 }
3998                 ic->tag_size = crypto_shash_digestsize(ic->internal_hash);
3999         }
4000         if (ic->tag_size > MAX_TAG_SIZE) {
4001                 ti->error = "Too big tag size";
4002                 r = -EINVAL;
4003                 goto bad;
4004         }
4005         if (!(ic->tag_size & (ic->tag_size - 1)))
4006                 ic->log2_tag_size = __ffs(ic->tag_size);
4007         else
4008                 ic->log2_tag_size = -1;
4009
4010         if (ic->mode == 'B' && !ic->internal_hash) {
4011                 r = -EINVAL;
4012                 ti->error = "Bitmap mode can be only used with internal hash";
4013                 goto bad;
4014         }
4015
4016         if (ic->discard && !ic->internal_hash) {
4017                 r = -EINVAL;
4018                 ti->error = "Discard can be only used with internal hash";
4019                 goto bad;
4020         }
4021
4022         ic->autocommit_jiffies = msecs_to_jiffies(sync_msec);
4023         ic->autocommit_msec = sync_msec;
4024         timer_setup(&ic->autocommit_timer, autocommit_fn, 0);
4025
4026         ic->io = dm_io_client_create();
4027         if (IS_ERR(ic->io)) {
4028                 r = PTR_ERR(ic->io);
4029                 ic->io = NULL;
4030                 ti->error = "Cannot allocate dm io";
4031                 goto bad;
4032         }
4033
4034         r = mempool_init_slab_pool(&ic->journal_io_mempool, JOURNAL_IO_MEMPOOL, journal_io_cache);
4035         if (r) {
4036                 ti->error = "Cannot allocate mempool";
4037                 goto bad;
4038         }
4039
4040         ic->metadata_wq = alloc_workqueue("dm-integrity-metadata",
4041                                           WQ_MEM_RECLAIM, METADATA_WORKQUEUE_MAX_ACTIVE);
4042         if (!ic->metadata_wq) {
4043                 ti->error = "Cannot allocate workqueue";
4044                 r = -ENOMEM;
4045                 goto bad;
4046         }
4047
4048         /*
4049          * If this workqueue were percpu, it would cause bio reordering
4050          * and reduced performance.
4051          */
4052         ic->wait_wq = alloc_workqueue("dm-integrity-wait", WQ_MEM_RECLAIM | WQ_UNBOUND, 1);
4053         if (!ic->wait_wq) {
4054                 ti->error = "Cannot allocate workqueue";
4055                 r = -ENOMEM;
4056                 goto bad;
4057         }
4058
4059         ic->offload_wq = alloc_workqueue("dm-integrity-offload", WQ_MEM_RECLAIM,
4060                                           METADATA_WORKQUEUE_MAX_ACTIVE);
4061         if (!ic->offload_wq) {
4062                 ti->error = "Cannot allocate workqueue";
4063                 r = -ENOMEM;
4064                 goto bad;
4065         }
4066
4067         ic->commit_wq = alloc_workqueue("dm-integrity-commit", WQ_MEM_RECLAIM, 1);
4068         if (!ic->commit_wq) {
4069                 ti->error = "Cannot allocate workqueue";
4070                 r = -ENOMEM;
4071                 goto bad;
4072         }
4073         INIT_WORK(&ic->commit_work, integrity_commit);
4074
4075         if (ic->mode == 'J' || ic->mode == 'B') {
4076                 ic->writer_wq = alloc_workqueue("dm-integrity-writer", WQ_MEM_RECLAIM, 1);
4077                 if (!ic->writer_wq) {
4078                         ti->error = "Cannot allocate workqueue";
4079                         r = -ENOMEM;
4080                         goto bad;
4081                 }
4082                 INIT_WORK(&ic->writer_work, integrity_writer);
4083         }
4084
4085         ic->sb = alloc_pages_exact(SB_SECTORS << SECTOR_SHIFT, GFP_KERNEL);
4086         if (!ic->sb) {
4087                 r = -ENOMEM;
4088                 ti->error = "Cannot allocate superblock area";
4089                 goto bad;
4090         }
4091
4092         r = sync_rw_sb(ic, REQ_OP_READ, 0);
4093         if (r) {
4094                 ti->error = "Error reading superblock";
4095                 goto bad;
4096         }
4097         should_write_sb = false;
4098         if (memcmp(ic->sb->magic, SB_MAGIC, 8)) {
4099                 if (ic->mode != 'R') {
4100                         if (memchr_inv(ic->sb, 0, SB_SECTORS << SECTOR_SHIFT)) {
4101                                 r = -EINVAL;
4102                                 ti->error = "The device is not initialized";
4103                                 goto bad;
4104                         }
4105                 }
4106
4107                 r = initialize_superblock(ic, journal_sectors, interleave_sectors);
4108                 if (r) {
4109                         ti->error = "Could not initialize superblock";
4110                         goto bad;
4111                 }
4112                 if (ic->mode != 'R')
4113                         should_write_sb = true;
4114         }
4115
4116         if (!ic->sb->version || ic->sb->version > SB_VERSION_4) {
4117                 r = -EINVAL;
4118                 ti->error = "Unknown version";
4119                 goto bad;
4120         }
4121         if (le16_to_cpu(ic->sb->integrity_tag_size) != ic->tag_size) {
4122                 r = -EINVAL;
4123                 ti->error = "Tag size doesn't match the information in superblock";
4124                 goto bad;
4125         }
4126         if (ic->sb->log2_sectors_per_block != __ffs(ic->sectors_per_block)) {
4127                 r = -EINVAL;
4128                 ti->error = "Block size doesn't match the information in superblock";
4129                 goto bad;
4130         }
4131         if (!le32_to_cpu(ic->sb->journal_sections)) {
4132                 r = -EINVAL;
4133                 ti->error = "Corrupted superblock, journal_sections is 0";
4134                 goto bad;
4135         }
4136         /* make sure that ti->max_io_len doesn't overflow */
4137         if (!ic->meta_dev) {
4138                 if (ic->sb->log2_interleave_sectors < MIN_LOG2_INTERLEAVE_SECTORS ||
4139                     ic->sb->log2_interleave_sectors > MAX_LOG2_INTERLEAVE_SECTORS) {
4140                         r = -EINVAL;
4141                         ti->error = "Invalid interleave_sectors in the superblock";
4142                         goto bad;
4143                 }
4144         } else {
4145                 if (ic->sb->log2_interleave_sectors) {
4146                         r = -EINVAL;
4147                         ti->error = "Invalid interleave_sectors in the superblock";
4148                         goto bad;
4149                 }
4150         }
4151         if (!!(ic->sb->flags & cpu_to_le32(SB_FLAG_HAVE_JOURNAL_MAC)) != !!ic->journal_mac_alg.alg_string) {
4152                 r = -EINVAL;
4153                 ti->error = "Journal mac mismatch";
4154                 goto bad;
4155         }
4156
4157         get_provided_data_sectors(ic);
4158         if (!ic->provided_data_sectors) {
4159                 r = -EINVAL;
4160                 ti->error = "The device is too small";
4161                 goto bad;
4162         }
4163
4164 try_smaller_buffer:
4165         r = calculate_device_limits(ic);
4166         if (r) {
4167                 if (ic->meta_dev) {
4168                         if (ic->log2_buffer_sectors > 3) {
4169                                 ic->log2_buffer_sectors--;
4170                                 goto try_smaller_buffer;
4171                         }
4172                 }
4173                 ti->error = "The device is too small";
4174                 goto bad;
4175         }
4176
4177         if (log2_sectors_per_bitmap_bit < 0)
4178                 log2_sectors_per_bitmap_bit = __fls(DEFAULT_SECTORS_PER_BITMAP_BIT);
4179         if (log2_sectors_per_bitmap_bit < ic->sb->log2_sectors_per_block)
4180                 log2_sectors_per_bitmap_bit = ic->sb->log2_sectors_per_block;
4181
4182         bits_in_journal = ((__u64)ic->journal_section_sectors * ic->journal_sections) << (SECTOR_SHIFT + 3);
4183         if (bits_in_journal > UINT_MAX)
4184                 bits_in_journal = UINT_MAX;
4185         while (bits_in_journal < (ic->provided_data_sectors + ((sector_t)1 << log2_sectors_per_bitmap_bit) - 1) >> log2_sectors_per_bitmap_bit)
4186                 log2_sectors_per_bitmap_bit++;
4187
4188         log2_blocks_per_bitmap_bit = log2_sectors_per_bitmap_bit - ic->sb->log2_sectors_per_block;
4189         ic->log2_blocks_per_bitmap_bit = log2_blocks_per_bitmap_bit;
4190         if (should_write_sb) {
4191                 ic->sb->log2_blocks_per_bitmap_bit = log2_blocks_per_bitmap_bit;
4192         }
4193         n_bitmap_bits = ((ic->provided_data_sectors >> ic->sb->log2_sectors_per_block)
4194                                 + (((sector_t)1 << log2_blocks_per_bitmap_bit) - 1)) >> log2_blocks_per_bitmap_bit;
4195         ic->n_bitmap_blocks = DIV_ROUND_UP(n_bitmap_bits, BITMAP_BLOCK_SIZE * 8);
4196
4197         if (!ic->meta_dev)
4198                 ic->log2_buffer_sectors = min(ic->log2_buffer_sectors, (__u8)__ffs(ic->metadata_run));
4199
4200         if (ti->len > ic->provided_data_sectors) {
4201                 r = -EINVAL;
4202                 ti->error = "Not enough provided sectors for requested mapping size";
4203                 goto bad;
4204         }
4205
4206
4207         threshold = (__u64)ic->journal_entries * (100 - journal_watermark);
4208         threshold += 50;
4209         do_div(threshold, 100);
4210         ic->free_sectors_threshold = threshold;
4211
4212         DEBUG_print("initialized:\n");
4213         DEBUG_print("   integrity_tag_size %u\n", le16_to_cpu(ic->sb->integrity_tag_size));
4214         DEBUG_print("   journal_entry_size %u\n", ic->journal_entry_size);
4215         DEBUG_print("   journal_entries_per_sector %u\n", ic->journal_entries_per_sector);
4216         DEBUG_print("   journal_section_entries %u\n", ic->journal_section_entries);
4217         DEBUG_print("   journal_section_sectors %u\n", ic->journal_section_sectors);
4218         DEBUG_print("   journal_sections %u\n", (unsigned)le32_to_cpu(ic->sb->journal_sections));
4219         DEBUG_print("   journal_entries %u\n", ic->journal_entries);
4220         DEBUG_print("   log2_interleave_sectors %d\n", ic->sb->log2_interleave_sectors);
4221         DEBUG_print("   data_device_sectors 0x%llx\n", i_size_read(ic->dev->bdev->bd_inode) >> SECTOR_SHIFT);
4222         DEBUG_print("   initial_sectors 0x%x\n", ic->initial_sectors);
4223         DEBUG_print("   metadata_run 0x%x\n", ic->metadata_run);
4224         DEBUG_print("   log2_metadata_run %d\n", ic->log2_metadata_run);
4225         DEBUG_print("   provided_data_sectors 0x%llx (%llu)\n", ic->provided_data_sectors, ic->provided_data_sectors);
4226         DEBUG_print("   log2_buffer_sectors %u\n", ic->log2_buffer_sectors);
4227         DEBUG_print("   bits_in_journal %llu\n", bits_in_journal);
4228
4229         if (ic->recalculate_flag && !(ic->sb->flags & cpu_to_le32(SB_FLAG_RECALCULATING))) {
4230                 ic->sb->flags |= cpu_to_le32(SB_FLAG_RECALCULATING);
4231                 ic->sb->recalc_sector = cpu_to_le64(0);
4232         }
4233
4234         if (ic->internal_hash) {
4235                 size_t recalc_tags_size;
4236                 ic->recalc_wq = alloc_workqueue("dm-integrity-recalc", WQ_MEM_RECLAIM, 1);
4237                 if (!ic->recalc_wq ) {
4238                         ti->error = "Cannot allocate workqueue";
4239                         r = -ENOMEM;
4240                         goto bad;
4241                 }
4242                 INIT_WORK(&ic->recalc_work, integrity_recalc);
4243                 ic->recalc_buffer = vmalloc(RECALC_SECTORS << SECTOR_SHIFT);
4244                 if (!ic->recalc_buffer) {
4245                         ti->error = "Cannot allocate buffer for recalculating";
4246                         r = -ENOMEM;
4247                         goto bad;
4248                 }
4249                 recalc_tags_size = (RECALC_SECTORS >> ic->sb->log2_sectors_per_block) * ic->tag_size;
4250                 if (crypto_shash_digestsize(ic->internal_hash) > ic->tag_size)
4251                         recalc_tags_size += crypto_shash_digestsize(ic->internal_hash) - ic->tag_size;
4252                 ic->recalc_tags = kvmalloc(recalc_tags_size, GFP_KERNEL);
4253                 if (!ic->recalc_tags) {
4254                         ti->error = "Cannot allocate tags for recalculating";
4255                         r = -ENOMEM;
4256                         goto bad;
4257                 }
4258         } else {
4259                 if (ic->sb->flags & cpu_to_le32(SB_FLAG_RECALCULATING)) {
4260                         ti->error = "Recalculate can only be specified with internal_hash";
4261                         r = -EINVAL;
4262                         goto bad;
4263                 }
4264         }
4265
4266         if (ic->sb->flags & cpu_to_le32(SB_FLAG_RECALCULATING) &&
4267             le64_to_cpu(ic->sb->recalc_sector) < ic->provided_data_sectors &&
4268             dm_integrity_disable_recalculate(ic)) {
4269                 ti->error = "Recalculating with HMAC is disabled for security reasons - if you really need it, use the argument \"legacy_recalculate\"";
4270                 r = -EOPNOTSUPP;
4271                 goto bad;
4272         }
4273
4274         ic->bufio = dm_bufio_client_create(ic->meta_dev ? ic->meta_dev->bdev : ic->dev->bdev,
4275                         1U << (SECTOR_SHIFT + ic->log2_buffer_sectors), 1, 0, NULL, NULL);
4276         if (IS_ERR(ic->bufio)) {
4277                 r = PTR_ERR(ic->bufio);
4278                 ti->error = "Cannot initialize dm-bufio";
4279                 ic->bufio = NULL;
4280                 goto bad;
4281         }
4282         dm_bufio_set_sector_offset(ic->bufio, ic->start + ic->initial_sectors);
4283
4284         if (ic->mode != 'R') {
4285                 r = create_journal(ic, &ti->error);
4286                 if (r)
4287                         goto bad;
4288
4289         }
4290
4291         if (ic->mode == 'B') {
4292                 unsigned i;
4293                 unsigned n_bitmap_pages = DIV_ROUND_UP(ic->n_bitmap_blocks, PAGE_SIZE / BITMAP_BLOCK_SIZE);
4294
4295                 ic->recalc_bitmap = dm_integrity_alloc_page_list(n_bitmap_pages);
4296                 if (!ic->recalc_bitmap) {
4297                         r = -ENOMEM;
4298                         goto bad;
4299                 }
4300                 ic->may_write_bitmap = dm_integrity_alloc_page_list(n_bitmap_pages);
4301                 if (!ic->may_write_bitmap) {
4302                         r = -ENOMEM;
4303                         goto bad;
4304                 }
4305                 ic->bbs = kvmalloc_array(ic->n_bitmap_blocks, sizeof(struct bitmap_block_status), GFP_KERNEL);
4306                 if (!ic->bbs) {
4307                         r = -ENOMEM;
4308                         goto bad;
4309                 }
4310                 INIT_DELAYED_WORK(&ic->bitmap_flush_work, bitmap_flush_work);
4311                 for (i = 0; i < ic->n_bitmap_blocks; i++) {
4312                         struct bitmap_block_status *bbs = &ic->bbs[i];
4313                         unsigned sector, pl_index, pl_offset;
4314
4315                         INIT_WORK(&bbs->work, bitmap_block_work);
4316                         bbs->ic = ic;
4317                         bbs->idx = i;
4318                         bio_list_init(&bbs->bio_queue);
4319                         spin_lock_init(&bbs->bio_queue_lock);
4320
4321                         sector = i * (BITMAP_BLOCK_SIZE >> SECTOR_SHIFT);
4322                         pl_index = sector >> (PAGE_SHIFT - SECTOR_SHIFT);
4323                         pl_offset = (sector << SECTOR_SHIFT) & (PAGE_SIZE - 1);
4324
4325                         bbs->bitmap = lowmem_page_address(ic->journal[pl_index].page) + pl_offset;
4326                 }
4327         }
4328
4329         if (should_write_sb) {
4330                 init_journal(ic, 0, ic->journal_sections, 0);
4331                 r = dm_integrity_failed(ic);
4332                 if (unlikely(r)) {
4333                         ti->error = "Error initializing journal";
4334                         goto bad;
4335                 }
4336                 r = sync_rw_sb(ic, REQ_OP_WRITE, REQ_FUA);
4337                 if (r) {
4338                         ti->error = "Error initializing superblock";
4339                         goto bad;
4340                 }
4341                 ic->just_formatted = true;
4342         }
4343
4344         if (!ic->meta_dev) {
4345                 r = dm_set_target_max_io_len(ti, 1U << ic->sb->log2_interleave_sectors);
4346                 if (r)
4347                         goto bad;
4348         }
4349         if (ic->mode == 'B') {
4350                 unsigned max_io_len = ((sector_t)ic->sectors_per_block << ic->log2_blocks_per_bitmap_bit) * (BITMAP_BLOCK_SIZE * 8);
4351                 if (!max_io_len)
4352                         max_io_len = 1U << 31;
4353                 DEBUG_print("max_io_len: old %u, new %u\n", ti->max_io_len, max_io_len);
4354                 if (!ti->max_io_len || ti->max_io_len > max_io_len) {
4355                         r = dm_set_target_max_io_len(ti, max_io_len);
4356                         if (r)
4357                                 goto bad;
4358                 }
4359         }
4360
4361         if (!ic->internal_hash)
4362                 dm_integrity_set(ti, ic);
4363
4364         ti->num_flush_bios = 1;
4365         ti->flush_supported = true;
4366         if (ic->discard)
4367                 ti->num_discard_bios = 1;
4368
4369         return 0;
4370
4371 bad:
4372         dm_integrity_dtr(ti);
4373         return r;
4374 }
4375
4376 static void dm_integrity_dtr(struct dm_target *ti)
4377 {
4378         struct dm_integrity_c *ic = ti->private;
4379
4380         BUG_ON(!RB_EMPTY_ROOT(&ic->in_progress));
4381         BUG_ON(!list_empty(&ic->wait_list));
4382
4383         if (ic->metadata_wq)
4384                 destroy_workqueue(ic->metadata_wq);
4385         if (ic->wait_wq)
4386                 destroy_workqueue(ic->wait_wq);
4387         if (ic->offload_wq)
4388                 destroy_workqueue(ic->offload_wq);
4389         if (ic->commit_wq)
4390                 destroy_workqueue(ic->commit_wq);
4391         if (ic->writer_wq)
4392                 destroy_workqueue(ic->writer_wq);
4393         if (ic->recalc_wq)
4394                 destroy_workqueue(ic->recalc_wq);
4395         vfree(ic->recalc_buffer);
4396         kvfree(ic->recalc_tags);
4397         kvfree(ic->bbs);
4398         if (ic->bufio)
4399                 dm_bufio_client_destroy(ic->bufio);
4400         mempool_exit(&ic->journal_io_mempool);
4401         if (ic->io)
4402                 dm_io_client_destroy(ic->io);
4403         if (ic->dev)
4404                 dm_put_device(ti, ic->dev);
4405         if (ic->meta_dev)
4406                 dm_put_device(ti, ic->meta_dev);
4407         dm_integrity_free_page_list(ic->journal);
4408         dm_integrity_free_page_list(ic->journal_io);
4409         dm_integrity_free_page_list(ic->journal_xor);
4410         dm_integrity_free_page_list(ic->recalc_bitmap);
4411         dm_integrity_free_page_list(ic->may_write_bitmap);
4412         if (ic->journal_scatterlist)
4413                 dm_integrity_free_journal_scatterlist(ic, ic->journal_scatterlist);
4414         if (ic->journal_io_scatterlist)
4415                 dm_integrity_free_journal_scatterlist(ic, ic->journal_io_scatterlist);
4416         if (ic->sk_requests) {
4417                 unsigned i;
4418
4419                 for (i = 0; i < ic->journal_sections; i++) {
4420                         struct skcipher_request *req = ic->sk_requests[i];
4421                         if (req) {
4422                                 kfree_sensitive(req->iv);
4423                                 skcipher_request_free(req);
4424                         }
4425                 }
4426                 kvfree(ic->sk_requests);
4427         }
4428         kvfree(ic->journal_tree);
4429         if (ic->sb)
4430                 free_pages_exact(ic->sb, SB_SECTORS << SECTOR_SHIFT);
4431
4432         if (ic->internal_hash)
4433                 crypto_free_shash(ic->internal_hash);
4434         free_alg(&ic->internal_hash_alg);
4435
4436         if (ic->journal_crypt)
4437                 crypto_free_skcipher(ic->journal_crypt);
4438         free_alg(&ic->journal_crypt_alg);
4439
4440         if (ic->journal_mac)
4441                 crypto_free_shash(ic->journal_mac);
4442         free_alg(&ic->journal_mac_alg);
4443
4444         kfree(ic);
4445 }
4446
4447 static struct target_type integrity_target = {
4448         .name                   = "integrity",
4449         .version                = {1, 6, 0},
4450         .module                 = THIS_MODULE,
4451         .features               = DM_TARGET_SINGLETON | DM_TARGET_INTEGRITY,
4452         .ctr                    = dm_integrity_ctr,
4453         .dtr                    = dm_integrity_dtr,
4454         .map                    = dm_integrity_map,
4455         .postsuspend            = dm_integrity_postsuspend,
4456         .resume                 = dm_integrity_resume,
4457         .status                 = dm_integrity_status,
4458         .iterate_devices        = dm_integrity_iterate_devices,
4459         .io_hints               = dm_integrity_io_hints,
4460 };
4461
4462 static int __init dm_integrity_init(void)
4463 {
4464         int r;
4465
4466         journal_io_cache = kmem_cache_create("integrity_journal_io",
4467                                              sizeof(struct journal_io), 0, 0, NULL);
4468         if (!journal_io_cache) {
4469                 DMERR("can't allocate journal io cache");
4470                 return -ENOMEM;
4471         }
4472
4473         r = dm_register_target(&integrity_target);
4474
4475         if (r < 0)
4476                 DMERR("register failed %d", r);
4477
4478         return r;
4479 }
4480
4481 static void __exit dm_integrity_exit(void)
4482 {
4483         dm_unregister_target(&integrity_target);
4484         kmem_cache_destroy(journal_io_cache);
4485 }
4486
4487 module_init(dm_integrity_init);
4488 module_exit(dm_integrity_exit);
4489
4490 MODULE_AUTHOR("Milan Broz");
4491 MODULE_AUTHOR("Mikulas Patocka");
4492 MODULE_DESCRIPTION(DM_NAME " target for integrity tags extension");
4493 MODULE_LICENSE("GPL");