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; 6876fd058f7STheodore Ts'o } 6880e855ac8SAneesh Kumar K.V return retval; 6890e855ac8SAneesh Kumar K.V } 6900e855ac8SAneesh Kumar K.V 691ed8ad838SJan Kara /* 692ed8ad838SJan Kara * Update EXT4_MAP_FLAGS in bh->b_state. For buffer heads attached to pages 693ed8ad838SJan Kara * we have to be careful as someone else may be manipulating b_state as well. 694ed8ad838SJan Kara */ 695ed8ad838SJan Kara static void ext4_update_bh_state(struct buffer_head *bh, unsigned long flags) 696ed8ad838SJan Kara { 697ed8ad838SJan Kara unsigned long old_state; 698ed8ad838SJan Kara unsigned long new_state; 699ed8ad838SJan Kara 700ed8ad838SJan Kara flags &= EXT4_MAP_FLAGS; 701ed8ad838SJan Kara 702ed8ad838SJan Kara /* Dummy buffer_head? Set non-atomically. */ 703ed8ad838SJan Kara if (!bh->b_page) { 704ed8ad838SJan Kara bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | flags; 705ed8ad838SJan Kara return; 706ed8ad838SJan Kara } 707ed8ad838SJan Kara /* 708ed8ad838SJan Kara * Someone else may be modifying b_state. Be careful! This is ugly but 709ed8ad838SJan Kara * once we get rid of using bh as a container for mapping information 710ed8ad838SJan Kara * to pass to / from get_block functions, this can go away. 711ed8ad838SJan Kara */ 712ed8ad838SJan Kara do { 713ed8ad838SJan Kara old_state = READ_ONCE(bh->b_state); 714ed8ad838SJan Kara new_state = (old_state & ~EXT4_MAP_FLAGS) | flags; 715ed8ad838SJan Kara } while (unlikely( 716ed8ad838SJan Kara cmpxchg(&bh->b_state, old_state, new_state) != old_state)); 717ed8ad838SJan Kara } 718ed8ad838SJan Kara 7192ed88685STheodore Ts'o static int _ext4_get_block(struct inode *inode, sector_t iblock, 7202ed88685STheodore Ts'o struct buffer_head *bh, int flags) 721ac27a0ecSDave Kleikamp { 7222ed88685STheodore Ts'o struct ext4_map_blocks map; 723efe70c29SJan Kara int ret = 0; 724ac27a0ecSDave Kleikamp 72546c7f254STao Ma if (ext4_has_inline_data(inode)) 72646c7f254STao Ma return -ERANGE; 72746c7f254STao Ma 7282ed88685STheodore Ts'o map.m_lblk = iblock; 7292ed88685STheodore Ts'o map.m_len = bh->b_size >> inode->i_blkbits; 7302ed88685STheodore Ts'o 731efe70c29SJan Kara ret = ext4_map_blocks(ext4_journal_current_handle(), inode, &map, 732efe70c29SJan Kara flags); 733ac27a0ecSDave Kleikamp if (ret > 0) { 7342ed88685STheodore Ts'o map_bh(bh, inode->i_sb, map.m_pblk); 735ed8ad838SJan Kara ext4_update_bh_state(bh, map.m_flags); 7362ed88685STheodore Ts'o bh->b_size = inode->i_sb->s_blocksize * map.m_len; 737ac27a0ecSDave Kleikamp ret = 0; 738ac27a0ecSDave Kleikamp } 739ac27a0ecSDave Kleikamp return ret; 740ac27a0ecSDave Kleikamp } 741ac27a0ecSDave Kleikamp 7422ed88685STheodore Ts'o int ext4_get_block(struct inode *inode, sector_t iblock, 7432ed88685STheodore Ts'o struct buffer_head *bh, int create) 7442ed88685STheodore Ts'o { 7452ed88685STheodore Ts'o return _ext4_get_block(inode, iblock, bh, 7462ed88685STheodore Ts'o create ? EXT4_GET_BLOCKS_CREATE : 0); 7472ed88685STheodore Ts'o } 7482ed88685STheodore Ts'o 749ac27a0ecSDave Kleikamp /* 750705965bdSJan Kara * Get block function used when preparing for buffered write if we require 751705965bdSJan Kara * creating an unwritten extent if blocks haven't been allocated. The extent 752705965bdSJan Kara * will be converted to written after the IO is complete. 753705965bdSJan Kara */ 754705965bdSJan Kara int ext4_get_block_unwritten(struct inode *inode, sector_t iblock, 755705965bdSJan Kara struct buffer_head *bh_result, int create) 756705965bdSJan Kara { 757705965bdSJan Kara ext4_debug("ext4_get_block_unwritten: inode %lu, create flag %d\n", 758705965bdSJan Kara inode->i_ino, create); 759705965bdSJan Kara return _ext4_get_block(inode, iblock, bh_result, 760705965bdSJan Kara EXT4_GET_BLOCKS_IO_CREATE_EXT); 761705965bdSJan Kara } 762705965bdSJan Kara 763efe70c29SJan Kara /* Maximum number of blocks we map for direct IO at once. */ 764efe70c29SJan Kara #define DIO_MAX_BLOCKS 4096 765efe70c29SJan Kara 766efe70c29SJan Kara static handle_t *start_dio_trans(struct inode *inode, 767efe70c29SJan Kara struct buffer_head *bh_result) 768efe70c29SJan Kara { 769efe70c29SJan Kara int dio_credits; 770efe70c29SJan Kara 771efe70c29SJan Kara /* Trim mapping request to maximum we can map at once for DIO */ 772efe70c29SJan Kara if (bh_result->b_size >> inode->i_blkbits > DIO_MAX_BLOCKS) 773efe70c29SJan Kara bh_result->b_size = DIO_MAX_BLOCKS << inode->i_blkbits; 774efe70c29SJan Kara dio_credits = ext4_chunk_trans_blocks(inode, 775efe70c29SJan Kara bh_result->b_size >> inode->i_blkbits); 776efe70c29SJan Kara return ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, dio_credits); 777efe70c29SJan Kara } 778efe70c29SJan Kara 779705965bdSJan Kara /* Get block function for DIO reads and writes to inodes without extents */ 780705965bdSJan Kara int ext4_dio_get_block(struct inode *inode, sector_t iblock, 781705965bdSJan Kara struct buffer_head *bh, int create) 782705965bdSJan Kara { 783efe70c29SJan Kara handle_t *handle; 784efe70c29SJan Kara int ret; 785efe70c29SJan Kara 786efe70c29SJan Kara /* We don't expect handle for direct IO */ 787efe70c29SJan Kara WARN_ON_ONCE(ext4_journal_current_handle()); 788efe70c29SJan Kara 789efe70c29SJan Kara if (create) { 790efe70c29SJan Kara handle = start_dio_trans(inode, bh); 791efe70c29SJan Kara if (IS_ERR(handle)) 792efe70c29SJan Kara return PTR_ERR(handle); 793efe70c29SJan Kara } 794efe70c29SJan Kara ret = _ext4_get_block(inode, iblock, bh, 795705965bdSJan Kara create ? EXT4_GET_BLOCKS_CREATE : 0); 796efe70c29SJan Kara if (create) 797efe70c29SJan Kara ext4_journal_stop(handle); 798efe70c29SJan Kara return ret; 799705965bdSJan Kara } 800705965bdSJan Kara 801705965bdSJan Kara /* 802109811c2SJan Kara * Get block function for AIO DIO writes when we create unwritten extent if 803705965bdSJan Kara * blocks are not allocated yet. The extent will be converted to written 804705965bdSJan Kara * after IO is complete. 805705965bdSJan Kara */ 806109811c2SJan Kara static int ext4_dio_get_block_unwritten_async(struct inode *inode, 807109811c2SJan Kara sector_t iblock, struct buffer_head *bh_result, int create) 808705965bdSJan Kara { 809efe70c29SJan Kara handle_t *handle; 810efe70c29SJan Kara int ret; 811efe70c29SJan Kara 812efe70c29SJan Kara /* We don't expect handle for direct IO */ 813efe70c29SJan Kara WARN_ON_ONCE(ext4_journal_current_handle()); 814efe70c29SJan Kara 815efe70c29SJan Kara handle = start_dio_trans(inode, bh_result); 816efe70c29SJan Kara if (IS_ERR(handle)) 817efe70c29SJan Kara return PTR_ERR(handle); 818efe70c29SJan Kara ret = _ext4_get_block(inode, iblock, bh_result, 819705965bdSJan Kara EXT4_GET_BLOCKS_IO_CREATE_EXT); 820efe70c29SJan Kara ext4_journal_stop(handle); 821efe70c29SJan Kara 822109811c2SJan Kara /* 823109811c2SJan Kara * When doing DIO using unwritten extents, we need io_end to convert 824109811c2SJan Kara * unwritten extents to written on IO completion. We allocate io_end 825109811c2SJan Kara * once we spot unwritten extent and store it in b_private. Generic 826109811c2SJan Kara * DIO code keeps b_private set and furthermore passes the value to 827109811c2SJan Kara * our completion callback in 'private' argument. 828109811c2SJan Kara */ 829109811c2SJan Kara if (!ret && buffer_unwritten(bh_result)) { 830109811c2SJan Kara if (!bh_result->b_private) { 831109811c2SJan Kara ext4_io_end_t *io_end; 832109811c2SJan Kara 833109811c2SJan Kara io_end = ext4_init_io_end(inode, GFP_KERNEL); 834109811c2SJan Kara if (!io_end) 835109811c2SJan Kara return -ENOMEM; 836109811c2SJan Kara bh_result->b_private = io_end; 837109811c2SJan Kara ext4_set_io_unwritten_flag(inode, io_end); 838efe70c29SJan Kara } 839109811c2SJan Kara set_buffer_defer_completion(bh_result); 840109811c2SJan Kara } 841109811c2SJan Kara 842109811c2SJan Kara return ret; 843109811c2SJan Kara } 844109811c2SJan Kara 845109811c2SJan Kara /* 846109811c2SJan Kara * Get block function for non-AIO DIO writes when we create unwritten extent if 847109811c2SJan Kara * blocks are not allocated yet. The extent will be converted to written 848109811c2SJan Kara * after IO is complete from ext4_ext_direct_IO() function. 849109811c2SJan Kara */ 850109811c2SJan Kara static int ext4_dio_get_block_unwritten_sync(struct inode *inode, 851109811c2SJan Kara sector_t iblock, struct buffer_head *bh_result, int create) 852109811c2SJan Kara { 853109811c2SJan Kara handle_t *handle; 854109811c2SJan Kara int ret; 855109811c2SJan Kara 856109811c2SJan Kara /* We don't expect handle for direct IO */ 857109811c2SJan Kara WARN_ON_ONCE(ext4_journal_current_handle()); 858109811c2SJan Kara 859109811c2SJan Kara handle = start_dio_trans(inode, bh_result); 860109811c2SJan Kara if (IS_ERR(handle)) 861109811c2SJan Kara return PTR_ERR(handle); 862109811c2SJan Kara ret = _ext4_get_block(inode, iblock, bh_result, 863109811c2SJan Kara EXT4_GET_BLOCKS_IO_CREATE_EXT); 864109811c2SJan Kara ext4_journal_stop(handle); 865109811c2SJan Kara 866109811c2SJan Kara /* 867109811c2SJan Kara * Mark inode as having pending DIO writes to unwritten extents. 868109811c2SJan Kara * ext4_ext_direct_IO() checks this flag and converts extents to 869109811c2SJan Kara * written. 870109811c2SJan Kara */ 871109811c2SJan Kara if (!ret && buffer_unwritten(bh_result)) 872109811c2SJan Kara ext4_set_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN); 873efe70c29SJan Kara 874efe70c29SJan Kara return ret; 875705965bdSJan Kara } 876705965bdSJan Kara 877705965bdSJan Kara static int ext4_dio_get_block_overwrite(struct inode *inode, sector_t iblock, 878705965bdSJan Kara struct buffer_head *bh_result, int create) 879705965bdSJan Kara { 880705965bdSJan Kara int ret; 881705965bdSJan Kara 882705965bdSJan Kara ext4_debug("ext4_dio_get_block_overwrite: inode %lu, create flag %d\n", 883705965bdSJan Kara inode->i_ino, create); 884efe70c29SJan Kara /* We don't expect handle for direct IO */ 885efe70c29SJan Kara WARN_ON_ONCE(ext4_journal_current_handle()); 886efe70c29SJan Kara 887705965bdSJan Kara ret = _ext4_get_block(inode, iblock, bh_result, 0); 888705965bdSJan Kara /* 889705965bdSJan Kara * Blocks should have been preallocated! ext4_file_write_iter() checks 890705965bdSJan Kara * that. 891705965bdSJan Kara */ 892efe70c29SJan Kara WARN_ON_ONCE(!buffer_mapped(bh_result) || buffer_unwritten(bh_result)); 893705965bdSJan Kara 894705965bdSJan Kara return ret; 895705965bdSJan Kara } 896705965bdSJan Kara 897705965bdSJan Kara 898705965bdSJan Kara /* 899ac27a0ecSDave Kleikamp * `handle' can be NULL if create is zero 900ac27a0ecSDave Kleikamp */ 901617ba13bSMingming Cao struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode, 902c5e298aeSTheodore Ts'o ext4_lblk_t block, int map_flags) 903ac27a0ecSDave Kleikamp { 9042ed88685STheodore Ts'o struct ext4_map_blocks map; 9052ed88685STheodore Ts'o struct buffer_head *bh; 906c5e298aeSTheodore Ts'o int create = map_flags & EXT4_GET_BLOCKS_CREATE; 90710560082STheodore Ts'o int err; 908ac27a0ecSDave Kleikamp 909ac27a0ecSDave Kleikamp J_ASSERT(handle != NULL || create == 0); 910ac27a0ecSDave Kleikamp 9112ed88685STheodore Ts'o map.m_lblk = block; 9122ed88685STheodore Ts'o map.m_len = 1; 913c5e298aeSTheodore Ts'o err = ext4_map_blocks(handle, inode, &map, map_flags); 9142ed88685STheodore Ts'o 91510560082STheodore Ts'o if (err == 0) 91610560082STheodore Ts'o return create ? ERR_PTR(-ENOSPC) : NULL; 9172ed88685STheodore Ts'o if (err < 0) 91810560082STheodore Ts'o return ERR_PTR(err); 9192ed88685STheodore Ts'o 9202ed88685STheodore Ts'o bh = sb_getblk(inode->i_sb, map.m_pblk); 92110560082STheodore Ts'o if (unlikely(!bh)) 92210560082STheodore Ts'o return ERR_PTR(-ENOMEM); 9232ed88685STheodore Ts'o if (map.m_flags & EXT4_MAP_NEW) { 924ac27a0ecSDave Kleikamp J_ASSERT(create != 0); 925ac39849dSAneesh Kumar K.V J_ASSERT(handle != NULL); 926ac27a0ecSDave Kleikamp 927ac27a0ecSDave Kleikamp /* 928ac27a0ecSDave Kleikamp * Now that we do not always journal data, we should 929ac27a0ecSDave Kleikamp * keep in mind whether this should always journal the 930ac27a0ecSDave Kleikamp * new buffer as metadata. For now, regular file 931617ba13bSMingming Cao * writes use ext4_get_block instead, so it's not a 932ac27a0ecSDave Kleikamp * problem. 933ac27a0ecSDave Kleikamp */ 934ac27a0ecSDave Kleikamp lock_buffer(bh); 935ac27a0ecSDave Kleikamp BUFFER_TRACE(bh, "call get_create_access"); 93610560082STheodore Ts'o err = ext4_journal_get_create_access(handle, bh); 93710560082STheodore Ts'o if (unlikely(err)) { 93810560082STheodore Ts'o unlock_buffer(bh); 93910560082STheodore Ts'o goto errout; 94010560082STheodore Ts'o } 94110560082STheodore Ts'o if (!buffer_uptodate(bh)) { 942ac27a0ecSDave Kleikamp memset(bh->b_data, 0, inode->i_sb->s_blocksize); 943ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 944ac27a0ecSDave Kleikamp } 945ac27a0ecSDave Kleikamp unlock_buffer(bh); 9460390131bSFrank Mayhar BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); 9470390131bSFrank Mayhar err = ext4_handle_dirty_metadata(handle, inode, bh); 94810560082STheodore Ts'o if (unlikely(err)) 94910560082STheodore Ts'o goto errout; 95010560082STheodore Ts'o } else 951ac27a0ecSDave Kleikamp BUFFER_TRACE(bh, "not a new buffer"); 952ac27a0ecSDave Kleikamp return bh; 95310560082STheodore Ts'o errout: 95410560082STheodore Ts'o brelse(bh); 95510560082STheodore Ts'o return ERR_PTR(err); 956ac27a0ecSDave Kleikamp } 957ac27a0ecSDave Kleikamp 958617ba13bSMingming Cao struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode, 959c5e298aeSTheodore Ts'o ext4_lblk_t block, int map_flags) 960ac27a0ecSDave Kleikamp { 961ac27a0ecSDave Kleikamp struct buffer_head *bh; 962ac27a0ecSDave Kleikamp 963c5e298aeSTheodore Ts'o bh = ext4_getblk(handle, inode, block, map_flags); 9641c215028STheodore Ts'o if (IS_ERR(bh)) 965ac27a0ecSDave Kleikamp return bh; 9661c215028STheodore Ts'o if (!bh || buffer_uptodate(bh)) 967ac27a0ecSDave Kleikamp return bh; 96865299a3bSChristoph Hellwig ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh); 969ac27a0ecSDave Kleikamp wait_on_buffer(bh); 970ac27a0ecSDave Kleikamp if (buffer_uptodate(bh)) 971ac27a0ecSDave Kleikamp return bh; 972ac27a0ecSDave Kleikamp put_bh(bh); 9731c215028STheodore Ts'o return ERR_PTR(-EIO); 974ac27a0ecSDave Kleikamp } 975ac27a0ecSDave Kleikamp 976f19d5870STao Ma int ext4_walk_page_buffers(handle_t *handle, 977ac27a0ecSDave Kleikamp struct buffer_head *head, 978ac27a0ecSDave Kleikamp unsigned from, 979ac27a0ecSDave Kleikamp unsigned to, 980ac27a0ecSDave Kleikamp int *partial, 981ac27a0ecSDave Kleikamp int (*fn)(handle_t *handle, 982ac27a0ecSDave Kleikamp struct buffer_head *bh)) 983ac27a0ecSDave Kleikamp { 984ac27a0ecSDave Kleikamp struct buffer_head *bh; 985ac27a0ecSDave Kleikamp unsigned block_start, block_end; 986ac27a0ecSDave Kleikamp unsigned blocksize = head->b_size; 987ac27a0ecSDave Kleikamp int err, ret = 0; 988ac27a0ecSDave Kleikamp struct buffer_head *next; 989ac27a0ecSDave Kleikamp 990ac27a0ecSDave Kleikamp for (bh = head, block_start = 0; 991ac27a0ecSDave Kleikamp ret == 0 && (bh != head || !block_start); 992de9a55b8STheodore Ts'o block_start = block_end, bh = next) { 993ac27a0ecSDave Kleikamp next = bh->b_this_page; 994ac27a0ecSDave Kleikamp block_end = block_start + blocksize; 995ac27a0ecSDave Kleikamp if (block_end <= from || block_start >= to) { 996ac27a0ecSDave Kleikamp if (partial && !buffer_uptodate(bh)) 997ac27a0ecSDave Kleikamp *partial = 1; 998ac27a0ecSDave Kleikamp continue; 999ac27a0ecSDave Kleikamp } 1000ac27a0ecSDave Kleikamp err = (*fn)(handle, bh); 1001ac27a0ecSDave Kleikamp if (!ret) 1002ac27a0ecSDave Kleikamp ret = err; 1003ac27a0ecSDave Kleikamp } 1004ac27a0ecSDave Kleikamp return ret; 1005ac27a0ecSDave Kleikamp } 1006ac27a0ecSDave Kleikamp 1007ac27a0ecSDave Kleikamp /* 1008ac27a0ecSDave Kleikamp * To preserve ordering, it is essential that the hole instantiation and 1009ac27a0ecSDave Kleikamp * the data write be encapsulated in a single transaction. We cannot 1010617ba13bSMingming Cao * close off a transaction and start a new one between the ext4_get_block() 1011dab291afSMingming Cao * and the commit_write(). So doing the jbd2_journal_start at the start of 1012ac27a0ecSDave Kleikamp * prepare_write() is the right place. 1013ac27a0ecSDave Kleikamp * 101436ade451SJan Kara * Also, this function can nest inside ext4_writepage(). In that case, we 101536ade451SJan Kara * *know* that ext4_writepage() has generated enough buffer credits to do the 101636ade451SJan Kara * whole page. So we won't block on the journal in that case, which is good, 101736ade451SJan Kara * because the caller may be PF_MEMALLOC. 1018ac27a0ecSDave Kleikamp * 1019617ba13bSMingming Cao * By accident, ext4 can be reentered when a transaction is open via 1020ac27a0ecSDave Kleikamp * quota file writes. If we were to commit the transaction while thus 1021ac27a0ecSDave Kleikamp * reentered, there can be a deadlock - we would be holding a quota 1022ac27a0ecSDave Kleikamp * lock, and the commit would never complete if another thread had a 1023ac27a0ecSDave Kleikamp * transaction open and was blocking on the quota lock - a ranking 1024ac27a0ecSDave Kleikamp * violation. 1025ac27a0ecSDave Kleikamp * 1026dab291afSMingming Cao * So what we do is to rely on the fact that jbd2_journal_stop/journal_start 1027ac27a0ecSDave Kleikamp * will _not_ run commit under these circumstances because handle->h_ref 1028ac27a0ecSDave Kleikamp * is elevated. We'll still have enough credits for the tiny quotafile 1029ac27a0ecSDave Kleikamp * write. 1030ac27a0ecSDave Kleikamp */ 1031f19d5870STao Ma int do_journal_get_write_access(handle_t *handle, 1032ac27a0ecSDave Kleikamp struct buffer_head *bh) 1033ac27a0ecSDave Kleikamp { 103456d35a4cSJan Kara int dirty = buffer_dirty(bh); 103556d35a4cSJan Kara int ret; 103656d35a4cSJan Kara 1037ac27a0ecSDave Kleikamp if (!buffer_mapped(bh) || buffer_freed(bh)) 1038ac27a0ecSDave Kleikamp return 0; 103956d35a4cSJan Kara /* 1040ebdec241SChristoph Hellwig * __block_write_begin() could have dirtied some buffers. Clean 104156d35a4cSJan Kara * the dirty bit as jbd2_journal_get_write_access() could complain 104256d35a4cSJan Kara * otherwise about fs integrity issues. Setting of the dirty bit 1043ebdec241SChristoph Hellwig * by __block_write_begin() isn't a real problem here as we clear 104456d35a4cSJan Kara * the bit before releasing a page lock and thus writeback cannot 104556d35a4cSJan Kara * ever write the buffer. 104656d35a4cSJan Kara */ 104756d35a4cSJan Kara if (dirty) 104856d35a4cSJan Kara clear_buffer_dirty(bh); 10495d601255Sliang xie BUFFER_TRACE(bh, "get write access"); 105056d35a4cSJan Kara ret = ext4_journal_get_write_access(handle, bh); 105156d35a4cSJan Kara if (!ret && dirty) 105256d35a4cSJan Kara ret = ext4_handle_dirty_metadata(handle, NULL, bh); 105356d35a4cSJan Kara return ret; 1054ac27a0ecSDave Kleikamp } 1055ac27a0ecSDave Kleikamp 10562058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION 10572058f83aSMichael Halcrow static int ext4_block_write_begin(struct page *page, loff_t pos, unsigned len, 10582058f83aSMichael Halcrow get_block_t *get_block) 10592058f83aSMichael Halcrow { 10602058f83aSMichael Halcrow unsigned from = pos & (PAGE_CACHE_SIZE - 1); 10612058f83aSMichael Halcrow unsigned to = from + len; 10622058f83aSMichael Halcrow struct inode *inode = page->mapping->host; 10632058f83aSMichael Halcrow unsigned block_start, block_end; 10642058f83aSMichael Halcrow sector_t block; 10652058f83aSMichael Halcrow int err = 0; 10662058f83aSMichael Halcrow unsigned blocksize = inode->i_sb->s_blocksize; 10672058f83aSMichael Halcrow unsigned bbits; 10682058f83aSMichael Halcrow struct buffer_head *bh, *head, *wait[2], **wait_bh = wait; 10692058f83aSMichael Halcrow bool decrypt = false; 10702058f83aSMichael Halcrow 10712058f83aSMichael Halcrow BUG_ON(!PageLocked(page)); 10722058f83aSMichael Halcrow BUG_ON(from > PAGE_CACHE_SIZE); 10732058f83aSMichael Halcrow BUG_ON(to > PAGE_CACHE_SIZE); 10742058f83aSMichael Halcrow BUG_ON(from > to); 10752058f83aSMichael Halcrow 10762058f83aSMichael Halcrow if (!page_has_buffers(page)) 10772058f83aSMichael Halcrow create_empty_buffers(page, blocksize, 0); 10782058f83aSMichael Halcrow head = page_buffers(page); 10792058f83aSMichael Halcrow bbits = ilog2(blocksize); 10802058f83aSMichael Halcrow block = (sector_t)page->index << (PAGE_CACHE_SHIFT - bbits); 10812058f83aSMichael Halcrow 10822058f83aSMichael Halcrow for (bh = head, block_start = 0; bh != head || !block_start; 10832058f83aSMichael Halcrow block++, block_start = block_end, bh = bh->b_this_page) { 10842058f83aSMichael Halcrow block_end = block_start + blocksize; 10852058f83aSMichael Halcrow if (block_end <= from || block_start >= to) { 10862058f83aSMichael Halcrow if (PageUptodate(page)) { 10872058f83aSMichael Halcrow if (!buffer_uptodate(bh)) 10882058f83aSMichael Halcrow set_buffer_uptodate(bh); 10892058f83aSMichael Halcrow } 10902058f83aSMichael Halcrow continue; 10912058f83aSMichael Halcrow } 10922058f83aSMichael Halcrow if (buffer_new(bh)) 10932058f83aSMichael Halcrow clear_buffer_new(bh); 10942058f83aSMichael Halcrow if (!buffer_mapped(bh)) { 10952058f83aSMichael Halcrow WARN_ON(bh->b_size != blocksize); 10962058f83aSMichael Halcrow err = get_block(inode, block, bh, 1); 10972058f83aSMichael Halcrow if (err) 10982058f83aSMichael Halcrow break; 10992058f83aSMichael Halcrow if (buffer_new(bh)) { 11002058f83aSMichael Halcrow unmap_underlying_metadata(bh->b_bdev, 11012058f83aSMichael Halcrow bh->b_blocknr); 11022058f83aSMichael Halcrow if (PageUptodate(page)) { 11032058f83aSMichael Halcrow clear_buffer_new(bh); 11042058f83aSMichael Halcrow set_buffer_uptodate(bh); 11052058f83aSMichael Halcrow mark_buffer_dirty(bh); 11062058f83aSMichael Halcrow continue; 11072058f83aSMichael Halcrow } 11082058f83aSMichael Halcrow if (block_end > to || block_start < from) 11092058f83aSMichael Halcrow zero_user_segments(page, to, block_end, 11102058f83aSMichael Halcrow block_start, from); 11112058f83aSMichael Halcrow continue; 11122058f83aSMichael Halcrow } 11132058f83aSMichael Halcrow } 11142058f83aSMichael Halcrow if (PageUptodate(page)) { 11152058f83aSMichael Halcrow if (!buffer_uptodate(bh)) 11162058f83aSMichael Halcrow set_buffer_uptodate(bh); 11172058f83aSMichael Halcrow continue; 11182058f83aSMichael Halcrow } 11192058f83aSMichael Halcrow if (!buffer_uptodate(bh) && !buffer_delay(bh) && 11202058f83aSMichael Halcrow !buffer_unwritten(bh) && 11212058f83aSMichael Halcrow (block_start < from || block_end > to)) { 11222058f83aSMichael Halcrow ll_rw_block(READ, 1, &bh); 11232058f83aSMichael Halcrow *wait_bh++ = bh; 11242058f83aSMichael Halcrow decrypt = ext4_encrypted_inode(inode) && 11252058f83aSMichael Halcrow S_ISREG(inode->i_mode); 11262058f83aSMichael Halcrow } 11272058f83aSMichael Halcrow } 11282058f83aSMichael Halcrow /* 11292058f83aSMichael Halcrow * If we issued read requests, let them complete. 11302058f83aSMichael Halcrow */ 11312058f83aSMichael Halcrow while (wait_bh > wait) { 11322058f83aSMichael Halcrow wait_on_buffer(*--wait_bh); 11332058f83aSMichael Halcrow if (!buffer_uptodate(*wait_bh)) 11342058f83aSMichael Halcrow err = -EIO; 11352058f83aSMichael Halcrow } 11362058f83aSMichael Halcrow if (unlikely(err)) 11372058f83aSMichael Halcrow page_zero_new_buffers(page, from, to); 11382058f83aSMichael Halcrow else if (decrypt) 11393684de8cSTheodore Ts'o err = ext4_decrypt(page); 11402058f83aSMichael Halcrow return err; 11412058f83aSMichael Halcrow } 11422058f83aSMichael Halcrow #endif 11432058f83aSMichael Halcrow 1144bfc1af65SNick Piggin static int ext4_write_begin(struct file *file, struct address_space *mapping, 1145bfc1af65SNick Piggin loff_t pos, unsigned len, unsigned flags, 1146bfc1af65SNick Piggin struct page **pagep, void **fsdata) 1147ac27a0ecSDave Kleikamp { 1148bfc1af65SNick Piggin struct inode *inode = mapping->host; 11491938a150SAneesh Kumar K.V int ret, needed_blocks; 1150ac27a0ecSDave Kleikamp handle_t *handle; 1151ac27a0ecSDave Kleikamp int retries = 0; 1152bfc1af65SNick Piggin struct page *page; 1153bfc1af65SNick Piggin pgoff_t index; 1154bfc1af65SNick Piggin unsigned from, to; 1155bfc1af65SNick Piggin 11569bffad1eSTheodore Ts'o trace_ext4_write_begin(inode, pos, len, flags); 11571938a150SAneesh Kumar K.V /* 11581938a150SAneesh Kumar K.V * Reserve one block more for addition to orphan list in case 11591938a150SAneesh Kumar K.V * we allocate blocks but write fails for some reason 11601938a150SAneesh Kumar K.V */ 11611938a150SAneesh Kumar K.V needed_blocks = ext4_writepage_trans_blocks(inode) + 1; 1162bfc1af65SNick Piggin index = pos >> PAGE_CACHE_SHIFT; 1163bfc1af65SNick Piggin from = pos & (PAGE_CACHE_SIZE - 1); 1164bfc1af65SNick Piggin to = from + len; 1165ac27a0ecSDave Kleikamp 1166f19d5870STao Ma if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) { 1167f19d5870STao Ma ret = ext4_try_to_write_inline_data(mapping, inode, pos, len, 1168f19d5870STao Ma flags, pagep); 1169f19d5870STao Ma if (ret < 0) 117047564bfbSTheodore Ts'o return ret; 117147564bfbSTheodore Ts'o if (ret == 1) 117247564bfbSTheodore Ts'o return 0; 1173f19d5870STao Ma } 1174f19d5870STao Ma 117547564bfbSTheodore Ts'o /* 117647564bfbSTheodore Ts'o * grab_cache_page_write_begin() can take a long time if the 117747564bfbSTheodore Ts'o * system is thrashing due to memory pressure, or if the page 117847564bfbSTheodore Ts'o * is being written back. So grab it first before we start 117947564bfbSTheodore Ts'o * the transaction handle. This also allows us to allocate 118047564bfbSTheodore Ts'o * the page (if needed) without using GFP_NOFS. 118147564bfbSTheodore Ts'o */ 118247564bfbSTheodore Ts'o retry_grab: 118354566b2cSNick Piggin page = grab_cache_page_write_begin(mapping, index, flags); 118447564bfbSTheodore Ts'o if (!page) 118547564bfbSTheodore Ts'o return -ENOMEM; 118647564bfbSTheodore Ts'o unlock_page(page); 118747564bfbSTheodore Ts'o 118847564bfbSTheodore Ts'o retry_journal: 11899924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks); 1190ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 119147564bfbSTheodore Ts'o page_cache_release(page); 119247564bfbSTheodore Ts'o return PTR_ERR(handle); 1193cf108bcaSJan Kara } 1194f19d5870STao Ma 119547564bfbSTheodore Ts'o lock_page(page); 119647564bfbSTheodore Ts'o if (page->mapping != mapping) { 119747564bfbSTheodore Ts'o /* The page got truncated from under us */ 119847564bfbSTheodore Ts'o unlock_page(page); 119947564bfbSTheodore Ts'o page_cache_release(page); 1200cf108bcaSJan Kara ext4_journal_stop(handle); 120147564bfbSTheodore Ts'o goto retry_grab; 1202cf108bcaSJan Kara } 12037afe5aa5SDmitry Monakhov /* In case writeback began while the page was unlocked */ 12047afe5aa5SDmitry Monakhov wait_for_stable_page(page); 1205cf108bcaSJan Kara 12062058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION 12072058f83aSMichael Halcrow if (ext4_should_dioread_nolock(inode)) 12082058f83aSMichael Halcrow ret = ext4_block_write_begin(page, pos, len, 1209705965bdSJan Kara ext4_get_block_unwritten); 12102058f83aSMichael Halcrow else 12112058f83aSMichael Halcrow ret = ext4_block_write_begin(page, pos, len, 12122058f83aSMichael Halcrow ext4_get_block); 12132058f83aSMichael Halcrow #else 1214744692dcSJiaying Zhang if (ext4_should_dioread_nolock(inode)) 1215705965bdSJan Kara ret = __block_write_begin(page, pos, len, 1216705965bdSJan Kara ext4_get_block_unwritten); 1217744692dcSJiaying Zhang else 12186e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_get_block); 12192058f83aSMichael Halcrow #endif 1220bfc1af65SNick Piggin if (!ret && ext4_should_journal_data(inode)) { 1221f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_buffers(page), 1222f19d5870STao Ma from, to, NULL, 1223f19d5870STao Ma do_journal_get_write_access); 1224b46be050SAndrey Savochkin } 1225bfc1af65SNick Piggin 1226bfc1af65SNick Piggin if (ret) { 1227bfc1af65SNick Piggin unlock_page(page); 1228ae4d5372SAneesh Kumar K.V /* 12296e1db88dSChristoph Hellwig * __block_write_begin may have instantiated a few blocks 1230ae4d5372SAneesh Kumar K.V * outside i_size. Trim these off again. Don't need 1231ae4d5372SAneesh Kumar K.V * i_size_read because we hold i_mutex. 12321938a150SAneesh Kumar K.V * 12331938a150SAneesh Kumar K.V * Add inode to orphan list in case we crash before 12341938a150SAneesh Kumar K.V * truncate finishes 1235ae4d5372SAneesh Kumar K.V */ 1236ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 12371938a150SAneesh Kumar K.V ext4_orphan_add(handle, inode); 12381938a150SAneesh Kumar K.V 12391938a150SAneesh Kumar K.V ext4_journal_stop(handle); 12401938a150SAneesh Kumar K.V if (pos + len > inode->i_size) { 1241b9a4207dSJan Kara ext4_truncate_failed_write(inode); 12421938a150SAneesh Kumar K.V /* 1243ffacfa7aSJan Kara * If truncate failed early the inode might 12441938a150SAneesh Kumar K.V * still be on the orphan list; we need to 12451938a150SAneesh Kumar K.V * make sure the inode is removed from the 12461938a150SAneesh Kumar K.V * orphan list in that case. 12471938a150SAneesh Kumar K.V */ 12481938a150SAneesh Kumar K.V if (inode->i_nlink) 12491938a150SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 12501938a150SAneesh Kumar K.V } 1251bfc1af65SNick Piggin 125247564bfbSTheodore Ts'o if (ret == -ENOSPC && 125347564bfbSTheodore Ts'o ext4_should_retry_alloc(inode->i_sb, &retries)) 125447564bfbSTheodore Ts'o goto retry_journal; 125547564bfbSTheodore Ts'o page_cache_release(page); 125647564bfbSTheodore Ts'o return ret; 125747564bfbSTheodore Ts'o } 125847564bfbSTheodore Ts'o *pagep = page; 1259ac27a0ecSDave Kleikamp return ret; 1260ac27a0ecSDave Kleikamp } 1261ac27a0ecSDave Kleikamp 1262bfc1af65SNick Piggin /* For write_end() in data=journal mode */ 1263bfc1af65SNick Piggin static int write_end_fn(handle_t *handle, struct buffer_head *bh) 1264ac27a0ecSDave Kleikamp { 126513fca323STheodore Ts'o int ret; 1266ac27a0ecSDave Kleikamp if (!buffer_mapped(bh) || buffer_freed(bh)) 1267ac27a0ecSDave Kleikamp return 0; 1268ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 126913fca323STheodore Ts'o ret = ext4_handle_dirty_metadata(handle, NULL, bh); 127013fca323STheodore Ts'o clear_buffer_meta(bh); 127113fca323STheodore Ts'o clear_buffer_prio(bh); 127213fca323STheodore Ts'o return ret; 1273ac27a0ecSDave Kleikamp } 1274ac27a0ecSDave Kleikamp 1275eed4333fSZheng Liu /* 1276eed4333fSZheng Liu * We need to pick up the new inode size which generic_commit_write gave us 1277eed4333fSZheng Liu * `file' can be NULL - eg, when called from page_symlink(). 1278eed4333fSZheng Liu * 1279eed4333fSZheng Liu * ext4 never places buffers on inode->i_mapping->private_list. metadata 1280eed4333fSZheng Liu * buffers are managed internally. 1281eed4333fSZheng Liu */ 1282eed4333fSZheng Liu static int ext4_write_end(struct file *file, 1283f8514083SAneesh Kumar K.V struct address_space *mapping, 1284f8514083SAneesh Kumar K.V loff_t pos, unsigned len, unsigned copied, 1285f8514083SAneesh Kumar K.V struct page *page, void *fsdata) 1286f8514083SAneesh Kumar K.V { 1287f8514083SAneesh Kumar K.V handle_t *handle = ext4_journal_current_handle(); 1288eed4333fSZheng Liu struct inode *inode = mapping->host; 12890572639fSXiaoguang Wang loff_t old_size = inode->i_size; 1290eed4333fSZheng Liu int ret = 0, ret2; 1291eed4333fSZheng Liu int i_size_changed = 0; 1292eed4333fSZheng Liu 1293eed4333fSZheng Liu trace_ext4_write_end(inode, pos, len, copied); 1294eed4333fSZheng Liu if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) { 1295eed4333fSZheng Liu ret = ext4_jbd2_file_inode(handle, inode); 1296eed4333fSZheng Liu if (ret) { 1297eed4333fSZheng Liu unlock_page(page); 1298eed4333fSZheng Liu page_cache_release(page); 1299eed4333fSZheng Liu goto errout; 1300eed4333fSZheng Liu } 1301eed4333fSZheng Liu } 1302f8514083SAneesh Kumar K.V 130342c832deSTheodore Ts'o if (ext4_has_inline_data(inode)) { 130442c832deSTheodore Ts'o ret = ext4_write_inline_data_end(inode, pos, len, 1305f19d5870STao Ma copied, page); 130642c832deSTheodore Ts'o if (ret < 0) 130742c832deSTheodore Ts'o goto errout; 130842c832deSTheodore Ts'o copied = ret; 130942c832deSTheodore Ts'o } else 1310f19d5870STao Ma copied = block_write_end(file, mapping, pos, 1311f19d5870STao Ma len, copied, page, fsdata); 1312f8514083SAneesh Kumar K.V /* 13134631dbf6SDmitry Monakhov * it's important to update i_size while still holding page lock: 1314f8514083SAneesh Kumar K.V * page writeout could otherwise come in and zero beyond i_size. 1315f8514083SAneesh Kumar K.V */ 13164631dbf6SDmitry Monakhov i_size_changed = ext4_update_inode_size(inode, pos + copied); 1317f8514083SAneesh Kumar K.V unlock_page(page); 1318f8514083SAneesh Kumar K.V page_cache_release(page); 1319f8514083SAneesh Kumar K.V 13200572639fSXiaoguang Wang if (old_size < pos) 13210572639fSXiaoguang Wang pagecache_isize_extended(inode, old_size, pos); 1322f8514083SAneesh Kumar K.V /* 1323f8514083SAneesh Kumar K.V * Don't mark the inode dirty under page lock. First, it unnecessarily 1324f8514083SAneesh Kumar K.V * makes the holding time of page lock longer. Second, it forces lock 1325f8514083SAneesh Kumar K.V * ordering of page lock and transaction start for journaling 1326f8514083SAneesh Kumar K.V * filesystems. 1327f8514083SAneesh Kumar K.V */ 1328f8514083SAneesh Kumar K.V if (i_size_changed) 1329f8514083SAneesh Kumar K.V ext4_mark_inode_dirty(handle, inode); 1330f8514083SAneesh Kumar K.V 1331ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 1332f8514083SAneesh Kumar K.V /* if we have allocated more blocks and copied 1333f8514083SAneesh Kumar K.V * less. We will have blocks allocated outside 1334f8514083SAneesh Kumar K.V * inode->i_size. So truncate them 1335f8514083SAneesh Kumar K.V */ 1336f8514083SAneesh Kumar K.V ext4_orphan_add(handle, inode); 133774d553aaSTheodore Ts'o errout: 1338617ba13bSMingming Cao ret2 = ext4_journal_stop(handle); 1339ac27a0ecSDave Kleikamp if (!ret) 1340ac27a0ecSDave Kleikamp ret = ret2; 1341bfc1af65SNick Piggin 1342f8514083SAneesh Kumar K.V if (pos + len > inode->i_size) { 1343b9a4207dSJan Kara ext4_truncate_failed_write(inode); 1344f8514083SAneesh Kumar K.V /* 1345ffacfa7aSJan Kara * If truncate failed early the inode might still be 1346f8514083SAneesh Kumar K.V * on the orphan list; we need to make sure the inode 1347f8514083SAneesh Kumar K.V * is removed from the orphan list in that case. 1348f8514083SAneesh Kumar K.V */ 1349f8514083SAneesh Kumar K.V if (inode->i_nlink) 1350f8514083SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 1351f8514083SAneesh Kumar K.V } 1352f8514083SAneesh Kumar K.V 1353bfc1af65SNick Piggin return ret ? ret : copied; 1354ac27a0ecSDave Kleikamp } 1355ac27a0ecSDave Kleikamp 1356b90197b6STheodore Ts'o /* 1357b90197b6STheodore Ts'o * This is a private version of page_zero_new_buffers() which doesn't 1358b90197b6STheodore Ts'o * set the buffer to be dirty, since in data=journalled mode we need 1359b90197b6STheodore Ts'o * to call ext4_handle_dirty_metadata() instead. 1360b90197b6STheodore Ts'o */ 1361b90197b6STheodore Ts'o static void zero_new_buffers(struct page *page, unsigned from, unsigned to) 1362b90197b6STheodore Ts'o { 1363b90197b6STheodore Ts'o unsigned int block_start = 0, block_end; 1364b90197b6STheodore Ts'o struct buffer_head *head, *bh; 1365b90197b6STheodore Ts'o 1366b90197b6STheodore Ts'o bh = head = page_buffers(page); 1367b90197b6STheodore Ts'o do { 1368b90197b6STheodore Ts'o block_end = block_start + bh->b_size; 1369b90197b6STheodore Ts'o if (buffer_new(bh)) { 1370b90197b6STheodore Ts'o if (block_end > from && block_start < to) { 1371b90197b6STheodore Ts'o if (!PageUptodate(page)) { 1372b90197b6STheodore Ts'o unsigned start, size; 1373b90197b6STheodore Ts'o 1374b90197b6STheodore Ts'o start = max(from, block_start); 1375b90197b6STheodore Ts'o size = min(to, block_end) - start; 1376b90197b6STheodore Ts'o 1377b90197b6STheodore Ts'o zero_user(page, start, size); 1378b90197b6STheodore Ts'o set_buffer_uptodate(bh); 1379b90197b6STheodore Ts'o } 1380b90197b6STheodore Ts'o clear_buffer_new(bh); 1381b90197b6STheodore Ts'o } 1382b90197b6STheodore Ts'o } 1383b90197b6STheodore Ts'o block_start = block_end; 1384b90197b6STheodore Ts'o bh = bh->b_this_page; 1385b90197b6STheodore Ts'o } while (bh != head); 1386b90197b6STheodore Ts'o } 1387b90197b6STheodore Ts'o 1388bfc1af65SNick Piggin static int ext4_journalled_write_end(struct file *file, 1389bfc1af65SNick Piggin struct address_space *mapping, 1390bfc1af65SNick Piggin loff_t pos, unsigned len, unsigned copied, 1391bfc1af65SNick Piggin struct page *page, void *fsdata) 1392ac27a0ecSDave Kleikamp { 1393617ba13bSMingming Cao handle_t *handle = ext4_journal_current_handle(); 1394bfc1af65SNick Piggin struct inode *inode = mapping->host; 13950572639fSXiaoguang Wang loff_t old_size = inode->i_size; 1396ac27a0ecSDave Kleikamp int ret = 0, ret2; 1397ac27a0ecSDave Kleikamp int partial = 0; 1398bfc1af65SNick Piggin unsigned from, to; 13994631dbf6SDmitry Monakhov int size_changed = 0; 1400ac27a0ecSDave Kleikamp 14019bffad1eSTheodore Ts'o trace_ext4_journalled_write_end(inode, pos, len, copied); 1402bfc1af65SNick Piggin from = pos & (PAGE_CACHE_SIZE - 1); 1403bfc1af65SNick Piggin to = from + len; 1404bfc1af65SNick Piggin 1405441c8508SCurt Wohlgemuth BUG_ON(!ext4_handle_valid(handle)); 1406441c8508SCurt Wohlgemuth 14073fdcfb66STao Ma if (ext4_has_inline_data(inode)) 14083fdcfb66STao Ma copied = ext4_write_inline_data_end(inode, pos, len, 14093fdcfb66STao Ma copied, page); 14103fdcfb66STao Ma else { 1411bfc1af65SNick Piggin if (copied < len) { 1412bfc1af65SNick Piggin if (!PageUptodate(page)) 1413bfc1af65SNick Piggin copied = 0; 1414b90197b6STheodore Ts'o zero_new_buffers(page, from+copied, to); 1415bfc1af65SNick Piggin } 1416ac27a0ecSDave Kleikamp 1417f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_buffers(page), from, 1418bfc1af65SNick Piggin to, &partial, write_end_fn); 1419ac27a0ecSDave Kleikamp if (!partial) 1420ac27a0ecSDave Kleikamp SetPageUptodate(page); 14213fdcfb66STao Ma } 14224631dbf6SDmitry Monakhov size_changed = ext4_update_inode_size(inode, pos + copied); 142319f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_JDATA); 14242d859db3SJan Kara EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid; 14254631dbf6SDmitry Monakhov unlock_page(page); 14264631dbf6SDmitry Monakhov page_cache_release(page); 14274631dbf6SDmitry Monakhov 14280572639fSXiaoguang Wang if (old_size < pos) 14290572639fSXiaoguang Wang pagecache_isize_extended(inode, old_size, pos); 14300572639fSXiaoguang Wang 14314631dbf6SDmitry Monakhov if (size_changed) { 1432617ba13bSMingming Cao ret2 = ext4_mark_inode_dirty(handle, inode); 1433ac27a0ecSDave Kleikamp if (!ret) 1434ac27a0ecSDave Kleikamp ret = ret2; 1435ac27a0ecSDave Kleikamp } 1436bfc1af65SNick Piggin 1437ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 1438f8514083SAneesh Kumar K.V /* if we have allocated more blocks and copied 1439f8514083SAneesh Kumar K.V * less. We will have blocks allocated outside 1440f8514083SAneesh Kumar K.V * inode->i_size. So truncate them 1441f8514083SAneesh Kumar K.V */ 1442f8514083SAneesh Kumar K.V ext4_orphan_add(handle, inode); 1443f8514083SAneesh Kumar K.V 1444617ba13bSMingming Cao ret2 = ext4_journal_stop(handle); 1445ac27a0ecSDave Kleikamp if (!ret) 1446ac27a0ecSDave Kleikamp ret = ret2; 1447f8514083SAneesh Kumar K.V if (pos + len > inode->i_size) { 1448b9a4207dSJan Kara ext4_truncate_failed_write(inode); 1449f8514083SAneesh Kumar K.V /* 1450ffacfa7aSJan Kara * If truncate failed early the inode might still be 1451f8514083SAneesh Kumar K.V * on the orphan list; we need to make sure the inode 1452f8514083SAneesh Kumar K.V * is removed from the orphan list in that case. 1453f8514083SAneesh Kumar K.V */ 1454f8514083SAneesh Kumar K.V if (inode->i_nlink) 1455f8514083SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 1456f8514083SAneesh Kumar K.V } 1457bfc1af65SNick Piggin 1458bfc1af65SNick Piggin return ret ? ret : copied; 1459ac27a0ecSDave Kleikamp } 1460d2a17637SMingming Cao 14619d0be502STheodore Ts'o /* 1462c27e43a1SEric Whitney * Reserve space for a single cluster 14639d0be502STheodore Ts'o */ 1464c27e43a1SEric Whitney static int ext4_da_reserve_space(struct inode *inode) 1465d2a17637SMingming Cao { 1466d2a17637SMingming Cao struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 14670637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 14685dd4056dSChristoph Hellwig int ret; 1469d2a17637SMingming Cao 147060e58e0fSMingming Cao /* 147172b8ab9dSEric Sandeen * We will charge metadata quota at writeout time; this saves 147272b8ab9dSEric Sandeen * us from metadata over-estimation, though we may go over by 147372b8ab9dSEric Sandeen * a small amount in the end. Here we just reserve for data. 147460e58e0fSMingming Cao */ 14757b415bf6SAditya Kali ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1)); 14765dd4056dSChristoph Hellwig if (ret) 14775dd4056dSChristoph Hellwig return ret; 147803179fe9STheodore Ts'o 147903179fe9STheodore Ts'o spin_lock(&ei->i_block_reservation_lock); 148071d4f7d0STheodore Ts'o if (ext4_claim_free_clusters(sbi, 1, 0)) { 148103179fe9STheodore Ts'o spin_unlock(&ei->i_block_reservation_lock); 148203179fe9STheodore Ts'o dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1)); 1483d2a17637SMingming Cao return -ENOSPC; 1484d2a17637SMingming Cao } 14859d0be502STheodore Ts'o ei->i_reserved_data_blocks++; 1486c27e43a1SEric Whitney trace_ext4_da_reserve_space(inode); 14870637c6f4STheodore Ts'o spin_unlock(&ei->i_block_reservation_lock); 148839bc680aSDmitry Monakhov 1489d2a17637SMingming Cao return 0; /* success */ 1490d2a17637SMingming Cao } 1491d2a17637SMingming Cao 149212219aeaSAneesh Kumar K.V static void ext4_da_release_space(struct inode *inode, int to_free) 1493d2a17637SMingming Cao { 1494d2a17637SMingming Cao struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 14950637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 1496d2a17637SMingming Cao 1497cd213226SMingming Cao if (!to_free) 1498cd213226SMingming Cao return; /* Nothing to release, exit */ 1499cd213226SMingming Cao 1500d2a17637SMingming Cao spin_lock(&EXT4_I(inode)->i_block_reservation_lock); 1501cd213226SMingming Cao 15025a58ec87SLi Zefan trace_ext4_da_release_space(inode, to_free); 15030637c6f4STheodore Ts'o if (unlikely(to_free > ei->i_reserved_data_blocks)) { 1504cd213226SMingming Cao /* 15050637c6f4STheodore Ts'o * if there aren't enough reserved blocks, then the 15060637c6f4STheodore Ts'o * counter is messed up somewhere. Since this 15070637c6f4STheodore Ts'o * function is called from invalidate page, it's 15080637c6f4STheodore Ts'o * harmless to return without any action. 1509cd213226SMingming Cao */ 15108de5c325STheodore Ts'o ext4_warning(inode->i_sb, "ext4_da_release_space: " 15110637c6f4STheodore Ts'o "ino %lu, to_free %d with only %d reserved " 15121084f252STheodore Ts'o "data blocks", inode->i_ino, to_free, 15130637c6f4STheodore Ts'o ei->i_reserved_data_blocks); 15140637c6f4STheodore Ts'o WARN_ON(1); 15150637c6f4STheodore Ts'o to_free = ei->i_reserved_data_blocks; 15160637c6f4STheodore Ts'o } 15170637c6f4STheodore Ts'o ei->i_reserved_data_blocks -= to_free; 15180637c6f4STheodore Ts'o 151972b8ab9dSEric Sandeen /* update fs dirty data blocks counter */ 152057042651STheodore Ts'o percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free); 1521d2a17637SMingming Cao 1522d2a17637SMingming Cao spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); 152360e58e0fSMingming Cao 15247b415bf6SAditya Kali dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free)); 1525d2a17637SMingming Cao } 1526d2a17637SMingming Cao 1527d2a17637SMingming Cao static void ext4_da_page_release_reservation(struct page *page, 1528ca99fdd2SLukas Czerner unsigned int offset, 1529ca99fdd2SLukas Czerner unsigned int length) 1530d2a17637SMingming Cao { 15319705acd6SLukas Czerner int to_release = 0, contiguous_blks = 0; 1532d2a17637SMingming Cao struct buffer_head *head, *bh; 1533d2a17637SMingming Cao unsigned int curr_off = 0; 15347b415bf6SAditya Kali struct inode *inode = page->mapping->host; 15357b415bf6SAditya Kali struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 1536ca99fdd2SLukas Czerner unsigned int stop = offset + length; 15377b415bf6SAditya Kali int num_clusters; 153851865fdaSZheng Liu ext4_fsblk_t lblk; 1539d2a17637SMingming Cao 1540ca99fdd2SLukas Czerner BUG_ON(stop > PAGE_CACHE_SIZE || stop < length); 1541ca99fdd2SLukas Czerner 1542d2a17637SMingming Cao head = page_buffers(page); 1543d2a17637SMingming Cao bh = head; 1544d2a17637SMingming Cao do { 1545d2a17637SMingming Cao unsigned int next_off = curr_off + bh->b_size; 1546d2a17637SMingming Cao 1547ca99fdd2SLukas Czerner if (next_off > stop) 1548ca99fdd2SLukas Czerner break; 1549ca99fdd2SLukas Czerner 1550d2a17637SMingming Cao if ((offset <= curr_off) && (buffer_delay(bh))) { 1551d2a17637SMingming Cao to_release++; 15529705acd6SLukas Czerner contiguous_blks++; 1553d2a17637SMingming Cao clear_buffer_delay(bh); 15549705acd6SLukas Czerner } else if (contiguous_blks) { 15559705acd6SLukas Czerner lblk = page->index << 15569705acd6SLukas Czerner (PAGE_CACHE_SHIFT - inode->i_blkbits); 15579705acd6SLukas Czerner lblk += (curr_off >> inode->i_blkbits) - 15589705acd6SLukas Czerner contiguous_blks; 15599705acd6SLukas Czerner ext4_es_remove_extent(inode, lblk, contiguous_blks); 15609705acd6SLukas Czerner contiguous_blks = 0; 1561d2a17637SMingming Cao } 1562d2a17637SMingming Cao curr_off = next_off; 1563d2a17637SMingming Cao } while ((bh = bh->b_this_page) != head); 15647b415bf6SAditya Kali 15659705acd6SLukas Czerner if (contiguous_blks) { 156651865fdaSZheng Liu lblk = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits); 15679705acd6SLukas Czerner lblk += (curr_off >> inode->i_blkbits) - contiguous_blks; 15689705acd6SLukas Czerner ext4_es_remove_extent(inode, lblk, contiguous_blks); 156951865fdaSZheng Liu } 157051865fdaSZheng Liu 15717b415bf6SAditya Kali /* If we have released all the blocks belonging to a cluster, then we 15727b415bf6SAditya Kali * need to release the reserved space for that cluster. */ 15737b415bf6SAditya Kali num_clusters = EXT4_NUM_B2C(sbi, to_release); 15747b415bf6SAditya Kali while (num_clusters > 0) { 15757b415bf6SAditya Kali lblk = (page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits)) + 15767b415bf6SAditya Kali ((num_clusters - 1) << sbi->s_cluster_bits); 15777b415bf6SAditya Kali if (sbi->s_cluster_ratio == 1 || 15787d1b1fbcSZheng Liu !ext4_find_delalloc_cluster(inode, lblk)) 15797b415bf6SAditya Kali ext4_da_release_space(inode, 1); 15807b415bf6SAditya Kali 15817b415bf6SAditya Kali num_clusters--; 15827b415bf6SAditya Kali } 1583d2a17637SMingming Cao } 1584ac27a0ecSDave Kleikamp 1585ac27a0ecSDave Kleikamp /* 158664769240SAlex Tomas * Delayed allocation stuff 158764769240SAlex Tomas */ 158864769240SAlex Tomas 15894e7ea81dSJan Kara struct mpage_da_data { 15904e7ea81dSJan Kara struct inode *inode; 15914e7ea81dSJan Kara struct writeback_control *wbc; 15926b523df4SJan Kara 15934e7ea81dSJan Kara pgoff_t first_page; /* The first page to write */ 15944e7ea81dSJan Kara pgoff_t next_page; /* Current page to examine */ 15954e7ea81dSJan Kara pgoff_t last_page; /* Last page to examine */ 159664769240SAlex Tomas /* 15974e7ea81dSJan Kara * Extent to map - this can be after first_page because that can be 15984e7ea81dSJan Kara * fully mapped. We somewhat abuse m_flags to store whether the extent 15994e7ea81dSJan Kara * is delalloc or unwritten. 160064769240SAlex Tomas */ 16014e7ea81dSJan Kara struct ext4_map_blocks map; 16024e7ea81dSJan Kara struct ext4_io_submit io_submit; /* IO submission data */ 16034e7ea81dSJan Kara }; 160464769240SAlex Tomas 16054e7ea81dSJan Kara static void mpage_release_unused_pages(struct mpage_da_data *mpd, 16064e7ea81dSJan Kara bool invalidate) 1607c4a0c46eSAneesh Kumar K.V { 1608c4a0c46eSAneesh Kumar K.V int nr_pages, i; 1609c4a0c46eSAneesh Kumar K.V pgoff_t index, end; 1610c4a0c46eSAneesh Kumar K.V struct pagevec pvec; 1611c4a0c46eSAneesh Kumar K.V struct inode *inode = mpd->inode; 1612c4a0c46eSAneesh Kumar K.V struct address_space *mapping = inode->i_mapping; 16134e7ea81dSJan Kara 16144e7ea81dSJan Kara /* This is necessary when next_page == 0. */ 16154e7ea81dSJan Kara if (mpd->first_page >= mpd->next_page) 16164e7ea81dSJan Kara return; 1617c4a0c46eSAneesh Kumar K.V 1618c7f5938aSCurt Wohlgemuth index = mpd->first_page; 1619c7f5938aSCurt Wohlgemuth end = mpd->next_page - 1; 16204e7ea81dSJan Kara if (invalidate) { 16214e7ea81dSJan Kara ext4_lblk_t start, last; 162251865fdaSZheng Liu start = index << (PAGE_CACHE_SHIFT - inode->i_blkbits); 162351865fdaSZheng Liu last = end << (PAGE_CACHE_SHIFT - inode->i_blkbits); 162451865fdaSZheng Liu ext4_es_remove_extent(inode, start, last - start + 1); 16254e7ea81dSJan Kara } 162651865fdaSZheng Liu 162766bea92cSEric Sandeen pagevec_init(&pvec, 0); 1628c4a0c46eSAneesh Kumar K.V while (index <= end) { 1629c4a0c46eSAneesh Kumar K.V nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE); 1630c4a0c46eSAneesh Kumar K.V if (nr_pages == 0) 1631c4a0c46eSAneesh Kumar K.V break; 1632c4a0c46eSAneesh Kumar K.V for (i = 0; i < nr_pages; i++) { 1633c4a0c46eSAneesh Kumar K.V struct page *page = pvec.pages[i]; 16349b1d0998SJan Kara if (page->index > end) 1635c4a0c46eSAneesh Kumar K.V break; 1636c4a0c46eSAneesh Kumar K.V BUG_ON(!PageLocked(page)); 1637c4a0c46eSAneesh Kumar K.V BUG_ON(PageWriteback(page)); 16384e7ea81dSJan Kara if (invalidate) { 1639d47992f8SLukas Czerner block_invalidatepage(page, 0, PAGE_CACHE_SIZE); 1640c4a0c46eSAneesh Kumar K.V ClearPageUptodate(page); 16414e7ea81dSJan Kara } 1642c4a0c46eSAneesh Kumar K.V unlock_page(page); 1643c4a0c46eSAneesh Kumar K.V } 16449b1d0998SJan Kara index = pvec.pages[nr_pages - 1]->index + 1; 16459b1d0998SJan Kara pagevec_release(&pvec); 1646c4a0c46eSAneesh Kumar K.V } 1647c4a0c46eSAneesh Kumar K.V } 1648c4a0c46eSAneesh Kumar K.V 1649df22291fSAneesh Kumar K.V static void ext4_print_free_blocks(struct inode *inode) 1650df22291fSAneesh Kumar K.V { 1651df22291fSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 165292b97816STheodore Ts'o struct super_block *sb = inode->i_sb; 1653f78ee70dSLukas Czerner struct ext4_inode_info *ei = EXT4_I(inode); 165492b97816STheodore Ts'o 165592b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld", 16565dee5437STheodore Ts'o EXT4_C2B(EXT4_SB(inode->i_sb), 1657f78ee70dSLukas Czerner ext4_count_free_clusters(sb))); 165892b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Free/Dirty block details"); 165992b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "free_blocks=%lld", 1660f78ee70dSLukas Czerner (long long) EXT4_C2B(EXT4_SB(sb), 166157042651STheodore Ts'o percpu_counter_sum(&sbi->s_freeclusters_counter))); 166292b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld", 1663f78ee70dSLukas Czerner (long long) EXT4_C2B(EXT4_SB(sb), 16647b415bf6SAditya Kali percpu_counter_sum(&sbi->s_dirtyclusters_counter))); 166592b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Block reservation details"); 166692b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u", 1667f78ee70dSLukas Czerner ei->i_reserved_data_blocks); 1668df22291fSAneesh Kumar K.V return; 1669df22291fSAneesh Kumar K.V } 1670df22291fSAneesh Kumar K.V 1671c364b22cSAneesh Kumar K.V static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh) 167229fa89d0SAneesh Kumar K.V { 1673c364b22cSAneesh Kumar K.V return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh); 167429fa89d0SAneesh Kumar K.V } 167529fa89d0SAneesh Kumar K.V 167664769240SAlex Tomas /* 16775356f261SAditya Kali * This function is grabs code from the very beginning of 16785356f261SAditya Kali * ext4_map_blocks, but assumes that the caller is from delayed write 16795356f261SAditya Kali * time. This function looks up the requested blocks and sets the 16805356f261SAditya Kali * buffer delay bit under the protection of i_data_sem. 16815356f261SAditya Kali */ 16825356f261SAditya Kali static int ext4_da_map_blocks(struct inode *inode, sector_t iblock, 16835356f261SAditya Kali struct ext4_map_blocks *map, 16845356f261SAditya Kali struct buffer_head *bh) 16855356f261SAditya Kali { 1686d100eef2SZheng Liu struct extent_status es; 16875356f261SAditya Kali int retval; 16885356f261SAditya Kali sector_t invalid_block = ~((sector_t) 0xffff); 1689921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 1690921f266bSDmitry Monakhov struct ext4_map_blocks orig_map; 1691921f266bSDmitry Monakhov 1692921f266bSDmitry Monakhov memcpy(&orig_map, map, sizeof(*map)); 1693921f266bSDmitry Monakhov #endif 16945356f261SAditya Kali 16955356f261SAditya Kali if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es)) 16965356f261SAditya Kali invalid_block = ~0; 16975356f261SAditya Kali 16985356f261SAditya Kali map->m_flags = 0; 16995356f261SAditya Kali ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u," 17005356f261SAditya Kali "logical block %lu\n", inode->i_ino, map->m_len, 17015356f261SAditya Kali (unsigned long) map->m_lblk); 1702d100eef2SZheng Liu 1703d100eef2SZheng Liu /* Lookup extent status tree firstly */ 1704d100eef2SZheng Liu if (ext4_es_lookup_extent(inode, iblock, &es)) { 1705d100eef2SZheng Liu if (ext4_es_is_hole(&es)) { 1706d100eef2SZheng Liu retval = 0; 1707c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 1708d100eef2SZheng Liu goto add_delayed; 1709d100eef2SZheng Liu } 1710d100eef2SZheng Liu 1711d100eef2SZheng Liu /* 1712d100eef2SZheng Liu * Delayed extent could be allocated by fallocate. 1713d100eef2SZheng Liu * So we need to check it. 1714d100eef2SZheng Liu */ 1715d100eef2SZheng Liu if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) { 1716d100eef2SZheng Liu map_bh(bh, inode->i_sb, invalid_block); 1717d100eef2SZheng Liu set_buffer_new(bh); 1718d100eef2SZheng Liu set_buffer_delay(bh); 1719d100eef2SZheng Liu return 0; 1720d100eef2SZheng Liu } 1721d100eef2SZheng Liu 1722d100eef2SZheng Liu map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk; 1723d100eef2SZheng Liu retval = es.es_len - (iblock - es.es_lblk); 1724d100eef2SZheng Liu if (retval > map->m_len) 1725d100eef2SZheng Liu retval = map->m_len; 1726d100eef2SZheng Liu map->m_len = retval; 1727d100eef2SZheng Liu if (ext4_es_is_written(&es)) 1728d100eef2SZheng Liu map->m_flags |= EXT4_MAP_MAPPED; 1729d100eef2SZheng Liu else if (ext4_es_is_unwritten(&es)) 1730d100eef2SZheng Liu map->m_flags |= EXT4_MAP_UNWRITTEN; 1731d100eef2SZheng Liu else 1732d100eef2SZheng Liu BUG_ON(1); 1733d100eef2SZheng Liu 1734921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 1735921f266bSDmitry Monakhov ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0); 1736921f266bSDmitry Monakhov #endif 1737d100eef2SZheng Liu return retval; 1738d100eef2SZheng Liu } 1739d100eef2SZheng Liu 17405356f261SAditya Kali /* 17415356f261SAditya Kali * Try to see if we can get the block without requesting a new 17425356f261SAditya Kali * file system block. 17435356f261SAditya Kali */ 1744c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 1745cbd7584eSJan Kara if (ext4_has_inline_data(inode)) 17469c3569b5STao Ma retval = 0; 1747cbd7584eSJan Kara else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 17482f8e0a7cSZheng Liu retval = ext4_ext_map_blocks(NULL, inode, map, 0); 17495356f261SAditya Kali else 17502f8e0a7cSZheng Liu retval = ext4_ind_map_blocks(NULL, inode, map, 0); 17515356f261SAditya Kali 1752d100eef2SZheng Liu add_delayed: 17535356f261SAditya Kali if (retval == 0) { 1754f7fec032SZheng Liu int ret; 17555356f261SAditya Kali /* 17565356f261SAditya Kali * XXX: __block_prepare_write() unmaps passed block, 17575356f261SAditya Kali * is it OK? 17585356f261SAditya Kali */ 1759386ad67cSLukas Czerner /* 1760386ad67cSLukas Czerner * If the block was allocated from previously allocated cluster, 1761386ad67cSLukas Czerner * then we don't need to reserve it again. However we still need 1762386ad67cSLukas Czerner * to reserve metadata for every block we're going to write. 1763386ad67cSLukas Czerner */ 1764c27e43a1SEric Whitney if (EXT4_SB(inode->i_sb)->s_cluster_ratio == 1 || 1765cbd7584eSJan Kara !ext4_find_delalloc_cluster(inode, map->m_lblk)) { 1766c27e43a1SEric Whitney ret = ext4_da_reserve_space(inode); 1767f7fec032SZheng Liu if (ret) { 17685356f261SAditya Kali /* not enough space to reserve */ 1769f7fec032SZheng Liu retval = ret; 17705356f261SAditya Kali goto out_unlock; 17715356f261SAditya Kali } 1772f7fec032SZheng Liu } 17735356f261SAditya Kali 1774f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 1775fdc0212eSZheng Liu ~0, EXTENT_STATUS_DELAYED); 1776f7fec032SZheng Liu if (ret) { 1777f7fec032SZheng Liu retval = ret; 177851865fdaSZheng Liu goto out_unlock; 1779f7fec032SZheng Liu } 178051865fdaSZheng Liu 17815356f261SAditya Kali map_bh(bh, inode->i_sb, invalid_block); 17825356f261SAditya Kali set_buffer_new(bh); 17835356f261SAditya Kali set_buffer_delay(bh); 1784f7fec032SZheng Liu } else if (retval > 0) { 1785f7fec032SZheng Liu int ret; 17863be78c73STheodore Ts'o unsigned int status; 1787f7fec032SZheng Liu 178844fb851dSZheng Liu if (unlikely(retval != map->m_len)) { 178944fb851dSZheng Liu ext4_warning(inode->i_sb, 179044fb851dSZheng Liu "ES len assertion failed for inode " 179144fb851dSZheng Liu "%lu: retval %d != map->m_len %d", 179244fb851dSZheng Liu inode->i_ino, retval, map->m_len); 179344fb851dSZheng Liu WARN_ON(1); 1794921f266bSDmitry Monakhov } 1795921f266bSDmitry Monakhov 1796f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 1797f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 1798f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 1799f7fec032SZheng Liu map->m_pblk, status); 1800f7fec032SZheng Liu if (ret != 0) 1801f7fec032SZheng Liu retval = ret; 18025356f261SAditya Kali } 18035356f261SAditya Kali 18045356f261SAditya Kali out_unlock: 18055356f261SAditya Kali up_read((&EXT4_I(inode)->i_data_sem)); 18065356f261SAditya Kali 18075356f261SAditya Kali return retval; 18085356f261SAditya Kali } 18095356f261SAditya Kali 18105356f261SAditya Kali /* 1811d91bd2c1SSeunghun Lee * This is a special get_block_t callback which is used by 1812b920c755STheodore Ts'o * ext4_da_write_begin(). It will either return mapped block or 1813b920c755STheodore Ts'o * reserve space for a single block. 181429fa89d0SAneesh Kumar K.V * 181529fa89d0SAneesh Kumar K.V * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set. 181629fa89d0SAneesh Kumar K.V * We also have b_blocknr = -1 and b_bdev initialized properly 181729fa89d0SAneesh Kumar K.V * 181829fa89d0SAneesh Kumar K.V * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set. 181929fa89d0SAneesh Kumar K.V * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev 182029fa89d0SAneesh Kumar K.V * initialized properly. 182164769240SAlex Tomas */ 18229c3569b5STao Ma int ext4_da_get_block_prep(struct inode *inode, sector_t iblock, 18232ed88685STheodore Ts'o struct buffer_head *bh, int create) 182464769240SAlex Tomas { 18252ed88685STheodore Ts'o struct ext4_map_blocks map; 182664769240SAlex Tomas int ret = 0; 182764769240SAlex Tomas 182864769240SAlex Tomas BUG_ON(create == 0); 18292ed88685STheodore Ts'o BUG_ON(bh->b_size != inode->i_sb->s_blocksize); 18302ed88685STheodore Ts'o 18312ed88685STheodore Ts'o map.m_lblk = iblock; 18322ed88685STheodore Ts'o map.m_len = 1; 183364769240SAlex Tomas 183464769240SAlex Tomas /* 183564769240SAlex Tomas * first, we need to know whether the block is allocated already 183664769240SAlex Tomas * preallocated blocks are unmapped but should treated 183764769240SAlex Tomas * the same as allocated blocks. 183864769240SAlex Tomas */ 18395356f261SAditya Kali ret = ext4_da_map_blocks(inode, iblock, &map, bh); 18405356f261SAditya Kali if (ret <= 0) 18412ed88685STheodore Ts'o return ret; 184264769240SAlex Tomas 18432ed88685STheodore Ts'o map_bh(bh, inode->i_sb, map.m_pblk); 1844ed8ad838SJan Kara ext4_update_bh_state(bh, map.m_flags); 18452ed88685STheodore Ts'o 18462ed88685STheodore Ts'o if (buffer_unwritten(bh)) { 18472ed88685STheodore Ts'o /* A delayed write to unwritten bh should be marked 18482ed88685STheodore Ts'o * new and mapped. Mapped ensures that we don't do 18492ed88685STheodore Ts'o * get_block multiple times when we write to the same 18502ed88685STheodore Ts'o * offset and new ensures that we do proper zero out 18512ed88685STheodore Ts'o * for partial write. 18522ed88685STheodore Ts'o */ 18532ed88685STheodore Ts'o set_buffer_new(bh); 1854c8205636STheodore Ts'o set_buffer_mapped(bh); 18552ed88685STheodore Ts'o } 18562ed88685STheodore Ts'o return 0; 185764769240SAlex Tomas } 185861628a3fSMingming Cao 185962e086beSAneesh Kumar K.V static int bget_one(handle_t *handle, struct buffer_head *bh) 186062e086beSAneesh Kumar K.V { 186162e086beSAneesh Kumar K.V get_bh(bh); 186262e086beSAneesh Kumar K.V return 0; 186362e086beSAneesh Kumar K.V } 186462e086beSAneesh Kumar K.V 186562e086beSAneesh Kumar K.V static int bput_one(handle_t *handle, struct buffer_head *bh) 186662e086beSAneesh Kumar K.V { 186762e086beSAneesh Kumar K.V put_bh(bh); 186862e086beSAneesh Kumar K.V return 0; 186962e086beSAneesh Kumar K.V } 187062e086beSAneesh Kumar K.V 187162e086beSAneesh Kumar K.V static int __ext4_journalled_writepage(struct page *page, 187262e086beSAneesh Kumar K.V unsigned int len) 187362e086beSAneesh Kumar K.V { 187462e086beSAneesh Kumar K.V struct address_space *mapping = page->mapping; 187562e086beSAneesh Kumar K.V struct inode *inode = mapping->host; 18763fdcfb66STao Ma struct buffer_head *page_bufs = NULL; 187762e086beSAneesh Kumar K.V handle_t *handle = NULL; 18783fdcfb66STao Ma int ret = 0, err = 0; 18793fdcfb66STao Ma int inline_data = ext4_has_inline_data(inode); 18803fdcfb66STao Ma struct buffer_head *inode_bh = NULL; 188162e086beSAneesh Kumar K.V 1882cb20d518STheodore Ts'o ClearPageChecked(page); 18833fdcfb66STao Ma 18843fdcfb66STao Ma if (inline_data) { 18853fdcfb66STao Ma BUG_ON(page->index != 0); 18863fdcfb66STao Ma BUG_ON(len > ext4_get_max_inline_size(inode)); 18873fdcfb66STao Ma inode_bh = ext4_journalled_write_inline_data(inode, len, page); 18883fdcfb66STao Ma if (inode_bh == NULL) 18893fdcfb66STao Ma goto out; 18903fdcfb66STao Ma } else { 189162e086beSAneesh Kumar K.V page_bufs = page_buffers(page); 18923fdcfb66STao Ma if (!page_bufs) { 18933fdcfb66STao Ma BUG(); 18943fdcfb66STao Ma goto out; 18953fdcfb66STao Ma } 18963fdcfb66STao Ma ext4_walk_page_buffers(handle, page_bufs, 0, len, 18973fdcfb66STao Ma NULL, bget_one); 18983fdcfb66STao Ma } 1899bdf96838STheodore Ts'o /* 1900bdf96838STheodore Ts'o * We need to release the page lock before we start the 1901bdf96838STheodore Ts'o * journal, so grab a reference so the page won't disappear 1902bdf96838STheodore Ts'o * out from under us. 1903bdf96838STheodore Ts'o */ 1904bdf96838STheodore Ts'o get_page(page); 190562e086beSAneesh Kumar K.V unlock_page(page); 190662e086beSAneesh Kumar K.V 19079924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 19089924a92aSTheodore Ts'o ext4_writepage_trans_blocks(inode)); 190962e086beSAneesh Kumar K.V if (IS_ERR(handle)) { 191062e086beSAneesh Kumar K.V ret = PTR_ERR(handle); 1911bdf96838STheodore Ts'o put_page(page); 1912bdf96838STheodore Ts'o goto out_no_pagelock; 1913bdf96838STheodore Ts'o } 1914bdf96838STheodore Ts'o BUG_ON(!ext4_handle_valid(handle)); 1915bdf96838STheodore Ts'o 1916bdf96838STheodore Ts'o lock_page(page); 1917bdf96838STheodore Ts'o put_page(page); 1918bdf96838STheodore Ts'o if (page->mapping != mapping) { 1919bdf96838STheodore Ts'o /* The page got truncated from under us */ 1920bdf96838STheodore Ts'o ext4_journal_stop(handle); 1921bdf96838STheodore Ts'o ret = 0; 192262e086beSAneesh Kumar K.V goto out; 192362e086beSAneesh Kumar K.V } 192462e086beSAneesh Kumar K.V 19253fdcfb66STao Ma if (inline_data) { 19265d601255Sliang xie BUFFER_TRACE(inode_bh, "get write access"); 19273fdcfb66STao Ma ret = ext4_journal_get_write_access(handle, inode_bh); 19283fdcfb66STao Ma 19293fdcfb66STao Ma err = ext4_handle_dirty_metadata(handle, inode, inode_bh); 19303fdcfb66STao Ma 19313fdcfb66STao Ma } else { 1932f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL, 193362e086beSAneesh Kumar K.V do_journal_get_write_access); 193462e086beSAneesh Kumar K.V 1935f19d5870STao Ma err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL, 193662e086beSAneesh Kumar K.V write_end_fn); 19373fdcfb66STao Ma } 193862e086beSAneesh Kumar K.V if (ret == 0) 193962e086beSAneesh Kumar K.V ret = err; 19402d859db3SJan Kara EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid; 194162e086beSAneesh Kumar K.V err = ext4_journal_stop(handle); 194262e086beSAneesh Kumar K.V if (!ret) 194362e086beSAneesh Kumar K.V ret = err; 194462e086beSAneesh Kumar K.V 19453fdcfb66STao Ma if (!ext4_has_inline_data(inode)) 19468c9367fdSTheodore Ts'o ext4_walk_page_buffers(NULL, page_bufs, 0, len, 19473fdcfb66STao Ma NULL, bput_one); 194819f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_JDATA); 194962e086beSAneesh Kumar K.V out: 1950bdf96838STheodore Ts'o unlock_page(page); 1951bdf96838STheodore Ts'o out_no_pagelock: 19523fdcfb66STao Ma brelse(inode_bh); 195362e086beSAneesh Kumar K.V return ret; 195462e086beSAneesh Kumar K.V } 195562e086beSAneesh Kumar K.V 195661628a3fSMingming Cao /* 195743ce1d23SAneesh Kumar K.V * Note that we don't need to start a transaction unless we're journaling data 195843ce1d23SAneesh Kumar K.V * because we should have holes filled from ext4_page_mkwrite(). We even don't 195943ce1d23SAneesh Kumar K.V * need to file the inode to the transaction's list in ordered mode because if 196043ce1d23SAneesh Kumar K.V * we are writing back data added by write(), the inode is already there and if 196143ce1d23SAneesh Kumar K.V * we are writing back data modified via mmap(), no one guarantees in which 196243ce1d23SAneesh Kumar K.V * transaction the data will hit the disk. In case we are journaling data, we 196343ce1d23SAneesh Kumar K.V * cannot start transaction directly because transaction start ranks above page 196443ce1d23SAneesh Kumar K.V * lock so we have to do some magic. 196543ce1d23SAneesh Kumar K.V * 1966b920c755STheodore Ts'o * This function can get called via... 196720970ba6STheodore Ts'o * - ext4_writepages after taking page lock (have journal handle) 1968b920c755STheodore Ts'o * - journal_submit_inode_data_buffers (no journal handle) 1969f6463b0dSArtem Bityutskiy * - shrink_page_list via the kswapd/direct reclaim (no journal handle) 1970b920c755STheodore Ts'o * - grab_page_cache when doing write_begin (have journal handle) 197143ce1d23SAneesh Kumar K.V * 197243ce1d23SAneesh Kumar K.V * We don't do any block allocation in this function. If we have page with 197343ce1d23SAneesh Kumar K.V * multiple blocks we need to write those buffer_heads that are mapped. This 197443ce1d23SAneesh Kumar K.V * is important for mmaped based write. So if we do with blocksize 1K 197543ce1d23SAneesh Kumar K.V * truncate(f, 1024); 197643ce1d23SAneesh Kumar K.V * a = mmap(f, 0, 4096); 197743ce1d23SAneesh Kumar K.V * a[0] = 'a'; 197843ce1d23SAneesh Kumar K.V * truncate(f, 4096); 197943ce1d23SAneesh Kumar K.V * we have in the page first buffer_head mapped via page_mkwrite call back 198090802ed9SPaul Bolle * but other buffer_heads would be unmapped but dirty (dirty done via the 198143ce1d23SAneesh Kumar K.V * do_wp_page). So writepage should write the first block. If we modify 198243ce1d23SAneesh Kumar K.V * the mmap area beyond 1024 we will again get a page_fault and the 198343ce1d23SAneesh Kumar K.V * page_mkwrite callback will do the block allocation and mark the 198443ce1d23SAneesh Kumar K.V * buffer_heads mapped. 198543ce1d23SAneesh Kumar K.V * 198643ce1d23SAneesh Kumar K.V * We redirty the page if we have any buffer_heads that is either delay or 198743ce1d23SAneesh Kumar K.V * unwritten in the page. 198843ce1d23SAneesh Kumar K.V * 198943ce1d23SAneesh Kumar K.V * We can get recursively called as show below. 199043ce1d23SAneesh Kumar K.V * 199143ce1d23SAneesh Kumar K.V * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() -> 199243ce1d23SAneesh Kumar K.V * ext4_writepage() 199343ce1d23SAneesh Kumar K.V * 199443ce1d23SAneesh Kumar K.V * But since we don't do any block allocation we should not deadlock. 199543ce1d23SAneesh Kumar K.V * Page also have the dirty flag cleared so we don't get recurive page_lock. 199661628a3fSMingming Cao */ 199743ce1d23SAneesh Kumar K.V static int ext4_writepage(struct page *page, 199864769240SAlex Tomas struct writeback_control *wbc) 199964769240SAlex Tomas { 2000f8bec370SJan Kara int ret = 0; 200161628a3fSMingming Cao loff_t size; 2002498e5f24STheodore Ts'o unsigned int len; 2003744692dcSJiaying Zhang struct buffer_head *page_bufs = NULL; 200461628a3fSMingming Cao struct inode *inode = page->mapping->host; 200536ade451SJan Kara struct ext4_io_submit io_submit; 20061c8349a1SNamjae Jeon bool keep_towrite = false; 200764769240SAlex Tomas 2008a9c667f8SLukas Czerner trace_ext4_writepage(page); 200961628a3fSMingming Cao size = i_size_read(inode); 201061628a3fSMingming Cao if (page->index == size >> PAGE_CACHE_SHIFT) 201161628a3fSMingming Cao len = size & ~PAGE_CACHE_MASK; 201261628a3fSMingming Cao else 201361628a3fSMingming Cao len = PAGE_CACHE_SIZE; 201461628a3fSMingming Cao 2015f0e6c985SAneesh Kumar K.V page_bufs = page_buffers(page); 201664769240SAlex Tomas /* 2017fe386132SJan Kara * We cannot do block allocation or other extent handling in this 2018fe386132SJan Kara * function. If there are buffers needing that, we have to redirty 2019fe386132SJan Kara * the page. But we may reach here when we do a journal commit via 2020fe386132SJan Kara * journal_submit_inode_data_buffers() and in that case we must write 2021fe386132SJan Kara * allocated buffers to achieve data=ordered mode guarantees. 2022cccd147aSTheodore Ts'o * 2023cccd147aSTheodore Ts'o * Also, if there is only one buffer per page (the fs block 2024cccd147aSTheodore Ts'o * size == the page size), if one buffer needs block 2025cccd147aSTheodore Ts'o * allocation or needs to modify the extent tree to clear the 2026cccd147aSTheodore Ts'o * unwritten flag, we know that the page can't be written at 2027cccd147aSTheodore Ts'o * all, so we might as well refuse the write immediately. 2028cccd147aSTheodore Ts'o * Unfortunately if the block size != page size, we can't as 2029cccd147aSTheodore Ts'o * easily detect this case using ext4_walk_page_buffers(), but 2030cccd147aSTheodore Ts'o * for the extremely common case, this is an optimization that 2031cccd147aSTheodore Ts'o * skips a useless round trip through ext4_bio_write_page(). 203264769240SAlex Tomas */ 2033f19d5870STao Ma if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL, 2034c364b22cSAneesh Kumar K.V ext4_bh_delay_or_unwritten)) { 203561628a3fSMingming Cao redirty_page_for_writepage(wbc, page); 2036cccd147aSTheodore Ts'o if ((current->flags & PF_MEMALLOC) || 2037cccd147aSTheodore Ts'o (inode->i_sb->s_blocksize == PAGE_CACHE_SIZE)) { 2038fe386132SJan Kara /* 2039fe386132SJan Kara * For memory cleaning there's no point in writing only 2040fe386132SJan Kara * some buffers. So just bail out. Warn if we came here 2041fe386132SJan Kara * from direct reclaim. 2042fe386132SJan Kara */ 2043fe386132SJan Kara WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD)) 2044fe386132SJan Kara == PF_MEMALLOC); 204561628a3fSMingming Cao unlock_page(page); 204661628a3fSMingming Cao return 0; 204761628a3fSMingming Cao } 20481c8349a1SNamjae Jeon keep_towrite = true; 2049f0e6c985SAneesh Kumar K.V } 205064769240SAlex Tomas 2051cb20d518STheodore Ts'o if (PageChecked(page) && ext4_should_journal_data(inode)) 205243ce1d23SAneesh Kumar K.V /* 205343ce1d23SAneesh Kumar K.V * It's mmapped pagecache. Add buffers and journal it. There 205443ce1d23SAneesh Kumar K.V * doesn't seem much point in redirtying the page here. 205543ce1d23SAneesh Kumar K.V */ 20563f0ca309SWu Fengguang return __ext4_journalled_writepage(page, len); 205743ce1d23SAneesh Kumar K.V 205897a851edSJan Kara ext4_io_submit_init(&io_submit, wbc); 205997a851edSJan Kara io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS); 206097a851edSJan Kara if (!io_submit.io_end) { 206197a851edSJan Kara redirty_page_for_writepage(wbc, page); 206297a851edSJan Kara unlock_page(page); 206397a851edSJan Kara return -ENOMEM; 206497a851edSJan Kara } 20651c8349a1SNamjae Jeon ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite); 206636ade451SJan Kara ext4_io_submit(&io_submit); 206797a851edSJan Kara /* Drop io_end reference we got from init */ 206897a851edSJan Kara ext4_put_io_end_defer(io_submit.io_end); 206964769240SAlex Tomas return ret; 207064769240SAlex Tomas } 207164769240SAlex Tomas 20725f1132b2SJan Kara static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page) 20735f1132b2SJan Kara { 20745f1132b2SJan Kara int len; 20755f1132b2SJan Kara loff_t size = i_size_read(mpd->inode); 20765f1132b2SJan Kara int err; 20775f1132b2SJan Kara 20785f1132b2SJan Kara BUG_ON(page->index != mpd->first_page); 20795f1132b2SJan Kara if (page->index == size >> PAGE_CACHE_SHIFT) 20805f1132b2SJan Kara len = size & ~PAGE_CACHE_MASK; 20815f1132b2SJan Kara else 20825f1132b2SJan Kara len = PAGE_CACHE_SIZE; 20835f1132b2SJan Kara clear_page_dirty_for_io(page); 20841c8349a1SNamjae Jeon err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false); 20855f1132b2SJan Kara if (!err) 20865f1132b2SJan Kara mpd->wbc->nr_to_write--; 20875f1132b2SJan Kara mpd->first_page++; 20885f1132b2SJan Kara 20895f1132b2SJan Kara return err; 20905f1132b2SJan Kara } 20915f1132b2SJan Kara 20924e7ea81dSJan Kara #define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay)) 20934e7ea81dSJan Kara 209461628a3fSMingming Cao /* 2095fffb2739SJan Kara * mballoc gives us at most this number of blocks... 2096fffb2739SJan Kara * XXX: That seems to be only a limitation of ext4_mb_normalize_request(). 2097fffb2739SJan Kara * The rest of mballoc seems to handle chunks up to full group size. 209861628a3fSMingming Cao */ 2099fffb2739SJan Kara #define MAX_WRITEPAGES_EXTENT_LEN 2048 2100525f4ed8SMingming Cao 2101525f4ed8SMingming Cao /* 21024e7ea81dSJan Kara * mpage_add_bh_to_extent - try to add bh to extent of blocks to map 21034e7ea81dSJan Kara * 21044e7ea81dSJan Kara * @mpd - extent of blocks 21054e7ea81dSJan Kara * @lblk - logical number of the block in the file 210609930042SJan Kara * @bh - buffer head we want to add to the extent 21074e7ea81dSJan Kara * 210809930042SJan Kara * The function is used to collect contig. blocks in the same state. If the 210909930042SJan Kara * buffer doesn't require mapping for writeback and we haven't started the 211009930042SJan Kara * extent of buffers to map yet, the function returns 'true' immediately - the 211109930042SJan Kara * caller can write the buffer right away. Otherwise the function returns true 211209930042SJan Kara * if the block has been added to the extent, false if the block couldn't be 211309930042SJan Kara * added. 21144e7ea81dSJan Kara */ 211509930042SJan Kara static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk, 211609930042SJan Kara struct buffer_head *bh) 21174e7ea81dSJan Kara { 21184e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 21194e7ea81dSJan Kara 212009930042SJan Kara /* Buffer that doesn't need mapping for writeback? */ 212109930042SJan Kara if (!buffer_dirty(bh) || !buffer_mapped(bh) || 212209930042SJan Kara (!buffer_delay(bh) && !buffer_unwritten(bh))) { 212309930042SJan Kara /* So far no extent to map => we write the buffer right away */ 212409930042SJan Kara if (map->m_len == 0) 212509930042SJan Kara return true; 212609930042SJan Kara return false; 212709930042SJan Kara } 21284e7ea81dSJan Kara 21294e7ea81dSJan Kara /* First block in the extent? */ 21304e7ea81dSJan Kara if (map->m_len == 0) { 21314e7ea81dSJan Kara map->m_lblk = lblk; 21324e7ea81dSJan Kara map->m_len = 1; 213309930042SJan Kara map->m_flags = bh->b_state & BH_FLAGS; 213409930042SJan Kara return true; 21354e7ea81dSJan Kara } 21364e7ea81dSJan Kara 213709930042SJan Kara /* Don't go larger than mballoc is willing to allocate */ 213809930042SJan Kara if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN) 213909930042SJan Kara return false; 214009930042SJan Kara 21414e7ea81dSJan Kara /* Can we merge the block to our big extent? */ 21424e7ea81dSJan Kara if (lblk == map->m_lblk + map->m_len && 214309930042SJan Kara (bh->b_state & BH_FLAGS) == map->m_flags) { 21444e7ea81dSJan Kara map->m_len++; 214509930042SJan Kara return true; 21464e7ea81dSJan Kara } 214709930042SJan Kara return false; 21484e7ea81dSJan Kara } 21494e7ea81dSJan Kara 21505f1132b2SJan Kara /* 21515f1132b2SJan Kara * mpage_process_page_bufs - submit page buffers for IO or add them to extent 21525f1132b2SJan Kara * 21535f1132b2SJan Kara * @mpd - extent of blocks for mapping 21545f1132b2SJan Kara * @head - the first buffer in the page 21555f1132b2SJan Kara * @bh - buffer we should start processing from 21565f1132b2SJan Kara * @lblk - logical number of the block in the file corresponding to @bh 21575f1132b2SJan Kara * 21585f1132b2SJan Kara * Walk through page buffers from @bh upto @head (exclusive) and either submit 21595f1132b2SJan Kara * the page for IO if all buffers in this page were mapped and there's no 21605f1132b2SJan Kara * accumulated extent of buffers to map or add buffers in the page to the 21615f1132b2SJan Kara * extent of buffers to map. The function returns 1 if the caller can continue 21625f1132b2SJan Kara * by processing the next page, 0 if it should stop adding buffers to the 21635f1132b2SJan Kara * extent to map because we cannot extend it anymore. It can also return value 21645f1132b2SJan Kara * < 0 in case of error during IO submission. 21655f1132b2SJan Kara */ 21665f1132b2SJan Kara static int mpage_process_page_bufs(struct mpage_da_data *mpd, 21674e7ea81dSJan Kara struct buffer_head *head, 21684e7ea81dSJan Kara struct buffer_head *bh, 21694e7ea81dSJan Kara ext4_lblk_t lblk) 21704e7ea81dSJan Kara { 21714e7ea81dSJan Kara struct inode *inode = mpd->inode; 21725f1132b2SJan Kara int err; 21734e7ea81dSJan Kara ext4_lblk_t blocks = (i_size_read(inode) + (1 << inode->i_blkbits) - 1) 21744e7ea81dSJan Kara >> inode->i_blkbits; 21754e7ea81dSJan Kara 21764e7ea81dSJan Kara do { 21774e7ea81dSJan Kara BUG_ON(buffer_locked(bh)); 21784e7ea81dSJan Kara 217909930042SJan Kara if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) { 21804e7ea81dSJan Kara /* Found extent to map? */ 21814e7ea81dSJan Kara if (mpd->map.m_len) 21825f1132b2SJan Kara return 0; 218309930042SJan Kara /* Everything mapped so far and we hit EOF */ 21845f1132b2SJan Kara break; 21854e7ea81dSJan Kara } 21864e7ea81dSJan Kara } while (lblk++, (bh = bh->b_this_page) != head); 21875f1132b2SJan Kara /* So far everything mapped? Submit the page for IO. */ 21885f1132b2SJan Kara if (mpd->map.m_len == 0) { 21895f1132b2SJan Kara err = mpage_submit_page(mpd, head->b_page); 21905f1132b2SJan Kara if (err < 0) 21914e7ea81dSJan Kara return err; 21924e7ea81dSJan Kara } 21935f1132b2SJan Kara return lblk < blocks; 21945f1132b2SJan Kara } 21954e7ea81dSJan Kara 21964e7ea81dSJan Kara /* 21974e7ea81dSJan Kara * mpage_map_buffers - update buffers corresponding to changed extent and 21984e7ea81dSJan Kara * submit fully mapped pages for IO 21994e7ea81dSJan Kara * 22004e7ea81dSJan Kara * @mpd - description of extent to map, on return next extent to map 22014e7ea81dSJan Kara * 22024e7ea81dSJan Kara * Scan buffers corresponding to changed extent (we expect corresponding pages 22034e7ea81dSJan Kara * to be already locked) and update buffer state according to new extent state. 22044e7ea81dSJan Kara * We map delalloc buffers to their physical location, clear unwritten bits, 2205556615dcSLukas Czerner * and mark buffers as uninit when we perform writes to unwritten extents 22064e7ea81dSJan Kara * and do extent conversion after IO is finished. If the last page is not fully 22074e7ea81dSJan Kara * mapped, we update @map to the next extent in the last page that needs 22084e7ea81dSJan Kara * mapping. Otherwise we submit the page for IO. 22094e7ea81dSJan Kara */ 22104e7ea81dSJan Kara static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd) 22114e7ea81dSJan Kara { 22124e7ea81dSJan Kara struct pagevec pvec; 22134e7ea81dSJan Kara int nr_pages, i; 22144e7ea81dSJan Kara struct inode *inode = mpd->inode; 22154e7ea81dSJan Kara struct buffer_head *head, *bh; 22164e7ea81dSJan Kara int bpp_bits = PAGE_CACHE_SHIFT - inode->i_blkbits; 22174e7ea81dSJan Kara pgoff_t start, end; 22184e7ea81dSJan Kara ext4_lblk_t lblk; 22194e7ea81dSJan Kara sector_t pblock; 22204e7ea81dSJan Kara int err; 22214e7ea81dSJan Kara 22224e7ea81dSJan Kara start = mpd->map.m_lblk >> bpp_bits; 22234e7ea81dSJan Kara end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits; 22244e7ea81dSJan Kara lblk = start << bpp_bits; 22254e7ea81dSJan Kara pblock = mpd->map.m_pblk; 22264e7ea81dSJan Kara 22274e7ea81dSJan Kara pagevec_init(&pvec, 0); 22284e7ea81dSJan Kara while (start <= end) { 22294e7ea81dSJan Kara nr_pages = pagevec_lookup(&pvec, inode->i_mapping, start, 22304e7ea81dSJan Kara PAGEVEC_SIZE); 22314e7ea81dSJan Kara if (nr_pages == 0) 22324e7ea81dSJan Kara break; 22334e7ea81dSJan Kara for (i = 0; i < nr_pages; i++) { 22344e7ea81dSJan Kara struct page *page = pvec.pages[i]; 22354e7ea81dSJan Kara 22364e7ea81dSJan Kara if (page->index > end) 22374e7ea81dSJan Kara break; 22384e7ea81dSJan Kara /* Up to 'end' pages must be contiguous */ 22394e7ea81dSJan Kara BUG_ON(page->index != start); 22404e7ea81dSJan Kara bh = head = page_buffers(page); 22414e7ea81dSJan Kara do { 22424e7ea81dSJan Kara if (lblk < mpd->map.m_lblk) 22434e7ea81dSJan Kara continue; 22444e7ea81dSJan Kara if (lblk >= mpd->map.m_lblk + mpd->map.m_len) { 22454e7ea81dSJan Kara /* 22464e7ea81dSJan Kara * Buffer after end of mapped extent. 22474e7ea81dSJan Kara * Find next buffer in the page to map. 22484e7ea81dSJan Kara */ 22494e7ea81dSJan Kara mpd->map.m_len = 0; 22504e7ea81dSJan Kara mpd->map.m_flags = 0; 22515f1132b2SJan Kara /* 22525f1132b2SJan Kara * FIXME: If dioread_nolock supports 22535f1132b2SJan Kara * blocksize < pagesize, we need to make 22545f1132b2SJan Kara * sure we add size mapped so far to 22555f1132b2SJan Kara * io_end->size as the following call 22565f1132b2SJan Kara * can submit the page for IO. 22575f1132b2SJan Kara */ 22585f1132b2SJan Kara err = mpage_process_page_bufs(mpd, head, 22595f1132b2SJan Kara bh, lblk); 22604e7ea81dSJan Kara pagevec_release(&pvec); 22615f1132b2SJan Kara if (err > 0) 22625f1132b2SJan Kara err = 0; 22635f1132b2SJan Kara return err; 22644e7ea81dSJan Kara } 22654e7ea81dSJan Kara if (buffer_delay(bh)) { 22664e7ea81dSJan Kara clear_buffer_delay(bh); 22674e7ea81dSJan Kara bh->b_blocknr = pblock++; 22684e7ea81dSJan Kara } 22694e7ea81dSJan Kara clear_buffer_unwritten(bh); 22705f1132b2SJan Kara } while (lblk++, (bh = bh->b_this_page) != head); 22714e7ea81dSJan Kara 22724e7ea81dSJan Kara /* 22734e7ea81dSJan Kara * FIXME: This is going to break if dioread_nolock 22744e7ea81dSJan Kara * supports blocksize < pagesize as we will try to 22754e7ea81dSJan Kara * convert potentially unmapped parts of inode. 22764e7ea81dSJan Kara */ 22774e7ea81dSJan Kara mpd->io_submit.io_end->size += PAGE_CACHE_SIZE; 22784e7ea81dSJan Kara /* Page fully mapped - let IO run! */ 22794e7ea81dSJan Kara err = mpage_submit_page(mpd, page); 22804e7ea81dSJan Kara if (err < 0) { 22814e7ea81dSJan Kara pagevec_release(&pvec); 22824e7ea81dSJan Kara return err; 22834e7ea81dSJan Kara } 22844e7ea81dSJan Kara start++; 22854e7ea81dSJan Kara } 22864e7ea81dSJan Kara pagevec_release(&pvec); 22874e7ea81dSJan Kara } 22884e7ea81dSJan Kara /* Extent fully mapped and matches with page boundary. We are done. */ 22894e7ea81dSJan Kara mpd->map.m_len = 0; 22904e7ea81dSJan Kara mpd->map.m_flags = 0; 22914e7ea81dSJan Kara return 0; 22924e7ea81dSJan Kara } 22934e7ea81dSJan Kara 22944e7ea81dSJan Kara static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd) 22954e7ea81dSJan Kara { 22964e7ea81dSJan Kara struct inode *inode = mpd->inode; 22974e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 22984e7ea81dSJan Kara int get_blocks_flags; 2299090f32eeSLukas Czerner int err, dioread_nolock; 23004e7ea81dSJan Kara 23014e7ea81dSJan Kara trace_ext4_da_write_pages_extent(inode, map); 23024e7ea81dSJan Kara /* 23034e7ea81dSJan Kara * Call ext4_map_blocks() to allocate any delayed allocation blocks, or 2304556615dcSLukas Czerner * to convert an unwritten extent to be initialized (in the case 23054e7ea81dSJan Kara * where we have written into one or more preallocated blocks). It is 23064e7ea81dSJan Kara * possible that we're going to need more metadata blocks than 23074e7ea81dSJan Kara * previously reserved. However we must not fail because we're in 23084e7ea81dSJan Kara * writeback and there is nothing we can do about it so it might result 23094e7ea81dSJan Kara * in data loss. So use reserved blocks to allocate metadata if 23104e7ea81dSJan Kara * possible. 23114e7ea81dSJan Kara * 2312754cfed6STheodore Ts'o * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if 2313754cfed6STheodore Ts'o * the blocks in question are delalloc blocks. This indicates 2314754cfed6STheodore Ts'o * that the blocks and quotas has already been checked when 2315754cfed6STheodore Ts'o * the data was copied into the page cache. 23164e7ea81dSJan Kara */ 23174e7ea81dSJan Kara get_blocks_flags = EXT4_GET_BLOCKS_CREATE | 23184e7ea81dSJan Kara EXT4_GET_BLOCKS_METADATA_NOFAIL; 2319090f32eeSLukas Czerner dioread_nolock = ext4_should_dioread_nolock(inode); 2320090f32eeSLukas Czerner if (dioread_nolock) 23214e7ea81dSJan Kara get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT; 23224e7ea81dSJan Kara if (map->m_flags & (1 << BH_Delay)) 23234e7ea81dSJan Kara get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE; 23244e7ea81dSJan Kara 23254e7ea81dSJan Kara err = ext4_map_blocks(handle, inode, map, get_blocks_flags); 23264e7ea81dSJan Kara if (err < 0) 23274e7ea81dSJan Kara return err; 2328090f32eeSLukas Czerner if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) { 23296b523df4SJan Kara if (!mpd->io_submit.io_end->handle && 23306b523df4SJan Kara ext4_handle_valid(handle)) { 23316b523df4SJan Kara mpd->io_submit.io_end->handle = handle->h_rsv_handle; 23326b523df4SJan Kara handle->h_rsv_handle = NULL; 23336b523df4SJan Kara } 23343613d228SJan Kara ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end); 23356b523df4SJan Kara } 23364e7ea81dSJan Kara 23374e7ea81dSJan Kara BUG_ON(map->m_len == 0); 23384e7ea81dSJan Kara if (map->m_flags & EXT4_MAP_NEW) { 23394e7ea81dSJan Kara struct block_device *bdev = inode->i_sb->s_bdev; 23404e7ea81dSJan Kara int i; 23414e7ea81dSJan Kara 23424e7ea81dSJan Kara for (i = 0; i < map->m_len; i++) 23434e7ea81dSJan Kara unmap_underlying_metadata(bdev, map->m_pblk + i); 23444e7ea81dSJan Kara } 23454e7ea81dSJan Kara return 0; 23464e7ea81dSJan Kara } 23474e7ea81dSJan Kara 23484e7ea81dSJan Kara /* 23494e7ea81dSJan Kara * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length 23504e7ea81dSJan Kara * mpd->len and submit pages underlying it for IO 23514e7ea81dSJan Kara * 23524e7ea81dSJan Kara * @handle - handle for journal operations 23534e7ea81dSJan Kara * @mpd - extent to map 23547534e854SJan Kara * @give_up_on_write - we set this to true iff there is a fatal error and there 23557534e854SJan Kara * is no hope of writing the data. The caller should discard 23567534e854SJan Kara * dirty pages to avoid infinite loops. 23574e7ea81dSJan Kara * 23584e7ea81dSJan Kara * The function maps extent starting at mpd->lblk of length mpd->len. If it is 23594e7ea81dSJan Kara * delayed, blocks are allocated, if it is unwritten, we may need to convert 23604e7ea81dSJan Kara * them to initialized or split the described range from larger unwritten 23614e7ea81dSJan Kara * extent. Note that we need not map all the described range since allocation 23624e7ea81dSJan Kara * can return less blocks or the range is covered by more unwritten extents. We 23634e7ea81dSJan Kara * cannot map more because we are limited by reserved transaction credits. On 23644e7ea81dSJan Kara * the other hand we always make sure that the last touched page is fully 23654e7ea81dSJan Kara * mapped so that it can be written out (and thus forward progress is 23664e7ea81dSJan Kara * guaranteed). After mapping we submit all mapped pages for IO. 23674e7ea81dSJan Kara */ 23684e7ea81dSJan Kara static int mpage_map_and_submit_extent(handle_t *handle, 2369cb530541STheodore Ts'o struct mpage_da_data *mpd, 2370cb530541STheodore Ts'o bool *give_up_on_write) 23714e7ea81dSJan Kara { 23724e7ea81dSJan Kara struct inode *inode = mpd->inode; 23734e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 23744e7ea81dSJan Kara int err; 23754e7ea81dSJan Kara loff_t disksize; 23766603120eSDmitry Monakhov int progress = 0; 23774e7ea81dSJan Kara 23784e7ea81dSJan Kara mpd->io_submit.io_end->offset = 23794e7ea81dSJan Kara ((loff_t)map->m_lblk) << inode->i_blkbits; 238027d7c4edSJan Kara do { 23814e7ea81dSJan Kara err = mpage_map_one_extent(handle, mpd); 23824e7ea81dSJan Kara if (err < 0) { 23834e7ea81dSJan Kara struct super_block *sb = inode->i_sb; 23844e7ea81dSJan Kara 2385cb530541STheodore Ts'o if (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED) 2386cb530541STheodore Ts'o goto invalidate_dirty_pages; 23874e7ea81dSJan Kara /* 2388cb530541STheodore Ts'o * Let the uper layers retry transient errors. 2389cb530541STheodore Ts'o * In the case of ENOSPC, if ext4_count_free_blocks() 2390cb530541STheodore Ts'o * is non-zero, a commit should free up blocks. 23914e7ea81dSJan Kara */ 2392cb530541STheodore Ts'o if ((err == -ENOMEM) || 23936603120eSDmitry Monakhov (err == -ENOSPC && ext4_count_free_clusters(sb))) { 23946603120eSDmitry Monakhov if (progress) 23956603120eSDmitry Monakhov goto update_disksize; 2396cb530541STheodore Ts'o return err; 23976603120eSDmitry Monakhov } 23984e7ea81dSJan Kara ext4_msg(sb, KERN_CRIT, 23994e7ea81dSJan Kara "Delayed block allocation failed for " 24004e7ea81dSJan Kara "inode %lu at logical offset %llu with" 24014e7ea81dSJan Kara " max blocks %u with error %d", 24024e7ea81dSJan Kara inode->i_ino, 24034e7ea81dSJan Kara (unsigned long long)map->m_lblk, 2404cb530541STheodore Ts'o (unsigned)map->m_len, -err); 24054e7ea81dSJan Kara ext4_msg(sb, KERN_CRIT, 24064e7ea81dSJan Kara "This should not happen!! Data will " 24074e7ea81dSJan Kara "be lost\n"); 24084e7ea81dSJan Kara if (err == -ENOSPC) 24094e7ea81dSJan Kara ext4_print_free_blocks(inode); 2410cb530541STheodore Ts'o invalidate_dirty_pages: 2411cb530541STheodore Ts'o *give_up_on_write = true; 24124e7ea81dSJan Kara return err; 24134e7ea81dSJan Kara } 24146603120eSDmitry Monakhov progress = 1; 24154e7ea81dSJan Kara /* 24164e7ea81dSJan Kara * Update buffer state, submit mapped pages, and get us new 24174e7ea81dSJan Kara * extent to map 24184e7ea81dSJan Kara */ 24194e7ea81dSJan Kara err = mpage_map_and_submit_buffers(mpd); 24204e7ea81dSJan Kara if (err < 0) 24216603120eSDmitry Monakhov goto update_disksize; 242227d7c4edSJan Kara } while (map->m_len); 24234e7ea81dSJan Kara 24246603120eSDmitry Monakhov update_disksize: 2425622cad13STheodore Ts'o /* 2426622cad13STheodore Ts'o * Update on-disk size after IO is submitted. Races with 2427622cad13STheodore Ts'o * truncate are avoided by checking i_size under i_data_sem. 2428622cad13STheodore Ts'o */ 24294e7ea81dSJan Kara disksize = ((loff_t)mpd->first_page) << PAGE_CACHE_SHIFT; 24304e7ea81dSJan Kara if (disksize > EXT4_I(inode)->i_disksize) { 24314e7ea81dSJan Kara int err2; 2432622cad13STheodore Ts'o loff_t i_size; 24334e7ea81dSJan Kara 2434622cad13STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 2435622cad13STheodore Ts'o i_size = i_size_read(inode); 2436622cad13STheodore Ts'o if (disksize > i_size) 2437622cad13STheodore Ts'o disksize = i_size; 2438622cad13STheodore Ts'o if (disksize > EXT4_I(inode)->i_disksize) 2439622cad13STheodore Ts'o EXT4_I(inode)->i_disksize = disksize; 24404e7ea81dSJan Kara err2 = ext4_mark_inode_dirty(handle, inode); 2441622cad13STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 24424e7ea81dSJan Kara if (err2) 24434e7ea81dSJan Kara ext4_error(inode->i_sb, 24444e7ea81dSJan Kara "Failed to mark inode %lu dirty", 24454e7ea81dSJan Kara inode->i_ino); 24464e7ea81dSJan Kara if (!err) 24474e7ea81dSJan Kara err = err2; 24484e7ea81dSJan Kara } 24494e7ea81dSJan Kara return err; 24504e7ea81dSJan Kara } 24514e7ea81dSJan Kara 24524e7ea81dSJan Kara /* 2453fffb2739SJan Kara * Calculate the total number of credits to reserve for one writepages 245420970ba6STheodore Ts'o * iteration. This is called from ext4_writepages(). We map an extent of 2455fffb2739SJan Kara * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping 2456fffb2739SJan Kara * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN + 2457fffb2739SJan Kara * bpp - 1 blocks in bpp different extents. 2458525f4ed8SMingming Cao */ 2459fffb2739SJan Kara static int ext4_da_writepages_trans_blocks(struct inode *inode) 2460fffb2739SJan Kara { 2461fffb2739SJan Kara int bpp = ext4_journal_blocks_per_page(inode); 2462525f4ed8SMingming Cao 2463fffb2739SJan Kara return ext4_meta_trans_blocks(inode, 2464fffb2739SJan Kara MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp); 2465525f4ed8SMingming Cao } 246661628a3fSMingming Cao 24678e48dcfbSTheodore Ts'o /* 24684e7ea81dSJan Kara * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages 24694e7ea81dSJan Kara * and underlying extent to map 24704e7ea81dSJan Kara * 24714e7ea81dSJan Kara * @mpd - where to look for pages 24724e7ea81dSJan Kara * 24734e7ea81dSJan Kara * Walk dirty pages in the mapping. If they are fully mapped, submit them for 24744e7ea81dSJan Kara * IO immediately. When we find a page which isn't mapped we start accumulating 24754e7ea81dSJan Kara * extent of buffers underlying these pages that needs mapping (formed by 24764e7ea81dSJan Kara * either delayed or unwritten buffers). We also lock the pages containing 24774e7ea81dSJan Kara * these buffers. The extent found is returned in @mpd structure (starting at 24784e7ea81dSJan Kara * mpd->lblk with length mpd->len blocks). 24794e7ea81dSJan Kara * 24804e7ea81dSJan Kara * Note that this function can attach bios to one io_end structure which are 24814e7ea81dSJan Kara * neither logically nor physically contiguous. Although it may seem as an 24824e7ea81dSJan Kara * unnecessary complication, it is actually inevitable in blocksize < pagesize 24834e7ea81dSJan Kara * case as we need to track IO to all buffers underlying a page in one io_end. 24848e48dcfbSTheodore Ts'o */ 24854e7ea81dSJan Kara static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd) 24868e48dcfbSTheodore Ts'o { 24874e7ea81dSJan Kara struct address_space *mapping = mpd->inode->i_mapping; 24888e48dcfbSTheodore Ts'o struct pagevec pvec; 24894f01b02cSTheodore Ts'o unsigned int nr_pages; 2490aeac589aSMing Lei long left = mpd->wbc->nr_to_write; 24914e7ea81dSJan Kara pgoff_t index = mpd->first_page; 24924e7ea81dSJan Kara pgoff_t end = mpd->last_page; 24934e7ea81dSJan Kara int tag; 24944e7ea81dSJan Kara int i, err = 0; 24954e7ea81dSJan Kara int blkbits = mpd->inode->i_blkbits; 24964e7ea81dSJan Kara ext4_lblk_t lblk; 24974e7ea81dSJan Kara struct buffer_head *head; 24988e48dcfbSTheodore Ts'o 24994e7ea81dSJan Kara if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages) 25005b41d924SEric Sandeen tag = PAGECACHE_TAG_TOWRITE; 25015b41d924SEric Sandeen else 25025b41d924SEric Sandeen tag = PAGECACHE_TAG_DIRTY; 25035b41d924SEric Sandeen 25044e7ea81dSJan Kara pagevec_init(&pvec, 0); 25054e7ea81dSJan Kara mpd->map.m_len = 0; 25064e7ea81dSJan Kara mpd->next_page = index; 25074f01b02cSTheodore Ts'o while (index <= end) { 25085b41d924SEric Sandeen nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag, 25098e48dcfbSTheodore Ts'o min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1); 25108e48dcfbSTheodore Ts'o if (nr_pages == 0) 25114e7ea81dSJan Kara goto out; 25128e48dcfbSTheodore Ts'o 25138e48dcfbSTheodore Ts'o for (i = 0; i < nr_pages; i++) { 25148e48dcfbSTheodore Ts'o struct page *page = pvec.pages[i]; 25158e48dcfbSTheodore Ts'o 25168e48dcfbSTheodore Ts'o /* 25178e48dcfbSTheodore Ts'o * At this point, the page may be truncated or 25188e48dcfbSTheodore Ts'o * invalidated (changing page->mapping to NULL), or 25198e48dcfbSTheodore Ts'o * even swizzled back from swapper_space to tmpfs file 25208e48dcfbSTheodore Ts'o * mapping. However, page->index will not change 25218e48dcfbSTheodore Ts'o * because we have a reference on the page. 25228e48dcfbSTheodore Ts'o */ 25234f01b02cSTheodore Ts'o if (page->index > end) 25244f01b02cSTheodore Ts'o goto out; 25258e48dcfbSTheodore Ts'o 2526aeac589aSMing Lei /* 2527aeac589aSMing Lei * Accumulated enough dirty pages? This doesn't apply 2528aeac589aSMing Lei * to WB_SYNC_ALL mode. For integrity sync we have to 2529aeac589aSMing Lei * keep going because someone may be concurrently 2530aeac589aSMing Lei * dirtying pages, and we might have synced a lot of 2531aeac589aSMing Lei * newly appeared dirty pages, but have not synced all 2532aeac589aSMing Lei * of the old dirty pages. 2533aeac589aSMing Lei */ 2534aeac589aSMing Lei if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0) 2535aeac589aSMing Lei goto out; 2536aeac589aSMing Lei 25374e7ea81dSJan Kara /* If we can't merge this page, we are done. */ 25384e7ea81dSJan Kara if (mpd->map.m_len > 0 && mpd->next_page != page->index) 25394e7ea81dSJan Kara goto out; 254078aaced3STheodore Ts'o 25418e48dcfbSTheodore Ts'o lock_page(page); 25428e48dcfbSTheodore Ts'o /* 25434e7ea81dSJan Kara * If the page is no longer dirty, or its mapping no 25444e7ea81dSJan Kara * longer corresponds to inode we are writing (which 25454e7ea81dSJan Kara * means it has been truncated or invalidated), or the 25464e7ea81dSJan Kara * page is already under writeback and we are not doing 25474e7ea81dSJan Kara * a data integrity writeback, skip the page 25488e48dcfbSTheodore Ts'o */ 25494f01b02cSTheodore Ts'o if (!PageDirty(page) || 25504f01b02cSTheodore Ts'o (PageWriteback(page) && 25514e7ea81dSJan Kara (mpd->wbc->sync_mode == WB_SYNC_NONE)) || 25524f01b02cSTheodore Ts'o unlikely(page->mapping != mapping)) { 25538e48dcfbSTheodore Ts'o unlock_page(page); 25548e48dcfbSTheodore Ts'o continue; 25558e48dcfbSTheodore Ts'o } 25568e48dcfbSTheodore Ts'o 25578e48dcfbSTheodore Ts'o wait_on_page_writeback(page); 25588e48dcfbSTheodore Ts'o BUG_ON(PageWriteback(page)); 25598e48dcfbSTheodore Ts'o 25604e7ea81dSJan Kara if (mpd->map.m_len == 0) 25618eb9e5ceSTheodore Ts'o mpd->first_page = page->index; 25628eb9e5ceSTheodore Ts'o mpd->next_page = page->index + 1; 2563f8bec370SJan Kara /* Add all dirty buffers to mpd */ 25644e7ea81dSJan Kara lblk = ((ext4_lblk_t)page->index) << 25654e7ea81dSJan Kara (PAGE_CACHE_SHIFT - blkbits); 25668eb9e5ceSTheodore Ts'o head = page_buffers(page); 25675f1132b2SJan Kara err = mpage_process_page_bufs(mpd, head, head, lblk); 25685f1132b2SJan Kara if (err <= 0) 25694e7ea81dSJan Kara goto out; 25705f1132b2SJan Kara err = 0; 2571aeac589aSMing Lei left--; 25728e48dcfbSTheodore Ts'o } 25738e48dcfbSTheodore Ts'o pagevec_release(&pvec); 25748e48dcfbSTheodore Ts'o cond_resched(); 25758e48dcfbSTheodore Ts'o } 25764f01b02cSTheodore Ts'o return 0; 25778eb9e5ceSTheodore Ts'o out: 25788eb9e5ceSTheodore Ts'o pagevec_release(&pvec); 25794e7ea81dSJan Kara return err; 25808e48dcfbSTheodore Ts'o } 25818e48dcfbSTheodore Ts'o 258220970ba6STheodore Ts'o static int __writepage(struct page *page, struct writeback_control *wbc, 258320970ba6STheodore Ts'o void *data) 258420970ba6STheodore Ts'o { 258520970ba6STheodore Ts'o struct address_space *mapping = data; 258620970ba6STheodore Ts'o int ret = ext4_writepage(page, wbc); 258720970ba6STheodore Ts'o mapping_set_error(mapping, ret); 258820970ba6STheodore Ts'o return ret; 258920970ba6STheodore Ts'o } 259020970ba6STheodore Ts'o 259120970ba6STheodore Ts'o static int ext4_writepages(struct address_space *mapping, 259264769240SAlex Tomas struct writeback_control *wbc) 259364769240SAlex Tomas { 25944e7ea81dSJan Kara pgoff_t writeback_index = 0; 25954e7ea81dSJan Kara long nr_to_write = wbc->nr_to_write; 259622208dedSAneesh Kumar K.V int range_whole = 0; 25974e7ea81dSJan Kara int cycled = 1; 259861628a3fSMingming Cao handle_t *handle = NULL; 2599df22291fSAneesh Kumar K.V struct mpage_da_data mpd; 26005e745b04SAneesh Kumar K.V struct inode *inode = mapping->host; 26016b523df4SJan Kara int needed_blocks, rsv_blocks = 0, ret = 0; 26025e745b04SAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb); 26034e7ea81dSJan Kara bool done; 26041bce63d1SShaohua Li struct blk_plug plug; 2605cb530541STheodore Ts'o bool give_up_on_write = false; 260661628a3fSMingming Cao 260720970ba6STheodore Ts'o trace_ext4_writepages(inode, wbc); 2608ba80b101STheodore Ts'o 260961628a3fSMingming Cao /* 261061628a3fSMingming Cao * No pages to write? This is mainly a kludge to avoid starting 261161628a3fSMingming Cao * a transaction for special inodes like journal inode on last iput() 261261628a3fSMingming Cao * because that could violate lock ordering on umount 261361628a3fSMingming Cao */ 2614a1d6cc56SAneesh Kumar K.V if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) 2615bbf023c7SMing Lei goto out_writepages; 26162a21e37eSTheodore Ts'o 261720970ba6STheodore Ts'o if (ext4_should_journal_data(inode)) { 261820970ba6STheodore Ts'o struct blk_plug plug; 261920970ba6STheodore Ts'o 262020970ba6STheodore Ts'o blk_start_plug(&plug); 262120970ba6STheodore Ts'o ret = write_cache_pages(mapping, wbc, __writepage, mapping); 262220970ba6STheodore Ts'o blk_finish_plug(&plug); 2623bbf023c7SMing Lei goto out_writepages; 262420970ba6STheodore Ts'o } 262520970ba6STheodore Ts'o 26262a21e37eSTheodore Ts'o /* 26272a21e37eSTheodore Ts'o * If the filesystem has aborted, it is read-only, so return 26282a21e37eSTheodore Ts'o * right away instead of dumping stack traces later on that 26292a21e37eSTheodore Ts'o * will obscure the real source of the problem. We test 26304ab2f15bSTheodore Ts'o * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because 26312a21e37eSTheodore Ts'o * the latter could be true if the filesystem is mounted 263220970ba6STheodore Ts'o * read-only, and in that case, ext4_writepages should 26332a21e37eSTheodore Ts'o * *never* be called, so if that ever happens, we would want 26342a21e37eSTheodore Ts'o * the stack trace. 26352a21e37eSTheodore Ts'o */ 2636bbf023c7SMing Lei if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) { 2637bbf023c7SMing Lei ret = -EROFS; 2638bbf023c7SMing Lei goto out_writepages; 2639bbf023c7SMing Lei } 26402a21e37eSTheodore Ts'o 26416b523df4SJan Kara if (ext4_should_dioread_nolock(inode)) { 26426b523df4SJan Kara /* 26436b523df4SJan Kara * We may need to convert up to one extent per block in 26446b523df4SJan Kara * the page and we may dirty the inode. 26456b523df4SJan Kara */ 26466b523df4SJan Kara rsv_blocks = 1 + (PAGE_CACHE_SIZE >> inode->i_blkbits); 26476b523df4SJan Kara } 26486b523df4SJan Kara 26494e7ea81dSJan Kara /* 26504e7ea81dSJan Kara * If we have inline data and arrive here, it means that 26514e7ea81dSJan Kara * we will soon create the block for the 1st page, so 26524e7ea81dSJan Kara * we'd better clear the inline data here. 26534e7ea81dSJan Kara */ 26544e7ea81dSJan Kara if (ext4_has_inline_data(inode)) { 26554e7ea81dSJan Kara /* Just inode will be modified... */ 26564e7ea81dSJan Kara handle = ext4_journal_start(inode, EXT4_HT_INODE, 1); 26574e7ea81dSJan Kara if (IS_ERR(handle)) { 26584e7ea81dSJan Kara ret = PTR_ERR(handle); 26594e7ea81dSJan Kara goto out_writepages; 26604e7ea81dSJan Kara } 26614e7ea81dSJan Kara BUG_ON(ext4_test_inode_state(inode, 26624e7ea81dSJan Kara EXT4_STATE_MAY_INLINE_DATA)); 26634e7ea81dSJan Kara ext4_destroy_inline_data(handle, inode); 26644e7ea81dSJan Kara ext4_journal_stop(handle); 26654e7ea81dSJan Kara } 26664e7ea81dSJan Kara 266722208dedSAneesh Kumar K.V if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX) 266822208dedSAneesh Kumar K.V range_whole = 1; 266961628a3fSMingming Cao 26702acf2c26SAneesh Kumar K.V if (wbc->range_cyclic) { 26714e7ea81dSJan Kara writeback_index = mapping->writeback_index; 26724e7ea81dSJan Kara if (writeback_index) 26732acf2c26SAneesh Kumar K.V cycled = 0; 26744e7ea81dSJan Kara mpd.first_page = writeback_index; 26754e7ea81dSJan Kara mpd.last_page = -1; 26765b41d924SEric Sandeen } else { 26774e7ea81dSJan Kara mpd.first_page = wbc->range_start >> PAGE_CACHE_SHIFT; 26784e7ea81dSJan Kara mpd.last_page = wbc->range_end >> PAGE_CACHE_SHIFT; 26795b41d924SEric Sandeen } 2680a1d6cc56SAneesh Kumar K.V 26814e7ea81dSJan Kara mpd.inode = inode; 26824e7ea81dSJan Kara mpd.wbc = wbc; 26834e7ea81dSJan Kara ext4_io_submit_init(&mpd.io_submit, wbc); 26842acf2c26SAneesh Kumar K.V retry: 26856e6938b6SWu Fengguang if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages) 26864e7ea81dSJan Kara tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page); 26874e7ea81dSJan Kara done = false; 26881bce63d1SShaohua Li blk_start_plug(&plug); 26894e7ea81dSJan Kara while (!done && mpd.first_page <= mpd.last_page) { 26904e7ea81dSJan Kara /* For each extent of pages we use new io_end */ 26914e7ea81dSJan Kara mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL); 26924e7ea81dSJan Kara if (!mpd.io_submit.io_end) { 26934e7ea81dSJan Kara ret = -ENOMEM; 26944e7ea81dSJan Kara break; 26954e7ea81dSJan Kara } 2696a1d6cc56SAneesh Kumar K.V 2697a1d6cc56SAneesh Kumar K.V /* 26984e7ea81dSJan Kara * We have two constraints: We find one extent to map and we 26994e7ea81dSJan Kara * must always write out whole page (makes a difference when 27004e7ea81dSJan Kara * blocksize < pagesize) so that we don't block on IO when we 27014e7ea81dSJan Kara * try to write out the rest of the page. Journalled mode is 27024e7ea81dSJan Kara * not supported by delalloc. 2703a1d6cc56SAneesh Kumar K.V */ 2704a1d6cc56SAneesh Kumar K.V BUG_ON(ext4_should_journal_data(inode)); 2705525f4ed8SMingming Cao needed_blocks = ext4_da_writepages_trans_blocks(inode); 2706a1d6cc56SAneesh Kumar K.V 270761628a3fSMingming Cao /* start a new transaction */ 27086b523df4SJan Kara handle = ext4_journal_start_with_reserve(inode, 27096b523df4SJan Kara EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks); 271061628a3fSMingming Cao if (IS_ERR(handle)) { 271161628a3fSMingming Cao ret = PTR_ERR(handle); 27121693918eSTheodore Ts'o ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: " 2713fbe845ddSCurt Wohlgemuth "%ld pages, ino %lu; err %d", __func__, 2714a1d6cc56SAneesh Kumar K.V wbc->nr_to_write, inode->i_ino, ret); 27154e7ea81dSJan Kara /* Release allocated io_end */ 27164e7ea81dSJan Kara ext4_put_io_end(mpd.io_submit.io_end); 27174e7ea81dSJan Kara break; 271861628a3fSMingming Cao } 2719f63e6005STheodore Ts'o 27204e7ea81dSJan Kara trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc); 27214e7ea81dSJan Kara ret = mpage_prepare_extent_to_map(&mpd); 27224e7ea81dSJan Kara if (!ret) { 27234e7ea81dSJan Kara if (mpd.map.m_len) 2724cb530541STheodore Ts'o ret = mpage_map_and_submit_extent(handle, &mpd, 2725cb530541STheodore Ts'o &give_up_on_write); 27264e7ea81dSJan Kara else { 2727f63e6005STheodore Ts'o /* 27284e7ea81dSJan Kara * We scanned the whole range (or exhausted 27294e7ea81dSJan Kara * nr_to_write), submitted what was mapped and 27304e7ea81dSJan Kara * didn't find anything needing mapping. We are 27314e7ea81dSJan Kara * done. 2732f63e6005STheodore Ts'o */ 27334e7ea81dSJan Kara done = true; 2734f63e6005STheodore Ts'o } 27354e7ea81dSJan Kara } 273661628a3fSMingming Cao ext4_journal_stop(handle); 27374e7ea81dSJan Kara /* Submit prepared bio */ 27384e7ea81dSJan Kara ext4_io_submit(&mpd.io_submit); 27394e7ea81dSJan Kara /* Unlock pages we didn't use */ 2740cb530541STheodore Ts'o mpage_release_unused_pages(&mpd, give_up_on_write); 27414e7ea81dSJan Kara /* Drop our io_end reference we got from init */ 27424e7ea81dSJan Kara ext4_put_io_end(mpd.io_submit.io_end); 2743df22291fSAneesh Kumar K.V 27444e7ea81dSJan Kara if (ret == -ENOSPC && sbi->s_journal) { 27454e7ea81dSJan Kara /* 27464e7ea81dSJan Kara * Commit the transaction which would 274722208dedSAneesh Kumar K.V * free blocks released in the transaction 274822208dedSAneesh Kumar K.V * and try again 274922208dedSAneesh Kumar K.V */ 2750df22291fSAneesh Kumar K.V jbd2_journal_force_commit_nested(sbi->s_journal); 275122208dedSAneesh Kumar K.V ret = 0; 27524e7ea81dSJan Kara continue; 27534e7ea81dSJan Kara } 27544e7ea81dSJan Kara /* Fatal error - ENOMEM, EIO... */ 27554e7ea81dSJan Kara if (ret) 275661628a3fSMingming Cao break; 275761628a3fSMingming Cao } 27581bce63d1SShaohua Li blk_finish_plug(&plug); 27599c12a831SJan Kara if (!ret && !cycled && wbc->nr_to_write > 0) { 27602acf2c26SAneesh Kumar K.V cycled = 1; 27614e7ea81dSJan Kara mpd.last_page = writeback_index - 1; 27624e7ea81dSJan Kara mpd.first_page = 0; 27632acf2c26SAneesh Kumar K.V goto retry; 27642acf2c26SAneesh Kumar K.V } 276561628a3fSMingming Cao 276622208dedSAneesh Kumar K.V /* Update index */ 276722208dedSAneesh Kumar K.V if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0)) 276822208dedSAneesh Kumar K.V /* 27694e7ea81dSJan Kara * Set the writeback_index so that range_cyclic 277022208dedSAneesh Kumar K.V * mode will write it back later 277122208dedSAneesh Kumar K.V */ 27724e7ea81dSJan Kara mapping->writeback_index = mpd.first_page; 2773a1d6cc56SAneesh Kumar K.V 277461628a3fSMingming Cao out_writepages: 277520970ba6STheodore Ts'o trace_ext4_writepages_result(inode, wbc, ret, 27764e7ea81dSJan Kara nr_to_write - wbc->nr_to_write); 277761628a3fSMingming Cao return ret; 277864769240SAlex Tomas } 277964769240SAlex Tomas 278079f0be8dSAneesh Kumar K.V static int ext4_nonda_switch(struct super_block *sb) 278179f0be8dSAneesh Kumar K.V { 27825c1ff336SEric Whitney s64 free_clusters, dirty_clusters; 278379f0be8dSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(sb); 278479f0be8dSAneesh Kumar K.V 278579f0be8dSAneesh Kumar K.V /* 278679f0be8dSAneesh Kumar K.V * switch to non delalloc mode if we are running low 278779f0be8dSAneesh Kumar K.V * on free block. The free block accounting via percpu 2788179f7ebfSEric Dumazet * counters can get slightly wrong with percpu_counter_batch getting 278979f0be8dSAneesh Kumar K.V * accumulated on each CPU without updating global counters 279079f0be8dSAneesh Kumar K.V * Delalloc need an accurate free block accounting. So switch 279179f0be8dSAneesh Kumar K.V * to non delalloc when we are near to error range. 279279f0be8dSAneesh Kumar K.V */ 27935c1ff336SEric Whitney free_clusters = 27945c1ff336SEric Whitney percpu_counter_read_positive(&sbi->s_freeclusters_counter); 27955c1ff336SEric Whitney dirty_clusters = 27965c1ff336SEric Whitney percpu_counter_read_positive(&sbi->s_dirtyclusters_counter); 279700d4e736STheodore Ts'o /* 279800d4e736STheodore Ts'o * Start pushing delalloc when 1/2 of free blocks are dirty. 279900d4e736STheodore Ts'o */ 28005c1ff336SEric Whitney if (dirty_clusters && (free_clusters < 2 * dirty_clusters)) 280110ee27a0SMiao Xie try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE); 280200d4e736STheodore Ts'o 28035c1ff336SEric Whitney if (2 * free_clusters < 3 * dirty_clusters || 28045c1ff336SEric Whitney free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) { 280579f0be8dSAneesh Kumar K.V /* 2806c8afb446SEric Sandeen * free block count is less than 150% of dirty blocks 2807c8afb446SEric Sandeen * or free blocks is less than watermark 280879f0be8dSAneesh Kumar K.V */ 280979f0be8dSAneesh Kumar K.V return 1; 281079f0be8dSAneesh Kumar K.V } 281179f0be8dSAneesh Kumar K.V return 0; 281279f0be8dSAneesh Kumar K.V } 281379f0be8dSAneesh Kumar K.V 28140ff8947fSEric Sandeen /* We always reserve for an inode update; the superblock could be there too */ 28150ff8947fSEric Sandeen static int ext4_da_write_credits(struct inode *inode, loff_t pos, unsigned len) 28160ff8947fSEric Sandeen { 2817e2b911c5SDarrick J. Wong if (likely(ext4_has_feature_large_file(inode->i_sb))) 28180ff8947fSEric Sandeen return 1; 28190ff8947fSEric Sandeen 28200ff8947fSEric Sandeen if (pos + len <= 0x7fffffffULL) 28210ff8947fSEric Sandeen return 1; 28220ff8947fSEric Sandeen 28230ff8947fSEric Sandeen /* We might need to update the superblock to set LARGE_FILE */ 28240ff8947fSEric Sandeen return 2; 28250ff8947fSEric Sandeen } 28260ff8947fSEric Sandeen 282764769240SAlex Tomas static int ext4_da_write_begin(struct file *file, struct address_space *mapping, 282864769240SAlex Tomas loff_t pos, unsigned len, unsigned flags, 282964769240SAlex Tomas struct page **pagep, void **fsdata) 283064769240SAlex Tomas { 283172b8ab9dSEric Sandeen int ret, retries = 0; 283264769240SAlex Tomas struct page *page; 283364769240SAlex Tomas pgoff_t index; 283464769240SAlex Tomas struct inode *inode = mapping->host; 283564769240SAlex Tomas handle_t *handle; 283664769240SAlex Tomas 283764769240SAlex Tomas index = pos >> PAGE_CACHE_SHIFT; 283879f0be8dSAneesh Kumar K.V 283979f0be8dSAneesh Kumar K.V if (ext4_nonda_switch(inode->i_sb)) { 284079f0be8dSAneesh Kumar K.V *fsdata = (void *)FALL_BACK_TO_NONDELALLOC; 284179f0be8dSAneesh Kumar K.V return ext4_write_begin(file, mapping, pos, 284279f0be8dSAneesh Kumar K.V len, flags, pagep, fsdata); 284379f0be8dSAneesh Kumar K.V } 284479f0be8dSAneesh Kumar K.V *fsdata = (void *)0; 28459bffad1eSTheodore Ts'o trace_ext4_da_write_begin(inode, pos, len, flags); 28469c3569b5STao Ma 28479c3569b5STao Ma if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) { 28489c3569b5STao Ma ret = ext4_da_write_inline_data_begin(mapping, inode, 28499c3569b5STao Ma pos, len, flags, 28509c3569b5STao Ma pagep, fsdata); 28519c3569b5STao Ma if (ret < 0) 285247564bfbSTheodore Ts'o return ret; 285347564bfbSTheodore Ts'o if (ret == 1) 285447564bfbSTheodore Ts'o return 0; 28559c3569b5STao Ma } 28569c3569b5STao Ma 285747564bfbSTheodore Ts'o /* 285847564bfbSTheodore Ts'o * grab_cache_page_write_begin() can take a long time if the 285947564bfbSTheodore Ts'o * system is thrashing due to memory pressure, or if the page 286047564bfbSTheodore Ts'o * is being written back. So grab it first before we start 286147564bfbSTheodore Ts'o * the transaction handle. This also allows us to allocate 286247564bfbSTheodore Ts'o * the page (if needed) without using GFP_NOFS. 286347564bfbSTheodore Ts'o */ 286447564bfbSTheodore Ts'o retry_grab: 286547564bfbSTheodore Ts'o page = grab_cache_page_write_begin(mapping, index, flags); 286647564bfbSTheodore Ts'o if (!page) 286747564bfbSTheodore Ts'o return -ENOMEM; 286847564bfbSTheodore Ts'o unlock_page(page); 286947564bfbSTheodore Ts'o 287064769240SAlex Tomas /* 287164769240SAlex Tomas * With delayed allocation, we don't log the i_disksize update 287264769240SAlex Tomas * if there is delayed block allocation. But we still need 287364769240SAlex Tomas * to journalling the i_disksize update if writes to the end 287464769240SAlex Tomas * of file which has an already mapped buffer. 287564769240SAlex Tomas */ 287647564bfbSTheodore Ts'o retry_journal: 28770ff8947fSEric Sandeen handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 28780ff8947fSEric Sandeen ext4_da_write_credits(inode, pos, len)); 287964769240SAlex Tomas if (IS_ERR(handle)) { 288047564bfbSTheodore Ts'o page_cache_release(page); 288147564bfbSTheodore Ts'o return PTR_ERR(handle); 288264769240SAlex Tomas } 288364769240SAlex Tomas 288447564bfbSTheodore Ts'o lock_page(page); 288547564bfbSTheodore Ts'o if (page->mapping != mapping) { 288647564bfbSTheodore Ts'o /* The page got truncated from under us */ 288747564bfbSTheodore Ts'o unlock_page(page); 288847564bfbSTheodore Ts'o page_cache_release(page); 2889d5a0d4f7SEric Sandeen ext4_journal_stop(handle); 289047564bfbSTheodore Ts'o goto retry_grab; 2891d5a0d4f7SEric Sandeen } 289247564bfbSTheodore Ts'o /* In case writeback began while the page was unlocked */ 28937afe5aa5SDmitry Monakhov wait_for_stable_page(page); 289464769240SAlex Tomas 28952058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION 28962058f83aSMichael Halcrow ret = ext4_block_write_begin(page, pos, len, 28972058f83aSMichael Halcrow ext4_da_get_block_prep); 28982058f83aSMichael Halcrow #else 28996e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep); 29002058f83aSMichael Halcrow #endif 290164769240SAlex Tomas if (ret < 0) { 290264769240SAlex Tomas unlock_page(page); 290364769240SAlex Tomas ext4_journal_stop(handle); 2904ae4d5372SAneesh Kumar K.V /* 2905ae4d5372SAneesh Kumar K.V * block_write_begin may have instantiated a few blocks 2906ae4d5372SAneesh Kumar K.V * outside i_size. Trim these off again. Don't need 2907ae4d5372SAneesh Kumar K.V * i_size_read because we hold i_mutex. 2908ae4d5372SAneesh Kumar K.V */ 2909ae4d5372SAneesh Kumar K.V if (pos + len > inode->i_size) 2910b9a4207dSJan Kara ext4_truncate_failed_write(inode); 291147564bfbSTheodore Ts'o 291247564bfbSTheodore Ts'o if (ret == -ENOSPC && 291347564bfbSTheodore Ts'o ext4_should_retry_alloc(inode->i_sb, &retries)) 291447564bfbSTheodore Ts'o goto retry_journal; 291547564bfbSTheodore Ts'o 291647564bfbSTheodore Ts'o page_cache_release(page); 291747564bfbSTheodore Ts'o return ret; 291864769240SAlex Tomas } 291964769240SAlex Tomas 292047564bfbSTheodore Ts'o *pagep = page; 292164769240SAlex Tomas return ret; 292264769240SAlex Tomas } 292364769240SAlex Tomas 2924632eaeabSMingming Cao /* 2925632eaeabSMingming Cao * Check if we should update i_disksize 2926632eaeabSMingming Cao * when write to the end of file but not require block allocation 2927632eaeabSMingming Cao */ 2928632eaeabSMingming Cao static int ext4_da_should_update_i_disksize(struct page *page, 2929632eaeabSMingming Cao unsigned long offset) 2930632eaeabSMingming Cao { 2931632eaeabSMingming Cao struct buffer_head *bh; 2932632eaeabSMingming Cao struct inode *inode = page->mapping->host; 2933632eaeabSMingming Cao unsigned int idx; 2934632eaeabSMingming Cao int i; 2935632eaeabSMingming Cao 2936632eaeabSMingming Cao bh = page_buffers(page); 2937632eaeabSMingming Cao idx = offset >> inode->i_blkbits; 2938632eaeabSMingming Cao 2939632eaeabSMingming Cao for (i = 0; i < idx; i++) 2940632eaeabSMingming Cao bh = bh->b_this_page; 2941632eaeabSMingming Cao 294229fa89d0SAneesh Kumar K.V if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh)) 2943632eaeabSMingming Cao return 0; 2944632eaeabSMingming Cao return 1; 2945632eaeabSMingming Cao } 2946632eaeabSMingming Cao 294764769240SAlex Tomas static int ext4_da_write_end(struct file *file, 294864769240SAlex Tomas struct address_space *mapping, 294964769240SAlex Tomas loff_t pos, unsigned len, unsigned copied, 295064769240SAlex Tomas struct page *page, void *fsdata) 295164769240SAlex Tomas { 295264769240SAlex Tomas struct inode *inode = mapping->host; 295364769240SAlex Tomas int ret = 0, ret2; 295464769240SAlex Tomas handle_t *handle = ext4_journal_current_handle(); 295564769240SAlex Tomas loff_t new_i_size; 2956632eaeabSMingming Cao unsigned long start, end; 295779f0be8dSAneesh Kumar K.V int write_mode = (int)(unsigned long)fsdata; 295879f0be8dSAneesh Kumar K.V 295974d553aaSTheodore Ts'o if (write_mode == FALL_BACK_TO_NONDELALLOC) 296074d553aaSTheodore Ts'o return ext4_write_end(file, mapping, pos, 296179f0be8dSAneesh Kumar K.V len, copied, page, fsdata); 2962632eaeabSMingming Cao 29639bffad1eSTheodore Ts'o trace_ext4_da_write_end(inode, pos, len, copied); 2964632eaeabSMingming Cao start = pos & (PAGE_CACHE_SIZE - 1); 2965632eaeabSMingming Cao end = start + copied - 1; 296664769240SAlex Tomas 296764769240SAlex Tomas /* 296864769240SAlex Tomas * generic_write_end() will run mark_inode_dirty() if i_size 296964769240SAlex Tomas * changes. So let's piggyback the i_disksize mark_inode_dirty 297064769240SAlex Tomas * into that. 297164769240SAlex Tomas */ 297264769240SAlex Tomas new_i_size = pos + copied; 2973ea51d132SAndrea Arcangeli if (copied && new_i_size > EXT4_I(inode)->i_disksize) { 29749c3569b5STao Ma if (ext4_has_inline_data(inode) || 29759c3569b5STao Ma ext4_da_should_update_i_disksize(page, end)) { 2976ee124d27SDmitry Monakhov ext4_update_i_disksize(inode, new_i_size); 2977cf17fea6SAneesh Kumar K.V /* We need to mark inode dirty even if 2978cf17fea6SAneesh Kumar K.V * new_i_size is less that inode->i_size 2979cf17fea6SAneesh Kumar K.V * bu greater than i_disksize.(hint delalloc) 2980cf17fea6SAneesh Kumar K.V */ 2981cf17fea6SAneesh Kumar K.V ext4_mark_inode_dirty(handle, inode); 2982632eaeabSMingming Cao } 2983632eaeabSMingming Cao } 29849c3569b5STao Ma 29859c3569b5STao Ma if (write_mode != CONVERT_INLINE_DATA && 29869c3569b5STao Ma ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) && 29879c3569b5STao Ma ext4_has_inline_data(inode)) 29889c3569b5STao Ma ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied, 29899c3569b5STao Ma page); 29909c3569b5STao Ma else 299164769240SAlex Tomas ret2 = generic_write_end(file, mapping, pos, len, copied, 299264769240SAlex Tomas page, fsdata); 29939c3569b5STao Ma 299464769240SAlex Tomas copied = ret2; 299564769240SAlex Tomas if (ret2 < 0) 299664769240SAlex Tomas ret = ret2; 299764769240SAlex Tomas ret2 = ext4_journal_stop(handle); 299864769240SAlex Tomas if (!ret) 299964769240SAlex Tomas ret = ret2; 300064769240SAlex Tomas 300164769240SAlex Tomas return ret ? ret : copied; 300264769240SAlex Tomas } 300364769240SAlex Tomas 3004d47992f8SLukas Czerner static void ext4_da_invalidatepage(struct page *page, unsigned int offset, 3005d47992f8SLukas Czerner unsigned int length) 300664769240SAlex Tomas { 300764769240SAlex Tomas /* 300864769240SAlex Tomas * Drop reserved blocks 300964769240SAlex Tomas */ 301064769240SAlex Tomas BUG_ON(!PageLocked(page)); 301164769240SAlex Tomas if (!page_has_buffers(page)) 301264769240SAlex Tomas goto out; 301364769240SAlex Tomas 3014ca99fdd2SLukas Czerner ext4_da_page_release_reservation(page, offset, length); 301564769240SAlex Tomas 301664769240SAlex Tomas out: 3017d47992f8SLukas Czerner ext4_invalidatepage(page, offset, length); 301864769240SAlex Tomas 301964769240SAlex Tomas return; 302064769240SAlex Tomas } 302164769240SAlex Tomas 3022ccd2506bSTheodore Ts'o /* 3023ccd2506bSTheodore Ts'o * Force all delayed allocation blocks to be allocated for a given inode. 3024ccd2506bSTheodore Ts'o */ 3025ccd2506bSTheodore Ts'o int ext4_alloc_da_blocks(struct inode *inode) 3026ccd2506bSTheodore Ts'o { 3027fb40ba0dSTheodore Ts'o trace_ext4_alloc_da_blocks(inode); 3028fb40ba0dSTheodore Ts'o 302971d4f7d0STheodore Ts'o if (!EXT4_I(inode)->i_reserved_data_blocks) 3030ccd2506bSTheodore Ts'o return 0; 3031ccd2506bSTheodore Ts'o 3032ccd2506bSTheodore Ts'o /* 3033ccd2506bSTheodore Ts'o * We do something simple for now. The filemap_flush() will 3034ccd2506bSTheodore Ts'o * also start triggering a write of the data blocks, which is 3035ccd2506bSTheodore Ts'o * not strictly speaking necessary (and for users of 3036ccd2506bSTheodore Ts'o * laptop_mode, not even desirable). However, to do otherwise 3037ccd2506bSTheodore Ts'o * would require replicating code paths in: 3038ccd2506bSTheodore Ts'o * 303920970ba6STheodore Ts'o * ext4_writepages() -> 3040ccd2506bSTheodore Ts'o * write_cache_pages() ---> (via passed in callback function) 3041ccd2506bSTheodore Ts'o * __mpage_da_writepage() --> 3042ccd2506bSTheodore Ts'o * mpage_add_bh_to_extent() 3043ccd2506bSTheodore Ts'o * mpage_da_map_blocks() 3044ccd2506bSTheodore Ts'o * 3045ccd2506bSTheodore Ts'o * The problem is that write_cache_pages(), located in 3046ccd2506bSTheodore Ts'o * mm/page-writeback.c, marks pages clean in preparation for 3047ccd2506bSTheodore Ts'o * doing I/O, which is not desirable if we're not planning on 3048ccd2506bSTheodore Ts'o * doing I/O at all. 3049ccd2506bSTheodore Ts'o * 3050ccd2506bSTheodore Ts'o * We could call write_cache_pages(), and then redirty all of 3051380cf090SWu Fengguang * the pages by calling redirty_page_for_writepage() but that 3052ccd2506bSTheodore Ts'o * would be ugly in the extreme. So instead we would need to 3053ccd2506bSTheodore Ts'o * replicate parts of the code in the above functions, 305425985edcSLucas De Marchi * simplifying them because we wouldn't actually intend to 3055ccd2506bSTheodore Ts'o * write out the pages, but rather only collect contiguous 3056ccd2506bSTheodore Ts'o * logical block extents, call the multi-block allocator, and 3057ccd2506bSTheodore Ts'o * then update the buffer heads with the block allocations. 3058ccd2506bSTheodore Ts'o * 3059ccd2506bSTheodore Ts'o * For now, though, we'll cheat by calling filemap_flush(), 3060ccd2506bSTheodore Ts'o * which will map the blocks, and start the I/O, but not 3061ccd2506bSTheodore Ts'o * actually wait for the I/O to complete. 3062ccd2506bSTheodore Ts'o */ 3063ccd2506bSTheodore Ts'o return filemap_flush(inode->i_mapping); 3064ccd2506bSTheodore Ts'o } 306564769240SAlex Tomas 306664769240SAlex Tomas /* 3067ac27a0ecSDave Kleikamp * bmap() is special. It gets used by applications such as lilo and by 3068ac27a0ecSDave Kleikamp * the swapper to find the on-disk block of a specific piece of data. 3069ac27a0ecSDave Kleikamp * 3070ac27a0ecSDave Kleikamp * Naturally, this is dangerous if the block concerned is still in the 3071617ba13bSMingming Cao * journal. If somebody makes a swapfile on an ext4 data-journaling 3072ac27a0ecSDave Kleikamp * filesystem and enables swap, then they may get a nasty shock when the 3073ac27a0ecSDave Kleikamp * data getting swapped to that swapfile suddenly gets overwritten by 3074ac27a0ecSDave Kleikamp * the original zero's written out previously to the journal and 3075ac27a0ecSDave Kleikamp * awaiting writeback in the kernel's buffer cache. 3076ac27a0ecSDave Kleikamp * 3077ac27a0ecSDave Kleikamp * So, if we see any bmap calls here on a modified, data-journaled file, 3078ac27a0ecSDave Kleikamp * take extra steps to flush any blocks which might be in the cache. 3079ac27a0ecSDave Kleikamp */ 3080617ba13bSMingming Cao static sector_t ext4_bmap(struct address_space *mapping, sector_t block) 3081ac27a0ecSDave Kleikamp { 3082ac27a0ecSDave Kleikamp struct inode *inode = mapping->host; 3083ac27a0ecSDave Kleikamp journal_t *journal; 3084ac27a0ecSDave Kleikamp int err; 3085ac27a0ecSDave Kleikamp 308646c7f254STao Ma /* 308746c7f254STao Ma * We can get here for an inline file via the FIBMAP ioctl 308846c7f254STao Ma */ 308946c7f254STao Ma if (ext4_has_inline_data(inode)) 309046c7f254STao Ma return 0; 309146c7f254STao Ma 309264769240SAlex Tomas if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) && 309364769240SAlex Tomas test_opt(inode->i_sb, DELALLOC)) { 309464769240SAlex Tomas /* 309564769240SAlex Tomas * With delalloc we want to sync the file 309664769240SAlex Tomas * so that we can make sure we allocate 309764769240SAlex Tomas * blocks for file 309864769240SAlex Tomas */ 309964769240SAlex Tomas filemap_write_and_wait(mapping); 310064769240SAlex Tomas } 310164769240SAlex Tomas 310219f5fb7aSTheodore Ts'o if (EXT4_JOURNAL(inode) && 310319f5fb7aSTheodore Ts'o ext4_test_inode_state(inode, EXT4_STATE_JDATA)) { 3104ac27a0ecSDave Kleikamp /* 3105ac27a0ecSDave Kleikamp * This is a REALLY heavyweight approach, but the use of 3106ac27a0ecSDave Kleikamp * bmap on dirty files is expected to be extremely rare: 3107ac27a0ecSDave Kleikamp * only if we run lilo or swapon on a freshly made file 3108ac27a0ecSDave Kleikamp * do we expect this to happen. 3109ac27a0ecSDave Kleikamp * 3110ac27a0ecSDave Kleikamp * (bmap requires CAP_SYS_RAWIO so this does not 3111ac27a0ecSDave Kleikamp * represent an unprivileged user DOS attack --- we'd be 3112ac27a0ecSDave Kleikamp * in trouble if mortal users could trigger this path at 3113ac27a0ecSDave Kleikamp * will.) 3114ac27a0ecSDave Kleikamp * 3115617ba13bSMingming Cao * NB. EXT4_STATE_JDATA is not set on files other than 3116ac27a0ecSDave Kleikamp * regular files. If somebody wants to bmap a directory 3117ac27a0ecSDave Kleikamp * or symlink and gets confused because the buffer 3118ac27a0ecSDave Kleikamp * hasn't yet been flushed to disk, they deserve 3119ac27a0ecSDave Kleikamp * everything they get. 3120ac27a0ecSDave Kleikamp */ 3121ac27a0ecSDave Kleikamp 312219f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_JDATA); 3123617ba13bSMingming Cao journal = EXT4_JOURNAL(inode); 3124dab291afSMingming Cao jbd2_journal_lock_updates(journal); 3125dab291afSMingming Cao err = jbd2_journal_flush(journal); 3126dab291afSMingming Cao jbd2_journal_unlock_updates(journal); 3127ac27a0ecSDave Kleikamp 3128ac27a0ecSDave Kleikamp if (err) 3129ac27a0ecSDave Kleikamp return 0; 3130ac27a0ecSDave Kleikamp } 3131ac27a0ecSDave Kleikamp 3132617ba13bSMingming Cao return generic_block_bmap(mapping, block, ext4_get_block); 3133ac27a0ecSDave Kleikamp } 3134ac27a0ecSDave Kleikamp 3135617ba13bSMingming Cao static int ext4_readpage(struct file *file, struct page *page) 3136ac27a0ecSDave Kleikamp { 313746c7f254STao Ma int ret = -EAGAIN; 313846c7f254STao Ma struct inode *inode = page->mapping->host; 313946c7f254STao Ma 31400562e0baSJiaying Zhang trace_ext4_readpage(page); 314146c7f254STao Ma 314246c7f254STao Ma if (ext4_has_inline_data(inode)) 314346c7f254STao Ma ret = ext4_readpage_inline(inode, page); 314446c7f254STao Ma 314546c7f254STao Ma if (ret == -EAGAIN) 3146f64e02feSTheodore Ts'o return ext4_mpage_readpages(page->mapping, NULL, page, 1); 314746c7f254STao Ma 314846c7f254STao Ma return ret; 3149ac27a0ecSDave Kleikamp } 3150ac27a0ecSDave Kleikamp 3151ac27a0ecSDave Kleikamp static int 3152617ba13bSMingming Cao ext4_readpages(struct file *file, struct address_space *mapping, 3153ac27a0ecSDave Kleikamp struct list_head *pages, unsigned nr_pages) 3154ac27a0ecSDave Kleikamp { 315546c7f254STao Ma struct inode *inode = mapping->host; 315646c7f254STao Ma 315746c7f254STao Ma /* If the file has inline data, no need to do readpages. */ 315846c7f254STao Ma if (ext4_has_inline_data(inode)) 315946c7f254STao Ma return 0; 316046c7f254STao Ma 3161f64e02feSTheodore Ts'o return ext4_mpage_readpages(mapping, pages, NULL, nr_pages); 3162ac27a0ecSDave Kleikamp } 3163ac27a0ecSDave Kleikamp 3164d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset, 3165d47992f8SLukas Czerner unsigned int length) 3166ac27a0ecSDave Kleikamp { 3167ca99fdd2SLukas Czerner trace_ext4_invalidatepage(page, offset, length); 31680562e0baSJiaying Zhang 31694520fb3cSJan Kara /* No journalling happens on data buffers when this function is used */ 31704520fb3cSJan Kara WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page))); 31714520fb3cSJan Kara 3172ca99fdd2SLukas Czerner block_invalidatepage(page, offset, length); 31734520fb3cSJan Kara } 31744520fb3cSJan Kara 317553e87268SJan Kara static int __ext4_journalled_invalidatepage(struct page *page, 3176ca99fdd2SLukas Czerner unsigned int offset, 3177ca99fdd2SLukas Czerner unsigned int length) 31784520fb3cSJan Kara { 31794520fb3cSJan Kara journal_t *journal = EXT4_JOURNAL(page->mapping->host); 31804520fb3cSJan Kara 3181ca99fdd2SLukas Czerner trace_ext4_journalled_invalidatepage(page, offset, length); 31824520fb3cSJan Kara 3183744692dcSJiaying Zhang /* 3184ac27a0ecSDave Kleikamp * If it's a full truncate we just forget about the pending dirtying 3185ac27a0ecSDave Kleikamp */ 3186ca99fdd2SLukas Czerner if (offset == 0 && length == PAGE_CACHE_SIZE) 3187ac27a0ecSDave Kleikamp ClearPageChecked(page); 3188ac27a0ecSDave Kleikamp 3189ca99fdd2SLukas Czerner return jbd2_journal_invalidatepage(journal, page, offset, length); 319053e87268SJan Kara } 319153e87268SJan Kara 319253e87268SJan Kara /* Wrapper for aops... */ 319353e87268SJan Kara static void ext4_journalled_invalidatepage(struct page *page, 3194d47992f8SLukas Czerner unsigned int offset, 3195d47992f8SLukas Czerner unsigned int length) 319653e87268SJan Kara { 3197ca99fdd2SLukas Czerner WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0); 3198ac27a0ecSDave Kleikamp } 3199ac27a0ecSDave Kleikamp 3200617ba13bSMingming Cao static int ext4_releasepage(struct page *page, gfp_t wait) 3201ac27a0ecSDave Kleikamp { 3202617ba13bSMingming Cao journal_t *journal = EXT4_JOURNAL(page->mapping->host); 3203ac27a0ecSDave Kleikamp 32040562e0baSJiaying Zhang trace_ext4_releasepage(page); 32050562e0baSJiaying Zhang 3206e1c36595SJan Kara /* Page has dirty journalled data -> cannot release */ 3207e1c36595SJan Kara if (PageChecked(page)) 3208ac27a0ecSDave Kleikamp return 0; 32090390131bSFrank Mayhar if (journal) 3210dab291afSMingming Cao return jbd2_journal_try_to_free_buffers(journal, page, wait); 32110390131bSFrank Mayhar else 32120390131bSFrank Mayhar return try_to_free_buffers(page); 3213ac27a0ecSDave Kleikamp } 3214ac27a0ecSDave Kleikamp 3215ba5843f5SJan Kara #ifdef CONFIG_FS_DAX 3216ba5843f5SJan Kara int ext4_dax_mmap_get_block(struct inode *inode, sector_t iblock, 3217ed923b57SMatthew Wilcox struct buffer_head *bh_result, int create) 3218ed923b57SMatthew Wilcox { 3219ba5843f5SJan Kara int ret, err; 3220ba5843f5SJan Kara int credits; 3221ba5843f5SJan Kara struct ext4_map_blocks map; 3222ba5843f5SJan Kara handle_t *handle = NULL; 3223ba5843f5SJan Kara int flags = 0; 3224c86d8db3SJan Kara 3225ba5843f5SJan Kara ext4_debug("ext4_dax_mmap_get_block: inode %lu, create flag %d\n", 3226ed923b57SMatthew Wilcox inode->i_ino, create); 3227ba5843f5SJan Kara map.m_lblk = iblock; 3228ba5843f5SJan Kara map.m_len = bh_result->b_size >> inode->i_blkbits; 3229ba5843f5SJan Kara credits = ext4_chunk_trans_blocks(inode, map.m_len); 3230ba5843f5SJan Kara if (create) { 3231ba5843f5SJan Kara flags |= EXT4_GET_BLOCKS_PRE_IO | EXT4_GET_BLOCKS_CREATE_ZERO; 3232ba5843f5SJan Kara handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, credits); 3233ba5843f5SJan Kara if (IS_ERR(handle)) { 3234ba5843f5SJan Kara ret = PTR_ERR(handle); 3235ba5843f5SJan Kara return ret; 3236ed923b57SMatthew Wilcox } 3237ba5843f5SJan Kara } 3238ba5843f5SJan Kara 3239ba5843f5SJan Kara ret = ext4_map_blocks(handle, inode, &map, flags); 3240ba5843f5SJan Kara if (create) { 3241ba5843f5SJan Kara err = ext4_journal_stop(handle); 3242ba5843f5SJan Kara if (ret >= 0 && err < 0) 3243ba5843f5SJan Kara ret = err; 3244ba5843f5SJan Kara } 3245ba5843f5SJan Kara if (ret <= 0) 3246ba5843f5SJan Kara goto out; 3247ba5843f5SJan Kara if (map.m_flags & EXT4_MAP_UNWRITTEN) { 3248ba5843f5SJan Kara int err2; 3249ba5843f5SJan Kara 3250ba5843f5SJan Kara /* 3251ba5843f5SJan Kara * We are protected by i_mmap_sem so we know block cannot go 3252ba5843f5SJan Kara * away from under us even though we dropped i_data_sem. 3253ba5843f5SJan Kara * Convert extent to written and write zeros there. 3254ba5843f5SJan Kara * 3255ba5843f5SJan Kara * Note: We may get here even when create == 0. 3256ba5843f5SJan Kara */ 3257ba5843f5SJan Kara handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, credits); 3258ba5843f5SJan Kara if (IS_ERR(handle)) { 3259ba5843f5SJan Kara ret = PTR_ERR(handle); 3260ba5843f5SJan Kara goto out; 3261ba5843f5SJan Kara } 3262ba5843f5SJan Kara 3263ba5843f5SJan Kara err = ext4_map_blocks(handle, inode, &map, 3264ba5843f5SJan Kara EXT4_GET_BLOCKS_CONVERT | EXT4_GET_BLOCKS_CREATE_ZERO); 3265ba5843f5SJan Kara if (err < 0) 3266ba5843f5SJan Kara ret = err; 3267ba5843f5SJan Kara err2 = ext4_journal_stop(handle); 3268ba5843f5SJan Kara if (err2 < 0 && ret > 0) 3269ba5843f5SJan Kara ret = err2; 3270ba5843f5SJan Kara } 3271ba5843f5SJan Kara out: 3272ba5843f5SJan Kara WARN_ON_ONCE(ret == 0 && create); 3273ba5843f5SJan Kara if (ret > 0) { 3274ba5843f5SJan Kara map_bh(bh_result, inode->i_sb, map.m_pblk); 3275ba5843f5SJan Kara /* 3276ba5843f5SJan Kara * At least for now we have to clear BH_New so that DAX code 3277ba5843f5SJan Kara * doesn't attempt to zero blocks again in a racy way. 3278ba5843f5SJan Kara */ 3279e3fb8eb1SJan Kara map.m_flags &= ~EXT4_MAP_NEW; 3280e3fb8eb1SJan Kara ext4_update_bh_state(bh_result, map.m_flags); 3281ba5843f5SJan Kara bh_result->b_size = map.m_len << inode->i_blkbits; 3282ba5843f5SJan Kara ret = 0; 3283ba5843f5SJan Kara } 3284ba5843f5SJan Kara return ret; 3285ba5843f5SJan Kara } 3286ba5843f5SJan Kara #endif 3287ed923b57SMatthew Wilcox 32884c0425ffSMingming Cao static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset, 32897b7a8665SChristoph Hellwig ssize_t size, void *private) 32904c0425ffSMingming Cao { 3291109811c2SJan Kara ext4_io_end_t *io_end = private; 32924c0425ffSMingming Cao 329397a851edSJan Kara /* if not async direct IO just return */ 32947b7a8665SChristoph Hellwig if (!io_end) 329597a851edSJan Kara return; 32964b70df18SMingming 32978d5d02e6SMingming Cao ext_debug("ext4_end_io_dio(): io_end 0x%p " 3298ace36ad4SJoe Perches "for inode %lu, iocb 0x%p, offset %llu, size %zd\n", 3299109811c2SJan Kara io_end, io_end->inode->i_ino, iocb, offset, size); 33008d5d02e6SMingming Cao 33014c0425ffSMingming Cao io_end->offset = offset; 33024c0425ffSMingming Cao io_end->size = size; 33037b7a8665SChristoph Hellwig ext4_put_io_end(io_end); 33044c0425ffSMingming Cao } 3305c7064ef1SJiaying Zhang 33064c0425ffSMingming Cao /* 33074c0425ffSMingming Cao * For ext4 extent files, ext4 will do direct-io write to holes, 33084c0425ffSMingming Cao * preallocated extents, and those write extend the file, no need to 33094c0425ffSMingming Cao * fall back to buffered IO. 33104c0425ffSMingming Cao * 3311556615dcSLukas Czerner * For holes, we fallocate those blocks, mark them as unwritten 331269c499d1STheodore Ts'o * If those blocks were preallocated, we mark sure they are split, but 3313556615dcSLukas Czerner * still keep the range to write as unwritten. 33144c0425ffSMingming Cao * 331569c499d1STheodore Ts'o * The unwritten extents will be converted to written when DIO is completed. 33168d5d02e6SMingming Cao * For async direct IO, since the IO may still pending when return, we 331725985edcSLucas De Marchi * set up an end_io call back function, which will do the conversion 33188d5d02e6SMingming Cao * when async direct IO completed. 33194c0425ffSMingming Cao * 33204c0425ffSMingming Cao * If the O_DIRECT write will extend the file then add this inode to the 33214c0425ffSMingming Cao * orphan list. So recovery will truncate it back to the original size 33224c0425ffSMingming Cao * if the machine crashes during the write. 33234c0425ffSMingming Cao * 33244c0425ffSMingming Cao */ 33256f673763SOmar Sandoval static ssize_t ext4_ext_direct_IO(struct kiocb *iocb, struct iov_iter *iter, 33266f673763SOmar Sandoval loff_t offset) 33274c0425ffSMingming Cao { 33284c0425ffSMingming Cao struct file *file = iocb->ki_filp; 33294c0425ffSMingming Cao struct inode *inode = file->f_mapping->host; 33304c0425ffSMingming Cao ssize_t ret; 3331a6cbcd4aSAl Viro size_t count = iov_iter_count(iter); 3332729f52c6SZheng Liu int overwrite = 0; 33338b0f165fSAnatol Pomozov get_block_t *get_block_func = NULL; 33348b0f165fSAnatol Pomozov int dio_flags = 0; 333569c499d1STheodore Ts'o loff_t final_size = offset + count; 333669c499d1STheodore Ts'o 333769c499d1STheodore Ts'o /* Use the old path for reads and writes beyond i_size. */ 33386f673763SOmar Sandoval if (iov_iter_rw(iter) != WRITE || final_size > inode->i_size) 33396f673763SOmar Sandoval return ext4_ind_direct_IO(iocb, iter, offset); 3340729f52c6SZheng Liu 33414bd809dbSZheng Liu BUG_ON(iocb->private == NULL); 33424bd809dbSZheng Liu 3343e8340395SJan Kara /* 3344e8340395SJan Kara * Make all waiters for direct IO properly wait also for extent 3345e8340395SJan Kara * conversion. This also disallows race between truncate() and 3346e8340395SJan Kara * overwrite DIO as i_dio_count needs to be incremented under i_mutex. 3347e8340395SJan Kara */ 33486f673763SOmar Sandoval if (iov_iter_rw(iter) == WRITE) 3349fe0f07d0SJens Axboe inode_dio_begin(inode); 3350e8340395SJan Kara 33514bd809dbSZheng Liu /* If we do a overwrite dio, i_mutex locking can be released */ 33524bd809dbSZheng Liu overwrite = *((int *)iocb->private); 33534bd809dbSZheng Liu 33542dcba478SJan Kara if (overwrite) 33555955102cSAl Viro inode_unlock(inode); 33564bd809dbSZheng Liu 33574c0425ffSMingming Cao /* 33588d5d02e6SMingming Cao * We could direct write to holes and fallocate. 33598d5d02e6SMingming Cao * 3360109811c2SJan Kara * Allocated blocks to fill the hole are marked as unwritten to prevent 3361109811c2SJan Kara * parallel buffered read to expose the stale data before DIO complete 3362109811c2SJan Kara * the data IO. 33638d5d02e6SMingming Cao * 3364109811c2SJan Kara * As to previously fallocated extents, ext4 get_block will just simply 3365109811c2SJan Kara * mark the buffer mapped but still keep the extents unwritten. 33664c0425ffSMingming Cao * 3367109811c2SJan Kara * For non AIO case, we will convert those unwritten extents to written 3368109811c2SJan Kara * after return back from blockdev_direct_IO. That way we save us from 3369109811c2SJan Kara * allocating io_end structure and also the overhead of offloading 3370109811c2SJan Kara * the extent convertion to a workqueue. 33714c0425ffSMingming Cao * 337269c499d1STheodore Ts'o * For async DIO, the conversion needs to be deferred when the 337369c499d1STheodore Ts'o * IO is completed. The ext4 end_io callback function will be 337469c499d1STheodore Ts'o * called to take care of the conversion work. Here for async 337569c499d1STheodore Ts'o * case, we allocate an io_end structure to hook to the iocb. 33764c0425ffSMingming Cao */ 33778d5d02e6SMingming Cao iocb->private = NULL; 3378109811c2SJan Kara if (overwrite) 3379705965bdSJan Kara get_block_func = ext4_dio_get_block_overwrite; 3380109811c2SJan Kara else if (is_sync_kiocb(iocb)) { 3381109811c2SJan Kara get_block_func = ext4_dio_get_block_unwritten_sync; 3382109811c2SJan Kara dio_flags = DIO_LOCKING; 338374dae427SJan Kara } else { 3384109811c2SJan Kara get_block_func = ext4_dio_get_block_unwritten_async; 33858b0f165fSAnatol Pomozov dio_flags = DIO_LOCKING; 33868b0f165fSAnatol Pomozov } 33872058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION 33882058f83aSMichael Halcrow BUG_ON(ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode)); 33892058f83aSMichael Halcrow #endif 3390923ae0ffSRoss Zwisler if (IS_DAX(inode)) 3391a95cd631SOmar Sandoval ret = dax_do_io(iocb, inode, iter, offset, get_block_func, 3392923ae0ffSRoss Zwisler ext4_end_io_dio, dio_flags); 3393923ae0ffSRoss Zwisler else 339417f8c842SOmar Sandoval ret = __blockdev_direct_IO(iocb, inode, 3395923ae0ffSRoss Zwisler inode->i_sb->s_bdev, iter, offset, 33968b0f165fSAnatol Pomozov get_block_func, 3397923ae0ffSRoss Zwisler ext4_end_io_dio, NULL, dio_flags); 33988b0f165fSAnatol Pomozov 339997a851edSJan Kara if (ret > 0 && !overwrite && ext4_test_inode_state(inode, 34005f524950SMingming EXT4_STATE_DIO_UNWRITTEN)) { 3401109f5565SMingming int err; 34028d5d02e6SMingming Cao /* 34038d5d02e6SMingming Cao * for non AIO case, since the IO is already 340425985edcSLucas De Marchi * completed, we could do the conversion right here 34058d5d02e6SMingming Cao */ 34066b523df4SJan Kara err = ext4_convert_unwritten_extents(NULL, inode, 34078d5d02e6SMingming Cao offset, ret); 3408109f5565SMingming if (err < 0) 3409109f5565SMingming ret = err; 341019f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN); 3411109f5565SMingming } 34124bd809dbSZheng Liu 34136f673763SOmar Sandoval if (iov_iter_rw(iter) == WRITE) 3414fe0f07d0SJens Axboe inode_dio_end(inode); 34154bd809dbSZheng Liu /* take i_mutex locking again if we do a ovewrite dio */ 34162dcba478SJan Kara if (overwrite) 34175955102cSAl Viro inode_lock(inode); 34184bd809dbSZheng Liu 34194c0425ffSMingming Cao return ret; 34204c0425ffSMingming Cao } 34218d5d02e6SMingming Cao 342222c6186eSOmar Sandoval static ssize_t ext4_direct_IO(struct kiocb *iocb, struct iov_iter *iter, 342322c6186eSOmar Sandoval loff_t offset) 34244c0425ffSMingming Cao { 34254c0425ffSMingming Cao struct file *file = iocb->ki_filp; 34264c0425ffSMingming Cao struct inode *inode = file->f_mapping->host; 3427a6cbcd4aSAl Viro size_t count = iov_iter_count(iter); 34280562e0baSJiaying Zhang ssize_t ret; 34294c0425ffSMingming Cao 34302058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION 34312058f83aSMichael Halcrow if (ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode)) 34322058f83aSMichael Halcrow return 0; 34332058f83aSMichael Halcrow #endif 34342058f83aSMichael Halcrow 343584ebd795STheodore Ts'o /* 343684ebd795STheodore Ts'o * If we are doing data journalling we don't support O_DIRECT 343784ebd795STheodore Ts'o */ 343884ebd795STheodore Ts'o if (ext4_should_journal_data(inode)) 343984ebd795STheodore Ts'o return 0; 344084ebd795STheodore Ts'o 344146c7f254STao Ma /* Let buffer I/O handle the inline data case. */ 344246c7f254STao Ma if (ext4_has_inline_data(inode)) 344346c7f254STao Ma return 0; 344446c7f254STao Ma 34456f673763SOmar Sandoval trace_ext4_direct_IO_enter(inode, offset, count, iov_iter_rw(iter)); 344612e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 34476f673763SOmar Sandoval ret = ext4_ext_direct_IO(iocb, iter, offset); 34480562e0baSJiaying Zhang else 34496f673763SOmar Sandoval ret = ext4_ind_direct_IO(iocb, iter, offset); 34506f673763SOmar Sandoval trace_ext4_direct_IO_exit(inode, offset, count, iov_iter_rw(iter), ret); 34510562e0baSJiaying Zhang return ret; 34524c0425ffSMingming Cao } 34534c0425ffSMingming Cao 3454ac27a0ecSDave Kleikamp /* 3455617ba13bSMingming Cao * Pages can be marked dirty completely asynchronously from ext4's journalling 3456ac27a0ecSDave Kleikamp * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do 3457ac27a0ecSDave Kleikamp * much here because ->set_page_dirty is called under VFS locks. The page is 3458ac27a0ecSDave Kleikamp * not necessarily locked. 3459ac27a0ecSDave Kleikamp * 3460ac27a0ecSDave Kleikamp * We cannot just dirty the page and leave attached buffers clean, because the 3461ac27a0ecSDave Kleikamp * buffers' dirty state is "definitive". We cannot just set the buffers dirty 3462ac27a0ecSDave Kleikamp * or jbddirty because all the journalling code will explode. 3463ac27a0ecSDave Kleikamp * 3464ac27a0ecSDave Kleikamp * So what we do is to mark the page "pending dirty" and next time writepage 3465ac27a0ecSDave Kleikamp * is called, propagate that into the buffers appropriately. 3466ac27a0ecSDave Kleikamp */ 3467617ba13bSMingming Cao static int ext4_journalled_set_page_dirty(struct page *page) 3468ac27a0ecSDave Kleikamp { 3469ac27a0ecSDave Kleikamp SetPageChecked(page); 3470ac27a0ecSDave Kleikamp return __set_page_dirty_nobuffers(page); 3471ac27a0ecSDave Kleikamp } 3472ac27a0ecSDave Kleikamp 347374d553aaSTheodore Ts'o static const struct address_space_operations ext4_aops = { 3474617ba13bSMingming Cao .readpage = ext4_readpage, 3475617ba13bSMingming Cao .readpages = ext4_readpages, 347643ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 347720970ba6STheodore Ts'o .writepages = ext4_writepages, 3478bfc1af65SNick Piggin .write_begin = ext4_write_begin, 347974d553aaSTheodore Ts'o .write_end = ext4_write_end, 3480617ba13bSMingming Cao .bmap = ext4_bmap, 3481617ba13bSMingming Cao .invalidatepage = ext4_invalidatepage, 3482617ba13bSMingming Cao .releasepage = ext4_releasepage, 3483617ba13bSMingming Cao .direct_IO = ext4_direct_IO, 3484ac27a0ecSDave Kleikamp .migratepage = buffer_migrate_page, 34858ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3486aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 3487ac27a0ecSDave Kleikamp }; 3488ac27a0ecSDave Kleikamp 3489617ba13bSMingming Cao static const struct address_space_operations ext4_journalled_aops = { 3490617ba13bSMingming Cao .readpage = ext4_readpage, 3491617ba13bSMingming Cao .readpages = ext4_readpages, 349243ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 349320970ba6STheodore Ts'o .writepages = ext4_writepages, 3494bfc1af65SNick Piggin .write_begin = ext4_write_begin, 3495bfc1af65SNick Piggin .write_end = ext4_journalled_write_end, 3496617ba13bSMingming Cao .set_page_dirty = ext4_journalled_set_page_dirty, 3497617ba13bSMingming Cao .bmap = ext4_bmap, 34984520fb3cSJan Kara .invalidatepage = ext4_journalled_invalidatepage, 3499617ba13bSMingming Cao .releasepage = ext4_releasepage, 350084ebd795STheodore Ts'o .direct_IO = ext4_direct_IO, 35018ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3502aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 3503ac27a0ecSDave Kleikamp }; 3504ac27a0ecSDave Kleikamp 350564769240SAlex Tomas static const struct address_space_operations ext4_da_aops = { 350664769240SAlex Tomas .readpage = ext4_readpage, 350764769240SAlex Tomas .readpages = ext4_readpages, 350843ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 350920970ba6STheodore Ts'o .writepages = ext4_writepages, 351064769240SAlex Tomas .write_begin = ext4_da_write_begin, 351164769240SAlex Tomas .write_end = ext4_da_write_end, 351264769240SAlex Tomas .bmap = ext4_bmap, 351364769240SAlex Tomas .invalidatepage = ext4_da_invalidatepage, 351464769240SAlex Tomas .releasepage = ext4_releasepage, 351564769240SAlex Tomas .direct_IO = ext4_direct_IO, 351664769240SAlex Tomas .migratepage = buffer_migrate_page, 35178ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3518aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 351964769240SAlex Tomas }; 352064769240SAlex Tomas 3521617ba13bSMingming Cao void ext4_set_aops(struct inode *inode) 3522ac27a0ecSDave Kleikamp { 35233d2b1582SLukas Czerner switch (ext4_inode_journal_mode(inode)) { 35243d2b1582SLukas Czerner case EXT4_INODE_ORDERED_DATA_MODE: 352574d553aaSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_ORDERED_MODE); 35263d2b1582SLukas Czerner break; 35273d2b1582SLukas Czerner case EXT4_INODE_WRITEBACK_DATA_MODE: 352874d553aaSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_ORDERED_MODE); 35293d2b1582SLukas Czerner break; 35303d2b1582SLukas Czerner case EXT4_INODE_JOURNAL_DATA_MODE: 3531617ba13bSMingming Cao inode->i_mapping->a_ops = &ext4_journalled_aops; 353274d553aaSTheodore Ts'o return; 35333d2b1582SLukas Czerner default: 35343d2b1582SLukas Czerner BUG(); 35353d2b1582SLukas Czerner } 353674d553aaSTheodore Ts'o if (test_opt(inode->i_sb, DELALLOC)) 353774d553aaSTheodore Ts'o inode->i_mapping->a_ops = &ext4_da_aops; 353874d553aaSTheodore Ts'o else 353974d553aaSTheodore Ts'o inode->i_mapping->a_ops = &ext4_aops; 3540ac27a0ecSDave Kleikamp } 3541ac27a0ecSDave Kleikamp 3542923ae0ffSRoss Zwisler static int __ext4_block_zero_page_range(handle_t *handle, 3543d863dc36SLukas Czerner struct address_space *mapping, loff_t from, loff_t length) 3544d863dc36SLukas Czerner { 3545d863dc36SLukas Czerner ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT; 3546d863dc36SLukas Czerner unsigned offset = from & (PAGE_CACHE_SIZE-1); 3547923ae0ffSRoss Zwisler unsigned blocksize, pos; 3548d863dc36SLukas Czerner ext4_lblk_t iblock; 3549d863dc36SLukas Czerner struct inode *inode = mapping->host; 3550d863dc36SLukas Czerner struct buffer_head *bh; 3551d863dc36SLukas Czerner struct page *page; 3552d863dc36SLukas Czerner int err = 0; 3553d863dc36SLukas Czerner 3554d863dc36SLukas Czerner page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT, 3555c62d2555SMichal Hocko mapping_gfp_constraint(mapping, ~__GFP_FS)); 3556d863dc36SLukas Czerner if (!page) 3557d863dc36SLukas Czerner return -ENOMEM; 3558d863dc36SLukas Czerner 3559d863dc36SLukas Czerner blocksize = inode->i_sb->s_blocksize; 3560d863dc36SLukas Czerner 3561d863dc36SLukas Czerner iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits); 3562d863dc36SLukas Czerner 3563d863dc36SLukas Czerner if (!page_has_buffers(page)) 3564d863dc36SLukas Czerner create_empty_buffers(page, blocksize, 0); 3565d863dc36SLukas Czerner 3566d863dc36SLukas Czerner /* Find the buffer that contains "offset" */ 3567d863dc36SLukas Czerner bh = page_buffers(page); 3568d863dc36SLukas Czerner pos = blocksize; 3569d863dc36SLukas Czerner while (offset >= pos) { 3570d863dc36SLukas Czerner bh = bh->b_this_page; 3571d863dc36SLukas Czerner iblock++; 3572d863dc36SLukas Czerner pos += blocksize; 3573d863dc36SLukas Czerner } 3574d863dc36SLukas Czerner if (buffer_freed(bh)) { 3575d863dc36SLukas Czerner BUFFER_TRACE(bh, "freed: skip"); 3576d863dc36SLukas Czerner goto unlock; 3577d863dc36SLukas Czerner } 3578d863dc36SLukas Czerner if (!buffer_mapped(bh)) { 3579d863dc36SLukas Czerner BUFFER_TRACE(bh, "unmapped"); 3580d863dc36SLukas Czerner ext4_get_block(inode, iblock, bh, 0); 3581d863dc36SLukas Czerner /* unmapped? It's a hole - nothing to do */ 3582d863dc36SLukas Czerner if (!buffer_mapped(bh)) { 3583d863dc36SLukas Czerner BUFFER_TRACE(bh, "still unmapped"); 3584d863dc36SLukas Czerner goto unlock; 3585d863dc36SLukas Czerner } 3586d863dc36SLukas Czerner } 3587d863dc36SLukas Czerner 3588d863dc36SLukas Czerner /* Ok, it's mapped. Make sure it's up-to-date */ 3589d863dc36SLukas Czerner if (PageUptodate(page)) 3590d863dc36SLukas Czerner set_buffer_uptodate(bh); 3591d863dc36SLukas Czerner 3592d863dc36SLukas Czerner if (!buffer_uptodate(bh)) { 3593d863dc36SLukas Czerner err = -EIO; 3594d863dc36SLukas Czerner ll_rw_block(READ, 1, &bh); 3595d863dc36SLukas Czerner wait_on_buffer(bh); 3596d863dc36SLukas Czerner /* Uhhuh. Read error. Complain and punt. */ 3597d863dc36SLukas Czerner if (!buffer_uptodate(bh)) 3598d863dc36SLukas Czerner goto unlock; 3599c9c7429cSMichael Halcrow if (S_ISREG(inode->i_mode) && 3600c9c7429cSMichael Halcrow ext4_encrypted_inode(inode)) { 3601c9c7429cSMichael Halcrow /* We expect the key to be set. */ 3602c9c7429cSMichael Halcrow BUG_ON(!ext4_has_encryption_key(inode)); 3603c9c7429cSMichael Halcrow BUG_ON(blocksize != PAGE_CACHE_SIZE); 36043684de8cSTheodore Ts'o WARN_ON_ONCE(ext4_decrypt(page)); 3605c9c7429cSMichael Halcrow } 3606d863dc36SLukas Czerner } 3607d863dc36SLukas Czerner if (ext4_should_journal_data(inode)) { 3608d863dc36SLukas Czerner BUFFER_TRACE(bh, "get write access"); 3609d863dc36SLukas Czerner err = ext4_journal_get_write_access(handle, bh); 3610d863dc36SLukas Czerner if (err) 3611d863dc36SLukas Czerner goto unlock; 3612d863dc36SLukas Czerner } 3613d863dc36SLukas Czerner zero_user(page, offset, length); 3614d863dc36SLukas Czerner BUFFER_TRACE(bh, "zeroed end of block"); 3615d863dc36SLukas Czerner 3616d863dc36SLukas Czerner if (ext4_should_journal_data(inode)) { 3617d863dc36SLukas Czerner err = ext4_handle_dirty_metadata(handle, inode, bh); 36180713ed0cSLukas Czerner } else { 3619353eefd3Sjon ernst err = 0; 3620d863dc36SLukas Czerner mark_buffer_dirty(bh); 36210713ed0cSLukas Czerner if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) 36220713ed0cSLukas Czerner err = ext4_jbd2_file_inode(handle, inode); 36230713ed0cSLukas Czerner } 3624d863dc36SLukas Czerner 3625d863dc36SLukas Czerner unlock: 3626d863dc36SLukas Czerner unlock_page(page); 3627d863dc36SLukas Czerner page_cache_release(page); 3628d863dc36SLukas Czerner return err; 3629d863dc36SLukas Czerner } 3630d863dc36SLukas Czerner 363194350ab5SMatthew Wilcox /* 3632923ae0ffSRoss Zwisler * ext4_block_zero_page_range() zeros out a mapping of length 'length' 3633923ae0ffSRoss Zwisler * starting from file offset 'from'. The range to be zero'd must 3634923ae0ffSRoss Zwisler * be contained with in one block. If the specified range exceeds 3635923ae0ffSRoss Zwisler * the end of the block it will be shortened to end of the block 3636923ae0ffSRoss Zwisler * that cooresponds to 'from' 3637923ae0ffSRoss Zwisler */ 3638923ae0ffSRoss Zwisler static int ext4_block_zero_page_range(handle_t *handle, 3639923ae0ffSRoss Zwisler struct address_space *mapping, loff_t from, loff_t length) 3640923ae0ffSRoss Zwisler { 3641923ae0ffSRoss Zwisler struct inode *inode = mapping->host; 3642923ae0ffSRoss Zwisler unsigned offset = from & (PAGE_CACHE_SIZE-1); 3643923ae0ffSRoss Zwisler unsigned blocksize = inode->i_sb->s_blocksize; 3644923ae0ffSRoss Zwisler unsigned max = blocksize - (offset & (blocksize - 1)); 3645923ae0ffSRoss Zwisler 3646923ae0ffSRoss Zwisler /* 3647923ae0ffSRoss Zwisler * correct length if it does not fall between 3648923ae0ffSRoss Zwisler * 'from' and the end of the block 3649923ae0ffSRoss Zwisler */ 3650923ae0ffSRoss Zwisler if (length > max || length < 0) 3651923ae0ffSRoss Zwisler length = max; 3652923ae0ffSRoss Zwisler 3653923ae0ffSRoss Zwisler if (IS_DAX(inode)) 3654923ae0ffSRoss Zwisler return dax_zero_page_range(inode, from, length, ext4_get_block); 3655923ae0ffSRoss Zwisler return __ext4_block_zero_page_range(handle, mapping, from, length); 3656923ae0ffSRoss Zwisler } 3657923ae0ffSRoss Zwisler 3658923ae0ffSRoss Zwisler /* 365994350ab5SMatthew Wilcox * ext4_block_truncate_page() zeroes out a mapping from file offset `from' 366094350ab5SMatthew Wilcox * up to the end of the block which corresponds to `from'. 366194350ab5SMatthew Wilcox * This required during truncate. We need to physically zero the tail end 366294350ab5SMatthew Wilcox * of that block so it doesn't yield old data if the file is later grown. 366394350ab5SMatthew Wilcox */ 3664c197855eSStephen Hemminger static int ext4_block_truncate_page(handle_t *handle, 366594350ab5SMatthew Wilcox struct address_space *mapping, loff_t from) 366694350ab5SMatthew Wilcox { 366794350ab5SMatthew Wilcox unsigned offset = from & (PAGE_CACHE_SIZE-1); 366894350ab5SMatthew Wilcox unsigned length; 366994350ab5SMatthew Wilcox unsigned blocksize; 367094350ab5SMatthew Wilcox struct inode *inode = mapping->host; 367194350ab5SMatthew Wilcox 367294350ab5SMatthew Wilcox blocksize = inode->i_sb->s_blocksize; 367394350ab5SMatthew Wilcox length = blocksize - (offset & (blocksize - 1)); 367494350ab5SMatthew Wilcox 367594350ab5SMatthew Wilcox return ext4_block_zero_page_range(handle, mapping, from, length); 367694350ab5SMatthew Wilcox } 367794350ab5SMatthew Wilcox 3678a87dd18cSLukas Czerner int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode, 3679a87dd18cSLukas Czerner loff_t lstart, loff_t length) 3680a87dd18cSLukas Czerner { 3681a87dd18cSLukas Czerner struct super_block *sb = inode->i_sb; 3682a87dd18cSLukas Czerner struct address_space *mapping = inode->i_mapping; 3683e1be3a92SLukas Czerner unsigned partial_start, partial_end; 3684a87dd18cSLukas Czerner ext4_fsblk_t start, end; 3685a87dd18cSLukas Czerner loff_t byte_end = (lstart + length - 1); 3686a87dd18cSLukas Czerner int err = 0; 3687a87dd18cSLukas Czerner 3688e1be3a92SLukas Czerner partial_start = lstart & (sb->s_blocksize - 1); 3689e1be3a92SLukas Czerner partial_end = byte_end & (sb->s_blocksize - 1); 3690e1be3a92SLukas Czerner 3691a87dd18cSLukas Czerner start = lstart >> sb->s_blocksize_bits; 3692a87dd18cSLukas Czerner end = byte_end >> sb->s_blocksize_bits; 3693a87dd18cSLukas Czerner 3694a87dd18cSLukas Czerner /* Handle partial zero within the single block */ 3695e1be3a92SLukas Czerner if (start == end && 3696e1be3a92SLukas Czerner (partial_start || (partial_end != sb->s_blocksize - 1))) { 3697a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3698a87dd18cSLukas Czerner lstart, length); 3699a87dd18cSLukas Czerner return err; 3700a87dd18cSLukas Czerner } 3701a87dd18cSLukas Czerner /* Handle partial zero out on the start of the range */ 3702e1be3a92SLukas Czerner if (partial_start) { 3703a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3704a87dd18cSLukas Czerner lstart, sb->s_blocksize); 3705a87dd18cSLukas Czerner if (err) 3706a87dd18cSLukas Czerner return err; 3707a87dd18cSLukas Czerner } 3708a87dd18cSLukas Czerner /* Handle partial zero out on the end of the range */ 3709e1be3a92SLukas Czerner if (partial_end != sb->s_blocksize - 1) 3710a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3711e1be3a92SLukas Czerner byte_end - partial_end, 3712e1be3a92SLukas Czerner partial_end + 1); 3713a87dd18cSLukas Czerner return err; 3714a87dd18cSLukas Czerner } 3715a87dd18cSLukas Czerner 371691ef4cafSDuane Griffin int ext4_can_truncate(struct inode *inode) 371791ef4cafSDuane Griffin { 371891ef4cafSDuane Griffin if (S_ISREG(inode->i_mode)) 371991ef4cafSDuane Griffin return 1; 372091ef4cafSDuane Griffin if (S_ISDIR(inode->i_mode)) 372191ef4cafSDuane Griffin return 1; 372291ef4cafSDuane Griffin if (S_ISLNK(inode->i_mode)) 372391ef4cafSDuane Griffin return !ext4_inode_is_fast_symlink(inode); 372491ef4cafSDuane Griffin return 0; 372591ef4cafSDuane Griffin } 372691ef4cafSDuane Griffin 3727ac27a0ecSDave Kleikamp /* 372801127848SJan Kara * We have to make sure i_disksize gets properly updated before we truncate 372901127848SJan Kara * page cache due to hole punching or zero range. Otherwise i_disksize update 373001127848SJan Kara * can get lost as it may have been postponed to submission of writeback but 373101127848SJan Kara * that will never happen after we truncate page cache. 373201127848SJan Kara */ 373301127848SJan Kara int ext4_update_disksize_before_punch(struct inode *inode, loff_t offset, 373401127848SJan Kara loff_t len) 373501127848SJan Kara { 373601127848SJan Kara handle_t *handle; 373701127848SJan Kara loff_t size = i_size_read(inode); 373801127848SJan Kara 37395955102cSAl Viro WARN_ON(!inode_is_locked(inode)); 374001127848SJan Kara if (offset > size || offset + len < size) 374101127848SJan Kara return 0; 374201127848SJan Kara 374301127848SJan Kara if (EXT4_I(inode)->i_disksize >= size) 374401127848SJan Kara return 0; 374501127848SJan Kara 374601127848SJan Kara handle = ext4_journal_start(inode, EXT4_HT_MISC, 1); 374701127848SJan Kara if (IS_ERR(handle)) 374801127848SJan Kara return PTR_ERR(handle); 374901127848SJan Kara ext4_update_i_disksize(inode, size); 375001127848SJan Kara ext4_mark_inode_dirty(handle, inode); 375101127848SJan Kara ext4_journal_stop(handle); 375201127848SJan Kara 375301127848SJan Kara return 0; 375401127848SJan Kara } 375501127848SJan Kara 375601127848SJan Kara /* 3757a4bb6b64SAllison Henderson * ext4_punch_hole: punches a hole in a file by releaseing the blocks 3758a4bb6b64SAllison Henderson * associated with the given offset and length 3759a4bb6b64SAllison Henderson * 3760a4bb6b64SAllison Henderson * @inode: File inode 3761a4bb6b64SAllison Henderson * @offset: The offset where the hole will begin 3762a4bb6b64SAllison Henderson * @len: The length of the hole 3763a4bb6b64SAllison Henderson * 37644907cb7bSAnatol Pomozov * Returns: 0 on success or negative on failure 3765a4bb6b64SAllison Henderson */ 3766a4bb6b64SAllison Henderson 3767aeb2817aSAshish Sangwan int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length) 3768a4bb6b64SAllison Henderson { 376926a4c0c6STheodore Ts'o struct super_block *sb = inode->i_sb; 377026a4c0c6STheodore Ts'o ext4_lblk_t first_block, stop_block; 377126a4c0c6STheodore Ts'o struct address_space *mapping = inode->i_mapping; 3772a87dd18cSLukas Czerner loff_t first_block_offset, last_block_offset; 377326a4c0c6STheodore Ts'o handle_t *handle; 377426a4c0c6STheodore Ts'o unsigned int credits; 377526a4c0c6STheodore Ts'o int ret = 0; 377626a4c0c6STheodore Ts'o 3777a4bb6b64SAllison Henderson if (!S_ISREG(inode->i_mode)) 377873355192SAllison Henderson return -EOPNOTSUPP; 3779a4bb6b64SAllison Henderson 3780b8a86845SLukas Czerner trace_ext4_punch_hole(inode, offset, length, 0); 3781aaddea81SZheng Liu 378226a4c0c6STheodore Ts'o /* 378326a4c0c6STheodore Ts'o * Write out all dirty pages to avoid race conditions 378426a4c0c6STheodore Ts'o * Then release them. 378526a4c0c6STheodore Ts'o */ 378626a4c0c6STheodore Ts'o if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) { 378726a4c0c6STheodore Ts'o ret = filemap_write_and_wait_range(mapping, offset, 378826a4c0c6STheodore Ts'o offset + length - 1); 378926a4c0c6STheodore Ts'o if (ret) 379026a4c0c6STheodore Ts'o return ret; 379126a4c0c6STheodore Ts'o } 379226a4c0c6STheodore Ts'o 37935955102cSAl Viro inode_lock(inode); 37949ef06cecSLukas Czerner 379526a4c0c6STheodore Ts'o /* No need to punch hole beyond i_size */ 379626a4c0c6STheodore Ts'o if (offset >= inode->i_size) 379726a4c0c6STheodore Ts'o goto out_mutex; 379826a4c0c6STheodore Ts'o 379926a4c0c6STheodore Ts'o /* 380026a4c0c6STheodore Ts'o * If the hole extends beyond i_size, set the hole 380126a4c0c6STheodore Ts'o * to end after the page that contains i_size 380226a4c0c6STheodore Ts'o */ 380326a4c0c6STheodore Ts'o if (offset + length > inode->i_size) { 380426a4c0c6STheodore Ts'o length = inode->i_size + 380526a4c0c6STheodore Ts'o PAGE_CACHE_SIZE - (inode->i_size & (PAGE_CACHE_SIZE - 1)) - 380626a4c0c6STheodore Ts'o offset; 380726a4c0c6STheodore Ts'o } 380826a4c0c6STheodore Ts'o 3809a361293fSJan Kara if (offset & (sb->s_blocksize - 1) || 3810a361293fSJan Kara (offset + length) & (sb->s_blocksize - 1)) { 3811a361293fSJan Kara /* 3812a361293fSJan Kara * Attach jinode to inode for jbd2 if we do any zeroing of 3813a361293fSJan Kara * partial block 3814a361293fSJan Kara */ 3815a361293fSJan Kara ret = ext4_inode_attach_jinode(inode); 3816a361293fSJan Kara if (ret < 0) 3817a361293fSJan Kara goto out_mutex; 3818a361293fSJan Kara 3819a361293fSJan Kara } 3820a361293fSJan Kara 3821ea3d7209SJan Kara /* Wait all existing dio workers, newcomers will block on i_mutex */ 3822ea3d7209SJan Kara ext4_inode_block_unlocked_dio(inode); 3823ea3d7209SJan Kara inode_dio_wait(inode); 3824ea3d7209SJan Kara 3825ea3d7209SJan Kara /* 3826ea3d7209SJan Kara * Prevent page faults from reinstantiating pages we have released from 3827ea3d7209SJan Kara * page cache. 3828ea3d7209SJan Kara */ 3829ea3d7209SJan Kara down_write(&EXT4_I(inode)->i_mmap_sem); 3830a87dd18cSLukas Czerner first_block_offset = round_up(offset, sb->s_blocksize); 3831a87dd18cSLukas Czerner last_block_offset = round_down((offset + length), sb->s_blocksize) - 1; 383226a4c0c6STheodore Ts'o 3833a87dd18cSLukas Czerner /* Now release the pages and zero block aligned part of pages*/ 383401127848SJan Kara if (last_block_offset > first_block_offset) { 383501127848SJan Kara ret = ext4_update_disksize_before_punch(inode, offset, length); 383601127848SJan Kara if (ret) 383701127848SJan Kara goto out_dio; 3838a87dd18cSLukas Czerner truncate_pagecache_range(inode, first_block_offset, 3839a87dd18cSLukas Czerner last_block_offset); 384001127848SJan Kara } 384126a4c0c6STheodore Ts'o 384226a4c0c6STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 384326a4c0c6STheodore Ts'o credits = ext4_writepage_trans_blocks(inode); 384426a4c0c6STheodore Ts'o else 384526a4c0c6STheodore Ts'o credits = ext4_blocks_for_truncate(inode); 384626a4c0c6STheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits); 384726a4c0c6STheodore Ts'o if (IS_ERR(handle)) { 384826a4c0c6STheodore Ts'o ret = PTR_ERR(handle); 384926a4c0c6STheodore Ts'o ext4_std_error(sb, ret); 385026a4c0c6STheodore Ts'o goto out_dio; 385126a4c0c6STheodore Ts'o } 385226a4c0c6STheodore Ts'o 3853a87dd18cSLukas Czerner ret = ext4_zero_partial_blocks(handle, inode, offset, 3854a87dd18cSLukas Czerner length); 385526a4c0c6STheodore Ts'o if (ret) 385626a4c0c6STheodore Ts'o goto out_stop; 385726a4c0c6STheodore Ts'o 385826a4c0c6STheodore Ts'o first_block = (offset + sb->s_blocksize - 1) >> 385926a4c0c6STheodore Ts'o EXT4_BLOCK_SIZE_BITS(sb); 386026a4c0c6STheodore Ts'o stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb); 386126a4c0c6STheodore Ts'o 386226a4c0c6STheodore Ts'o /* If there are no blocks to remove, return now */ 386326a4c0c6STheodore Ts'o if (first_block >= stop_block) 386426a4c0c6STheodore Ts'o goto out_stop; 386526a4c0c6STheodore Ts'o 386626a4c0c6STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 386726a4c0c6STheodore Ts'o ext4_discard_preallocations(inode); 386826a4c0c6STheodore Ts'o 386926a4c0c6STheodore Ts'o ret = ext4_es_remove_extent(inode, first_block, 387026a4c0c6STheodore Ts'o stop_block - first_block); 387126a4c0c6STheodore Ts'o if (ret) { 387226a4c0c6STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 387326a4c0c6STheodore Ts'o goto out_stop; 387426a4c0c6STheodore Ts'o } 387526a4c0c6STheodore Ts'o 387626a4c0c6STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 387726a4c0c6STheodore Ts'o ret = ext4_ext_remove_space(inode, first_block, 387826a4c0c6STheodore Ts'o stop_block - 1); 387926a4c0c6STheodore Ts'o else 38804f579ae7SLukas Czerner ret = ext4_ind_remove_space(handle, inode, first_block, 388126a4c0c6STheodore Ts'o stop_block); 388226a4c0c6STheodore Ts'o 3883819c4920STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 388426a4c0c6STheodore Ts'o if (IS_SYNC(inode)) 388526a4c0c6STheodore Ts'o ext4_handle_sync(handle); 3886e251f9bcSMaxim Patlasov 388726a4c0c6STheodore Ts'o inode->i_mtime = inode->i_ctime = ext4_current_time(inode); 388826a4c0c6STheodore Ts'o ext4_mark_inode_dirty(handle, inode); 388926a4c0c6STheodore Ts'o out_stop: 389026a4c0c6STheodore Ts'o ext4_journal_stop(handle); 389126a4c0c6STheodore Ts'o out_dio: 3892ea3d7209SJan Kara up_write(&EXT4_I(inode)->i_mmap_sem); 389326a4c0c6STheodore Ts'o ext4_inode_resume_unlocked_dio(inode); 389426a4c0c6STheodore Ts'o out_mutex: 38955955102cSAl Viro inode_unlock(inode); 389626a4c0c6STheodore Ts'o return ret; 3897a4bb6b64SAllison Henderson } 3898a4bb6b64SAllison Henderson 3899a361293fSJan Kara int ext4_inode_attach_jinode(struct inode *inode) 3900a361293fSJan Kara { 3901a361293fSJan Kara struct ext4_inode_info *ei = EXT4_I(inode); 3902a361293fSJan Kara struct jbd2_inode *jinode; 3903a361293fSJan Kara 3904a361293fSJan Kara if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal) 3905a361293fSJan Kara return 0; 3906a361293fSJan Kara 3907a361293fSJan Kara jinode = jbd2_alloc_inode(GFP_KERNEL); 3908a361293fSJan Kara spin_lock(&inode->i_lock); 3909a361293fSJan Kara if (!ei->jinode) { 3910a361293fSJan Kara if (!jinode) { 3911a361293fSJan Kara spin_unlock(&inode->i_lock); 3912a361293fSJan Kara return -ENOMEM; 3913a361293fSJan Kara } 3914a361293fSJan Kara ei->jinode = jinode; 3915a361293fSJan Kara jbd2_journal_init_jbd_inode(ei->jinode, inode); 3916a361293fSJan Kara jinode = NULL; 3917a361293fSJan Kara } 3918a361293fSJan Kara spin_unlock(&inode->i_lock); 3919a361293fSJan Kara if (unlikely(jinode != NULL)) 3920a361293fSJan Kara jbd2_free_inode(jinode); 3921a361293fSJan Kara return 0; 3922a361293fSJan Kara } 3923a361293fSJan Kara 3924a4bb6b64SAllison Henderson /* 3925617ba13bSMingming Cao * ext4_truncate() 3926ac27a0ecSDave Kleikamp * 3927617ba13bSMingming Cao * We block out ext4_get_block() block instantiations across the entire 3928617ba13bSMingming Cao * transaction, and VFS/VM ensures that ext4_truncate() cannot run 3929ac27a0ecSDave Kleikamp * simultaneously on behalf of the same inode. 3930ac27a0ecSDave Kleikamp * 393142b2aa86SJustin P. Mattock * As we work through the truncate and commit bits of it to the journal there 3932ac27a0ecSDave Kleikamp * is one core, guiding principle: the file's tree must always be consistent on 3933ac27a0ecSDave Kleikamp * disk. We must be able to restart the truncate after a crash. 3934ac27a0ecSDave Kleikamp * 3935ac27a0ecSDave Kleikamp * The file's tree may be transiently inconsistent in memory (although it 3936ac27a0ecSDave Kleikamp * probably isn't), but whenever we close off and commit a journal transaction, 3937ac27a0ecSDave Kleikamp * the contents of (the filesystem + the journal) must be consistent and 3938ac27a0ecSDave Kleikamp * restartable. It's pretty simple, really: bottom up, right to left (although 3939ac27a0ecSDave Kleikamp * left-to-right works OK too). 3940ac27a0ecSDave Kleikamp * 3941ac27a0ecSDave Kleikamp * Note that at recovery time, journal replay occurs *before* the restart of 3942ac27a0ecSDave Kleikamp * truncate against the orphan inode list. 3943ac27a0ecSDave Kleikamp * 3944ac27a0ecSDave Kleikamp * The committed inode has the new, desired i_size (which is the same as 3945617ba13bSMingming Cao * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see 3946ac27a0ecSDave Kleikamp * that this inode's truncate did not complete and it will again call 3947617ba13bSMingming Cao * ext4_truncate() to have another go. So there will be instantiated blocks 3948617ba13bSMingming Cao * to the right of the truncation point in a crashed ext4 filesystem. But 3949ac27a0ecSDave Kleikamp * that's fine - as long as they are linked from the inode, the post-crash 3950617ba13bSMingming Cao * ext4_truncate() run will find them and release them. 3951ac27a0ecSDave Kleikamp */ 3952617ba13bSMingming Cao void ext4_truncate(struct inode *inode) 3953ac27a0ecSDave Kleikamp { 3954819c4920STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 3955819c4920STheodore Ts'o unsigned int credits; 3956819c4920STheodore Ts'o handle_t *handle; 3957819c4920STheodore Ts'o struct address_space *mapping = inode->i_mapping; 3958819c4920STheodore Ts'o 395919b5ef61STheodore Ts'o /* 396019b5ef61STheodore Ts'o * There is a possibility that we're either freeing the inode 3961e04027e8SMatthew Wilcox * or it's a completely new inode. In those cases we might not 396219b5ef61STheodore Ts'o * have i_mutex locked because it's not necessary. 396319b5ef61STheodore Ts'o */ 396419b5ef61STheodore Ts'o if (!(inode->i_state & (I_NEW|I_FREEING))) 39655955102cSAl Viro WARN_ON(!inode_is_locked(inode)); 39660562e0baSJiaying Zhang trace_ext4_truncate_enter(inode); 39670562e0baSJiaying Zhang 396891ef4cafSDuane Griffin if (!ext4_can_truncate(inode)) 3969ac27a0ecSDave Kleikamp return; 3970ac27a0ecSDave Kleikamp 397112e9b892SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS); 3972c8d46e41SJiaying Zhang 39735534fb5bSTheodore Ts'o if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC)) 397419f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE); 39757d8f9f7dSTheodore Ts'o 3976aef1c851STao Ma if (ext4_has_inline_data(inode)) { 3977aef1c851STao Ma int has_inline = 1; 3978aef1c851STao Ma 3979aef1c851STao Ma ext4_inline_data_truncate(inode, &has_inline); 3980aef1c851STao Ma if (has_inline) 3981aef1c851STao Ma return; 3982aef1c851STao Ma } 3983aef1c851STao Ma 3984a361293fSJan Kara /* If we zero-out tail of the page, we have to create jinode for jbd2 */ 3985a361293fSJan Kara if (inode->i_size & (inode->i_sb->s_blocksize - 1)) { 3986a361293fSJan Kara if (ext4_inode_attach_jinode(inode) < 0) 3987a361293fSJan Kara return; 3988a361293fSJan Kara } 3989a361293fSJan Kara 3990ff9893dcSAmir Goldstein if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 3991819c4920STheodore Ts'o credits = ext4_writepage_trans_blocks(inode); 3992ff9893dcSAmir Goldstein else 3993819c4920STheodore Ts'o credits = ext4_blocks_for_truncate(inode); 3994819c4920STheodore Ts'o 3995819c4920STheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits); 3996819c4920STheodore Ts'o if (IS_ERR(handle)) { 3997819c4920STheodore Ts'o ext4_std_error(inode->i_sb, PTR_ERR(handle)); 3998819c4920STheodore Ts'o return; 3999819c4920STheodore Ts'o } 4000819c4920STheodore Ts'o 4001eb3544c6SLukas Czerner if (inode->i_size & (inode->i_sb->s_blocksize - 1)) 4002eb3544c6SLukas Czerner ext4_block_truncate_page(handle, mapping, inode->i_size); 4003819c4920STheodore Ts'o 4004819c4920STheodore Ts'o /* 4005819c4920STheodore Ts'o * We add the inode to the orphan list, so that if this 4006819c4920STheodore Ts'o * truncate spans multiple transactions, and we crash, we will 4007819c4920STheodore Ts'o * resume the truncate when the filesystem recovers. It also 4008819c4920STheodore Ts'o * marks the inode dirty, to catch the new size. 4009819c4920STheodore Ts'o * 4010819c4920STheodore Ts'o * Implication: the file must always be in a sane, consistent 4011819c4920STheodore Ts'o * truncatable state while each transaction commits. 4012819c4920STheodore Ts'o */ 4013819c4920STheodore Ts'o if (ext4_orphan_add(handle, inode)) 4014819c4920STheodore Ts'o goto out_stop; 4015819c4920STheodore Ts'o 4016819c4920STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 4017819c4920STheodore Ts'o 4018819c4920STheodore Ts'o ext4_discard_preallocations(inode); 4019819c4920STheodore Ts'o 4020819c4920STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 4021819c4920STheodore Ts'o ext4_ext_truncate(handle, inode); 4022819c4920STheodore Ts'o else 4023819c4920STheodore Ts'o ext4_ind_truncate(handle, inode); 4024819c4920STheodore Ts'o 4025819c4920STheodore Ts'o up_write(&ei->i_data_sem); 4026819c4920STheodore Ts'o 4027819c4920STheodore Ts'o if (IS_SYNC(inode)) 4028819c4920STheodore Ts'o ext4_handle_sync(handle); 4029819c4920STheodore Ts'o 4030819c4920STheodore Ts'o out_stop: 4031819c4920STheodore Ts'o /* 4032819c4920STheodore Ts'o * If this was a simple ftruncate() and the file will remain alive, 4033819c4920STheodore Ts'o * then we need to clear up the orphan record which we created above. 4034819c4920STheodore Ts'o * However, if this was a real unlink then we were called by 403558d86a50SWang Shilong * ext4_evict_inode(), and we allow that function to clean up the 4036819c4920STheodore Ts'o * orphan info for us. 4037819c4920STheodore Ts'o */ 4038819c4920STheodore Ts'o if (inode->i_nlink) 4039819c4920STheodore Ts'o ext4_orphan_del(handle, inode); 4040819c4920STheodore Ts'o 4041819c4920STheodore Ts'o inode->i_mtime = inode->i_ctime = ext4_current_time(inode); 4042819c4920STheodore Ts'o ext4_mark_inode_dirty(handle, inode); 4043819c4920STheodore Ts'o ext4_journal_stop(handle); 4044a86c6181SAlex Tomas 40450562e0baSJiaying Zhang trace_ext4_truncate_exit(inode); 4046ac27a0ecSDave Kleikamp } 4047ac27a0ecSDave Kleikamp 4048ac27a0ecSDave Kleikamp /* 4049617ba13bSMingming Cao * ext4_get_inode_loc returns with an extra refcount against the inode's 4050ac27a0ecSDave Kleikamp * underlying buffer_head on success. If 'in_mem' is true, we have all 4051ac27a0ecSDave Kleikamp * data in memory that is needed to recreate the on-disk version of this 4052ac27a0ecSDave Kleikamp * inode. 4053ac27a0ecSDave Kleikamp */ 4054617ba13bSMingming Cao static int __ext4_get_inode_loc(struct inode *inode, 4055617ba13bSMingming Cao struct ext4_iloc *iloc, int in_mem) 4056ac27a0ecSDave Kleikamp { 4057240799cdSTheodore Ts'o struct ext4_group_desc *gdp; 4058ac27a0ecSDave Kleikamp struct buffer_head *bh; 4059240799cdSTheodore Ts'o struct super_block *sb = inode->i_sb; 4060240799cdSTheodore Ts'o ext4_fsblk_t block; 4061240799cdSTheodore Ts'o int inodes_per_block, inode_offset; 4062ac27a0ecSDave Kleikamp 40633a06d778SAneesh Kumar K.V iloc->bh = NULL; 4064240799cdSTheodore Ts'o if (!ext4_valid_inum(sb, inode->i_ino)) 40656a797d27SDarrick J. Wong return -EFSCORRUPTED; 4066ac27a0ecSDave Kleikamp 4067240799cdSTheodore Ts'o iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb); 4068240799cdSTheodore Ts'o gdp = ext4_get_group_desc(sb, iloc->block_group, NULL); 4069240799cdSTheodore Ts'o if (!gdp) 4070240799cdSTheodore Ts'o return -EIO; 4071240799cdSTheodore Ts'o 4072240799cdSTheodore Ts'o /* 4073240799cdSTheodore Ts'o * Figure out the offset within the block group inode table 4074240799cdSTheodore Ts'o */ 407500d09882STao Ma inodes_per_block = EXT4_SB(sb)->s_inodes_per_block; 4076240799cdSTheodore Ts'o inode_offset = ((inode->i_ino - 1) % 4077240799cdSTheodore Ts'o EXT4_INODES_PER_GROUP(sb)); 4078240799cdSTheodore Ts'o block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block); 4079240799cdSTheodore Ts'o iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb); 4080240799cdSTheodore Ts'o 4081240799cdSTheodore Ts'o bh = sb_getblk(sb, block); 4082aebf0243SWang Shilong if (unlikely(!bh)) 4083860d21e2STheodore Ts'o return -ENOMEM; 4084ac27a0ecSDave Kleikamp if (!buffer_uptodate(bh)) { 4085ac27a0ecSDave Kleikamp lock_buffer(bh); 40869c83a923SHidehiro Kawai 40879c83a923SHidehiro Kawai /* 40889c83a923SHidehiro Kawai * If the buffer has the write error flag, we have failed 40899c83a923SHidehiro Kawai * to write out another inode in the same block. In this 40909c83a923SHidehiro Kawai * case, we don't have to read the block because we may 40919c83a923SHidehiro Kawai * read the old inode data successfully. 40929c83a923SHidehiro Kawai */ 40939c83a923SHidehiro Kawai if (buffer_write_io_error(bh) && !buffer_uptodate(bh)) 40949c83a923SHidehiro Kawai set_buffer_uptodate(bh); 40959c83a923SHidehiro Kawai 4096ac27a0ecSDave Kleikamp if (buffer_uptodate(bh)) { 4097ac27a0ecSDave Kleikamp /* someone brought it uptodate while we waited */ 4098ac27a0ecSDave Kleikamp unlock_buffer(bh); 4099ac27a0ecSDave Kleikamp goto has_buffer; 4100ac27a0ecSDave Kleikamp } 4101ac27a0ecSDave Kleikamp 4102ac27a0ecSDave Kleikamp /* 4103ac27a0ecSDave Kleikamp * If we have all information of the inode in memory and this 4104ac27a0ecSDave Kleikamp * is the only valid inode in the block, we need not read the 4105ac27a0ecSDave Kleikamp * block. 4106ac27a0ecSDave Kleikamp */ 4107ac27a0ecSDave Kleikamp if (in_mem) { 4108ac27a0ecSDave Kleikamp struct buffer_head *bitmap_bh; 4109240799cdSTheodore Ts'o int i, start; 4110ac27a0ecSDave Kleikamp 4111240799cdSTheodore Ts'o start = inode_offset & ~(inodes_per_block - 1); 4112ac27a0ecSDave Kleikamp 4113ac27a0ecSDave Kleikamp /* Is the inode bitmap in cache? */ 4114240799cdSTheodore Ts'o bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp)); 4115aebf0243SWang Shilong if (unlikely(!bitmap_bh)) 4116ac27a0ecSDave Kleikamp goto make_io; 4117ac27a0ecSDave Kleikamp 4118ac27a0ecSDave Kleikamp /* 4119ac27a0ecSDave Kleikamp * If the inode bitmap isn't in cache then the 4120ac27a0ecSDave Kleikamp * optimisation may end up performing two reads instead 4121ac27a0ecSDave Kleikamp * of one, so skip it. 4122ac27a0ecSDave Kleikamp */ 4123ac27a0ecSDave Kleikamp if (!buffer_uptodate(bitmap_bh)) { 4124ac27a0ecSDave Kleikamp brelse(bitmap_bh); 4125ac27a0ecSDave Kleikamp goto make_io; 4126ac27a0ecSDave Kleikamp } 4127240799cdSTheodore Ts'o for (i = start; i < start + inodes_per_block; i++) { 4128ac27a0ecSDave Kleikamp if (i == inode_offset) 4129ac27a0ecSDave Kleikamp continue; 4130617ba13bSMingming Cao if (ext4_test_bit(i, bitmap_bh->b_data)) 4131ac27a0ecSDave Kleikamp break; 4132ac27a0ecSDave Kleikamp } 4133ac27a0ecSDave Kleikamp brelse(bitmap_bh); 4134240799cdSTheodore Ts'o if (i == start + inodes_per_block) { 4135ac27a0ecSDave Kleikamp /* all other inodes are free, so skip I/O */ 4136ac27a0ecSDave Kleikamp memset(bh->b_data, 0, bh->b_size); 4137ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 4138ac27a0ecSDave Kleikamp unlock_buffer(bh); 4139ac27a0ecSDave Kleikamp goto has_buffer; 4140ac27a0ecSDave Kleikamp } 4141ac27a0ecSDave Kleikamp } 4142ac27a0ecSDave Kleikamp 4143ac27a0ecSDave Kleikamp make_io: 4144ac27a0ecSDave Kleikamp /* 4145240799cdSTheodore Ts'o * If we need to do any I/O, try to pre-readahead extra 4146240799cdSTheodore Ts'o * blocks from the inode table. 4147240799cdSTheodore Ts'o */ 4148240799cdSTheodore Ts'o if (EXT4_SB(sb)->s_inode_readahead_blks) { 4149240799cdSTheodore Ts'o ext4_fsblk_t b, end, table; 4150240799cdSTheodore Ts'o unsigned num; 41510d606e2cSTheodore Ts'o __u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks; 4152240799cdSTheodore Ts'o 4153240799cdSTheodore Ts'o table = ext4_inode_table(sb, gdp); 4154b713a5ecSTheodore Ts'o /* s_inode_readahead_blks is always a power of 2 */ 41550d606e2cSTheodore Ts'o b = block & ~((ext4_fsblk_t) ra_blks - 1); 4156240799cdSTheodore Ts'o if (table > b) 4157240799cdSTheodore Ts'o b = table; 41580d606e2cSTheodore Ts'o end = b + ra_blks; 4159240799cdSTheodore Ts'o num = EXT4_INODES_PER_GROUP(sb); 4160feb0ab32SDarrick J. Wong if (ext4_has_group_desc_csum(sb)) 4161560671a0SAneesh Kumar K.V num -= ext4_itable_unused_count(sb, gdp); 4162240799cdSTheodore Ts'o table += num / inodes_per_block; 4163240799cdSTheodore Ts'o if (end > table) 4164240799cdSTheodore Ts'o end = table; 4165240799cdSTheodore Ts'o while (b <= end) 4166240799cdSTheodore Ts'o sb_breadahead(sb, b++); 4167240799cdSTheodore Ts'o } 4168240799cdSTheodore Ts'o 4169240799cdSTheodore Ts'o /* 4170ac27a0ecSDave Kleikamp * There are other valid inodes in the buffer, this inode 4171ac27a0ecSDave Kleikamp * has in-inode xattrs, or we don't have this inode in memory. 4172ac27a0ecSDave Kleikamp * Read the block from disk. 4173ac27a0ecSDave Kleikamp */ 41740562e0baSJiaying Zhang trace_ext4_load_inode(inode); 4175ac27a0ecSDave Kleikamp get_bh(bh); 4176ac27a0ecSDave Kleikamp bh->b_end_io = end_buffer_read_sync; 417765299a3bSChristoph Hellwig submit_bh(READ | REQ_META | REQ_PRIO, bh); 4178ac27a0ecSDave Kleikamp wait_on_buffer(bh); 4179ac27a0ecSDave Kleikamp if (!buffer_uptodate(bh)) { 4180c398eda0STheodore Ts'o EXT4_ERROR_INODE_BLOCK(inode, block, 4181c398eda0STheodore Ts'o "unable to read itable block"); 4182ac27a0ecSDave Kleikamp brelse(bh); 4183ac27a0ecSDave Kleikamp return -EIO; 4184ac27a0ecSDave Kleikamp } 4185ac27a0ecSDave Kleikamp } 4186ac27a0ecSDave Kleikamp has_buffer: 4187ac27a0ecSDave Kleikamp iloc->bh = bh; 4188ac27a0ecSDave Kleikamp return 0; 4189ac27a0ecSDave Kleikamp } 4190ac27a0ecSDave Kleikamp 4191617ba13bSMingming Cao int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc) 4192ac27a0ecSDave Kleikamp { 4193ac27a0ecSDave Kleikamp /* We have all inode data except xattrs in memory here. */ 4194617ba13bSMingming Cao return __ext4_get_inode_loc(inode, iloc, 419519f5fb7aSTheodore Ts'o !ext4_test_inode_state(inode, EXT4_STATE_XATTR)); 4196ac27a0ecSDave Kleikamp } 4197ac27a0ecSDave Kleikamp 4198617ba13bSMingming Cao void ext4_set_inode_flags(struct inode *inode) 4199ac27a0ecSDave Kleikamp { 4200617ba13bSMingming Cao unsigned int flags = EXT4_I(inode)->i_flags; 420100a1a053STheodore Ts'o unsigned int new_fl = 0; 4202ac27a0ecSDave Kleikamp 4203617ba13bSMingming Cao if (flags & EXT4_SYNC_FL) 420400a1a053STheodore Ts'o new_fl |= S_SYNC; 4205617ba13bSMingming Cao if (flags & EXT4_APPEND_FL) 420600a1a053STheodore Ts'o new_fl |= S_APPEND; 4207617ba13bSMingming Cao if (flags & EXT4_IMMUTABLE_FL) 420800a1a053STheodore Ts'o new_fl |= S_IMMUTABLE; 4209617ba13bSMingming Cao if (flags & EXT4_NOATIME_FL) 421000a1a053STheodore Ts'o new_fl |= S_NOATIME; 4211617ba13bSMingming Cao if (flags & EXT4_DIRSYNC_FL) 421200a1a053STheodore Ts'o new_fl |= S_DIRSYNC; 4213923ae0ffSRoss Zwisler if (test_opt(inode->i_sb, DAX)) 4214923ae0ffSRoss Zwisler new_fl |= S_DAX; 42155f16f322STheodore Ts'o inode_set_flags(inode, new_fl, 4216923ae0ffSRoss Zwisler S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX); 4217ac27a0ecSDave Kleikamp } 4218ac27a0ecSDave Kleikamp 4219ff9ddf7eSJan Kara /* Propagate flags from i_flags to EXT4_I(inode)->i_flags */ 4220ff9ddf7eSJan Kara void ext4_get_inode_flags(struct ext4_inode_info *ei) 4221ff9ddf7eSJan Kara { 422284a8dce2SDmitry Monakhov unsigned int vfs_fl; 422384a8dce2SDmitry Monakhov unsigned long old_fl, new_fl; 4224ff9ddf7eSJan Kara 422584a8dce2SDmitry Monakhov do { 422684a8dce2SDmitry Monakhov vfs_fl = ei->vfs_inode.i_flags; 422784a8dce2SDmitry Monakhov old_fl = ei->i_flags; 422884a8dce2SDmitry Monakhov new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL| 422984a8dce2SDmitry Monakhov EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL| 423084a8dce2SDmitry Monakhov EXT4_DIRSYNC_FL); 423184a8dce2SDmitry Monakhov if (vfs_fl & S_SYNC) 423284a8dce2SDmitry Monakhov new_fl |= EXT4_SYNC_FL; 423384a8dce2SDmitry Monakhov if (vfs_fl & S_APPEND) 423484a8dce2SDmitry Monakhov new_fl |= EXT4_APPEND_FL; 423584a8dce2SDmitry Monakhov if (vfs_fl & S_IMMUTABLE) 423684a8dce2SDmitry Monakhov new_fl |= EXT4_IMMUTABLE_FL; 423784a8dce2SDmitry Monakhov if (vfs_fl & S_NOATIME) 423884a8dce2SDmitry Monakhov new_fl |= EXT4_NOATIME_FL; 423984a8dce2SDmitry Monakhov if (vfs_fl & S_DIRSYNC) 424084a8dce2SDmitry Monakhov new_fl |= EXT4_DIRSYNC_FL; 424184a8dce2SDmitry Monakhov } while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl); 4242ff9ddf7eSJan Kara } 4243de9a55b8STheodore Ts'o 42440fc1b451SAneesh Kumar K.V static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode, 42450fc1b451SAneesh Kumar K.V struct ext4_inode_info *ei) 42460fc1b451SAneesh Kumar K.V { 42470fc1b451SAneesh Kumar K.V blkcnt_t i_blocks ; 42488180a562SAneesh Kumar K.V struct inode *inode = &(ei->vfs_inode); 42498180a562SAneesh Kumar K.V struct super_block *sb = inode->i_sb; 42500fc1b451SAneesh Kumar K.V 4251e2b911c5SDarrick J. Wong if (ext4_has_feature_huge_file(sb)) { 42520fc1b451SAneesh Kumar K.V /* we are using combined 48 bit field */ 42530fc1b451SAneesh Kumar K.V i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 | 42540fc1b451SAneesh Kumar K.V le32_to_cpu(raw_inode->i_blocks_lo); 425507a03824STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) { 42568180a562SAneesh Kumar K.V /* i_blocks represent file system block size */ 42578180a562SAneesh Kumar K.V return i_blocks << (inode->i_blkbits - 9); 42588180a562SAneesh Kumar K.V } else { 42590fc1b451SAneesh Kumar K.V return i_blocks; 42608180a562SAneesh Kumar K.V } 42610fc1b451SAneesh Kumar K.V } else { 42620fc1b451SAneesh Kumar K.V return le32_to_cpu(raw_inode->i_blocks_lo); 42630fc1b451SAneesh Kumar K.V } 42640fc1b451SAneesh Kumar K.V } 4265ff9ddf7eSJan Kara 4266152a7b0aSTao Ma static inline void ext4_iget_extra_inode(struct inode *inode, 4267152a7b0aSTao Ma struct ext4_inode *raw_inode, 4268152a7b0aSTao Ma struct ext4_inode_info *ei) 4269152a7b0aSTao Ma { 4270152a7b0aSTao Ma __le32 *magic = (void *)raw_inode + 4271152a7b0aSTao Ma EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize; 427267cf5b09STao Ma if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) { 4273152a7b0aSTao Ma ext4_set_inode_state(inode, EXT4_STATE_XATTR); 427467cf5b09STao Ma ext4_find_inline_data_nolock(inode); 4275f19d5870STao Ma } else 4276f19d5870STao Ma EXT4_I(inode)->i_inline_off = 0; 4277152a7b0aSTao Ma } 4278152a7b0aSTao Ma 4279040cb378SLi Xi int ext4_get_projid(struct inode *inode, kprojid_t *projid) 4280040cb378SLi Xi { 4281040cb378SLi Xi if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, EXT4_FEATURE_RO_COMPAT_PROJECT)) 4282040cb378SLi Xi return -EOPNOTSUPP; 4283040cb378SLi Xi *projid = EXT4_I(inode)->i_projid; 4284040cb378SLi Xi return 0; 4285040cb378SLi Xi } 4286040cb378SLi Xi 42871d1fe1eeSDavid Howells struct inode *ext4_iget(struct super_block *sb, unsigned long ino) 4288ac27a0ecSDave Kleikamp { 4289617ba13bSMingming Cao struct ext4_iloc iloc; 4290617ba13bSMingming Cao struct ext4_inode *raw_inode; 42911d1fe1eeSDavid Howells struct ext4_inode_info *ei; 42921d1fe1eeSDavid Howells struct inode *inode; 4293b436b9beSJan Kara journal_t *journal = EXT4_SB(sb)->s_journal; 42941d1fe1eeSDavid Howells long ret; 4295ac27a0ecSDave Kleikamp int block; 429608cefc7aSEric W. Biederman uid_t i_uid; 429708cefc7aSEric W. Biederman gid_t i_gid; 4298040cb378SLi Xi projid_t i_projid; 4299ac27a0ecSDave Kleikamp 43001d1fe1eeSDavid Howells inode = iget_locked(sb, ino); 43011d1fe1eeSDavid Howells if (!inode) 43021d1fe1eeSDavid Howells return ERR_PTR(-ENOMEM); 43031d1fe1eeSDavid Howells if (!(inode->i_state & I_NEW)) 43041d1fe1eeSDavid Howells return inode; 43051d1fe1eeSDavid Howells 43061d1fe1eeSDavid Howells ei = EXT4_I(inode); 43077dc57615SPeter Huewe iloc.bh = NULL; 4308ac27a0ecSDave Kleikamp 43091d1fe1eeSDavid Howells ret = __ext4_get_inode_loc(inode, &iloc, 0); 43101d1fe1eeSDavid Howells if (ret < 0) 4311ac27a0ecSDave Kleikamp goto bad_inode; 4312617ba13bSMingming Cao raw_inode = ext4_raw_inode(&iloc); 4313814525f4SDarrick J. Wong 4314814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 4315814525f4SDarrick J. Wong ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize); 4316814525f4SDarrick J. Wong if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize > 4317814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)) { 4318814525f4SDarrick J. Wong EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)", 4319814525f4SDarrick J. Wong EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize, 4320814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)); 43216a797d27SDarrick J. Wong ret = -EFSCORRUPTED; 4322814525f4SDarrick J. Wong goto bad_inode; 4323814525f4SDarrick J. Wong } 4324814525f4SDarrick J. Wong } else 4325814525f4SDarrick J. Wong ei->i_extra_isize = 0; 4326814525f4SDarrick J. Wong 4327814525f4SDarrick J. Wong /* Precompute checksum seed for inode metadata */ 43289aa5d32bSDmitry Monakhov if (ext4_has_metadata_csum(sb)) { 4329814525f4SDarrick J. Wong struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 4330814525f4SDarrick J. Wong __u32 csum; 4331814525f4SDarrick J. Wong __le32 inum = cpu_to_le32(inode->i_ino); 4332814525f4SDarrick J. Wong __le32 gen = raw_inode->i_generation; 4333814525f4SDarrick J. Wong csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum, 4334814525f4SDarrick J. Wong sizeof(inum)); 4335814525f4SDarrick J. Wong ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen, 4336814525f4SDarrick J. Wong sizeof(gen)); 4337814525f4SDarrick J. Wong } 4338814525f4SDarrick J. Wong 4339814525f4SDarrick J. Wong if (!ext4_inode_csum_verify(inode, raw_inode, ei)) { 4340814525f4SDarrick J. Wong EXT4_ERROR_INODE(inode, "checksum invalid"); 43416a797d27SDarrick J. Wong ret = -EFSBADCRC; 4342814525f4SDarrick J. Wong goto bad_inode; 4343814525f4SDarrick J. Wong } 4344814525f4SDarrick J. Wong 4345ac27a0ecSDave Kleikamp inode->i_mode = le16_to_cpu(raw_inode->i_mode); 434608cefc7aSEric W. Biederman i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low); 434708cefc7aSEric W. Biederman i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low); 4348040cb378SLi Xi if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_PROJECT) && 4349040cb378SLi Xi EXT4_INODE_SIZE(sb) > EXT4_GOOD_OLD_INODE_SIZE && 4350040cb378SLi Xi EXT4_FITS_IN_INODE(raw_inode, ei, i_projid)) 4351040cb378SLi Xi i_projid = (projid_t)le32_to_cpu(raw_inode->i_projid); 4352040cb378SLi Xi else 4353040cb378SLi Xi i_projid = EXT4_DEF_PROJID; 4354040cb378SLi Xi 4355ac27a0ecSDave Kleikamp if (!(test_opt(inode->i_sb, NO_UID32))) { 435608cefc7aSEric W. Biederman i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16; 435708cefc7aSEric W. Biederman i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16; 4358ac27a0ecSDave Kleikamp } 435908cefc7aSEric W. Biederman i_uid_write(inode, i_uid); 436008cefc7aSEric W. Biederman i_gid_write(inode, i_gid); 4361040cb378SLi Xi ei->i_projid = make_kprojid(&init_user_ns, i_projid); 4362bfe86848SMiklos Szeredi set_nlink(inode, le16_to_cpu(raw_inode->i_links_count)); 4363ac27a0ecSDave Kleikamp 4364353eb83cSTheodore Ts'o ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */ 436567cf5b09STao Ma ei->i_inline_off = 0; 4366ac27a0ecSDave Kleikamp ei->i_dir_start_lookup = 0; 4367ac27a0ecSDave Kleikamp ei->i_dtime = le32_to_cpu(raw_inode->i_dtime); 4368ac27a0ecSDave Kleikamp /* We now have enough fields to check if the inode was active or not. 4369ac27a0ecSDave Kleikamp * This is needed because nfsd might try to access dead inodes 4370ac27a0ecSDave Kleikamp * the test is that same one that e2fsck uses 4371ac27a0ecSDave Kleikamp * NeilBrown 1999oct15 4372ac27a0ecSDave Kleikamp */ 4373ac27a0ecSDave Kleikamp if (inode->i_nlink == 0) { 4374393d1d1dSDr. Tilmann Bubeck if ((inode->i_mode == 0 || 4375393d1d1dSDr. Tilmann Bubeck !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) && 4376393d1d1dSDr. Tilmann Bubeck ino != EXT4_BOOT_LOADER_INO) { 4377ac27a0ecSDave Kleikamp /* this inode is deleted */ 43781d1fe1eeSDavid Howells ret = -ESTALE; 4379ac27a0ecSDave Kleikamp goto bad_inode; 4380ac27a0ecSDave Kleikamp } 4381ac27a0ecSDave Kleikamp /* The only unlinked inodes we let through here have 4382ac27a0ecSDave Kleikamp * valid i_mode and are being read by the orphan 4383ac27a0ecSDave Kleikamp * recovery code: that's fine, we're about to complete 4384393d1d1dSDr. Tilmann Bubeck * the process of deleting those. 4385393d1d1dSDr. Tilmann Bubeck * OR it is the EXT4_BOOT_LOADER_INO which is 4386393d1d1dSDr. Tilmann Bubeck * not initialized on a new filesystem. */ 4387ac27a0ecSDave Kleikamp } 4388ac27a0ecSDave Kleikamp ei->i_flags = le32_to_cpu(raw_inode->i_flags); 43890fc1b451SAneesh Kumar K.V inode->i_blocks = ext4_inode_blocks(raw_inode, ei); 43907973c0c1SAneesh Kumar K.V ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo); 4391e2b911c5SDarrick J. Wong if (ext4_has_feature_64bit(sb)) 4392a1ddeb7eSBadari Pulavarty ei->i_file_acl |= 4393a1ddeb7eSBadari Pulavarty ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32; 4394a48380f7SAneesh Kumar K.V inode->i_size = ext4_isize(raw_inode); 4395ac27a0ecSDave Kleikamp ei->i_disksize = inode->i_size; 4396a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA 4397a9e7f447SDmitry Monakhov ei->i_reserved_quota = 0; 4398a9e7f447SDmitry Monakhov #endif 4399ac27a0ecSDave Kleikamp inode->i_generation = le32_to_cpu(raw_inode->i_generation); 4400ac27a0ecSDave Kleikamp ei->i_block_group = iloc.block_group; 4401a4912123STheodore Ts'o ei->i_last_alloc_group = ~0; 4402ac27a0ecSDave Kleikamp /* 4403ac27a0ecSDave Kleikamp * NOTE! The in-memory inode i_data array is in little-endian order 4404ac27a0ecSDave Kleikamp * even on big-endian machines: we do NOT byteswap the block numbers! 4405ac27a0ecSDave Kleikamp */ 4406617ba13bSMingming Cao for (block = 0; block < EXT4_N_BLOCKS; block++) 4407ac27a0ecSDave Kleikamp ei->i_data[block] = raw_inode->i_block[block]; 4408ac27a0ecSDave Kleikamp INIT_LIST_HEAD(&ei->i_orphan); 4409ac27a0ecSDave Kleikamp 4410b436b9beSJan Kara /* 4411b436b9beSJan Kara * Set transaction id's of transactions that have to be committed 4412b436b9beSJan Kara * to finish f[data]sync. We set them to currently running transaction 4413b436b9beSJan Kara * as we cannot be sure that the inode or some of its metadata isn't 4414b436b9beSJan Kara * part of the transaction - the inode could have been reclaimed and 4415b436b9beSJan Kara * now it is reread from disk. 4416b436b9beSJan Kara */ 4417b436b9beSJan Kara if (journal) { 4418b436b9beSJan Kara transaction_t *transaction; 4419b436b9beSJan Kara tid_t tid; 4420b436b9beSJan Kara 4421a931da6aSTheodore Ts'o read_lock(&journal->j_state_lock); 4422b436b9beSJan Kara if (journal->j_running_transaction) 4423b436b9beSJan Kara transaction = journal->j_running_transaction; 4424b436b9beSJan Kara else 4425b436b9beSJan Kara transaction = journal->j_committing_transaction; 4426b436b9beSJan Kara if (transaction) 4427b436b9beSJan Kara tid = transaction->t_tid; 4428b436b9beSJan Kara else 4429b436b9beSJan Kara tid = journal->j_commit_sequence; 4430a931da6aSTheodore Ts'o read_unlock(&journal->j_state_lock); 4431b436b9beSJan Kara ei->i_sync_tid = tid; 4432b436b9beSJan Kara ei->i_datasync_tid = tid; 4433b436b9beSJan Kara } 4434b436b9beSJan Kara 44350040d987SEric Sandeen if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 4436ac27a0ecSDave Kleikamp if (ei->i_extra_isize == 0) { 4437ac27a0ecSDave Kleikamp /* The extra space is currently unused. Use it. */ 4438617ba13bSMingming Cao ei->i_extra_isize = sizeof(struct ext4_inode) - 4439617ba13bSMingming Cao EXT4_GOOD_OLD_INODE_SIZE; 4440ac27a0ecSDave Kleikamp } else { 4441152a7b0aSTao Ma ext4_iget_extra_inode(inode, raw_inode, ei); 4442ac27a0ecSDave Kleikamp } 4443814525f4SDarrick J. Wong } 4444ac27a0ecSDave Kleikamp 4445ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode); 4446ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode); 4447ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode); 4448ef7f3835SKalpak Shah EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode); 4449ef7f3835SKalpak Shah 4450ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) { 445125ec56b5SJean Noel Cordenner inode->i_version = le32_to_cpu(raw_inode->i_disk_version); 445225ec56b5SJean Noel Cordenner if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 445325ec56b5SJean Noel Cordenner if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi)) 445425ec56b5SJean Noel Cordenner inode->i_version |= 445525ec56b5SJean Noel Cordenner (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32; 445625ec56b5SJean Noel Cordenner } 4457c4f65706STheodore Ts'o } 445825ec56b5SJean Noel Cordenner 4459c4b5a614STheodore Ts'o ret = 0; 4460485c26ecSTheodore Ts'o if (ei->i_file_acl && 44611032988cSTheodore Ts'o !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) { 446224676da4STheodore Ts'o EXT4_ERROR_INODE(inode, "bad extended attribute block %llu", 446324676da4STheodore Ts'o ei->i_file_acl); 44646a797d27SDarrick J. Wong ret = -EFSCORRUPTED; 4465485c26ecSTheodore Ts'o goto bad_inode; 4466f19d5870STao Ma } else if (!ext4_has_inline_data(inode)) { 4467f19d5870STao Ma if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 4468f19d5870STao Ma if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || 4469c4b5a614STheodore Ts'o (S_ISLNK(inode->i_mode) && 4470f19d5870STao Ma !ext4_inode_is_fast_symlink(inode)))) 44717a262f7cSAneesh Kumar K.V /* Validate extent which is part of inode */ 44727a262f7cSAneesh Kumar K.V ret = ext4_ext_check_inode(inode); 4473fe2c8191SThiemo Nagel } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || 4474fe2c8191SThiemo Nagel (S_ISLNK(inode->i_mode) && 4475fe2c8191SThiemo Nagel !ext4_inode_is_fast_symlink(inode))) { 4476fe2c8191SThiemo Nagel /* Validate block references which are part of inode */ 44771f7d1e77STheodore Ts'o ret = ext4_ind_check_inode(inode); 4478fe2c8191SThiemo Nagel } 4479f19d5870STao Ma } 4480567f3e9aSTheodore Ts'o if (ret) 44817a262f7cSAneesh Kumar K.V goto bad_inode; 44827a262f7cSAneesh Kumar K.V 4483ac27a0ecSDave Kleikamp if (S_ISREG(inode->i_mode)) { 4484617ba13bSMingming Cao inode->i_op = &ext4_file_inode_operations; 4485617ba13bSMingming Cao inode->i_fop = &ext4_file_operations; 4486617ba13bSMingming Cao ext4_set_aops(inode); 4487ac27a0ecSDave Kleikamp } else if (S_ISDIR(inode->i_mode)) { 4488617ba13bSMingming Cao inode->i_op = &ext4_dir_inode_operations; 4489617ba13bSMingming Cao inode->i_fop = &ext4_dir_operations; 4490ac27a0ecSDave Kleikamp } else if (S_ISLNK(inode->i_mode)) { 4491a7a67e8aSAl Viro if (ext4_encrypted_inode(inode)) { 4492a7a67e8aSAl Viro inode->i_op = &ext4_encrypted_symlink_inode_operations; 4493a7a67e8aSAl Viro ext4_set_aops(inode); 4494a7a67e8aSAl Viro } else if (ext4_inode_is_fast_symlink(inode)) { 449575e7566bSAl Viro inode->i_link = (char *)ei->i_data; 4496617ba13bSMingming Cao inode->i_op = &ext4_fast_symlink_inode_operations; 4497e83c1397SDuane Griffin nd_terminate_link(ei->i_data, inode->i_size, 4498e83c1397SDuane Griffin sizeof(ei->i_data) - 1); 4499e83c1397SDuane Griffin } else { 4500617ba13bSMingming Cao inode->i_op = &ext4_symlink_inode_operations; 4501617ba13bSMingming Cao ext4_set_aops(inode); 4502ac27a0ecSDave Kleikamp } 450321fc61c7SAl Viro inode_nohighmem(inode); 4504563bdd61STheodore Ts'o } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) || 4505563bdd61STheodore Ts'o S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) { 4506617ba13bSMingming Cao inode->i_op = &ext4_special_inode_operations; 4507ac27a0ecSDave Kleikamp if (raw_inode->i_block[0]) 4508ac27a0ecSDave Kleikamp init_special_inode(inode, inode->i_mode, 4509ac27a0ecSDave Kleikamp old_decode_dev(le32_to_cpu(raw_inode->i_block[0]))); 4510ac27a0ecSDave Kleikamp else 4511ac27a0ecSDave Kleikamp init_special_inode(inode, inode->i_mode, 4512ac27a0ecSDave Kleikamp new_decode_dev(le32_to_cpu(raw_inode->i_block[1]))); 4513393d1d1dSDr. Tilmann Bubeck } else if (ino == EXT4_BOOT_LOADER_INO) { 4514393d1d1dSDr. Tilmann Bubeck make_bad_inode(inode); 4515563bdd61STheodore Ts'o } else { 45166a797d27SDarrick J. Wong ret = -EFSCORRUPTED; 451724676da4STheodore Ts'o EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode); 4518563bdd61STheodore Ts'o goto bad_inode; 4519ac27a0ecSDave Kleikamp } 4520ac27a0ecSDave Kleikamp brelse(iloc.bh); 4521617ba13bSMingming Cao ext4_set_inode_flags(inode); 45221d1fe1eeSDavid Howells unlock_new_inode(inode); 45231d1fe1eeSDavid Howells return inode; 4524ac27a0ecSDave Kleikamp 4525ac27a0ecSDave Kleikamp bad_inode: 4526567f3e9aSTheodore Ts'o brelse(iloc.bh); 45271d1fe1eeSDavid Howells iget_failed(inode); 45281d1fe1eeSDavid Howells return ERR_PTR(ret); 4529ac27a0ecSDave Kleikamp } 4530ac27a0ecSDave Kleikamp 4531f4bb2981STheodore Ts'o struct inode *ext4_iget_normal(struct super_block *sb, unsigned long ino) 4532f4bb2981STheodore Ts'o { 4533f4bb2981STheodore Ts'o if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO) 45346a797d27SDarrick J. Wong return ERR_PTR(-EFSCORRUPTED); 4535f4bb2981STheodore Ts'o return ext4_iget(sb, ino); 4536f4bb2981STheodore Ts'o } 4537f4bb2981STheodore Ts'o 45380fc1b451SAneesh Kumar K.V static int ext4_inode_blocks_set(handle_t *handle, 45390fc1b451SAneesh Kumar K.V struct ext4_inode *raw_inode, 45400fc1b451SAneesh Kumar K.V struct ext4_inode_info *ei) 45410fc1b451SAneesh Kumar K.V { 45420fc1b451SAneesh Kumar K.V struct inode *inode = &(ei->vfs_inode); 45430fc1b451SAneesh Kumar K.V u64 i_blocks = inode->i_blocks; 45440fc1b451SAneesh Kumar K.V struct super_block *sb = inode->i_sb; 45450fc1b451SAneesh Kumar K.V 45460fc1b451SAneesh Kumar K.V if (i_blocks <= ~0U) { 45470fc1b451SAneesh Kumar K.V /* 45484907cb7bSAnatol Pomozov * i_blocks can be represented in a 32 bit variable 45490fc1b451SAneesh Kumar K.V * as multiple of 512 bytes 45500fc1b451SAneesh Kumar K.V */ 45518180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 45520fc1b451SAneesh Kumar K.V raw_inode->i_blocks_high = 0; 455384a8dce2SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE); 4554f287a1a5STheodore Ts'o return 0; 4555f287a1a5STheodore Ts'o } 4556e2b911c5SDarrick J. Wong if (!ext4_has_feature_huge_file(sb)) 4557f287a1a5STheodore Ts'o return -EFBIG; 4558f287a1a5STheodore Ts'o 4559f287a1a5STheodore Ts'o if (i_blocks <= 0xffffffffffffULL) { 45600fc1b451SAneesh Kumar K.V /* 45610fc1b451SAneesh Kumar K.V * i_blocks can be represented in a 48 bit variable 45620fc1b451SAneesh Kumar K.V * as multiple of 512 bytes 45630fc1b451SAneesh Kumar K.V */ 45648180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 45650fc1b451SAneesh Kumar K.V raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32); 456684a8dce2SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE); 45670fc1b451SAneesh Kumar K.V } else { 456884a8dce2SDmitry Monakhov ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE); 45698180a562SAneesh Kumar K.V /* i_block is stored in file system block size */ 45708180a562SAneesh Kumar K.V i_blocks = i_blocks >> (inode->i_blkbits - 9); 45718180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 45728180a562SAneesh Kumar K.V raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32); 45730fc1b451SAneesh Kumar K.V } 4574f287a1a5STheodore Ts'o return 0; 45750fc1b451SAneesh Kumar K.V } 45760fc1b451SAneesh Kumar K.V 4577a26f4992STheodore Ts'o struct other_inode { 4578a26f4992STheodore Ts'o unsigned long orig_ino; 4579a26f4992STheodore Ts'o struct ext4_inode *raw_inode; 4580a26f4992STheodore Ts'o }; 4581a26f4992STheodore Ts'o 4582a26f4992STheodore Ts'o static int other_inode_match(struct inode * inode, unsigned long ino, 4583a26f4992STheodore Ts'o void *data) 4584a26f4992STheodore Ts'o { 4585a26f4992STheodore Ts'o struct other_inode *oi = (struct other_inode *) data; 4586a26f4992STheodore Ts'o 4587a26f4992STheodore Ts'o if ((inode->i_ino != ino) || 4588a26f4992STheodore Ts'o (inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW | 4589a26f4992STheodore Ts'o I_DIRTY_SYNC | I_DIRTY_DATASYNC)) || 4590a26f4992STheodore Ts'o ((inode->i_state & I_DIRTY_TIME) == 0)) 4591a26f4992STheodore Ts'o return 0; 4592a26f4992STheodore Ts'o spin_lock(&inode->i_lock); 4593a26f4992STheodore Ts'o if (((inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW | 4594a26f4992STheodore Ts'o I_DIRTY_SYNC | I_DIRTY_DATASYNC)) == 0) && 4595a26f4992STheodore Ts'o (inode->i_state & I_DIRTY_TIME)) { 4596a26f4992STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 4597a26f4992STheodore Ts'o 4598a26f4992STheodore Ts'o inode->i_state &= ~(I_DIRTY_TIME | I_DIRTY_TIME_EXPIRED); 4599a26f4992STheodore Ts'o spin_unlock(&inode->i_lock); 4600a26f4992STheodore Ts'o 4601a26f4992STheodore Ts'o spin_lock(&ei->i_raw_lock); 4602a26f4992STheodore Ts'o EXT4_INODE_SET_XTIME(i_ctime, inode, oi->raw_inode); 4603a26f4992STheodore Ts'o EXT4_INODE_SET_XTIME(i_mtime, inode, oi->raw_inode); 4604a26f4992STheodore Ts'o EXT4_INODE_SET_XTIME(i_atime, inode, oi->raw_inode); 4605a26f4992STheodore Ts'o ext4_inode_csum_set(inode, oi->raw_inode, ei); 4606a26f4992STheodore Ts'o spin_unlock(&ei->i_raw_lock); 4607a26f4992STheodore Ts'o trace_ext4_other_inode_update_time(inode, oi->orig_ino); 4608a26f4992STheodore Ts'o return -1; 4609a26f4992STheodore Ts'o } 4610a26f4992STheodore Ts'o spin_unlock(&inode->i_lock); 4611a26f4992STheodore Ts'o return -1; 4612a26f4992STheodore Ts'o } 4613a26f4992STheodore Ts'o 4614a26f4992STheodore Ts'o /* 4615a26f4992STheodore Ts'o * Opportunistically update the other time fields for other inodes in 4616a26f4992STheodore Ts'o * the same inode table block. 4617a26f4992STheodore Ts'o */ 4618a26f4992STheodore Ts'o static void ext4_update_other_inodes_time(struct super_block *sb, 4619a26f4992STheodore Ts'o unsigned long orig_ino, char *buf) 4620a26f4992STheodore Ts'o { 4621a26f4992STheodore Ts'o struct other_inode oi; 4622a26f4992STheodore Ts'o unsigned long ino; 4623a26f4992STheodore Ts'o int i, inodes_per_block = EXT4_SB(sb)->s_inodes_per_block; 4624a26f4992STheodore Ts'o int inode_size = EXT4_INODE_SIZE(sb); 4625a26f4992STheodore Ts'o 4626a26f4992STheodore Ts'o oi.orig_ino = orig_ino; 46270f0ff9a9STheodore Ts'o /* 46280f0ff9a9STheodore Ts'o * Calculate the first inode in the inode table block. Inode 46290f0ff9a9STheodore Ts'o * numbers are one-based. That is, the first inode in a block 46300f0ff9a9STheodore Ts'o * (assuming 4k blocks and 256 byte inodes) is (n*16 + 1). 46310f0ff9a9STheodore Ts'o */ 46320f0ff9a9STheodore Ts'o ino = ((orig_ino - 1) & ~(inodes_per_block - 1)) + 1; 4633a26f4992STheodore Ts'o for (i = 0; i < inodes_per_block; i++, ino++, buf += inode_size) { 4634a26f4992STheodore Ts'o if (ino == orig_ino) 4635a26f4992STheodore Ts'o continue; 4636a26f4992STheodore Ts'o oi.raw_inode = (struct ext4_inode *) buf; 4637a26f4992STheodore Ts'o (void) find_inode_nowait(sb, ino, other_inode_match, &oi); 4638a26f4992STheodore Ts'o } 4639a26f4992STheodore Ts'o } 4640a26f4992STheodore Ts'o 4641ac27a0ecSDave Kleikamp /* 4642ac27a0ecSDave Kleikamp * Post the struct inode info into an on-disk inode location in the 4643ac27a0ecSDave Kleikamp * buffer-cache. This gobbles the caller's reference to the 4644ac27a0ecSDave Kleikamp * buffer_head in the inode location struct. 4645ac27a0ecSDave Kleikamp * 4646ac27a0ecSDave Kleikamp * The caller must have write access to iloc->bh. 4647ac27a0ecSDave Kleikamp */ 4648617ba13bSMingming Cao static int ext4_do_update_inode(handle_t *handle, 4649ac27a0ecSDave Kleikamp struct inode *inode, 4650830156c7SFrank Mayhar struct ext4_iloc *iloc) 4651ac27a0ecSDave Kleikamp { 4652617ba13bSMingming Cao struct ext4_inode *raw_inode = ext4_raw_inode(iloc); 4653617ba13bSMingming Cao struct ext4_inode_info *ei = EXT4_I(inode); 4654ac27a0ecSDave Kleikamp struct buffer_head *bh = iloc->bh; 4655202ee5dfSTheodore Ts'o struct super_block *sb = inode->i_sb; 4656ac27a0ecSDave Kleikamp int err = 0, rc, block; 4657202ee5dfSTheodore Ts'o int need_datasync = 0, set_large_file = 0; 465808cefc7aSEric W. Biederman uid_t i_uid; 465908cefc7aSEric W. Biederman gid_t i_gid; 4660040cb378SLi Xi projid_t i_projid; 4661ac27a0ecSDave Kleikamp 4662202ee5dfSTheodore Ts'o spin_lock(&ei->i_raw_lock); 4663202ee5dfSTheodore Ts'o 4664202ee5dfSTheodore Ts'o /* For fields not tracked in the in-memory inode, 4665ac27a0ecSDave Kleikamp * initialise them to zero for new inodes. */ 466619f5fb7aSTheodore Ts'o if (ext4_test_inode_state(inode, EXT4_STATE_NEW)) 4667617ba13bSMingming Cao memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size); 4668ac27a0ecSDave Kleikamp 4669ff9ddf7eSJan Kara ext4_get_inode_flags(ei); 4670ac27a0ecSDave Kleikamp raw_inode->i_mode = cpu_to_le16(inode->i_mode); 467108cefc7aSEric W. Biederman i_uid = i_uid_read(inode); 467208cefc7aSEric W. Biederman i_gid = i_gid_read(inode); 4673040cb378SLi Xi i_projid = from_kprojid(&init_user_ns, ei->i_projid); 4674ac27a0ecSDave Kleikamp if (!(test_opt(inode->i_sb, NO_UID32))) { 467508cefc7aSEric W. Biederman raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid)); 467608cefc7aSEric W. Biederman raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid)); 4677ac27a0ecSDave Kleikamp /* 4678ac27a0ecSDave Kleikamp * Fix up interoperability with old kernels. Otherwise, old inodes get 4679ac27a0ecSDave Kleikamp * re-used with the upper 16 bits of the uid/gid intact 4680ac27a0ecSDave Kleikamp */ 4681ac27a0ecSDave Kleikamp if (!ei->i_dtime) { 4682ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 468308cefc7aSEric W. Biederman cpu_to_le16(high_16_bits(i_uid)); 4684ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 468508cefc7aSEric W. Biederman cpu_to_le16(high_16_bits(i_gid)); 4686ac27a0ecSDave Kleikamp } else { 4687ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 0; 4688ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 0; 4689ac27a0ecSDave Kleikamp } 4690ac27a0ecSDave Kleikamp } else { 469108cefc7aSEric W. Biederman raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid)); 469208cefc7aSEric W. Biederman raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid)); 4693ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 0; 4694ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 0; 4695ac27a0ecSDave Kleikamp } 4696ac27a0ecSDave Kleikamp raw_inode->i_links_count = cpu_to_le16(inode->i_nlink); 4697ef7f3835SKalpak Shah 4698ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode); 4699ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode); 4700ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode); 4701ef7f3835SKalpak Shah EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode); 4702ef7f3835SKalpak Shah 4703bce92d56SLi Xi err = ext4_inode_blocks_set(handle, raw_inode, ei); 4704bce92d56SLi Xi if (err) { 4705202ee5dfSTheodore Ts'o spin_unlock(&ei->i_raw_lock); 47060fc1b451SAneesh Kumar K.V goto out_brelse; 4707202ee5dfSTheodore Ts'o } 4708ac27a0ecSDave Kleikamp raw_inode->i_dtime = cpu_to_le32(ei->i_dtime); 4709353eb83cSTheodore Ts'o raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF); 4710ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) 4711a1ddeb7eSBadari Pulavarty raw_inode->i_file_acl_high = 4712a1ddeb7eSBadari Pulavarty cpu_to_le16(ei->i_file_acl >> 32); 47137973c0c1SAneesh Kumar K.V raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl); 4714b71fc079SJan Kara if (ei->i_disksize != ext4_isize(raw_inode)) { 4715a48380f7SAneesh Kumar K.V ext4_isize_set(raw_inode, ei->i_disksize); 4716b71fc079SJan Kara need_datasync = 1; 4717b71fc079SJan Kara } 4718ac27a0ecSDave Kleikamp if (ei->i_disksize > 0x7fffffffULL) { 4719e2b911c5SDarrick J. Wong if (!ext4_has_feature_large_file(sb) || 4720617ba13bSMingming Cao EXT4_SB(sb)->s_es->s_rev_level == 4721202ee5dfSTheodore Ts'o cpu_to_le32(EXT4_GOOD_OLD_REV)) 4722202ee5dfSTheodore Ts'o set_large_file = 1; 4723ac27a0ecSDave Kleikamp } 4724ac27a0ecSDave Kleikamp raw_inode->i_generation = cpu_to_le32(inode->i_generation); 4725ac27a0ecSDave Kleikamp if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) { 4726ac27a0ecSDave Kleikamp if (old_valid_dev(inode->i_rdev)) { 4727ac27a0ecSDave Kleikamp raw_inode->i_block[0] = 4728ac27a0ecSDave Kleikamp cpu_to_le32(old_encode_dev(inode->i_rdev)); 4729ac27a0ecSDave Kleikamp raw_inode->i_block[1] = 0; 4730ac27a0ecSDave Kleikamp } else { 4731ac27a0ecSDave Kleikamp raw_inode->i_block[0] = 0; 4732ac27a0ecSDave Kleikamp raw_inode->i_block[1] = 4733ac27a0ecSDave Kleikamp cpu_to_le32(new_encode_dev(inode->i_rdev)); 4734ac27a0ecSDave Kleikamp raw_inode->i_block[2] = 0; 4735ac27a0ecSDave Kleikamp } 4736f19d5870STao Ma } else if (!ext4_has_inline_data(inode)) { 4737de9a55b8STheodore Ts'o for (block = 0; block < EXT4_N_BLOCKS; block++) 4738ac27a0ecSDave Kleikamp raw_inode->i_block[block] = ei->i_data[block]; 4739f19d5870STao Ma } 4740ac27a0ecSDave Kleikamp 4741ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) { 474225ec56b5SJean Noel Cordenner raw_inode->i_disk_version = cpu_to_le32(inode->i_version); 474325ec56b5SJean Noel Cordenner if (ei->i_extra_isize) { 474425ec56b5SJean Noel Cordenner if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi)) 474525ec56b5SJean Noel Cordenner raw_inode->i_version_hi = 474625ec56b5SJean Noel Cordenner cpu_to_le32(inode->i_version >> 32); 4747c4f65706STheodore Ts'o raw_inode->i_extra_isize = 4748c4f65706STheodore Ts'o cpu_to_le16(ei->i_extra_isize); 4749c4f65706STheodore Ts'o } 475025ec56b5SJean Noel Cordenner } 4751040cb378SLi Xi 4752040cb378SLi Xi BUG_ON(!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, 4753040cb378SLi Xi EXT4_FEATURE_RO_COMPAT_PROJECT) && 4754040cb378SLi Xi i_projid != EXT4_DEF_PROJID); 4755040cb378SLi Xi 4756040cb378SLi Xi if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 4757040cb378SLi Xi EXT4_FITS_IN_INODE(raw_inode, ei, i_projid)) 4758040cb378SLi Xi raw_inode->i_projid = cpu_to_le32(i_projid); 4759040cb378SLi Xi 4760814525f4SDarrick J. Wong ext4_inode_csum_set(inode, raw_inode, ei); 4761202ee5dfSTheodore Ts'o spin_unlock(&ei->i_raw_lock); 4762a26f4992STheodore Ts'o if (inode->i_sb->s_flags & MS_LAZYTIME) 4763a26f4992STheodore Ts'o ext4_update_other_inodes_time(inode->i_sb, inode->i_ino, 4764a26f4992STheodore Ts'o bh->b_data); 4765202ee5dfSTheodore Ts'o 47660390131bSFrank Mayhar BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); 476773b50c1cSCurt Wohlgemuth rc = ext4_handle_dirty_metadata(handle, NULL, bh); 4768ac27a0ecSDave Kleikamp if (!err) 4769ac27a0ecSDave Kleikamp err = rc; 477019f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_NEW); 4771202ee5dfSTheodore Ts'o if (set_large_file) { 47725d601255Sliang xie BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access"); 4773202ee5dfSTheodore Ts'o err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh); 4774202ee5dfSTheodore Ts'o if (err) 4775202ee5dfSTheodore Ts'o goto out_brelse; 4776202ee5dfSTheodore Ts'o ext4_update_dynamic_rev(sb); 4777e2b911c5SDarrick J. Wong ext4_set_feature_large_file(sb); 4778202ee5dfSTheodore Ts'o ext4_handle_sync(handle); 4779202ee5dfSTheodore Ts'o err = ext4_handle_dirty_super(handle, sb); 4780202ee5dfSTheodore Ts'o } 4781b71fc079SJan Kara ext4_update_inode_fsync_trans(handle, inode, need_datasync); 4782ac27a0ecSDave Kleikamp out_brelse: 4783ac27a0ecSDave Kleikamp brelse(bh); 4784617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 4785ac27a0ecSDave Kleikamp return err; 4786ac27a0ecSDave Kleikamp } 4787ac27a0ecSDave Kleikamp 4788ac27a0ecSDave Kleikamp /* 4789617ba13bSMingming Cao * ext4_write_inode() 4790ac27a0ecSDave Kleikamp * 4791ac27a0ecSDave Kleikamp * We are called from a few places: 4792ac27a0ecSDave Kleikamp * 479387f7e416STheodore Ts'o * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files. 4794ac27a0ecSDave Kleikamp * Here, there will be no transaction running. We wait for any running 47954907cb7bSAnatol Pomozov * transaction to commit. 4796ac27a0ecSDave Kleikamp * 479787f7e416STheodore Ts'o * - Within flush work (sys_sync(), kupdate and such). 479887f7e416STheodore Ts'o * We wait on commit, if told to. 4799ac27a0ecSDave Kleikamp * 480087f7e416STheodore Ts'o * - Within iput_final() -> write_inode_now() 480187f7e416STheodore Ts'o * We wait on commit, if told to. 4802ac27a0ecSDave Kleikamp * 4803ac27a0ecSDave Kleikamp * In all cases it is actually safe for us to return without doing anything, 4804ac27a0ecSDave Kleikamp * because the inode has been copied into a raw inode buffer in 480587f7e416STheodore Ts'o * ext4_mark_inode_dirty(). This is a correctness thing for WB_SYNC_ALL 480687f7e416STheodore Ts'o * writeback. 4807ac27a0ecSDave Kleikamp * 4808ac27a0ecSDave Kleikamp * Note that we are absolutely dependent upon all inode dirtiers doing the 4809ac27a0ecSDave Kleikamp * right thing: they *must* call mark_inode_dirty() after dirtying info in 4810ac27a0ecSDave Kleikamp * which we are interested. 4811ac27a0ecSDave Kleikamp * 4812ac27a0ecSDave Kleikamp * It would be a bug for them to not do this. The code: 4813ac27a0ecSDave Kleikamp * 4814ac27a0ecSDave Kleikamp * mark_inode_dirty(inode) 4815ac27a0ecSDave Kleikamp * stuff(); 4816ac27a0ecSDave Kleikamp * inode->i_size = expr; 4817ac27a0ecSDave Kleikamp * 481887f7e416STheodore Ts'o * is in error because write_inode() could occur while `stuff()' is running, 481987f7e416STheodore Ts'o * and the new i_size will be lost. Plus the inode will no longer be on the 482087f7e416STheodore Ts'o * superblock's dirty inode list. 4821ac27a0ecSDave Kleikamp */ 4822a9185b41SChristoph Hellwig int ext4_write_inode(struct inode *inode, struct writeback_control *wbc) 4823ac27a0ecSDave Kleikamp { 482491ac6f43SFrank Mayhar int err; 482591ac6f43SFrank Mayhar 482687f7e416STheodore Ts'o if (WARN_ON_ONCE(current->flags & PF_MEMALLOC)) 4827ac27a0ecSDave Kleikamp return 0; 4828ac27a0ecSDave Kleikamp 482991ac6f43SFrank Mayhar if (EXT4_SB(inode->i_sb)->s_journal) { 4830617ba13bSMingming Cao if (ext4_journal_current_handle()) { 4831b38bd33aSMingming Cao jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n"); 4832ac27a0ecSDave Kleikamp dump_stack(); 4833ac27a0ecSDave Kleikamp return -EIO; 4834ac27a0ecSDave Kleikamp } 4835ac27a0ecSDave Kleikamp 483610542c22SJan Kara /* 483710542c22SJan Kara * No need to force transaction in WB_SYNC_NONE mode. Also 483810542c22SJan Kara * ext4_sync_fs() will force the commit after everything is 483910542c22SJan Kara * written. 484010542c22SJan Kara */ 484110542c22SJan Kara if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync) 4842ac27a0ecSDave Kleikamp return 0; 4843ac27a0ecSDave Kleikamp 484491ac6f43SFrank Mayhar err = ext4_force_commit(inode->i_sb); 484591ac6f43SFrank Mayhar } else { 484691ac6f43SFrank Mayhar struct ext4_iloc iloc; 484791ac6f43SFrank Mayhar 48488b472d73SCurt Wohlgemuth err = __ext4_get_inode_loc(inode, &iloc, 0); 484991ac6f43SFrank Mayhar if (err) 485091ac6f43SFrank Mayhar return err; 485110542c22SJan Kara /* 485210542c22SJan Kara * sync(2) will flush the whole buffer cache. No need to do 485310542c22SJan Kara * it here separately for each inode. 485410542c22SJan Kara */ 485510542c22SJan Kara if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync) 4856830156c7SFrank Mayhar sync_dirty_buffer(iloc.bh); 4857830156c7SFrank Mayhar if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) { 4858c398eda0STheodore Ts'o EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr, 4859c398eda0STheodore Ts'o "IO error syncing inode"); 4860830156c7SFrank Mayhar err = -EIO; 4861830156c7SFrank Mayhar } 4862fd2dd9fbSCurt Wohlgemuth brelse(iloc.bh); 486391ac6f43SFrank Mayhar } 486491ac6f43SFrank Mayhar return err; 4865ac27a0ecSDave Kleikamp } 4866ac27a0ecSDave Kleikamp 4867ac27a0ecSDave Kleikamp /* 486853e87268SJan Kara * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate 486953e87268SJan Kara * buffers that are attached to a page stradding i_size and are undergoing 487053e87268SJan Kara * commit. In that case we have to wait for commit to finish and try again. 487153e87268SJan Kara */ 487253e87268SJan Kara static void ext4_wait_for_tail_page_commit(struct inode *inode) 487353e87268SJan Kara { 487453e87268SJan Kara struct page *page; 487553e87268SJan Kara unsigned offset; 487653e87268SJan Kara journal_t *journal = EXT4_SB(inode->i_sb)->s_journal; 487753e87268SJan Kara tid_t commit_tid = 0; 487853e87268SJan Kara int ret; 487953e87268SJan Kara 488053e87268SJan Kara offset = inode->i_size & (PAGE_CACHE_SIZE - 1); 488153e87268SJan Kara /* 488253e87268SJan Kara * All buffers in the last page remain valid? Then there's nothing to 488353e87268SJan Kara * do. We do the check mainly to optimize the common PAGE_CACHE_SIZE == 488453e87268SJan Kara * blocksize case 488553e87268SJan Kara */ 488653e87268SJan Kara if (offset > PAGE_CACHE_SIZE - (1 << inode->i_blkbits)) 488753e87268SJan Kara return; 488853e87268SJan Kara while (1) { 488953e87268SJan Kara page = find_lock_page(inode->i_mapping, 489053e87268SJan Kara inode->i_size >> PAGE_CACHE_SHIFT); 489153e87268SJan Kara if (!page) 489253e87268SJan Kara return; 4893ca99fdd2SLukas Czerner ret = __ext4_journalled_invalidatepage(page, offset, 4894ca99fdd2SLukas Czerner PAGE_CACHE_SIZE - offset); 489553e87268SJan Kara unlock_page(page); 489653e87268SJan Kara page_cache_release(page); 489753e87268SJan Kara if (ret != -EBUSY) 489853e87268SJan Kara return; 489953e87268SJan Kara commit_tid = 0; 490053e87268SJan Kara read_lock(&journal->j_state_lock); 490153e87268SJan Kara if (journal->j_committing_transaction) 490253e87268SJan Kara commit_tid = journal->j_committing_transaction->t_tid; 490353e87268SJan Kara read_unlock(&journal->j_state_lock); 490453e87268SJan Kara if (commit_tid) 490553e87268SJan Kara jbd2_log_wait_commit(journal, commit_tid); 490653e87268SJan Kara } 490753e87268SJan Kara } 490853e87268SJan Kara 490953e87268SJan Kara /* 4910617ba13bSMingming Cao * ext4_setattr() 4911ac27a0ecSDave Kleikamp * 4912ac27a0ecSDave Kleikamp * Called from notify_change. 4913ac27a0ecSDave Kleikamp * 4914ac27a0ecSDave Kleikamp * We want to trap VFS attempts to truncate the file as soon as 4915ac27a0ecSDave Kleikamp * possible. In particular, we want to make sure that when the VFS 4916ac27a0ecSDave Kleikamp * shrinks i_size, we put the inode on the orphan list and modify 4917ac27a0ecSDave Kleikamp * i_disksize immediately, so that during the subsequent flushing of 4918ac27a0ecSDave Kleikamp * dirty pages and freeing of disk blocks, we can guarantee that any 4919ac27a0ecSDave Kleikamp * commit will leave the blocks being flushed in an unused state on 4920ac27a0ecSDave Kleikamp * disk. (On recovery, the inode will get truncated and the blocks will 4921ac27a0ecSDave Kleikamp * be freed, so we have a strong guarantee that no future commit will 4922ac27a0ecSDave Kleikamp * leave these blocks visible to the user.) 4923ac27a0ecSDave Kleikamp * 4924678aaf48SJan Kara * Another thing we have to assure is that if we are in ordered mode 4925678aaf48SJan Kara * and inode is still attached to the committing transaction, we must 4926678aaf48SJan Kara * we start writeout of all the dirty pages which are being truncated. 4927678aaf48SJan Kara * This way we are sure that all the data written in the previous 4928678aaf48SJan Kara * transaction are already on disk (truncate waits for pages under 4929678aaf48SJan Kara * writeback). 4930678aaf48SJan Kara * 4931678aaf48SJan Kara * Called with inode->i_mutex down. 4932ac27a0ecSDave Kleikamp */ 4933617ba13bSMingming Cao int ext4_setattr(struct dentry *dentry, struct iattr *attr) 4934ac27a0ecSDave Kleikamp { 49352b0143b5SDavid Howells struct inode *inode = d_inode(dentry); 4936ac27a0ecSDave Kleikamp int error, rc = 0; 49373d287de3SDmitry Monakhov int orphan = 0; 4938ac27a0ecSDave Kleikamp const unsigned int ia_valid = attr->ia_valid; 4939ac27a0ecSDave Kleikamp 4940ac27a0ecSDave Kleikamp error = inode_change_ok(inode, attr); 4941ac27a0ecSDave Kleikamp if (error) 4942ac27a0ecSDave Kleikamp return error; 4943ac27a0ecSDave Kleikamp 4944a7cdadeeSJan Kara if (is_quota_modification(inode, attr)) { 4945a7cdadeeSJan Kara error = dquot_initialize(inode); 4946a7cdadeeSJan Kara if (error) 4947a7cdadeeSJan Kara return error; 4948a7cdadeeSJan Kara } 494908cefc7aSEric W. Biederman if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) || 495008cefc7aSEric W. Biederman (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) { 4951ac27a0ecSDave Kleikamp handle_t *handle; 4952ac27a0ecSDave Kleikamp 4953ac27a0ecSDave Kleikamp /* (user+group)*(old+new) structure, inode write (sb, 4954ac27a0ecSDave Kleikamp * inode block, ? - but truncate inode update has it) */ 49559924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_QUOTA, 49569924a92aSTheodore Ts'o (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) + 4957194074acSDmitry Monakhov EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3); 4958ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 4959ac27a0ecSDave Kleikamp error = PTR_ERR(handle); 4960ac27a0ecSDave Kleikamp goto err_out; 4961ac27a0ecSDave Kleikamp } 4962b43fa828SChristoph Hellwig error = dquot_transfer(inode, attr); 4963ac27a0ecSDave Kleikamp if (error) { 4964617ba13bSMingming Cao ext4_journal_stop(handle); 4965ac27a0ecSDave Kleikamp return error; 4966ac27a0ecSDave Kleikamp } 4967ac27a0ecSDave Kleikamp /* Update corresponding info in inode so that everything is in 4968ac27a0ecSDave Kleikamp * one transaction */ 4969ac27a0ecSDave Kleikamp if (attr->ia_valid & ATTR_UID) 4970ac27a0ecSDave Kleikamp inode->i_uid = attr->ia_uid; 4971ac27a0ecSDave Kleikamp if (attr->ia_valid & ATTR_GID) 4972ac27a0ecSDave Kleikamp inode->i_gid = attr->ia_gid; 4973617ba13bSMingming Cao error = ext4_mark_inode_dirty(handle, inode); 4974617ba13bSMingming Cao ext4_journal_stop(handle); 4975ac27a0ecSDave Kleikamp } 4976ac27a0ecSDave Kleikamp 49773da40c7bSJosef Bacik if (attr->ia_valid & ATTR_SIZE) { 49785208386cSJan Kara handle_t *handle; 49793da40c7bSJosef Bacik loff_t oldsize = inode->i_size; 49803da40c7bSJosef Bacik int shrink = (attr->ia_size <= inode->i_size); 4981562c72aaSChristoph Hellwig 498212e9b892SDmitry Monakhov if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) { 4983e2b46574SEric Sandeen struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 4984e2b46574SEric Sandeen 49850c095c7fSTheodore Ts'o if (attr->ia_size > sbi->s_bitmap_maxbytes) 49860c095c7fSTheodore Ts'o return -EFBIG; 4987e2b46574SEric Sandeen } 49883da40c7bSJosef Bacik if (!S_ISREG(inode->i_mode)) 49893da40c7bSJosef Bacik return -EINVAL; 4990dff6efc3SChristoph Hellwig 4991dff6efc3SChristoph Hellwig if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size) 4992dff6efc3SChristoph Hellwig inode_inc_iversion(inode); 4993dff6efc3SChristoph Hellwig 49943da40c7bSJosef Bacik if (ext4_should_order_data(inode) && 4995072bd7eaSTheodore Ts'o (attr->ia_size < inode->i_size)) { 49965208386cSJan Kara error = ext4_begin_ordered_truncate(inode, 49975208386cSJan Kara attr->ia_size); 49985208386cSJan Kara if (error) 49995208386cSJan Kara goto err_out; 50005208386cSJan Kara } 50013da40c7bSJosef Bacik if (attr->ia_size != inode->i_size) { 50029924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 3); 5003ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 5004ac27a0ecSDave Kleikamp error = PTR_ERR(handle); 5005ac27a0ecSDave Kleikamp goto err_out; 5006ac27a0ecSDave Kleikamp } 50073da40c7bSJosef Bacik if (ext4_handle_valid(handle) && shrink) { 5008617ba13bSMingming Cao error = ext4_orphan_add(handle, inode); 50093d287de3SDmitry Monakhov orphan = 1; 50103d287de3SDmitry Monakhov } 5011911af577SEryu Guan /* 5012911af577SEryu Guan * Update c/mtime on truncate up, ext4_truncate() will 5013911af577SEryu Guan * update c/mtime in shrink case below 5014911af577SEryu Guan */ 5015911af577SEryu Guan if (!shrink) { 5016911af577SEryu Guan inode->i_mtime = ext4_current_time(inode); 5017911af577SEryu Guan inode->i_ctime = inode->i_mtime; 5018911af577SEryu Guan } 501990e775b7SJan Kara down_write(&EXT4_I(inode)->i_data_sem); 5020617ba13bSMingming Cao EXT4_I(inode)->i_disksize = attr->ia_size; 5021617ba13bSMingming Cao rc = ext4_mark_inode_dirty(handle, inode); 5022ac27a0ecSDave Kleikamp if (!error) 5023ac27a0ecSDave Kleikamp error = rc; 502490e775b7SJan Kara /* 502590e775b7SJan Kara * We have to update i_size under i_data_sem together 502690e775b7SJan Kara * with i_disksize to avoid races with writeback code 502790e775b7SJan Kara * running ext4_wb_update_i_disksize(). 502890e775b7SJan Kara */ 502990e775b7SJan Kara if (!error) 503090e775b7SJan Kara i_size_write(inode, attr->ia_size); 503190e775b7SJan Kara up_write(&EXT4_I(inode)->i_data_sem); 5032617ba13bSMingming Cao ext4_journal_stop(handle); 5033678aaf48SJan Kara if (error) { 50343da40c7bSJosef Bacik if (orphan) 5035678aaf48SJan Kara ext4_orphan_del(NULL, inode); 5036678aaf48SJan Kara goto err_out; 5037678aaf48SJan Kara } 5038d6320cbfSJan Kara } 50393da40c7bSJosef Bacik if (!shrink) 50403da40c7bSJosef Bacik pagecache_isize_extended(inode, oldsize, inode->i_size); 504190e775b7SJan Kara 504253e87268SJan Kara /* 504353e87268SJan Kara * Blocks are going to be removed from the inode. Wait 504453e87268SJan Kara * for dio in flight. Temporarily disable 504553e87268SJan Kara * dioread_nolock to prevent livelock. 504653e87268SJan Kara */ 50471b65007eSDmitry Monakhov if (orphan) { 504853e87268SJan Kara if (!ext4_should_journal_data(inode)) { 50491b65007eSDmitry Monakhov ext4_inode_block_unlocked_dio(inode); 50501c9114f9SDmitry Monakhov inode_dio_wait(inode); 50511b65007eSDmitry Monakhov ext4_inode_resume_unlocked_dio(inode); 505253e87268SJan Kara } else 505353e87268SJan Kara ext4_wait_for_tail_page_commit(inode); 50541b65007eSDmitry Monakhov } 5055ea3d7209SJan Kara down_write(&EXT4_I(inode)->i_mmap_sem); 505653e87268SJan Kara /* 505753e87268SJan Kara * Truncate pagecache after we've waited for commit 505853e87268SJan Kara * in data=journal mode to make pages freeable. 505953e87268SJan Kara */ 50607caef267SKirill A. Shutemov truncate_pagecache(inode, inode->i_size); 50613da40c7bSJosef Bacik if (shrink) 5062072bd7eaSTheodore Ts'o ext4_truncate(inode); 5063ea3d7209SJan Kara up_write(&EXT4_I(inode)->i_mmap_sem); 50643da40c7bSJosef Bacik } 5065ac27a0ecSDave Kleikamp 50661025774cSChristoph Hellwig if (!rc) { 50671025774cSChristoph Hellwig setattr_copy(inode, attr); 50681025774cSChristoph Hellwig mark_inode_dirty(inode); 50691025774cSChristoph Hellwig } 50701025774cSChristoph Hellwig 50711025774cSChristoph Hellwig /* 50721025774cSChristoph Hellwig * If the call to ext4_truncate failed to get a transaction handle at 50731025774cSChristoph Hellwig * all, we need to clean up the in-core orphan list manually. 50741025774cSChristoph Hellwig */ 50753d287de3SDmitry Monakhov if (orphan && inode->i_nlink) 5076617ba13bSMingming Cao ext4_orphan_del(NULL, inode); 5077ac27a0ecSDave Kleikamp 5078ac27a0ecSDave Kleikamp if (!rc && (ia_valid & ATTR_MODE)) 507964e178a7SChristoph Hellwig rc = posix_acl_chmod(inode, inode->i_mode); 5080ac27a0ecSDave Kleikamp 5081ac27a0ecSDave Kleikamp err_out: 5082617ba13bSMingming Cao ext4_std_error(inode->i_sb, error); 5083ac27a0ecSDave Kleikamp if (!error) 5084ac27a0ecSDave Kleikamp error = rc; 5085ac27a0ecSDave Kleikamp return error; 5086ac27a0ecSDave Kleikamp } 5087ac27a0ecSDave Kleikamp 50883e3398a0SMingming Cao int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry, 50893e3398a0SMingming Cao struct kstat *stat) 50903e3398a0SMingming Cao { 50913e3398a0SMingming Cao struct inode *inode; 50928af8eeccSJan Kara unsigned long long delalloc_blocks; 50933e3398a0SMingming Cao 50942b0143b5SDavid Howells inode = d_inode(dentry); 50953e3398a0SMingming Cao generic_fillattr(inode, stat); 50963e3398a0SMingming Cao 50973e3398a0SMingming Cao /* 50989206c561SAndreas Dilger * If there is inline data in the inode, the inode will normally not 50999206c561SAndreas Dilger * have data blocks allocated (it may have an external xattr block). 51009206c561SAndreas Dilger * Report at least one sector for such files, so tools like tar, rsync, 51019206c561SAndreas Dilger * others doen't incorrectly think the file is completely sparse. 51029206c561SAndreas Dilger */ 51039206c561SAndreas Dilger if (unlikely(ext4_has_inline_data(inode))) 51049206c561SAndreas Dilger stat->blocks += (stat->size + 511) >> 9; 51059206c561SAndreas Dilger 51069206c561SAndreas Dilger /* 51073e3398a0SMingming Cao * We can't update i_blocks if the block allocation is delayed 51083e3398a0SMingming Cao * otherwise in the case of system crash before the real block 51093e3398a0SMingming Cao * allocation is done, we will have i_blocks inconsistent with 51103e3398a0SMingming Cao * on-disk file blocks. 51113e3398a0SMingming Cao * We always keep i_blocks updated together with real 51123e3398a0SMingming Cao * allocation. But to not confuse with user, stat 51133e3398a0SMingming Cao * will return the blocks that include the delayed allocation 51143e3398a0SMingming Cao * blocks for this file. 51153e3398a0SMingming Cao */ 511696607551STao Ma delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb), 511796607551STao Ma EXT4_I(inode)->i_reserved_data_blocks); 51188af8eeccSJan Kara stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9); 51193e3398a0SMingming Cao return 0; 51203e3398a0SMingming Cao } 5121ac27a0ecSDave Kleikamp 5122fffb2739SJan Kara static int ext4_index_trans_blocks(struct inode *inode, int lblocks, 5123fffb2739SJan Kara int pextents) 5124a02908f1SMingming Cao { 512512e9b892SDmitry Monakhov if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) 5126fffb2739SJan Kara return ext4_ind_trans_blocks(inode, lblocks); 5127fffb2739SJan Kara return ext4_ext_index_trans_blocks(inode, pextents); 5128a02908f1SMingming Cao } 5129ac51d837STheodore Ts'o 5130a02908f1SMingming Cao /* 5131a02908f1SMingming Cao * Account for index blocks, block groups bitmaps and block group 5132a02908f1SMingming Cao * descriptor blocks if modify datablocks and index blocks 5133a02908f1SMingming Cao * worse case, the indexs blocks spread over different block groups 5134a02908f1SMingming Cao * 5135a02908f1SMingming Cao * If datablocks are discontiguous, they are possible to spread over 51364907cb7bSAnatol Pomozov * different block groups too. If they are contiguous, with flexbg, 5137a02908f1SMingming Cao * they could still across block group boundary. 5138a02908f1SMingming Cao * 5139a02908f1SMingming Cao * Also account for superblock, inode, quota and xattr blocks 5140a02908f1SMingming Cao */ 5141fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks, 5142fffb2739SJan Kara int pextents) 5143a02908f1SMingming Cao { 51448df9675fSTheodore Ts'o ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb); 51458df9675fSTheodore Ts'o int gdpblocks; 5146a02908f1SMingming Cao int idxblocks; 5147a02908f1SMingming Cao int ret = 0; 5148a02908f1SMingming Cao 5149a02908f1SMingming Cao /* 5150fffb2739SJan Kara * How many index blocks need to touch to map @lblocks logical blocks 5151fffb2739SJan Kara * to @pextents physical extents? 5152a02908f1SMingming Cao */ 5153fffb2739SJan Kara idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents); 5154a02908f1SMingming Cao 5155a02908f1SMingming Cao ret = idxblocks; 5156a02908f1SMingming Cao 5157a02908f1SMingming Cao /* 5158a02908f1SMingming Cao * Now let's see how many group bitmaps and group descriptors need 5159a02908f1SMingming Cao * to account 5160a02908f1SMingming Cao */ 5161fffb2739SJan Kara groups = idxblocks + pextents; 5162a02908f1SMingming Cao gdpblocks = groups; 51638df9675fSTheodore Ts'o if (groups > ngroups) 51648df9675fSTheodore Ts'o groups = ngroups; 5165a02908f1SMingming Cao if (groups > EXT4_SB(inode->i_sb)->s_gdb_count) 5166a02908f1SMingming Cao gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count; 5167a02908f1SMingming Cao 5168a02908f1SMingming Cao /* bitmaps and block group descriptor blocks */ 5169a02908f1SMingming Cao ret += groups + gdpblocks; 5170a02908f1SMingming Cao 5171a02908f1SMingming Cao /* Blocks for super block, inode, quota and xattr blocks */ 5172a02908f1SMingming Cao ret += EXT4_META_TRANS_BLOCKS(inode->i_sb); 5173ac27a0ecSDave Kleikamp 5174ac27a0ecSDave Kleikamp return ret; 5175ac27a0ecSDave Kleikamp } 5176ac27a0ecSDave Kleikamp 5177ac27a0ecSDave Kleikamp /* 517825985edcSLucas De Marchi * Calculate the total number of credits to reserve to fit 5179f3bd1f3fSMingming Cao * the modification of a single pages into a single transaction, 5180f3bd1f3fSMingming Cao * which may include multiple chunks of block allocations. 5181a02908f1SMingming Cao * 5182525f4ed8SMingming Cao * This could be called via ext4_write_begin() 5183a02908f1SMingming Cao * 5184525f4ed8SMingming Cao * We need to consider the worse case, when 5185a02908f1SMingming Cao * one new block per extent. 5186a02908f1SMingming Cao */ 5187a02908f1SMingming Cao int ext4_writepage_trans_blocks(struct inode *inode) 5188a02908f1SMingming Cao { 5189a02908f1SMingming Cao int bpp = ext4_journal_blocks_per_page(inode); 5190a02908f1SMingming Cao int ret; 5191a02908f1SMingming Cao 5192fffb2739SJan Kara ret = ext4_meta_trans_blocks(inode, bpp, bpp); 5193a02908f1SMingming Cao 5194a02908f1SMingming Cao /* Account for data blocks for journalled mode */ 5195a02908f1SMingming Cao if (ext4_should_journal_data(inode)) 5196a02908f1SMingming Cao ret += bpp; 5197a02908f1SMingming Cao return ret; 5198a02908f1SMingming Cao } 5199f3bd1f3fSMingming Cao 5200f3bd1f3fSMingming Cao /* 5201f3bd1f3fSMingming Cao * Calculate the journal credits for a chunk of data modification. 5202f3bd1f3fSMingming Cao * 5203f3bd1f3fSMingming Cao * This is called from DIO, fallocate or whoever calling 520479e83036SEric Sandeen * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks. 5205f3bd1f3fSMingming Cao * 5206f3bd1f3fSMingming Cao * journal buffers for data blocks are not included here, as DIO 5207f3bd1f3fSMingming Cao * and fallocate do no need to journal data buffers. 5208f3bd1f3fSMingming Cao */ 5209f3bd1f3fSMingming Cao int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks) 5210f3bd1f3fSMingming Cao { 5211f3bd1f3fSMingming Cao return ext4_meta_trans_blocks(inode, nrblocks, 1); 5212f3bd1f3fSMingming Cao } 5213f3bd1f3fSMingming Cao 5214a02908f1SMingming Cao /* 5215617ba13bSMingming Cao * The caller must have previously called ext4_reserve_inode_write(). 5216ac27a0ecSDave Kleikamp * Give this, we know that the caller already has write access to iloc->bh. 5217ac27a0ecSDave Kleikamp */ 5218617ba13bSMingming Cao int ext4_mark_iloc_dirty(handle_t *handle, 5219617ba13bSMingming Cao struct inode *inode, struct ext4_iloc *iloc) 5220ac27a0ecSDave Kleikamp { 5221ac27a0ecSDave Kleikamp int err = 0; 5222ac27a0ecSDave Kleikamp 5223c64db50eSTheodore Ts'o if (IS_I_VERSION(inode)) 522425ec56b5SJean Noel Cordenner inode_inc_iversion(inode); 522525ec56b5SJean Noel Cordenner 5226ac27a0ecSDave Kleikamp /* the do_update_inode consumes one bh->b_count */ 5227ac27a0ecSDave Kleikamp get_bh(iloc->bh); 5228ac27a0ecSDave Kleikamp 5229dab291afSMingming Cao /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */ 5230830156c7SFrank Mayhar err = ext4_do_update_inode(handle, inode, iloc); 5231ac27a0ecSDave Kleikamp put_bh(iloc->bh); 5232ac27a0ecSDave Kleikamp return err; 5233ac27a0ecSDave Kleikamp } 5234ac27a0ecSDave Kleikamp 5235ac27a0ecSDave Kleikamp /* 5236ac27a0ecSDave Kleikamp * On success, We end up with an outstanding reference count against 5237ac27a0ecSDave Kleikamp * iloc->bh. This _must_ be cleaned up later. 5238ac27a0ecSDave Kleikamp */ 5239ac27a0ecSDave Kleikamp 5240ac27a0ecSDave Kleikamp int 5241617ba13bSMingming Cao ext4_reserve_inode_write(handle_t *handle, struct inode *inode, 5242617ba13bSMingming Cao struct ext4_iloc *iloc) 5243ac27a0ecSDave Kleikamp { 52440390131bSFrank Mayhar int err; 52450390131bSFrank Mayhar 5246617ba13bSMingming Cao err = ext4_get_inode_loc(inode, iloc); 5247ac27a0ecSDave Kleikamp if (!err) { 5248ac27a0ecSDave Kleikamp BUFFER_TRACE(iloc->bh, "get_write_access"); 5249617ba13bSMingming Cao err = ext4_journal_get_write_access(handle, iloc->bh); 5250ac27a0ecSDave Kleikamp if (err) { 5251ac27a0ecSDave Kleikamp brelse(iloc->bh); 5252ac27a0ecSDave Kleikamp iloc->bh = NULL; 5253ac27a0ecSDave Kleikamp } 5254ac27a0ecSDave Kleikamp } 5255617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 5256ac27a0ecSDave Kleikamp return err; 5257ac27a0ecSDave Kleikamp } 5258ac27a0ecSDave Kleikamp 5259ac27a0ecSDave Kleikamp /* 52606dd4ee7cSKalpak Shah * Expand an inode by new_extra_isize bytes. 52616dd4ee7cSKalpak Shah * Returns 0 on success or negative error number on failure. 52626dd4ee7cSKalpak Shah */ 52631d03ec98SAneesh Kumar K.V static int ext4_expand_extra_isize(struct inode *inode, 52641d03ec98SAneesh Kumar K.V unsigned int new_extra_isize, 52651d03ec98SAneesh Kumar K.V struct ext4_iloc iloc, 52661d03ec98SAneesh Kumar K.V handle_t *handle) 52676dd4ee7cSKalpak Shah { 52686dd4ee7cSKalpak Shah struct ext4_inode *raw_inode; 52696dd4ee7cSKalpak Shah struct ext4_xattr_ibody_header *header; 52706dd4ee7cSKalpak Shah 52716dd4ee7cSKalpak Shah if (EXT4_I(inode)->i_extra_isize >= new_extra_isize) 52726dd4ee7cSKalpak Shah return 0; 52736dd4ee7cSKalpak Shah 52746dd4ee7cSKalpak Shah raw_inode = ext4_raw_inode(&iloc); 52756dd4ee7cSKalpak Shah 52766dd4ee7cSKalpak Shah header = IHDR(inode, raw_inode); 52776dd4ee7cSKalpak Shah 52786dd4ee7cSKalpak Shah /* No extended attributes present */ 527919f5fb7aSTheodore Ts'o if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) || 52806dd4ee7cSKalpak Shah header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) { 52816dd4ee7cSKalpak Shah memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0, 52826dd4ee7cSKalpak Shah new_extra_isize); 52836dd4ee7cSKalpak Shah EXT4_I(inode)->i_extra_isize = new_extra_isize; 52846dd4ee7cSKalpak Shah return 0; 52856dd4ee7cSKalpak Shah } 52866dd4ee7cSKalpak Shah 52876dd4ee7cSKalpak Shah /* try to expand with EAs present */ 52886dd4ee7cSKalpak Shah return ext4_expand_extra_isize_ea(inode, new_extra_isize, 52896dd4ee7cSKalpak Shah raw_inode, handle); 52906dd4ee7cSKalpak Shah } 52916dd4ee7cSKalpak Shah 52926dd4ee7cSKalpak Shah /* 5293ac27a0ecSDave Kleikamp * What we do here is to mark the in-core inode as clean with respect to inode 5294ac27a0ecSDave Kleikamp * dirtiness (it may still be data-dirty). 5295ac27a0ecSDave Kleikamp * This means that the in-core inode may be reaped by prune_icache 5296ac27a0ecSDave Kleikamp * without having to perform any I/O. This is a very good thing, 5297ac27a0ecSDave Kleikamp * because *any* task may call prune_icache - even ones which 5298ac27a0ecSDave Kleikamp * have a transaction open against a different journal. 5299ac27a0ecSDave Kleikamp * 5300ac27a0ecSDave Kleikamp * Is this cheating? Not really. Sure, we haven't written the 5301ac27a0ecSDave Kleikamp * inode out, but prune_icache isn't a user-visible syncing function. 5302ac27a0ecSDave Kleikamp * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync) 5303ac27a0ecSDave Kleikamp * we start and wait on commits. 5304ac27a0ecSDave Kleikamp */ 5305617ba13bSMingming Cao int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode) 5306ac27a0ecSDave Kleikamp { 5307617ba13bSMingming Cao struct ext4_iloc iloc; 53086dd4ee7cSKalpak Shah struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 53096dd4ee7cSKalpak Shah static unsigned int mnt_count; 53106dd4ee7cSKalpak Shah int err, ret; 5311ac27a0ecSDave Kleikamp 5312ac27a0ecSDave Kleikamp might_sleep(); 53137ff9c073STheodore Ts'o trace_ext4_mark_inode_dirty(inode, _RET_IP_); 5314617ba13bSMingming Cao err = ext4_reserve_inode_write(handle, inode, &iloc); 53150390131bSFrank Mayhar if (ext4_handle_valid(handle) && 53160390131bSFrank Mayhar EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize && 531719f5fb7aSTheodore Ts'o !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) { 53186dd4ee7cSKalpak Shah /* 53196dd4ee7cSKalpak Shah * We need extra buffer credits since we may write into EA block 53206dd4ee7cSKalpak Shah * with this same handle. If journal_extend fails, then it will 53216dd4ee7cSKalpak Shah * only result in a minor loss of functionality for that inode. 53226dd4ee7cSKalpak Shah * If this is felt to be critical, then e2fsck should be run to 53236dd4ee7cSKalpak Shah * force a large enough s_min_extra_isize. 53246dd4ee7cSKalpak Shah */ 53256dd4ee7cSKalpak Shah if ((jbd2_journal_extend(handle, 53266dd4ee7cSKalpak Shah EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) { 53276dd4ee7cSKalpak Shah ret = ext4_expand_extra_isize(inode, 53286dd4ee7cSKalpak Shah sbi->s_want_extra_isize, 53296dd4ee7cSKalpak Shah iloc, handle); 53306dd4ee7cSKalpak Shah if (ret) { 533119f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, 533219f5fb7aSTheodore Ts'o EXT4_STATE_NO_EXPAND); 5333c1bddad9SAneesh Kumar K.V if (mnt_count != 5334c1bddad9SAneesh Kumar K.V le16_to_cpu(sbi->s_es->s_mnt_count)) { 533512062dddSEric Sandeen ext4_warning(inode->i_sb, 53366dd4ee7cSKalpak Shah "Unable to expand inode %lu. Delete" 53376dd4ee7cSKalpak Shah " some EAs or run e2fsck.", 53386dd4ee7cSKalpak Shah inode->i_ino); 5339c1bddad9SAneesh Kumar K.V mnt_count = 5340c1bddad9SAneesh Kumar K.V le16_to_cpu(sbi->s_es->s_mnt_count); 53416dd4ee7cSKalpak Shah } 53426dd4ee7cSKalpak Shah } 53436dd4ee7cSKalpak Shah } 53446dd4ee7cSKalpak Shah } 5345ac27a0ecSDave Kleikamp if (!err) 5346617ba13bSMingming Cao err = ext4_mark_iloc_dirty(handle, inode, &iloc); 5347ac27a0ecSDave Kleikamp return err; 5348ac27a0ecSDave Kleikamp } 5349ac27a0ecSDave Kleikamp 5350ac27a0ecSDave Kleikamp /* 5351617ba13bSMingming Cao * ext4_dirty_inode() is called from __mark_inode_dirty() 5352ac27a0ecSDave Kleikamp * 5353ac27a0ecSDave Kleikamp * We're really interested in the case where a file is being extended. 5354ac27a0ecSDave Kleikamp * i_size has been changed by generic_commit_write() and we thus need 5355ac27a0ecSDave Kleikamp * to include the updated inode in the current transaction. 5356ac27a0ecSDave Kleikamp * 53575dd4056dSChristoph Hellwig * Also, dquot_alloc_block() will always dirty the inode when blocks 5358ac27a0ecSDave Kleikamp * are allocated to the file. 5359ac27a0ecSDave Kleikamp * 5360ac27a0ecSDave Kleikamp * If the inode is marked synchronous, we don't honour that here - doing 5361ac27a0ecSDave Kleikamp * so would cause a commit on atime updates, which we don't bother doing. 5362ac27a0ecSDave Kleikamp * We handle synchronous inodes at the highest possible level. 53630ae45f63STheodore Ts'o * 53640ae45f63STheodore Ts'o * If only the I_DIRTY_TIME flag is set, we can skip everything. If 53650ae45f63STheodore Ts'o * I_DIRTY_TIME and I_DIRTY_SYNC is set, the only inode fields we need 53660ae45f63STheodore Ts'o * to copy into the on-disk inode structure are the timestamp files. 5367ac27a0ecSDave Kleikamp */ 5368aa385729SChristoph Hellwig void ext4_dirty_inode(struct inode *inode, int flags) 5369ac27a0ecSDave Kleikamp { 5370ac27a0ecSDave Kleikamp handle_t *handle; 5371ac27a0ecSDave Kleikamp 53720ae45f63STheodore Ts'o if (flags == I_DIRTY_TIME) 53730ae45f63STheodore Ts'o return; 53749924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 2); 5375ac27a0ecSDave Kleikamp if (IS_ERR(handle)) 5376ac27a0ecSDave Kleikamp goto out; 5377f3dc272fSCurt Wohlgemuth 5378617ba13bSMingming Cao ext4_mark_inode_dirty(handle, inode); 5379f3dc272fSCurt Wohlgemuth 5380617ba13bSMingming Cao ext4_journal_stop(handle); 5381ac27a0ecSDave Kleikamp out: 5382ac27a0ecSDave Kleikamp return; 5383ac27a0ecSDave Kleikamp } 5384ac27a0ecSDave Kleikamp 5385ac27a0ecSDave Kleikamp #if 0 5386ac27a0ecSDave Kleikamp /* 5387ac27a0ecSDave Kleikamp * Bind an inode's backing buffer_head into this transaction, to prevent 5388ac27a0ecSDave Kleikamp * it from being flushed to disk early. Unlike 5389617ba13bSMingming Cao * ext4_reserve_inode_write, this leaves behind no bh reference and 5390ac27a0ecSDave Kleikamp * returns no iloc structure, so the caller needs to repeat the iloc 5391ac27a0ecSDave Kleikamp * lookup to mark the inode dirty later. 5392ac27a0ecSDave Kleikamp */ 5393617ba13bSMingming Cao static int ext4_pin_inode(handle_t *handle, struct inode *inode) 5394ac27a0ecSDave Kleikamp { 5395617ba13bSMingming Cao struct ext4_iloc iloc; 5396ac27a0ecSDave Kleikamp 5397ac27a0ecSDave Kleikamp int err = 0; 5398ac27a0ecSDave Kleikamp if (handle) { 5399617ba13bSMingming Cao err = ext4_get_inode_loc(inode, &iloc); 5400ac27a0ecSDave Kleikamp if (!err) { 5401ac27a0ecSDave Kleikamp BUFFER_TRACE(iloc.bh, "get_write_access"); 5402dab291afSMingming Cao err = jbd2_journal_get_write_access(handle, iloc.bh); 5403ac27a0ecSDave Kleikamp if (!err) 54040390131bSFrank Mayhar err = ext4_handle_dirty_metadata(handle, 540573b50c1cSCurt Wohlgemuth NULL, 5406ac27a0ecSDave Kleikamp iloc.bh); 5407ac27a0ecSDave Kleikamp brelse(iloc.bh); 5408ac27a0ecSDave Kleikamp } 5409ac27a0ecSDave Kleikamp } 5410617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 5411ac27a0ecSDave Kleikamp return err; 5412ac27a0ecSDave Kleikamp } 5413ac27a0ecSDave Kleikamp #endif 5414ac27a0ecSDave Kleikamp 5415617ba13bSMingming Cao int ext4_change_inode_journal_flag(struct inode *inode, int val) 5416ac27a0ecSDave Kleikamp { 5417ac27a0ecSDave Kleikamp journal_t *journal; 5418ac27a0ecSDave Kleikamp handle_t *handle; 5419ac27a0ecSDave Kleikamp int err; 5420ac27a0ecSDave Kleikamp 5421ac27a0ecSDave Kleikamp /* 5422ac27a0ecSDave Kleikamp * We have to be very careful here: changing a data block's 5423ac27a0ecSDave Kleikamp * journaling status dynamically is dangerous. If we write a 5424ac27a0ecSDave Kleikamp * data block to the journal, change the status and then delete 5425ac27a0ecSDave Kleikamp * that block, we risk forgetting to revoke the old log record 5426ac27a0ecSDave Kleikamp * from the journal and so a subsequent replay can corrupt data. 5427ac27a0ecSDave Kleikamp * So, first we make sure that the journal is empty and that 5428ac27a0ecSDave Kleikamp * nobody is changing anything. 5429ac27a0ecSDave Kleikamp */ 5430ac27a0ecSDave Kleikamp 5431617ba13bSMingming Cao journal = EXT4_JOURNAL(inode); 54320390131bSFrank Mayhar if (!journal) 54330390131bSFrank Mayhar return 0; 5434d699594dSDave Hansen if (is_journal_aborted(journal)) 5435ac27a0ecSDave Kleikamp return -EROFS; 54362aff57b0SYongqiang Yang /* We have to allocate physical blocks for delalloc blocks 54372aff57b0SYongqiang Yang * before flushing journal. otherwise delalloc blocks can not 54382aff57b0SYongqiang Yang * be allocated any more. even more truncate on delalloc blocks 54392aff57b0SYongqiang Yang * could trigger BUG by flushing delalloc blocks in journal. 54402aff57b0SYongqiang Yang * There is no delalloc block in non-journal data mode. 54412aff57b0SYongqiang Yang */ 54422aff57b0SYongqiang Yang if (val && test_opt(inode->i_sb, DELALLOC)) { 54432aff57b0SYongqiang Yang err = ext4_alloc_da_blocks(inode); 54442aff57b0SYongqiang Yang if (err < 0) 54452aff57b0SYongqiang Yang return err; 54462aff57b0SYongqiang Yang } 5447ac27a0ecSDave Kleikamp 544817335dccSDmitry Monakhov /* Wait for all existing dio workers */ 544917335dccSDmitry Monakhov ext4_inode_block_unlocked_dio(inode); 545017335dccSDmitry Monakhov inode_dio_wait(inode); 545117335dccSDmitry Monakhov 5452dab291afSMingming Cao jbd2_journal_lock_updates(journal); 5453ac27a0ecSDave Kleikamp 5454ac27a0ecSDave Kleikamp /* 5455ac27a0ecSDave Kleikamp * OK, there are no updates running now, and all cached data is 5456ac27a0ecSDave Kleikamp * synced to disk. We are now in a completely consistent state 5457ac27a0ecSDave Kleikamp * which doesn't have anything in the journal, and we know that 5458ac27a0ecSDave Kleikamp * no filesystem updates are running, so it is safe to modify 5459ac27a0ecSDave Kleikamp * the inode's in-core data-journaling state flag now. 5460ac27a0ecSDave Kleikamp */ 5461ac27a0ecSDave Kleikamp 5462ac27a0ecSDave Kleikamp if (val) 546312e9b892SDmitry Monakhov ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA); 54645872ddaaSYongqiang Yang else { 54654f879ca6SJan Kara err = jbd2_journal_flush(journal); 54664f879ca6SJan Kara if (err < 0) { 54674f879ca6SJan Kara jbd2_journal_unlock_updates(journal); 54684f879ca6SJan Kara ext4_inode_resume_unlocked_dio(inode); 54694f879ca6SJan Kara return err; 54704f879ca6SJan Kara } 547112e9b892SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA); 54725872ddaaSYongqiang Yang } 5473617ba13bSMingming Cao ext4_set_aops(inode); 5474ac27a0ecSDave Kleikamp 5475dab291afSMingming Cao jbd2_journal_unlock_updates(journal); 547617335dccSDmitry Monakhov ext4_inode_resume_unlocked_dio(inode); 5477ac27a0ecSDave Kleikamp 5478ac27a0ecSDave Kleikamp /* Finally we can mark the inode as dirty. */ 5479ac27a0ecSDave Kleikamp 54809924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 1); 5481ac27a0ecSDave Kleikamp if (IS_ERR(handle)) 5482ac27a0ecSDave Kleikamp return PTR_ERR(handle); 5483ac27a0ecSDave Kleikamp 5484617ba13bSMingming Cao err = ext4_mark_inode_dirty(handle, inode); 54850390131bSFrank Mayhar ext4_handle_sync(handle); 5486617ba13bSMingming Cao ext4_journal_stop(handle); 5487617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 5488ac27a0ecSDave Kleikamp 5489ac27a0ecSDave Kleikamp return err; 5490ac27a0ecSDave Kleikamp } 54912e9ee850SAneesh Kumar K.V 54922e9ee850SAneesh Kumar K.V static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh) 54932e9ee850SAneesh Kumar K.V { 54942e9ee850SAneesh Kumar K.V return !buffer_mapped(bh); 54952e9ee850SAneesh Kumar K.V } 54962e9ee850SAneesh Kumar K.V 5497c2ec175cSNick Piggin int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf) 54982e9ee850SAneesh Kumar K.V { 5499c2ec175cSNick Piggin struct page *page = vmf->page; 55002e9ee850SAneesh Kumar K.V loff_t size; 55012e9ee850SAneesh Kumar K.V unsigned long len; 55029ea7df53SJan Kara int ret; 55032e9ee850SAneesh Kumar K.V struct file *file = vma->vm_file; 5504496ad9aaSAl Viro struct inode *inode = file_inode(file); 55052e9ee850SAneesh Kumar K.V struct address_space *mapping = inode->i_mapping; 55069ea7df53SJan Kara handle_t *handle; 55079ea7df53SJan Kara get_block_t *get_block; 55089ea7df53SJan Kara int retries = 0; 55092e9ee850SAneesh Kumar K.V 55108e8ad8a5SJan Kara sb_start_pagefault(inode->i_sb); 5511041bbb6dSTheodore Ts'o file_update_time(vma->vm_file); 5512ea3d7209SJan Kara 5513ea3d7209SJan Kara down_read(&EXT4_I(inode)->i_mmap_sem); 55149ea7df53SJan Kara /* Delalloc case is easy... */ 55159ea7df53SJan Kara if (test_opt(inode->i_sb, DELALLOC) && 55169ea7df53SJan Kara !ext4_should_journal_data(inode) && 55179ea7df53SJan Kara !ext4_nonda_switch(inode->i_sb)) { 55189ea7df53SJan Kara do { 55195c500029SRoss Zwisler ret = block_page_mkwrite(vma, vmf, 55209ea7df53SJan Kara ext4_da_get_block_prep); 55219ea7df53SJan Kara } while (ret == -ENOSPC && 55229ea7df53SJan Kara ext4_should_retry_alloc(inode->i_sb, &retries)); 55239ea7df53SJan Kara goto out_ret; 55242e9ee850SAneesh Kumar K.V } 55250e499890SDarrick J. Wong 55260e499890SDarrick J. Wong lock_page(page); 55279ea7df53SJan Kara size = i_size_read(inode); 55289ea7df53SJan Kara /* Page got truncated from under us? */ 55299ea7df53SJan Kara if (page->mapping != mapping || page_offset(page) > size) { 55309ea7df53SJan Kara unlock_page(page); 55319ea7df53SJan Kara ret = VM_FAULT_NOPAGE; 55329ea7df53SJan Kara goto out; 55330e499890SDarrick J. Wong } 55342e9ee850SAneesh Kumar K.V 55352e9ee850SAneesh Kumar K.V if (page->index == size >> PAGE_CACHE_SHIFT) 55362e9ee850SAneesh Kumar K.V len = size & ~PAGE_CACHE_MASK; 55372e9ee850SAneesh Kumar K.V else 55382e9ee850SAneesh Kumar K.V len = PAGE_CACHE_SIZE; 5539a827eaffSAneesh Kumar K.V /* 55409ea7df53SJan Kara * Return if we have all the buffers mapped. This avoids the need to do 55419ea7df53SJan Kara * journal_start/journal_stop which can block and take a long time 5542a827eaffSAneesh Kumar K.V */ 55432e9ee850SAneesh Kumar K.V if (page_has_buffers(page)) { 5544f19d5870STao Ma if (!ext4_walk_page_buffers(NULL, page_buffers(page), 5545f19d5870STao Ma 0, len, NULL, 5546a827eaffSAneesh Kumar K.V ext4_bh_unmapped)) { 55479ea7df53SJan Kara /* Wait so that we don't change page under IO */ 55481d1d1a76SDarrick J. Wong wait_for_stable_page(page); 55499ea7df53SJan Kara ret = VM_FAULT_LOCKED; 55509ea7df53SJan Kara goto out; 55512e9ee850SAneesh Kumar K.V } 5552a827eaffSAneesh Kumar K.V } 5553a827eaffSAneesh Kumar K.V unlock_page(page); 55549ea7df53SJan Kara /* OK, we need to fill the hole... */ 55559ea7df53SJan Kara if (ext4_should_dioread_nolock(inode)) 5556705965bdSJan Kara get_block = ext4_get_block_unwritten; 55579ea7df53SJan Kara else 55589ea7df53SJan Kara get_block = ext4_get_block; 55599ea7df53SJan Kara retry_alloc: 55609924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 55619924a92aSTheodore Ts'o ext4_writepage_trans_blocks(inode)); 55629ea7df53SJan Kara if (IS_ERR(handle)) { 5563c2ec175cSNick Piggin ret = VM_FAULT_SIGBUS; 55649ea7df53SJan Kara goto out; 55659ea7df53SJan Kara } 55665c500029SRoss Zwisler ret = block_page_mkwrite(vma, vmf, get_block); 55679ea7df53SJan Kara if (!ret && ext4_should_journal_data(inode)) { 5568f19d5870STao Ma if (ext4_walk_page_buffers(handle, page_buffers(page), 0, 55699ea7df53SJan Kara PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) { 55709ea7df53SJan Kara unlock_page(page); 55719ea7df53SJan Kara ret = VM_FAULT_SIGBUS; 5572fcbb5515SYongqiang Yang ext4_journal_stop(handle); 55739ea7df53SJan Kara goto out; 55749ea7df53SJan Kara } 55759ea7df53SJan Kara ext4_set_inode_state(inode, EXT4_STATE_JDATA); 55769ea7df53SJan Kara } 55779ea7df53SJan Kara ext4_journal_stop(handle); 55789ea7df53SJan Kara if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries)) 55799ea7df53SJan Kara goto retry_alloc; 55809ea7df53SJan Kara out_ret: 55819ea7df53SJan Kara ret = block_page_mkwrite_return(ret); 55829ea7df53SJan Kara out: 5583ea3d7209SJan Kara up_read(&EXT4_I(inode)->i_mmap_sem); 55848e8ad8a5SJan Kara sb_end_pagefault(inode->i_sb); 55852e9ee850SAneesh Kumar K.V return ret; 55862e9ee850SAneesh Kumar K.V } 5587ea3d7209SJan Kara 5588ea3d7209SJan Kara int ext4_filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf) 5589ea3d7209SJan Kara { 5590ea3d7209SJan Kara struct inode *inode = file_inode(vma->vm_file); 5591ea3d7209SJan Kara int err; 5592ea3d7209SJan Kara 5593ea3d7209SJan Kara down_read(&EXT4_I(inode)->i_mmap_sem); 5594ea3d7209SJan Kara err = filemap_fault(vma, vmf); 5595ea3d7209SJan Kara up_read(&EXT4_I(inode)->i_mmap_sem); 5596ea3d7209SJan Kara 5597ea3d7209SJan Kara return err; 5598ea3d7209SJan Kara } 5599*2d90c160SJan Kara 5600*2d90c160SJan Kara /* 5601*2d90c160SJan Kara * Find the first extent at or after @lblk in an inode that is not a hole. 5602*2d90c160SJan Kara * Search for @map_len blocks at most. The extent is returned in @result. 5603*2d90c160SJan Kara * 5604*2d90c160SJan Kara * The function returns 1 if we found an extent. The function returns 0 in 5605*2d90c160SJan Kara * case there is no extent at or after @lblk and in that case also sets 5606*2d90c160SJan Kara * @result->es_len to 0. In case of error, the error code is returned. 5607*2d90c160SJan Kara */ 5608*2d90c160SJan Kara int ext4_get_next_extent(struct inode *inode, ext4_lblk_t lblk, 5609*2d90c160SJan Kara unsigned int map_len, struct extent_status *result) 5610*2d90c160SJan Kara { 5611*2d90c160SJan Kara struct ext4_map_blocks map; 5612*2d90c160SJan Kara struct extent_status es = {}; 5613*2d90c160SJan Kara int ret; 5614*2d90c160SJan Kara 5615*2d90c160SJan Kara map.m_lblk = lblk; 5616*2d90c160SJan Kara map.m_len = map_len; 5617*2d90c160SJan Kara 5618*2d90c160SJan Kara /* 5619*2d90c160SJan Kara * For non-extent based files this loop may iterate several times since 5620*2d90c160SJan Kara * we do not determine full hole size. 5621*2d90c160SJan Kara */ 5622*2d90c160SJan Kara while (map.m_len > 0) { 5623*2d90c160SJan Kara ret = ext4_map_blocks(NULL, inode, &map, 0); 5624*2d90c160SJan Kara if (ret < 0) 5625*2d90c160SJan Kara return ret; 5626*2d90c160SJan Kara /* There's extent covering m_lblk? Just return it. */ 5627*2d90c160SJan Kara if (ret > 0) { 5628*2d90c160SJan Kara int status; 5629*2d90c160SJan Kara 5630*2d90c160SJan Kara ext4_es_store_pblock(result, map.m_pblk); 5631*2d90c160SJan Kara result->es_lblk = map.m_lblk; 5632*2d90c160SJan Kara result->es_len = map.m_len; 5633*2d90c160SJan Kara if (map.m_flags & EXT4_MAP_UNWRITTEN) 5634*2d90c160SJan Kara status = EXTENT_STATUS_UNWRITTEN; 5635*2d90c160SJan Kara else 5636*2d90c160SJan Kara status = EXTENT_STATUS_WRITTEN; 5637*2d90c160SJan Kara ext4_es_store_status(result, status); 5638*2d90c160SJan Kara return 1; 5639*2d90c160SJan Kara } 5640*2d90c160SJan Kara ext4_es_find_delayed_extent_range(inode, map.m_lblk, 5641*2d90c160SJan Kara map.m_lblk + map.m_len - 1, 5642*2d90c160SJan Kara &es); 5643*2d90c160SJan Kara /* Is delalloc data before next block in extent tree? */ 5644*2d90c160SJan Kara if (es.es_len && es.es_lblk < map.m_lblk + map.m_len) { 5645*2d90c160SJan Kara ext4_lblk_t offset = 0; 5646*2d90c160SJan Kara 5647*2d90c160SJan Kara if (es.es_lblk < lblk) 5648*2d90c160SJan Kara offset = lblk - es.es_lblk; 5649*2d90c160SJan Kara result->es_lblk = es.es_lblk + offset; 5650*2d90c160SJan Kara ext4_es_store_pblock(result, 5651*2d90c160SJan Kara ext4_es_pblock(&es) + offset); 5652*2d90c160SJan Kara result->es_len = es.es_len - offset; 5653*2d90c160SJan Kara ext4_es_store_status(result, ext4_es_status(&es)); 5654*2d90c160SJan Kara 5655*2d90c160SJan Kara return 1; 5656*2d90c160SJan Kara } 5657*2d90c160SJan Kara /* There's a hole at m_lblk, advance us after it */ 5658*2d90c160SJan Kara map.m_lblk += map.m_len; 5659*2d90c160SJan Kara map_len -= map.m_len; 5660*2d90c160SJan Kara map.m_len = map_len; 5661*2d90c160SJan Kara cond_resched(); 5662*2d90c160SJan Kara } 5663*2d90c160SJan Kara result->es_len = 0; 5664*2d90c160SJan Kara return 0; 5665*2d90c160SJan Kara } 5666