blob: 40ee33df576494487bd48c5a83b09fe405b16f6f [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>
Theodore Ts'oc9af28f2016-03-26 16:14:34 -040027#include <linux/backing-dev.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;
Theodore Ts'obd2d0212010-10-27 21:30:10 -040034
Theodore Ts'o5dabfc72010-10-27 21:30:14 -040035int __init ext4_init_pageio(void)
Theodore Ts'obd2d0212010-10-27 21:30:10 -040036{
Theodore Ts'obd2d0212010-10-27 21:30:10 -040037 io_end_cachep = KMEM_CACHE(ext4_io_end, SLAB_RECLAIM_ACCOUNT);
Jan Kara0058f962013-04-11 23:48:32 -040038 if (io_end_cachep == NULL)
Theodore Ts'obd2d0212010-10-27 21:30:10 -040039 return -ENOMEM;
Theodore Ts'obd2d0212010-10-27 21:30:10 -040040 return 0;
41}
42
Theodore Ts'o5dabfc72010-10-27 21:30:14 -040043void ext4_exit_pageio(void)
Theodore Ts'obd2d0212010-10-27 21:30:10 -040044{
45 kmem_cache_destroy(io_end_cachep);
Theodore Ts'obd2d0212010-10-27 21:30:10 -040046}
47
Theodore Ts'o1ada47d2013-03-20 09:39:42 -040048/*
Jan Karab0857d32013-06-04 14:23:41 -040049 * Print an buffer I/O error compatible with the fs/buffer.c. This
50 * provides compatibility with dmesg scrapers that look for a specific
51 * buffer I/O error message. We really need a unified error reporting
52 * structure to userspace ala Digital Unix's uerf system, but it's
53 * probably not going to happen in my lifetime, due to LKML politics...
54 */
55static void buffer_io_error(struct buffer_head *bh)
56{
Dmitry Monakhova1c6f0572015-04-13 16:31:37 +040057 printk_ratelimited(KERN_ERR "Buffer I/O error on device %pg, logical block %llu\n",
58 bh->b_bdev,
Jan Karab0857d32013-06-04 14:23:41 -040059 (unsigned long long)bh->b_blocknr);
60}
61
62static void ext4_finish_bio(struct bio *bio)
63{
Kent Overstreet2c30c712013-11-07 12:20:26 -080064 struct bio_vec *bvec;
Ming Lei6dc4f102019-02-15 19:13:19 +080065 struct bvec_iter_all iter_all;
Jan Karab0857d32013-06-04 14:23:41 -040066
Christoph Hellwig2b070cf2019-04-25 09:03:00 +020067 bio_for_each_segment_all(bvec, bio, iter_all) {
Jan Karab0857d32013-06-04 14:23:41 -040068 struct page *page = bvec->bv_page;
Eric Biggersd2d07272019-05-20 09:29:39 -070069 struct page *bounce_page = NULL;
Jan Karab0857d32013-06-04 14:23:41 -040070 struct buffer_head *bh, *head;
71 unsigned bio_start = bvec->bv_offset;
72 unsigned bio_end = bio_start + bvec->bv_len;
73 unsigned under_io = 0;
74 unsigned long flags;
75
76 if (!page)
77 continue;
78
Eric Biggersd2d07272019-05-20 09:29:39 -070079 if (fscrypt_is_bounce_page(page)) {
80 bounce_page = page;
81 page = fscrypt_pagecache_page(bounce_page);
Michael Halcrow2058f832015-04-12 00:55:10 -040082 }
Michael Halcrow2058f832015-04-12 00:55:10 -040083
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +020084 if (bio->bi_status) {
Jan Karab0857d32013-06-04 14:23:41 -040085 SetPageError(page);
Michal Hocko5114a972016-10-11 13:56:01 -070086 mapping_set_error(page->mapping, -EIO);
Jan Karab0857d32013-06-04 14:23:41 -040087 }
88 bh = head = page_buffers(page);
89 /*
90 * We check all buffers in the page under BH_Uptodate_Lock
91 * to avoid races with other end io clearing async_write flags
92 */
93 local_irq_save(flags);
94 bit_spin_lock(BH_Uptodate_Lock, &head->b_state);
95 do {
96 if (bh_offset(bh) < bio_start ||
97 bh_offset(bh) + bh->b_size > bio_end) {
98 if (buffer_async_write(bh))
99 under_io++;
100 continue;
101 }
102 clear_buffer_async_write(bh);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200103 if (bio->bi_status)
Jan Karab0857d32013-06-04 14:23:41 -0400104 buffer_io_error(bh);
105 } while ((bh = bh->b_this_page) != head);
106 bit_spin_unlock(BH_Uptodate_Lock, &head->b_state);
107 local_irq_restore(flags);
Michael Halcrow2058f832015-04-12 00:55:10 -0400108 if (!under_io) {
Eric Biggersd2d07272019-05-20 09:29:39 -0700109 fscrypt_free_bounce_page(bounce_page);
Jan Karab0857d32013-06-04 14:23:41 -0400110 end_page_writeback(page);
Michael Halcrow2058f832015-04-12 00:55:10 -0400111 }
Jan Karab0857d32013-06-04 14:23:41 -0400112 }
113}
114
Jan Kara97a851e2013-06-04 11:58:58 -0400115static void ext4_release_io_end(ext4_io_end_t *io_end)
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400116{
Jan Karab0857d32013-06-04 14:23:41 -0400117 struct bio *bio, *next_bio;
118
Jan Kara97a851e2013-06-04 11:58:58 -0400119 BUG_ON(!list_empty(&io_end->list));
120 BUG_ON(io_end->flag & EXT4_IO_END_UNWRITTEN);
Jan Kara6b523df2013-06-04 13:21:11 -0400121 WARN_ON(io_end->handle);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400122
Jan Karab0857d32013-06-04 14:23:41 -0400123 for (bio = io_end->bio; bio; bio = next_bio) {
124 next_bio = bio->bi_private;
125 ext4_finish_bio(bio);
126 bio_put(bio);
127 }
Jan Kara97a851e2013-06-04 11:58:58 -0400128 kmem_cache_free(io_end_cachep, io_end);
129}
130
Jan Karaa115f742013-06-04 14:30:00 -0400131/*
132 * Check a range of space and convert unwritten extents to written. Note that
133 * we are protected from truncate touching same part of extent tree by the
134 * fact that truncate code waits for all DIO to finish (thus exclusion from
135 * direct IO is achieved) and also waits for PageWriteback bits. Thus we
136 * cannot get to ext4_ext_truncate() before all IOs overlapping that range are
137 * completed (happens from ext4_free_ioend()).
138 */
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400139static int ext4_end_io(ext4_io_end_t *io)
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400140{
141 struct inode *inode = io->inode;
142 loff_t offset = io->offset;
143 ssize_t size = io->size;
Jan Kara6b523df2013-06-04 13:21:11 -0400144 handle_t *handle = io->handle;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400145 int ret = 0;
146
147 ext4_debug("ext4_end_io_nolock: io 0x%p from inode %lu,list->next 0x%p,"
148 "list->prev 0x%p\n",
149 io, inode->i_ino, io->list.next, io->list.prev);
150
Jan Kara6b523df2013-06-04 13:21:11 -0400151 io->handle = NULL; /* Following call will use up the handle */
152 ret = ext4_convert_unwritten_extents(handle, inode, offset, size);
Theodore Ts'o0db1ff22017-02-05 01:28:48 -0500153 if (ret < 0 && !ext4_forced_shutdown(EXT4_SB(inode->i_sb))) {
Theodore Ts'ob82e3842011-10-31 10:56:32 -0400154 ext4_msg(inode->i_sb, KERN_EMERG,
155 "failed to convert unwritten extents to written "
156 "extents -- potential data loss! "
157 "(inode %lu, offset %llu, size %zd, error %d)",
158 inode->i_ino, offset, size, ret);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400159 }
Jan Kara97a851e2013-06-04 11:58:58 -0400160 ext4_clear_io_unwritten_flag(io);
161 ext4_release_io_end(io);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400162 return ret;
163}
164
Jan Kara2e8fa542013-06-04 14:21:02 -0400165static void dump_completed_IO(struct inode *inode, struct list_head *head)
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400166{
167#ifdef EXT4FS_DEBUG
168 struct list_head *cur, *before, *after;
169 ext4_io_end_t *io, *io0, *io1;
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400170
Jan Kara2e8fa542013-06-04 14:21:02 -0400171 if (list_empty(head))
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400172 return;
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400173
Jan Kara2e8fa542013-06-04 14:21:02 -0400174 ext4_debug("Dump inode %lu completed io list\n", inode->i_ino);
175 list_for_each_entry(io, head, list) {
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400176 cur = &io->list;
177 before = cur->prev;
178 io0 = container_of(before, ext4_io_end_t, list);
179 after = cur->next;
180 io1 = container_of(after, ext4_io_end_t, list);
181
182 ext4_debug("io 0x%p from inode %lu,prev 0x%p,next 0x%p\n",
183 io, inode->i_ino, io0, io1);
184 }
185#endif
186}
187
188/* Add the io_end to per-inode completed end_io list. */
Jan Kara97a851e2013-06-04 11:58:58 -0400189static void ext4_add_complete_io(ext4_io_end_t *io_end)
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400190{
191 struct ext4_inode_info *ei = EXT4_I(io_end->inode);
Jan Kara78371a42013-10-16 08:25:11 -0400192 struct ext4_sb_info *sbi = EXT4_SB(io_end->inode->i_sb);
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400193 struct workqueue_struct *wq;
194 unsigned long flags;
195
Christoph Hellwig7b7a8662013-09-04 15:04:39 +0200196 /* Only reserved conversions from writeback should enter here */
197 WARN_ON(!(io_end->flag & EXT4_IO_END_UNWRITTEN));
Jan Kara78371a42013-10-16 08:25:11 -0400198 WARN_ON(!io_end->handle && sbi->s_journal);
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400199 spin_lock_irqsave(&ei->i_completed_io_lock, flags);
Jan Kara78371a42013-10-16 08:25:11 -0400200 wq = sbi->rsv_conversion_wq;
Christoph Hellwig7b7a8662013-09-04 15:04:39 +0200201 if (list_empty(&ei->i_rsv_conversion_list))
202 queue_work(wq, &ei->i_rsv_conversion_work);
203 list_add_tail(&io_end->list, &ei->i_rsv_conversion_list);
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400204 spin_unlock_irqrestore(&ei->i_completed_io_lock, flags);
205}
206
Jan Kara2e8fa542013-06-04 14:21:02 -0400207static int ext4_do_flush_completed_IO(struct inode *inode,
208 struct list_head *head)
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400209{
210 ext4_io_end_t *io;
Jan Kara002bd7f2013-01-28 09:49:15 -0500211 struct list_head unwritten;
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400212 unsigned long flags;
213 struct ext4_inode_info *ei = EXT4_I(inode);
214 int err, ret = 0;
215
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400216 spin_lock_irqsave(&ei->i_completed_io_lock, flags);
Jan Kara2e8fa542013-06-04 14:21:02 -0400217 dump_completed_IO(inode, head);
218 list_replace_init(head, &unwritten);
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400219 spin_unlock_irqrestore(&ei->i_completed_io_lock, flags);
220
221 while (!list_empty(&unwritten)) {
222 io = list_entry(unwritten.next, ext4_io_end_t, list);
223 BUG_ON(!(io->flag & EXT4_IO_END_UNWRITTEN));
224 list_del_init(&io->list);
225
226 err = ext4_end_io(io);
227 if (unlikely(!ret && err))
228 ret = err;
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400229 }
230 return ret;
231}
232
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400233/*
Jan Kara2e8fa542013-06-04 14:21:02 -0400234 * work on completed IO, to convert unwritten extents to extents
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400235 */
Jan Kara2e8fa542013-06-04 14:21:02 -0400236void ext4_end_io_rsv_work(struct work_struct *work)
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400237{
Jan Kara84c17542013-01-28 09:43:46 -0500238 struct ext4_inode_info *ei = container_of(work, struct ext4_inode_info,
Jan Kara2e8fa542013-06-04 14:21:02 -0400239 i_rsv_conversion_work);
240 ext4_do_flush_completed_IO(&ei->vfs_inode, &ei->i_rsv_conversion_list);
241}
242
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400243ext4_io_end_t *ext4_init_io_end(struct inode *inode, gfp_t flags)
244{
Jesper Juhlb17b35e2010-12-19 21:41:55 -0500245 ext4_io_end_t *io = kmem_cache_zalloc(io_end_cachep, flags);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400246 if (io) {
Theodore Ts'of7ad6d22010-11-08 13:43:33 -0500247 io->inode = inode;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400248 INIT_LIST_HEAD(&io->list);
Jan Kara97a851e2013-06-04 11:58:58 -0400249 atomic_set(&io->count, 1);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400250 }
251 return io;
252}
253
Jan Kara97a851e2013-06-04 11:58:58 -0400254void ext4_put_io_end_defer(ext4_io_end_t *io_end)
255{
256 if (atomic_dec_and_test(&io_end->count)) {
257 if (!(io_end->flag & EXT4_IO_END_UNWRITTEN) || !io_end->size) {
258 ext4_release_io_end(io_end);
259 return;
260 }
261 ext4_add_complete_io(io_end);
262 }
263}
264
265int ext4_put_io_end(ext4_io_end_t *io_end)
266{
267 int err = 0;
268
269 if (atomic_dec_and_test(&io_end->count)) {
270 if (io_end->flag & EXT4_IO_END_UNWRITTEN) {
Jan Kara6b523df2013-06-04 13:21:11 -0400271 err = ext4_convert_unwritten_extents(io_end->handle,
272 io_end->inode, io_end->offset,
273 io_end->size);
274 io_end->handle = NULL;
Jan Kara97a851e2013-06-04 11:58:58 -0400275 ext4_clear_io_unwritten_flag(io_end);
276 }
277 ext4_release_io_end(io_end);
278 }
279 return err;
280}
281
282ext4_io_end_t *ext4_get_io_end(ext4_io_end_t *io_end)
283{
284 atomic_inc(&io_end->count);
285 return io_end;
286}
287
Jan Kara822dbba2013-07-10 21:31:04 -0400288/* BIO completion function for page writeback */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200289static void ext4_end_bio(struct bio *bio)
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400290{
291 ext4_io_end_t *io_end = bio->bi_private;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700292 sector_t bi_sector = bio->bi_iter.bi_sector;
Theodore Ts'o72d622b42017-04-30 20:08:05 -0400293 char b[BDEVNAME_SIZE];
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400294
Theodore Ts'o72d622b42017-04-30 20:08:05 -0400295 if (WARN_ONCE(!io_end, "io_end is NULL: %s: sector %Lu len %u err %d\n",
Christoph Hellwig74d46992017-08-23 19:10:32 +0200296 bio_devname(bio, b),
Theodore Ts'o72d622b42017-04-30 20:08:05 -0400297 (long long) bio->bi_iter.bi_sector,
298 (unsigned) bio_sectors(bio),
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200299 bio->bi_status)) {
Theodore Ts'o72d622b42017-04-30 20:08:05 -0400300 ext4_finish_bio(bio);
301 bio_put(bio);
302 return;
303 }
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400304 bio->bi_end_io = NULL;
Jan Kara0058f962013-04-11 23:48:32 -0400305
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200306 if (bio->bi_status) {
Jan Karab0857d32013-06-04 14:23:41 -0400307 struct inode *inode = io_end->inode;
308
Matthew Wilcox9503c672014-04-07 10:54:20 -0400309 ext4_warning(inode->i_sb, "I/O error %d writing to inode %lu "
Theodore Ts'of7ad6d22010-11-08 13:43:33 -0500310 "(offset %llu size %ld starting block %llu)",
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200311 bio->bi_status, inode->i_ino,
Theodore Ts'of7ad6d22010-11-08 13:43:33 -0500312 (unsigned long long) io_end->offset,
313 (long) io_end->size,
314 (unsigned long long)
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500315 bi_sector >> (inode->i_blkbits - 9));
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200316 mapping_set_error(inode->i_mapping,
317 blk_status_to_errno(bio->bi_status));
Theodore Ts'of7ad6d22010-11-08 13:43:33 -0500318 }
Jan Kara822dbba2013-07-10 21:31:04 -0400319
320 if (io_end->flag & EXT4_IO_END_UNWRITTEN) {
321 /*
322 * Link bio into list hanging from io_end. We have to do it
323 * atomically as bio completions can be racing against each
324 * other.
325 */
326 bio->bi_private = xchg(&io_end->bio, bio);
327 ext4_put_io_end_defer(io_end);
328 } else {
329 /*
330 * Drop io_end reference early. Inode can get freed once
331 * we finish the bio.
332 */
333 ext4_put_io_end_defer(io_end);
334 ext4_finish_bio(bio);
335 bio_put(bio);
336 }
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400337}
338
339void ext4_io_submit(struct ext4_io_submit *io)
340{
341 struct bio *bio = io->io_bio;
342
343 if (bio) {
Mike Christie95fe6c12016-06-05 14:31:48 -0500344 int io_op_flags = io->io_wbc->sync_mode == WB_SYNC_ALL ?
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600345 REQ_SYNC : 0;
Jens Axboe01272512017-06-27 09:32:37 -0600346 io->io_bio->bi_write_hint = io->io_end->inode->i_write_hint;
Mike Christie95fe6c12016-06-05 14:31:48 -0500347 bio_set_op_attrs(io->io_bio, REQ_OP_WRITE, io_op_flags);
Mike Christie4e49ea42016-06-05 14:31:41 -0500348 submit_bio(io->io_bio);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400349 }
Peter Huewe7dc57612011-02-21 21:01:42 -0500350 io->io_bio = NULL;
Jan Kara97a851e2013-06-04 11:58:58 -0400351}
352
353void ext4_io_submit_init(struct ext4_io_submit *io,
354 struct writeback_control *wbc)
355{
Tejun Heo5a339112015-07-21 23:50:24 -0400356 io->io_wbc = wbc;
Jan Kara97a851e2013-06-04 11:58:58 -0400357 io->io_bio = NULL;
Peter Huewe7dc57612011-02-21 21:01:42 -0500358 io->io_end = NULL;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400359}
360
Jan Kara97a851e2013-06-04 11:58:58 -0400361static int io_submit_init_bio(struct ext4_io_submit *io,
362 struct buffer_head *bh)
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400363{
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400364 struct bio *bio;
365
Kent Overstreetb54ffb72015-05-19 14:31:01 +0200366 bio = bio_alloc(GFP_NOIO, BIO_MAX_PAGES);
Theodore Ts'oa1d8d9a72013-06-06 10:18:22 -0400367 if (!bio)
368 return -ENOMEM;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700369 bio->bi_iter.bi_sector = bh->b_blocknr * (bh->b_size >> 9);
Christoph Hellwig74d46992017-08-23 19:10:32 +0200370 bio_set_dev(bio, bh->b_bdev);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400371 bio->bi_end_io = ext4_end_bio;
Jan Kara97a851e2013-06-04 11:58:58 -0400372 bio->bi_private = ext4_get_io_end(io->io_end);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400373 io->io_bio = bio;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400374 io->io_next_block = bh->b_blocknr;
Dennis Zhoufd42df32018-12-05 12:10:34 -0500375 wbc_init_bio(io->io_wbc, bio);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400376 return 0;
377}
378
379static int io_submit_add_bh(struct ext4_io_submit *io,
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400380 struct inode *inode,
Michael Halcrow2058f832015-04-12 00:55:10 -0400381 struct page *page,
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400382 struct buffer_head *bh)
383{
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400384 int ret;
385
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400386 if (io->io_bio && bh->b_blocknr != io->io_next_block) {
387submit_and_retry:
388 ext4_io_submit(io);
389 }
390 if (io->io_bio == NULL) {
Jan Kara97a851e2013-06-04 11:58:58 -0400391 ret = io_submit_init_bio(io, bh);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400392 if (ret)
393 return ret;
Jens Axboe01272512017-06-27 09:32:37 -0600394 io->io_bio->bi_write_hint = inode->i_write_hint;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400395 }
Michael Halcrow2058f832015-04-12 00:55:10 -0400396 ret = bio_add_page(io->io_bio, page, bh->b_size, bh_offset(bh));
Theodore Ts'oa5499842013-05-11 19:07:42 -0400397 if (ret != bh->b_size)
398 goto submit_and_retry;
Tejun Heo001e4a82015-07-21 23:51:26 -0400399 wbc_account_io(io->io_wbc, page, bh->b_size);
Jan Kara97a851e2013-06-04 11:58:58 -0400400 io->io_next_block++;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400401 return 0;
402}
403
404int ext4_bio_write_page(struct ext4_io_submit *io,
405 struct page *page,
406 int len,
Namjae Jeon1c8349a2014-05-12 08:12:25 -0400407 struct writeback_control *wbc,
408 bool keep_towrite)
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400409{
Eric Biggersd2d07272019-05-20 09:29:39 -0700410 struct page *bounce_page = NULL;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400411 struct inode *inode = page->mapping->host;
Eric Engestrom18017472016-09-30 02:14:56 -0400412 unsigned block_start;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400413 struct buffer_head *bh, *head;
414 int ret = 0;
Jan Kara0058f962013-04-11 23:48:32 -0400415 int nr_submitted = 0;
Theodore Ts'o937d7b82015-10-02 23:54:58 -0400416 int nr_to_submit = 0;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400417
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500418 BUG_ON(!PageLocked(page));
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400419 BUG_ON(PageWriteback(page));
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400420
Namjae Jeon1c8349a2014-05-12 08:12:25 -0400421 if (keep_towrite)
422 set_page_writeback_keepwrite(page);
423 else
424 set_page_writeback(page);
Theodore Ts'oa54aa762011-02-27 16:43:24 -0500425 ClearPageError(page);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400426
Jan Kara0058f962013-04-11 23:48:32 -0400427 /*
Linus Torvaldsf8409ab2014-06-08 13:03:35 -0700428 * Comments copied from block_write_full_page:
Jan Karaeeece462014-05-27 12:48:55 -0400429 *
430 * The page straddles i_size. It must be zeroed out on each and every
431 * writepage invocation because it may be mmapped. "A file is mapped
432 * in multiples of the page size. For a file that is not a multiple of
433 * the page size, the remaining memory is zeroed when mapped, and
434 * writes to that region are not written out to the file."
435 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300436 if (len < PAGE_SIZE)
437 zero_user_segment(page, len, PAGE_SIZE);
Jan Karaeeece462014-05-27 12:48:55 -0400438 /*
Jan Kara0058f962013-04-11 23:48:32 -0400439 * In the first loop we prepare and mark buffers to submit. We have to
440 * mark all buffers in the page before submitting so that
441 * end_page_writeback() cannot be called from ext4_bio_end_io() when IO
442 * on the first buffer finishes and we are still working on submitting
443 * the second buffer.
444 */
445 bh = head = page_buffers(page);
446 do {
447 block_start = bh_offset(bh);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400448 if (block_start >= len) {
449 clear_buffer_dirty(bh);
450 set_buffer_uptodate(bh);
451 continue;
452 }
Jan Kara8a850c32013-01-28 20:53:28 -0500453 if (!buffer_dirty(bh) || buffer_delay(bh) ||
454 !buffer_mapped(bh) || buffer_unwritten(bh)) {
455 /* A hole? We can safely clear the dirty bit */
456 if (!buffer_mapped(bh))
457 clear_buffer_dirty(bh);
458 if (io->io_bio)
459 ext4_io_submit(io);
460 continue;
461 }
zhangyi (F)16e08b12019-02-10 23:32:07 -0500462 if (buffer_new(bh))
Jan Kara0058f962013-04-11 23:48:32 -0400463 clear_buffer_new(bh);
Jan Kara0058f962013-04-11 23:48:32 -0400464 set_buffer_async_write(bh);
Theodore Ts'o937d7b82015-10-02 23:54:58 -0400465 nr_to_submit++;
Jan Kara0058f962013-04-11 23:48:32 -0400466 } while ((bh = bh->b_this_page) != head);
467
Jan Kara0058f962013-04-11 23:48:32 -0400468 bh = head = page_buffers(page);
Michael Halcrow2058f832015-04-12 00:55:10 -0400469
Chandan Rajendra592ddec2018-12-12 15:20:10 +0530470 if (IS_ENCRYPTED(inode) && S_ISREG(inode->i_mode) && nr_to_submit) {
Theodore Ts'oc9af28f2016-03-26 16:14:34 -0400471 gfp_t gfp_flags = GFP_NOFS;
472
473 retry_encrypt:
Eric Biggers53bc1d852019-05-20 09:29:44 -0700474 bounce_page = fscrypt_encrypt_pagecache_blocks(page, PAGE_SIZE,
475 0, gfp_flags);
Eric Biggersd2d07272019-05-20 09:29:39 -0700476 if (IS_ERR(bounce_page)) {
477 ret = PTR_ERR(bounce_page);
Dan Carpenter4762cc32016-04-02 18:13:38 -0400478 if (ret == -ENOMEM && wbc->sync_mode == WB_SYNC_ALL) {
Theodore Ts'oc9af28f2016-03-26 16:14:34 -0400479 if (io->io_bio) {
480 ext4_io_submit(io);
481 congestion_wait(BLK_RW_ASYNC, HZ/50);
482 }
483 gfp_flags |= __GFP_NOFAIL;
484 goto retry_encrypt;
485 }
Eric Biggersd2d07272019-05-20 09:29:39 -0700486 bounce_page = NULL;
Michael Halcrow2058f832015-04-12 00:55:10 -0400487 goto out;
488 }
489 }
490
491 /* Now submit buffers to write */
Jan Kara0058f962013-04-11 23:48:32 -0400492 do {
493 if (!buffer_async_write(bh))
494 continue;
Eric Biggersd2d07272019-05-20 09:29:39 -0700495 ret = io_submit_add_bh(io, inode, bounce_page ?: page, bh);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400496 if (ret) {
497 /*
498 * We only get here on ENOMEM. Not much else
499 * we can do but mark the page as dirty, and
500 * better luck next time.
501 */
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400502 break;
503 }
Jan Kara0058f962013-04-11 23:48:32 -0400504 nr_submitted++;
Jan Kara1ae48a62013-01-28 09:32:54 -0500505 clear_buffer_dirty(bh);
Jan Kara0058f962013-04-11 23:48:32 -0400506 } while ((bh = bh->b_this_page) != head);
507
508 /* Error stopped previous loop? Clean up buffers... */
509 if (ret) {
Michael Halcrow2058f832015-04-12 00:55:10 -0400510 out:
Eric Biggersd2d07272019-05-20 09:29:39 -0700511 fscrypt_free_bounce_page(bounce_page);
Michael Halcrow2058f832015-04-12 00:55:10 -0400512 printk_ratelimited(KERN_ERR "%s: ret = %d\n", __func__, ret);
513 redirty_page_for_writepage(wbc, page);
Jan Kara0058f962013-04-11 23:48:32 -0400514 do {
515 clear_buffer_async_write(bh);
516 bh = bh->b_this_page;
517 } while (bh != head);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400518 }
519 unlock_page(page);
Jan Kara0058f962013-04-11 23:48:32 -0400520 /* Nothing submitted - we have to end page writeback */
521 if (!nr_submitted)
522 end_page_writeback(page);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400523 return ret;
524}