]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/ext4/inode.c
ext4: avoid split extents for DAX writes
[mirror_ubuntu-artful-kernel.git] / fs / ext4 / inode.c
CommitLineData
ac27a0ec 1/*
617ba13b 2 * linux/fs/ext4/inode.c
ac27a0ec
DK
3 *
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
9 * from
10 *
11 * linux/fs/minix/inode.c
12 *
13 * Copyright (C) 1991, 1992 Linus Torvalds
14 *
ac27a0ec
DK
15 * 64-bit file support on 64-bit platforms by Jakub Jelinek
16 * (jj@sunsite.ms.mff.cuni.cz)
17 *
617ba13b 18 * Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000
ac27a0ec
DK
19 */
20
ac27a0ec
DK
21#include <linux/fs.h>
22#include <linux/time.h>
ac27a0ec
DK
23#include <linux/highuid.h>
24#include <linux/pagemap.h>
c94c2acf 25#include <linux/dax.h>
ac27a0ec
DK
26#include <linux/quotaops.h>
27#include <linux/string.h>
28#include <linux/buffer_head.h>
29#include <linux/writeback.h>
64769240 30#include <linux/pagevec.h>
ac27a0ec 31#include <linux/mpage.h>
e83c1397 32#include <linux/namei.h>
ac27a0ec
DK
33#include <linux/uio.h>
34#include <linux/bio.h>
4c0425ff 35#include <linux/workqueue.h>
744692dc 36#include <linux/kernel.h>
6db26ffc 37#include <linux/printk.h>
5a0e3ad6 38#include <linux/slab.h>
00a1a053 39#include <linux/bitops.h>
364443cb 40#include <linux/iomap.h>
9bffad1e 41
3dcf5451 42#include "ext4_jbd2.h"
ac27a0ec
DK
43#include "xattr.h"
44#include "acl.h"
9f125d64 45#include "truncate.h"
ac27a0ec 46
9bffad1e
TT
47#include <trace/events/ext4.h>
48
a1d6cc56
AK
49#define MPAGE_DA_EXTENT_TAIL 0x01
50
814525f4
DW
51static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw,
52 struct ext4_inode_info *ei)
53{
54 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
814525f4 55 __u32 csum;
b47820ed
DJ
56 __u16 dummy_csum = 0;
57 int offset = offsetof(struct ext4_inode, i_checksum_lo);
58 unsigned int csum_size = sizeof(dummy_csum);
814525f4 59
b47820ed
DJ
60 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw, offset);
61 csum = ext4_chksum(sbi, csum, (__u8 *)&dummy_csum, csum_size);
62 offset += csum_size;
63 csum = ext4_chksum(sbi, csum, (__u8 *)raw + offset,
64 EXT4_GOOD_OLD_INODE_SIZE - offset);
814525f4 65
b47820ed
DJ
66 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
67 offset = offsetof(struct ext4_inode, i_checksum_hi);
68 csum = ext4_chksum(sbi, csum, (__u8 *)raw +
69 EXT4_GOOD_OLD_INODE_SIZE,
70 offset - EXT4_GOOD_OLD_INODE_SIZE);
71 if (EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) {
72 csum = ext4_chksum(sbi, csum, (__u8 *)&dummy_csum,
73 csum_size);
74 offset += csum_size;
75 csum = ext4_chksum(sbi, csum, (__u8 *)raw + offset,
76 EXT4_INODE_SIZE(inode->i_sb) -
77 offset);
78 }
814525f4
DW
79 }
80
814525f4
DW
81 return csum;
82}
83
84static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw,
85 struct ext4_inode_info *ei)
86{
87 __u32 provided, calculated;
88
89 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
90 cpu_to_le32(EXT4_OS_LINUX) ||
9aa5d32b 91 !ext4_has_metadata_csum(inode->i_sb))
814525f4
DW
92 return 1;
93
94 provided = le16_to_cpu(raw->i_checksum_lo);
95 calculated = ext4_inode_csum(inode, raw, ei);
96 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
97 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
98 provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16;
99 else
100 calculated &= 0xFFFF;
101
102 return provided == calculated;
103}
104
105static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw,
106 struct ext4_inode_info *ei)
107{
108 __u32 csum;
109
110 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
111 cpu_to_le32(EXT4_OS_LINUX) ||
9aa5d32b 112 !ext4_has_metadata_csum(inode->i_sb))
814525f4
DW
113 return;
114
115 csum = ext4_inode_csum(inode, raw, ei);
116 raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF);
117 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
118 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
119 raw->i_checksum_hi = cpu_to_le16(csum >> 16);
120}
121
678aaf48
JK
122static inline int ext4_begin_ordered_truncate(struct inode *inode,
123 loff_t new_size)
124{
7ff9c073 125 trace_ext4_begin_ordered_truncate(inode, new_size);
8aefcd55
TT
126 /*
127 * If jinode is zero, then we never opened the file for
128 * writing, so there's no need to call
129 * jbd2_journal_begin_ordered_truncate() since there's no
130 * outstanding writes we need to flush.
131 */
132 if (!EXT4_I(inode)->jinode)
133 return 0;
134 return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode),
135 EXT4_I(inode)->jinode,
136 new_size);
678aaf48
JK
137}
138
d47992f8
LC
139static void ext4_invalidatepage(struct page *page, unsigned int offset,
140 unsigned int length);
cb20d518
TT
141static int __ext4_journalled_writepage(struct page *page, unsigned int len);
142static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh);
fffb2739
JK
143static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
144 int pextents);
64769240 145
ac27a0ec
DK
146/*
147 * Test whether an inode is a fast symlink.
148 */
f348c252 149int ext4_inode_is_fast_symlink(struct inode *inode)
ac27a0ec 150{
65eddb56
YY
151 int ea_blocks = EXT4_I(inode)->i_file_acl ?
152 EXT4_CLUSTER_SIZE(inode->i_sb) >> 9 : 0;
ac27a0ec 153
bd9db175
ZL
154 if (ext4_has_inline_data(inode))
155 return 0;
156
ac27a0ec
DK
157 return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
158}
159
ac27a0ec
DK
160/*
161 * Restart the transaction associated with *handle. This does a commit,
162 * so before we call here everything must be consistently dirtied against
163 * this transaction.
164 */
fa5d1113 165int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode,
487caeef 166 int nblocks)
ac27a0ec 167{
487caeef
JK
168 int ret;
169
170 /*
e35fd660 171 * Drop i_data_sem to avoid deadlock with ext4_map_blocks. At this
487caeef
JK
172 * moment, get_block can be called only for blocks inside i_size since
173 * page cache has been already dropped and writes are blocked by
174 * i_mutex. So we can safely drop the i_data_sem here.
175 */
0390131b 176 BUG_ON(EXT4_JOURNAL(inode) == NULL);
ac27a0ec 177 jbd_debug(2, "restarting handle %p\n", handle);
487caeef 178 up_write(&EXT4_I(inode)->i_data_sem);
8e8eaabe 179 ret = ext4_journal_restart(handle, nblocks);
487caeef 180 down_write(&EXT4_I(inode)->i_data_sem);
fa5d1113 181 ext4_discard_preallocations(inode);
487caeef
JK
182
183 return ret;
ac27a0ec
DK
184}
185
186/*
187 * Called at the last iput() if i_nlink is zero.
188 */
0930fcc1 189void ext4_evict_inode(struct inode *inode)
ac27a0ec
DK
190{
191 handle_t *handle;
bc965ab3 192 int err;
ac27a0ec 193
7ff9c073 194 trace_ext4_evict_inode(inode);
2581fdc8 195
0930fcc1 196 if (inode->i_nlink) {
2d859db3
JK
197 /*
198 * When journalling data dirty buffers are tracked only in the
199 * journal. So although mm thinks everything is clean and
200 * ready for reaping the inode might still have some pages to
201 * write in the running transaction or waiting to be
202 * checkpointed. Thus calling jbd2_journal_invalidatepage()
203 * (via truncate_inode_pages()) to discard these buffers can
204 * cause data loss. Also even if we did not discard these
205 * buffers, we would have no way to find them after the inode
206 * is reaped and thus user could see stale data if he tries to
207 * read them before the transaction is checkpointed. So be
208 * careful and force everything to disk here... We use
209 * ei->i_datasync_tid to store the newest transaction
210 * containing inode's data.
211 *
212 * Note that directories do not have this problem because they
213 * don't use page cache.
214 */
6a7fd522
VN
215 if (inode->i_ino != EXT4_JOURNAL_INO &&
216 ext4_should_journal_data(inode) &&
217 (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode))) {
2d859db3
JK
218 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
219 tid_t commit_tid = EXT4_I(inode)->i_datasync_tid;
220
d76a3a77 221 jbd2_complete_transaction(journal, commit_tid);
2d859db3
JK
222 filemap_write_and_wait(&inode->i_data);
223 }
91b0abe3 224 truncate_inode_pages_final(&inode->i_data);
5dc23bdd 225
0930fcc1
AV
226 goto no_delete;
227 }
228
e2bfb088
TT
229 if (is_bad_inode(inode))
230 goto no_delete;
231 dquot_initialize(inode);
907f4554 232
678aaf48
JK
233 if (ext4_should_order_data(inode))
234 ext4_begin_ordered_truncate(inode, 0);
91b0abe3 235 truncate_inode_pages_final(&inode->i_data);
ac27a0ec 236
8e8ad8a5
JK
237 /*
238 * Protect us against freezing - iput() caller didn't have to have any
239 * protection against it
240 */
241 sb_start_intwrite(inode->i_sb);
9924a92a
TT
242 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE,
243 ext4_blocks_for_truncate(inode)+3);
ac27a0ec 244 if (IS_ERR(handle)) {
bc965ab3 245 ext4_std_error(inode->i_sb, PTR_ERR(handle));
ac27a0ec
DK
246 /*
247 * If we're going to skip the normal cleanup, we still need to
248 * make sure that the in-core orphan linked list is properly
249 * cleaned up.
250 */
617ba13b 251 ext4_orphan_del(NULL, inode);
8e8ad8a5 252 sb_end_intwrite(inode->i_sb);
ac27a0ec
DK
253 goto no_delete;
254 }
255
256 if (IS_SYNC(inode))
0390131b 257 ext4_handle_sync(handle);
ac27a0ec 258 inode->i_size = 0;
bc965ab3
TT
259 err = ext4_mark_inode_dirty(handle, inode);
260 if (err) {
12062ddd 261 ext4_warning(inode->i_sb,
bc965ab3
TT
262 "couldn't mark inode dirty (err %d)", err);
263 goto stop_handle;
264 }
2c98eb5e
TT
265 if (inode->i_blocks) {
266 err = ext4_truncate(inode);
267 if (err) {
268 ext4_error(inode->i_sb,
269 "couldn't truncate inode %lu (err %d)",
270 inode->i_ino, err);
271 goto stop_handle;
272 }
273 }
bc965ab3
TT
274
275 /*
276 * ext4_ext_truncate() doesn't reserve any slop when it
277 * restarts journal transactions; therefore there may not be
278 * enough credits left in the handle to remove the inode from
279 * the orphan list and set the dtime field.
280 */
0390131b 281 if (!ext4_handle_has_enough_credits(handle, 3)) {
bc965ab3
TT
282 err = ext4_journal_extend(handle, 3);
283 if (err > 0)
284 err = ext4_journal_restart(handle, 3);
285 if (err != 0) {
12062ddd 286 ext4_warning(inode->i_sb,
bc965ab3
TT
287 "couldn't extend journal (err %d)", err);
288 stop_handle:
289 ext4_journal_stop(handle);
45388219 290 ext4_orphan_del(NULL, inode);
8e8ad8a5 291 sb_end_intwrite(inode->i_sb);
bc965ab3
TT
292 goto no_delete;
293 }
294 }
295
ac27a0ec 296 /*
617ba13b 297 * Kill off the orphan record which ext4_truncate created.
ac27a0ec 298 * AKPM: I think this can be inside the above `if'.
617ba13b 299 * Note that ext4_orphan_del() has to be able to cope with the
ac27a0ec 300 * deletion of a non-existent orphan - this is because we don't
617ba13b 301 * know if ext4_truncate() actually created an orphan record.
ac27a0ec
DK
302 * (Well, we could do this if we need to, but heck - it works)
303 */
617ba13b
MC
304 ext4_orphan_del(handle, inode);
305 EXT4_I(inode)->i_dtime = get_seconds();
ac27a0ec
DK
306
307 /*
308 * One subtle ordering requirement: if anything has gone wrong
309 * (transaction abort, IO errors, whatever), then we can still
310 * do these next steps (the fs will already have been marked as
311 * having errors), but we can't free the inode if the mark_dirty
312 * fails.
313 */
617ba13b 314 if (ext4_mark_inode_dirty(handle, inode))
ac27a0ec 315 /* If that failed, just do the required in-core inode clear. */
0930fcc1 316 ext4_clear_inode(inode);
ac27a0ec 317 else
617ba13b
MC
318 ext4_free_inode(handle, inode);
319 ext4_journal_stop(handle);
8e8ad8a5 320 sb_end_intwrite(inode->i_sb);
ac27a0ec
DK
321 return;
322no_delete:
0930fcc1 323 ext4_clear_inode(inode); /* We must guarantee clearing of inode... */
ac27a0ec
DK
324}
325
a9e7f447
DM
326#ifdef CONFIG_QUOTA
327qsize_t *ext4_get_reserved_space(struct inode *inode)
60e58e0f 328{
a9e7f447 329 return &EXT4_I(inode)->i_reserved_quota;
60e58e0f 330}
a9e7f447 331#endif
9d0be502 332
0637c6f4
TT
333/*
334 * Called with i_data_sem down, which is important since we can call
335 * ext4_discard_preallocations() from here.
336 */
5f634d06
AK
337void ext4_da_update_reserve_space(struct inode *inode,
338 int used, int quota_claim)
12219aea
AK
339{
340 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
0637c6f4 341 struct ext4_inode_info *ei = EXT4_I(inode);
0637c6f4
TT
342
343 spin_lock(&ei->i_block_reservation_lock);
d8990240 344 trace_ext4_da_update_reserve_space(inode, used, quota_claim);
0637c6f4 345 if (unlikely(used > ei->i_reserved_data_blocks)) {
8de5c325 346 ext4_warning(inode->i_sb, "%s: ino %lu, used %d "
1084f252 347 "with only %d reserved data blocks",
0637c6f4
TT
348 __func__, inode->i_ino, used,
349 ei->i_reserved_data_blocks);
350 WARN_ON(1);
351 used = ei->i_reserved_data_blocks;
352 }
12219aea 353
0637c6f4
TT
354 /* Update per-inode reservations */
355 ei->i_reserved_data_blocks -= used;
71d4f7d0 356 percpu_counter_sub(&sbi->s_dirtyclusters_counter, used);
6bc6e63f 357
12219aea 358 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
60e58e0f 359
72b8ab9d
ES
360 /* Update quota subsystem for data blocks */
361 if (quota_claim)
7b415bf6 362 dquot_claim_block(inode, EXT4_C2B(sbi, used));
72b8ab9d 363 else {
5f634d06
AK
364 /*
365 * We did fallocate with an offset that is already delayed
366 * allocated. So on delayed allocated writeback we should
72b8ab9d 367 * not re-claim the quota for fallocated blocks.
5f634d06 368 */
7b415bf6 369 dquot_release_reservation_block(inode, EXT4_C2B(sbi, used));
5f634d06 370 }
d6014301
AK
371
372 /*
373 * If we have done all the pending block allocations and if
374 * there aren't any writers on the inode, we can discard the
375 * inode's preallocations.
376 */
0637c6f4
TT
377 if ((ei->i_reserved_data_blocks == 0) &&
378 (atomic_read(&inode->i_writecount) == 0))
d6014301 379 ext4_discard_preallocations(inode);
12219aea
AK
380}
381
e29136f8 382static int __check_block_validity(struct inode *inode, const char *func,
c398eda0
TT
383 unsigned int line,
384 struct ext4_map_blocks *map)
6fd058f7 385{
24676da4
TT
386 if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk,
387 map->m_len)) {
c398eda0
TT
388 ext4_error_inode(inode, func, line, map->m_pblk,
389 "lblock %lu mapped to illegal pblock "
390 "(length %d)", (unsigned long) map->m_lblk,
391 map->m_len);
6a797d27 392 return -EFSCORRUPTED;
6fd058f7
TT
393 }
394 return 0;
395}
396
53085fac
JK
397int ext4_issue_zeroout(struct inode *inode, ext4_lblk_t lblk, ext4_fsblk_t pblk,
398 ext4_lblk_t len)
399{
400 int ret;
401
402 if (ext4_encrypted_inode(inode))
a7550b30 403 return fscrypt_zeroout_range(inode, lblk, pblk, len);
53085fac
JK
404
405 ret = sb_issue_zeroout(inode->i_sb, pblk, len, GFP_NOFS);
406 if (ret > 0)
407 ret = 0;
408
409 return ret;
410}
411
e29136f8 412#define check_block_validity(inode, map) \
c398eda0 413 __check_block_validity((inode), __func__, __LINE__, (map))
e29136f8 414
921f266b
DM
415#ifdef ES_AGGRESSIVE_TEST
416static void ext4_map_blocks_es_recheck(handle_t *handle,
417 struct inode *inode,
418 struct ext4_map_blocks *es_map,
419 struct ext4_map_blocks *map,
420 int flags)
421{
422 int retval;
423
424 map->m_flags = 0;
425 /*
426 * There is a race window that the result is not the same.
427 * e.g. xfstests #223 when dioread_nolock enables. The reason
428 * is that we lookup a block mapping in extent status tree with
429 * out taking i_data_sem. So at the time the unwritten extent
430 * could be converted.
431 */
2dcba478 432 down_read(&EXT4_I(inode)->i_data_sem);
921f266b
DM
433 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
434 retval = ext4_ext_map_blocks(handle, inode, map, flags &
435 EXT4_GET_BLOCKS_KEEP_SIZE);
436 } else {
437 retval = ext4_ind_map_blocks(handle, inode, map, flags &
438 EXT4_GET_BLOCKS_KEEP_SIZE);
439 }
2dcba478 440 up_read((&EXT4_I(inode)->i_data_sem));
921f266b
DM
441
442 /*
443 * We don't check m_len because extent will be collpased in status
444 * tree. So the m_len might not equal.
445 */
446 if (es_map->m_lblk != map->m_lblk ||
447 es_map->m_flags != map->m_flags ||
448 es_map->m_pblk != map->m_pblk) {
bdafe42a 449 printk("ES cache assertion failed for inode: %lu "
921f266b
DM
450 "es_cached ex [%d/%d/%llu/%x] != "
451 "found ex [%d/%d/%llu/%x] retval %d flags %x\n",
452 inode->i_ino, es_map->m_lblk, es_map->m_len,
453 es_map->m_pblk, es_map->m_flags, map->m_lblk,
454 map->m_len, map->m_pblk, map->m_flags,
455 retval, flags);
456 }
457}
458#endif /* ES_AGGRESSIVE_TEST */
459
f5ab0d1f 460/*
e35fd660 461 * The ext4_map_blocks() function tries to look up the requested blocks,
2b2d6d01 462 * and returns if the blocks are already mapped.
f5ab0d1f 463 *
f5ab0d1f
MC
464 * Otherwise it takes the write lock of the i_data_sem and allocate blocks
465 * and store the allocated blocks in the result buffer head and mark it
466 * mapped.
467 *
e35fd660
TT
468 * If file type is extents based, it will call ext4_ext_map_blocks(),
469 * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping
f5ab0d1f
MC
470 * based files
471 *
facab4d9
JK
472 * On success, it returns the number of blocks being mapped or allocated. if
473 * create==0 and the blocks are pre-allocated and unwritten, the resulting @map
474 * is marked as unwritten. If the create == 1, it will mark @map as mapped.
f5ab0d1f
MC
475 *
476 * It returns 0 if plain look up failed (blocks have not been allocated), in
facab4d9
JK
477 * that case, @map is returned as unmapped but we still do fill map->m_len to
478 * indicate the length of a hole starting at map->m_lblk.
f5ab0d1f
MC
479 *
480 * It returns the error in case of allocation failure.
481 */
e35fd660
TT
482int ext4_map_blocks(handle_t *handle, struct inode *inode,
483 struct ext4_map_blocks *map, int flags)
0e855ac8 484{
d100eef2 485 struct extent_status es;
0e855ac8 486 int retval;
b8a86845 487 int ret = 0;
921f266b
DM
488#ifdef ES_AGGRESSIVE_TEST
489 struct ext4_map_blocks orig_map;
490
491 memcpy(&orig_map, map, sizeof(*map));
492#endif
f5ab0d1f 493
e35fd660
TT
494 map->m_flags = 0;
495 ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u,"
496 "logical block %lu\n", inode->i_ino, flags, map->m_len,
497 (unsigned long) map->m_lblk);
d100eef2 498
e861b5e9
TT
499 /*
500 * ext4_map_blocks returns an int, and m_len is an unsigned int
501 */
502 if (unlikely(map->m_len > INT_MAX))
503 map->m_len = INT_MAX;
504
4adb6ab3
KM
505 /* We can handle the block number less than EXT_MAX_BLOCKS */
506 if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS))
6a797d27 507 return -EFSCORRUPTED;
4adb6ab3 508
d100eef2
ZL
509 /* Lookup extent status tree firstly */
510 if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
511 if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) {
512 map->m_pblk = ext4_es_pblock(&es) +
513 map->m_lblk - es.es_lblk;
514 map->m_flags |= ext4_es_is_written(&es) ?
515 EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN;
516 retval = es.es_len - (map->m_lblk - es.es_lblk);
517 if (retval > map->m_len)
518 retval = map->m_len;
519 map->m_len = retval;
520 } else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) {
facab4d9
JK
521 map->m_pblk = 0;
522 retval = es.es_len - (map->m_lblk - es.es_lblk);
523 if (retval > map->m_len)
524 retval = map->m_len;
525 map->m_len = retval;
d100eef2
ZL
526 retval = 0;
527 } else {
528 BUG_ON(1);
529 }
921f266b
DM
530#ifdef ES_AGGRESSIVE_TEST
531 ext4_map_blocks_es_recheck(handle, inode, map,
532 &orig_map, flags);
533#endif
d100eef2
ZL
534 goto found;
535 }
536
4df3d265 537 /*
b920c755
TT
538 * Try to see if we can get the block without requesting a new
539 * file system block.
4df3d265 540 */
2dcba478 541 down_read(&EXT4_I(inode)->i_data_sem);
12e9b892 542 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
a4e5d88b
DM
543 retval = ext4_ext_map_blocks(handle, inode, map, flags &
544 EXT4_GET_BLOCKS_KEEP_SIZE);
0e855ac8 545 } else {
a4e5d88b
DM
546 retval = ext4_ind_map_blocks(handle, inode, map, flags &
547 EXT4_GET_BLOCKS_KEEP_SIZE);
0e855ac8 548 }
f7fec032 549 if (retval > 0) {
3be78c73 550 unsigned int status;
f7fec032 551
44fb851d
ZL
552 if (unlikely(retval != map->m_len)) {
553 ext4_warning(inode->i_sb,
554 "ES len assertion failed for inode "
555 "%lu: retval %d != map->m_len %d",
556 inode->i_ino, retval, map->m_len);
557 WARN_ON(1);
921f266b 558 }
921f266b 559
f7fec032
ZL
560 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
561 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
562 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
d2dc317d 563 !(status & EXTENT_STATUS_WRITTEN) &&
f7fec032
ZL
564 ext4_find_delalloc_range(inode, map->m_lblk,
565 map->m_lblk + map->m_len - 1))
566 status |= EXTENT_STATUS_DELAYED;
567 ret = ext4_es_insert_extent(inode, map->m_lblk,
568 map->m_len, map->m_pblk, status);
569 if (ret < 0)
570 retval = ret;
571 }
2dcba478 572 up_read((&EXT4_I(inode)->i_data_sem));
f5ab0d1f 573
d100eef2 574found:
e35fd660 575 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
b8a86845 576 ret = check_block_validity(inode, map);
6fd058f7
TT
577 if (ret != 0)
578 return ret;
579 }
580
f5ab0d1f 581 /* If it is only a block(s) look up */
c2177057 582 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
f5ab0d1f
MC
583 return retval;
584
585 /*
586 * Returns if the blocks have already allocated
587 *
588 * Note that if blocks have been preallocated
df3ab170 589 * ext4_ext_get_block() returns the create = 0
f5ab0d1f
MC
590 * with buffer head unmapped.
591 */
e35fd660 592 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED)
b8a86845
LC
593 /*
594 * If we need to convert extent to unwritten
595 * we continue and do the actual work in
596 * ext4_ext_map_blocks()
597 */
598 if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN))
599 return retval;
4df3d265 600
2a8964d6 601 /*
a25a4e1a
ZL
602 * Here we clear m_flags because after allocating an new extent,
603 * it will be set again.
2a8964d6 604 */
a25a4e1a 605 map->m_flags &= ~EXT4_MAP_FLAGS;
2a8964d6 606
4df3d265 607 /*
556615dc 608 * New blocks allocate and/or writing to unwritten extent
f5ab0d1f 609 * will possibly result in updating i_data, so we take
d91bd2c1 610 * the write lock of i_data_sem, and call get_block()
f5ab0d1f 611 * with create == 1 flag.
4df3d265 612 */
c8b459f4 613 down_write(&EXT4_I(inode)->i_data_sem);
d2a17637 614
4df3d265
AK
615 /*
616 * We need to check for EXT4 here because migrate
617 * could have changed the inode type in between
618 */
12e9b892 619 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
e35fd660 620 retval = ext4_ext_map_blocks(handle, inode, map, flags);
0e855ac8 621 } else {
e35fd660 622 retval = ext4_ind_map_blocks(handle, inode, map, flags);
267e4db9 623
e35fd660 624 if (retval > 0 && map->m_flags & EXT4_MAP_NEW) {
267e4db9
AK
625 /*
626 * We allocated new blocks which will result in
627 * i_data's format changing. Force the migrate
628 * to fail by clearing migrate flags
629 */
19f5fb7a 630 ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
267e4db9 631 }
d2a17637 632
5f634d06
AK
633 /*
634 * Update reserved blocks/metadata blocks after successful
635 * block allocation which had been deferred till now. We don't
636 * support fallocate for non extent files. So we can update
637 * reserve space here.
638 */
639 if ((retval > 0) &&
1296cc85 640 (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE))
5f634d06
AK
641 ext4_da_update_reserve_space(inode, retval, 1);
642 }
2ac3b6e0 643
f7fec032 644 if (retval > 0) {
3be78c73 645 unsigned int status;
f7fec032 646
44fb851d
ZL
647 if (unlikely(retval != map->m_len)) {
648 ext4_warning(inode->i_sb,
649 "ES len assertion failed for inode "
650 "%lu: retval %d != map->m_len %d",
651 inode->i_ino, retval, map->m_len);
652 WARN_ON(1);
921f266b 653 }
921f266b 654
c86d8db3
JK
655 /*
656 * We have to zeroout blocks before inserting them into extent
657 * status tree. Otherwise someone could look them up there and
9b623df6
JK
658 * use them before they are really zeroed. We also have to
659 * unmap metadata before zeroing as otherwise writeback can
660 * overwrite zeros with stale data from block device.
c86d8db3
JK
661 */
662 if (flags & EXT4_GET_BLOCKS_ZERO &&
663 map->m_flags & EXT4_MAP_MAPPED &&
664 map->m_flags & EXT4_MAP_NEW) {
9b623df6
JK
665 ext4_lblk_t i;
666
667 for (i = 0; i < map->m_len; i++) {
668 unmap_underlying_metadata(inode->i_sb->s_bdev,
669 map->m_pblk + i);
670 }
c86d8db3
JK
671 ret = ext4_issue_zeroout(inode, map->m_lblk,
672 map->m_pblk, map->m_len);
673 if (ret) {
674 retval = ret;
675 goto out_sem;
676 }
677 }
678
adb23551
ZL
679 /*
680 * If the extent has been zeroed out, we don't need to update
681 * extent status tree.
682 */
683 if ((flags & EXT4_GET_BLOCKS_PRE_IO) &&
684 ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
685 if (ext4_es_is_written(&es))
c86d8db3 686 goto out_sem;
adb23551 687 }
f7fec032
ZL
688 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
689 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
690 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
d2dc317d 691 !(status & EXTENT_STATUS_WRITTEN) &&
f7fec032
ZL
692 ext4_find_delalloc_range(inode, map->m_lblk,
693 map->m_lblk + map->m_len - 1))
694 status |= EXTENT_STATUS_DELAYED;
695 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
696 map->m_pblk, status);
c86d8db3 697 if (ret < 0) {
f7fec032 698 retval = ret;
c86d8db3
JK
699 goto out_sem;
700 }
5356f261
AK
701 }
702
c86d8db3 703out_sem:
4df3d265 704 up_write((&EXT4_I(inode)->i_data_sem));
e35fd660 705 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
b8a86845 706 ret = check_block_validity(inode, map);
6fd058f7
TT
707 if (ret != 0)
708 return ret;
06bd3c36
JK
709
710 /*
711 * Inodes with freshly allocated blocks where contents will be
712 * visible after transaction commit must be on transaction's
713 * ordered data list.
714 */
715 if (map->m_flags & EXT4_MAP_NEW &&
716 !(map->m_flags & EXT4_MAP_UNWRITTEN) &&
717 !(flags & EXT4_GET_BLOCKS_ZERO) &&
718 !IS_NOQUOTA(inode) &&
719 ext4_should_order_data(inode)) {
ee0876bc
JK
720 if (flags & EXT4_GET_BLOCKS_IO_SUBMIT)
721 ret = ext4_jbd2_inode_add_wait(handle, inode);
722 else
723 ret = ext4_jbd2_inode_add_write(handle, inode);
06bd3c36
JK
724 if (ret)
725 return ret;
726 }
6fd058f7 727 }
0e855ac8
AK
728 return retval;
729}
730
ed8ad838
JK
731/*
732 * Update EXT4_MAP_FLAGS in bh->b_state. For buffer heads attached to pages
733 * we have to be careful as someone else may be manipulating b_state as well.
734 */
735static void ext4_update_bh_state(struct buffer_head *bh, unsigned long flags)
736{
737 unsigned long old_state;
738 unsigned long new_state;
739
740 flags &= EXT4_MAP_FLAGS;
741
742 /* Dummy buffer_head? Set non-atomically. */
743 if (!bh->b_page) {
744 bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | flags;
745 return;
746 }
747 /*
748 * Someone else may be modifying b_state. Be careful! This is ugly but
749 * once we get rid of using bh as a container for mapping information
750 * to pass to / from get_block functions, this can go away.
751 */
752 do {
753 old_state = READ_ONCE(bh->b_state);
754 new_state = (old_state & ~EXT4_MAP_FLAGS) | flags;
755 } while (unlikely(
756 cmpxchg(&bh->b_state, old_state, new_state) != old_state));
757}
758
2ed88685
TT
759static int _ext4_get_block(struct inode *inode, sector_t iblock,
760 struct buffer_head *bh, int flags)
ac27a0ec 761{
2ed88685 762 struct ext4_map_blocks map;
efe70c29 763 int ret = 0;
ac27a0ec 764
46c7f254
TM
765 if (ext4_has_inline_data(inode))
766 return -ERANGE;
767
2ed88685
TT
768 map.m_lblk = iblock;
769 map.m_len = bh->b_size >> inode->i_blkbits;
770
efe70c29
JK
771 ret = ext4_map_blocks(ext4_journal_current_handle(), inode, &map,
772 flags);
7fb5409d 773 if (ret > 0) {
2ed88685 774 map_bh(bh, inode->i_sb, map.m_pblk);
ed8ad838 775 ext4_update_bh_state(bh, map.m_flags);
2ed88685 776 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
7fb5409d 777 ret = 0;
547edce3
RZ
778 } else if (ret == 0) {
779 /* hole case, need to fill in bh->b_size */
780 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
ac27a0ec
DK
781 }
782 return ret;
783}
784
2ed88685
TT
785int ext4_get_block(struct inode *inode, sector_t iblock,
786 struct buffer_head *bh, int create)
787{
788 return _ext4_get_block(inode, iblock, bh,
789 create ? EXT4_GET_BLOCKS_CREATE : 0);
790}
791
705965bd
JK
792/*
793 * Get block function used when preparing for buffered write if we require
794 * creating an unwritten extent if blocks haven't been allocated. The extent
795 * will be converted to written after the IO is complete.
796 */
797int ext4_get_block_unwritten(struct inode *inode, sector_t iblock,
798 struct buffer_head *bh_result, int create)
799{
800 ext4_debug("ext4_get_block_unwritten: inode %lu, create flag %d\n",
801 inode->i_ino, create);
802 return _ext4_get_block(inode, iblock, bh_result,
803 EXT4_GET_BLOCKS_IO_CREATE_EXT);
804}
805
efe70c29
JK
806/* Maximum number of blocks we map for direct IO at once. */
807#define DIO_MAX_BLOCKS 4096
808
e84dfbe2
JK
809/*
810 * Get blocks function for the cases that need to start a transaction -
811 * generally difference cases of direct IO and DAX IO. It also handles retries
812 * in case of ENOSPC.
813 */
814static int ext4_get_block_trans(struct inode *inode, sector_t iblock,
815 struct buffer_head *bh_result, int flags)
efe70c29
JK
816{
817 int dio_credits;
e84dfbe2
JK
818 handle_t *handle;
819 int retries = 0;
820 int ret;
efe70c29
JK
821
822 /* Trim mapping request to maximum we can map at once for DIO */
823 if (bh_result->b_size >> inode->i_blkbits > DIO_MAX_BLOCKS)
824 bh_result->b_size = DIO_MAX_BLOCKS << inode->i_blkbits;
825 dio_credits = ext4_chunk_trans_blocks(inode,
826 bh_result->b_size >> inode->i_blkbits);
e84dfbe2
JK
827retry:
828 handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, dio_credits);
829 if (IS_ERR(handle))
830 return PTR_ERR(handle);
831
832 ret = _ext4_get_block(inode, iblock, bh_result, flags);
833 ext4_journal_stop(handle);
834
835 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
836 goto retry;
837 return ret;
efe70c29
JK
838}
839
705965bd
JK
840/* Get block function for DIO reads and writes to inodes without extents */
841int ext4_dio_get_block(struct inode *inode, sector_t iblock,
842 struct buffer_head *bh, int create)
843{
efe70c29
JK
844 /* We don't expect handle for direct IO */
845 WARN_ON_ONCE(ext4_journal_current_handle());
846
e84dfbe2
JK
847 if (!create)
848 return _ext4_get_block(inode, iblock, bh, 0);
849 return ext4_get_block_trans(inode, iblock, bh, EXT4_GET_BLOCKS_CREATE);
705965bd
JK
850}
851
852/*
109811c2 853 * Get block function for AIO DIO writes when we create unwritten extent if
705965bd
JK
854 * blocks are not allocated yet. The extent will be converted to written
855 * after IO is complete.
856 */
109811c2
JK
857static int ext4_dio_get_block_unwritten_async(struct inode *inode,
858 sector_t iblock, struct buffer_head *bh_result, int create)
705965bd 859{
efe70c29
JK
860 int ret;
861
efe70c29
JK
862 /* We don't expect handle for direct IO */
863 WARN_ON_ONCE(ext4_journal_current_handle());
864
e84dfbe2
JK
865 ret = ext4_get_block_trans(inode, iblock, bh_result,
866 EXT4_GET_BLOCKS_IO_CREATE_EXT);
efe70c29 867
109811c2
JK
868 /*
869 * When doing DIO using unwritten extents, we need io_end to convert
870 * unwritten extents to written on IO completion. We allocate io_end
871 * once we spot unwritten extent and store it in b_private. Generic
872 * DIO code keeps b_private set and furthermore passes the value to
873 * our completion callback in 'private' argument.
874 */
875 if (!ret && buffer_unwritten(bh_result)) {
876 if (!bh_result->b_private) {
877 ext4_io_end_t *io_end;
878
879 io_end = ext4_init_io_end(inode, GFP_KERNEL);
880 if (!io_end)
881 return -ENOMEM;
882 bh_result->b_private = io_end;
883 ext4_set_io_unwritten_flag(inode, io_end);
884 }
efe70c29 885 set_buffer_defer_completion(bh_result);
efe70c29
JK
886 }
887
888 return ret;
705965bd
JK
889}
890
109811c2
JK
891/*
892 * Get block function for non-AIO DIO writes when we create unwritten extent if
893 * blocks are not allocated yet. The extent will be converted to written
894 * after IO is complete from ext4_ext_direct_IO() function.
895 */
896static int ext4_dio_get_block_unwritten_sync(struct inode *inode,
897 sector_t iblock, struct buffer_head *bh_result, int create)
898{
109811c2
JK
899 int ret;
900
901 /* We don't expect handle for direct IO */
902 WARN_ON_ONCE(ext4_journal_current_handle());
903
e84dfbe2
JK
904 ret = ext4_get_block_trans(inode, iblock, bh_result,
905 EXT4_GET_BLOCKS_IO_CREATE_EXT);
109811c2
JK
906
907 /*
908 * Mark inode as having pending DIO writes to unwritten extents.
909 * ext4_ext_direct_IO() checks this flag and converts extents to
910 * written.
911 */
912 if (!ret && buffer_unwritten(bh_result))
913 ext4_set_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
914
915 return ret;
916}
917
705965bd
JK
918static int ext4_dio_get_block_overwrite(struct inode *inode, sector_t iblock,
919 struct buffer_head *bh_result, int create)
920{
921 int ret;
922
923 ext4_debug("ext4_dio_get_block_overwrite: inode %lu, create flag %d\n",
924 inode->i_ino, create);
efe70c29
JK
925 /* We don't expect handle for direct IO */
926 WARN_ON_ONCE(ext4_journal_current_handle());
927
705965bd
JK
928 ret = _ext4_get_block(inode, iblock, bh_result, 0);
929 /*
930 * Blocks should have been preallocated! ext4_file_write_iter() checks
931 * that.
932 */
efe70c29 933 WARN_ON_ONCE(!buffer_mapped(bh_result) || buffer_unwritten(bh_result));
705965bd
JK
934
935 return ret;
936}
937
938
ac27a0ec
DK
939/*
940 * `handle' can be NULL if create is zero
941 */
617ba13b 942struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
c5e298ae 943 ext4_lblk_t block, int map_flags)
ac27a0ec 944{
2ed88685
TT
945 struct ext4_map_blocks map;
946 struct buffer_head *bh;
c5e298ae 947 int create = map_flags & EXT4_GET_BLOCKS_CREATE;
10560082 948 int err;
ac27a0ec
DK
949
950 J_ASSERT(handle != NULL || create == 0);
951
2ed88685
TT
952 map.m_lblk = block;
953 map.m_len = 1;
c5e298ae 954 err = ext4_map_blocks(handle, inode, &map, map_flags);
ac27a0ec 955
10560082
TT
956 if (err == 0)
957 return create ? ERR_PTR(-ENOSPC) : NULL;
2ed88685 958 if (err < 0)
10560082 959 return ERR_PTR(err);
2ed88685
TT
960
961 bh = sb_getblk(inode->i_sb, map.m_pblk);
10560082
TT
962 if (unlikely(!bh))
963 return ERR_PTR(-ENOMEM);
2ed88685
TT
964 if (map.m_flags & EXT4_MAP_NEW) {
965 J_ASSERT(create != 0);
966 J_ASSERT(handle != NULL);
ac27a0ec 967
2ed88685
TT
968 /*
969 * Now that we do not always journal data, we should
970 * keep in mind whether this should always journal the
971 * new buffer as metadata. For now, regular file
972 * writes use ext4_get_block instead, so it's not a
973 * problem.
974 */
975 lock_buffer(bh);
976 BUFFER_TRACE(bh, "call get_create_access");
10560082
TT
977 err = ext4_journal_get_create_access(handle, bh);
978 if (unlikely(err)) {
979 unlock_buffer(bh);
980 goto errout;
981 }
982 if (!buffer_uptodate(bh)) {
2ed88685
TT
983 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
984 set_buffer_uptodate(bh);
ac27a0ec 985 }
2ed88685
TT
986 unlock_buffer(bh);
987 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
988 err = ext4_handle_dirty_metadata(handle, inode, bh);
10560082
TT
989 if (unlikely(err))
990 goto errout;
991 } else
2ed88685 992 BUFFER_TRACE(bh, "not a new buffer");
2ed88685 993 return bh;
10560082
TT
994errout:
995 brelse(bh);
996 return ERR_PTR(err);
ac27a0ec
DK
997}
998
617ba13b 999struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
c5e298ae 1000 ext4_lblk_t block, int map_flags)
ac27a0ec 1001{
af5bc92d 1002 struct buffer_head *bh;
ac27a0ec 1003
c5e298ae 1004 bh = ext4_getblk(handle, inode, block, map_flags);
1c215028 1005 if (IS_ERR(bh))
ac27a0ec 1006 return bh;
1c215028 1007 if (!bh || buffer_uptodate(bh))
ac27a0ec 1008 return bh;
dfec8a14 1009 ll_rw_block(REQ_OP_READ, REQ_META | REQ_PRIO, 1, &bh);
ac27a0ec
DK
1010 wait_on_buffer(bh);
1011 if (buffer_uptodate(bh))
1012 return bh;
1013 put_bh(bh);
1c215028 1014 return ERR_PTR(-EIO);
ac27a0ec
DK
1015}
1016
f19d5870
TM
1017int ext4_walk_page_buffers(handle_t *handle,
1018 struct buffer_head *head,
1019 unsigned from,
1020 unsigned to,
1021 int *partial,
1022 int (*fn)(handle_t *handle,
1023 struct buffer_head *bh))
ac27a0ec
DK
1024{
1025 struct buffer_head *bh;
1026 unsigned block_start, block_end;
1027 unsigned blocksize = head->b_size;
1028 int err, ret = 0;
1029 struct buffer_head *next;
1030
af5bc92d
TT
1031 for (bh = head, block_start = 0;
1032 ret == 0 && (bh != head || !block_start);
de9a55b8 1033 block_start = block_end, bh = next) {
ac27a0ec
DK
1034 next = bh->b_this_page;
1035 block_end = block_start + blocksize;
1036 if (block_end <= from || block_start >= to) {
1037 if (partial && !buffer_uptodate(bh))
1038 *partial = 1;
1039 continue;
1040 }
1041 err = (*fn)(handle, bh);
1042 if (!ret)
1043 ret = err;
1044 }
1045 return ret;
1046}
1047
1048/*
1049 * To preserve ordering, it is essential that the hole instantiation and
1050 * the data write be encapsulated in a single transaction. We cannot
617ba13b 1051 * close off a transaction and start a new one between the ext4_get_block()
dab291af 1052 * and the commit_write(). So doing the jbd2_journal_start at the start of
ac27a0ec
DK
1053 * prepare_write() is the right place.
1054 *
36ade451
JK
1055 * Also, this function can nest inside ext4_writepage(). In that case, we
1056 * *know* that ext4_writepage() has generated enough buffer credits to do the
1057 * whole page. So we won't block on the journal in that case, which is good,
1058 * because the caller may be PF_MEMALLOC.
ac27a0ec 1059 *
617ba13b 1060 * By accident, ext4 can be reentered when a transaction is open via
ac27a0ec
DK
1061 * quota file writes. If we were to commit the transaction while thus
1062 * reentered, there can be a deadlock - we would be holding a quota
1063 * lock, and the commit would never complete if another thread had a
1064 * transaction open and was blocking on the quota lock - a ranking
1065 * violation.
1066 *
dab291af 1067 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
ac27a0ec
DK
1068 * will _not_ run commit under these circumstances because handle->h_ref
1069 * is elevated. We'll still have enough credits for the tiny quotafile
1070 * write.
1071 */
f19d5870
TM
1072int do_journal_get_write_access(handle_t *handle,
1073 struct buffer_head *bh)
ac27a0ec 1074{
56d35a4c
JK
1075 int dirty = buffer_dirty(bh);
1076 int ret;
1077
ac27a0ec
DK
1078 if (!buffer_mapped(bh) || buffer_freed(bh))
1079 return 0;
56d35a4c 1080 /*
ebdec241 1081 * __block_write_begin() could have dirtied some buffers. Clean
56d35a4c
JK
1082 * the dirty bit as jbd2_journal_get_write_access() could complain
1083 * otherwise about fs integrity issues. Setting of the dirty bit
ebdec241 1084 * by __block_write_begin() isn't a real problem here as we clear
56d35a4c
JK
1085 * the bit before releasing a page lock and thus writeback cannot
1086 * ever write the buffer.
1087 */
1088 if (dirty)
1089 clear_buffer_dirty(bh);
5d601255 1090 BUFFER_TRACE(bh, "get write access");
56d35a4c
JK
1091 ret = ext4_journal_get_write_access(handle, bh);
1092 if (!ret && dirty)
1093 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
1094 return ret;
ac27a0ec
DK
1095}
1096
2058f83a
MH
1097#ifdef CONFIG_EXT4_FS_ENCRYPTION
1098static int ext4_block_write_begin(struct page *page, loff_t pos, unsigned len,
1099 get_block_t *get_block)
1100{
09cbfeaf 1101 unsigned from = pos & (PAGE_SIZE - 1);
2058f83a
MH
1102 unsigned to = from + len;
1103 struct inode *inode = page->mapping->host;
1104 unsigned block_start, block_end;
1105 sector_t block;
1106 int err = 0;
1107 unsigned blocksize = inode->i_sb->s_blocksize;
1108 unsigned bbits;
1109 struct buffer_head *bh, *head, *wait[2], **wait_bh = wait;
1110 bool decrypt = false;
1111
1112 BUG_ON(!PageLocked(page));
09cbfeaf
KS
1113 BUG_ON(from > PAGE_SIZE);
1114 BUG_ON(to > PAGE_SIZE);
2058f83a
MH
1115 BUG_ON(from > to);
1116
1117 if (!page_has_buffers(page))
1118 create_empty_buffers(page, blocksize, 0);
1119 head = page_buffers(page);
1120 bbits = ilog2(blocksize);
09cbfeaf 1121 block = (sector_t)page->index << (PAGE_SHIFT - bbits);
2058f83a
MH
1122
1123 for (bh = head, block_start = 0; bh != head || !block_start;
1124 block++, block_start = block_end, bh = bh->b_this_page) {
1125 block_end = block_start + blocksize;
1126 if (block_end <= from || block_start >= to) {
1127 if (PageUptodate(page)) {
1128 if (!buffer_uptodate(bh))
1129 set_buffer_uptodate(bh);
1130 }
1131 continue;
1132 }
1133 if (buffer_new(bh))
1134 clear_buffer_new(bh);
1135 if (!buffer_mapped(bh)) {
1136 WARN_ON(bh->b_size != blocksize);
1137 err = get_block(inode, block, bh, 1);
1138 if (err)
1139 break;
1140 if (buffer_new(bh)) {
1141 unmap_underlying_metadata(bh->b_bdev,
1142 bh->b_blocknr);
1143 if (PageUptodate(page)) {
1144 clear_buffer_new(bh);
1145 set_buffer_uptodate(bh);
1146 mark_buffer_dirty(bh);
1147 continue;
1148 }
1149 if (block_end > to || block_start < from)
1150 zero_user_segments(page, to, block_end,
1151 block_start, from);
1152 continue;
1153 }
1154 }
1155 if (PageUptodate(page)) {
1156 if (!buffer_uptodate(bh))
1157 set_buffer_uptodate(bh);
1158 continue;
1159 }
1160 if (!buffer_uptodate(bh) && !buffer_delay(bh) &&
1161 !buffer_unwritten(bh) &&
1162 (block_start < from || block_end > to)) {
dfec8a14 1163 ll_rw_block(REQ_OP_READ, 0, 1, &bh);
2058f83a
MH
1164 *wait_bh++ = bh;
1165 decrypt = ext4_encrypted_inode(inode) &&
1166 S_ISREG(inode->i_mode);
1167 }
1168 }
1169 /*
1170 * If we issued read requests, let them complete.
1171 */
1172 while (wait_bh > wait) {
1173 wait_on_buffer(*--wait_bh);
1174 if (!buffer_uptodate(*wait_bh))
1175 err = -EIO;
1176 }
1177 if (unlikely(err))
1178 page_zero_new_buffers(page, from, to);
1179 else if (decrypt)
7821d4dd 1180 err = fscrypt_decrypt_page(page->mapping->host, page,
9c4bb8a3 1181 PAGE_SIZE, 0, page->index);
2058f83a
MH
1182 return err;
1183}
1184#endif
1185
bfc1af65 1186static int ext4_write_begin(struct file *file, struct address_space *mapping,
de9a55b8
TT
1187 loff_t pos, unsigned len, unsigned flags,
1188 struct page **pagep, void **fsdata)
ac27a0ec 1189{
af5bc92d 1190 struct inode *inode = mapping->host;
1938a150 1191 int ret, needed_blocks;
ac27a0ec
DK
1192 handle_t *handle;
1193 int retries = 0;
af5bc92d 1194 struct page *page;
de9a55b8 1195 pgoff_t index;
af5bc92d 1196 unsigned from, to;
bfc1af65 1197
9bffad1e 1198 trace_ext4_write_begin(inode, pos, len, flags);
1938a150
AK
1199 /*
1200 * Reserve one block more for addition to orphan list in case
1201 * we allocate blocks but write fails for some reason
1202 */
1203 needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
09cbfeaf
KS
1204 index = pos >> PAGE_SHIFT;
1205 from = pos & (PAGE_SIZE - 1);
af5bc92d 1206 to = from + len;
ac27a0ec 1207
f19d5870
TM
1208 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
1209 ret = ext4_try_to_write_inline_data(mapping, inode, pos, len,
1210 flags, pagep);
1211 if (ret < 0)
47564bfb
TT
1212 return ret;
1213 if (ret == 1)
1214 return 0;
f19d5870
TM
1215 }
1216
47564bfb
TT
1217 /*
1218 * grab_cache_page_write_begin() can take a long time if the
1219 * system is thrashing due to memory pressure, or if the page
1220 * is being written back. So grab it first before we start
1221 * the transaction handle. This also allows us to allocate
1222 * the page (if needed) without using GFP_NOFS.
1223 */
1224retry_grab:
1225 page = grab_cache_page_write_begin(mapping, index, flags);
1226 if (!page)
1227 return -ENOMEM;
1228 unlock_page(page);
1229
1230retry_journal:
9924a92a 1231 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
af5bc92d 1232 if (IS_ERR(handle)) {
09cbfeaf 1233 put_page(page);
47564bfb 1234 return PTR_ERR(handle);
7479d2b9 1235 }
ac27a0ec 1236
47564bfb
TT
1237 lock_page(page);
1238 if (page->mapping != mapping) {
1239 /* The page got truncated from under us */
1240 unlock_page(page);
09cbfeaf 1241 put_page(page);
cf108bca 1242 ext4_journal_stop(handle);
47564bfb 1243 goto retry_grab;
cf108bca 1244 }
7afe5aa5
DM
1245 /* In case writeback began while the page was unlocked */
1246 wait_for_stable_page(page);
cf108bca 1247
2058f83a
MH
1248#ifdef CONFIG_EXT4_FS_ENCRYPTION
1249 if (ext4_should_dioread_nolock(inode))
1250 ret = ext4_block_write_begin(page, pos, len,
705965bd 1251 ext4_get_block_unwritten);
2058f83a
MH
1252 else
1253 ret = ext4_block_write_begin(page, pos, len,
1254 ext4_get_block);
1255#else
744692dc 1256 if (ext4_should_dioread_nolock(inode))
705965bd
JK
1257 ret = __block_write_begin(page, pos, len,
1258 ext4_get_block_unwritten);
744692dc 1259 else
6e1db88d 1260 ret = __block_write_begin(page, pos, len, ext4_get_block);
2058f83a 1261#endif
bfc1af65 1262 if (!ret && ext4_should_journal_data(inode)) {
f19d5870
TM
1263 ret = ext4_walk_page_buffers(handle, page_buffers(page),
1264 from, to, NULL,
1265 do_journal_get_write_access);
ac27a0ec 1266 }
bfc1af65
NP
1267
1268 if (ret) {
af5bc92d 1269 unlock_page(page);
ae4d5372 1270 /*
6e1db88d 1271 * __block_write_begin may have instantiated a few blocks
ae4d5372
AK
1272 * outside i_size. Trim these off again. Don't need
1273 * i_size_read because we hold i_mutex.
1938a150
AK
1274 *
1275 * Add inode to orphan list in case we crash before
1276 * truncate finishes
ae4d5372 1277 */
ffacfa7a 1278 if (pos + len > inode->i_size && ext4_can_truncate(inode))
1938a150
AK
1279 ext4_orphan_add(handle, inode);
1280
1281 ext4_journal_stop(handle);
1282 if (pos + len > inode->i_size) {
b9a4207d 1283 ext4_truncate_failed_write(inode);
de9a55b8 1284 /*
ffacfa7a 1285 * If truncate failed early the inode might
1938a150
AK
1286 * still be on the orphan list; we need to
1287 * make sure the inode is removed from the
1288 * orphan list in that case.
1289 */
1290 if (inode->i_nlink)
1291 ext4_orphan_del(NULL, inode);
1292 }
bfc1af65 1293
47564bfb
TT
1294 if (ret == -ENOSPC &&
1295 ext4_should_retry_alloc(inode->i_sb, &retries))
1296 goto retry_journal;
09cbfeaf 1297 put_page(page);
47564bfb
TT
1298 return ret;
1299 }
1300 *pagep = page;
ac27a0ec
DK
1301 return ret;
1302}
1303
bfc1af65
NP
1304/* For write_end() in data=journal mode */
1305static int write_end_fn(handle_t *handle, struct buffer_head *bh)
ac27a0ec 1306{
13fca323 1307 int ret;
ac27a0ec
DK
1308 if (!buffer_mapped(bh) || buffer_freed(bh))
1309 return 0;
1310 set_buffer_uptodate(bh);
13fca323
TT
1311 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
1312 clear_buffer_meta(bh);
1313 clear_buffer_prio(bh);
1314 return ret;
ac27a0ec
DK
1315}
1316
eed4333f
ZL
1317/*
1318 * We need to pick up the new inode size which generic_commit_write gave us
1319 * `file' can be NULL - eg, when called from page_symlink().
1320 *
1321 * ext4 never places buffers on inode->i_mapping->private_list. metadata
1322 * buffers are managed internally.
1323 */
1324static int ext4_write_end(struct file *file,
1325 struct address_space *mapping,
1326 loff_t pos, unsigned len, unsigned copied,
1327 struct page *page, void *fsdata)
f8514083 1328{
f8514083 1329 handle_t *handle = ext4_journal_current_handle();
eed4333f 1330 struct inode *inode = mapping->host;
0572639f 1331 loff_t old_size = inode->i_size;
eed4333f
ZL
1332 int ret = 0, ret2;
1333 int i_size_changed = 0;
1334
1335 trace_ext4_write_end(inode, pos, len, copied);
42c832de
TT
1336 if (ext4_has_inline_data(inode)) {
1337 ret = ext4_write_inline_data_end(inode, pos, len,
1338 copied, page);
1339 if (ret < 0)
1340 goto errout;
1341 copied = ret;
1342 } else
f19d5870
TM
1343 copied = block_write_end(file, mapping, pos,
1344 len, copied, page, fsdata);
f8514083 1345 /*
4631dbf6 1346 * it's important to update i_size while still holding page lock:
f8514083
AK
1347 * page writeout could otherwise come in and zero beyond i_size.
1348 */
4631dbf6 1349 i_size_changed = ext4_update_inode_size(inode, pos + copied);
f8514083 1350 unlock_page(page);
09cbfeaf 1351 put_page(page);
f8514083 1352
0572639f
XW
1353 if (old_size < pos)
1354 pagecache_isize_extended(inode, old_size, pos);
f8514083
AK
1355 /*
1356 * Don't mark the inode dirty under page lock. First, it unnecessarily
1357 * makes the holding time of page lock longer. Second, it forces lock
1358 * ordering of page lock and transaction start for journaling
1359 * filesystems.
1360 */
1361 if (i_size_changed)
1362 ext4_mark_inode_dirty(handle, inode);
1363
ffacfa7a 1364 if (pos + len > inode->i_size && ext4_can_truncate(inode))
f8514083
AK
1365 /* if we have allocated more blocks and copied
1366 * less. We will have blocks allocated outside
1367 * inode->i_size. So truncate them
1368 */
1369 ext4_orphan_add(handle, inode);
74d553aa 1370errout:
617ba13b 1371 ret2 = ext4_journal_stop(handle);
ac27a0ec
DK
1372 if (!ret)
1373 ret = ret2;
bfc1af65 1374
f8514083 1375 if (pos + len > inode->i_size) {
b9a4207d 1376 ext4_truncate_failed_write(inode);
de9a55b8 1377 /*
ffacfa7a 1378 * If truncate failed early the inode might still be
f8514083
AK
1379 * on the orphan list; we need to make sure the inode
1380 * is removed from the orphan list in that case.
1381 */
1382 if (inode->i_nlink)
1383 ext4_orphan_del(NULL, inode);
1384 }
1385
bfc1af65 1386 return ret ? ret : copied;
ac27a0ec
DK
1387}
1388
b90197b6
TT
1389/*
1390 * This is a private version of page_zero_new_buffers() which doesn't
1391 * set the buffer to be dirty, since in data=journalled mode we need
1392 * to call ext4_handle_dirty_metadata() instead.
1393 */
1394static void zero_new_buffers(struct page *page, unsigned from, unsigned to)
1395{
1396 unsigned int block_start = 0, block_end;
1397 struct buffer_head *head, *bh;
1398
1399 bh = head = page_buffers(page);
1400 do {
1401 block_end = block_start + bh->b_size;
1402 if (buffer_new(bh)) {
1403 if (block_end > from && block_start < to) {
1404 if (!PageUptodate(page)) {
1405 unsigned start, size;
1406
1407 start = max(from, block_start);
1408 size = min(to, block_end) - start;
1409
1410 zero_user(page, start, size);
1411 set_buffer_uptodate(bh);
1412 }
1413 clear_buffer_new(bh);
1414 }
1415 }
1416 block_start = block_end;
1417 bh = bh->b_this_page;
1418 } while (bh != head);
1419}
1420
bfc1af65 1421static int ext4_journalled_write_end(struct file *file,
de9a55b8
TT
1422 struct address_space *mapping,
1423 loff_t pos, unsigned len, unsigned copied,
1424 struct page *page, void *fsdata)
ac27a0ec 1425{
617ba13b 1426 handle_t *handle = ext4_journal_current_handle();
bfc1af65 1427 struct inode *inode = mapping->host;
0572639f 1428 loff_t old_size = inode->i_size;
ac27a0ec
DK
1429 int ret = 0, ret2;
1430 int partial = 0;
bfc1af65 1431 unsigned from, to;
4631dbf6 1432 int size_changed = 0;
ac27a0ec 1433
9bffad1e 1434 trace_ext4_journalled_write_end(inode, pos, len, copied);
09cbfeaf 1435 from = pos & (PAGE_SIZE - 1);
bfc1af65
NP
1436 to = from + len;
1437
441c8508
CW
1438 BUG_ON(!ext4_handle_valid(handle));
1439
3fdcfb66
TM
1440 if (ext4_has_inline_data(inode))
1441 copied = ext4_write_inline_data_end(inode, pos, len,
1442 copied, page);
1443 else {
1444 if (copied < len) {
1445 if (!PageUptodate(page))
1446 copied = 0;
b90197b6 1447 zero_new_buffers(page, from+copied, to);
3fdcfb66 1448 }
ac27a0ec 1449
3fdcfb66
TM
1450 ret = ext4_walk_page_buffers(handle, page_buffers(page), from,
1451 to, &partial, write_end_fn);
1452 if (!partial)
1453 SetPageUptodate(page);
1454 }
4631dbf6 1455 size_changed = ext4_update_inode_size(inode, pos + copied);
19f5fb7a 1456 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
2d859db3 1457 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
4631dbf6 1458 unlock_page(page);
09cbfeaf 1459 put_page(page);
4631dbf6 1460
0572639f
XW
1461 if (old_size < pos)
1462 pagecache_isize_extended(inode, old_size, pos);
1463
4631dbf6 1464 if (size_changed) {
617ba13b 1465 ret2 = ext4_mark_inode_dirty(handle, inode);
ac27a0ec
DK
1466 if (!ret)
1467 ret = ret2;
1468 }
bfc1af65 1469
ffacfa7a 1470 if (pos + len > inode->i_size && ext4_can_truncate(inode))
f8514083
AK
1471 /* if we have allocated more blocks and copied
1472 * less. We will have blocks allocated outside
1473 * inode->i_size. So truncate them
1474 */
1475 ext4_orphan_add(handle, inode);
1476
617ba13b 1477 ret2 = ext4_journal_stop(handle);
ac27a0ec
DK
1478 if (!ret)
1479 ret = ret2;
f8514083 1480 if (pos + len > inode->i_size) {
b9a4207d 1481 ext4_truncate_failed_write(inode);
de9a55b8 1482 /*
ffacfa7a 1483 * If truncate failed early the inode might still be
f8514083
AK
1484 * on the orphan list; we need to make sure the inode
1485 * is removed from the orphan list in that case.
1486 */
1487 if (inode->i_nlink)
1488 ext4_orphan_del(NULL, inode);
1489 }
bfc1af65
NP
1490
1491 return ret ? ret : copied;
ac27a0ec 1492}
d2a17637 1493
9d0be502 1494/*
c27e43a1 1495 * Reserve space for a single cluster
9d0be502 1496 */
c27e43a1 1497static int ext4_da_reserve_space(struct inode *inode)
d2a17637 1498{
60e58e0f 1499 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
0637c6f4 1500 struct ext4_inode_info *ei = EXT4_I(inode);
5dd4056d 1501 int ret;
03179fe9
TT
1502
1503 /*
1504 * We will charge metadata quota at writeout time; this saves
1505 * us from metadata over-estimation, though we may go over by
1506 * a small amount in the end. Here we just reserve for data.
1507 */
1508 ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
1509 if (ret)
1510 return ret;
d2a17637 1511
0637c6f4 1512 spin_lock(&ei->i_block_reservation_lock);
71d4f7d0 1513 if (ext4_claim_free_clusters(sbi, 1, 0)) {
03179fe9 1514 spin_unlock(&ei->i_block_reservation_lock);
03179fe9 1515 dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
d2a17637
MC
1516 return -ENOSPC;
1517 }
9d0be502 1518 ei->i_reserved_data_blocks++;
c27e43a1 1519 trace_ext4_da_reserve_space(inode);
0637c6f4 1520 spin_unlock(&ei->i_block_reservation_lock);
39bc680a 1521
d2a17637
MC
1522 return 0; /* success */
1523}
1524
12219aea 1525static void ext4_da_release_space(struct inode *inode, int to_free)
d2a17637
MC
1526{
1527 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
0637c6f4 1528 struct ext4_inode_info *ei = EXT4_I(inode);
d2a17637 1529
cd213226
MC
1530 if (!to_free)
1531 return; /* Nothing to release, exit */
1532
d2a17637 1533 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
cd213226 1534
5a58ec87 1535 trace_ext4_da_release_space(inode, to_free);
0637c6f4 1536 if (unlikely(to_free > ei->i_reserved_data_blocks)) {
cd213226 1537 /*
0637c6f4
TT
1538 * if there aren't enough reserved blocks, then the
1539 * counter is messed up somewhere. Since this
1540 * function is called from invalidate page, it's
1541 * harmless to return without any action.
cd213226 1542 */
8de5c325 1543 ext4_warning(inode->i_sb, "ext4_da_release_space: "
0637c6f4 1544 "ino %lu, to_free %d with only %d reserved "
1084f252 1545 "data blocks", inode->i_ino, to_free,
0637c6f4
TT
1546 ei->i_reserved_data_blocks);
1547 WARN_ON(1);
1548 to_free = ei->i_reserved_data_blocks;
cd213226 1549 }
0637c6f4 1550 ei->i_reserved_data_blocks -= to_free;
cd213226 1551
72b8ab9d 1552 /* update fs dirty data blocks counter */
57042651 1553 percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
d2a17637 1554
d2a17637 1555 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
60e58e0f 1556
7b415bf6 1557 dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
d2a17637
MC
1558}
1559
1560static void ext4_da_page_release_reservation(struct page *page,
ca99fdd2
LC
1561 unsigned int offset,
1562 unsigned int length)
d2a17637 1563{
9705acd6 1564 int to_release = 0, contiguous_blks = 0;
d2a17637
MC
1565 struct buffer_head *head, *bh;
1566 unsigned int curr_off = 0;
7b415bf6
AK
1567 struct inode *inode = page->mapping->host;
1568 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
ca99fdd2 1569 unsigned int stop = offset + length;
7b415bf6 1570 int num_clusters;
51865fda 1571 ext4_fsblk_t lblk;
d2a17637 1572
09cbfeaf 1573 BUG_ON(stop > PAGE_SIZE || stop < length);
ca99fdd2 1574
d2a17637
MC
1575 head = page_buffers(page);
1576 bh = head;
1577 do {
1578 unsigned int next_off = curr_off + bh->b_size;
1579
ca99fdd2
LC
1580 if (next_off > stop)
1581 break;
1582
d2a17637
MC
1583 if ((offset <= curr_off) && (buffer_delay(bh))) {
1584 to_release++;
9705acd6 1585 contiguous_blks++;
d2a17637 1586 clear_buffer_delay(bh);
9705acd6
LC
1587 } else if (contiguous_blks) {
1588 lblk = page->index <<
09cbfeaf 1589 (PAGE_SHIFT - inode->i_blkbits);
9705acd6
LC
1590 lblk += (curr_off >> inode->i_blkbits) -
1591 contiguous_blks;
1592 ext4_es_remove_extent(inode, lblk, contiguous_blks);
1593 contiguous_blks = 0;
d2a17637
MC
1594 }
1595 curr_off = next_off;
1596 } while ((bh = bh->b_this_page) != head);
7b415bf6 1597
9705acd6 1598 if (contiguous_blks) {
09cbfeaf 1599 lblk = page->index << (PAGE_SHIFT - inode->i_blkbits);
9705acd6
LC
1600 lblk += (curr_off >> inode->i_blkbits) - contiguous_blks;
1601 ext4_es_remove_extent(inode, lblk, contiguous_blks);
51865fda
ZL
1602 }
1603
7b415bf6
AK
1604 /* If we have released all the blocks belonging to a cluster, then we
1605 * need to release the reserved space for that cluster. */
1606 num_clusters = EXT4_NUM_B2C(sbi, to_release);
1607 while (num_clusters > 0) {
09cbfeaf 1608 lblk = (page->index << (PAGE_SHIFT - inode->i_blkbits)) +
7b415bf6
AK
1609 ((num_clusters - 1) << sbi->s_cluster_bits);
1610 if (sbi->s_cluster_ratio == 1 ||
7d1b1fbc 1611 !ext4_find_delalloc_cluster(inode, lblk))
7b415bf6
AK
1612 ext4_da_release_space(inode, 1);
1613
1614 num_clusters--;
1615 }
d2a17637 1616}
ac27a0ec 1617
64769240
AT
1618/*
1619 * Delayed allocation stuff
1620 */
1621
4e7ea81d
JK
1622struct mpage_da_data {
1623 struct inode *inode;
1624 struct writeback_control *wbc;
6b523df4 1625
4e7ea81d
JK
1626 pgoff_t first_page; /* The first page to write */
1627 pgoff_t next_page; /* Current page to examine */
1628 pgoff_t last_page; /* Last page to examine */
791b7f08 1629 /*
4e7ea81d
JK
1630 * Extent to map - this can be after first_page because that can be
1631 * fully mapped. We somewhat abuse m_flags to store whether the extent
1632 * is delalloc or unwritten.
791b7f08 1633 */
4e7ea81d
JK
1634 struct ext4_map_blocks map;
1635 struct ext4_io_submit io_submit; /* IO submission data */
1636};
64769240 1637
4e7ea81d
JK
1638static void mpage_release_unused_pages(struct mpage_da_data *mpd,
1639 bool invalidate)
c4a0c46e
AK
1640{
1641 int nr_pages, i;
1642 pgoff_t index, end;
1643 struct pagevec pvec;
1644 struct inode *inode = mpd->inode;
1645 struct address_space *mapping = inode->i_mapping;
4e7ea81d
JK
1646
1647 /* This is necessary when next_page == 0. */
1648 if (mpd->first_page >= mpd->next_page)
1649 return;
c4a0c46e 1650
c7f5938a
CW
1651 index = mpd->first_page;
1652 end = mpd->next_page - 1;
4e7ea81d
JK
1653 if (invalidate) {
1654 ext4_lblk_t start, last;
09cbfeaf
KS
1655 start = index << (PAGE_SHIFT - inode->i_blkbits);
1656 last = end << (PAGE_SHIFT - inode->i_blkbits);
4e7ea81d
JK
1657 ext4_es_remove_extent(inode, start, last - start + 1);
1658 }
51865fda 1659
66bea92c 1660 pagevec_init(&pvec, 0);
c4a0c46e
AK
1661 while (index <= end) {
1662 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1663 if (nr_pages == 0)
1664 break;
1665 for (i = 0; i < nr_pages; i++) {
1666 struct page *page = pvec.pages[i];
9b1d0998 1667 if (page->index > end)
c4a0c46e 1668 break;
c4a0c46e
AK
1669 BUG_ON(!PageLocked(page));
1670 BUG_ON(PageWriteback(page));
4e7ea81d 1671 if (invalidate) {
4e800c03 1672 if (page_mapped(page))
1673 clear_page_dirty_for_io(page);
09cbfeaf 1674 block_invalidatepage(page, 0, PAGE_SIZE);
4e7ea81d
JK
1675 ClearPageUptodate(page);
1676 }
c4a0c46e
AK
1677 unlock_page(page);
1678 }
9b1d0998
JK
1679 index = pvec.pages[nr_pages - 1]->index + 1;
1680 pagevec_release(&pvec);
c4a0c46e 1681 }
c4a0c46e
AK
1682}
1683
df22291f
AK
1684static void ext4_print_free_blocks(struct inode *inode)
1685{
1686 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
92b97816 1687 struct super_block *sb = inode->i_sb;
f78ee70d 1688 struct ext4_inode_info *ei = EXT4_I(inode);
92b97816
TT
1689
1690 ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld",
5dee5437 1691 EXT4_C2B(EXT4_SB(inode->i_sb),
f78ee70d 1692 ext4_count_free_clusters(sb)));
92b97816
TT
1693 ext4_msg(sb, KERN_CRIT, "Free/Dirty block details");
1694 ext4_msg(sb, KERN_CRIT, "free_blocks=%lld",
f78ee70d 1695 (long long) EXT4_C2B(EXT4_SB(sb),
57042651 1696 percpu_counter_sum(&sbi->s_freeclusters_counter)));
92b97816 1697 ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld",
f78ee70d 1698 (long long) EXT4_C2B(EXT4_SB(sb),
7b415bf6 1699 percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
92b97816
TT
1700 ext4_msg(sb, KERN_CRIT, "Block reservation details");
1701 ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u",
f78ee70d 1702 ei->i_reserved_data_blocks);
df22291f
AK
1703 return;
1704}
1705
c364b22c 1706static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
29fa89d0 1707{
c364b22c 1708 return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
29fa89d0
AK
1709}
1710
5356f261
AK
1711/*
1712 * This function is grabs code from the very beginning of
1713 * ext4_map_blocks, but assumes that the caller is from delayed write
1714 * time. This function looks up the requested blocks and sets the
1715 * buffer delay bit under the protection of i_data_sem.
1716 */
1717static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
1718 struct ext4_map_blocks *map,
1719 struct buffer_head *bh)
1720{
d100eef2 1721 struct extent_status es;
5356f261
AK
1722 int retval;
1723 sector_t invalid_block = ~((sector_t) 0xffff);
921f266b
DM
1724#ifdef ES_AGGRESSIVE_TEST
1725 struct ext4_map_blocks orig_map;
1726
1727 memcpy(&orig_map, map, sizeof(*map));
1728#endif
5356f261
AK
1729
1730 if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
1731 invalid_block = ~0;
1732
1733 map->m_flags = 0;
1734 ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u,"
1735 "logical block %lu\n", inode->i_ino, map->m_len,
1736 (unsigned long) map->m_lblk);
d100eef2
ZL
1737
1738 /* Lookup extent status tree firstly */
1739 if (ext4_es_lookup_extent(inode, iblock, &es)) {
d100eef2
ZL
1740 if (ext4_es_is_hole(&es)) {
1741 retval = 0;
c8b459f4 1742 down_read(&EXT4_I(inode)->i_data_sem);
d100eef2
ZL
1743 goto add_delayed;
1744 }
1745
1746 /*
1747 * Delayed extent could be allocated by fallocate.
1748 * So we need to check it.
1749 */
1750 if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) {
1751 map_bh(bh, inode->i_sb, invalid_block);
1752 set_buffer_new(bh);
1753 set_buffer_delay(bh);
1754 return 0;
1755 }
1756
1757 map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk;
1758 retval = es.es_len - (iblock - es.es_lblk);
1759 if (retval > map->m_len)
1760 retval = map->m_len;
1761 map->m_len = retval;
1762 if (ext4_es_is_written(&es))
1763 map->m_flags |= EXT4_MAP_MAPPED;
1764 else if (ext4_es_is_unwritten(&es))
1765 map->m_flags |= EXT4_MAP_UNWRITTEN;
1766 else
1767 BUG_ON(1);
1768
921f266b
DM
1769#ifdef ES_AGGRESSIVE_TEST
1770 ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0);
1771#endif
d100eef2
ZL
1772 return retval;
1773 }
1774
5356f261
AK
1775 /*
1776 * Try to see if we can get the block without requesting a new
1777 * file system block.
1778 */
c8b459f4 1779 down_read(&EXT4_I(inode)->i_data_sem);
cbd7584e 1780 if (ext4_has_inline_data(inode))
9c3569b5 1781 retval = 0;
cbd7584e 1782 else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
2f8e0a7c 1783 retval = ext4_ext_map_blocks(NULL, inode, map, 0);
5356f261 1784 else
2f8e0a7c 1785 retval = ext4_ind_map_blocks(NULL, inode, map, 0);
5356f261 1786
d100eef2 1787add_delayed:
5356f261 1788 if (retval == 0) {
f7fec032 1789 int ret;
5356f261
AK
1790 /*
1791 * XXX: __block_prepare_write() unmaps passed block,
1792 * is it OK?
1793 */
386ad67c
LC
1794 /*
1795 * If the block was allocated from previously allocated cluster,
1796 * then we don't need to reserve it again. However we still need
1797 * to reserve metadata for every block we're going to write.
1798 */
c27e43a1 1799 if (EXT4_SB(inode->i_sb)->s_cluster_ratio == 1 ||
cbd7584e 1800 !ext4_find_delalloc_cluster(inode, map->m_lblk)) {
c27e43a1 1801 ret = ext4_da_reserve_space(inode);
f7fec032 1802 if (ret) {
5356f261 1803 /* not enough space to reserve */
f7fec032 1804 retval = ret;
5356f261 1805 goto out_unlock;
f7fec032 1806 }
5356f261
AK
1807 }
1808
f7fec032
ZL
1809 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1810 ~0, EXTENT_STATUS_DELAYED);
1811 if (ret) {
1812 retval = ret;
51865fda 1813 goto out_unlock;
f7fec032 1814 }
51865fda 1815
5356f261
AK
1816 map_bh(bh, inode->i_sb, invalid_block);
1817 set_buffer_new(bh);
1818 set_buffer_delay(bh);
f7fec032
ZL
1819 } else if (retval > 0) {
1820 int ret;
3be78c73 1821 unsigned int status;
f7fec032 1822
44fb851d
ZL
1823 if (unlikely(retval != map->m_len)) {
1824 ext4_warning(inode->i_sb,
1825 "ES len assertion failed for inode "
1826 "%lu: retval %d != map->m_len %d",
1827 inode->i_ino, retval, map->m_len);
1828 WARN_ON(1);
921f266b 1829 }
921f266b 1830
f7fec032
ZL
1831 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
1832 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
1833 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1834 map->m_pblk, status);
1835 if (ret != 0)
1836 retval = ret;
5356f261
AK
1837 }
1838
1839out_unlock:
1840 up_read((&EXT4_I(inode)->i_data_sem));
1841
1842 return retval;
1843}
1844
64769240 1845/*
d91bd2c1 1846 * This is a special get_block_t callback which is used by
b920c755
TT
1847 * ext4_da_write_begin(). It will either return mapped block or
1848 * reserve space for a single block.
29fa89d0
AK
1849 *
1850 * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
1851 * We also have b_blocknr = -1 and b_bdev initialized properly
1852 *
1853 * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
1854 * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
1855 * initialized properly.
64769240 1856 */
9c3569b5
TM
1857int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
1858 struct buffer_head *bh, int create)
64769240 1859{
2ed88685 1860 struct ext4_map_blocks map;
64769240
AT
1861 int ret = 0;
1862
1863 BUG_ON(create == 0);
2ed88685
TT
1864 BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
1865
1866 map.m_lblk = iblock;
1867 map.m_len = 1;
64769240
AT
1868
1869 /*
1870 * first, we need to know whether the block is allocated already
1871 * preallocated blocks are unmapped but should treated
1872 * the same as allocated blocks.
1873 */
5356f261
AK
1874 ret = ext4_da_map_blocks(inode, iblock, &map, bh);
1875 if (ret <= 0)
2ed88685 1876 return ret;
64769240 1877
2ed88685 1878 map_bh(bh, inode->i_sb, map.m_pblk);
ed8ad838 1879 ext4_update_bh_state(bh, map.m_flags);
2ed88685
TT
1880
1881 if (buffer_unwritten(bh)) {
1882 /* A delayed write to unwritten bh should be marked
1883 * new and mapped. Mapped ensures that we don't do
1884 * get_block multiple times when we write to the same
1885 * offset and new ensures that we do proper zero out
1886 * for partial write.
1887 */
1888 set_buffer_new(bh);
c8205636 1889 set_buffer_mapped(bh);
2ed88685
TT
1890 }
1891 return 0;
64769240 1892}
61628a3f 1893
62e086be
AK
1894static int bget_one(handle_t *handle, struct buffer_head *bh)
1895{
1896 get_bh(bh);
1897 return 0;
1898}
1899
1900static int bput_one(handle_t *handle, struct buffer_head *bh)
1901{
1902 put_bh(bh);
1903 return 0;
1904}
1905
1906static int __ext4_journalled_writepage(struct page *page,
62e086be
AK
1907 unsigned int len)
1908{
1909 struct address_space *mapping = page->mapping;
1910 struct inode *inode = mapping->host;
3fdcfb66 1911 struct buffer_head *page_bufs = NULL;
62e086be 1912 handle_t *handle = NULL;
3fdcfb66
TM
1913 int ret = 0, err = 0;
1914 int inline_data = ext4_has_inline_data(inode);
1915 struct buffer_head *inode_bh = NULL;
62e086be 1916
cb20d518 1917 ClearPageChecked(page);
3fdcfb66
TM
1918
1919 if (inline_data) {
1920 BUG_ON(page->index != 0);
1921 BUG_ON(len > ext4_get_max_inline_size(inode));
1922 inode_bh = ext4_journalled_write_inline_data(inode, len, page);
1923 if (inode_bh == NULL)
1924 goto out;
1925 } else {
1926 page_bufs = page_buffers(page);
1927 if (!page_bufs) {
1928 BUG();
1929 goto out;
1930 }
1931 ext4_walk_page_buffers(handle, page_bufs, 0, len,
1932 NULL, bget_one);
1933 }
bdf96838
TT
1934 /*
1935 * We need to release the page lock before we start the
1936 * journal, so grab a reference so the page won't disappear
1937 * out from under us.
1938 */
1939 get_page(page);
62e086be
AK
1940 unlock_page(page);
1941
9924a92a
TT
1942 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
1943 ext4_writepage_trans_blocks(inode));
62e086be
AK
1944 if (IS_ERR(handle)) {
1945 ret = PTR_ERR(handle);
bdf96838
TT
1946 put_page(page);
1947 goto out_no_pagelock;
62e086be 1948 }
441c8508
CW
1949 BUG_ON(!ext4_handle_valid(handle));
1950
bdf96838
TT
1951 lock_page(page);
1952 put_page(page);
1953 if (page->mapping != mapping) {
1954 /* The page got truncated from under us */
1955 ext4_journal_stop(handle);
1956 ret = 0;
1957 goto out;
1958 }
1959
3fdcfb66 1960 if (inline_data) {
5d601255 1961 BUFFER_TRACE(inode_bh, "get write access");
3fdcfb66 1962 ret = ext4_journal_get_write_access(handle, inode_bh);
62e086be 1963
3fdcfb66
TM
1964 err = ext4_handle_dirty_metadata(handle, inode, inode_bh);
1965
1966 } else {
1967 ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
1968 do_journal_get_write_access);
1969
1970 err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
1971 write_end_fn);
1972 }
62e086be
AK
1973 if (ret == 0)
1974 ret = err;
2d859db3 1975 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
62e086be
AK
1976 err = ext4_journal_stop(handle);
1977 if (!ret)
1978 ret = err;
1979
3fdcfb66 1980 if (!ext4_has_inline_data(inode))
8c9367fd 1981 ext4_walk_page_buffers(NULL, page_bufs, 0, len,
3fdcfb66 1982 NULL, bput_one);
19f5fb7a 1983 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
62e086be 1984out:
bdf96838
TT
1985 unlock_page(page);
1986out_no_pagelock:
3fdcfb66 1987 brelse(inode_bh);
62e086be
AK
1988 return ret;
1989}
1990
61628a3f 1991/*
43ce1d23
AK
1992 * Note that we don't need to start a transaction unless we're journaling data
1993 * because we should have holes filled from ext4_page_mkwrite(). We even don't
1994 * need to file the inode to the transaction's list in ordered mode because if
1995 * we are writing back data added by write(), the inode is already there and if
25985edc 1996 * we are writing back data modified via mmap(), no one guarantees in which
43ce1d23
AK
1997 * transaction the data will hit the disk. In case we are journaling data, we
1998 * cannot start transaction directly because transaction start ranks above page
1999 * lock so we have to do some magic.
2000 *
b920c755 2001 * This function can get called via...
20970ba6 2002 * - ext4_writepages after taking page lock (have journal handle)
b920c755 2003 * - journal_submit_inode_data_buffers (no journal handle)
f6463b0d 2004 * - shrink_page_list via the kswapd/direct reclaim (no journal handle)
b920c755 2005 * - grab_page_cache when doing write_begin (have journal handle)
43ce1d23
AK
2006 *
2007 * We don't do any block allocation in this function. If we have page with
2008 * multiple blocks we need to write those buffer_heads that are mapped. This
2009 * is important for mmaped based write. So if we do with blocksize 1K
2010 * truncate(f, 1024);
2011 * a = mmap(f, 0, 4096);
2012 * a[0] = 'a';
2013 * truncate(f, 4096);
2014 * we have in the page first buffer_head mapped via page_mkwrite call back
90802ed9 2015 * but other buffer_heads would be unmapped but dirty (dirty done via the
43ce1d23
AK
2016 * do_wp_page). So writepage should write the first block. If we modify
2017 * the mmap area beyond 1024 we will again get a page_fault and the
2018 * page_mkwrite callback will do the block allocation and mark the
2019 * buffer_heads mapped.
2020 *
2021 * We redirty the page if we have any buffer_heads that is either delay or
2022 * unwritten in the page.
2023 *
2024 * We can get recursively called as show below.
2025 *
2026 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
2027 * ext4_writepage()
2028 *
2029 * But since we don't do any block allocation we should not deadlock.
2030 * Page also have the dirty flag cleared so we don't get recurive page_lock.
61628a3f 2031 */
43ce1d23 2032static int ext4_writepage(struct page *page,
62e086be 2033 struct writeback_control *wbc)
64769240 2034{
f8bec370 2035 int ret = 0;
61628a3f 2036 loff_t size;
498e5f24 2037 unsigned int len;
744692dc 2038 struct buffer_head *page_bufs = NULL;
61628a3f 2039 struct inode *inode = page->mapping->host;
36ade451 2040 struct ext4_io_submit io_submit;
1c8349a1 2041 bool keep_towrite = false;
61628a3f 2042
a9c667f8 2043 trace_ext4_writepage(page);
f0e6c985 2044 size = i_size_read(inode);
09cbfeaf
KS
2045 if (page->index == size >> PAGE_SHIFT)
2046 len = size & ~PAGE_MASK;
f0e6c985 2047 else
09cbfeaf 2048 len = PAGE_SIZE;
64769240 2049
a42afc5f 2050 page_bufs = page_buffers(page);
a42afc5f 2051 /*
fe386132
JK
2052 * We cannot do block allocation or other extent handling in this
2053 * function. If there are buffers needing that, we have to redirty
2054 * the page. But we may reach here when we do a journal commit via
2055 * journal_submit_inode_data_buffers() and in that case we must write
2056 * allocated buffers to achieve data=ordered mode guarantees.
cccd147a
TT
2057 *
2058 * Also, if there is only one buffer per page (the fs block
2059 * size == the page size), if one buffer needs block
2060 * allocation or needs to modify the extent tree to clear the
2061 * unwritten flag, we know that the page can't be written at
2062 * all, so we might as well refuse the write immediately.
2063 * Unfortunately if the block size != page size, we can't as
2064 * easily detect this case using ext4_walk_page_buffers(), but
2065 * for the extremely common case, this is an optimization that
2066 * skips a useless round trip through ext4_bio_write_page().
a42afc5f 2067 */
f19d5870
TM
2068 if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL,
2069 ext4_bh_delay_or_unwritten)) {
f8bec370 2070 redirty_page_for_writepage(wbc, page);
cccd147a 2071 if ((current->flags & PF_MEMALLOC) ||
09cbfeaf 2072 (inode->i_sb->s_blocksize == PAGE_SIZE)) {
fe386132
JK
2073 /*
2074 * For memory cleaning there's no point in writing only
2075 * some buffers. So just bail out. Warn if we came here
2076 * from direct reclaim.
2077 */
2078 WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
2079 == PF_MEMALLOC);
f0e6c985
AK
2080 unlock_page(page);
2081 return 0;
2082 }
1c8349a1 2083 keep_towrite = true;
a42afc5f 2084 }
64769240 2085
cb20d518 2086 if (PageChecked(page) && ext4_should_journal_data(inode))
43ce1d23
AK
2087 /*
2088 * It's mmapped pagecache. Add buffers and journal it. There
2089 * doesn't seem much point in redirtying the page here.
2090 */
3f0ca309 2091 return __ext4_journalled_writepage(page, len);
43ce1d23 2092
97a851ed
JK
2093 ext4_io_submit_init(&io_submit, wbc);
2094 io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS);
2095 if (!io_submit.io_end) {
2096 redirty_page_for_writepage(wbc, page);
2097 unlock_page(page);
2098 return -ENOMEM;
2099 }
1c8349a1 2100 ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite);
36ade451 2101 ext4_io_submit(&io_submit);
97a851ed
JK
2102 /* Drop io_end reference we got from init */
2103 ext4_put_io_end_defer(io_submit.io_end);
64769240
AT
2104 return ret;
2105}
2106
5f1132b2
JK
2107static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page)
2108{
2109 int len;
2110 loff_t size = i_size_read(mpd->inode);
2111 int err;
2112
2113 BUG_ON(page->index != mpd->first_page);
09cbfeaf
KS
2114 if (page->index == size >> PAGE_SHIFT)
2115 len = size & ~PAGE_MASK;
5f1132b2 2116 else
09cbfeaf 2117 len = PAGE_SIZE;
5f1132b2 2118 clear_page_dirty_for_io(page);
1c8349a1 2119 err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false);
5f1132b2
JK
2120 if (!err)
2121 mpd->wbc->nr_to_write--;
2122 mpd->first_page++;
2123
2124 return err;
2125}
2126
4e7ea81d
JK
2127#define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay))
2128
61628a3f 2129/*
fffb2739
JK
2130 * mballoc gives us at most this number of blocks...
2131 * XXX: That seems to be only a limitation of ext4_mb_normalize_request().
70261f56 2132 * The rest of mballoc seems to handle chunks up to full group size.
61628a3f 2133 */
fffb2739 2134#define MAX_WRITEPAGES_EXTENT_LEN 2048
525f4ed8 2135
4e7ea81d
JK
2136/*
2137 * mpage_add_bh_to_extent - try to add bh to extent of blocks to map
2138 *
2139 * @mpd - extent of blocks
2140 * @lblk - logical number of the block in the file
09930042 2141 * @bh - buffer head we want to add to the extent
4e7ea81d 2142 *
09930042
JK
2143 * The function is used to collect contig. blocks in the same state. If the
2144 * buffer doesn't require mapping for writeback and we haven't started the
2145 * extent of buffers to map yet, the function returns 'true' immediately - the
2146 * caller can write the buffer right away. Otherwise the function returns true
2147 * if the block has been added to the extent, false if the block couldn't be
2148 * added.
4e7ea81d 2149 */
09930042
JK
2150static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk,
2151 struct buffer_head *bh)
4e7ea81d
JK
2152{
2153 struct ext4_map_blocks *map = &mpd->map;
2154
09930042
JK
2155 /* Buffer that doesn't need mapping for writeback? */
2156 if (!buffer_dirty(bh) || !buffer_mapped(bh) ||
2157 (!buffer_delay(bh) && !buffer_unwritten(bh))) {
2158 /* So far no extent to map => we write the buffer right away */
2159 if (map->m_len == 0)
2160 return true;
2161 return false;
2162 }
4e7ea81d
JK
2163
2164 /* First block in the extent? */
2165 if (map->m_len == 0) {
2166 map->m_lblk = lblk;
2167 map->m_len = 1;
09930042
JK
2168 map->m_flags = bh->b_state & BH_FLAGS;
2169 return true;
4e7ea81d
JK
2170 }
2171
09930042
JK
2172 /* Don't go larger than mballoc is willing to allocate */
2173 if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN)
2174 return false;
2175
4e7ea81d
JK
2176 /* Can we merge the block to our big extent? */
2177 if (lblk == map->m_lblk + map->m_len &&
09930042 2178 (bh->b_state & BH_FLAGS) == map->m_flags) {
4e7ea81d 2179 map->m_len++;
09930042 2180 return true;
4e7ea81d 2181 }
09930042 2182 return false;
4e7ea81d
JK
2183}
2184
5f1132b2
JK
2185/*
2186 * mpage_process_page_bufs - submit page buffers for IO or add them to extent
2187 *
2188 * @mpd - extent of blocks for mapping
2189 * @head - the first buffer in the page
2190 * @bh - buffer we should start processing from
2191 * @lblk - logical number of the block in the file corresponding to @bh
2192 *
2193 * Walk through page buffers from @bh upto @head (exclusive) and either submit
2194 * the page for IO if all buffers in this page were mapped and there's no
2195 * accumulated extent of buffers to map or add buffers in the page to the
2196 * extent of buffers to map. The function returns 1 if the caller can continue
2197 * by processing the next page, 0 if it should stop adding buffers to the
2198 * extent to map because we cannot extend it anymore. It can also return value
2199 * < 0 in case of error during IO submission.
2200 */
2201static int mpage_process_page_bufs(struct mpage_da_data *mpd,
2202 struct buffer_head *head,
2203 struct buffer_head *bh,
2204 ext4_lblk_t lblk)
4e7ea81d
JK
2205{
2206 struct inode *inode = mpd->inode;
5f1132b2 2207 int err;
4e7ea81d
JK
2208 ext4_lblk_t blocks = (i_size_read(inode) + (1 << inode->i_blkbits) - 1)
2209 >> inode->i_blkbits;
2210
2211 do {
2212 BUG_ON(buffer_locked(bh));
2213
09930042 2214 if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) {
4e7ea81d
JK
2215 /* Found extent to map? */
2216 if (mpd->map.m_len)
5f1132b2 2217 return 0;
09930042 2218 /* Everything mapped so far and we hit EOF */
5f1132b2 2219 break;
4e7ea81d 2220 }
4e7ea81d 2221 } while (lblk++, (bh = bh->b_this_page) != head);
5f1132b2
JK
2222 /* So far everything mapped? Submit the page for IO. */
2223 if (mpd->map.m_len == 0) {
2224 err = mpage_submit_page(mpd, head->b_page);
2225 if (err < 0)
2226 return err;
2227 }
2228 return lblk < blocks;
4e7ea81d
JK
2229}
2230
2231/*
2232 * mpage_map_buffers - update buffers corresponding to changed extent and
2233 * submit fully mapped pages for IO
2234 *
2235 * @mpd - description of extent to map, on return next extent to map
2236 *
2237 * Scan buffers corresponding to changed extent (we expect corresponding pages
2238 * to be already locked) and update buffer state according to new extent state.
2239 * We map delalloc buffers to their physical location, clear unwritten bits,
556615dc 2240 * and mark buffers as uninit when we perform writes to unwritten extents
4e7ea81d
JK
2241 * and do extent conversion after IO is finished. If the last page is not fully
2242 * mapped, we update @map to the next extent in the last page that needs
2243 * mapping. Otherwise we submit the page for IO.
2244 */
2245static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd)
2246{
2247 struct pagevec pvec;
2248 int nr_pages, i;
2249 struct inode *inode = mpd->inode;
2250 struct buffer_head *head, *bh;
09cbfeaf 2251 int bpp_bits = PAGE_SHIFT - inode->i_blkbits;
4e7ea81d
JK
2252 pgoff_t start, end;
2253 ext4_lblk_t lblk;
2254 sector_t pblock;
2255 int err;
2256
2257 start = mpd->map.m_lblk >> bpp_bits;
2258 end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits;
2259 lblk = start << bpp_bits;
2260 pblock = mpd->map.m_pblk;
2261
2262 pagevec_init(&pvec, 0);
2263 while (start <= end) {
2264 nr_pages = pagevec_lookup(&pvec, inode->i_mapping, start,
2265 PAGEVEC_SIZE);
2266 if (nr_pages == 0)
2267 break;
2268 for (i = 0; i < nr_pages; i++) {
2269 struct page *page = pvec.pages[i];
2270
2271 if (page->index > end)
2272 break;
70261f56 2273 /* Up to 'end' pages must be contiguous */
4e7ea81d
JK
2274 BUG_ON(page->index != start);
2275 bh = head = page_buffers(page);
2276 do {
2277 if (lblk < mpd->map.m_lblk)
2278 continue;
2279 if (lblk >= mpd->map.m_lblk + mpd->map.m_len) {
2280 /*
2281 * Buffer after end of mapped extent.
2282 * Find next buffer in the page to map.
2283 */
2284 mpd->map.m_len = 0;
2285 mpd->map.m_flags = 0;
5f1132b2
JK
2286 /*
2287 * FIXME: If dioread_nolock supports
2288 * blocksize < pagesize, we need to make
2289 * sure we add size mapped so far to
2290 * io_end->size as the following call
2291 * can submit the page for IO.
2292 */
2293 err = mpage_process_page_bufs(mpd, head,
2294 bh, lblk);
4e7ea81d 2295 pagevec_release(&pvec);
5f1132b2
JK
2296 if (err > 0)
2297 err = 0;
2298 return err;
4e7ea81d
JK
2299 }
2300 if (buffer_delay(bh)) {
2301 clear_buffer_delay(bh);
2302 bh->b_blocknr = pblock++;
2303 }
4e7ea81d 2304 clear_buffer_unwritten(bh);
5f1132b2 2305 } while (lblk++, (bh = bh->b_this_page) != head);
4e7ea81d
JK
2306
2307 /*
2308 * FIXME: This is going to break if dioread_nolock
2309 * supports blocksize < pagesize as we will try to
2310 * convert potentially unmapped parts of inode.
2311 */
09cbfeaf 2312 mpd->io_submit.io_end->size += PAGE_SIZE;
4e7ea81d
JK
2313 /* Page fully mapped - let IO run! */
2314 err = mpage_submit_page(mpd, page);
2315 if (err < 0) {
2316 pagevec_release(&pvec);
2317 return err;
2318 }
2319 start++;
2320 }
2321 pagevec_release(&pvec);
2322 }
2323 /* Extent fully mapped and matches with page boundary. We are done. */
2324 mpd->map.m_len = 0;
2325 mpd->map.m_flags = 0;
2326 return 0;
2327}
2328
2329static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd)
2330{
2331 struct inode *inode = mpd->inode;
2332 struct ext4_map_blocks *map = &mpd->map;
2333 int get_blocks_flags;
090f32ee 2334 int err, dioread_nolock;
4e7ea81d
JK
2335
2336 trace_ext4_da_write_pages_extent(inode, map);
2337 /*
2338 * Call ext4_map_blocks() to allocate any delayed allocation blocks, or
556615dc 2339 * to convert an unwritten extent to be initialized (in the case
4e7ea81d
JK
2340 * where we have written into one or more preallocated blocks). It is
2341 * possible that we're going to need more metadata blocks than
2342 * previously reserved. However we must not fail because we're in
2343 * writeback and there is nothing we can do about it so it might result
2344 * in data loss. So use reserved blocks to allocate metadata if
2345 * possible.
2346 *
754cfed6
TT
2347 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if
2348 * the blocks in question are delalloc blocks. This indicates
2349 * that the blocks and quotas has already been checked when
2350 * the data was copied into the page cache.
4e7ea81d
JK
2351 */
2352 get_blocks_flags = EXT4_GET_BLOCKS_CREATE |
ee0876bc
JK
2353 EXT4_GET_BLOCKS_METADATA_NOFAIL |
2354 EXT4_GET_BLOCKS_IO_SUBMIT;
090f32ee
LC
2355 dioread_nolock = ext4_should_dioread_nolock(inode);
2356 if (dioread_nolock)
4e7ea81d
JK
2357 get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
2358 if (map->m_flags & (1 << BH_Delay))
2359 get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
2360
2361 err = ext4_map_blocks(handle, inode, map, get_blocks_flags);
2362 if (err < 0)
2363 return err;
090f32ee 2364 if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) {
6b523df4
JK
2365 if (!mpd->io_submit.io_end->handle &&
2366 ext4_handle_valid(handle)) {
2367 mpd->io_submit.io_end->handle = handle->h_rsv_handle;
2368 handle->h_rsv_handle = NULL;
2369 }
3613d228 2370 ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end);
6b523df4 2371 }
4e7ea81d
JK
2372
2373 BUG_ON(map->m_len == 0);
2374 if (map->m_flags & EXT4_MAP_NEW) {
2375 struct block_device *bdev = inode->i_sb->s_bdev;
2376 int i;
2377
2378 for (i = 0; i < map->m_len; i++)
2379 unmap_underlying_metadata(bdev, map->m_pblk + i);
2380 }
2381 return 0;
2382}
2383
2384/*
2385 * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length
2386 * mpd->len and submit pages underlying it for IO
2387 *
2388 * @handle - handle for journal operations
2389 * @mpd - extent to map
7534e854
JK
2390 * @give_up_on_write - we set this to true iff there is a fatal error and there
2391 * is no hope of writing the data. The caller should discard
2392 * dirty pages to avoid infinite loops.
4e7ea81d
JK
2393 *
2394 * The function maps extent starting at mpd->lblk of length mpd->len. If it is
2395 * delayed, blocks are allocated, if it is unwritten, we may need to convert
2396 * them to initialized or split the described range from larger unwritten
2397 * extent. Note that we need not map all the described range since allocation
2398 * can return less blocks or the range is covered by more unwritten extents. We
2399 * cannot map more because we are limited by reserved transaction credits. On
2400 * the other hand we always make sure that the last touched page is fully
2401 * mapped so that it can be written out (and thus forward progress is
2402 * guaranteed). After mapping we submit all mapped pages for IO.
2403 */
2404static int mpage_map_and_submit_extent(handle_t *handle,
cb530541
TT
2405 struct mpage_da_data *mpd,
2406 bool *give_up_on_write)
4e7ea81d
JK
2407{
2408 struct inode *inode = mpd->inode;
2409 struct ext4_map_blocks *map = &mpd->map;
2410 int err;
2411 loff_t disksize;
6603120e 2412 int progress = 0;
4e7ea81d
JK
2413
2414 mpd->io_submit.io_end->offset =
2415 ((loff_t)map->m_lblk) << inode->i_blkbits;
27d7c4ed 2416 do {
4e7ea81d
JK
2417 err = mpage_map_one_extent(handle, mpd);
2418 if (err < 0) {
2419 struct super_block *sb = inode->i_sb;
2420
cb530541
TT
2421 if (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)
2422 goto invalidate_dirty_pages;
4e7ea81d 2423 /*
cb530541
TT
2424 * Let the uper layers retry transient errors.
2425 * In the case of ENOSPC, if ext4_count_free_blocks()
2426 * is non-zero, a commit should free up blocks.
4e7ea81d 2427 */
cb530541 2428 if ((err == -ENOMEM) ||
6603120e
DM
2429 (err == -ENOSPC && ext4_count_free_clusters(sb))) {
2430 if (progress)
2431 goto update_disksize;
cb530541 2432 return err;
6603120e 2433 }
cb530541
TT
2434 ext4_msg(sb, KERN_CRIT,
2435 "Delayed block allocation failed for "
2436 "inode %lu at logical offset %llu with"
2437 " max blocks %u with error %d",
2438 inode->i_ino,
2439 (unsigned long long)map->m_lblk,
2440 (unsigned)map->m_len, -err);
2441 ext4_msg(sb, KERN_CRIT,
2442 "This should not happen!! Data will "
2443 "be lost\n");
2444 if (err == -ENOSPC)
2445 ext4_print_free_blocks(inode);
2446 invalidate_dirty_pages:
2447 *give_up_on_write = true;
4e7ea81d
JK
2448 return err;
2449 }
6603120e 2450 progress = 1;
4e7ea81d
JK
2451 /*
2452 * Update buffer state, submit mapped pages, and get us new
2453 * extent to map
2454 */
2455 err = mpage_map_and_submit_buffers(mpd);
2456 if (err < 0)
6603120e 2457 goto update_disksize;
27d7c4ed 2458 } while (map->m_len);
4e7ea81d 2459
6603120e 2460update_disksize:
622cad13
TT
2461 /*
2462 * Update on-disk size after IO is submitted. Races with
2463 * truncate are avoided by checking i_size under i_data_sem.
2464 */
09cbfeaf 2465 disksize = ((loff_t)mpd->first_page) << PAGE_SHIFT;
4e7ea81d
JK
2466 if (disksize > EXT4_I(inode)->i_disksize) {
2467 int err2;
622cad13
TT
2468 loff_t i_size;
2469
2470 down_write(&EXT4_I(inode)->i_data_sem);
2471 i_size = i_size_read(inode);
2472 if (disksize > i_size)
2473 disksize = i_size;
2474 if (disksize > EXT4_I(inode)->i_disksize)
2475 EXT4_I(inode)->i_disksize = disksize;
4e7ea81d 2476 err2 = ext4_mark_inode_dirty(handle, inode);
622cad13 2477 up_write(&EXT4_I(inode)->i_data_sem);
4e7ea81d
JK
2478 if (err2)
2479 ext4_error(inode->i_sb,
2480 "Failed to mark inode %lu dirty",
2481 inode->i_ino);
2482 if (!err)
2483 err = err2;
2484 }
2485 return err;
2486}
2487
fffb2739
JK
2488/*
2489 * Calculate the total number of credits to reserve for one writepages
20970ba6 2490 * iteration. This is called from ext4_writepages(). We map an extent of
70261f56 2491 * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping
fffb2739
JK
2492 * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN +
2493 * bpp - 1 blocks in bpp different extents.
2494 */
525f4ed8
MC
2495static int ext4_da_writepages_trans_blocks(struct inode *inode)
2496{
fffb2739 2497 int bpp = ext4_journal_blocks_per_page(inode);
525f4ed8 2498
fffb2739
JK
2499 return ext4_meta_trans_blocks(inode,
2500 MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp);
525f4ed8 2501}
61628a3f 2502
8e48dcfb 2503/*
4e7ea81d
JK
2504 * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages
2505 * and underlying extent to map
2506 *
2507 * @mpd - where to look for pages
2508 *
2509 * Walk dirty pages in the mapping. If they are fully mapped, submit them for
2510 * IO immediately. When we find a page which isn't mapped we start accumulating
2511 * extent of buffers underlying these pages that needs mapping (formed by
2512 * either delayed or unwritten buffers). We also lock the pages containing
2513 * these buffers. The extent found is returned in @mpd structure (starting at
2514 * mpd->lblk with length mpd->len blocks).
2515 *
2516 * Note that this function can attach bios to one io_end structure which are
2517 * neither logically nor physically contiguous. Although it may seem as an
2518 * unnecessary complication, it is actually inevitable in blocksize < pagesize
2519 * case as we need to track IO to all buffers underlying a page in one io_end.
8e48dcfb 2520 */
4e7ea81d 2521static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd)
8e48dcfb 2522{
4e7ea81d
JK
2523 struct address_space *mapping = mpd->inode->i_mapping;
2524 struct pagevec pvec;
2525 unsigned int nr_pages;
aeac589a 2526 long left = mpd->wbc->nr_to_write;
4e7ea81d
JK
2527 pgoff_t index = mpd->first_page;
2528 pgoff_t end = mpd->last_page;
2529 int tag;
2530 int i, err = 0;
2531 int blkbits = mpd->inode->i_blkbits;
2532 ext4_lblk_t lblk;
2533 struct buffer_head *head;
8e48dcfb 2534
4e7ea81d 2535 if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages)
5b41d924
ES
2536 tag = PAGECACHE_TAG_TOWRITE;
2537 else
2538 tag = PAGECACHE_TAG_DIRTY;
2539
4e7ea81d
JK
2540 pagevec_init(&pvec, 0);
2541 mpd->map.m_len = 0;
2542 mpd->next_page = index;
4f01b02c 2543 while (index <= end) {
5b41d924 2544 nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
8e48dcfb
TT
2545 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
2546 if (nr_pages == 0)
4e7ea81d 2547 goto out;
8e48dcfb
TT
2548
2549 for (i = 0; i < nr_pages; i++) {
2550 struct page *page = pvec.pages[i];
2551
2552 /*
2553 * At this point, the page may be truncated or
2554 * invalidated (changing page->mapping to NULL), or
2555 * even swizzled back from swapper_space to tmpfs file
2556 * mapping. However, page->index will not change
2557 * because we have a reference on the page.
2558 */
4f01b02c
TT
2559 if (page->index > end)
2560 goto out;
8e48dcfb 2561
aeac589a
ML
2562 /*
2563 * Accumulated enough dirty pages? This doesn't apply
2564 * to WB_SYNC_ALL mode. For integrity sync we have to
2565 * keep going because someone may be concurrently
2566 * dirtying pages, and we might have synced a lot of
2567 * newly appeared dirty pages, but have not synced all
2568 * of the old dirty pages.
2569 */
2570 if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0)
2571 goto out;
2572
4e7ea81d
JK
2573 /* If we can't merge this page, we are done. */
2574 if (mpd->map.m_len > 0 && mpd->next_page != page->index)
2575 goto out;
78aaced3 2576
8e48dcfb 2577 lock_page(page);
8e48dcfb 2578 /*
4e7ea81d
JK
2579 * If the page is no longer dirty, or its mapping no
2580 * longer corresponds to inode we are writing (which
2581 * means it has been truncated or invalidated), or the
2582 * page is already under writeback and we are not doing
2583 * a data integrity writeback, skip the page
8e48dcfb 2584 */
4f01b02c
TT
2585 if (!PageDirty(page) ||
2586 (PageWriteback(page) &&
4e7ea81d 2587 (mpd->wbc->sync_mode == WB_SYNC_NONE)) ||
4f01b02c 2588 unlikely(page->mapping != mapping)) {
8e48dcfb
TT
2589 unlock_page(page);
2590 continue;
2591 }
2592
7cb1a535 2593 wait_on_page_writeback(page);
8e48dcfb 2594 BUG_ON(PageWriteback(page));
8e48dcfb 2595
4e7ea81d 2596 if (mpd->map.m_len == 0)
8eb9e5ce 2597 mpd->first_page = page->index;
8eb9e5ce 2598 mpd->next_page = page->index + 1;
f8bec370 2599 /* Add all dirty buffers to mpd */
4e7ea81d 2600 lblk = ((ext4_lblk_t)page->index) <<
09cbfeaf 2601 (PAGE_SHIFT - blkbits);
f8bec370 2602 head = page_buffers(page);
5f1132b2
JK
2603 err = mpage_process_page_bufs(mpd, head, head, lblk);
2604 if (err <= 0)
4e7ea81d 2605 goto out;
5f1132b2 2606 err = 0;
aeac589a 2607 left--;
8e48dcfb
TT
2608 }
2609 pagevec_release(&pvec);
2610 cond_resched();
2611 }
4f01b02c 2612 return 0;
8eb9e5ce
TT
2613out:
2614 pagevec_release(&pvec);
4e7ea81d 2615 return err;
8e48dcfb
TT
2616}
2617
20970ba6
TT
2618static int __writepage(struct page *page, struct writeback_control *wbc,
2619 void *data)
2620{
2621 struct address_space *mapping = data;
2622 int ret = ext4_writepage(page, wbc);
2623 mapping_set_error(mapping, ret);
2624 return ret;
2625}
2626
2627static int ext4_writepages(struct address_space *mapping,
2628 struct writeback_control *wbc)
64769240 2629{
4e7ea81d
JK
2630 pgoff_t writeback_index = 0;
2631 long nr_to_write = wbc->nr_to_write;
22208ded 2632 int range_whole = 0;
4e7ea81d 2633 int cycled = 1;
61628a3f 2634 handle_t *handle = NULL;
df22291f 2635 struct mpage_da_data mpd;
5e745b04 2636 struct inode *inode = mapping->host;
6b523df4 2637 int needed_blocks, rsv_blocks = 0, ret = 0;
5e745b04 2638 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
4e7ea81d 2639 bool done;
1bce63d1 2640 struct blk_plug plug;
cb530541 2641 bool give_up_on_write = false;
61628a3f 2642
c8585c6f 2643 percpu_down_read(&sbi->s_journal_flag_rwsem);
20970ba6 2644 trace_ext4_writepages(inode, wbc);
ba80b101 2645
c8585c6f
DJ
2646 if (dax_mapping(mapping)) {
2647 ret = dax_writeback_mapping_range(mapping, inode->i_sb->s_bdev,
2648 wbc);
2649 goto out_writepages;
2650 }
7f6d5b52 2651
61628a3f
MC
2652 /*
2653 * No pages to write? This is mainly a kludge to avoid starting
2654 * a transaction for special inodes like journal inode on last iput()
2655 * because that could violate lock ordering on umount
2656 */
a1d6cc56 2657 if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
bbf023c7 2658 goto out_writepages;
2a21e37e 2659
20970ba6
TT
2660 if (ext4_should_journal_data(inode)) {
2661 struct blk_plug plug;
20970ba6
TT
2662
2663 blk_start_plug(&plug);
2664 ret = write_cache_pages(mapping, wbc, __writepage, mapping);
2665 blk_finish_plug(&plug);
bbf023c7 2666 goto out_writepages;
20970ba6
TT
2667 }
2668
2a21e37e
TT
2669 /*
2670 * If the filesystem has aborted, it is read-only, so return
2671 * right away instead of dumping stack traces later on that
2672 * will obscure the real source of the problem. We test
4ab2f15b 2673 * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because
2a21e37e 2674 * the latter could be true if the filesystem is mounted
20970ba6 2675 * read-only, and in that case, ext4_writepages should
2a21e37e
TT
2676 * *never* be called, so if that ever happens, we would want
2677 * the stack trace.
2678 */
bbf023c7
ML
2679 if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) {
2680 ret = -EROFS;
2681 goto out_writepages;
2682 }
2a21e37e 2683
6b523df4
JK
2684 if (ext4_should_dioread_nolock(inode)) {
2685 /*
70261f56 2686 * We may need to convert up to one extent per block in
6b523df4
JK
2687 * the page and we may dirty the inode.
2688 */
09cbfeaf 2689 rsv_blocks = 1 + (PAGE_SIZE >> inode->i_blkbits);
6b523df4
JK
2690 }
2691
4e7ea81d
JK
2692 /*
2693 * If we have inline data and arrive here, it means that
2694 * we will soon create the block for the 1st page, so
2695 * we'd better clear the inline data here.
2696 */
2697 if (ext4_has_inline_data(inode)) {
2698 /* Just inode will be modified... */
2699 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
2700 if (IS_ERR(handle)) {
2701 ret = PTR_ERR(handle);
2702 goto out_writepages;
2703 }
2704 BUG_ON(ext4_test_inode_state(inode,
2705 EXT4_STATE_MAY_INLINE_DATA));
2706 ext4_destroy_inline_data(handle, inode);
2707 ext4_journal_stop(handle);
2708 }
2709
22208ded
AK
2710 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2711 range_whole = 1;
61628a3f 2712
2acf2c26 2713 if (wbc->range_cyclic) {
4e7ea81d
JK
2714 writeback_index = mapping->writeback_index;
2715 if (writeback_index)
2acf2c26 2716 cycled = 0;
4e7ea81d
JK
2717 mpd.first_page = writeback_index;
2718 mpd.last_page = -1;
5b41d924 2719 } else {
09cbfeaf
KS
2720 mpd.first_page = wbc->range_start >> PAGE_SHIFT;
2721 mpd.last_page = wbc->range_end >> PAGE_SHIFT;
5b41d924 2722 }
a1d6cc56 2723
4e7ea81d
JK
2724 mpd.inode = inode;
2725 mpd.wbc = wbc;
2726 ext4_io_submit_init(&mpd.io_submit, wbc);
2acf2c26 2727retry:
6e6938b6 2728 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
4e7ea81d
JK
2729 tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page);
2730 done = false;
1bce63d1 2731 blk_start_plug(&plug);
4e7ea81d
JK
2732 while (!done && mpd.first_page <= mpd.last_page) {
2733 /* For each extent of pages we use new io_end */
2734 mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
2735 if (!mpd.io_submit.io_end) {
2736 ret = -ENOMEM;
2737 break;
2738 }
a1d6cc56
AK
2739
2740 /*
4e7ea81d
JK
2741 * We have two constraints: We find one extent to map and we
2742 * must always write out whole page (makes a difference when
2743 * blocksize < pagesize) so that we don't block on IO when we
2744 * try to write out the rest of the page. Journalled mode is
2745 * not supported by delalloc.
a1d6cc56
AK
2746 */
2747 BUG_ON(ext4_should_journal_data(inode));
525f4ed8 2748 needed_blocks = ext4_da_writepages_trans_blocks(inode);
a1d6cc56 2749
4e7ea81d 2750 /* start a new transaction */
6b523df4
JK
2751 handle = ext4_journal_start_with_reserve(inode,
2752 EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks);
61628a3f
MC
2753 if (IS_ERR(handle)) {
2754 ret = PTR_ERR(handle);
1693918e 2755 ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
fbe845dd 2756 "%ld pages, ino %lu; err %d", __func__,
a1d6cc56 2757 wbc->nr_to_write, inode->i_ino, ret);
4e7ea81d
JK
2758 /* Release allocated io_end */
2759 ext4_put_io_end(mpd.io_submit.io_end);
2760 break;
61628a3f 2761 }
f63e6005 2762
4e7ea81d
JK
2763 trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc);
2764 ret = mpage_prepare_extent_to_map(&mpd);
2765 if (!ret) {
2766 if (mpd.map.m_len)
cb530541
TT
2767 ret = mpage_map_and_submit_extent(handle, &mpd,
2768 &give_up_on_write);
4e7ea81d
JK
2769 else {
2770 /*
2771 * We scanned the whole range (or exhausted
2772 * nr_to_write), submitted what was mapped and
2773 * didn't find anything needing mapping. We are
2774 * done.
2775 */
2776 done = true;
2777 }
f63e6005 2778 }
646caa9c
JK
2779 /*
2780 * Caution: If the handle is synchronous,
2781 * ext4_journal_stop() can wait for transaction commit
2782 * to finish which may depend on writeback of pages to
2783 * complete or on page lock to be released. In that
2784 * case, we have to wait until after after we have
2785 * submitted all the IO, released page locks we hold,
2786 * and dropped io_end reference (for extent conversion
2787 * to be able to complete) before stopping the handle.
2788 */
2789 if (!ext4_handle_valid(handle) || handle->h_sync == 0) {
2790 ext4_journal_stop(handle);
2791 handle = NULL;
2792 }
4e7ea81d
JK
2793 /* Submit prepared bio */
2794 ext4_io_submit(&mpd.io_submit);
2795 /* Unlock pages we didn't use */
cb530541 2796 mpage_release_unused_pages(&mpd, give_up_on_write);
646caa9c
JK
2797 /*
2798 * Drop our io_end reference we got from init. We have
2799 * to be careful and use deferred io_end finishing if
2800 * we are still holding the transaction as we can
2801 * release the last reference to io_end which may end
2802 * up doing unwritten extent conversion.
2803 */
2804 if (handle) {
2805 ext4_put_io_end_defer(mpd.io_submit.io_end);
2806 ext4_journal_stop(handle);
2807 } else
2808 ext4_put_io_end(mpd.io_submit.io_end);
4e7ea81d
JK
2809
2810 if (ret == -ENOSPC && sbi->s_journal) {
2811 /*
2812 * Commit the transaction which would
22208ded
AK
2813 * free blocks released in the transaction
2814 * and try again
2815 */
df22291f 2816 jbd2_journal_force_commit_nested(sbi->s_journal);
22208ded 2817 ret = 0;
4e7ea81d
JK
2818 continue;
2819 }
2820 /* Fatal error - ENOMEM, EIO... */
2821 if (ret)
61628a3f 2822 break;
a1d6cc56 2823 }
1bce63d1 2824 blk_finish_plug(&plug);
9c12a831 2825 if (!ret && !cycled && wbc->nr_to_write > 0) {
2acf2c26 2826 cycled = 1;
4e7ea81d
JK
2827 mpd.last_page = writeback_index - 1;
2828 mpd.first_page = 0;
2acf2c26
AK
2829 goto retry;
2830 }
22208ded
AK
2831
2832 /* Update index */
22208ded
AK
2833 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
2834 /*
4e7ea81d 2835 * Set the writeback_index so that range_cyclic
22208ded
AK
2836 * mode will write it back later
2837 */
4e7ea81d 2838 mapping->writeback_index = mpd.first_page;
a1d6cc56 2839
61628a3f 2840out_writepages:
20970ba6
TT
2841 trace_ext4_writepages_result(inode, wbc, ret,
2842 nr_to_write - wbc->nr_to_write);
c8585c6f 2843 percpu_up_read(&sbi->s_journal_flag_rwsem);
61628a3f 2844 return ret;
64769240
AT
2845}
2846
79f0be8d
AK
2847static int ext4_nonda_switch(struct super_block *sb)
2848{
5c1ff336 2849 s64 free_clusters, dirty_clusters;
79f0be8d
AK
2850 struct ext4_sb_info *sbi = EXT4_SB(sb);
2851
2852 /*
2853 * switch to non delalloc mode if we are running low
2854 * on free block. The free block accounting via percpu
179f7ebf 2855 * counters can get slightly wrong with percpu_counter_batch getting
79f0be8d
AK
2856 * accumulated on each CPU without updating global counters
2857 * Delalloc need an accurate free block accounting. So switch
2858 * to non delalloc when we are near to error range.
2859 */
5c1ff336
EW
2860 free_clusters =
2861 percpu_counter_read_positive(&sbi->s_freeclusters_counter);
2862 dirty_clusters =
2863 percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
00d4e736
TT
2864 /*
2865 * Start pushing delalloc when 1/2 of free blocks are dirty.
2866 */
5c1ff336 2867 if (dirty_clusters && (free_clusters < 2 * dirty_clusters))
10ee27a0 2868 try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
00d4e736 2869
5c1ff336
EW
2870 if (2 * free_clusters < 3 * dirty_clusters ||
2871 free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) {
79f0be8d 2872 /*
c8afb446
ES
2873 * free block count is less than 150% of dirty blocks
2874 * or free blocks is less than watermark
79f0be8d
AK
2875 */
2876 return 1;
2877 }
2878 return 0;
2879}
2880
0ff8947f
ES
2881/* We always reserve for an inode update; the superblock could be there too */
2882static int ext4_da_write_credits(struct inode *inode, loff_t pos, unsigned len)
2883{
e2b911c5 2884 if (likely(ext4_has_feature_large_file(inode->i_sb)))
0ff8947f
ES
2885 return 1;
2886
2887 if (pos + len <= 0x7fffffffULL)
2888 return 1;
2889
2890 /* We might need to update the superblock to set LARGE_FILE */
2891 return 2;
2892}
2893
64769240 2894static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
de9a55b8
TT
2895 loff_t pos, unsigned len, unsigned flags,
2896 struct page **pagep, void **fsdata)
64769240 2897{
72b8ab9d 2898 int ret, retries = 0;
64769240
AT
2899 struct page *page;
2900 pgoff_t index;
64769240
AT
2901 struct inode *inode = mapping->host;
2902 handle_t *handle;
2903
09cbfeaf 2904 index = pos >> PAGE_SHIFT;
79f0be8d
AK
2905
2906 if (ext4_nonda_switch(inode->i_sb)) {
2907 *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
2908 return ext4_write_begin(file, mapping, pos,
2909 len, flags, pagep, fsdata);
2910 }
2911 *fsdata = (void *)0;
9bffad1e 2912 trace_ext4_da_write_begin(inode, pos, len, flags);
9c3569b5
TM
2913
2914 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2915 ret = ext4_da_write_inline_data_begin(mapping, inode,
2916 pos, len, flags,
2917 pagep, fsdata);
2918 if (ret < 0)
47564bfb
TT
2919 return ret;
2920 if (ret == 1)
2921 return 0;
9c3569b5
TM
2922 }
2923
47564bfb
TT
2924 /*
2925 * grab_cache_page_write_begin() can take a long time if the
2926 * system is thrashing due to memory pressure, or if the page
2927 * is being written back. So grab it first before we start
2928 * the transaction handle. This also allows us to allocate
2929 * the page (if needed) without using GFP_NOFS.
2930 */
2931retry_grab:
2932 page = grab_cache_page_write_begin(mapping, index, flags);
2933 if (!page)
2934 return -ENOMEM;
2935 unlock_page(page);
2936
64769240
AT
2937 /*
2938 * With delayed allocation, we don't log the i_disksize update
2939 * if there is delayed block allocation. But we still need
2940 * to journalling the i_disksize update if writes to the end
2941 * of file which has an already mapped buffer.
2942 */
47564bfb 2943retry_journal:
0ff8947f
ES
2944 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
2945 ext4_da_write_credits(inode, pos, len));
64769240 2946 if (IS_ERR(handle)) {
09cbfeaf 2947 put_page(page);
47564bfb 2948 return PTR_ERR(handle);
64769240
AT
2949 }
2950
47564bfb
TT
2951 lock_page(page);
2952 if (page->mapping != mapping) {
2953 /* The page got truncated from under us */
2954 unlock_page(page);
09cbfeaf 2955 put_page(page);
d5a0d4f7 2956 ext4_journal_stop(handle);
47564bfb 2957 goto retry_grab;
d5a0d4f7 2958 }
47564bfb 2959 /* In case writeback began while the page was unlocked */
7afe5aa5 2960 wait_for_stable_page(page);
64769240 2961
2058f83a
MH
2962#ifdef CONFIG_EXT4_FS_ENCRYPTION
2963 ret = ext4_block_write_begin(page, pos, len,
2964 ext4_da_get_block_prep);
2965#else
6e1db88d 2966 ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
2058f83a 2967#endif
64769240
AT
2968 if (ret < 0) {
2969 unlock_page(page);
2970 ext4_journal_stop(handle);
ae4d5372
AK
2971 /*
2972 * block_write_begin may have instantiated a few blocks
2973 * outside i_size. Trim these off again. Don't need
2974 * i_size_read because we hold i_mutex.
2975 */
2976 if (pos + len > inode->i_size)
b9a4207d 2977 ext4_truncate_failed_write(inode);
47564bfb
TT
2978
2979 if (ret == -ENOSPC &&
2980 ext4_should_retry_alloc(inode->i_sb, &retries))
2981 goto retry_journal;
2982
09cbfeaf 2983 put_page(page);
47564bfb 2984 return ret;
64769240
AT
2985 }
2986
47564bfb 2987 *pagep = page;
64769240
AT
2988 return ret;
2989}
2990
632eaeab
MC
2991/*
2992 * Check if we should update i_disksize
2993 * when write to the end of file but not require block allocation
2994 */
2995static int ext4_da_should_update_i_disksize(struct page *page,
de9a55b8 2996 unsigned long offset)
632eaeab
MC
2997{
2998 struct buffer_head *bh;
2999 struct inode *inode = page->mapping->host;
3000 unsigned int idx;
3001 int i;
3002
3003 bh = page_buffers(page);
3004 idx = offset >> inode->i_blkbits;
3005
af5bc92d 3006 for (i = 0; i < idx; i++)
632eaeab
MC
3007 bh = bh->b_this_page;
3008
29fa89d0 3009 if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
632eaeab
MC
3010 return 0;
3011 return 1;
3012}
3013
64769240 3014static int ext4_da_write_end(struct file *file,
de9a55b8
TT
3015 struct address_space *mapping,
3016 loff_t pos, unsigned len, unsigned copied,
3017 struct page *page, void *fsdata)
64769240
AT
3018{
3019 struct inode *inode = mapping->host;
3020 int ret = 0, ret2;
3021 handle_t *handle = ext4_journal_current_handle();
3022 loff_t new_i_size;
632eaeab 3023 unsigned long start, end;
79f0be8d
AK
3024 int write_mode = (int)(unsigned long)fsdata;
3025
74d553aa
TT
3026 if (write_mode == FALL_BACK_TO_NONDELALLOC)
3027 return ext4_write_end(file, mapping, pos,
3028 len, copied, page, fsdata);
632eaeab 3029
9bffad1e 3030 trace_ext4_da_write_end(inode, pos, len, copied);
09cbfeaf 3031 start = pos & (PAGE_SIZE - 1);
af5bc92d 3032 end = start + copied - 1;
64769240
AT
3033
3034 /*
3035 * generic_write_end() will run mark_inode_dirty() if i_size
3036 * changes. So let's piggyback the i_disksize mark_inode_dirty
3037 * into that.
3038 */
64769240 3039 new_i_size = pos + copied;
ea51d132 3040 if (copied && new_i_size > EXT4_I(inode)->i_disksize) {
9c3569b5
TM
3041 if (ext4_has_inline_data(inode) ||
3042 ext4_da_should_update_i_disksize(page, end)) {
ee124d27 3043 ext4_update_i_disksize(inode, new_i_size);
cf17fea6
AK
3044 /* We need to mark inode dirty even if
3045 * new_i_size is less that inode->i_size
3046 * bu greater than i_disksize.(hint delalloc)
3047 */
3048 ext4_mark_inode_dirty(handle, inode);
64769240 3049 }
632eaeab 3050 }
9c3569b5
TM
3051
3052 if (write_mode != CONVERT_INLINE_DATA &&
3053 ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
3054 ext4_has_inline_data(inode))
3055 ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied,
3056 page);
3057 else
3058 ret2 = generic_write_end(file, mapping, pos, len, copied,
64769240 3059 page, fsdata);
9c3569b5 3060
64769240
AT
3061 copied = ret2;
3062 if (ret2 < 0)
3063 ret = ret2;
3064 ret2 = ext4_journal_stop(handle);
3065 if (!ret)
3066 ret = ret2;
3067
3068 return ret ? ret : copied;
3069}
3070
d47992f8
LC
3071static void ext4_da_invalidatepage(struct page *page, unsigned int offset,
3072 unsigned int length)
64769240 3073{
64769240
AT
3074 /*
3075 * Drop reserved blocks
3076 */
3077 BUG_ON(!PageLocked(page));
3078 if (!page_has_buffers(page))
3079 goto out;
3080
ca99fdd2 3081 ext4_da_page_release_reservation(page, offset, length);
64769240
AT
3082
3083out:
d47992f8 3084 ext4_invalidatepage(page, offset, length);
64769240
AT
3085
3086 return;
3087}
3088
ccd2506b
TT
3089/*
3090 * Force all delayed allocation blocks to be allocated for a given inode.
3091 */
3092int ext4_alloc_da_blocks(struct inode *inode)
3093{
fb40ba0d
TT
3094 trace_ext4_alloc_da_blocks(inode);
3095
71d4f7d0 3096 if (!EXT4_I(inode)->i_reserved_data_blocks)
ccd2506b
TT
3097 return 0;
3098
3099 /*
3100 * We do something simple for now. The filemap_flush() will
3101 * also start triggering a write of the data blocks, which is
3102 * not strictly speaking necessary (and for users of
3103 * laptop_mode, not even desirable). However, to do otherwise
3104 * would require replicating code paths in:
de9a55b8 3105 *
20970ba6 3106 * ext4_writepages() ->
ccd2506b
TT
3107 * write_cache_pages() ---> (via passed in callback function)
3108 * __mpage_da_writepage() -->
3109 * mpage_add_bh_to_extent()
3110 * mpage_da_map_blocks()
3111 *
3112 * The problem is that write_cache_pages(), located in
3113 * mm/page-writeback.c, marks pages clean in preparation for
3114 * doing I/O, which is not desirable if we're not planning on
3115 * doing I/O at all.
3116 *
3117 * We could call write_cache_pages(), and then redirty all of
380cf090 3118 * the pages by calling redirty_page_for_writepage() but that
ccd2506b
TT
3119 * would be ugly in the extreme. So instead we would need to
3120 * replicate parts of the code in the above functions,
25985edc 3121 * simplifying them because we wouldn't actually intend to
ccd2506b
TT
3122 * write out the pages, but rather only collect contiguous
3123 * logical block extents, call the multi-block allocator, and
3124 * then update the buffer heads with the block allocations.
de9a55b8 3125 *
ccd2506b
TT
3126 * For now, though, we'll cheat by calling filemap_flush(),
3127 * which will map the blocks, and start the I/O, but not
3128 * actually wait for the I/O to complete.
3129 */
3130 return filemap_flush(inode->i_mapping);
3131}
64769240 3132
ac27a0ec
DK
3133/*
3134 * bmap() is special. It gets used by applications such as lilo and by
3135 * the swapper to find the on-disk block of a specific piece of data.
3136 *
3137 * Naturally, this is dangerous if the block concerned is still in the
617ba13b 3138 * journal. If somebody makes a swapfile on an ext4 data-journaling
ac27a0ec
DK
3139 * filesystem and enables swap, then they may get a nasty shock when the
3140 * data getting swapped to that swapfile suddenly gets overwritten by
3141 * the original zero's written out previously to the journal and
3142 * awaiting writeback in the kernel's buffer cache.
3143 *
3144 * So, if we see any bmap calls here on a modified, data-journaled file,
3145 * take extra steps to flush any blocks which might be in the cache.
3146 */
617ba13b 3147static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
ac27a0ec
DK
3148{
3149 struct inode *inode = mapping->host;
3150 journal_t *journal;
3151 int err;
3152
46c7f254
TM
3153 /*
3154 * We can get here for an inline file via the FIBMAP ioctl
3155 */
3156 if (ext4_has_inline_data(inode))
3157 return 0;
3158
64769240
AT
3159 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
3160 test_opt(inode->i_sb, DELALLOC)) {
3161 /*
3162 * With delalloc we want to sync the file
3163 * so that we can make sure we allocate
3164 * blocks for file
3165 */
3166 filemap_write_and_wait(mapping);
3167 }
3168
19f5fb7a
TT
3169 if (EXT4_JOURNAL(inode) &&
3170 ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
ac27a0ec
DK
3171 /*
3172 * This is a REALLY heavyweight approach, but the use of
3173 * bmap on dirty files is expected to be extremely rare:
3174 * only if we run lilo or swapon on a freshly made file
3175 * do we expect this to happen.
3176 *
3177 * (bmap requires CAP_SYS_RAWIO so this does not
3178 * represent an unprivileged user DOS attack --- we'd be
3179 * in trouble if mortal users could trigger this path at
3180 * will.)
3181 *
617ba13b 3182 * NB. EXT4_STATE_JDATA is not set on files other than
ac27a0ec
DK
3183 * regular files. If somebody wants to bmap a directory
3184 * or symlink and gets confused because the buffer
3185 * hasn't yet been flushed to disk, they deserve
3186 * everything they get.
3187 */
3188
19f5fb7a 3189 ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
617ba13b 3190 journal = EXT4_JOURNAL(inode);
dab291af
MC
3191 jbd2_journal_lock_updates(journal);
3192 err = jbd2_journal_flush(journal);
3193 jbd2_journal_unlock_updates(journal);
ac27a0ec
DK
3194
3195 if (err)
3196 return 0;
3197 }
3198
af5bc92d 3199 return generic_block_bmap(mapping, block, ext4_get_block);
ac27a0ec
DK
3200}
3201
617ba13b 3202static int ext4_readpage(struct file *file, struct page *page)
ac27a0ec 3203{
46c7f254
TM
3204 int ret = -EAGAIN;
3205 struct inode *inode = page->mapping->host;
3206
0562e0ba 3207 trace_ext4_readpage(page);
46c7f254
TM
3208
3209 if (ext4_has_inline_data(inode))
3210 ret = ext4_readpage_inline(inode, page);
3211
3212 if (ret == -EAGAIN)
f64e02fe 3213 return ext4_mpage_readpages(page->mapping, NULL, page, 1);
46c7f254
TM
3214
3215 return ret;
ac27a0ec
DK
3216}
3217
3218static int
617ba13b 3219ext4_readpages(struct file *file, struct address_space *mapping,
ac27a0ec
DK
3220 struct list_head *pages, unsigned nr_pages)
3221{
46c7f254
TM
3222 struct inode *inode = mapping->host;
3223
3224 /* If the file has inline data, no need to do readpages. */
3225 if (ext4_has_inline_data(inode))
3226 return 0;
3227
f64e02fe 3228 return ext4_mpage_readpages(mapping, pages, NULL, nr_pages);
ac27a0ec
DK
3229}
3230
d47992f8
LC
3231static void ext4_invalidatepage(struct page *page, unsigned int offset,
3232 unsigned int length)
ac27a0ec 3233{
ca99fdd2 3234 trace_ext4_invalidatepage(page, offset, length);
0562e0ba 3235
4520fb3c
JK
3236 /* No journalling happens on data buffers when this function is used */
3237 WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
3238
ca99fdd2 3239 block_invalidatepage(page, offset, length);
4520fb3c
JK
3240}
3241
53e87268 3242static int __ext4_journalled_invalidatepage(struct page *page,
ca99fdd2
LC
3243 unsigned int offset,
3244 unsigned int length)
4520fb3c
JK
3245{
3246 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
3247
ca99fdd2 3248 trace_ext4_journalled_invalidatepage(page, offset, length);
4520fb3c 3249
ac27a0ec
DK
3250 /*
3251 * If it's a full truncate we just forget about the pending dirtying
3252 */
09cbfeaf 3253 if (offset == 0 && length == PAGE_SIZE)
ac27a0ec
DK
3254 ClearPageChecked(page);
3255
ca99fdd2 3256 return jbd2_journal_invalidatepage(journal, page, offset, length);
53e87268
JK
3257}
3258
3259/* Wrapper for aops... */
3260static void ext4_journalled_invalidatepage(struct page *page,
d47992f8
LC
3261 unsigned int offset,
3262 unsigned int length)
53e87268 3263{
ca99fdd2 3264 WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0);
ac27a0ec
DK
3265}
3266
617ba13b 3267static int ext4_releasepage(struct page *page, gfp_t wait)
ac27a0ec 3268{
617ba13b 3269 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
ac27a0ec 3270
0562e0ba
JZ
3271 trace_ext4_releasepage(page);
3272
e1c36595
JK
3273 /* Page has dirty journalled data -> cannot release */
3274 if (PageChecked(page))
ac27a0ec 3275 return 0;
0390131b
FM
3276 if (journal)
3277 return jbd2_journal_try_to_free_buffers(journal, page, wait);
3278 else
3279 return try_to_free_buffers(page);
ac27a0ec
DK
3280}
3281
ba5843f5 3282#ifdef CONFIG_FS_DAX
12735f88
JK
3283/*
3284 * Get block function for DAX IO and mmap faults. It takes care of converting
3285 * unwritten extents to written ones and initializes new / converted blocks
3286 * to zeros.
3287 */
3288int ext4_dax_get_block(struct inode *inode, sector_t iblock,
3289 struct buffer_head *bh_result, int create)
ed923b57 3290{
7cb476f8 3291 int ret;
ba5843f5 3292
12735f88 3293 ext4_debug("inode %lu, create flag %d\n", inode->i_ino, create);
7cb476f8
JK
3294 if (!create)
3295 return _ext4_get_block(inode, iblock, bh_result, 0);
ba5843f5 3296
7cb476f8
JK
3297 ret = ext4_get_block_trans(inode, iblock, bh_result,
3298 EXT4_GET_BLOCKS_PRE_IO |
3299 EXT4_GET_BLOCKS_CREATE_ZERO);
3300 if (ret < 0)
3301 return ret;
ba5843f5 3302
7cb476f8 3303 if (buffer_unwritten(bh_result)) {
ba5843f5 3304 /*
12735f88
JK
3305 * We are protected by i_mmap_sem or i_mutex so we know block
3306 * cannot go away from under us even though we dropped
3307 * i_data_sem. Convert extent to written and write zeros there.
ba5843f5 3308 */
7cb476f8
JK
3309 ret = ext4_get_block_trans(inode, iblock, bh_result,
3310 EXT4_GET_BLOCKS_CONVERT |
3311 EXT4_GET_BLOCKS_CREATE_ZERO);
3312 if (ret < 0)
3313 return ret;
ba5843f5 3314 }
7cb476f8
JK
3315 /*
3316 * At least for now we have to clear BH_New so that DAX code
3317 * doesn't attempt to zero blocks again in a racy way.
3318 */
3319 clear_buffer_new(bh_result);
3320 return 0;
ed923b57 3321}
364443cb
JK
3322
3323static int ext4_iomap_begin(struct inode *inode, loff_t offset, loff_t length,
3324 unsigned flags, struct iomap *iomap)
3325{
3326 unsigned int blkbits = inode->i_blkbits;
3327 unsigned long first_block = offset >> blkbits;
3328 unsigned long last_block = (offset + length - 1) >> blkbits;
3329 struct ext4_map_blocks map;
3330 int ret;
3331
364443cb
JK
3332 if (WARN_ON_ONCE(ext4_has_inline_data(inode)))
3333 return -ERANGE;
3334
3335 map.m_lblk = first_block;
3336 map.m_len = last_block - first_block + 1;
3337
776722e8
JK
3338 if (!(flags & IOMAP_WRITE)) {
3339 ret = ext4_map_blocks(NULL, inode, &map, 0);
3340 } else {
3341 int dio_credits;
3342 handle_t *handle;
3343 int retries = 0;
3344
3345 /* Trim mapping request to maximum we can map at once for DIO */
3346 if (map.m_len > DIO_MAX_BLOCKS)
3347 map.m_len = DIO_MAX_BLOCKS;
3348 dio_credits = ext4_chunk_trans_blocks(inode, map.m_len);
3349retry:
3350 /*
3351 * Either we allocate blocks and then we don't get unwritten
3352 * extent so we have reserved enough credits, or the blocks
3353 * are already allocated and unwritten and in that case
3354 * extent conversion fits in the credits as well.
3355 */
3356 handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS,
3357 dio_credits);
3358 if (IS_ERR(handle))
3359 return PTR_ERR(handle);
3360
3361 ret = ext4_map_blocks(handle, inode, &map,
776722e8
JK
3362 EXT4_GET_BLOCKS_CREATE_ZERO);
3363 if (ret < 0) {
3364 ext4_journal_stop(handle);
3365 if (ret == -ENOSPC &&
3366 ext4_should_retry_alloc(inode->i_sb, &retries))
3367 goto retry;
3368 return ret;
3369 }
776722e8
JK
3370
3371 /*
3372 * If we added blocks beyond i_size we need to make sure they
3373 * will get truncated if we crash before updating i_size in
3374 * ext4_iomap_end().
3375 */
3376 if (first_block + map.m_len >
3377 (inode->i_size + (1 << blkbits) - 1) >> blkbits) {
3378 int err;
3379
3380 err = ext4_orphan_add(handle, inode);
3381 if (err < 0) {
3382 ext4_journal_stop(handle);
3383 return err;
3384 }
3385 }
3386 ext4_journal_stop(handle);
3387 }
364443cb
JK
3388
3389 iomap->flags = 0;
3390 iomap->bdev = inode->i_sb->s_bdev;
3391 iomap->offset = first_block << blkbits;
3392
3393 if (ret == 0) {
3394 iomap->type = IOMAP_HOLE;
3395 iomap->blkno = IOMAP_NULL_BLOCK;
3396 iomap->length = (u64)map.m_len << blkbits;
3397 } else {
3398 if (map.m_flags & EXT4_MAP_MAPPED) {
3399 iomap->type = IOMAP_MAPPED;
3400 } else if (map.m_flags & EXT4_MAP_UNWRITTEN) {
3401 iomap->type = IOMAP_UNWRITTEN;
3402 } else {
3403 WARN_ON_ONCE(1);
3404 return -EIO;
3405 }
3406 iomap->blkno = (sector_t)map.m_pblk << (blkbits - 9);
3407 iomap->length = (u64)map.m_len << blkbits;
3408 }
3409
3410 if (map.m_flags & EXT4_MAP_NEW)
3411 iomap->flags |= IOMAP_F_NEW;
3412 return 0;
3413}
3414
776722e8
JK
3415static int ext4_iomap_end(struct inode *inode, loff_t offset, loff_t length,
3416 ssize_t written, unsigned flags, struct iomap *iomap)
3417{
3418 int ret = 0;
3419 handle_t *handle;
3420 int blkbits = inode->i_blkbits;
3421 bool truncate = false;
3422
3423 if (!(flags & IOMAP_WRITE))
3424 return 0;
3425
3426 handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
3427 if (IS_ERR(handle)) {
3428 ret = PTR_ERR(handle);
3429 goto orphan_del;
3430 }
3431 if (ext4_update_inode_size(inode, offset + written))
3432 ext4_mark_inode_dirty(handle, inode);
3433 /*
3434 * We may need to truncate allocated but not written blocks beyond EOF.
3435 */
3436 if (iomap->offset + iomap->length >
3437 ALIGN(inode->i_size, 1 << blkbits)) {
3438 ext4_lblk_t written_blk, end_blk;
3439
3440 written_blk = (offset + written) >> blkbits;
3441 end_blk = (offset + length) >> blkbits;
3442 if (written_blk < end_blk && ext4_can_truncate(inode))
3443 truncate = true;
3444 }
3445 /*
3446 * Remove inode from orphan list if we were extending a inode and
3447 * everything went fine.
3448 */
3449 if (!truncate && inode->i_nlink &&
3450 !list_empty(&EXT4_I(inode)->i_orphan))
3451 ext4_orphan_del(handle, inode);
3452 ext4_journal_stop(handle);
3453 if (truncate) {
3454 ext4_truncate_failed_write(inode);
3455orphan_del:
3456 /*
3457 * If truncate failed early the inode might still be on the
3458 * orphan list; we need to make sure the inode is removed from
3459 * the orphan list in that case.
3460 */
3461 if (inode->i_nlink)
3462 ext4_orphan_del(NULL, inode);
3463 }
3464 return ret;
3465}
3466
364443cb
JK
3467struct iomap_ops ext4_iomap_ops = {
3468 .iomap_begin = ext4_iomap_begin,
776722e8 3469 .iomap_end = ext4_iomap_end,
364443cb
JK
3470};
3471
12735f88
JK
3472#else
3473/* Just define empty function, it will never get called. */
3474int ext4_dax_get_block(struct inode *inode, sector_t iblock,
3475 struct buffer_head *bh_result, int create)
3476{
3477 BUG();
3478 return 0;
ed923b57 3479}
ba5843f5 3480#endif
ed923b57 3481
187372a3 3482static int ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
7b7a8665 3483 ssize_t size, void *private)
4c0425ff 3484{
109811c2 3485 ext4_io_end_t *io_end = private;
4c0425ff 3486
97a851ed 3487 /* if not async direct IO just return */
7b7a8665 3488 if (!io_end)
187372a3 3489 return 0;
4b70df18 3490
88635ca2 3491 ext_debug("ext4_end_io_dio(): io_end 0x%p "
ace36ad4 3492 "for inode %lu, iocb 0x%p, offset %llu, size %zd\n",
109811c2 3493 io_end, io_end->inode->i_ino, iocb, offset, size);
8d5d02e6 3494
74c66bcb
JK
3495 /*
3496 * Error during AIO DIO. We cannot convert unwritten extents as the
3497 * data was not written. Just clear the unwritten flag and drop io_end.
3498 */
3499 if (size <= 0) {
3500 ext4_clear_io_unwritten_flag(io_end);
3501 size = 0;
3502 }
4c0425ff
MC
3503 io_end->offset = offset;
3504 io_end->size = size;
7b7a8665 3505 ext4_put_io_end(io_end);
187372a3
CH
3506
3507 return 0;
4c0425ff 3508}
c7064ef1 3509
4c0425ff 3510/*
914f82a3
JK
3511 * Handling of direct IO writes.
3512 *
3513 * For ext4 extent files, ext4 will do direct-io write even to holes,
4c0425ff
MC
3514 * preallocated extents, and those write extend the file, no need to
3515 * fall back to buffered IO.
3516 *
556615dc 3517 * For holes, we fallocate those blocks, mark them as unwritten
69c499d1 3518 * If those blocks were preallocated, we mark sure they are split, but
556615dc 3519 * still keep the range to write as unwritten.
4c0425ff 3520 *
69c499d1 3521 * The unwritten extents will be converted to written when DIO is completed.
8d5d02e6 3522 * For async direct IO, since the IO may still pending when return, we
25985edc 3523 * set up an end_io call back function, which will do the conversion
8d5d02e6 3524 * when async direct IO completed.
4c0425ff
MC
3525 *
3526 * If the O_DIRECT write will extend the file then add this inode to the
3527 * orphan list. So recovery will truncate it back to the original size
3528 * if the machine crashes during the write.
3529 *
3530 */
0e01df10 3531static ssize_t ext4_direct_IO_write(struct kiocb *iocb, struct iov_iter *iter)
4c0425ff
MC
3532{
3533 struct file *file = iocb->ki_filp;
3534 struct inode *inode = file->f_mapping->host;
914f82a3 3535 struct ext4_inode_info *ei = EXT4_I(inode);
4c0425ff 3536 ssize_t ret;
c8b8e32d 3537 loff_t offset = iocb->ki_pos;
a6cbcd4a 3538 size_t count = iov_iter_count(iter);
69c499d1
TT
3539 int overwrite = 0;
3540 get_block_t *get_block_func = NULL;
3541 int dio_flags = 0;
4c0425ff 3542 loff_t final_size = offset + count;
914f82a3
JK
3543 int orphan = 0;
3544 handle_t *handle;
729f52c6 3545
914f82a3
JK
3546 if (final_size > inode->i_size) {
3547 /* Credits for sb + inode write */
3548 handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
3549 if (IS_ERR(handle)) {
3550 ret = PTR_ERR(handle);
3551 goto out;
3552 }
3553 ret = ext4_orphan_add(handle, inode);
3554 if (ret) {
3555 ext4_journal_stop(handle);
3556 goto out;
3557 }
3558 orphan = 1;
3559 ei->i_disksize = inode->i_size;
3560 ext4_journal_stop(handle);
3561 }
4bd809db 3562
69c499d1 3563 BUG_ON(iocb->private == NULL);
4bd809db 3564
e8340395
JK
3565 /*
3566 * Make all waiters for direct IO properly wait also for extent
3567 * conversion. This also disallows race between truncate() and
3568 * overwrite DIO as i_dio_count needs to be incremented under i_mutex.
3569 */
914f82a3 3570 inode_dio_begin(inode);
e8340395 3571
69c499d1
TT
3572 /* If we do a overwrite dio, i_mutex locking can be released */
3573 overwrite = *((int *)iocb->private);
4bd809db 3574
2dcba478 3575 if (overwrite)
5955102c 3576 inode_unlock(inode);
8d5d02e6 3577
69c499d1 3578 /*
914f82a3 3579 * For extent mapped files we could direct write to holes and fallocate.
69c499d1 3580 *
109811c2
JK
3581 * Allocated blocks to fill the hole are marked as unwritten to prevent
3582 * parallel buffered read to expose the stale data before DIO complete
3583 * the data IO.
69c499d1 3584 *
109811c2
JK
3585 * As to previously fallocated extents, ext4 get_block will just simply
3586 * mark the buffer mapped but still keep the extents unwritten.
69c499d1 3587 *
109811c2
JK
3588 * For non AIO case, we will convert those unwritten extents to written
3589 * after return back from blockdev_direct_IO. That way we save us from
3590 * allocating io_end structure and also the overhead of offloading
3591 * the extent convertion to a workqueue.
69c499d1
TT
3592 *
3593 * For async DIO, the conversion needs to be deferred when the
3594 * IO is completed. The ext4 end_io callback function will be
3595 * called to take care of the conversion work. Here for async
3596 * case, we allocate an io_end structure to hook to the iocb.
3597 */
3598 iocb->private = NULL;
109811c2 3599 if (overwrite)
705965bd 3600 get_block_func = ext4_dio_get_block_overwrite;
12735f88
JK
3601 else if (IS_DAX(inode)) {
3602 /*
3603 * We can avoid zeroing for aligned DAX writes beyond EOF. Other
3604 * writes need zeroing either because they can race with page
3605 * faults or because they use partial blocks.
3606 */
3607 if (round_down(offset, 1<<inode->i_blkbits) >= inode->i_size &&
3608 ext4_aligned_io(inode, offset, count))
3609 get_block_func = ext4_dio_get_block;
3610 else
3611 get_block_func = ext4_dax_get_block;
3612 dio_flags = DIO_LOCKING;
3613 } else if (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS) ||
3614 round_down(offset, 1 << inode->i_blkbits) >= inode->i_size) {
914f82a3
JK
3615 get_block_func = ext4_dio_get_block;
3616 dio_flags = DIO_LOCKING | DIO_SKIP_HOLES;
3617 } else if (is_sync_kiocb(iocb)) {
109811c2
JK
3618 get_block_func = ext4_dio_get_block_unwritten_sync;
3619 dio_flags = DIO_LOCKING;
69c499d1 3620 } else {
109811c2 3621 get_block_func = ext4_dio_get_block_unwritten_async;
69c499d1
TT
3622 dio_flags = DIO_LOCKING;
3623 }
2058f83a
MH
3624#ifdef CONFIG_EXT4_FS_ENCRYPTION
3625 BUG_ON(ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode));
3626#endif
914f82a3 3627 if (IS_DAX(inode)) {
c8b8e32d 3628 ret = dax_do_io(iocb, inode, iter, get_block_func,
923ae0ff 3629 ext4_end_io_dio, dio_flags);
914f82a3 3630 } else
17f8c842 3631 ret = __blockdev_direct_IO(iocb, inode,
c8b8e32d 3632 inode->i_sb->s_bdev, iter,
923ae0ff
RZ
3633 get_block_func,
3634 ext4_end_io_dio, NULL, dio_flags);
69c499d1 3635
97a851ed 3636 if (ret > 0 && !overwrite && ext4_test_inode_state(inode,
69c499d1
TT
3637 EXT4_STATE_DIO_UNWRITTEN)) {
3638 int err;
3639 /*
3640 * for non AIO case, since the IO is already
3641 * completed, we could do the conversion right here
3642 */
6b523df4 3643 err = ext4_convert_unwritten_extents(NULL, inode,
69c499d1
TT
3644 offset, ret);
3645 if (err < 0)
3646 ret = err;
3647 ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
3648 }
4bd809db 3649
914f82a3 3650 inode_dio_end(inode);
69c499d1 3651 /* take i_mutex locking again if we do a ovewrite dio */
2dcba478 3652 if (overwrite)
5955102c 3653 inode_lock(inode);
8d5d02e6 3654
914f82a3
JK
3655 if (ret < 0 && final_size > inode->i_size)
3656 ext4_truncate_failed_write(inode);
3657
3658 /* Handle extending of i_size after direct IO write */
3659 if (orphan) {
3660 int err;
3661
3662 /* Credits for sb + inode write */
3663 handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
3664 if (IS_ERR(handle)) {
3665 /* This is really bad luck. We've written the data
3666 * but cannot extend i_size. Bail out and pretend
3667 * the write failed... */
3668 ret = PTR_ERR(handle);
3669 if (inode->i_nlink)
3670 ext4_orphan_del(NULL, inode);
3671
3672 goto out;
3673 }
3674 if (inode->i_nlink)
3675 ext4_orphan_del(handle, inode);
3676 if (ret > 0) {
3677 loff_t end = offset + ret;
3678 if (end > inode->i_size) {
3679 ei->i_disksize = end;
3680 i_size_write(inode, end);
3681 /*
3682 * We're going to return a positive `ret'
3683 * here due to non-zero-length I/O, so there's
3684 * no way of reporting error returns from
3685 * ext4_mark_inode_dirty() to userspace. So
3686 * ignore it.
3687 */
3688 ext4_mark_inode_dirty(handle, inode);
3689 }
3690 }
3691 err = ext4_journal_stop(handle);
3692 if (ret == 0)
3693 ret = err;
3694 }
3695out:
3696 return ret;
3697}
3698
0e01df10 3699static ssize_t ext4_direct_IO_read(struct kiocb *iocb, struct iov_iter *iter)
914f82a3 3700{
16c54688
JK
3701 struct address_space *mapping = iocb->ki_filp->f_mapping;
3702 struct inode *inode = mapping->host;
914f82a3
JK
3703 ssize_t ret;
3704
16c54688
JK
3705 /*
3706 * Shared inode_lock is enough for us - it protects against concurrent
3707 * writes & truncates and since we take care of writing back page cache,
3708 * we are protected against page writeback as well.
3709 */
3710 inode_lock_shared(inode);
914f82a3 3711 if (IS_DAX(inode)) {
16c54688 3712 ret = dax_do_io(iocb, inode, iter, ext4_dio_get_block, NULL, 0);
914f82a3 3713 } else {
16c54688
JK
3714 size_t count = iov_iter_count(iter);
3715
3716 ret = filemap_write_and_wait_range(mapping, iocb->ki_pos,
3717 iocb->ki_pos + count);
3718 if (ret)
3719 goto out_unlock;
914f82a3 3720 ret = __blockdev_direct_IO(iocb, inode, inode->i_sb->s_bdev,
0e01df10 3721 iter, ext4_dio_get_block,
16c54688 3722 NULL, NULL, 0);
914f82a3 3723 }
16c54688
JK
3724out_unlock:
3725 inode_unlock_shared(inode);
69c499d1 3726 return ret;
4c0425ff
MC
3727}
3728
c8b8e32d 3729static ssize_t ext4_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
4c0425ff
MC
3730{
3731 struct file *file = iocb->ki_filp;
3732 struct inode *inode = file->f_mapping->host;
a6cbcd4a 3733 size_t count = iov_iter_count(iter);
c8b8e32d 3734 loff_t offset = iocb->ki_pos;
0562e0ba 3735 ssize_t ret;
4c0425ff 3736
2058f83a
MH
3737#ifdef CONFIG_EXT4_FS_ENCRYPTION
3738 if (ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode))
3739 return 0;
3740#endif
3741
84ebd795
TT
3742 /*
3743 * If we are doing data journalling we don't support O_DIRECT
3744 */
3745 if (ext4_should_journal_data(inode))
3746 return 0;
3747
46c7f254
TM
3748 /* Let buffer I/O handle the inline data case. */
3749 if (ext4_has_inline_data(inode))
3750 return 0;
3751
6f673763 3752 trace_ext4_direct_IO_enter(inode, offset, count, iov_iter_rw(iter));
914f82a3 3753 if (iov_iter_rw(iter) == READ)
0e01df10 3754 ret = ext4_direct_IO_read(iocb, iter);
0562e0ba 3755 else
0e01df10 3756 ret = ext4_direct_IO_write(iocb, iter);
6f673763 3757 trace_ext4_direct_IO_exit(inode, offset, count, iov_iter_rw(iter), ret);
0562e0ba 3758 return ret;
4c0425ff
MC
3759}
3760
ac27a0ec 3761/*
617ba13b 3762 * Pages can be marked dirty completely asynchronously from ext4's journalling
ac27a0ec
DK
3763 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
3764 * much here because ->set_page_dirty is called under VFS locks. The page is
3765 * not necessarily locked.
3766 *
3767 * We cannot just dirty the page and leave attached buffers clean, because the
3768 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
3769 * or jbddirty because all the journalling code will explode.
3770 *
3771 * So what we do is to mark the page "pending dirty" and next time writepage
3772 * is called, propagate that into the buffers appropriately.
3773 */
617ba13b 3774static int ext4_journalled_set_page_dirty(struct page *page)
ac27a0ec
DK
3775{
3776 SetPageChecked(page);
3777 return __set_page_dirty_nobuffers(page);
3778}
3779
74d553aa 3780static const struct address_space_operations ext4_aops = {
8ab22b9a
HH
3781 .readpage = ext4_readpage,
3782 .readpages = ext4_readpages,
43ce1d23 3783 .writepage = ext4_writepage,
20970ba6 3784 .writepages = ext4_writepages,
8ab22b9a 3785 .write_begin = ext4_write_begin,
74d553aa 3786 .write_end = ext4_write_end,
8ab22b9a
HH
3787 .bmap = ext4_bmap,
3788 .invalidatepage = ext4_invalidatepage,
3789 .releasepage = ext4_releasepage,
3790 .direct_IO = ext4_direct_IO,
3791 .migratepage = buffer_migrate_page,
3792 .is_partially_uptodate = block_is_partially_uptodate,
aa261f54 3793 .error_remove_page = generic_error_remove_page,
ac27a0ec
DK
3794};
3795
617ba13b 3796static const struct address_space_operations ext4_journalled_aops = {
8ab22b9a
HH
3797 .readpage = ext4_readpage,
3798 .readpages = ext4_readpages,
43ce1d23 3799 .writepage = ext4_writepage,
20970ba6 3800 .writepages = ext4_writepages,
8ab22b9a
HH
3801 .write_begin = ext4_write_begin,
3802 .write_end = ext4_journalled_write_end,
3803 .set_page_dirty = ext4_journalled_set_page_dirty,
3804 .bmap = ext4_bmap,
4520fb3c 3805 .invalidatepage = ext4_journalled_invalidatepage,
8ab22b9a 3806 .releasepage = ext4_releasepage,
84ebd795 3807 .direct_IO = ext4_direct_IO,
8ab22b9a 3808 .is_partially_uptodate = block_is_partially_uptodate,
aa261f54 3809 .error_remove_page = generic_error_remove_page,
ac27a0ec
DK
3810};
3811
64769240 3812static const struct address_space_operations ext4_da_aops = {
8ab22b9a
HH
3813 .readpage = ext4_readpage,
3814 .readpages = ext4_readpages,
43ce1d23 3815 .writepage = ext4_writepage,
20970ba6 3816 .writepages = ext4_writepages,
8ab22b9a
HH
3817 .write_begin = ext4_da_write_begin,
3818 .write_end = ext4_da_write_end,
3819 .bmap = ext4_bmap,
3820 .invalidatepage = ext4_da_invalidatepage,
3821 .releasepage = ext4_releasepage,
3822 .direct_IO = ext4_direct_IO,
3823 .migratepage = buffer_migrate_page,
3824 .is_partially_uptodate = block_is_partially_uptodate,
aa261f54 3825 .error_remove_page = generic_error_remove_page,
64769240
AT
3826};
3827
617ba13b 3828void ext4_set_aops(struct inode *inode)
ac27a0ec 3829{
3d2b1582
LC
3830 switch (ext4_inode_journal_mode(inode)) {
3831 case EXT4_INODE_ORDERED_DATA_MODE:
3d2b1582 3832 case EXT4_INODE_WRITEBACK_DATA_MODE:
3d2b1582
LC
3833 break;
3834 case EXT4_INODE_JOURNAL_DATA_MODE:
617ba13b 3835 inode->i_mapping->a_ops = &ext4_journalled_aops;
74d553aa 3836 return;
3d2b1582
LC
3837 default:
3838 BUG();
3839 }
74d553aa
TT
3840 if (test_opt(inode->i_sb, DELALLOC))
3841 inode->i_mapping->a_ops = &ext4_da_aops;
3842 else
3843 inode->i_mapping->a_ops = &ext4_aops;
ac27a0ec
DK
3844}
3845
923ae0ff 3846static int __ext4_block_zero_page_range(handle_t *handle,
d863dc36
LC
3847 struct address_space *mapping, loff_t from, loff_t length)
3848{
09cbfeaf
KS
3849 ext4_fsblk_t index = from >> PAGE_SHIFT;
3850 unsigned offset = from & (PAGE_SIZE-1);
923ae0ff 3851 unsigned blocksize, pos;
d863dc36
LC
3852 ext4_lblk_t iblock;
3853 struct inode *inode = mapping->host;
3854 struct buffer_head *bh;
3855 struct page *page;
3856 int err = 0;
3857
09cbfeaf 3858 page = find_or_create_page(mapping, from >> PAGE_SHIFT,
c62d2555 3859 mapping_gfp_constraint(mapping, ~__GFP_FS));
d863dc36
LC
3860 if (!page)
3861 return -ENOMEM;
3862
3863 blocksize = inode->i_sb->s_blocksize;
d863dc36 3864
09cbfeaf 3865 iblock = index << (PAGE_SHIFT - inode->i_sb->s_blocksize_bits);
d863dc36
LC
3866
3867 if (!page_has_buffers(page))
3868 create_empty_buffers(page, blocksize, 0);
3869
3870 /* Find the buffer that contains "offset" */
3871 bh = page_buffers(page);
3872 pos = blocksize;
3873 while (offset >= pos) {
3874 bh = bh->b_this_page;
3875 iblock++;
3876 pos += blocksize;
3877 }
d863dc36
LC
3878 if (buffer_freed(bh)) {
3879 BUFFER_TRACE(bh, "freed: skip");
3880 goto unlock;
3881 }
d863dc36
LC
3882 if (!buffer_mapped(bh)) {
3883 BUFFER_TRACE(bh, "unmapped");
3884 ext4_get_block(inode, iblock, bh, 0);
3885 /* unmapped? It's a hole - nothing to do */
3886 if (!buffer_mapped(bh)) {
3887 BUFFER_TRACE(bh, "still unmapped");
3888 goto unlock;
3889 }
3890 }
3891
3892 /* Ok, it's mapped. Make sure it's up-to-date */
3893 if (PageUptodate(page))
3894 set_buffer_uptodate(bh);
3895
3896 if (!buffer_uptodate(bh)) {
3897 err = -EIO;
dfec8a14 3898 ll_rw_block(REQ_OP_READ, 0, 1, &bh);
d863dc36
LC
3899 wait_on_buffer(bh);
3900 /* Uhhuh. Read error. Complain and punt. */
3901 if (!buffer_uptodate(bh))
3902 goto unlock;
c9c7429c
MH
3903 if (S_ISREG(inode->i_mode) &&
3904 ext4_encrypted_inode(inode)) {
3905 /* We expect the key to be set. */
a7550b30 3906 BUG_ON(!fscrypt_has_encryption_key(inode));
09cbfeaf 3907 BUG_ON(blocksize != PAGE_SIZE);
7821d4dd 3908 BUG_ON(!PageLocked(page));
b50f7b26 3909 WARN_ON_ONCE(fscrypt_decrypt_page(page->mapping->host,
9c4bb8a3 3910 page, PAGE_SIZE, 0, page->index));
c9c7429c 3911 }
d863dc36 3912 }
d863dc36
LC
3913 if (ext4_should_journal_data(inode)) {
3914 BUFFER_TRACE(bh, "get write access");
3915 err = ext4_journal_get_write_access(handle, bh);
3916 if (err)
3917 goto unlock;
3918 }
d863dc36 3919 zero_user(page, offset, length);
d863dc36
LC
3920 BUFFER_TRACE(bh, "zeroed end of block");
3921
d863dc36
LC
3922 if (ext4_should_journal_data(inode)) {
3923 err = ext4_handle_dirty_metadata(handle, inode, bh);
0713ed0c 3924 } else {
353eefd3 3925 err = 0;
d863dc36 3926 mark_buffer_dirty(bh);
3957ef53 3927 if (ext4_should_order_data(inode))
ee0876bc 3928 err = ext4_jbd2_inode_add_write(handle, inode);
0713ed0c 3929 }
d863dc36
LC
3930
3931unlock:
3932 unlock_page(page);
09cbfeaf 3933 put_page(page);
d863dc36
LC
3934 return err;
3935}
3936
923ae0ff
RZ
3937/*
3938 * ext4_block_zero_page_range() zeros out a mapping of length 'length'
3939 * starting from file offset 'from'. The range to be zero'd must
3940 * be contained with in one block. If the specified range exceeds
3941 * the end of the block it will be shortened to end of the block
3942 * that cooresponds to 'from'
3943 */
3944static int ext4_block_zero_page_range(handle_t *handle,
3945 struct address_space *mapping, loff_t from, loff_t length)
3946{
3947 struct inode *inode = mapping->host;
09cbfeaf 3948 unsigned offset = from & (PAGE_SIZE-1);
923ae0ff
RZ
3949 unsigned blocksize = inode->i_sb->s_blocksize;
3950 unsigned max = blocksize - (offset & (blocksize - 1));
3951
3952 /*
3953 * correct length if it does not fall between
3954 * 'from' and the end of the block
3955 */
3956 if (length > max || length < 0)
3957 length = max;
3958
47e69351
JK
3959 if (IS_DAX(inode)) {
3960 return iomap_zero_range(inode, from, length, NULL,
3961 &ext4_iomap_ops);
3962 }
923ae0ff
RZ
3963 return __ext4_block_zero_page_range(handle, mapping, from, length);
3964}
3965
94350ab5
MW
3966/*
3967 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
3968 * up to the end of the block which corresponds to `from'.
3969 * This required during truncate. We need to physically zero the tail end
3970 * of that block so it doesn't yield old data if the file is later grown.
3971 */
c197855e 3972static int ext4_block_truncate_page(handle_t *handle,
94350ab5
MW
3973 struct address_space *mapping, loff_t from)
3974{
09cbfeaf 3975 unsigned offset = from & (PAGE_SIZE-1);
94350ab5
MW
3976 unsigned length;
3977 unsigned blocksize;
3978 struct inode *inode = mapping->host;
3979
3980 blocksize = inode->i_sb->s_blocksize;
3981 length = blocksize - (offset & (blocksize - 1));
3982
3983 return ext4_block_zero_page_range(handle, mapping, from, length);
3984}
3985
a87dd18c
LC
3986int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
3987 loff_t lstart, loff_t length)
3988{
3989 struct super_block *sb = inode->i_sb;
3990 struct address_space *mapping = inode->i_mapping;
e1be3a92 3991 unsigned partial_start, partial_end;
a87dd18c
LC
3992 ext4_fsblk_t start, end;
3993 loff_t byte_end = (lstart + length - 1);
3994 int err = 0;
3995
e1be3a92
LC
3996 partial_start = lstart & (sb->s_blocksize - 1);
3997 partial_end = byte_end & (sb->s_blocksize - 1);
3998
a87dd18c
LC
3999 start = lstart >> sb->s_blocksize_bits;
4000 end = byte_end >> sb->s_blocksize_bits;
4001
4002 /* Handle partial zero within the single block */
e1be3a92
LC
4003 if (start == end &&
4004 (partial_start || (partial_end != sb->s_blocksize - 1))) {
a87dd18c
LC
4005 err = ext4_block_zero_page_range(handle, mapping,
4006 lstart, length);
4007 return err;
4008 }
4009 /* Handle partial zero out on the start of the range */
e1be3a92 4010 if (partial_start) {
a87dd18c
LC
4011 err = ext4_block_zero_page_range(handle, mapping,
4012 lstart, sb->s_blocksize);
4013 if (err)
4014 return err;
4015 }
4016 /* Handle partial zero out on the end of the range */
e1be3a92 4017 if (partial_end != sb->s_blocksize - 1)
a87dd18c 4018 err = ext4_block_zero_page_range(handle, mapping,
e1be3a92
LC
4019 byte_end - partial_end,
4020 partial_end + 1);
a87dd18c
LC
4021 return err;
4022}
4023
91ef4caf
DG
4024int ext4_can_truncate(struct inode *inode)
4025{
91ef4caf
DG
4026 if (S_ISREG(inode->i_mode))
4027 return 1;
4028 if (S_ISDIR(inode->i_mode))
4029 return 1;
4030 if (S_ISLNK(inode->i_mode))
4031 return !ext4_inode_is_fast_symlink(inode);
4032 return 0;
4033}
4034
01127848
JK
4035/*
4036 * We have to make sure i_disksize gets properly updated before we truncate
4037 * page cache due to hole punching or zero range. Otherwise i_disksize update
4038 * can get lost as it may have been postponed to submission of writeback but
4039 * that will never happen after we truncate page cache.
4040 */
4041int ext4_update_disksize_before_punch(struct inode *inode, loff_t offset,
4042 loff_t len)
4043{
4044 handle_t *handle;
4045 loff_t size = i_size_read(inode);
4046
5955102c 4047 WARN_ON(!inode_is_locked(inode));
01127848
JK
4048 if (offset > size || offset + len < size)
4049 return 0;
4050
4051 if (EXT4_I(inode)->i_disksize >= size)
4052 return 0;
4053
4054 handle = ext4_journal_start(inode, EXT4_HT_MISC, 1);
4055 if (IS_ERR(handle))
4056 return PTR_ERR(handle);
4057 ext4_update_i_disksize(inode, size);
4058 ext4_mark_inode_dirty(handle, inode);
4059 ext4_journal_stop(handle);
4060
4061 return 0;
4062}
4063
a4bb6b64 4064/*
cca32b7e 4065 * ext4_punch_hole: punches a hole in a file by releasing the blocks
a4bb6b64
AH
4066 * associated with the given offset and length
4067 *
4068 * @inode: File inode
4069 * @offset: The offset where the hole will begin
4070 * @len: The length of the hole
4071 *
4907cb7b 4072 * Returns: 0 on success or negative on failure
a4bb6b64
AH
4073 */
4074
aeb2817a 4075int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
a4bb6b64 4076{
26a4c0c6
TT
4077 struct super_block *sb = inode->i_sb;
4078 ext4_lblk_t first_block, stop_block;
4079 struct address_space *mapping = inode->i_mapping;
a87dd18c 4080 loff_t first_block_offset, last_block_offset;
26a4c0c6
TT
4081 handle_t *handle;
4082 unsigned int credits;
4083 int ret = 0;
4084
a4bb6b64 4085 if (!S_ISREG(inode->i_mode))
73355192 4086 return -EOPNOTSUPP;
a4bb6b64 4087
b8a86845 4088 trace_ext4_punch_hole(inode, offset, length, 0);
aaddea81 4089
26a4c0c6
TT
4090 /*
4091 * Write out all dirty pages to avoid race conditions
4092 * Then release them.
4093 */
cca32b7e 4094 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
26a4c0c6
TT
4095 ret = filemap_write_and_wait_range(mapping, offset,
4096 offset + length - 1);
4097 if (ret)
4098 return ret;
4099 }
4100
5955102c 4101 inode_lock(inode);
9ef06cec 4102
26a4c0c6
TT
4103 /* No need to punch hole beyond i_size */
4104 if (offset >= inode->i_size)
4105 goto out_mutex;
4106
4107 /*
4108 * If the hole extends beyond i_size, set the hole
4109 * to end after the page that contains i_size
4110 */
4111 if (offset + length > inode->i_size) {
4112 length = inode->i_size +
09cbfeaf 4113 PAGE_SIZE - (inode->i_size & (PAGE_SIZE - 1)) -
26a4c0c6
TT
4114 offset;
4115 }
4116
a361293f
JK
4117 if (offset & (sb->s_blocksize - 1) ||
4118 (offset + length) & (sb->s_blocksize - 1)) {
4119 /*
4120 * Attach jinode to inode for jbd2 if we do any zeroing of
4121 * partial block
4122 */
4123 ret = ext4_inode_attach_jinode(inode);
4124 if (ret < 0)
4125 goto out_mutex;
4126
4127 }
4128
ea3d7209
JK
4129 /* Wait all existing dio workers, newcomers will block on i_mutex */
4130 ext4_inode_block_unlocked_dio(inode);
4131 inode_dio_wait(inode);
4132
4133 /*
4134 * Prevent page faults from reinstantiating pages we have released from
4135 * page cache.
4136 */
4137 down_write(&EXT4_I(inode)->i_mmap_sem);
a87dd18c
LC
4138 first_block_offset = round_up(offset, sb->s_blocksize);
4139 last_block_offset = round_down((offset + length), sb->s_blocksize) - 1;
26a4c0c6 4140
a87dd18c 4141 /* Now release the pages and zero block aligned part of pages*/
01127848
JK
4142 if (last_block_offset > first_block_offset) {
4143 ret = ext4_update_disksize_before_punch(inode, offset, length);
4144 if (ret)
4145 goto out_dio;
a87dd18c
LC
4146 truncate_pagecache_range(inode, first_block_offset,
4147 last_block_offset);
01127848 4148 }
26a4c0c6
TT
4149
4150 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4151 credits = ext4_writepage_trans_blocks(inode);
4152 else
4153 credits = ext4_blocks_for_truncate(inode);
4154 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
4155 if (IS_ERR(handle)) {
4156 ret = PTR_ERR(handle);
4157 ext4_std_error(sb, ret);
4158 goto out_dio;
4159 }
4160
a87dd18c
LC
4161 ret = ext4_zero_partial_blocks(handle, inode, offset,
4162 length);
4163 if (ret)
4164 goto out_stop;
26a4c0c6
TT
4165
4166 first_block = (offset + sb->s_blocksize - 1) >>
4167 EXT4_BLOCK_SIZE_BITS(sb);
4168 stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
4169
4170 /* If there are no blocks to remove, return now */
4171 if (first_block >= stop_block)
4172 goto out_stop;
4173
4174 down_write(&EXT4_I(inode)->i_data_sem);
4175 ext4_discard_preallocations(inode);
4176
4177 ret = ext4_es_remove_extent(inode, first_block,
4178 stop_block - first_block);
4179 if (ret) {
4180 up_write(&EXT4_I(inode)->i_data_sem);
4181 goto out_stop;
4182 }
4183
4184 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4185 ret = ext4_ext_remove_space(inode, first_block,
4186 stop_block - 1);
4187 else
4f579ae7 4188 ret = ext4_ind_remove_space(handle, inode, first_block,
26a4c0c6
TT
4189 stop_block);
4190
819c4920 4191 up_write(&EXT4_I(inode)->i_data_sem);
26a4c0c6
TT
4192 if (IS_SYNC(inode))
4193 ext4_handle_sync(handle);
e251f9bc 4194
eeca7ea1 4195 inode->i_mtime = inode->i_ctime = current_time(inode);
26a4c0c6
TT
4196 ext4_mark_inode_dirty(handle, inode);
4197out_stop:
4198 ext4_journal_stop(handle);
4199out_dio:
ea3d7209 4200 up_write(&EXT4_I(inode)->i_mmap_sem);
26a4c0c6
TT
4201 ext4_inode_resume_unlocked_dio(inode);
4202out_mutex:
5955102c 4203 inode_unlock(inode);
26a4c0c6 4204 return ret;
a4bb6b64
AH
4205}
4206
a361293f
JK
4207int ext4_inode_attach_jinode(struct inode *inode)
4208{
4209 struct ext4_inode_info *ei = EXT4_I(inode);
4210 struct jbd2_inode *jinode;
4211
4212 if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal)
4213 return 0;
4214
4215 jinode = jbd2_alloc_inode(GFP_KERNEL);
4216 spin_lock(&inode->i_lock);
4217 if (!ei->jinode) {
4218 if (!jinode) {
4219 spin_unlock(&inode->i_lock);
4220 return -ENOMEM;
4221 }
4222 ei->jinode = jinode;
4223 jbd2_journal_init_jbd_inode(ei->jinode, inode);
4224 jinode = NULL;
4225 }
4226 spin_unlock(&inode->i_lock);
4227 if (unlikely(jinode != NULL))
4228 jbd2_free_inode(jinode);
4229 return 0;
4230}
4231
ac27a0ec 4232/*
617ba13b 4233 * ext4_truncate()
ac27a0ec 4234 *
617ba13b
MC
4235 * We block out ext4_get_block() block instantiations across the entire
4236 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
ac27a0ec
DK
4237 * simultaneously on behalf of the same inode.
4238 *
42b2aa86 4239 * As we work through the truncate and commit bits of it to the journal there
ac27a0ec
DK
4240 * is one core, guiding principle: the file's tree must always be consistent on
4241 * disk. We must be able to restart the truncate after a crash.
4242 *
4243 * The file's tree may be transiently inconsistent in memory (although it
4244 * probably isn't), but whenever we close off and commit a journal transaction,
4245 * the contents of (the filesystem + the journal) must be consistent and
4246 * restartable. It's pretty simple, really: bottom up, right to left (although
4247 * left-to-right works OK too).
4248 *
4249 * Note that at recovery time, journal replay occurs *before* the restart of
4250 * truncate against the orphan inode list.
4251 *
4252 * The committed inode has the new, desired i_size (which is the same as
617ba13b 4253 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
ac27a0ec 4254 * that this inode's truncate did not complete and it will again call
617ba13b
MC
4255 * ext4_truncate() to have another go. So there will be instantiated blocks
4256 * to the right of the truncation point in a crashed ext4 filesystem. But
ac27a0ec 4257 * that's fine - as long as they are linked from the inode, the post-crash
617ba13b 4258 * ext4_truncate() run will find them and release them.
ac27a0ec 4259 */
2c98eb5e 4260int ext4_truncate(struct inode *inode)
ac27a0ec 4261{
819c4920
TT
4262 struct ext4_inode_info *ei = EXT4_I(inode);
4263 unsigned int credits;
2c98eb5e 4264 int err = 0;
819c4920
TT
4265 handle_t *handle;
4266 struct address_space *mapping = inode->i_mapping;
819c4920 4267
19b5ef61
TT
4268 /*
4269 * There is a possibility that we're either freeing the inode
e04027e8 4270 * or it's a completely new inode. In those cases we might not
19b5ef61
TT
4271 * have i_mutex locked because it's not necessary.
4272 */
4273 if (!(inode->i_state & (I_NEW|I_FREEING)))
5955102c 4274 WARN_ON(!inode_is_locked(inode));
0562e0ba
JZ
4275 trace_ext4_truncate_enter(inode);
4276
91ef4caf 4277 if (!ext4_can_truncate(inode))
2c98eb5e 4278 return 0;
ac27a0ec 4279
12e9b892 4280 ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
c8d46e41 4281
5534fb5b 4282 if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
19f5fb7a 4283 ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
7d8f9f7d 4284
aef1c851
TM
4285 if (ext4_has_inline_data(inode)) {
4286 int has_inline = 1;
4287
4288 ext4_inline_data_truncate(inode, &has_inline);
4289 if (has_inline)
2c98eb5e 4290 return 0;
aef1c851
TM
4291 }
4292
a361293f
JK
4293 /* If we zero-out tail of the page, we have to create jinode for jbd2 */
4294 if (inode->i_size & (inode->i_sb->s_blocksize - 1)) {
4295 if (ext4_inode_attach_jinode(inode) < 0)
2c98eb5e 4296 return 0;
a361293f
JK
4297 }
4298
819c4920
TT
4299 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4300 credits = ext4_writepage_trans_blocks(inode);
4301 else
4302 credits = ext4_blocks_for_truncate(inode);
4303
4304 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
2c98eb5e
TT
4305 if (IS_ERR(handle))
4306 return PTR_ERR(handle);
819c4920 4307
eb3544c6
LC
4308 if (inode->i_size & (inode->i_sb->s_blocksize - 1))
4309 ext4_block_truncate_page(handle, mapping, inode->i_size);
819c4920
TT
4310
4311 /*
4312 * We add the inode to the orphan list, so that if this
4313 * truncate spans multiple transactions, and we crash, we will
4314 * resume the truncate when the filesystem recovers. It also
4315 * marks the inode dirty, to catch the new size.
4316 *
4317 * Implication: the file must always be in a sane, consistent
4318 * truncatable state while each transaction commits.
4319 */
2c98eb5e
TT
4320 err = ext4_orphan_add(handle, inode);
4321 if (err)
819c4920
TT
4322 goto out_stop;
4323
4324 down_write(&EXT4_I(inode)->i_data_sem);
4325
4326 ext4_discard_preallocations(inode);
4327
ff9893dc 4328 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
d0abb36d 4329 err = ext4_ext_truncate(handle, inode);
ff9893dc 4330 else
819c4920
TT
4331 ext4_ind_truncate(handle, inode);
4332
4333 up_write(&ei->i_data_sem);
d0abb36d
TT
4334 if (err)
4335 goto out_stop;
819c4920
TT
4336
4337 if (IS_SYNC(inode))
4338 ext4_handle_sync(handle);
4339
4340out_stop:
4341 /*
4342 * If this was a simple ftruncate() and the file will remain alive,
4343 * then we need to clear up the orphan record which we created above.
4344 * However, if this was a real unlink then we were called by
58d86a50 4345 * ext4_evict_inode(), and we allow that function to clean up the
819c4920
TT
4346 * orphan info for us.
4347 */
4348 if (inode->i_nlink)
4349 ext4_orphan_del(handle, inode);
4350
eeca7ea1 4351 inode->i_mtime = inode->i_ctime = current_time(inode);
819c4920
TT
4352 ext4_mark_inode_dirty(handle, inode);
4353 ext4_journal_stop(handle);
ac27a0ec 4354
0562e0ba 4355 trace_ext4_truncate_exit(inode);
2c98eb5e 4356 return err;
ac27a0ec
DK
4357}
4358
ac27a0ec 4359/*
617ba13b 4360 * ext4_get_inode_loc returns with an extra refcount against the inode's
ac27a0ec
DK
4361 * underlying buffer_head on success. If 'in_mem' is true, we have all
4362 * data in memory that is needed to recreate the on-disk version of this
4363 * inode.
4364 */
617ba13b
MC
4365static int __ext4_get_inode_loc(struct inode *inode,
4366 struct ext4_iloc *iloc, int in_mem)
ac27a0ec 4367{
240799cd
TT
4368 struct ext4_group_desc *gdp;
4369 struct buffer_head *bh;
4370 struct super_block *sb = inode->i_sb;
4371 ext4_fsblk_t block;
4372 int inodes_per_block, inode_offset;
4373
3a06d778 4374 iloc->bh = NULL;
240799cd 4375 if (!ext4_valid_inum(sb, inode->i_ino))
6a797d27 4376 return -EFSCORRUPTED;
ac27a0ec 4377
240799cd
TT
4378 iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
4379 gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
4380 if (!gdp)
ac27a0ec
DK
4381 return -EIO;
4382
240799cd
TT
4383 /*
4384 * Figure out the offset within the block group inode table
4385 */
00d09882 4386 inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
240799cd
TT
4387 inode_offset = ((inode->i_ino - 1) %
4388 EXT4_INODES_PER_GROUP(sb));
4389 block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
4390 iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
4391
4392 bh = sb_getblk(sb, block);
aebf0243 4393 if (unlikely(!bh))
860d21e2 4394 return -ENOMEM;
ac27a0ec
DK
4395 if (!buffer_uptodate(bh)) {
4396 lock_buffer(bh);
9c83a923
HK
4397
4398 /*
4399 * If the buffer has the write error flag, we have failed
4400 * to write out another inode in the same block. In this
4401 * case, we don't have to read the block because we may
4402 * read the old inode data successfully.
4403 */
4404 if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
4405 set_buffer_uptodate(bh);
4406
ac27a0ec
DK
4407 if (buffer_uptodate(bh)) {
4408 /* someone brought it uptodate while we waited */
4409 unlock_buffer(bh);
4410 goto has_buffer;
4411 }
4412
4413 /*
4414 * If we have all information of the inode in memory and this
4415 * is the only valid inode in the block, we need not read the
4416 * block.
4417 */
4418 if (in_mem) {
4419 struct buffer_head *bitmap_bh;
240799cd 4420 int i, start;
ac27a0ec 4421
240799cd 4422 start = inode_offset & ~(inodes_per_block - 1);
ac27a0ec 4423
240799cd
TT
4424 /* Is the inode bitmap in cache? */
4425 bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
aebf0243 4426 if (unlikely(!bitmap_bh))
ac27a0ec
DK
4427 goto make_io;
4428
4429 /*
4430 * If the inode bitmap isn't in cache then the
4431 * optimisation may end up performing two reads instead
4432 * of one, so skip it.
4433 */
4434 if (!buffer_uptodate(bitmap_bh)) {
4435 brelse(bitmap_bh);
4436 goto make_io;
4437 }
240799cd 4438 for (i = start; i < start + inodes_per_block; i++) {
ac27a0ec
DK
4439 if (i == inode_offset)
4440 continue;
617ba13b 4441 if (ext4_test_bit(i, bitmap_bh->b_data))
ac27a0ec
DK
4442 break;
4443 }
4444 brelse(bitmap_bh);
240799cd 4445 if (i == start + inodes_per_block) {
ac27a0ec
DK
4446 /* all other inodes are free, so skip I/O */
4447 memset(bh->b_data, 0, bh->b_size);
4448 set_buffer_uptodate(bh);
4449 unlock_buffer(bh);
4450 goto has_buffer;
4451 }
4452 }
4453
4454make_io:
240799cd
TT
4455 /*
4456 * If we need to do any I/O, try to pre-readahead extra
4457 * blocks from the inode table.
4458 */
4459 if (EXT4_SB(sb)->s_inode_readahead_blks) {
4460 ext4_fsblk_t b, end, table;
4461 unsigned num;
0d606e2c 4462 __u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks;
240799cd
TT
4463
4464 table = ext4_inode_table(sb, gdp);
b713a5ec 4465 /* s_inode_readahead_blks is always a power of 2 */
0d606e2c 4466 b = block & ~((ext4_fsblk_t) ra_blks - 1);
240799cd
TT
4467 if (table > b)
4468 b = table;
0d606e2c 4469 end = b + ra_blks;
240799cd 4470 num = EXT4_INODES_PER_GROUP(sb);
feb0ab32 4471 if (ext4_has_group_desc_csum(sb))
560671a0 4472 num -= ext4_itable_unused_count(sb, gdp);
240799cd
TT
4473 table += num / inodes_per_block;
4474 if (end > table)
4475 end = table;
4476 while (b <= end)
4477 sb_breadahead(sb, b++);
4478 }
4479
ac27a0ec
DK
4480 /*
4481 * There are other valid inodes in the buffer, this inode
4482 * has in-inode xattrs, or we don't have this inode in memory.
4483 * Read the block from disk.
4484 */
0562e0ba 4485 trace_ext4_load_inode(inode);
ac27a0ec
DK
4486 get_bh(bh);
4487 bh->b_end_io = end_buffer_read_sync;
2a222ca9 4488 submit_bh(REQ_OP_READ, REQ_META | REQ_PRIO, bh);
ac27a0ec
DK
4489 wait_on_buffer(bh);
4490 if (!buffer_uptodate(bh)) {
c398eda0
TT
4491 EXT4_ERROR_INODE_BLOCK(inode, block,
4492 "unable to read itable block");
ac27a0ec
DK
4493 brelse(bh);
4494 return -EIO;
4495 }
4496 }
4497has_buffer:
4498 iloc->bh = bh;
4499 return 0;
4500}
4501
617ba13b 4502int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
ac27a0ec
DK
4503{
4504 /* We have all inode data except xattrs in memory here. */
617ba13b 4505 return __ext4_get_inode_loc(inode, iloc,
19f5fb7a 4506 !ext4_test_inode_state(inode, EXT4_STATE_XATTR));
ac27a0ec
DK
4507}
4508
617ba13b 4509void ext4_set_inode_flags(struct inode *inode)
ac27a0ec 4510{
617ba13b 4511 unsigned int flags = EXT4_I(inode)->i_flags;
00a1a053 4512 unsigned int new_fl = 0;
ac27a0ec 4513
617ba13b 4514 if (flags & EXT4_SYNC_FL)
00a1a053 4515 new_fl |= S_SYNC;
617ba13b 4516 if (flags & EXT4_APPEND_FL)
00a1a053 4517 new_fl |= S_APPEND;
617ba13b 4518 if (flags & EXT4_IMMUTABLE_FL)
00a1a053 4519 new_fl |= S_IMMUTABLE;
617ba13b 4520 if (flags & EXT4_NOATIME_FL)
00a1a053 4521 new_fl |= S_NOATIME;
617ba13b 4522 if (flags & EXT4_DIRSYNC_FL)
00a1a053 4523 new_fl |= S_DIRSYNC;
a3caa24b
JK
4524 if (test_opt(inode->i_sb, DAX) && S_ISREG(inode->i_mode) &&
4525 !ext4_should_journal_data(inode) && !ext4_has_inline_data(inode) &&
4526 !ext4_encrypted_inode(inode))
923ae0ff 4527 new_fl |= S_DAX;
5f16f322 4528 inode_set_flags(inode, new_fl,
923ae0ff 4529 S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX);
ac27a0ec
DK
4530}
4531
ff9ddf7e
JK
4532/* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
4533void ext4_get_inode_flags(struct ext4_inode_info *ei)
4534{
84a8dce2
DM
4535 unsigned int vfs_fl;
4536 unsigned long old_fl, new_fl;
4537
4538 do {
4539 vfs_fl = ei->vfs_inode.i_flags;
4540 old_fl = ei->i_flags;
4541 new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
4542 EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|
4543 EXT4_DIRSYNC_FL);
4544 if (vfs_fl & S_SYNC)
4545 new_fl |= EXT4_SYNC_FL;
4546 if (vfs_fl & S_APPEND)
4547 new_fl |= EXT4_APPEND_FL;
4548 if (vfs_fl & S_IMMUTABLE)
4549 new_fl |= EXT4_IMMUTABLE_FL;
4550 if (vfs_fl & S_NOATIME)
4551 new_fl |= EXT4_NOATIME_FL;
4552 if (vfs_fl & S_DIRSYNC)
4553 new_fl |= EXT4_DIRSYNC_FL;
4554 } while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl);
ff9ddf7e 4555}
de9a55b8 4556
0fc1b451 4557static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
de9a55b8 4558 struct ext4_inode_info *ei)
0fc1b451
AK
4559{
4560 blkcnt_t i_blocks ;
8180a562
AK
4561 struct inode *inode = &(ei->vfs_inode);
4562 struct super_block *sb = inode->i_sb;
0fc1b451 4563
e2b911c5 4564 if (ext4_has_feature_huge_file(sb)) {
0fc1b451
AK
4565 /* we are using combined 48 bit field */
4566 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
4567 le32_to_cpu(raw_inode->i_blocks_lo);
07a03824 4568 if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
8180a562
AK
4569 /* i_blocks represent file system block size */
4570 return i_blocks << (inode->i_blkbits - 9);
4571 } else {
4572 return i_blocks;
4573 }
0fc1b451
AK
4574 } else {
4575 return le32_to_cpu(raw_inode->i_blocks_lo);
4576 }
4577}
ff9ddf7e 4578
152a7b0a
TM
4579static inline void ext4_iget_extra_inode(struct inode *inode,
4580 struct ext4_inode *raw_inode,
4581 struct ext4_inode_info *ei)
4582{
4583 __le32 *magic = (void *)raw_inode +
4584 EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
67cf5b09 4585 if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
152a7b0a 4586 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
67cf5b09 4587 ext4_find_inline_data_nolock(inode);
f19d5870
TM
4588 } else
4589 EXT4_I(inode)->i_inline_off = 0;
152a7b0a
TM
4590}
4591
040cb378
LX
4592int ext4_get_projid(struct inode *inode, kprojid_t *projid)
4593{
0b7b7779 4594 if (!ext4_has_feature_project(inode->i_sb))
040cb378
LX
4595 return -EOPNOTSUPP;
4596 *projid = EXT4_I(inode)->i_projid;
4597 return 0;
4598}
4599
1d1fe1ee 4600struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
ac27a0ec 4601{
617ba13b
MC
4602 struct ext4_iloc iloc;
4603 struct ext4_inode *raw_inode;
1d1fe1ee 4604 struct ext4_inode_info *ei;
1d1fe1ee 4605 struct inode *inode;
b436b9be 4606 journal_t *journal = EXT4_SB(sb)->s_journal;
1d1fe1ee 4607 long ret;
ac27a0ec 4608 int block;
08cefc7a
EB
4609 uid_t i_uid;
4610 gid_t i_gid;
040cb378 4611 projid_t i_projid;
ac27a0ec 4612
1d1fe1ee
DH
4613 inode = iget_locked(sb, ino);
4614 if (!inode)
4615 return ERR_PTR(-ENOMEM);
4616 if (!(inode->i_state & I_NEW))
4617 return inode;
4618
4619 ei = EXT4_I(inode);
7dc57615 4620 iloc.bh = NULL;
ac27a0ec 4621
1d1fe1ee
DH
4622 ret = __ext4_get_inode_loc(inode, &iloc, 0);
4623 if (ret < 0)
ac27a0ec 4624 goto bad_inode;
617ba13b 4625 raw_inode = ext4_raw_inode(&iloc);
814525f4
DW
4626
4627 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4628 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
4629 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
4630 EXT4_INODE_SIZE(inode->i_sb)) {
4631 EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)",
4632 EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize,
4633 EXT4_INODE_SIZE(inode->i_sb));
6a797d27 4634 ret = -EFSCORRUPTED;
814525f4
DW
4635 goto bad_inode;
4636 }
4637 } else
4638 ei->i_extra_isize = 0;
4639
4640 /* Precompute checksum seed for inode metadata */
9aa5d32b 4641 if (ext4_has_metadata_csum(sb)) {
814525f4
DW
4642 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4643 __u32 csum;
4644 __le32 inum = cpu_to_le32(inode->i_ino);
4645 __le32 gen = raw_inode->i_generation;
4646 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
4647 sizeof(inum));
4648 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
4649 sizeof(gen));
4650 }
4651
4652 if (!ext4_inode_csum_verify(inode, raw_inode, ei)) {
4653 EXT4_ERROR_INODE(inode, "checksum invalid");
6a797d27 4654 ret = -EFSBADCRC;
814525f4
DW
4655 goto bad_inode;
4656 }
4657
ac27a0ec 4658 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
08cefc7a
EB
4659 i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
4660 i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
0b7b7779 4661 if (ext4_has_feature_project(sb) &&
040cb378
LX
4662 EXT4_INODE_SIZE(sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4663 EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4664 i_projid = (projid_t)le32_to_cpu(raw_inode->i_projid);
4665 else
4666 i_projid = EXT4_DEF_PROJID;
4667
af5bc92d 4668 if (!(test_opt(inode->i_sb, NO_UID32))) {
08cefc7a
EB
4669 i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
4670 i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
ac27a0ec 4671 }
08cefc7a
EB
4672 i_uid_write(inode, i_uid);
4673 i_gid_write(inode, i_gid);
040cb378 4674 ei->i_projid = make_kprojid(&init_user_ns, i_projid);
bfe86848 4675 set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
ac27a0ec 4676
353eb83c 4677 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
67cf5b09 4678 ei->i_inline_off = 0;
ac27a0ec
DK
4679 ei->i_dir_start_lookup = 0;
4680 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4681 /* We now have enough fields to check if the inode was active or not.
4682 * This is needed because nfsd might try to access dead inodes
4683 * the test is that same one that e2fsck uses
4684 * NeilBrown 1999oct15
4685 */
4686 if (inode->i_nlink == 0) {
393d1d1d
DTB
4687 if ((inode->i_mode == 0 ||
4688 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) &&
4689 ino != EXT4_BOOT_LOADER_INO) {
ac27a0ec 4690 /* this inode is deleted */
1d1fe1ee 4691 ret = -ESTALE;
ac27a0ec
DK
4692 goto bad_inode;
4693 }
4694 /* The only unlinked inodes we let through here have
4695 * valid i_mode and are being read by the orphan
4696 * recovery code: that's fine, we're about to complete
393d1d1d
DTB
4697 * the process of deleting those.
4698 * OR it is the EXT4_BOOT_LOADER_INO which is
4699 * not initialized on a new filesystem. */
ac27a0ec 4700 }
ac27a0ec 4701 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
0fc1b451 4702 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
7973c0c1 4703 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
e2b911c5 4704 if (ext4_has_feature_64bit(sb))
a1ddeb7e
BP
4705 ei->i_file_acl |=
4706 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
a48380f7 4707 inode->i_size = ext4_isize(raw_inode);
ac27a0ec 4708 ei->i_disksize = inode->i_size;
a9e7f447
DM
4709#ifdef CONFIG_QUOTA
4710 ei->i_reserved_quota = 0;
4711#endif
ac27a0ec
DK
4712 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4713 ei->i_block_group = iloc.block_group;
a4912123 4714 ei->i_last_alloc_group = ~0;
ac27a0ec
DK
4715 /*
4716 * NOTE! The in-memory inode i_data array is in little-endian order
4717 * even on big-endian machines: we do NOT byteswap the block numbers!
4718 */
617ba13b 4719 for (block = 0; block < EXT4_N_BLOCKS; block++)
ac27a0ec
DK
4720 ei->i_data[block] = raw_inode->i_block[block];
4721 INIT_LIST_HEAD(&ei->i_orphan);
4722
b436b9be
JK
4723 /*
4724 * Set transaction id's of transactions that have to be committed
4725 * to finish f[data]sync. We set them to currently running transaction
4726 * as we cannot be sure that the inode or some of its metadata isn't
4727 * part of the transaction - the inode could have been reclaimed and
4728 * now it is reread from disk.
4729 */
4730 if (journal) {
4731 transaction_t *transaction;
4732 tid_t tid;
4733
a931da6a 4734 read_lock(&journal->j_state_lock);
b436b9be
JK
4735 if (journal->j_running_transaction)
4736 transaction = journal->j_running_transaction;
4737 else
4738 transaction = journal->j_committing_transaction;
4739 if (transaction)
4740 tid = transaction->t_tid;
4741 else
4742 tid = journal->j_commit_sequence;
a931da6a 4743 read_unlock(&journal->j_state_lock);
b436b9be
JK
4744 ei->i_sync_tid = tid;
4745 ei->i_datasync_tid = tid;
4746 }
4747
0040d987 4748 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
ac27a0ec
DK
4749 if (ei->i_extra_isize == 0) {
4750 /* The extra space is currently unused. Use it. */
617ba13b
MC
4751 ei->i_extra_isize = sizeof(struct ext4_inode) -
4752 EXT4_GOOD_OLD_INODE_SIZE;
ac27a0ec 4753 } else {
152a7b0a 4754 ext4_iget_extra_inode(inode, raw_inode, ei);
ac27a0ec 4755 }
814525f4 4756 }
ac27a0ec 4757
ef7f3835
KS
4758 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4759 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4760 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4761 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4762
ed3654eb 4763 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
c4f65706
TT
4764 inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
4765 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4766 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
4767 inode->i_version |=
4768 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
4769 }
25ec56b5
JNC
4770 }
4771
c4b5a614 4772 ret = 0;
485c26ec 4773 if (ei->i_file_acl &&
1032988c 4774 !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
24676da4
TT
4775 EXT4_ERROR_INODE(inode, "bad extended attribute block %llu",
4776 ei->i_file_acl);
6a797d27 4777 ret = -EFSCORRUPTED;
485c26ec 4778 goto bad_inode;
f19d5870
TM
4779 } else if (!ext4_has_inline_data(inode)) {
4780 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
4781 if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4782 (S_ISLNK(inode->i_mode) &&
4783 !ext4_inode_is_fast_symlink(inode))))
4784 /* Validate extent which is part of inode */
4785 ret = ext4_ext_check_inode(inode);
4786 } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4787 (S_ISLNK(inode->i_mode) &&
4788 !ext4_inode_is_fast_symlink(inode))) {
4789 /* Validate block references which are part of inode */
4790 ret = ext4_ind_check_inode(inode);
4791 }
fe2c8191 4792 }
567f3e9a 4793 if (ret)
de9a55b8 4794 goto bad_inode;
7a262f7c 4795
ac27a0ec 4796 if (S_ISREG(inode->i_mode)) {
617ba13b 4797 inode->i_op = &ext4_file_inode_operations;
be64f884 4798 inode->i_fop = &ext4_file_operations;
617ba13b 4799 ext4_set_aops(inode);
ac27a0ec 4800 } else if (S_ISDIR(inode->i_mode)) {
617ba13b
MC
4801 inode->i_op = &ext4_dir_inode_operations;
4802 inode->i_fop = &ext4_dir_operations;
ac27a0ec 4803 } else if (S_ISLNK(inode->i_mode)) {
a7a67e8a
AV
4804 if (ext4_encrypted_inode(inode)) {
4805 inode->i_op = &ext4_encrypted_symlink_inode_operations;
4806 ext4_set_aops(inode);
4807 } else if (ext4_inode_is_fast_symlink(inode)) {
75e7566b 4808 inode->i_link = (char *)ei->i_data;
617ba13b 4809 inode->i_op = &ext4_fast_symlink_inode_operations;
e83c1397
DG
4810 nd_terminate_link(ei->i_data, inode->i_size,
4811 sizeof(ei->i_data) - 1);
4812 } else {
617ba13b
MC
4813 inode->i_op = &ext4_symlink_inode_operations;
4814 ext4_set_aops(inode);
ac27a0ec 4815 }
21fc61c7 4816 inode_nohighmem(inode);
563bdd61
TT
4817 } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4818 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
617ba13b 4819 inode->i_op = &ext4_special_inode_operations;
ac27a0ec
DK
4820 if (raw_inode->i_block[0])
4821 init_special_inode(inode, inode->i_mode,
4822 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4823 else
4824 init_special_inode(inode, inode->i_mode,
4825 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
393d1d1d
DTB
4826 } else if (ino == EXT4_BOOT_LOADER_INO) {
4827 make_bad_inode(inode);
563bdd61 4828 } else {
6a797d27 4829 ret = -EFSCORRUPTED;
24676da4 4830 EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode);
563bdd61 4831 goto bad_inode;
ac27a0ec 4832 }
af5bc92d 4833 brelse(iloc.bh);
617ba13b 4834 ext4_set_inode_flags(inode);
1d1fe1ee
DH
4835 unlock_new_inode(inode);
4836 return inode;
ac27a0ec
DK
4837
4838bad_inode:
567f3e9a 4839 brelse(iloc.bh);
1d1fe1ee
DH
4840 iget_failed(inode);
4841 return ERR_PTR(ret);
ac27a0ec
DK
4842}
4843
f4bb2981
TT
4844struct inode *ext4_iget_normal(struct super_block *sb, unsigned long ino)
4845{
4846 if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
6a797d27 4847 return ERR_PTR(-EFSCORRUPTED);
f4bb2981
TT
4848 return ext4_iget(sb, ino);
4849}
4850
0fc1b451
AK
4851static int ext4_inode_blocks_set(handle_t *handle,
4852 struct ext4_inode *raw_inode,
4853 struct ext4_inode_info *ei)
4854{
4855 struct inode *inode = &(ei->vfs_inode);
4856 u64 i_blocks = inode->i_blocks;
4857 struct super_block *sb = inode->i_sb;
0fc1b451
AK
4858
4859 if (i_blocks <= ~0U) {
4860 /*
4907cb7b 4861 * i_blocks can be represented in a 32 bit variable
0fc1b451
AK
4862 * as multiple of 512 bytes
4863 */
8180a562 4864 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
0fc1b451 4865 raw_inode->i_blocks_high = 0;
84a8dce2 4866 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
f287a1a5
TT
4867 return 0;
4868 }
e2b911c5 4869 if (!ext4_has_feature_huge_file(sb))
f287a1a5
TT
4870 return -EFBIG;
4871
4872 if (i_blocks <= 0xffffffffffffULL) {
0fc1b451
AK
4873 /*
4874 * i_blocks can be represented in a 48 bit variable
4875 * as multiple of 512 bytes
4876 */
8180a562 4877 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
0fc1b451 4878 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
84a8dce2 4879 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
0fc1b451 4880 } else {
84a8dce2 4881 ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
8180a562
AK
4882 /* i_block is stored in file system block size */
4883 i_blocks = i_blocks >> (inode->i_blkbits - 9);
4884 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4885 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
0fc1b451 4886 }
f287a1a5 4887 return 0;
0fc1b451
AK
4888}
4889
a26f4992
TT
4890struct other_inode {
4891 unsigned long orig_ino;
4892 struct ext4_inode *raw_inode;
4893};
4894
4895static int other_inode_match(struct inode * inode, unsigned long ino,
4896 void *data)
4897{
4898 struct other_inode *oi = (struct other_inode *) data;
4899
4900 if ((inode->i_ino != ino) ||
4901 (inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
4902 I_DIRTY_SYNC | I_DIRTY_DATASYNC)) ||
4903 ((inode->i_state & I_DIRTY_TIME) == 0))
4904 return 0;
4905 spin_lock(&inode->i_lock);
4906 if (((inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
4907 I_DIRTY_SYNC | I_DIRTY_DATASYNC)) == 0) &&
4908 (inode->i_state & I_DIRTY_TIME)) {
4909 struct ext4_inode_info *ei = EXT4_I(inode);
4910
4911 inode->i_state &= ~(I_DIRTY_TIME | I_DIRTY_TIME_EXPIRED);
4912 spin_unlock(&inode->i_lock);
4913
4914 spin_lock(&ei->i_raw_lock);
4915 EXT4_INODE_SET_XTIME(i_ctime, inode, oi->raw_inode);
4916 EXT4_INODE_SET_XTIME(i_mtime, inode, oi->raw_inode);
4917 EXT4_INODE_SET_XTIME(i_atime, inode, oi->raw_inode);
4918 ext4_inode_csum_set(inode, oi->raw_inode, ei);
4919 spin_unlock(&ei->i_raw_lock);
4920 trace_ext4_other_inode_update_time(inode, oi->orig_ino);
4921 return -1;
4922 }
4923 spin_unlock(&inode->i_lock);
4924 return -1;
4925}
4926
4927/*
4928 * Opportunistically update the other time fields for other inodes in
4929 * the same inode table block.
4930 */
4931static void ext4_update_other_inodes_time(struct super_block *sb,
4932 unsigned long orig_ino, char *buf)
4933{
4934 struct other_inode oi;
4935 unsigned long ino;
4936 int i, inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
4937 int inode_size = EXT4_INODE_SIZE(sb);
4938
4939 oi.orig_ino = orig_ino;
0f0ff9a9
TT
4940 /*
4941 * Calculate the first inode in the inode table block. Inode
4942 * numbers are one-based. That is, the first inode in a block
4943 * (assuming 4k blocks and 256 byte inodes) is (n*16 + 1).
4944 */
4945 ino = ((orig_ino - 1) & ~(inodes_per_block - 1)) + 1;
a26f4992
TT
4946 for (i = 0; i < inodes_per_block; i++, ino++, buf += inode_size) {
4947 if (ino == orig_ino)
4948 continue;
4949 oi.raw_inode = (struct ext4_inode *) buf;
4950 (void) find_inode_nowait(sb, ino, other_inode_match, &oi);
4951 }
4952}
4953
ac27a0ec
DK
4954/*
4955 * Post the struct inode info into an on-disk inode location in the
4956 * buffer-cache. This gobbles the caller's reference to the
4957 * buffer_head in the inode location struct.
4958 *
4959 * The caller must have write access to iloc->bh.
4960 */
617ba13b 4961static int ext4_do_update_inode(handle_t *handle,
ac27a0ec 4962 struct inode *inode,
830156c7 4963 struct ext4_iloc *iloc)
ac27a0ec 4964{
617ba13b
MC
4965 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
4966 struct ext4_inode_info *ei = EXT4_I(inode);
ac27a0ec 4967 struct buffer_head *bh = iloc->bh;
202ee5df 4968 struct super_block *sb = inode->i_sb;
ac27a0ec 4969 int err = 0, rc, block;
202ee5df 4970 int need_datasync = 0, set_large_file = 0;
08cefc7a
EB
4971 uid_t i_uid;
4972 gid_t i_gid;
040cb378 4973 projid_t i_projid;
ac27a0ec 4974
202ee5df
TT
4975 spin_lock(&ei->i_raw_lock);
4976
4977 /* For fields not tracked in the in-memory inode,
ac27a0ec 4978 * initialise them to zero for new inodes. */
19f5fb7a 4979 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
617ba13b 4980 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
ac27a0ec 4981
ff9ddf7e 4982 ext4_get_inode_flags(ei);
ac27a0ec 4983 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
08cefc7a
EB
4984 i_uid = i_uid_read(inode);
4985 i_gid = i_gid_read(inode);
040cb378 4986 i_projid = from_kprojid(&init_user_ns, ei->i_projid);
af5bc92d 4987 if (!(test_opt(inode->i_sb, NO_UID32))) {
08cefc7a
EB
4988 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
4989 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
ac27a0ec
DK
4990/*
4991 * Fix up interoperability with old kernels. Otherwise, old inodes get
4992 * re-used with the upper 16 bits of the uid/gid intact
4993 */
93e3b4e6
DJ
4994 if (ei->i_dtime && list_empty(&ei->i_orphan)) {
4995 raw_inode->i_uid_high = 0;
4996 raw_inode->i_gid_high = 0;
4997 } else {
ac27a0ec 4998 raw_inode->i_uid_high =
08cefc7a 4999 cpu_to_le16(high_16_bits(i_uid));
ac27a0ec 5000 raw_inode->i_gid_high =
08cefc7a 5001 cpu_to_le16(high_16_bits(i_gid));
ac27a0ec
DK
5002 }
5003 } else {
08cefc7a
EB
5004 raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
5005 raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
ac27a0ec
DK
5006 raw_inode->i_uid_high = 0;
5007 raw_inode->i_gid_high = 0;
5008 }
5009 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
ef7f3835
KS
5010
5011 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
5012 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
5013 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
5014 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
5015
bce92d56
LX
5016 err = ext4_inode_blocks_set(handle, raw_inode, ei);
5017 if (err) {
202ee5df 5018 spin_unlock(&ei->i_raw_lock);
0fc1b451 5019 goto out_brelse;
202ee5df 5020 }
ac27a0ec 5021 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
353eb83c 5022 raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
ed3654eb 5023 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT)))
a1ddeb7e
BP
5024 raw_inode->i_file_acl_high =
5025 cpu_to_le16(ei->i_file_acl >> 32);
7973c0c1 5026 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
b71fc079
JK
5027 if (ei->i_disksize != ext4_isize(raw_inode)) {
5028 ext4_isize_set(raw_inode, ei->i_disksize);
5029 need_datasync = 1;
5030 }
a48380f7 5031 if (ei->i_disksize > 0x7fffffffULL) {
e2b911c5 5032 if (!ext4_has_feature_large_file(sb) ||
a48380f7 5033 EXT4_SB(sb)->s_es->s_rev_level ==
202ee5df
TT
5034 cpu_to_le32(EXT4_GOOD_OLD_REV))
5035 set_large_file = 1;
ac27a0ec
DK
5036 }
5037 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
5038 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
5039 if (old_valid_dev(inode->i_rdev)) {
5040 raw_inode->i_block[0] =
5041 cpu_to_le32(old_encode_dev(inode->i_rdev));
5042 raw_inode->i_block[1] = 0;
5043 } else {
5044 raw_inode->i_block[0] = 0;
5045 raw_inode->i_block[1] =
5046 cpu_to_le32(new_encode_dev(inode->i_rdev));
5047 raw_inode->i_block[2] = 0;
5048 }
f19d5870 5049 } else if (!ext4_has_inline_data(inode)) {
de9a55b8
TT
5050 for (block = 0; block < EXT4_N_BLOCKS; block++)
5051 raw_inode->i_block[block] = ei->i_data[block];
f19d5870 5052 }
ac27a0ec 5053
ed3654eb 5054 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
c4f65706
TT
5055 raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
5056 if (ei->i_extra_isize) {
5057 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
5058 raw_inode->i_version_hi =
5059 cpu_to_le32(inode->i_version >> 32);
5060 raw_inode->i_extra_isize =
5061 cpu_to_le16(ei->i_extra_isize);
5062 }
25ec56b5 5063 }
040cb378 5064
0b7b7779 5065 BUG_ON(!ext4_has_feature_project(inode->i_sb) &&
040cb378
LX
5066 i_projid != EXT4_DEF_PROJID);
5067
5068 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
5069 EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
5070 raw_inode->i_projid = cpu_to_le32(i_projid);
5071
814525f4 5072 ext4_inode_csum_set(inode, raw_inode, ei);
202ee5df 5073 spin_unlock(&ei->i_raw_lock);
a26f4992
TT
5074 if (inode->i_sb->s_flags & MS_LAZYTIME)
5075 ext4_update_other_inodes_time(inode->i_sb, inode->i_ino,
5076 bh->b_data);
202ee5df 5077
830156c7 5078 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
73b50c1c 5079 rc = ext4_handle_dirty_metadata(handle, NULL, bh);
830156c7
FM
5080 if (!err)
5081 err = rc;
19f5fb7a 5082 ext4_clear_inode_state(inode, EXT4_STATE_NEW);
202ee5df 5083 if (set_large_file) {
5d601255 5084 BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access");
202ee5df
TT
5085 err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
5086 if (err)
5087 goto out_brelse;
5088 ext4_update_dynamic_rev(sb);
e2b911c5 5089 ext4_set_feature_large_file(sb);
202ee5df
TT
5090 ext4_handle_sync(handle);
5091 err = ext4_handle_dirty_super(handle, sb);
5092 }
b71fc079 5093 ext4_update_inode_fsync_trans(handle, inode, need_datasync);
ac27a0ec 5094out_brelse:
af5bc92d 5095 brelse(bh);
617ba13b 5096 ext4_std_error(inode->i_sb, err);
ac27a0ec
DK
5097 return err;
5098}
5099
5100/*
617ba13b 5101 * ext4_write_inode()
ac27a0ec
DK
5102 *
5103 * We are called from a few places:
5104 *
87f7e416 5105 * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files.
ac27a0ec 5106 * Here, there will be no transaction running. We wait for any running
4907cb7b 5107 * transaction to commit.
ac27a0ec 5108 *
87f7e416
TT
5109 * - Within flush work (sys_sync(), kupdate and such).
5110 * We wait on commit, if told to.
ac27a0ec 5111 *
87f7e416
TT
5112 * - Within iput_final() -> write_inode_now()
5113 * We wait on commit, if told to.
ac27a0ec
DK
5114 *
5115 * In all cases it is actually safe for us to return without doing anything,
5116 * because the inode has been copied into a raw inode buffer in
87f7e416
TT
5117 * ext4_mark_inode_dirty(). This is a correctness thing for WB_SYNC_ALL
5118 * writeback.
ac27a0ec
DK
5119 *
5120 * Note that we are absolutely dependent upon all inode dirtiers doing the
5121 * right thing: they *must* call mark_inode_dirty() after dirtying info in
5122 * which we are interested.
5123 *
5124 * It would be a bug for them to not do this. The code:
5125 *
5126 * mark_inode_dirty(inode)
5127 * stuff();
5128 * inode->i_size = expr;
5129 *
87f7e416
TT
5130 * is in error because write_inode() could occur while `stuff()' is running,
5131 * and the new i_size will be lost. Plus the inode will no longer be on the
5132 * superblock's dirty inode list.
ac27a0ec 5133 */
a9185b41 5134int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
ac27a0ec 5135{
91ac6f43
FM
5136 int err;
5137
87f7e416 5138 if (WARN_ON_ONCE(current->flags & PF_MEMALLOC))
ac27a0ec
DK
5139 return 0;
5140
91ac6f43
FM
5141 if (EXT4_SB(inode->i_sb)->s_journal) {
5142 if (ext4_journal_current_handle()) {
5143 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
5144 dump_stack();
5145 return -EIO;
5146 }
ac27a0ec 5147
10542c22
JK
5148 /*
5149 * No need to force transaction in WB_SYNC_NONE mode. Also
5150 * ext4_sync_fs() will force the commit after everything is
5151 * written.
5152 */
5153 if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync)
91ac6f43
FM
5154 return 0;
5155
5156 err = ext4_force_commit(inode->i_sb);
5157 } else {
5158 struct ext4_iloc iloc;
ac27a0ec 5159
8b472d73 5160 err = __ext4_get_inode_loc(inode, &iloc, 0);
91ac6f43
FM
5161 if (err)
5162 return err;
10542c22
JK
5163 /*
5164 * sync(2) will flush the whole buffer cache. No need to do
5165 * it here separately for each inode.
5166 */
5167 if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)
830156c7
FM
5168 sync_dirty_buffer(iloc.bh);
5169 if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
c398eda0
TT
5170 EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr,
5171 "IO error syncing inode");
830156c7
FM
5172 err = -EIO;
5173 }
fd2dd9fb 5174 brelse(iloc.bh);
91ac6f43
FM
5175 }
5176 return err;
ac27a0ec
DK
5177}
5178
53e87268
JK
5179/*
5180 * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
5181 * buffers that are attached to a page stradding i_size and are undergoing
5182 * commit. In that case we have to wait for commit to finish and try again.
5183 */
5184static void ext4_wait_for_tail_page_commit(struct inode *inode)
5185{
5186 struct page *page;
5187 unsigned offset;
5188 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
5189 tid_t commit_tid = 0;
5190 int ret;
5191
09cbfeaf 5192 offset = inode->i_size & (PAGE_SIZE - 1);
53e87268
JK
5193 /*
5194 * All buffers in the last page remain valid? Then there's nothing to
ea1754a0 5195 * do. We do the check mainly to optimize the common PAGE_SIZE ==
53e87268
JK
5196 * blocksize case
5197 */
09cbfeaf 5198 if (offset > PAGE_SIZE - (1 << inode->i_blkbits))
53e87268
JK
5199 return;
5200 while (1) {
5201 page = find_lock_page(inode->i_mapping,
09cbfeaf 5202 inode->i_size >> PAGE_SHIFT);
53e87268
JK
5203 if (!page)
5204 return;
ca99fdd2 5205 ret = __ext4_journalled_invalidatepage(page, offset,
09cbfeaf 5206 PAGE_SIZE - offset);
53e87268 5207 unlock_page(page);
09cbfeaf 5208 put_page(page);
53e87268
JK
5209 if (ret != -EBUSY)
5210 return;
5211 commit_tid = 0;
5212 read_lock(&journal->j_state_lock);
5213 if (journal->j_committing_transaction)
5214 commit_tid = journal->j_committing_transaction->t_tid;
5215 read_unlock(&journal->j_state_lock);
5216 if (commit_tid)
5217 jbd2_log_wait_commit(journal, commit_tid);
5218 }
5219}
5220
ac27a0ec 5221/*
617ba13b 5222 * ext4_setattr()
ac27a0ec
DK
5223 *
5224 * Called from notify_change.
5225 *
5226 * We want to trap VFS attempts to truncate the file as soon as
5227 * possible. In particular, we want to make sure that when the VFS
5228 * shrinks i_size, we put the inode on the orphan list and modify
5229 * i_disksize immediately, so that during the subsequent flushing of
5230 * dirty pages and freeing of disk blocks, we can guarantee that any
5231 * commit will leave the blocks being flushed in an unused state on
5232 * disk. (On recovery, the inode will get truncated and the blocks will
5233 * be freed, so we have a strong guarantee that no future commit will
5234 * leave these blocks visible to the user.)
5235 *
678aaf48
JK
5236 * Another thing we have to assure is that if we are in ordered mode
5237 * and inode is still attached to the committing transaction, we must
5238 * we start writeout of all the dirty pages which are being truncated.
5239 * This way we are sure that all the data written in the previous
5240 * transaction are already on disk (truncate waits for pages under
5241 * writeback).
5242 *
5243 * Called with inode->i_mutex down.
ac27a0ec 5244 */
617ba13b 5245int ext4_setattr(struct dentry *dentry, struct iattr *attr)
ac27a0ec 5246{
2b0143b5 5247 struct inode *inode = d_inode(dentry);
ac27a0ec 5248 int error, rc = 0;
3d287de3 5249 int orphan = 0;
ac27a0ec
DK
5250 const unsigned int ia_valid = attr->ia_valid;
5251
31051c85 5252 error = setattr_prepare(dentry, attr);
ac27a0ec
DK
5253 if (error)
5254 return error;
5255
a7cdadee
JK
5256 if (is_quota_modification(inode, attr)) {
5257 error = dquot_initialize(inode);
5258 if (error)
5259 return error;
5260 }
08cefc7a
EB
5261 if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
5262 (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
ac27a0ec
DK
5263 handle_t *handle;
5264
5265 /* (user+group)*(old+new) structure, inode write (sb,
5266 * inode block, ? - but truncate inode update has it) */
9924a92a
TT
5267 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
5268 (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
5269 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
ac27a0ec
DK
5270 if (IS_ERR(handle)) {
5271 error = PTR_ERR(handle);
5272 goto err_out;
5273 }
b43fa828 5274 error = dquot_transfer(inode, attr);
ac27a0ec 5275 if (error) {
617ba13b 5276 ext4_journal_stop(handle);
ac27a0ec
DK
5277 return error;
5278 }
5279 /* Update corresponding info in inode so that everything is in
5280 * one transaction */
5281 if (attr->ia_valid & ATTR_UID)
5282 inode->i_uid = attr->ia_uid;
5283 if (attr->ia_valid & ATTR_GID)
5284 inode->i_gid = attr->ia_gid;
617ba13b
MC
5285 error = ext4_mark_inode_dirty(handle, inode);
5286 ext4_journal_stop(handle);
ac27a0ec
DK
5287 }
5288
3da40c7b 5289 if (attr->ia_valid & ATTR_SIZE) {
5208386c 5290 handle_t *handle;
3da40c7b
JB
5291 loff_t oldsize = inode->i_size;
5292 int shrink = (attr->ia_size <= inode->i_size);
562c72aa 5293
12e9b892 5294 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
e2b46574
ES
5295 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5296
0c095c7f
TT
5297 if (attr->ia_size > sbi->s_bitmap_maxbytes)
5298 return -EFBIG;
e2b46574 5299 }
3da40c7b
JB
5300 if (!S_ISREG(inode->i_mode))
5301 return -EINVAL;
dff6efc3
CH
5302
5303 if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size)
5304 inode_inc_iversion(inode);
5305
3da40c7b 5306 if (ext4_should_order_data(inode) &&
5208386c 5307 (attr->ia_size < inode->i_size)) {
3da40c7b 5308 error = ext4_begin_ordered_truncate(inode,
678aaf48 5309 attr->ia_size);
3da40c7b
JB
5310 if (error)
5311 goto err_out;
5312 }
5313 if (attr->ia_size != inode->i_size) {
5208386c
JK
5314 handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
5315 if (IS_ERR(handle)) {
5316 error = PTR_ERR(handle);
5317 goto err_out;
5318 }
3da40c7b 5319 if (ext4_handle_valid(handle) && shrink) {
5208386c
JK
5320 error = ext4_orphan_add(handle, inode);
5321 orphan = 1;
5322 }
911af577
EG
5323 /*
5324 * Update c/mtime on truncate up, ext4_truncate() will
5325 * update c/mtime in shrink case below
5326 */
5327 if (!shrink) {
eeca7ea1 5328 inode->i_mtime = current_time(inode);
911af577
EG
5329 inode->i_ctime = inode->i_mtime;
5330 }
90e775b7 5331 down_write(&EXT4_I(inode)->i_data_sem);
5208386c
JK
5332 EXT4_I(inode)->i_disksize = attr->ia_size;
5333 rc = ext4_mark_inode_dirty(handle, inode);
5334 if (!error)
5335 error = rc;
90e775b7
JK
5336 /*
5337 * We have to update i_size under i_data_sem together
5338 * with i_disksize to avoid races with writeback code
5339 * running ext4_wb_update_i_disksize().
5340 */
5341 if (!error)
5342 i_size_write(inode, attr->ia_size);
5343 up_write(&EXT4_I(inode)->i_data_sem);
5208386c
JK
5344 ext4_journal_stop(handle);
5345 if (error) {
3da40c7b
JB
5346 if (orphan)
5347 ext4_orphan_del(NULL, inode);
678aaf48
JK
5348 goto err_out;
5349 }
d6320cbf 5350 }
3da40c7b
JB
5351 if (!shrink)
5352 pagecache_isize_extended(inode, oldsize, inode->i_size);
53e87268 5353
5208386c
JK
5354 /*
5355 * Blocks are going to be removed from the inode. Wait
5356 * for dio in flight. Temporarily disable
5357 * dioread_nolock to prevent livelock.
5358 */
5359 if (orphan) {
5360 if (!ext4_should_journal_data(inode)) {
5361 ext4_inode_block_unlocked_dio(inode);
5362 inode_dio_wait(inode);
5363 ext4_inode_resume_unlocked_dio(inode);
5364 } else
5365 ext4_wait_for_tail_page_commit(inode);
1c9114f9 5366 }
ea3d7209 5367 down_write(&EXT4_I(inode)->i_mmap_sem);
5208386c
JK
5368 /*
5369 * Truncate pagecache after we've waited for commit
5370 * in data=journal mode to make pages freeable.
5371 */
923ae0ff 5372 truncate_pagecache(inode, inode->i_size);
2c98eb5e
TT
5373 if (shrink) {
5374 rc = ext4_truncate(inode);
5375 if (rc)
5376 error = rc;
5377 }
ea3d7209 5378 up_write(&EXT4_I(inode)->i_mmap_sem);
072bd7ea 5379 }
ac27a0ec 5380
2c98eb5e 5381 if (!error) {
1025774c
CH
5382 setattr_copy(inode, attr);
5383 mark_inode_dirty(inode);
5384 }
5385
5386 /*
5387 * If the call to ext4_truncate failed to get a transaction handle at
5388 * all, we need to clean up the in-core orphan list manually.
5389 */
3d287de3 5390 if (orphan && inode->i_nlink)
617ba13b 5391 ext4_orphan_del(NULL, inode);
ac27a0ec 5392
2c98eb5e 5393 if (!error && (ia_valid & ATTR_MODE))
64e178a7 5394 rc = posix_acl_chmod(inode, inode->i_mode);
ac27a0ec
DK
5395
5396err_out:
617ba13b 5397 ext4_std_error(inode->i_sb, error);
ac27a0ec
DK
5398 if (!error)
5399 error = rc;
5400 return error;
5401}
5402
3e3398a0
MC
5403int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
5404 struct kstat *stat)
5405{
5406 struct inode *inode;
8af8eecc 5407 unsigned long long delalloc_blocks;
3e3398a0 5408
2b0143b5 5409 inode = d_inode(dentry);
3e3398a0
MC
5410 generic_fillattr(inode, stat);
5411
9206c561
AD
5412 /*
5413 * If there is inline data in the inode, the inode will normally not
5414 * have data blocks allocated (it may have an external xattr block).
5415 * Report at least one sector for such files, so tools like tar, rsync,
5416 * others doen't incorrectly think the file is completely sparse.
5417 */
5418 if (unlikely(ext4_has_inline_data(inode)))
5419 stat->blocks += (stat->size + 511) >> 9;
5420
3e3398a0
MC
5421 /*
5422 * We can't update i_blocks if the block allocation is delayed
5423 * otherwise in the case of system crash before the real block
5424 * allocation is done, we will have i_blocks inconsistent with
5425 * on-disk file blocks.
5426 * We always keep i_blocks updated together with real
5427 * allocation. But to not confuse with user, stat
5428 * will return the blocks that include the delayed allocation
5429 * blocks for this file.
5430 */
96607551 5431 delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
9206c561
AD
5432 EXT4_I(inode)->i_reserved_data_blocks);
5433 stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
3e3398a0
MC
5434 return 0;
5435}
ac27a0ec 5436
fffb2739
JK
5437static int ext4_index_trans_blocks(struct inode *inode, int lblocks,
5438 int pextents)
a02908f1 5439{
12e9b892 5440 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
fffb2739
JK
5441 return ext4_ind_trans_blocks(inode, lblocks);
5442 return ext4_ext_index_trans_blocks(inode, pextents);
a02908f1 5443}
ac51d837 5444
ac27a0ec 5445/*
a02908f1
MC
5446 * Account for index blocks, block groups bitmaps and block group
5447 * descriptor blocks if modify datablocks and index blocks
5448 * worse case, the indexs blocks spread over different block groups
ac27a0ec 5449 *
a02908f1 5450 * If datablocks are discontiguous, they are possible to spread over
4907cb7b 5451 * different block groups too. If they are contiguous, with flexbg,
a02908f1 5452 * they could still across block group boundary.
ac27a0ec 5453 *
a02908f1
MC
5454 * Also account for superblock, inode, quota and xattr blocks
5455 */
fffb2739
JK
5456static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
5457 int pextents)
a02908f1 5458{
8df9675f
TT
5459 ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
5460 int gdpblocks;
a02908f1
MC
5461 int idxblocks;
5462 int ret = 0;
5463
5464 /*
fffb2739
JK
5465 * How many index blocks need to touch to map @lblocks logical blocks
5466 * to @pextents physical extents?
a02908f1 5467 */
fffb2739 5468 idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents);
a02908f1
MC
5469
5470 ret = idxblocks;
5471
5472 /*
5473 * Now let's see how many group bitmaps and group descriptors need
5474 * to account
5475 */
fffb2739 5476 groups = idxblocks + pextents;
a02908f1 5477 gdpblocks = groups;
8df9675f
TT
5478 if (groups > ngroups)
5479 groups = ngroups;
a02908f1
MC
5480 if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
5481 gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
5482
5483 /* bitmaps and block group descriptor blocks */
5484 ret += groups + gdpblocks;
5485
5486 /* Blocks for super block, inode, quota and xattr blocks */
5487 ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
5488
5489 return ret;
5490}
5491
5492/*
25985edc 5493 * Calculate the total number of credits to reserve to fit
f3bd1f3f
MC
5494 * the modification of a single pages into a single transaction,
5495 * which may include multiple chunks of block allocations.
ac27a0ec 5496 *
525f4ed8 5497 * This could be called via ext4_write_begin()
ac27a0ec 5498 *
525f4ed8 5499 * We need to consider the worse case, when
a02908f1 5500 * one new block per extent.
ac27a0ec 5501 */
a86c6181 5502int ext4_writepage_trans_blocks(struct inode *inode)
ac27a0ec 5503{
617ba13b 5504 int bpp = ext4_journal_blocks_per_page(inode);
ac27a0ec
DK
5505 int ret;
5506
fffb2739 5507 ret = ext4_meta_trans_blocks(inode, bpp, bpp);
a86c6181 5508
a02908f1 5509 /* Account for data blocks for journalled mode */
617ba13b 5510 if (ext4_should_journal_data(inode))
a02908f1 5511 ret += bpp;
ac27a0ec
DK
5512 return ret;
5513}
f3bd1f3f
MC
5514
5515/*
5516 * Calculate the journal credits for a chunk of data modification.
5517 *
5518 * This is called from DIO, fallocate or whoever calling
79e83036 5519 * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
f3bd1f3f
MC
5520 *
5521 * journal buffers for data blocks are not included here, as DIO
5522 * and fallocate do no need to journal data buffers.
5523 */
5524int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
5525{
5526 return ext4_meta_trans_blocks(inode, nrblocks, 1);
5527}
5528
ac27a0ec 5529/*
617ba13b 5530 * The caller must have previously called ext4_reserve_inode_write().
ac27a0ec
DK
5531 * Give this, we know that the caller already has write access to iloc->bh.
5532 */
617ba13b 5533int ext4_mark_iloc_dirty(handle_t *handle,
de9a55b8 5534 struct inode *inode, struct ext4_iloc *iloc)
ac27a0ec
DK
5535{
5536 int err = 0;
5537
c64db50e 5538 if (IS_I_VERSION(inode))
25ec56b5
JNC
5539 inode_inc_iversion(inode);
5540
ac27a0ec
DK
5541 /* the do_update_inode consumes one bh->b_count */
5542 get_bh(iloc->bh);
5543
dab291af 5544 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
830156c7 5545 err = ext4_do_update_inode(handle, inode, iloc);
ac27a0ec
DK
5546 put_bh(iloc->bh);
5547 return err;
5548}
5549
5550/*
5551 * On success, We end up with an outstanding reference count against
5552 * iloc->bh. This _must_ be cleaned up later.
5553 */
5554
5555int
617ba13b
MC
5556ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
5557 struct ext4_iloc *iloc)
ac27a0ec 5558{
0390131b
FM
5559 int err;
5560
5561 err = ext4_get_inode_loc(inode, iloc);
5562 if (!err) {
5563 BUFFER_TRACE(iloc->bh, "get_write_access");
5564 err = ext4_journal_get_write_access(handle, iloc->bh);
5565 if (err) {
5566 brelse(iloc->bh);
5567 iloc->bh = NULL;
ac27a0ec
DK
5568 }
5569 }
617ba13b 5570 ext4_std_error(inode->i_sb, err);
ac27a0ec
DK
5571 return err;
5572}
5573
6dd4ee7c
KS
5574/*
5575 * Expand an inode by new_extra_isize bytes.
5576 * Returns 0 on success or negative error number on failure.
5577 */
1d03ec98
AK
5578static int ext4_expand_extra_isize(struct inode *inode,
5579 unsigned int new_extra_isize,
5580 struct ext4_iloc iloc,
5581 handle_t *handle)
6dd4ee7c
KS
5582{
5583 struct ext4_inode *raw_inode;
5584 struct ext4_xattr_ibody_header *header;
6dd4ee7c
KS
5585
5586 if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
5587 return 0;
5588
5589 raw_inode = ext4_raw_inode(&iloc);
5590
5591 header = IHDR(inode, raw_inode);
6dd4ee7c
KS
5592
5593 /* No extended attributes present */
19f5fb7a
TT
5594 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
5595 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
6dd4ee7c
KS
5596 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
5597 new_extra_isize);
5598 EXT4_I(inode)->i_extra_isize = new_extra_isize;
5599 return 0;
5600 }
5601
5602 /* try to expand with EAs present */
5603 return ext4_expand_extra_isize_ea(inode, new_extra_isize,
5604 raw_inode, handle);
5605}
5606
ac27a0ec
DK
5607/*
5608 * What we do here is to mark the in-core inode as clean with respect to inode
5609 * dirtiness (it may still be data-dirty).
5610 * This means that the in-core inode may be reaped by prune_icache
5611 * without having to perform any I/O. This is a very good thing,
5612 * because *any* task may call prune_icache - even ones which
5613 * have a transaction open against a different journal.
5614 *
5615 * Is this cheating? Not really. Sure, we haven't written the
5616 * inode out, but prune_icache isn't a user-visible syncing function.
5617 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
5618 * we start and wait on commits.
ac27a0ec 5619 */
617ba13b 5620int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
ac27a0ec 5621{
617ba13b 5622 struct ext4_iloc iloc;
6dd4ee7c
KS
5623 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5624 static unsigned int mnt_count;
5625 int err, ret;
ac27a0ec
DK
5626
5627 might_sleep();
7ff9c073 5628 trace_ext4_mark_inode_dirty(inode, _RET_IP_);
617ba13b 5629 err = ext4_reserve_inode_write(handle, inode, &iloc);
5e1021f2
EG
5630 if (err)
5631 return err;
88e03877 5632 if (EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
19f5fb7a 5633 !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
6dd4ee7c 5634 /*
88e03877
EW
5635 * In nojournal mode, we can immediately attempt to expand
5636 * the inode. When journaled, we first need to obtain extra
5637 * buffer credits since we may write into the EA block
6dd4ee7c
KS
5638 * with this same handle. If journal_extend fails, then it will
5639 * only result in a minor loss of functionality for that inode.
5640 * If this is felt to be critical, then e2fsck should be run to
5641 * force a large enough s_min_extra_isize.
5642 */
88e03877
EW
5643 if (!ext4_handle_valid(handle) ||
5644 jbd2_journal_extend(handle,
5645 EXT4_DATA_TRANS_BLOCKS(inode->i_sb)) == 0) {
6dd4ee7c
KS
5646 ret = ext4_expand_extra_isize(inode,
5647 sbi->s_want_extra_isize,
5648 iloc, handle);
5649 if (ret) {
c1bddad9
AK
5650 if (mnt_count !=
5651 le16_to_cpu(sbi->s_es->s_mnt_count)) {
12062ddd 5652 ext4_warning(inode->i_sb,
6dd4ee7c
KS
5653 "Unable to expand inode %lu. Delete"
5654 " some EAs or run e2fsck.",
5655 inode->i_ino);
c1bddad9
AK
5656 mnt_count =
5657 le16_to_cpu(sbi->s_es->s_mnt_count);
6dd4ee7c
KS
5658 }
5659 }
5660 }
5661 }
5e1021f2 5662 return ext4_mark_iloc_dirty(handle, inode, &iloc);
ac27a0ec
DK
5663}
5664
5665/*
617ba13b 5666 * ext4_dirty_inode() is called from __mark_inode_dirty()
ac27a0ec
DK
5667 *
5668 * We're really interested in the case where a file is being extended.
5669 * i_size has been changed by generic_commit_write() and we thus need
5670 * to include the updated inode in the current transaction.
5671 *
5dd4056d 5672 * Also, dquot_alloc_block() will always dirty the inode when blocks
ac27a0ec
DK
5673 * are allocated to the file.
5674 *
5675 * If the inode is marked synchronous, we don't honour that here - doing
5676 * so would cause a commit on atime updates, which we don't bother doing.
5677 * We handle synchronous inodes at the highest possible level.
0ae45f63
TT
5678 *
5679 * If only the I_DIRTY_TIME flag is set, we can skip everything. If
5680 * I_DIRTY_TIME and I_DIRTY_SYNC is set, the only inode fields we need
5681 * to copy into the on-disk inode structure are the timestamp files.
ac27a0ec 5682 */
aa385729 5683void ext4_dirty_inode(struct inode *inode, int flags)
ac27a0ec 5684{
ac27a0ec
DK
5685 handle_t *handle;
5686
0ae45f63
TT
5687 if (flags == I_DIRTY_TIME)
5688 return;
9924a92a 5689 handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
ac27a0ec
DK
5690 if (IS_ERR(handle))
5691 goto out;
f3dc272f 5692
f3dc272f
CW
5693 ext4_mark_inode_dirty(handle, inode);
5694
617ba13b 5695 ext4_journal_stop(handle);
ac27a0ec
DK
5696out:
5697 return;
5698}
5699
5700#if 0
5701/*
5702 * Bind an inode's backing buffer_head into this transaction, to prevent
5703 * it from being flushed to disk early. Unlike
617ba13b 5704 * ext4_reserve_inode_write, this leaves behind no bh reference and
ac27a0ec
DK
5705 * returns no iloc structure, so the caller needs to repeat the iloc
5706 * lookup to mark the inode dirty later.
5707 */
617ba13b 5708static int ext4_pin_inode(handle_t *handle, struct inode *inode)
ac27a0ec 5709{
617ba13b 5710 struct ext4_iloc iloc;
ac27a0ec
DK
5711
5712 int err = 0;
5713 if (handle) {
617ba13b 5714 err = ext4_get_inode_loc(inode, &iloc);
ac27a0ec
DK
5715 if (!err) {
5716 BUFFER_TRACE(iloc.bh, "get_write_access");
dab291af 5717 err = jbd2_journal_get_write_access(handle, iloc.bh);
ac27a0ec 5718 if (!err)
0390131b 5719 err = ext4_handle_dirty_metadata(handle,
73b50c1c 5720 NULL,
0390131b 5721 iloc.bh);
ac27a0ec
DK
5722 brelse(iloc.bh);
5723 }
5724 }
617ba13b 5725 ext4_std_error(inode->i_sb, err);
ac27a0ec
DK
5726 return err;
5727}
5728#endif
5729
617ba13b 5730int ext4_change_inode_journal_flag(struct inode *inode, int val)
ac27a0ec
DK
5731{
5732 journal_t *journal;
5733 handle_t *handle;
5734 int err;
c8585c6f 5735 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
ac27a0ec
DK
5736
5737 /*
5738 * We have to be very careful here: changing a data block's
5739 * journaling status dynamically is dangerous. If we write a
5740 * data block to the journal, change the status and then delete
5741 * that block, we risk forgetting to revoke the old log record
5742 * from the journal and so a subsequent replay can corrupt data.
5743 * So, first we make sure that the journal is empty and that
5744 * nobody is changing anything.
5745 */
5746
617ba13b 5747 journal = EXT4_JOURNAL(inode);
0390131b
FM
5748 if (!journal)
5749 return 0;
d699594d 5750 if (is_journal_aborted(journal))
ac27a0ec
DK
5751 return -EROFS;
5752
17335dcc
DM
5753 /* Wait for all existing dio workers */
5754 ext4_inode_block_unlocked_dio(inode);
5755 inode_dio_wait(inode);
5756
4c546592
DJ
5757 /*
5758 * Before flushing the journal and switching inode's aops, we have
5759 * to flush all dirty data the inode has. There can be outstanding
5760 * delayed allocations, there can be unwritten extents created by
5761 * fallocate or buffered writes in dioread_nolock mode covered by
5762 * dirty data which can be converted only after flushing the dirty
5763 * data (and journalled aops don't know how to handle these cases).
5764 */
5765 if (val) {
5766 down_write(&EXT4_I(inode)->i_mmap_sem);
5767 err = filemap_write_and_wait(inode->i_mapping);
5768 if (err < 0) {
5769 up_write(&EXT4_I(inode)->i_mmap_sem);
5770 ext4_inode_resume_unlocked_dio(inode);
5771 return err;
5772 }
5773 }
5774
c8585c6f 5775 percpu_down_write(&sbi->s_journal_flag_rwsem);
dab291af 5776 jbd2_journal_lock_updates(journal);
ac27a0ec
DK
5777
5778 /*
5779 * OK, there are no updates running now, and all cached data is
5780 * synced to disk. We are now in a completely consistent state
5781 * which doesn't have anything in the journal, and we know that
5782 * no filesystem updates are running, so it is safe to modify
5783 * the inode's in-core data-journaling state flag now.
5784 */
5785
5786 if (val)
12e9b892 5787 ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
5872ddaa 5788 else {
4f879ca6
JK
5789 err = jbd2_journal_flush(journal);
5790 if (err < 0) {
5791 jbd2_journal_unlock_updates(journal);
c8585c6f 5792 percpu_up_write(&sbi->s_journal_flag_rwsem);
4f879ca6
JK
5793 ext4_inode_resume_unlocked_dio(inode);
5794 return err;
5795 }
12e9b892 5796 ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
5872ddaa 5797 }
617ba13b 5798 ext4_set_aops(inode);
a3caa24b
JK
5799 /*
5800 * Update inode->i_flags after EXT4_INODE_JOURNAL_DATA was updated.
5801 * E.g. S_DAX may get cleared / set.
5802 */
5803 ext4_set_inode_flags(inode);
ac27a0ec 5804
dab291af 5805 jbd2_journal_unlock_updates(journal);
c8585c6f
DJ
5806 percpu_up_write(&sbi->s_journal_flag_rwsem);
5807
4c546592
DJ
5808 if (val)
5809 up_write(&EXT4_I(inode)->i_mmap_sem);
17335dcc 5810 ext4_inode_resume_unlocked_dio(inode);
ac27a0ec
DK
5811
5812 /* Finally we can mark the inode as dirty. */
5813
9924a92a 5814 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
ac27a0ec
DK
5815 if (IS_ERR(handle))
5816 return PTR_ERR(handle);
5817
617ba13b 5818 err = ext4_mark_inode_dirty(handle, inode);
0390131b 5819 ext4_handle_sync(handle);
617ba13b
MC
5820 ext4_journal_stop(handle);
5821 ext4_std_error(inode->i_sb, err);
ac27a0ec
DK
5822
5823 return err;
5824}
2e9ee850
AK
5825
5826static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
5827{
5828 return !buffer_mapped(bh);
5829}
5830
c2ec175c 5831int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
2e9ee850 5832{
c2ec175c 5833 struct page *page = vmf->page;
2e9ee850
AK
5834 loff_t size;
5835 unsigned long len;
9ea7df53 5836 int ret;
2e9ee850 5837 struct file *file = vma->vm_file;
496ad9aa 5838 struct inode *inode = file_inode(file);
2e9ee850 5839 struct address_space *mapping = inode->i_mapping;
9ea7df53
JK
5840 handle_t *handle;
5841 get_block_t *get_block;
5842 int retries = 0;
2e9ee850 5843
8e8ad8a5 5844 sb_start_pagefault(inode->i_sb);
041bbb6d 5845 file_update_time(vma->vm_file);
ea3d7209
JK
5846
5847 down_read(&EXT4_I(inode)->i_mmap_sem);
9ea7df53
JK
5848 /* Delalloc case is easy... */
5849 if (test_opt(inode->i_sb, DELALLOC) &&
5850 !ext4_should_journal_data(inode) &&
5851 !ext4_nonda_switch(inode->i_sb)) {
5852 do {
5c500029 5853 ret = block_page_mkwrite(vma, vmf,
9ea7df53
JK
5854 ext4_da_get_block_prep);
5855 } while (ret == -ENOSPC &&
5856 ext4_should_retry_alloc(inode->i_sb, &retries));
5857 goto out_ret;
2e9ee850 5858 }
0e499890
DW
5859
5860 lock_page(page);
9ea7df53
JK
5861 size = i_size_read(inode);
5862 /* Page got truncated from under us? */
5863 if (page->mapping != mapping || page_offset(page) > size) {
5864 unlock_page(page);
5865 ret = VM_FAULT_NOPAGE;
5866 goto out;
0e499890 5867 }
2e9ee850 5868
09cbfeaf
KS
5869 if (page->index == size >> PAGE_SHIFT)
5870 len = size & ~PAGE_MASK;
2e9ee850 5871 else
09cbfeaf 5872 len = PAGE_SIZE;
a827eaff 5873 /*
9ea7df53
JK
5874 * Return if we have all the buffers mapped. This avoids the need to do
5875 * journal_start/journal_stop which can block and take a long time
a827eaff 5876 */
2e9ee850 5877 if (page_has_buffers(page)) {
f19d5870
TM
5878 if (!ext4_walk_page_buffers(NULL, page_buffers(page),
5879 0, len, NULL,
5880 ext4_bh_unmapped)) {
9ea7df53 5881 /* Wait so that we don't change page under IO */
1d1d1a76 5882 wait_for_stable_page(page);
9ea7df53
JK
5883 ret = VM_FAULT_LOCKED;
5884 goto out;
a827eaff 5885 }
2e9ee850 5886 }
a827eaff 5887 unlock_page(page);
9ea7df53
JK
5888 /* OK, we need to fill the hole... */
5889 if (ext4_should_dioread_nolock(inode))
705965bd 5890 get_block = ext4_get_block_unwritten;
9ea7df53
JK
5891 else
5892 get_block = ext4_get_block;
5893retry_alloc:
9924a92a
TT
5894 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
5895 ext4_writepage_trans_blocks(inode));
9ea7df53 5896 if (IS_ERR(handle)) {
c2ec175c 5897 ret = VM_FAULT_SIGBUS;
9ea7df53
JK
5898 goto out;
5899 }
5c500029 5900 ret = block_page_mkwrite(vma, vmf, get_block);
9ea7df53 5901 if (!ret && ext4_should_journal_data(inode)) {
f19d5870 5902 if (ext4_walk_page_buffers(handle, page_buffers(page), 0,
09cbfeaf 5903 PAGE_SIZE, NULL, do_journal_get_write_access)) {
9ea7df53
JK
5904 unlock_page(page);
5905 ret = VM_FAULT_SIGBUS;
fcbb5515 5906 ext4_journal_stop(handle);
9ea7df53
JK
5907 goto out;
5908 }
5909 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
5910 }
5911 ext4_journal_stop(handle);
5912 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
5913 goto retry_alloc;
5914out_ret:
5915 ret = block_page_mkwrite_return(ret);
5916out:
ea3d7209 5917 up_read(&EXT4_I(inode)->i_mmap_sem);
8e8ad8a5 5918 sb_end_pagefault(inode->i_sb);
2e9ee850
AK
5919 return ret;
5920}
ea3d7209
JK
5921
5922int ext4_filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
5923{
5924 struct inode *inode = file_inode(vma->vm_file);
5925 int err;
5926
5927 down_read(&EXT4_I(inode)->i_mmap_sem);
5928 err = filemap_fault(vma, vmf);
5929 up_read(&EXT4_I(inode)->i_mmap_sem);
5930
5931 return err;
5932}
2d90c160
JK
5933
5934/*
5935 * Find the first extent at or after @lblk in an inode that is not a hole.
5936 * Search for @map_len blocks at most. The extent is returned in @result.
5937 *
5938 * The function returns 1 if we found an extent. The function returns 0 in
5939 * case there is no extent at or after @lblk and in that case also sets
5940 * @result->es_len to 0. In case of error, the error code is returned.
5941 */
5942int ext4_get_next_extent(struct inode *inode, ext4_lblk_t lblk,
5943 unsigned int map_len, struct extent_status *result)
5944{
5945 struct ext4_map_blocks map;
5946 struct extent_status es = {};
5947 int ret;
5948
5949 map.m_lblk = lblk;
5950 map.m_len = map_len;
5951
5952 /*
5953 * For non-extent based files this loop may iterate several times since
5954 * we do not determine full hole size.
5955 */
5956 while (map.m_len > 0) {
5957 ret = ext4_map_blocks(NULL, inode, &map, 0);
5958 if (ret < 0)
5959 return ret;
5960 /* There's extent covering m_lblk? Just return it. */
5961 if (ret > 0) {
5962 int status;
5963
5964 ext4_es_store_pblock(result, map.m_pblk);
5965 result->es_lblk = map.m_lblk;
5966 result->es_len = map.m_len;
5967 if (map.m_flags & EXT4_MAP_UNWRITTEN)
5968 status = EXTENT_STATUS_UNWRITTEN;
5969 else
5970 status = EXTENT_STATUS_WRITTEN;
5971 ext4_es_store_status(result, status);
5972 return 1;
5973 }
5974 ext4_es_find_delayed_extent_range(inode, map.m_lblk,
5975 map.m_lblk + map.m_len - 1,
5976 &es);
5977 /* Is delalloc data before next block in extent tree? */
5978 if (es.es_len && es.es_lblk < map.m_lblk + map.m_len) {
5979 ext4_lblk_t offset = 0;
5980
5981 if (es.es_lblk < lblk)
5982 offset = lblk - es.es_lblk;
5983 result->es_lblk = es.es_lblk + offset;
5984 ext4_es_store_pblock(result,
5985 ext4_es_pblock(&es) + offset);
5986 result->es_len = es.es_len - offset;
5987 ext4_es_store_status(result, ext4_es_status(&es));
5988
5989 return 1;
5990 }
5991 /* There's a hole at m_lblk, advance us after it */
5992 map.m_lblk += map.m_len;
5993 map_len -= map.m_len;
5994 map.m_len = map_len;
5995 cond_resched();
5996 }
5997 result->es_len = 0;
5998 return 0;
5999}