blob: 1d370364230e8106fe3eae8d5172ccaf8fa10b3c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Theodore Ts'obd2d0212010-10-27 21:30:10 -04002/*
3 * linux/fs/ext4/page-io.c
4 *
5 * This contains the new page_io functions for ext4
6 *
7 * Written by Theodore Ts'o, 2010.
8 */
9
Theodore Ts'obd2d0212010-10-27 21:30:10 -040010#include <linux/fs.h>
11#include <linux/time.h>
Theodore Ts'obd2d0212010-10-27 21:30:10 -040012#include <linux/highuid.h>
13#include <linux/pagemap.h>
14#include <linux/quotaops.h>
15#include <linux/string.h>
16#include <linux/buffer_head.h>
17#include <linux/writeback.h>
18#include <linux/pagevec.h>
19#include <linux/mpage.h>
20#include <linux/namei.h>
21#include <linux/uio.h>
22#include <linux/bio.h>
23#include <linux/workqueue.h>
24#include <linux/kernel.h>
25#include <linux/slab.h>
Jan Kara1ae48a62013-01-28 09:32:54 -050026#include <linux/mm.h>
NeilBrown40342472022-01-14 14:07:14 -080027#include <linux/sched/mm.h>
Theodore Ts'obd2d0212010-10-27 21:30:10 -040028
29#include "ext4_jbd2.h"
30#include "xattr.h"
31#include "acl.h"
Theodore Ts'obd2d0212010-10-27 21:30:10 -040032
Jan Kara0058f962013-04-11 23:48:32 -040033static struct kmem_cache *io_end_cachep;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +053034static struct kmem_cache *io_end_vec_cachep;
Theodore Ts'obd2d0212010-10-27 21:30:10 -040035
Theodore Ts'o5dabfc72010-10-27 21:30:14 -040036int __init ext4_init_pageio(void)
Theodore Ts'obd2d0212010-10-27 21:30:10 -040037{
Theodore Ts'obd2d0212010-10-27 21:30:10 -040038 io_end_cachep = KMEM_CACHE(ext4_io_end, SLAB_RECLAIM_ACCOUNT);
Jan Kara0058f962013-04-11 23:48:32 -040039 if (io_end_cachep == NULL)
Theodore Ts'obd2d0212010-10-27 21:30:10 -040040 return -ENOMEM;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +053041
42 io_end_vec_cachep = KMEM_CACHE(ext4_io_end_vec, 0);
43 if (io_end_vec_cachep == NULL) {
44 kmem_cache_destroy(io_end_cachep);
45 return -ENOMEM;
46 }
Theodore Ts'obd2d0212010-10-27 21:30:10 -040047 return 0;
48}
49
Theodore Ts'o5dabfc72010-10-27 21:30:14 -040050void ext4_exit_pageio(void)
Theodore Ts'obd2d0212010-10-27 21:30:10 -040051{
52 kmem_cache_destroy(io_end_cachep);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +053053 kmem_cache_destroy(io_end_vec_cachep);
54}
55
56struct ext4_io_end_vec *ext4_alloc_io_end_vec(ext4_io_end_t *io_end)
57{
58 struct ext4_io_end_vec *io_end_vec;
59
60 io_end_vec = kmem_cache_zalloc(io_end_vec_cachep, GFP_NOFS);
61 if (!io_end_vec)
62 return ERR_PTR(-ENOMEM);
63 INIT_LIST_HEAD(&io_end_vec->list);
64 list_add_tail(&io_end_vec->list, &io_end->list_vec);
65 return io_end_vec;
66}
67
68static void ext4_free_io_end_vec(ext4_io_end_t *io_end)
69{
70 struct ext4_io_end_vec *io_end_vec, *tmp;
71
72 if (list_empty(&io_end->list_vec))
73 return;
74 list_for_each_entry_safe(io_end_vec, tmp, &io_end->list_vec, list) {
75 list_del(&io_end_vec->list);
76 kmem_cache_free(io_end_vec_cachep, io_end_vec);
77 }
78}
79
80struct ext4_io_end_vec *ext4_last_io_end_vec(ext4_io_end_t *io_end)
81{
82 BUG_ON(list_empty(&io_end->list_vec));
83 return list_last_entry(&io_end->list_vec, struct ext4_io_end_vec, list);
Theodore Ts'obd2d0212010-10-27 21:30:10 -040084}
85
Theodore Ts'o1ada47d2013-03-20 09:39:42 -040086/*
Jan Karab0857d32013-06-04 14:23:41 -040087 * Print an buffer I/O error compatible with the fs/buffer.c. This
88 * provides compatibility with dmesg scrapers that look for a specific
89 * buffer I/O error message. We really need a unified error reporting
90 * structure to userspace ala Digital Unix's uerf system, but it's
91 * probably not going to happen in my lifetime, due to LKML politics...
92 */
93static void buffer_io_error(struct buffer_head *bh)
94{
Dmitry Monakhova1c6f0572015-04-13 16:31:37 +040095 printk_ratelimited(KERN_ERR "Buffer I/O error on device %pg, logical block %llu\n",
96 bh->b_bdev,
Jan Karab0857d32013-06-04 14:23:41 -040097 (unsigned long long)bh->b_blocknr);
98}
99
100static void ext4_finish_bio(struct bio *bio)
101{
Kent Overstreet2c30c712013-11-07 12:20:26 -0800102 struct bio_vec *bvec;
Ming Lei6dc4f102019-02-15 19:13:19 +0800103 struct bvec_iter_all iter_all;
Jan Karab0857d32013-06-04 14:23:41 -0400104
Christoph Hellwig2b070cf2019-04-25 09:03:00 +0200105 bio_for_each_segment_all(bvec, bio, iter_all) {
Jan Karab0857d32013-06-04 14:23:41 -0400106 struct page *page = bvec->bv_page;
Eric Biggersd2d07272019-05-20 09:29:39 -0700107 struct page *bounce_page = NULL;
Jan Karab0857d32013-06-04 14:23:41 -0400108 struct buffer_head *bh, *head;
109 unsigned bio_start = bvec->bv_offset;
110 unsigned bio_end = bio_start + bvec->bv_len;
111 unsigned under_io = 0;
112 unsigned long flags;
113
Eric Biggersd2d07272019-05-20 09:29:39 -0700114 if (fscrypt_is_bounce_page(page)) {
115 bounce_page = page;
116 page = fscrypt_pagecache_page(bounce_page);
Michael Halcrow2058f832015-04-12 00:55:10 -0400117 }
Michael Halcrow2058f832015-04-12 00:55:10 -0400118
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200119 if (bio->bi_status) {
Jan Karab0857d32013-06-04 14:23:41 -0400120 SetPageError(page);
Michal Hocko5114a972016-10-11 13:56:01 -0700121 mapping_set_error(page->mapping, -EIO);
Jan Karab0857d32013-06-04 14:23:41 -0400122 }
123 bh = head = page_buffers(page);
124 /*
Thomas Gleixnerf1e67e32019-11-18 14:28:24 +0100125 * We check all buffers in the page under b_uptodate_lock
Jan Karab0857d32013-06-04 14:23:41 -0400126 * to avoid races with other end io clearing async_write flags
127 */
Thomas Gleixnerf1e67e32019-11-18 14:28:24 +0100128 spin_lock_irqsave(&head->b_uptodate_lock, flags);
Jan Karab0857d32013-06-04 14:23:41 -0400129 do {
130 if (bh_offset(bh) < bio_start ||
131 bh_offset(bh) + bh->b_size > bio_end) {
132 if (buffer_async_write(bh))
133 under_io++;
134 continue;
135 }
136 clear_buffer_async_write(bh);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200137 if (bio->bi_status)
Jan Karab0857d32013-06-04 14:23:41 -0400138 buffer_io_error(bh);
139 } while ((bh = bh->b_this_page) != head);
Thomas Gleixnerf1e67e32019-11-18 14:28:24 +0100140 spin_unlock_irqrestore(&head->b_uptodate_lock, flags);
Michael Halcrow2058f832015-04-12 00:55:10 -0400141 if (!under_io) {
Eric Biggersd2d07272019-05-20 09:29:39 -0700142 fscrypt_free_bounce_page(bounce_page);
Jan Karab0857d32013-06-04 14:23:41 -0400143 end_page_writeback(page);
Michael Halcrow2058f832015-04-12 00:55:10 -0400144 }
Jan Karab0857d32013-06-04 14:23:41 -0400145 }
146}
147
Jan Kara97a851e2013-06-04 11:58:58 -0400148static void ext4_release_io_end(ext4_io_end_t *io_end)
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400149{
Jan Karab0857d32013-06-04 14:23:41 -0400150 struct bio *bio, *next_bio;
151
Jan Kara97a851e2013-06-04 11:58:58 -0400152 BUG_ON(!list_empty(&io_end->list));
153 BUG_ON(io_end->flag & EXT4_IO_END_UNWRITTEN);
Jan Kara6b523df2013-06-04 13:21:11 -0400154 WARN_ON(io_end->handle);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400155
Jan Karab0857d32013-06-04 14:23:41 -0400156 for (bio = io_end->bio; bio; bio = next_bio) {
157 next_bio = bio->bi_private;
158 ext4_finish_bio(bio);
159 bio_put(bio);
160 }
Ritesh Harjanic8cc8812019-10-16 13:07:10 +0530161 ext4_free_io_end_vec(io_end);
Jan Kara97a851e2013-06-04 11:58:58 -0400162 kmem_cache_free(io_end_cachep, io_end);
163}
164
Jan Karaa115f742013-06-04 14:30:00 -0400165/*
166 * Check a range of space and convert unwritten extents to written. Note that
167 * we are protected from truncate touching same part of extent tree by the
168 * fact that truncate code waits for all DIO to finish (thus exclusion from
169 * direct IO is achieved) and also waits for PageWriteback bits. Thus we
170 * cannot get to ext4_ext_truncate() before all IOs overlapping that range are
171 * completed (happens from ext4_free_ioend()).
172 */
Ritesh Harjani821ff382019-10-16 13:07:07 +0530173static int ext4_end_io_end(ext4_io_end_t *io_end)
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400174{
Ritesh Harjani821ff382019-10-16 13:07:07 +0530175 struct inode *inode = io_end->inode;
Ritesh Harjani821ff382019-10-16 13:07:07 +0530176 handle_t *handle = io_end->handle;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400177 int ret = 0;
178
Ritesh Harjani821ff382019-10-16 13:07:07 +0530179 ext4_debug("ext4_end_io_nolock: io_end 0x%p from inode %lu,list->next 0x%p,"
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400180 "list->prev 0x%p\n",
Ritesh Harjani821ff382019-10-16 13:07:07 +0530181 io_end, inode->i_ino, io_end->list.next, io_end->list.prev);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400182
Ritesh Harjani821ff382019-10-16 13:07:07 +0530183 io_end->handle = NULL; /* Following call will use up the handle */
Ritesh Harjania00713e2019-10-16 13:07:08 +0530184 ret = ext4_convert_unwritten_io_end_vec(handle, io_end);
Theodore Ts'o0db1ff22017-02-05 01:28:48 -0500185 if (ret < 0 && !ext4_forced_shutdown(EXT4_SB(inode->i_sb))) {
Theodore Ts'ob82e3842011-10-31 10:56:32 -0400186 ext4_msg(inode->i_sb, KERN_EMERG,
187 "failed to convert unwritten extents to written "
188 "extents -- potential data loss! "
Ritesh Harjanic8cc8812019-10-16 13:07:10 +0530189 "(inode %lu, error %d)", inode->i_ino, ret);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400190 }
Ritesh Harjani821ff382019-10-16 13:07:07 +0530191 ext4_clear_io_unwritten_flag(io_end);
192 ext4_release_io_end(io_end);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400193 return ret;
194}
195
Jan Kara2e8fa542013-06-04 14:21:02 -0400196static void dump_completed_IO(struct inode *inode, struct list_head *head)
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400197{
198#ifdef EXT4FS_DEBUG
199 struct list_head *cur, *before, *after;
Ritesh Harjani821ff382019-10-16 13:07:07 +0530200 ext4_io_end_t *io_end, *io_end0, *io_end1;
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400201
Jan Kara2e8fa542013-06-04 14:21:02 -0400202 if (list_empty(head))
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400203 return;
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400204
Jan Kara2e8fa542013-06-04 14:21:02 -0400205 ext4_debug("Dump inode %lu completed io list\n", inode->i_ino);
Ritesh Harjani821ff382019-10-16 13:07:07 +0530206 list_for_each_entry(io_end, head, list) {
207 cur = &io_end->list;
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400208 before = cur->prev;
Ritesh Harjani821ff382019-10-16 13:07:07 +0530209 io_end0 = container_of(before, ext4_io_end_t, list);
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400210 after = cur->next;
Ritesh Harjani821ff382019-10-16 13:07:07 +0530211 io_end1 = container_of(after, ext4_io_end_t, list);
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400212
213 ext4_debug("io 0x%p from inode %lu,prev 0x%p,next 0x%p\n",
Ritesh Harjani821ff382019-10-16 13:07:07 +0530214 io_end, inode->i_ino, io_end0, io_end1);
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400215 }
216#endif
217}
218
219/* Add the io_end to per-inode completed end_io list. */
Jan Kara97a851e2013-06-04 11:58:58 -0400220static void ext4_add_complete_io(ext4_io_end_t *io_end)
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400221{
222 struct ext4_inode_info *ei = EXT4_I(io_end->inode);
Jan Kara78371a42013-10-16 08:25:11 -0400223 struct ext4_sb_info *sbi = EXT4_SB(io_end->inode->i_sb);
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400224 struct workqueue_struct *wq;
225 unsigned long flags;
226
Christoph Hellwig7b7a8662013-09-04 15:04:39 +0200227 /* Only reserved conversions from writeback should enter here */
228 WARN_ON(!(io_end->flag & EXT4_IO_END_UNWRITTEN));
Jan Kara78371a42013-10-16 08:25:11 -0400229 WARN_ON(!io_end->handle && sbi->s_journal);
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400230 spin_lock_irqsave(&ei->i_completed_io_lock, flags);
Jan Kara78371a42013-10-16 08:25:11 -0400231 wq = sbi->rsv_conversion_wq;
Christoph Hellwig7b7a8662013-09-04 15:04:39 +0200232 if (list_empty(&ei->i_rsv_conversion_list))
233 queue_work(wq, &ei->i_rsv_conversion_work);
234 list_add_tail(&io_end->list, &ei->i_rsv_conversion_list);
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400235 spin_unlock_irqrestore(&ei->i_completed_io_lock, flags);
236}
237
Jan Kara2e8fa542013-06-04 14:21:02 -0400238static int ext4_do_flush_completed_IO(struct inode *inode,
239 struct list_head *head)
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400240{
Ritesh Harjani821ff382019-10-16 13:07:07 +0530241 ext4_io_end_t *io_end;
Jan Kara002bd7f2013-01-28 09:49:15 -0500242 struct list_head unwritten;
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400243 unsigned long flags;
244 struct ext4_inode_info *ei = EXT4_I(inode);
245 int err, ret = 0;
246
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400247 spin_lock_irqsave(&ei->i_completed_io_lock, flags);
Jan Kara2e8fa542013-06-04 14:21:02 -0400248 dump_completed_IO(inode, head);
249 list_replace_init(head, &unwritten);
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400250 spin_unlock_irqrestore(&ei->i_completed_io_lock, flags);
251
252 while (!list_empty(&unwritten)) {
Ritesh Harjani821ff382019-10-16 13:07:07 +0530253 io_end = list_entry(unwritten.next, ext4_io_end_t, list);
254 BUG_ON(!(io_end->flag & EXT4_IO_END_UNWRITTEN));
255 list_del_init(&io_end->list);
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400256
Ritesh Harjani821ff382019-10-16 13:07:07 +0530257 err = ext4_end_io_end(io_end);
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400258 if (unlikely(!ret && err))
259 ret = err;
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400260 }
261 return ret;
262}
263
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400264/*
Jan Kara2e8fa542013-06-04 14:21:02 -0400265 * work on completed IO, to convert unwritten extents to extents
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400266 */
Jan Kara2e8fa542013-06-04 14:21:02 -0400267void ext4_end_io_rsv_work(struct work_struct *work)
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400268{
Jan Kara84c17542013-01-28 09:43:46 -0500269 struct ext4_inode_info *ei = container_of(work, struct ext4_inode_info,
Jan Kara2e8fa542013-06-04 14:21:02 -0400270 i_rsv_conversion_work);
271 ext4_do_flush_completed_IO(&ei->vfs_inode, &ei->i_rsv_conversion_list);
272}
273
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400274ext4_io_end_t *ext4_init_io_end(struct inode *inode, gfp_t flags)
275{
Ritesh Harjani821ff382019-10-16 13:07:07 +0530276 ext4_io_end_t *io_end = kmem_cache_zalloc(io_end_cachep, flags);
277
278 if (io_end) {
279 io_end->inode = inode;
280 INIT_LIST_HEAD(&io_end->list);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +0530281 INIT_LIST_HEAD(&io_end->list_vec);
Xiyu Yang31d21d22021-07-19 13:59:14 +0800282 refcount_set(&io_end->count, 1);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400283 }
Ritesh Harjani821ff382019-10-16 13:07:07 +0530284 return io_end;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400285}
286
Jan Kara97a851e2013-06-04 11:58:58 -0400287void ext4_put_io_end_defer(ext4_io_end_t *io_end)
288{
Xiyu Yang31d21d22021-07-19 13:59:14 +0800289 if (refcount_dec_and_test(&io_end->count)) {
Ritesh Harjanic8cc8812019-10-16 13:07:10 +0530290 if (!(io_end->flag & EXT4_IO_END_UNWRITTEN) ||
291 list_empty(&io_end->list_vec)) {
Jan Kara97a851e2013-06-04 11:58:58 -0400292 ext4_release_io_end(io_end);
293 return;
294 }
295 ext4_add_complete_io(io_end);
296 }
297}
298
299int ext4_put_io_end(ext4_io_end_t *io_end)
300{
301 int err = 0;
302
Xiyu Yang31d21d22021-07-19 13:59:14 +0800303 if (refcount_dec_and_test(&io_end->count)) {
Jan Kara97a851e2013-06-04 11:58:58 -0400304 if (io_end->flag & EXT4_IO_END_UNWRITTEN) {
Ritesh Harjania00713e2019-10-16 13:07:08 +0530305 err = ext4_convert_unwritten_io_end_vec(io_end->handle,
306 io_end);
Jan Kara6b523df2013-06-04 13:21:11 -0400307 io_end->handle = NULL;
Jan Kara97a851e2013-06-04 11:58:58 -0400308 ext4_clear_io_unwritten_flag(io_end);
309 }
310 ext4_release_io_end(io_end);
311 }
312 return err;
313}
314
315ext4_io_end_t *ext4_get_io_end(ext4_io_end_t *io_end)
316{
Xiyu Yang31d21d22021-07-19 13:59:14 +0800317 refcount_inc(&io_end->count);
Jan Kara97a851e2013-06-04 11:58:58 -0400318 return io_end;
319}
320
Jan Kara822dbba2013-07-10 21:31:04 -0400321/* BIO completion function for page writeback */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200322static void ext4_end_bio(struct bio *bio)
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400323{
324 ext4_io_end_t *io_end = bio->bi_private;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700325 sector_t bi_sector = bio->bi_iter.bi_sector;
Theodore Ts'o72d622b42017-04-30 20:08:05 -0400326 char b[BDEVNAME_SIZE];
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400327
Theodore Ts'o72d622b42017-04-30 20:08:05 -0400328 if (WARN_ONCE(!io_end, "io_end is NULL: %s: sector %Lu len %u err %d\n",
Christoph Hellwig74d46992017-08-23 19:10:32 +0200329 bio_devname(bio, b),
Theodore Ts'o72d622b42017-04-30 20:08:05 -0400330 (long long) bio->bi_iter.bi_sector,
331 (unsigned) bio_sectors(bio),
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200332 bio->bi_status)) {
Theodore Ts'o72d622b42017-04-30 20:08:05 -0400333 ext4_finish_bio(bio);
334 bio_put(bio);
335 return;
336 }
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400337 bio->bi_end_io = NULL;
Jan Kara0058f962013-04-11 23:48:32 -0400338
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200339 if (bio->bi_status) {
Jan Karab0857d32013-06-04 14:23:41 -0400340 struct inode *inode = io_end->inode;
341
Matthew Wilcox9503c672014-04-07 10:54:20 -0400342 ext4_warning(inode->i_sb, "I/O error %d writing to inode %lu "
Ritesh Harjanic8cc8812019-10-16 13:07:10 +0530343 "starting block %llu)",
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200344 bio->bi_status, inode->i_ino,
Theodore Ts'of7ad6d22010-11-08 13:43:33 -0500345 (unsigned long long)
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500346 bi_sector >> (inode->i_blkbits - 9));
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200347 mapping_set_error(inode->i_mapping,
348 blk_status_to_errno(bio->bi_status));
Theodore Ts'of7ad6d22010-11-08 13:43:33 -0500349 }
Jan Kara822dbba2013-07-10 21:31:04 -0400350
351 if (io_end->flag & EXT4_IO_END_UNWRITTEN) {
352 /*
353 * Link bio into list hanging from io_end. We have to do it
354 * atomically as bio completions can be racing against each
355 * other.
356 */
357 bio->bi_private = xchg(&io_end->bio, bio);
358 ext4_put_io_end_defer(io_end);
359 } else {
360 /*
361 * Drop io_end reference early. Inode can get freed once
362 * we finish the bio.
363 */
364 ext4_put_io_end_defer(io_end);
365 ext4_finish_bio(bio);
366 bio_put(bio);
367 }
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400368}
369
370void ext4_io_submit(struct ext4_io_submit *io)
371{
372 struct bio *bio = io->io_bio;
373
374 if (bio) {
Mike Christie95fe6c12016-06-05 14:31:48 -0500375 int io_op_flags = io->io_wbc->sync_mode == WB_SYNC_ALL ?
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600376 REQ_SYNC : 0;
Jens Axboe01272512017-06-27 09:32:37 -0600377 io->io_bio->bi_write_hint = io->io_end->inode->i_write_hint;
Mike Christie95fe6c12016-06-05 14:31:48 -0500378 bio_set_op_attrs(io->io_bio, REQ_OP_WRITE, io_op_flags);
Mike Christie4e49ea42016-06-05 14:31:41 -0500379 submit_bio(io->io_bio);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400380 }
Peter Huewe7dc57612011-02-21 21:01:42 -0500381 io->io_bio = NULL;
Jan Kara97a851e2013-06-04 11:58:58 -0400382}
383
384void ext4_io_submit_init(struct ext4_io_submit *io,
385 struct writeback_control *wbc)
386{
Tejun Heo5a339112015-07-21 23:50:24 -0400387 io->io_wbc = wbc;
Jan Kara97a851e2013-06-04 11:58:58 -0400388 io->io_bio = NULL;
Peter Huewe7dc57612011-02-21 21:01:42 -0500389 io->io_end = NULL;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400390}
391
Gao Xiang55002212019-10-31 17:23:15 +0800392static void io_submit_init_bio(struct ext4_io_submit *io,
393 struct buffer_head *bh)
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400394{
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400395 struct bio *bio;
396
Gao Xiang55002212019-10-31 17:23:15 +0800397 /*
398 * bio_alloc will _always_ be able to allocate a bio if
399 * __GFP_DIRECT_RECLAIM is set, see comments for bio_alloc_bioset().
400 */
Christoph Hellwiga8affc02021-03-11 12:01:37 +0100401 bio = bio_alloc(GFP_NOIO, BIO_MAX_VECS);
Eric Biggers4f74d152020-07-02 01:56:07 +0000402 fscrypt_set_bio_crypt_ctx_bh(bio, bh, GFP_NOIO);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700403 bio->bi_iter.bi_sector = bh->b_blocknr * (bh->b_size >> 9);
Christoph Hellwig74d46992017-08-23 19:10:32 +0200404 bio_set_dev(bio, bh->b_bdev);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400405 bio->bi_end_io = ext4_end_bio;
Jan Kara97a851e2013-06-04 11:58:58 -0400406 bio->bi_private = ext4_get_io_end(io->io_end);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400407 io->io_bio = bio;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400408 io->io_next_block = bh->b_blocknr;
Dennis Zhoufd42df32018-12-05 12:10:34 -0500409 wbc_init_bio(io->io_wbc, bio);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400410}
411
Gao Xiang55002212019-10-31 17:23:15 +0800412static void io_submit_add_bh(struct ext4_io_submit *io,
413 struct inode *inode,
414 struct page *page,
415 struct buffer_head *bh)
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400416{
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400417 int ret;
418
Eric Biggers4f74d152020-07-02 01:56:07 +0000419 if (io->io_bio && (bh->b_blocknr != io->io_next_block ||
420 !fscrypt_mergeable_bio_bh(io->io_bio, bh))) {
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400421submit_and_retry:
422 ext4_io_submit(io);
423 }
424 if (io->io_bio == NULL) {
Gao Xiang55002212019-10-31 17:23:15 +0800425 io_submit_init_bio(io, bh);
Jens Axboe01272512017-06-27 09:32:37 -0600426 io->io_bio->bi_write_hint = inode->i_write_hint;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400427 }
Michael Halcrow2058f832015-04-12 00:55:10 -0400428 ret = bio_add_page(io->io_bio, page, bh->b_size, bh_offset(bh));
Theodore Ts'oa5499842013-05-11 19:07:42 -0400429 if (ret != bh->b_size)
430 goto submit_and_retry;
Tejun Heo34e51a52019-06-27 13:39:49 -0700431 wbc_account_cgroup_owner(io->io_wbc, page, bh->b_size);
Jan Kara97a851e2013-06-04 11:58:58 -0400432 io->io_next_block++;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400433}
434
435int ext4_bio_write_page(struct ext4_io_submit *io,
436 struct page *page,
437 int len,
Namjae Jeon1c8349a2014-05-12 08:12:25 -0400438 bool keep_towrite)
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400439{
Eric Biggersd2d07272019-05-20 09:29:39 -0700440 struct page *bounce_page = NULL;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400441 struct inode *inode = page->mapping->host;
Eric Engestrom18017472016-09-30 02:14:56 -0400442 unsigned block_start;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400443 struct buffer_head *bh, *head;
444 int ret = 0;
Jan Kara0058f962013-04-11 23:48:32 -0400445 int nr_submitted = 0;
Theodore Ts'o937d7b82015-10-02 23:54:58 -0400446 int nr_to_submit = 0;
Lei Chenbe993932020-12-11 14:54:24 +0800447 struct writeback_control *wbc = io->io_wbc;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400448
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500449 BUG_ON(!PageLocked(page));
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400450 BUG_ON(PageWriteback(page));
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400451
Namjae Jeon1c8349a2014-05-12 08:12:25 -0400452 if (keep_towrite)
453 set_page_writeback_keepwrite(page);
454 else
455 set_page_writeback(page);
Theodore Ts'oa54aa762011-02-27 16:43:24 -0500456 ClearPageError(page);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400457
Jan Kara0058f962013-04-11 23:48:32 -0400458 /*
Linus Torvaldsf8409ab2014-06-08 13:03:35 -0700459 * Comments copied from block_write_full_page:
Jan Karaeeece462014-05-27 12:48:55 -0400460 *
461 * The page straddles i_size. It must be zeroed out on each and every
462 * writepage invocation because it may be mmapped. "A file is mapped
463 * in multiples of the page size. For a file that is not a multiple of
464 * the page size, the remaining memory is zeroed when mapped, and
465 * writes to that region are not written out to the file."
466 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300467 if (len < PAGE_SIZE)
468 zero_user_segment(page, len, PAGE_SIZE);
Jan Karaeeece462014-05-27 12:48:55 -0400469 /*
Jan Kara0058f962013-04-11 23:48:32 -0400470 * In the first loop we prepare and mark buffers to submit. We have to
471 * mark all buffers in the page before submitting so that
472 * end_page_writeback() cannot be called from ext4_bio_end_io() when IO
473 * on the first buffer finishes and we are still working on submitting
474 * the second buffer.
475 */
476 bh = head = page_buffers(page);
477 do {
478 block_start = bh_offset(bh);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400479 if (block_start >= len) {
480 clear_buffer_dirty(bh);
481 set_buffer_uptodate(bh);
482 continue;
483 }
Jan Kara8a850c32013-01-28 20:53:28 -0500484 if (!buffer_dirty(bh) || buffer_delay(bh) ||
485 !buffer_mapped(bh) || buffer_unwritten(bh)) {
486 /* A hole? We can safely clear the dirty bit */
487 if (!buffer_mapped(bh))
488 clear_buffer_dirty(bh);
489 if (io->io_bio)
490 ext4_io_submit(io);
491 continue;
492 }
zhangyi (F)16e08b12019-02-10 23:32:07 -0500493 if (buffer_new(bh))
Jan Kara0058f962013-04-11 23:48:32 -0400494 clear_buffer_new(bh);
Jan Kara0058f962013-04-11 23:48:32 -0400495 set_buffer_async_write(bh);
Theodore Ts'o937d7b82015-10-02 23:54:58 -0400496 nr_to_submit++;
Jan Kara0058f962013-04-11 23:48:32 -0400497 } while ((bh = bh->b_this_page) != head);
498
Jan Kara0058f962013-04-11 23:48:32 -0400499 bh = head = page_buffers(page);
Michael Halcrow2058f832015-04-12 00:55:10 -0400500
Eric Biggers6e4b73b2019-05-20 09:29:52 -0700501 /*
502 * If any blocks are being written to an encrypted file, encrypt them
503 * into a bounce page. For simplicity, just encrypt until the last
504 * block which might be needed. This may cause some unneeded blocks
505 * (e.g. holes) to be unnecessarily encrypted, but this is rare and
506 * can't happen in the common case of blocksize == PAGE_SIZE.
507 */
Eric Biggers4f74d152020-07-02 01:56:07 +0000508 if (fscrypt_inode_uses_fs_layer_crypto(inode) && nr_to_submit) {
Theodore Ts'oc9af28f2016-03-26 16:14:34 -0400509 gfp_t gfp_flags = GFP_NOFS;
Eric Biggers6e4b73b2019-05-20 09:29:52 -0700510 unsigned int enc_bytes = round_up(len, i_blocksize(inode));
Theodore Ts'oc9af28f2016-03-26 16:14:34 -0400511
Eric Biggers547c5562019-12-31 12:11:49 -0600512 /*
513 * Since bounce page allocation uses a mempool, we can only use
514 * a waiting mask (i.e. request guaranteed allocation) on the
515 * first page of the bio. Otherwise it can deadlock.
516 */
517 if (io->io_bio)
518 gfp_flags = GFP_NOWAIT | __GFP_NOWARN;
Theodore Ts'oc9af28f2016-03-26 16:14:34 -0400519 retry_encrypt:
Eric Biggers6e4b73b2019-05-20 09:29:52 -0700520 bounce_page = fscrypt_encrypt_pagecache_blocks(page, enc_bytes,
Eric Biggers53bc1d852019-05-20 09:29:44 -0700521 0, gfp_flags);
Eric Biggersd2d07272019-05-20 09:29:39 -0700522 if (IS_ERR(bounce_page)) {
523 ret = PTR_ERR(bounce_page);
Eric Biggers547c5562019-12-31 12:11:49 -0600524 if (ret == -ENOMEM &&
525 (io->io_bio || wbc->sync_mode == WB_SYNC_ALL)) {
NeilBrown40342472022-01-14 14:07:14 -0800526 gfp_t new_gfp_flags = GFP_NOFS;
Eric Biggers547c5562019-12-31 12:11:49 -0600527 if (io->io_bio)
Theodore Ts'oc9af28f2016-03-26 16:14:34 -0400528 ext4_io_submit(io);
Eric Biggers547c5562019-12-31 12:11:49 -0600529 else
NeilBrown40342472022-01-14 14:07:14 -0800530 new_gfp_flags |= __GFP_NOFAIL;
531 memalloc_retry_wait(gfp_flags);
532 gfp_flags = new_gfp_flags;
Theodore Ts'oc9af28f2016-03-26 16:14:34 -0400533 goto retry_encrypt;
534 }
Gao Xiang55002212019-10-31 17:23:15 +0800535
536 printk_ratelimited(KERN_ERR "%s: ret = %d\n", __func__, ret);
537 redirty_page_for_writepage(wbc, page);
538 do {
539 clear_buffer_async_write(bh);
540 bh = bh->b_this_page;
541 } while (bh != head);
542 goto unlock;
Michael Halcrow2058f832015-04-12 00:55:10 -0400543 }
544 }
545
546 /* Now submit buffers to write */
Jan Kara0058f962013-04-11 23:48:32 -0400547 do {
548 if (!buffer_async_write(bh))
549 continue;
Gao Xiang55002212019-10-31 17:23:15 +0800550 io_submit_add_bh(io, inode,
551 bounce_page ? bounce_page : page, bh);
Jan Kara0058f962013-04-11 23:48:32 -0400552 nr_submitted++;
Jan Kara1ae48a62013-01-28 09:32:54 -0500553 clear_buffer_dirty(bh);
Jan Kara0058f962013-04-11 23:48:32 -0400554 } while ((bh = bh->b_this_page) != head);
555
Gao Xiang55002212019-10-31 17:23:15 +0800556unlock:
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400557 unlock_page(page);
Jan Kara0058f962013-04-11 23:48:32 -0400558 /* Nothing submitted - we have to end page writeback */
559 if (!nr_submitted)
560 end_page_writeback(page);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400561 return ret;
562}