1ac27a0ecSDave Kleikamp /* 2617ba13bSMingming Cao * linux/fs/ext4/inode.c 3ac27a0ecSDave Kleikamp * 4ac27a0ecSDave Kleikamp * Copyright (C) 1992, 1993, 1994, 1995 5ac27a0ecSDave Kleikamp * Remy Card (card@masi.ibp.fr) 6ac27a0ecSDave Kleikamp * Laboratoire MASI - Institut Blaise Pascal 7ac27a0ecSDave Kleikamp * Universite Pierre et Marie Curie (Paris VI) 8ac27a0ecSDave Kleikamp * 9ac27a0ecSDave Kleikamp * from 10ac27a0ecSDave Kleikamp * 11ac27a0ecSDave Kleikamp * linux/fs/minix/inode.c 12ac27a0ecSDave Kleikamp * 13ac27a0ecSDave Kleikamp * Copyright (C) 1991, 1992 Linus Torvalds 14ac27a0ecSDave Kleikamp * 15ac27a0ecSDave Kleikamp * 64-bit file support on 64-bit platforms by Jakub Jelinek 16ac27a0ecSDave Kleikamp * (jj@sunsite.ms.mff.cuni.cz) 17ac27a0ecSDave Kleikamp * 18617ba13bSMingming Cao * Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000 19ac27a0ecSDave Kleikamp */ 20ac27a0ecSDave Kleikamp 21ac27a0ecSDave Kleikamp #include <linux/fs.h> 22ac27a0ecSDave Kleikamp #include <linux/time.h> 23ac27a0ecSDave Kleikamp #include <linux/highuid.h> 24ac27a0ecSDave Kleikamp #include <linux/pagemap.h> 25c94c2acfSMatthew Wilcox #include <linux/dax.h> 26ac27a0ecSDave Kleikamp #include <linux/quotaops.h> 27ac27a0ecSDave Kleikamp #include <linux/string.h> 28ac27a0ecSDave Kleikamp #include <linux/buffer_head.h> 29ac27a0ecSDave Kleikamp #include <linux/writeback.h> 3064769240SAlex Tomas #include <linux/pagevec.h> 31ac27a0ecSDave Kleikamp #include <linux/mpage.h> 32e83c1397SDuane Griffin #include <linux/namei.h> 33ac27a0ecSDave Kleikamp #include <linux/uio.h> 34ac27a0ecSDave Kleikamp #include <linux/bio.h> 354c0425ffSMingming Cao #include <linux/workqueue.h> 36744692dcSJiaying Zhang #include <linux/kernel.h> 376db26ffcSAndrew Morton #include <linux/printk.h> 385a0e3ad6STejun Heo #include <linux/slab.h> 3900a1a053STheodore Ts'o #include <linux/bitops.h> 409bffad1eSTheodore Ts'o 413dcf5451SChristoph Hellwig #include "ext4_jbd2.h" 42ac27a0ecSDave Kleikamp #include "xattr.h" 43ac27a0ecSDave Kleikamp #include "acl.h" 449f125d64STheodore Ts'o #include "truncate.h" 45ac27a0ecSDave Kleikamp 469bffad1eSTheodore Ts'o #include <trace/events/ext4.h> 479bffad1eSTheodore Ts'o 48a1d6cc56SAneesh Kumar K.V #define MPAGE_DA_EXTENT_TAIL 0x01 49a1d6cc56SAneesh Kumar K.V 50814525f4SDarrick J. Wong static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw, 51814525f4SDarrick J. Wong struct ext4_inode_info *ei) 52814525f4SDarrick J. Wong { 53814525f4SDarrick J. Wong struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 54814525f4SDarrick J. Wong __u16 csum_lo; 55814525f4SDarrick J. Wong __u16 csum_hi = 0; 56814525f4SDarrick J. Wong __u32 csum; 57814525f4SDarrick J. Wong 58171a7f21SDmitry Monakhov csum_lo = le16_to_cpu(raw->i_checksum_lo); 59814525f4SDarrick J. Wong raw->i_checksum_lo = 0; 60814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 61814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) { 62171a7f21SDmitry Monakhov csum_hi = le16_to_cpu(raw->i_checksum_hi); 63814525f4SDarrick J. Wong raw->i_checksum_hi = 0; 64814525f4SDarrick J. Wong } 65814525f4SDarrick J. Wong 66814525f4SDarrick J. Wong csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw, 67814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)); 68814525f4SDarrick J. Wong 69171a7f21SDmitry Monakhov raw->i_checksum_lo = cpu_to_le16(csum_lo); 70814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 71814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 72171a7f21SDmitry Monakhov raw->i_checksum_hi = cpu_to_le16(csum_hi); 73814525f4SDarrick J. Wong 74814525f4SDarrick J. Wong return csum; 75814525f4SDarrick J. Wong } 76814525f4SDarrick J. Wong 77814525f4SDarrick J. Wong static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw, 78814525f4SDarrick J. Wong struct ext4_inode_info *ei) 79814525f4SDarrick J. Wong { 80814525f4SDarrick J. Wong __u32 provided, calculated; 81814525f4SDarrick J. Wong 82814525f4SDarrick J. Wong if (EXT4_SB(inode->i_sb)->s_es->s_creator_os != 83814525f4SDarrick J. Wong cpu_to_le32(EXT4_OS_LINUX) || 849aa5d32bSDmitry Monakhov !ext4_has_metadata_csum(inode->i_sb)) 85814525f4SDarrick J. Wong return 1; 86814525f4SDarrick J. Wong 87814525f4SDarrick J. Wong provided = le16_to_cpu(raw->i_checksum_lo); 88814525f4SDarrick J. Wong calculated = ext4_inode_csum(inode, raw, ei); 89814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 90814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 91814525f4SDarrick J. Wong provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16; 92814525f4SDarrick J. Wong else 93814525f4SDarrick J. Wong calculated &= 0xFFFF; 94814525f4SDarrick J. Wong 95814525f4SDarrick J. Wong return provided == calculated; 96814525f4SDarrick J. Wong } 97814525f4SDarrick J. Wong 98814525f4SDarrick J. Wong static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw, 99814525f4SDarrick J. Wong struct ext4_inode_info *ei) 100814525f4SDarrick J. Wong { 101814525f4SDarrick J. Wong __u32 csum; 102814525f4SDarrick J. Wong 103814525f4SDarrick J. Wong if (EXT4_SB(inode->i_sb)->s_es->s_creator_os != 104814525f4SDarrick J. Wong cpu_to_le32(EXT4_OS_LINUX) || 1059aa5d32bSDmitry Monakhov !ext4_has_metadata_csum(inode->i_sb)) 106814525f4SDarrick J. Wong return; 107814525f4SDarrick J. Wong 108814525f4SDarrick J. Wong csum = ext4_inode_csum(inode, raw, ei); 109814525f4SDarrick J. Wong raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF); 110814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 111814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 112814525f4SDarrick J. Wong raw->i_checksum_hi = cpu_to_le16(csum >> 16); 113814525f4SDarrick J. Wong } 114814525f4SDarrick J. Wong 115678aaf48SJan Kara static inline int ext4_begin_ordered_truncate(struct inode *inode, 116678aaf48SJan Kara loff_t new_size) 117678aaf48SJan Kara { 1187ff9c073STheodore Ts'o trace_ext4_begin_ordered_truncate(inode, new_size); 1198aefcd55STheodore Ts'o /* 1208aefcd55STheodore Ts'o * If jinode is zero, then we never opened the file for 1218aefcd55STheodore Ts'o * writing, so there's no need to call 1228aefcd55STheodore Ts'o * jbd2_journal_begin_ordered_truncate() since there's no 1238aefcd55STheodore Ts'o * outstanding writes we need to flush. 1248aefcd55STheodore Ts'o */ 1258aefcd55STheodore Ts'o if (!EXT4_I(inode)->jinode) 1268aefcd55STheodore Ts'o return 0; 1278aefcd55STheodore Ts'o return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode), 1288aefcd55STheodore Ts'o EXT4_I(inode)->jinode, 129678aaf48SJan Kara new_size); 130678aaf48SJan Kara } 131678aaf48SJan Kara 132d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset, 133d47992f8SLukas Czerner unsigned int length); 134cb20d518STheodore Ts'o static int __ext4_journalled_writepage(struct page *page, unsigned int len); 135cb20d518STheodore Ts'o static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh); 136fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks, 137fffb2739SJan Kara int pextents); 13864769240SAlex Tomas 139ac27a0ecSDave Kleikamp /* 140ac27a0ecSDave Kleikamp * Test whether an inode is a fast symlink. 141ac27a0ecSDave Kleikamp */ 142f348c252STheodore Ts'o int ext4_inode_is_fast_symlink(struct inode *inode) 143ac27a0ecSDave Kleikamp { 144617ba13bSMingming Cao int ea_blocks = EXT4_I(inode)->i_file_acl ? 14565eddb56SYongqiang Yang EXT4_CLUSTER_SIZE(inode->i_sb) >> 9 : 0; 146ac27a0ecSDave Kleikamp 147bd9db175SZheng Liu if (ext4_has_inline_data(inode)) 148bd9db175SZheng Liu return 0; 149bd9db175SZheng Liu 150ac27a0ecSDave Kleikamp return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0); 151ac27a0ecSDave Kleikamp } 152ac27a0ecSDave Kleikamp 153ac27a0ecSDave Kleikamp /* 154ac27a0ecSDave Kleikamp * Restart the transaction associated with *handle. This does a commit, 155ac27a0ecSDave Kleikamp * so before we call here everything must be consistently dirtied against 156ac27a0ecSDave Kleikamp * this transaction. 157ac27a0ecSDave Kleikamp */ 158487caeefSJan Kara int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode, 159487caeefSJan Kara int nblocks) 160ac27a0ecSDave Kleikamp { 161487caeefSJan Kara int ret; 162487caeefSJan Kara 163487caeefSJan Kara /* 164e35fd660STheodore Ts'o * Drop i_data_sem to avoid deadlock with ext4_map_blocks. At this 165487caeefSJan Kara * moment, get_block can be called only for blocks inside i_size since 166487caeefSJan Kara * page cache has been already dropped and writes are blocked by 167487caeefSJan Kara * i_mutex. So we can safely drop the i_data_sem here. 168487caeefSJan Kara */ 1690390131bSFrank Mayhar BUG_ON(EXT4_JOURNAL(inode) == NULL); 170ac27a0ecSDave Kleikamp jbd_debug(2, "restarting handle %p\n", handle); 171487caeefSJan Kara up_write(&EXT4_I(inode)->i_data_sem); 1728e8eaabeSAmir Goldstein ret = ext4_journal_restart(handle, nblocks); 173487caeefSJan Kara down_write(&EXT4_I(inode)->i_data_sem); 174fa5d1113SAneesh Kumar K.V ext4_discard_preallocations(inode); 175487caeefSJan Kara 176487caeefSJan Kara return ret; 177ac27a0ecSDave Kleikamp } 178ac27a0ecSDave Kleikamp 179ac27a0ecSDave Kleikamp /* 180ac27a0ecSDave Kleikamp * Called at the last iput() if i_nlink is zero. 181ac27a0ecSDave Kleikamp */ 1820930fcc1SAl Viro void ext4_evict_inode(struct inode *inode) 183ac27a0ecSDave Kleikamp { 184ac27a0ecSDave Kleikamp handle_t *handle; 185bc965ab3STheodore Ts'o int err; 186ac27a0ecSDave Kleikamp 1877ff9c073STheodore Ts'o trace_ext4_evict_inode(inode); 1882581fdc8SJiaying Zhang 1890930fcc1SAl Viro if (inode->i_nlink) { 1902d859db3SJan Kara /* 1912d859db3SJan Kara * When journalling data dirty buffers are tracked only in the 1922d859db3SJan Kara * journal. So although mm thinks everything is clean and 1932d859db3SJan Kara * ready for reaping the inode might still have some pages to 1942d859db3SJan Kara * write in the running transaction or waiting to be 1952d859db3SJan Kara * checkpointed. Thus calling jbd2_journal_invalidatepage() 1962d859db3SJan Kara * (via truncate_inode_pages()) to discard these buffers can 1972d859db3SJan Kara * cause data loss. Also even if we did not discard these 1982d859db3SJan Kara * buffers, we would have no way to find them after the inode 1992d859db3SJan Kara * is reaped and thus user could see stale data if he tries to 2002d859db3SJan Kara * read them before the transaction is checkpointed. So be 2012d859db3SJan Kara * careful and force everything to disk here... We use 2022d859db3SJan Kara * ei->i_datasync_tid to store the newest transaction 2032d859db3SJan Kara * containing inode's data. 2042d859db3SJan Kara * 2052d859db3SJan Kara * Note that directories do not have this problem because they 2062d859db3SJan Kara * don't use page cache. 2072d859db3SJan Kara */ 2082d859db3SJan Kara if (ext4_should_journal_data(inode) && 2092b405bfaSTheodore Ts'o (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) && 2102b405bfaSTheodore Ts'o inode->i_ino != EXT4_JOURNAL_INO) { 2112d859db3SJan Kara journal_t *journal = EXT4_SB(inode->i_sb)->s_journal; 2122d859db3SJan Kara tid_t commit_tid = EXT4_I(inode)->i_datasync_tid; 2132d859db3SJan Kara 214d76a3a77STheodore Ts'o jbd2_complete_transaction(journal, commit_tid); 2152d859db3SJan Kara filemap_write_and_wait(&inode->i_data); 2162d859db3SJan Kara } 21791b0abe3SJohannes Weiner truncate_inode_pages_final(&inode->i_data); 2185dc23bddSJan Kara 2190930fcc1SAl Viro goto no_delete; 2200930fcc1SAl Viro } 2210930fcc1SAl Viro 222e2bfb088STheodore Ts'o if (is_bad_inode(inode)) 223e2bfb088STheodore Ts'o goto no_delete; 224871a2931SChristoph Hellwig dquot_initialize(inode); 225907f4554SChristoph Hellwig 226678aaf48SJan Kara if (ext4_should_order_data(inode)) 227678aaf48SJan Kara ext4_begin_ordered_truncate(inode, 0); 22891b0abe3SJohannes Weiner truncate_inode_pages_final(&inode->i_data); 229ac27a0ecSDave Kleikamp 2308e8ad8a5SJan Kara /* 2318e8ad8a5SJan Kara * Protect us against freezing - iput() caller didn't have to have any 2328e8ad8a5SJan Kara * protection against it 2338e8ad8a5SJan Kara */ 2348e8ad8a5SJan Kara sb_start_intwrite(inode->i_sb); 2359924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, 2369924a92aSTheodore Ts'o ext4_blocks_for_truncate(inode)+3); 237ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 238bc965ab3STheodore Ts'o ext4_std_error(inode->i_sb, PTR_ERR(handle)); 239ac27a0ecSDave Kleikamp /* 240ac27a0ecSDave Kleikamp * If we're going to skip the normal cleanup, we still need to 241ac27a0ecSDave Kleikamp * make sure that the in-core orphan linked list is properly 242ac27a0ecSDave Kleikamp * cleaned up. 243ac27a0ecSDave Kleikamp */ 244617ba13bSMingming Cao ext4_orphan_del(NULL, inode); 2458e8ad8a5SJan Kara sb_end_intwrite(inode->i_sb); 246ac27a0ecSDave Kleikamp goto no_delete; 247ac27a0ecSDave Kleikamp } 248ac27a0ecSDave Kleikamp 249ac27a0ecSDave Kleikamp if (IS_SYNC(inode)) 2500390131bSFrank Mayhar ext4_handle_sync(handle); 251ac27a0ecSDave Kleikamp inode->i_size = 0; 252bc965ab3STheodore Ts'o err = ext4_mark_inode_dirty(handle, inode); 253bc965ab3STheodore Ts'o if (err) { 25412062dddSEric Sandeen ext4_warning(inode->i_sb, 255bc965ab3STheodore Ts'o "couldn't mark inode dirty (err %d)", err); 256bc965ab3STheodore Ts'o goto stop_handle; 257bc965ab3STheodore Ts'o } 258ac27a0ecSDave Kleikamp if (inode->i_blocks) 259617ba13bSMingming Cao ext4_truncate(inode); 260bc965ab3STheodore Ts'o 261bc965ab3STheodore Ts'o /* 262bc965ab3STheodore Ts'o * ext4_ext_truncate() doesn't reserve any slop when it 263bc965ab3STheodore Ts'o * restarts journal transactions; therefore there may not be 264bc965ab3STheodore Ts'o * enough credits left in the handle to remove the inode from 265bc965ab3STheodore Ts'o * the orphan list and set the dtime field. 266bc965ab3STheodore Ts'o */ 2670390131bSFrank Mayhar if (!ext4_handle_has_enough_credits(handle, 3)) { 268bc965ab3STheodore Ts'o err = ext4_journal_extend(handle, 3); 269bc965ab3STheodore Ts'o if (err > 0) 270bc965ab3STheodore Ts'o err = ext4_journal_restart(handle, 3); 271bc965ab3STheodore Ts'o if (err != 0) { 27212062dddSEric Sandeen ext4_warning(inode->i_sb, 273bc965ab3STheodore Ts'o "couldn't extend journal (err %d)", err); 274bc965ab3STheodore Ts'o stop_handle: 275bc965ab3STheodore Ts'o ext4_journal_stop(handle); 27645388219STheodore Ts'o ext4_orphan_del(NULL, inode); 2778e8ad8a5SJan Kara sb_end_intwrite(inode->i_sb); 278bc965ab3STheodore Ts'o goto no_delete; 279bc965ab3STheodore Ts'o } 280bc965ab3STheodore Ts'o } 281bc965ab3STheodore Ts'o 282ac27a0ecSDave Kleikamp /* 283617ba13bSMingming Cao * Kill off the orphan record which ext4_truncate created. 284ac27a0ecSDave Kleikamp * AKPM: I think this can be inside the above `if'. 285617ba13bSMingming Cao * Note that ext4_orphan_del() has to be able to cope with the 286ac27a0ecSDave Kleikamp * deletion of a non-existent orphan - this is because we don't 287617ba13bSMingming Cao * know if ext4_truncate() actually created an orphan record. 288ac27a0ecSDave Kleikamp * (Well, we could do this if we need to, but heck - it works) 289ac27a0ecSDave Kleikamp */ 290617ba13bSMingming Cao ext4_orphan_del(handle, inode); 291617ba13bSMingming Cao EXT4_I(inode)->i_dtime = get_seconds(); 292ac27a0ecSDave Kleikamp 293ac27a0ecSDave Kleikamp /* 294ac27a0ecSDave Kleikamp * One subtle ordering requirement: if anything has gone wrong 295ac27a0ecSDave Kleikamp * (transaction abort, IO errors, whatever), then we can still 296ac27a0ecSDave Kleikamp * do these next steps (the fs will already have been marked as 297ac27a0ecSDave Kleikamp * having errors), but we can't free the inode if the mark_dirty 298ac27a0ecSDave Kleikamp * fails. 299ac27a0ecSDave Kleikamp */ 300617ba13bSMingming Cao if (ext4_mark_inode_dirty(handle, inode)) 301ac27a0ecSDave Kleikamp /* If that failed, just do the required in-core inode clear. */ 3020930fcc1SAl Viro ext4_clear_inode(inode); 303ac27a0ecSDave Kleikamp else 304617ba13bSMingming Cao ext4_free_inode(handle, inode); 305617ba13bSMingming Cao ext4_journal_stop(handle); 3068e8ad8a5SJan Kara sb_end_intwrite(inode->i_sb); 307ac27a0ecSDave Kleikamp return; 308ac27a0ecSDave Kleikamp no_delete: 3090930fcc1SAl Viro ext4_clear_inode(inode); /* We must guarantee clearing of inode... */ 310ac27a0ecSDave Kleikamp } 311ac27a0ecSDave Kleikamp 312a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA 313a9e7f447SDmitry Monakhov qsize_t *ext4_get_reserved_space(struct inode *inode) 31460e58e0fSMingming Cao { 315a9e7f447SDmitry Monakhov return &EXT4_I(inode)->i_reserved_quota; 31660e58e0fSMingming Cao } 317a9e7f447SDmitry Monakhov #endif 3189d0be502STheodore Ts'o 31912219aeaSAneesh Kumar K.V /* 3200637c6f4STheodore Ts'o * Called with i_data_sem down, which is important since we can call 3210637c6f4STheodore Ts'o * ext4_discard_preallocations() from here. 3220637c6f4STheodore Ts'o */ 3235f634d06SAneesh Kumar K.V void ext4_da_update_reserve_space(struct inode *inode, 3245f634d06SAneesh Kumar K.V int used, int quota_claim) 32512219aeaSAneesh Kumar K.V { 32612219aeaSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 3270637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 32812219aeaSAneesh Kumar K.V 3290637c6f4STheodore Ts'o spin_lock(&ei->i_block_reservation_lock); 330d8990240SAditya Kali trace_ext4_da_update_reserve_space(inode, used, quota_claim); 3310637c6f4STheodore Ts'o if (unlikely(used > ei->i_reserved_data_blocks)) { 3328de5c325STheodore Ts'o ext4_warning(inode->i_sb, "%s: ino %lu, used %d " 3331084f252STheodore Ts'o "with only %d reserved data blocks", 3340637c6f4STheodore Ts'o __func__, inode->i_ino, used, 3350637c6f4STheodore Ts'o ei->i_reserved_data_blocks); 3360637c6f4STheodore Ts'o WARN_ON(1); 3370637c6f4STheodore Ts'o used = ei->i_reserved_data_blocks; 3386bc6e63fSAneesh Kumar K.V } 33912219aeaSAneesh Kumar K.V 3400637c6f4STheodore Ts'o /* Update per-inode reservations */ 3410637c6f4STheodore Ts'o ei->i_reserved_data_blocks -= used; 34271d4f7d0STheodore Ts'o percpu_counter_sub(&sbi->s_dirtyclusters_counter, used); 3430637c6f4STheodore Ts'o 34412219aeaSAneesh Kumar K.V spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); 34560e58e0fSMingming Cao 34672b8ab9dSEric Sandeen /* Update quota subsystem for data blocks */ 34772b8ab9dSEric Sandeen if (quota_claim) 3487b415bf6SAditya Kali dquot_claim_block(inode, EXT4_C2B(sbi, used)); 34972b8ab9dSEric Sandeen else { 3505f634d06SAneesh Kumar K.V /* 3515f634d06SAneesh Kumar K.V * We did fallocate with an offset that is already delayed 3525f634d06SAneesh Kumar K.V * allocated. So on delayed allocated writeback we should 35372b8ab9dSEric Sandeen * not re-claim the quota for fallocated blocks. 3545f634d06SAneesh Kumar K.V */ 3557b415bf6SAditya Kali dquot_release_reservation_block(inode, EXT4_C2B(sbi, used)); 3565f634d06SAneesh Kumar K.V } 357d6014301SAneesh Kumar K.V 358d6014301SAneesh Kumar K.V /* 359d6014301SAneesh Kumar K.V * If we have done all the pending block allocations and if 360d6014301SAneesh Kumar K.V * there aren't any writers on the inode, we can discard the 361d6014301SAneesh Kumar K.V * inode's preallocations. 362d6014301SAneesh Kumar K.V */ 3630637c6f4STheodore Ts'o if ((ei->i_reserved_data_blocks == 0) && 3640637c6f4STheodore Ts'o (atomic_read(&inode->i_writecount) == 0)) 365d6014301SAneesh Kumar K.V ext4_discard_preallocations(inode); 36612219aeaSAneesh Kumar K.V } 36712219aeaSAneesh Kumar K.V 368e29136f8STheodore Ts'o static int __check_block_validity(struct inode *inode, const char *func, 369c398eda0STheodore Ts'o unsigned int line, 37024676da4STheodore Ts'o struct ext4_map_blocks *map) 3716fd058f7STheodore Ts'o { 37224676da4STheodore Ts'o if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk, 37324676da4STheodore Ts'o map->m_len)) { 374c398eda0STheodore Ts'o ext4_error_inode(inode, func, line, map->m_pblk, 375c398eda0STheodore Ts'o "lblock %lu mapped to illegal pblock " 37624676da4STheodore Ts'o "(length %d)", (unsigned long) map->m_lblk, 377c398eda0STheodore Ts'o map->m_len); 3786a797d27SDarrick J. Wong return -EFSCORRUPTED; 3796fd058f7STheodore Ts'o } 3806fd058f7STheodore Ts'o return 0; 3816fd058f7STheodore Ts'o } 3826fd058f7STheodore Ts'o 38353085facSJan Kara int ext4_issue_zeroout(struct inode *inode, ext4_lblk_t lblk, ext4_fsblk_t pblk, 38453085facSJan Kara ext4_lblk_t len) 38553085facSJan Kara { 38653085facSJan Kara int ret; 38753085facSJan Kara 38853085facSJan Kara if (ext4_encrypted_inode(inode)) 38953085facSJan Kara return ext4_encrypted_zeroout(inode, lblk, pblk, len); 39053085facSJan Kara 39153085facSJan Kara ret = sb_issue_zeroout(inode->i_sb, pblk, len, GFP_NOFS); 39253085facSJan Kara if (ret > 0) 39353085facSJan Kara ret = 0; 39453085facSJan Kara 39553085facSJan Kara return ret; 39653085facSJan Kara } 39753085facSJan Kara 398e29136f8STheodore Ts'o #define check_block_validity(inode, map) \ 399c398eda0STheodore Ts'o __check_block_validity((inode), __func__, __LINE__, (map)) 400e29136f8STheodore Ts'o 401921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 402921f266bSDmitry Monakhov static void ext4_map_blocks_es_recheck(handle_t *handle, 403921f266bSDmitry Monakhov struct inode *inode, 404921f266bSDmitry Monakhov struct ext4_map_blocks *es_map, 405921f266bSDmitry Monakhov struct ext4_map_blocks *map, 406921f266bSDmitry Monakhov int flags) 407921f266bSDmitry Monakhov { 408921f266bSDmitry Monakhov int retval; 409921f266bSDmitry Monakhov 410921f266bSDmitry Monakhov map->m_flags = 0; 411921f266bSDmitry Monakhov /* 412921f266bSDmitry Monakhov * There is a race window that the result is not the same. 413921f266bSDmitry Monakhov * e.g. xfstests #223 when dioread_nolock enables. The reason 414921f266bSDmitry Monakhov * is that we lookup a block mapping in extent status tree with 415921f266bSDmitry Monakhov * out taking i_data_sem. So at the time the unwritten extent 416921f266bSDmitry Monakhov * could be converted. 417921f266bSDmitry Monakhov */ 418c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 419921f266bSDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 420921f266bSDmitry Monakhov retval = ext4_ext_map_blocks(handle, inode, map, flags & 421921f266bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 422921f266bSDmitry Monakhov } else { 423921f266bSDmitry Monakhov retval = ext4_ind_map_blocks(handle, inode, map, flags & 424921f266bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 425921f266bSDmitry Monakhov } 426921f266bSDmitry Monakhov up_read((&EXT4_I(inode)->i_data_sem)); 427921f266bSDmitry Monakhov 428921f266bSDmitry Monakhov /* 429921f266bSDmitry Monakhov * We don't check m_len because extent will be collpased in status 430921f266bSDmitry Monakhov * tree. So the m_len might not equal. 431921f266bSDmitry Monakhov */ 432921f266bSDmitry Monakhov if (es_map->m_lblk != map->m_lblk || 433921f266bSDmitry Monakhov es_map->m_flags != map->m_flags || 434921f266bSDmitry Monakhov es_map->m_pblk != map->m_pblk) { 435bdafe42aSTheodore Ts'o printk("ES cache assertion failed for inode: %lu " 436921f266bSDmitry Monakhov "es_cached ex [%d/%d/%llu/%x] != " 437921f266bSDmitry Monakhov "found ex [%d/%d/%llu/%x] retval %d flags %x\n", 438921f266bSDmitry Monakhov inode->i_ino, es_map->m_lblk, es_map->m_len, 439921f266bSDmitry Monakhov es_map->m_pblk, es_map->m_flags, map->m_lblk, 440921f266bSDmitry Monakhov map->m_len, map->m_pblk, map->m_flags, 441921f266bSDmitry Monakhov retval, flags); 442921f266bSDmitry Monakhov } 443921f266bSDmitry Monakhov } 444921f266bSDmitry Monakhov #endif /* ES_AGGRESSIVE_TEST */ 445921f266bSDmitry Monakhov 44655138e0bSTheodore Ts'o /* 447e35fd660STheodore Ts'o * The ext4_map_blocks() function tries to look up the requested blocks, 4482b2d6d01STheodore Ts'o * and returns if the blocks are already mapped. 449f5ab0d1fSMingming Cao * 450f5ab0d1fSMingming Cao * Otherwise it takes the write lock of the i_data_sem and allocate blocks 451f5ab0d1fSMingming Cao * and store the allocated blocks in the result buffer head and mark it 452f5ab0d1fSMingming Cao * mapped. 453f5ab0d1fSMingming Cao * 454e35fd660STheodore Ts'o * If file type is extents based, it will call ext4_ext_map_blocks(), 455e35fd660STheodore Ts'o * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping 456f5ab0d1fSMingming Cao * based files 457f5ab0d1fSMingming Cao * 458facab4d9SJan Kara * On success, it returns the number of blocks being mapped or allocated. if 459facab4d9SJan Kara * create==0 and the blocks are pre-allocated and unwritten, the resulting @map 460facab4d9SJan Kara * is marked as unwritten. If the create == 1, it will mark @map as mapped. 461f5ab0d1fSMingming Cao * 462f5ab0d1fSMingming Cao * It returns 0 if plain look up failed (blocks have not been allocated), in 463facab4d9SJan Kara * that case, @map is returned as unmapped but we still do fill map->m_len to 464facab4d9SJan Kara * indicate the length of a hole starting at map->m_lblk. 465f5ab0d1fSMingming Cao * 466f5ab0d1fSMingming Cao * It returns the error in case of allocation failure. 467f5ab0d1fSMingming Cao */ 468e35fd660STheodore Ts'o int ext4_map_blocks(handle_t *handle, struct inode *inode, 469e35fd660STheodore Ts'o struct ext4_map_blocks *map, int flags) 4700e855ac8SAneesh Kumar K.V { 471d100eef2SZheng Liu struct extent_status es; 4720e855ac8SAneesh Kumar K.V int retval; 473b8a86845SLukas Czerner int ret = 0; 474921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 475921f266bSDmitry Monakhov struct ext4_map_blocks orig_map; 476921f266bSDmitry Monakhov 477921f266bSDmitry Monakhov memcpy(&orig_map, map, sizeof(*map)); 478921f266bSDmitry Monakhov #endif 479f5ab0d1fSMingming Cao 480e35fd660STheodore Ts'o map->m_flags = 0; 481e35fd660STheodore Ts'o ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u," 482e35fd660STheodore Ts'o "logical block %lu\n", inode->i_ino, flags, map->m_len, 483e35fd660STheodore Ts'o (unsigned long) map->m_lblk); 484d100eef2SZheng Liu 485e861b5e9STheodore Ts'o /* 486e861b5e9STheodore Ts'o * ext4_map_blocks returns an int, and m_len is an unsigned int 487e861b5e9STheodore Ts'o */ 488e861b5e9STheodore Ts'o if (unlikely(map->m_len > INT_MAX)) 489e861b5e9STheodore Ts'o map->m_len = INT_MAX; 490e861b5e9STheodore Ts'o 4914adb6ab3SKazuya Mio /* We can handle the block number less than EXT_MAX_BLOCKS */ 4924adb6ab3SKazuya Mio if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS)) 4936a797d27SDarrick J. Wong return -EFSCORRUPTED; 4944adb6ab3SKazuya Mio 495d100eef2SZheng Liu /* Lookup extent status tree firstly */ 496d100eef2SZheng Liu if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) { 497d100eef2SZheng Liu if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) { 498d100eef2SZheng Liu map->m_pblk = ext4_es_pblock(&es) + 499d100eef2SZheng Liu map->m_lblk - es.es_lblk; 500d100eef2SZheng Liu map->m_flags |= ext4_es_is_written(&es) ? 501d100eef2SZheng Liu EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN; 502d100eef2SZheng Liu retval = es.es_len - (map->m_lblk - es.es_lblk); 503d100eef2SZheng Liu if (retval > map->m_len) 504d100eef2SZheng Liu retval = map->m_len; 505d100eef2SZheng Liu map->m_len = retval; 506d100eef2SZheng Liu } else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) { 507facab4d9SJan Kara map->m_pblk = 0; 508facab4d9SJan Kara retval = es.es_len - (map->m_lblk - es.es_lblk); 509facab4d9SJan Kara if (retval > map->m_len) 510facab4d9SJan Kara retval = map->m_len; 511facab4d9SJan Kara map->m_len = retval; 512d100eef2SZheng Liu retval = 0; 513d100eef2SZheng Liu } else { 514d100eef2SZheng Liu BUG_ON(1); 515d100eef2SZheng Liu } 516921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 517921f266bSDmitry Monakhov ext4_map_blocks_es_recheck(handle, inode, map, 518921f266bSDmitry Monakhov &orig_map, flags); 519921f266bSDmitry Monakhov #endif 520d100eef2SZheng Liu goto found; 521d100eef2SZheng Liu } 522d100eef2SZheng Liu 5234df3d265SAneesh Kumar K.V /* 524b920c755STheodore Ts'o * Try to see if we can get the block without requesting a new 525b920c755STheodore Ts'o * file system block. 5264df3d265SAneesh Kumar K.V */ 527c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 52812e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 529a4e5d88bSDmitry Monakhov retval = ext4_ext_map_blocks(handle, inode, map, flags & 530a4e5d88bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 5314df3d265SAneesh Kumar K.V } else { 532a4e5d88bSDmitry Monakhov retval = ext4_ind_map_blocks(handle, inode, map, flags & 533a4e5d88bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 5340e855ac8SAneesh Kumar K.V } 535f7fec032SZheng Liu if (retval > 0) { 5363be78c73STheodore Ts'o unsigned int status; 537f7fec032SZheng Liu 53844fb851dSZheng Liu if (unlikely(retval != map->m_len)) { 53944fb851dSZheng Liu ext4_warning(inode->i_sb, 54044fb851dSZheng Liu "ES len assertion failed for inode " 54144fb851dSZheng Liu "%lu: retval %d != map->m_len %d", 54244fb851dSZheng Liu inode->i_ino, retval, map->m_len); 54344fb851dSZheng Liu WARN_ON(1); 544921f266bSDmitry Monakhov } 545921f266bSDmitry Monakhov 546f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 547f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 548f7fec032SZheng Liu if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) && 549d2dc317dSLukas Czerner !(status & EXTENT_STATUS_WRITTEN) && 550f7fec032SZheng Liu ext4_find_delalloc_range(inode, map->m_lblk, 551f7fec032SZheng Liu map->m_lblk + map->m_len - 1)) 552f7fec032SZheng Liu status |= EXTENT_STATUS_DELAYED; 553f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, 554f7fec032SZheng Liu map->m_len, map->m_pblk, status); 555f7fec032SZheng Liu if (ret < 0) 556f7fec032SZheng Liu retval = ret; 557f7fec032SZheng Liu } 5584df3d265SAneesh Kumar K.V up_read((&EXT4_I(inode)->i_data_sem)); 559f5ab0d1fSMingming Cao 560d100eef2SZheng Liu found: 561e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) { 562b8a86845SLukas Czerner ret = check_block_validity(inode, map); 5636fd058f7STheodore Ts'o if (ret != 0) 5646fd058f7STheodore Ts'o return ret; 5656fd058f7STheodore Ts'o } 5666fd058f7STheodore Ts'o 567f5ab0d1fSMingming Cao /* If it is only a block(s) look up */ 568c2177057STheodore Ts'o if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) 5694df3d265SAneesh Kumar K.V return retval; 5704df3d265SAneesh Kumar K.V 5714df3d265SAneesh Kumar K.V /* 572f5ab0d1fSMingming Cao * Returns if the blocks have already allocated 573f5ab0d1fSMingming Cao * 574f5ab0d1fSMingming Cao * Note that if blocks have been preallocated 575df3ab170STao Ma * ext4_ext_get_block() returns the create = 0 576f5ab0d1fSMingming Cao * with buffer head unmapped. 577f5ab0d1fSMingming Cao */ 578e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) 579b8a86845SLukas Czerner /* 580b8a86845SLukas Czerner * If we need to convert extent to unwritten 581b8a86845SLukas Czerner * we continue and do the actual work in 582b8a86845SLukas Czerner * ext4_ext_map_blocks() 583b8a86845SLukas Czerner */ 584b8a86845SLukas Czerner if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN)) 585f5ab0d1fSMingming Cao return retval; 586f5ab0d1fSMingming Cao 587f5ab0d1fSMingming Cao /* 588a25a4e1aSZheng Liu * Here we clear m_flags because after allocating an new extent, 589a25a4e1aSZheng Liu * it will be set again. 5902a8964d6SAneesh Kumar K.V */ 591a25a4e1aSZheng Liu map->m_flags &= ~EXT4_MAP_FLAGS; 5922a8964d6SAneesh Kumar K.V 5932a8964d6SAneesh Kumar K.V /* 594556615dcSLukas Czerner * New blocks allocate and/or writing to unwritten extent 595f5ab0d1fSMingming Cao * will possibly result in updating i_data, so we take 596d91bd2c1SSeunghun Lee * the write lock of i_data_sem, and call get_block() 597f5ab0d1fSMingming Cao * with create == 1 flag. 5984df3d265SAneesh Kumar K.V */ 599c8b459f4SLukas Czerner down_write(&EXT4_I(inode)->i_data_sem); 600d2a17637SMingming Cao 601d2a17637SMingming Cao /* 6024df3d265SAneesh Kumar K.V * We need to check for EXT4 here because migrate 6034df3d265SAneesh Kumar K.V * could have changed the inode type in between 6044df3d265SAneesh Kumar K.V */ 60512e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 606e35fd660STheodore Ts'o retval = ext4_ext_map_blocks(handle, inode, map, flags); 6070e855ac8SAneesh Kumar K.V } else { 608e35fd660STheodore Ts'o retval = ext4_ind_map_blocks(handle, inode, map, flags); 609267e4db9SAneesh Kumar K.V 610e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_NEW) { 611267e4db9SAneesh Kumar K.V /* 612267e4db9SAneesh Kumar K.V * We allocated new blocks which will result in 613267e4db9SAneesh Kumar K.V * i_data's format changing. Force the migrate 614267e4db9SAneesh Kumar K.V * to fail by clearing migrate flags 615267e4db9SAneesh Kumar K.V */ 61619f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE); 617267e4db9SAneesh Kumar K.V } 6182ac3b6e0STheodore Ts'o 619d2a17637SMingming Cao /* 6202ac3b6e0STheodore Ts'o * Update reserved blocks/metadata blocks after successful 6215f634d06SAneesh Kumar K.V * block allocation which had been deferred till now. We don't 6225f634d06SAneesh Kumar K.V * support fallocate for non extent files. So we can update 6235f634d06SAneesh Kumar K.V * reserve space here. 624d2a17637SMingming Cao */ 6255f634d06SAneesh Kumar K.V if ((retval > 0) && 6261296cc85SAneesh Kumar K.V (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)) 6275f634d06SAneesh Kumar K.V ext4_da_update_reserve_space(inode, retval, 1); 6285f634d06SAneesh Kumar K.V } 629d2a17637SMingming Cao 630f7fec032SZheng Liu if (retval > 0) { 6313be78c73STheodore Ts'o unsigned int status; 632f7fec032SZheng Liu 63344fb851dSZheng Liu if (unlikely(retval != map->m_len)) { 63444fb851dSZheng Liu ext4_warning(inode->i_sb, 63544fb851dSZheng Liu "ES len assertion failed for inode " 63644fb851dSZheng Liu "%lu: retval %d != map->m_len %d", 63744fb851dSZheng Liu inode->i_ino, retval, map->m_len); 63844fb851dSZheng Liu WARN_ON(1); 639921f266bSDmitry Monakhov } 640921f266bSDmitry Monakhov 641adb23551SZheng Liu /* 642c86d8db3SJan Kara * We have to zeroout blocks before inserting them into extent 643c86d8db3SJan Kara * status tree. Otherwise someone could look them up there and 644c86d8db3SJan Kara * use them before they are really zeroed. 645c86d8db3SJan Kara */ 646c86d8db3SJan Kara if (flags & EXT4_GET_BLOCKS_ZERO && 647c86d8db3SJan Kara map->m_flags & EXT4_MAP_MAPPED && 648c86d8db3SJan Kara map->m_flags & EXT4_MAP_NEW) { 649c86d8db3SJan Kara ret = ext4_issue_zeroout(inode, map->m_lblk, 650c86d8db3SJan Kara map->m_pblk, map->m_len); 651c86d8db3SJan Kara if (ret) { 652c86d8db3SJan Kara retval = ret; 653c86d8db3SJan Kara goto out_sem; 654c86d8db3SJan Kara } 655c86d8db3SJan Kara } 656c86d8db3SJan Kara 657c86d8db3SJan Kara /* 658adb23551SZheng Liu * If the extent has been zeroed out, we don't need to update 659adb23551SZheng Liu * extent status tree. 660adb23551SZheng Liu */ 661adb23551SZheng Liu if ((flags & EXT4_GET_BLOCKS_PRE_IO) && 662adb23551SZheng Liu ext4_es_lookup_extent(inode, map->m_lblk, &es)) { 663adb23551SZheng Liu if (ext4_es_is_written(&es)) 664c86d8db3SJan Kara goto out_sem; 665adb23551SZheng Liu } 666f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 667f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 668f7fec032SZheng Liu if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) && 669d2dc317dSLukas Czerner !(status & EXTENT_STATUS_WRITTEN) && 670f7fec032SZheng Liu ext4_find_delalloc_range(inode, map->m_lblk, 671f7fec032SZheng Liu map->m_lblk + map->m_len - 1)) 672f7fec032SZheng Liu status |= EXTENT_STATUS_DELAYED; 673f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 674f7fec032SZheng Liu map->m_pblk, status); 675c86d8db3SJan Kara if (ret < 0) { 67651865fdaSZheng Liu retval = ret; 677c86d8db3SJan Kara goto out_sem; 678c86d8db3SJan Kara } 67951865fdaSZheng Liu } 6805356f261SAditya Kali 681c86d8db3SJan Kara out_sem: 6820e855ac8SAneesh Kumar K.V up_write((&EXT4_I(inode)->i_data_sem)); 683e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) { 684b8a86845SLukas Czerner ret = check_block_validity(inode, map); 6856fd058f7STheodore Ts'o if (ret != 0) 6866fd058f7STheodore Ts'o return ret; 68706bd3c36SJan Kara 68806bd3c36SJan Kara /* 68906bd3c36SJan Kara * Inodes with freshly allocated blocks where contents will be 69006bd3c36SJan Kara * visible after transaction commit must be on transaction's 69106bd3c36SJan Kara * ordered data list. 69206bd3c36SJan Kara */ 69306bd3c36SJan Kara if (map->m_flags & EXT4_MAP_NEW && 69406bd3c36SJan Kara !(map->m_flags & EXT4_MAP_UNWRITTEN) && 69506bd3c36SJan Kara !(flags & EXT4_GET_BLOCKS_ZERO) && 69606bd3c36SJan Kara !IS_NOQUOTA(inode) && 69706bd3c36SJan Kara ext4_should_order_data(inode)) { 698ee0876bcSJan Kara if (flags & EXT4_GET_BLOCKS_IO_SUBMIT) 699ee0876bcSJan Kara ret = ext4_jbd2_inode_add_wait(handle, inode); 700ee0876bcSJan Kara else 701ee0876bcSJan Kara ret = ext4_jbd2_inode_add_write(handle, inode); 70206bd3c36SJan Kara if (ret) 70306bd3c36SJan Kara return ret; 70406bd3c36SJan Kara } 7056fd058f7STheodore Ts'o } 7060e855ac8SAneesh Kumar K.V return retval; 7070e855ac8SAneesh Kumar K.V } 7080e855ac8SAneesh Kumar K.V 709ed8ad838SJan Kara /* 710ed8ad838SJan Kara * Update EXT4_MAP_FLAGS in bh->b_state. For buffer heads attached to pages 711ed8ad838SJan Kara * we have to be careful as someone else may be manipulating b_state as well. 712ed8ad838SJan Kara */ 713ed8ad838SJan Kara static void ext4_update_bh_state(struct buffer_head *bh, unsigned long flags) 714ed8ad838SJan Kara { 715ed8ad838SJan Kara unsigned long old_state; 716ed8ad838SJan Kara unsigned long new_state; 717ed8ad838SJan Kara 718ed8ad838SJan Kara flags &= EXT4_MAP_FLAGS; 719ed8ad838SJan Kara 720ed8ad838SJan Kara /* Dummy buffer_head? Set non-atomically. */ 721ed8ad838SJan Kara if (!bh->b_page) { 722ed8ad838SJan Kara bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | flags; 723ed8ad838SJan Kara return; 724ed8ad838SJan Kara } 725ed8ad838SJan Kara /* 726ed8ad838SJan Kara * Someone else may be modifying b_state. Be careful! This is ugly but 727ed8ad838SJan Kara * once we get rid of using bh as a container for mapping information 728ed8ad838SJan Kara * to pass to / from get_block functions, this can go away. 729ed8ad838SJan Kara */ 730ed8ad838SJan Kara do { 731ed8ad838SJan Kara old_state = READ_ONCE(bh->b_state); 732ed8ad838SJan Kara new_state = (old_state & ~EXT4_MAP_FLAGS) | flags; 733ed8ad838SJan Kara } while (unlikely( 734ed8ad838SJan Kara cmpxchg(&bh->b_state, old_state, new_state) != old_state)); 735ed8ad838SJan Kara } 736ed8ad838SJan Kara 7372ed88685STheodore Ts'o static int _ext4_get_block(struct inode *inode, sector_t iblock, 7382ed88685STheodore Ts'o struct buffer_head *bh, int flags) 739ac27a0ecSDave Kleikamp { 7402ed88685STheodore Ts'o struct ext4_map_blocks map; 741efe70c29SJan Kara int ret = 0; 742ac27a0ecSDave Kleikamp 74346c7f254STao Ma if (ext4_has_inline_data(inode)) 74446c7f254STao Ma return -ERANGE; 74546c7f254STao Ma 7462ed88685STheodore Ts'o map.m_lblk = iblock; 7472ed88685STheodore Ts'o map.m_len = bh->b_size >> inode->i_blkbits; 7482ed88685STheodore Ts'o 749efe70c29SJan Kara ret = ext4_map_blocks(ext4_journal_current_handle(), inode, &map, 750efe70c29SJan Kara flags); 751ac27a0ecSDave Kleikamp if (ret > 0) { 7522ed88685STheodore Ts'o map_bh(bh, inode->i_sb, map.m_pblk); 753ed8ad838SJan Kara ext4_update_bh_state(bh, map.m_flags); 7542ed88685STheodore Ts'o bh->b_size = inode->i_sb->s_blocksize * map.m_len; 755ac27a0ecSDave Kleikamp ret = 0; 756ac27a0ecSDave Kleikamp } 757ac27a0ecSDave Kleikamp return ret; 758ac27a0ecSDave Kleikamp } 759ac27a0ecSDave Kleikamp 7602ed88685STheodore Ts'o int ext4_get_block(struct inode *inode, sector_t iblock, 7612ed88685STheodore Ts'o struct buffer_head *bh, int create) 7622ed88685STheodore Ts'o { 7632ed88685STheodore Ts'o return _ext4_get_block(inode, iblock, bh, 7642ed88685STheodore Ts'o create ? EXT4_GET_BLOCKS_CREATE : 0); 7652ed88685STheodore Ts'o } 7662ed88685STheodore Ts'o 767ac27a0ecSDave Kleikamp /* 768705965bdSJan Kara * Get block function used when preparing for buffered write if we require 769705965bdSJan Kara * creating an unwritten extent if blocks haven't been allocated. The extent 770705965bdSJan Kara * will be converted to written after the IO is complete. 771705965bdSJan Kara */ 772705965bdSJan Kara int ext4_get_block_unwritten(struct inode *inode, sector_t iblock, 773705965bdSJan Kara struct buffer_head *bh_result, int create) 774705965bdSJan Kara { 775705965bdSJan Kara ext4_debug("ext4_get_block_unwritten: inode %lu, create flag %d\n", 776705965bdSJan Kara inode->i_ino, create); 777705965bdSJan Kara return _ext4_get_block(inode, iblock, bh_result, 778705965bdSJan Kara EXT4_GET_BLOCKS_IO_CREATE_EXT); 779705965bdSJan Kara } 780705965bdSJan Kara 781efe70c29SJan Kara /* Maximum number of blocks we map for direct IO at once. */ 782efe70c29SJan Kara #define DIO_MAX_BLOCKS 4096 783efe70c29SJan Kara 784e84dfbe2SJan Kara /* 785e84dfbe2SJan Kara * Get blocks function for the cases that need to start a transaction - 786e84dfbe2SJan Kara * generally difference cases of direct IO and DAX IO. It also handles retries 787e84dfbe2SJan Kara * in case of ENOSPC. 788e84dfbe2SJan Kara */ 789e84dfbe2SJan Kara static int ext4_get_block_trans(struct inode *inode, sector_t iblock, 790e84dfbe2SJan Kara struct buffer_head *bh_result, int flags) 791efe70c29SJan Kara { 792efe70c29SJan Kara int dio_credits; 793e84dfbe2SJan Kara handle_t *handle; 794e84dfbe2SJan Kara int retries = 0; 795e84dfbe2SJan Kara int ret; 796efe70c29SJan Kara 797efe70c29SJan Kara /* Trim mapping request to maximum we can map at once for DIO */ 798efe70c29SJan Kara if (bh_result->b_size >> inode->i_blkbits > DIO_MAX_BLOCKS) 799efe70c29SJan Kara bh_result->b_size = DIO_MAX_BLOCKS << inode->i_blkbits; 800efe70c29SJan Kara dio_credits = ext4_chunk_trans_blocks(inode, 801efe70c29SJan Kara bh_result->b_size >> inode->i_blkbits); 802e84dfbe2SJan Kara retry: 803e84dfbe2SJan Kara handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, dio_credits); 804e84dfbe2SJan Kara if (IS_ERR(handle)) 805e84dfbe2SJan Kara return PTR_ERR(handle); 806e84dfbe2SJan Kara 807e84dfbe2SJan Kara ret = _ext4_get_block(inode, iblock, bh_result, flags); 808e84dfbe2SJan Kara ext4_journal_stop(handle); 809e84dfbe2SJan Kara 810e84dfbe2SJan Kara if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries)) 811e84dfbe2SJan Kara goto retry; 812e84dfbe2SJan Kara return ret; 813efe70c29SJan Kara } 814efe70c29SJan Kara 815705965bdSJan Kara /* Get block function for DIO reads and writes to inodes without extents */ 816705965bdSJan Kara int ext4_dio_get_block(struct inode *inode, sector_t iblock, 817705965bdSJan Kara struct buffer_head *bh, int create) 818705965bdSJan Kara { 819efe70c29SJan Kara /* We don't expect handle for direct IO */ 820efe70c29SJan Kara WARN_ON_ONCE(ext4_journal_current_handle()); 821efe70c29SJan Kara 822e84dfbe2SJan Kara if (!create) 823e84dfbe2SJan Kara return _ext4_get_block(inode, iblock, bh, 0); 824e84dfbe2SJan Kara return ext4_get_block_trans(inode, iblock, bh, EXT4_GET_BLOCKS_CREATE); 825705965bdSJan Kara } 826705965bdSJan Kara 827705965bdSJan Kara /* 828109811c2SJan Kara * Get block function for AIO DIO writes when we create unwritten extent if 829705965bdSJan Kara * blocks are not allocated yet. The extent will be converted to written 830705965bdSJan Kara * after IO is complete. 831705965bdSJan Kara */ 832109811c2SJan Kara static int ext4_dio_get_block_unwritten_async(struct inode *inode, 833109811c2SJan Kara sector_t iblock, struct buffer_head *bh_result, int create) 834705965bdSJan Kara { 835efe70c29SJan Kara int ret; 836efe70c29SJan Kara 837efe70c29SJan Kara /* We don't expect handle for direct IO */ 838efe70c29SJan Kara WARN_ON_ONCE(ext4_journal_current_handle()); 839efe70c29SJan Kara 840e84dfbe2SJan Kara ret = ext4_get_block_trans(inode, iblock, bh_result, 841705965bdSJan Kara EXT4_GET_BLOCKS_IO_CREATE_EXT); 842efe70c29SJan Kara 843109811c2SJan Kara /* 844109811c2SJan Kara * When doing DIO using unwritten extents, we need io_end to convert 845109811c2SJan Kara * unwritten extents to written on IO completion. We allocate io_end 846109811c2SJan Kara * once we spot unwritten extent and store it in b_private. Generic 847109811c2SJan Kara * DIO code keeps b_private set and furthermore passes the value to 848109811c2SJan Kara * our completion callback in 'private' argument. 849109811c2SJan Kara */ 850109811c2SJan Kara if (!ret && buffer_unwritten(bh_result)) { 851109811c2SJan Kara if (!bh_result->b_private) { 852109811c2SJan Kara ext4_io_end_t *io_end; 853109811c2SJan Kara 854109811c2SJan Kara io_end = ext4_init_io_end(inode, GFP_KERNEL); 855109811c2SJan Kara if (!io_end) 856109811c2SJan Kara return -ENOMEM; 857109811c2SJan Kara bh_result->b_private = io_end; 858109811c2SJan Kara ext4_set_io_unwritten_flag(inode, io_end); 859efe70c29SJan Kara } 860109811c2SJan Kara set_buffer_defer_completion(bh_result); 861109811c2SJan Kara } 862109811c2SJan Kara 863109811c2SJan Kara return ret; 864109811c2SJan Kara } 865109811c2SJan Kara 866109811c2SJan Kara /* 867109811c2SJan Kara * Get block function for non-AIO DIO writes when we create unwritten extent if 868109811c2SJan Kara * blocks are not allocated yet. The extent will be converted to written 869109811c2SJan Kara * after IO is complete from ext4_ext_direct_IO() function. 870109811c2SJan Kara */ 871109811c2SJan Kara static int ext4_dio_get_block_unwritten_sync(struct inode *inode, 872109811c2SJan Kara sector_t iblock, struct buffer_head *bh_result, int create) 873109811c2SJan Kara { 874109811c2SJan Kara int ret; 875109811c2SJan Kara 876109811c2SJan Kara /* We don't expect handle for direct IO */ 877109811c2SJan Kara WARN_ON_ONCE(ext4_journal_current_handle()); 878109811c2SJan Kara 879e84dfbe2SJan Kara ret = ext4_get_block_trans(inode, iblock, bh_result, 880109811c2SJan Kara EXT4_GET_BLOCKS_IO_CREATE_EXT); 881109811c2SJan Kara 882109811c2SJan Kara /* 883109811c2SJan Kara * Mark inode as having pending DIO writes to unwritten extents. 884109811c2SJan Kara * ext4_ext_direct_IO() checks this flag and converts extents to 885109811c2SJan Kara * written. 886109811c2SJan Kara */ 887109811c2SJan Kara if (!ret && buffer_unwritten(bh_result)) 888109811c2SJan Kara ext4_set_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN); 889efe70c29SJan Kara 890efe70c29SJan Kara return ret; 891705965bdSJan Kara } 892705965bdSJan Kara 893705965bdSJan Kara static int ext4_dio_get_block_overwrite(struct inode *inode, sector_t iblock, 894705965bdSJan Kara struct buffer_head *bh_result, int create) 895705965bdSJan Kara { 896705965bdSJan Kara int ret; 897705965bdSJan Kara 898705965bdSJan Kara ext4_debug("ext4_dio_get_block_overwrite: inode %lu, create flag %d\n", 899705965bdSJan Kara inode->i_ino, create); 900efe70c29SJan Kara /* We don't expect handle for direct IO */ 901efe70c29SJan Kara WARN_ON_ONCE(ext4_journal_current_handle()); 902efe70c29SJan Kara 903705965bdSJan Kara ret = _ext4_get_block(inode, iblock, bh_result, 0); 904705965bdSJan Kara /* 905705965bdSJan Kara * Blocks should have been preallocated! ext4_file_write_iter() checks 906705965bdSJan Kara * that. 907705965bdSJan Kara */ 908efe70c29SJan Kara WARN_ON_ONCE(!buffer_mapped(bh_result) || buffer_unwritten(bh_result)); 909705965bdSJan Kara 910705965bdSJan Kara return ret; 911705965bdSJan Kara } 912705965bdSJan Kara 913705965bdSJan Kara 914705965bdSJan Kara /* 915ac27a0ecSDave Kleikamp * `handle' can be NULL if create is zero 916ac27a0ecSDave Kleikamp */ 917617ba13bSMingming Cao struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode, 918c5e298aeSTheodore Ts'o ext4_lblk_t block, int map_flags) 919ac27a0ecSDave Kleikamp { 9202ed88685STheodore Ts'o struct ext4_map_blocks map; 9212ed88685STheodore Ts'o struct buffer_head *bh; 922c5e298aeSTheodore Ts'o int create = map_flags & EXT4_GET_BLOCKS_CREATE; 92310560082STheodore Ts'o int err; 924ac27a0ecSDave Kleikamp 925ac27a0ecSDave Kleikamp J_ASSERT(handle != NULL || create == 0); 926ac27a0ecSDave Kleikamp 9272ed88685STheodore Ts'o map.m_lblk = block; 9282ed88685STheodore Ts'o map.m_len = 1; 929c5e298aeSTheodore Ts'o err = ext4_map_blocks(handle, inode, &map, map_flags); 9302ed88685STheodore Ts'o 93110560082STheodore Ts'o if (err == 0) 93210560082STheodore Ts'o return create ? ERR_PTR(-ENOSPC) : NULL; 9332ed88685STheodore Ts'o if (err < 0) 93410560082STheodore Ts'o return ERR_PTR(err); 9352ed88685STheodore Ts'o 9362ed88685STheodore Ts'o bh = sb_getblk(inode->i_sb, map.m_pblk); 93710560082STheodore Ts'o if (unlikely(!bh)) 93810560082STheodore Ts'o return ERR_PTR(-ENOMEM); 9392ed88685STheodore Ts'o if (map.m_flags & EXT4_MAP_NEW) { 940ac27a0ecSDave Kleikamp J_ASSERT(create != 0); 941ac39849dSAneesh Kumar K.V J_ASSERT(handle != NULL); 942ac27a0ecSDave Kleikamp 943ac27a0ecSDave Kleikamp /* 944ac27a0ecSDave Kleikamp * Now that we do not always journal data, we should 945ac27a0ecSDave Kleikamp * keep in mind whether this should always journal the 946ac27a0ecSDave Kleikamp * new buffer as metadata. For now, regular file 947617ba13bSMingming Cao * writes use ext4_get_block instead, so it's not a 948ac27a0ecSDave Kleikamp * problem. 949ac27a0ecSDave Kleikamp */ 950ac27a0ecSDave Kleikamp lock_buffer(bh); 951ac27a0ecSDave Kleikamp BUFFER_TRACE(bh, "call get_create_access"); 95210560082STheodore Ts'o err = ext4_journal_get_create_access(handle, bh); 95310560082STheodore Ts'o if (unlikely(err)) { 95410560082STheodore Ts'o unlock_buffer(bh); 95510560082STheodore Ts'o goto errout; 95610560082STheodore Ts'o } 95710560082STheodore Ts'o if (!buffer_uptodate(bh)) { 958ac27a0ecSDave Kleikamp memset(bh->b_data, 0, inode->i_sb->s_blocksize); 959ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 960ac27a0ecSDave Kleikamp } 961ac27a0ecSDave Kleikamp unlock_buffer(bh); 9620390131bSFrank Mayhar BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); 9630390131bSFrank Mayhar err = ext4_handle_dirty_metadata(handle, inode, bh); 96410560082STheodore Ts'o if (unlikely(err)) 96510560082STheodore Ts'o goto errout; 96610560082STheodore Ts'o } else 967ac27a0ecSDave Kleikamp BUFFER_TRACE(bh, "not a new buffer"); 968ac27a0ecSDave Kleikamp return bh; 96910560082STheodore Ts'o errout: 97010560082STheodore Ts'o brelse(bh); 97110560082STheodore Ts'o return ERR_PTR(err); 972ac27a0ecSDave Kleikamp } 973ac27a0ecSDave Kleikamp 974617ba13bSMingming Cao struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode, 975c5e298aeSTheodore Ts'o ext4_lblk_t block, int map_flags) 976ac27a0ecSDave Kleikamp { 977ac27a0ecSDave Kleikamp struct buffer_head *bh; 978ac27a0ecSDave Kleikamp 979c5e298aeSTheodore Ts'o bh = ext4_getblk(handle, inode, block, map_flags); 9801c215028STheodore Ts'o if (IS_ERR(bh)) 981ac27a0ecSDave Kleikamp return bh; 9821c215028STheodore Ts'o if (!bh || buffer_uptodate(bh)) 983ac27a0ecSDave Kleikamp return bh; 98465299a3bSChristoph Hellwig ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh); 985ac27a0ecSDave Kleikamp wait_on_buffer(bh); 986ac27a0ecSDave Kleikamp if (buffer_uptodate(bh)) 987ac27a0ecSDave Kleikamp return bh; 988ac27a0ecSDave Kleikamp put_bh(bh); 9891c215028STheodore Ts'o return ERR_PTR(-EIO); 990ac27a0ecSDave Kleikamp } 991ac27a0ecSDave Kleikamp 992f19d5870STao Ma int ext4_walk_page_buffers(handle_t *handle, 993ac27a0ecSDave Kleikamp struct buffer_head *head, 994ac27a0ecSDave Kleikamp unsigned from, 995ac27a0ecSDave Kleikamp unsigned to, 996ac27a0ecSDave Kleikamp int *partial, 997ac27a0ecSDave Kleikamp int (*fn)(handle_t *handle, 998ac27a0ecSDave Kleikamp struct buffer_head *bh)) 999ac27a0ecSDave Kleikamp { 1000ac27a0ecSDave Kleikamp struct buffer_head *bh; 1001ac27a0ecSDave Kleikamp unsigned block_start, block_end; 1002ac27a0ecSDave Kleikamp unsigned blocksize = head->b_size; 1003ac27a0ecSDave Kleikamp int err, ret = 0; 1004ac27a0ecSDave Kleikamp struct buffer_head *next; 1005ac27a0ecSDave Kleikamp 1006ac27a0ecSDave Kleikamp for (bh = head, block_start = 0; 1007ac27a0ecSDave Kleikamp ret == 0 && (bh != head || !block_start); 1008de9a55b8STheodore Ts'o block_start = block_end, bh = next) { 1009ac27a0ecSDave Kleikamp next = bh->b_this_page; 1010ac27a0ecSDave Kleikamp block_end = block_start + blocksize; 1011ac27a0ecSDave Kleikamp if (block_end <= from || block_start >= to) { 1012ac27a0ecSDave Kleikamp if (partial && !buffer_uptodate(bh)) 1013ac27a0ecSDave Kleikamp *partial = 1; 1014ac27a0ecSDave Kleikamp continue; 1015ac27a0ecSDave Kleikamp } 1016ac27a0ecSDave Kleikamp err = (*fn)(handle, bh); 1017ac27a0ecSDave Kleikamp if (!ret) 1018ac27a0ecSDave Kleikamp ret = err; 1019ac27a0ecSDave Kleikamp } 1020ac27a0ecSDave Kleikamp return ret; 1021ac27a0ecSDave Kleikamp } 1022ac27a0ecSDave Kleikamp 1023ac27a0ecSDave Kleikamp /* 1024ac27a0ecSDave Kleikamp * To preserve ordering, it is essential that the hole instantiation and 1025ac27a0ecSDave Kleikamp * the data write be encapsulated in a single transaction. We cannot 1026617ba13bSMingming Cao * close off a transaction and start a new one between the ext4_get_block() 1027dab291afSMingming Cao * and the commit_write(). So doing the jbd2_journal_start at the start of 1028ac27a0ecSDave Kleikamp * prepare_write() is the right place. 1029ac27a0ecSDave Kleikamp * 103036ade451SJan Kara * Also, this function can nest inside ext4_writepage(). In that case, we 103136ade451SJan Kara * *know* that ext4_writepage() has generated enough buffer credits to do the 103236ade451SJan Kara * whole page. So we won't block on the journal in that case, which is good, 103336ade451SJan Kara * because the caller may be PF_MEMALLOC. 1034ac27a0ecSDave Kleikamp * 1035617ba13bSMingming Cao * By accident, ext4 can be reentered when a transaction is open via 1036ac27a0ecSDave Kleikamp * quota file writes. If we were to commit the transaction while thus 1037ac27a0ecSDave Kleikamp * reentered, there can be a deadlock - we would be holding a quota 1038ac27a0ecSDave Kleikamp * lock, and the commit would never complete if another thread had a 1039ac27a0ecSDave Kleikamp * transaction open and was blocking on the quota lock - a ranking 1040ac27a0ecSDave Kleikamp * violation. 1041ac27a0ecSDave Kleikamp * 1042dab291afSMingming Cao * So what we do is to rely on the fact that jbd2_journal_stop/journal_start 1043ac27a0ecSDave Kleikamp * will _not_ run commit under these circumstances because handle->h_ref 1044ac27a0ecSDave Kleikamp * is elevated. We'll still have enough credits for the tiny quotafile 1045ac27a0ecSDave Kleikamp * write. 1046ac27a0ecSDave Kleikamp */ 1047f19d5870STao Ma int do_journal_get_write_access(handle_t *handle, 1048ac27a0ecSDave Kleikamp struct buffer_head *bh) 1049ac27a0ecSDave Kleikamp { 105056d35a4cSJan Kara int dirty = buffer_dirty(bh); 105156d35a4cSJan Kara int ret; 105256d35a4cSJan Kara 1053ac27a0ecSDave Kleikamp if (!buffer_mapped(bh) || buffer_freed(bh)) 1054ac27a0ecSDave Kleikamp return 0; 105556d35a4cSJan Kara /* 1056ebdec241SChristoph Hellwig * __block_write_begin() could have dirtied some buffers. Clean 105756d35a4cSJan Kara * the dirty bit as jbd2_journal_get_write_access() could complain 105856d35a4cSJan Kara * otherwise about fs integrity issues. Setting of the dirty bit 1059ebdec241SChristoph Hellwig * by __block_write_begin() isn't a real problem here as we clear 106056d35a4cSJan Kara * the bit before releasing a page lock and thus writeback cannot 106156d35a4cSJan Kara * ever write the buffer. 106256d35a4cSJan Kara */ 106356d35a4cSJan Kara if (dirty) 106456d35a4cSJan Kara clear_buffer_dirty(bh); 10655d601255Sliang xie BUFFER_TRACE(bh, "get write access"); 106656d35a4cSJan Kara ret = ext4_journal_get_write_access(handle, bh); 106756d35a4cSJan Kara if (!ret && dirty) 106856d35a4cSJan Kara ret = ext4_handle_dirty_metadata(handle, NULL, bh); 106956d35a4cSJan Kara return ret; 1070ac27a0ecSDave Kleikamp } 1071ac27a0ecSDave Kleikamp 10722058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION 10732058f83aSMichael Halcrow static int ext4_block_write_begin(struct page *page, loff_t pos, unsigned len, 10742058f83aSMichael Halcrow get_block_t *get_block) 10752058f83aSMichael Halcrow { 107609cbfeafSKirill A. Shutemov unsigned from = pos & (PAGE_SIZE - 1); 10772058f83aSMichael Halcrow unsigned to = from + len; 10782058f83aSMichael Halcrow struct inode *inode = page->mapping->host; 10792058f83aSMichael Halcrow unsigned block_start, block_end; 10802058f83aSMichael Halcrow sector_t block; 10812058f83aSMichael Halcrow int err = 0; 10822058f83aSMichael Halcrow unsigned blocksize = inode->i_sb->s_blocksize; 10832058f83aSMichael Halcrow unsigned bbits; 10842058f83aSMichael Halcrow struct buffer_head *bh, *head, *wait[2], **wait_bh = wait; 10852058f83aSMichael Halcrow bool decrypt = false; 10862058f83aSMichael Halcrow 10872058f83aSMichael Halcrow BUG_ON(!PageLocked(page)); 108809cbfeafSKirill A. Shutemov BUG_ON(from > PAGE_SIZE); 108909cbfeafSKirill A. Shutemov BUG_ON(to > PAGE_SIZE); 10902058f83aSMichael Halcrow BUG_ON(from > to); 10912058f83aSMichael Halcrow 10922058f83aSMichael Halcrow if (!page_has_buffers(page)) 10932058f83aSMichael Halcrow create_empty_buffers(page, blocksize, 0); 10942058f83aSMichael Halcrow head = page_buffers(page); 10952058f83aSMichael Halcrow bbits = ilog2(blocksize); 109609cbfeafSKirill A. Shutemov block = (sector_t)page->index << (PAGE_SHIFT - bbits); 10972058f83aSMichael Halcrow 10982058f83aSMichael Halcrow for (bh = head, block_start = 0; bh != head || !block_start; 10992058f83aSMichael Halcrow block++, block_start = block_end, bh = bh->b_this_page) { 11002058f83aSMichael Halcrow block_end = block_start + blocksize; 11012058f83aSMichael Halcrow if (block_end <= from || block_start >= to) { 11022058f83aSMichael Halcrow if (PageUptodate(page)) { 11032058f83aSMichael Halcrow if (!buffer_uptodate(bh)) 11042058f83aSMichael Halcrow set_buffer_uptodate(bh); 11052058f83aSMichael Halcrow } 11062058f83aSMichael Halcrow continue; 11072058f83aSMichael Halcrow } 11082058f83aSMichael Halcrow if (buffer_new(bh)) 11092058f83aSMichael Halcrow clear_buffer_new(bh); 11102058f83aSMichael Halcrow if (!buffer_mapped(bh)) { 11112058f83aSMichael Halcrow WARN_ON(bh->b_size != blocksize); 11122058f83aSMichael Halcrow err = get_block(inode, block, bh, 1); 11132058f83aSMichael Halcrow if (err) 11142058f83aSMichael Halcrow break; 11152058f83aSMichael Halcrow if (buffer_new(bh)) { 11162058f83aSMichael Halcrow unmap_underlying_metadata(bh->b_bdev, 11172058f83aSMichael Halcrow bh->b_blocknr); 11182058f83aSMichael Halcrow if (PageUptodate(page)) { 11192058f83aSMichael Halcrow clear_buffer_new(bh); 11202058f83aSMichael Halcrow set_buffer_uptodate(bh); 11212058f83aSMichael Halcrow mark_buffer_dirty(bh); 11222058f83aSMichael Halcrow continue; 11232058f83aSMichael Halcrow } 11242058f83aSMichael Halcrow if (block_end > to || block_start < from) 11252058f83aSMichael Halcrow zero_user_segments(page, to, block_end, 11262058f83aSMichael Halcrow block_start, from); 11272058f83aSMichael Halcrow continue; 11282058f83aSMichael Halcrow } 11292058f83aSMichael Halcrow } 11302058f83aSMichael Halcrow if (PageUptodate(page)) { 11312058f83aSMichael Halcrow if (!buffer_uptodate(bh)) 11322058f83aSMichael Halcrow set_buffer_uptodate(bh); 11332058f83aSMichael Halcrow continue; 11342058f83aSMichael Halcrow } 11352058f83aSMichael Halcrow if (!buffer_uptodate(bh) && !buffer_delay(bh) && 11362058f83aSMichael Halcrow !buffer_unwritten(bh) && 11372058f83aSMichael Halcrow (block_start < from || block_end > to)) { 11382058f83aSMichael Halcrow ll_rw_block(READ, 1, &bh); 11392058f83aSMichael Halcrow *wait_bh++ = bh; 11402058f83aSMichael Halcrow decrypt = ext4_encrypted_inode(inode) && 11412058f83aSMichael Halcrow S_ISREG(inode->i_mode); 11422058f83aSMichael Halcrow } 11432058f83aSMichael Halcrow } 11442058f83aSMichael Halcrow /* 11452058f83aSMichael Halcrow * If we issued read requests, let them complete. 11462058f83aSMichael Halcrow */ 11472058f83aSMichael Halcrow while (wait_bh > wait) { 11482058f83aSMichael Halcrow wait_on_buffer(*--wait_bh); 11492058f83aSMichael Halcrow if (!buffer_uptodate(*wait_bh)) 11502058f83aSMichael Halcrow err = -EIO; 11512058f83aSMichael Halcrow } 11522058f83aSMichael Halcrow if (unlikely(err)) 11532058f83aSMichael Halcrow page_zero_new_buffers(page, from, to); 11542058f83aSMichael Halcrow else if (decrypt) 11553684de8cSTheodore Ts'o err = ext4_decrypt(page); 11562058f83aSMichael Halcrow return err; 11572058f83aSMichael Halcrow } 11582058f83aSMichael Halcrow #endif 11592058f83aSMichael Halcrow 1160bfc1af65SNick Piggin static int ext4_write_begin(struct file *file, struct address_space *mapping, 1161bfc1af65SNick Piggin loff_t pos, unsigned len, unsigned flags, 1162bfc1af65SNick Piggin struct page **pagep, void **fsdata) 1163ac27a0ecSDave Kleikamp { 1164bfc1af65SNick Piggin struct inode *inode = mapping->host; 11651938a150SAneesh Kumar K.V int ret, needed_blocks; 1166ac27a0ecSDave Kleikamp handle_t *handle; 1167ac27a0ecSDave Kleikamp int retries = 0; 1168bfc1af65SNick Piggin struct page *page; 1169bfc1af65SNick Piggin pgoff_t index; 1170bfc1af65SNick Piggin unsigned from, to; 1171bfc1af65SNick Piggin 11729bffad1eSTheodore Ts'o trace_ext4_write_begin(inode, pos, len, flags); 11731938a150SAneesh Kumar K.V /* 11741938a150SAneesh Kumar K.V * Reserve one block more for addition to orphan list in case 11751938a150SAneesh Kumar K.V * we allocate blocks but write fails for some reason 11761938a150SAneesh Kumar K.V */ 11771938a150SAneesh Kumar K.V needed_blocks = ext4_writepage_trans_blocks(inode) + 1; 117809cbfeafSKirill A. Shutemov index = pos >> PAGE_SHIFT; 117909cbfeafSKirill A. Shutemov from = pos & (PAGE_SIZE - 1); 1180bfc1af65SNick Piggin to = from + len; 1181ac27a0ecSDave Kleikamp 1182f19d5870STao Ma if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) { 1183f19d5870STao Ma ret = ext4_try_to_write_inline_data(mapping, inode, pos, len, 1184f19d5870STao Ma flags, pagep); 1185f19d5870STao Ma if (ret < 0) 118647564bfbSTheodore Ts'o return ret; 118747564bfbSTheodore Ts'o if (ret == 1) 118847564bfbSTheodore Ts'o return 0; 1189f19d5870STao Ma } 1190f19d5870STao Ma 119147564bfbSTheodore Ts'o /* 119247564bfbSTheodore Ts'o * grab_cache_page_write_begin() can take a long time if the 119347564bfbSTheodore Ts'o * system is thrashing due to memory pressure, or if the page 119447564bfbSTheodore Ts'o * is being written back. So grab it first before we start 119547564bfbSTheodore Ts'o * the transaction handle. This also allows us to allocate 119647564bfbSTheodore Ts'o * the page (if needed) without using GFP_NOFS. 119747564bfbSTheodore Ts'o */ 119847564bfbSTheodore Ts'o retry_grab: 119954566b2cSNick Piggin page = grab_cache_page_write_begin(mapping, index, flags); 120047564bfbSTheodore Ts'o if (!page) 120147564bfbSTheodore Ts'o return -ENOMEM; 120247564bfbSTheodore Ts'o unlock_page(page); 120347564bfbSTheodore Ts'o 120447564bfbSTheodore Ts'o retry_journal: 12059924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks); 1206ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 120709cbfeafSKirill A. Shutemov put_page(page); 120847564bfbSTheodore Ts'o return PTR_ERR(handle); 1209cf108bcaSJan Kara } 1210f19d5870STao Ma 121147564bfbSTheodore Ts'o lock_page(page); 121247564bfbSTheodore Ts'o if (page->mapping != mapping) { 121347564bfbSTheodore Ts'o /* The page got truncated from under us */ 121447564bfbSTheodore Ts'o unlock_page(page); 121509cbfeafSKirill A. Shutemov put_page(page); 1216cf108bcaSJan Kara ext4_journal_stop(handle); 121747564bfbSTheodore Ts'o goto retry_grab; 1218cf108bcaSJan Kara } 12197afe5aa5SDmitry Monakhov /* In case writeback began while the page was unlocked */ 12207afe5aa5SDmitry Monakhov wait_for_stable_page(page); 1221cf108bcaSJan Kara 12222058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION 12232058f83aSMichael Halcrow if (ext4_should_dioread_nolock(inode)) 12242058f83aSMichael Halcrow ret = ext4_block_write_begin(page, pos, len, 1225705965bdSJan Kara ext4_get_block_unwritten); 12262058f83aSMichael Halcrow else 12272058f83aSMichael Halcrow ret = ext4_block_write_begin(page, pos, len, 12282058f83aSMichael Halcrow ext4_get_block); 12292058f83aSMichael Halcrow #else 1230744692dcSJiaying Zhang if (ext4_should_dioread_nolock(inode)) 1231705965bdSJan Kara ret = __block_write_begin(page, pos, len, 1232705965bdSJan Kara ext4_get_block_unwritten); 1233744692dcSJiaying Zhang else 12346e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_get_block); 12352058f83aSMichael Halcrow #endif 1236bfc1af65SNick Piggin if (!ret && ext4_should_journal_data(inode)) { 1237f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_buffers(page), 1238f19d5870STao Ma from, to, NULL, 1239f19d5870STao Ma do_journal_get_write_access); 1240b46be050SAndrey Savochkin } 1241bfc1af65SNick Piggin 1242bfc1af65SNick Piggin if (ret) { 1243bfc1af65SNick Piggin unlock_page(page); 1244ae4d5372SAneesh Kumar K.V /* 12456e1db88dSChristoph Hellwig * __block_write_begin may have instantiated a few blocks 1246ae4d5372SAneesh Kumar K.V * outside i_size. Trim these off again. Don't need 1247ae4d5372SAneesh Kumar K.V * i_size_read because we hold i_mutex. 12481938a150SAneesh Kumar K.V * 12491938a150SAneesh Kumar K.V * Add inode to orphan list in case we crash before 12501938a150SAneesh Kumar K.V * truncate finishes 1251ae4d5372SAneesh Kumar K.V */ 1252ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 12531938a150SAneesh Kumar K.V ext4_orphan_add(handle, inode); 12541938a150SAneesh Kumar K.V 12551938a150SAneesh Kumar K.V ext4_journal_stop(handle); 12561938a150SAneesh Kumar K.V if (pos + len > inode->i_size) { 1257b9a4207dSJan Kara ext4_truncate_failed_write(inode); 12581938a150SAneesh Kumar K.V /* 1259ffacfa7aSJan Kara * If truncate failed early the inode might 12601938a150SAneesh Kumar K.V * still be on the orphan list; we need to 12611938a150SAneesh Kumar K.V * make sure the inode is removed from the 12621938a150SAneesh Kumar K.V * orphan list in that case. 12631938a150SAneesh Kumar K.V */ 12641938a150SAneesh Kumar K.V if (inode->i_nlink) 12651938a150SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 12661938a150SAneesh Kumar K.V } 1267bfc1af65SNick Piggin 126847564bfbSTheodore Ts'o if (ret == -ENOSPC && 126947564bfbSTheodore Ts'o ext4_should_retry_alloc(inode->i_sb, &retries)) 127047564bfbSTheodore Ts'o goto retry_journal; 127109cbfeafSKirill A. Shutemov put_page(page); 127247564bfbSTheodore Ts'o return ret; 127347564bfbSTheodore Ts'o } 127447564bfbSTheodore Ts'o *pagep = page; 1275ac27a0ecSDave Kleikamp return ret; 1276ac27a0ecSDave Kleikamp } 1277ac27a0ecSDave Kleikamp 1278bfc1af65SNick Piggin /* For write_end() in data=journal mode */ 1279bfc1af65SNick Piggin static int write_end_fn(handle_t *handle, struct buffer_head *bh) 1280ac27a0ecSDave Kleikamp { 128113fca323STheodore Ts'o int ret; 1282ac27a0ecSDave Kleikamp if (!buffer_mapped(bh) || buffer_freed(bh)) 1283ac27a0ecSDave Kleikamp return 0; 1284ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 128513fca323STheodore Ts'o ret = ext4_handle_dirty_metadata(handle, NULL, bh); 128613fca323STheodore Ts'o clear_buffer_meta(bh); 128713fca323STheodore Ts'o clear_buffer_prio(bh); 128813fca323STheodore Ts'o return ret; 1289ac27a0ecSDave Kleikamp } 1290ac27a0ecSDave Kleikamp 1291eed4333fSZheng Liu /* 1292eed4333fSZheng Liu * We need to pick up the new inode size which generic_commit_write gave us 1293eed4333fSZheng Liu * `file' can be NULL - eg, when called from page_symlink(). 1294eed4333fSZheng Liu * 1295eed4333fSZheng Liu * ext4 never places buffers on inode->i_mapping->private_list. metadata 1296eed4333fSZheng Liu * buffers are managed internally. 1297eed4333fSZheng Liu */ 1298eed4333fSZheng Liu static int ext4_write_end(struct file *file, 1299f8514083SAneesh Kumar K.V struct address_space *mapping, 1300f8514083SAneesh Kumar K.V loff_t pos, unsigned len, unsigned copied, 1301f8514083SAneesh Kumar K.V struct page *page, void *fsdata) 1302f8514083SAneesh Kumar K.V { 1303f8514083SAneesh Kumar K.V handle_t *handle = ext4_journal_current_handle(); 1304eed4333fSZheng Liu struct inode *inode = mapping->host; 13050572639fSXiaoguang Wang loff_t old_size = inode->i_size; 1306eed4333fSZheng Liu int ret = 0, ret2; 1307eed4333fSZheng Liu int i_size_changed = 0; 1308eed4333fSZheng Liu 1309eed4333fSZheng Liu trace_ext4_write_end(inode, pos, len, copied); 131042c832deSTheodore Ts'o if (ext4_has_inline_data(inode)) { 131142c832deSTheodore Ts'o ret = ext4_write_inline_data_end(inode, pos, len, 1312f19d5870STao Ma copied, page); 131342c832deSTheodore Ts'o if (ret < 0) 131442c832deSTheodore Ts'o goto errout; 131542c832deSTheodore Ts'o copied = ret; 131642c832deSTheodore Ts'o } else 1317f19d5870STao Ma copied = block_write_end(file, mapping, pos, 1318f19d5870STao Ma len, copied, page, fsdata); 1319f8514083SAneesh Kumar K.V /* 13204631dbf6SDmitry Monakhov * it's important to update i_size while still holding page lock: 1321f8514083SAneesh Kumar K.V * page writeout could otherwise come in and zero beyond i_size. 1322f8514083SAneesh Kumar K.V */ 13234631dbf6SDmitry Monakhov i_size_changed = ext4_update_inode_size(inode, pos + copied); 1324f8514083SAneesh Kumar K.V unlock_page(page); 132509cbfeafSKirill A. Shutemov put_page(page); 1326f8514083SAneesh Kumar K.V 13270572639fSXiaoguang Wang if (old_size < pos) 13280572639fSXiaoguang Wang pagecache_isize_extended(inode, old_size, pos); 1329f8514083SAneesh Kumar K.V /* 1330f8514083SAneesh Kumar K.V * Don't mark the inode dirty under page lock. First, it unnecessarily 1331f8514083SAneesh Kumar K.V * makes the holding time of page lock longer. Second, it forces lock 1332f8514083SAneesh Kumar K.V * ordering of page lock and transaction start for journaling 1333f8514083SAneesh Kumar K.V * filesystems. 1334f8514083SAneesh Kumar K.V */ 1335f8514083SAneesh Kumar K.V if (i_size_changed) 1336f8514083SAneesh Kumar K.V ext4_mark_inode_dirty(handle, inode); 1337f8514083SAneesh Kumar K.V 1338ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 1339f8514083SAneesh Kumar K.V /* if we have allocated more blocks and copied 1340f8514083SAneesh Kumar K.V * less. We will have blocks allocated outside 1341f8514083SAneesh Kumar K.V * inode->i_size. So truncate them 1342f8514083SAneesh Kumar K.V */ 1343f8514083SAneesh Kumar K.V ext4_orphan_add(handle, inode); 134474d553aaSTheodore Ts'o errout: 1345617ba13bSMingming Cao ret2 = ext4_journal_stop(handle); 1346ac27a0ecSDave Kleikamp if (!ret) 1347ac27a0ecSDave Kleikamp ret = ret2; 1348bfc1af65SNick Piggin 1349f8514083SAneesh Kumar K.V if (pos + len > inode->i_size) { 1350b9a4207dSJan Kara ext4_truncate_failed_write(inode); 1351f8514083SAneesh Kumar K.V /* 1352ffacfa7aSJan Kara * If truncate failed early the inode might still be 1353f8514083SAneesh Kumar K.V * on the orphan list; we need to make sure the inode 1354f8514083SAneesh Kumar K.V * is removed from the orphan list in that case. 1355f8514083SAneesh Kumar K.V */ 1356f8514083SAneesh Kumar K.V if (inode->i_nlink) 1357f8514083SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 1358f8514083SAneesh Kumar K.V } 1359f8514083SAneesh Kumar K.V 1360bfc1af65SNick Piggin return ret ? ret : copied; 1361ac27a0ecSDave Kleikamp } 1362ac27a0ecSDave Kleikamp 1363b90197b6STheodore Ts'o /* 1364b90197b6STheodore Ts'o * This is a private version of page_zero_new_buffers() which doesn't 1365b90197b6STheodore Ts'o * set the buffer to be dirty, since in data=journalled mode we need 1366b90197b6STheodore Ts'o * to call ext4_handle_dirty_metadata() instead. 1367b90197b6STheodore Ts'o */ 1368b90197b6STheodore Ts'o static void zero_new_buffers(struct page *page, unsigned from, unsigned to) 1369b90197b6STheodore Ts'o { 1370b90197b6STheodore Ts'o unsigned int block_start = 0, block_end; 1371b90197b6STheodore Ts'o struct buffer_head *head, *bh; 1372b90197b6STheodore Ts'o 1373b90197b6STheodore Ts'o bh = head = page_buffers(page); 1374b90197b6STheodore Ts'o do { 1375b90197b6STheodore Ts'o block_end = block_start + bh->b_size; 1376b90197b6STheodore Ts'o if (buffer_new(bh)) { 1377b90197b6STheodore Ts'o if (block_end > from && block_start < to) { 1378b90197b6STheodore Ts'o if (!PageUptodate(page)) { 1379b90197b6STheodore Ts'o unsigned start, size; 1380b90197b6STheodore Ts'o 1381b90197b6STheodore Ts'o start = max(from, block_start); 1382b90197b6STheodore Ts'o size = min(to, block_end) - start; 1383b90197b6STheodore Ts'o 1384b90197b6STheodore Ts'o zero_user(page, start, size); 1385b90197b6STheodore Ts'o set_buffer_uptodate(bh); 1386b90197b6STheodore Ts'o } 1387b90197b6STheodore Ts'o clear_buffer_new(bh); 1388b90197b6STheodore Ts'o } 1389b90197b6STheodore Ts'o } 1390b90197b6STheodore Ts'o block_start = block_end; 1391b90197b6STheodore Ts'o bh = bh->b_this_page; 1392b90197b6STheodore Ts'o } while (bh != head); 1393b90197b6STheodore Ts'o } 1394b90197b6STheodore Ts'o 1395bfc1af65SNick Piggin static int ext4_journalled_write_end(struct file *file, 1396bfc1af65SNick Piggin struct address_space *mapping, 1397bfc1af65SNick Piggin loff_t pos, unsigned len, unsigned copied, 1398bfc1af65SNick Piggin struct page *page, void *fsdata) 1399ac27a0ecSDave Kleikamp { 1400617ba13bSMingming Cao handle_t *handle = ext4_journal_current_handle(); 1401bfc1af65SNick Piggin struct inode *inode = mapping->host; 14020572639fSXiaoguang Wang loff_t old_size = inode->i_size; 1403ac27a0ecSDave Kleikamp int ret = 0, ret2; 1404ac27a0ecSDave Kleikamp int partial = 0; 1405bfc1af65SNick Piggin unsigned from, to; 14064631dbf6SDmitry Monakhov int size_changed = 0; 1407ac27a0ecSDave Kleikamp 14089bffad1eSTheodore Ts'o trace_ext4_journalled_write_end(inode, pos, len, copied); 140909cbfeafSKirill A. Shutemov from = pos & (PAGE_SIZE - 1); 1410bfc1af65SNick Piggin to = from + len; 1411bfc1af65SNick Piggin 1412441c8508SCurt Wohlgemuth BUG_ON(!ext4_handle_valid(handle)); 1413441c8508SCurt Wohlgemuth 14143fdcfb66STao Ma if (ext4_has_inline_data(inode)) 14153fdcfb66STao Ma copied = ext4_write_inline_data_end(inode, pos, len, 14163fdcfb66STao Ma copied, page); 14173fdcfb66STao Ma else { 1418bfc1af65SNick Piggin if (copied < len) { 1419bfc1af65SNick Piggin if (!PageUptodate(page)) 1420bfc1af65SNick Piggin copied = 0; 1421b90197b6STheodore Ts'o zero_new_buffers(page, from+copied, to); 1422bfc1af65SNick Piggin } 1423ac27a0ecSDave Kleikamp 1424f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_buffers(page), from, 1425bfc1af65SNick Piggin to, &partial, write_end_fn); 1426ac27a0ecSDave Kleikamp if (!partial) 1427ac27a0ecSDave Kleikamp SetPageUptodate(page); 14283fdcfb66STao Ma } 14294631dbf6SDmitry Monakhov size_changed = ext4_update_inode_size(inode, pos + copied); 143019f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_JDATA); 14312d859db3SJan Kara EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid; 14324631dbf6SDmitry Monakhov unlock_page(page); 143309cbfeafSKirill A. Shutemov put_page(page); 14344631dbf6SDmitry Monakhov 14350572639fSXiaoguang Wang if (old_size < pos) 14360572639fSXiaoguang Wang pagecache_isize_extended(inode, old_size, pos); 14370572639fSXiaoguang Wang 14384631dbf6SDmitry Monakhov if (size_changed) { 1439617ba13bSMingming Cao ret2 = ext4_mark_inode_dirty(handle, inode); 1440ac27a0ecSDave Kleikamp if (!ret) 1441ac27a0ecSDave Kleikamp ret = ret2; 1442ac27a0ecSDave Kleikamp } 1443bfc1af65SNick Piggin 1444ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 1445f8514083SAneesh Kumar K.V /* if we have allocated more blocks and copied 1446f8514083SAneesh Kumar K.V * less. We will have blocks allocated outside 1447f8514083SAneesh Kumar K.V * inode->i_size. So truncate them 1448f8514083SAneesh Kumar K.V */ 1449f8514083SAneesh Kumar K.V ext4_orphan_add(handle, inode); 1450f8514083SAneesh Kumar K.V 1451617ba13bSMingming Cao ret2 = ext4_journal_stop(handle); 1452ac27a0ecSDave Kleikamp if (!ret) 1453ac27a0ecSDave Kleikamp ret = ret2; 1454f8514083SAneesh Kumar K.V if (pos + len > inode->i_size) { 1455b9a4207dSJan Kara ext4_truncate_failed_write(inode); 1456f8514083SAneesh Kumar K.V /* 1457ffacfa7aSJan Kara * If truncate failed early the inode might still be 1458f8514083SAneesh Kumar K.V * on the orphan list; we need to make sure the inode 1459f8514083SAneesh Kumar K.V * is removed from the orphan list in that case. 1460f8514083SAneesh Kumar K.V */ 1461f8514083SAneesh Kumar K.V if (inode->i_nlink) 1462f8514083SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 1463f8514083SAneesh Kumar K.V } 1464bfc1af65SNick Piggin 1465bfc1af65SNick Piggin return ret ? ret : copied; 1466ac27a0ecSDave Kleikamp } 1467d2a17637SMingming Cao 14689d0be502STheodore Ts'o /* 1469c27e43a1SEric Whitney * Reserve space for a single cluster 14709d0be502STheodore Ts'o */ 1471c27e43a1SEric Whitney static int ext4_da_reserve_space(struct inode *inode) 1472d2a17637SMingming Cao { 1473d2a17637SMingming Cao struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 14740637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 14755dd4056dSChristoph Hellwig int ret; 1476d2a17637SMingming Cao 147760e58e0fSMingming Cao /* 147872b8ab9dSEric Sandeen * We will charge metadata quota at writeout time; this saves 147972b8ab9dSEric Sandeen * us from metadata over-estimation, though we may go over by 148072b8ab9dSEric Sandeen * a small amount in the end. Here we just reserve for data. 148160e58e0fSMingming Cao */ 14827b415bf6SAditya Kali ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1)); 14835dd4056dSChristoph Hellwig if (ret) 14845dd4056dSChristoph Hellwig return ret; 148503179fe9STheodore Ts'o 148603179fe9STheodore Ts'o spin_lock(&ei->i_block_reservation_lock); 148771d4f7d0STheodore Ts'o if (ext4_claim_free_clusters(sbi, 1, 0)) { 148803179fe9STheodore Ts'o spin_unlock(&ei->i_block_reservation_lock); 148903179fe9STheodore Ts'o dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1)); 1490d2a17637SMingming Cao return -ENOSPC; 1491d2a17637SMingming Cao } 14929d0be502STheodore Ts'o ei->i_reserved_data_blocks++; 1493c27e43a1SEric Whitney trace_ext4_da_reserve_space(inode); 14940637c6f4STheodore Ts'o spin_unlock(&ei->i_block_reservation_lock); 149539bc680aSDmitry Monakhov 1496d2a17637SMingming Cao return 0; /* success */ 1497d2a17637SMingming Cao } 1498d2a17637SMingming Cao 149912219aeaSAneesh Kumar K.V static void ext4_da_release_space(struct inode *inode, int to_free) 1500d2a17637SMingming Cao { 1501d2a17637SMingming Cao struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 15020637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 1503d2a17637SMingming Cao 1504cd213226SMingming Cao if (!to_free) 1505cd213226SMingming Cao return; /* Nothing to release, exit */ 1506cd213226SMingming Cao 1507d2a17637SMingming Cao spin_lock(&EXT4_I(inode)->i_block_reservation_lock); 1508cd213226SMingming Cao 15095a58ec87SLi Zefan trace_ext4_da_release_space(inode, to_free); 15100637c6f4STheodore Ts'o if (unlikely(to_free > ei->i_reserved_data_blocks)) { 1511cd213226SMingming Cao /* 15120637c6f4STheodore Ts'o * if there aren't enough reserved blocks, then the 15130637c6f4STheodore Ts'o * counter is messed up somewhere. Since this 15140637c6f4STheodore Ts'o * function is called from invalidate page, it's 15150637c6f4STheodore Ts'o * harmless to return without any action. 1516cd213226SMingming Cao */ 15178de5c325STheodore Ts'o ext4_warning(inode->i_sb, "ext4_da_release_space: " 15180637c6f4STheodore Ts'o "ino %lu, to_free %d with only %d reserved " 15191084f252STheodore Ts'o "data blocks", inode->i_ino, to_free, 15200637c6f4STheodore Ts'o ei->i_reserved_data_blocks); 15210637c6f4STheodore Ts'o WARN_ON(1); 15220637c6f4STheodore Ts'o to_free = ei->i_reserved_data_blocks; 15230637c6f4STheodore Ts'o } 15240637c6f4STheodore Ts'o ei->i_reserved_data_blocks -= to_free; 15250637c6f4STheodore Ts'o 152672b8ab9dSEric Sandeen /* update fs dirty data blocks counter */ 152757042651STheodore Ts'o percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free); 1528d2a17637SMingming Cao 1529d2a17637SMingming Cao spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); 153060e58e0fSMingming Cao 15317b415bf6SAditya Kali dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free)); 1532d2a17637SMingming Cao } 1533d2a17637SMingming Cao 1534d2a17637SMingming Cao static void ext4_da_page_release_reservation(struct page *page, 1535ca99fdd2SLukas Czerner unsigned int offset, 1536ca99fdd2SLukas Czerner unsigned int length) 1537d2a17637SMingming Cao { 15389705acd6SLukas Czerner int to_release = 0, contiguous_blks = 0; 1539d2a17637SMingming Cao struct buffer_head *head, *bh; 1540d2a17637SMingming Cao unsigned int curr_off = 0; 15417b415bf6SAditya Kali struct inode *inode = page->mapping->host; 15427b415bf6SAditya Kali struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 1543ca99fdd2SLukas Czerner unsigned int stop = offset + length; 15447b415bf6SAditya Kali int num_clusters; 154551865fdaSZheng Liu ext4_fsblk_t lblk; 1546d2a17637SMingming Cao 154709cbfeafSKirill A. Shutemov BUG_ON(stop > PAGE_SIZE || stop < length); 1548ca99fdd2SLukas Czerner 1549d2a17637SMingming Cao head = page_buffers(page); 1550d2a17637SMingming Cao bh = head; 1551d2a17637SMingming Cao do { 1552d2a17637SMingming Cao unsigned int next_off = curr_off + bh->b_size; 1553d2a17637SMingming Cao 1554ca99fdd2SLukas Czerner if (next_off > stop) 1555ca99fdd2SLukas Czerner break; 1556ca99fdd2SLukas Czerner 1557d2a17637SMingming Cao if ((offset <= curr_off) && (buffer_delay(bh))) { 1558d2a17637SMingming Cao to_release++; 15599705acd6SLukas Czerner contiguous_blks++; 1560d2a17637SMingming Cao clear_buffer_delay(bh); 15619705acd6SLukas Czerner } else if (contiguous_blks) { 15629705acd6SLukas Czerner lblk = page->index << 156309cbfeafSKirill A. Shutemov (PAGE_SHIFT - inode->i_blkbits); 15649705acd6SLukas Czerner lblk += (curr_off >> inode->i_blkbits) - 15659705acd6SLukas Czerner contiguous_blks; 15669705acd6SLukas Czerner ext4_es_remove_extent(inode, lblk, contiguous_blks); 15679705acd6SLukas Czerner contiguous_blks = 0; 1568d2a17637SMingming Cao } 1569d2a17637SMingming Cao curr_off = next_off; 1570d2a17637SMingming Cao } while ((bh = bh->b_this_page) != head); 15717b415bf6SAditya Kali 15729705acd6SLukas Czerner if (contiguous_blks) { 157309cbfeafSKirill A. Shutemov lblk = page->index << (PAGE_SHIFT - inode->i_blkbits); 15749705acd6SLukas Czerner lblk += (curr_off >> inode->i_blkbits) - contiguous_blks; 15759705acd6SLukas Czerner ext4_es_remove_extent(inode, lblk, contiguous_blks); 157651865fdaSZheng Liu } 157751865fdaSZheng Liu 15787b415bf6SAditya Kali /* If we have released all the blocks belonging to a cluster, then we 15797b415bf6SAditya Kali * need to release the reserved space for that cluster. */ 15807b415bf6SAditya Kali num_clusters = EXT4_NUM_B2C(sbi, to_release); 15817b415bf6SAditya Kali while (num_clusters > 0) { 158209cbfeafSKirill A. Shutemov lblk = (page->index << (PAGE_SHIFT - inode->i_blkbits)) + 15837b415bf6SAditya Kali ((num_clusters - 1) << sbi->s_cluster_bits); 15847b415bf6SAditya Kali if (sbi->s_cluster_ratio == 1 || 15857d1b1fbcSZheng Liu !ext4_find_delalloc_cluster(inode, lblk)) 15867b415bf6SAditya Kali ext4_da_release_space(inode, 1); 15877b415bf6SAditya Kali 15887b415bf6SAditya Kali num_clusters--; 15897b415bf6SAditya Kali } 1590d2a17637SMingming Cao } 1591ac27a0ecSDave Kleikamp 1592ac27a0ecSDave Kleikamp /* 159364769240SAlex Tomas * Delayed allocation stuff 159464769240SAlex Tomas */ 159564769240SAlex Tomas 15964e7ea81dSJan Kara struct mpage_da_data { 15974e7ea81dSJan Kara struct inode *inode; 15984e7ea81dSJan Kara struct writeback_control *wbc; 15996b523df4SJan Kara 16004e7ea81dSJan Kara pgoff_t first_page; /* The first page to write */ 16014e7ea81dSJan Kara pgoff_t next_page; /* Current page to examine */ 16024e7ea81dSJan Kara pgoff_t last_page; /* Last page to examine */ 160364769240SAlex Tomas /* 16044e7ea81dSJan Kara * Extent to map - this can be after first_page because that can be 16054e7ea81dSJan Kara * fully mapped. We somewhat abuse m_flags to store whether the extent 16064e7ea81dSJan Kara * is delalloc or unwritten. 160764769240SAlex Tomas */ 16084e7ea81dSJan Kara struct ext4_map_blocks map; 16094e7ea81dSJan Kara struct ext4_io_submit io_submit; /* IO submission data */ 16104e7ea81dSJan Kara }; 161164769240SAlex Tomas 16124e7ea81dSJan Kara static void mpage_release_unused_pages(struct mpage_da_data *mpd, 16134e7ea81dSJan Kara bool invalidate) 1614c4a0c46eSAneesh Kumar K.V { 1615c4a0c46eSAneesh Kumar K.V int nr_pages, i; 1616c4a0c46eSAneesh Kumar K.V pgoff_t index, end; 1617c4a0c46eSAneesh Kumar K.V struct pagevec pvec; 1618c4a0c46eSAneesh Kumar K.V struct inode *inode = mpd->inode; 1619c4a0c46eSAneesh Kumar K.V struct address_space *mapping = inode->i_mapping; 16204e7ea81dSJan Kara 16214e7ea81dSJan Kara /* This is necessary when next_page == 0. */ 16224e7ea81dSJan Kara if (mpd->first_page >= mpd->next_page) 16234e7ea81dSJan Kara return; 1624c4a0c46eSAneesh Kumar K.V 1625c7f5938aSCurt Wohlgemuth index = mpd->first_page; 1626c7f5938aSCurt Wohlgemuth end = mpd->next_page - 1; 16274e7ea81dSJan Kara if (invalidate) { 16284e7ea81dSJan Kara ext4_lblk_t start, last; 162909cbfeafSKirill A. Shutemov start = index << (PAGE_SHIFT - inode->i_blkbits); 163009cbfeafSKirill A. Shutemov last = end << (PAGE_SHIFT - inode->i_blkbits); 163151865fdaSZheng Liu ext4_es_remove_extent(inode, start, last - start + 1); 16324e7ea81dSJan Kara } 163351865fdaSZheng Liu 163466bea92cSEric Sandeen pagevec_init(&pvec, 0); 1635c4a0c46eSAneesh Kumar K.V while (index <= end) { 1636c4a0c46eSAneesh Kumar K.V nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE); 1637c4a0c46eSAneesh Kumar K.V if (nr_pages == 0) 1638c4a0c46eSAneesh Kumar K.V break; 1639c4a0c46eSAneesh Kumar K.V for (i = 0; i < nr_pages; i++) { 1640c4a0c46eSAneesh Kumar K.V struct page *page = pvec.pages[i]; 16419b1d0998SJan Kara if (page->index > end) 1642c4a0c46eSAneesh Kumar K.V break; 1643c4a0c46eSAneesh Kumar K.V BUG_ON(!PageLocked(page)); 1644c4a0c46eSAneesh Kumar K.V BUG_ON(PageWriteback(page)); 16454e7ea81dSJan Kara if (invalidate) { 164609cbfeafSKirill A. Shutemov block_invalidatepage(page, 0, PAGE_SIZE); 1647c4a0c46eSAneesh Kumar K.V ClearPageUptodate(page); 16484e7ea81dSJan Kara } 1649c4a0c46eSAneesh Kumar K.V unlock_page(page); 1650c4a0c46eSAneesh Kumar K.V } 16519b1d0998SJan Kara index = pvec.pages[nr_pages - 1]->index + 1; 16529b1d0998SJan Kara pagevec_release(&pvec); 1653c4a0c46eSAneesh Kumar K.V } 1654c4a0c46eSAneesh Kumar K.V } 1655c4a0c46eSAneesh Kumar K.V 1656df22291fSAneesh Kumar K.V static void ext4_print_free_blocks(struct inode *inode) 1657df22291fSAneesh Kumar K.V { 1658df22291fSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 165992b97816STheodore Ts'o struct super_block *sb = inode->i_sb; 1660f78ee70dSLukas Czerner struct ext4_inode_info *ei = EXT4_I(inode); 166192b97816STheodore Ts'o 166292b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld", 16635dee5437STheodore Ts'o EXT4_C2B(EXT4_SB(inode->i_sb), 1664f78ee70dSLukas Czerner ext4_count_free_clusters(sb))); 166592b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Free/Dirty block details"); 166692b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "free_blocks=%lld", 1667f78ee70dSLukas Czerner (long long) EXT4_C2B(EXT4_SB(sb), 166857042651STheodore Ts'o percpu_counter_sum(&sbi->s_freeclusters_counter))); 166992b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld", 1670f78ee70dSLukas Czerner (long long) EXT4_C2B(EXT4_SB(sb), 16717b415bf6SAditya Kali percpu_counter_sum(&sbi->s_dirtyclusters_counter))); 167292b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Block reservation details"); 167392b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u", 1674f78ee70dSLukas Czerner ei->i_reserved_data_blocks); 1675df22291fSAneesh Kumar K.V return; 1676df22291fSAneesh Kumar K.V } 1677df22291fSAneesh Kumar K.V 1678c364b22cSAneesh Kumar K.V static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh) 167929fa89d0SAneesh Kumar K.V { 1680c364b22cSAneesh Kumar K.V return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh); 168129fa89d0SAneesh Kumar K.V } 168229fa89d0SAneesh Kumar K.V 168364769240SAlex Tomas /* 16845356f261SAditya Kali * This function is grabs code from the very beginning of 16855356f261SAditya Kali * ext4_map_blocks, but assumes that the caller is from delayed write 16865356f261SAditya Kali * time. This function looks up the requested blocks and sets the 16875356f261SAditya Kali * buffer delay bit under the protection of i_data_sem. 16885356f261SAditya Kali */ 16895356f261SAditya Kali static int ext4_da_map_blocks(struct inode *inode, sector_t iblock, 16905356f261SAditya Kali struct ext4_map_blocks *map, 16915356f261SAditya Kali struct buffer_head *bh) 16925356f261SAditya Kali { 1693d100eef2SZheng Liu struct extent_status es; 16945356f261SAditya Kali int retval; 16955356f261SAditya Kali sector_t invalid_block = ~((sector_t) 0xffff); 1696921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 1697921f266bSDmitry Monakhov struct ext4_map_blocks orig_map; 1698921f266bSDmitry Monakhov 1699921f266bSDmitry Monakhov memcpy(&orig_map, map, sizeof(*map)); 1700921f266bSDmitry Monakhov #endif 17015356f261SAditya Kali 17025356f261SAditya Kali if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es)) 17035356f261SAditya Kali invalid_block = ~0; 17045356f261SAditya Kali 17055356f261SAditya Kali map->m_flags = 0; 17065356f261SAditya Kali ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u," 17075356f261SAditya Kali "logical block %lu\n", inode->i_ino, map->m_len, 17085356f261SAditya Kali (unsigned long) map->m_lblk); 1709d100eef2SZheng Liu 1710d100eef2SZheng Liu /* Lookup extent status tree firstly */ 1711d100eef2SZheng Liu if (ext4_es_lookup_extent(inode, iblock, &es)) { 1712d100eef2SZheng Liu if (ext4_es_is_hole(&es)) { 1713d100eef2SZheng Liu retval = 0; 1714c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 1715d100eef2SZheng Liu goto add_delayed; 1716d100eef2SZheng Liu } 1717d100eef2SZheng Liu 1718d100eef2SZheng Liu /* 1719d100eef2SZheng Liu * Delayed extent could be allocated by fallocate. 1720d100eef2SZheng Liu * So we need to check it. 1721d100eef2SZheng Liu */ 1722d100eef2SZheng Liu if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) { 1723d100eef2SZheng Liu map_bh(bh, inode->i_sb, invalid_block); 1724d100eef2SZheng Liu set_buffer_new(bh); 1725d100eef2SZheng Liu set_buffer_delay(bh); 1726d100eef2SZheng Liu return 0; 1727d100eef2SZheng Liu } 1728d100eef2SZheng Liu 1729d100eef2SZheng Liu map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk; 1730d100eef2SZheng Liu retval = es.es_len - (iblock - es.es_lblk); 1731d100eef2SZheng Liu if (retval > map->m_len) 1732d100eef2SZheng Liu retval = map->m_len; 1733d100eef2SZheng Liu map->m_len = retval; 1734d100eef2SZheng Liu if (ext4_es_is_written(&es)) 1735d100eef2SZheng Liu map->m_flags |= EXT4_MAP_MAPPED; 1736d100eef2SZheng Liu else if (ext4_es_is_unwritten(&es)) 1737d100eef2SZheng Liu map->m_flags |= EXT4_MAP_UNWRITTEN; 1738d100eef2SZheng Liu else 1739d100eef2SZheng Liu BUG_ON(1); 1740d100eef2SZheng Liu 1741921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 1742921f266bSDmitry Monakhov ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0); 1743921f266bSDmitry Monakhov #endif 1744d100eef2SZheng Liu return retval; 1745d100eef2SZheng Liu } 1746d100eef2SZheng Liu 17475356f261SAditya Kali /* 17485356f261SAditya Kali * Try to see if we can get the block without requesting a new 17495356f261SAditya Kali * file system block. 17505356f261SAditya Kali */ 1751c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 1752cbd7584eSJan Kara if (ext4_has_inline_data(inode)) 17539c3569b5STao Ma retval = 0; 1754cbd7584eSJan Kara else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 17552f8e0a7cSZheng Liu retval = ext4_ext_map_blocks(NULL, inode, map, 0); 17565356f261SAditya Kali else 17572f8e0a7cSZheng Liu retval = ext4_ind_map_blocks(NULL, inode, map, 0); 17585356f261SAditya Kali 1759d100eef2SZheng Liu add_delayed: 17605356f261SAditya Kali if (retval == 0) { 1761f7fec032SZheng Liu int ret; 17625356f261SAditya Kali /* 17635356f261SAditya Kali * XXX: __block_prepare_write() unmaps passed block, 17645356f261SAditya Kali * is it OK? 17655356f261SAditya Kali */ 1766386ad67cSLukas Czerner /* 1767386ad67cSLukas Czerner * If the block was allocated from previously allocated cluster, 1768386ad67cSLukas Czerner * then we don't need to reserve it again. However we still need 1769386ad67cSLukas Czerner * to reserve metadata for every block we're going to write. 1770386ad67cSLukas Czerner */ 1771c27e43a1SEric Whitney if (EXT4_SB(inode->i_sb)->s_cluster_ratio == 1 || 1772cbd7584eSJan Kara !ext4_find_delalloc_cluster(inode, map->m_lblk)) { 1773c27e43a1SEric Whitney ret = ext4_da_reserve_space(inode); 1774f7fec032SZheng Liu if (ret) { 17755356f261SAditya Kali /* not enough space to reserve */ 1776f7fec032SZheng Liu retval = ret; 17775356f261SAditya Kali goto out_unlock; 17785356f261SAditya Kali } 1779f7fec032SZheng Liu } 17805356f261SAditya Kali 1781f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 1782fdc0212eSZheng Liu ~0, EXTENT_STATUS_DELAYED); 1783f7fec032SZheng Liu if (ret) { 1784f7fec032SZheng Liu retval = ret; 178551865fdaSZheng Liu goto out_unlock; 1786f7fec032SZheng Liu } 178751865fdaSZheng Liu 17885356f261SAditya Kali map_bh(bh, inode->i_sb, invalid_block); 17895356f261SAditya Kali set_buffer_new(bh); 17905356f261SAditya Kali set_buffer_delay(bh); 1791f7fec032SZheng Liu } else if (retval > 0) { 1792f7fec032SZheng Liu int ret; 17933be78c73STheodore Ts'o unsigned int status; 1794f7fec032SZheng Liu 179544fb851dSZheng Liu if (unlikely(retval != map->m_len)) { 179644fb851dSZheng Liu ext4_warning(inode->i_sb, 179744fb851dSZheng Liu "ES len assertion failed for inode " 179844fb851dSZheng Liu "%lu: retval %d != map->m_len %d", 179944fb851dSZheng Liu inode->i_ino, retval, map->m_len); 180044fb851dSZheng Liu WARN_ON(1); 1801921f266bSDmitry Monakhov } 1802921f266bSDmitry Monakhov 1803f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 1804f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 1805f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 1806f7fec032SZheng Liu map->m_pblk, status); 1807f7fec032SZheng Liu if (ret != 0) 1808f7fec032SZheng Liu retval = ret; 18095356f261SAditya Kali } 18105356f261SAditya Kali 18115356f261SAditya Kali out_unlock: 18125356f261SAditya Kali up_read((&EXT4_I(inode)->i_data_sem)); 18135356f261SAditya Kali 18145356f261SAditya Kali return retval; 18155356f261SAditya Kali } 18165356f261SAditya Kali 18175356f261SAditya Kali /* 1818d91bd2c1SSeunghun Lee * This is a special get_block_t callback which is used by 1819b920c755STheodore Ts'o * ext4_da_write_begin(). It will either return mapped block or 1820b920c755STheodore Ts'o * reserve space for a single block. 182129fa89d0SAneesh Kumar K.V * 182229fa89d0SAneesh Kumar K.V * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set. 182329fa89d0SAneesh Kumar K.V * We also have b_blocknr = -1 and b_bdev initialized properly 182429fa89d0SAneesh Kumar K.V * 182529fa89d0SAneesh Kumar K.V * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set. 182629fa89d0SAneesh Kumar K.V * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev 182729fa89d0SAneesh Kumar K.V * initialized properly. 182864769240SAlex Tomas */ 18299c3569b5STao Ma int ext4_da_get_block_prep(struct inode *inode, sector_t iblock, 18302ed88685STheodore Ts'o struct buffer_head *bh, int create) 183164769240SAlex Tomas { 18322ed88685STheodore Ts'o struct ext4_map_blocks map; 183364769240SAlex Tomas int ret = 0; 183464769240SAlex Tomas 183564769240SAlex Tomas BUG_ON(create == 0); 18362ed88685STheodore Ts'o BUG_ON(bh->b_size != inode->i_sb->s_blocksize); 18372ed88685STheodore Ts'o 18382ed88685STheodore Ts'o map.m_lblk = iblock; 18392ed88685STheodore Ts'o map.m_len = 1; 184064769240SAlex Tomas 184164769240SAlex Tomas /* 184264769240SAlex Tomas * first, we need to know whether the block is allocated already 184364769240SAlex Tomas * preallocated blocks are unmapped but should treated 184464769240SAlex Tomas * the same as allocated blocks. 184564769240SAlex Tomas */ 18465356f261SAditya Kali ret = ext4_da_map_blocks(inode, iblock, &map, bh); 18475356f261SAditya Kali if (ret <= 0) 18482ed88685STheodore Ts'o return ret; 184964769240SAlex Tomas 18502ed88685STheodore Ts'o map_bh(bh, inode->i_sb, map.m_pblk); 1851ed8ad838SJan Kara ext4_update_bh_state(bh, map.m_flags); 18522ed88685STheodore Ts'o 18532ed88685STheodore Ts'o if (buffer_unwritten(bh)) { 18542ed88685STheodore Ts'o /* A delayed write to unwritten bh should be marked 18552ed88685STheodore Ts'o * new and mapped. Mapped ensures that we don't do 18562ed88685STheodore Ts'o * get_block multiple times when we write to the same 18572ed88685STheodore Ts'o * offset and new ensures that we do proper zero out 18582ed88685STheodore Ts'o * for partial write. 18592ed88685STheodore Ts'o */ 18602ed88685STheodore Ts'o set_buffer_new(bh); 1861c8205636STheodore Ts'o set_buffer_mapped(bh); 18622ed88685STheodore Ts'o } 18632ed88685STheodore Ts'o return 0; 186464769240SAlex Tomas } 186561628a3fSMingming Cao 186662e086beSAneesh Kumar K.V static int bget_one(handle_t *handle, struct buffer_head *bh) 186762e086beSAneesh Kumar K.V { 186862e086beSAneesh Kumar K.V get_bh(bh); 186962e086beSAneesh Kumar K.V return 0; 187062e086beSAneesh Kumar K.V } 187162e086beSAneesh Kumar K.V 187262e086beSAneesh Kumar K.V static int bput_one(handle_t *handle, struct buffer_head *bh) 187362e086beSAneesh Kumar K.V { 187462e086beSAneesh Kumar K.V put_bh(bh); 187562e086beSAneesh Kumar K.V return 0; 187662e086beSAneesh Kumar K.V } 187762e086beSAneesh Kumar K.V 187862e086beSAneesh Kumar K.V static int __ext4_journalled_writepage(struct page *page, 187962e086beSAneesh Kumar K.V unsigned int len) 188062e086beSAneesh Kumar K.V { 188162e086beSAneesh Kumar K.V struct address_space *mapping = page->mapping; 188262e086beSAneesh Kumar K.V struct inode *inode = mapping->host; 18833fdcfb66STao Ma struct buffer_head *page_bufs = NULL; 188462e086beSAneesh Kumar K.V handle_t *handle = NULL; 18853fdcfb66STao Ma int ret = 0, err = 0; 18863fdcfb66STao Ma int inline_data = ext4_has_inline_data(inode); 18873fdcfb66STao Ma struct buffer_head *inode_bh = NULL; 188862e086beSAneesh Kumar K.V 1889cb20d518STheodore Ts'o ClearPageChecked(page); 18903fdcfb66STao Ma 18913fdcfb66STao Ma if (inline_data) { 18923fdcfb66STao Ma BUG_ON(page->index != 0); 18933fdcfb66STao Ma BUG_ON(len > ext4_get_max_inline_size(inode)); 18943fdcfb66STao Ma inode_bh = ext4_journalled_write_inline_data(inode, len, page); 18953fdcfb66STao Ma if (inode_bh == NULL) 18963fdcfb66STao Ma goto out; 18973fdcfb66STao Ma } else { 189862e086beSAneesh Kumar K.V page_bufs = page_buffers(page); 18993fdcfb66STao Ma if (!page_bufs) { 19003fdcfb66STao Ma BUG(); 19013fdcfb66STao Ma goto out; 19023fdcfb66STao Ma } 19033fdcfb66STao Ma ext4_walk_page_buffers(handle, page_bufs, 0, len, 19043fdcfb66STao Ma NULL, bget_one); 19053fdcfb66STao Ma } 1906bdf96838STheodore Ts'o /* 1907bdf96838STheodore Ts'o * We need to release the page lock before we start the 1908bdf96838STheodore Ts'o * journal, so grab a reference so the page won't disappear 1909bdf96838STheodore Ts'o * out from under us. 1910bdf96838STheodore Ts'o */ 1911bdf96838STheodore Ts'o get_page(page); 191262e086beSAneesh Kumar K.V unlock_page(page); 191362e086beSAneesh Kumar K.V 19149924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 19159924a92aSTheodore Ts'o ext4_writepage_trans_blocks(inode)); 191662e086beSAneesh Kumar K.V if (IS_ERR(handle)) { 191762e086beSAneesh Kumar K.V ret = PTR_ERR(handle); 1918bdf96838STheodore Ts'o put_page(page); 1919bdf96838STheodore Ts'o goto out_no_pagelock; 1920bdf96838STheodore Ts'o } 1921bdf96838STheodore Ts'o BUG_ON(!ext4_handle_valid(handle)); 1922bdf96838STheodore Ts'o 1923bdf96838STheodore Ts'o lock_page(page); 1924bdf96838STheodore Ts'o put_page(page); 1925bdf96838STheodore Ts'o if (page->mapping != mapping) { 1926bdf96838STheodore Ts'o /* The page got truncated from under us */ 1927bdf96838STheodore Ts'o ext4_journal_stop(handle); 1928bdf96838STheodore Ts'o ret = 0; 192962e086beSAneesh Kumar K.V goto out; 193062e086beSAneesh Kumar K.V } 193162e086beSAneesh Kumar K.V 19323fdcfb66STao Ma if (inline_data) { 19335d601255Sliang xie BUFFER_TRACE(inode_bh, "get write access"); 19343fdcfb66STao Ma ret = ext4_journal_get_write_access(handle, inode_bh); 19353fdcfb66STao Ma 19363fdcfb66STao Ma err = ext4_handle_dirty_metadata(handle, inode, inode_bh); 19373fdcfb66STao Ma 19383fdcfb66STao Ma } else { 1939f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL, 194062e086beSAneesh Kumar K.V do_journal_get_write_access); 194162e086beSAneesh Kumar K.V 1942f19d5870STao Ma err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL, 194362e086beSAneesh Kumar K.V write_end_fn); 19443fdcfb66STao Ma } 194562e086beSAneesh Kumar K.V if (ret == 0) 194662e086beSAneesh Kumar K.V ret = err; 19472d859db3SJan Kara EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid; 194862e086beSAneesh Kumar K.V err = ext4_journal_stop(handle); 194962e086beSAneesh Kumar K.V if (!ret) 195062e086beSAneesh Kumar K.V ret = err; 195162e086beSAneesh Kumar K.V 19523fdcfb66STao Ma if (!ext4_has_inline_data(inode)) 19538c9367fdSTheodore Ts'o ext4_walk_page_buffers(NULL, page_bufs, 0, len, 19543fdcfb66STao Ma NULL, bput_one); 195519f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_JDATA); 195662e086beSAneesh Kumar K.V out: 1957bdf96838STheodore Ts'o unlock_page(page); 1958bdf96838STheodore Ts'o out_no_pagelock: 19593fdcfb66STao Ma brelse(inode_bh); 196062e086beSAneesh Kumar K.V return ret; 196162e086beSAneesh Kumar K.V } 196262e086beSAneesh Kumar K.V 196361628a3fSMingming Cao /* 196443ce1d23SAneesh Kumar K.V * Note that we don't need to start a transaction unless we're journaling data 196543ce1d23SAneesh Kumar K.V * because we should have holes filled from ext4_page_mkwrite(). We even don't 196643ce1d23SAneesh Kumar K.V * need to file the inode to the transaction's list in ordered mode because if 196743ce1d23SAneesh Kumar K.V * we are writing back data added by write(), the inode is already there and if 196843ce1d23SAneesh Kumar K.V * we are writing back data modified via mmap(), no one guarantees in which 196943ce1d23SAneesh Kumar K.V * transaction the data will hit the disk. In case we are journaling data, we 197043ce1d23SAneesh Kumar K.V * cannot start transaction directly because transaction start ranks above page 197143ce1d23SAneesh Kumar K.V * lock so we have to do some magic. 197243ce1d23SAneesh Kumar K.V * 1973b920c755STheodore Ts'o * This function can get called via... 197420970ba6STheodore Ts'o * - ext4_writepages after taking page lock (have journal handle) 1975b920c755STheodore Ts'o * - journal_submit_inode_data_buffers (no journal handle) 1976f6463b0dSArtem Bityutskiy * - shrink_page_list via the kswapd/direct reclaim (no journal handle) 1977b920c755STheodore Ts'o * - grab_page_cache when doing write_begin (have journal handle) 197843ce1d23SAneesh Kumar K.V * 197943ce1d23SAneesh Kumar K.V * We don't do any block allocation in this function. If we have page with 198043ce1d23SAneesh Kumar K.V * multiple blocks we need to write those buffer_heads that are mapped. This 198143ce1d23SAneesh Kumar K.V * is important for mmaped based write. So if we do with blocksize 1K 198243ce1d23SAneesh Kumar K.V * truncate(f, 1024); 198343ce1d23SAneesh Kumar K.V * a = mmap(f, 0, 4096); 198443ce1d23SAneesh Kumar K.V * a[0] = 'a'; 198543ce1d23SAneesh Kumar K.V * truncate(f, 4096); 198643ce1d23SAneesh Kumar K.V * we have in the page first buffer_head mapped via page_mkwrite call back 198790802ed9SPaul Bolle * but other buffer_heads would be unmapped but dirty (dirty done via the 198843ce1d23SAneesh Kumar K.V * do_wp_page). So writepage should write the first block. If we modify 198943ce1d23SAneesh Kumar K.V * the mmap area beyond 1024 we will again get a page_fault and the 199043ce1d23SAneesh Kumar K.V * page_mkwrite callback will do the block allocation and mark the 199143ce1d23SAneesh Kumar K.V * buffer_heads mapped. 199243ce1d23SAneesh Kumar K.V * 199343ce1d23SAneesh Kumar K.V * We redirty the page if we have any buffer_heads that is either delay or 199443ce1d23SAneesh Kumar K.V * unwritten in the page. 199543ce1d23SAneesh Kumar K.V * 199643ce1d23SAneesh Kumar K.V * We can get recursively called as show below. 199743ce1d23SAneesh Kumar K.V * 199843ce1d23SAneesh Kumar K.V * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() -> 199943ce1d23SAneesh Kumar K.V * ext4_writepage() 200043ce1d23SAneesh Kumar K.V * 200143ce1d23SAneesh Kumar K.V * But since we don't do any block allocation we should not deadlock. 200243ce1d23SAneesh Kumar K.V * Page also have the dirty flag cleared so we don't get recurive page_lock. 200361628a3fSMingming Cao */ 200443ce1d23SAneesh Kumar K.V static int ext4_writepage(struct page *page, 200564769240SAlex Tomas struct writeback_control *wbc) 200664769240SAlex Tomas { 2007f8bec370SJan Kara int ret = 0; 200861628a3fSMingming Cao loff_t size; 2009498e5f24STheodore Ts'o unsigned int len; 2010744692dcSJiaying Zhang struct buffer_head *page_bufs = NULL; 201161628a3fSMingming Cao struct inode *inode = page->mapping->host; 201236ade451SJan Kara struct ext4_io_submit io_submit; 20131c8349a1SNamjae Jeon bool keep_towrite = false; 201464769240SAlex Tomas 2015a9c667f8SLukas Czerner trace_ext4_writepage(page); 201661628a3fSMingming Cao size = i_size_read(inode); 201709cbfeafSKirill A. Shutemov if (page->index == size >> PAGE_SHIFT) 201809cbfeafSKirill A. Shutemov len = size & ~PAGE_MASK; 201961628a3fSMingming Cao else 202009cbfeafSKirill A. Shutemov len = PAGE_SIZE; 202161628a3fSMingming Cao 2022f0e6c985SAneesh Kumar K.V page_bufs = page_buffers(page); 202364769240SAlex Tomas /* 2024fe386132SJan Kara * We cannot do block allocation or other extent handling in this 2025fe386132SJan Kara * function. If there are buffers needing that, we have to redirty 2026fe386132SJan Kara * the page. But we may reach here when we do a journal commit via 2027fe386132SJan Kara * journal_submit_inode_data_buffers() and in that case we must write 2028fe386132SJan Kara * allocated buffers to achieve data=ordered mode guarantees. 2029cccd147aSTheodore Ts'o * 2030cccd147aSTheodore Ts'o * Also, if there is only one buffer per page (the fs block 2031cccd147aSTheodore Ts'o * size == the page size), if one buffer needs block 2032cccd147aSTheodore Ts'o * allocation or needs to modify the extent tree to clear the 2033cccd147aSTheodore Ts'o * unwritten flag, we know that the page can't be written at 2034cccd147aSTheodore Ts'o * all, so we might as well refuse the write immediately. 2035cccd147aSTheodore Ts'o * Unfortunately if the block size != page size, we can't as 2036cccd147aSTheodore Ts'o * easily detect this case using ext4_walk_page_buffers(), but 2037cccd147aSTheodore Ts'o * for the extremely common case, this is an optimization that 2038cccd147aSTheodore Ts'o * skips a useless round trip through ext4_bio_write_page(). 203964769240SAlex Tomas */ 2040f19d5870STao Ma if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL, 2041c364b22cSAneesh Kumar K.V ext4_bh_delay_or_unwritten)) { 204261628a3fSMingming Cao redirty_page_for_writepage(wbc, page); 2043cccd147aSTheodore Ts'o if ((current->flags & PF_MEMALLOC) || 204409cbfeafSKirill A. Shutemov (inode->i_sb->s_blocksize == PAGE_SIZE)) { 2045fe386132SJan Kara /* 2046fe386132SJan Kara * For memory cleaning there's no point in writing only 2047fe386132SJan Kara * some buffers. So just bail out. Warn if we came here 2048fe386132SJan Kara * from direct reclaim. 2049fe386132SJan Kara */ 2050fe386132SJan Kara WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD)) 2051fe386132SJan Kara == PF_MEMALLOC); 205261628a3fSMingming Cao unlock_page(page); 205361628a3fSMingming Cao return 0; 205461628a3fSMingming Cao } 20551c8349a1SNamjae Jeon keep_towrite = true; 2056f0e6c985SAneesh Kumar K.V } 205764769240SAlex Tomas 2058cb20d518STheodore Ts'o if (PageChecked(page) && ext4_should_journal_data(inode)) 205943ce1d23SAneesh Kumar K.V /* 206043ce1d23SAneesh Kumar K.V * It's mmapped pagecache. Add buffers and journal it. There 206143ce1d23SAneesh Kumar K.V * doesn't seem much point in redirtying the page here. 206243ce1d23SAneesh Kumar K.V */ 20633f0ca309SWu Fengguang return __ext4_journalled_writepage(page, len); 206443ce1d23SAneesh Kumar K.V 206597a851edSJan Kara ext4_io_submit_init(&io_submit, wbc); 206697a851edSJan Kara io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS); 206797a851edSJan Kara if (!io_submit.io_end) { 206897a851edSJan Kara redirty_page_for_writepage(wbc, page); 206997a851edSJan Kara unlock_page(page); 207097a851edSJan Kara return -ENOMEM; 207197a851edSJan Kara } 20721c8349a1SNamjae Jeon ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite); 207336ade451SJan Kara ext4_io_submit(&io_submit); 207497a851edSJan Kara /* Drop io_end reference we got from init */ 207597a851edSJan Kara ext4_put_io_end_defer(io_submit.io_end); 207664769240SAlex Tomas return ret; 207764769240SAlex Tomas } 207864769240SAlex Tomas 20795f1132b2SJan Kara static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page) 20805f1132b2SJan Kara { 20815f1132b2SJan Kara int len; 20825f1132b2SJan Kara loff_t size = i_size_read(mpd->inode); 20835f1132b2SJan Kara int err; 20845f1132b2SJan Kara 20855f1132b2SJan Kara BUG_ON(page->index != mpd->first_page); 208609cbfeafSKirill A. Shutemov if (page->index == size >> PAGE_SHIFT) 208709cbfeafSKirill A. Shutemov len = size & ~PAGE_MASK; 20885f1132b2SJan Kara else 208909cbfeafSKirill A. Shutemov len = PAGE_SIZE; 20905f1132b2SJan Kara clear_page_dirty_for_io(page); 20911c8349a1SNamjae Jeon err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false); 20925f1132b2SJan Kara if (!err) 20935f1132b2SJan Kara mpd->wbc->nr_to_write--; 20945f1132b2SJan Kara mpd->first_page++; 20955f1132b2SJan Kara 20965f1132b2SJan Kara return err; 20975f1132b2SJan Kara } 20985f1132b2SJan Kara 20994e7ea81dSJan Kara #define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay)) 21004e7ea81dSJan Kara 210161628a3fSMingming Cao /* 2102fffb2739SJan Kara * mballoc gives us at most this number of blocks... 2103fffb2739SJan Kara * XXX: That seems to be only a limitation of ext4_mb_normalize_request(). 2104fffb2739SJan Kara * The rest of mballoc seems to handle chunks up to full group size. 210561628a3fSMingming Cao */ 2106fffb2739SJan Kara #define MAX_WRITEPAGES_EXTENT_LEN 2048 2107525f4ed8SMingming Cao 2108525f4ed8SMingming Cao /* 21094e7ea81dSJan Kara * mpage_add_bh_to_extent - try to add bh to extent of blocks to map 21104e7ea81dSJan Kara * 21114e7ea81dSJan Kara * @mpd - extent of blocks 21124e7ea81dSJan Kara * @lblk - logical number of the block in the file 211309930042SJan Kara * @bh - buffer head we want to add to the extent 21144e7ea81dSJan Kara * 211509930042SJan Kara * The function is used to collect contig. blocks in the same state. If the 211609930042SJan Kara * buffer doesn't require mapping for writeback and we haven't started the 211709930042SJan Kara * extent of buffers to map yet, the function returns 'true' immediately - the 211809930042SJan Kara * caller can write the buffer right away. Otherwise the function returns true 211909930042SJan Kara * if the block has been added to the extent, false if the block couldn't be 212009930042SJan Kara * added. 21214e7ea81dSJan Kara */ 212209930042SJan Kara static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk, 212309930042SJan Kara struct buffer_head *bh) 21244e7ea81dSJan Kara { 21254e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 21264e7ea81dSJan Kara 212709930042SJan Kara /* Buffer that doesn't need mapping for writeback? */ 212809930042SJan Kara if (!buffer_dirty(bh) || !buffer_mapped(bh) || 212909930042SJan Kara (!buffer_delay(bh) && !buffer_unwritten(bh))) { 213009930042SJan Kara /* So far no extent to map => we write the buffer right away */ 213109930042SJan Kara if (map->m_len == 0) 213209930042SJan Kara return true; 213309930042SJan Kara return false; 213409930042SJan Kara } 21354e7ea81dSJan Kara 21364e7ea81dSJan Kara /* First block in the extent? */ 21374e7ea81dSJan Kara if (map->m_len == 0) { 21384e7ea81dSJan Kara map->m_lblk = lblk; 21394e7ea81dSJan Kara map->m_len = 1; 214009930042SJan Kara map->m_flags = bh->b_state & BH_FLAGS; 214109930042SJan Kara return true; 21424e7ea81dSJan Kara } 21434e7ea81dSJan Kara 214409930042SJan Kara /* Don't go larger than mballoc is willing to allocate */ 214509930042SJan Kara if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN) 214609930042SJan Kara return false; 214709930042SJan Kara 21484e7ea81dSJan Kara /* Can we merge the block to our big extent? */ 21494e7ea81dSJan Kara if (lblk == map->m_lblk + map->m_len && 215009930042SJan Kara (bh->b_state & BH_FLAGS) == map->m_flags) { 21514e7ea81dSJan Kara map->m_len++; 215209930042SJan Kara return true; 21534e7ea81dSJan Kara } 215409930042SJan Kara return false; 21554e7ea81dSJan Kara } 21564e7ea81dSJan Kara 21575f1132b2SJan Kara /* 21585f1132b2SJan Kara * mpage_process_page_bufs - submit page buffers for IO or add them to extent 21595f1132b2SJan Kara * 21605f1132b2SJan Kara * @mpd - extent of blocks for mapping 21615f1132b2SJan Kara * @head - the first buffer in the page 21625f1132b2SJan Kara * @bh - buffer we should start processing from 21635f1132b2SJan Kara * @lblk - logical number of the block in the file corresponding to @bh 21645f1132b2SJan Kara * 21655f1132b2SJan Kara * Walk through page buffers from @bh upto @head (exclusive) and either submit 21665f1132b2SJan Kara * the page for IO if all buffers in this page were mapped and there's no 21675f1132b2SJan Kara * accumulated extent of buffers to map or add buffers in the page to the 21685f1132b2SJan Kara * extent of buffers to map. The function returns 1 if the caller can continue 21695f1132b2SJan Kara * by processing the next page, 0 if it should stop adding buffers to the 21705f1132b2SJan Kara * extent to map because we cannot extend it anymore. It can also return value 21715f1132b2SJan Kara * < 0 in case of error during IO submission. 21725f1132b2SJan Kara */ 21735f1132b2SJan Kara static int mpage_process_page_bufs(struct mpage_da_data *mpd, 21744e7ea81dSJan Kara struct buffer_head *head, 21754e7ea81dSJan Kara struct buffer_head *bh, 21764e7ea81dSJan Kara ext4_lblk_t lblk) 21774e7ea81dSJan Kara { 21784e7ea81dSJan Kara struct inode *inode = mpd->inode; 21795f1132b2SJan Kara int err; 21804e7ea81dSJan Kara ext4_lblk_t blocks = (i_size_read(inode) + (1 << inode->i_blkbits) - 1) 21814e7ea81dSJan Kara >> inode->i_blkbits; 21824e7ea81dSJan Kara 21834e7ea81dSJan Kara do { 21844e7ea81dSJan Kara BUG_ON(buffer_locked(bh)); 21854e7ea81dSJan Kara 218609930042SJan Kara if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) { 21874e7ea81dSJan Kara /* Found extent to map? */ 21884e7ea81dSJan Kara if (mpd->map.m_len) 21895f1132b2SJan Kara return 0; 219009930042SJan Kara /* Everything mapped so far and we hit EOF */ 21915f1132b2SJan Kara break; 21924e7ea81dSJan Kara } 21934e7ea81dSJan Kara } while (lblk++, (bh = bh->b_this_page) != head); 21945f1132b2SJan Kara /* So far everything mapped? Submit the page for IO. */ 21955f1132b2SJan Kara if (mpd->map.m_len == 0) { 21965f1132b2SJan Kara err = mpage_submit_page(mpd, head->b_page); 21975f1132b2SJan Kara if (err < 0) 21984e7ea81dSJan Kara return err; 21994e7ea81dSJan Kara } 22005f1132b2SJan Kara return lblk < blocks; 22015f1132b2SJan Kara } 22024e7ea81dSJan Kara 22034e7ea81dSJan Kara /* 22044e7ea81dSJan Kara * mpage_map_buffers - update buffers corresponding to changed extent and 22054e7ea81dSJan Kara * submit fully mapped pages for IO 22064e7ea81dSJan Kara * 22074e7ea81dSJan Kara * @mpd - description of extent to map, on return next extent to map 22084e7ea81dSJan Kara * 22094e7ea81dSJan Kara * Scan buffers corresponding to changed extent (we expect corresponding pages 22104e7ea81dSJan Kara * to be already locked) and update buffer state according to new extent state. 22114e7ea81dSJan Kara * We map delalloc buffers to their physical location, clear unwritten bits, 2212556615dcSLukas Czerner * and mark buffers as uninit when we perform writes to unwritten extents 22134e7ea81dSJan Kara * and do extent conversion after IO is finished. If the last page is not fully 22144e7ea81dSJan Kara * mapped, we update @map to the next extent in the last page that needs 22154e7ea81dSJan Kara * mapping. Otherwise we submit the page for IO. 22164e7ea81dSJan Kara */ 22174e7ea81dSJan Kara static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd) 22184e7ea81dSJan Kara { 22194e7ea81dSJan Kara struct pagevec pvec; 22204e7ea81dSJan Kara int nr_pages, i; 22214e7ea81dSJan Kara struct inode *inode = mpd->inode; 22224e7ea81dSJan Kara struct buffer_head *head, *bh; 222309cbfeafSKirill A. Shutemov int bpp_bits = PAGE_SHIFT - inode->i_blkbits; 22244e7ea81dSJan Kara pgoff_t start, end; 22254e7ea81dSJan Kara ext4_lblk_t lblk; 22264e7ea81dSJan Kara sector_t pblock; 22274e7ea81dSJan Kara int err; 22284e7ea81dSJan Kara 22294e7ea81dSJan Kara start = mpd->map.m_lblk >> bpp_bits; 22304e7ea81dSJan Kara end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits; 22314e7ea81dSJan Kara lblk = start << bpp_bits; 22324e7ea81dSJan Kara pblock = mpd->map.m_pblk; 22334e7ea81dSJan Kara 22344e7ea81dSJan Kara pagevec_init(&pvec, 0); 22354e7ea81dSJan Kara while (start <= end) { 22364e7ea81dSJan Kara nr_pages = pagevec_lookup(&pvec, inode->i_mapping, start, 22374e7ea81dSJan Kara PAGEVEC_SIZE); 22384e7ea81dSJan Kara if (nr_pages == 0) 22394e7ea81dSJan Kara break; 22404e7ea81dSJan Kara for (i = 0; i < nr_pages; i++) { 22414e7ea81dSJan Kara struct page *page = pvec.pages[i]; 22424e7ea81dSJan Kara 22434e7ea81dSJan Kara if (page->index > end) 22444e7ea81dSJan Kara break; 22454e7ea81dSJan Kara /* Up to 'end' pages must be contiguous */ 22464e7ea81dSJan Kara BUG_ON(page->index != start); 22474e7ea81dSJan Kara bh = head = page_buffers(page); 22484e7ea81dSJan Kara do { 22494e7ea81dSJan Kara if (lblk < mpd->map.m_lblk) 22504e7ea81dSJan Kara continue; 22514e7ea81dSJan Kara if (lblk >= mpd->map.m_lblk + mpd->map.m_len) { 22524e7ea81dSJan Kara /* 22534e7ea81dSJan Kara * Buffer after end of mapped extent. 22544e7ea81dSJan Kara * Find next buffer in the page to map. 22554e7ea81dSJan Kara */ 22564e7ea81dSJan Kara mpd->map.m_len = 0; 22574e7ea81dSJan Kara mpd->map.m_flags = 0; 22585f1132b2SJan Kara /* 22595f1132b2SJan Kara * FIXME: If dioread_nolock supports 22605f1132b2SJan Kara * blocksize < pagesize, we need to make 22615f1132b2SJan Kara * sure we add size mapped so far to 22625f1132b2SJan Kara * io_end->size as the following call 22635f1132b2SJan Kara * can submit the page for IO. 22645f1132b2SJan Kara */ 22655f1132b2SJan Kara err = mpage_process_page_bufs(mpd, head, 22665f1132b2SJan Kara bh, lblk); 22674e7ea81dSJan Kara pagevec_release(&pvec); 22685f1132b2SJan Kara if (err > 0) 22695f1132b2SJan Kara err = 0; 22705f1132b2SJan Kara return err; 22714e7ea81dSJan Kara } 22724e7ea81dSJan Kara if (buffer_delay(bh)) { 22734e7ea81dSJan Kara clear_buffer_delay(bh); 22744e7ea81dSJan Kara bh->b_blocknr = pblock++; 22754e7ea81dSJan Kara } 22764e7ea81dSJan Kara clear_buffer_unwritten(bh); 22775f1132b2SJan Kara } while (lblk++, (bh = bh->b_this_page) != head); 22784e7ea81dSJan Kara 22794e7ea81dSJan Kara /* 22804e7ea81dSJan Kara * FIXME: This is going to break if dioread_nolock 22814e7ea81dSJan Kara * supports blocksize < pagesize as we will try to 22824e7ea81dSJan Kara * convert potentially unmapped parts of inode. 22834e7ea81dSJan Kara */ 228409cbfeafSKirill A. Shutemov mpd->io_submit.io_end->size += PAGE_SIZE; 22854e7ea81dSJan Kara /* Page fully mapped - let IO run! */ 22864e7ea81dSJan Kara err = mpage_submit_page(mpd, page); 22874e7ea81dSJan Kara if (err < 0) { 22884e7ea81dSJan Kara pagevec_release(&pvec); 22894e7ea81dSJan Kara return err; 22904e7ea81dSJan Kara } 22914e7ea81dSJan Kara start++; 22924e7ea81dSJan Kara } 22934e7ea81dSJan Kara pagevec_release(&pvec); 22944e7ea81dSJan Kara } 22954e7ea81dSJan Kara /* Extent fully mapped and matches with page boundary. We are done. */ 22964e7ea81dSJan Kara mpd->map.m_len = 0; 22974e7ea81dSJan Kara mpd->map.m_flags = 0; 22984e7ea81dSJan Kara return 0; 22994e7ea81dSJan Kara } 23004e7ea81dSJan Kara 23014e7ea81dSJan Kara static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd) 23024e7ea81dSJan Kara { 23034e7ea81dSJan Kara struct inode *inode = mpd->inode; 23044e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 23054e7ea81dSJan Kara int get_blocks_flags; 2306090f32eeSLukas Czerner int err, dioread_nolock; 23074e7ea81dSJan Kara 23084e7ea81dSJan Kara trace_ext4_da_write_pages_extent(inode, map); 23094e7ea81dSJan Kara /* 23104e7ea81dSJan Kara * Call ext4_map_blocks() to allocate any delayed allocation blocks, or 2311556615dcSLukas Czerner * to convert an unwritten extent to be initialized (in the case 23124e7ea81dSJan Kara * where we have written into one or more preallocated blocks). It is 23134e7ea81dSJan Kara * possible that we're going to need more metadata blocks than 23144e7ea81dSJan Kara * previously reserved. However we must not fail because we're in 23154e7ea81dSJan Kara * writeback and there is nothing we can do about it so it might result 23164e7ea81dSJan Kara * in data loss. So use reserved blocks to allocate metadata if 23174e7ea81dSJan Kara * possible. 23184e7ea81dSJan Kara * 2319754cfed6STheodore Ts'o * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if 2320754cfed6STheodore Ts'o * the blocks in question are delalloc blocks. This indicates 2321754cfed6STheodore Ts'o * that the blocks and quotas has already been checked when 2322754cfed6STheodore Ts'o * the data was copied into the page cache. 23234e7ea81dSJan Kara */ 23244e7ea81dSJan Kara get_blocks_flags = EXT4_GET_BLOCKS_CREATE | 2325ee0876bcSJan Kara EXT4_GET_BLOCKS_METADATA_NOFAIL | 2326ee0876bcSJan Kara EXT4_GET_BLOCKS_IO_SUBMIT; 2327090f32eeSLukas Czerner dioread_nolock = ext4_should_dioread_nolock(inode); 2328090f32eeSLukas Czerner if (dioread_nolock) 23294e7ea81dSJan Kara get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT; 23304e7ea81dSJan Kara if (map->m_flags & (1 << BH_Delay)) 23314e7ea81dSJan Kara get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE; 23324e7ea81dSJan Kara 23334e7ea81dSJan Kara err = ext4_map_blocks(handle, inode, map, get_blocks_flags); 23344e7ea81dSJan Kara if (err < 0) 23354e7ea81dSJan Kara return err; 2336090f32eeSLukas Czerner if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) { 23376b523df4SJan Kara if (!mpd->io_submit.io_end->handle && 23386b523df4SJan Kara ext4_handle_valid(handle)) { 23396b523df4SJan Kara mpd->io_submit.io_end->handle = handle->h_rsv_handle; 23406b523df4SJan Kara handle->h_rsv_handle = NULL; 23416b523df4SJan Kara } 23423613d228SJan Kara ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end); 23436b523df4SJan Kara } 23444e7ea81dSJan Kara 23454e7ea81dSJan Kara BUG_ON(map->m_len == 0); 23464e7ea81dSJan Kara if (map->m_flags & EXT4_MAP_NEW) { 23474e7ea81dSJan Kara struct block_device *bdev = inode->i_sb->s_bdev; 23484e7ea81dSJan Kara int i; 23494e7ea81dSJan Kara 23504e7ea81dSJan Kara for (i = 0; i < map->m_len; i++) 23514e7ea81dSJan Kara unmap_underlying_metadata(bdev, map->m_pblk + i); 23524e7ea81dSJan Kara } 23534e7ea81dSJan Kara return 0; 23544e7ea81dSJan Kara } 23554e7ea81dSJan Kara 23564e7ea81dSJan Kara /* 23574e7ea81dSJan Kara * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length 23584e7ea81dSJan Kara * mpd->len and submit pages underlying it for IO 23594e7ea81dSJan Kara * 23604e7ea81dSJan Kara * @handle - handle for journal operations 23614e7ea81dSJan Kara * @mpd - extent to map 23627534e854SJan Kara * @give_up_on_write - we set this to true iff there is a fatal error and there 23637534e854SJan Kara * is no hope of writing the data. The caller should discard 23647534e854SJan Kara * dirty pages to avoid infinite loops. 23654e7ea81dSJan Kara * 23664e7ea81dSJan Kara * The function maps extent starting at mpd->lblk of length mpd->len. If it is 23674e7ea81dSJan Kara * delayed, blocks are allocated, if it is unwritten, we may need to convert 23684e7ea81dSJan Kara * them to initialized or split the described range from larger unwritten 23694e7ea81dSJan Kara * extent. Note that we need not map all the described range since allocation 23704e7ea81dSJan Kara * can return less blocks or the range is covered by more unwritten extents. We 23714e7ea81dSJan Kara * cannot map more because we are limited by reserved transaction credits. On 23724e7ea81dSJan Kara * the other hand we always make sure that the last touched page is fully 23734e7ea81dSJan Kara * mapped so that it can be written out (and thus forward progress is 23744e7ea81dSJan Kara * guaranteed). After mapping we submit all mapped pages for IO. 23754e7ea81dSJan Kara */ 23764e7ea81dSJan Kara static int mpage_map_and_submit_extent(handle_t *handle, 2377cb530541STheodore Ts'o struct mpage_da_data *mpd, 2378cb530541STheodore Ts'o bool *give_up_on_write) 23794e7ea81dSJan Kara { 23804e7ea81dSJan Kara struct inode *inode = mpd->inode; 23814e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 23824e7ea81dSJan Kara int err; 23834e7ea81dSJan Kara loff_t disksize; 23846603120eSDmitry Monakhov int progress = 0; 23854e7ea81dSJan Kara 23864e7ea81dSJan Kara mpd->io_submit.io_end->offset = 23874e7ea81dSJan Kara ((loff_t)map->m_lblk) << inode->i_blkbits; 238827d7c4edSJan Kara do { 23894e7ea81dSJan Kara err = mpage_map_one_extent(handle, mpd); 23904e7ea81dSJan Kara if (err < 0) { 23914e7ea81dSJan Kara struct super_block *sb = inode->i_sb; 23924e7ea81dSJan Kara 2393cb530541STheodore Ts'o if (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED) 2394cb530541STheodore Ts'o goto invalidate_dirty_pages; 23954e7ea81dSJan Kara /* 2396cb530541STheodore Ts'o * Let the uper layers retry transient errors. 2397cb530541STheodore Ts'o * In the case of ENOSPC, if ext4_count_free_blocks() 2398cb530541STheodore Ts'o * is non-zero, a commit should free up blocks. 23994e7ea81dSJan Kara */ 2400cb530541STheodore Ts'o if ((err == -ENOMEM) || 24016603120eSDmitry Monakhov (err == -ENOSPC && ext4_count_free_clusters(sb))) { 24026603120eSDmitry Monakhov if (progress) 24036603120eSDmitry Monakhov goto update_disksize; 2404cb530541STheodore Ts'o return err; 24056603120eSDmitry Monakhov } 24064e7ea81dSJan Kara ext4_msg(sb, KERN_CRIT, 24074e7ea81dSJan Kara "Delayed block allocation failed for " 24084e7ea81dSJan Kara "inode %lu at logical offset %llu with" 24094e7ea81dSJan Kara " max blocks %u with error %d", 24104e7ea81dSJan Kara inode->i_ino, 24114e7ea81dSJan Kara (unsigned long long)map->m_lblk, 2412cb530541STheodore Ts'o (unsigned)map->m_len, -err); 24134e7ea81dSJan Kara ext4_msg(sb, KERN_CRIT, 24144e7ea81dSJan Kara "This should not happen!! Data will " 24154e7ea81dSJan Kara "be lost\n"); 24164e7ea81dSJan Kara if (err == -ENOSPC) 24174e7ea81dSJan Kara ext4_print_free_blocks(inode); 2418cb530541STheodore Ts'o invalidate_dirty_pages: 2419cb530541STheodore Ts'o *give_up_on_write = true; 24204e7ea81dSJan Kara return err; 24214e7ea81dSJan Kara } 24226603120eSDmitry Monakhov progress = 1; 24234e7ea81dSJan Kara /* 24244e7ea81dSJan Kara * Update buffer state, submit mapped pages, and get us new 24254e7ea81dSJan Kara * extent to map 24264e7ea81dSJan Kara */ 24274e7ea81dSJan Kara err = mpage_map_and_submit_buffers(mpd); 24284e7ea81dSJan Kara if (err < 0) 24296603120eSDmitry Monakhov goto update_disksize; 243027d7c4edSJan Kara } while (map->m_len); 24314e7ea81dSJan Kara 24326603120eSDmitry Monakhov update_disksize: 2433622cad13STheodore Ts'o /* 2434622cad13STheodore Ts'o * Update on-disk size after IO is submitted. Races with 2435622cad13STheodore Ts'o * truncate are avoided by checking i_size under i_data_sem. 2436622cad13STheodore Ts'o */ 243709cbfeafSKirill A. Shutemov disksize = ((loff_t)mpd->first_page) << PAGE_SHIFT; 24384e7ea81dSJan Kara if (disksize > EXT4_I(inode)->i_disksize) { 24394e7ea81dSJan Kara int err2; 2440622cad13STheodore Ts'o loff_t i_size; 24414e7ea81dSJan Kara 2442622cad13STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 2443622cad13STheodore Ts'o i_size = i_size_read(inode); 2444622cad13STheodore Ts'o if (disksize > i_size) 2445622cad13STheodore Ts'o disksize = i_size; 2446622cad13STheodore Ts'o if (disksize > EXT4_I(inode)->i_disksize) 2447622cad13STheodore Ts'o EXT4_I(inode)->i_disksize = disksize; 24484e7ea81dSJan Kara err2 = ext4_mark_inode_dirty(handle, inode); 2449622cad13STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 24504e7ea81dSJan Kara if (err2) 24514e7ea81dSJan Kara ext4_error(inode->i_sb, 24524e7ea81dSJan Kara "Failed to mark inode %lu dirty", 24534e7ea81dSJan Kara inode->i_ino); 24544e7ea81dSJan Kara if (!err) 24554e7ea81dSJan Kara err = err2; 24564e7ea81dSJan Kara } 24574e7ea81dSJan Kara return err; 24584e7ea81dSJan Kara } 24594e7ea81dSJan Kara 24604e7ea81dSJan Kara /* 2461fffb2739SJan Kara * Calculate the total number of credits to reserve for one writepages 246220970ba6STheodore Ts'o * iteration. This is called from ext4_writepages(). We map an extent of 2463fffb2739SJan Kara * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping 2464fffb2739SJan Kara * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN + 2465fffb2739SJan Kara * bpp - 1 blocks in bpp different extents. 2466525f4ed8SMingming Cao */ 2467fffb2739SJan Kara static int ext4_da_writepages_trans_blocks(struct inode *inode) 2468fffb2739SJan Kara { 2469fffb2739SJan Kara int bpp = ext4_journal_blocks_per_page(inode); 2470525f4ed8SMingming Cao 2471fffb2739SJan Kara return ext4_meta_trans_blocks(inode, 2472fffb2739SJan Kara MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp); 2473525f4ed8SMingming Cao } 247461628a3fSMingming Cao 24758e48dcfbSTheodore Ts'o /* 24764e7ea81dSJan Kara * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages 24774e7ea81dSJan Kara * and underlying extent to map 24784e7ea81dSJan Kara * 24794e7ea81dSJan Kara * @mpd - where to look for pages 24804e7ea81dSJan Kara * 24814e7ea81dSJan Kara * Walk dirty pages in the mapping. If they are fully mapped, submit them for 24824e7ea81dSJan Kara * IO immediately. When we find a page which isn't mapped we start accumulating 24834e7ea81dSJan Kara * extent of buffers underlying these pages that needs mapping (formed by 24844e7ea81dSJan Kara * either delayed or unwritten buffers). We also lock the pages containing 24854e7ea81dSJan Kara * these buffers. The extent found is returned in @mpd structure (starting at 24864e7ea81dSJan Kara * mpd->lblk with length mpd->len blocks). 24874e7ea81dSJan Kara * 24884e7ea81dSJan Kara * Note that this function can attach bios to one io_end structure which are 24894e7ea81dSJan Kara * neither logically nor physically contiguous. Although it may seem as an 24904e7ea81dSJan Kara * unnecessary complication, it is actually inevitable in blocksize < pagesize 24914e7ea81dSJan Kara * case as we need to track IO to all buffers underlying a page in one io_end. 24928e48dcfbSTheodore Ts'o */ 24934e7ea81dSJan Kara static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd) 24948e48dcfbSTheodore Ts'o { 24954e7ea81dSJan Kara struct address_space *mapping = mpd->inode->i_mapping; 24968e48dcfbSTheodore Ts'o struct pagevec pvec; 24974f01b02cSTheodore Ts'o unsigned int nr_pages; 2498aeac589aSMing Lei long left = mpd->wbc->nr_to_write; 24994e7ea81dSJan Kara pgoff_t index = mpd->first_page; 25004e7ea81dSJan Kara pgoff_t end = mpd->last_page; 25014e7ea81dSJan Kara int tag; 25024e7ea81dSJan Kara int i, err = 0; 25034e7ea81dSJan Kara int blkbits = mpd->inode->i_blkbits; 25044e7ea81dSJan Kara ext4_lblk_t lblk; 25054e7ea81dSJan Kara struct buffer_head *head; 25068e48dcfbSTheodore Ts'o 25074e7ea81dSJan Kara if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages) 25085b41d924SEric Sandeen tag = PAGECACHE_TAG_TOWRITE; 25095b41d924SEric Sandeen else 25105b41d924SEric Sandeen tag = PAGECACHE_TAG_DIRTY; 25115b41d924SEric Sandeen 25124e7ea81dSJan Kara pagevec_init(&pvec, 0); 25134e7ea81dSJan Kara mpd->map.m_len = 0; 25144e7ea81dSJan Kara mpd->next_page = index; 25154f01b02cSTheodore Ts'o while (index <= end) { 25165b41d924SEric Sandeen nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag, 25178e48dcfbSTheodore Ts'o min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1); 25188e48dcfbSTheodore Ts'o if (nr_pages == 0) 25194e7ea81dSJan Kara goto out; 25208e48dcfbSTheodore Ts'o 25218e48dcfbSTheodore Ts'o for (i = 0; i < nr_pages; i++) { 25228e48dcfbSTheodore Ts'o struct page *page = pvec.pages[i]; 25238e48dcfbSTheodore Ts'o 25248e48dcfbSTheodore Ts'o /* 25258e48dcfbSTheodore Ts'o * At this point, the page may be truncated or 25268e48dcfbSTheodore Ts'o * invalidated (changing page->mapping to NULL), or 25278e48dcfbSTheodore Ts'o * even swizzled back from swapper_space to tmpfs file 25288e48dcfbSTheodore Ts'o * mapping. However, page->index will not change 25298e48dcfbSTheodore Ts'o * because we have a reference on the page. 25308e48dcfbSTheodore Ts'o */ 25314f01b02cSTheodore Ts'o if (page->index > end) 25324f01b02cSTheodore Ts'o goto out; 25338e48dcfbSTheodore Ts'o 2534aeac589aSMing Lei /* 2535aeac589aSMing Lei * Accumulated enough dirty pages? This doesn't apply 2536aeac589aSMing Lei * to WB_SYNC_ALL mode. For integrity sync we have to 2537aeac589aSMing Lei * keep going because someone may be concurrently 2538aeac589aSMing Lei * dirtying pages, and we might have synced a lot of 2539aeac589aSMing Lei * newly appeared dirty pages, but have not synced all 2540aeac589aSMing Lei * of the old dirty pages. 2541aeac589aSMing Lei */ 2542aeac589aSMing Lei if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0) 2543aeac589aSMing Lei goto out; 2544aeac589aSMing Lei 25454e7ea81dSJan Kara /* If we can't merge this page, we are done. */ 25464e7ea81dSJan Kara if (mpd->map.m_len > 0 && mpd->next_page != page->index) 25474e7ea81dSJan Kara goto out; 254878aaced3STheodore Ts'o 25498e48dcfbSTheodore Ts'o lock_page(page); 25508e48dcfbSTheodore Ts'o /* 25514e7ea81dSJan Kara * If the page is no longer dirty, or its mapping no 25524e7ea81dSJan Kara * longer corresponds to inode we are writing (which 25534e7ea81dSJan Kara * means it has been truncated or invalidated), or the 25544e7ea81dSJan Kara * page is already under writeback and we are not doing 25554e7ea81dSJan Kara * a data integrity writeback, skip the page 25568e48dcfbSTheodore Ts'o */ 25574f01b02cSTheodore Ts'o if (!PageDirty(page) || 25584f01b02cSTheodore Ts'o (PageWriteback(page) && 25594e7ea81dSJan Kara (mpd->wbc->sync_mode == WB_SYNC_NONE)) || 25604f01b02cSTheodore Ts'o unlikely(page->mapping != mapping)) { 25618e48dcfbSTheodore Ts'o unlock_page(page); 25628e48dcfbSTheodore Ts'o continue; 25638e48dcfbSTheodore Ts'o } 25648e48dcfbSTheodore Ts'o 25658e48dcfbSTheodore Ts'o wait_on_page_writeback(page); 25668e48dcfbSTheodore Ts'o BUG_ON(PageWriteback(page)); 25678e48dcfbSTheodore Ts'o 25684e7ea81dSJan Kara if (mpd->map.m_len == 0) 25698eb9e5ceSTheodore Ts'o mpd->first_page = page->index; 25708eb9e5ceSTheodore Ts'o mpd->next_page = page->index + 1; 2571f8bec370SJan Kara /* Add all dirty buffers to mpd */ 25724e7ea81dSJan Kara lblk = ((ext4_lblk_t)page->index) << 257309cbfeafSKirill A. Shutemov (PAGE_SHIFT - blkbits); 25748eb9e5ceSTheodore Ts'o head = page_buffers(page); 25755f1132b2SJan Kara err = mpage_process_page_bufs(mpd, head, head, lblk); 25765f1132b2SJan Kara if (err <= 0) 25774e7ea81dSJan Kara goto out; 25785f1132b2SJan Kara err = 0; 2579aeac589aSMing Lei left--; 25808e48dcfbSTheodore Ts'o } 25818e48dcfbSTheodore Ts'o pagevec_release(&pvec); 25828e48dcfbSTheodore Ts'o cond_resched(); 25838e48dcfbSTheodore Ts'o } 25844f01b02cSTheodore Ts'o return 0; 25858eb9e5ceSTheodore Ts'o out: 25868eb9e5ceSTheodore Ts'o pagevec_release(&pvec); 25874e7ea81dSJan Kara return err; 25888e48dcfbSTheodore Ts'o } 25898e48dcfbSTheodore Ts'o 259020970ba6STheodore Ts'o static int __writepage(struct page *page, struct writeback_control *wbc, 259120970ba6STheodore Ts'o void *data) 259220970ba6STheodore Ts'o { 259320970ba6STheodore Ts'o struct address_space *mapping = data; 259420970ba6STheodore Ts'o int ret = ext4_writepage(page, wbc); 259520970ba6STheodore Ts'o mapping_set_error(mapping, ret); 259620970ba6STheodore Ts'o return ret; 259720970ba6STheodore Ts'o } 259820970ba6STheodore Ts'o 259920970ba6STheodore Ts'o static int ext4_writepages(struct address_space *mapping, 260064769240SAlex Tomas struct writeback_control *wbc) 260164769240SAlex Tomas { 26024e7ea81dSJan Kara pgoff_t writeback_index = 0; 26034e7ea81dSJan Kara long nr_to_write = wbc->nr_to_write; 260422208dedSAneesh Kumar K.V int range_whole = 0; 26054e7ea81dSJan Kara int cycled = 1; 260661628a3fSMingming Cao handle_t *handle = NULL; 2607df22291fSAneesh Kumar K.V struct mpage_da_data mpd; 26085e745b04SAneesh Kumar K.V struct inode *inode = mapping->host; 26096b523df4SJan Kara int needed_blocks, rsv_blocks = 0, ret = 0; 26105e745b04SAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb); 26114e7ea81dSJan Kara bool done; 26121bce63d1SShaohua Li struct blk_plug plug; 2613cb530541STheodore Ts'o bool give_up_on_write = false; 261461628a3fSMingming Cao 2615c8585c6fSDaeho Jeong percpu_down_read(&sbi->s_journal_flag_rwsem); 261620970ba6STheodore Ts'o trace_ext4_writepages(inode, wbc); 2617ba80b101STheodore Ts'o 2618c8585c6fSDaeho Jeong if (dax_mapping(mapping)) { 2619c8585c6fSDaeho Jeong ret = dax_writeback_mapping_range(mapping, inode->i_sb->s_bdev, 26207f6d5b52SRoss Zwisler wbc); 2621c8585c6fSDaeho Jeong goto out_writepages; 2622c8585c6fSDaeho Jeong } 26237f6d5b52SRoss Zwisler 262461628a3fSMingming Cao /* 262561628a3fSMingming Cao * No pages to write? This is mainly a kludge to avoid starting 262661628a3fSMingming Cao * a transaction for special inodes like journal inode on last iput() 262761628a3fSMingming Cao * because that could violate lock ordering on umount 262861628a3fSMingming Cao */ 2629a1d6cc56SAneesh Kumar K.V if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) 2630bbf023c7SMing Lei goto out_writepages; 26312a21e37eSTheodore Ts'o 263220970ba6STheodore Ts'o if (ext4_should_journal_data(inode)) { 263320970ba6STheodore Ts'o struct blk_plug plug; 263420970ba6STheodore Ts'o 263520970ba6STheodore Ts'o blk_start_plug(&plug); 263620970ba6STheodore Ts'o ret = write_cache_pages(mapping, wbc, __writepage, mapping); 263720970ba6STheodore Ts'o blk_finish_plug(&plug); 2638bbf023c7SMing Lei goto out_writepages; 263920970ba6STheodore Ts'o } 264020970ba6STheodore Ts'o 26412a21e37eSTheodore Ts'o /* 26422a21e37eSTheodore Ts'o * If the filesystem has aborted, it is read-only, so return 26432a21e37eSTheodore Ts'o * right away instead of dumping stack traces later on that 26442a21e37eSTheodore Ts'o * will obscure the real source of the problem. We test 26454ab2f15bSTheodore Ts'o * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because 26462a21e37eSTheodore Ts'o * the latter could be true if the filesystem is mounted 264720970ba6STheodore Ts'o * read-only, and in that case, ext4_writepages should 26482a21e37eSTheodore Ts'o * *never* be called, so if that ever happens, we would want 26492a21e37eSTheodore Ts'o * the stack trace. 26502a21e37eSTheodore Ts'o */ 2651bbf023c7SMing Lei if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) { 2652bbf023c7SMing Lei ret = -EROFS; 2653bbf023c7SMing Lei goto out_writepages; 2654bbf023c7SMing Lei } 26552a21e37eSTheodore Ts'o 26566b523df4SJan Kara if (ext4_should_dioread_nolock(inode)) { 26576b523df4SJan Kara /* 26586b523df4SJan Kara * We may need to convert up to one extent per block in 26596b523df4SJan Kara * the page and we may dirty the inode. 26606b523df4SJan Kara */ 266109cbfeafSKirill A. Shutemov rsv_blocks = 1 + (PAGE_SIZE >> inode->i_blkbits); 26626b523df4SJan Kara } 26636b523df4SJan Kara 26644e7ea81dSJan Kara /* 26654e7ea81dSJan Kara * If we have inline data and arrive here, it means that 26664e7ea81dSJan Kara * we will soon create the block for the 1st page, so 26674e7ea81dSJan Kara * we'd better clear the inline data here. 26684e7ea81dSJan Kara */ 26694e7ea81dSJan Kara if (ext4_has_inline_data(inode)) { 26704e7ea81dSJan Kara /* Just inode will be modified... */ 26714e7ea81dSJan Kara handle = ext4_journal_start(inode, EXT4_HT_INODE, 1); 26724e7ea81dSJan Kara if (IS_ERR(handle)) { 26734e7ea81dSJan Kara ret = PTR_ERR(handle); 26744e7ea81dSJan Kara goto out_writepages; 26754e7ea81dSJan Kara } 26764e7ea81dSJan Kara BUG_ON(ext4_test_inode_state(inode, 26774e7ea81dSJan Kara EXT4_STATE_MAY_INLINE_DATA)); 26784e7ea81dSJan Kara ext4_destroy_inline_data(handle, inode); 26794e7ea81dSJan Kara ext4_journal_stop(handle); 26804e7ea81dSJan Kara } 26814e7ea81dSJan Kara 268222208dedSAneesh Kumar K.V if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX) 268322208dedSAneesh Kumar K.V range_whole = 1; 268461628a3fSMingming Cao 26852acf2c26SAneesh Kumar K.V if (wbc->range_cyclic) { 26864e7ea81dSJan Kara writeback_index = mapping->writeback_index; 26874e7ea81dSJan Kara if (writeback_index) 26882acf2c26SAneesh Kumar K.V cycled = 0; 26894e7ea81dSJan Kara mpd.first_page = writeback_index; 26904e7ea81dSJan Kara mpd.last_page = -1; 26915b41d924SEric Sandeen } else { 269209cbfeafSKirill A. Shutemov mpd.first_page = wbc->range_start >> PAGE_SHIFT; 269309cbfeafSKirill A. Shutemov mpd.last_page = wbc->range_end >> PAGE_SHIFT; 26945b41d924SEric Sandeen } 2695a1d6cc56SAneesh Kumar K.V 26964e7ea81dSJan Kara mpd.inode = inode; 26974e7ea81dSJan Kara mpd.wbc = wbc; 26984e7ea81dSJan Kara ext4_io_submit_init(&mpd.io_submit, wbc); 26992acf2c26SAneesh Kumar K.V retry: 27006e6938b6SWu Fengguang if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages) 27014e7ea81dSJan Kara tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page); 27024e7ea81dSJan Kara done = false; 27031bce63d1SShaohua Li blk_start_plug(&plug); 27044e7ea81dSJan Kara while (!done && mpd.first_page <= mpd.last_page) { 27054e7ea81dSJan Kara /* For each extent of pages we use new io_end */ 27064e7ea81dSJan Kara mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL); 27074e7ea81dSJan Kara if (!mpd.io_submit.io_end) { 27084e7ea81dSJan Kara ret = -ENOMEM; 27094e7ea81dSJan Kara break; 27104e7ea81dSJan Kara } 2711a1d6cc56SAneesh Kumar K.V 2712a1d6cc56SAneesh Kumar K.V /* 27134e7ea81dSJan Kara * We have two constraints: We find one extent to map and we 27144e7ea81dSJan Kara * must always write out whole page (makes a difference when 27154e7ea81dSJan Kara * blocksize < pagesize) so that we don't block on IO when we 27164e7ea81dSJan Kara * try to write out the rest of the page. Journalled mode is 27174e7ea81dSJan Kara * not supported by delalloc. 2718a1d6cc56SAneesh Kumar K.V */ 2719a1d6cc56SAneesh Kumar K.V BUG_ON(ext4_should_journal_data(inode)); 2720525f4ed8SMingming Cao needed_blocks = ext4_da_writepages_trans_blocks(inode); 2721a1d6cc56SAneesh Kumar K.V 272261628a3fSMingming Cao /* start a new transaction */ 27236b523df4SJan Kara handle = ext4_journal_start_with_reserve(inode, 27246b523df4SJan Kara EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks); 272561628a3fSMingming Cao if (IS_ERR(handle)) { 272661628a3fSMingming Cao ret = PTR_ERR(handle); 27271693918eSTheodore Ts'o ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: " 2728fbe845ddSCurt Wohlgemuth "%ld pages, ino %lu; err %d", __func__, 2729a1d6cc56SAneesh Kumar K.V wbc->nr_to_write, inode->i_ino, ret); 27304e7ea81dSJan Kara /* Release allocated io_end */ 27314e7ea81dSJan Kara ext4_put_io_end(mpd.io_submit.io_end); 27324e7ea81dSJan Kara break; 273361628a3fSMingming Cao } 2734f63e6005STheodore Ts'o 27354e7ea81dSJan Kara trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc); 27364e7ea81dSJan Kara ret = mpage_prepare_extent_to_map(&mpd); 27374e7ea81dSJan Kara if (!ret) { 27384e7ea81dSJan Kara if (mpd.map.m_len) 2739cb530541STheodore Ts'o ret = mpage_map_and_submit_extent(handle, &mpd, 2740cb530541STheodore Ts'o &give_up_on_write); 27414e7ea81dSJan Kara else { 2742f63e6005STheodore Ts'o /* 27434e7ea81dSJan Kara * We scanned the whole range (or exhausted 27444e7ea81dSJan Kara * nr_to_write), submitted what was mapped and 27454e7ea81dSJan Kara * didn't find anything needing mapping. We are 27464e7ea81dSJan Kara * done. 2747f63e6005STheodore Ts'o */ 27484e7ea81dSJan Kara done = true; 2749f63e6005STheodore Ts'o } 27504e7ea81dSJan Kara } 275161628a3fSMingming Cao ext4_journal_stop(handle); 27524e7ea81dSJan Kara /* Submit prepared bio */ 27534e7ea81dSJan Kara ext4_io_submit(&mpd.io_submit); 27544e7ea81dSJan Kara /* Unlock pages we didn't use */ 2755cb530541STheodore Ts'o mpage_release_unused_pages(&mpd, give_up_on_write); 27564e7ea81dSJan Kara /* Drop our io_end reference we got from init */ 27574e7ea81dSJan Kara ext4_put_io_end(mpd.io_submit.io_end); 2758df22291fSAneesh Kumar K.V 27594e7ea81dSJan Kara if (ret == -ENOSPC && sbi->s_journal) { 27604e7ea81dSJan Kara /* 27614e7ea81dSJan Kara * Commit the transaction which would 276222208dedSAneesh Kumar K.V * free blocks released in the transaction 276322208dedSAneesh Kumar K.V * and try again 276422208dedSAneesh Kumar K.V */ 2765df22291fSAneesh Kumar K.V jbd2_journal_force_commit_nested(sbi->s_journal); 276622208dedSAneesh Kumar K.V ret = 0; 27674e7ea81dSJan Kara continue; 27684e7ea81dSJan Kara } 27694e7ea81dSJan Kara /* Fatal error - ENOMEM, EIO... */ 27704e7ea81dSJan Kara if (ret) 277161628a3fSMingming Cao break; 277261628a3fSMingming Cao } 27731bce63d1SShaohua Li blk_finish_plug(&plug); 27749c12a831SJan Kara if (!ret && !cycled && wbc->nr_to_write > 0) { 27752acf2c26SAneesh Kumar K.V cycled = 1; 27764e7ea81dSJan Kara mpd.last_page = writeback_index - 1; 27774e7ea81dSJan Kara mpd.first_page = 0; 27782acf2c26SAneesh Kumar K.V goto retry; 27792acf2c26SAneesh Kumar K.V } 278061628a3fSMingming Cao 278122208dedSAneesh Kumar K.V /* Update index */ 278222208dedSAneesh Kumar K.V if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0)) 278322208dedSAneesh Kumar K.V /* 27844e7ea81dSJan Kara * Set the writeback_index so that range_cyclic 278522208dedSAneesh Kumar K.V * mode will write it back later 278622208dedSAneesh Kumar K.V */ 27874e7ea81dSJan Kara mapping->writeback_index = mpd.first_page; 2788a1d6cc56SAneesh Kumar K.V 278961628a3fSMingming Cao out_writepages: 279020970ba6STheodore Ts'o trace_ext4_writepages_result(inode, wbc, ret, 27914e7ea81dSJan Kara nr_to_write - wbc->nr_to_write); 2792c8585c6fSDaeho Jeong percpu_up_read(&sbi->s_journal_flag_rwsem); 279361628a3fSMingming Cao return ret; 279464769240SAlex Tomas } 279564769240SAlex Tomas 279679f0be8dSAneesh Kumar K.V static int ext4_nonda_switch(struct super_block *sb) 279779f0be8dSAneesh Kumar K.V { 27985c1ff336SEric Whitney s64 free_clusters, dirty_clusters; 279979f0be8dSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(sb); 280079f0be8dSAneesh Kumar K.V 280179f0be8dSAneesh Kumar K.V /* 280279f0be8dSAneesh Kumar K.V * switch to non delalloc mode if we are running low 280379f0be8dSAneesh Kumar K.V * on free block. The free block accounting via percpu 2804179f7ebfSEric Dumazet * counters can get slightly wrong with percpu_counter_batch getting 280579f0be8dSAneesh Kumar K.V * accumulated on each CPU without updating global counters 280679f0be8dSAneesh Kumar K.V * Delalloc need an accurate free block accounting. So switch 280779f0be8dSAneesh Kumar K.V * to non delalloc when we are near to error range. 280879f0be8dSAneesh Kumar K.V */ 28095c1ff336SEric Whitney free_clusters = 28105c1ff336SEric Whitney percpu_counter_read_positive(&sbi->s_freeclusters_counter); 28115c1ff336SEric Whitney dirty_clusters = 28125c1ff336SEric Whitney percpu_counter_read_positive(&sbi->s_dirtyclusters_counter); 281300d4e736STheodore Ts'o /* 281400d4e736STheodore Ts'o * Start pushing delalloc when 1/2 of free blocks are dirty. 281500d4e736STheodore Ts'o */ 28165c1ff336SEric Whitney if (dirty_clusters && (free_clusters < 2 * dirty_clusters)) 281710ee27a0SMiao Xie try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE); 281800d4e736STheodore Ts'o 28195c1ff336SEric Whitney if (2 * free_clusters < 3 * dirty_clusters || 28205c1ff336SEric Whitney free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) { 282179f0be8dSAneesh Kumar K.V /* 2822c8afb446SEric Sandeen * free block count is less than 150% of dirty blocks 2823c8afb446SEric Sandeen * or free blocks is less than watermark 282479f0be8dSAneesh Kumar K.V */ 282579f0be8dSAneesh Kumar K.V return 1; 282679f0be8dSAneesh Kumar K.V } 282779f0be8dSAneesh Kumar K.V return 0; 282879f0be8dSAneesh Kumar K.V } 282979f0be8dSAneesh Kumar K.V 28300ff8947fSEric Sandeen /* We always reserve for an inode update; the superblock could be there too */ 28310ff8947fSEric Sandeen static int ext4_da_write_credits(struct inode *inode, loff_t pos, unsigned len) 28320ff8947fSEric Sandeen { 2833e2b911c5SDarrick J. Wong if (likely(ext4_has_feature_large_file(inode->i_sb))) 28340ff8947fSEric Sandeen return 1; 28350ff8947fSEric Sandeen 28360ff8947fSEric Sandeen if (pos + len <= 0x7fffffffULL) 28370ff8947fSEric Sandeen return 1; 28380ff8947fSEric Sandeen 28390ff8947fSEric Sandeen /* We might need to update the superblock to set LARGE_FILE */ 28400ff8947fSEric Sandeen return 2; 28410ff8947fSEric Sandeen } 28420ff8947fSEric Sandeen 284364769240SAlex Tomas static int ext4_da_write_begin(struct file *file, struct address_space *mapping, 284464769240SAlex Tomas loff_t pos, unsigned len, unsigned flags, 284564769240SAlex Tomas struct page **pagep, void **fsdata) 284664769240SAlex Tomas { 284772b8ab9dSEric Sandeen int ret, retries = 0; 284864769240SAlex Tomas struct page *page; 284964769240SAlex Tomas pgoff_t index; 285064769240SAlex Tomas struct inode *inode = mapping->host; 285164769240SAlex Tomas handle_t *handle; 285264769240SAlex Tomas 285309cbfeafSKirill A. Shutemov index = pos >> PAGE_SHIFT; 285479f0be8dSAneesh Kumar K.V 285579f0be8dSAneesh Kumar K.V if (ext4_nonda_switch(inode->i_sb)) { 285679f0be8dSAneesh Kumar K.V *fsdata = (void *)FALL_BACK_TO_NONDELALLOC; 285779f0be8dSAneesh Kumar K.V return ext4_write_begin(file, mapping, pos, 285879f0be8dSAneesh Kumar K.V len, flags, pagep, fsdata); 285979f0be8dSAneesh Kumar K.V } 286079f0be8dSAneesh Kumar K.V *fsdata = (void *)0; 28619bffad1eSTheodore Ts'o trace_ext4_da_write_begin(inode, pos, len, flags); 28629c3569b5STao Ma 28639c3569b5STao Ma if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) { 28649c3569b5STao Ma ret = ext4_da_write_inline_data_begin(mapping, inode, 28659c3569b5STao Ma pos, len, flags, 28669c3569b5STao Ma pagep, fsdata); 28679c3569b5STao Ma if (ret < 0) 286847564bfbSTheodore Ts'o return ret; 286947564bfbSTheodore Ts'o if (ret == 1) 287047564bfbSTheodore Ts'o return 0; 28719c3569b5STao Ma } 28729c3569b5STao Ma 287347564bfbSTheodore Ts'o /* 287447564bfbSTheodore Ts'o * grab_cache_page_write_begin() can take a long time if the 287547564bfbSTheodore Ts'o * system is thrashing due to memory pressure, or if the page 287647564bfbSTheodore Ts'o * is being written back. So grab it first before we start 287747564bfbSTheodore Ts'o * the transaction handle. This also allows us to allocate 287847564bfbSTheodore Ts'o * the page (if needed) without using GFP_NOFS. 287947564bfbSTheodore Ts'o */ 288047564bfbSTheodore Ts'o retry_grab: 288147564bfbSTheodore Ts'o page = grab_cache_page_write_begin(mapping, index, flags); 288247564bfbSTheodore Ts'o if (!page) 288347564bfbSTheodore Ts'o return -ENOMEM; 288447564bfbSTheodore Ts'o unlock_page(page); 288547564bfbSTheodore Ts'o 288664769240SAlex Tomas /* 288764769240SAlex Tomas * With delayed allocation, we don't log the i_disksize update 288864769240SAlex Tomas * if there is delayed block allocation. But we still need 288964769240SAlex Tomas * to journalling the i_disksize update if writes to the end 289064769240SAlex Tomas * of file which has an already mapped buffer. 289164769240SAlex Tomas */ 289247564bfbSTheodore Ts'o retry_journal: 28930ff8947fSEric Sandeen handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 28940ff8947fSEric Sandeen ext4_da_write_credits(inode, pos, len)); 289564769240SAlex Tomas if (IS_ERR(handle)) { 289609cbfeafSKirill A. Shutemov put_page(page); 289747564bfbSTheodore Ts'o return PTR_ERR(handle); 289864769240SAlex Tomas } 289964769240SAlex Tomas 290047564bfbSTheodore Ts'o lock_page(page); 290147564bfbSTheodore Ts'o if (page->mapping != mapping) { 290247564bfbSTheodore Ts'o /* The page got truncated from under us */ 290347564bfbSTheodore Ts'o unlock_page(page); 290409cbfeafSKirill A. Shutemov put_page(page); 2905d5a0d4f7SEric Sandeen ext4_journal_stop(handle); 290647564bfbSTheodore Ts'o goto retry_grab; 2907d5a0d4f7SEric Sandeen } 290847564bfbSTheodore Ts'o /* In case writeback began while the page was unlocked */ 29097afe5aa5SDmitry Monakhov wait_for_stable_page(page); 291064769240SAlex Tomas 29112058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION 29122058f83aSMichael Halcrow ret = ext4_block_write_begin(page, pos, len, 29132058f83aSMichael Halcrow ext4_da_get_block_prep); 29142058f83aSMichael Halcrow #else 29156e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep); 29162058f83aSMichael Halcrow #endif 291764769240SAlex Tomas if (ret < 0) { 291864769240SAlex Tomas unlock_page(page); 291964769240SAlex Tomas ext4_journal_stop(handle); 2920ae4d5372SAneesh Kumar K.V /* 2921ae4d5372SAneesh Kumar K.V * block_write_begin may have instantiated a few blocks 2922ae4d5372SAneesh Kumar K.V * outside i_size. Trim these off again. Don't need 2923ae4d5372SAneesh Kumar K.V * i_size_read because we hold i_mutex. 2924ae4d5372SAneesh Kumar K.V */ 2925ae4d5372SAneesh Kumar K.V if (pos + len > inode->i_size) 2926b9a4207dSJan Kara ext4_truncate_failed_write(inode); 292747564bfbSTheodore Ts'o 292847564bfbSTheodore Ts'o if (ret == -ENOSPC && 292947564bfbSTheodore Ts'o ext4_should_retry_alloc(inode->i_sb, &retries)) 293047564bfbSTheodore Ts'o goto retry_journal; 293147564bfbSTheodore Ts'o 293209cbfeafSKirill A. Shutemov put_page(page); 293347564bfbSTheodore Ts'o return ret; 293464769240SAlex Tomas } 293564769240SAlex Tomas 293647564bfbSTheodore Ts'o *pagep = page; 293764769240SAlex Tomas return ret; 293864769240SAlex Tomas } 293964769240SAlex Tomas 2940632eaeabSMingming Cao /* 2941632eaeabSMingming Cao * Check if we should update i_disksize 2942632eaeabSMingming Cao * when write to the end of file but not require block allocation 2943632eaeabSMingming Cao */ 2944632eaeabSMingming Cao static int ext4_da_should_update_i_disksize(struct page *page, 2945632eaeabSMingming Cao unsigned long offset) 2946632eaeabSMingming Cao { 2947632eaeabSMingming Cao struct buffer_head *bh; 2948632eaeabSMingming Cao struct inode *inode = page->mapping->host; 2949632eaeabSMingming Cao unsigned int idx; 2950632eaeabSMingming Cao int i; 2951632eaeabSMingming Cao 2952632eaeabSMingming Cao bh = page_buffers(page); 2953632eaeabSMingming Cao idx = offset >> inode->i_blkbits; 2954632eaeabSMingming Cao 2955632eaeabSMingming Cao for (i = 0; i < idx; i++) 2956632eaeabSMingming Cao bh = bh->b_this_page; 2957632eaeabSMingming Cao 295829fa89d0SAneesh Kumar K.V if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh)) 2959632eaeabSMingming Cao return 0; 2960632eaeabSMingming Cao return 1; 2961632eaeabSMingming Cao } 2962632eaeabSMingming Cao 296364769240SAlex Tomas static int ext4_da_write_end(struct file *file, 296464769240SAlex Tomas struct address_space *mapping, 296564769240SAlex Tomas loff_t pos, unsigned len, unsigned copied, 296664769240SAlex Tomas struct page *page, void *fsdata) 296764769240SAlex Tomas { 296864769240SAlex Tomas struct inode *inode = mapping->host; 296964769240SAlex Tomas int ret = 0, ret2; 297064769240SAlex Tomas handle_t *handle = ext4_journal_current_handle(); 297164769240SAlex Tomas loff_t new_i_size; 2972632eaeabSMingming Cao unsigned long start, end; 297379f0be8dSAneesh Kumar K.V int write_mode = (int)(unsigned long)fsdata; 297479f0be8dSAneesh Kumar K.V 297574d553aaSTheodore Ts'o if (write_mode == FALL_BACK_TO_NONDELALLOC) 297674d553aaSTheodore Ts'o return ext4_write_end(file, mapping, pos, 297779f0be8dSAneesh Kumar K.V len, copied, page, fsdata); 2978632eaeabSMingming Cao 29799bffad1eSTheodore Ts'o trace_ext4_da_write_end(inode, pos, len, copied); 298009cbfeafSKirill A. Shutemov start = pos & (PAGE_SIZE - 1); 2981632eaeabSMingming Cao end = start + copied - 1; 298264769240SAlex Tomas 298364769240SAlex Tomas /* 298464769240SAlex Tomas * generic_write_end() will run mark_inode_dirty() if i_size 298564769240SAlex Tomas * changes. So let's piggyback the i_disksize mark_inode_dirty 298664769240SAlex Tomas * into that. 298764769240SAlex Tomas */ 298864769240SAlex Tomas new_i_size = pos + copied; 2989ea51d132SAndrea Arcangeli if (copied && new_i_size > EXT4_I(inode)->i_disksize) { 29909c3569b5STao Ma if (ext4_has_inline_data(inode) || 29919c3569b5STao Ma ext4_da_should_update_i_disksize(page, end)) { 2992ee124d27SDmitry Monakhov ext4_update_i_disksize(inode, new_i_size); 2993cf17fea6SAneesh Kumar K.V /* We need to mark inode dirty even if 2994cf17fea6SAneesh Kumar K.V * new_i_size is less that inode->i_size 2995cf17fea6SAneesh Kumar K.V * bu greater than i_disksize.(hint delalloc) 2996cf17fea6SAneesh Kumar K.V */ 2997cf17fea6SAneesh Kumar K.V ext4_mark_inode_dirty(handle, inode); 2998632eaeabSMingming Cao } 2999632eaeabSMingming Cao } 30009c3569b5STao Ma 30019c3569b5STao Ma if (write_mode != CONVERT_INLINE_DATA && 30029c3569b5STao Ma ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) && 30039c3569b5STao Ma ext4_has_inline_data(inode)) 30049c3569b5STao Ma ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied, 30059c3569b5STao Ma page); 30069c3569b5STao Ma else 300764769240SAlex Tomas ret2 = generic_write_end(file, mapping, pos, len, copied, 300864769240SAlex Tomas page, fsdata); 30099c3569b5STao Ma 301064769240SAlex Tomas copied = ret2; 301164769240SAlex Tomas if (ret2 < 0) 301264769240SAlex Tomas ret = ret2; 301364769240SAlex Tomas ret2 = ext4_journal_stop(handle); 301464769240SAlex Tomas if (!ret) 301564769240SAlex Tomas ret = ret2; 301664769240SAlex Tomas 301764769240SAlex Tomas return ret ? ret : copied; 301864769240SAlex Tomas } 301964769240SAlex Tomas 3020d47992f8SLukas Czerner static void ext4_da_invalidatepage(struct page *page, unsigned int offset, 3021d47992f8SLukas Czerner unsigned int length) 302264769240SAlex Tomas { 302364769240SAlex Tomas /* 302464769240SAlex Tomas * Drop reserved blocks 302564769240SAlex Tomas */ 302664769240SAlex Tomas BUG_ON(!PageLocked(page)); 302764769240SAlex Tomas if (!page_has_buffers(page)) 302864769240SAlex Tomas goto out; 302964769240SAlex Tomas 3030ca99fdd2SLukas Czerner ext4_da_page_release_reservation(page, offset, length); 303164769240SAlex Tomas 303264769240SAlex Tomas out: 3033d47992f8SLukas Czerner ext4_invalidatepage(page, offset, length); 303464769240SAlex Tomas 303564769240SAlex Tomas return; 303664769240SAlex Tomas } 303764769240SAlex Tomas 3038ccd2506bSTheodore Ts'o /* 3039ccd2506bSTheodore Ts'o * Force all delayed allocation blocks to be allocated for a given inode. 3040ccd2506bSTheodore Ts'o */ 3041ccd2506bSTheodore Ts'o int ext4_alloc_da_blocks(struct inode *inode) 3042ccd2506bSTheodore Ts'o { 3043fb40ba0dSTheodore Ts'o trace_ext4_alloc_da_blocks(inode); 3044fb40ba0dSTheodore Ts'o 304571d4f7d0STheodore Ts'o if (!EXT4_I(inode)->i_reserved_data_blocks) 3046ccd2506bSTheodore Ts'o return 0; 3047ccd2506bSTheodore Ts'o 3048ccd2506bSTheodore Ts'o /* 3049ccd2506bSTheodore Ts'o * We do something simple for now. The filemap_flush() will 3050ccd2506bSTheodore Ts'o * also start triggering a write of the data blocks, which is 3051ccd2506bSTheodore Ts'o * not strictly speaking necessary (and for users of 3052ccd2506bSTheodore Ts'o * laptop_mode, not even desirable). However, to do otherwise 3053ccd2506bSTheodore Ts'o * would require replicating code paths in: 3054ccd2506bSTheodore Ts'o * 305520970ba6STheodore Ts'o * ext4_writepages() -> 3056ccd2506bSTheodore Ts'o * write_cache_pages() ---> (via passed in callback function) 3057ccd2506bSTheodore Ts'o * __mpage_da_writepage() --> 3058ccd2506bSTheodore Ts'o * mpage_add_bh_to_extent() 3059ccd2506bSTheodore Ts'o * mpage_da_map_blocks() 3060ccd2506bSTheodore Ts'o * 3061ccd2506bSTheodore Ts'o * The problem is that write_cache_pages(), located in 3062ccd2506bSTheodore Ts'o * mm/page-writeback.c, marks pages clean in preparation for 3063ccd2506bSTheodore Ts'o * doing I/O, which is not desirable if we're not planning on 3064ccd2506bSTheodore Ts'o * doing I/O at all. 3065ccd2506bSTheodore Ts'o * 3066ccd2506bSTheodore Ts'o * We could call write_cache_pages(), and then redirty all of 3067380cf090SWu Fengguang * the pages by calling redirty_page_for_writepage() but that 3068ccd2506bSTheodore Ts'o * would be ugly in the extreme. So instead we would need to 3069ccd2506bSTheodore Ts'o * replicate parts of the code in the above functions, 307025985edcSLucas De Marchi * simplifying them because we wouldn't actually intend to 3071ccd2506bSTheodore Ts'o * write out the pages, but rather only collect contiguous 3072ccd2506bSTheodore Ts'o * logical block extents, call the multi-block allocator, and 3073ccd2506bSTheodore Ts'o * then update the buffer heads with the block allocations. 3074ccd2506bSTheodore Ts'o * 3075ccd2506bSTheodore Ts'o * For now, though, we'll cheat by calling filemap_flush(), 3076ccd2506bSTheodore Ts'o * which will map the blocks, and start the I/O, but not 3077ccd2506bSTheodore Ts'o * actually wait for the I/O to complete. 3078ccd2506bSTheodore Ts'o */ 3079ccd2506bSTheodore Ts'o return filemap_flush(inode->i_mapping); 3080ccd2506bSTheodore Ts'o } 308164769240SAlex Tomas 308264769240SAlex Tomas /* 3083ac27a0ecSDave Kleikamp * bmap() is special. It gets used by applications such as lilo and by 3084ac27a0ecSDave Kleikamp * the swapper to find the on-disk block of a specific piece of data. 3085ac27a0ecSDave Kleikamp * 3086ac27a0ecSDave Kleikamp * Naturally, this is dangerous if the block concerned is still in the 3087617ba13bSMingming Cao * journal. If somebody makes a swapfile on an ext4 data-journaling 3088ac27a0ecSDave Kleikamp * filesystem and enables swap, then they may get a nasty shock when the 3089ac27a0ecSDave Kleikamp * data getting swapped to that swapfile suddenly gets overwritten by 3090ac27a0ecSDave Kleikamp * the original zero's written out previously to the journal and 3091ac27a0ecSDave Kleikamp * awaiting writeback in the kernel's buffer cache. 3092ac27a0ecSDave Kleikamp * 3093ac27a0ecSDave Kleikamp * So, if we see any bmap calls here on a modified, data-journaled file, 3094ac27a0ecSDave Kleikamp * take extra steps to flush any blocks which might be in the cache. 3095ac27a0ecSDave Kleikamp */ 3096617ba13bSMingming Cao static sector_t ext4_bmap(struct address_space *mapping, sector_t block) 3097ac27a0ecSDave Kleikamp { 3098ac27a0ecSDave Kleikamp struct inode *inode = mapping->host; 3099ac27a0ecSDave Kleikamp journal_t *journal; 3100ac27a0ecSDave Kleikamp int err; 3101ac27a0ecSDave Kleikamp 310246c7f254STao Ma /* 310346c7f254STao Ma * We can get here for an inline file via the FIBMAP ioctl 310446c7f254STao Ma */ 310546c7f254STao Ma if (ext4_has_inline_data(inode)) 310646c7f254STao Ma return 0; 310746c7f254STao Ma 310864769240SAlex Tomas if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) && 310964769240SAlex Tomas test_opt(inode->i_sb, DELALLOC)) { 311064769240SAlex Tomas /* 311164769240SAlex Tomas * With delalloc we want to sync the file 311264769240SAlex Tomas * so that we can make sure we allocate 311364769240SAlex Tomas * blocks for file 311464769240SAlex Tomas */ 311564769240SAlex Tomas filemap_write_and_wait(mapping); 311664769240SAlex Tomas } 311764769240SAlex Tomas 311819f5fb7aSTheodore Ts'o if (EXT4_JOURNAL(inode) && 311919f5fb7aSTheodore Ts'o ext4_test_inode_state(inode, EXT4_STATE_JDATA)) { 3120ac27a0ecSDave Kleikamp /* 3121ac27a0ecSDave Kleikamp * This is a REALLY heavyweight approach, but the use of 3122ac27a0ecSDave Kleikamp * bmap on dirty files is expected to be extremely rare: 3123ac27a0ecSDave Kleikamp * only if we run lilo or swapon on a freshly made file 3124ac27a0ecSDave Kleikamp * do we expect this to happen. 3125ac27a0ecSDave Kleikamp * 3126ac27a0ecSDave Kleikamp * (bmap requires CAP_SYS_RAWIO so this does not 3127ac27a0ecSDave Kleikamp * represent an unprivileged user DOS attack --- we'd be 3128ac27a0ecSDave Kleikamp * in trouble if mortal users could trigger this path at 3129ac27a0ecSDave Kleikamp * will.) 3130ac27a0ecSDave Kleikamp * 3131617ba13bSMingming Cao * NB. EXT4_STATE_JDATA is not set on files other than 3132ac27a0ecSDave Kleikamp * regular files. If somebody wants to bmap a directory 3133ac27a0ecSDave Kleikamp * or symlink and gets confused because the buffer 3134ac27a0ecSDave Kleikamp * hasn't yet been flushed to disk, they deserve 3135ac27a0ecSDave Kleikamp * everything they get. 3136ac27a0ecSDave Kleikamp */ 3137ac27a0ecSDave Kleikamp 313819f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_JDATA); 3139617ba13bSMingming Cao journal = EXT4_JOURNAL(inode); 3140dab291afSMingming Cao jbd2_journal_lock_updates(journal); 3141dab291afSMingming Cao err = jbd2_journal_flush(journal); 3142dab291afSMingming Cao jbd2_journal_unlock_updates(journal); 3143ac27a0ecSDave Kleikamp 3144ac27a0ecSDave Kleikamp if (err) 3145ac27a0ecSDave Kleikamp return 0; 3146ac27a0ecSDave Kleikamp } 3147ac27a0ecSDave Kleikamp 3148617ba13bSMingming Cao return generic_block_bmap(mapping, block, ext4_get_block); 3149ac27a0ecSDave Kleikamp } 3150ac27a0ecSDave Kleikamp 3151617ba13bSMingming Cao static int ext4_readpage(struct file *file, struct page *page) 3152ac27a0ecSDave Kleikamp { 315346c7f254STao Ma int ret = -EAGAIN; 315446c7f254STao Ma struct inode *inode = page->mapping->host; 315546c7f254STao Ma 31560562e0baSJiaying Zhang trace_ext4_readpage(page); 315746c7f254STao Ma 315846c7f254STao Ma if (ext4_has_inline_data(inode)) 315946c7f254STao Ma ret = ext4_readpage_inline(inode, page); 316046c7f254STao Ma 316146c7f254STao Ma if (ret == -EAGAIN) 3162f64e02feSTheodore Ts'o return ext4_mpage_readpages(page->mapping, NULL, page, 1); 316346c7f254STao Ma 316446c7f254STao Ma return ret; 3165ac27a0ecSDave Kleikamp } 3166ac27a0ecSDave Kleikamp 3167ac27a0ecSDave Kleikamp static int 3168617ba13bSMingming Cao ext4_readpages(struct file *file, struct address_space *mapping, 3169ac27a0ecSDave Kleikamp struct list_head *pages, unsigned nr_pages) 3170ac27a0ecSDave Kleikamp { 317146c7f254STao Ma struct inode *inode = mapping->host; 317246c7f254STao Ma 317346c7f254STao Ma /* If the file has inline data, no need to do readpages. */ 317446c7f254STao Ma if (ext4_has_inline_data(inode)) 317546c7f254STao Ma return 0; 317646c7f254STao Ma 3177f64e02feSTheodore Ts'o return ext4_mpage_readpages(mapping, pages, NULL, nr_pages); 3178ac27a0ecSDave Kleikamp } 3179ac27a0ecSDave Kleikamp 3180d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset, 3181d47992f8SLukas Czerner unsigned int length) 3182ac27a0ecSDave Kleikamp { 3183ca99fdd2SLukas Czerner trace_ext4_invalidatepage(page, offset, length); 31840562e0baSJiaying Zhang 31854520fb3cSJan Kara /* No journalling happens on data buffers when this function is used */ 31864520fb3cSJan Kara WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page))); 31874520fb3cSJan Kara 3188ca99fdd2SLukas Czerner block_invalidatepage(page, offset, length); 31894520fb3cSJan Kara } 31904520fb3cSJan Kara 319153e87268SJan Kara static int __ext4_journalled_invalidatepage(struct page *page, 3192ca99fdd2SLukas Czerner unsigned int offset, 3193ca99fdd2SLukas Czerner unsigned int length) 31944520fb3cSJan Kara { 31954520fb3cSJan Kara journal_t *journal = EXT4_JOURNAL(page->mapping->host); 31964520fb3cSJan Kara 3197ca99fdd2SLukas Czerner trace_ext4_journalled_invalidatepage(page, offset, length); 31984520fb3cSJan Kara 3199744692dcSJiaying Zhang /* 3200ac27a0ecSDave Kleikamp * If it's a full truncate we just forget about the pending dirtying 3201ac27a0ecSDave Kleikamp */ 320209cbfeafSKirill A. Shutemov if (offset == 0 && length == PAGE_SIZE) 3203ac27a0ecSDave Kleikamp ClearPageChecked(page); 3204ac27a0ecSDave Kleikamp 3205ca99fdd2SLukas Czerner return jbd2_journal_invalidatepage(journal, page, offset, length); 320653e87268SJan Kara } 320753e87268SJan Kara 320853e87268SJan Kara /* Wrapper for aops... */ 320953e87268SJan Kara static void ext4_journalled_invalidatepage(struct page *page, 3210d47992f8SLukas Czerner unsigned int offset, 3211d47992f8SLukas Czerner unsigned int length) 321253e87268SJan Kara { 3213ca99fdd2SLukas Czerner WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0); 3214ac27a0ecSDave Kleikamp } 3215ac27a0ecSDave Kleikamp 3216617ba13bSMingming Cao static int ext4_releasepage(struct page *page, gfp_t wait) 3217ac27a0ecSDave Kleikamp { 3218617ba13bSMingming Cao journal_t *journal = EXT4_JOURNAL(page->mapping->host); 3219ac27a0ecSDave Kleikamp 32200562e0baSJiaying Zhang trace_ext4_releasepage(page); 32210562e0baSJiaying Zhang 3222e1c36595SJan Kara /* Page has dirty journalled data -> cannot release */ 3223e1c36595SJan Kara if (PageChecked(page)) 3224ac27a0ecSDave Kleikamp return 0; 32250390131bSFrank Mayhar if (journal) 3226dab291afSMingming Cao return jbd2_journal_try_to_free_buffers(journal, page, wait); 32270390131bSFrank Mayhar else 32280390131bSFrank Mayhar return try_to_free_buffers(page); 3229ac27a0ecSDave Kleikamp } 3230ac27a0ecSDave Kleikamp 3231ba5843f5SJan Kara #ifdef CONFIG_FS_DAX 323212735f88SJan Kara /* 323312735f88SJan Kara * Get block function for DAX IO and mmap faults. It takes care of converting 323412735f88SJan Kara * unwritten extents to written ones and initializes new / converted blocks 323512735f88SJan Kara * to zeros. 323612735f88SJan Kara */ 323712735f88SJan Kara int ext4_dax_get_block(struct inode *inode, sector_t iblock, 3238ed923b57SMatthew Wilcox struct buffer_head *bh_result, int create) 3239ed923b57SMatthew Wilcox { 32407cb476f8SJan Kara int ret; 3241c86d8db3SJan Kara 324212735f88SJan Kara ext4_debug("inode %lu, create flag %d\n", inode->i_ino, create); 32437cb476f8SJan Kara if (!create) 32447cb476f8SJan Kara return _ext4_get_block(inode, iblock, bh_result, 0); 32457cb476f8SJan Kara 32467cb476f8SJan Kara ret = ext4_get_block_trans(inode, iblock, bh_result, 32477cb476f8SJan Kara EXT4_GET_BLOCKS_PRE_IO | 32487cb476f8SJan Kara EXT4_GET_BLOCKS_CREATE_ZERO); 32497cb476f8SJan Kara if (ret < 0) 3250ba5843f5SJan Kara return ret; 3251ba5843f5SJan Kara 32527cb476f8SJan Kara if (buffer_unwritten(bh_result)) { 3253ba5843f5SJan Kara /* 325412735f88SJan Kara * We are protected by i_mmap_sem or i_mutex so we know block 325512735f88SJan Kara * cannot go away from under us even though we dropped 325612735f88SJan Kara * i_data_sem. Convert extent to written and write zeros there. 3257ba5843f5SJan Kara */ 32587cb476f8SJan Kara ret = ext4_get_block_trans(inode, iblock, bh_result, 32597cb476f8SJan Kara EXT4_GET_BLOCKS_CONVERT | 32607cb476f8SJan Kara EXT4_GET_BLOCKS_CREATE_ZERO); 32617cb476f8SJan Kara if (ret < 0) 3262ed923b57SMatthew Wilcox return ret; 3263ed923b57SMatthew Wilcox } 3264ba5843f5SJan Kara /* 3265ba5843f5SJan Kara * At least for now we have to clear BH_New so that DAX code 3266ba5843f5SJan Kara * doesn't attempt to zero blocks again in a racy way. 3267ba5843f5SJan Kara */ 32687cb476f8SJan Kara clear_buffer_new(bh_result); 32697cb476f8SJan Kara return 0; 3270ba5843f5SJan Kara } 327112735f88SJan Kara #else 327212735f88SJan Kara /* Just define empty function, it will never get called. */ 327312735f88SJan Kara int ext4_dax_get_block(struct inode *inode, sector_t iblock, 327412735f88SJan Kara struct buffer_head *bh_result, int create) 327512735f88SJan Kara { 327612735f88SJan Kara BUG(); 327712735f88SJan Kara return 0; 3278ba5843f5SJan Kara } 3279ba5843f5SJan Kara #endif 3280ed923b57SMatthew Wilcox 3281187372a3SChristoph Hellwig static int ext4_end_io_dio(struct kiocb *iocb, loff_t offset, 32827b7a8665SChristoph Hellwig ssize_t size, void *private) 32834c0425ffSMingming Cao { 3284109811c2SJan Kara ext4_io_end_t *io_end = private; 32854c0425ffSMingming Cao 328697a851edSJan Kara /* if not async direct IO just return */ 32877b7a8665SChristoph Hellwig if (!io_end) 3288187372a3SChristoph Hellwig return 0; 32894b70df18SMingming 32908d5d02e6SMingming Cao ext_debug("ext4_end_io_dio(): io_end 0x%p " 3291ace36ad4SJoe Perches "for inode %lu, iocb 0x%p, offset %llu, size %zd\n", 3292109811c2SJan Kara io_end, io_end->inode->i_ino, iocb, offset, size); 32938d5d02e6SMingming Cao 329474c66bcbSJan Kara /* 329574c66bcbSJan Kara * Error during AIO DIO. We cannot convert unwritten extents as the 329674c66bcbSJan Kara * data was not written. Just clear the unwritten flag and drop io_end. 329774c66bcbSJan Kara */ 329874c66bcbSJan Kara if (size <= 0) { 329974c66bcbSJan Kara ext4_clear_io_unwritten_flag(io_end); 330074c66bcbSJan Kara size = 0; 330174c66bcbSJan Kara } 33024c0425ffSMingming Cao io_end->offset = offset; 33034c0425ffSMingming Cao io_end->size = size; 33047b7a8665SChristoph Hellwig ext4_put_io_end(io_end); 3305187372a3SChristoph Hellwig 3306187372a3SChristoph Hellwig return 0; 33074c0425ffSMingming Cao } 3308c7064ef1SJiaying Zhang 33094c0425ffSMingming Cao /* 3310914f82a3SJan Kara * Handling of direct IO writes. 3311914f82a3SJan Kara * 3312914f82a3SJan Kara * For ext4 extent files, ext4 will do direct-io write even to holes, 33134c0425ffSMingming Cao * preallocated extents, and those write extend the file, no need to 33144c0425ffSMingming Cao * fall back to buffered IO. 33154c0425ffSMingming Cao * 3316556615dcSLukas Czerner * For holes, we fallocate those blocks, mark them as unwritten 331769c499d1STheodore Ts'o * If those blocks were preallocated, we mark sure they are split, but 3318556615dcSLukas Czerner * still keep the range to write as unwritten. 33194c0425ffSMingming Cao * 332069c499d1STheodore Ts'o * The unwritten extents will be converted to written when DIO is completed. 33218d5d02e6SMingming Cao * For async direct IO, since the IO may still pending when return, we 332225985edcSLucas De Marchi * set up an end_io call back function, which will do the conversion 33238d5d02e6SMingming Cao * when async direct IO completed. 33244c0425ffSMingming Cao * 33254c0425ffSMingming Cao * If the O_DIRECT write will extend the file then add this inode to the 33264c0425ffSMingming Cao * orphan list. So recovery will truncate it back to the original size 33274c0425ffSMingming Cao * if the machine crashes during the write. 33284c0425ffSMingming Cao * 33294c0425ffSMingming Cao */ 3330*0e01df10SLinus Torvalds static ssize_t ext4_direct_IO_write(struct kiocb *iocb, struct iov_iter *iter) 33314c0425ffSMingming Cao { 33324c0425ffSMingming Cao struct file *file = iocb->ki_filp; 33334c0425ffSMingming Cao struct inode *inode = file->f_mapping->host; 3334914f82a3SJan Kara struct ext4_inode_info *ei = EXT4_I(inode); 33354c0425ffSMingming Cao ssize_t ret; 3336c8b8e32dSChristoph Hellwig loff_t offset = iocb->ki_pos; 3337a6cbcd4aSAl Viro size_t count = iov_iter_count(iter); 3338729f52c6SZheng Liu int overwrite = 0; 33398b0f165fSAnatol Pomozov get_block_t *get_block_func = NULL; 33408b0f165fSAnatol Pomozov int dio_flags = 0; 334169c499d1STheodore Ts'o loff_t final_size = offset + count; 3342914f82a3SJan Kara int orphan = 0; 3343914f82a3SJan Kara handle_t *handle; 334469c499d1STheodore Ts'o 3345914f82a3SJan Kara if (final_size > inode->i_size) { 3346914f82a3SJan Kara /* Credits for sb + inode write */ 3347914f82a3SJan Kara handle = ext4_journal_start(inode, EXT4_HT_INODE, 2); 3348914f82a3SJan Kara if (IS_ERR(handle)) { 3349914f82a3SJan Kara ret = PTR_ERR(handle); 3350914f82a3SJan Kara goto out; 3351914f82a3SJan Kara } 3352914f82a3SJan Kara ret = ext4_orphan_add(handle, inode); 3353914f82a3SJan Kara if (ret) { 3354914f82a3SJan Kara ext4_journal_stop(handle); 3355914f82a3SJan Kara goto out; 3356914f82a3SJan Kara } 3357914f82a3SJan Kara orphan = 1; 3358914f82a3SJan Kara ei->i_disksize = inode->i_size; 3359914f82a3SJan Kara ext4_journal_stop(handle); 3360914f82a3SJan Kara } 3361729f52c6SZheng Liu 33624bd809dbSZheng Liu BUG_ON(iocb->private == NULL); 33634bd809dbSZheng Liu 3364e8340395SJan Kara /* 3365e8340395SJan Kara * Make all waiters for direct IO properly wait also for extent 3366e8340395SJan Kara * conversion. This also disallows race between truncate() and 3367e8340395SJan Kara * overwrite DIO as i_dio_count needs to be incremented under i_mutex. 3368e8340395SJan Kara */ 3369fe0f07d0SJens Axboe inode_dio_begin(inode); 3370e8340395SJan Kara 33714bd809dbSZheng Liu /* If we do a overwrite dio, i_mutex locking can be released */ 33724bd809dbSZheng Liu overwrite = *((int *)iocb->private); 33734bd809dbSZheng Liu 33742dcba478SJan Kara if (overwrite) 33755955102cSAl Viro inode_unlock(inode); 33764bd809dbSZheng Liu 33774c0425ffSMingming Cao /* 3378914f82a3SJan Kara * For extent mapped files we could direct write to holes and fallocate. 33798d5d02e6SMingming Cao * 3380109811c2SJan Kara * Allocated blocks to fill the hole are marked as unwritten to prevent 3381109811c2SJan Kara * parallel buffered read to expose the stale data before DIO complete 3382109811c2SJan Kara * the data IO. 33838d5d02e6SMingming Cao * 3384109811c2SJan Kara * As to previously fallocated extents, ext4 get_block will just simply 3385109811c2SJan Kara * mark the buffer mapped but still keep the extents unwritten. 33864c0425ffSMingming Cao * 3387109811c2SJan Kara * For non AIO case, we will convert those unwritten extents to written 3388109811c2SJan Kara * after return back from blockdev_direct_IO. That way we save us from 3389109811c2SJan Kara * allocating io_end structure and also the overhead of offloading 3390109811c2SJan Kara * the extent convertion to a workqueue. 33914c0425ffSMingming Cao * 339269c499d1STheodore Ts'o * For async DIO, the conversion needs to be deferred when the 339369c499d1STheodore Ts'o * IO is completed. The ext4 end_io callback function will be 339469c499d1STheodore Ts'o * called to take care of the conversion work. Here for async 339569c499d1STheodore Ts'o * case, we allocate an io_end structure to hook to the iocb. 33964c0425ffSMingming Cao */ 33978d5d02e6SMingming Cao iocb->private = NULL; 3398109811c2SJan Kara if (overwrite) 3399705965bdSJan Kara get_block_func = ext4_dio_get_block_overwrite; 340012735f88SJan Kara else if (IS_DAX(inode)) { 340112735f88SJan Kara /* 340212735f88SJan Kara * We can avoid zeroing for aligned DAX writes beyond EOF. Other 340312735f88SJan Kara * writes need zeroing either because they can race with page 340412735f88SJan Kara * faults or because they use partial blocks. 340512735f88SJan Kara */ 340612735f88SJan Kara if (round_down(offset, 1<<inode->i_blkbits) >= inode->i_size && 340712735f88SJan Kara ext4_aligned_io(inode, offset, count)) 340812735f88SJan Kara get_block_func = ext4_dio_get_block; 340912735f88SJan Kara else 341012735f88SJan Kara get_block_func = ext4_dax_get_block; 341112735f88SJan Kara dio_flags = DIO_LOCKING; 341212735f88SJan Kara } else if (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS) || 3413914f82a3SJan Kara round_down(offset, 1 << inode->i_blkbits) >= inode->i_size) { 3414914f82a3SJan Kara get_block_func = ext4_dio_get_block; 3415914f82a3SJan Kara dio_flags = DIO_LOCKING | DIO_SKIP_HOLES; 3416914f82a3SJan Kara } else if (is_sync_kiocb(iocb)) { 3417109811c2SJan Kara get_block_func = ext4_dio_get_block_unwritten_sync; 3418109811c2SJan Kara dio_flags = DIO_LOCKING; 341974dae427SJan Kara } else { 3420109811c2SJan Kara get_block_func = ext4_dio_get_block_unwritten_async; 34218b0f165fSAnatol Pomozov dio_flags = DIO_LOCKING; 34228b0f165fSAnatol Pomozov } 34232058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION 34242058f83aSMichael Halcrow BUG_ON(ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode)); 34252058f83aSMichael Halcrow #endif 3426914f82a3SJan Kara if (IS_DAX(inode)) { 3427c8b8e32dSChristoph Hellwig ret = dax_do_io(iocb, inode, iter, get_block_func, 3428923ae0ffSRoss Zwisler ext4_end_io_dio, dio_flags); 3429914f82a3SJan Kara } else 343017f8c842SOmar Sandoval ret = __blockdev_direct_IO(iocb, inode, 3431c8b8e32dSChristoph Hellwig inode->i_sb->s_bdev, iter, 34328b0f165fSAnatol Pomozov get_block_func, 3433923ae0ffSRoss Zwisler ext4_end_io_dio, NULL, dio_flags); 34348b0f165fSAnatol Pomozov 343597a851edSJan Kara if (ret > 0 && !overwrite && ext4_test_inode_state(inode, 34365f524950SMingming EXT4_STATE_DIO_UNWRITTEN)) { 3437109f5565SMingming int err; 34388d5d02e6SMingming Cao /* 34398d5d02e6SMingming Cao * for non AIO case, since the IO is already 344025985edcSLucas De Marchi * completed, we could do the conversion right here 34418d5d02e6SMingming Cao */ 34426b523df4SJan Kara err = ext4_convert_unwritten_extents(NULL, inode, 34438d5d02e6SMingming Cao offset, ret); 3444109f5565SMingming if (err < 0) 3445109f5565SMingming ret = err; 344619f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN); 3447109f5565SMingming } 34484bd809dbSZheng Liu 3449fe0f07d0SJens Axboe inode_dio_end(inode); 34504bd809dbSZheng Liu /* take i_mutex locking again if we do a ovewrite dio */ 34512dcba478SJan Kara if (overwrite) 34525955102cSAl Viro inode_lock(inode); 34534bd809dbSZheng Liu 3454914f82a3SJan Kara if (ret < 0 && final_size > inode->i_size) 3455914f82a3SJan Kara ext4_truncate_failed_write(inode); 3456914f82a3SJan Kara 3457914f82a3SJan Kara /* Handle extending of i_size after direct IO write */ 3458914f82a3SJan Kara if (orphan) { 3459914f82a3SJan Kara int err; 3460914f82a3SJan Kara 3461914f82a3SJan Kara /* Credits for sb + inode write */ 3462914f82a3SJan Kara handle = ext4_journal_start(inode, EXT4_HT_INODE, 2); 3463914f82a3SJan Kara if (IS_ERR(handle)) { 3464914f82a3SJan Kara /* This is really bad luck. We've written the data 3465914f82a3SJan Kara * but cannot extend i_size. Bail out and pretend 3466914f82a3SJan Kara * the write failed... */ 3467914f82a3SJan Kara ret = PTR_ERR(handle); 3468914f82a3SJan Kara if (inode->i_nlink) 3469914f82a3SJan Kara ext4_orphan_del(NULL, inode); 3470914f82a3SJan Kara 3471914f82a3SJan Kara goto out; 3472914f82a3SJan Kara } 3473914f82a3SJan Kara if (inode->i_nlink) 3474914f82a3SJan Kara ext4_orphan_del(handle, inode); 3475914f82a3SJan Kara if (ret > 0) { 3476914f82a3SJan Kara loff_t end = offset + ret; 3477914f82a3SJan Kara if (end > inode->i_size) { 3478914f82a3SJan Kara ei->i_disksize = end; 3479914f82a3SJan Kara i_size_write(inode, end); 3480914f82a3SJan Kara /* 3481914f82a3SJan Kara * We're going to return a positive `ret' 3482914f82a3SJan Kara * here due to non-zero-length I/O, so there's 3483914f82a3SJan Kara * no way of reporting error returns from 3484914f82a3SJan Kara * ext4_mark_inode_dirty() to userspace. So 3485914f82a3SJan Kara * ignore it. 3486914f82a3SJan Kara */ 3487914f82a3SJan Kara ext4_mark_inode_dirty(handle, inode); 3488914f82a3SJan Kara } 3489914f82a3SJan Kara } 3490914f82a3SJan Kara err = ext4_journal_stop(handle); 3491914f82a3SJan Kara if (ret == 0) 3492914f82a3SJan Kara ret = err; 3493914f82a3SJan Kara } 3494914f82a3SJan Kara out: 3495914f82a3SJan Kara return ret; 3496914f82a3SJan Kara } 3497914f82a3SJan Kara 3498*0e01df10SLinus Torvalds static ssize_t ext4_direct_IO_read(struct kiocb *iocb, struct iov_iter *iter) 3499914f82a3SJan Kara { 3500914f82a3SJan Kara int unlocked = 0; 3501914f82a3SJan Kara struct inode *inode = iocb->ki_filp->f_mapping->host; 3502914f82a3SJan Kara ssize_t ret; 3503914f82a3SJan Kara 3504914f82a3SJan Kara if (ext4_should_dioread_nolock(inode)) { 3505914f82a3SJan Kara /* 3506914f82a3SJan Kara * Nolock dioread optimization may be dynamically disabled 3507914f82a3SJan Kara * via ext4_inode_block_unlocked_dio(). Check inode's state 3508914f82a3SJan Kara * while holding extra i_dio_count ref. 3509914f82a3SJan Kara */ 3510914f82a3SJan Kara inode_dio_begin(inode); 3511914f82a3SJan Kara smp_mb(); 3512914f82a3SJan Kara if (unlikely(ext4_test_inode_state(inode, 3513914f82a3SJan Kara EXT4_STATE_DIOREAD_LOCK))) 3514914f82a3SJan Kara inode_dio_end(inode); 3515914f82a3SJan Kara else 3516914f82a3SJan Kara unlocked = 1; 3517914f82a3SJan Kara } 3518914f82a3SJan Kara if (IS_DAX(inode)) { 3519*0e01df10SLinus Torvalds ret = dax_do_io(iocb, inode, iter, ext4_dio_get_block, 3520914f82a3SJan Kara NULL, unlocked ? 0 : DIO_LOCKING); 3521914f82a3SJan Kara } else { 3522914f82a3SJan Kara ret = __blockdev_direct_IO(iocb, inode, inode->i_sb->s_bdev, 3523*0e01df10SLinus Torvalds iter, ext4_dio_get_block, 3524914f82a3SJan Kara NULL, NULL, 3525914f82a3SJan Kara unlocked ? 0 : DIO_LOCKING); 3526914f82a3SJan Kara } 3527914f82a3SJan Kara if (unlocked) 3528914f82a3SJan Kara inode_dio_end(inode); 35294c0425ffSMingming Cao return ret; 35304c0425ffSMingming Cao } 35318d5d02e6SMingming Cao 3532c8b8e32dSChristoph Hellwig static ssize_t ext4_direct_IO(struct kiocb *iocb, struct iov_iter *iter) 35334c0425ffSMingming Cao { 35344c0425ffSMingming Cao struct file *file = iocb->ki_filp; 35354c0425ffSMingming Cao struct inode *inode = file->f_mapping->host; 3536a6cbcd4aSAl Viro size_t count = iov_iter_count(iter); 3537c8b8e32dSChristoph Hellwig loff_t offset = iocb->ki_pos; 35380562e0baSJiaying Zhang ssize_t ret; 35394c0425ffSMingming Cao 35402058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION 35412058f83aSMichael Halcrow if (ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode)) 35422058f83aSMichael Halcrow return 0; 35432058f83aSMichael Halcrow #endif 35442058f83aSMichael Halcrow 354584ebd795STheodore Ts'o /* 354684ebd795STheodore Ts'o * If we are doing data journalling we don't support O_DIRECT 354784ebd795STheodore Ts'o */ 354884ebd795STheodore Ts'o if (ext4_should_journal_data(inode)) 354984ebd795STheodore Ts'o return 0; 355084ebd795STheodore Ts'o 355146c7f254STao Ma /* Let buffer I/O handle the inline data case. */ 355246c7f254STao Ma if (ext4_has_inline_data(inode)) 355346c7f254STao Ma return 0; 355446c7f254STao Ma 35556f673763SOmar Sandoval trace_ext4_direct_IO_enter(inode, offset, count, iov_iter_rw(iter)); 3556914f82a3SJan Kara if (iov_iter_rw(iter) == READ) 3557*0e01df10SLinus Torvalds ret = ext4_direct_IO_read(iocb, iter); 35580562e0baSJiaying Zhang else 3559*0e01df10SLinus Torvalds ret = ext4_direct_IO_write(iocb, iter); 35606f673763SOmar Sandoval trace_ext4_direct_IO_exit(inode, offset, count, iov_iter_rw(iter), ret); 35610562e0baSJiaying Zhang return ret; 35624c0425ffSMingming Cao } 35634c0425ffSMingming Cao 3564ac27a0ecSDave Kleikamp /* 3565617ba13bSMingming Cao * Pages can be marked dirty completely asynchronously from ext4's journalling 3566ac27a0ecSDave Kleikamp * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do 3567ac27a0ecSDave Kleikamp * much here because ->set_page_dirty is called under VFS locks. The page is 3568ac27a0ecSDave Kleikamp * not necessarily locked. 3569ac27a0ecSDave Kleikamp * 3570ac27a0ecSDave Kleikamp * We cannot just dirty the page and leave attached buffers clean, because the 3571ac27a0ecSDave Kleikamp * buffers' dirty state is "definitive". We cannot just set the buffers dirty 3572ac27a0ecSDave Kleikamp * or jbddirty because all the journalling code will explode. 3573ac27a0ecSDave Kleikamp * 3574ac27a0ecSDave Kleikamp * So what we do is to mark the page "pending dirty" and next time writepage 3575ac27a0ecSDave Kleikamp * is called, propagate that into the buffers appropriately. 3576ac27a0ecSDave Kleikamp */ 3577617ba13bSMingming Cao static int ext4_journalled_set_page_dirty(struct page *page) 3578ac27a0ecSDave Kleikamp { 3579ac27a0ecSDave Kleikamp SetPageChecked(page); 3580ac27a0ecSDave Kleikamp return __set_page_dirty_nobuffers(page); 3581ac27a0ecSDave Kleikamp } 3582ac27a0ecSDave Kleikamp 358374d553aaSTheodore Ts'o static const struct address_space_operations ext4_aops = { 3584617ba13bSMingming Cao .readpage = ext4_readpage, 3585617ba13bSMingming Cao .readpages = ext4_readpages, 358643ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 358720970ba6STheodore Ts'o .writepages = ext4_writepages, 3588bfc1af65SNick Piggin .write_begin = ext4_write_begin, 358974d553aaSTheodore Ts'o .write_end = ext4_write_end, 3590617ba13bSMingming Cao .bmap = ext4_bmap, 3591617ba13bSMingming Cao .invalidatepage = ext4_invalidatepage, 3592617ba13bSMingming Cao .releasepage = ext4_releasepage, 3593617ba13bSMingming Cao .direct_IO = ext4_direct_IO, 3594ac27a0ecSDave Kleikamp .migratepage = buffer_migrate_page, 35958ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3596aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 3597ac27a0ecSDave Kleikamp }; 3598ac27a0ecSDave Kleikamp 3599617ba13bSMingming Cao static const struct address_space_operations ext4_journalled_aops = { 3600617ba13bSMingming Cao .readpage = ext4_readpage, 3601617ba13bSMingming Cao .readpages = ext4_readpages, 360243ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 360320970ba6STheodore Ts'o .writepages = ext4_writepages, 3604bfc1af65SNick Piggin .write_begin = ext4_write_begin, 3605bfc1af65SNick Piggin .write_end = ext4_journalled_write_end, 3606617ba13bSMingming Cao .set_page_dirty = ext4_journalled_set_page_dirty, 3607617ba13bSMingming Cao .bmap = ext4_bmap, 36084520fb3cSJan Kara .invalidatepage = ext4_journalled_invalidatepage, 3609617ba13bSMingming Cao .releasepage = ext4_releasepage, 361084ebd795STheodore Ts'o .direct_IO = ext4_direct_IO, 36118ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3612aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 3613ac27a0ecSDave Kleikamp }; 3614ac27a0ecSDave Kleikamp 361564769240SAlex Tomas static const struct address_space_operations ext4_da_aops = { 361664769240SAlex Tomas .readpage = ext4_readpage, 361764769240SAlex Tomas .readpages = ext4_readpages, 361843ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 361920970ba6STheodore Ts'o .writepages = ext4_writepages, 362064769240SAlex Tomas .write_begin = ext4_da_write_begin, 362164769240SAlex Tomas .write_end = ext4_da_write_end, 362264769240SAlex Tomas .bmap = ext4_bmap, 362364769240SAlex Tomas .invalidatepage = ext4_da_invalidatepage, 362464769240SAlex Tomas .releasepage = ext4_releasepage, 362564769240SAlex Tomas .direct_IO = ext4_direct_IO, 362664769240SAlex Tomas .migratepage = buffer_migrate_page, 36278ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3628aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 362964769240SAlex Tomas }; 363064769240SAlex Tomas 3631617ba13bSMingming Cao void ext4_set_aops(struct inode *inode) 3632ac27a0ecSDave Kleikamp { 36333d2b1582SLukas Czerner switch (ext4_inode_journal_mode(inode)) { 36343d2b1582SLukas Czerner case EXT4_INODE_ORDERED_DATA_MODE: 36353d2b1582SLukas Czerner case EXT4_INODE_WRITEBACK_DATA_MODE: 36363d2b1582SLukas Czerner break; 36373d2b1582SLukas Czerner case EXT4_INODE_JOURNAL_DATA_MODE: 3638617ba13bSMingming Cao inode->i_mapping->a_ops = &ext4_journalled_aops; 363974d553aaSTheodore Ts'o return; 36403d2b1582SLukas Czerner default: 36413d2b1582SLukas Czerner BUG(); 36423d2b1582SLukas Czerner } 364374d553aaSTheodore Ts'o if (test_opt(inode->i_sb, DELALLOC)) 364474d553aaSTheodore Ts'o inode->i_mapping->a_ops = &ext4_da_aops; 364574d553aaSTheodore Ts'o else 364674d553aaSTheodore Ts'o inode->i_mapping->a_ops = &ext4_aops; 3647ac27a0ecSDave Kleikamp } 3648ac27a0ecSDave Kleikamp 3649923ae0ffSRoss Zwisler static int __ext4_block_zero_page_range(handle_t *handle, 3650d863dc36SLukas Czerner struct address_space *mapping, loff_t from, loff_t length) 3651d863dc36SLukas Czerner { 365209cbfeafSKirill A. Shutemov ext4_fsblk_t index = from >> PAGE_SHIFT; 365309cbfeafSKirill A. Shutemov unsigned offset = from & (PAGE_SIZE-1); 3654923ae0ffSRoss Zwisler unsigned blocksize, pos; 3655d863dc36SLukas Czerner ext4_lblk_t iblock; 3656d863dc36SLukas Czerner struct inode *inode = mapping->host; 3657d863dc36SLukas Czerner struct buffer_head *bh; 3658d863dc36SLukas Czerner struct page *page; 3659d863dc36SLukas Czerner int err = 0; 3660d863dc36SLukas Czerner 366109cbfeafSKirill A. Shutemov page = find_or_create_page(mapping, from >> PAGE_SHIFT, 3662c62d2555SMichal Hocko mapping_gfp_constraint(mapping, ~__GFP_FS)); 3663d863dc36SLukas Czerner if (!page) 3664d863dc36SLukas Czerner return -ENOMEM; 3665d863dc36SLukas Czerner 3666d863dc36SLukas Czerner blocksize = inode->i_sb->s_blocksize; 3667d863dc36SLukas Czerner 366809cbfeafSKirill A. Shutemov iblock = index << (PAGE_SHIFT - inode->i_sb->s_blocksize_bits); 3669d863dc36SLukas Czerner 3670d863dc36SLukas Czerner if (!page_has_buffers(page)) 3671d863dc36SLukas Czerner create_empty_buffers(page, blocksize, 0); 3672d863dc36SLukas Czerner 3673d863dc36SLukas Czerner /* Find the buffer that contains "offset" */ 3674d863dc36SLukas Czerner bh = page_buffers(page); 3675d863dc36SLukas Czerner pos = blocksize; 3676d863dc36SLukas Czerner while (offset >= pos) { 3677d863dc36SLukas Czerner bh = bh->b_this_page; 3678d863dc36SLukas Czerner iblock++; 3679d863dc36SLukas Czerner pos += blocksize; 3680d863dc36SLukas Czerner } 3681d863dc36SLukas Czerner if (buffer_freed(bh)) { 3682d863dc36SLukas Czerner BUFFER_TRACE(bh, "freed: skip"); 3683d863dc36SLukas Czerner goto unlock; 3684d863dc36SLukas Czerner } 3685d863dc36SLukas Czerner if (!buffer_mapped(bh)) { 3686d863dc36SLukas Czerner BUFFER_TRACE(bh, "unmapped"); 3687d863dc36SLukas Czerner ext4_get_block(inode, iblock, bh, 0); 3688d863dc36SLukas Czerner /* unmapped? It's a hole - nothing to do */ 3689d863dc36SLukas Czerner if (!buffer_mapped(bh)) { 3690d863dc36SLukas Czerner BUFFER_TRACE(bh, "still unmapped"); 3691d863dc36SLukas Czerner goto unlock; 3692d863dc36SLukas Czerner } 3693d863dc36SLukas Czerner } 3694d863dc36SLukas Czerner 3695d863dc36SLukas Czerner /* Ok, it's mapped. Make sure it's up-to-date */ 3696d863dc36SLukas Czerner if (PageUptodate(page)) 3697d863dc36SLukas Czerner set_buffer_uptodate(bh); 3698d863dc36SLukas Czerner 3699d863dc36SLukas Czerner if (!buffer_uptodate(bh)) { 3700d863dc36SLukas Czerner err = -EIO; 3701d863dc36SLukas Czerner ll_rw_block(READ, 1, &bh); 3702d863dc36SLukas Czerner wait_on_buffer(bh); 3703d863dc36SLukas Czerner /* Uhhuh. Read error. Complain and punt. */ 3704d863dc36SLukas Czerner if (!buffer_uptodate(bh)) 3705d863dc36SLukas Czerner goto unlock; 3706c9c7429cSMichael Halcrow if (S_ISREG(inode->i_mode) && 3707c9c7429cSMichael Halcrow ext4_encrypted_inode(inode)) { 3708c9c7429cSMichael Halcrow /* We expect the key to be set. */ 3709c9c7429cSMichael Halcrow BUG_ON(!ext4_has_encryption_key(inode)); 371009cbfeafSKirill A. Shutemov BUG_ON(blocksize != PAGE_SIZE); 37113684de8cSTheodore Ts'o WARN_ON_ONCE(ext4_decrypt(page)); 3712c9c7429cSMichael Halcrow } 3713d863dc36SLukas Czerner } 3714d863dc36SLukas Czerner if (ext4_should_journal_data(inode)) { 3715d863dc36SLukas Czerner BUFFER_TRACE(bh, "get write access"); 3716d863dc36SLukas Czerner err = ext4_journal_get_write_access(handle, bh); 3717d863dc36SLukas Czerner if (err) 3718d863dc36SLukas Czerner goto unlock; 3719d863dc36SLukas Czerner } 3720d863dc36SLukas Czerner zero_user(page, offset, length); 3721d863dc36SLukas Czerner BUFFER_TRACE(bh, "zeroed end of block"); 3722d863dc36SLukas Czerner 3723d863dc36SLukas Czerner if (ext4_should_journal_data(inode)) { 3724d863dc36SLukas Czerner err = ext4_handle_dirty_metadata(handle, inode, bh); 37250713ed0cSLukas Czerner } else { 3726353eefd3Sjon ernst err = 0; 3727d863dc36SLukas Czerner mark_buffer_dirty(bh); 37283957ef53SJan Kara if (ext4_should_order_data(inode)) 3729ee0876bcSJan Kara err = ext4_jbd2_inode_add_write(handle, inode); 37300713ed0cSLukas Czerner } 3731d863dc36SLukas Czerner 3732d863dc36SLukas Czerner unlock: 3733d863dc36SLukas Czerner unlock_page(page); 373409cbfeafSKirill A. Shutemov put_page(page); 3735d863dc36SLukas Czerner return err; 3736d863dc36SLukas Czerner } 3737d863dc36SLukas Czerner 373894350ab5SMatthew Wilcox /* 3739923ae0ffSRoss Zwisler * ext4_block_zero_page_range() zeros out a mapping of length 'length' 3740923ae0ffSRoss Zwisler * starting from file offset 'from'. The range to be zero'd must 3741923ae0ffSRoss Zwisler * be contained with in one block. If the specified range exceeds 3742923ae0ffSRoss Zwisler * the end of the block it will be shortened to end of the block 3743923ae0ffSRoss Zwisler * that cooresponds to 'from' 3744923ae0ffSRoss Zwisler */ 3745923ae0ffSRoss Zwisler static int ext4_block_zero_page_range(handle_t *handle, 3746923ae0ffSRoss Zwisler struct address_space *mapping, loff_t from, loff_t length) 3747923ae0ffSRoss Zwisler { 3748923ae0ffSRoss Zwisler struct inode *inode = mapping->host; 374909cbfeafSKirill A. Shutemov unsigned offset = from & (PAGE_SIZE-1); 3750923ae0ffSRoss Zwisler unsigned blocksize = inode->i_sb->s_blocksize; 3751923ae0ffSRoss Zwisler unsigned max = blocksize - (offset & (blocksize - 1)); 3752923ae0ffSRoss Zwisler 3753923ae0ffSRoss Zwisler /* 3754923ae0ffSRoss Zwisler * correct length if it does not fall between 3755923ae0ffSRoss Zwisler * 'from' and the end of the block 3756923ae0ffSRoss Zwisler */ 3757923ae0ffSRoss Zwisler if (length > max || length < 0) 3758923ae0ffSRoss Zwisler length = max; 3759923ae0ffSRoss Zwisler 3760923ae0ffSRoss Zwisler if (IS_DAX(inode)) 3761923ae0ffSRoss Zwisler return dax_zero_page_range(inode, from, length, ext4_get_block); 3762923ae0ffSRoss Zwisler return __ext4_block_zero_page_range(handle, mapping, from, length); 3763923ae0ffSRoss Zwisler } 3764923ae0ffSRoss Zwisler 3765923ae0ffSRoss Zwisler /* 376694350ab5SMatthew Wilcox * ext4_block_truncate_page() zeroes out a mapping from file offset `from' 376794350ab5SMatthew Wilcox * up to the end of the block which corresponds to `from'. 376894350ab5SMatthew Wilcox * This required during truncate. We need to physically zero the tail end 376994350ab5SMatthew Wilcox * of that block so it doesn't yield old data if the file is later grown. 377094350ab5SMatthew Wilcox */ 3771c197855eSStephen Hemminger static int ext4_block_truncate_page(handle_t *handle, 377294350ab5SMatthew Wilcox struct address_space *mapping, loff_t from) 377394350ab5SMatthew Wilcox { 377409cbfeafSKirill A. Shutemov unsigned offset = from & (PAGE_SIZE-1); 377594350ab5SMatthew Wilcox unsigned length; 377694350ab5SMatthew Wilcox unsigned blocksize; 377794350ab5SMatthew Wilcox struct inode *inode = mapping->host; 377894350ab5SMatthew Wilcox 377994350ab5SMatthew Wilcox blocksize = inode->i_sb->s_blocksize; 378094350ab5SMatthew Wilcox length = blocksize - (offset & (blocksize - 1)); 378194350ab5SMatthew Wilcox 378294350ab5SMatthew Wilcox return ext4_block_zero_page_range(handle, mapping, from, length); 378394350ab5SMatthew Wilcox } 378494350ab5SMatthew Wilcox 3785a87dd18cSLukas Czerner int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode, 3786a87dd18cSLukas Czerner loff_t lstart, loff_t length) 3787a87dd18cSLukas Czerner { 3788a87dd18cSLukas Czerner struct super_block *sb = inode->i_sb; 3789a87dd18cSLukas Czerner struct address_space *mapping = inode->i_mapping; 3790e1be3a92SLukas Czerner unsigned partial_start, partial_end; 3791a87dd18cSLukas Czerner ext4_fsblk_t start, end; 3792a87dd18cSLukas Czerner loff_t byte_end = (lstart + length - 1); 3793a87dd18cSLukas Czerner int err = 0; 3794a87dd18cSLukas Czerner 3795e1be3a92SLukas Czerner partial_start = lstart & (sb->s_blocksize - 1); 3796e1be3a92SLukas Czerner partial_end = byte_end & (sb->s_blocksize - 1); 3797e1be3a92SLukas Czerner 3798a87dd18cSLukas Czerner start = lstart >> sb->s_blocksize_bits; 3799a87dd18cSLukas Czerner end = byte_end >> sb->s_blocksize_bits; 3800a87dd18cSLukas Czerner 3801a87dd18cSLukas Czerner /* Handle partial zero within the single block */ 3802e1be3a92SLukas Czerner if (start == end && 3803e1be3a92SLukas Czerner (partial_start || (partial_end != sb->s_blocksize - 1))) { 3804a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3805a87dd18cSLukas Czerner lstart, length); 3806a87dd18cSLukas Czerner return err; 3807a87dd18cSLukas Czerner } 3808a87dd18cSLukas Czerner /* Handle partial zero out on the start of the range */ 3809e1be3a92SLukas Czerner if (partial_start) { 3810a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3811a87dd18cSLukas Czerner lstart, sb->s_blocksize); 3812a87dd18cSLukas Czerner if (err) 3813a87dd18cSLukas Czerner return err; 3814a87dd18cSLukas Czerner } 3815a87dd18cSLukas Czerner /* Handle partial zero out on the end of the range */ 3816e1be3a92SLukas Czerner if (partial_end != sb->s_blocksize - 1) 3817a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3818e1be3a92SLukas Czerner byte_end - partial_end, 3819e1be3a92SLukas Czerner partial_end + 1); 3820a87dd18cSLukas Czerner return err; 3821a87dd18cSLukas Czerner } 3822a87dd18cSLukas Czerner 382391ef4cafSDuane Griffin int ext4_can_truncate(struct inode *inode) 382491ef4cafSDuane Griffin { 382591ef4cafSDuane Griffin if (S_ISREG(inode->i_mode)) 382691ef4cafSDuane Griffin return 1; 382791ef4cafSDuane Griffin if (S_ISDIR(inode->i_mode)) 382891ef4cafSDuane Griffin return 1; 382991ef4cafSDuane Griffin if (S_ISLNK(inode->i_mode)) 383091ef4cafSDuane Griffin return !ext4_inode_is_fast_symlink(inode); 383191ef4cafSDuane Griffin return 0; 383291ef4cafSDuane Griffin } 383391ef4cafSDuane Griffin 3834ac27a0ecSDave Kleikamp /* 383501127848SJan Kara * We have to make sure i_disksize gets properly updated before we truncate 383601127848SJan Kara * page cache due to hole punching or zero range. Otherwise i_disksize update 383701127848SJan Kara * can get lost as it may have been postponed to submission of writeback but 383801127848SJan Kara * that will never happen after we truncate page cache. 383901127848SJan Kara */ 384001127848SJan Kara int ext4_update_disksize_before_punch(struct inode *inode, loff_t offset, 384101127848SJan Kara loff_t len) 384201127848SJan Kara { 384301127848SJan Kara handle_t *handle; 384401127848SJan Kara loff_t size = i_size_read(inode); 384501127848SJan Kara 38465955102cSAl Viro WARN_ON(!inode_is_locked(inode)); 384701127848SJan Kara if (offset > size || offset + len < size) 384801127848SJan Kara return 0; 384901127848SJan Kara 385001127848SJan Kara if (EXT4_I(inode)->i_disksize >= size) 385101127848SJan Kara return 0; 385201127848SJan Kara 385301127848SJan Kara handle = ext4_journal_start(inode, EXT4_HT_MISC, 1); 385401127848SJan Kara if (IS_ERR(handle)) 385501127848SJan Kara return PTR_ERR(handle); 385601127848SJan Kara ext4_update_i_disksize(inode, size); 385701127848SJan Kara ext4_mark_inode_dirty(handle, inode); 385801127848SJan Kara ext4_journal_stop(handle); 385901127848SJan Kara 386001127848SJan Kara return 0; 386101127848SJan Kara } 386201127848SJan Kara 386301127848SJan Kara /* 3864a4bb6b64SAllison Henderson * ext4_punch_hole: punches a hole in a file by releaseing the blocks 3865a4bb6b64SAllison Henderson * associated with the given offset and length 3866a4bb6b64SAllison Henderson * 3867a4bb6b64SAllison Henderson * @inode: File inode 3868a4bb6b64SAllison Henderson * @offset: The offset where the hole will begin 3869a4bb6b64SAllison Henderson * @len: The length of the hole 3870a4bb6b64SAllison Henderson * 38714907cb7bSAnatol Pomozov * Returns: 0 on success or negative on failure 3872a4bb6b64SAllison Henderson */ 3873a4bb6b64SAllison Henderson 3874aeb2817aSAshish Sangwan int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length) 3875a4bb6b64SAllison Henderson { 387626a4c0c6STheodore Ts'o struct super_block *sb = inode->i_sb; 387726a4c0c6STheodore Ts'o ext4_lblk_t first_block, stop_block; 387826a4c0c6STheodore Ts'o struct address_space *mapping = inode->i_mapping; 3879a87dd18cSLukas Czerner loff_t first_block_offset, last_block_offset; 388026a4c0c6STheodore Ts'o handle_t *handle; 388126a4c0c6STheodore Ts'o unsigned int credits; 388226a4c0c6STheodore Ts'o int ret = 0; 388326a4c0c6STheodore Ts'o 3884a4bb6b64SAllison Henderson if (!S_ISREG(inode->i_mode)) 388573355192SAllison Henderson return -EOPNOTSUPP; 3886a4bb6b64SAllison Henderson 3887b8a86845SLukas Czerner trace_ext4_punch_hole(inode, offset, length, 0); 3888aaddea81SZheng Liu 388926a4c0c6STheodore Ts'o /* 389026a4c0c6STheodore Ts'o * Write out all dirty pages to avoid race conditions 389126a4c0c6STheodore Ts'o * Then release them. 389226a4c0c6STheodore Ts'o */ 389326a4c0c6STheodore Ts'o if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) { 389426a4c0c6STheodore Ts'o ret = filemap_write_and_wait_range(mapping, offset, 389526a4c0c6STheodore Ts'o offset + length - 1); 389626a4c0c6STheodore Ts'o if (ret) 389726a4c0c6STheodore Ts'o return ret; 389826a4c0c6STheodore Ts'o } 389926a4c0c6STheodore Ts'o 39005955102cSAl Viro inode_lock(inode); 39019ef06cecSLukas Czerner 390226a4c0c6STheodore Ts'o /* No need to punch hole beyond i_size */ 390326a4c0c6STheodore Ts'o if (offset >= inode->i_size) 390426a4c0c6STheodore Ts'o goto out_mutex; 390526a4c0c6STheodore Ts'o 390626a4c0c6STheodore Ts'o /* 390726a4c0c6STheodore Ts'o * If the hole extends beyond i_size, set the hole 390826a4c0c6STheodore Ts'o * to end after the page that contains i_size 390926a4c0c6STheodore Ts'o */ 391026a4c0c6STheodore Ts'o if (offset + length > inode->i_size) { 391126a4c0c6STheodore Ts'o length = inode->i_size + 391209cbfeafSKirill A. Shutemov PAGE_SIZE - (inode->i_size & (PAGE_SIZE - 1)) - 391326a4c0c6STheodore Ts'o offset; 391426a4c0c6STheodore Ts'o } 391526a4c0c6STheodore Ts'o 3916a361293fSJan Kara if (offset & (sb->s_blocksize - 1) || 3917a361293fSJan Kara (offset + length) & (sb->s_blocksize - 1)) { 3918a361293fSJan Kara /* 3919a361293fSJan Kara * Attach jinode to inode for jbd2 if we do any zeroing of 3920a361293fSJan Kara * partial block 3921a361293fSJan Kara */ 3922a361293fSJan Kara ret = ext4_inode_attach_jinode(inode); 3923a361293fSJan Kara if (ret < 0) 3924a361293fSJan Kara goto out_mutex; 3925a361293fSJan Kara 3926a361293fSJan Kara } 3927a361293fSJan Kara 3928ea3d7209SJan Kara /* Wait all existing dio workers, newcomers will block on i_mutex */ 3929ea3d7209SJan Kara ext4_inode_block_unlocked_dio(inode); 3930ea3d7209SJan Kara inode_dio_wait(inode); 3931ea3d7209SJan Kara 3932ea3d7209SJan Kara /* 3933ea3d7209SJan Kara * Prevent page faults from reinstantiating pages we have released from 3934ea3d7209SJan Kara * page cache. 3935ea3d7209SJan Kara */ 3936ea3d7209SJan Kara down_write(&EXT4_I(inode)->i_mmap_sem); 3937a87dd18cSLukas Czerner first_block_offset = round_up(offset, sb->s_blocksize); 3938a87dd18cSLukas Czerner last_block_offset = round_down((offset + length), sb->s_blocksize) - 1; 393926a4c0c6STheodore Ts'o 3940a87dd18cSLukas Czerner /* Now release the pages and zero block aligned part of pages*/ 394101127848SJan Kara if (last_block_offset > first_block_offset) { 394201127848SJan Kara ret = ext4_update_disksize_before_punch(inode, offset, length); 394301127848SJan Kara if (ret) 394401127848SJan Kara goto out_dio; 3945a87dd18cSLukas Czerner truncate_pagecache_range(inode, first_block_offset, 3946a87dd18cSLukas Czerner last_block_offset); 394701127848SJan Kara } 394826a4c0c6STheodore Ts'o 394926a4c0c6STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 395026a4c0c6STheodore Ts'o credits = ext4_writepage_trans_blocks(inode); 395126a4c0c6STheodore Ts'o else 395226a4c0c6STheodore Ts'o credits = ext4_blocks_for_truncate(inode); 395326a4c0c6STheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits); 395426a4c0c6STheodore Ts'o if (IS_ERR(handle)) { 395526a4c0c6STheodore Ts'o ret = PTR_ERR(handle); 395626a4c0c6STheodore Ts'o ext4_std_error(sb, ret); 395726a4c0c6STheodore Ts'o goto out_dio; 395826a4c0c6STheodore Ts'o } 395926a4c0c6STheodore Ts'o 3960a87dd18cSLukas Czerner ret = ext4_zero_partial_blocks(handle, inode, offset, 3961a87dd18cSLukas Czerner length); 396226a4c0c6STheodore Ts'o if (ret) 396326a4c0c6STheodore Ts'o goto out_stop; 396426a4c0c6STheodore Ts'o 396526a4c0c6STheodore Ts'o first_block = (offset + sb->s_blocksize - 1) >> 396626a4c0c6STheodore Ts'o EXT4_BLOCK_SIZE_BITS(sb); 396726a4c0c6STheodore Ts'o stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb); 396826a4c0c6STheodore Ts'o 396926a4c0c6STheodore Ts'o /* If there are no blocks to remove, return now */ 397026a4c0c6STheodore Ts'o if (first_block >= stop_block) 397126a4c0c6STheodore Ts'o goto out_stop; 397226a4c0c6STheodore Ts'o 397326a4c0c6STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 397426a4c0c6STheodore Ts'o ext4_discard_preallocations(inode); 397526a4c0c6STheodore Ts'o 397626a4c0c6STheodore Ts'o ret = ext4_es_remove_extent(inode, first_block, 397726a4c0c6STheodore Ts'o stop_block - first_block); 397826a4c0c6STheodore Ts'o if (ret) { 397926a4c0c6STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 398026a4c0c6STheodore Ts'o goto out_stop; 398126a4c0c6STheodore Ts'o } 398226a4c0c6STheodore Ts'o 398326a4c0c6STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 398426a4c0c6STheodore Ts'o ret = ext4_ext_remove_space(inode, first_block, 398526a4c0c6STheodore Ts'o stop_block - 1); 398626a4c0c6STheodore Ts'o else 39874f579ae7SLukas Czerner ret = ext4_ind_remove_space(handle, inode, first_block, 398826a4c0c6STheodore Ts'o stop_block); 398926a4c0c6STheodore Ts'o 3990819c4920STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 399126a4c0c6STheodore Ts'o if (IS_SYNC(inode)) 399226a4c0c6STheodore Ts'o ext4_handle_sync(handle); 3993e251f9bcSMaxim Patlasov 399426a4c0c6STheodore Ts'o inode->i_mtime = inode->i_ctime = ext4_current_time(inode); 399526a4c0c6STheodore Ts'o ext4_mark_inode_dirty(handle, inode); 399626a4c0c6STheodore Ts'o out_stop: 399726a4c0c6STheodore Ts'o ext4_journal_stop(handle); 399826a4c0c6STheodore Ts'o out_dio: 3999ea3d7209SJan Kara up_write(&EXT4_I(inode)->i_mmap_sem); 400026a4c0c6STheodore Ts'o ext4_inode_resume_unlocked_dio(inode); 400126a4c0c6STheodore Ts'o out_mutex: 40025955102cSAl Viro inode_unlock(inode); 400326a4c0c6STheodore Ts'o return ret; 4004a4bb6b64SAllison Henderson } 4005a4bb6b64SAllison Henderson 4006a361293fSJan Kara int ext4_inode_attach_jinode(struct inode *inode) 4007a361293fSJan Kara { 4008a361293fSJan Kara struct ext4_inode_info *ei = EXT4_I(inode); 4009a361293fSJan Kara struct jbd2_inode *jinode; 4010a361293fSJan Kara 4011a361293fSJan Kara if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal) 4012a361293fSJan Kara return 0; 4013a361293fSJan Kara 4014a361293fSJan Kara jinode = jbd2_alloc_inode(GFP_KERNEL); 4015a361293fSJan Kara spin_lock(&inode->i_lock); 4016a361293fSJan Kara if (!ei->jinode) { 4017a361293fSJan Kara if (!jinode) { 4018a361293fSJan Kara spin_unlock(&inode->i_lock); 4019a361293fSJan Kara return -ENOMEM; 4020a361293fSJan Kara } 4021a361293fSJan Kara ei->jinode = jinode; 4022a361293fSJan Kara jbd2_journal_init_jbd_inode(ei->jinode, inode); 4023a361293fSJan Kara jinode = NULL; 4024a361293fSJan Kara } 4025a361293fSJan Kara spin_unlock(&inode->i_lock); 4026a361293fSJan Kara if (unlikely(jinode != NULL)) 4027a361293fSJan Kara jbd2_free_inode(jinode); 4028a361293fSJan Kara return 0; 4029a361293fSJan Kara } 4030a361293fSJan Kara 4031a4bb6b64SAllison Henderson /* 4032617ba13bSMingming Cao * ext4_truncate() 4033ac27a0ecSDave Kleikamp * 4034617ba13bSMingming Cao * We block out ext4_get_block() block instantiations across the entire 4035617ba13bSMingming Cao * transaction, and VFS/VM ensures that ext4_truncate() cannot run 4036ac27a0ecSDave Kleikamp * simultaneously on behalf of the same inode. 4037ac27a0ecSDave Kleikamp * 403842b2aa86SJustin P. Mattock * As we work through the truncate and commit bits of it to the journal there 4039ac27a0ecSDave Kleikamp * is one core, guiding principle: the file's tree must always be consistent on 4040ac27a0ecSDave Kleikamp * disk. We must be able to restart the truncate after a crash. 4041ac27a0ecSDave Kleikamp * 4042ac27a0ecSDave Kleikamp * The file's tree may be transiently inconsistent in memory (although it 4043ac27a0ecSDave Kleikamp * probably isn't), but whenever we close off and commit a journal transaction, 4044ac27a0ecSDave Kleikamp * the contents of (the filesystem + the journal) must be consistent and 4045ac27a0ecSDave Kleikamp * restartable. It's pretty simple, really: bottom up, right to left (although 4046ac27a0ecSDave Kleikamp * left-to-right works OK too). 4047ac27a0ecSDave Kleikamp * 4048ac27a0ecSDave Kleikamp * Note that at recovery time, journal replay occurs *before* the restart of 4049ac27a0ecSDave Kleikamp * truncate against the orphan inode list. 4050ac27a0ecSDave Kleikamp * 4051ac27a0ecSDave Kleikamp * The committed inode has the new, desired i_size (which is the same as 4052617ba13bSMingming Cao * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see 4053ac27a0ecSDave Kleikamp * that this inode's truncate did not complete and it will again call 4054617ba13bSMingming Cao * ext4_truncate() to have another go. So there will be instantiated blocks 4055617ba13bSMingming Cao * to the right of the truncation point in a crashed ext4 filesystem. But 4056ac27a0ecSDave Kleikamp * that's fine - as long as they are linked from the inode, the post-crash 4057617ba13bSMingming Cao * ext4_truncate() run will find them and release them. 4058ac27a0ecSDave Kleikamp */ 4059617ba13bSMingming Cao void ext4_truncate(struct inode *inode) 4060ac27a0ecSDave Kleikamp { 4061819c4920STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 4062819c4920STheodore Ts'o unsigned int credits; 4063819c4920STheodore Ts'o handle_t *handle; 4064819c4920STheodore Ts'o struct address_space *mapping = inode->i_mapping; 4065819c4920STheodore Ts'o 406619b5ef61STheodore Ts'o /* 406719b5ef61STheodore Ts'o * There is a possibility that we're either freeing the inode 4068e04027e8SMatthew Wilcox * or it's a completely new inode. In those cases we might not 406919b5ef61STheodore Ts'o * have i_mutex locked because it's not necessary. 407019b5ef61STheodore Ts'o */ 407119b5ef61STheodore Ts'o if (!(inode->i_state & (I_NEW|I_FREEING))) 40725955102cSAl Viro WARN_ON(!inode_is_locked(inode)); 40730562e0baSJiaying Zhang trace_ext4_truncate_enter(inode); 40740562e0baSJiaying Zhang 407591ef4cafSDuane Griffin if (!ext4_can_truncate(inode)) 4076ac27a0ecSDave Kleikamp return; 4077ac27a0ecSDave Kleikamp 407812e9b892SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS); 4079c8d46e41SJiaying Zhang 40805534fb5bSTheodore Ts'o if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC)) 408119f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE); 40827d8f9f7dSTheodore Ts'o 4083aef1c851STao Ma if (ext4_has_inline_data(inode)) { 4084aef1c851STao Ma int has_inline = 1; 4085aef1c851STao Ma 4086aef1c851STao Ma ext4_inline_data_truncate(inode, &has_inline); 4087aef1c851STao Ma if (has_inline) 4088aef1c851STao Ma return; 4089aef1c851STao Ma } 4090aef1c851STao Ma 4091a361293fSJan Kara /* If we zero-out tail of the page, we have to create jinode for jbd2 */ 4092a361293fSJan Kara if (inode->i_size & (inode->i_sb->s_blocksize - 1)) { 4093a361293fSJan Kara if (ext4_inode_attach_jinode(inode) < 0) 4094a361293fSJan Kara return; 4095a361293fSJan Kara } 4096a361293fSJan Kara 4097ff9893dcSAmir Goldstein if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 4098819c4920STheodore Ts'o credits = ext4_writepage_trans_blocks(inode); 4099ff9893dcSAmir Goldstein else 4100819c4920STheodore Ts'o credits = ext4_blocks_for_truncate(inode); 4101819c4920STheodore Ts'o 4102819c4920STheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits); 4103819c4920STheodore Ts'o if (IS_ERR(handle)) { 4104819c4920STheodore Ts'o ext4_std_error(inode->i_sb, PTR_ERR(handle)); 4105819c4920STheodore Ts'o return; 4106819c4920STheodore Ts'o } 4107819c4920STheodore Ts'o 4108eb3544c6SLukas Czerner if (inode->i_size & (inode->i_sb->s_blocksize - 1)) 4109eb3544c6SLukas Czerner ext4_block_truncate_page(handle, mapping, inode->i_size); 4110819c4920STheodore Ts'o 4111819c4920STheodore Ts'o /* 4112819c4920STheodore Ts'o * We add the inode to the orphan list, so that if this 4113819c4920STheodore Ts'o * truncate spans multiple transactions, and we crash, we will 4114819c4920STheodore Ts'o * resume the truncate when the filesystem recovers. It also 4115819c4920STheodore Ts'o * marks the inode dirty, to catch the new size. 4116819c4920STheodore Ts'o * 4117819c4920STheodore Ts'o * Implication: the file must always be in a sane, consistent 4118819c4920STheodore Ts'o * truncatable state while each transaction commits. 4119819c4920STheodore Ts'o */ 4120819c4920STheodore Ts'o if (ext4_orphan_add(handle, inode)) 4121819c4920STheodore Ts'o goto out_stop; 4122819c4920STheodore Ts'o 4123819c4920STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 4124819c4920STheodore Ts'o 4125819c4920STheodore Ts'o ext4_discard_preallocations(inode); 4126819c4920STheodore Ts'o 4127819c4920STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 4128819c4920STheodore Ts'o ext4_ext_truncate(handle, inode); 4129819c4920STheodore Ts'o else 4130819c4920STheodore Ts'o ext4_ind_truncate(handle, inode); 4131819c4920STheodore Ts'o 4132819c4920STheodore Ts'o up_write(&ei->i_data_sem); 4133819c4920STheodore Ts'o 4134819c4920STheodore Ts'o if (IS_SYNC(inode)) 4135819c4920STheodore Ts'o ext4_handle_sync(handle); 4136819c4920STheodore Ts'o 4137819c4920STheodore Ts'o out_stop: 4138819c4920STheodore Ts'o /* 4139819c4920STheodore Ts'o * If this was a simple ftruncate() and the file will remain alive, 4140819c4920STheodore Ts'o * then we need to clear up the orphan record which we created above. 4141819c4920STheodore Ts'o * However, if this was a real unlink then we were called by 414258d86a50SWang Shilong * ext4_evict_inode(), and we allow that function to clean up the 4143819c4920STheodore Ts'o * orphan info for us. 4144819c4920STheodore Ts'o */ 4145819c4920STheodore Ts'o if (inode->i_nlink) 4146819c4920STheodore Ts'o ext4_orphan_del(handle, inode); 4147819c4920STheodore Ts'o 4148819c4920STheodore Ts'o inode->i_mtime = inode->i_ctime = ext4_current_time(inode); 4149819c4920STheodore Ts'o ext4_mark_inode_dirty(handle, inode); 4150819c4920STheodore Ts'o ext4_journal_stop(handle); 4151a86c6181SAlex Tomas 41520562e0baSJiaying Zhang trace_ext4_truncate_exit(inode); 4153ac27a0ecSDave Kleikamp } 4154ac27a0ecSDave Kleikamp 4155ac27a0ecSDave Kleikamp /* 4156617ba13bSMingming Cao * ext4_get_inode_loc returns with an extra refcount against the inode's 4157ac27a0ecSDave Kleikamp * underlying buffer_head on success. If 'in_mem' is true, we have all 4158ac27a0ecSDave Kleikamp * data in memory that is needed to recreate the on-disk version of this 4159ac27a0ecSDave Kleikamp * inode. 4160ac27a0ecSDave Kleikamp */ 4161617ba13bSMingming Cao static int __ext4_get_inode_loc(struct inode *inode, 4162617ba13bSMingming Cao struct ext4_iloc *iloc, int in_mem) 4163ac27a0ecSDave Kleikamp { 4164240799cdSTheodore Ts'o struct ext4_group_desc *gdp; 4165ac27a0ecSDave Kleikamp struct buffer_head *bh; 4166240799cdSTheodore Ts'o struct super_block *sb = inode->i_sb; 4167240799cdSTheodore Ts'o ext4_fsblk_t block; 4168240799cdSTheodore Ts'o int inodes_per_block, inode_offset; 4169ac27a0ecSDave Kleikamp 41703a06d778SAneesh Kumar K.V iloc->bh = NULL; 4171240799cdSTheodore Ts'o if (!ext4_valid_inum(sb, inode->i_ino)) 41726a797d27SDarrick J. Wong return -EFSCORRUPTED; 4173ac27a0ecSDave Kleikamp 4174240799cdSTheodore Ts'o iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb); 4175240799cdSTheodore Ts'o gdp = ext4_get_group_desc(sb, iloc->block_group, NULL); 4176240799cdSTheodore Ts'o if (!gdp) 4177240799cdSTheodore Ts'o return -EIO; 4178240799cdSTheodore Ts'o 4179240799cdSTheodore Ts'o /* 4180240799cdSTheodore Ts'o * Figure out the offset within the block group inode table 4181240799cdSTheodore Ts'o */ 418200d09882STao Ma inodes_per_block = EXT4_SB(sb)->s_inodes_per_block; 4183240799cdSTheodore Ts'o inode_offset = ((inode->i_ino - 1) % 4184240799cdSTheodore Ts'o EXT4_INODES_PER_GROUP(sb)); 4185240799cdSTheodore Ts'o block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block); 4186240799cdSTheodore Ts'o iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb); 4187240799cdSTheodore Ts'o 4188240799cdSTheodore Ts'o bh = sb_getblk(sb, block); 4189aebf0243SWang Shilong if (unlikely(!bh)) 4190860d21e2STheodore Ts'o return -ENOMEM; 4191ac27a0ecSDave Kleikamp if (!buffer_uptodate(bh)) { 4192ac27a0ecSDave Kleikamp lock_buffer(bh); 41939c83a923SHidehiro Kawai 41949c83a923SHidehiro Kawai /* 41959c83a923SHidehiro Kawai * If the buffer has the write error flag, we have failed 41969c83a923SHidehiro Kawai * to write out another inode in the same block. In this 41979c83a923SHidehiro Kawai * case, we don't have to read the block because we may 41989c83a923SHidehiro Kawai * read the old inode data successfully. 41999c83a923SHidehiro Kawai */ 42009c83a923SHidehiro Kawai if (buffer_write_io_error(bh) && !buffer_uptodate(bh)) 42019c83a923SHidehiro Kawai set_buffer_uptodate(bh); 42029c83a923SHidehiro Kawai 4203ac27a0ecSDave Kleikamp if (buffer_uptodate(bh)) { 4204ac27a0ecSDave Kleikamp /* someone brought it uptodate while we waited */ 4205ac27a0ecSDave Kleikamp unlock_buffer(bh); 4206ac27a0ecSDave Kleikamp goto has_buffer; 4207ac27a0ecSDave Kleikamp } 4208ac27a0ecSDave Kleikamp 4209ac27a0ecSDave Kleikamp /* 4210ac27a0ecSDave Kleikamp * If we have all information of the inode in memory and this 4211ac27a0ecSDave Kleikamp * is the only valid inode in the block, we need not read the 4212ac27a0ecSDave Kleikamp * block. 4213ac27a0ecSDave Kleikamp */ 4214ac27a0ecSDave Kleikamp if (in_mem) { 4215ac27a0ecSDave Kleikamp struct buffer_head *bitmap_bh; 4216240799cdSTheodore Ts'o int i, start; 4217ac27a0ecSDave Kleikamp 4218240799cdSTheodore Ts'o start = inode_offset & ~(inodes_per_block - 1); 4219ac27a0ecSDave Kleikamp 4220ac27a0ecSDave Kleikamp /* Is the inode bitmap in cache? */ 4221240799cdSTheodore Ts'o bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp)); 4222aebf0243SWang Shilong if (unlikely(!bitmap_bh)) 4223ac27a0ecSDave Kleikamp goto make_io; 4224ac27a0ecSDave Kleikamp 4225ac27a0ecSDave Kleikamp /* 4226ac27a0ecSDave Kleikamp * If the inode bitmap isn't in cache then the 4227ac27a0ecSDave Kleikamp * optimisation may end up performing two reads instead 4228ac27a0ecSDave Kleikamp * of one, so skip it. 4229ac27a0ecSDave Kleikamp */ 4230ac27a0ecSDave Kleikamp if (!buffer_uptodate(bitmap_bh)) { 4231ac27a0ecSDave Kleikamp brelse(bitmap_bh); 4232ac27a0ecSDave Kleikamp goto make_io; 4233ac27a0ecSDave Kleikamp } 4234240799cdSTheodore Ts'o for (i = start; i < start + inodes_per_block; i++) { 4235ac27a0ecSDave Kleikamp if (i == inode_offset) 4236ac27a0ecSDave Kleikamp continue; 4237617ba13bSMingming Cao if (ext4_test_bit(i, bitmap_bh->b_data)) 4238ac27a0ecSDave Kleikamp break; 4239ac27a0ecSDave Kleikamp } 4240ac27a0ecSDave Kleikamp brelse(bitmap_bh); 4241240799cdSTheodore Ts'o if (i == start + inodes_per_block) { 4242ac27a0ecSDave Kleikamp /* all other inodes are free, so skip I/O */ 4243ac27a0ecSDave Kleikamp memset(bh->b_data, 0, bh->b_size); 4244ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 4245ac27a0ecSDave Kleikamp unlock_buffer(bh); 4246ac27a0ecSDave Kleikamp goto has_buffer; 4247ac27a0ecSDave Kleikamp } 4248ac27a0ecSDave Kleikamp } 4249ac27a0ecSDave Kleikamp 4250ac27a0ecSDave Kleikamp make_io: 4251ac27a0ecSDave Kleikamp /* 4252240799cdSTheodore Ts'o * If we need to do any I/O, try to pre-readahead extra 4253240799cdSTheodore Ts'o * blocks from the inode table. 4254240799cdSTheodore Ts'o */ 4255240799cdSTheodore Ts'o if (EXT4_SB(sb)->s_inode_readahead_blks) { 4256240799cdSTheodore Ts'o ext4_fsblk_t b, end, table; 4257240799cdSTheodore Ts'o unsigned num; 42580d606e2cSTheodore Ts'o __u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks; 4259240799cdSTheodore Ts'o 4260240799cdSTheodore Ts'o table = ext4_inode_table(sb, gdp); 4261b713a5ecSTheodore Ts'o /* s_inode_readahead_blks is always a power of 2 */ 42620d606e2cSTheodore Ts'o b = block & ~((ext4_fsblk_t) ra_blks - 1); 4263240799cdSTheodore Ts'o if (table > b) 4264240799cdSTheodore Ts'o b = table; 42650d606e2cSTheodore Ts'o end = b + ra_blks; 4266240799cdSTheodore Ts'o num = EXT4_INODES_PER_GROUP(sb); 4267feb0ab32SDarrick J. Wong if (ext4_has_group_desc_csum(sb)) 4268560671a0SAneesh Kumar K.V num -= ext4_itable_unused_count(sb, gdp); 4269240799cdSTheodore Ts'o table += num / inodes_per_block; 4270240799cdSTheodore Ts'o if (end > table) 4271240799cdSTheodore Ts'o end = table; 4272240799cdSTheodore Ts'o while (b <= end) 4273240799cdSTheodore Ts'o sb_breadahead(sb, b++); 4274240799cdSTheodore Ts'o } 4275240799cdSTheodore Ts'o 4276240799cdSTheodore Ts'o /* 4277ac27a0ecSDave Kleikamp * There are other valid inodes in the buffer, this inode 4278ac27a0ecSDave Kleikamp * has in-inode xattrs, or we don't have this inode in memory. 4279ac27a0ecSDave Kleikamp * Read the block from disk. 4280ac27a0ecSDave Kleikamp */ 42810562e0baSJiaying Zhang trace_ext4_load_inode(inode); 4282ac27a0ecSDave Kleikamp get_bh(bh); 4283ac27a0ecSDave Kleikamp bh->b_end_io = end_buffer_read_sync; 428465299a3bSChristoph Hellwig submit_bh(READ | REQ_META | REQ_PRIO, bh); 4285ac27a0ecSDave Kleikamp wait_on_buffer(bh); 4286ac27a0ecSDave Kleikamp if (!buffer_uptodate(bh)) { 4287c398eda0STheodore Ts'o EXT4_ERROR_INODE_BLOCK(inode, block, 4288c398eda0STheodore Ts'o "unable to read itable block"); 4289ac27a0ecSDave Kleikamp brelse(bh); 4290ac27a0ecSDave Kleikamp return -EIO; 4291ac27a0ecSDave Kleikamp } 4292ac27a0ecSDave Kleikamp } 4293ac27a0ecSDave Kleikamp has_buffer: 4294ac27a0ecSDave Kleikamp iloc->bh = bh; 4295ac27a0ecSDave Kleikamp return 0; 4296ac27a0ecSDave Kleikamp } 4297ac27a0ecSDave Kleikamp 4298617ba13bSMingming Cao int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc) 4299ac27a0ecSDave Kleikamp { 4300ac27a0ecSDave Kleikamp /* We have all inode data except xattrs in memory here. */ 4301617ba13bSMingming Cao return __ext4_get_inode_loc(inode, iloc, 430219f5fb7aSTheodore Ts'o !ext4_test_inode_state(inode, EXT4_STATE_XATTR)); 4303ac27a0ecSDave Kleikamp } 4304ac27a0ecSDave Kleikamp 4305617ba13bSMingming Cao void ext4_set_inode_flags(struct inode *inode) 4306ac27a0ecSDave Kleikamp { 4307617ba13bSMingming Cao unsigned int flags = EXT4_I(inode)->i_flags; 430800a1a053STheodore Ts'o unsigned int new_fl = 0; 4309ac27a0ecSDave Kleikamp 4310617ba13bSMingming Cao if (flags & EXT4_SYNC_FL) 431100a1a053STheodore Ts'o new_fl |= S_SYNC; 4312617ba13bSMingming Cao if (flags & EXT4_APPEND_FL) 431300a1a053STheodore Ts'o new_fl |= S_APPEND; 4314617ba13bSMingming Cao if (flags & EXT4_IMMUTABLE_FL) 431500a1a053STheodore Ts'o new_fl |= S_IMMUTABLE; 4316617ba13bSMingming Cao if (flags & EXT4_NOATIME_FL) 431700a1a053STheodore Ts'o new_fl |= S_NOATIME; 4318617ba13bSMingming Cao if (flags & EXT4_DIRSYNC_FL) 431900a1a053STheodore Ts'o new_fl |= S_DIRSYNC; 43200a6cf913SRoss Zwisler if (test_opt(inode->i_sb, DAX) && S_ISREG(inode->i_mode)) 4321923ae0ffSRoss Zwisler new_fl |= S_DAX; 43225f16f322STheodore Ts'o inode_set_flags(inode, new_fl, 4323923ae0ffSRoss Zwisler S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX); 4324ac27a0ecSDave Kleikamp } 4325ac27a0ecSDave Kleikamp 4326ff9ddf7eSJan Kara /* Propagate flags from i_flags to EXT4_I(inode)->i_flags */ 4327ff9ddf7eSJan Kara void ext4_get_inode_flags(struct ext4_inode_info *ei) 4328ff9ddf7eSJan Kara { 432984a8dce2SDmitry Monakhov unsigned int vfs_fl; 433084a8dce2SDmitry Monakhov unsigned long old_fl, new_fl; 4331ff9ddf7eSJan Kara 433284a8dce2SDmitry Monakhov do { 433384a8dce2SDmitry Monakhov vfs_fl = ei->vfs_inode.i_flags; 433484a8dce2SDmitry Monakhov old_fl = ei->i_flags; 433584a8dce2SDmitry Monakhov new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL| 433684a8dce2SDmitry Monakhov EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL| 433784a8dce2SDmitry Monakhov EXT4_DIRSYNC_FL); 433884a8dce2SDmitry Monakhov if (vfs_fl & S_SYNC) 433984a8dce2SDmitry Monakhov new_fl |= EXT4_SYNC_FL; 434084a8dce2SDmitry Monakhov if (vfs_fl & S_APPEND) 434184a8dce2SDmitry Monakhov new_fl |= EXT4_APPEND_FL; 434284a8dce2SDmitry Monakhov if (vfs_fl & S_IMMUTABLE) 434384a8dce2SDmitry Monakhov new_fl |= EXT4_IMMUTABLE_FL; 434484a8dce2SDmitry Monakhov if (vfs_fl & S_NOATIME) 434584a8dce2SDmitry Monakhov new_fl |= EXT4_NOATIME_FL; 434684a8dce2SDmitry Monakhov if (vfs_fl & S_DIRSYNC) 434784a8dce2SDmitry Monakhov new_fl |= EXT4_DIRSYNC_FL; 434884a8dce2SDmitry Monakhov } while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl); 4349ff9ddf7eSJan Kara } 4350de9a55b8STheodore Ts'o 43510fc1b451SAneesh Kumar K.V static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode, 43520fc1b451SAneesh Kumar K.V struct ext4_inode_info *ei) 43530fc1b451SAneesh Kumar K.V { 43540fc1b451SAneesh Kumar K.V blkcnt_t i_blocks ; 43558180a562SAneesh Kumar K.V struct inode *inode = &(ei->vfs_inode); 43568180a562SAneesh Kumar K.V struct super_block *sb = inode->i_sb; 43570fc1b451SAneesh Kumar K.V 4358e2b911c5SDarrick J. Wong if (ext4_has_feature_huge_file(sb)) { 43590fc1b451SAneesh Kumar K.V /* we are using combined 48 bit field */ 43600fc1b451SAneesh Kumar K.V i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 | 43610fc1b451SAneesh Kumar K.V le32_to_cpu(raw_inode->i_blocks_lo); 436207a03824STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) { 43638180a562SAneesh Kumar K.V /* i_blocks represent file system block size */ 43648180a562SAneesh Kumar K.V return i_blocks << (inode->i_blkbits - 9); 43658180a562SAneesh Kumar K.V } else { 43660fc1b451SAneesh Kumar K.V return i_blocks; 43678180a562SAneesh Kumar K.V } 43680fc1b451SAneesh Kumar K.V } else { 43690fc1b451SAneesh Kumar K.V return le32_to_cpu(raw_inode->i_blocks_lo); 43700fc1b451SAneesh Kumar K.V } 43710fc1b451SAneesh Kumar K.V } 4372ff9ddf7eSJan Kara 4373152a7b0aSTao Ma static inline void ext4_iget_extra_inode(struct inode *inode, 4374152a7b0aSTao Ma struct ext4_inode *raw_inode, 4375152a7b0aSTao Ma struct ext4_inode_info *ei) 4376152a7b0aSTao Ma { 4377152a7b0aSTao Ma __le32 *magic = (void *)raw_inode + 4378152a7b0aSTao Ma EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize; 437967cf5b09STao Ma if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) { 4380152a7b0aSTao Ma ext4_set_inode_state(inode, EXT4_STATE_XATTR); 438167cf5b09STao Ma ext4_find_inline_data_nolock(inode); 4382f19d5870STao Ma } else 4383f19d5870STao Ma EXT4_I(inode)->i_inline_off = 0; 4384152a7b0aSTao Ma } 4385152a7b0aSTao Ma 4386040cb378SLi Xi int ext4_get_projid(struct inode *inode, kprojid_t *projid) 4387040cb378SLi Xi { 4388040cb378SLi Xi if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, EXT4_FEATURE_RO_COMPAT_PROJECT)) 4389040cb378SLi Xi return -EOPNOTSUPP; 4390040cb378SLi Xi *projid = EXT4_I(inode)->i_projid; 4391040cb378SLi Xi return 0; 4392040cb378SLi Xi } 4393040cb378SLi Xi 43941d1fe1eeSDavid Howells struct inode *ext4_iget(struct super_block *sb, unsigned long ino) 4395ac27a0ecSDave Kleikamp { 4396617ba13bSMingming Cao struct ext4_iloc iloc; 4397617ba13bSMingming Cao struct ext4_inode *raw_inode; 43981d1fe1eeSDavid Howells struct ext4_inode_info *ei; 43991d1fe1eeSDavid Howells struct inode *inode; 4400b436b9beSJan Kara journal_t *journal = EXT4_SB(sb)->s_journal; 44011d1fe1eeSDavid Howells long ret; 4402ac27a0ecSDave Kleikamp int block; 440308cefc7aSEric W. Biederman uid_t i_uid; 440408cefc7aSEric W. Biederman gid_t i_gid; 4405040cb378SLi Xi projid_t i_projid; 4406ac27a0ecSDave Kleikamp 44071d1fe1eeSDavid Howells inode = iget_locked(sb, ino); 44081d1fe1eeSDavid Howells if (!inode) 44091d1fe1eeSDavid Howells return ERR_PTR(-ENOMEM); 44101d1fe1eeSDavid Howells if (!(inode->i_state & I_NEW)) 44111d1fe1eeSDavid Howells return inode; 44121d1fe1eeSDavid Howells 44131d1fe1eeSDavid Howells ei = EXT4_I(inode); 44147dc57615SPeter Huewe iloc.bh = NULL; 4415ac27a0ecSDave Kleikamp 44161d1fe1eeSDavid Howells ret = __ext4_get_inode_loc(inode, &iloc, 0); 44171d1fe1eeSDavid Howells if (ret < 0) 4418ac27a0ecSDave Kleikamp goto bad_inode; 4419617ba13bSMingming Cao raw_inode = ext4_raw_inode(&iloc); 4420814525f4SDarrick J. Wong 4421814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 4422814525f4SDarrick J. Wong ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize); 4423814525f4SDarrick J. Wong if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize > 4424814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)) { 4425814525f4SDarrick J. Wong EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)", 4426814525f4SDarrick J. Wong EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize, 4427814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)); 44286a797d27SDarrick J. Wong ret = -EFSCORRUPTED; 4429814525f4SDarrick J. Wong goto bad_inode; 4430814525f4SDarrick J. Wong } 4431814525f4SDarrick J. Wong } else 4432814525f4SDarrick J. Wong ei->i_extra_isize = 0; 4433814525f4SDarrick J. Wong 4434814525f4SDarrick J. Wong /* Precompute checksum seed for inode metadata */ 44359aa5d32bSDmitry Monakhov if (ext4_has_metadata_csum(sb)) { 4436814525f4SDarrick J. Wong struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 4437814525f4SDarrick J. Wong __u32 csum; 4438814525f4SDarrick J. Wong __le32 inum = cpu_to_le32(inode->i_ino); 4439814525f4SDarrick J. Wong __le32 gen = raw_inode->i_generation; 4440814525f4SDarrick J. Wong csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum, 4441814525f4SDarrick J. Wong sizeof(inum)); 4442814525f4SDarrick J. Wong ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen, 4443814525f4SDarrick J. Wong sizeof(gen)); 4444814525f4SDarrick J. Wong } 4445814525f4SDarrick J. Wong 4446814525f4SDarrick J. Wong if (!ext4_inode_csum_verify(inode, raw_inode, ei)) { 4447814525f4SDarrick J. Wong EXT4_ERROR_INODE(inode, "checksum invalid"); 44486a797d27SDarrick J. Wong ret = -EFSBADCRC; 4449814525f4SDarrick J. Wong goto bad_inode; 4450814525f4SDarrick J. Wong } 4451814525f4SDarrick J. Wong 4452ac27a0ecSDave Kleikamp inode->i_mode = le16_to_cpu(raw_inode->i_mode); 445308cefc7aSEric W. Biederman i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low); 445408cefc7aSEric W. Biederman i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low); 4455040cb378SLi Xi if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_PROJECT) && 4456040cb378SLi Xi EXT4_INODE_SIZE(sb) > EXT4_GOOD_OLD_INODE_SIZE && 4457040cb378SLi Xi EXT4_FITS_IN_INODE(raw_inode, ei, i_projid)) 4458040cb378SLi Xi i_projid = (projid_t)le32_to_cpu(raw_inode->i_projid); 4459040cb378SLi Xi else 4460040cb378SLi Xi i_projid = EXT4_DEF_PROJID; 4461040cb378SLi Xi 4462ac27a0ecSDave Kleikamp if (!(test_opt(inode->i_sb, NO_UID32))) { 446308cefc7aSEric W. Biederman i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16; 446408cefc7aSEric W. Biederman i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16; 4465ac27a0ecSDave Kleikamp } 446608cefc7aSEric W. Biederman i_uid_write(inode, i_uid); 446708cefc7aSEric W. Biederman i_gid_write(inode, i_gid); 4468040cb378SLi Xi ei->i_projid = make_kprojid(&init_user_ns, i_projid); 4469bfe86848SMiklos Szeredi set_nlink(inode, le16_to_cpu(raw_inode->i_links_count)); 4470ac27a0ecSDave Kleikamp 4471353eb83cSTheodore Ts'o ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */ 447267cf5b09STao Ma ei->i_inline_off = 0; 4473ac27a0ecSDave Kleikamp ei->i_dir_start_lookup = 0; 4474ac27a0ecSDave Kleikamp ei->i_dtime = le32_to_cpu(raw_inode->i_dtime); 4475ac27a0ecSDave Kleikamp /* We now have enough fields to check if the inode was active or not. 4476ac27a0ecSDave Kleikamp * This is needed because nfsd might try to access dead inodes 4477ac27a0ecSDave Kleikamp * the test is that same one that e2fsck uses 4478ac27a0ecSDave Kleikamp * NeilBrown 1999oct15 4479ac27a0ecSDave Kleikamp */ 4480ac27a0ecSDave Kleikamp if (inode->i_nlink == 0) { 4481393d1d1dSDr. Tilmann Bubeck if ((inode->i_mode == 0 || 4482393d1d1dSDr. Tilmann Bubeck !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) && 4483393d1d1dSDr. Tilmann Bubeck ino != EXT4_BOOT_LOADER_INO) { 4484ac27a0ecSDave Kleikamp /* this inode is deleted */ 44851d1fe1eeSDavid Howells ret = -ESTALE; 4486ac27a0ecSDave Kleikamp goto bad_inode; 4487ac27a0ecSDave Kleikamp } 4488ac27a0ecSDave Kleikamp /* The only unlinked inodes we let through here have 4489ac27a0ecSDave Kleikamp * valid i_mode and are being read by the orphan 4490ac27a0ecSDave Kleikamp * recovery code: that's fine, we're about to complete 4491393d1d1dSDr. Tilmann Bubeck * the process of deleting those. 4492393d1d1dSDr. Tilmann Bubeck * OR it is the EXT4_BOOT_LOADER_INO which is 4493393d1d1dSDr. Tilmann Bubeck * not initialized on a new filesystem. */ 4494ac27a0ecSDave Kleikamp } 4495ac27a0ecSDave Kleikamp ei->i_flags = le32_to_cpu(raw_inode->i_flags); 44960fc1b451SAneesh Kumar K.V inode->i_blocks = ext4_inode_blocks(raw_inode, ei); 44977973c0c1SAneesh Kumar K.V ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo); 4498e2b911c5SDarrick J. Wong if (ext4_has_feature_64bit(sb)) 4499a1ddeb7eSBadari Pulavarty ei->i_file_acl |= 4500a1ddeb7eSBadari Pulavarty ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32; 4501a48380f7SAneesh Kumar K.V inode->i_size = ext4_isize(raw_inode); 4502ac27a0ecSDave Kleikamp ei->i_disksize = inode->i_size; 4503a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA 4504a9e7f447SDmitry Monakhov ei->i_reserved_quota = 0; 4505a9e7f447SDmitry Monakhov #endif 4506ac27a0ecSDave Kleikamp inode->i_generation = le32_to_cpu(raw_inode->i_generation); 4507ac27a0ecSDave Kleikamp ei->i_block_group = iloc.block_group; 4508a4912123STheodore Ts'o ei->i_last_alloc_group = ~0; 4509ac27a0ecSDave Kleikamp /* 4510ac27a0ecSDave Kleikamp * NOTE! The in-memory inode i_data array is in little-endian order 4511ac27a0ecSDave Kleikamp * even on big-endian machines: we do NOT byteswap the block numbers! 4512ac27a0ecSDave Kleikamp */ 4513617ba13bSMingming Cao for (block = 0; block < EXT4_N_BLOCKS; block++) 4514ac27a0ecSDave Kleikamp ei->i_data[block] = raw_inode->i_block[block]; 4515ac27a0ecSDave Kleikamp INIT_LIST_HEAD(&ei->i_orphan); 4516ac27a0ecSDave Kleikamp 4517b436b9beSJan Kara /* 4518b436b9beSJan Kara * Set transaction id's of transactions that have to be committed 4519b436b9beSJan Kara * to finish f[data]sync. We set them to currently running transaction 4520b436b9beSJan Kara * as we cannot be sure that the inode or some of its metadata isn't 4521b436b9beSJan Kara * part of the transaction - the inode could have been reclaimed and 4522b436b9beSJan Kara * now it is reread from disk. 4523b436b9beSJan Kara */ 4524b436b9beSJan Kara if (journal) { 4525b436b9beSJan Kara transaction_t *transaction; 4526b436b9beSJan Kara tid_t tid; 4527b436b9beSJan Kara 4528a931da6aSTheodore Ts'o read_lock(&journal->j_state_lock); 4529b436b9beSJan Kara if (journal->j_running_transaction) 4530b436b9beSJan Kara transaction = journal->j_running_transaction; 4531b436b9beSJan Kara else 4532b436b9beSJan Kara transaction = journal->j_committing_transaction; 4533b436b9beSJan Kara if (transaction) 4534b436b9beSJan Kara tid = transaction->t_tid; 4535b436b9beSJan Kara else 4536b436b9beSJan Kara tid = journal->j_commit_sequence; 4537a931da6aSTheodore Ts'o read_unlock(&journal->j_state_lock); 4538b436b9beSJan Kara ei->i_sync_tid = tid; 4539b436b9beSJan Kara ei->i_datasync_tid = tid; 4540b436b9beSJan Kara } 4541b436b9beSJan Kara 45420040d987SEric Sandeen if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 4543ac27a0ecSDave Kleikamp if (ei->i_extra_isize == 0) { 4544ac27a0ecSDave Kleikamp /* The extra space is currently unused. Use it. */ 4545617ba13bSMingming Cao ei->i_extra_isize = sizeof(struct ext4_inode) - 4546617ba13bSMingming Cao EXT4_GOOD_OLD_INODE_SIZE; 4547ac27a0ecSDave Kleikamp } else { 4548152a7b0aSTao Ma ext4_iget_extra_inode(inode, raw_inode, ei); 4549ac27a0ecSDave Kleikamp } 4550814525f4SDarrick J. Wong } 4551ac27a0ecSDave Kleikamp 4552ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode); 4553ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode); 4554ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode); 4555ef7f3835SKalpak Shah EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode); 4556ef7f3835SKalpak Shah 4557ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) { 455825ec56b5SJean Noel Cordenner inode->i_version = le32_to_cpu(raw_inode->i_disk_version); 455925ec56b5SJean Noel Cordenner if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 456025ec56b5SJean Noel Cordenner if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi)) 456125ec56b5SJean Noel Cordenner inode->i_version |= 456225ec56b5SJean Noel Cordenner (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32; 456325ec56b5SJean Noel Cordenner } 4564c4f65706STheodore Ts'o } 456525ec56b5SJean Noel Cordenner 4566c4b5a614STheodore Ts'o ret = 0; 4567485c26ecSTheodore Ts'o if (ei->i_file_acl && 45681032988cSTheodore Ts'o !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) { 456924676da4STheodore Ts'o EXT4_ERROR_INODE(inode, "bad extended attribute block %llu", 457024676da4STheodore Ts'o ei->i_file_acl); 45716a797d27SDarrick J. Wong ret = -EFSCORRUPTED; 4572485c26ecSTheodore Ts'o goto bad_inode; 4573f19d5870STao Ma } else if (!ext4_has_inline_data(inode)) { 4574f19d5870STao Ma if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 4575f19d5870STao Ma if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || 4576c4b5a614STheodore Ts'o (S_ISLNK(inode->i_mode) && 4577f19d5870STao Ma !ext4_inode_is_fast_symlink(inode)))) 45787a262f7cSAneesh Kumar K.V /* Validate extent which is part of inode */ 45797a262f7cSAneesh Kumar K.V ret = ext4_ext_check_inode(inode); 4580fe2c8191SThiemo Nagel } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || 4581fe2c8191SThiemo Nagel (S_ISLNK(inode->i_mode) && 4582fe2c8191SThiemo Nagel !ext4_inode_is_fast_symlink(inode))) { 4583fe2c8191SThiemo Nagel /* Validate block references which are part of inode */ 45841f7d1e77STheodore Ts'o ret = ext4_ind_check_inode(inode); 4585fe2c8191SThiemo Nagel } 4586f19d5870STao Ma } 4587567f3e9aSTheodore Ts'o if (ret) 45887a262f7cSAneesh Kumar K.V goto bad_inode; 45897a262f7cSAneesh Kumar K.V 4590ac27a0ecSDave Kleikamp if (S_ISREG(inode->i_mode)) { 4591617ba13bSMingming Cao inode->i_op = &ext4_file_inode_operations; 4592617ba13bSMingming Cao inode->i_fop = &ext4_file_operations; 4593617ba13bSMingming Cao ext4_set_aops(inode); 4594ac27a0ecSDave Kleikamp } else if (S_ISDIR(inode->i_mode)) { 4595617ba13bSMingming Cao inode->i_op = &ext4_dir_inode_operations; 4596617ba13bSMingming Cao inode->i_fop = &ext4_dir_operations; 4597ac27a0ecSDave Kleikamp } else if (S_ISLNK(inode->i_mode)) { 4598a7a67e8aSAl Viro if (ext4_encrypted_inode(inode)) { 4599a7a67e8aSAl Viro inode->i_op = &ext4_encrypted_symlink_inode_operations; 4600a7a67e8aSAl Viro ext4_set_aops(inode); 4601a7a67e8aSAl Viro } else if (ext4_inode_is_fast_symlink(inode)) { 460275e7566bSAl Viro inode->i_link = (char *)ei->i_data; 4603617ba13bSMingming Cao inode->i_op = &ext4_fast_symlink_inode_operations; 4604e83c1397SDuane Griffin nd_terminate_link(ei->i_data, inode->i_size, 4605e83c1397SDuane Griffin sizeof(ei->i_data) - 1); 4606e83c1397SDuane Griffin } else { 4607617ba13bSMingming Cao inode->i_op = &ext4_symlink_inode_operations; 4608617ba13bSMingming Cao ext4_set_aops(inode); 4609ac27a0ecSDave Kleikamp } 461021fc61c7SAl Viro inode_nohighmem(inode); 4611563bdd61STheodore Ts'o } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) || 4612563bdd61STheodore Ts'o S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) { 4613617ba13bSMingming Cao inode->i_op = &ext4_special_inode_operations; 4614ac27a0ecSDave Kleikamp if (raw_inode->i_block[0]) 4615ac27a0ecSDave Kleikamp init_special_inode(inode, inode->i_mode, 4616ac27a0ecSDave Kleikamp old_decode_dev(le32_to_cpu(raw_inode->i_block[0]))); 4617ac27a0ecSDave Kleikamp else 4618ac27a0ecSDave Kleikamp init_special_inode(inode, inode->i_mode, 4619ac27a0ecSDave Kleikamp new_decode_dev(le32_to_cpu(raw_inode->i_block[1]))); 4620393d1d1dSDr. Tilmann Bubeck } else if (ino == EXT4_BOOT_LOADER_INO) { 4621393d1d1dSDr. Tilmann Bubeck make_bad_inode(inode); 4622563bdd61STheodore Ts'o } else { 46236a797d27SDarrick J. Wong ret = -EFSCORRUPTED; 462424676da4STheodore Ts'o EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode); 4625563bdd61STheodore Ts'o goto bad_inode; 4626ac27a0ecSDave Kleikamp } 4627ac27a0ecSDave Kleikamp brelse(iloc.bh); 4628617ba13bSMingming Cao ext4_set_inode_flags(inode); 46291d1fe1eeSDavid Howells unlock_new_inode(inode); 46301d1fe1eeSDavid Howells return inode; 4631ac27a0ecSDave Kleikamp 4632ac27a0ecSDave Kleikamp bad_inode: 4633567f3e9aSTheodore Ts'o brelse(iloc.bh); 46341d1fe1eeSDavid Howells iget_failed(inode); 46351d1fe1eeSDavid Howells return ERR_PTR(ret); 4636ac27a0ecSDave Kleikamp } 4637ac27a0ecSDave Kleikamp 4638f4bb2981STheodore Ts'o struct inode *ext4_iget_normal(struct super_block *sb, unsigned long ino) 4639f4bb2981STheodore Ts'o { 4640f4bb2981STheodore Ts'o if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO) 46416a797d27SDarrick J. Wong return ERR_PTR(-EFSCORRUPTED); 4642f4bb2981STheodore Ts'o return ext4_iget(sb, ino); 4643f4bb2981STheodore Ts'o } 4644f4bb2981STheodore Ts'o 46450fc1b451SAneesh Kumar K.V static int ext4_inode_blocks_set(handle_t *handle, 46460fc1b451SAneesh Kumar K.V struct ext4_inode *raw_inode, 46470fc1b451SAneesh Kumar K.V struct ext4_inode_info *ei) 46480fc1b451SAneesh Kumar K.V { 46490fc1b451SAneesh Kumar K.V struct inode *inode = &(ei->vfs_inode); 46500fc1b451SAneesh Kumar K.V u64 i_blocks = inode->i_blocks; 46510fc1b451SAneesh Kumar K.V struct super_block *sb = inode->i_sb; 46520fc1b451SAneesh Kumar K.V 46530fc1b451SAneesh Kumar K.V if (i_blocks <= ~0U) { 46540fc1b451SAneesh Kumar K.V /* 46554907cb7bSAnatol Pomozov * i_blocks can be represented in a 32 bit variable 46560fc1b451SAneesh Kumar K.V * as multiple of 512 bytes 46570fc1b451SAneesh Kumar K.V */ 46588180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 46590fc1b451SAneesh Kumar K.V raw_inode->i_blocks_high = 0; 466084a8dce2SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE); 4661f287a1a5STheodore Ts'o return 0; 4662f287a1a5STheodore Ts'o } 4663e2b911c5SDarrick J. Wong if (!ext4_has_feature_huge_file(sb)) 4664f287a1a5STheodore Ts'o return -EFBIG; 4665f287a1a5STheodore Ts'o 4666f287a1a5STheodore Ts'o if (i_blocks <= 0xffffffffffffULL) { 46670fc1b451SAneesh Kumar K.V /* 46680fc1b451SAneesh Kumar K.V * i_blocks can be represented in a 48 bit variable 46690fc1b451SAneesh Kumar K.V * as multiple of 512 bytes 46700fc1b451SAneesh Kumar K.V */ 46718180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 46720fc1b451SAneesh Kumar K.V raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32); 467384a8dce2SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE); 46740fc1b451SAneesh Kumar K.V } else { 467584a8dce2SDmitry Monakhov ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE); 46768180a562SAneesh Kumar K.V /* i_block is stored in file system block size */ 46778180a562SAneesh Kumar K.V i_blocks = i_blocks >> (inode->i_blkbits - 9); 46788180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 46798180a562SAneesh Kumar K.V raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32); 46800fc1b451SAneesh Kumar K.V } 4681f287a1a5STheodore Ts'o return 0; 46820fc1b451SAneesh Kumar K.V } 46830fc1b451SAneesh Kumar K.V 4684a26f4992STheodore Ts'o struct other_inode { 4685a26f4992STheodore Ts'o unsigned long orig_ino; 4686a26f4992STheodore Ts'o struct ext4_inode *raw_inode; 4687a26f4992STheodore Ts'o }; 4688a26f4992STheodore Ts'o 4689a26f4992STheodore Ts'o static int other_inode_match(struct inode * inode, unsigned long ino, 4690a26f4992STheodore Ts'o void *data) 4691a26f4992STheodore Ts'o { 4692a26f4992STheodore Ts'o struct other_inode *oi = (struct other_inode *) data; 4693a26f4992STheodore Ts'o 4694a26f4992STheodore Ts'o if ((inode->i_ino != ino) || 4695a26f4992STheodore Ts'o (inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW | 4696a26f4992STheodore Ts'o I_DIRTY_SYNC | I_DIRTY_DATASYNC)) || 4697a26f4992STheodore Ts'o ((inode->i_state & I_DIRTY_TIME) == 0)) 4698a26f4992STheodore Ts'o return 0; 4699a26f4992STheodore Ts'o spin_lock(&inode->i_lock); 4700a26f4992STheodore Ts'o if (((inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW | 4701a26f4992STheodore Ts'o I_DIRTY_SYNC | I_DIRTY_DATASYNC)) == 0) && 4702a26f4992STheodore Ts'o (inode->i_state & I_DIRTY_TIME)) { 4703a26f4992STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 4704a26f4992STheodore Ts'o 4705a26f4992STheodore Ts'o inode->i_state &= ~(I_DIRTY_TIME | I_DIRTY_TIME_EXPIRED); 4706a26f4992STheodore Ts'o spin_unlock(&inode->i_lock); 4707a26f4992STheodore Ts'o 4708a26f4992STheodore Ts'o spin_lock(&ei->i_raw_lock); 4709a26f4992STheodore Ts'o EXT4_INODE_SET_XTIME(i_ctime, inode, oi->raw_inode); 4710a26f4992STheodore Ts'o EXT4_INODE_SET_XTIME(i_mtime, inode, oi->raw_inode); 4711a26f4992STheodore Ts'o EXT4_INODE_SET_XTIME(i_atime, inode, oi->raw_inode); 4712a26f4992STheodore Ts'o ext4_inode_csum_set(inode, oi->raw_inode, ei); 4713a26f4992STheodore Ts'o spin_unlock(&ei->i_raw_lock); 4714a26f4992STheodore Ts'o trace_ext4_other_inode_update_time(inode, oi->orig_ino); 4715a26f4992STheodore Ts'o return -1; 4716a26f4992STheodore Ts'o } 4717a26f4992STheodore Ts'o spin_unlock(&inode->i_lock); 4718a26f4992STheodore Ts'o return -1; 4719a26f4992STheodore Ts'o } 4720a26f4992STheodore Ts'o 4721a26f4992STheodore Ts'o /* 4722a26f4992STheodore Ts'o * Opportunistically update the other time fields for other inodes in 4723a26f4992STheodore Ts'o * the same inode table block. 4724a26f4992STheodore Ts'o */ 4725a26f4992STheodore Ts'o static void ext4_update_other_inodes_time(struct super_block *sb, 4726a26f4992STheodore Ts'o unsigned long orig_ino, char *buf) 4727a26f4992STheodore Ts'o { 4728a26f4992STheodore Ts'o struct other_inode oi; 4729a26f4992STheodore Ts'o unsigned long ino; 4730a26f4992STheodore Ts'o int i, inodes_per_block = EXT4_SB(sb)->s_inodes_per_block; 4731a26f4992STheodore Ts'o int inode_size = EXT4_INODE_SIZE(sb); 4732a26f4992STheodore Ts'o 4733a26f4992STheodore Ts'o oi.orig_ino = orig_ino; 47340f0ff9a9STheodore Ts'o /* 47350f0ff9a9STheodore Ts'o * Calculate the first inode in the inode table block. Inode 47360f0ff9a9STheodore Ts'o * numbers are one-based. That is, the first inode in a block 47370f0ff9a9STheodore Ts'o * (assuming 4k blocks and 256 byte inodes) is (n*16 + 1). 47380f0ff9a9STheodore Ts'o */ 47390f0ff9a9STheodore Ts'o ino = ((orig_ino - 1) & ~(inodes_per_block - 1)) + 1; 4740a26f4992STheodore Ts'o for (i = 0; i < inodes_per_block; i++, ino++, buf += inode_size) { 4741a26f4992STheodore Ts'o if (ino == orig_ino) 4742a26f4992STheodore Ts'o continue; 4743a26f4992STheodore Ts'o oi.raw_inode = (struct ext4_inode *) buf; 4744a26f4992STheodore Ts'o (void) find_inode_nowait(sb, ino, other_inode_match, &oi); 4745a26f4992STheodore Ts'o } 4746a26f4992STheodore Ts'o } 4747a26f4992STheodore Ts'o 4748ac27a0ecSDave Kleikamp /* 4749ac27a0ecSDave Kleikamp * Post the struct inode info into an on-disk inode location in the 4750ac27a0ecSDave Kleikamp * buffer-cache. This gobbles the caller's reference to the 4751ac27a0ecSDave Kleikamp * buffer_head in the inode location struct. 4752ac27a0ecSDave Kleikamp * 4753ac27a0ecSDave Kleikamp * The caller must have write access to iloc->bh. 4754ac27a0ecSDave Kleikamp */ 4755617ba13bSMingming Cao static int ext4_do_update_inode(handle_t *handle, 4756ac27a0ecSDave Kleikamp struct inode *inode, 4757830156c7SFrank Mayhar struct ext4_iloc *iloc) 4758ac27a0ecSDave Kleikamp { 4759617ba13bSMingming Cao struct ext4_inode *raw_inode = ext4_raw_inode(iloc); 4760617ba13bSMingming Cao struct ext4_inode_info *ei = EXT4_I(inode); 4761ac27a0ecSDave Kleikamp struct buffer_head *bh = iloc->bh; 4762202ee5dfSTheodore Ts'o struct super_block *sb = inode->i_sb; 4763ac27a0ecSDave Kleikamp int err = 0, rc, block; 4764202ee5dfSTheodore Ts'o int need_datasync = 0, set_large_file = 0; 476508cefc7aSEric W. Biederman uid_t i_uid; 476608cefc7aSEric W. Biederman gid_t i_gid; 4767040cb378SLi Xi projid_t i_projid; 4768ac27a0ecSDave Kleikamp 4769202ee5dfSTheodore Ts'o spin_lock(&ei->i_raw_lock); 4770202ee5dfSTheodore Ts'o 4771202ee5dfSTheodore Ts'o /* For fields not tracked in the in-memory inode, 4772ac27a0ecSDave Kleikamp * initialise them to zero for new inodes. */ 477319f5fb7aSTheodore Ts'o if (ext4_test_inode_state(inode, EXT4_STATE_NEW)) 4774617ba13bSMingming Cao memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size); 4775ac27a0ecSDave Kleikamp 4776ff9ddf7eSJan Kara ext4_get_inode_flags(ei); 4777ac27a0ecSDave Kleikamp raw_inode->i_mode = cpu_to_le16(inode->i_mode); 477808cefc7aSEric W. Biederman i_uid = i_uid_read(inode); 477908cefc7aSEric W. Biederman i_gid = i_gid_read(inode); 4780040cb378SLi Xi i_projid = from_kprojid(&init_user_ns, ei->i_projid); 4781ac27a0ecSDave Kleikamp if (!(test_opt(inode->i_sb, NO_UID32))) { 478208cefc7aSEric W. Biederman raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid)); 478308cefc7aSEric W. Biederman raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid)); 4784ac27a0ecSDave Kleikamp /* 4785ac27a0ecSDave Kleikamp * Fix up interoperability with old kernels. Otherwise, old inodes get 4786ac27a0ecSDave Kleikamp * re-used with the upper 16 bits of the uid/gid intact 4787ac27a0ecSDave Kleikamp */ 4788ac27a0ecSDave Kleikamp if (!ei->i_dtime) { 4789ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 479008cefc7aSEric W. Biederman cpu_to_le16(high_16_bits(i_uid)); 4791ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 479208cefc7aSEric W. Biederman cpu_to_le16(high_16_bits(i_gid)); 4793ac27a0ecSDave Kleikamp } else { 4794ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 0; 4795ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 0; 4796ac27a0ecSDave Kleikamp } 4797ac27a0ecSDave Kleikamp } else { 479808cefc7aSEric W. Biederman raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid)); 479908cefc7aSEric W. Biederman raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid)); 4800ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 0; 4801ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 0; 4802ac27a0ecSDave Kleikamp } 4803ac27a0ecSDave Kleikamp raw_inode->i_links_count = cpu_to_le16(inode->i_nlink); 4804ef7f3835SKalpak Shah 4805ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode); 4806ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode); 4807ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode); 4808ef7f3835SKalpak Shah EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode); 4809ef7f3835SKalpak Shah 4810bce92d56SLi Xi err = ext4_inode_blocks_set(handle, raw_inode, ei); 4811bce92d56SLi Xi if (err) { 4812202ee5dfSTheodore Ts'o spin_unlock(&ei->i_raw_lock); 48130fc1b451SAneesh Kumar K.V goto out_brelse; 4814202ee5dfSTheodore Ts'o } 4815ac27a0ecSDave Kleikamp raw_inode->i_dtime = cpu_to_le32(ei->i_dtime); 4816353eb83cSTheodore Ts'o raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF); 4817ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) 4818a1ddeb7eSBadari Pulavarty raw_inode->i_file_acl_high = 4819a1ddeb7eSBadari Pulavarty cpu_to_le16(ei->i_file_acl >> 32); 48207973c0c1SAneesh Kumar K.V raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl); 4821b71fc079SJan Kara if (ei->i_disksize != ext4_isize(raw_inode)) { 4822a48380f7SAneesh Kumar K.V ext4_isize_set(raw_inode, ei->i_disksize); 4823b71fc079SJan Kara need_datasync = 1; 4824b71fc079SJan Kara } 4825ac27a0ecSDave Kleikamp if (ei->i_disksize > 0x7fffffffULL) { 4826e2b911c5SDarrick J. Wong if (!ext4_has_feature_large_file(sb) || 4827617ba13bSMingming Cao EXT4_SB(sb)->s_es->s_rev_level == 4828202ee5dfSTheodore Ts'o cpu_to_le32(EXT4_GOOD_OLD_REV)) 4829202ee5dfSTheodore Ts'o set_large_file = 1; 4830ac27a0ecSDave Kleikamp } 4831ac27a0ecSDave Kleikamp raw_inode->i_generation = cpu_to_le32(inode->i_generation); 4832ac27a0ecSDave Kleikamp if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) { 4833ac27a0ecSDave Kleikamp if (old_valid_dev(inode->i_rdev)) { 4834ac27a0ecSDave Kleikamp raw_inode->i_block[0] = 4835ac27a0ecSDave Kleikamp cpu_to_le32(old_encode_dev(inode->i_rdev)); 4836ac27a0ecSDave Kleikamp raw_inode->i_block[1] = 0; 4837ac27a0ecSDave Kleikamp } else { 4838ac27a0ecSDave Kleikamp raw_inode->i_block[0] = 0; 4839ac27a0ecSDave Kleikamp raw_inode->i_block[1] = 4840ac27a0ecSDave Kleikamp cpu_to_le32(new_encode_dev(inode->i_rdev)); 4841ac27a0ecSDave Kleikamp raw_inode->i_block[2] = 0; 4842ac27a0ecSDave Kleikamp } 4843f19d5870STao Ma } else if (!ext4_has_inline_data(inode)) { 4844de9a55b8STheodore Ts'o for (block = 0; block < EXT4_N_BLOCKS; block++) 4845ac27a0ecSDave Kleikamp raw_inode->i_block[block] = ei->i_data[block]; 4846f19d5870STao Ma } 4847ac27a0ecSDave Kleikamp 4848ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) { 484925ec56b5SJean Noel Cordenner raw_inode->i_disk_version = cpu_to_le32(inode->i_version); 485025ec56b5SJean Noel Cordenner if (ei->i_extra_isize) { 485125ec56b5SJean Noel Cordenner if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi)) 485225ec56b5SJean Noel Cordenner raw_inode->i_version_hi = 485325ec56b5SJean Noel Cordenner cpu_to_le32(inode->i_version >> 32); 4854c4f65706STheodore Ts'o raw_inode->i_extra_isize = 4855c4f65706STheodore Ts'o cpu_to_le16(ei->i_extra_isize); 4856c4f65706STheodore Ts'o } 485725ec56b5SJean Noel Cordenner } 4858040cb378SLi Xi 4859040cb378SLi Xi BUG_ON(!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, 4860040cb378SLi Xi EXT4_FEATURE_RO_COMPAT_PROJECT) && 4861040cb378SLi Xi i_projid != EXT4_DEF_PROJID); 4862040cb378SLi Xi 4863040cb378SLi Xi if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 4864040cb378SLi Xi EXT4_FITS_IN_INODE(raw_inode, ei, i_projid)) 4865040cb378SLi Xi raw_inode->i_projid = cpu_to_le32(i_projid); 4866040cb378SLi Xi 4867814525f4SDarrick J. Wong ext4_inode_csum_set(inode, raw_inode, ei); 4868202ee5dfSTheodore Ts'o spin_unlock(&ei->i_raw_lock); 4869a26f4992STheodore Ts'o if (inode->i_sb->s_flags & MS_LAZYTIME) 4870a26f4992STheodore Ts'o ext4_update_other_inodes_time(inode->i_sb, inode->i_ino, 4871a26f4992STheodore Ts'o bh->b_data); 4872202ee5dfSTheodore Ts'o 48730390131bSFrank Mayhar BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); 487473b50c1cSCurt Wohlgemuth rc = ext4_handle_dirty_metadata(handle, NULL, bh); 4875ac27a0ecSDave Kleikamp if (!err) 4876ac27a0ecSDave Kleikamp err = rc; 487719f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_NEW); 4878202ee5dfSTheodore Ts'o if (set_large_file) { 48795d601255Sliang xie BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access"); 4880202ee5dfSTheodore Ts'o err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh); 4881202ee5dfSTheodore Ts'o if (err) 4882202ee5dfSTheodore Ts'o goto out_brelse; 4883202ee5dfSTheodore Ts'o ext4_update_dynamic_rev(sb); 4884e2b911c5SDarrick J. Wong ext4_set_feature_large_file(sb); 4885202ee5dfSTheodore Ts'o ext4_handle_sync(handle); 4886202ee5dfSTheodore Ts'o err = ext4_handle_dirty_super(handle, sb); 4887202ee5dfSTheodore Ts'o } 4888b71fc079SJan Kara ext4_update_inode_fsync_trans(handle, inode, need_datasync); 4889ac27a0ecSDave Kleikamp out_brelse: 4890ac27a0ecSDave Kleikamp brelse(bh); 4891617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 4892ac27a0ecSDave Kleikamp return err; 4893ac27a0ecSDave Kleikamp } 4894ac27a0ecSDave Kleikamp 4895ac27a0ecSDave Kleikamp /* 4896617ba13bSMingming Cao * ext4_write_inode() 4897ac27a0ecSDave Kleikamp * 4898ac27a0ecSDave Kleikamp * We are called from a few places: 4899ac27a0ecSDave Kleikamp * 490087f7e416STheodore Ts'o * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files. 4901ac27a0ecSDave Kleikamp * Here, there will be no transaction running. We wait for any running 49024907cb7bSAnatol Pomozov * transaction to commit. 4903ac27a0ecSDave Kleikamp * 490487f7e416STheodore Ts'o * - Within flush work (sys_sync(), kupdate and such). 490587f7e416STheodore Ts'o * We wait on commit, if told to. 4906ac27a0ecSDave Kleikamp * 490787f7e416STheodore Ts'o * - Within iput_final() -> write_inode_now() 490887f7e416STheodore Ts'o * We wait on commit, if told to. 4909ac27a0ecSDave Kleikamp * 4910ac27a0ecSDave Kleikamp * In all cases it is actually safe for us to return without doing anything, 4911ac27a0ecSDave Kleikamp * because the inode has been copied into a raw inode buffer in 491287f7e416STheodore Ts'o * ext4_mark_inode_dirty(). This is a correctness thing for WB_SYNC_ALL 491387f7e416STheodore Ts'o * writeback. 4914ac27a0ecSDave Kleikamp * 4915ac27a0ecSDave Kleikamp * Note that we are absolutely dependent upon all inode dirtiers doing the 4916ac27a0ecSDave Kleikamp * right thing: they *must* call mark_inode_dirty() after dirtying info in 4917ac27a0ecSDave Kleikamp * which we are interested. 4918ac27a0ecSDave Kleikamp * 4919ac27a0ecSDave Kleikamp * It would be a bug for them to not do this. The code: 4920ac27a0ecSDave Kleikamp * 4921ac27a0ecSDave Kleikamp * mark_inode_dirty(inode) 4922ac27a0ecSDave Kleikamp * stuff(); 4923ac27a0ecSDave Kleikamp * inode->i_size = expr; 4924ac27a0ecSDave Kleikamp * 492587f7e416STheodore Ts'o * is in error because write_inode() could occur while `stuff()' is running, 492687f7e416STheodore Ts'o * and the new i_size will be lost. Plus the inode will no longer be on the 492787f7e416STheodore Ts'o * superblock's dirty inode list. 4928ac27a0ecSDave Kleikamp */ 4929a9185b41SChristoph Hellwig int ext4_write_inode(struct inode *inode, struct writeback_control *wbc) 4930ac27a0ecSDave Kleikamp { 493191ac6f43SFrank Mayhar int err; 493291ac6f43SFrank Mayhar 493387f7e416STheodore Ts'o if (WARN_ON_ONCE(current->flags & PF_MEMALLOC)) 4934ac27a0ecSDave Kleikamp return 0; 4935ac27a0ecSDave Kleikamp 493691ac6f43SFrank Mayhar if (EXT4_SB(inode->i_sb)->s_journal) { 4937617ba13bSMingming Cao if (ext4_journal_current_handle()) { 4938b38bd33aSMingming Cao jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n"); 4939ac27a0ecSDave Kleikamp dump_stack(); 4940ac27a0ecSDave Kleikamp return -EIO; 4941ac27a0ecSDave Kleikamp } 4942ac27a0ecSDave Kleikamp 494310542c22SJan Kara /* 494410542c22SJan Kara * No need to force transaction in WB_SYNC_NONE mode. Also 494510542c22SJan Kara * ext4_sync_fs() will force the commit after everything is 494610542c22SJan Kara * written. 494710542c22SJan Kara */ 494810542c22SJan Kara if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync) 4949ac27a0ecSDave Kleikamp return 0; 4950ac27a0ecSDave Kleikamp 495191ac6f43SFrank Mayhar err = ext4_force_commit(inode->i_sb); 495291ac6f43SFrank Mayhar } else { 495391ac6f43SFrank Mayhar struct ext4_iloc iloc; 495491ac6f43SFrank Mayhar 49558b472d73SCurt Wohlgemuth err = __ext4_get_inode_loc(inode, &iloc, 0); 495691ac6f43SFrank Mayhar if (err) 495791ac6f43SFrank Mayhar return err; 495810542c22SJan Kara /* 495910542c22SJan Kara * sync(2) will flush the whole buffer cache. No need to do 496010542c22SJan Kara * it here separately for each inode. 496110542c22SJan Kara */ 496210542c22SJan Kara if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync) 4963830156c7SFrank Mayhar sync_dirty_buffer(iloc.bh); 4964830156c7SFrank Mayhar if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) { 4965c398eda0STheodore Ts'o EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr, 4966c398eda0STheodore Ts'o "IO error syncing inode"); 4967830156c7SFrank Mayhar err = -EIO; 4968830156c7SFrank Mayhar } 4969fd2dd9fbSCurt Wohlgemuth brelse(iloc.bh); 497091ac6f43SFrank Mayhar } 497191ac6f43SFrank Mayhar return err; 4972ac27a0ecSDave Kleikamp } 4973ac27a0ecSDave Kleikamp 4974ac27a0ecSDave Kleikamp /* 497553e87268SJan Kara * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate 497653e87268SJan Kara * buffers that are attached to a page stradding i_size and are undergoing 497753e87268SJan Kara * commit. In that case we have to wait for commit to finish and try again. 497853e87268SJan Kara */ 497953e87268SJan Kara static void ext4_wait_for_tail_page_commit(struct inode *inode) 498053e87268SJan Kara { 498153e87268SJan Kara struct page *page; 498253e87268SJan Kara unsigned offset; 498353e87268SJan Kara journal_t *journal = EXT4_SB(inode->i_sb)->s_journal; 498453e87268SJan Kara tid_t commit_tid = 0; 498553e87268SJan Kara int ret; 498653e87268SJan Kara 498709cbfeafSKirill A. Shutemov offset = inode->i_size & (PAGE_SIZE - 1); 498853e87268SJan Kara /* 498953e87268SJan Kara * All buffers in the last page remain valid? Then there's nothing to 4990ea1754a0SKirill A. Shutemov * do. We do the check mainly to optimize the common PAGE_SIZE == 499153e87268SJan Kara * blocksize case 499253e87268SJan Kara */ 499309cbfeafSKirill A. Shutemov if (offset > PAGE_SIZE - (1 << inode->i_blkbits)) 499453e87268SJan Kara return; 499553e87268SJan Kara while (1) { 499653e87268SJan Kara page = find_lock_page(inode->i_mapping, 499709cbfeafSKirill A. Shutemov inode->i_size >> PAGE_SHIFT); 499853e87268SJan Kara if (!page) 499953e87268SJan Kara return; 5000ca99fdd2SLukas Czerner ret = __ext4_journalled_invalidatepage(page, offset, 500109cbfeafSKirill A. Shutemov PAGE_SIZE - offset); 500253e87268SJan Kara unlock_page(page); 500309cbfeafSKirill A. Shutemov put_page(page); 500453e87268SJan Kara if (ret != -EBUSY) 500553e87268SJan Kara return; 500653e87268SJan Kara commit_tid = 0; 500753e87268SJan Kara read_lock(&journal->j_state_lock); 500853e87268SJan Kara if (journal->j_committing_transaction) 500953e87268SJan Kara commit_tid = journal->j_committing_transaction->t_tid; 501053e87268SJan Kara read_unlock(&journal->j_state_lock); 501153e87268SJan Kara if (commit_tid) 501253e87268SJan Kara jbd2_log_wait_commit(journal, commit_tid); 501353e87268SJan Kara } 501453e87268SJan Kara } 501553e87268SJan Kara 501653e87268SJan Kara /* 5017617ba13bSMingming Cao * ext4_setattr() 5018ac27a0ecSDave Kleikamp * 5019ac27a0ecSDave Kleikamp * Called from notify_change. 5020ac27a0ecSDave Kleikamp * 5021ac27a0ecSDave Kleikamp * We want to trap VFS attempts to truncate the file as soon as 5022ac27a0ecSDave Kleikamp * possible. In particular, we want to make sure that when the VFS 5023ac27a0ecSDave Kleikamp * shrinks i_size, we put the inode on the orphan list and modify 5024ac27a0ecSDave Kleikamp * i_disksize immediately, so that during the subsequent flushing of 5025ac27a0ecSDave Kleikamp * dirty pages and freeing of disk blocks, we can guarantee that any 5026ac27a0ecSDave Kleikamp * commit will leave the blocks being flushed in an unused state on 5027ac27a0ecSDave Kleikamp * disk. (On recovery, the inode will get truncated and the blocks will 5028ac27a0ecSDave Kleikamp * be freed, so we have a strong guarantee that no future commit will 5029ac27a0ecSDave Kleikamp * leave these blocks visible to the user.) 5030ac27a0ecSDave Kleikamp * 5031678aaf48SJan Kara * Another thing we have to assure is that if we are in ordered mode 5032678aaf48SJan Kara * and inode is still attached to the committing transaction, we must 5033678aaf48SJan Kara * we start writeout of all the dirty pages which are being truncated. 5034678aaf48SJan Kara * This way we are sure that all the data written in the previous 5035678aaf48SJan Kara * transaction are already on disk (truncate waits for pages under 5036678aaf48SJan Kara * writeback). 5037678aaf48SJan Kara * 5038678aaf48SJan Kara * Called with inode->i_mutex down. 5039ac27a0ecSDave Kleikamp */ 5040617ba13bSMingming Cao int ext4_setattr(struct dentry *dentry, struct iattr *attr) 5041ac27a0ecSDave Kleikamp { 50422b0143b5SDavid Howells struct inode *inode = d_inode(dentry); 5043ac27a0ecSDave Kleikamp int error, rc = 0; 50443d287de3SDmitry Monakhov int orphan = 0; 5045ac27a0ecSDave Kleikamp const unsigned int ia_valid = attr->ia_valid; 5046ac27a0ecSDave Kleikamp 5047ac27a0ecSDave Kleikamp error = inode_change_ok(inode, attr); 5048ac27a0ecSDave Kleikamp if (error) 5049ac27a0ecSDave Kleikamp return error; 5050ac27a0ecSDave Kleikamp 5051a7cdadeeSJan Kara if (is_quota_modification(inode, attr)) { 5052a7cdadeeSJan Kara error = dquot_initialize(inode); 5053a7cdadeeSJan Kara if (error) 5054a7cdadeeSJan Kara return error; 5055a7cdadeeSJan Kara } 505608cefc7aSEric W. Biederman if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) || 505708cefc7aSEric W. Biederman (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) { 5058ac27a0ecSDave Kleikamp handle_t *handle; 5059ac27a0ecSDave Kleikamp 5060ac27a0ecSDave Kleikamp /* (user+group)*(old+new) structure, inode write (sb, 5061ac27a0ecSDave Kleikamp * inode block, ? - but truncate inode update has it) */ 50629924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_QUOTA, 50639924a92aSTheodore Ts'o (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) + 5064194074acSDmitry Monakhov EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3); 5065ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 5066ac27a0ecSDave Kleikamp error = PTR_ERR(handle); 5067ac27a0ecSDave Kleikamp goto err_out; 5068ac27a0ecSDave Kleikamp } 5069b43fa828SChristoph Hellwig error = dquot_transfer(inode, attr); 5070ac27a0ecSDave Kleikamp if (error) { 5071617ba13bSMingming Cao ext4_journal_stop(handle); 5072ac27a0ecSDave Kleikamp return error; 5073ac27a0ecSDave Kleikamp } 5074ac27a0ecSDave Kleikamp /* Update corresponding info in inode so that everything is in 5075ac27a0ecSDave Kleikamp * one transaction */ 5076ac27a0ecSDave Kleikamp if (attr->ia_valid & ATTR_UID) 5077ac27a0ecSDave Kleikamp inode->i_uid = attr->ia_uid; 5078ac27a0ecSDave Kleikamp if (attr->ia_valid & ATTR_GID) 5079ac27a0ecSDave Kleikamp inode->i_gid = attr->ia_gid; 5080617ba13bSMingming Cao error = ext4_mark_inode_dirty(handle, inode); 5081617ba13bSMingming Cao ext4_journal_stop(handle); 5082ac27a0ecSDave Kleikamp } 5083ac27a0ecSDave Kleikamp 50843da40c7bSJosef Bacik if (attr->ia_valid & ATTR_SIZE) { 50855208386cSJan Kara handle_t *handle; 50863da40c7bSJosef Bacik loff_t oldsize = inode->i_size; 50873da40c7bSJosef Bacik int shrink = (attr->ia_size <= inode->i_size); 5088562c72aaSChristoph Hellwig 508912e9b892SDmitry Monakhov if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) { 5090e2b46574SEric Sandeen struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 5091e2b46574SEric Sandeen 50920c095c7fSTheodore Ts'o if (attr->ia_size > sbi->s_bitmap_maxbytes) 50930c095c7fSTheodore Ts'o return -EFBIG; 5094e2b46574SEric Sandeen } 50953da40c7bSJosef Bacik if (!S_ISREG(inode->i_mode)) 50963da40c7bSJosef Bacik return -EINVAL; 5097dff6efc3SChristoph Hellwig 5098dff6efc3SChristoph Hellwig if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size) 5099dff6efc3SChristoph Hellwig inode_inc_iversion(inode); 5100dff6efc3SChristoph Hellwig 51013da40c7bSJosef Bacik if (ext4_should_order_data(inode) && 5102072bd7eaSTheodore Ts'o (attr->ia_size < inode->i_size)) { 51035208386cSJan Kara error = ext4_begin_ordered_truncate(inode, 51045208386cSJan Kara attr->ia_size); 51055208386cSJan Kara if (error) 51065208386cSJan Kara goto err_out; 51075208386cSJan Kara } 51083da40c7bSJosef Bacik if (attr->ia_size != inode->i_size) { 51099924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 3); 5110ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 5111ac27a0ecSDave Kleikamp error = PTR_ERR(handle); 5112ac27a0ecSDave Kleikamp goto err_out; 5113ac27a0ecSDave Kleikamp } 51143da40c7bSJosef Bacik if (ext4_handle_valid(handle) && shrink) { 5115617ba13bSMingming Cao error = ext4_orphan_add(handle, inode); 51163d287de3SDmitry Monakhov orphan = 1; 51173d287de3SDmitry Monakhov } 5118911af577SEryu Guan /* 5119911af577SEryu Guan * Update c/mtime on truncate up, ext4_truncate() will 5120911af577SEryu Guan * update c/mtime in shrink case below 5121911af577SEryu Guan */ 5122911af577SEryu Guan if (!shrink) { 5123911af577SEryu Guan inode->i_mtime = ext4_current_time(inode); 5124911af577SEryu Guan inode->i_ctime = inode->i_mtime; 5125911af577SEryu Guan } 512690e775b7SJan Kara down_write(&EXT4_I(inode)->i_data_sem); 5127617ba13bSMingming Cao EXT4_I(inode)->i_disksize = attr->ia_size; 5128617ba13bSMingming Cao rc = ext4_mark_inode_dirty(handle, inode); 5129ac27a0ecSDave Kleikamp if (!error) 5130ac27a0ecSDave Kleikamp error = rc; 513190e775b7SJan Kara /* 513290e775b7SJan Kara * We have to update i_size under i_data_sem together 513390e775b7SJan Kara * with i_disksize to avoid races with writeback code 513490e775b7SJan Kara * running ext4_wb_update_i_disksize(). 513590e775b7SJan Kara */ 513690e775b7SJan Kara if (!error) 513790e775b7SJan Kara i_size_write(inode, attr->ia_size); 513890e775b7SJan Kara up_write(&EXT4_I(inode)->i_data_sem); 5139617ba13bSMingming Cao ext4_journal_stop(handle); 5140678aaf48SJan Kara if (error) { 51413da40c7bSJosef Bacik if (orphan) 5142678aaf48SJan Kara ext4_orphan_del(NULL, inode); 5143678aaf48SJan Kara goto err_out; 5144678aaf48SJan Kara } 5145d6320cbfSJan Kara } 51463da40c7bSJosef Bacik if (!shrink) 51473da40c7bSJosef Bacik pagecache_isize_extended(inode, oldsize, inode->i_size); 514890e775b7SJan Kara 514953e87268SJan Kara /* 515053e87268SJan Kara * Blocks are going to be removed from the inode. Wait 515153e87268SJan Kara * for dio in flight. Temporarily disable 515253e87268SJan Kara * dioread_nolock to prevent livelock. 515353e87268SJan Kara */ 51541b65007eSDmitry Monakhov if (orphan) { 515553e87268SJan Kara if (!ext4_should_journal_data(inode)) { 51561b65007eSDmitry Monakhov ext4_inode_block_unlocked_dio(inode); 51571c9114f9SDmitry Monakhov inode_dio_wait(inode); 51581b65007eSDmitry Monakhov ext4_inode_resume_unlocked_dio(inode); 515953e87268SJan Kara } else 516053e87268SJan Kara ext4_wait_for_tail_page_commit(inode); 51611b65007eSDmitry Monakhov } 5162ea3d7209SJan Kara down_write(&EXT4_I(inode)->i_mmap_sem); 516353e87268SJan Kara /* 516453e87268SJan Kara * Truncate pagecache after we've waited for commit 516553e87268SJan Kara * in data=journal mode to make pages freeable. 516653e87268SJan Kara */ 51677caef267SKirill A. Shutemov truncate_pagecache(inode, inode->i_size); 51683da40c7bSJosef Bacik if (shrink) 5169072bd7eaSTheodore Ts'o ext4_truncate(inode); 5170ea3d7209SJan Kara up_write(&EXT4_I(inode)->i_mmap_sem); 51713da40c7bSJosef Bacik } 5172ac27a0ecSDave Kleikamp 51731025774cSChristoph Hellwig if (!rc) { 51741025774cSChristoph Hellwig setattr_copy(inode, attr); 51751025774cSChristoph Hellwig mark_inode_dirty(inode); 51761025774cSChristoph Hellwig } 51771025774cSChristoph Hellwig 51781025774cSChristoph Hellwig /* 51791025774cSChristoph Hellwig * If the call to ext4_truncate failed to get a transaction handle at 51801025774cSChristoph Hellwig * all, we need to clean up the in-core orphan list manually. 51811025774cSChristoph Hellwig */ 51823d287de3SDmitry Monakhov if (orphan && inode->i_nlink) 5183617ba13bSMingming Cao ext4_orphan_del(NULL, inode); 5184ac27a0ecSDave Kleikamp 5185ac27a0ecSDave Kleikamp if (!rc && (ia_valid & ATTR_MODE)) 518664e178a7SChristoph Hellwig rc = posix_acl_chmod(inode, inode->i_mode); 5187ac27a0ecSDave Kleikamp 5188ac27a0ecSDave Kleikamp err_out: 5189617ba13bSMingming Cao ext4_std_error(inode->i_sb, error); 5190ac27a0ecSDave Kleikamp if (!error) 5191ac27a0ecSDave Kleikamp error = rc; 5192ac27a0ecSDave Kleikamp return error; 5193ac27a0ecSDave Kleikamp } 5194ac27a0ecSDave Kleikamp 51953e3398a0SMingming Cao int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry, 51963e3398a0SMingming Cao struct kstat *stat) 51973e3398a0SMingming Cao { 51983e3398a0SMingming Cao struct inode *inode; 51998af8eeccSJan Kara unsigned long long delalloc_blocks; 52003e3398a0SMingming Cao 52012b0143b5SDavid Howells inode = d_inode(dentry); 52023e3398a0SMingming Cao generic_fillattr(inode, stat); 52033e3398a0SMingming Cao 52043e3398a0SMingming Cao /* 52059206c561SAndreas Dilger * If there is inline data in the inode, the inode will normally not 52069206c561SAndreas Dilger * have data blocks allocated (it may have an external xattr block). 52079206c561SAndreas Dilger * Report at least one sector for such files, so tools like tar, rsync, 52089206c561SAndreas Dilger * others doen't incorrectly think the file is completely sparse. 52099206c561SAndreas Dilger */ 52109206c561SAndreas Dilger if (unlikely(ext4_has_inline_data(inode))) 52119206c561SAndreas Dilger stat->blocks += (stat->size + 511) >> 9; 52129206c561SAndreas Dilger 52139206c561SAndreas Dilger /* 52143e3398a0SMingming Cao * We can't update i_blocks if the block allocation is delayed 52153e3398a0SMingming Cao * otherwise in the case of system crash before the real block 52163e3398a0SMingming Cao * allocation is done, we will have i_blocks inconsistent with 52173e3398a0SMingming Cao * on-disk file blocks. 52183e3398a0SMingming Cao * We always keep i_blocks updated together with real 52193e3398a0SMingming Cao * allocation. But to not confuse with user, stat 52203e3398a0SMingming Cao * will return the blocks that include the delayed allocation 52213e3398a0SMingming Cao * blocks for this file. 52223e3398a0SMingming Cao */ 522396607551STao Ma delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb), 522496607551STao Ma EXT4_I(inode)->i_reserved_data_blocks); 52258af8eeccSJan Kara stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9); 52263e3398a0SMingming Cao return 0; 52273e3398a0SMingming Cao } 5228ac27a0ecSDave Kleikamp 5229fffb2739SJan Kara static int ext4_index_trans_blocks(struct inode *inode, int lblocks, 5230fffb2739SJan Kara int pextents) 5231a02908f1SMingming Cao { 523212e9b892SDmitry Monakhov if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) 5233fffb2739SJan Kara return ext4_ind_trans_blocks(inode, lblocks); 5234fffb2739SJan Kara return ext4_ext_index_trans_blocks(inode, pextents); 5235a02908f1SMingming Cao } 5236ac51d837STheodore Ts'o 5237a02908f1SMingming Cao /* 5238a02908f1SMingming Cao * Account for index blocks, block groups bitmaps and block group 5239a02908f1SMingming Cao * descriptor blocks if modify datablocks and index blocks 5240a02908f1SMingming Cao * worse case, the indexs blocks spread over different block groups 5241a02908f1SMingming Cao * 5242a02908f1SMingming Cao * If datablocks are discontiguous, they are possible to spread over 52434907cb7bSAnatol Pomozov * different block groups too. If they are contiguous, with flexbg, 5244a02908f1SMingming Cao * they could still across block group boundary. 5245a02908f1SMingming Cao * 5246a02908f1SMingming Cao * Also account for superblock, inode, quota and xattr blocks 5247a02908f1SMingming Cao */ 5248fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks, 5249fffb2739SJan Kara int pextents) 5250a02908f1SMingming Cao { 52518df9675fSTheodore Ts'o ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb); 52528df9675fSTheodore Ts'o int gdpblocks; 5253a02908f1SMingming Cao int idxblocks; 5254a02908f1SMingming Cao int ret = 0; 5255a02908f1SMingming Cao 5256a02908f1SMingming Cao /* 5257fffb2739SJan Kara * How many index blocks need to touch to map @lblocks logical blocks 5258fffb2739SJan Kara * to @pextents physical extents? 5259a02908f1SMingming Cao */ 5260fffb2739SJan Kara idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents); 5261a02908f1SMingming Cao 5262a02908f1SMingming Cao ret = idxblocks; 5263a02908f1SMingming Cao 5264a02908f1SMingming Cao /* 5265a02908f1SMingming Cao * Now let's see how many group bitmaps and group descriptors need 5266a02908f1SMingming Cao * to account 5267a02908f1SMingming Cao */ 5268fffb2739SJan Kara groups = idxblocks + pextents; 5269a02908f1SMingming Cao gdpblocks = groups; 52708df9675fSTheodore Ts'o if (groups > ngroups) 52718df9675fSTheodore Ts'o groups = ngroups; 5272a02908f1SMingming Cao if (groups > EXT4_SB(inode->i_sb)->s_gdb_count) 5273a02908f1SMingming Cao gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count; 5274a02908f1SMingming Cao 5275a02908f1SMingming Cao /* bitmaps and block group descriptor blocks */ 5276a02908f1SMingming Cao ret += groups + gdpblocks; 5277a02908f1SMingming Cao 5278a02908f1SMingming Cao /* Blocks for super block, inode, quota and xattr blocks */ 5279a02908f1SMingming Cao ret += EXT4_META_TRANS_BLOCKS(inode->i_sb); 5280ac27a0ecSDave Kleikamp 5281ac27a0ecSDave Kleikamp return ret; 5282ac27a0ecSDave Kleikamp } 5283ac27a0ecSDave Kleikamp 5284ac27a0ecSDave Kleikamp /* 528525985edcSLucas De Marchi * Calculate the total number of credits to reserve to fit 5286f3bd1f3fSMingming Cao * the modification of a single pages into a single transaction, 5287f3bd1f3fSMingming Cao * which may include multiple chunks of block allocations. 5288a02908f1SMingming Cao * 5289525f4ed8SMingming Cao * This could be called via ext4_write_begin() 5290a02908f1SMingming Cao * 5291525f4ed8SMingming Cao * We need to consider the worse case, when 5292a02908f1SMingming Cao * one new block per extent. 5293a02908f1SMingming Cao */ 5294a02908f1SMingming Cao int ext4_writepage_trans_blocks(struct inode *inode) 5295a02908f1SMingming Cao { 5296a02908f1SMingming Cao int bpp = ext4_journal_blocks_per_page(inode); 5297a02908f1SMingming Cao int ret; 5298a02908f1SMingming Cao 5299fffb2739SJan Kara ret = ext4_meta_trans_blocks(inode, bpp, bpp); 5300a02908f1SMingming Cao 5301a02908f1SMingming Cao /* Account for data blocks for journalled mode */ 5302a02908f1SMingming Cao if (ext4_should_journal_data(inode)) 5303a02908f1SMingming Cao ret += bpp; 5304a02908f1SMingming Cao return ret; 5305a02908f1SMingming Cao } 5306f3bd1f3fSMingming Cao 5307f3bd1f3fSMingming Cao /* 5308f3bd1f3fSMingming Cao * Calculate the journal credits for a chunk of data modification. 5309f3bd1f3fSMingming Cao * 5310f3bd1f3fSMingming Cao * This is called from DIO, fallocate or whoever calling 531179e83036SEric Sandeen * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks. 5312f3bd1f3fSMingming Cao * 5313f3bd1f3fSMingming Cao * journal buffers for data blocks are not included here, as DIO 5314f3bd1f3fSMingming Cao * and fallocate do no need to journal data buffers. 5315f3bd1f3fSMingming Cao */ 5316f3bd1f3fSMingming Cao int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks) 5317f3bd1f3fSMingming Cao { 5318f3bd1f3fSMingming Cao return ext4_meta_trans_blocks(inode, nrblocks, 1); 5319f3bd1f3fSMingming Cao } 5320f3bd1f3fSMingming Cao 5321a02908f1SMingming Cao /* 5322617ba13bSMingming Cao * The caller must have previously called ext4_reserve_inode_write(). 5323ac27a0ecSDave Kleikamp * Give this, we know that the caller already has write access to iloc->bh. 5324ac27a0ecSDave Kleikamp */ 5325617ba13bSMingming Cao int ext4_mark_iloc_dirty(handle_t *handle, 5326617ba13bSMingming Cao struct inode *inode, struct ext4_iloc *iloc) 5327ac27a0ecSDave Kleikamp { 5328ac27a0ecSDave Kleikamp int err = 0; 5329ac27a0ecSDave Kleikamp 5330c64db50eSTheodore Ts'o if (IS_I_VERSION(inode)) 533125ec56b5SJean Noel Cordenner inode_inc_iversion(inode); 533225ec56b5SJean Noel Cordenner 5333ac27a0ecSDave Kleikamp /* the do_update_inode consumes one bh->b_count */ 5334ac27a0ecSDave Kleikamp get_bh(iloc->bh); 5335ac27a0ecSDave Kleikamp 5336dab291afSMingming Cao /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */ 5337830156c7SFrank Mayhar err = ext4_do_update_inode(handle, inode, iloc); 5338ac27a0ecSDave Kleikamp put_bh(iloc->bh); 5339ac27a0ecSDave Kleikamp return err; 5340ac27a0ecSDave Kleikamp } 5341ac27a0ecSDave Kleikamp 5342ac27a0ecSDave Kleikamp /* 5343ac27a0ecSDave Kleikamp * On success, We end up with an outstanding reference count against 5344ac27a0ecSDave Kleikamp * iloc->bh. This _must_ be cleaned up later. 5345ac27a0ecSDave Kleikamp */ 5346ac27a0ecSDave Kleikamp 5347ac27a0ecSDave Kleikamp int 5348617ba13bSMingming Cao ext4_reserve_inode_write(handle_t *handle, struct inode *inode, 5349617ba13bSMingming Cao struct ext4_iloc *iloc) 5350ac27a0ecSDave Kleikamp { 53510390131bSFrank Mayhar int err; 53520390131bSFrank Mayhar 5353617ba13bSMingming Cao err = ext4_get_inode_loc(inode, iloc); 5354ac27a0ecSDave Kleikamp if (!err) { 5355ac27a0ecSDave Kleikamp BUFFER_TRACE(iloc->bh, "get_write_access"); 5356617ba13bSMingming Cao err = ext4_journal_get_write_access(handle, iloc->bh); 5357ac27a0ecSDave Kleikamp if (err) { 5358ac27a0ecSDave Kleikamp brelse(iloc->bh); 5359ac27a0ecSDave Kleikamp iloc->bh = NULL; 5360ac27a0ecSDave Kleikamp } 5361ac27a0ecSDave Kleikamp } 5362617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 5363ac27a0ecSDave Kleikamp return err; 5364ac27a0ecSDave Kleikamp } 5365ac27a0ecSDave Kleikamp 5366ac27a0ecSDave Kleikamp /* 53676dd4ee7cSKalpak Shah * Expand an inode by new_extra_isize bytes. 53686dd4ee7cSKalpak Shah * Returns 0 on success or negative error number on failure. 53696dd4ee7cSKalpak Shah */ 53701d03ec98SAneesh Kumar K.V static int ext4_expand_extra_isize(struct inode *inode, 53711d03ec98SAneesh Kumar K.V unsigned int new_extra_isize, 53721d03ec98SAneesh Kumar K.V struct ext4_iloc iloc, 53731d03ec98SAneesh Kumar K.V handle_t *handle) 53746dd4ee7cSKalpak Shah { 53756dd4ee7cSKalpak Shah struct ext4_inode *raw_inode; 53766dd4ee7cSKalpak Shah struct ext4_xattr_ibody_header *header; 53776dd4ee7cSKalpak Shah 53786dd4ee7cSKalpak Shah if (EXT4_I(inode)->i_extra_isize >= new_extra_isize) 53796dd4ee7cSKalpak Shah return 0; 53806dd4ee7cSKalpak Shah 53816dd4ee7cSKalpak Shah raw_inode = ext4_raw_inode(&iloc); 53826dd4ee7cSKalpak Shah 53836dd4ee7cSKalpak Shah header = IHDR(inode, raw_inode); 53846dd4ee7cSKalpak Shah 53856dd4ee7cSKalpak Shah /* No extended attributes present */ 538619f5fb7aSTheodore Ts'o if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) || 53876dd4ee7cSKalpak Shah header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) { 53886dd4ee7cSKalpak Shah memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0, 53896dd4ee7cSKalpak Shah new_extra_isize); 53906dd4ee7cSKalpak Shah EXT4_I(inode)->i_extra_isize = new_extra_isize; 53916dd4ee7cSKalpak Shah return 0; 53926dd4ee7cSKalpak Shah } 53936dd4ee7cSKalpak Shah 53946dd4ee7cSKalpak Shah /* try to expand with EAs present */ 53956dd4ee7cSKalpak Shah return ext4_expand_extra_isize_ea(inode, new_extra_isize, 53966dd4ee7cSKalpak Shah raw_inode, handle); 53976dd4ee7cSKalpak Shah } 53986dd4ee7cSKalpak Shah 53996dd4ee7cSKalpak Shah /* 5400ac27a0ecSDave Kleikamp * What we do here is to mark the in-core inode as clean with respect to inode 5401ac27a0ecSDave Kleikamp * dirtiness (it may still be data-dirty). 5402ac27a0ecSDave Kleikamp * This means that the in-core inode may be reaped by prune_icache 5403ac27a0ecSDave Kleikamp * without having to perform any I/O. This is a very good thing, 5404ac27a0ecSDave Kleikamp * because *any* task may call prune_icache - even ones which 5405ac27a0ecSDave Kleikamp * have a transaction open against a different journal. 5406ac27a0ecSDave Kleikamp * 5407ac27a0ecSDave Kleikamp * Is this cheating? Not really. Sure, we haven't written the 5408ac27a0ecSDave Kleikamp * inode out, but prune_icache isn't a user-visible syncing function. 5409ac27a0ecSDave Kleikamp * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync) 5410ac27a0ecSDave Kleikamp * we start and wait on commits. 5411ac27a0ecSDave Kleikamp */ 5412617ba13bSMingming Cao int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode) 5413ac27a0ecSDave Kleikamp { 5414617ba13bSMingming Cao struct ext4_iloc iloc; 54156dd4ee7cSKalpak Shah struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 54166dd4ee7cSKalpak Shah static unsigned int mnt_count; 54176dd4ee7cSKalpak Shah int err, ret; 5418ac27a0ecSDave Kleikamp 5419ac27a0ecSDave Kleikamp might_sleep(); 54207ff9c073STheodore Ts'o trace_ext4_mark_inode_dirty(inode, _RET_IP_); 5421617ba13bSMingming Cao err = ext4_reserve_inode_write(handle, inode, &iloc); 54225e1021f2SEryu Guan if (err) 54235e1021f2SEryu Guan return err; 54240390131bSFrank Mayhar if (ext4_handle_valid(handle) && 54250390131bSFrank Mayhar EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize && 542619f5fb7aSTheodore Ts'o !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) { 54276dd4ee7cSKalpak Shah /* 54286dd4ee7cSKalpak Shah * We need extra buffer credits since we may write into EA block 54296dd4ee7cSKalpak Shah * with this same handle. If journal_extend fails, then it will 54306dd4ee7cSKalpak Shah * only result in a minor loss of functionality for that inode. 54316dd4ee7cSKalpak Shah * If this is felt to be critical, then e2fsck should be run to 54326dd4ee7cSKalpak Shah * force a large enough s_min_extra_isize. 54336dd4ee7cSKalpak Shah */ 54346dd4ee7cSKalpak Shah if ((jbd2_journal_extend(handle, 54356dd4ee7cSKalpak Shah EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) { 54366dd4ee7cSKalpak Shah ret = ext4_expand_extra_isize(inode, 54376dd4ee7cSKalpak Shah sbi->s_want_extra_isize, 54386dd4ee7cSKalpak Shah iloc, handle); 54396dd4ee7cSKalpak Shah if (ret) { 544019f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, 544119f5fb7aSTheodore Ts'o EXT4_STATE_NO_EXPAND); 5442c1bddad9SAneesh Kumar K.V if (mnt_count != 5443c1bddad9SAneesh Kumar K.V le16_to_cpu(sbi->s_es->s_mnt_count)) { 544412062dddSEric Sandeen ext4_warning(inode->i_sb, 54456dd4ee7cSKalpak Shah "Unable to expand inode %lu. Delete" 54466dd4ee7cSKalpak Shah " some EAs or run e2fsck.", 54476dd4ee7cSKalpak Shah inode->i_ino); 5448c1bddad9SAneesh Kumar K.V mnt_count = 5449c1bddad9SAneesh Kumar K.V le16_to_cpu(sbi->s_es->s_mnt_count); 54506dd4ee7cSKalpak Shah } 54516dd4ee7cSKalpak Shah } 54526dd4ee7cSKalpak Shah } 54536dd4ee7cSKalpak Shah } 54545e1021f2SEryu Guan return ext4_mark_iloc_dirty(handle, inode, &iloc); 5455ac27a0ecSDave Kleikamp } 5456ac27a0ecSDave Kleikamp 5457ac27a0ecSDave Kleikamp /* 5458617ba13bSMingming Cao * ext4_dirty_inode() is called from __mark_inode_dirty() 5459ac27a0ecSDave Kleikamp * 5460ac27a0ecSDave Kleikamp * We're really interested in the case where a file is being extended. 5461ac27a0ecSDave Kleikamp * i_size has been changed by generic_commit_write() and we thus need 5462ac27a0ecSDave Kleikamp * to include the updated inode in the current transaction. 5463ac27a0ecSDave Kleikamp * 54645dd4056dSChristoph Hellwig * Also, dquot_alloc_block() will always dirty the inode when blocks 5465ac27a0ecSDave Kleikamp * are allocated to the file. 5466ac27a0ecSDave Kleikamp * 5467ac27a0ecSDave Kleikamp * If the inode is marked synchronous, we don't honour that here - doing 5468ac27a0ecSDave Kleikamp * so would cause a commit on atime updates, which we don't bother doing. 5469ac27a0ecSDave Kleikamp * We handle synchronous inodes at the highest possible level. 54700ae45f63STheodore Ts'o * 54710ae45f63STheodore Ts'o * If only the I_DIRTY_TIME flag is set, we can skip everything. If 54720ae45f63STheodore Ts'o * I_DIRTY_TIME and I_DIRTY_SYNC is set, the only inode fields we need 54730ae45f63STheodore Ts'o * to copy into the on-disk inode structure are the timestamp files. 5474ac27a0ecSDave Kleikamp */ 5475aa385729SChristoph Hellwig void ext4_dirty_inode(struct inode *inode, int flags) 5476ac27a0ecSDave Kleikamp { 5477ac27a0ecSDave Kleikamp handle_t *handle; 5478ac27a0ecSDave Kleikamp 54790ae45f63STheodore Ts'o if (flags == I_DIRTY_TIME) 54800ae45f63STheodore Ts'o return; 54819924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 2); 5482ac27a0ecSDave Kleikamp if (IS_ERR(handle)) 5483ac27a0ecSDave Kleikamp goto out; 5484f3dc272fSCurt Wohlgemuth 5485617ba13bSMingming Cao ext4_mark_inode_dirty(handle, inode); 5486f3dc272fSCurt Wohlgemuth 5487617ba13bSMingming Cao ext4_journal_stop(handle); 5488ac27a0ecSDave Kleikamp out: 5489ac27a0ecSDave Kleikamp return; 5490ac27a0ecSDave Kleikamp } 5491ac27a0ecSDave Kleikamp 5492ac27a0ecSDave Kleikamp #if 0 5493ac27a0ecSDave Kleikamp /* 5494ac27a0ecSDave Kleikamp * Bind an inode's backing buffer_head into this transaction, to prevent 5495ac27a0ecSDave Kleikamp * it from being flushed to disk early. Unlike 5496617ba13bSMingming Cao * ext4_reserve_inode_write, this leaves behind no bh reference and 5497ac27a0ecSDave Kleikamp * returns no iloc structure, so the caller needs to repeat the iloc 5498ac27a0ecSDave Kleikamp * lookup to mark the inode dirty later. 5499ac27a0ecSDave Kleikamp */ 5500617ba13bSMingming Cao static int ext4_pin_inode(handle_t *handle, struct inode *inode) 5501ac27a0ecSDave Kleikamp { 5502617ba13bSMingming Cao struct ext4_iloc iloc; 5503ac27a0ecSDave Kleikamp 5504ac27a0ecSDave Kleikamp int err = 0; 5505ac27a0ecSDave Kleikamp if (handle) { 5506617ba13bSMingming Cao err = ext4_get_inode_loc(inode, &iloc); 5507ac27a0ecSDave Kleikamp if (!err) { 5508ac27a0ecSDave Kleikamp BUFFER_TRACE(iloc.bh, "get_write_access"); 5509dab291afSMingming Cao err = jbd2_journal_get_write_access(handle, iloc.bh); 5510ac27a0ecSDave Kleikamp if (!err) 55110390131bSFrank Mayhar err = ext4_handle_dirty_metadata(handle, 551273b50c1cSCurt Wohlgemuth NULL, 5513ac27a0ecSDave Kleikamp iloc.bh); 5514ac27a0ecSDave Kleikamp brelse(iloc.bh); 5515ac27a0ecSDave Kleikamp } 5516ac27a0ecSDave Kleikamp } 5517617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 5518ac27a0ecSDave Kleikamp return err; 5519ac27a0ecSDave Kleikamp } 5520ac27a0ecSDave Kleikamp #endif 5521ac27a0ecSDave Kleikamp 5522617ba13bSMingming Cao int ext4_change_inode_journal_flag(struct inode *inode, int val) 5523ac27a0ecSDave Kleikamp { 5524ac27a0ecSDave Kleikamp journal_t *journal; 5525ac27a0ecSDave Kleikamp handle_t *handle; 5526ac27a0ecSDave Kleikamp int err; 5527c8585c6fSDaeho Jeong struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 5528ac27a0ecSDave Kleikamp 5529ac27a0ecSDave Kleikamp /* 5530ac27a0ecSDave Kleikamp * We have to be very careful here: changing a data block's 5531ac27a0ecSDave Kleikamp * journaling status dynamically is dangerous. If we write a 5532ac27a0ecSDave Kleikamp * data block to the journal, change the status and then delete 5533ac27a0ecSDave Kleikamp * that block, we risk forgetting to revoke the old log record 5534ac27a0ecSDave Kleikamp * from the journal and so a subsequent replay can corrupt data. 5535ac27a0ecSDave Kleikamp * So, first we make sure that the journal is empty and that 5536ac27a0ecSDave Kleikamp * nobody is changing anything. 5537ac27a0ecSDave Kleikamp */ 5538ac27a0ecSDave Kleikamp 5539617ba13bSMingming Cao journal = EXT4_JOURNAL(inode); 55400390131bSFrank Mayhar if (!journal) 55410390131bSFrank Mayhar return 0; 5542d699594dSDave Hansen if (is_journal_aborted(journal)) 5543ac27a0ecSDave Kleikamp return -EROFS; 5544ac27a0ecSDave Kleikamp 554517335dccSDmitry Monakhov /* Wait for all existing dio workers */ 554617335dccSDmitry Monakhov ext4_inode_block_unlocked_dio(inode); 554717335dccSDmitry Monakhov inode_dio_wait(inode); 554817335dccSDmitry Monakhov 55494c546592SDaeho Jeong /* 55504c546592SDaeho Jeong * Before flushing the journal and switching inode's aops, we have 55514c546592SDaeho Jeong * to flush all dirty data the inode has. There can be outstanding 55524c546592SDaeho Jeong * delayed allocations, there can be unwritten extents created by 55534c546592SDaeho Jeong * fallocate or buffered writes in dioread_nolock mode covered by 55544c546592SDaeho Jeong * dirty data which can be converted only after flushing the dirty 55554c546592SDaeho Jeong * data (and journalled aops don't know how to handle these cases). 55564c546592SDaeho Jeong */ 55574c546592SDaeho Jeong if (val) { 55584c546592SDaeho Jeong down_write(&EXT4_I(inode)->i_mmap_sem); 55594c546592SDaeho Jeong err = filemap_write_and_wait(inode->i_mapping); 55604c546592SDaeho Jeong if (err < 0) { 55614c546592SDaeho Jeong up_write(&EXT4_I(inode)->i_mmap_sem); 55624c546592SDaeho Jeong ext4_inode_resume_unlocked_dio(inode); 55634c546592SDaeho Jeong return err; 55644c546592SDaeho Jeong } 55654c546592SDaeho Jeong } 55664c546592SDaeho Jeong 5567c8585c6fSDaeho Jeong percpu_down_write(&sbi->s_journal_flag_rwsem); 5568dab291afSMingming Cao jbd2_journal_lock_updates(journal); 5569ac27a0ecSDave Kleikamp 5570ac27a0ecSDave Kleikamp /* 5571ac27a0ecSDave Kleikamp * OK, there are no updates running now, and all cached data is 5572ac27a0ecSDave Kleikamp * synced to disk. We are now in a completely consistent state 5573ac27a0ecSDave Kleikamp * which doesn't have anything in the journal, and we know that 5574ac27a0ecSDave Kleikamp * no filesystem updates are running, so it is safe to modify 5575ac27a0ecSDave Kleikamp * the inode's in-core data-journaling state flag now. 5576ac27a0ecSDave Kleikamp */ 5577ac27a0ecSDave Kleikamp 5578ac27a0ecSDave Kleikamp if (val) 557912e9b892SDmitry Monakhov ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA); 55805872ddaaSYongqiang Yang else { 55814f879ca6SJan Kara err = jbd2_journal_flush(journal); 55824f879ca6SJan Kara if (err < 0) { 55834f879ca6SJan Kara jbd2_journal_unlock_updates(journal); 5584c8585c6fSDaeho Jeong percpu_up_write(&sbi->s_journal_flag_rwsem); 55854f879ca6SJan Kara ext4_inode_resume_unlocked_dio(inode); 55864f879ca6SJan Kara return err; 55874f879ca6SJan Kara } 558812e9b892SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA); 55895872ddaaSYongqiang Yang } 5590617ba13bSMingming Cao ext4_set_aops(inode); 5591ac27a0ecSDave Kleikamp 5592dab291afSMingming Cao jbd2_journal_unlock_updates(journal); 5593c8585c6fSDaeho Jeong percpu_up_write(&sbi->s_journal_flag_rwsem); 5594c8585c6fSDaeho Jeong 55954c546592SDaeho Jeong if (val) 55964c546592SDaeho Jeong up_write(&EXT4_I(inode)->i_mmap_sem); 559717335dccSDmitry Monakhov ext4_inode_resume_unlocked_dio(inode); 5598ac27a0ecSDave Kleikamp 5599ac27a0ecSDave Kleikamp /* Finally we can mark the inode as dirty. */ 5600ac27a0ecSDave Kleikamp 56019924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 1); 5602ac27a0ecSDave Kleikamp if (IS_ERR(handle)) 5603ac27a0ecSDave Kleikamp return PTR_ERR(handle); 5604ac27a0ecSDave Kleikamp 5605617ba13bSMingming Cao err = ext4_mark_inode_dirty(handle, inode); 56060390131bSFrank Mayhar ext4_handle_sync(handle); 5607617ba13bSMingming Cao ext4_journal_stop(handle); 5608617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 5609ac27a0ecSDave Kleikamp 5610ac27a0ecSDave Kleikamp return err; 5611ac27a0ecSDave Kleikamp } 56122e9ee850SAneesh Kumar K.V 56132e9ee850SAneesh Kumar K.V static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh) 56142e9ee850SAneesh Kumar K.V { 56152e9ee850SAneesh Kumar K.V return !buffer_mapped(bh); 56162e9ee850SAneesh Kumar K.V } 56172e9ee850SAneesh Kumar K.V 5618c2ec175cSNick Piggin int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf) 56192e9ee850SAneesh Kumar K.V { 5620c2ec175cSNick Piggin struct page *page = vmf->page; 56212e9ee850SAneesh Kumar K.V loff_t size; 56222e9ee850SAneesh Kumar K.V unsigned long len; 56239ea7df53SJan Kara int ret; 56242e9ee850SAneesh Kumar K.V struct file *file = vma->vm_file; 5625496ad9aaSAl Viro struct inode *inode = file_inode(file); 56262e9ee850SAneesh Kumar K.V struct address_space *mapping = inode->i_mapping; 56279ea7df53SJan Kara handle_t *handle; 56289ea7df53SJan Kara get_block_t *get_block; 56299ea7df53SJan Kara int retries = 0; 56302e9ee850SAneesh Kumar K.V 56318e8ad8a5SJan Kara sb_start_pagefault(inode->i_sb); 5632041bbb6dSTheodore Ts'o file_update_time(vma->vm_file); 5633ea3d7209SJan Kara 5634ea3d7209SJan Kara down_read(&EXT4_I(inode)->i_mmap_sem); 56359ea7df53SJan Kara /* Delalloc case is easy... */ 56369ea7df53SJan Kara if (test_opt(inode->i_sb, DELALLOC) && 56379ea7df53SJan Kara !ext4_should_journal_data(inode) && 56389ea7df53SJan Kara !ext4_nonda_switch(inode->i_sb)) { 56399ea7df53SJan Kara do { 56405c500029SRoss Zwisler ret = block_page_mkwrite(vma, vmf, 56419ea7df53SJan Kara ext4_da_get_block_prep); 56429ea7df53SJan Kara } while (ret == -ENOSPC && 56439ea7df53SJan Kara ext4_should_retry_alloc(inode->i_sb, &retries)); 56449ea7df53SJan Kara goto out_ret; 56452e9ee850SAneesh Kumar K.V } 56460e499890SDarrick J. Wong 56470e499890SDarrick J. Wong lock_page(page); 56489ea7df53SJan Kara size = i_size_read(inode); 56499ea7df53SJan Kara /* Page got truncated from under us? */ 56509ea7df53SJan Kara if (page->mapping != mapping || page_offset(page) > size) { 56519ea7df53SJan Kara unlock_page(page); 56529ea7df53SJan Kara ret = VM_FAULT_NOPAGE; 56539ea7df53SJan Kara goto out; 56540e499890SDarrick J. Wong } 56552e9ee850SAneesh Kumar K.V 565609cbfeafSKirill A. Shutemov if (page->index == size >> PAGE_SHIFT) 565709cbfeafSKirill A. Shutemov len = size & ~PAGE_MASK; 56582e9ee850SAneesh Kumar K.V else 565909cbfeafSKirill A. Shutemov len = PAGE_SIZE; 5660a827eaffSAneesh Kumar K.V /* 56619ea7df53SJan Kara * Return if we have all the buffers mapped. This avoids the need to do 56629ea7df53SJan Kara * journal_start/journal_stop which can block and take a long time 5663a827eaffSAneesh Kumar K.V */ 56642e9ee850SAneesh Kumar K.V if (page_has_buffers(page)) { 5665f19d5870STao Ma if (!ext4_walk_page_buffers(NULL, page_buffers(page), 5666f19d5870STao Ma 0, len, NULL, 5667a827eaffSAneesh Kumar K.V ext4_bh_unmapped)) { 56689ea7df53SJan Kara /* Wait so that we don't change page under IO */ 56691d1d1a76SDarrick J. Wong wait_for_stable_page(page); 56709ea7df53SJan Kara ret = VM_FAULT_LOCKED; 56719ea7df53SJan Kara goto out; 56722e9ee850SAneesh Kumar K.V } 5673a827eaffSAneesh Kumar K.V } 5674a827eaffSAneesh Kumar K.V unlock_page(page); 56759ea7df53SJan Kara /* OK, we need to fill the hole... */ 56769ea7df53SJan Kara if (ext4_should_dioread_nolock(inode)) 5677705965bdSJan Kara get_block = ext4_get_block_unwritten; 56789ea7df53SJan Kara else 56799ea7df53SJan Kara get_block = ext4_get_block; 56809ea7df53SJan Kara retry_alloc: 56819924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 56829924a92aSTheodore Ts'o ext4_writepage_trans_blocks(inode)); 56839ea7df53SJan Kara if (IS_ERR(handle)) { 5684c2ec175cSNick Piggin ret = VM_FAULT_SIGBUS; 56859ea7df53SJan Kara goto out; 56869ea7df53SJan Kara } 56875c500029SRoss Zwisler ret = block_page_mkwrite(vma, vmf, get_block); 56889ea7df53SJan Kara if (!ret && ext4_should_journal_data(inode)) { 5689f19d5870STao Ma if (ext4_walk_page_buffers(handle, page_buffers(page), 0, 569009cbfeafSKirill A. Shutemov PAGE_SIZE, NULL, do_journal_get_write_access)) { 56919ea7df53SJan Kara unlock_page(page); 56929ea7df53SJan Kara ret = VM_FAULT_SIGBUS; 5693fcbb5515SYongqiang Yang ext4_journal_stop(handle); 56949ea7df53SJan Kara goto out; 56959ea7df53SJan Kara } 56969ea7df53SJan Kara ext4_set_inode_state(inode, EXT4_STATE_JDATA); 56979ea7df53SJan Kara } 56989ea7df53SJan Kara ext4_journal_stop(handle); 56999ea7df53SJan Kara if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries)) 57009ea7df53SJan Kara goto retry_alloc; 57019ea7df53SJan Kara out_ret: 57029ea7df53SJan Kara ret = block_page_mkwrite_return(ret); 57039ea7df53SJan Kara out: 5704ea3d7209SJan Kara up_read(&EXT4_I(inode)->i_mmap_sem); 57058e8ad8a5SJan Kara sb_end_pagefault(inode->i_sb); 57062e9ee850SAneesh Kumar K.V return ret; 57072e9ee850SAneesh Kumar K.V } 5708ea3d7209SJan Kara 5709ea3d7209SJan Kara int ext4_filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf) 5710ea3d7209SJan Kara { 5711ea3d7209SJan Kara struct inode *inode = file_inode(vma->vm_file); 5712ea3d7209SJan Kara int err; 5713ea3d7209SJan Kara 5714ea3d7209SJan Kara down_read(&EXT4_I(inode)->i_mmap_sem); 5715ea3d7209SJan Kara err = filemap_fault(vma, vmf); 5716ea3d7209SJan Kara up_read(&EXT4_I(inode)->i_mmap_sem); 5717ea3d7209SJan Kara 5718ea3d7209SJan Kara return err; 5719ea3d7209SJan Kara } 57202d90c160SJan Kara 57212d90c160SJan Kara /* 57222d90c160SJan Kara * Find the first extent at or after @lblk in an inode that is not a hole. 57232d90c160SJan Kara * Search for @map_len blocks at most. The extent is returned in @result. 57242d90c160SJan Kara * 57252d90c160SJan Kara * The function returns 1 if we found an extent. The function returns 0 in 57262d90c160SJan Kara * case there is no extent at or after @lblk and in that case also sets 57272d90c160SJan Kara * @result->es_len to 0. In case of error, the error code is returned. 57282d90c160SJan Kara */ 57292d90c160SJan Kara int ext4_get_next_extent(struct inode *inode, ext4_lblk_t lblk, 57302d90c160SJan Kara unsigned int map_len, struct extent_status *result) 57312d90c160SJan Kara { 57322d90c160SJan Kara struct ext4_map_blocks map; 57332d90c160SJan Kara struct extent_status es = {}; 57342d90c160SJan Kara int ret; 57352d90c160SJan Kara 57362d90c160SJan Kara map.m_lblk = lblk; 57372d90c160SJan Kara map.m_len = map_len; 57382d90c160SJan Kara 57392d90c160SJan Kara /* 57402d90c160SJan Kara * For non-extent based files this loop may iterate several times since 57412d90c160SJan Kara * we do not determine full hole size. 57422d90c160SJan Kara */ 57432d90c160SJan Kara while (map.m_len > 0) { 57442d90c160SJan Kara ret = ext4_map_blocks(NULL, inode, &map, 0); 57452d90c160SJan Kara if (ret < 0) 57462d90c160SJan Kara return ret; 57472d90c160SJan Kara /* There's extent covering m_lblk? Just return it. */ 57482d90c160SJan Kara if (ret > 0) { 57492d90c160SJan Kara int status; 57502d90c160SJan Kara 57512d90c160SJan Kara ext4_es_store_pblock(result, map.m_pblk); 57522d90c160SJan Kara result->es_lblk = map.m_lblk; 57532d90c160SJan Kara result->es_len = map.m_len; 57542d90c160SJan Kara if (map.m_flags & EXT4_MAP_UNWRITTEN) 57552d90c160SJan Kara status = EXTENT_STATUS_UNWRITTEN; 57562d90c160SJan Kara else 57572d90c160SJan Kara status = EXTENT_STATUS_WRITTEN; 57582d90c160SJan Kara ext4_es_store_status(result, status); 57592d90c160SJan Kara return 1; 57602d90c160SJan Kara } 57612d90c160SJan Kara ext4_es_find_delayed_extent_range(inode, map.m_lblk, 57622d90c160SJan Kara map.m_lblk + map.m_len - 1, 57632d90c160SJan Kara &es); 57642d90c160SJan Kara /* Is delalloc data before next block in extent tree? */ 57652d90c160SJan Kara if (es.es_len && es.es_lblk < map.m_lblk + map.m_len) { 57662d90c160SJan Kara ext4_lblk_t offset = 0; 57672d90c160SJan Kara 57682d90c160SJan Kara if (es.es_lblk < lblk) 57692d90c160SJan Kara offset = lblk - es.es_lblk; 57702d90c160SJan Kara result->es_lblk = es.es_lblk + offset; 57712d90c160SJan Kara ext4_es_store_pblock(result, 57722d90c160SJan Kara ext4_es_pblock(&es) + offset); 57732d90c160SJan Kara result->es_len = es.es_len - offset; 57742d90c160SJan Kara ext4_es_store_status(result, ext4_es_status(&es)); 57752d90c160SJan Kara 57762d90c160SJan Kara return 1; 57772d90c160SJan Kara } 57782d90c160SJan Kara /* There's a hole at m_lblk, advance us after it */ 57792d90c160SJan Kara map.m_lblk += map.m_len; 57802d90c160SJan Kara map_len -= map.m_len; 57812d90c160SJan Kara map.m_len = map_len; 57822d90c160SJan Kara cond_resched(); 57832d90c160SJan Kara } 57842d90c160SJan Kara result->es_len = 0; 57852d90c160SJan Kara return 0; 57862d90c160SJan Kara } 5787