xref: /linux/drivers/md/dm-log-writes.c (revision 50a893359cd2643ee1afc96eedc9e7084cab49fa)
10e9cebe7SJosef Bacik /*
20e9cebe7SJosef Bacik  * Copyright (C) 2014 Facebook. All rights reserved.
30e9cebe7SJosef Bacik  *
40e9cebe7SJosef Bacik  * This file is released under the GPL.
50e9cebe7SJosef Bacik  */
60e9cebe7SJosef Bacik 
70e9cebe7SJosef Bacik #include <linux/device-mapper.h>
80e9cebe7SJosef Bacik 
90e9cebe7SJosef Bacik #include <linux/module.h>
100e9cebe7SJosef Bacik #include <linux/init.h>
110e9cebe7SJosef Bacik #include <linux/blkdev.h>
120e9cebe7SJosef Bacik #include <linux/bio.h>
1398d82f48SRoss Zwisler #include <linux/dax.h>
140e9cebe7SJosef Bacik #include <linux/slab.h>
150e9cebe7SJosef Bacik #include <linux/kthread.h>
160e9cebe7SJosef Bacik #include <linux/freezer.h>
1798d82f48SRoss Zwisler #include <linux/uio.h>
180e9cebe7SJosef Bacik 
190e9cebe7SJosef Bacik #define DM_MSG_PREFIX "log-writes"
200e9cebe7SJosef Bacik 
210e9cebe7SJosef Bacik /*
220e9cebe7SJosef Bacik  * This target will sequentially log all writes to the target device onto the
230e9cebe7SJosef Bacik  * log device.  This is helpful for replaying writes to check for fs consistency
240e9cebe7SJosef Bacik  * at all times.  This target provides a mechanism to mark specific events to
250e9cebe7SJosef Bacik  * check data at a later time.  So for example you would:
260e9cebe7SJosef Bacik  *
270e9cebe7SJosef Bacik  * write data
280e9cebe7SJosef Bacik  * fsync
290e9cebe7SJosef Bacik  * dmsetup message /dev/whatever mark mymark
300e9cebe7SJosef Bacik  * unmount /mnt/test
310e9cebe7SJosef Bacik  *
320e9cebe7SJosef Bacik  * Then replay the log up to mymark and check the contents of the replay to
330e9cebe7SJosef Bacik  * verify it matches what was written.
340e9cebe7SJosef Bacik  *
350e9cebe7SJosef Bacik  * We log writes only after they have been flushed, this makes the log describe
360e9cebe7SJosef Bacik  * close to the order in which the data hits the actual disk, not its cache.  So
370e9cebe7SJosef Bacik  * for example the following sequence (W means write, C means complete)
380e9cebe7SJosef Bacik  *
390e9cebe7SJosef Bacik  * Wa,Wb,Wc,Cc,Ca,FLUSH,FUAd,Cb,CFLUSH,CFUAd
400e9cebe7SJosef Bacik  *
410e9cebe7SJosef Bacik  * Would result in the log looking like this:
420e9cebe7SJosef Bacik  *
437537dad7SQu Wenruo  * c,a,b,flush,fuad,<other writes>,<next flush>
440e9cebe7SJosef Bacik  *
450e9cebe7SJosef Bacik  * This is meant to help expose problems where file systems do not properly wait
460e9cebe7SJosef Bacik  * on data being written before invoking a FLUSH.  FUA bypasses cache so once it
470e9cebe7SJosef Bacik  * completes it is added to the log as it should be on disk.
480e9cebe7SJosef Bacik  *
490e9cebe7SJosef Bacik  * We treat DISCARDs as if they don't bypass cache so that they are logged in
500e9cebe7SJosef Bacik  * order of completion along with the normal writes.  If we didn't do it this
510e9cebe7SJosef Bacik  * way we would process all the discards first and then write all the data, when
520e9cebe7SJosef Bacik  * in fact we want to do the data and the discard in the order that they
530e9cebe7SJosef Bacik  * completed.
540e9cebe7SJosef Bacik  */
550e9cebe7SJosef Bacik #define LOG_FLUSH_FLAG		(1 << 0)
560e9cebe7SJosef Bacik #define LOG_FUA_FLAG		(1 << 1)
570e9cebe7SJosef Bacik #define LOG_DISCARD_FLAG	(1 << 2)
580e9cebe7SJosef Bacik #define LOG_MARK_FLAG		(1 << 3)
59e5c4cb9bSQu Wenruo #define LOG_METADATA_FLAG	(1 << 4)
600e9cebe7SJosef Bacik 
61f4ad317aSGeert Uytterhoeven #define WRITE_LOG_VERSION 1ULL
62f4ad317aSGeert Uytterhoeven #define WRITE_LOG_MAGIC 0x6a736677736872ULL
63211ad4b7Szhangyi (F) #define WRITE_LOG_SUPER_SECTOR 0
640e9cebe7SJosef Bacik 
650e9cebe7SJosef Bacik /*
660e9cebe7SJosef Bacik  * The disk format for this is braindead simple.
670e9cebe7SJosef Bacik  *
680e9cebe7SJosef Bacik  * At byte 0 we have our super, followed by the following sequence for
690e9cebe7SJosef Bacik  * nr_entries:
700e9cebe7SJosef Bacik  *
710e9cebe7SJosef Bacik  * [   1 sector    ][  entry->nr_sectors ]
720e9cebe7SJosef Bacik  * [log_write_entry][    data written    ]
730e9cebe7SJosef Bacik  *
740e9cebe7SJosef Bacik  * The log_write_entry takes up a full sector so we can have arbitrary length
750e9cebe7SJosef Bacik  * marks and it leaves us room for extra content in the future.
760e9cebe7SJosef Bacik  */
770e9cebe7SJosef Bacik 
780e9cebe7SJosef Bacik /*
790e9cebe7SJosef Bacik  * Basic info about the log for userspace.
800e9cebe7SJosef Bacik  */
810e9cebe7SJosef Bacik struct log_write_super {
820e9cebe7SJosef Bacik 	__le64 magic;
830e9cebe7SJosef Bacik 	__le64 version;
840e9cebe7SJosef Bacik 	__le64 nr_entries;
850e9cebe7SJosef Bacik 	__le32 sectorsize;
860e9cebe7SJosef Bacik };
870e9cebe7SJosef Bacik 
880e9cebe7SJosef Bacik /*
890e9cebe7SJosef Bacik  * sector - the sector we wrote.
900e9cebe7SJosef Bacik  * nr_sectors - the number of sectors we wrote.
910e9cebe7SJosef Bacik  * flags - flags for this log entry.
920e9cebe7SJosef Bacik  * data_len - the size of the data in this log entry, this is for private log
930e9cebe7SJosef Bacik  * entry stuff, the MARK data provided by userspace for example.
940e9cebe7SJosef Bacik  */
950e9cebe7SJosef Bacik struct log_write_entry {
960e9cebe7SJosef Bacik 	__le64 sector;
970e9cebe7SJosef Bacik 	__le64 nr_sectors;
980e9cebe7SJosef Bacik 	__le64 flags;
990e9cebe7SJosef Bacik 	__le64 data_len;
1000e9cebe7SJosef Bacik };
1010e9cebe7SJosef Bacik 
1020e9cebe7SJosef Bacik struct log_writes_c {
1030e9cebe7SJosef Bacik 	struct dm_dev *dev;
1040e9cebe7SJosef Bacik 	struct dm_dev *logdev;
1050e9cebe7SJosef Bacik 	u64 logged_entries;
1060e9cebe7SJosef Bacik 	u32 sectorsize;
107228bb5b2SJosef Bacik 	u32 sectorshift;
1080e9cebe7SJosef Bacik 	atomic_t io_blocks;
1090e9cebe7SJosef Bacik 	atomic_t pending_blocks;
1100e9cebe7SJosef Bacik 	sector_t next_sector;
1110e9cebe7SJosef Bacik 	sector_t end_sector;
1120e9cebe7SJosef Bacik 	bool logging_enabled;
1130e9cebe7SJosef Bacik 	bool device_supports_discard;
1140e9cebe7SJosef Bacik 	spinlock_t blocks_lock;
1150e9cebe7SJosef Bacik 	struct list_head unflushed_blocks;
1160e9cebe7SJosef Bacik 	struct list_head logging_blocks;
1170e9cebe7SJosef Bacik 	wait_queue_head_t wait;
1180e9cebe7SJosef Bacik 	struct task_struct *log_kthread;
119211ad4b7Szhangyi (F) 	struct completion super_done;
1200e9cebe7SJosef Bacik };
1210e9cebe7SJosef Bacik 
1220e9cebe7SJosef Bacik struct pending_block {
1230e9cebe7SJosef Bacik 	int vec_cnt;
1240e9cebe7SJosef Bacik 	u64 flags;
1250e9cebe7SJosef Bacik 	sector_t sector;
1260e9cebe7SJosef Bacik 	sector_t nr_sectors;
1270e9cebe7SJosef Bacik 	char *data;
1280e9cebe7SJosef Bacik 	u32 datalen;
1290e9cebe7SJosef Bacik 	struct list_head list;
130b18ae8ddSGustavo A. R. Silva 	struct bio_vec vecs[];
1310e9cebe7SJosef Bacik };
1320e9cebe7SJosef Bacik 
1330e9cebe7SJosef Bacik struct per_bio_data {
1340e9cebe7SJosef Bacik 	struct pending_block *block;
1350e9cebe7SJosef Bacik };
1360e9cebe7SJosef Bacik 
137228bb5b2SJosef Bacik static inline sector_t bio_to_dev_sectors(struct log_writes_c *lc,
138228bb5b2SJosef Bacik 					  sector_t sectors)
139228bb5b2SJosef Bacik {
140228bb5b2SJosef Bacik 	return sectors >> (lc->sectorshift - SECTOR_SHIFT);
141228bb5b2SJosef Bacik }
142228bb5b2SJosef Bacik 
143228bb5b2SJosef Bacik static inline sector_t dev_to_bio_sectors(struct log_writes_c *lc,
144228bb5b2SJosef Bacik 					  sector_t sectors)
145228bb5b2SJosef Bacik {
146228bb5b2SJosef Bacik 	return sectors << (lc->sectorshift - SECTOR_SHIFT);
147228bb5b2SJosef Bacik }
148228bb5b2SJosef Bacik 
1490e9cebe7SJosef Bacik static void put_pending_block(struct log_writes_c *lc)
1500e9cebe7SJosef Bacik {
1510e9cebe7SJosef Bacik 	if (atomic_dec_and_test(&lc->pending_blocks)) {
1520e9cebe7SJosef Bacik 		smp_mb__after_atomic();
1530e9cebe7SJosef Bacik 		if (waitqueue_active(&lc->wait))
1540e9cebe7SJosef Bacik 			wake_up(&lc->wait);
1550e9cebe7SJosef Bacik 	}
1560e9cebe7SJosef Bacik }
1570e9cebe7SJosef Bacik 
1580e9cebe7SJosef Bacik static void put_io_block(struct log_writes_c *lc)
1590e9cebe7SJosef Bacik {
1600e9cebe7SJosef Bacik 	if (atomic_dec_and_test(&lc->io_blocks)) {
1610e9cebe7SJosef Bacik 		smp_mb__after_atomic();
1620e9cebe7SJosef Bacik 		if (waitqueue_active(&lc->wait))
1630e9cebe7SJosef Bacik 			wake_up(&lc->wait);
1640e9cebe7SJosef Bacik 	}
1650e9cebe7SJosef Bacik }
1660e9cebe7SJosef Bacik 
1674246a0b6SChristoph Hellwig static void log_end_io(struct bio *bio)
1680e9cebe7SJosef Bacik {
1690e9cebe7SJosef Bacik 	struct log_writes_c *lc = bio->bi_private;
1700e9cebe7SJosef Bacik 
1714e4cbee9SChristoph Hellwig 	if (bio->bi_status) {
1720e9cebe7SJosef Bacik 		unsigned long flags;
1730e9cebe7SJosef Bacik 
1744e4cbee9SChristoph Hellwig 		DMERR("Error writing log block, error=%d", bio->bi_status);
1750e9cebe7SJosef Bacik 		spin_lock_irqsave(&lc->blocks_lock, flags);
1760e9cebe7SJosef Bacik 		lc->logging_enabled = false;
1770e9cebe7SJosef Bacik 		spin_unlock_irqrestore(&lc->blocks_lock, flags);
1780e9cebe7SJosef Bacik 	}
1790e9cebe7SJosef Bacik 
180491221f8SGuoqing Jiang 	bio_free_pages(bio);
1810e9cebe7SJosef Bacik 	put_io_block(lc);
1820e9cebe7SJosef Bacik 	bio_put(bio);
1830e9cebe7SJosef Bacik }
1840e9cebe7SJosef Bacik 
185211ad4b7Szhangyi (F) static void log_end_super(struct bio *bio)
186211ad4b7Szhangyi (F) {
187211ad4b7Szhangyi (F) 	struct log_writes_c *lc = bio->bi_private;
188211ad4b7Szhangyi (F) 
189211ad4b7Szhangyi (F) 	complete(&lc->super_done);
190211ad4b7Szhangyi (F) 	log_end_io(bio);
191211ad4b7Szhangyi (F) }
192211ad4b7Szhangyi (F) 
1930e9cebe7SJosef Bacik /*
1940e9cebe7SJosef Bacik  * Meant to be called if there is an error, it will free all the pages
1950e9cebe7SJosef Bacik  * associated with the block.
1960e9cebe7SJosef Bacik  */
1970e9cebe7SJosef Bacik static void free_pending_block(struct log_writes_c *lc,
1980e9cebe7SJosef Bacik 			       struct pending_block *block)
1990e9cebe7SJosef Bacik {
2000e9cebe7SJosef Bacik 	int i;
2010e9cebe7SJosef Bacik 
2020e9cebe7SJosef Bacik 	for (i = 0; i < block->vec_cnt; i++) {
2030e9cebe7SJosef Bacik 		if (block->vecs[i].bv_page)
2040e9cebe7SJosef Bacik 			__free_page(block->vecs[i].bv_page);
2050e9cebe7SJosef Bacik 	}
2060e9cebe7SJosef Bacik 	kfree(block->data);
2070e9cebe7SJosef Bacik 	kfree(block);
2080e9cebe7SJosef Bacik 	put_pending_block(lc);
2090e9cebe7SJosef Bacik }
2100e9cebe7SJosef Bacik 
2110e9cebe7SJosef Bacik static int write_metadata(struct log_writes_c *lc, void *entry,
2120e9cebe7SJosef Bacik 			  size_t entrylen, void *data, size_t datalen,
2130e9cebe7SJosef Bacik 			  sector_t sector)
2140e9cebe7SJosef Bacik {
2150e9cebe7SJosef Bacik 	struct bio *bio;
2160e9cebe7SJosef Bacik 	struct page *page;
2170e9cebe7SJosef Bacik 	void *ptr;
2180e9cebe7SJosef Bacik 	size_t ret;
2190e9cebe7SJosef Bacik 
22007888c66SChristoph Hellwig 	bio = bio_alloc(lc->logdev->bdev, 1, REQ_OP_WRITE, GFP_KERNEL);
2210e9cebe7SJosef Bacik 	bio->bi_iter.bi_size = 0;
2220e9cebe7SJosef Bacik 	bio->bi_iter.bi_sector = sector;
223211ad4b7Szhangyi (F) 	bio->bi_end_io = (sector == WRITE_LOG_SUPER_SECTOR) ?
224211ad4b7Szhangyi (F) 			  log_end_super : log_end_io;
2250e9cebe7SJosef Bacik 	bio->bi_private = lc;
2260e9cebe7SJosef Bacik 
2270e9cebe7SJosef Bacik 	page = alloc_page(GFP_KERNEL);
2280e9cebe7SJosef Bacik 	if (!page) {
2290e9cebe7SJosef Bacik 		DMERR("Couldn't alloc log page");
2300e9cebe7SJosef Bacik 		bio_put(bio);
2310e9cebe7SJosef Bacik 		goto error;
2320e9cebe7SJosef Bacik 	}
2330e9cebe7SJosef Bacik 
2340e9cebe7SJosef Bacik 	ptr = kmap_atomic(page);
2350e9cebe7SJosef Bacik 	memcpy(ptr, entry, entrylen);
2360e9cebe7SJosef Bacik 	if (datalen)
2370e9cebe7SJosef Bacik 		memcpy(ptr + entrylen, data, datalen);
2380e9cebe7SJosef Bacik 	memset(ptr + entrylen + datalen, 0,
2390e9cebe7SJosef Bacik 	       lc->sectorsize - entrylen - datalen);
2400e9cebe7SJosef Bacik 	kunmap_atomic(ptr);
2410e9cebe7SJosef Bacik 
2420e9cebe7SJosef Bacik 	ret = bio_add_page(bio, page, lc->sectorsize, 0);
2430e9cebe7SJosef Bacik 	if (ret != lc->sectorsize) {
2440e9cebe7SJosef Bacik 		DMERR("Couldn't add page to the log block");
2450e9cebe7SJosef Bacik 		goto error_bio;
2460e9cebe7SJosef Bacik 	}
2474e49ea4aSMike Christie 	submit_bio(bio);
2480e9cebe7SJosef Bacik 	return 0;
2490e9cebe7SJosef Bacik error_bio:
2500e9cebe7SJosef Bacik 	bio_put(bio);
2510e9cebe7SJosef Bacik 	__free_page(page);
2520e9cebe7SJosef Bacik error:
2530e9cebe7SJosef Bacik 	put_io_block(lc);
2540e9cebe7SJosef Bacik 	return -1;
2550e9cebe7SJosef Bacik }
2560e9cebe7SJosef Bacik 
257e5a20660SRoss Zwisler static int write_inline_data(struct log_writes_c *lc, void *entry,
258e5a20660SRoss Zwisler 			     size_t entrylen, void *data, size_t datalen,
259e5a20660SRoss Zwisler 			     sector_t sector)
260e5a20660SRoss Zwisler {
2615f7136dbSMatthew Wilcox (Oracle) 	int bio_pages, pg_datalen, pg_sectorlen, i;
262e5a20660SRoss Zwisler 	struct page *page;
263e5a20660SRoss Zwisler 	struct bio *bio;
264e5a20660SRoss Zwisler 	size_t ret;
265e5a20660SRoss Zwisler 	void *ptr;
266e5a20660SRoss Zwisler 
267e5a20660SRoss Zwisler 	while (datalen) {
2685f7136dbSMatthew Wilcox (Oracle) 		bio_pages = bio_max_segs(DIV_ROUND_UP(datalen, PAGE_SIZE));
269e5a20660SRoss Zwisler 
270e5a20660SRoss Zwisler 		atomic_inc(&lc->io_blocks);
271e5a20660SRoss Zwisler 
27207888c66SChristoph Hellwig 		bio = bio_alloc(lc->logdev->bdev, bio_pages, REQ_OP_WRITE,
27307888c66SChristoph Hellwig 				GFP_KERNEL);
274e5a20660SRoss Zwisler 		bio->bi_iter.bi_size = 0;
275e5a20660SRoss Zwisler 		bio->bi_iter.bi_sector = sector;
276e5a20660SRoss Zwisler 		bio->bi_end_io = log_end_io;
277e5a20660SRoss Zwisler 		bio->bi_private = lc;
278e5a20660SRoss Zwisler 
279e5a20660SRoss Zwisler 		for (i = 0; i < bio_pages; i++) {
280e5a20660SRoss Zwisler 			pg_datalen = min_t(int, datalen, PAGE_SIZE);
281e5a20660SRoss Zwisler 			pg_sectorlen = ALIGN(pg_datalen, lc->sectorsize);
282e5a20660SRoss Zwisler 
283e5a20660SRoss Zwisler 			page = alloc_page(GFP_KERNEL);
284e5a20660SRoss Zwisler 			if (!page) {
285e5a20660SRoss Zwisler 				DMERR("Couldn't alloc inline data page");
286e5a20660SRoss Zwisler 				goto error_bio;
287e5a20660SRoss Zwisler 			}
288e5a20660SRoss Zwisler 
289e5a20660SRoss Zwisler 			ptr = kmap_atomic(page);
290e5a20660SRoss Zwisler 			memcpy(ptr, data, pg_datalen);
291e5a20660SRoss Zwisler 			if (pg_sectorlen > pg_datalen)
292e5a20660SRoss Zwisler 				memset(ptr + pg_datalen, 0, pg_sectorlen - pg_datalen);
293e5a20660SRoss Zwisler 			kunmap_atomic(ptr);
294e5a20660SRoss Zwisler 
295e5a20660SRoss Zwisler 			ret = bio_add_page(bio, page, pg_sectorlen, 0);
296e5a20660SRoss Zwisler 			if (ret != pg_sectorlen) {
297e5a20660SRoss Zwisler 				DMERR("Couldn't add page of inline data");
298e5a20660SRoss Zwisler 				__free_page(page);
299e5a20660SRoss Zwisler 				goto error_bio;
300e5a20660SRoss Zwisler 			}
301e5a20660SRoss Zwisler 
302e5a20660SRoss Zwisler 			datalen -= pg_datalen;
303e5a20660SRoss Zwisler 			data	+= pg_datalen;
304e5a20660SRoss Zwisler 		}
305e5a20660SRoss Zwisler 		submit_bio(bio);
306e5a20660SRoss Zwisler 
307e5a20660SRoss Zwisler 		sector += bio_pages * PAGE_SECTORS;
308e5a20660SRoss Zwisler 	}
309e5a20660SRoss Zwisler 	return 0;
310e5a20660SRoss Zwisler error_bio:
311e5a20660SRoss Zwisler 	bio_free_pages(bio);
312e5a20660SRoss Zwisler 	bio_put(bio);
313e5a20660SRoss Zwisler 	put_io_block(lc);
314e5a20660SRoss Zwisler 	return -1;
315e5a20660SRoss Zwisler }
316e5a20660SRoss Zwisler 
3170e9cebe7SJosef Bacik static int log_one_block(struct log_writes_c *lc,
3180e9cebe7SJosef Bacik 			 struct pending_block *block, sector_t sector)
3190e9cebe7SJosef Bacik {
3200e9cebe7SJosef Bacik 	struct bio *bio;
3210e9cebe7SJosef Bacik 	struct log_write_entry entry;
322e5a20660SRoss Zwisler 	size_t metadatalen, ret;
3230e9cebe7SJosef Bacik 	int i;
3240e9cebe7SJosef Bacik 
3250e9cebe7SJosef Bacik 	entry.sector = cpu_to_le64(block->sector);
3260e9cebe7SJosef Bacik 	entry.nr_sectors = cpu_to_le64(block->nr_sectors);
3270e9cebe7SJosef Bacik 	entry.flags = cpu_to_le64(block->flags);
3280e9cebe7SJosef Bacik 	entry.data_len = cpu_to_le64(block->datalen);
329e5a20660SRoss Zwisler 
330e5a20660SRoss Zwisler 	metadatalen = (block->flags & LOG_MARK_FLAG) ? block->datalen : 0;
3310e9cebe7SJosef Bacik 	if (write_metadata(lc, &entry, sizeof(entry), block->data,
332e5a20660SRoss Zwisler 			   metadatalen, sector)) {
3330e9cebe7SJosef Bacik 		free_pending_block(lc, block);
3340e9cebe7SJosef Bacik 		return -1;
3350e9cebe7SJosef Bacik 	}
3360e9cebe7SJosef Bacik 
337e5a20660SRoss Zwisler 	sector += dev_to_bio_sectors(lc, 1);
338e5a20660SRoss Zwisler 
339e5a20660SRoss Zwisler 	if (block->datalen && metadatalen == 0) {
340e5a20660SRoss Zwisler 		if (write_inline_data(lc, &entry, sizeof(entry), block->data,
341e5a20660SRoss Zwisler 				      block->datalen, sector)) {
342e5a20660SRoss Zwisler 			free_pending_block(lc, block);
343e5a20660SRoss Zwisler 			return -1;
344e5a20660SRoss Zwisler 		}
345e5a20660SRoss Zwisler 		/* we don't support both inline data & bio data */
346e5a20660SRoss Zwisler 		goto out;
347e5a20660SRoss Zwisler 	}
348e5a20660SRoss Zwisler 
3490e9cebe7SJosef Bacik 	if (!block->vec_cnt)
3500e9cebe7SJosef Bacik 		goto out;
3510e9cebe7SJosef Bacik 
352a5d60783SMikulas Patocka 	atomic_inc(&lc->io_blocks);
35307888c66SChristoph Hellwig 	bio = bio_alloc(lc->logdev->bdev, bio_max_segs(block->vec_cnt),
35407888c66SChristoph Hellwig 			REQ_OP_WRITE, GFP_KERNEL);
3550e9cebe7SJosef Bacik 	bio->bi_iter.bi_size = 0;
3560e9cebe7SJosef Bacik 	bio->bi_iter.bi_sector = sector;
3570e9cebe7SJosef Bacik 	bio->bi_end_io = log_end_io;
3580e9cebe7SJosef Bacik 	bio->bi_private = lc;
3590e9cebe7SJosef Bacik 
3600e9cebe7SJosef Bacik 	for (i = 0; i < block->vec_cnt; i++) {
3610e9cebe7SJosef Bacik 		/*
3620e9cebe7SJosef Bacik 		 * The page offset is always 0 because we allocate a new page
3630e9cebe7SJosef Bacik 		 * for every bvec in the original bio for simplicity sake.
3640e9cebe7SJosef Bacik 		 */
3650e9cebe7SJosef Bacik 		ret = bio_add_page(bio, block->vecs[i].bv_page,
3660e9cebe7SJosef Bacik 				   block->vecs[i].bv_len, 0);
3670e9cebe7SJosef Bacik 		if (ret != block->vecs[i].bv_len) {
3680e9cebe7SJosef Bacik 			atomic_inc(&lc->io_blocks);
3694e49ea4aSMike Christie 			submit_bio(bio);
37007888c66SChristoph Hellwig 			bio = bio_alloc(lc->logdev->bdev,
37107888c66SChristoph Hellwig 					bio_max_segs(block->vec_cnt - i),
37207888c66SChristoph Hellwig 					REQ_OP_WRITE, GFP_KERNEL);
3730e9cebe7SJosef Bacik 			bio->bi_iter.bi_size = 0;
3740e9cebe7SJosef Bacik 			bio->bi_iter.bi_sector = sector;
3750e9cebe7SJosef Bacik 			bio->bi_end_io = log_end_io;
3760e9cebe7SJosef Bacik 			bio->bi_private = lc;
3770e9cebe7SJosef Bacik 
3780e9cebe7SJosef Bacik 			ret = bio_add_page(bio, block->vecs[i].bv_page,
3790e9cebe7SJosef Bacik 					   block->vecs[i].bv_len, 0);
3800e9cebe7SJosef Bacik 			if (ret != block->vecs[i].bv_len) {
3810e9cebe7SJosef Bacik 				DMERR("Couldn't add page on new bio?");
3820e9cebe7SJosef Bacik 				bio_put(bio);
3830e9cebe7SJosef Bacik 				goto error;
3840e9cebe7SJosef Bacik 			}
3850e9cebe7SJosef Bacik 		}
3860e9cebe7SJosef Bacik 		sector += block->vecs[i].bv_len >> SECTOR_SHIFT;
3870e9cebe7SJosef Bacik 	}
3884e49ea4aSMike Christie 	submit_bio(bio);
3890e9cebe7SJosef Bacik out:
3900e9cebe7SJosef Bacik 	kfree(block->data);
3910e9cebe7SJosef Bacik 	kfree(block);
3920e9cebe7SJosef Bacik 	put_pending_block(lc);
3930e9cebe7SJosef Bacik 	return 0;
3940e9cebe7SJosef Bacik error:
3950e9cebe7SJosef Bacik 	free_pending_block(lc, block);
3960e9cebe7SJosef Bacik 	put_io_block(lc);
3970e9cebe7SJosef Bacik 	return -1;
3980e9cebe7SJosef Bacik }
3990e9cebe7SJosef Bacik 
4000e9cebe7SJosef Bacik static int log_super(struct log_writes_c *lc)
4010e9cebe7SJosef Bacik {
4020e9cebe7SJosef Bacik 	struct log_write_super super;
4030e9cebe7SJosef Bacik 
4040e9cebe7SJosef Bacik 	super.magic = cpu_to_le64(WRITE_LOG_MAGIC);
4050e9cebe7SJosef Bacik 	super.version = cpu_to_le64(WRITE_LOG_VERSION);
4060e9cebe7SJosef Bacik 	super.nr_entries = cpu_to_le64(lc->logged_entries);
4070e9cebe7SJosef Bacik 	super.sectorsize = cpu_to_le32(lc->sectorsize);
4080e9cebe7SJosef Bacik 
409211ad4b7Szhangyi (F) 	if (write_metadata(lc, &super, sizeof(super), NULL, 0,
410211ad4b7Szhangyi (F) 			   WRITE_LOG_SUPER_SECTOR)) {
4110e9cebe7SJosef Bacik 		DMERR("Couldn't write super");
4120e9cebe7SJosef Bacik 		return -1;
4130e9cebe7SJosef Bacik 	}
4140e9cebe7SJosef Bacik 
415211ad4b7Szhangyi (F) 	/*
416211ad4b7Szhangyi (F) 	 * Super sector should be writen in-order, otherwise the
417211ad4b7Szhangyi (F) 	 * nr_entries could be rewritten incorrectly by an old bio.
418211ad4b7Szhangyi (F) 	 */
419211ad4b7Szhangyi (F) 	wait_for_completion_io(&lc->super_done);
420211ad4b7Szhangyi (F) 
4210e9cebe7SJosef Bacik 	return 0;
4220e9cebe7SJosef Bacik }
4230e9cebe7SJosef Bacik 
4240e9cebe7SJosef Bacik static inline sector_t logdev_last_sector(struct log_writes_c *lc)
4250e9cebe7SJosef Bacik {
4266dcbb52cSChristoph Hellwig 	return bdev_nr_sectors(lc->logdev->bdev);
4270e9cebe7SJosef Bacik }
4280e9cebe7SJosef Bacik 
4290e9cebe7SJosef Bacik static int log_writes_kthread(void *arg)
4300e9cebe7SJosef Bacik {
4310e9cebe7SJosef Bacik 	struct log_writes_c *lc = (struct log_writes_c *)arg;
4320e9cebe7SJosef Bacik 	sector_t sector = 0;
4330e9cebe7SJosef Bacik 
4340e9cebe7SJosef Bacik 	while (!kthread_should_stop()) {
4350e9cebe7SJosef Bacik 		bool super = false;
4360e9cebe7SJosef Bacik 		bool logging_enabled;
4370e9cebe7SJosef Bacik 		struct pending_block *block = NULL;
4380e9cebe7SJosef Bacik 		int ret;
4390e9cebe7SJosef Bacik 
4400e9cebe7SJosef Bacik 		spin_lock_irq(&lc->blocks_lock);
4410e9cebe7SJosef Bacik 		if (!list_empty(&lc->logging_blocks)) {
4420e9cebe7SJosef Bacik 			block = list_first_entry(&lc->logging_blocks,
4430e9cebe7SJosef Bacik 						 struct pending_block, list);
4440e9cebe7SJosef Bacik 			list_del_init(&block->list);
4450e9cebe7SJosef Bacik 			if (!lc->logging_enabled)
4460e9cebe7SJosef Bacik 				goto next;
4470e9cebe7SJosef Bacik 
4480e9cebe7SJosef Bacik 			sector = lc->next_sector;
449228bb5b2SJosef Bacik 			if (!(block->flags & LOG_DISCARD_FLAG))
450228bb5b2SJosef Bacik 				lc->next_sector += dev_to_bio_sectors(lc, block->nr_sectors);
451228bb5b2SJosef Bacik 			lc->next_sector += dev_to_bio_sectors(lc, 1);
4520e9cebe7SJosef Bacik 
4530e9cebe7SJosef Bacik 			/*
4540e9cebe7SJosef Bacik 			 * Apparently the size of the device may not be known
4550e9cebe7SJosef Bacik 			 * right away, so handle this properly.
4560e9cebe7SJosef Bacik 			 */
4570e9cebe7SJosef Bacik 			if (!lc->end_sector)
4580e9cebe7SJosef Bacik 				lc->end_sector = logdev_last_sector(lc);
4590e9cebe7SJosef Bacik 			if (lc->end_sector &&
4600e9cebe7SJosef Bacik 			    lc->next_sector >= lc->end_sector) {
4610e9cebe7SJosef Bacik 				DMERR("Ran out of space on the logdev");
4620e9cebe7SJosef Bacik 				lc->logging_enabled = false;
4630e9cebe7SJosef Bacik 				goto next;
4640e9cebe7SJosef Bacik 			}
4650e9cebe7SJosef Bacik 			lc->logged_entries++;
4660e9cebe7SJosef Bacik 			atomic_inc(&lc->io_blocks);
4670e9cebe7SJosef Bacik 
4680e9cebe7SJosef Bacik 			super = (block->flags & (LOG_FUA_FLAG | LOG_MARK_FLAG));
4690e9cebe7SJosef Bacik 			if (super)
4700e9cebe7SJosef Bacik 				atomic_inc(&lc->io_blocks);
4710e9cebe7SJosef Bacik 		}
4720e9cebe7SJosef Bacik next:
4730e9cebe7SJosef Bacik 		logging_enabled = lc->logging_enabled;
4740e9cebe7SJosef Bacik 		spin_unlock_irq(&lc->blocks_lock);
4750e9cebe7SJosef Bacik 		if (block) {
4760e9cebe7SJosef Bacik 			if (logging_enabled) {
4770e9cebe7SJosef Bacik 				ret = log_one_block(lc, block, sector);
4780e9cebe7SJosef Bacik 				if (!ret && super)
4790e9cebe7SJosef Bacik 					ret = log_super(lc);
4800e9cebe7SJosef Bacik 				if (ret) {
4810e9cebe7SJosef Bacik 					spin_lock_irq(&lc->blocks_lock);
4820e9cebe7SJosef Bacik 					lc->logging_enabled = false;
4830e9cebe7SJosef Bacik 					spin_unlock_irq(&lc->blocks_lock);
4840e9cebe7SJosef Bacik 				}
4850e9cebe7SJosef Bacik 			} else
4860e9cebe7SJosef Bacik 				free_pending_block(lc, block);
4870e9cebe7SJosef Bacik 			continue;
4880e9cebe7SJosef Bacik 		}
4890e9cebe7SJosef Bacik 
4900e9cebe7SJosef Bacik 		if (!try_to_freeze()) {
4910e9cebe7SJosef Bacik 			set_current_state(TASK_INTERRUPTIBLE);
4920e9cebe7SJosef Bacik 			if (!kthread_should_stop() &&
4930c79c620SJosef Bacik 			    list_empty(&lc->logging_blocks))
4940e9cebe7SJosef Bacik 				schedule();
4950e9cebe7SJosef Bacik 			__set_current_state(TASK_RUNNING);
4960e9cebe7SJosef Bacik 		}
4970e9cebe7SJosef Bacik 	}
4980e9cebe7SJosef Bacik 	return 0;
4990e9cebe7SJosef Bacik }
5000e9cebe7SJosef Bacik 
5010e9cebe7SJosef Bacik /*
5020e9cebe7SJosef Bacik  * Construct a log-writes mapping:
5030e9cebe7SJosef Bacik  * log-writes <dev_path> <log_dev_path>
5040e9cebe7SJosef Bacik  */
5050e9cebe7SJosef Bacik static int log_writes_ctr(struct dm_target *ti, unsigned int argc, char **argv)
5060e9cebe7SJosef Bacik {
5070e9cebe7SJosef Bacik 	struct log_writes_c *lc;
5080e9cebe7SJosef Bacik 	struct dm_arg_set as;
5090e9cebe7SJosef Bacik 	const char *devname, *logdevname;
510e80d1c80SVivek Goyal 	int ret;
5110e9cebe7SJosef Bacik 
5120e9cebe7SJosef Bacik 	as.argc = argc;
5130e9cebe7SJosef Bacik 	as.argv = argv;
5140e9cebe7SJosef Bacik 
5150e9cebe7SJosef Bacik 	if (argc < 2) {
5160e9cebe7SJosef Bacik 		ti->error = "Invalid argument count";
5170e9cebe7SJosef Bacik 		return -EINVAL;
5180e9cebe7SJosef Bacik 	}
5190e9cebe7SJosef Bacik 
5200e9cebe7SJosef Bacik 	lc = kzalloc(sizeof(struct log_writes_c), GFP_KERNEL);
5210e9cebe7SJosef Bacik 	if (!lc) {
5220e9cebe7SJosef Bacik 		ti->error = "Cannot allocate context";
5230e9cebe7SJosef Bacik 		return -ENOMEM;
5240e9cebe7SJosef Bacik 	}
5250e9cebe7SJosef Bacik 	spin_lock_init(&lc->blocks_lock);
5260e9cebe7SJosef Bacik 	INIT_LIST_HEAD(&lc->unflushed_blocks);
5270e9cebe7SJosef Bacik 	INIT_LIST_HEAD(&lc->logging_blocks);
5280e9cebe7SJosef Bacik 	init_waitqueue_head(&lc->wait);
529211ad4b7Szhangyi (F) 	init_completion(&lc->super_done);
5300e9cebe7SJosef Bacik 	atomic_set(&lc->io_blocks, 0);
5310e9cebe7SJosef Bacik 	atomic_set(&lc->pending_blocks, 0);
5320e9cebe7SJosef Bacik 
5330e9cebe7SJosef Bacik 	devname = dm_shift_arg(&as);
534e80d1c80SVivek Goyal 	ret = dm_get_device(ti, devname, dm_table_get_mode(ti->table), &lc->dev);
535e80d1c80SVivek Goyal 	if (ret) {
5360e9cebe7SJosef Bacik 		ti->error = "Device lookup failed";
5370e9cebe7SJosef Bacik 		goto bad;
5380e9cebe7SJosef Bacik 	}
5390e9cebe7SJosef Bacik 
5400e9cebe7SJosef Bacik 	logdevname = dm_shift_arg(&as);
541e80d1c80SVivek Goyal 	ret = dm_get_device(ti, logdevname, dm_table_get_mode(ti->table),
542e80d1c80SVivek Goyal 			    &lc->logdev);
543e80d1c80SVivek Goyal 	if (ret) {
5440e9cebe7SJosef Bacik 		ti->error = "Log device lookup failed";
5450e9cebe7SJosef Bacik 		dm_put_device(ti, lc->dev);
5460e9cebe7SJosef Bacik 		goto bad;
5470e9cebe7SJosef Bacik 	}
5480e9cebe7SJosef Bacik 
549228bb5b2SJosef Bacik 	lc->sectorsize = bdev_logical_block_size(lc->dev->bdev);
550228bb5b2SJosef Bacik 	lc->sectorshift = ilog2(lc->sectorsize);
5510e9cebe7SJosef Bacik 	lc->log_kthread = kthread_run(log_writes_kthread, lc, "log-write");
55291e630d9SVladimir Zapolskiy 	if (IS_ERR(lc->log_kthread)) {
55391e630d9SVladimir Zapolskiy 		ret = PTR_ERR(lc->log_kthread);
5540e9cebe7SJosef Bacik 		ti->error = "Couldn't alloc kthread";
5550e9cebe7SJosef Bacik 		dm_put_device(ti, lc->dev);
5560e9cebe7SJosef Bacik 		dm_put_device(ti, lc->logdev);
5570e9cebe7SJosef Bacik 		goto bad;
5580e9cebe7SJosef Bacik 	}
5590e9cebe7SJosef Bacik 
560228bb5b2SJosef Bacik 	/*
561228bb5b2SJosef Bacik 	 * next_sector is in 512b sectors to correspond to what bi_sector expects.
562228bb5b2SJosef Bacik 	 * The super starts at sector 0, and the next_sector is the next logical
563228bb5b2SJosef Bacik 	 * one based on the sectorsize of the device.
564228bb5b2SJosef Bacik 	 */
565228bb5b2SJosef Bacik 	lc->next_sector = lc->sectorsize >> SECTOR_SHIFT;
5660e9cebe7SJosef Bacik 	lc->logging_enabled = true;
5670e9cebe7SJosef Bacik 	lc->end_sector = logdev_last_sector(lc);
5680e9cebe7SJosef Bacik 	lc->device_supports_discard = true;
5690e9cebe7SJosef Bacik 
5700e9cebe7SJosef Bacik 	ti->num_flush_bios = 1;
5710e9cebe7SJosef Bacik 	ti->flush_supported = true;
5720e9cebe7SJosef Bacik 	ti->num_discard_bios = 1;
5730e9cebe7SJosef Bacik 	ti->discards_supported = true;
57430187e1dSMike Snitzer 	ti->per_io_data_size = sizeof(struct per_bio_data);
5750e9cebe7SJosef Bacik 	ti->private = lc;
5760e9cebe7SJosef Bacik 	return 0;
5770e9cebe7SJosef Bacik 
5780e9cebe7SJosef Bacik bad:
5790e9cebe7SJosef Bacik 	kfree(lc);
580e80d1c80SVivek Goyal 	return ret;
5810e9cebe7SJosef Bacik }
5820e9cebe7SJosef Bacik 
5830e9cebe7SJosef Bacik static int log_mark(struct log_writes_c *lc, char *data)
5840e9cebe7SJosef Bacik {
5850e9cebe7SJosef Bacik 	struct pending_block *block;
5860e9cebe7SJosef Bacik 	size_t maxsize = lc->sectorsize - sizeof(struct log_write_entry);
5870e9cebe7SJosef Bacik 
5880e9cebe7SJosef Bacik 	block = kzalloc(sizeof(struct pending_block), GFP_KERNEL);
5890e9cebe7SJosef Bacik 	if (!block) {
5900e9cebe7SJosef Bacik 		DMERR("Error allocating pending block");
5910e9cebe7SJosef Bacik 		return -ENOMEM;
5920e9cebe7SJosef Bacik 	}
5930e9cebe7SJosef Bacik 
5944b259fc4SMa Shimiao 	block->data = kstrndup(data, maxsize - 1, GFP_KERNEL);
5950e9cebe7SJosef Bacik 	if (!block->data) {
5960e9cebe7SJosef Bacik 		DMERR("Error copying mark data");
5970e9cebe7SJosef Bacik 		kfree(block);
5980e9cebe7SJosef Bacik 		return -ENOMEM;
5990e9cebe7SJosef Bacik 	}
6000e9cebe7SJosef Bacik 	atomic_inc(&lc->pending_blocks);
6010e9cebe7SJosef Bacik 	block->datalen = strlen(block->data);
6020e9cebe7SJosef Bacik 	block->flags |= LOG_MARK_FLAG;
6030e9cebe7SJosef Bacik 	spin_lock_irq(&lc->blocks_lock);
6040e9cebe7SJosef Bacik 	list_add_tail(&block->list, &lc->logging_blocks);
6050e9cebe7SJosef Bacik 	spin_unlock_irq(&lc->blocks_lock);
6060e9cebe7SJosef Bacik 	wake_up_process(lc->log_kthread);
6070e9cebe7SJosef Bacik 	return 0;
6080e9cebe7SJosef Bacik }
6090e9cebe7SJosef Bacik 
6100e9cebe7SJosef Bacik static void log_writes_dtr(struct dm_target *ti)
6110e9cebe7SJosef Bacik {
6120e9cebe7SJosef Bacik 	struct log_writes_c *lc = ti->private;
6130e9cebe7SJosef Bacik 
6140e9cebe7SJosef Bacik 	spin_lock_irq(&lc->blocks_lock);
6150e9cebe7SJosef Bacik 	list_splice_init(&lc->unflushed_blocks, &lc->logging_blocks);
6160e9cebe7SJosef Bacik 	spin_unlock_irq(&lc->blocks_lock);
6170e9cebe7SJosef Bacik 
6180e9cebe7SJosef Bacik 	/*
6190e9cebe7SJosef Bacik 	 * This is just nice to have since it'll update the super to include the
6200e9cebe7SJosef Bacik 	 * unflushed blocks, if it fails we don't really care.
6210e9cebe7SJosef Bacik 	 */
6220e9cebe7SJosef Bacik 	log_mark(lc, "dm-log-writes-end");
6230e9cebe7SJosef Bacik 	wake_up_process(lc->log_kthread);
6240e9cebe7SJosef Bacik 	wait_event(lc->wait, !atomic_read(&lc->io_blocks) &&
6250e9cebe7SJosef Bacik 		   !atomic_read(&lc->pending_blocks));
6260e9cebe7SJosef Bacik 	kthread_stop(lc->log_kthread);
6270e9cebe7SJosef Bacik 
6280e9cebe7SJosef Bacik 	WARN_ON(!list_empty(&lc->logging_blocks));
6290e9cebe7SJosef Bacik 	WARN_ON(!list_empty(&lc->unflushed_blocks));
6300e9cebe7SJosef Bacik 	dm_put_device(ti, lc->dev);
6310e9cebe7SJosef Bacik 	dm_put_device(ti, lc->logdev);
6320e9cebe7SJosef Bacik 	kfree(lc);
6330e9cebe7SJosef Bacik }
6340e9cebe7SJosef Bacik 
6350e9cebe7SJosef Bacik static void normal_map_bio(struct dm_target *ti, struct bio *bio)
6360e9cebe7SJosef Bacik {
6370e9cebe7SJosef Bacik 	struct log_writes_c *lc = ti->private;
6380e9cebe7SJosef Bacik 
63974d46992SChristoph Hellwig 	bio_set_dev(bio, lc->dev->bdev);
6400e9cebe7SJosef Bacik }
6410e9cebe7SJosef Bacik 
6420e9cebe7SJosef Bacik static int log_writes_map(struct dm_target *ti, struct bio *bio)
6430e9cebe7SJosef Bacik {
6440e9cebe7SJosef Bacik 	struct log_writes_c *lc = ti->private;
6450e9cebe7SJosef Bacik 	struct per_bio_data *pb = dm_per_bio_data(bio, sizeof(struct per_bio_data));
6460e9cebe7SJosef Bacik 	struct pending_block *block;
6470e9cebe7SJosef Bacik 	struct bvec_iter iter;
6480e9cebe7SJosef Bacik 	struct bio_vec bv;
6490e9cebe7SJosef Bacik 	size_t alloc_size;
6500e9cebe7SJosef Bacik 	int i = 0;
6511eff9d32SJens Axboe 	bool flush_bio = (bio->bi_opf & REQ_PREFLUSH);
6521eff9d32SJens Axboe 	bool fua_bio = (bio->bi_opf & REQ_FUA);
653e6047149SMike Christie 	bool discard_bio = (bio_op(bio) == REQ_OP_DISCARD);
654e5c4cb9bSQu Wenruo 	bool meta_bio = (bio->bi_opf & REQ_META);
6550e9cebe7SJosef Bacik 
6560e9cebe7SJosef Bacik 	pb->block = NULL;
6570e9cebe7SJosef Bacik 
6580e9cebe7SJosef Bacik 	/* Don't bother doing anything if logging has been disabled */
6590e9cebe7SJosef Bacik 	if (!lc->logging_enabled)
6600e9cebe7SJosef Bacik 		goto map_bio;
6610e9cebe7SJosef Bacik 
6620e9cebe7SJosef Bacik 	/*
6630e9cebe7SJosef Bacik 	 * Map reads as normal.
6640e9cebe7SJosef Bacik 	 */
6650e9cebe7SJosef Bacik 	if (bio_data_dir(bio) == READ)
6660e9cebe7SJosef Bacik 		goto map_bio;
6670e9cebe7SJosef Bacik 
6680e9cebe7SJosef Bacik 	/* No sectors and not a flush?  Don't care */
6690e9cebe7SJosef Bacik 	if (!bio_sectors(bio) && !flush_bio)
6700e9cebe7SJosef Bacik 		goto map_bio;
6710e9cebe7SJosef Bacik 
6720e9cebe7SJosef Bacik 	/*
6730e9cebe7SJosef Bacik 	 * Discards will have bi_size set but there's no actual data, so just
6740e9cebe7SJosef Bacik 	 * allocate the size of the pending block.
6750e9cebe7SJosef Bacik 	 */
6760e9cebe7SJosef Bacik 	if (discard_bio)
6770e9cebe7SJosef Bacik 		alloc_size = sizeof(struct pending_block);
6780e9cebe7SJosef Bacik 	else
679d4e6e836SZhengyuan Liu 		alloc_size = struct_size(block, vecs, bio_segments(bio));
6800e9cebe7SJosef Bacik 
6810e9cebe7SJosef Bacik 	block = kzalloc(alloc_size, GFP_NOIO);
6820e9cebe7SJosef Bacik 	if (!block) {
6830e9cebe7SJosef Bacik 		DMERR("Error allocating pending block");
6840e9cebe7SJosef Bacik 		spin_lock_irq(&lc->blocks_lock);
6850e9cebe7SJosef Bacik 		lc->logging_enabled = false;
6860e9cebe7SJosef Bacik 		spin_unlock_irq(&lc->blocks_lock);
687846785e6SChristoph Hellwig 		return DM_MAPIO_KILL;
6880e9cebe7SJosef Bacik 	}
6890e9cebe7SJosef Bacik 	INIT_LIST_HEAD(&block->list);
6900e9cebe7SJosef Bacik 	pb->block = block;
6910e9cebe7SJosef Bacik 	atomic_inc(&lc->pending_blocks);
6920e9cebe7SJosef Bacik 
6930e9cebe7SJosef Bacik 	if (flush_bio)
6940e9cebe7SJosef Bacik 		block->flags |= LOG_FLUSH_FLAG;
6950e9cebe7SJosef Bacik 	if (fua_bio)
6960e9cebe7SJosef Bacik 		block->flags |= LOG_FUA_FLAG;
6970e9cebe7SJosef Bacik 	if (discard_bio)
6980e9cebe7SJosef Bacik 		block->flags |= LOG_DISCARD_FLAG;
699e5c4cb9bSQu Wenruo 	if (meta_bio)
700e5c4cb9bSQu Wenruo 		block->flags |= LOG_METADATA_FLAG;
7010e9cebe7SJosef Bacik 
702228bb5b2SJosef Bacik 	block->sector = bio_to_dev_sectors(lc, bio->bi_iter.bi_sector);
703228bb5b2SJosef Bacik 	block->nr_sectors = bio_to_dev_sectors(lc, bio_sectors(bio));
7040e9cebe7SJosef Bacik 
7050e9cebe7SJosef Bacik 	/* We don't need the data, just submit */
7060e9cebe7SJosef Bacik 	if (discard_bio) {
7070e9cebe7SJosef Bacik 		WARN_ON(flush_bio || fua_bio);
7080e9cebe7SJosef Bacik 		if (lc->device_supports_discard)
7090e9cebe7SJosef Bacik 			goto map_bio;
7104246a0b6SChristoph Hellwig 		bio_endio(bio);
7110e9cebe7SJosef Bacik 		return DM_MAPIO_SUBMITTED;
7120e9cebe7SJosef Bacik 	}
7130e9cebe7SJosef Bacik 
7140e9cebe7SJosef Bacik 	/* Flush bio, splice the unflushed blocks onto this list and submit */
7150e9cebe7SJosef Bacik 	if (flush_bio && !bio_sectors(bio)) {
7160e9cebe7SJosef Bacik 		spin_lock_irq(&lc->blocks_lock);
7170e9cebe7SJosef Bacik 		list_splice_init(&lc->unflushed_blocks, &block->list);
7180e9cebe7SJosef Bacik 		spin_unlock_irq(&lc->blocks_lock);
7190e9cebe7SJosef Bacik 		goto map_bio;
7200e9cebe7SJosef Bacik 	}
7210e9cebe7SJosef Bacik 
7220e9cebe7SJosef Bacik 	/*
7230e9cebe7SJosef Bacik 	 * We will write this bio somewhere else way later so we need to copy
7240e9cebe7SJosef Bacik 	 * the actual contents into new pages so we know the data will always be
7250e9cebe7SJosef Bacik 	 * there.
7260e9cebe7SJosef Bacik 	 *
7270e9cebe7SJosef Bacik 	 * We do this because this could be a bio from O_DIRECT in which case we
7280e9cebe7SJosef Bacik 	 * can't just hold onto the page until some later point, we have to
7290e9cebe7SJosef Bacik 	 * manually copy the contents.
7300e9cebe7SJosef Bacik 	 */
7310e9cebe7SJosef Bacik 	bio_for_each_segment(bv, bio, iter) {
7320e9cebe7SJosef Bacik 		struct page *page;
73327db2717SChristoph Hellwig 		void *dst;
7340e9cebe7SJosef Bacik 
7350e9cebe7SJosef Bacik 		page = alloc_page(GFP_NOIO);
7360e9cebe7SJosef Bacik 		if (!page) {
7370e9cebe7SJosef Bacik 			DMERR("Error allocing page");
7380e9cebe7SJosef Bacik 			free_pending_block(lc, block);
7390e9cebe7SJosef Bacik 			spin_lock_irq(&lc->blocks_lock);
7400e9cebe7SJosef Bacik 			lc->logging_enabled = false;
7410e9cebe7SJosef Bacik 			spin_unlock_irq(&lc->blocks_lock);
742846785e6SChristoph Hellwig 			return DM_MAPIO_KILL;
7430e9cebe7SJosef Bacik 		}
7440e9cebe7SJosef Bacik 
7450e9cebe7SJosef Bacik 		dst = kmap_atomic(page);
74627db2717SChristoph Hellwig 		memcpy_from_bvec(dst, &bv);
7470e9cebe7SJosef Bacik 		kunmap_atomic(dst);
7480e9cebe7SJosef Bacik 		block->vecs[i].bv_page = page;
7490e9cebe7SJosef Bacik 		block->vecs[i].bv_len = bv.bv_len;
7500e9cebe7SJosef Bacik 		block->vec_cnt++;
7510e9cebe7SJosef Bacik 		i++;
7520e9cebe7SJosef Bacik 	}
7530e9cebe7SJosef Bacik 
7540e9cebe7SJosef Bacik 	/* Had a flush with data in it, weird */
7550e9cebe7SJosef Bacik 	if (flush_bio) {
7560e9cebe7SJosef Bacik 		spin_lock_irq(&lc->blocks_lock);
7570e9cebe7SJosef Bacik 		list_splice_init(&lc->unflushed_blocks, &block->list);
7580e9cebe7SJosef Bacik 		spin_unlock_irq(&lc->blocks_lock);
7590e9cebe7SJosef Bacik 	}
7600e9cebe7SJosef Bacik map_bio:
7610e9cebe7SJosef Bacik 	normal_map_bio(ti, bio);
7620e9cebe7SJosef Bacik 	return DM_MAPIO_REMAPPED;
7630e9cebe7SJosef Bacik }
7640e9cebe7SJosef Bacik 
7654e4cbee9SChristoph Hellwig static int normal_end_io(struct dm_target *ti, struct bio *bio,
7664e4cbee9SChristoph Hellwig 		blk_status_t *error)
7670e9cebe7SJosef Bacik {
7680e9cebe7SJosef Bacik 	struct log_writes_c *lc = ti->private;
7690e9cebe7SJosef Bacik 	struct per_bio_data *pb = dm_per_bio_data(bio, sizeof(struct per_bio_data));
7700e9cebe7SJosef Bacik 
7710e9cebe7SJosef Bacik 	if (bio_data_dir(bio) == WRITE && pb->block) {
7720e9cebe7SJosef Bacik 		struct pending_block *block = pb->block;
7730e9cebe7SJosef Bacik 		unsigned long flags;
7740e9cebe7SJosef Bacik 
7750e9cebe7SJosef Bacik 		spin_lock_irqsave(&lc->blocks_lock, flags);
7760e9cebe7SJosef Bacik 		if (block->flags & LOG_FLUSH_FLAG) {
7770e9cebe7SJosef Bacik 			list_splice_tail_init(&block->list, &lc->logging_blocks);
7780e9cebe7SJosef Bacik 			list_add_tail(&block->list, &lc->logging_blocks);
7790e9cebe7SJosef Bacik 			wake_up_process(lc->log_kthread);
7800e9cebe7SJosef Bacik 		} else if (block->flags & LOG_FUA_FLAG) {
7810e9cebe7SJosef Bacik 			list_add_tail(&block->list, &lc->logging_blocks);
7820e9cebe7SJosef Bacik 			wake_up_process(lc->log_kthread);
7830e9cebe7SJosef Bacik 		} else
7840e9cebe7SJosef Bacik 			list_add_tail(&block->list, &lc->unflushed_blocks);
7850e9cebe7SJosef Bacik 		spin_unlock_irqrestore(&lc->blocks_lock, flags);
7860e9cebe7SJosef Bacik 	}
7870e9cebe7SJosef Bacik 
7881be56909SChristoph Hellwig 	return DM_ENDIO_DONE;
7890e9cebe7SJosef Bacik }
7900e9cebe7SJosef Bacik 
7910e9cebe7SJosef Bacik /*
7920e9cebe7SJosef Bacik  * INFO format: <logged entries> <highest allocated sector>
7930e9cebe7SJosef Bacik  */
7940e9cebe7SJosef Bacik static void log_writes_status(struct dm_target *ti, status_type_t type,
7950e9cebe7SJosef Bacik 			      unsigned status_flags, char *result,
7960e9cebe7SJosef Bacik 			      unsigned maxlen)
7970e9cebe7SJosef Bacik {
7980e9cebe7SJosef Bacik 	unsigned sz = 0;
7990e9cebe7SJosef Bacik 	struct log_writes_c *lc = ti->private;
8000e9cebe7SJosef Bacik 
8010e9cebe7SJosef Bacik 	switch (type) {
8020e9cebe7SJosef Bacik 	case STATUSTYPE_INFO:
8030e9cebe7SJosef Bacik 		DMEMIT("%llu %llu", lc->logged_entries,
8040e9cebe7SJosef Bacik 		       (unsigned long long)lc->next_sector - 1);
8050e9cebe7SJosef Bacik 		if (!lc->logging_enabled)
8060e9cebe7SJosef Bacik 			DMEMIT(" logging_disabled");
8070e9cebe7SJosef Bacik 		break;
8080e9cebe7SJosef Bacik 
8090e9cebe7SJosef Bacik 	case STATUSTYPE_TABLE:
8100e9cebe7SJosef Bacik 		DMEMIT("%s %s", lc->dev->name, lc->logdev->name);
8110e9cebe7SJosef Bacik 		break;
8128ec45662STushar Sugandhi 
8138ec45662STushar Sugandhi 	case STATUSTYPE_IMA:
8148ec45662STushar Sugandhi 		*result = '\0';
8158ec45662STushar Sugandhi 		break;
8160e9cebe7SJosef Bacik 	}
8170e9cebe7SJosef Bacik }
8180e9cebe7SJosef Bacik 
819e56f81e0SChristoph Hellwig static int log_writes_prepare_ioctl(struct dm_target *ti,
8205bd5e8d8SMike Snitzer 				    struct block_device **bdev)
8210e9cebe7SJosef Bacik {
8220e9cebe7SJosef Bacik 	struct log_writes_c *lc = ti->private;
8230e9cebe7SJosef Bacik 	struct dm_dev *dev = lc->dev;
8240e9cebe7SJosef Bacik 
825e56f81e0SChristoph Hellwig 	*bdev = dev->bdev;
8260e9cebe7SJosef Bacik 	/*
8270e9cebe7SJosef Bacik 	 * Only pass ioctls through if the device sizes match exactly.
8280e9cebe7SJosef Bacik 	 */
8296dcbb52cSChristoph Hellwig 	if (ti->len != bdev_nr_sectors(dev->bdev))
830e56f81e0SChristoph Hellwig 		return 1;
831e56f81e0SChristoph Hellwig 	return 0;
8320e9cebe7SJosef Bacik }
8330e9cebe7SJosef Bacik 
8340e9cebe7SJosef Bacik static int log_writes_iterate_devices(struct dm_target *ti,
8350e9cebe7SJosef Bacik 				      iterate_devices_callout_fn fn,
8360e9cebe7SJosef Bacik 				      void *data)
8370e9cebe7SJosef Bacik {
8380e9cebe7SJosef Bacik 	struct log_writes_c *lc = ti->private;
8390e9cebe7SJosef Bacik 
8400e9cebe7SJosef Bacik 	return fn(ti, lc->dev, 0, ti->len, data);
8410e9cebe7SJosef Bacik }
8420e9cebe7SJosef Bacik 
8430e9cebe7SJosef Bacik /*
8440e9cebe7SJosef Bacik  * Messages supported:
8450e9cebe7SJosef Bacik  *   mark <mark data> - specify the marked data.
8460e9cebe7SJosef Bacik  */
8471eb5fa84SMike Snitzer static int log_writes_message(struct dm_target *ti, unsigned argc, char **argv,
8481eb5fa84SMike Snitzer 			      char *result, unsigned maxlen)
8490e9cebe7SJosef Bacik {
8500e9cebe7SJosef Bacik 	int r = -EINVAL;
8510e9cebe7SJosef Bacik 	struct log_writes_c *lc = ti->private;
8520e9cebe7SJosef Bacik 
8530e9cebe7SJosef Bacik 	if (argc != 2) {
8540e9cebe7SJosef Bacik 		DMWARN("Invalid log-writes message arguments, expect 2 arguments, got %d", argc);
8550e9cebe7SJosef Bacik 		return r;
8560e9cebe7SJosef Bacik 	}
8570e9cebe7SJosef Bacik 
8580e9cebe7SJosef Bacik 	if (!strcasecmp(argv[0], "mark"))
8590e9cebe7SJosef Bacik 		r = log_mark(lc, argv[1]);
8600e9cebe7SJosef Bacik 	else
8610e9cebe7SJosef Bacik 		DMWARN("Unrecognised log writes target message received: %s", argv[0]);
8620e9cebe7SJosef Bacik 
8630e9cebe7SJosef Bacik 	return r;
8640e9cebe7SJosef Bacik }
8650e9cebe7SJosef Bacik 
8660e9cebe7SJosef Bacik static void log_writes_io_hints(struct dm_target *ti, struct queue_limits *limits)
8670e9cebe7SJosef Bacik {
8680e9cebe7SJosef Bacik 	struct log_writes_c *lc = ti->private;
8690e9cebe7SJosef Bacik 
87070200574SChristoph Hellwig 	if (!bdev_max_discard_sectors(lc->dev->bdev)) {
8710e9cebe7SJosef Bacik 		lc->device_supports_discard = false;
872228bb5b2SJosef Bacik 		limits->discard_granularity = lc->sectorsize;
8730e9cebe7SJosef Bacik 		limits->max_discard_sectors = (UINT_MAX >> SECTOR_SHIFT);
8740e9cebe7SJosef Bacik 	}
875228bb5b2SJosef Bacik 	limits->logical_block_size = bdev_logical_block_size(lc->dev->bdev);
876228bb5b2SJosef Bacik 	limits->physical_block_size = bdev_physical_block_size(lc->dev->bdev);
877228bb5b2SJosef Bacik 	limits->io_min = limits->physical_block_size;
878*50a89335SKeith Busch 	limits->dma_alignment = limits->logical_block_size - 1;
8790e9cebe7SJosef Bacik }
8800e9cebe7SJosef Bacik 
8815d2a228bSChristoph Hellwig #if IS_ENABLED(CONFIG_FS_DAX)
882d19bd675SChristoph Hellwig static struct dax_device *log_writes_dax_pgoff(struct dm_target *ti,
883d19bd675SChristoph Hellwig 		pgoff_t *pgoff)
884d19bd675SChristoph Hellwig {
885d19bd675SChristoph Hellwig 	struct log_writes_c *lc = ti->private;
886d19bd675SChristoph Hellwig 
887d19bd675SChristoph Hellwig 	*pgoff += (get_start_sect(lc->dev->bdev) >> PAGE_SECTORS_SHIFT);
888d19bd675SChristoph Hellwig 	return lc->dev->dax_dev;
889d19bd675SChristoph Hellwig }
890d19bd675SChristoph Hellwig 
89198d82f48SRoss Zwisler static long log_writes_dax_direct_access(struct dm_target *ti, pgoff_t pgoff,
892e511c4a3SJane Chu 		long nr_pages, enum dax_access_mode mode, void **kaddr,
893e511c4a3SJane Chu 		pfn_t *pfn)
89498d82f48SRoss Zwisler {
895d19bd675SChristoph Hellwig 	struct dax_device *dax_dev = log_writes_dax_pgoff(ti, &pgoff);
89698d82f48SRoss Zwisler 
897e511c4a3SJane Chu 	return dax_direct_access(dax_dev, pgoff, nr_pages, mode, kaddr, pfn);
89898d82f48SRoss Zwisler }
89998d82f48SRoss Zwisler 
900cdf6cdcdSVivek Goyal static int log_writes_dax_zero_page_range(struct dm_target *ti, pgoff_t pgoff,
901cdf6cdcdSVivek Goyal 					  size_t nr_pages)
902cdf6cdcdSVivek Goyal {
903d19bd675SChristoph Hellwig 	struct dax_device *dax_dev = log_writes_dax_pgoff(ti, &pgoff);
904cdf6cdcdSVivek Goyal 
905d19bd675SChristoph Hellwig 	return dax_zero_page_range(dax_dev, pgoff, nr_pages << PAGE_SHIFT);
906cdf6cdcdSVivek Goyal }
907cdf6cdcdSVivek Goyal 
908047218ecSJane Chu static size_t log_writes_dax_recovery_write(struct dm_target *ti,
909047218ecSJane Chu 		pgoff_t pgoff, void *addr, size_t bytes, struct iov_iter *i)
910047218ecSJane Chu {
911047218ecSJane Chu 	struct dax_device *dax_dev = log_writes_dax_pgoff(ti, &pgoff);
912047218ecSJane Chu 
913047218ecSJane Chu 	return dax_recovery_write(dax_dev, pgoff, addr, bytes, i);
914047218ecSJane Chu }
915047218ecSJane Chu 
916976431b0SDan Williams #else
917976431b0SDan Williams #define log_writes_dax_direct_access NULL
918cdf6cdcdSVivek Goyal #define log_writes_dax_zero_page_range NULL
919047218ecSJane Chu #define log_writes_dax_recovery_write NULL
920976431b0SDan Williams #endif
92198d82f48SRoss Zwisler 
9220e9cebe7SJosef Bacik static struct target_type log_writes_target = {
9230e9cebe7SJosef Bacik 	.name   = "log-writes",
92498d82f48SRoss Zwisler 	.version = {1, 1, 0},
9250e9cebe7SJosef Bacik 	.module = THIS_MODULE,
9260e9cebe7SJosef Bacik 	.ctr    = log_writes_ctr,
9270e9cebe7SJosef Bacik 	.dtr    = log_writes_dtr,
9280e9cebe7SJosef Bacik 	.map    = log_writes_map,
9290e9cebe7SJosef Bacik 	.end_io = normal_end_io,
9300e9cebe7SJosef Bacik 	.status = log_writes_status,
931e56f81e0SChristoph Hellwig 	.prepare_ioctl = log_writes_prepare_ioctl,
9320e9cebe7SJosef Bacik 	.message = log_writes_message,
9330e9cebe7SJosef Bacik 	.iterate_devices = log_writes_iterate_devices,
9340e9cebe7SJosef Bacik 	.io_hints = log_writes_io_hints,
93598d82f48SRoss Zwisler 	.direct_access = log_writes_dax_direct_access,
936cdf6cdcdSVivek Goyal 	.dax_zero_page_range = log_writes_dax_zero_page_range,
937047218ecSJane Chu 	.dax_recovery_write = log_writes_dax_recovery_write,
9380e9cebe7SJosef Bacik };
9390e9cebe7SJosef Bacik 
9400e9cebe7SJosef Bacik static int __init dm_log_writes_init(void)
9410e9cebe7SJosef Bacik {
9420e9cebe7SJosef Bacik 	int r = dm_register_target(&log_writes_target);
9430e9cebe7SJosef Bacik 
9440e9cebe7SJosef Bacik 	if (r < 0)
9450e9cebe7SJosef Bacik 		DMERR("register failed %d", r);
9460e9cebe7SJosef Bacik 
9470e9cebe7SJosef Bacik 	return r;
9480e9cebe7SJosef Bacik }
9490e9cebe7SJosef Bacik 
9500e9cebe7SJosef Bacik static void __exit dm_log_writes_exit(void)
9510e9cebe7SJosef Bacik {
9520e9cebe7SJosef Bacik 	dm_unregister_target(&log_writes_target);
9530e9cebe7SJosef Bacik }
9540e9cebe7SJosef Bacik 
9550e9cebe7SJosef Bacik module_init(dm_log_writes_init);
9560e9cebe7SJosef Bacik module_exit(dm_log_writes_exit);
9570e9cebe7SJosef Bacik 
9580e9cebe7SJosef Bacik MODULE_DESCRIPTION(DM_NAME " log writes target");
9590e9cebe7SJosef Bacik MODULE_AUTHOR("Josef Bacik <jbacik@fb.com>");
9600e9cebe7SJosef Bacik MODULE_LICENSE("GPL");
961