xref: /linux/fs/ext4/page-io.c (revision f1496362e9d7b37fe6b8983086c1548a601b5594)
1b2441318SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0
2bd2d0210STheodore Ts'o /*
3bd2d0210STheodore Ts'o  * linux/fs/ext4/page-io.c
4bd2d0210STheodore Ts'o  *
5bd2d0210STheodore Ts'o  * This contains the new page_io functions for ext4
6bd2d0210STheodore Ts'o  *
7bd2d0210STheodore Ts'o  * Written by Theodore Ts'o, 2010.
8bd2d0210STheodore Ts'o  */
9bd2d0210STheodore Ts'o 
10bd2d0210STheodore Ts'o #include <linux/fs.h>
11bd2d0210STheodore Ts'o #include <linux/time.h>
12bd2d0210STheodore Ts'o #include <linux/highuid.h>
13bd2d0210STheodore Ts'o #include <linux/pagemap.h>
14bd2d0210STheodore Ts'o #include <linux/quotaops.h>
15bd2d0210STheodore Ts'o #include <linux/string.h>
16bd2d0210STheodore Ts'o #include <linux/buffer_head.h>
17bd2d0210STheodore Ts'o #include <linux/writeback.h>
18bd2d0210STheodore Ts'o #include <linux/pagevec.h>
19bd2d0210STheodore Ts'o #include <linux/mpage.h>
20bd2d0210STheodore Ts'o #include <linux/namei.h>
21bd2d0210STheodore Ts'o #include <linux/uio.h>
22bd2d0210STheodore Ts'o #include <linux/bio.h>
23bd2d0210STheodore Ts'o #include <linux/workqueue.h>
24bd2d0210STheodore Ts'o #include <linux/kernel.h>
25bd2d0210STheodore Ts'o #include <linux/slab.h>
261ae48a63SJan Kara #include <linux/mm.h>
274034247aSNeilBrown #include <linux/sched/mm.h>
28bd2d0210STheodore Ts'o 
29bd2d0210STheodore Ts'o #include "ext4_jbd2.h"
30bd2d0210STheodore Ts'o #include "xattr.h"
31bd2d0210STheodore Ts'o #include "acl.h"
32bd2d0210STheodore Ts'o 
330058f965SJan Kara static struct kmem_cache *io_end_cachep;
34c8cc8816SRitesh Harjani static struct kmem_cache *io_end_vec_cachep;
35bd2d0210STheodore Ts'o 
365dabfc78STheodore Ts'o int __init ext4_init_pageio(void)
37bd2d0210STheodore Ts'o {
38bd2d0210STheodore Ts'o 	io_end_cachep = KMEM_CACHE(ext4_io_end, SLAB_RECLAIM_ACCOUNT);
390058f965SJan Kara 	if (io_end_cachep == NULL)
40bd2d0210STheodore Ts'o 		return -ENOMEM;
41c8cc8816SRitesh Harjani 
42c8cc8816SRitesh Harjani 	io_end_vec_cachep = KMEM_CACHE(ext4_io_end_vec, 0);
43c8cc8816SRitesh Harjani 	if (io_end_vec_cachep == NULL) {
44c8cc8816SRitesh Harjani 		kmem_cache_destroy(io_end_cachep);
45c8cc8816SRitesh Harjani 		return -ENOMEM;
46c8cc8816SRitesh Harjani 	}
47bd2d0210STheodore Ts'o 	return 0;
48bd2d0210STheodore Ts'o }
49bd2d0210STheodore Ts'o 
505dabfc78STheodore Ts'o void ext4_exit_pageio(void)
51bd2d0210STheodore Ts'o {
52bd2d0210STheodore Ts'o 	kmem_cache_destroy(io_end_cachep);
53c8cc8816SRitesh Harjani 	kmem_cache_destroy(io_end_vec_cachep);
54c8cc8816SRitesh Harjani }
55c8cc8816SRitesh Harjani 
56c8cc8816SRitesh Harjani struct ext4_io_end_vec *ext4_alloc_io_end_vec(ext4_io_end_t *io_end)
57c8cc8816SRitesh Harjani {
58c8cc8816SRitesh Harjani 	struct ext4_io_end_vec *io_end_vec;
59c8cc8816SRitesh Harjani 
60c8cc8816SRitesh Harjani 	io_end_vec = kmem_cache_zalloc(io_end_vec_cachep, GFP_NOFS);
61c8cc8816SRitesh Harjani 	if (!io_end_vec)
62c8cc8816SRitesh Harjani 		return ERR_PTR(-ENOMEM);
63c8cc8816SRitesh Harjani 	INIT_LIST_HEAD(&io_end_vec->list);
64c8cc8816SRitesh Harjani 	list_add_tail(&io_end_vec->list, &io_end->list_vec);
65c8cc8816SRitesh Harjani 	return io_end_vec;
66c8cc8816SRitesh Harjani }
67c8cc8816SRitesh Harjani 
68c8cc8816SRitesh Harjani static void ext4_free_io_end_vec(ext4_io_end_t *io_end)
69c8cc8816SRitesh Harjani {
70c8cc8816SRitesh Harjani 	struct ext4_io_end_vec *io_end_vec, *tmp;
71c8cc8816SRitesh Harjani 
72c8cc8816SRitesh Harjani 	if (list_empty(&io_end->list_vec))
73c8cc8816SRitesh Harjani 		return;
74c8cc8816SRitesh Harjani 	list_for_each_entry_safe(io_end_vec, tmp, &io_end->list_vec, list) {
75c8cc8816SRitesh Harjani 		list_del(&io_end_vec->list);
76c8cc8816SRitesh Harjani 		kmem_cache_free(io_end_vec_cachep, io_end_vec);
77c8cc8816SRitesh Harjani 	}
78c8cc8816SRitesh Harjani }
79c8cc8816SRitesh Harjani 
80c8cc8816SRitesh Harjani struct ext4_io_end_vec *ext4_last_io_end_vec(ext4_io_end_t *io_end)
81c8cc8816SRitesh Harjani {
82c8cc8816SRitesh Harjani 	BUG_ON(list_empty(&io_end->list_vec));
83c8cc8816SRitesh Harjani 	return list_last_entry(&io_end->list_vec, struct ext4_io_end_vec, list);
84bd2d0210STheodore Ts'o }
85bd2d0210STheodore Ts'o 
861ada47d9STheodore Ts'o /*
87b0857d30SJan Kara  * Print an buffer I/O error compatible with the fs/buffer.c.  This
88b0857d30SJan Kara  * provides compatibility with dmesg scrapers that look for a specific
89b0857d30SJan Kara  * buffer I/O error message.  We really need a unified error reporting
90b0857d30SJan Kara  * structure to userspace ala Digital Unix's uerf system, but it's
91b0857d30SJan Kara  * probably not going to happen in my lifetime, due to LKML politics...
92b0857d30SJan Kara  */
93b0857d30SJan Kara static void buffer_io_error(struct buffer_head *bh)
94b0857d30SJan Kara {
95a1c6f057SDmitry Monakhov 	printk_ratelimited(KERN_ERR "Buffer I/O error on device %pg, logical block %llu\n",
96a1c6f057SDmitry Monakhov 		       bh->b_bdev,
97b0857d30SJan Kara 			(unsigned long long)bh->b_blocknr);
98b0857d30SJan Kara }
99b0857d30SJan Kara 
100b0857d30SJan Kara static void ext4_finish_bio(struct bio *bio)
101b0857d30SJan Kara {
1022c30c71bSKent Overstreet 	struct bio_vec *bvec;
1036dc4f100SMing Lei 	struct bvec_iter_all iter_all;
104b0857d30SJan Kara 
1052b070cfeSChristoph Hellwig 	bio_for_each_segment_all(bvec, bio, iter_all) {
106b0857d30SJan Kara 		struct page *page = bvec->bv_page;
107d2d0727bSEric Biggers 		struct page *bounce_page = NULL;
108b0857d30SJan Kara 		struct buffer_head *bh, *head;
109b0857d30SJan Kara 		unsigned bio_start = bvec->bv_offset;
110b0857d30SJan Kara 		unsigned bio_end = bio_start + bvec->bv_len;
111b0857d30SJan Kara 		unsigned under_io = 0;
112b0857d30SJan Kara 		unsigned long flags;
113b0857d30SJan Kara 
114d2d0727bSEric Biggers 		if (fscrypt_is_bounce_page(page)) {
115d2d0727bSEric Biggers 			bounce_page = page;
116d2d0727bSEric Biggers 			page = fscrypt_pagecache_page(bounce_page);
1172058f83aSMichael Halcrow 		}
1182058f83aSMichael Halcrow 
1194e4cbee9SChristoph Hellwig 		if (bio->bi_status) {
120b0857d30SJan Kara 			SetPageError(page);
1215114a97aSMichal Hocko 			mapping_set_error(page->mapping, -EIO);
122b0857d30SJan Kara 		}
123b0857d30SJan Kara 		bh = head = page_buffers(page);
124b0857d30SJan Kara 		/*
125f1e67e35SThomas Gleixner 		 * We check all buffers in the page under b_uptodate_lock
126b0857d30SJan Kara 		 * to avoid races with other end io clearing async_write flags
127b0857d30SJan Kara 		 */
128f1e67e35SThomas Gleixner 		spin_lock_irqsave(&head->b_uptodate_lock, flags);
129b0857d30SJan Kara 		do {
130b0857d30SJan Kara 			if (bh_offset(bh) < bio_start ||
131b0857d30SJan Kara 			    bh_offset(bh) + bh->b_size > bio_end) {
132b0857d30SJan Kara 				if (buffer_async_write(bh))
133b0857d30SJan Kara 					under_io++;
134b0857d30SJan Kara 				continue;
135b0857d30SJan Kara 			}
136b0857d30SJan Kara 			clear_buffer_async_write(bh);
137a2b0b205SYe Bin 			if (bio->bi_status) {
138a2b0b205SYe Bin 				set_buffer_write_io_error(bh);
139b0857d30SJan Kara 				buffer_io_error(bh);
140a2b0b205SYe Bin 			}
141b0857d30SJan Kara 		} while ((bh = bh->b_this_page) != head);
142f1e67e35SThomas Gleixner 		spin_unlock_irqrestore(&head->b_uptodate_lock, flags);
1432058f83aSMichael Halcrow 		if (!under_io) {
144d2d0727bSEric Biggers 			fscrypt_free_bounce_page(bounce_page);
145b0857d30SJan Kara 			end_page_writeback(page);
146b0857d30SJan Kara 		}
147b0857d30SJan Kara 	}
1482058f83aSMichael Halcrow }
149b0857d30SJan Kara 
15097a851edSJan Kara static void ext4_release_io_end(ext4_io_end_t *io_end)
151bd2d0210STheodore Ts'o {
152b0857d30SJan Kara 	struct bio *bio, *next_bio;
153b0857d30SJan Kara 
15497a851edSJan Kara 	BUG_ON(!list_empty(&io_end->list));
15597a851edSJan Kara 	BUG_ON(io_end->flag & EXT4_IO_END_UNWRITTEN);
1566b523df4SJan Kara 	WARN_ON(io_end->handle);
157bd2d0210STheodore Ts'o 
158b0857d30SJan Kara 	for (bio = io_end->bio; bio; bio = next_bio) {
159b0857d30SJan Kara 		next_bio = bio->bi_private;
160b0857d30SJan Kara 		ext4_finish_bio(bio);
161b0857d30SJan Kara 		bio_put(bio);
162b0857d30SJan Kara 	}
163c8cc8816SRitesh Harjani 	ext4_free_io_end_vec(io_end);
16497a851edSJan Kara 	kmem_cache_free(io_end_cachep, io_end);
16597a851edSJan Kara }
16697a851edSJan Kara 
167a115f749SJan Kara /*
168a115f749SJan Kara  * Check a range of space and convert unwritten extents to written. Note that
169a115f749SJan Kara  * we are protected from truncate touching same part of extent tree by the
170a115f749SJan Kara  * fact that truncate code waits for all DIO to finish (thus exclusion from
171a115f749SJan Kara  * direct IO is achieved) and also waits for PageWriteback bits. Thus we
172a115f749SJan Kara  * cannot get to ext4_ext_truncate() before all IOs overlapping that range are
173a115f749SJan Kara  * completed (happens from ext4_free_ioend()).
174a115f749SJan Kara  */
175821ff38dSRitesh Harjani static int ext4_end_io_end(ext4_io_end_t *io_end)
176bd2d0210STheodore Ts'o {
177821ff38dSRitesh Harjani 	struct inode *inode = io_end->inode;
178821ff38dSRitesh Harjani 	handle_t *handle = io_end->handle;
179bd2d0210STheodore Ts'o 	int ret = 0;
180bd2d0210STheodore Ts'o 
181821ff38dSRitesh Harjani 	ext4_debug("ext4_end_io_nolock: io_end 0x%p from inode %lu,list->next 0x%p,"
182bd2d0210STheodore Ts'o 		   "list->prev 0x%p\n",
183821ff38dSRitesh Harjani 		   io_end, inode->i_ino, io_end->list.next, io_end->list.prev);
184bd2d0210STheodore Ts'o 
185821ff38dSRitesh Harjani 	io_end->handle = NULL;	/* Following call will use up the handle */
186a00713eaSRitesh Harjani 	ret = ext4_convert_unwritten_io_end_vec(handle, io_end);
1870db1ff22STheodore Ts'o 	if (ret < 0 && !ext4_forced_shutdown(EXT4_SB(inode->i_sb))) {
188b82e384cSTheodore Ts'o 		ext4_msg(inode->i_sb, KERN_EMERG,
189b82e384cSTheodore Ts'o 			 "failed to convert unwritten extents to written "
190b82e384cSTheodore Ts'o 			 "extents -- potential data loss!  "
191c8cc8816SRitesh Harjani 			 "(inode %lu, error %d)", inode->i_ino, ret);
192bd2d0210STheodore Ts'o 	}
193821ff38dSRitesh Harjani 	ext4_clear_io_unwritten_flag(io_end);
194821ff38dSRitesh Harjani 	ext4_release_io_end(io_end);
195bd2d0210STheodore Ts'o 	return ret;
196bd2d0210STheodore Ts'o }
197bd2d0210STheodore Ts'o 
1982e8fa54eSJan Kara static void dump_completed_IO(struct inode *inode, struct list_head *head)
19928a535f9SDmitry Monakhov {
20028a535f9SDmitry Monakhov #ifdef	EXT4FS_DEBUG
20128a535f9SDmitry Monakhov 	struct list_head *cur, *before, *after;
202821ff38dSRitesh Harjani 	ext4_io_end_t *io_end, *io_end0, *io_end1;
20328a535f9SDmitry Monakhov 
2042e8fa54eSJan Kara 	if (list_empty(head))
20528a535f9SDmitry Monakhov 		return;
20628a535f9SDmitry Monakhov 
2072e8fa54eSJan Kara 	ext4_debug("Dump inode %lu completed io list\n", inode->i_ino);
208821ff38dSRitesh Harjani 	list_for_each_entry(io_end, head, list) {
209821ff38dSRitesh Harjani 		cur = &io_end->list;
21028a535f9SDmitry Monakhov 		before = cur->prev;
211821ff38dSRitesh Harjani 		io_end0 = container_of(before, ext4_io_end_t, list);
21228a535f9SDmitry Monakhov 		after = cur->next;
213821ff38dSRitesh Harjani 		io_end1 = container_of(after, ext4_io_end_t, list);
21428a535f9SDmitry Monakhov 
21528a535f9SDmitry Monakhov 		ext4_debug("io 0x%p from inode %lu,prev 0x%p,next 0x%p\n",
216821ff38dSRitesh Harjani 			    io_end, inode->i_ino, io_end0, io_end1);
21728a535f9SDmitry Monakhov 	}
21828a535f9SDmitry Monakhov #endif
21928a535f9SDmitry Monakhov }
22028a535f9SDmitry Monakhov 
22128a535f9SDmitry Monakhov /* Add the io_end to per-inode completed end_io list. */
22297a851edSJan Kara static void ext4_add_complete_io(ext4_io_end_t *io_end)
22328a535f9SDmitry Monakhov {
22428a535f9SDmitry Monakhov 	struct ext4_inode_info *ei = EXT4_I(io_end->inode);
22578371a45SJan Kara 	struct ext4_sb_info *sbi = EXT4_SB(io_end->inode->i_sb);
22628a535f9SDmitry Monakhov 	struct workqueue_struct *wq;
22728a535f9SDmitry Monakhov 	unsigned long flags;
22828a535f9SDmitry Monakhov 
2297b7a8665SChristoph Hellwig 	/* Only reserved conversions from writeback should enter here */
2307b7a8665SChristoph Hellwig 	WARN_ON(!(io_end->flag & EXT4_IO_END_UNWRITTEN));
23178371a45SJan Kara 	WARN_ON(!io_end->handle && sbi->s_journal);
23228a535f9SDmitry Monakhov 	spin_lock_irqsave(&ei->i_completed_io_lock, flags);
23378371a45SJan Kara 	wq = sbi->rsv_conversion_wq;
2342e8fa54eSJan Kara 	if (list_empty(&ei->i_rsv_conversion_list))
2352e8fa54eSJan Kara 		queue_work(wq, &ei->i_rsv_conversion_work);
2362e8fa54eSJan Kara 	list_add_tail(&io_end->list, &ei->i_rsv_conversion_list);
23728a535f9SDmitry Monakhov 	spin_unlock_irqrestore(&ei->i_completed_io_lock, flags);
23828a535f9SDmitry Monakhov }
23928a535f9SDmitry Monakhov 
2402e8fa54eSJan Kara static int ext4_do_flush_completed_IO(struct inode *inode,
2412e8fa54eSJan Kara 				      struct list_head *head)
24228a535f9SDmitry Monakhov {
243821ff38dSRitesh Harjani 	ext4_io_end_t *io_end;
244002bd7faSJan Kara 	struct list_head unwritten;
24528a535f9SDmitry Monakhov 	unsigned long flags;
24628a535f9SDmitry Monakhov 	struct ext4_inode_info *ei = EXT4_I(inode);
24728a535f9SDmitry Monakhov 	int err, ret = 0;
24828a535f9SDmitry Monakhov 
24928a535f9SDmitry Monakhov 	spin_lock_irqsave(&ei->i_completed_io_lock, flags);
2502e8fa54eSJan Kara 	dump_completed_IO(inode, head);
2512e8fa54eSJan Kara 	list_replace_init(head, &unwritten);
25228a535f9SDmitry Monakhov 	spin_unlock_irqrestore(&ei->i_completed_io_lock, flags);
25328a535f9SDmitry Monakhov 
25428a535f9SDmitry Monakhov 	while (!list_empty(&unwritten)) {
255821ff38dSRitesh Harjani 		io_end = list_entry(unwritten.next, ext4_io_end_t, list);
256821ff38dSRitesh Harjani 		BUG_ON(!(io_end->flag & EXT4_IO_END_UNWRITTEN));
257821ff38dSRitesh Harjani 		list_del_init(&io_end->list);
25828a535f9SDmitry Monakhov 
259821ff38dSRitesh Harjani 		err = ext4_end_io_end(io_end);
26028a535f9SDmitry Monakhov 		if (unlikely(!ret && err))
26128a535f9SDmitry Monakhov 			ret = err;
26228a535f9SDmitry Monakhov 	}
26328a535f9SDmitry Monakhov 	return ret;
26428a535f9SDmitry Monakhov }
26528a535f9SDmitry Monakhov 
266bd2d0210STheodore Ts'o /*
2672e8fa54eSJan Kara  * work on completed IO, to convert unwritten extents to extents
268bd2d0210STheodore Ts'o  */
2692e8fa54eSJan Kara void ext4_end_io_rsv_work(struct work_struct *work)
270bd2d0210STheodore Ts'o {
27184c17543SJan Kara 	struct ext4_inode_info *ei = container_of(work, struct ext4_inode_info,
2722e8fa54eSJan Kara 						  i_rsv_conversion_work);
2732e8fa54eSJan Kara 	ext4_do_flush_completed_IO(&ei->vfs_inode, &ei->i_rsv_conversion_list);
2742e8fa54eSJan Kara }
2752e8fa54eSJan Kara 
276bd2d0210STheodore Ts'o ext4_io_end_t *ext4_init_io_end(struct inode *inode, gfp_t flags)
277bd2d0210STheodore Ts'o {
278821ff38dSRitesh Harjani 	ext4_io_end_t *io_end = kmem_cache_zalloc(io_end_cachep, flags);
279821ff38dSRitesh Harjani 
280821ff38dSRitesh Harjani 	if (io_end) {
281821ff38dSRitesh Harjani 		io_end->inode = inode;
282821ff38dSRitesh Harjani 		INIT_LIST_HEAD(&io_end->list);
283c8cc8816SRitesh Harjani 		INIT_LIST_HEAD(&io_end->list_vec);
28431d21d21SXiyu Yang 		refcount_set(&io_end->count, 1);
285bd2d0210STheodore Ts'o 	}
286821ff38dSRitesh Harjani 	return io_end;
287bd2d0210STheodore Ts'o }
288bd2d0210STheodore Ts'o 
28997a851edSJan Kara void ext4_put_io_end_defer(ext4_io_end_t *io_end)
29097a851edSJan Kara {
29131d21d21SXiyu Yang 	if (refcount_dec_and_test(&io_end->count)) {
292c8cc8816SRitesh Harjani 		if (!(io_end->flag & EXT4_IO_END_UNWRITTEN) ||
293c8cc8816SRitesh Harjani 				list_empty(&io_end->list_vec)) {
29497a851edSJan Kara 			ext4_release_io_end(io_end);
29597a851edSJan Kara 			return;
29697a851edSJan Kara 		}
29797a851edSJan Kara 		ext4_add_complete_io(io_end);
29897a851edSJan Kara 	}
29997a851edSJan Kara }
30097a851edSJan Kara 
30197a851edSJan Kara int ext4_put_io_end(ext4_io_end_t *io_end)
30297a851edSJan Kara {
30397a851edSJan Kara 	int err = 0;
30497a851edSJan Kara 
30531d21d21SXiyu Yang 	if (refcount_dec_and_test(&io_end->count)) {
30697a851edSJan Kara 		if (io_end->flag & EXT4_IO_END_UNWRITTEN) {
307a00713eaSRitesh Harjani 			err = ext4_convert_unwritten_io_end_vec(io_end->handle,
308a00713eaSRitesh Harjani 								io_end);
3096b523df4SJan Kara 			io_end->handle = NULL;
31097a851edSJan Kara 			ext4_clear_io_unwritten_flag(io_end);
31197a851edSJan Kara 		}
31297a851edSJan Kara 		ext4_release_io_end(io_end);
31397a851edSJan Kara 	}
31497a851edSJan Kara 	return err;
31597a851edSJan Kara }
31697a851edSJan Kara 
31797a851edSJan Kara ext4_io_end_t *ext4_get_io_end(ext4_io_end_t *io_end)
31897a851edSJan Kara {
31931d21d21SXiyu Yang 	refcount_inc(&io_end->count);
32097a851edSJan Kara 	return io_end;
32197a851edSJan Kara }
32297a851edSJan Kara 
323822dbba3SJan Kara /* BIO completion function for page writeback */
3244246a0b6SChristoph Hellwig static void ext4_end_bio(struct bio *bio)
325bd2d0210STheodore Ts'o {
326bd2d0210STheodore Ts'o 	ext4_io_end_t *io_end = bio->bi_private;
3274f024f37SKent Overstreet 	sector_t bi_sector = bio->bi_iter.bi_sector;
328bd2d0210STheodore Ts'o 
329734294e4SChristoph Hellwig 	if (WARN_ONCE(!io_end, "io_end is NULL: %pg: sector %Lu len %u err %d\n",
330734294e4SChristoph Hellwig 		      bio->bi_bdev,
33172d622b4STheodore Ts'o 		      (long long) bio->bi_iter.bi_sector,
33272d622b4STheodore Ts'o 		      (unsigned) bio_sectors(bio),
3334e4cbee9SChristoph Hellwig 		      bio->bi_status)) {
33472d622b4STheodore Ts'o 		ext4_finish_bio(bio);
33572d622b4STheodore Ts'o 		bio_put(bio);
33672d622b4STheodore Ts'o 		return;
33772d622b4STheodore Ts'o 	}
338bd2d0210STheodore Ts'o 	bio->bi_end_io = NULL;
3390058f965SJan Kara 
3404e4cbee9SChristoph Hellwig 	if (bio->bi_status) {
341b0857d30SJan Kara 		struct inode *inode = io_end->inode;
342b0857d30SJan Kara 
3439503c67cSMatthew Wilcox 		ext4_warning(inode->i_sb, "I/O error %d writing to inode %lu "
344c8cc8816SRitesh Harjani 			     "starting block %llu)",
3454e4cbee9SChristoph Hellwig 			     bio->bi_status, inode->i_ino,
346f7ad6d2eSTheodore Ts'o 			     (unsigned long long)
347d50bdd5aSCurt Wohlgemuth 			     bi_sector >> (inode->i_blkbits - 9));
3484e4cbee9SChristoph Hellwig 		mapping_set_error(inode->i_mapping,
3494e4cbee9SChristoph Hellwig 				blk_status_to_errno(bio->bi_status));
350f7ad6d2eSTheodore Ts'o 	}
351822dbba3SJan Kara 
352822dbba3SJan Kara 	if (io_end->flag & EXT4_IO_END_UNWRITTEN) {
353822dbba3SJan Kara 		/*
354822dbba3SJan Kara 		 * Link bio into list hanging from io_end. We have to do it
355822dbba3SJan Kara 		 * atomically as bio completions can be racing against each
356822dbba3SJan Kara 		 * other.
357822dbba3SJan Kara 		 */
358822dbba3SJan Kara 		bio->bi_private = xchg(&io_end->bio, bio);
35997a851edSJan Kara 		ext4_put_io_end_defer(io_end);
360822dbba3SJan Kara 	} else {
361822dbba3SJan Kara 		/*
362822dbba3SJan Kara 		 * Drop io_end reference early. Inode can get freed once
363822dbba3SJan Kara 		 * we finish the bio.
364822dbba3SJan Kara 		 */
365822dbba3SJan Kara 		ext4_put_io_end_defer(io_end);
366822dbba3SJan Kara 		ext4_finish_bio(bio);
367822dbba3SJan Kara 		bio_put(bio);
368822dbba3SJan Kara 	}
369bd2d0210STheodore Ts'o }
370bd2d0210STheodore Ts'o 
371bd2d0210STheodore Ts'o void ext4_io_submit(struct ext4_io_submit *io)
372bd2d0210STheodore Ts'o {
373bd2d0210STheodore Ts'o 	struct bio *bio = io->io_bio;
374bd2d0210STheodore Ts'o 
375bd2d0210STheodore Ts'o 	if (bio) {
3764c4dad11SChristoph Hellwig 		if (io->io_wbc->sync_mode == WB_SYNC_ALL)
3774c4dad11SChristoph Hellwig 			io->io_bio->bi_opf |= REQ_SYNC;
3784e49ea4aSMike Christie 		submit_bio(io->io_bio);
379bd2d0210STheodore Ts'o 	}
3807dc57615SPeter Huewe 	io->io_bio = NULL;
38197a851edSJan Kara }
38297a851edSJan Kara 
38397a851edSJan Kara void ext4_io_submit_init(struct ext4_io_submit *io,
38497a851edSJan Kara 			 struct writeback_control *wbc)
38597a851edSJan Kara {
3865a33911fSTejun Heo 	io->io_wbc = wbc;
38797a851edSJan Kara 	io->io_bio = NULL;
3887dc57615SPeter Huewe 	io->io_end = NULL;
389bd2d0210STheodore Ts'o }
390bd2d0210STheodore Ts'o 
3915500221eSGao Xiang static void io_submit_init_bio(struct ext4_io_submit *io,
392bd2d0210STheodore Ts'o 			       struct buffer_head *bh)
393bd2d0210STheodore Ts'o {
394bd2d0210STheodore Ts'o 	struct bio *bio;
395bd2d0210STheodore Ts'o 
3965500221eSGao Xiang 	/*
3975500221eSGao Xiang 	 * bio_alloc will _always_ be able to allocate a bio if
3985500221eSGao Xiang 	 * __GFP_DIRECT_RECLAIM is set, see comments for bio_alloc_bioset().
3995500221eSGao Xiang 	 */
4004c4dad11SChristoph Hellwig 	bio = bio_alloc(bh->b_bdev, BIO_MAX_VECS, REQ_OP_WRITE, GFP_NOIO);
4014f74d15fSEric Biggers 	fscrypt_set_bio_crypt_ctx_bh(bio, bh, GFP_NOIO);
4024f024f37SKent Overstreet 	bio->bi_iter.bi_sector = bh->b_blocknr * (bh->b_size >> 9);
403bd2d0210STheodore Ts'o 	bio->bi_end_io = ext4_end_bio;
40497a851edSJan Kara 	bio->bi_private = ext4_get_io_end(io->io_end);
405bd2d0210STheodore Ts'o 	io->io_bio = bio;
406bd2d0210STheodore Ts'o 	io->io_next_block = bh->b_blocknr;
407fd42df30SDennis Zhou 	wbc_init_bio(io->io_wbc, bio);
408bd2d0210STheodore Ts'o }
409bd2d0210STheodore Ts'o 
4105500221eSGao Xiang static void io_submit_add_bh(struct ext4_io_submit *io,
411bd2d0210STheodore Ts'o 			     struct inode *inode,
412ffec85d5SEric Biggers 			     struct page *pagecache_page,
413ffec85d5SEric Biggers 			     struct page *bounce_page,
414bd2d0210STheodore Ts'o 			     struct buffer_head *bh)
415bd2d0210STheodore Ts'o {
416bd2d0210STheodore Ts'o 	int ret;
417bd2d0210STheodore Ts'o 
4184f74d15fSEric Biggers 	if (io->io_bio && (bh->b_blocknr != io->io_next_block ||
4194f74d15fSEric Biggers 			   !fscrypt_mergeable_bio_bh(io->io_bio, bh))) {
420bd2d0210STheodore Ts'o submit_and_retry:
421bd2d0210STheodore Ts'o 		ext4_io_submit(io);
422bd2d0210STheodore Ts'o 	}
423c75e707fSChristoph Hellwig 	if (io->io_bio == NULL)
4245500221eSGao Xiang 		io_submit_init_bio(io, bh);
425ffec85d5SEric Biggers 	ret = bio_add_page(io->io_bio, bounce_page ?: pagecache_page,
426ffec85d5SEric Biggers 			   bh->b_size, bh_offset(bh));
427a549984bSTheodore Ts'o 	if (ret != bh->b_size)
428a549984bSTheodore Ts'o 		goto submit_and_retry;
429ffec85d5SEric Biggers 	wbc_account_cgroup_owner(io->io_wbc, pagecache_page, bh->b_size);
43097a851edSJan Kara 	io->io_next_block++;
431bd2d0210STheodore Ts'o }
432bd2d0210STheodore Ts'o 
433bd2d0210STheodore Ts'o int ext4_bio_write_page(struct ext4_io_submit *io,
434bd2d0210STheodore Ts'o 			struct page *page,
435dff4ac75SJan Kara 			int len)
436bd2d0210STheodore Ts'o {
437d2d0727bSEric Biggers 	struct page *bounce_page = NULL;
438bd2d0210STheodore Ts'o 	struct inode *inode = page->mapping->host;
43918017479SEric Engestrom 	unsigned block_start;
440bd2d0210STheodore Ts'o 	struct buffer_head *bh, *head;
441bd2d0210STheodore Ts'o 	int ret = 0;
442937d7b84STheodore Ts'o 	int nr_to_submit = 0;
443be993933SLei Chen 	struct writeback_control *wbc = io->io_wbc;
444dff4ac75SJan Kara 	bool keep_towrite = false;
445bd2d0210STheodore Ts'o 
446d50bdd5aSCurt Wohlgemuth 	BUG_ON(!PageLocked(page));
447bd2d0210STheodore Ts'o 	BUG_ON(PageWriteback(page));
448bd2d0210STheodore Ts'o 
449a54aa761STheodore Ts'o 	ClearPageError(page);
450bd2d0210STheodore Ts'o 
4510058f965SJan Kara 	/*
452f8409abdSLinus Torvalds 	 * Comments copied from block_write_full_page:
453eeece469SJan Kara 	 *
454eeece469SJan Kara 	 * The page straddles i_size.  It must be zeroed out on each and every
455eeece469SJan Kara 	 * writepage invocation because it may be mmapped.  "A file is mapped
456eeece469SJan Kara 	 * in multiples of the page size.  For a file that is not a multiple of
457eeece469SJan Kara 	 * the page size, the remaining memory is zeroed when mapped, and
458eeece469SJan Kara 	 * writes to that region are not written out to the file."
459eeece469SJan Kara 	 */
46009cbfeafSKirill A. Shutemov 	if (len < PAGE_SIZE)
46109cbfeafSKirill A. Shutemov 		zero_user_segment(page, len, PAGE_SIZE);
462eeece469SJan Kara 	/*
4630058f965SJan Kara 	 * In the first loop we prepare and mark buffers to submit. We have to
4640058f965SJan Kara 	 * mark all buffers in the page before submitting so that
46548e02e61SWang Jianjian 	 * end_page_writeback() cannot be called from ext4_end_bio() when IO
4660058f965SJan Kara 	 * on the first buffer finishes and we are still working on submitting
4670058f965SJan Kara 	 * the second buffer.
4680058f965SJan Kara 	 */
4690058f965SJan Kara 	bh = head = page_buffers(page);
4700058f965SJan Kara 	do {
4710058f965SJan Kara 		block_start = bh_offset(bh);
472bd2d0210STheodore Ts'o 		if (block_start >= len) {
473bd2d0210STheodore Ts'o 			clear_buffer_dirty(bh);
474bd2d0210STheodore Ts'o 			set_buffer_uptodate(bh);
475bd2d0210STheodore Ts'o 			continue;
476bd2d0210STheodore Ts'o 		}
4778a850c3fSJan Kara 		if (!buffer_dirty(bh) || buffer_delay(bh) ||
4788a850c3fSJan Kara 		    !buffer_mapped(bh) || buffer_unwritten(bh)) {
4798a850c3fSJan Kara 			/* A hole? We can safely clear the dirty bit */
4808a850c3fSJan Kara 			if (!buffer_mapped(bh))
4818a850c3fSJan Kara 				clear_buffer_dirty(bh);
48204e568a3SJan Kara 			/*
483dff4ac75SJan Kara 			 * Keeping dirty some buffer we cannot write? Make sure
484dff4ac75SJan Kara 			 * to redirty the page and keep TOWRITE tag so that
485dff4ac75SJan Kara 			 * racing WB_SYNC_ALL writeback does not skip the page.
486dff4ac75SJan Kara 			 * This happens e.g. when doing writeout for
487dff4ac75SJan Kara 			 * transaction commit.
48804e568a3SJan Kara 			 */
489dff4ac75SJan Kara 			if (buffer_dirty(bh)) {
490dff4ac75SJan Kara 				if (!PageDirty(page))
49104e568a3SJan Kara 					redirty_page_for_writepage(wbc, page);
492dff4ac75SJan Kara 				keep_towrite = true;
493dff4ac75SJan Kara 			}
4948a850c3fSJan Kara 			continue;
4958a850c3fSJan Kara 		}
49616e08b14Szhangyi (F) 		if (buffer_new(bh))
4970058f965SJan Kara 			clear_buffer_new(bh);
4980058f965SJan Kara 		set_buffer_async_write(bh);
49904e568a3SJan Kara 		clear_buffer_dirty(bh);
500937d7b84STheodore Ts'o 		nr_to_submit++;
5010058f965SJan Kara 	} while ((bh = bh->b_this_page) != head);
5020058f965SJan Kara 
503dff4ac75SJan Kara 	/* Nothing to submit? Just unlock the page... */
504dff4ac75SJan Kara 	if (!nr_to_submit)
505*f1496362SJan Kara 		return 0;
506dff4ac75SJan Kara 
5070058f965SJan Kara 	bh = head = page_buffers(page);
5082058f83aSMichael Halcrow 
5096e4b73bcSEric Biggers 	/*
5106e4b73bcSEric Biggers 	 * If any blocks are being written to an encrypted file, encrypt them
5116e4b73bcSEric Biggers 	 * into a bounce page.  For simplicity, just encrypt until the last
5126e4b73bcSEric Biggers 	 * block which might be needed.  This may cause some unneeded blocks
5136e4b73bcSEric Biggers 	 * (e.g. holes) to be unnecessarily encrypted, but this is rare and
5146e4b73bcSEric Biggers 	 * can't happen in the common case of blocksize == PAGE_SIZE.
5156e4b73bcSEric Biggers 	 */
5164f74d15fSEric Biggers 	if (fscrypt_inode_uses_fs_layer_crypto(inode) && nr_to_submit) {
517c9af28fdSTheodore Ts'o 		gfp_t gfp_flags = GFP_NOFS;
5186e4b73bcSEric Biggers 		unsigned int enc_bytes = round_up(len, i_blocksize(inode));
519c9af28fdSTheodore Ts'o 
520547c556fSEric Biggers 		/*
521547c556fSEric Biggers 		 * Since bounce page allocation uses a mempool, we can only use
522547c556fSEric Biggers 		 * a waiting mask (i.e. request guaranteed allocation) on the
523547c556fSEric Biggers 		 * first page of the bio.  Otherwise it can deadlock.
524547c556fSEric Biggers 		 */
525547c556fSEric Biggers 		if (io->io_bio)
526547c556fSEric Biggers 			gfp_flags = GFP_NOWAIT | __GFP_NOWARN;
527c9af28fdSTheodore Ts'o 	retry_encrypt:
5286e4b73bcSEric Biggers 		bounce_page = fscrypt_encrypt_pagecache_blocks(page, enc_bytes,
52953bc1d85SEric Biggers 							       0, gfp_flags);
530d2d0727bSEric Biggers 		if (IS_ERR(bounce_page)) {
531d2d0727bSEric Biggers 			ret = PTR_ERR(bounce_page);
532547c556fSEric Biggers 			if (ret == -ENOMEM &&
533547c556fSEric Biggers 			    (io->io_bio || wbc->sync_mode == WB_SYNC_ALL)) {
5344034247aSNeilBrown 				gfp_t new_gfp_flags = GFP_NOFS;
535547c556fSEric Biggers 				if (io->io_bio)
536c9af28fdSTheodore Ts'o 					ext4_io_submit(io);
537547c556fSEric Biggers 				else
5384034247aSNeilBrown 					new_gfp_flags |= __GFP_NOFAIL;
5394034247aSNeilBrown 				memalloc_retry_wait(gfp_flags);
5404034247aSNeilBrown 				gfp_flags = new_gfp_flags;
541c9af28fdSTheodore Ts'o 				goto retry_encrypt;
542c9af28fdSTheodore Ts'o 			}
5435500221eSGao Xiang 
5445500221eSGao Xiang 			printk_ratelimited(KERN_ERR "%s: ret = %d\n", __func__, ret);
5455500221eSGao Xiang 			redirty_page_for_writepage(wbc, page);
5465500221eSGao Xiang 			do {
54704e568a3SJan Kara 				if (buffer_async_write(bh)) {
5485500221eSGao Xiang 					clear_buffer_async_write(bh);
54904e568a3SJan Kara 					set_buffer_dirty(bh);
55004e568a3SJan Kara 				}
5515500221eSGao Xiang 				bh = bh->b_this_page;
5525500221eSGao Xiang 			} while (bh != head);
553*f1496362SJan Kara 
554*f1496362SJan Kara 			return ret;
5552058f83aSMichael Halcrow 		}
5562058f83aSMichael Halcrow 	}
5572058f83aSMichael Halcrow 
558dff4ac75SJan Kara 	if (keep_towrite)
559dff4ac75SJan Kara 		set_page_writeback_keepwrite(page);
560dff4ac75SJan Kara 	else
561dff4ac75SJan Kara 		set_page_writeback(page);
562dff4ac75SJan Kara 
5632058f83aSMichael Halcrow 	/* Now submit buffers to write */
5640058f965SJan Kara 	do {
5650058f965SJan Kara 		if (!buffer_async_write(bh))
5660058f965SJan Kara 			continue;
567ffec85d5SEric Biggers 		io_submit_add_bh(io, inode, page, bounce_page, bh);
5680058f965SJan Kara 	} while ((bh = bh->b_this_page) != head);
569*f1496362SJan Kara 
570*f1496362SJan Kara 	return 0;
571bd2d0210STheodore Ts'o }
572