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> 23dab291afSMingming Cao #include <linux/jbd2.h> 24ac27a0ecSDave Kleikamp #include <linux/highuid.h> 25ac27a0ecSDave Kleikamp #include <linux/pagemap.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> 39a8901d34STheodore Ts'o #include <linux/ratelimit.h> 40a27bb332SKent Overstreet #include <linux/aio.h> 4100a1a053STheodore Ts'o #include <linux/bitops.h> 429bffad1eSTheodore Ts'o 433dcf5451SChristoph Hellwig #include "ext4_jbd2.h" 44ac27a0ecSDave Kleikamp #include "xattr.h" 45ac27a0ecSDave Kleikamp #include "acl.h" 469f125d64STheodore Ts'o #include "truncate.h" 47ac27a0ecSDave Kleikamp 489bffad1eSTheodore Ts'o #include <trace/events/ext4.h> 499bffad1eSTheodore Ts'o 50a1d6cc56SAneesh Kumar K.V #define MPAGE_DA_EXTENT_TAIL 0x01 51a1d6cc56SAneesh Kumar K.V 52814525f4SDarrick J. Wong static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw, 53814525f4SDarrick J. Wong struct ext4_inode_info *ei) 54814525f4SDarrick J. Wong { 55814525f4SDarrick J. Wong struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 56814525f4SDarrick J. Wong __u16 csum_lo; 57814525f4SDarrick J. Wong __u16 csum_hi = 0; 58814525f4SDarrick J. Wong __u32 csum; 59814525f4SDarrick J. Wong 60171a7f21SDmitry Monakhov csum_lo = le16_to_cpu(raw->i_checksum_lo); 61814525f4SDarrick J. Wong raw->i_checksum_lo = 0; 62814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 63814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) { 64171a7f21SDmitry Monakhov csum_hi = le16_to_cpu(raw->i_checksum_hi); 65814525f4SDarrick J. Wong raw->i_checksum_hi = 0; 66814525f4SDarrick J. Wong } 67814525f4SDarrick J. Wong 68814525f4SDarrick J. Wong csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw, 69814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)); 70814525f4SDarrick J. Wong 71171a7f21SDmitry Monakhov raw->i_checksum_lo = cpu_to_le16(csum_lo); 72814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 73814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 74171a7f21SDmitry Monakhov raw->i_checksum_hi = cpu_to_le16(csum_hi); 75814525f4SDarrick J. Wong 76814525f4SDarrick J. Wong return csum; 77814525f4SDarrick J. Wong } 78814525f4SDarrick J. Wong 79814525f4SDarrick J. Wong static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw, 80814525f4SDarrick J. Wong struct ext4_inode_info *ei) 81814525f4SDarrick J. Wong { 82814525f4SDarrick J. Wong __u32 provided, calculated; 83814525f4SDarrick J. Wong 84814525f4SDarrick J. Wong if (EXT4_SB(inode->i_sb)->s_es->s_creator_os != 85814525f4SDarrick J. Wong cpu_to_le32(EXT4_OS_LINUX) || 86814525f4SDarrick J. Wong !EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, 87814525f4SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)) 88814525f4SDarrick J. Wong return 1; 89814525f4SDarrick J. Wong 90814525f4SDarrick J. Wong provided = le16_to_cpu(raw->i_checksum_lo); 91814525f4SDarrick J. Wong calculated = ext4_inode_csum(inode, raw, ei); 92814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 93814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 94814525f4SDarrick J. Wong provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16; 95814525f4SDarrick J. Wong else 96814525f4SDarrick J. Wong calculated &= 0xFFFF; 97814525f4SDarrick J. Wong 98814525f4SDarrick J. Wong return provided == calculated; 99814525f4SDarrick J. Wong } 100814525f4SDarrick J. Wong 101814525f4SDarrick J. Wong static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw, 102814525f4SDarrick J. Wong struct ext4_inode_info *ei) 103814525f4SDarrick J. Wong { 104814525f4SDarrick J. Wong __u32 csum; 105814525f4SDarrick J. Wong 106814525f4SDarrick J. Wong if (EXT4_SB(inode->i_sb)->s_es->s_creator_os != 107814525f4SDarrick J. Wong cpu_to_le32(EXT4_OS_LINUX) || 108814525f4SDarrick J. Wong !EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, 109814525f4SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)) 110814525f4SDarrick J. Wong return; 111814525f4SDarrick J. Wong 112814525f4SDarrick J. Wong csum = ext4_inode_csum(inode, raw, ei); 113814525f4SDarrick J. Wong raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF); 114814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 115814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 116814525f4SDarrick J. Wong raw->i_checksum_hi = cpu_to_le16(csum >> 16); 117814525f4SDarrick J. Wong } 118814525f4SDarrick J. Wong 119678aaf48SJan Kara static inline int ext4_begin_ordered_truncate(struct inode *inode, 120678aaf48SJan Kara loff_t new_size) 121678aaf48SJan Kara { 1227ff9c073STheodore Ts'o trace_ext4_begin_ordered_truncate(inode, new_size); 1238aefcd55STheodore Ts'o /* 1248aefcd55STheodore Ts'o * If jinode is zero, then we never opened the file for 1258aefcd55STheodore Ts'o * writing, so there's no need to call 1268aefcd55STheodore Ts'o * jbd2_journal_begin_ordered_truncate() since there's no 1278aefcd55STheodore Ts'o * outstanding writes we need to flush. 1288aefcd55STheodore Ts'o */ 1298aefcd55STheodore Ts'o if (!EXT4_I(inode)->jinode) 1308aefcd55STheodore Ts'o return 0; 1318aefcd55STheodore Ts'o return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode), 1328aefcd55STheodore Ts'o EXT4_I(inode)->jinode, 133678aaf48SJan Kara new_size); 134678aaf48SJan Kara } 135678aaf48SJan Kara 136d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset, 137d47992f8SLukas Czerner unsigned int length); 138cb20d518STheodore Ts'o static int __ext4_journalled_writepage(struct page *page, unsigned int len); 139cb20d518STheodore Ts'o static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh); 140fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks, 141fffb2739SJan Kara int pextents); 14264769240SAlex Tomas 143ac27a0ecSDave Kleikamp /* 144ac27a0ecSDave Kleikamp * Test whether an inode is a fast symlink. 145ac27a0ecSDave Kleikamp */ 146617ba13bSMingming Cao static int ext4_inode_is_fast_symlink(struct inode *inode) 147ac27a0ecSDave Kleikamp { 148617ba13bSMingming Cao int ea_blocks = EXT4_I(inode)->i_file_acl ? 14965eddb56SYongqiang Yang EXT4_CLUSTER_SIZE(inode->i_sb) >> 9 : 0; 150ac27a0ecSDave Kleikamp 151bd9db175SZheng Liu if (ext4_has_inline_data(inode)) 152bd9db175SZheng Liu return 0; 153bd9db175SZheng Liu 154ac27a0ecSDave Kleikamp return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0); 155ac27a0ecSDave Kleikamp } 156ac27a0ecSDave Kleikamp 157ac27a0ecSDave Kleikamp /* 158ac27a0ecSDave Kleikamp * Restart the transaction associated with *handle. This does a commit, 159ac27a0ecSDave Kleikamp * so before we call here everything must be consistently dirtied against 160ac27a0ecSDave Kleikamp * this transaction. 161ac27a0ecSDave Kleikamp */ 162487caeefSJan Kara int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode, 163487caeefSJan Kara int nblocks) 164ac27a0ecSDave Kleikamp { 165487caeefSJan Kara int ret; 166487caeefSJan Kara 167487caeefSJan Kara /* 168e35fd660STheodore Ts'o * Drop i_data_sem to avoid deadlock with ext4_map_blocks. At this 169487caeefSJan Kara * moment, get_block can be called only for blocks inside i_size since 170487caeefSJan Kara * page cache has been already dropped and writes are blocked by 171487caeefSJan Kara * i_mutex. So we can safely drop the i_data_sem here. 172487caeefSJan Kara */ 1730390131bSFrank Mayhar BUG_ON(EXT4_JOURNAL(inode) == NULL); 174ac27a0ecSDave Kleikamp jbd_debug(2, "restarting handle %p\n", handle); 175487caeefSJan Kara up_write(&EXT4_I(inode)->i_data_sem); 1768e8eaabeSAmir Goldstein ret = ext4_journal_restart(handle, nblocks); 177487caeefSJan Kara down_write(&EXT4_I(inode)->i_data_sem); 178fa5d1113SAneesh Kumar K.V ext4_discard_preallocations(inode); 179487caeefSJan Kara 180487caeefSJan Kara return ret; 181ac27a0ecSDave Kleikamp } 182ac27a0ecSDave Kleikamp 183ac27a0ecSDave Kleikamp /* 184ac27a0ecSDave Kleikamp * Called at the last iput() if i_nlink is zero. 185ac27a0ecSDave Kleikamp */ 1860930fcc1SAl Viro void ext4_evict_inode(struct inode *inode) 187ac27a0ecSDave Kleikamp { 188ac27a0ecSDave Kleikamp handle_t *handle; 189bc965ab3STheodore Ts'o int err; 190ac27a0ecSDave Kleikamp 1917ff9c073STheodore Ts'o trace_ext4_evict_inode(inode); 1922581fdc8SJiaying Zhang 1930930fcc1SAl Viro if (inode->i_nlink) { 1942d859db3SJan Kara /* 1952d859db3SJan Kara * When journalling data dirty buffers are tracked only in the 1962d859db3SJan Kara * journal. So although mm thinks everything is clean and 1972d859db3SJan Kara * ready for reaping the inode might still have some pages to 1982d859db3SJan Kara * write in the running transaction or waiting to be 1992d859db3SJan Kara * checkpointed. Thus calling jbd2_journal_invalidatepage() 2002d859db3SJan Kara * (via truncate_inode_pages()) to discard these buffers can 2012d859db3SJan Kara * cause data loss. Also even if we did not discard these 2022d859db3SJan Kara * buffers, we would have no way to find them after the inode 2032d859db3SJan Kara * is reaped and thus user could see stale data if he tries to 2042d859db3SJan Kara * read them before the transaction is checkpointed. So be 2052d859db3SJan Kara * careful and force everything to disk here... We use 2062d859db3SJan Kara * ei->i_datasync_tid to store the newest transaction 2072d859db3SJan Kara * containing inode's data. 2082d859db3SJan Kara * 2092d859db3SJan Kara * Note that directories do not have this problem because they 2102d859db3SJan Kara * don't use page cache. 2112d859db3SJan Kara */ 2122d859db3SJan Kara if (ext4_should_journal_data(inode) && 2132b405bfaSTheodore Ts'o (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) && 2142b405bfaSTheodore Ts'o inode->i_ino != EXT4_JOURNAL_INO) { 2152d859db3SJan Kara journal_t *journal = EXT4_SB(inode->i_sb)->s_journal; 2162d859db3SJan Kara tid_t commit_tid = EXT4_I(inode)->i_datasync_tid; 2172d859db3SJan Kara 218d76a3a77STheodore Ts'o jbd2_complete_transaction(journal, commit_tid); 2192d859db3SJan Kara filemap_write_and_wait(&inode->i_data); 2202d859db3SJan Kara } 22191b0abe3SJohannes Weiner truncate_inode_pages_final(&inode->i_data); 2225dc23bddSJan Kara 2235dc23bddSJan Kara WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count)); 2240930fcc1SAl Viro goto no_delete; 2250930fcc1SAl Viro } 2260930fcc1SAl Viro 227e2bfb088STheodore Ts'o if (is_bad_inode(inode)) 228e2bfb088STheodore Ts'o goto no_delete; 229871a2931SChristoph Hellwig dquot_initialize(inode); 230907f4554SChristoph Hellwig 231678aaf48SJan Kara if (ext4_should_order_data(inode)) 232678aaf48SJan Kara ext4_begin_ordered_truncate(inode, 0); 23391b0abe3SJohannes Weiner truncate_inode_pages_final(&inode->i_data); 234ac27a0ecSDave Kleikamp 2355dc23bddSJan Kara WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count)); 236ac27a0ecSDave Kleikamp 2378e8ad8a5SJan Kara /* 2388e8ad8a5SJan Kara * Protect us against freezing - iput() caller didn't have to have any 2398e8ad8a5SJan Kara * protection against it 2408e8ad8a5SJan Kara */ 2418e8ad8a5SJan Kara sb_start_intwrite(inode->i_sb); 2429924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, 2439924a92aSTheodore Ts'o ext4_blocks_for_truncate(inode)+3); 244ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 245bc965ab3STheodore Ts'o ext4_std_error(inode->i_sb, PTR_ERR(handle)); 246ac27a0ecSDave Kleikamp /* 247ac27a0ecSDave Kleikamp * If we're going to skip the normal cleanup, we still need to 248ac27a0ecSDave Kleikamp * make sure that the in-core orphan linked list is properly 249ac27a0ecSDave Kleikamp * cleaned up. 250ac27a0ecSDave Kleikamp */ 251617ba13bSMingming Cao ext4_orphan_del(NULL, inode); 2528e8ad8a5SJan Kara sb_end_intwrite(inode->i_sb); 253ac27a0ecSDave Kleikamp goto no_delete; 254ac27a0ecSDave Kleikamp } 255ac27a0ecSDave Kleikamp 256ac27a0ecSDave Kleikamp if (IS_SYNC(inode)) 2570390131bSFrank Mayhar ext4_handle_sync(handle); 258ac27a0ecSDave Kleikamp inode->i_size = 0; 259bc965ab3STheodore Ts'o err = ext4_mark_inode_dirty(handle, inode); 260bc965ab3STheodore Ts'o if (err) { 26112062dddSEric Sandeen ext4_warning(inode->i_sb, 262bc965ab3STheodore Ts'o "couldn't mark inode dirty (err %d)", err); 263bc965ab3STheodore Ts'o goto stop_handle; 264bc965ab3STheodore Ts'o } 265ac27a0ecSDave Kleikamp if (inode->i_blocks) 266617ba13bSMingming Cao ext4_truncate(inode); 267bc965ab3STheodore Ts'o 268bc965ab3STheodore Ts'o /* 269bc965ab3STheodore Ts'o * ext4_ext_truncate() doesn't reserve any slop when it 270bc965ab3STheodore Ts'o * restarts journal transactions; therefore there may not be 271bc965ab3STheodore Ts'o * enough credits left in the handle to remove the inode from 272bc965ab3STheodore Ts'o * the orphan list and set the dtime field. 273bc965ab3STheodore Ts'o */ 2740390131bSFrank Mayhar if (!ext4_handle_has_enough_credits(handle, 3)) { 275bc965ab3STheodore Ts'o err = ext4_journal_extend(handle, 3); 276bc965ab3STheodore Ts'o if (err > 0) 277bc965ab3STheodore Ts'o err = ext4_journal_restart(handle, 3); 278bc965ab3STheodore Ts'o if (err != 0) { 27912062dddSEric Sandeen ext4_warning(inode->i_sb, 280bc965ab3STheodore Ts'o "couldn't extend journal (err %d)", err); 281bc965ab3STheodore Ts'o stop_handle: 282bc965ab3STheodore Ts'o ext4_journal_stop(handle); 28345388219STheodore Ts'o ext4_orphan_del(NULL, inode); 2848e8ad8a5SJan Kara sb_end_intwrite(inode->i_sb); 285bc965ab3STheodore Ts'o goto no_delete; 286bc965ab3STheodore Ts'o } 287bc965ab3STheodore Ts'o } 288bc965ab3STheodore Ts'o 289ac27a0ecSDave Kleikamp /* 290617ba13bSMingming Cao * Kill off the orphan record which ext4_truncate created. 291ac27a0ecSDave Kleikamp * AKPM: I think this can be inside the above `if'. 292617ba13bSMingming Cao * Note that ext4_orphan_del() has to be able to cope with the 293ac27a0ecSDave Kleikamp * deletion of a non-existent orphan - this is because we don't 294617ba13bSMingming Cao * know if ext4_truncate() actually created an orphan record. 295ac27a0ecSDave Kleikamp * (Well, we could do this if we need to, but heck - it works) 296ac27a0ecSDave Kleikamp */ 297617ba13bSMingming Cao ext4_orphan_del(handle, inode); 298617ba13bSMingming Cao EXT4_I(inode)->i_dtime = get_seconds(); 299ac27a0ecSDave Kleikamp 300ac27a0ecSDave Kleikamp /* 301ac27a0ecSDave Kleikamp * One subtle ordering requirement: if anything has gone wrong 302ac27a0ecSDave Kleikamp * (transaction abort, IO errors, whatever), then we can still 303ac27a0ecSDave Kleikamp * do these next steps (the fs will already have been marked as 304ac27a0ecSDave Kleikamp * having errors), but we can't free the inode if the mark_dirty 305ac27a0ecSDave Kleikamp * fails. 306ac27a0ecSDave Kleikamp */ 307617ba13bSMingming Cao if (ext4_mark_inode_dirty(handle, inode)) 308ac27a0ecSDave Kleikamp /* If that failed, just do the required in-core inode clear. */ 3090930fcc1SAl Viro ext4_clear_inode(inode); 310ac27a0ecSDave Kleikamp else 311617ba13bSMingming Cao ext4_free_inode(handle, inode); 312617ba13bSMingming Cao ext4_journal_stop(handle); 3138e8ad8a5SJan Kara sb_end_intwrite(inode->i_sb); 314ac27a0ecSDave Kleikamp return; 315ac27a0ecSDave Kleikamp no_delete: 3160930fcc1SAl Viro ext4_clear_inode(inode); /* We must guarantee clearing of inode... */ 317ac27a0ecSDave Kleikamp } 318ac27a0ecSDave Kleikamp 319a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA 320a9e7f447SDmitry Monakhov qsize_t *ext4_get_reserved_space(struct inode *inode) 32160e58e0fSMingming Cao { 322a9e7f447SDmitry Monakhov return &EXT4_I(inode)->i_reserved_quota; 32360e58e0fSMingming Cao } 324a9e7f447SDmitry Monakhov #endif 3259d0be502STheodore Ts'o 32612219aeaSAneesh Kumar K.V /* 3270637c6f4STheodore Ts'o * Called with i_data_sem down, which is important since we can call 3280637c6f4STheodore Ts'o * ext4_discard_preallocations() from here. 3290637c6f4STheodore Ts'o */ 3305f634d06SAneesh Kumar K.V void ext4_da_update_reserve_space(struct inode *inode, 3315f634d06SAneesh Kumar K.V int used, int quota_claim) 33212219aeaSAneesh Kumar K.V { 33312219aeaSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 3340637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 33512219aeaSAneesh Kumar K.V 3360637c6f4STheodore Ts'o spin_lock(&ei->i_block_reservation_lock); 337d8990240SAditya Kali trace_ext4_da_update_reserve_space(inode, used, quota_claim); 3380637c6f4STheodore Ts'o if (unlikely(used > ei->i_reserved_data_blocks)) { 3398de5c325STheodore Ts'o ext4_warning(inode->i_sb, "%s: ino %lu, used %d " 3401084f252STheodore Ts'o "with only %d reserved data blocks", 3410637c6f4STheodore Ts'o __func__, inode->i_ino, used, 3420637c6f4STheodore Ts'o ei->i_reserved_data_blocks); 3430637c6f4STheodore Ts'o WARN_ON(1); 3440637c6f4STheodore Ts'o used = ei->i_reserved_data_blocks; 3456bc6e63fSAneesh Kumar K.V } 34612219aeaSAneesh Kumar K.V 3470637c6f4STheodore Ts'o /* Update per-inode reservations */ 3480637c6f4STheodore Ts'o ei->i_reserved_data_blocks -= used; 34971d4f7d0STheodore Ts'o percpu_counter_sub(&sbi->s_dirtyclusters_counter, used); 3500637c6f4STheodore Ts'o 35112219aeaSAneesh Kumar K.V spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); 35260e58e0fSMingming Cao 35372b8ab9dSEric Sandeen /* Update quota subsystem for data blocks */ 35472b8ab9dSEric Sandeen if (quota_claim) 3557b415bf6SAditya Kali dquot_claim_block(inode, EXT4_C2B(sbi, used)); 35672b8ab9dSEric Sandeen else { 3575f634d06SAneesh Kumar K.V /* 3585f634d06SAneesh Kumar K.V * We did fallocate with an offset that is already delayed 3595f634d06SAneesh Kumar K.V * allocated. So on delayed allocated writeback we should 36072b8ab9dSEric Sandeen * not re-claim the quota for fallocated blocks. 3615f634d06SAneesh Kumar K.V */ 3627b415bf6SAditya Kali dquot_release_reservation_block(inode, EXT4_C2B(sbi, used)); 3635f634d06SAneesh Kumar K.V } 364d6014301SAneesh Kumar K.V 365d6014301SAneesh Kumar K.V /* 366d6014301SAneesh Kumar K.V * If we have done all the pending block allocations and if 367d6014301SAneesh Kumar K.V * there aren't any writers on the inode, we can discard the 368d6014301SAneesh Kumar K.V * inode's preallocations. 369d6014301SAneesh Kumar K.V */ 3700637c6f4STheodore Ts'o if ((ei->i_reserved_data_blocks == 0) && 3710637c6f4STheodore Ts'o (atomic_read(&inode->i_writecount) == 0)) 372d6014301SAneesh Kumar K.V ext4_discard_preallocations(inode); 37312219aeaSAneesh Kumar K.V } 37412219aeaSAneesh Kumar K.V 375e29136f8STheodore Ts'o static int __check_block_validity(struct inode *inode, const char *func, 376c398eda0STheodore Ts'o unsigned int line, 37724676da4STheodore Ts'o struct ext4_map_blocks *map) 3786fd058f7STheodore Ts'o { 37924676da4STheodore Ts'o if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk, 38024676da4STheodore Ts'o map->m_len)) { 381c398eda0STheodore Ts'o ext4_error_inode(inode, func, line, map->m_pblk, 382c398eda0STheodore Ts'o "lblock %lu mapped to illegal pblock " 38324676da4STheodore Ts'o "(length %d)", (unsigned long) map->m_lblk, 384c398eda0STheodore Ts'o map->m_len); 3856fd058f7STheodore Ts'o return -EIO; 3866fd058f7STheodore Ts'o } 3876fd058f7STheodore Ts'o return 0; 3886fd058f7STheodore Ts'o } 3896fd058f7STheodore Ts'o 390e29136f8STheodore Ts'o #define check_block_validity(inode, map) \ 391c398eda0STheodore Ts'o __check_block_validity((inode), __func__, __LINE__, (map)) 392e29136f8STheodore Ts'o 393921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 394921f266bSDmitry Monakhov static void ext4_map_blocks_es_recheck(handle_t *handle, 395921f266bSDmitry Monakhov struct inode *inode, 396921f266bSDmitry Monakhov struct ext4_map_blocks *es_map, 397921f266bSDmitry Monakhov struct ext4_map_blocks *map, 398921f266bSDmitry Monakhov int flags) 399921f266bSDmitry Monakhov { 400921f266bSDmitry Monakhov int retval; 401921f266bSDmitry Monakhov 402921f266bSDmitry Monakhov map->m_flags = 0; 403921f266bSDmitry Monakhov /* 404921f266bSDmitry Monakhov * There is a race window that the result is not the same. 405921f266bSDmitry Monakhov * e.g. xfstests #223 when dioread_nolock enables. The reason 406921f266bSDmitry Monakhov * is that we lookup a block mapping in extent status tree with 407921f266bSDmitry Monakhov * out taking i_data_sem. So at the time the unwritten extent 408921f266bSDmitry Monakhov * could be converted. 409921f266bSDmitry Monakhov */ 410921f266bSDmitry Monakhov if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 411c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 412921f266bSDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 413921f266bSDmitry Monakhov retval = ext4_ext_map_blocks(handle, inode, map, flags & 414921f266bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 415921f266bSDmitry Monakhov } else { 416921f266bSDmitry Monakhov retval = ext4_ind_map_blocks(handle, inode, map, flags & 417921f266bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 418921f266bSDmitry Monakhov } 419921f266bSDmitry Monakhov if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 420921f266bSDmitry Monakhov up_read((&EXT4_I(inode)->i_data_sem)); 421921f266bSDmitry Monakhov /* 422921f266bSDmitry Monakhov * Clear EXT4_MAP_FROM_CLUSTER and EXT4_MAP_BOUNDARY flag 423921f266bSDmitry Monakhov * because it shouldn't be marked in es_map->m_flags. 424921f266bSDmitry Monakhov */ 425921f266bSDmitry Monakhov map->m_flags &= ~(EXT4_MAP_FROM_CLUSTER | EXT4_MAP_BOUNDARY); 426921f266bSDmitry Monakhov 427921f266bSDmitry Monakhov /* 428921f266bSDmitry Monakhov * We don't check m_len because extent will be collpased in status 429921f266bSDmitry Monakhov * tree. So the m_len might not equal. 430921f266bSDmitry Monakhov */ 431921f266bSDmitry Monakhov if (es_map->m_lblk != map->m_lblk || 432921f266bSDmitry Monakhov es_map->m_flags != map->m_flags || 433921f266bSDmitry Monakhov es_map->m_pblk != map->m_pblk) { 434bdafe42aSTheodore Ts'o printk("ES cache assertion failed for inode: %lu " 435921f266bSDmitry Monakhov "es_cached ex [%d/%d/%llu/%x] != " 436921f266bSDmitry Monakhov "found ex [%d/%d/%llu/%x] retval %d flags %x\n", 437921f266bSDmitry Monakhov inode->i_ino, es_map->m_lblk, es_map->m_len, 438921f266bSDmitry Monakhov es_map->m_pblk, es_map->m_flags, map->m_lblk, 439921f266bSDmitry Monakhov map->m_len, map->m_pblk, map->m_flags, 440921f266bSDmitry Monakhov retval, flags); 441921f266bSDmitry Monakhov } 442921f266bSDmitry Monakhov } 443921f266bSDmitry Monakhov #endif /* ES_AGGRESSIVE_TEST */ 444921f266bSDmitry Monakhov 44555138e0bSTheodore Ts'o /* 446e35fd660STheodore Ts'o * The ext4_map_blocks() function tries to look up the requested blocks, 4472b2d6d01STheodore Ts'o * and returns if the blocks are already mapped. 448f5ab0d1fSMingming Cao * 449f5ab0d1fSMingming Cao * Otherwise it takes the write lock of the i_data_sem and allocate blocks 450f5ab0d1fSMingming Cao * and store the allocated blocks in the result buffer head and mark it 451f5ab0d1fSMingming Cao * mapped. 452f5ab0d1fSMingming Cao * 453e35fd660STheodore Ts'o * If file type is extents based, it will call ext4_ext_map_blocks(), 454e35fd660STheodore Ts'o * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping 455f5ab0d1fSMingming Cao * based files 456f5ab0d1fSMingming Cao * 457556615dcSLukas Czerner * On success, it returns the number of blocks being mapped or allocated. 458556615dcSLukas Czerner * if create==0 and the blocks are pre-allocated and unwritten block, 459f5ab0d1fSMingming Cao * the result buffer head is unmapped. If the create ==1, it will make sure 460f5ab0d1fSMingming Cao * the buffer head is mapped. 461f5ab0d1fSMingming Cao * 462f5ab0d1fSMingming Cao * It returns 0 if plain look up failed (blocks have not been allocated), in 463df3ab170STao Ma * that case, buffer head is unmapped 464f5ab0d1fSMingming Cao * 465f5ab0d1fSMingming Cao * It returns the error in case of allocation failure. 466f5ab0d1fSMingming Cao */ 467e35fd660STheodore Ts'o int ext4_map_blocks(handle_t *handle, struct inode *inode, 468e35fd660STheodore Ts'o struct ext4_map_blocks *map, int flags) 4690e855ac8SAneesh Kumar K.V { 470d100eef2SZheng Liu struct extent_status es; 4710e855ac8SAneesh Kumar K.V int retval; 472b8a86845SLukas Czerner int ret = 0; 473921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 474921f266bSDmitry Monakhov struct ext4_map_blocks orig_map; 475921f266bSDmitry Monakhov 476921f266bSDmitry Monakhov memcpy(&orig_map, map, sizeof(*map)); 477921f266bSDmitry Monakhov #endif 478f5ab0d1fSMingming Cao 479e35fd660STheodore Ts'o map->m_flags = 0; 480e35fd660STheodore Ts'o ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u," 481e35fd660STheodore Ts'o "logical block %lu\n", inode->i_ino, flags, map->m_len, 482e35fd660STheodore Ts'o (unsigned long) map->m_lblk); 483d100eef2SZheng Liu 484e861b5e9STheodore Ts'o /* 485e861b5e9STheodore Ts'o * ext4_map_blocks returns an int, and m_len is an unsigned int 486e861b5e9STheodore Ts'o */ 487e861b5e9STheodore Ts'o if (unlikely(map->m_len > INT_MAX)) 488e861b5e9STheodore Ts'o map->m_len = INT_MAX; 489e861b5e9STheodore Ts'o 4904adb6ab3SKazuya Mio /* We can handle the block number less than EXT_MAX_BLOCKS */ 4914adb6ab3SKazuya Mio if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS)) 4924adb6ab3SKazuya Mio return -EIO; 4934adb6ab3SKazuya Mio 494d100eef2SZheng Liu /* Lookup extent status tree firstly */ 495d100eef2SZheng Liu if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) { 49663b99968STheodore Ts'o ext4_es_lru_add(inode); 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)) { 507d100eef2SZheng Liu retval = 0; 508d100eef2SZheng Liu } else { 509d100eef2SZheng Liu BUG_ON(1); 510d100eef2SZheng Liu } 511921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 512921f266bSDmitry Monakhov ext4_map_blocks_es_recheck(handle, inode, map, 513921f266bSDmitry Monakhov &orig_map, flags); 514921f266bSDmitry Monakhov #endif 515d100eef2SZheng Liu goto found; 516d100eef2SZheng Liu } 517d100eef2SZheng Liu 5184df3d265SAneesh Kumar K.V /* 519b920c755STheodore Ts'o * Try to see if we can get the block without requesting a new 520b920c755STheodore Ts'o * file system block. 5214df3d265SAneesh Kumar K.V */ 522729f52c6SZheng Liu if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 523c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 52412e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 525a4e5d88bSDmitry Monakhov retval = ext4_ext_map_blocks(handle, inode, map, flags & 526a4e5d88bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 5274df3d265SAneesh Kumar K.V } else { 528a4e5d88bSDmitry Monakhov retval = ext4_ind_map_blocks(handle, inode, map, flags & 529a4e5d88bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 5300e855ac8SAneesh Kumar K.V } 531f7fec032SZheng Liu if (retval > 0) { 5323be78c73STheodore Ts'o unsigned int status; 533f7fec032SZheng Liu 53444fb851dSZheng Liu if (unlikely(retval != map->m_len)) { 53544fb851dSZheng Liu ext4_warning(inode->i_sb, 53644fb851dSZheng Liu "ES len assertion failed for inode " 53744fb851dSZheng Liu "%lu: retval %d != map->m_len %d", 53844fb851dSZheng Liu inode->i_ino, retval, map->m_len); 53944fb851dSZheng Liu WARN_ON(1); 540921f266bSDmitry Monakhov } 541921f266bSDmitry Monakhov 542f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 543f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 544f7fec032SZheng Liu if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) && 545f7fec032SZheng Liu ext4_find_delalloc_range(inode, map->m_lblk, 546f7fec032SZheng Liu map->m_lblk + map->m_len - 1)) 547f7fec032SZheng Liu status |= EXTENT_STATUS_DELAYED; 548f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, 549f7fec032SZheng Liu map->m_len, map->m_pblk, status); 550f7fec032SZheng Liu if (ret < 0) 551f7fec032SZheng Liu retval = ret; 552f7fec032SZheng Liu } 553729f52c6SZheng Liu if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 5544df3d265SAneesh Kumar K.V up_read((&EXT4_I(inode)->i_data_sem)); 555f5ab0d1fSMingming Cao 556d100eef2SZheng Liu found: 557e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) { 558b8a86845SLukas Czerner ret = check_block_validity(inode, map); 5596fd058f7STheodore Ts'o if (ret != 0) 5606fd058f7STheodore Ts'o return ret; 5616fd058f7STheodore Ts'o } 5626fd058f7STheodore Ts'o 563f5ab0d1fSMingming Cao /* If it is only a block(s) look up */ 564c2177057STheodore Ts'o if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) 5654df3d265SAneesh Kumar K.V return retval; 5664df3d265SAneesh Kumar K.V 5674df3d265SAneesh Kumar K.V /* 568f5ab0d1fSMingming Cao * Returns if the blocks have already allocated 569f5ab0d1fSMingming Cao * 570f5ab0d1fSMingming Cao * Note that if blocks have been preallocated 571df3ab170STao Ma * ext4_ext_get_block() returns the create = 0 572f5ab0d1fSMingming Cao * with buffer head unmapped. 573f5ab0d1fSMingming Cao */ 574e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) 575b8a86845SLukas Czerner /* 576b8a86845SLukas Czerner * If we need to convert extent to unwritten 577b8a86845SLukas Czerner * we continue and do the actual work in 578b8a86845SLukas Czerner * ext4_ext_map_blocks() 579b8a86845SLukas Czerner */ 580b8a86845SLukas Czerner if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN)) 581f5ab0d1fSMingming Cao return retval; 582f5ab0d1fSMingming Cao 583f5ab0d1fSMingming Cao /* 584a25a4e1aSZheng Liu * Here we clear m_flags because after allocating an new extent, 585a25a4e1aSZheng Liu * it will be set again. 5862a8964d6SAneesh Kumar K.V */ 587a25a4e1aSZheng Liu map->m_flags &= ~EXT4_MAP_FLAGS; 5882a8964d6SAneesh Kumar K.V 5892a8964d6SAneesh Kumar K.V /* 590556615dcSLukas Czerner * New blocks allocate and/or writing to unwritten extent 591f5ab0d1fSMingming Cao * will possibly result in updating i_data, so we take 592d91bd2c1SSeunghun Lee * the write lock of i_data_sem, and call get_block() 593f5ab0d1fSMingming Cao * with create == 1 flag. 5944df3d265SAneesh Kumar K.V */ 595c8b459f4SLukas Czerner down_write(&EXT4_I(inode)->i_data_sem); 596d2a17637SMingming Cao 597d2a17637SMingming Cao /* 5984df3d265SAneesh Kumar K.V * We need to check for EXT4 here because migrate 5994df3d265SAneesh Kumar K.V * could have changed the inode type in between 6004df3d265SAneesh Kumar K.V */ 60112e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 602e35fd660STheodore Ts'o retval = ext4_ext_map_blocks(handle, inode, map, flags); 6030e855ac8SAneesh Kumar K.V } else { 604e35fd660STheodore Ts'o retval = ext4_ind_map_blocks(handle, inode, map, flags); 605267e4db9SAneesh Kumar K.V 606e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_NEW) { 607267e4db9SAneesh Kumar K.V /* 608267e4db9SAneesh Kumar K.V * We allocated new blocks which will result in 609267e4db9SAneesh Kumar K.V * i_data's format changing. Force the migrate 610267e4db9SAneesh Kumar K.V * to fail by clearing migrate flags 611267e4db9SAneesh Kumar K.V */ 61219f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE); 613267e4db9SAneesh Kumar K.V } 6142ac3b6e0STheodore Ts'o 615d2a17637SMingming Cao /* 6162ac3b6e0STheodore Ts'o * Update reserved blocks/metadata blocks after successful 6175f634d06SAneesh Kumar K.V * block allocation which had been deferred till now. We don't 6185f634d06SAneesh Kumar K.V * support fallocate for non extent files. So we can update 6195f634d06SAneesh Kumar K.V * reserve space here. 620d2a17637SMingming Cao */ 6215f634d06SAneesh Kumar K.V if ((retval > 0) && 6221296cc85SAneesh Kumar K.V (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)) 6235f634d06SAneesh Kumar K.V ext4_da_update_reserve_space(inode, retval, 1); 6245f634d06SAneesh Kumar K.V } 625d2a17637SMingming Cao 626f7fec032SZheng Liu if (retval > 0) { 6273be78c73STheodore Ts'o unsigned int status; 628f7fec032SZheng Liu 62944fb851dSZheng Liu if (unlikely(retval != map->m_len)) { 63044fb851dSZheng Liu ext4_warning(inode->i_sb, 63144fb851dSZheng Liu "ES len assertion failed for inode " 63244fb851dSZheng Liu "%lu: retval %d != map->m_len %d", 63344fb851dSZheng Liu inode->i_ino, retval, map->m_len); 63444fb851dSZheng Liu WARN_ON(1); 635921f266bSDmitry Monakhov } 636921f266bSDmitry Monakhov 637adb23551SZheng Liu /* 638adb23551SZheng Liu * If the extent has been zeroed out, we don't need to update 639adb23551SZheng Liu * extent status tree. 640adb23551SZheng Liu */ 641adb23551SZheng Liu if ((flags & EXT4_GET_BLOCKS_PRE_IO) && 642adb23551SZheng Liu ext4_es_lookup_extent(inode, map->m_lblk, &es)) { 643adb23551SZheng Liu if (ext4_es_is_written(&es)) 644adb23551SZheng Liu goto has_zeroout; 645adb23551SZheng Liu } 646f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 647f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 648f7fec032SZheng Liu if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) && 649f7fec032SZheng Liu ext4_find_delalloc_range(inode, map->m_lblk, 650f7fec032SZheng Liu map->m_lblk + map->m_len - 1)) 651f7fec032SZheng Liu status |= EXTENT_STATUS_DELAYED; 652f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 653f7fec032SZheng Liu map->m_pblk, status); 65451865fdaSZheng Liu if (ret < 0) 65551865fdaSZheng Liu retval = ret; 65651865fdaSZheng Liu } 6575356f261SAditya Kali 658adb23551SZheng Liu has_zeroout: 6590e855ac8SAneesh Kumar K.V up_write((&EXT4_I(inode)->i_data_sem)); 660e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) { 661b8a86845SLukas Czerner ret = check_block_validity(inode, map); 6626fd058f7STheodore Ts'o if (ret != 0) 6636fd058f7STheodore Ts'o return ret; 6646fd058f7STheodore Ts'o } 6650e855ac8SAneesh Kumar K.V return retval; 6660e855ac8SAneesh Kumar K.V } 6670e855ac8SAneesh Kumar K.V 668f3bd1f3fSMingming Cao /* Maximum number of blocks we map for direct IO at once. */ 669f3bd1f3fSMingming Cao #define DIO_MAX_BLOCKS 4096 670f3bd1f3fSMingming Cao 6712ed88685STheodore Ts'o static int _ext4_get_block(struct inode *inode, sector_t iblock, 6722ed88685STheodore Ts'o struct buffer_head *bh, int flags) 673ac27a0ecSDave Kleikamp { 6743e4fdaf8SDmitriy Monakhov handle_t *handle = ext4_journal_current_handle(); 6752ed88685STheodore Ts'o struct ext4_map_blocks map; 6767fb5409dSJan Kara int ret = 0, started = 0; 677f3bd1f3fSMingming Cao int dio_credits; 678ac27a0ecSDave Kleikamp 67946c7f254STao Ma if (ext4_has_inline_data(inode)) 68046c7f254STao Ma return -ERANGE; 68146c7f254STao Ma 6822ed88685STheodore Ts'o map.m_lblk = iblock; 6832ed88685STheodore Ts'o map.m_len = bh->b_size >> inode->i_blkbits; 6842ed88685STheodore Ts'o 6858b0f165fSAnatol Pomozov if (flags && !(flags & EXT4_GET_BLOCKS_NO_LOCK) && !handle) { 6867fb5409dSJan Kara /* Direct IO write... */ 6872ed88685STheodore Ts'o if (map.m_len > DIO_MAX_BLOCKS) 6882ed88685STheodore Ts'o map.m_len = DIO_MAX_BLOCKS; 6892ed88685STheodore Ts'o dio_credits = ext4_chunk_trans_blocks(inode, map.m_len); 6909924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, 6919924a92aSTheodore Ts'o dio_credits); 6927fb5409dSJan Kara if (IS_ERR(handle)) { 693ac27a0ecSDave Kleikamp ret = PTR_ERR(handle); 6942ed88685STheodore Ts'o return ret; 6957fb5409dSJan Kara } 6967fb5409dSJan Kara started = 1; 697ac27a0ecSDave Kleikamp } 698ac27a0ecSDave Kleikamp 6992ed88685STheodore Ts'o ret = ext4_map_blocks(handle, inode, &map, flags); 700ac27a0ecSDave Kleikamp if (ret > 0) { 7017b7a8665SChristoph Hellwig ext4_io_end_t *io_end = ext4_inode_aio(inode); 7027b7a8665SChristoph Hellwig 7032ed88685STheodore Ts'o map_bh(bh, inode->i_sb, map.m_pblk); 7042ed88685STheodore Ts'o bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags; 7057b7a8665SChristoph Hellwig if (io_end && io_end->flag & EXT4_IO_END_UNWRITTEN) 7067b7a8665SChristoph Hellwig set_buffer_defer_completion(bh); 7072ed88685STheodore Ts'o bh->b_size = inode->i_sb->s_blocksize * map.m_len; 708ac27a0ecSDave Kleikamp ret = 0; 709ac27a0ecSDave Kleikamp } 7107fb5409dSJan Kara if (started) 7117fb5409dSJan Kara ext4_journal_stop(handle); 712ac27a0ecSDave Kleikamp return ret; 713ac27a0ecSDave Kleikamp } 714ac27a0ecSDave Kleikamp 7152ed88685STheodore Ts'o int ext4_get_block(struct inode *inode, sector_t iblock, 7162ed88685STheodore Ts'o struct buffer_head *bh, int create) 7172ed88685STheodore Ts'o { 7182ed88685STheodore Ts'o return _ext4_get_block(inode, iblock, bh, 7192ed88685STheodore Ts'o create ? EXT4_GET_BLOCKS_CREATE : 0); 7202ed88685STheodore Ts'o } 7212ed88685STheodore Ts'o 722ac27a0ecSDave Kleikamp /* 723ac27a0ecSDave Kleikamp * `handle' can be NULL if create is zero 724ac27a0ecSDave Kleikamp */ 725617ba13bSMingming Cao struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode, 72610560082STheodore Ts'o ext4_lblk_t block, int create) 727ac27a0ecSDave Kleikamp { 7282ed88685STheodore Ts'o struct ext4_map_blocks map; 7292ed88685STheodore Ts'o struct buffer_head *bh; 73010560082STheodore Ts'o int err; 731ac27a0ecSDave Kleikamp 732ac27a0ecSDave Kleikamp J_ASSERT(handle != NULL || create == 0); 733ac27a0ecSDave Kleikamp 7342ed88685STheodore Ts'o map.m_lblk = block; 7352ed88685STheodore Ts'o map.m_len = 1; 7362ed88685STheodore Ts'o err = ext4_map_blocks(handle, inode, &map, 7372ed88685STheodore Ts'o create ? EXT4_GET_BLOCKS_CREATE : 0); 7382ed88685STheodore Ts'o 73910560082STheodore Ts'o if (err == 0) 74010560082STheodore Ts'o return create ? ERR_PTR(-ENOSPC) : NULL; 7412ed88685STheodore Ts'o if (err < 0) 74210560082STheodore Ts'o return ERR_PTR(err); 7432ed88685STheodore Ts'o 7442ed88685STheodore Ts'o bh = sb_getblk(inode->i_sb, map.m_pblk); 74510560082STheodore Ts'o if (unlikely(!bh)) 74610560082STheodore Ts'o return ERR_PTR(-ENOMEM); 7472ed88685STheodore Ts'o if (map.m_flags & EXT4_MAP_NEW) { 748ac27a0ecSDave Kleikamp J_ASSERT(create != 0); 749ac39849dSAneesh Kumar K.V J_ASSERT(handle != NULL); 750ac27a0ecSDave Kleikamp 751ac27a0ecSDave Kleikamp /* 752ac27a0ecSDave Kleikamp * Now that we do not always journal data, we should 753ac27a0ecSDave Kleikamp * keep in mind whether this should always journal the 754ac27a0ecSDave Kleikamp * new buffer as metadata. For now, regular file 755617ba13bSMingming Cao * writes use ext4_get_block instead, so it's not a 756ac27a0ecSDave Kleikamp * problem. 757ac27a0ecSDave Kleikamp */ 758ac27a0ecSDave Kleikamp lock_buffer(bh); 759ac27a0ecSDave Kleikamp BUFFER_TRACE(bh, "call get_create_access"); 76010560082STheodore Ts'o err = ext4_journal_get_create_access(handle, bh); 76110560082STheodore Ts'o if (unlikely(err)) { 76210560082STheodore Ts'o unlock_buffer(bh); 76310560082STheodore Ts'o goto errout; 76410560082STheodore Ts'o } 76510560082STheodore Ts'o if (!buffer_uptodate(bh)) { 766ac27a0ecSDave Kleikamp memset(bh->b_data, 0, inode->i_sb->s_blocksize); 767ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 768ac27a0ecSDave Kleikamp } 769ac27a0ecSDave Kleikamp unlock_buffer(bh); 7700390131bSFrank Mayhar BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); 7710390131bSFrank Mayhar err = ext4_handle_dirty_metadata(handle, inode, bh); 77210560082STheodore Ts'o if (unlikely(err)) 77310560082STheodore Ts'o goto errout; 77410560082STheodore Ts'o } else 775ac27a0ecSDave Kleikamp BUFFER_TRACE(bh, "not a new buffer"); 776ac27a0ecSDave Kleikamp return bh; 77710560082STheodore Ts'o errout: 77810560082STheodore Ts'o brelse(bh); 77910560082STheodore Ts'o return ERR_PTR(err); 780ac27a0ecSDave Kleikamp } 781ac27a0ecSDave Kleikamp 782617ba13bSMingming Cao struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode, 7831c215028STheodore Ts'o ext4_lblk_t block, int create) 784ac27a0ecSDave Kleikamp { 785ac27a0ecSDave Kleikamp struct buffer_head *bh; 786ac27a0ecSDave Kleikamp 78710560082STheodore Ts'o bh = ext4_getblk(handle, inode, block, create); 7881c215028STheodore Ts'o if (IS_ERR(bh)) 789ac27a0ecSDave Kleikamp return bh; 7901c215028STheodore Ts'o if (!bh || buffer_uptodate(bh)) 791ac27a0ecSDave Kleikamp return bh; 79265299a3bSChristoph Hellwig ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh); 793ac27a0ecSDave Kleikamp wait_on_buffer(bh); 794ac27a0ecSDave Kleikamp if (buffer_uptodate(bh)) 795ac27a0ecSDave Kleikamp return bh; 796ac27a0ecSDave Kleikamp put_bh(bh); 7971c215028STheodore Ts'o return ERR_PTR(-EIO); 798ac27a0ecSDave Kleikamp } 799ac27a0ecSDave Kleikamp 800f19d5870STao Ma int ext4_walk_page_buffers(handle_t *handle, 801ac27a0ecSDave Kleikamp struct buffer_head *head, 802ac27a0ecSDave Kleikamp unsigned from, 803ac27a0ecSDave Kleikamp unsigned to, 804ac27a0ecSDave Kleikamp int *partial, 805ac27a0ecSDave Kleikamp int (*fn)(handle_t *handle, 806ac27a0ecSDave Kleikamp struct buffer_head *bh)) 807ac27a0ecSDave Kleikamp { 808ac27a0ecSDave Kleikamp struct buffer_head *bh; 809ac27a0ecSDave Kleikamp unsigned block_start, block_end; 810ac27a0ecSDave Kleikamp unsigned blocksize = head->b_size; 811ac27a0ecSDave Kleikamp int err, ret = 0; 812ac27a0ecSDave Kleikamp struct buffer_head *next; 813ac27a0ecSDave Kleikamp 814ac27a0ecSDave Kleikamp for (bh = head, block_start = 0; 815ac27a0ecSDave Kleikamp ret == 0 && (bh != head || !block_start); 816de9a55b8STheodore Ts'o block_start = block_end, bh = next) { 817ac27a0ecSDave Kleikamp next = bh->b_this_page; 818ac27a0ecSDave Kleikamp block_end = block_start + blocksize; 819ac27a0ecSDave Kleikamp if (block_end <= from || block_start >= to) { 820ac27a0ecSDave Kleikamp if (partial && !buffer_uptodate(bh)) 821ac27a0ecSDave Kleikamp *partial = 1; 822ac27a0ecSDave Kleikamp continue; 823ac27a0ecSDave Kleikamp } 824ac27a0ecSDave Kleikamp err = (*fn)(handle, bh); 825ac27a0ecSDave Kleikamp if (!ret) 826ac27a0ecSDave Kleikamp ret = err; 827ac27a0ecSDave Kleikamp } 828ac27a0ecSDave Kleikamp return ret; 829ac27a0ecSDave Kleikamp } 830ac27a0ecSDave Kleikamp 831ac27a0ecSDave Kleikamp /* 832ac27a0ecSDave Kleikamp * To preserve ordering, it is essential that the hole instantiation and 833ac27a0ecSDave Kleikamp * the data write be encapsulated in a single transaction. We cannot 834617ba13bSMingming Cao * close off a transaction and start a new one between the ext4_get_block() 835dab291afSMingming Cao * and the commit_write(). So doing the jbd2_journal_start at the start of 836ac27a0ecSDave Kleikamp * prepare_write() is the right place. 837ac27a0ecSDave Kleikamp * 83836ade451SJan Kara * Also, this function can nest inside ext4_writepage(). In that case, we 83936ade451SJan Kara * *know* that ext4_writepage() has generated enough buffer credits to do the 84036ade451SJan Kara * whole page. So we won't block on the journal in that case, which is good, 84136ade451SJan Kara * because the caller may be PF_MEMALLOC. 842ac27a0ecSDave Kleikamp * 843617ba13bSMingming Cao * By accident, ext4 can be reentered when a transaction is open via 844ac27a0ecSDave Kleikamp * quota file writes. If we were to commit the transaction while thus 845ac27a0ecSDave Kleikamp * reentered, there can be a deadlock - we would be holding a quota 846ac27a0ecSDave Kleikamp * lock, and the commit would never complete if another thread had a 847ac27a0ecSDave Kleikamp * transaction open and was blocking on the quota lock - a ranking 848ac27a0ecSDave Kleikamp * violation. 849ac27a0ecSDave Kleikamp * 850dab291afSMingming Cao * So what we do is to rely on the fact that jbd2_journal_stop/journal_start 851ac27a0ecSDave Kleikamp * will _not_ run commit under these circumstances because handle->h_ref 852ac27a0ecSDave Kleikamp * is elevated. We'll still have enough credits for the tiny quotafile 853ac27a0ecSDave Kleikamp * write. 854ac27a0ecSDave Kleikamp */ 855f19d5870STao Ma int do_journal_get_write_access(handle_t *handle, 856ac27a0ecSDave Kleikamp struct buffer_head *bh) 857ac27a0ecSDave Kleikamp { 85856d35a4cSJan Kara int dirty = buffer_dirty(bh); 85956d35a4cSJan Kara int ret; 86056d35a4cSJan Kara 861ac27a0ecSDave Kleikamp if (!buffer_mapped(bh) || buffer_freed(bh)) 862ac27a0ecSDave Kleikamp return 0; 86356d35a4cSJan Kara /* 864ebdec241SChristoph Hellwig * __block_write_begin() could have dirtied some buffers. Clean 86556d35a4cSJan Kara * the dirty bit as jbd2_journal_get_write_access() could complain 86656d35a4cSJan Kara * otherwise about fs integrity issues. Setting of the dirty bit 867ebdec241SChristoph Hellwig * by __block_write_begin() isn't a real problem here as we clear 86856d35a4cSJan Kara * the bit before releasing a page lock and thus writeback cannot 86956d35a4cSJan Kara * ever write the buffer. 87056d35a4cSJan Kara */ 87156d35a4cSJan Kara if (dirty) 87256d35a4cSJan Kara clear_buffer_dirty(bh); 8735d601255Sliang xie BUFFER_TRACE(bh, "get write access"); 87456d35a4cSJan Kara ret = ext4_journal_get_write_access(handle, bh); 87556d35a4cSJan Kara if (!ret && dirty) 87656d35a4cSJan Kara ret = ext4_handle_dirty_metadata(handle, NULL, bh); 87756d35a4cSJan Kara return ret; 878ac27a0ecSDave Kleikamp } 879ac27a0ecSDave Kleikamp 8808b0f165fSAnatol Pomozov static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock, 8818b0f165fSAnatol Pomozov struct buffer_head *bh_result, int create); 882bfc1af65SNick Piggin static int ext4_write_begin(struct file *file, struct address_space *mapping, 883bfc1af65SNick Piggin loff_t pos, unsigned len, unsigned flags, 884bfc1af65SNick Piggin struct page **pagep, void **fsdata) 885ac27a0ecSDave Kleikamp { 886bfc1af65SNick Piggin struct inode *inode = mapping->host; 8871938a150SAneesh Kumar K.V int ret, needed_blocks; 888ac27a0ecSDave Kleikamp handle_t *handle; 889ac27a0ecSDave Kleikamp int retries = 0; 890bfc1af65SNick Piggin struct page *page; 891bfc1af65SNick Piggin pgoff_t index; 892bfc1af65SNick Piggin unsigned from, to; 893bfc1af65SNick Piggin 8949bffad1eSTheodore Ts'o trace_ext4_write_begin(inode, pos, len, flags); 8951938a150SAneesh Kumar K.V /* 8961938a150SAneesh Kumar K.V * Reserve one block more for addition to orphan list in case 8971938a150SAneesh Kumar K.V * we allocate blocks but write fails for some reason 8981938a150SAneesh Kumar K.V */ 8991938a150SAneesh Kumar K.V needed_blocks = ext4_writepage_trans_blocks(inode) + 1; 900bfc1af65SNick Piggin index = pos >> PAGE_CACHE_SHIFT; 901bfc1af65SNick Piggin from = pos & (PAGE_CACHE_SIZE - 1); 902bfc1af65SNick Piggin to = from + len; 903ac27a0ecSDave Kleikamp 904f19d5870STao Ma if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) { 905f19d5870STao Ma ret = ext4_try_to_write_inline_data(mapping, inode, pos, len, 906f19d5870STao Ma flags, pagep); 907f19d5870STao Ma if (ret < 0) 90847564bfbSTheodore Ts'o return ret; 90947564bfbSTheodore Ts'o if (ret == 1) 91047564bfbSTheodore Ts'o return 0; 911f19d5870STao Ma } 912f19d5870STao Ma 91347564bfbSTheodore Ts'o /* 91447564bfbSTheodore Ts'o * grab_cache_page_write_begin() can take a long time if the 91547564bfbSTheodore Ts'o * system is thrashing due to memory pressure, or if the page 91647564bfbSTheodore Ts'o * is being written back. So grab it first before we start 91747564bfbSTheodore Ts'o * the transaction handle. This also allows us to allocate 91847564bfbSTheodore Ts'o * the page (if needed) without using GFP_NOFS. 91947564bfbSTheodore Ts'o */ 92047564bfbSTheodore Ts'o retry_grab: 92154566b2cSNick Piggin page = grab_cache_page_write_begin(mapping, index, flags); 92247564bfbSTheodore Ts'o if (!page) 92347564bfbSTheodore Ts'o return -ENOMEM; 92447564bfbSTheodore Ts'o unlock_page(page); 92547564bfbSTheodore Ts'o 92647564bfbSTheodore Ts'o retry_journal: 9279924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks); 928ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 92947564bfbSTheodore Ts'o page_cache_release(page); 93047564bfbSTheodore Ts'o return PTR_ERR(handle); 931cf108bcaSJan Kara } 932f19d5870STao Ma 93347564bfbSTheodore Ts'o lock_page(page); 93447564bfbSTheodore Ts'o if (page->mapping != mapping) { 93547564bfbSTheodore Ts'o /* The page got truncated from under us */ 93647564bfbSTheodore Ts'o unlock_page(page); 93747564bfbSTheodore Ts'o page_cache_release(page); 938cf108bcaSJan Kara ext4_journal_stop(handle); 93947564bfbSTheodore Ts'o goto retry_grab; 940cf108bcaSJan Kara } 9417afe5aa5SDmitry Monakhov /* In case writeback began while the page was unlocked */ 9427afe5aa5SDmitry Monakhov wait_for_stable_page(page); 943cf108bcaSJan Kara 944744692dcSJiaying Zhang if (ext4_should_dioread_nolock(inode)) 9456e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_get_block_write); 946744692dcSJiaying Zhang else 9476e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_get_block); 948bfc1af65SNick Piggin 949bfc1af65SNick Piggin if (!ret && ext4_should_journal_data(inode)) { 950f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_buffers(page), 951f19d5870STao Ma from, to, NULL, 952f19d5870STao Ma do_journal_get_write_access); 953b46be050SAndrey Savochkin } 954bfc1af65SNick Piggin 955bfc1af65SNick Piggin if (ret) { 956bfc1af65SNick Piggin unlock_page(page); 957ae4d5372SAneesh Kumar K.V /* 9586e1db88dSChristoph Hellwig * __block_write_begin may have instantiated a few blocks 959ae4d5372SAneesh Kumar K.V * outside i_size. Trim these off again. Don't need 960ae4d5372SAneesh Kumar K.V * i_size_read because we hold i_mutex. 9611938a150SAneesh Kumar K.V * 9621938a150SAneesh Kumar K.V * Add inode to orphan list in case we crash before 9631938a150SAneesh Kumar K.V * truncate finishes 964ae4d5372SAneesh Kumar K.V */ 965ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 9661938a150SAneesh Kumar K.V ext4_orphan_add(handle, inode); 9671938a150SAneesh Kumar K.V 9681938a150SAneesh Kumar K.V ext4_journal_stop(handle); 9691938a150SAneesh Kumar K.V if (pos + len > inode->i_size) { 970b9a4207dSJan Kara ext4_truncate_failed_write(inode); 9711938a150SAneesh Kumar K.V /* 972ffacfa7aSJan Kara * If truncate failed early the inode might 9731938a150SAneesh Kumar K.V * still be on the orphan list; we need to 9741938a150SAneesh Kumar K.V * make sure the inode is removed from the 9751938a150SAneesh Kumar K.V * orphan list in that case. 9761938a150SAneesh Kumar K.V */ 9771938a150SAneesh Kumar K.V if (inode->i_nlink) 9781938a150SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 9791938a150SAneesh Kumar K.V } 980bfc1af65SNick Piggin 98147564bfbSTheodore Ts'o if (ret == -ENOSPC && 98247564bfbSTheodore Ts'o ext4_should_retry_alloc(inode->i_sb, &retries)) 98347564bfbSTheodore Ts'o goto retry_journal; 98447564bfbSTheodore Ts'o page_cache_release(page); 98547564bfbSTheodore Ts'o return ret; 98647564bfbSTheodore Ts'o } 98747564bfbSTheodore Ts'o *pagep = page; 988ac27a0ecSDave Kleikamp return ret; 989ac27a0ecSDave Kleikamp } 990ac27a0ecSDave Kleikamp 991bfc1af65SNick Piggin /* For write_end() in data=journal mode */ 992bfc1af65SNick Piggin static int write_end_fn(handle_t *handle, struct buffer_head *bh) 993ac27a0ecSDave Kleikamp { 99413fca323STheodore Ts'o int ret; 995ac27a0ecSDave Kleikamp if (!buffer_mapped(bh) || buffer_freed(bh)) 996ac27a0ecSDave Kleikamp return 0; 997ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 99813fca323STheodore Ts'o ret = ext4_handle_dirty_metadata(handle, NULL, bh); 99913fca323STheodore Ts'o clear_buffer_meta(bh); 100013fca323STheodore Ts'o clear_buffer_prio(bh); 100113fca323STheodore Ts'o return ret; 1002ac27a0ecSDave Kleikamp } 1003ac27a0ecSDave Kleikamp 1004eed4333fSZheng Liu /* 1005eed4333fSZheng Liu * We need to pick up the new inode size which generic_commit_write gave us 1006eed4333fSZheng Liu * `file' can be NULL - eg, when called from page_symlink(). 1007eed4333fSZheng Liu * 1008eed4333fSZheng Liu * ext4 never places buffers on inode->i_mapping->private_list. metadata 1009eed4333fSZheng Liu * buffers are managed internally. 1010eed4333fSZheng Liu */ 1011eed4333fSZheng Liu static int ext4_write_end(struct file *file, 1012f8514083SAneesh Kumar K.V struct address_space *mapping, 1013f8514083SAneesh Kumar K.V loff_t pos, unsigned len, unsigned copied, 1014f8514083SAneesh Kumar K.V struct page *page, void *fsdata) 1015f8514083SAneesh Kumar K.V { 1016f8514083SAneesh Kumar K.V handle_t *handle = ext4_journal_current_handle(); 1017eed4333fSZheng Liu struct inode *inode = mapping->host; 1018eed4333fSZheng Liu int ret = 0, ret2; 1019eed4333fSZheng Liu int i_size_changed = 0; 1020eed4333fSZheng Liu 1021eed4333fSZheng Liu trace_ext4_write_end(inode, pos, len, copied); 1022eed4333fSZheng Liu if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) { 1023eed4333fSZheng Liu ret = ext4_jbd2_file_inode(handle, inode); 1024eed4333fSZheng Liu if (ret) { 1025eed4333fSZheng Liu unlock_page(page); 1026eed4333fSZheng Liu page_cache_release(page); 1027eed4333fSZheng Liu goto errout; 1028eed4333fSZheng Liu } 1029eed4333fSZheng Liu } 1030f8514083SAneesh Kumar K.V 103142c832deSTheodore Ts'o if (ext4_has_inline_data(inode)) { 103242c832deSTheodore Ts'o ret = ext4_write_inline_data_end(inode, pos, len, 1033f19d5870STao Ma copied, page); 103442c832deSTheodore Ts'o if (ret < 0) 103542c832deSTheodore Ts'o goto errout; 103642c832deSTheodore Ts'o copied = ret; 103742c832deSTheodore Ts'o } else 1038f19d5870STao Ma copied = block_write_end(file, mapping, pos, 1039f19d5870STao Ma len, copied, page, fsdata); 1040f8514083SAneesh Kumar K.V /* 10414631dbf6SDmitry Monakhov * it's important to update i_size while still holding page lock: 1042f8514083SAneesh Kumar K.V * page writeout could otherwise come in and zero beyond i_size. 1043f8514083SAneesh Kumar K.V */ 10444631dbf6SDmitry Monakhov i_size_changed = ext4_update_inode_size(inode, pos + copied); 1045f8514083SAneesh Kumar K.V unlock_page(page); 1046f8514083SAneesh Kumar K.V page_cache_release(page); 1047f8514083SAneesh Kumar K.V 1048f8514083SAneesh Kumar K.V /* 1049f8514083SAneesh Kumar K.V * Don't mark the inode dirty under page lock. First, it unnecessarily 1050f8514083SAneesh Kumar K.V * makes the holding time of page lock longer. Second, it forces lock 1051f8514083SAneesh Kumar K.V * ordering of page lock and transaction start for journaling 1052f8514083SAneesh Kumar K.V * filesystems. 1053f8514083SAneesh Kumar K.V */ 1054f8514083SAneesh Kumar K.V if (i_size_changed) 1055f8514083SAneesh Kumar K.V ext4_mark_inode_dirty(handle, inode); 1056f8514083SAneesh Kumar K.V 1057ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 1058f8514083SAneesh Kumar K.V /* if we have allocated more blocks and copied 1059f8514083SAneesh Kumar K.V * less. We will have blocks allocated outside 1060f8514083SAneesh Kumar K.V * inode->i_size. So truncate them 1061f8514083SAneesh Kumar K.V */ 1062f8514083SAneesh Kumar K.V ext4_orphan_add(handle, inode); 106374d553aaSTheodore Ts'o errout: 1064617ba13bSMingming Cao ret2 = ext4_journal_stop(handle); 1065ac27a0ecSDave Kleikamp if (!ret) 1066ac27a0ecSDave Kleikamp ret = ret2; 1067bfc1af65SNick Piggin 1068f8514083SAneesh Kumar K.V if (pos + len > inode->i_size) { 1069b9a4207dSJan Kara ext4_truncate_failed_write(inode); 1070f8514083SAneesh Kumar K.V /* 1071ffacfa7aSJan Kara * If truncate failed early the inode might still be 1072f8514083SAneesh Kumar K.V * on the orphan list; we need to make sure the inode 1073f8514083SAneesh Kumar K.V * is removed from the orphan list in that case. 1074f8514083SAneesh Kumar K.V */ 1075f8514083SAneesh Kumar K.V if (inode->i_nlink) 1076f8514083SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 1077f8514083SAneesh Kumar K.V } 1078f8514083SAneesh Kumar K.V 1079bfc1af65SNick Piggin return ret ? ret : copied; 1080ac27a0ecSDave Kleikamp } 1081ac27a0ecSDave Kleikamp 1082bfc1af65SNick Piggin static int ext4_journalled_write_end(struct file *file, 1083bfc1af65SNick Piggin struct address_space *mapping, 1084bfc1af65SNick Piggin loff_t pos, unsigned len, unsigned copied, 1085bfc1af65SNick Piggin struct page *page, void *fsdata) 1086ac27a0ecSDave Kleikamp { 1087617ba13bSMingming Cao handle_t *handle = ext4_journal_current_handle(); 1088bfc1af65SNick Piggin struct inode *inode = mapping->host; 1089ac27a0ecSDave Kleikamp int ret = 0, ret2; 1090ac27a0ecSDave Kleikamp int partial = 0; 1091bfc1af65SNick Piggin unsigned from, to; 10924631dbf6SDmitry Monakhov int size_changed = 0; 1093ac27a0ecSDave Kleikamp 10949bffad1eSTheodore Ts'o trace_ext4_journalled_write_end(inode, pos, len, copied); 1095bfc1af65SNick Piggin from = pos & (PAGE_CACHE_SIZE - 1); 1096bfc1af65SNick Piggin to = from + len; 1097bfc1af65SNick Piggin 1098441c8508SCurt Wohlgemuth BUG_ON(!ext4_handle_valid(handle)); 1099441c8508SCurt Wohlgemuth 11003fdcfb66STao Ma if (ext4_has_inline_data(inode)) 11013fdcfb66STao Ma copied = ext4_write_inline_data_end(inode, pos, len, 11023fdcfb66STao Ma copied, page); 11033fdcfb66STao Ma else { 1104bfc1af65SNick Piggin if (copied < len) { 1105bfc1af65SNick Piggin if (!PageUptodate(page)) 1106bfc1af65SNick Piggin copied = 0; 1107bfc1af65SNick Piggin page_zero_new_buffers(page, from+copied, to); 1108bfc1af65SNick Piggin } 1109ac27a0ecSDave Kleikamp 1110f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_buffers(page), from, 1111bfc1af65SNick Piggin to, &partial, write_end_fn); 1112ac27a0ecSDave Kleikamp if (!partial) 1113ac27a0ecSDave Kleikamp SetPageUptodate(page); 11143fdcfb66STao Ma } 11154631dbf6SDmitry Monakhov size_changed = ext4_update_inode_size(inode, pos + copied); 111619f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_JDATA); 11172d859db3SJan Kara EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid; 11184631dbf6SDmitry Monakhov unlock_page(page); 11194631dbf6SDmitry Monakhov page_cache_release(page); 11204631dbf6SDmitry Monakhov 11214631dbf6SDmitry Monakhov if (size_changed) { 1122617ba13bSMingming Cao ret2 = ext4_mark_inode_dirty(handle, inode); 1123ac27a0ecSDave Kleikamp if (!ret) 1124ac27a0ecSDave Kleikamp ret = ret2; 1125ac27a0ecSDave Kleikamp } 1126bfc1af65SNick Piggin 1127ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 1128f8514083SAneesh Kumar K.V /* if we have allocated more blocks and copied 1129f8514083SAneesh Kumar K.V * less. We will have blocks allocated outside 1130f8514083SAneesh Kumar K.V * inode->i_size. So truncate them 1131f8514083SAneesh Kumar K.V */ 1132f8514083SAneesh Kumar K.V ext4_orphan_add(handle, inode); 1133f8514083SAneesh Kumar K.V 1134617ba13bSMingming Cao ret2 = ext4_journal_stop(handle); 1135ac27a0ecSDave Kleikamp if (!ret) 1136ac27a0ecSDave Kleikamp ret = ret2; 1137f8514083SAneesh Kumar K.V if (pos + len > inode->i_size) { 1138b9a4207dSJan Kara ext4_truncate_failed_write(inode); 1139f8514083SAneesh Kumar K.V /* 1140ffacfa7aSJan Kara * If truncate failed early the inode might still be 1141f8514083SAneesh Kumar K.V * on the orphan list; we need to make sure the inode 1142f8514083SAneesh Kumar K.V * is removed from the orphan list in that case. 1143f8514083SAneesh Kumar K.V */ 1144f8514083SAneesh Kumar K.V if (inode->i_nlink) 1145f8514083SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 1146f8514083SAneesh Kumar K.V } 1147bfc1af65SNick Piggin 1148bfc1af65SNick Piggin return ret ? ret : copied; 1149ac27a0ecSDave Kleikamp } 1150d2a17637SMingming Cao 11519d0be502STheodore Ts'o /* 11527b415bf6SAditya Kali * Reserve a single cluster located at lblock 11539d0be502STheodore Ts'o */ 115401f49d0bSTheodore Ts'o static int ext4_da_reserve_space(struct inode *inode, ext4_lblk_t lblock) 1155d2a17637SMingming Cao { 1156d2a17637SMingming Cao struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 11570637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 11587b415bf6SAditya Kali unsigned int md_needed; 11595dd4056dSChristoph Hellwig int ret; 1160d2a17637SMingming Cao 116160e58e0fSMingming Cao /* 116272b8ab9dSEric Sandeen * We will charge metadata quota at writeout time; this saves 116372b8ab9dSEric Sandeen * us from metadata over-estimation, though we may go over by 116472b8ab9dSEric Sandeen * a small amount in the end. Here we just reserve for data. 116560e58e0fSMingming Cao */ 11667b415bf6SAditya Kali ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1)); 11675dd4056dSChristoph Hellwig if (ret) 11685dd4056dSChristoph Hellwig return ret; 116903179fe9STheodore Ts'o 117003179fe9STheodore Ts'o /* 117103179fe9STheodore Ts'o * recalculate the amount of metadata blocks to reserve 117203179fe9STheodore Ts'o * in order to allocate nrblocks 117303179fe9STheodore Ts'o * worse case is one extent per block 117403179fe9STheodore Ts'o */ 117503179fe9STheodore Ts'o spin_lock(&ei->i_block_reservation_lock); 117603179fe9STheodore Ts'o /* 117703179fe9STheodore Ts'o * ext4_calc_metadata_amount() has side effects, which we have 117803179fe9STheodore Ts'o * to be prepared undo if we fail to claim space. 117903179fe9STheodore Ts'o */ 118071d4f7d0STheodore Ts'o md_needed = 0; 118171d4f7d0STheodore Ts'o trace_ext4_da_reserve_space(inode, 0); 118203179fe9STheodore Ts'o 118371d4f7d0STheodore Ts'o if (ext4_claim_free_clusters(sbi, 1, 0)) { 118403179fe9STheodore Ts'o spin_unlock(&ei->i_block_reservation_lock); 118503179fe9STheodore Ts'o dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1)); 1186d2a17637SMingming Cao return -ENOSPC; 1187d2a17637SMingming Cao } 11889d0be502STheodore Ts'o ei->i_reserved_data_blocks++; 11890637c6f4STheodore Ts'o spin_unlock(&ei->i_block_reservation_lock); 119039bc680aSDmitry Monakhov 1191d2a17637SMingming Cao return 0; /* success */ 1192d2a17637SMingming Cao } 1193d2a17637SMingming Cao 119412219aeaSAneesh Kumar K.V static void ext4_da_release_space(struct inode *inode, int to_free) 1195d2a17637SMingming Cao { 1196d2a17637SMingming Cao struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 11970637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 1198d2a17637SMingming Cao 1199cd213226SMingming Cao if (!to_free) 1200cd213226SMingming Cao return; /* Nothing to release, exit */ 1201cd213226SMingming Cao 1202d2a17637SMingming Cao spin_lock(&EXT4_I(inode)->i_block_reservation_lock); 1203cd213226SMingming Cao 12045a58ec87SLi Zefan trace_ext4_da_release_space(inode, to_free); 12050637c6f4STheodore Ts'o if (unlikely(to_free > ei->i_reserved_data_blocks)) { 1206cd213226SMingming Cao /* 12070637c6f4STheodore Ts'o * if there aren't enough reserved blocks, then the 12080637c6f4STheodore Ts'o * counter is messed up somewhere. Since this 12090637c6f4STheodore Ts'o * function is called from invalidate page, it's 12100637c6f4STheodore Ts'o * harmless to return without any action. 1211cd213226SMingming Cao */ 12128de5c325STheodore Ts'o ext4_warning(inode->i_sb, "ext4_da_release_space: " 12130637c6f4STheodore Ts'o "ino %lu, to_free %d with only %d reserved " 12141084f252STheodore Ts'o "data blocks", inode->i_ino, to_free, 12150637c6f4STheodore Ts'o ei->i_reserved_data_blocks); 12160637c6f4STheodore Ts'o WARN_ON(1); 12170637c6f4STheodore Ts'o to_free = ei->i_reserved_data_blocks; 12180637c6f4STheodore Ts'o } 12190637c6f4STheodore Ts'o ei->i_reserved_data_blocks -= to_free; 12200637c6f4STheodore Ts'o 122172b8ab9dSEric Sandeen /* update fs dirty data blocks counter */ 122257042651STheodore Ts'o percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free); 1223d2a17637SMingming Cao 1224d2a17637SMingming Cao spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); 122560e58e0fSMingming Cao 12267b415bf6SAditya Kali dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free)); 1227d2a17637SMingming Cao } 1228d2a17637SMingming Cao 1229d2a17637SMingming Cao static void ext4_da_page_release_reservation(struct page *page, 1230ca99fdd2SLukas Czerner unsigned int offset, 1231ca99fdd2SLukas Czerner unsigned int length) 1232d2a17637SMingming Cao { 1233d2a17637SMingming Cao int to_release = 0; 1234d2a17637SMingming Cao struct buffer_head *head, *bh; 1235d2a17637SMingming Cao unsigned int curr_off = 0; 12367b415bf6SAditya Kali struct inode *inode = page->mapping->host; 12377b415bf6SAditya Kali struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 1238ca99fdd2SLukas Czerner unsigned int stop = offset + length; 12397b415bf6SAditya Kali int num_clusters; 124051865fdaSZheng Liu ext4_fsblk_t lblk; 1241d2a17637SMingming Cao 1242ca99fdd2SLukas Czerner BUG_ON(stop > PAGE_CACHE_SIZE || stop < length); 1243ca99fdd2SLukas Czerner 1244d2a17637SMingming Cao head = page_buffers(page); 1245d2a17637SMingming Cao bh = head; 1246d2a17637SMingming Cao do { 1247d2a17637SMingming Cao unsigned int next_off = curr_off + bh->b_size; 1248d2a17637SMingming Cao 1249ca99fdd2SLukas Czerner if (next_off > stop) 1250ca99fdd2SLukas Czerner break; 1251ca99fdd2SLukas Czerner 1252d2a17637SMingming Cao if ((offset <= curr_off) && (buffer_delay(bh))) { 1253d2a17637SMingming Cao to_release++; 1254d2a17637SMingming Cao clear_buffer_delay(bh); 1255d2a17637SMingming Cao } 1256d2a17637SMingming Cao curr_off = next_off; 1257d2a17637SMingming Cao } while ((bh = bh->b_this_page) != head); 12587b415bf6SAditya Kali 125951865fdaSZheng Liu if (to_release) { 126051865fdaSZheng Liu lblk = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits); 126151865fdaSZheng Liu ext4_es_remove_extent(inode, lblk, to_release); 126251865fdaSZheng Liu } 126351865fdaSZheng Liu 12647b415bf6SAditya Kali /* If we have released all the blocks belonging to a cluster, then we 12657b415bf6SAditya Kali * need to release the reserved space for that cluster. */ 12667b415bf6SAditya Kali num_clusters = EXT4_NUM_B2C(sbi, to_release); 12677b415bf6SAditya Kali while (num_clusters > 0) { 12687b415bf6SAditya Kali lblk = (page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits)) + 12697b415bf6SAditya Kali ((num_clusters - 1) << sbi->s_cluster_bits); 12707b415bf6SAditya Kali if (sbi->s_cluster_ratio == 1 || 12717d1b1fbcSZheng Liu !ext4_find_delalloc_cluster(inode, lblk)) 12727b415bf6SAditya Kali ext4_da_release_space(inode, 1); 12737b415bf6SAditya Kali 12747b415bf6SAditya Kali num_clusters--; 12757b415bf6SAditya Kali } 1276d2a17637SMingming Cao } 1277ac27a0ecSDave Kleikamp 1278ac27a0ecSDave Kleikamp /* 127964769240SAlex Tomas * Delayed allocation stuff 128064769240SAlex Tomas */ 128164769240SAlex Tomas 12824e7ea81dSJan Kara struct mpage_da_data { 12834e7ea81dSJan Kara struct inode *inode; 12844e7ea81dSJan Kara struct writeback_control *wbc; 12856b523df4SJan Kara 12864e7ea81dSJan Kara pgoff_t first_page; /* The first page to write */ 12874e7ea81dSJan Kara pgoff_t next_page; /* Current page to examine */ 12884e7ea81dSJan Kara pgoff_t last_page; /* Last page to examine */ 128964769240SAlex Tomas /* 12904e7ea81dSJan Kara * Extent to map - this can be after first_page because that can be 12914e7ea81dSJan Kara * fully mapped. We somewhat abuse m_flags to store whether the extent 12924e7ea81dSJan Kara * is delalloc or unwritten. 129364769240SAlex Tomas */ 12944e7ea81dSJan Kara struct ext4_map_blocks map; 12954e7ea81dSJan Kara struct ext4_io_submit io_submit; /* IO submission data */ 12964e7ea81dSJan Kara }; 129764769240SAlex Tomas 12984e7ea81dSJan Kara static void mpage_release_unused_pages(struct mpage_da_data *mpd, 12994e7ea81dSJan Kara bool invalidate) 1300c4a0c46eSAneesh Kumar K.V { 1301c4a0c46eSAneesh Kumar K.V int nr_pages, i; 1302c4a0c46eSAneesh Kumar K.V pgoff_t index, end; 1303c4a0c46eSAneesh Kumar K.V struct pagevec pvec; 1304c4a0c46eSAneesh Kumar K.V struct inode *inode = mpd->inode; 1305c4a0c46eSAneesh Kumar K.V struct address_space *mapping = inode->i_mapping; 13064e7ea81dSJan Kara 13074e7ea81dSJan Kara /* This is necessary when next_page == 0. */ 13084e7ea81dSJan Kara if (mpd->first_page >= mpd->next_page) 13094e7ea81dSJan Kara return; 1310c4a0c46eSAneesh Kumar K.V 1311c7f5938aSCurt Wohlgemuth index = mpd->first_page; 1312c7f5938aSCurt Wohlgemuth end = mpd->next_page - 1; 13134e7ea81dSJan Kara if (invalidate) { 13144e7ea81dSJan Kara ext4_lblk_t start, last; 131551865fdaSZheng Liu start = index << (PAGE_CACHE_SHIFT - inode->i_blkbits); 131651865fdaSZheng Liu last = end << (PAGE_CACHE_SHIFT - inode->i_blkbits); 131751865fdaSZheng Liu ext4_es_remove_extent(inode, start, last - start + 1); 13184e7ea81dSJan Kara } 131951865fdaSZheng Liu 132066bea92cSEric Sandeen pagevec_init(&pvec, 0); 1321c4a0c46eSAneesh Kumar K.V while (index <= end) { 1322c4a0c46eSAneesh Kumar K.V nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE); 1323c4a0c46eSAneesh Kumar K.V if (nr_pages == 0) 1324c4a0c46eSAneesh Kumar K.V break; 1325c4a0c46eSAneesh Kumar K.V for (i = 0; i < nr_pages; i++) { 1326c4a0c46eSAneesh Kumar K.V struct page *page = pvec.pages[i]; 13279b1d0998SJan Kara if (page->index > end) 1328c4a0c46eSAneesh Kumar K.V break; 1329c4a0c46eSAneesh Kumar K.V BUG_ON(!PageLocked(page)); 1330c4a0c46eSAneesh Kumar K.V BUG_ON(PageWriteback(page)); 13314e7ea81dSJan Kara if (invalidate) { 1332d47992f8SLukas Czerner block_invalidatepage(page, 0, PAGE_CACHE_SIZE); 1333c4a0c46eSAneesh Kumar K.V ClearPageUptodate(page); 13344e7ea81dSJan Kara } 1335c4a0c46eSAneesh Kumar K.V unlock_page(page); 1336c4a0c46eSAneesh Kumar K.V } 13379b1d0998SJan Kara index = pvec.pages[nr_pages - 1]->index + 1; 13389b1d0998SJan Kara pagevec_release(&pvec); 1339c4a0c46eSAneesh Kumar K.V } 1340c4a0c46eSAneesh Kumar K.V } 1341c4a0c46eSAneesh Kumar K.V 1342df22291fSAneesh Kumar K.V static void ext4_print_free_blocks(struct inode *inode) 1343df22291fSAneesh Kumar K.V { 1344df22291fSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 134592b97816STheodore Ts'o struct super_block *sb = inode->i_sb; 1346f78ee70dSLukas Czerner struct ext4_inode_info *ei = EXT4_I(inode); 134792b97816STheodore Ts'o 134892b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld", 13495dee5437STheodore Ts'o EXT4_C2B(EXT4_SB(inode->i_sb), 1350f78ee70dSLukas Czerner ext4_count_free_clusters(sb))); 135192b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Free/Dirty block details"); 135292b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "free_blocks=%lld", 1353f78ee70dSLukas Czerner (long long) EXT4_C2B(EXT4_SB(sb), 135457042651STheodore Ts'o percpu_counter_sum(&sbi->s_freeclusters_counter))); 135592b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld", 1356f78ee70dSLukas Czerner (long long) EXT4_C2B(EXT4_SB(sb), 13577b415bf6SAditya Kali percpu_counter_sum(&sbi->s_dirtyclusters_counter))); 135892b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Block reservation details"); 135992b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u", 1360f78ee70dSLukas Czerner ei->i_reserved_data_blocks); 1361df22291fSAneesh Kumar K.V return; 1362df22291fSAneesh Kumar K.V } 1363df22291fSAneesh Kumar K.V 1364c364b22cSAneesh Kumar K.V static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh) 136529fa89d0SAneesh Kumar K.V { 1366c364b22cSAneesh Kumar K.V return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh); 136729fa89d0SAneesh Kumar K.V } 136829fa89d0SAneesh Kumar K.V 136964769240SAlex Tomas /* 13705356f261SAditya Kali * This function is grabs code from the very beginning of 13715356f261SAditya Kali * ext4_map_blocks, but assumes that the caller is from delayed write 13725356f261SAditya Kali * time. This function looks up the requested blocks and sets the 13735356f261SAditya Kali * buffer delay bit under the protection of i_data_sem. 13745356f261SAditya Kali */ 13755356f261SAditya Kali static int ext4_da_map_blocks(struct inode *inode, sector_t iblock, 13765356f261SAditya Kali struct ext4_map_blocks *map, 13775356f261SAditya Kali struct buffer_head *bh) 13785356f261SAditya Kali { 1379d100eef2SZheng Liu struct extent_status es; 13805356f261SAditya Kali int retval; 13815356f261SAditya Kali sector_t invalid_block = ~((sector_t) 0xffff); 1382921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 1383921f266bSDmitry Monakhov struct ext4_map_blocks orig_map; 1384921f266bSDmitry Monakhov 1385921f266bSDmitry Monakhov memcpy(&orig_map, map, sizeof(*map)); 1386921f266bSDmitry Monakhov #endif 13875356f261SAditya Kali 13885356f261SAditya Kali if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es)) 13895356f261SAditya Kali invalid_block = ~0; 13905356f261SAditya Kali 13915356f261SAditya Kali map->m_flags = 0; 13925356f261SAditya Kali ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u," 13935356f261SAditya Kali "logical block %lu\n", inode->i_ino, map->m_len, 13945356f261SAditya Kali (unsigned long) map->m_lblk); 1395d100eef2SZheng Liu 1396d100eef2SZheng Liu /* Lookup extent status tree firstly */ 1397d100eef2SZheng Liu if (ext4_es_lookup_extent(inode, iblock, &es)) { 139863b99968STheodore Ts'o ext4_es_lru_add(inode); 1399d100eef2SZheng Liu if (ext4_es_is_hole(&es)) { 1400d100eef2SZheng Liu retval = 0; 1401c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 1402d100eef2SZheng Liu goto add_delayed; 1403d100eef2SZheng Liu } 1404d100eef2SZheng Liu 1405d100eef2SZheng Liu /* 1406d100eef2SZheng Liu * Delayed extent could be allocated by fallocate. 1407d100eef2SZheng Liu * So we need to check it. 1408d100eef2SZheng Liu */ 1409d100eef2SZheng Liu if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) { 1410d100eef2SZheng Liu map_bh(bh, inode->i_sb, invalid_block); 1411d100eef2SZheng Liu set_buffer_new(bh); 1412d100eef2SZheng Liu set_buffer_delay(bh); 1413d100eef2SZheng Liu return 0; 1414d100eef2SZheng Liu } 1415d100eef2SZheng Liu 1416d100eef2SZheng Liu map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk; 1417d100eef2SZheng Liu retval = es.es_len - (iblock - es.es_lblk); 1418d100eef2SZheng Liu if (retval > map->m_len) 1419d100eef2SZheng Liu retval = map->m_len; 1420d100eef2SZheng Liu map->m_len = retval; 1421d100eef2SZheng Liu if (ext4_es_is_written(&es)) 1422d100eef2SZheng Liu map->m_flags |= EXT4_MAP_MAPPED; 1423d100eef2SZheng Liu else if (ext4_es_is_unwritten(&es)) 1424d100eef2SZheng Liu map->m_flags |= EXT4_MAP_UNWRITTEN; 1425d100eef2SZheng Liu else 1426d100eef2SZheng Liu BUG_ON(1); 1427d100eef2SZheng Liu 1428921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 1429921f266bSDmitry Monakhov ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0); 1430921f266bSDmitry Monakhov #endif 1431d100eef2SZheng Liu return retval; 1432d100eef2SZheng Liu } 1433d100eef2SZheng Liu 14345356f261SAditya Kali /* 14355356f261SAditya Kali * Try to see if we can get the block without requesting a new 14365356f261SAditya Kali * file system block. 14375356f261SAditya Kali */ 1438c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 14399c3569b5STao Ma if (ext4_has_inline_data(inode)) { 14409c3569b5STao Ma /* 14419c3569b5STao Ma * We will soon create blocks for this page, and let 14429c3569b5STao Ma * us pretend as if the blocks aren't allocated yet. 14439c3569b5STao Ma * In case of clusters, we have to handle the work 14449c3569b5STao Ma * of mapping from cluster so that the reserved space 14459c3569b5STao Ma * is calculated properly. 14469c3569b5STao Ma */ 14479c3569b5STao Ma if ((EXT4_SB(inode->i_sb)->s_cluster_ratio > 1) && 14489c3569b5STao Ma ext4_find_delalloc_cluster(inode, map->m_lblk)) 14499c3569b5STao Ma map->m_flags |= EXT4_MAP_FROM_CLUSTER; 14509c3569b5STao Ma retval = 0; 14519c3569b5STao Ma } else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 1452d100eef2SZheng Liu retval = ext4_ext_map_blocks(NULL, inode, map, 1453d100eef2SZheng Liu EXT4_GET_BLOCKS_NO_PUT_HOLE); 14545356f261SAditya Kali else 1455d100eef2SZheng Liu retval = ext4_ind_map_blocks(NULL, inode, map, 1456d100eef2SZheng Liu EXT4_GET_BLOCKS_NO_PUT_HOLE); 14575356f261SAditya Kali 1458d100eef2SZheng Liu add_delayed: 14595356f261SAditya Kali if (retval == 0) { 1460f7fec032SZheng Liu int ret; 14615356f261SAditya Kali /* 14625356f261SAditya Kali * XXX: __block_prepare_write() unmaps passed block, 14635356f261SAditya Kali * is it OK? 14645356f261SAditya Kali */ 1465386ad67cSLukas Czerner /* 1466386ad67cSLukas Czerner * If the block was allocated from previously allocated cluster, 1467386ad67cSLukas Czerner * then we don't need to reserve it again. However we still need 1468386ad67cSLukas Czerner * to reserve metadata for every block we're going to write. 1469386ad67cSLukas Czerner */ 14705356f261SAditya Kali if (!(map->m_flags & EXT4_MAP_FROM_CLUSTER)) { 1471f7fec032SZheng Liu ret = ext4_da_reserve_space(inode, iblock); 1472f7fec032SZheng Liu if (ret) { 14735356f261SAditya Kali /* not enough space to reserve */ 1474f7fec032SZheng Liu retval = ret; 14755356f261SAditya Kali goto out_unlock; 14765356f261SAditya Kali } 1477f7fec032SZheng Liu } 14785356f261SAditya Kali 1479f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 1480fdc0212eSZheng Liu ~0, EXTENT_STATUS_DELAYED); 1481f7fec032SZheng Liu if (ret) { 1482f7fec032SZheng Liu retval = ret; 148351865fdaSZheng Liu goto out_unlock; 1484f7fec032SZheng Liu } 148551865fdaSZheng Liu 14865356f261SAditya Kali /* Clear EXT4_MAP_FROM_CLUSTER flag since its purpose is served 14875356f261SAditya Kali * and it should not appear on the bh->b_state. 14885356f261SAditya Kali */ 14895356f261SAditya Kali map->m_flags &= ~EXT4_MAP_FROM_CLUSTER; 14905356f261SAditya Kali 14915356f261SAditya Kali map_bh(bh, inode->i_sb, invalid_block); 14925356f261SAditya Kali set_buffer_new(bh); 14935356f261SAditya Kali set_buffer_delay(bh); 1494f7fec032SZheng Liu } else if (retval > 0) { 1495f7fec032SZheng Liu int ret; 14963be78c73STheodore Ts'o unsigned int status; 1497f7fec032SZheng Liu 149844fb851dSZheng Liu if (unlikely(retval != map->m_len)) { 149944fb851dSZheng Liu ext4_warning(inode->i_sb, 150044fb851dSZheng Liu "ES len assertion failed for inode " 150144fb851dSZheng Liu "%lu: retval %d != map->m_len %d", 150244fb851dSZheng Liu inode->i_ino, retval, map->m_len); 150344fb851dSZheng Liu WARN_ON(1); 1504921f266bSDmitry Monakhov } 1505921f266bSDmitry Monakhov 1506f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 1507f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 1508f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 1509f7fec032SZheng Liu map->m_pblk, status); 1510f7fec032SZheng Liu if (ret != 0) 1511f7fec032SZheng Liu retval = ret; 15125356f261SAditya Kali } 15135356f261SAditya Kali 15145356f261SAditya Kali out_unlock: 15155356f261SAditya Kali up_read((&EXT4_I(inode)->i_data_sem)); 15165356f261SAditya Kali 15175356f261SAditya Kali return retval; 15185356f261SAditya Kali } 15195356f261SAditya Kali 15205356f261SAditya Kali /* 1521d91bd2c1SSeunghun Lee * This is a special get_block_t callback which is used by 1522b920c755STheodore Ts'o * ext4_da_write_begin(). It will either return mapped block or 1523b920c755STheodore Ts'o * reserve space for a single block. 152429fa89d0SAneesh Kumar K.V * 152529fa89d0SAneesh Kumar K.V * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set. 152629fa89d0SAneesh Kumar K.V * We also have b_blocknr = -1 and b_bdev initialized properly 152729fa89d0SAneesh Kumar K.V * 152829fa89d0SAneesh Kumar K.V * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set. 152929fa89d0SAneesh Kumar K.V * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev 153029fa89d0SAneesh Kumar K.V * initialized properly. 153164769240SAlex Tomas */ 15329c3569b5STao Ma int ext4_da_get_block_prep(struct inode *inode, sector_t iblock, 15332ed88685STheodore Ts'o struct buffer_head *bh, int create) 153464769240SAlex Tomas { 15352ed88685STheodore Ts'o struct ext4_map_blocks map; 153664769240SAlex Tomas int ret = 0; 153764769240SAlex Tomas 153864769240SAlex Tomas BUG_ON(create == 0); 15392ed88685STheodore Ts'o BUG_ON(bh->b_size != inode->i_sb->s_blocksize); 15402ed88685STheodore Ts'o 15412ed88685STheodore Ts'o map.m_lblk = iblock; 15422ed88685STheodore Ts'o map.m_len = 1; 154364769240SAlex Tomas 154464769240SAlex Tomas /* 154564769240SAlex Tomas * first, we need to know whether the block is allocated already 154664769240SAlex Tomas * preallocated blocks are unmapped but should treated 154764769240SAlex Tomas * the same as allocated blocks. 154864769240SAlex Tomas */ 15495356f261SAditya Kali ret = ext4_da_map_blocks(inode, iblock, &map, bh); 15505356f261SAditya Kali if (ret <= 0) 15512ed88685STheodore Ts'o return ret; 155264769240SAlex Tomas 15532ed88685STheodore Ts'o map_bh(bh, inode->i_sb, map.m_pblk); 15542ed88685STheodore Ts'o bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags; 15552ed88685STheodore Ts'o 15562ed88685STheodore Ts'o if (buffer_unwritten(bh)) { 15572ed88685STheodore Ts'o /* A delayed write to unwritten bh should be marked 15582ed88685STheodore Ts'o * new and mapped. Mapped ensures that we don't do 15592ed88685STheodore Ts'o * get_block multiple times when we write to the same 15602ed88685STheodore Ts'o * offset and new ensures that we do proper zero out 15612ed88685STheodore Ts'o * for partial write. 15622ed88685STheodore Ts'o */ 15632ed88685STheodore Ts'o set_buffer_new(bh); 1564c8205636STheodore Ts'o set_buffer_mapped(bh); 15652ed88685STheodore Ts'o } 15662ed88685STheodore Ts'o return 0; 156764769240SAlex Tomas } 156861628a3fSMingming Cao 156962e086beSAneesh Kumar K.V static int bget_one(handle_t *handle, struct buffer_head *bh) 157062e086beSAneesh Kumar K.V { 157162e086beSAneesh Kumar K.V get_bh(bh); 157262e086beSAneesh Kumar K.V return 0; 157362e086beSAneesh Kumar K.V } 157462e086beSAneesh Kumar K.V 157562e086beSAneesh Kumar K.V static int bput_one(handle_t *handle, struct buffer_head *bh) 157662e086beSAneesh Kumar K.V { 157762e086beSAneesh Kumar K.V put_bh(bh); 157862e086beSAneesh Kumar K.V return 0; 157962e086beSAneesh Kumar K.V } 158062e086beSAneesh Kumar K.V 158162e086beSAneesh Kumar K.V static int __ext4_journalled_writepage(struct page *page, 158262e086beSAneesh Kumar K.V unsigned int len) 158362e086beSAneesh Kumar K.V { 158462e086beSAneesh Kumar K.V struct address_space *mapping = page->mapping; 158562e086beSAneesh Kumar K.V struct inode *inode = mapping->host; 15863fdcfb66STao Ma struct buffer_head *page_bufs = NULL; 158762e086beSAneesh Kumar K.V handle_t *handle = NULL; 15883fdcfb66STao Ma int ret = 0, err = 0; 15893fdcfb66STao Ma int inline_data = ext4_has_inline_data(inode); 15903fdcfb66STao Ma struct buffer_head *inode_bh = NULL; 159162e086beSAneesh Kumar K.V 1592cb20d518STheodore Ts'o ClearPageChecked(page); 15933fdcfb66STao Ma 15943fdcfb66STao Ma if (inline_data) { 15953fdcfb66STao Ma BUG_ON(page->index != 0); 15963fdcfb66STao Ma BUG_ON(len > ext4_get_max_inline_size(inode)); 15973fdcfb66STao Ma inode_bh = ext4_journalled_write_inline_data(inode, len, page); 15983fdcfb66STao Ma if (inode_bh == NULL) 15993fdcfb66STao Ma goto out; 16003fdcfb66STao Ma } else { 160162e086beSAneesh Kumar K.V page_bufs = page_buffers(page); 16023fdcfb66STao Ma if (!page_bufs) { 16033fdcfb66STao Ma BUG(); 16043fdcfb66STao Ma goto out; 16053fdcfb66STao Ma } 16063fdcfb66STao Ma ext4_walk_page_buffers(handle, page_bufs, 0, len, 16073fdcfb66STao Ma NULL, bget_one); 16083fdcfb66STao Ma } 160962e086beSAneesh Kumar K.V /* As soon as we unlock the page, it can go away, but we have 161062e086beSAneesh Kumar K.V * references to buffers so we are safe */ 161162e086beSAneesh Kumar K.V unlock_page(page); 161262e086beSAneesh Kumar K.V 16139924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 16149924a92aSTheodore Ts'o ext4_writepage_trans_blocks(inode)); 161562e086beSAneesh Kumar K.V if (IS_ERR(handle)) { 161662e086beSAneesh Kumar K.V ret = PTR_ERR(handle); 161762e086beSAneesh Kumar K.V goto out; 161862e086beSAneesh Kumar K.V } 161962e086beSAneesh Kumar K.V 1620441c8508SCurt Wohlgemuth BUG_ON(!ext4_handle_valid(handle)); 1621441c8508SCurt Wohlgemuth 16223fdcfb66STao Ma if (inline_data) { 16235d601255Sliang xie BUFFER_TRACE(inode_bh, "get write access"); 16243fdcfb66STao Ma ret = ext4_journal_get_write_access(handle, inode_bh); 16253fdcfb66STao Ma 16263fdcfb66STao Ma err = ext4_handle_dirty_metadata(handle, inode, inode_bh); 16273fdcfb66STao Ma 16283fdcfb66STao Ma } else { 1629f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL, 163062e086beSAneesh Kumar K.V do_journal_get_write_access); 163162e086beSAneesh Kumar K.V 1632f19d5870STao Ma err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL, 163362e086beSAneesh Kumar K.V write_end_fn); 16343fdcfb66STao Ma } 163562e086beSAneesh Kumar K.V if (ret == 0) 163662e086beSAneesh Kumar K.V ret = err; 16372d859db3SJan Kara EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid; 163862e086beSAneesh Kumar K.V err = ext4_journal_stop(handle); 163962e086beSAneesh Kumar K.V if (!ret) 164062e086beSAneesh Kumar K.V ret = err; 164162e086beSAneesh Kumar K.V 16423fdcfb66STao Ma if (!ext4_has_inline_data(inode)) 16438c9367fdSTheodore Ts'o ext4_walk_page_buffers(NULL, page_bufs, 0, len, 16443fdcfb66STao Ma NULL, bput_one); 164519f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_JDATA); 164662e086beSAneesh Kumar K.V out: 16473fdcfb66STao Ma brelse(inode_bh); 164862e086beSAneesh Kumar K.V return ret; 164962e086beSAneesh Kumar K.V } 165062e086beSAneesh Kumar K.V 165161628a3fSMingming Cao /* 165243ce1d23SAneesh Kumar K.V * Note that we don't need to start a transaction unless we're journaling data 165343ce1d23SAneesh Kumar K.V * because we should have holes filled from ext4_page_mkwrite(). We even don't 165443ce1d23SAneesh Kumar K.V * need to file the inode to the transaction's list in ordered mode because if 165543ce1d23SAneesh Kumar K.V * we are writing back data added by write(), the inode is already there and if 165643ce1d23SAneesh Kumar K.V * we are writing back data modified via mmap(), no one guarantees in which 165743ce1d23SAneesh Kumar K.V * transaction the data will hit the disk. In case we are journaling data, we 165843ce1d23SAneesh Kumar K.V * cannot start transaction directly because transaction start ranks above page 165943ce1d23SAneesh Kumar K.V * lock so we have to do some magic. 166043ce1d23SAneesh Kumar K.V * 1661b920c755STheodore Ts'o * This function can get called via... 166220970ba6STheodore Ts'o * - ext4_writepages after taking page lock (have journal handle) 1663b920c755STheodore Ts'o * - journal_submit_inode_data_buffers (no journal handle) 1664f6463b0dSArtem Bityutskiy * - shrink_page_list via the kswapd/direct reclaim (no journal handle) 1665b920c755STheodore Ts'o * - grab_page_cache when doing write_begin (have journal handle) 166643ce1d23SAneesh Kumar K.V * 166743ce1d23SAneesh Kumar K.V * We don't do any block allocation in this function. If we have page with 166843ce1d23SAneesh Kumar K.V * multiple blocks we need to write those buffer_heads that are mapped. This 166943ce1d23SAneesh Kumar K.V * is important for mmaped based write. So if we do with blocksize 1K 167043ce1d23SAneesh Kumar K.V * truncate(f, 1024); 167143ce1d23SAneesh Kumar K.V * a = mmap(f, 0, 4096); 167243ce1d23SAneesh Kumar K.V * a[0] = 'a'; 167343ce1d23SAneesh Kumar K.V * truncate(f, 4096); 167443ce1d23SAneesh Kumar K.V * we have in the page first buffer_head mapped via page_mkwrite call back 167590802ed9SPaul Bolle * but other buffer_heads would be unmapped but dirty (dirty done via the 167643ce1d23SAneesh Kumar K.V * do_wp_page). So writepage should write the first block. If we modify 167743ce1d23SAneesh Kumar K.V * the mmap area beyond 1024 we will again get a page_fault and the 167843ce1d23SAneesh Kumar K.V * page_mkwrite callback will do the block allocation and mark the 167943ce1d23SAneesh Kumar K.V * buffer_heads mapped. 168043ce1d23SAneesh Kumar K.V * 168143ce1d23SAneesh Kumar K.V * We redirty the page if we have any buffer_heads that is either delay or 168243ce1d23SAneesh Kumar K.V * unwritten in the page. 168343ce1d23SAneesh Kumar K.V * 168443ce1d23SAneesh Kumar K.V * We can get recursively called as show below. 168543ce1d23SAneesh Kumar K.V * 168643ce1d23SAneesh Kumar K.V * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() -> 168743ce1d23SAneesh Kumar K.V * ext4_writepage() 168843ce1d23SAneesh Kumar K.V * 168943ce1d23SAneesh Kumar K.V * But since we don't do any block allocation we should not deadlock. 169043ce1d23SAneesh Kumar K.V * Page also have the dirty flag cleared so we don't get recurive page_lock. 169161628a3fSMingming Cao */ 169243ce1d23SAneesh Kumar K.V static int ext4_writepage(struct page *page, 169364769240SAlex Tomas struct writeback_control *wbc) 169464769240SAlex Tomas { 1695f8bec370SJan Kara int ret = 0; 169661628a3fSMingming Cao loff_t size; 1697498e5f24STheodore Ts'o unsigned int len; 1698744692dcSJiaying Zhang struct buffer_head *page_bufs = NULL; 169961628a3fSMingming Cao struct inode *inode = page->mapping->host; 170036ade451SJan Kara struct ext4_io_submit io_submit; 17011c8349a1SNamjae Jeon bool keep_towrite = false; 170264769240SAlex Tomas 1703a9c667f8SLukas Czerner trace_ext4_writepage(page); 170461628a3fSMingming Cao size = i_size_read(inode); 170561628a3fSMingming Cao if (page->index == size >> PAGE_CACHE_SHIFT) 170661628a3fSMingming Cao len = size & ~PAGE_CACHE_MASK; 170761628a3fSMingming Cao else 170861628a3fSMingming Cao len = PAGE_CACHE_SIZE; 170961628a3fSMingming Cao 1710f0e6c985SAneesh Kumar K.V page_bufs = page_buffers(page); 171164769240SAlex Tomas /* 1712fe386132SJan Kara * We cannot do block allocation or other extent handling in this 1713fe386132SJan Kara * function. If there are buffers needing that, we have to redirty 1714fe386132SJan Kara * the page. But we may reach here when we do a journal commit via 1715fe386132SJan Kara * journal_submit_inode_data_buffers() and in that case we must write 1716fe386132SJan Kara * allocated buffers to achieve data=ordered mode guarantees. 171764769240SAlex Tomas */ 1718f19d5870STao Ma if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL, 1719c364b22cSAneesh Kumar K.V ext4_bh_delay_or_unwritten)) { 172061628a3fSMingming Cao redirty_page_for_writepage(wbc, page); 1721fe386132SJan Kara if (current->flags & PF_MEMALLOC) { 1722fe386132SJan Kara /* 1723fe386132SJan Kara * For memory cleaning there's no point in writing only 1724fe386132SJan Kara * some buffers. So just bail out. Warn if we came here 1725fe386132SJan Kara * from direct reclaim. 1726fe386132SJan Kara */ 1727fe386132SJan Kara WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD)) 1728fe386132SJan Kara == PF_MEMALLOC); 172961628a3fSMingming Cao unlock_page(page); 173061628a3fSMingming Cao return 0; 173161628a3fSMingming Cao } 17321c8349a1SNamjae Jeon keep_towrite = true; 1733f0e6c985SAneesh Kumar K.V } 173464769240SAlex Tomas 1735cb20d518STheodore Ts'o if (PageChecked(page) && ext4_should_journal_data(inode)) 173643ce1d23SAneesh Kumar K.V /* 173743ce1d23SAneesh Kumar K.V * It's mmapped pagecache. Add buffers and journal it. There 173843ce1d23SAneesh Kumar K.V * doesn't seem much point in redirtying the page here. 173943ce1d23SAneesh Kumar K.V */ 17403f0ca309SWu Fengguang return __ext4_journalled_writepage(page, len); 174143ce1d23SAneesh Kumar K.V 174297a851edSJan Kara ext4_io_submit_init(&io_submit, wbc); 174397a851edSJan Kara io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS); 174497a851edSJan Kara if (!io_submit.io_end) { 174597a851edSJan Kara redirty_page_for_writepage(wbc, page); 174697a851edSJan Kara unlock_page(page); 174797a851edSJan Kara return -ENOMEM; 174897a851edSJan Kara } 17491c8349a1SNamjae Jeon ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite); 175036ade451SJan Kara ext4_io_submit(&io_submit); 175197a851edSJan Kara /* Drop io_end reference we got from init */ 175297a851edSJan Kara ext4_put_io_end_defer(io_submit.io_end); 175364769240SAlex Tomas return ret; 175464769240SAlex Tomas } 175564769240SAlex Tomas 17565f1132b2SJan Kara static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page) 17575f1132b2SJan Kara { 17585f1132b2SJan Kara int len; 17595f1132b2SJan Kara loff_t size = i_size_read(mpd->inode); 17605f1132b2SJan Kara int err; 17615f1132b2SJan Kara 17625f1132b2SJan Kara BUG_ON(page->index != mpd->first_page); 17635f1132b2SJan Kara if (page->index == size >> PAGE_CACHE_SHIFT) 17645f1132b2SJan Kara len = size & ~PAGE_CACHE_MASK; 17655f1132b2SJan Kara else 17665f1132b2SJan Kara len = PAGE_CACHE_SIZE; 17675f1132b2SJan Kara clear_page_dirty_for_io(page); 17681c8349a1SNamjae Jeon err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false); 17695f1132b2SJan Kara if (!err) 17705f1132b2SJan Kara mpd->wbc->nr_to_write--; 17715f1132b2SJan Kara mpd->first_page++; 17725f1132b2SJan Kara 17735f1132b2SJan Kara return err; 17745f1132b2SJan Kara } 17755f1132b2SJan Kara 17764e7ea81dSJan Kara #define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay)) 17774e7ea81dSJan Kara 177861628a3fSMingming Cao /* 1779fffb2739SJan Kara * mballoc gives us at most this number of blocks... 1780fffb2739SJan Kara * XXX: That seems to be only a limitation of ext4_mb_normalize_request(). 1781fffb2739SJan Kara * The rest of mballoc seems to handle chunks up to full group size. 178261628a3fSMingming Cao */ 1783fffb2739SJan Kara #define MAX_WRITEPAGES_EXTENT_LEN 2048 1784525f4ed8SMingming Cao 1785525f4ed8SMingming Cao /* 17864e7ea81dSJan Kara * mpage_add_bh_to_extent - try to add bh to extent of blocks to map 17874e7ea81dSJan Kara * 17884e7ea81dSJan Kara * @mpd - extent of blocks 17894e7ea81dSJan Kara * @lblk - logical number of the block in the file 179009930042SJan Kara * @bh - buffer head we want to add to the extent 17914e7ea81dSJan Kara * 179209930042SJan Kara * The function is used to collect contig. blocks in the same state. If the 179309930042SJan Kara * buffer doesn't require mapping for writeback and we haven't started the 179409930042SJan Kara * extent of buffers to map yet, the function returns 'true' immediately - the 179509930042SJan Kara * caller can write the buffer right away. Otherwise the function returns true 179609930042SJan Kara * if the block has been added to the extent, false if the block couldn't be 179709930042SJan Kara * added. 17984e7ea81dSJan Kara */ 179909930042SJan Kara static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk, 180009930042SJan Kara struct buffer_head *bh) 18014e7ea81dSJan Kara { 18024e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 18034e7ea81dSJan Kara 180409930042SJan Kara /* Buffer that doesn't need mapping for writeback? */ 180509930042SJan Kara if (!buffer_dirty(bh) || !buffer_mapped(bh) || 180609930042SJan Kara (!buffer_delay(bh) && !buffer_unwritten(bh))) { 180709930042SJan Kara /* So far no extent to map => we write the buffer right away */ 180809930042SJan Kara if (map->m_len == 0) 180909930042SJan Kara return true; 181009930042SJan Kara return false; 181109930042SJan Kara } 18124e7ea81dSJan Kara 18134e7ea81dSJan Kara /* First block in the extent? */ 18144e7ea81dSJan Kara if (map->m_len == 0) { 18154e7ea81dSJan Kara map->m_lblk = lblk; 18164e7ea81dSJan Kara map->m_len = 1; 181709930042SJan Kara map->m_flags = bh->b_state & BH_FLAGS; 181809930042SJan Kara return true; 18194e7ea81dSJan Kara } 18204e7ea81dSJan Kara 182109930042SJan Kara /* Don't go larger than mballoc is willing to allocate */ 182209930042SJan Kara if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN) 182309930042SJan Kara return false; 182409930042SJan Kara 18254e7ea81dSJan Kara /* Can we merge the block to our big extent? */ 18264e7ea81dSJan Kara if (lblk == map->m_lblk + map->m_len && 182709930042SJan Kara (bh->b_state & BH_FLAGS) == map->m_flags) { 18284e7ea81dSJan Kara map->m_len++; 182909930042SJan Kara return true; 18304e7ea81dSJan Kara } 183109930042SJan Kara return false; 18324e7ea81dSJan Kara } 18334e7ea81dSJan Kara 18345f1132b2SJan Kara /* 18355f1132b2SJan Kara * mpage_process_page_bufs - submit page buffers for IO or add them to extent 18365f1132b2SJan Kara * 18375f1132b2SJan Kara * @mpd - extent of blocks for mapping 18385f1132b2SJan Kara * @head - the first buffer in the page 18395f1132b2SJan Kara * @bh - buffer we should start processing from 18405f1132b2SJan Kara * @lblk - logical number of the block in the file corresponding to @bh 18415f1132b2SJan Kara * 18425f1132b2SJan Kara * Walk through page buffers from @bh upto @head (exclusive) and either submit 18435f1132b2SJan Kara * the page for IO if all buffers in this page were mapped and there's no 18445f1132b2SJan Kara * accumulated extent of buffers to map or add buffers in the page to the 18455f1132b2SJan Kara * extent of buffers to map. The function returns 1 if the caller can continue 18465f1132b2SJan Kara * by processing the next page, 0 if it should stop adding buffers to the 18475f1132b2SJan Kara * extent to map because we cannot extend it anymore. It can also return value 18485f1132b2SJan Kara * < 0 in case of error during IO submission. 18495f1132b2SJan Kara */ 18505f1132b2SJan Kara static int mpage_process_page_bufs(struct mpage_da_data *mpd, 18514e7ea81dSJan Kara struct buffer_head *head, 18524e7ea81dSJan Kara struct buffer_head *bh, 18534e7ea81dSJan Kara ext4_lblk_t lblk) 18544e7ea81dSJan Kara { 18554e7ea81dSJan Kara struct inode *inode = mpd->inode; 18565f1132b2SJan Kara int err; 18574e7ea81dSJan Kara ext4_lblk_t blocks = (i_size_read(inode) + (1 << inode->i_blkbits) - 1) 18584e7ea81dSJan Kara >> inode->i_blkbits; 18594e7ea81dSJan Kara 18604e7ea81dSJan Kara do { 18614e7ea81dSJan Kara BUG_ON(buffer_locked(bh)); 18624e7ea81dSJan Kara 186309930042SJan Kara if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) { 18644e7ea81dSJan Kara /* Found extent to map? */ 18654e7ea81dSJan Kara if (mpd->map.m_len) 18665f1132b2SJan Kara return 0; 186709930042SJan Kara /* Everything mapped so far and we hit EOF */ 18685f1132b2SJan Kara break; 18694e7ea81dSJan Kara } 18704e7ea81dSJan Kara } while (lblk++, (bh = bh->b_this_page) != head); 18715f1132b2SJan Kara /* So far everything mapped? Submit the page for IO. */ 18725f1132b2SJan Kara if (mpd->map.m_len == 0) { 18735f1132b2SJan Kara err = mpage_submit_page(mpd, head->b_page); 18745f1132b2SJan Kara if (err < 0) 18754e7ea81dSJan Kara return err; 18764e7ea81dSJan Kara } 18775f1132b2SJan Kara return lblk < blocks; 18785f1132b2SJan Kara } 18794e7ea81dSJan Kara 18804e7ea81dSJan Kara /* 18814e7ea81dSJan Kara * mpage_map_buffers - update buffers corresponding to changed extent and 18824e7ea81dSJan Kara * submit fully mapped pages for IO 18834e7ea81dSJan Kara * 18844e7ea81dSJan Kara * @mpd - description of extent to map, on return next extent to map 18854e7ea81dSJan Kara * 18864e7ea81dSJan Kara * Scan buffers corresponding to changed extent (we expect corresponding pages 18874e7ea81dSJan Kara * to be already locked) and update buffer state according to new extent state. 18884e7ea81dSJan Kara * We map delalloc buffers to their physical location, clear unwritten bits, 1889556615dcSLukas Czerner * and mark buffers as uninit when we perform writes to unwritten extents 18904e7ea81dSJan Kara * and do extent conversion after IO is finished. If the last page is not fully 18914e7ea81dSJan Kara * mapped, we update @map to the next extent in the last page that needs 18924e7ea81dSJan Kara * mapping. Otherwise we submit the page for IO. 18934e7ea81dSJan Kara */ 18944e7ea81dSJan Kara static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd) 18954e7ea81dSJan Kara { 18964e7ea81dSJan Kara struct pagevec pvec; 18974e7ea81dSJan Kara int nr_pages, i; 18984e7ea81dSJan Kara struct inode *inode = mpd->inode; 18994e7ea81dSJan Kara struct buffer_head *head, *bh; 19004e7ea81dSJan Kara int bpp_bits = PAGE_CACHE_SHIFT - inode->i_blkbits; 19014e7ea81dSJan Kara pgoff_t start, end; 19024e7ea81dSJan Kara ext4_lblk_t lblk; 19034e7ea81dSJan Kara sector_t pblock; 19044e7ea81dSJan Kara int err; 19054e7ea81dSJan Kara 19064e7ea81dSJan Kara start = mpd->map.m_lblk >> bpp_bits; 19074e7ea81dSJan Kara end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits; 19084e7ea81dSJan Kara lblk = start << bpp_bits; 19094e7ea81dSJan Kara pblock = mpd->map.m_pblk; 19104e7ea81dSJan Kara 19114e7ea81dSJan Kara pagevec_init(&pvec, 0); 19124e7ea81dSJan Kara while (start <= end) { 19134e7ea81dSJan Kara nr_pages = pagevec_lookup(&pvec, inode->i_mapping, start, 19144e7ea81dSJan Kara PAGEVEC_SIZE); 19154e7ea81dSJan Kara if (nr_pages == 0) 19164e7ea81dSJan Kara break; 19174e7ea81dSJan Kara for (i = 0; i < nr_pages; i++) { 19184e7ea81dSJan Kara struct page *page = pvec.pages[i]; 19194e7ea81dSJan Kara 19204e7ea81dSJan Kara if (page->index > end) 19214e7ea81dSJan Kara break; 19224e7ea81dSJan Kara /* Up to 'end' pages must be contiguous */ 19234e7ea81dSJan Kara BUG_ON(page->index != start); 19244e7ea81dSJan Kara bh = head = page_buffers(page); 19254e7ea81dSJan Kara do { 19264e7ea81dSJan Kara if (lblk < mpd->map.m_lblk) 19274e7ea81dSJan Kara continue; 19284e7ea81dSJan Kara if (lblk >= mpd->map.m_lblk + mpd->map.m_len) { 19294e7ea81dSJan Kara /* 19304e7ea81dSJan Kara * Buffer after end of mapped extent. 19314e7ea81dSJan Kara * Find next buffer in the page to map. 19324e7ea81dSJan Kara */ 19334e7ea81dSJan Kara mpd->map.m_len = 0; 19344e7ea81dSJan Kara mpd->map.m_flags = 0; 19355f1132b2SJan Kara /* 19365f1132b2SJan Kara * FIXME: If dioread_nolock supports 19375f1132b2SJan Kara * blocksize < pagesize, we need to make 19385f1132b2SJan Kara * sure we add size mapped so far to 19395f1132b2SJan Kara * io_end->size as the following call 19405f1132b2SJan Kara * can submit the page for IO. 19415f1132b2SJan Kara */ 19425f1132b2SJan Kara err = mpage_process_page_bufs(mpd, head, 19435f1132b2SJan Kara bh, lblk); 19444e7ea81dSJan Kara pagevec_release(&pvec); 19455f1132b2SJan Kara if (err > 0) 19465f1132b2SJan Kara err = 0; 19475f1132b2SJan Kara return err; 19484e7ea81dSJan Kara } 19494e7ea81dSJan Kara if (buffer_delay(bh)) { 19504e7ea81dSJan Kara clear_buffer_delay(bh); 19514e7ea81dSJan Kara bh->b_blocknr = pblock++; 19524e7ea81dSJan Kara } 19534e7ea81dSJan Kara clear_buffer_unwritten(bh); 19545f1132b2SJan Kara } while (lblk++, (bh = bh->b_this_page) != head); 19554e7ea81dSJan Kara 19564e7ea81dSJan Kara /* 19574e7ea81dSJan Kara * FIXME: This is going to break if dioread_nolock 19584e7ea81dSJan Kara * supports blocksize < pagesize as we will try to 19594e7ea81dSJan Kara * convert potentially unmapped parts of inode. 19604e7ea81dSJan Kara */ 19614e7ea81dSJan Kara mpd->io_submit.io_end->size += PAGE_CACHE_SIZE; 19624e7ea81dSJan Kara /* Page fully mapped - let IO run! */ 19634e7ea81dSJan Kara err = mpage_submit_page(mpd, page); 19644e7ea81dSJan Kara if (err < 0) { 19654e7ea81dSJan Kara pagevec_release(&pvec); 19664e7ea81dSJan Kara return err; 19674e7ea81dSJan Kara } 19684e7ea81dSJan Kara start++; 19694e7ea81dSJan Kara } 19704e7ea81dSJan Kara pagevec_release(&pvec); 19714e7ea81dSJan Kara } 19724e7ea81dSJan Kara /* Extent fully mapped and matches with page boundary. We are done. */ 19734e7ea81dSJan Kara mpd->map.m_len = 0; 19744e7ea81dSJan Kara mpd->map.m_flags = 0; 19754e7ea81dSJan Kara return 0; 19764e7ea81dSJan Kara } 19774e7ea81dSJan Kara 19784e7ea81dSJan Kara static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd) 19794e7ea81dSJan Kara { 19804e7ea81dSJan Kara struct inode *inode = mpd->inode; 19814e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 19824e7ea81dSJan Kara int get_blocks_flags; 1983090f32eeSLukas Czerner int err, dioread_nolock; 19844e7ea81dSJan Kara 19854e7ea81dSJan Kara trace_ext4_da_write_pages_extent(inode, map); 19864e7ea81dSJan Kara /* 19874e7ea81dSJan Kara * Call ext4_map_blocks() to allocate any delayed allocation blocks, or 1988556615dcSLukas Czerner * to convert an unwritten extent to be initialized (in the case 19894e7ea81dSJan Kara * where we have written into one or more preallocated blocks). It is 19904e7ea81dSJan Kara * possible that we're going to need more metadata blocks than 19914e7ea81dSJan Kara * previously reserved. However we must not fail because we're in 19924e7ea81dSJan Kara * writeback and there is nothing we can do about it so it might result 19934e7ea81dSJan Kara * in data loss. So use reserved blocks to allocate metadata if 19944e7ea81dSJan Kara * possible. 19954e7ea81dSJan Kara * 1996754cfed6STheodore Ts'o * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if 1997754cfed6STheodore Ts'o * the blocks in question are delalloc blocks. This indicates 1998754cfed6STheodore Ts'o * that the blocks and quotas has already been checked when 1999754cfed6STheodore Ts'o * the data was copied into the page cache. 20004e7ea81dSJan Kara */ 20014e7ea81dSJan Kara get_blocks_flags = EXT4_GET_BLOCKS_CREATE | 20024e7ea81dSJan Kara EXT4_GET_BLOCKS_METADATA_NOFAIL; 2003090f32eeSLukas Czerner dioread_nolock = ext4_should_dioread_nolock(inode); 2004090f32eeSLukas Czerner if (dioread_nolock) 20054e7ea81dSJan Kara get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT; 20064e7ea81dSJan Kara if (map->m_flags & (1 << BH_Delay)) 20074e7ea81dSJan Kara get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE; 20084e7ea81dSJan Kara 20094e7ea81dSJan Kara err = ext4_map_blocks(handle, inode, map, get_blocks_flags); 20104e7ea81dSJan Kara if (err < 0) 20114e7ea81dSJan Kara return err; 2012090f32eeSLukas Czerner if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) { 20136b523df4SJan Kara if (!mpd->io_submit.io_end->handle && 20146b523df4SJan Kara ext4_handle_valid(handle)) { 20156b523df4SJan Kara mpd->io_submit.io_end->handle = handle->h_rsv_handle; 20166b523df4SJan Kara handle->h_rsv_handle = NULL; 20176b523df4SJan Kara } 20183613d228SJan Kara ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end); 20196b523df4SJan Kara } 20204e7ea81dSJan Kara 20214e7ea81dSJan Kara BUG_ON(map->m_len == 0); 20224e7ea81dSJan Kara if (map->m_flags & EXT4_MAP_NEW) { 20234e7ea81dSJan Kara struct block_device *bdev = inode->i_sb->s_bdev; 20244e7ea81dSJan Kara int i; 20254e7ea81dSJan Kara 20264e7ea81dSJan Kara for (i = 0; i < map->m_len; i++) 20274e7ea81dSJan Kara unmap_underlying_metadata(bdev, map->m_pblk + i); 20284e7ea81dSJan Kara } 20294e7ea81dSJan Kara return 0; 20304e7ea81dSJan Kara } 20314e7ea81dSJan Kara 20324e7ea81dSJan Kara /* 20334e7ea81dSJan Kara * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length 20344e7ea81dSJan Kara * mpd->len and submit pages underlying it for IO 20354e7ea81dSJan Kara * 20364e7ea81dSJan Kara * @handle - handle for journal operations 20374e7ea81dSJan Kara * @mpd - extent to map 20387534e854SJan Kara * @give_up_on_write - we set this to true iff there is a fatal error and there 20397534e854SJan Kara * is no hope of writing the data. The caller should discard 20407534e854SJan Kara * dirty pages to avoid infinite loops. 20414e7ea81dSJan Kara * 20424e7ea81dSJan Kara * The function maps extent starting at mpd->lblk of length mpd->len. If it is 20434e7ea81dSJan Kara * delayed, blocks are allocated, if it is unwritten, we may need to convert 20444e7ea81dSJan Kara * them to initialized or split the described range from larger unwritten 20454e7ea81dSJan Kara * extent. Note that we need not map all the described range since allocation 20464e7ea81dSJan Kara * can return less blocks or the range is covered by more unwritten extents. We 20474e7ea81dSJan Kara * cannot map more because we are limited by reserved transaction credits. On 20484e7ea81dSJan Kara * the other hand we always make sure that the last touched page is fully 20494e7ea81dSJan Kara * mapped so that it can be written out (and thus forward progress is 20504e7ea81dSJan Kara * guaranteed). After mapping we submit all mapped pages for IO. 20514e7ea81dSJan Kara */ 20524e7ea81dSJan Kara static int mpage_map_and_submit_extent(handle_t *handle, 2053cb530541STheodore Ts'o struct mpage_da_data *mpd, 2054cb530541STheodore Ts'o bool *give_up_on_write) 20554e7ea81dSJan Kara { 20564e7ea81dSJan Kara struct inode *inode = mpd->inode; 20574e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 20584e7ea81dSJan Kara int err; 20594e7ea81dSJan Kara loff_t disksize; 20606603120eSDmitry Monakhov int progress = 0; 20614e7ea81dSJan Kara 20624e7ea81dSJan Kara mpd->io_submit.io_end->offset = 20634e7ea81dSJan Kara ((loff_t)map->m_lblk) << inode->i_blkbits; 206427d7c4edSJan Kara do { 20654e7ea81dSJan Kara err = mpage_map_one_extent(handle, mpd); 20664e7ea81dSJan Kara if (err < 0) { 20674e7ea81dSJan Kara struct super_block *sb = inode->i_sb; 20684e7ea81dSJan Kara 2069cb530541STheodore Ts'o if (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED) 2070cb530541STheodore Ts'o goto invalidate_dirty_pages; 20714e7ea81dSJan Kara /* 2072cb530541STheodore Ts'o * Let the uper layers retry transient errors. 2073cb530541STheodore Ts'o * In the case of ENOSPC, if ext4_count_free_blocks() 2074cb530541STheodore Ts'o * is non-zero, a commit should free up blocks. 20754e7ea81dSJan Kara */ 2076cb530541STheodore Ts'o if ((err == -ENOMEM) || 20776603120eSDmitry Monakhov (err == -ENOSPC && ext4_count_free_clusters(sb))) { 20786603120eSDmitry Monakhov if (progress) 20796603120eSDmitry Monakhov goto update_disksize; 2080cb530541STheodore Ts'o return err; 20816603120eSDmitry Monakhov } 20824e7ea81dSJan Kara ext4_msg(sb, KERN_CRIT, 20834e7ea81dSJan Kara "Delayed block allocation failed for " 20844e7ea81dSJan Kara "inode %lu at logical offset %llu with" 20854e7ea81dSJan Kara " max blocks %u with error %d", 20864e7ea81dSJan Kara inode->i_ino, 20874e7ea81dSJan Kara (unsigned long long)map->m_lblk, 2088cb530541STheodore Ts'o (unsigned)map->m_len, -err); 20894e7ea81dSJan Kara ext4_msg(sb, KERN_CRIT, 20904e7ea81dSJan Kara "This should not happen!! Data will " 20914e7ea81dSJan Kara "be lost\n"); 20924e7ea81dSJan Kara if (err == -ENOSPC) 20934e7ea81dSJan Kara ext4_print_free_blocks(inode); 2094cb530541STheodore Ts'o invalidate_dirty_pages: 2095cb530541STheodore Ts'o *give_up_on_write = true; 20964e7ea81dSJan Kara return err; 20974e7ea81dSJan Kara } 20986603120eSDmitry Monakhov progress = 1; 20994e7ea81dSJan Kara /* 21004e7ea81dSJan Kara * Update buffer state, submit mapped pages, and get us new 21014e7ea81dSJan Kara * extent to map 21024e7ea81dSJan Kara */ 21034e7ea81dSJan Kara err = mpage_map_and_submit_buffers(mpd); 21044e7ea81dSJan Kara if (err < 0) 21056603120eSDmitry Monakhov goto update_disksize; 210627d7c4edSJan Kara } while (map->m_len); 21074e7ea81dSJan Kara 21086603120eSDmitry Monakhov update_disksize: 2109622cad13STheodore Ts'o /* 2110622cad13STheodore Ts'o * Update on-disk size after IO is submitted. Races with 2111622cad13STheodore Ts'o * truncate are avoided by checking i_size under i_data_sem. 2112622cad13STheodore Ts'o */ 21134e7ea81dSJan Kara disksize = ((loff_t)mpd->first_page) << PAGE_CACHE_SHIFT; 21144e7ea81dSJan Kara if (disksize > EXT4_I(inode)->i_disksize) { 21154e7ea81dSJan Kara int err2; 2116622cad13STheodore Ts'o loff_t i_size; 21174e7ea81dSJan Kara 2118622cad13STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 2119622cad13STheodore Ts'o i_size = i_size_read(inode); 2120622cad13STheodore Ts'o if (disksize > i_size) 2121622cad13STheodore Ts'o disksize = i_size; 2122622cad13STheodore Ts'o if (disksize > EXT4_I(inode)->i_disksize) 2123622cad13STheodore Ts'o EXT4_I(inode)->i_disksize = disksize; 21244e7ea81dSJan Kara err2 = ext4_mark_inode_dirty(handle, inode); 2125622cad13STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 21264e7ea81dSJan Kara if (err2) 21274e7ea81dSJan Kara ext4_error(inode->i_sb, 21284e7ea81dSJan Kara "Failed to mark inode %lu dirty", 21294e7ea81dSJan Kara inode->i_ino); 21304e7ea81dSJan Kara if (!err) 21314e7ea81dSJan Kara err = err2; 21324e7ea81dSJan Kara } 21334e7ea81dSJan Kara return err; 21344e7ea81dSJan Kara } 21354e7ea81dSJan Kara 21364e7ea81dSJan Kara /* 2137fffb2739SJan Kara * Calculate the total number of credits to reserve for one writepages 213820970ba6STheodore Ts'o * iteration. This is called from ext4_writepages(). We map an extent of 2139fffb2739SJan Kara * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping 2140fffb2739SJan Kara * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN + 2141fffb2739SJan Kara * bpp - 1 blocks in bpp different extents. 2142525f4ed8SMingming Cao */ 2143fffb2739SJan Kara static int ext4_da_writepages_trans_blocks(struct inode *inode) 2144fffb2739SJan Kara { 2145fffb2739SJan Kara int bpp = ext4_journal_blocks_per_page(inode); 2146525f4ed8SMingming Cao 2147fffb2739SJan Kara return ext4_meta_trans_blocks(inode, 2148fffb2739SJan Kara MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp); 2149525f4ed8SMingming Cao } 215061628a3fSMingming Cao 21518e48dcfbSTheodore Ts'o /* 21524e7ea81dSJan Kara * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages 21534e7ea81dSJan Kara * and underlying extent to map 21544e7ea81dSJan Kara * 21554e7ea81dSJan Kara * @mpd - where to look for pages 21564e7ea81dSJan Kara * 21574e7ea81dSJan Kara * Walk dirty pages in the mapping. If they are fully mapped, submit them for 21584e7ea81dSJan Kara * IO immediately. When we find a page which isn't mapped we start accumulating 21594e7ea81dSJan Kara * extent of buffers underlying these pages that needs mapping (formed by 21604e7ea81dSJan Kara * either delayed or unwritten buffers). We also lock the pages containing 21614e7ea81dSJan Kara * these buffers. The extent found is returned in @mpd structure (starting at 21624e7ea81dSJan Kara * mpd->lblk with length mpd->len blocks). 21634e7ea81dSJan Kara * 21644e7ea81dSJan Kara * Note that this function can attach bios to one io_end structure which are 21654e7ea81dSJan Kara * neither logically nor physically contiguous. Although it may seem as an 21664e7ea81dSJan Kara * unnecessary complication, it is actually inevitable in blocksize < pagesize 21674e7ea81dSJan Kara * case as we need to track IO to all buffers underlying a page in one io_end. 21688e48dcfbSTheodore Ts'o */ 21694e7ea81dSJan Kara static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd) 21708e48dcfbSTheodore Ts'o { 21714e7ea81dSJan Kara struct address_space *mapping = mpd->inode->i_mapping; 21728e48dcfbSTheodore Ts'o struct pagevec pvec; 21734f01b02cSTheodore Ts'o unsigned int nr_pages; 2174aeac589aSMing Lei long left = mpd->wbc->nr_to_write; 21754e7ea81dSJan Kara pgoff_t index = mpd->first_page; 21764e7ea81dSJan Kara pgoff_t end = mpd->last_page; 21774e7ea81dSJan Kara int tag; 21784e7ea81dSJan Kara int i, err = 0; 21794e7ea81dSJan Kara int blkbits = mpd->inode->i_blkbits; 21804e7ea81dSJan Kara ext4_lblk_t lblk; 21814e7ea81dSJan Kara struct buffer_head *head; 21828e48dcfbSTheodore Ts'o 21834e7ea81dSJan Kara if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages) 21845b41d924SEric Sandeen tag = PAGECACHE_TAG_TOWRITE; 21855b41d924SEric Sandeen else 21865b41d924SEric Sandeen tag = PAGECACHE_TAG_DIRTY; 21875b41d924SEric Sandeen 21884e7ea81dSJan Kara pagevec_init(&pvec, 0); 21894e7ea81dSJan Kara mpd->map.m_len = 0; 21904e7ea81dSJan Kara mpd->next_page = index; 21914f01b02cSTheodore Ts'o while (index <= end) { 21925b41d924SEric Sandeen nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag, 21938e48dcfbSTheodore Ts'o min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1); 21948e48dcfbSTheodore Ts'o if (nr_pages == 0) 21954e7ea81dSJan Kara goto out; 21968e48dcfbSTheodore Ts'o 21978e48dcfbSTheodore Ts'o for (i = 0; i < nr_pages; i++) { 21988e48dcfbSTheodore Ts'o struct page *page = pvec.pages[i]; 21998e48dcfbSTheodore Ts'o 22008e48dcfbSTheodore Ts'o /* 22018e48dcfbSTheodore Ts'o * At this point, the page may be truncated or 22028e48dcfbSTheodore Ts'o * invalidated (changing page->mapping to NULL), or 22038e48dcfbSTheodore Ts'o * even swizzled back from swapper_space to tmpfs file 22048e48dcfbSTheodore Ts'o * mapping. However, page->index will not change 22058e48dcfbSTheodore Ts'o * because we have a reference on the page. 22068e48dcfbSTheodore Ts'o */ 22074f01b02cSTheodore Ts'o if (page->index > end) 22084f01b02cSTheodore Ts'o goto out; 22098e48dcfbSTheodore Ts'o 2210aeac589aSMing Lei /* 2211aeac589aSMing Lei * Accumulated enough dirty pages? This doesn't apply 2212aeac589aSMing Lei * to WB_SYNC_ALL mode. For integrity sync we have to 2213aeac589aSMing Lei * keep going because someone may be concurrently 2214aeac589aSMing Lei * dirtying pages, and we might have synced a lot of 2215aeac589aSMing Lei * newly appeared dirty pages, but have not synced all 2216aeac589aSMing Lei * of the old dirty pages. 2217aeac589aSMing Lei */ 2218aeac589aSMing Lei if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0) 2219aeac589aSMing Lei goto out; 2220aeac589aSMing Lei 22214e7ea81dSJan Kara /* If we can't merge this page, we are done. */ 22224e7ea81dSJan Kara if (mpd->map.m_len > 0 && mpd->next_page != page->index) 22234e7ea81dSJan Kara goto out; 222478aaced3STheodore Ts'o 22258e48dcfbSTheodore Ts'o lock_page(page); 22268e48dcfbSTheodore Ts'o /* 22274e7ea81dSJan Kara * If the page is no longer dirty, or its mapping no 22284e7ea81dSJan Kara * longer corresponds to inode we are writing (which 22294e7ea81dSJan Kara * means it has been truncated or invalidated), or the 22304e7ea81dSJan Kara * page is already under writeback and we are not doing 22314e7ea81dSJan Kara * a data integrity writeback, skip the page 22328e48dcfbSTheodore Ts'o */ 22334f01b02cSTheodore Ts'o if (!PageDirty(page) || 22344f01b02cSTheodore Ts'o (PageWriteback(page) && 22354e7ea81dSJan Kara (mpd->wbc->sync_mode == WB_SYNC_NONE)) || 22364f01b02cSTheodore Ts'o unlikely(page->mapping != mapping)) { 22378e48dcfbSTheodore Ts'o unlock_page(page); 22388e48dcfbSTheodore Ts'o continue; 22398e48dcfbSTheodore Ts'o } 22408e48dcfbSTheodore Ts'o 22418e48dcfbSTheodore Ts'o wait_on_page_writeback(page); 22428e48dcfbSTheodore Ts'o BUG_ON(PageWriteback(page)); 22438e48dcfbSTheodore Ts'o 22444e7ea81dSJan Kara if (mpd->map.m_len == 0) 22458eb9e5ceSTheodore Ts'o mpd->first_page = page->index; 22468eb9e5ceSTheodore Ts'o mpd->next_page = page->index + 1; 2247f8bec370SJan Kara /* Add all dirty buffers to mpd */ 22484e7ea81dSJan Kara lblk = ((ext4_lblk_t)page->index) << 22494e7ea81dSJan Kara (PAGE_CACHE_SHIFT - blkbits); 22508eb9e5ceSTheodore Ts'o head = page_buffers(page); 22515f1132b2SJan Kara err = mpage_process_page_bufs(mpd, head, head, lblk); 22525f1132b2SJan Kara if (err <= 0) 22534e7ea81dSJan Kara goto out; 22545f1132b2SJan Kara err = 0; 2255aeac589aSMing Lei left--; 22568e48dcfbSTheodore Ts'o } 22578e48dcfbSTheodore Ts'o pagevec_release(&pvec); 22588e48dcfbSTheodore Ts'o cond_resched(); 22598e48dcfbSTheodore Ts'o } 22604f01b02cSTheodore Ts'o return 0; 22618eb9e5ceSTheodore Ts'o out: 22628eb9e5ceSTheodore Ts'o pagevec_release(&pvec); 22634e7ea81dSJan Kara return err; 22648e48dcfbSTheodore Ts'o } 22658e48dcfbSTheodore Ts'o 226620970ba6STheodore Ts'o static int __writepage(struct page *page, struct writeback_control *wbc, 226720970ba6STheodore Ts'o void *data) 226820970ba6STheodore Ts'o { 226920970ba6STheodore Ts'o struct address_space *mapping = data; 227020970ba6STheodore Ts'o int ret = ext4_writepage(page, wbc); 227120970ba6STheodore Ts'o mapping_set_error(mapping, ret); 227220970ba6STheodore Ts'o return ret; 227320970ba6STheodore Ts'o } 227420970ba6STheodore Ts'o 227520970ba6STheodore Ts'o static int ext4_writepages(struct address_space *mapping, 227664769240SAlex Tomas struct writeback_control *wbc) 227764769240SAlex Tomas { 22784e7ea81dSJan Kara pgoff_t writeback_index = 0; 22794e7ea81dSJan Kara long nr_to_write = wbc->nr_to_write; 228022208dedSAneesh Kumar K.V int range_whole = 0; 22814e7ea81dSJan Kara int cycled = 1; 228261628a3fSMingming Cao handle_t *handle = NULL; 2283df22291fSAneesh Kumar K.V struct mpage_da_data mpd; 22845e745b04SAneesh Kumar K.V struct inode *inode = mapping->host; 22856b523df4SJan Kara int needed_blocks, rsv_blocks = 0, ret = 0; 22865e745b04SAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb); 22874e7ea81dSJan Kara bool done; 22881bce63d1SShaohua Li struct blk_plug plug; 2289cb530541STheodore Ts'o bool give_up_on_write = false; 229061628a3fSMingming Cao 229120970ba6STheodore Ts'o trace_ext4_writepages(inode, wbc); 2292ba80b101STheodore Ts'o 229361628a3fSMingming Cao /* 229461628a3fSMingming Cao * No pages to write? This is mainly a kludge to avoid starting 229561628a3fSMingming Cao * a transaction for special inodes like journal inode on last iput() 229661628a3fSMingming Cao * because that could violate lock ordering on umount 229761628a3fSMingming Cao */ 2298a1d6cc56SAneesh Kumar K.V if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) 2299bbf023c7SMing Lei goto out_writepages; 23002a21e37eSTheodore Ts'o 230120970ba6STheodore Ts'o if (ext4_should_journal_data(inode)) { 230220970ba6STheodore Ts'o struct blk_plug plug; 230320970ba6STheodore Ts'o 230420970ba6STheodore Ts'o blk_start_plug(&plug); 230520970ba6STheodore Ts'o ret = write_cache_pages(mapping, wbc, __writepage, mapping); 230620970ba6STheodore Ts'o blk_finish_plug(&plug); 2307bbf023c7SMing Lei goto out_writepages; 230820970ba6STheodore Ts'o } 230920970ba6STheodore Ts'o 23102a21e37eSTheodore Ts'o /* 23112a21e37eSTheodore Ts'o * If the filesystem has aborted, it is read-only, so return 23122a21e37eSTheodore Ts'o * right away instead of dumping stack traces later on that 23132a21e37eSTheodore Ts'o * will obscure the real source of the problem. We test 23144ab2f15bSTheodore Ts'o * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because 23152a21e37eSTheodore Ts'o * the latter could be true if the filesystem is mounted 231620970ba6STheodore Ts'o * read-only, and in that case, ext4_writepages should 23172a21e37eSTheodore Ts'o * *never* be called, so if that ever happens, we would want 23182a21e37eSTheodore Ts'o * the stack trace. 23192a21e37eSTheodore Ts'o */ 2320bbf023c7SMing Lei if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) { 2321bbf023c7SMing Lei ret = -EROFS; 2322bbf023c7SMing Lei goto out_writepages; 2323bbf023c7SMing Lei } 23242a21e37eSTheodore Ts'o 23256b523df4SJan Kara if (ext4_should_dioread_nolock(inode)) { 23266b523df4SJan Kara /* 23276b523df4SJan Kara * We may need to convert up to one extent per block in 23286b523df4SJan Kara * the page and we may dirty the inode. 23296b523df4SJan Kara */ 23306b523df4SJan Kara rsv_blocks = 1 + (PAGE_CACHE_SIZE >> inode->i_blkbits); 23316b523df4SJan Kara } 23326b523df4SJan Kara 23334e7ea81dSJan Kara /* 23344e7ea81dSJan Kara * If we have inline data and arrive here, it means that 23354e7ea81dSJan Kara * we will soon create the block for the 1st page, so 23364e7ea81dSJan Kara * we'd better clear the inline data here. 23374e7ea81dSJan Kara */ 23384e7ea81dSJan Kara if (ext4_has_inline_data(inode)) { 23394e7ea81dSJan Kara /* Just inode will be modified... */ 23404e7ea81dSJan Kara handle = ext4_journal_start(inode, EXT4_HT_INODE, 1); 23414e7ea81dSJan Kara if (IS_ERR(handle)) { 23424e7ea81dSJan Kara ret = PTR_ERR(handle); 23434e7ea81dSJan Kara goto out_writepages; 23444e7ea81dSJan Kara } 23454e7ea81dSJan Kara BUG_ON(ext4_test_inode_state(inode, 23464e7ea81dSJan Kara EXT4_STATE_MAY_INLINE_DATA)); 23474e7ea81dSJan Kara ext4_destroy_inline_data(handle, inode); 23484e7ea81dSJan Kara ext4_journal_stop(handle); 23494e7ea81dSJan Kara } 23504e7ea81dSJan Kara 235122208dedSAneesh Kumar K.V if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX) 235222208dedSAneesh Kumar K.V range_whole = 1; 235361628a3fSMingming Cao 23542acf2c26SAneesh Kumar K.V if (wbc->range_cyclic) { 23554e7ea81dSJan Kara writeback_index = mapping->writeback_index; 23564e7ea81dSJan Kara if (writeback_index) 23572acf2c26SAneesh Kumar K.V cycled = 0; 23584e7ea81dSJan Kara mpd.first_page = writeback_index; 23594e7ea81dSJan Kara mpd.last_page = -1; 23605b41d924SEric Sandeen } else { 23614e7ea81dSJan Kara mpd.first_page = wbc->range_start >> PAGE_CACHE_SHIFT; 23624e7ea81dSJan Kara mpd.last_page = wbc->range_end >> PAGE_CACHE_SHIFT; 23635b41d924SEric Sandeen } 2364a1d6cc56SAneesh Kumar K.V 23654e7ea81dSJan Kara mpd.inode = inode; 23664e7ea81dSJan Kara mpd.wbc = wbc; 23674e7ea81dSJan Kara ext4_io_submit_init(&mpd.io_submit, wbc); 23682acf2c26SAneesh Kumar K.V retry: 23696e6938b6SWu Fengguang if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages) 23704e7ea81dSJan Kara tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page); 23714e7ea81dSJan Kara done = false; 23721bce63d1SShaohua Li blk_start_plug(&plug); 23734e7ea81dSJan Kara while (!done && mpd.first_page <= mpd.last_page) { 23744e7ea81dSJan Kara /* For each extent of pages we use new io_end */ 23754e7ea81dSJan Kara mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL); 23764e7ea81dSJan Kara if (!mpd.io_submit.io_end) { 23774e7ea81dSJan Kara ret = -ENOMEM; 23784e7ea81dSJan Kara break; 23794e7ea81dSJan Kara } 2380a1d6cc56SAneesh Kumar K.V 2381a1d6cc56SAneesh Kumar K.V /* 23824e7ea81dSJan Kara * We have two constraints: We find one extent to map and we 23834e7ea81dSJan Kara * must always write out whole page (makes a difference when 23844e7ea81dSJan Kara * blocksize < pagesize) so that we don't block on IO when we 23854e7ea81dSJan Kara * try to write out the rest of the page. Journalled mode is 23864e7ea81dSJan Kara * not supported by delalloc. 2387a1d6cc56SAneesh Kumar K.V */ 2388a1d6cc56SAneesh Kumar K.V BUG_ON(ext4_should_journal_data(inode)); 2389525f4ed8SMingming Cao needed_blocks = ext4_da_writepages_trans_blocks(inode); 2390a1d6cc56SAneesh Kumar K.V 239161628a3fSMingming Cao /* start a new transaction */ 23926b523df4SJan Kara handle = ext4_journal_start_with_reserve(inode, 23936b523df4SJan Kara EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks); 239461628a3fSMingming Cao if (IS_ERR(handle)) { 239561628a3fSMingming Cao ret = PTR_ERR(handle); 23961693918eSTheodore Ts'o ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: " 2397fbe845ddSCurt Wohlgemuth "%ld pages, ino %lu; err %d", __func__, 2398a1d6cc56SAneesh Kumar K.V wbc->nr_to_write, inode->i_ino, ret); 23994e7ea81dSJan Kara /* Release allocated io_end */ 24004e7ea81dSJan Kara ext4_put_io_end(mpd.io_submit.io_end); 24014e7ea81dSJan Kara break; 240261628a3fSMingming Cao } 2403f63e6005STheodore Ts'o 24044e7ea81dSJan Kara trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc); 24054e7ea81dSJan Kara ret = mpage_prepare_extent_to_map(&mpd); 24064e7ea81dSJan Kara if (!ret) { 24074e7ea81dSJan Kara if (mpd.map.m_len) 2408cb530541STheodore Ts'o ret = mpage_map_and_submit_extent(handle, &mpd, 2409cb530541STheodore Ts'o &give_up_on_write); 24104e7ea81dSJan Kara else { 2411f63e6005STheodore Ts'o /* 24124e7ea81dSJan Kara * We scanned the whole range (or exhausted 24134e7ea81dSJan Kara * nr_to_write), submitted what was mapped and 24144e7ea81dSJan Kara * didn't find anything needing mapping. We are 24154e7ea81dSJan Kara * done. 2416f63e6005STheodore Ts'o */ 24174e7ea81dSJan Kara done = true; 2418f63e6005STheodore Ts'o } 24194e7ea81dSJan Kara } 242061628a3fSMingming Cao ext4_journal_stop(handle); 24214e7ea81dSJan Kara /* Submit prepared bio */ 24224e7ea81dSJan Kara ext4_io_submit(&mpd.io_submit); 24234e7ea81dSJan Kara /* Unlock pages we didn't use */ 2424cb530541STheodore Ts'o mpage_release_unused_pages(&mpd, give_up_on_write); 24254e7ea81dSJan Kara /* Drop our io_end reference we got from init */ 24264e7ea81dSJan Kara ext4_put_io_end(mpd.io_submit.io_end); 2427df22291fSAneesh Kumar K.V 24284e7ea81dSJan Kara if (ret == -ENOSPC && sbi->s_journal) { 24294e7ea81dSJan Kara /* 24304e7ea81dSJan Kara * Commit the transaction which would 243122208dedSAneesh Kumar K.V * free blocks released in the transaction 243222208dedSAneesh Kumar K.V * and try again 243322208dedSAneesh Kumar K.V */ 2434df22291fSAneesh Kumar K.V jbd2_journal_force_commit_nested(sbi->s_journal); 243522208dedSAneesh Kumar K.V ret = 0; 24364e7ea81dSJan Kara continue; 24374e7ea81dSJan Kara } 24384e7ea81dSJan Kara /* Fatal error - ENOMEM, EIO... */ 24394e7ea81dSJan Kara if (ret) 244061628a3fSMingming Cao break; 244161628a3fSMingming Cao } 24421bce63d1SShaohua Li blk_finish_plug(&plug); 24439c12a831SJan Kara if (!ret && !cycled && wbc->nr_to_write > 0) { 24442acf2c26SAneesh Kumar K.V cycled = 1; 24454e7ea81dSJan Kara mpd.last_page = writeback_index - 1; 24464e7ea81dSJan Kara mpd.first_page = 0; 24472acf2c26SAneesh Kumar K.V goto retry; 24482acf2c26SAneesh Kumar K.V } 244961628a3fSMingming Cao 245022208dedSAneesh Kumar K.V /* Update index */ 245122208dedSAneesh Kumar K.V if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0)) 245222208dedSAneesh Kumar K.V /* 24534e7ea81dSJan Kara * Set the writeback_index so that range_cyclic 245422208dedSAneesh Kumar K.V * mode will write it back later 245522208dedSAneesh Kumar K.V */ 24564e7ea81dSJan Kara mapping->writeback_index = mpd.first_page; 2457a1d6cc56SAneesh Kumar K.V 245861628a3fSMingming Cao out_writepages: 245920970ba6STheodore Ts'o trace_ext4_writepages_result(inode, wbc, ret, 24604e7ea81dSJan Kara nr_to_write - wbc->nr_to_write); 246161628a3fSMingming Cao return ret; 246264769240SAlex Tomas } 246364769240SAlex Tomas 246479f0be8dSAneesh Kumar K.V static int ext4_nonda_switch(struct super_block *sb) 246579f0be8dSAneesh Kumar K.V { 24665c1ff336SEric Whitney s64 free_clusters, dirty_clusters; 246779f0be8dSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(sb); 246879f0be8dSAneesh Kumar K.V 246979f0be8dSAneesh Kumar K.V /* 247079f0be8dSAneesh Kumar K.V * switch to non delalloc mode if we are running low 247179f0be8dSAneesh Kumar K.V * on free block. The free block accounting via percpu 2472179f7ebfSEric Dumazet * counters can get slightly wrong with percpu_counter_batch getting 247379f0be8dSAneesh Kumar K.V * accumulated on each CPU without updating global counters 247479f0be8dSAneesh Kumar K.V * Delalloc need an accurate free block accounting. So switch 247579f0be8dSAneesh Kumar K.V * to non delalloc when we are near to error range. 247679f0be8dSAneesh Kumar K.V */ 24775c1ff336SEric Whitney free_clusters = 24785c1ff336SEric Whitney percpu_counter_read_positive(&sbi->s_freeclusters_counter); 24795c1ff336SEric Whitney dirty_clusters = 24805c1ff336SEric Whitney percpu_counter_read_positive(&sbi->s_dirtyclusters_counter); 248100d4e736STheodore Ts'o /* 248200d4e736STheodore Ts'o * Start pushing delalloc when 1/2 of free blocks are dirty. 248300d4e736STheodore Ts'o */ 24845c1ff336SEric Whitney if (dirty_clusters && (free_clusters < 2 * dirty_clusters)) 248510ee27a0SMiao Xie try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE); 248600d4e736STheodore Ts'o 24875c1ff336SEric Whitney if (2 * free_clusters < 3 * dirty_clusters || 24885c1ff336SEric Whitney free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) { 248979f0be8dSAneesh Kumar K.V /* 2490c8afb446SEric Sandeen * free block count is less than 150% of dirty blocks 2491c8afb446SEric Sandeen * or free blocks is less than watermark 249279f0be8dSAneesh Kumar K.V */ 249379f0be8dSAneesh Kumar K.V return 1; 249479f0be8dSAneesh Kumar K.V } 249579f0be8dSAneesh Kumar K.V return 0; 249679f0be8dSAneesh Kumar K.V } 249779f0be8dSAneesh Kumar K.V 249864769240SAlex Tomas static int ext4_da_write_begin(struct file *file, struct address_space *mapping, 249964769240SAlex Tomas loff_t pos, unsigned len, unsigned flags, 250064769240SAlex Tomas struct page **pagep, void **fsdata) 250164769240SAlex Tomas { 250272b8ab9dSEric Sandeen int ret, retries = 0; 250364769240SAlex Tomas struct page *page; 250464769240SAlex Tomas pgoff_t index; 250564769240SAlex Tomas struct inode *inode = mapping->host; 250664769240SAlex Tomas handle_t *handle; 250764769240SAlex Tomas 250864769240SAlex Tomas index = pos >> PAGE_CACHE_SHIFT; 250979f0be8dSAneesh Kumar K.V 251079f0be8dSAneesh Kumar K.V if (ext4_nonda_switch(inode->i_sb)) { 251179f0be8dSAneesh Kumar K.V *fsdata = (void *)FALL_BACK_TO_NONDELALLOC; 251279f0be8dSAneesh Kumar K.V return ext4_write_begin(file, mapping, pos, 251379f0be8dSAneesh Kumar K.V len, flags, pagep, fsdata); 251479f0be8dSAneesh Kumar K.V } 251579f0be8dSAneesh Kumar K.V *fsdata = (void *)0; 25169bffad1eSTheodore Ts'o trace_ext4_da_write_begin(inode, pos, len, flags); 25179c3569b5STao Ma 25189c3569b5STao Ma if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) { 25199c3569b5STao Ma ret = ext4_da_write_inline_data_begin(mapping, inode, 25209c3569b5STao Ma pos, len, flags, 25219c3569b5STao Ma pagep, fsdata); 25229c3569b5STao Ma if (ret < 0) 252347564bfbSTheodore Ts'o return ret; 252447564bfbSTheodore Ts'o if (ret == 1) 252547564bfbSTheodore Ts'o return 0; 25269c3569b5STao Ma } 25279c3569b5STao Ma 252847564bfbSTheodore Ts'o /* 252947564bfbSTheodore Ts'o * grab_cache_page_write_begin() can take a long time if the 253047564bfbSTheodore Ts'o * system is thrashing due to memory pressure, or if the page 253147564bfbSTheodore Ts'o * is being written back. So grab it first before we start 253247564bfbSTheodore Ts'o * the transaction handle. This also allows us to allocate 253347564bfbSTheodore Ts'o * the page (if needed) without using GFP_NOFS. 253447564bfbSTheodore Ts'o */ 253547564bfbSTheodore Ts'o retry_grab: 253647564bfbSTheodore Ts'o page = grab_cache_page_write_begin(mapping, index, flags); 253747564bfbSTheodore Ts'o if (!page) 253847564bfbSTheodore Ts'o return -ENOMEM; 253947564bfbSTheodore Ts'o unlock_page(page); 254047564bfbSTheodore Ts'o 254164769240SAlex Tomas /* 254264769240SAlex Tomas * With delayed allocation, we don't log the i_disksize update 254364769240SAlex Tomas * if there is delayed block allocation. But we still need 254464769240SAlex Tomas * to journalling the i_disksize update if writes to the end 254564769240SAlex Tomas * of file which has an already mapped buffer. 254664769240SAlex Tomas */ 254747564bfbSTheodore Ts'o retry_journal: 25489924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 1); 254964769240SAlex Tomas if (IS_ERR(handle)) { 255047564bfbSTheodore Ts'o page_cache_release(page); 255147564bfbSTheodore Ts'o return PTR_ERR(handle); 255264769240SAlex Tomas } 255364769240SAlex Tomas 255447564bfbSTheodore Ts'o lock_page(page); 255547564bfbSTheodore Ts'o if (page->mapping != mapping) { 255647564bfbSTheodore Ts'o /* The page got truncated from under us */ 255747564bfbSTheodore Ts'o unlock_page(page); 255847564bfbSTheodore Ts'o page_cache_release(page); 2559d5a0d4f7SEric Sandeen ext4_journal_stop(handle); 256047564bfbSTheodore Ts'o goto retry_grab; 2561d5a0d4f7SEric Sandeen } 256247564bfbSTheodore Ts'o /* In case writeback began while the page was unlocked */ 25637afe5aa5SDmitry Monakhov wait_for_stable_page(page); 256464769240SAlex Tomas 25656e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep); 256664769240SAlex Tomas if (ret < 0) { 256764769240SAlex Tomas unlock_page(page); 256864769240SAlex Tomas ext4_journal_stop(handle); 2569ae4d5372SAneesh Kumar K.V /* 2570ae4d5372SAneesh Kumar K.V * block_write_begin may have instantiated a few blocks 2571ae4d5372SAneesh Kumar K.V * outside i_size. Trim these off again. Don't need 2572ae4d5372SAneesh Kumar K.V * i_size_read because we hold i_mutex. 2573ae4d5372SAneesh Kumar K.V */ 2574ae4d5372SAneesh Kumar K.V if (pos + len > inode->i_size) 2575b9a4207dSJan Kara ext4_truncate_failed_write(inode); 257647564bfbSTheodore Ts'o 257747564bfbSTheodore Ts'o if (ret == -ENOSPC && 257847564bfbSTheodore Ts'o ext4_should_retry_alloc(inode->i_sb, &retries)) 257947564bfbSTheodore Ts'o goto retry_journal; 258047564bfbSTheodore Ts'o 258147564bfbSTheodore Ts'o page_cache_release(page); 258247564bfbSTheodore Ts'o return ret; 258364769240SAlex Tomas } 258464769240SAlex Tomas 258547564bfbSTheodore Ts'o *pagep = page; 258664769240SAlex Tomas return ret; 258764769240SAlex Tomas } 258864769240SAlex Tomas 2589632eaeabSMingming Cao /* 2590632eaeabSMingming Cao * Check if we should update i_disksize 2591632eaeabSMingming Cao * when write to the end of file but not require block allocation 2592632eaeabSMingming Cao */ 2593632eaeabSMingming Cao static int ext4_da_should_update_i_disksize(struct page *page, 2594632eaeabSMingming Cao unsigned long offset) 2595632eaeabSMingming Cao { 2596632eaeabSMingming Cao struct buffer_head *bh; 2597632eaeabSMingming Cao struct inode *inode = page->mapping->host; 2598632eaeabSMingming Cao unsigned int idx; 2599632eaeabSMingming Cao int i; 2600632eaeabSMingming Cao 2601632eaeabSMingming Cao bh = page_buffers(page); 2602632eaeabSMingming Cao idx = offset >> inode->i_blkbits; 2603632eaeabSMingming Cao 2604632eaeabSMingming Cao for (i = 0; i < idx; i++) 2605632eaeabSMingming Cao bh = bh->b_this_page; 2606632eaeabSMingming Cao 260729fa89d0SAneesh Kumar K.V if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh)) 2608632eaeabSMingming Cao return 0; 2609632eaeabSMingming Cao return 1; 2610632eaeabSMingming Cao } 2611632eaeabSMingming Cao 261264769240SAlex Tomas static int ext4_da_write_end(struct file *file, 261364769240SAlex Tomas struct address_space *mapping, 261464769240SAlex Tomas loff_t pos, unsigned len, unsigned copied, 261564769240SAlex Tomas struct page *page, void *fsdata) 261664769240SAlex Tomas { 261764769240SAlex Tomas struct inode *inode = mapping->host; 261864769240SAlex Tomas int ret = 0, ret2; 261964769240SAlex Tomas handle_t *handle = ext4_journal_current_handle(); 262064769240SAlex Tomas loff_t new_i_size; 2621632eaeabSMingming Cao unsigned long start, end; 262279f0be8dSAneesh Kumar K.V int write_mode = (int)(unsigned long)fsdata; 262379f0be8dSAneesh Kumar K.V 262474d553aaSTheodore Ts'o if (write_mode == FALL_BACK_TO_NONDELALLOC) 262574d553aaSTheodore Ts'o return ext4_write_end(file, mapping, pos, 262679f0be8dSAneesh Kumar K.V len, copied, page, fsdata); 2627632eaeabSMingming Cao 26289bffad1eSTheodore Ts'o trace_ext4_da_write_end(inode, pos, len, copied); 2629632eaeabSMingming Cao start = pos & (PAGE_CACHE_SIZE - 1); 2630632eaeabSMingming Cao end = start + copied - 1; 263164769240SAlex Tomas 263264769240SAlex Tomas /* 263364769240SAlex Tomas * generic_write_end() will run mark_inode_dirty() if i_size 263464769240SAlex Tomas * changes. So let's piggyback the i_disksize mark_inode_dirty 263564769240SAlex Tomas * into that. 263664769240SAlex Tomas */ 263764769240SAlex Tomas new_i_size = pos + copied; 2638ea51d132SAndrea Arcangeli if (copied && new_i_size > EXT4_I(inode)->i_disksize) { 26399c3569b5STao Ma if (ext4_has_inline_data(inode) || 26409c3569b5STao Ma ext4_da_should_update_i_disksize(page, end)) { 2641ee124d27SDmitry Monakhov ext4_update_i_disksize(inode, new_i_size); 2642cf17fea6SAneesh Kumar K.V /* We need to mark inode dirty even if 2643cf17fea6SAneesh Kumar K.V * new_i_size is less that inode->i_size 2644cf17fea6SAneesh Kumar K.V * bu greater than i_disksize.(hint delalloc) 2645cf17fea6SAneesh Kumar K.V */ 2646cf17fea6SAneesh Kumar K.V ext4_mark_inode_dirty(handle, inode); 2647632eaeabSMingming Cao } 2648632eaeabSMingming Cao } 26499c3569b5STao Ma 26509c3569b5STao Ma if (write_mode != CONVERT_INLINE_DATA && 26519c3569b5STao Ma ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) && 26529c3569b5STao Ma ext4_has_inline_data(inode)) 26539c3569b5STao Ma ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied, 26549c3569b5STao Ma page); 26559c3569b5STao Ma else 265664769240SAlex Tomas ret2 = generic_write_end(file, mapping, pos, len, copied, 265764769240SAlex Tomas page, fsdata); 26589c3569b5STao Ma 265964769240SAlex Tomas copied = ret2; 266064769240SAlex Tomas if (ret2 < 0) 266164769240SAlex Tomas ret = ret2; 266264769240SAlex Tomas ret2 = ext4_journal_stop(handle); 266364769240SAlex Tomas if (!ret) 266464769240SAlex Tomas ret = ret2; 266564769240SAlex Tomas 266664769240SAlex Tomas return ret ? ret : copied; 266764769240SAlex Tomas } 266864769240SAlex Tomas 2669d47992f8SLukas Czerner static void ext4_da_invalidatepage(struct page *page, unsigned int offset, 2670d47992f8SLukas Czerner unsigned int length) 267164769240SAlex Tomas { 267264769240SAlex Tomas /* 267364769240SAlex Tomas * Drop reserved blocks 267464769240SAlex Tomas */ 267564769240SAlex Tomas BUG_ON(!PageLocked(page)); 267664769240SAlex Tomas if (!page_has_buffers(page)) 267764769240SAlex Tomas goto out; 267864769240SAlex Tomas 2679ca99fdd2SLukas Czerner ext4_da_page_release_reservation(page, offset, length); 268064769240SAlex Tomas 268164769240SAlex Tomas out: 2682d47992f8SLukas Czerner ext4_invalidatepage(page, offset, length); 268364769240SAlex Tomas 268464769240SAlex Tomas return; 268564769240SAlex Tomas } 268664769240SAlex Tomas 2687ccd2506bSTheodore Ts'o /* 2688ccd2506bSTheodore Ts'o * Force all delayed allocation blocks to be allocated for a given inode. 2689ccd2506bSTheodore Ts'o */ 2690ccd2506bSTheodore Ts'o int ext4_alloc_da_blocks(struct inode *inode) 2691ccd2506bSTheodore Ts'o { 2692fb40ba0dSTheodore Ts'o trace_ext4_alloc_da_blocks(inode); 2693fb40ba0dSTheodore Ts'o 269471d4f7d0STheodore Ts'o if (!EXT4_I(inode)->i_reserved_data_blocks) 2695ccd2506bSTheodore Ts'o return 0; 2696ccd2506bSTheodore Ts'o 2697ccd2506bSTheodore Ts'o /* 2698ccd2506bSTheodore Ts'o * We do something simple for now. The filemap_flush() will 2699ccd2506bSTheodore Ts'o * also start triggering a write of the data blocks, which is 2700ccd2506bSTheodore Ts'o * not strictly speaking necessary (and for users of 2701ccd2506bSTheodore Ts'o * laptop_mode, not even desirable). However, to do otherwise 2702ccd2506bSTheodore Ts'o * would require replicating code paths in: 2703ccd2506bSTheodore Ts'o * 270420970ba6STheodore Ts'o * ext4_writepages() -> 2705ccd2506bSTheodore Ts'o * write_cache_pages() ---> (via passed in callback function) 2706ccd2506bSTheodore Ts'o * __mpage_da_writepage() --> 2707ccd2506bSTheodore Ts'o * mpage_add_bh_to_extent() 2708ccd2506bSTheodore Ts'o * mpage_da_map_blocks() 2709ccd2506bSTheodore Ts'o * 2710ccd2506bSTheodore Ts'o * The problem is that write_cache_pages(), located in 2711ccd2506bSTheodore Ts'o * mm/page-writeback.c, marks pages clean in preparation for 2712ccd2506bSTheodore Ts'o * doing I/O, which is not desirable if we're not planning on 2713ccd2506bSTheodore Ts'o * doing I/O at all. 2714ccd2506bSTheodore Ts'o * 2715ccd2506bSTheodore Ts'o * We could call write_cache_pages(), and then redirty all of 2716380cf090SWu Fengguang * the pages by calling redirty_page_for_writepage() but that 2717ccd2506bSTheodore Ts'o * would be ugly in the extreme. So instead we would need to 2718ccd2506bSTheodore Ts'o * replicate parts of the code in the above functions, 271925985edcSLucas De Marchi * simplifying them because we wouldn't actually intend to 2720ccd2506bSTheodore Ts'o * write out the pages, but rather only collect contiguous 2721ccd2506bSTheodore Ts'o * logical block extents, call the multi-block allocator, and 2722ccd2506bSTheodore Ts'o * then update the buffer heads with the block allocations. 2723ccd2506bSTheodore Ts'o * 2724ccd2506bSTheodore Ts'o * For now, though, we'll cheat by calling filemap_flush(), 2725ccd2506bSTheodore Ts'o * which will map the blocks, and start the I/O, but not 2726ccd2506bSTheodore Ts'o * actually wait for the I/O to complete. 2727ccd2506bSTheodore Ts'o */ 2728ccd2506bSTheodore Ts'o return filemap_flush(inode->i_mapping); 2729ccd2506bSTheodore Ts'o } 273064769240SAlex Tomas 273164769240SAlex Tomas /* 2732ac27a0ecSDave Kleikamp * bmap() is special. It gets used by applications such as lilo and by 2733ac27a0ecSDave Kleikamp * the swapper to find the on-disk block of a specific piece of data. 2734ac27a0ecSDave Kleikamp * 2735ac27a0ecSDave Kleikamp * Naturally, this is dangerous if the block concerned is still in the 2736617ba13bSMingming Cao * journal. If somebody makes a swapfile on an ext4 data-journaling 2737ac27a0ecSDave Kleikamp * filesystem and enables swap, then they may get a nasty shock when the 2738ac27a0ecSDave Kleikamp * data getting swapped to that swapfile suddenly gets overwritten by 2739ac27a0ecSDave Kleikamp * the original zero's written out previously to the journal and 2740ac27a0ecSDave Kleikamp * awaiting writeback in the kernel's buffer cache. 2741ac27a0ecSDave Kleikamp * 2742ac27a0ecSDave Kleikamp * So, if we see any bmap calls here on a modified, data-journaled file, 2743ac27a0ecSDave Kleikamp * take extra steps to flush any blocks which might be in the cache. 2744ac27a0ecSDave Kleikamp */ 2745617ba13bSMingming Cao static sector_t ext4_bmap(struct address_space *mapping, sector_t block) 2746ac27a0ecSDave Kleikamp { 2747ac27a0ecSDave Kleikamp struct inode *inode = mapping->host; 2748ac27a0ecSDave Kleikamp journal_t *journal; 2749ac27a0ecSDave Kleikamp int err; 2750ac27a0ecSDave Kleikamp 275146c7f254STao Ma /* 275246c7f254STao Ma * We can get here for an inline file via the FIBMAP ioctl 275346c7f254STao Ma */ 275446c7f254STao Ma if (ext4_has_inline_data(inode)) 275546c7f254STao Ma return 0; 275646c7f254STao Ma 275764769240SAlex Tomas if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) && 275864769240SAlex Tomas test_opt(inode->i_sb, DELALLOC)) { 275964769240SAlex Tomas /* 276064769240SAlex Tomas * With delalloc we want to sync the file 276164769240SAlex Tomas * so that we can make sure we allocate 276264769240SAlex Tomas * blocks for file 276364769240SAlex Tomas */ 276464769240SAlex Tomas filemap_write_and_wait(mapping); 276564769240SAlex Tomas } 276664769240SAlex Tomas 276719f5fb7aSTheodore Ts'o if (EXT4_JOURNAL(inode) && 276819f5fb7aSTheodore Ts'o ext4_test_inode_state(inode, EXT4_STATE_JDATA)) { 2769ac27a0ecSDave Kleikamp /* 2770ac27a0ecSDave Kleikamp * This is a REALLY heavyweight approach, but the use of 2771ac27a0ecSDave Kleikamp * bmap on dirty files is expected to be extremely rare: 2772ac27a0ecSDave Kleikamp * only if we run lilo or swapon on a freshly made file 2773ac27a0ecSDave Kleikamp * do we expect this to happen. 2774ac27a0ecSDave Kleikamp * 2775ac27a0ecSDave Kleikamp * (bmap requires CAP_SYS_RAWIO so this does not 2776ac27a0ecSDave Kleikamp * represent an unprivileged user DOS attack --- we'd be 2777ac27a0ecSDave Kleikamp * in trouble if mortal users could trigger this path at 2778ac27a0ecSDave Kleikamp * will.) 2779ac27a0ecSDave Kleikamp * 2780617ba13bSMingming Cao * NB. EXT4_STATE_JDATA is not set on files other than 2781ac27a0ecSDave Kleikamp * regular files. If somebody wants to bmap a directory 2782ac27a0ecSDave Kleikamp * or symlink and gets confused because the buffer 2783ac27a0ecSDave Kleikamp * hasn't yet been flushed to disk, they deserve 2784ac27a0ecSDave Kleikamp * everything they get. 2785ac27a0ecSDave Kleikamp */ 2786ac27a0ecSDave Kleikamp 278719f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_JDATA); 2788617ba13bSMingming Cao journal = EXT4_JOURNAL(inode); 2789dab291afSMingming Cao jbd2_journal_lock_updates(journal); 2790dab291afSMingming Cao err = jbd2_journal_flush(journal); 2791dab291afSMingming Cao jbd2_journal_unlock_updates(journal); 2792ac27a0ecSDave Kleikamp 2793ac27a0ecSDave Kleikamp if (err) 2794ac27a0ecSDave Kleikamp return 0; 2795ac27a0ecSDave Kleikamp } 2796ac27a0ecSDave Kleikamp 2797617ba13bSMingming Cao return generic_block_bmap(mapping, block, ext4_get_block); 2798ac27a0ecSDave Kleikamp } 2799ac27a0ecSDave Kleikamp 2800617ba13bSMingming Cao static int ext4_readpage(struct file *file, struct page *page) 2801ac27a0ecSDave Kleikamp { 280246c7f254STao Ma int ret = -EAGAIN; 280346c7f254STao Ma struct inode *inode = page->mapping->host; 280446c7f254STao Ma 28050562e0baSJiaying Zhang trace_ext4_readpage(page); 280646c7f254STao Ma 280746c7f254STao Ma if (ext4_has_inline_data(inode)) 280846c7f254STao Ma ret = ext4_readpage_inline(inode, page); 280946c7f254STao Ma 281046c7f254STao Ma if (ret == -EAGAIN) 2811617ba13bSMingming Cao return mpage_readpage(page, ext4_get_block); 281246c7f254STao Ma 281346c7f254STao Ma return ret; 2814ac27a0ecSDave Kleikamp } 2815ac27a0ecSDave Kleikamp 2816ac27a0ecSDave Kleikamp static int 2817617ba13bSMingming Cao ext4_readpages(struct file *file, struct address_space *mapping, 2818ac27a0ecSDave Kleikamp struct list_head *pages, unsigned nr_pages) 2819ac27a0ecSDave Kleikamp { 282046c7f254STao Ma struct inode *inode = mapping->host; 282146c7f254STao Ma 282246c7f254STao Ma /* If the file has inline data, no need to do readpages. */ 282346c7f254STao Ma if (ext4_has_inline_data(inode)) 282446c7f254STao Ma return 0; 282546c7f254STao Ma 2826617ba13bSMingming Cao return mpage_readpages(mapping, pages, nr_pages, ext4_get_block); 2827ac27a0ecSDave Kleikamp } 2828ac27a0ecSDave Kleikamp 2829d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset, 2830d47992f8SLukas Czerner unsigned int length) 2831ac27a0ecSDave Kleikamp { 2832ca99fdd2SLukas Czerner trace_ext4_invalidatepage(page, offset, length); 28330562e0baSJiaying Zhang 28344520fb3cSJan Kara /* No journalling happens on data buffers when this function is used */ 28354520fb3cSJan Kara WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page))); 28364520fb3cSJan Kara 2837ca99fdd2SLukas Czerner block_invalidatepage(page, offset, length); 28384520fb3cSJan Kara } 28394520fb3cSJan Kara 284053e87268SJan Kara static int __ext4_journalled_invalidatepage(struct page *page, 2841ca99fdd2SLukas Czerner unsigned int offset, 2842ca99fdd2SLukas Czerner unsigned int length) 28434520fb3cSJan Kara { 28444520fb3cSJan Kara journal_t *journal = EXT4_JOURNAL(page->mapping->host); 28454520fb3cSJan Kara 2846ca99fdd2SLukas Czerner trace_ext4_journalled_invalidatepage(page, offset, length); 28474520fb3cSJan Kara 2848744692dcSJiaying Zhang /* 2849ac27a0ecSDave Kleikamp * If it's a full truncate we just forget about the pending dirtying 2850ac27a0ecSDave Kleikamp */ 2851ca99fdd2SLukas Czerner if (offset == 0 && length == PAGE_CACHE_SIZE) 2852ac27a0ecSDave Kleikamp ClearPageChecked(page); 2853ac27a0ecSDave Kleikamp 2854ca99fdd2SLukas Czerner return jbd2_journal_invalidatepage(journal, page, offset, length); 285553e87268SJan Kara } 285653e87268SJan Kara 285753e87268SJan Kara /* Wrapper for aops... */ 285853e87268SJan Kara static void ext4_journalled_invalidatepage(struct page *page, 2859d47992f8SLukas Czerner unsigned int offset, 2860d47992f8SLukas Czerner unsigned int length) 286153e87268SJan Kara { 2862ca99fdd2SLukas Czerner WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0); 2863ac27a0ecSDave Kleikamp } 2864ac27a0ecSDave Kleikamp 2865617ba13bSMingming Cao static int ext4_releasepage(struct page *page, gfp_t wait) 2866ac27a0ecSDave Kleikamp { 2867617ba13bSMingming Cao journal_t *journal = EXT4_JOURNAL(page->mapping->host); 2868ac27a0ecSDave Kleikamp 28690562e0baSJiaying Zhang trace_ext4_releasepage(page); 28700562e0baSJiaying Zhang 2871e1c36595SJan Kara /* Page has dirty journalled data -> cannot release */ 2872e1c36595SJan Kara if (PageChecked(page)) 2873ac27a0ecSDave Kleikamp return 0; 28740390131bSFrank Mayhar if (journal) 2875dab291afSMingming Cao return jbd2_journal_try_to_free_buffers(journal, page, wait); 28760390131bSFrank Mayhar else 28770390131bSFrank Mayhar return try_to_free_buffers(page); 2878ac27a0ecSDave Kleikamp } 2879ac27a0ecSDave Kleikamp 2880ac27a0ecSDave Kleikamp /* 28812ed88685STheodore Ts'o * ext4_get_block used when preparing for a DIO write or buffer write. 28822ed88685STheodore Ts'o * We allocate an uinitialized extent if blocks haven't been allocated. 28832ed88685STheodore Ts'o * The extent will be converted to initialized after the IO is complete. 28842ed88685STheodore Ts'o */ 2885f19d5870STao Ma int ext4_get_block_write(struct inode *inode, sector_t iblock, 28864c0425ffSMingming Cao struct buffer_head *bh_result, int create) 28874c0425ffSMingming Cao { 2888c7064ef1SJiaying Zhang ext4_debug("ext4_get_block_write: inode %lu, create flag %d\n", 28898d5d02e6SMingming Cao inode->i_ino, create); 28902ed88685STheodore Ts'o return _ext4_get_block(inode, iblock, bh_result, 28912ed88685STheodore Ts'o EXT4_GET_BLOCKS_IO_CREATE_EXT); 28924c0425ffSMingming Cao } 28934c0425ffSMingming Cao 2894729f52c6SZheng Liu static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock, 28958b0f165fSAnatol Pomozov struct buffer_head *bh_result, int create) 2896729f52c6SZheng Liu { 28978b0f165fSAnatol Pomozov ext4_debug("ext4_get_block_write_nolock: inode %lu, create flag %d\n", 28988b0f165fSAnatol Pomozov inode->i_ino, create); 28998b0f165fSAnatol Pomozov return _ext4_get_block(inode, iblock, bh_result, 29008b0f165fSAnatol Pomozov EXT4_GET_BLOCKS_NO_LOCK); 2901729f52c6SZheng Liu } 2902729f52c6SZheng Liu 29034c0425ffSMingming Cao static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset, 29047b7a8665SChristoph Hellwig ssize_t size, void *private) 29054c0425ffSMingming Cao { 29064c0425ffSMingming Cao ext4_io_end_t *io_end = iocb->private; 29074c0425ffSMingming Cao 290897a851edSJan Kara /* if not async direct IO just return */ 29097b7a8665SChristoph Hellwig if (!io_end) 291097a851edSJan Kara return; 29114b70df18SMingming 29128d5d02e6SMingming Cao ext_debug("ext4_end_io_dio(): io_end 0x%p " 2913ace36ad4SJoe Perches "for inode %lu, iocb 0x%p, offset %llu, size %zd\n", 29148d5d02e6SMingming Cao iocb->private, io_end->inode->i_ino, iocb, offset, 29158d5d02e6SMingming Cao size); 29168d5d02e6SMingming Cao 2917b5a7e970STheodore Ts'o iocb->private = NULL; 29184c0425ffSMingming Cao io_end->offset = offset; 29194c0425ffSMingming Cao io_end->size = size; 29207b7a8665SChristoph Hellwig ext4_put_io_end(io_end); 29214c0425ffSMingming Cao } 2922c7064ef1SJiaying Zhang 29234c0425ffSMingming Cao /* 29244c0425ffSMingming Cao * For ext4 extent files, ext4 will do direct-io write to holes, 29254c0425ffSMingming Cao * preallocated extents, and those write extend the file, no need to 29264c0425ffSMingming Cao * fall back to buffered IO. 29274c0425ffSMingming Cao * 2928556615dcSLukas Czerner * For holes, we fallocate those blocks, mark them as unwritten 292969c499d1STheodore Ts'o * If those blocks were preallocated, we mark sure they are split, but 2930556615dcSLukas Czerner * still keep the range to write as unwritten. 29314c0425ffSMingming Cao * 293269c499d1STheodore Ts'o * The unwritten extents will be converted to written when DIO is completed. 29338d5d02e6SMingming Cao * For async direct IO, since the IO may still pending when return, we 293425985edcSLucas De Marchi * set up an end_io call back function, which will do the conversion 29358d5d02e6SMingming Cao * when async direct IO completed. 29364c0425ffSMingming Cao * 29374c0425ffSMingming Cao * If the O_DIRECT write will extend the file then add this inode to the 29384c0425ffSMingming Cao * orphan list. So recovery will truncate it back to the original size 29394c0425ffSMingming Cao * if the machine crashes during the write. 29404c0425ffSMingming Cao * 29414c0425ffSMingming Cao */ 29424c0425ffSMingming Cao static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb, 294316b1f05dSAl Viro struct iov_iter *iter, loff_t offset) 29444c0425ffSMingming Cao { 29454c0425ffSMingming Cao struct file *file = iocb->ki_filp; 29464c0425ffSMingming Cao struct inode *inode = file->f_mapping->host; 29474c0425ffSMingming Cao ssize_t ret; 2948a6cbcd4aSAl Viro size_t count = iov_iter_count(iter); 2949729f52c6SZheng Liu int overwrite = 0; 29508b0f165fSAnatol Pomozov get_block_t *get_block_func = NULL; 29518b0f165fSAnatol Pomozov int dio_flags = 0; 295269c499d1STheodore Ts'o loff_t final_size = offset + count; 295397a851edSJan Kara ext4_io_end_t *io_end = NULL; 295469c499d1STheodore Ts'o 295569c499d1STheodore Ts'o /* Use the old path for reads and writes beyond i_size. */ 295669c499d1STheodore Ts'o if (rw != WRITE || final_size > inode->i_size) 295716b1f05dSAl Viro return ext4_ind_direct_IO(rw, iocb, iter, offset); 2958729f52c6SZheng Liu 29594bd809dbSZheng Liu BUG_ON(iocb->private == NULL); 29604bd809dbSZheng Liu 2961e8340395SJan Kara /* 2962e8340395SJan Kara * Make all waiters for direct IO properly wait also for extent 2963e8340395SJan Kara * conversion. This also disallows race between truncate() and 2964e8340395SJan Kara * overwrite DIO as i_dio_count needs to be incremented under i_mutex. 2965e8340395SJan Kara */ 2966e8340395SJan Kara if (rw == WRITE) 2967e8340395SJan Kara atomic_inc(&inode->i_dio_count); 2968e8340395SJan Kara 29694bd809dbSZheng Liu /* If we do a overwrite dio, i_mutex locking can be released */ 29704bd809dbSZheng Liu overwrite = *((int *)iocb->private); 29714bd809dbSZheng Liu 29724bd809dbSZheng Liu if (overwrite) { 29734bd809dbSZheng Liu down_read(&EXT4_I(inode)->i_data_sem); 29744bd809dbSZheng Liu mutex_unlock(&inode->i_mutex); 29754bd809dbSZheng Liu } 29764bd809dbSZheng Liu 29774c0425ffSMingming Cao /* 29788d5d02e6SMingming Cao * We could direct write to holes and fallocate. 29798d5d02e6SMingming Cao * 298069c499d1STheodore Ts'o * Allocated blocks to fill the hole are marked as 2981556615dcSLukas Czerner * unwritten to prevent parallel buffered read to expose 298269c499d1STheodore Ts'o * the stale data before DIO complete the data IO. 29838d5d02e6SMingming Cao * 298469c499d1STheodore Ts'o * As to previously fallocated extents, ext4 get_block will 298569c499d1STheodore Ts'o * just simply mark the buffer mapped but still keep the 2986556615dcSLukas Czerner * extents unwritten. 29874c0425ffSMingming Cao * 298869c499d1STheodore Ts'o * For non AIO case, we will convert those unwritten extents 29898d5d02e6SMingming Cao * to written after return back from blockdev_direct_IO. 29904c0425ffSMingming Cao * 299169c499d1STheodore Ts'o * For async DIO, the conversion needs to be deferred when the 299269c499d1STheodore Ts'o * IO is completed. The ext4 end_io callback function will be 299369c499d1STheodore Ts'o * called to take care of the conversion work. Here for async 299469c499d1STheodore Ts'o * case, we allocate an io_end structure to hook to the iocb. 29954c0425ffSMingming Cao */ 29968d5d02e6SMingming Cao iocb->private = NULL; 2997f45ee3a1SDmitry Monakhov ext4_inode_aio_set(inode, NULL); 29988d5d02e6SMingming Cao if (!is_sync_kiocb(iocb)) { 299997a851edSJan Kara io_end = ext4_init_io_end(inode, GFP_NOFS); 30004bd809dbSZheng Liu if (!io_end) { 30014bd809dbSZheng Liu ret = -ENOMEM; 30024bd809dbSZheng Liu goto retake_lock; 30034bd809dbSZheng Liu } 300497a851edSJan Kara /* 300597a851edSJan Kara * Grab reference for DIO. Will be dropped in ext4_end_io_dio() 300697a851edSJan Kara */ 300797a851edSJan Kara iocb->private = ext4_get_io_end(io_end); 30088d5d02e6SMingming Cao /* 300969c499d1STheodore Ts'o * we save the io structure for current async direct 301069c499d1STheodore Ts'o * IO, so that later ext4_map_blocks() could flag the 301169c499d1STheodore Ts'o * io structure whether there is a unwritten extents 301269c499d1STheodore Ts'o * needs to be converted when IO is completed. 30138d5d02e6SMingming Cao */ 3014f45ee3a1SDmitry Monakhov ext4_inode_aio_set(inode, io_end); 30158d5d02e6SMingming Cao } 30168d5d02e6SMingming Cao 30178b0f165fSAnatol Pomozov if (overwrite) { 30188b0f165fSAnatol Pomozov get_block_func = ext4_get_block_write_nolock; 30198b0f165fSAnatol Pomozov } else { 30208b0f165fSAnatol Pomozov get_block_func = ext4_get_block_write; 30218b0f165fSAnatol Pomozov dio_flags = DIO_LOCKING; 30228b0f165fSAnatol Pomozov } 3023729f52c6SZheng Liu ret = __blockdev_direct_IO(rw, iocb, inode, 302431b14039SAl Viro inode->i_sb->s_bdev, iter, 302531b14039SAl Viro offset, 30268b0f165fSAnatol Pomozov get_block_func, 3027729f52c6SZheng Liu ext4_end_io_dio, 3028729f52c6SZheng Liu NULL, 30298b0f165fSAnatol Pomozov dio_flags); 30308b0f165fSAnatol Pomozov 30314eec708dSJan Kara /* 303297a851edSJan Kara * Put our reference to io_end. This can free the io_end structure e.g. 303397a851edSJan Kara * in sync IO case or in case of error. It can even perform extent 303497a851edSJan Kara * conversion if all bios we submitted finished before we got here. 303597a851edSJan Kara * Note that in that case iocb->private can be already set to NULL 303697a851edSJan Kara * here. 30374eec708dSJan Kara */ 303897a851edSJan Kara if (io_end) { 303997a851edSJan Kara ext4_inode_aio_set(inode, NULL); 304097a851edSJan Kara ext4_put_io_end(io_end); 304197a851edSJan Kara /* 304297a851edSJan Kara * When no IO was submitted ext4_end_io_dio() was not 304397a851edSJan Kara * called so we have to put iocb's reference. 304497a851edSJan Kara */ 304597a851edSJan Kara if (ret <= 0 && ret != -EIOCBQUEUED && iocb->private) { 304697a851edSJan Kara WARN_ON(iocb->private != io_end); 304797a851edSJan Kara WARN_ON(io_end->flag & EXT4_IO_END_UNWRITTEN); 304897a851edSJan Kara ext4_put_io_end(io_end); 30498d5d02e6SMingming Cao iocb->private = NULL; 305097a851edSJan Kara } 305197a851edSJan Kara } 305297a851edSJan Kara if (ret > 0 && !overwrite && ext4_test_inode_state(inode, 30535f524950SMingming EXT4_STATE_DIO_UNWRITTEN)) { 3054109f5565SMingming int err; 30558d5d02e6SMingming Cao /* 30568d5d02e6SMingming Cao * for non AIO case, since the IO is already 305725985edcSLucas De Marchi * completed, we could do the conversion right here 30588d5d02e6SMingming Cao */ 30596b523df4SJan Kara err = ext4_convert_unwritten_extents(NULL, inode, 30608d5d02e6SMingming Cao offset, ret); 3061109f5565SMingming if (err < 0) 3062109f5565SMingming ret = err; 306319f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN); 3064109f5565SMingming } 30654bd809dbSZheng Liu 30664bd809dbSZheng Liu retake_lock: 3067e8340395SJan Kara if (rw == WRITE) 3068e8340395SJan Kara inode_dio_done(inode); 30694bd809dbSZheng Liu /* take i_mutex locking again if we do a ovewrite dio */ 30704bd809dbSZheng Liu if (overwrite) { 30714bd809dbSZheng Liu up_read(&EXT4_I(inode)->i_data_sem); 30724bd809dbSZheng Liu mutex_lock(&inode->i_mutex); 30734bd809dbSZheng Liu } 30744bd809dbSZheng Liu 30754c0425ffSMingming Cao return ret; 30764c0425ffSMingming Cao } 30778d5d02e6SMingming Cao 30784c0425ffSMingming Cao static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb, 3079d8d3d94bSAl Viro struct iov_iter *iter, loff_t offset) 30804c0425ffSMingming Cao { 30814c0425ffSMingming Cao struct file *file = iocb->ki_filp; 30824c0425ffSMingming Cao struct inode *inode = file->f_mapping->host; 3083a6cbcd4aSAl Viro size_t count = iov_iter_count(iter); 30840562e0baSJiaying Zhang ssize_t ret; 30854c0425ffSMingming Cao 308684ebd795STheodore Ts'o /* 308784ebd795STheodore Ts'o * If we are doing data journalling we don't support O_DIRECT 308884ebd795STheodore Ts'o */ 308984ebd795STheodore Ts'o if (ext4_should_journal_data(inode)) 309084ebd795STheodore Ts'o return 0; 309184ebd795STheodore Ts'o 309246c7f254STao Ma /* Let buffer I/O handle the inline data case. */ 309346c7f254STao Ma if (ext4_has_inline_data(inode)) 309446c7f254STao Ma return 0; 309546c7f254STao Ma 3096a6cbcd4aSAl Viro trace_ext4_direct_IO_enter(inode, offset, count, rw); 309712e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 309816b1f05dSAl Viro ret = ext4_ext_direct_IO(rw, iocb, iter, offset); 30990562e0baSJiaying Zhang else 310016b1f05dSAl Viro ret = ext4_ind_direct_IO(rw, iocb, iter, offset); 3101a6cbcd4aSAl Viro trace_ext4_direct_IO_exit(inode, offset, count, rw, ret); 31020562e0baSJiaying Zhang return ret; 31034c0425ffSMingming Cao } 31044c0425ffSMingming Cao 3105ac27a0ecSDave Kleikamp /* 3106617ba13bSMingming Cao * Pages can be marked dirty completely asynchronously from ext4's journalling 3107ac27a0ecSDave Kleikamp * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do 3108ac27a0ecSDave Kleikamp * much here because ->set_page_dirty is called under VFS locks. The page is 3109ac27a0ecSDave Kleikamp * not necessarily locked. 3110ac27a0ecSDave Kleikamp * 3111ac27a0ecSDave Kleikamp * We cannot just dirty the page and leave attached buffers clean, because the 3112ac27a0ecSDave Kleikamp * buffers' dirty state is "definitive". We cannot just set the buffers dirty 3113ac27a0ecSDave Kleikamp * or jbddirty because all the journalling code will explode. 3114ac27a0ecSDave Kleikamp * 3115ac27a0ecSDave Kleikamp * So what we do is to mark the page "pending dirty" and next time writepage 3116ac27a0ecSDave Kleikamp * is called, propagate that into the buffers appropriately. 3117ac27a0ecSDave Kleikamp */ 3118617ba13bSMingming Cao static int ext4_journalled_set_page_dirty(struct page *page) 3119ac27a0ecSDave Kleikamp { 3120ac27a0ecSDave Kleikamp SetPageChecked(page); 3121ac27a0ecSDave Kleikamp return __set_page_dirty_nobuffers(page); 3122ac27a0ecSDave Kleikamp } 3123ac27a0ecSDave Kleikamp 312474d553aaSTheodore Ts'o static const struct address_space_operations ext4_aops = { 3125617ba13bSMingming Cao .readpage = ext4_readpage, 3126617ba13bSMingming Cao .readpages = ext4_readpages, 312743ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 312820970ba6STheodore Ts'o .writepages = ext4_writepages, 3129bfc1af65SNick Piggin .write_begin = ext4_write_begin, 313074d553aaSTheodore Ts'o .write_end = ext4_write_end, 3131617ba13bSMingming Cao .bmap = ext4_bmap, 3132617ba13bSMingming Cao .invalidatepage = ext4_invalidatepage, 3133617ba13bSMingming Cao .releasepage = ext4_releasepage, 3134617ba13bSMingming Cao .direct_IO = ext4_direct_IO, 3135ac27a0ecSDave Kleikamp .migratepage = buffer_migrate_page, 31368ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3137aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 3138ac27a0ecSDave Kleikamp }; 3139ac27a0ecSDave Kleikamp 3140617ba13bSMingming Cao static const struct address_space_operations ext4_journalled_aops = { 3141617ba13bSMingming Cao .readpage = ext4_readpage, 3142617ba13bSMingming Cao .readpages = ext4_readpages, 314343ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 314420970ba6STheodore Ts'o .writepages = ext4_writepages, 3145bfc1af65SNick Piggin .write_begin = ext4_write_begin, 3146bfc1af65SNick Piggin .write_end = ext4_journalled_write_end, 3147617ba13bSMingming Cao .set_page_dirty = ext4_journalled_set_page_dirty, 3148617ba13bSMingming Cao .bmap = ext4_bmap, 31494520fb3cSJan Kara .invalidatepage = ext4_journalled_invalidatepage, 3150617ba13bSMingming Cao .releasepage = ext4_releasepage, 315184ebd795STheodore Ts'o .direct_IO = ext4_direct_IO, 31528ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3153aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 3154ac27a0ecSDave Kleikamp }; 3155ac27a0ecSDave Kleikamp 315664769240SAlex Tomas static const struct address_space_operations ext4_da_aops = { 315764769240SAlex Tomas .readpage = ext4_readpage, 315864769240SAlex Tomas .readpages = ext4_readpages, 315943ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 316020970ba6STheodore Ts'o .writepages = ext4_writepages, 316164769240SAlex Tomas .write_begin = ext4_da_write_begin, 316264769240SAlex Tomas .write_end = ext4_da_write_end, 316364769240SAlex Tomas .bmap = ext4_bmap, 316464769240SAlex Tomas .invalidatepage = ext4_da_invalidatepage, 316564769240SAlex Tomas .releasepage = ext4_releasepage, 316664769240SAlex Tomas .direct_IO = ext4_direct_IO, 316764769240SAlex Tomas .migratepage = buffer_migrate_page, 31688ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3169aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 317064769240SAlex Tomas }; 317164769240SAlex Tomas 3172617ba13bSMingming Cao void ext4_set_aops(struct inode *inode) 3173ac27a0ecSDave Kleikamp { 31743d2b1582SLukas Czerner switch (ext4_inode_journal_mode(inode)) { 31753d2b1582SLukas Czerner case EXT4_INODE_ORDERED_DATA_MODE: 317674d553aaSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_ORDERED_MODE); 31773d2b1582SLukas Czerner break; 31783d2b1582SLukas Czerner case EXT4_INODE_WRITEBACK_DATA_MODE: 317974d553aaSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_ORDERED_MODE); 31803d2b1582SLukas Czerner break; 31813d2b1582SLukas Czerner case EXT4_INODE_JOURNAL_DATA_MODE: 3182617ba13bSMingming Cao inode->i_mapping->a_ops = &ext4_journalled_aops; 318374d553aaSTheodore Ts'o return; 31843d2b1582SLukas Czerner default: 31853d2b1582SLukas Czerner BUG(); 31863d2b1582SLukas Czerner } 318774d553aaSTheodore Ts'o if (test_opt(inode->i_sb, DELALLOC)) 318874d553aaSTheodore Ts'o inode->i_mapping->a_ops = &ext4_da_aops; 318974d553aaSTheodore Ts'o else 319074d553aaSTheodore Ts'o inode->i_mapping->a_ops = &ext4_aops; 3191ac27a0ecSDave Kleikamp } 3192ac27a0ecSDave Kleikamp 3193d863dc36SLukas Czerner /* 3194d863dc36SLukas Czerner * ext4_block_zero_page_range() zeros out a mapping of length 'length' 3195d863dc36SLukas Czerner * starting from file offset 'from'. The range to be zero'd must 3196d863dc36SLukas Czerner * be contained with in one block. If the specified range exceeds 3197d863dc36SLukas Czerner * the end of the block it will be shortened to end of the block 3198d863dc36SLukas Czerner * that cooresponds to 'from' 3199d863dc36SLukas Czerner */ 320094350ab5SMatthew Wilcox static int ext4_block_zero_page_range(handle_t *handle, 3201d863dc36SLukas Czerner struct address_space *mapping, loff_t from, loff_t length) 3202d863dc36SLukas Czerner { 3203d863dc36SLukas Czerner ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT; 3204d863dc36SLukas Czerner unsigned offset = from & (PAGE_CACHE_SIZE-1); 3205d863dc36SLukas Czerner unsigned blocksize, max, pos; 3206d863dc36SLukas Czerner ext4_lblk_t iblock; 3207d863dc36SLukas Czerner struct inode *inode = mapping->host; 3208d863dc36SLukas Czerner struct buffer_head *bh; 3209d863dc36SLukas Czerner struct page *page; 3210d863dc36SLukas Czerner int err = 0; 3211d863dc36SLukas Czerner 3212d863dc36SLukas Czerner page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT, 3213d863dc36SLukas Czerner mapping_gfp_mask(mapping) & ~__GFP_FS); 3214d863dc36SLukas Czerner if (!page) 3215d863dc36SLukas Czerner return -ENOMEM; 3216d863dc36SLukas Czerner 3217d863dc36SLukas Czerner blocksize = inode->i_sb->s_blocksize; 3218d863dc36SLukas Czerner max = blocksize - (offset & (blocksize - 1)); 3219d863dc36SLukas Czerner 3220d863dc36SLukas Czerner /* 3221d863dc36SLukas Czerner * correct length if it does not fall between 3222d863dc36SLukas Czerner * 'from' and the end of the block 3223d863dc36SLukas Czerner */ 3224d863dc36SLukas Czerner if (length > max || length < 0) 3225d863dc36SLukas Czerner length = max; 3226d863dc36SLukas Czerner 3227d863dc36SLukas Czerner iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits); 3228d863dc36SLukas Czerner 3229d863dc36SLukas Czerner if (!page_has_buffers(page)) 3230d863dc36SLukas Czerner create_empty_buffers(page, blocksize, 0); 3231d863dc36SLukas Czerner 3232d863dc36SLukas Czerner /* Find the buffer that contains "offset" */ 3233d863dc36SLukas Czerner bh = page_buffers(page); 3234d863dc36SLukas Czerner pos = blocksize; 3235d863dc36SLukas Czerner while (offset >= pos) { 3236d863dc36SLukas Czerner bh = bh->b_this_page; 3237d863dc36SLukas Czerner iblock++; 3238d863dc36SLukas Czerner pos += blocksize; 3239d863dc36SLukas Czerner } 3240d863dc36SLukas Czerner if (buffer_freed(bh)) { 3241d863dc36SLukas Czerner BUFFER_TRACE(bh, "freed: skip"); 3242d863dc36SLukas Czerner goto unlock; 3243d863dc36SLukas Czerner } 3244d863dc36SLukas Czerner if (!buffer_mapped(bh)) { 3245d863dc36SLukas Czerner BUFFER_TRACE(bh, "unmapped"); 3246d863dc36SLukas Czerner ext4_get_block(inode, iblock, bh, 0); 3247d863dc36SLukas Czerner /* unmapped? It's a hole - nothing to do */ 3248d863dc36SLukas Czerner if (!buffer_mapped(bh)) { 3249d863dc36SLukas Czerner BUFFER_TRACE(bh, "still unmapped"); 3250d863dc36SLukas Czerner goto unlock; 3251d863dc36SLukas Czerner } 3252d863dc36SLukas Czerner } 3253d863dc36SLukas Czerner 3254d863dc36SLukas Czerner /* Ok, it's mapped. Make sure it's up-to-date */ 3255d863dc36SLukas Czerner if (PageUptodate(page)) 3256d863dc36SLukas Czerner set_buffer_uptodate(bh); 3257d863dc36SLukas Czerner 3258d863dc36SLukas Czerner if (!buffer_uptodate(bh)) { 3259d863dc36SLukas Czerner err = -EIO; 3260d863dc36SLukas Czerner ll_rw_block(READ, 1, &bh); 3261d863dc36SLukas Czerner wait_on_buffer(bh); 3262d863dc36SLukas Czerner /* Uhhuh. Read error. Complain and punt. */ 3263d863dc36SLukas Czerner if (!buffer_uptodate(bh)) 3264d863dc36SLukas Czerner goto unlock; 3265d863dc36SLukas Czerner } 3266d863dc36SLukas Czerner if (ext4_should_journal_data(inode)) { 3267d863dc36SLukas Czerner BUFFER_TRACE(bh, "get write access"); 3268d863dc36SLukas Czerner err = ext4_journal_get_write_access(handle, bh); 3269d863dc36SLukas Czerner if (err) 3270d863dc36SLukas Czerner goto unlock; 3271d863dc36SLukas Czerner } 3272d863dc36SLukas Czerner zero_user(page, offset, length); 3273d863dc36SLukas Czerner BUFFER_TRACE(bh, "zeroed end of block"); 3274d863dc36SLukas Czerner 3275d863dc36SLukas Czerner if (ext4_should_journal_data(inode)) { 3276d863dc36SLukas Czerner err = ext4_handle_dirty_metadata(handle, inode, bh); 32770713ed0cSLukas Czerner } else { 3278353eefd3Sjon ernst err = 0; 3279d863dc36SLukas Czerner mark_buffer_dirty(bh); 32800713ed0cSLukas Czerner if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) 32810713ed0cSLukas Czerner err = ext4_jbd2_file_inode(handle, inode); 32820713ed0cSLukas Czerner } 3283d863dc36SLukas Czerner 3284d863dc36SLukas Czerner unlock: 3285d863dc36SLukas Czerner unlock_page(page); 3286d863dc36SLukas Czerner page_cache_release(page); 3287d863dc36SLukas Czerner return err; 3288d863dc36SLukas Czerner } 3289d863dc36SLukas Czerner 329094350ab5SMatthew Wilcox /* 329194350ab5SMatthew Wilcox * ext4_block_truncate_page() zeroes out a mapping from file offset `from' 329294350ab5SMatthew Wilcox * up to the end of the block which corresponds to `from'. 329394350ab5SMatthew Wilcox * This required during truncate. We need to physically zero the tail end 329494350ab5SMatthew Wilcox * of that block so it doesn't yield old data if the file is later grown. 329594350ab5SMatthew Wilcox */ 3296c197855eSStephen Hemminger static int ext4_block_truncate_page(handle_t *handle, 329794350ab5SMatthew Wilcox struct address_space *mapping, loff_t from) 329894350ab5SMatthew Wilcox { 329994350ab5SMatthew Wilcox unsigned offset = from & (PAGE_CACHE_SIZE-1); 330094350ab5SMatthew Wilcox unsigned length; 330194350ab5SMatthew Wilcox unsigned blocksize; 330294350ab5SMatthew Wilcox struct inode *inode = mapping->host; 330394350ab5SMatthew Wilcox 330494350ab5SMatthew Wilcox blocksize = inode->i_sb->s_blocksize; 330594350ab5SMatthew Wilcox length = blocksize - (offset & (blocksize - 1)); 330694350ab5SMatthew Wilcox 330794350ab5SMatthew Wilcox return ext4_block_zero_page_range(handle, mapping, from, length); 330894350ab5SMatthew Wilcox } 330994350ab5SMatthew Wilcox 3310a87dd18cSLukas Czerner int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode, 3311a87dd18cSLukas Czerner loff_t lstart, loff_t length) 3312a87dd18cSLukas Czerner { 3313a87dd18cSLukas Czerner struct super_block *sb = inode->i_sb; 3314a87dd18cSLukas Czerner struct address_space *mapping = inode->i_mapping; 3315e1be3a92SLukas Czerner unsigned partial_start, partial_end; 3316a87dd18cSLukas Czerner ext4_fsblk_t start, end; 3317a87dd18cSLukas Czerner loff_t byte_end = (lstart + length - 1); 3318a87dd18cSLukas Czerner int err = 0; 3319a87dd18cSLukas Czerner 3320e1be3a92SLukas Czerner partial_start = lstart & (sb->s_blocksize - 1); 3321e1be3a92SLukas Czerner partial_end = byte_end & (sb->s_blocksize - 1); 3322e1be3a92SLukas Czerner 3323a87dd18cSLukas Czerner start = lstart >> sb->s_blocksize_bits; 3324a87dd18cSLukas Czerner end = byte_end >> sb->s_blocksize_bits; 3325a87dd18cSLukas Czerner 3326a87dd18cSLukas Czerner /* Handle partial zero within the single block */ 3327e1be3a92SLukas Czerner if (start == end && 3328e1be3a92SLukas Czerner (partial_start || (partial_end != sb->s_blocksize - 1))) { 3329a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3330a87dd18cSLukas Czerner lstart, length); 3331a87dd18cSLukas Czerner return err; 3332a87dd18cSLukas Czerner } 3333a87dd18cSLukas Czerner /* Handle partial zero out on the start of the range */ 3334e1be3a92SLukas Czerner if (partial_start) { 3335a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3336a87dd18cSLukas Czerner lstart, sb->s_blocksize); 3337a87dd18cSLukas Czerner if (err) 3338a87dd18cSLukas Czerner return err; 3339a87dd18cSLukas Czerner } 3340a87dd18cSLukas Czerner /* Handle partial zero out on the end of the range */ 3341e1be3a92SLukas Czerner if (partial_end != sb->s_blocksize - 1) 3342a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3343e1be3a92SLukas Czerner byte_end - partial_end, 3344e1be3a92SLukas Czerner partial_end + 1); 3345a87dd18cSLukas Czerner return err; 3346a87dd18cSLukas Czerner } 3347a87dd18cSLukas Czerner 334891ef4cafSDuane Griffin int ext4_can_truncate(struct inode *inode) 334991ef4cafSDuane Griffin { 335091ef4cafSDuane Griffin if (S_ISREG(inode->i_mode)) 335191ef4cafSDuane Griffin return 1; 335291ef4cafSDuane Griffin if (S_ISDIR(inode->i_mode)) 335391ef4cafSDuane Griffin return 1; 335491ef4cafSDuane Griffin if (S_ISLNK(inode->i_mode)) 335591ef4cafSDuane Griffin return !ext4_inode_is_fast_symlink(inode); 335691ef4cafSDuane Griffin return 0; 335791ef4cafSDuane Griffin } 335891ef4cafSDuane Griffin 3359ac27a0ecSDave Kleikamp /* 3360a4bb6b64SAllison Henderson * ext4_punch_hole: punches a hole in a file by releaseing the blocks 3361a4bb6b64SAllison Henderson * associated with the given offset and length 3362a4bb6b64SAllison Henderson * 3363a4bb6b64SAllison Henderson * @inode: File inode 3364a4bb6b64SAllison Henderson * @offset: The offset where the hole will begin 3365a4bb6b64SAllison Henderson * @len: The length of the hole 3366a4bb6b64SAllison Henderson * 33674907cb7bSAnatol Pomozov * Returns: 0 on success or negative on failure 3368a4bb6b64SAllison Henderson */ 3369a4bb6b64SAllison Henderson 3370aeb2817aSAshish Sangwan int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length) 3371a4bb6b64SAllison Henderson { 337226a4c0c6STheodore Ts'o struct super_block *sb = inode->i_sb; 337326a4c0c6STheodore Ts'o ext4_lblk_t first_block, stop_block; 337426a4c0c6STheodore Ts'o struct address_space *mapping = inode->i_mapping; 3375a87dd18cSLukas Czerner loff_t first_block_offset, last_block_offset; 337626a4c0c6STheodore Ts'o handle_t *handle; 337726a4c0c6STheodore Ts'o unsigned int credits; 337826a4c0c6STheodore Ts'o int ret = 0; 337926a4c0c6STheodore Ts'o 3380a4bb6b64SAllison Henderson if (!S_ISREG(inode->i_mode)) 338173355192SAllison Henderson return -EOPNOTSUPP; 3382a4bb6b64SAllison Henderson 3383b8a86845SLukas Czerner trace_ext4_punch_hole(inode, offset, length, 0); 3384aaddea81SZheng Liu 338526a4c0c6STheodore Ts'o /* 338626a4c0c6STheodore Ts'o * Write out all dirty pages to avoid race conditions 338726a4c0c6STheodore Ts'o * Then release them. 338826a4c0c6STheodore Ts'o */ 338926a4c0c6STheodore Ts'o if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) { 339026a4c0c6STheodore Ts'o ret = filemap_write_and_wait_range(mapping, offset, 339126a4c0c6STheodore Ts'o offset + length - 1); 339226a4c0c6STheodore Ts'o if (ret) 339326a4c0c6STheodore Ts'o return ret; 339426a4c0c6STheodore Ts'o } 339526a4c0c6STheodore Ts'o 339626a4c0c6STheodore Ts'o mutex_lock(&inode->i_mutex); 33979ef06cecSLukas Czerner 339826a4c0c6STheodore Ts'o /* No need to punch hole beyond i_size */ 339926a4c0c6STheodore Ts'o if (offset >= inode->i_size) 340026a4c0c6STheodore Ts'o goto out_mutex; 340126a4c0c6STheodore Ts'o 340226a4c0c6STheodore Ts'o /* 340326a4c0c6STheodore Ts'o * If the hole extends beyond i_size, set the hole 340426a4c0c6STheodore Ts'o * to end after the page that contains i_size 340526a4c0c6STheodore Ts'o */ 340626a4c0c6STheodore Ts'o if (offset + length > inode->i_size) { 340726a4c0c6STheodore Ts'o length = inode->i_size + 340826a4c0c6STheodore Ts'o PAGE_CACHE_SIZE - (inode->i_size & (PAGE_CACHE_SIZE - 1)) - 340926a4c0c6STheodore Ts'o offset; 341026a4c0c6STheodore Ts'o } 341126a4c0c6STheodore Ts'o 3412a361293fSJan Kara if (offset & (sb->s_blocksize - 1) || 3413a361293fSJan Kara (offset + length) & (sb->s_blocksize - 1)) { 3414a361293fSJan Kara /* 3415a361293fSJan Kara * Attach jinode to inode for jbd2 if we do any zeroing of 3416a361293fSJan Kara * partial block 3417a361293fSJan Kara */ 3418a361293fSJan Kara ret = ext4_inode_attach_jinode(inode); 3419a361293fSJan Kara if (ret < 0) 3420a361293fSJan Kara goto out_mutex; 3421a361293fSJan Kara 3422a361293fSJan Kara } 3423a361293fSJan Kara 3424a87dd18cSLukas Czerner first_block_offset = round_up(offset, sb->s_blocksize); 3425a87dd18cSLukas Czerner last_block_offset = round_down((offset + length), sb->s_blocksize) - 1; 342626a4c0c6STheodore Ts'o 3427a87dd18cSLukas Czerner /* Now release the pages and zero block aligned part of pages*/ 3428a87dd18cSLukas Czerner if (last_block_offset > first_block_offset) 3429a87dd18cSLukas Czerner truncate_pagecache_range(inode, first_block_offset, 3430a87dd18cSLukas Czerner last_block_offset); 343126a4c0c6STheodore Ts'o 343226a4c0c6STheodore Ts'o /* Wait all existing dio workers, newcomers will block on i_mutex */ 343326a4c0c6STheodore Ts'o ext4_inode_block_unlocked_dio(inode); 343426a4c0c6STheodore Ts'o inode_dio_wait(inode); 343526a4c0c6STheodore Ts'o 343626a4c0c6STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 343726a4c0c6STheodore Ts'o credits = ext4_writepage_trans_blocks(inode); 343826a4c0c6STheodore Ts'o else 343926a4c0c6STheodore Ts'o credits = ext4_blocks_for_truncate(inode); 344026a4c0c6STheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits); 344126a4c0c6STheodore Ts'o if (IS_ERR(handle)) { 344226a4c0c6STheodore Ts'o ret = PTR_ERR(handle); 344326a4c0c6STheodore Ts'o ext4_std_error(sb, ret); 344426a4c0c6STheodore Ts'o goto out_dio; 344526a4c0c6STheodore Ts'o } 344626a4c0c6STheodore Ts'o 3447a87dd18cSLukas Czerner ret = ext4_zero_partial_blocks(handle, inode, offset, 3448a87dd18cSLukas Czerner length); 344926a4c0c6STheodore Ts'o if (ret) 345026a4c0c6STheodore Ts'o goto out_stop; 345126a4c0c6STheodore Ts'o 345226a4c0c6STheodore Ts'o first_block = (offset + sb->s_blocksize - 1) >> 345326a4c0c6STheodore Ts'o EXT4_BLOCK_SIZE_BITS(sb); 345426a4c0c6STheodore Ts'o stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb); 345526a4c0c6STheodore Ts'o 345626a4c0c6STheodore Ts'o /* If there are no blocks to remove, return now */ 345726a4c0c6STheodore Ts'o if (first_block >= stop_block) 345826a4c0c6STheodore Ts'o goto out_stop; 345926a4c0c6STheodore Ts'o 346026a4c0c6STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 346126a4c0c6STheodore Ts'o ext4_discard_preallocations(inode); 346226a4c0c6STheodore Ts'o 346326a4c0c6STheodore Ts'o ret = ext4_es_remove_extent(inode, first_block, 346426a4c0c6STheodore Ts'o stop_block - first_block); 346526a4c0c6STheodore Ts'o if (ret) { 346626a4c0c6STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 346726a4c0c6STheodore Ts'o goto out_stop; 346826a4c0c6STheodore Ts'o } 346926a4c0c6STheodore Ts'o 347026a4c0c6STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 347126a4c0c6STheodore Ts'o ret = ext4_ext_remove_space(inode, first_block, 347226a4c0c6STheodore Ts'o stop_block - 1); 347326a4c0c6STheodore Ts'o else 34744f579ae7SLukas Czerner ret = ext4_ind_remove_space(handle, inode, first_block, 347526a4c0c6STheodore Ts'o stop_block); 347626a4c0c6STheodore Ts'o 3477819c4920STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 347826a4c0c6STheodore Ts'o if (IS_SYNC(inode)) 347926a4c0c6STheodore Ts'o ext4_handle_sync(handle); 3480e251f9bcSMaxim Patlasov 3481e251f9bcSMaxim Patlasov /* Now release the pages again to reduce race window */ 3482e251f9bcSMaxim Patlasov if (last_block_offset > first_block_offset) 3483e251f9bcSMaxim Patlasov truncate_pagecache_range(inode, first_block_offset, 3484e251f9bcSMaxim Patlasov last_block_offset); 3485e251f9bcSMaxim Patlasov 348626a4c0c6STheodore Ts'o inode->i_mtime = inode->i_ctime = ext4_current_time(inode); 348726a4c0c6STheodore Ts'o ext4_mark_inode_dirty(handle, inode); 348826a4c0c6STheodore Ts'o out_stop: 348926a4c0c6STheodore Ts'o ext4_journal_stop(handle); 349026a4c0c6STheodore Ts'o out_dio: 349126a4c0c6STheodore Ts'o ext4_inode_resume_unlocked_dio(inode); 349226a4c0c6STheodore Ts'o out_mutex: 349326a4c0c6STheodore Ts'o mutex_unlock(&inode->i_mutex); 349426a4c0c6STheodore Ts'o return ret; 3495a4bb6b64SAllison Henderson } 3496a4bb6b64SAllison Henderson 3497a361293fSJan Kara int ext4_inode_attach_jinode(struct inode *inode) 3498a361293fSJan Kara { 3499a361293fSJan Kara struct ext4_inode_info *ei = EXT4_I(inode); 3500a361293fSJan Kara struct jbd2_inode *jinode; 3501a361293fSJan Kara 3502a361293fSJan Kara if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal) 3503a361293fSJan Kara return 0; 3504a361293fSJan Kara 3505a361293fSJan Kara jinode = jbd2_alloc_inode(GFP_KERNEL); 3506a361293fSJan Kara spin_lock(&inode->i_lock); 3507a361293fSJan Kara if (!ei->jinode) { 3508a361293fSJan Kara if (!jinode) { 3509a361293fSJan Kara spin_unlock(&inode->i_lock); 3510a361293fSJan Kara return -ENOMEM; 3511a361293fSJan Kara } 3512a361293fSJan Kara ei->jinode = jinode; 3513a361293fSJan Kara jbd2_journal_init_jbd_inode(ei->jinode, inode); 3514a361293fSJan Kara jinode = NULL; 3515a361293fSJan Kara } 3516a361293fSJan Kara spin_unlock(&inode->i_lock); 3517a361293fSJan Kara if (unlikely(jinode != NULL)) 3518a361293fSJan Kara jbd2_free_inode(jinode); 3519a361293fSJan Kara return 0; 3520a361293fSJan Kara } 3521a361293fSJan Kara 3522a4bb6b64SAllison Henderson /* 3523617ba13bSMingming Cao * ext4_truncate() 3524ac27a0ecSDave Kleikamp * 3525617ba13bSMingming Cao * We block out ext4_get_block() block instantiations across the entire 3526617ba13bSMingming Cao * transaction, and VFS/VM ensures that ext4_truncate() cannot run 3527ac27a0ecSDave Kleikamp * simultaneously on behalf of the same inode. 3528ac27a0ecSDave Kleikamp * 352942b2aa86SJustin P. Mattock * As we work through the truncate and commit bits of it to the journal there 3530ac27a0ecSDave Kleikamp * is one core, guiding principle: the file's tree must always be consistent on 3531ac27a0ecSDave Kleikamp * disk. We must be able to restart the truncate after a crash. 3532ac27a0ecSDave Kleikamp * 3533ac27a0ecSDave Kleikamp * The file's tree may be transiently inconsistent in memory (although it 3534ac27a0ecSDave Kleikamp * probably isn't), but whenever we close off and commit a journal transaction, 3535ac27a0ecSDave Kleikamp * the contents of (the filesystem + the journal) must be consistent and 3536ac27a0ecSDave Kleikamp * restartable. It's pretty simple, really: bottom up, right to left (although 3537ac27a0ecSDave Kleikamp * left-to-right works OK too). 3538ac27a0ecSDave Kleikamp * 3539ac27a0ecSDave Kleikamp * Note that at recovery time, journal replay occurs *before* the restart of 3540ac27a0ecSDave Kleikamp * truncate against the orphan inode list. 3541ac27a0ecSDave Kleikamp * 3542ac27a0ecSDave Kleikamp * The committed inode has the new, desired i_size (which is the same as 3543617ba13bSMingming Cao * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see 3544ac27a0ecSDave Kleikamp * that this inode's truncate did not complete and it will again call 3545617ba13bSMingming Cao * ext4_truncate() to have another go. So there will be instantiated blocks 3546617ba13bSMingming Cao * to the right of the truncation point in a crashed ext4 filesystem. But 3547ac27a0ecSDave Kleikamp * that's fine - as long as they are linked from the inode, the post-crash 3548617ba13bSMingming Cao * ext4_truncate() run will find them and release them. 3549ac27a0ecSDave Kleikamp */ 3550617ba13bSMingming Cao void ext4_truncate(struct inode *inode) 3551ac27a0ecSDave Kleikamp { 3552819c4920STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 3553819c4920STheodore Ts'o unsigned int credits; 3554819c4920STheodore Ts'o handle_t *handle; 3555819c4920STheodore Ts'o struct address_space *mapping = inode->i_mapping; 3556819c4920STheodore Ts'o 355719b5ef61STheodore Ts'o /* 355819b5ef61STheodore Ts'o * There is a possibility that we're either freeing the inode 3559e04027e8SMatthew Wilcox * or it's a completely new inode. In those cases we might not 356019b5ef61STheodore Ts'o * have i_mutex locked because it's not necessary. 356119b5ef61STheodore Ts'o */ 356219b5ef61STheodore Ts'o if (!(inode->i_state & (I_NEW|I_FREEING))) 356319b5ef61STheodore Ts'o WARN_ON(!mutex_is_locked(&inode->i_mutex)); 35640562e0baSJiaying Zhang trace_ext4_truncate_enter(inode); 35650562e0baSJiaying Zhang 356691ef4cafSDuane Griffin if (!ext4_can_truncate(inode)) 3567ac27a0ecSDave Kleikamp return; 3568ac27a0ecSDave Kleikamp 356912e9b892SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS); 3570c8d46e41SJiaying Zhang 35715534fb5bSTheodore Ts'o if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC)) 357219f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE); 35737d8f9f7dSTheodore Ts'o 3574aef1c851STao Ma if (ext4_has_inline_data(inode)) { 3575aef1c851STao Ma int has_inline = 1; 3576aef1c851STao Ma 3577aef1c851STao Ma ext4_inline_data_truncate(inode, &has_inline); 3578aef1c851STao Ma if (has_inline) 3579aef1c851STao Ma return; 3580aef1c851STao Ma } 3581aef1c851STao Ma 3582a361293fSJan Kara /* If we zero-out tail of the page, we have to create jinode for jbd2 */ 3583a361293fSJan Kara if (inode->i_size & (inode->i_sb->s_blocksize - 1)) { 3584a361293fSJan Kara if (ext4_inode_attach_jinode(inode) < 0) 3585a361293fSJan Kara return; 3586a361293fSJan Kara } 3587a361293fSJan Kara 3588ff9893dcSAmir Goldstein if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 3589819c4920STheodore Ts'o credits = ext4_writepage_trans_blocks(inode); 3590ff9893dcSAmir Goldstein else 3591819c4920STheodore Ts'o credits = ext4_blocks_for_truncate(inode); 3592819c4920STheodore Ts'o 3593819c4920STheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits); 3594819c4920STheodore Ts'o if (IS_ERR(handle)) { 3595819c4920STheodore Ts'o ext4_std_error(inode->i_sb, PTR_ERR(handle)); 3596819c4920STheodore Ts'o return; 3597819c4920STheodore Ts'o } 3598819c4920STheodore Ts'o 3599eb3544c6SLukas Czerner if (inode->i_size & (inode->i_sb->s_blocksize - 1)) 3600eb3544c6SLukas Czerner ext4_block_truncate_page(handle, mapping, inode->i_size); 3601819c4920STheodore Ts'o 3602819c4920STheodore Ts'o /* 3603819c4920STheodore Ts'o * We add the inode to the orphan list, so that if this 3604819c4920STheodore Ts'o * truncate spans multiple transactions, and we crash, we will 3605819c4920STheodore Ts'o * resume the truncate when the filesystem recovers. It also 3606819c4920STheodore Ts'o * marks the inode dirty, to catch the new size. 3607819c4920STheodore Ts'o * 3608819c4920STheodore Ts'o * Implication: the file must always be in a sane, consistent 3609819c4920STheodore Ts'o * truncatable state while each transaction commits. 3610819c4920STheodore Ts'o */ 3611819c4920STheodore Ts'o if (ext4_orphan_add(handle, inode)) 3612819c4920STheodore Ts'o goto out_stop; 3613819c4920STheodore Ts'o 3614819c4920STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 3615819c4920STheodore Ts'o 3616819c4920STheodore Ts'o ext4_discard_preallocations(inode); 3617819c4920STheodore Ts'o 3618819c4920STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 3619819c4920STheodore Ts'o ext4_ext_truncate(handle, inode); 3620819c4920STheodore Ts'o else 3621819c4920STheodore Ts'o ext4_ind_truncate(handle, inode); 3622819c4920STheodore Ts'o 3623819c4920STheodore Ts'o up_write(&ei->i_data_sem); 3624819c4920STheodore Ts'o 3625819c4920STheodore Ts'o if (IS_SYNC(inode)) 3626819c4920STheodore Ts'o ext4_handle_sync(handle); 3627819c4920STheodore Ts'o 3628819c4920STheodore Ts'o out_stop: 3629819c4920STheodore Ts'o /* 3630819c4920STheodore Ts'o * If this was a simple ftruncate() and the file will remain alive, 3631819c4920STheodore Ts'o * then we need to clear up the orphan record which we created above. 3632819c4920STheodore Ts'o * However, if this was a real unlink then we were called by 3633819c4920STheodore Ts'o * ext4_delete_inode(), and we allow that function to clean up the 3634819c4920STheodore Ts'o * orphan info for us. 3635819c4920STheodore Ts'o */ 3636819c4920STheodore Ts'o if (inode->i_nlink) 3637819c4920STheodore Ts'o ext4_orphan_del(handle, inode); 3638819c4920STheodore Ts'o 3639819c4920STheodore Ts'o inode->i_mtime = inode->i_ctime = ext4_current_time(inode); 3640819c4920STheodore Ts'o ext4_mark_inode_dirty(handle, inode); 3641819c4920STheodore Ts'o ext4_journal_stop(handle); 3642a86c6181SAlex Tomas 36430562e0baSJiaying Zhang trace_ext4_truncate_exit(inode); 3644ac27a0ecSDave Kleikamp } 3645ac27a0ecSDave Kleikamp 3646ac27a0ecSDave Kleikamp /* 3647617ba13bSMingming Cao * ext4_get_inode_loc returns with an extra refcount against the inode's 3648ac27a0ecSDave Kleikamp * underlying buffer_head on success. If 'in_mem' is true, we have all 3649ac27a0ecSDave Kleikamp * data in memory that is needed to recreate the on-disk version of this 3650ac27a0ecSDave Kleikamp * inode. 3651ac27a0ecSDave Kleikamp */ 3652617ba13bSMingming Cao static int __ext4_get_inode_loc(struct inode *inode, 3653617ba13bSMingming Cao struct ext4_iloc *iloc, int in_mem) 3654ac27a0ecSDave Kleikamp { 3655240799cdSTheodore Ts'o struct ext4_group_desc *gdp; 3656ac27a0ecSDave Kleikamp struct buffer_head *bh; 3657240799cdSTheodore Ts'o struct super_block *sb = inode->i_sb; 3658240799cdSTheodore Ts'o ext4_fsblk_t block; 3659240799cdSTheodore Ts'o int inodes_per_block, inode_offset; 3660ac27a0ecSDave Kleikamp 36613a06d778SAneesh Kumar K.V iloc->bh = NULL; 3662240799cdSTheodore Ts'o if (!ext4_valid_inum(sb, inode->i_ino)) 3663ac27a0ecSDave Kleikamp return -EIO; 3664ac27a0ecSDave Kleikamp 3665240799cdSTheodore Ts'o iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb); 3666240799cdSTheodore Ts'o gdp = ext4_get_group_desc(sb, iloc->block_group, NULL); 3667240799cdSTheodore Ts'o if (!gdp) 3668240799cdSTheodore Ts'o return -EIO; 3669240799cdSTheodore Ts'o 3670240799cdSTheodore Ts'o /* 3671240799cdSTheodore Ts'o * Figure out the offset within the block group inode table 3672240799cdSTheodore Ts'o */ 367300d09882STao Ma inodes_per_block = EXT4_SB(sb)->s_inodes_per_block; 3674240799cdSTheodore Ts'o inode_offset = ((inode->i_ino - 1) % 3675240799cdSTheodore Ts'o EXT4_INODES_PER_GROUP(sb)); 3676240799cdSTheodore Ts'o block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block); 3677240799cdSTheodore Ts'o iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb); 3678240799cdSTheodore Ts'o 3679240799cdSTheodore Ts'o bh = sb_getblk(sb, block); 3680aebf0243SWang Shilong if (unlikely(!bh)) 3681860d21e2STheodore Ts'o return -ENOMEM; 3682ac27a0ecSDave Kleikamp if (!buffer_uptodate(bh)) { 3683ac27a0ecSDave Kleikamp lock_buffer(bh); 36849c83a923SHidehiro Kawai 36859c83a923SHidehiro Kawai /* 36869c83a923SHidehiro Kawai * If the buffer has the write error flag, we have failed 36879c83a923SHidehiro Kawai * to write out another inode in the same block. In this 36889c83a923SHidehiro Kawai * case, we don't have to read the block because we may 36899c83a923SHidehiro Kawai * read the old inode data successfully. 36909c83a923SHidehiro Kawai */ 36919c83a923SHidehiro Kawai if (buffer_write_io_error(bh) && !buffer_uptodate(bh)) 36929c83a923SHidehiro Kawai set_buffer_uptodate(bh); 36939c83a923SHidehiro Kawai 3694ac27a0ecSDave Kleikamp if (buffer_uptodate(bh)) { 3695ac27a0ecSDave Kleikamp /* someone brought it uptodate while we waited */ 3696ac27a0ecSDave Kleikamp unlock_buffer(bh); 3697ac27a0ecSDave Kleikamp goto has_buffer; 3698ac27a0ecSDave Kleikamp } 3699ac27a0ecSDave Kleikamp 3700ac27a0ecSDave Kleikamp /* 3701ac27a0ecSDave Kleikamp * If we have all information of the inode in memory and this 3702ac27a0ecSDave Kleikamp * is the only valid inode in the block, we need not read the 3703ac27a0ecSDave Kleikamp * block. 3704ac27a0ecSDave Kleikamp */ 3705ac27a0ecSDave Kleikamp if (in_mem) { 3706ac27a0ecSDave Kleikamp struct buffer_head *bitmap_bh; 3707240799cdSTheodore Ts'o int i, start; 3708ac27a0ecSDave Kleikamp 3709240799cdSTheodore Ts'o start = inode_offset & ~(inodes_per_block - 1); 3710ac27a0ecSDave Kleikamp 3711ac27a0ecSDave Kleikamp /* Is the inode bitmap in cache? */ 3712240799cdSTheodore Ts'o bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp)); 3713aebf0243SWang Shilong if (unlikely(!bitmap_bh)) 3714ac27a0ecSDave Kleikamp goto make_io; 3715ac27a0ecSDave Kleikamp 3716ac27a0ecSDave Kleikamp /* 3717ac27a0ecSDave Kleikamp * If the inode bitmap isn't in cache then the 3718ac27a0ecSDave Kleikamp * optimisation may end up performing two reads instead 3719ac27a0ecSDave Kleikamp * of one, so skip it. 3720ac27a0ecSDave Kleikamp */ 3721ac27a0ecSDave Kleikamp if (!buffer_uptodate(bitmap_bh)) { 3722ac27a0ecSDave Kleikamp brelse(bitmap_bh); 3723ac27a0ecSDave Kleikamp goto make_io; 3724ac27a0ecSDave Kleikamp } 3725240799cdSTheodore Ts'o for (i = start; i < start + inodes_per_block; i++) { 3726ac27a0ecSDave Kleikamp if (i == inode_offset) 3727ac27a0ecSDave Kleikamp continue; 3728617ba13bSMingming Cao if (ext4_test_bit(i, bitmap_bh->b_data)) 3729ac27a0ecSDave Kleikamp break; 3730ac27a0ecSDave Kleikamp } 3731ac27a0ecSDave Kleikamp brelse(bitmap_bh); 3732240799cdSTheodore Ts'o if (i == start + inodes_per_block) { 3733ac27a0ecSDave Kleikamp /* all other inodes are free, so skip I/O */ 3734ac27a0ecSDave Kleikamp memset(bh->b_data, 0, bh->b_size); 3735ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 3736ac27a0ecSDave Kleikamp unlock_buffer(bh); 3737ac27a0ecSDave Kleikamp goto has_buffer; 3738ac27a0ecSDave Kleikamp } 3739ac27a0ecSDave Kleikamp } 3740ac27a0ecSDave Kleikamp 3741ac27a0ecSDave Kleikamp make_io: 3742ac27a0ecSDave Kleikamp /* 3743240799cdSTheodore Ts'o * If we need to do any I/O, try to pre-readahead extra 3744240799cdSTheodore Ts'o * blocks from the inode table. 3745240799cdSTheodore Ts'o */ 3746240799cdSTheodore Ts'o if (EXT4_SB(sb)->s_inode_readahead_blks) { 3747240799cdSTheodore Ts'o ext4_fsblk_t b, end, table; 3748240799cdSTheodore Ts'o unsigned num; 37490d606e2cSTheodore Ts'o __u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks; 3750240799cdSTheodore Ts'o 3751240799cdSTheodore Ts'o table = ext4_inode_table(sb, gdp); 3752b713a5ecSTheodore Ts'o /* s_inode_readahead_blks is always a power of 2 */ 37530d606e2cSTheodore Ts'o b = block & ~((ext4_fsblk_t) ra_blks - 1); 3754240799cdSTheodore Ts'o if (table > b) 3755240799cdSTheodore Ts'o b = table; 37560d606e2cSTheodore Ts'o end = b + ra_blks; 3757240799cdSTheodore Ts'o num = EXT4_INODES_PER_GROUP(sb); 3758feb0ab32SDarrick J. Wong if (ext4_has_group_desc_csum(sb)) 3759560671a0SAneesh Kumar K.V num -= ext4_itable_unused_count(sb, gdp); 3760240799cdSTheodore Ts'o table += num / inodes_per_block; 3761240799cdSTheodore Ts'o if (end > table) 3762240799cdSTheodore Ts'o end = table; 3763240799cdSTheodore Ts'o while (b <= end) 3764240799cdSTheodore Ts'o sb_breadahead(sb, b++); 3765240799cdSTheodore Ts'o } 3766240799cdSTheodore Ts'o 3767240799cdSTheodore Ts'o /* 3768ac27a0ecSDave Kleikamp * There are other valid inodes in the buffer, this inode 3769ac27a0ecSDave Kleikamp * has in-inode xattrs, or we don't have this inode in memory. 3770ac27a0ecSDave Kleikamp * Read the block from disk. 3771ac27a0ecSDave Kleikamp */ 37720562e0baSJiaying Zhang trace_ext4_load_inode(inode); 3773ac27a0ecSDave Kleikamp get_bh(bh); 3774ac27a0ecSDave Kleikamp bh->b_end_io = end_buffer_read_sync; 377565299a3bSChristoph Hellwig submit_bh(READ | REQ_META | REQ_PRIO, bh); 3776ac27a0ecSDave Kleikamp wait_on_buffer(bh); 3777ac27a0ecSDave Kleikamp if (!buffer_uptodate(bh)) { 3778c398eda0STheodore Ts'o EXT4_ERROR_INODE_BLOCK(inode, block, 3779c398eda0STheodore Ts'o "unable to read itable block"); 3780ac27a0ecSDave Kleikamp brelse(bh); 3781ac27a0ecSDave Kleikamp return -EIO; 3782ac27a0ecSDave Kleikamp } 3783ac27a0ecSDave Kleikamp } 3784ac27a0ecSDave Kleikamp has_buffer: 3785ac27a0ecSDave Kleikamp iloc->bh = bh; 3786ac27a0ecSDave Kleikamp return 0; 3787ac27a0ecSDave Kleikamp } 3788ac27a0ecSDave Kleikamp 3789617ba13bSMingming Cao int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc) 3790ac27a0ecSDave Kleikamp { 3791ac27a0ecSDave Kleikamp /* We have all inode data except xattrs in memory here. */ 3792617ba13bSMingming Cao return __ext4_get_inode_loc(inode, iloc, 379319f5fb7aSTheodore Ts'o !ext4_test_inode_state(inode, EXT4_STATE_XATTR)); 3794ac27a0ecSDave Kleikamp } 3795ac27a0ecSDave Kleikamp 3796617ba13bSMingming Cao void ext4_set_inode_flags(struct inode *inode) 3797ac27a0ecSDave Kleikamp { 3798617ba13bSMingming Cao unsigned int flags = EXT4_I(inode)->i_flags; 379900a1a053STheodore Ts'o unsigned int new_fl = 0; 3800ac27a0ecSDave Kleikamp 3801617ba13bSMingming Cao if (flags & EXT4_SYNC_FL) 380200a1a053STheodore Ts'o new_fl |= S_SYNC; 3803617ba13bSMingming Cao if (flags & EXT4_APPEND_FL) 380400a1a053STheodore Ts'o new_fl |= S_APPEND; 3805617ba13bSMingming Cao if (flags & EXT4_IMMUTABLE_FL) 380600a1a053STheodore Ts'o new_fl |= S_IMMUTABLE; 3807617ba13bSMingming Cao if (flags & EXT4_NOATIME_FL) 380800a1a053STheodore Ts'o new_fl |= S_NOATIME; 3809617ba13bSMingming Cao if (flags & EXT4_DIRSYNC_FL) 381000a1a053STheodore Ts'o new_fl |= S_DIRSYNC; 38115f16f322STheodore Ts'o inode_set_flags(inode, new_fl, 38125f16f322STheodore Ts'o S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC); 3813ac27a0ecSDave Kleikamp } 3814ac27a0ecSDave Kleikamp 3815ff9ddf7eSJan Kara /* Propagate flags from i_flags to EXT4_I(inode)->i_flags */ 3816ff9ddf7eSJan Kara void ext4_get_inode_flags(struct ext4_inode_info *ei) 3817ff9ddf7eSJan Kara { 381884a8dce2SDmitry Monakhov unsigned int vfs_fl; 381984a8dce2SDmitry Monakhov unsigned long old_fl, new_fl; 3820ff9ddf7eSJan Kara 382184a8dce2SDmitry Monakhov do { 382284a8dce2SDmitry Monakhov vfs_fl = ei->vfs_inode.i_flags; 382384a8dce2SDmitry Monakhov old_fl = ei->i_flags; 382484a8dce2SDmitry Monakhov new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL| 382584a8dce2SDmitry Monakhov EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL| 382684a8dce2SDmitry Monakhov EXT4_DIRSYNC_FL); 382784a8dce2SDmitry Monakhov if (vfs_fl & S_SYNC) 382884a8dce2SDmitry Monakhov new_fl |= EXT4_SYNC_FL; 382984a8dce2SDmitry Monakhov if (vfs_fl & S_APPEND) 383084a8dce2SDmitry Monakhov new_fl |= EXT4_APPEND_FL; 383184a8dce2SDmitry Monakhov if (vfs_fl & S_IMMUTABLE) 383284a8dce2SDmitry Monakhov new_fl |= EXT4_IMMUTABLE_FL; 383384a8dce2SDmitry Monakhov if (vfs_fl & S_NOATIME) 383484a8dce2SDmitry Monakhov new_fl |= EXT4_NOATIME_FL; 383584a8dce2SDmitry Monakhov if (vfs_fl & S_DIRSYNC) 383684a8dce2SDmitry Monakhov new_fl |= EXT4_DIRSYNC_FL; 383784a8dce2SDmitry Monakhov } while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl); 3838ff9ddf7eSJan Kara } 3839de9a55b8STheodore Ts'o 38400fc1b451SAneesh Kumar K.V static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode, 38410fc1b451SAneesh Kumar K.V struct ext4_inode_info *ei) 38420fc1b451SAneesh Kumar K.V { 38430fc1b451SAneesh Kumar K.V blkcnt_t i_blocks ; 38448180a562SAneesh Kumar K.V struct inode *inode = &(ei->vfs_inode); 38458180a562SAneesh Kumar K.V struct super_block *sb = inode->i_sb; 38460fc1b451SAneesh Kumar K.V 38470fc1b451SAneesh Kumar K.V if (EXT4_HAS_RO_COMPAT_FEATURE(sb, 38480fc1b451SAneesh Kumar K.V EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) { 38490fc1b451SAneesh Kumar K.V /* we are using combined 48 bit field */ 38500fc1b451SAneesh Kumar K.V i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 | 38510fc1b451SAneesh Kumar K.V le32_to_cpu(raw_inode->i_blocks_lo); 385207a03824STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) { 38538180a562SAneesh Kumar K.V /* i_blocks represent file system block size */ 38548180a562SAneesh Kumar K.V return i_blocks << (inode->i_blkbits - 9); 38558180a562SAneesh Kumar K.V } else { 38560fc1b451SAneesh Kumar K.V return i_blocks; 38578180a562SAneesh Kumar K.V } 38580fc1b451SAneesh Kumar K.V } else { 38590fc1b451SAneesh Kumar K.V return le32_to_cpu(raw_inode->i_blocks_lo); 38600fc1b451SAneesh Kumar K.V } 38610fc1b451SAneesh Kumar K.V } 3862ff9ddf7eSJan Kara 3863152a7b0aSTao Ma static inline void ext4_iget_extra_inode(struct inode *inode, 3864152a7b0aSTao Ma struct ext4_inode *raw_inode, 3865152a7b0aSTao Ma struct ext4_inode_info *ei) 3866152a7b0aSTao Ma { 3867152a7b0aSTao Ma __le32 *magic = (void *)raw_inode + 3868152a7b0aSTao Ma EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize; 386967cf5b09STao Ma if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) { 3870152a7b0aSTao Ma ext4_set_inode_state(inode, EXT4_STATE_XATTR); 387167cf5b09STao Ma ext4_find_inline_data_nolock(inode); 3872f19d5870STao Ma } else 3873f19d5870STao Ma EXT4_I(inode)->i_inline_off = 0; 3874152a7b0aSTao Ma } 3875152a7b0aSTao Ma 38761d1fe1eeSDavid Howells struct inode *ext4_iget(struct super_block *sb, unsigned long ino) 3877ac27a0ecSDave Kleikamp { 3878617ba13bSMingming Cao struct ext4_iloc iloc; 3879617ba13bSMingming Cao struct ext4_inode *raw_inode; 38801d1fe1eeSDavid Howells struct ext4_inode_info *ei; 38811d1fe1eeSDavid Howells struct inode *inode; 3882b436b9beSJan Kara journal_t *journal = EXT4_SB(sb)->s_journal; 38831d1fe1eeSDavid Howells long ret; 3884ac27a0ecSDave Kleikamp int block; 388508cefc7aSEric W. Biederman uid_t i_uid; 388608cefc7aSEric W. Biederman gid_t i_gid; 3887ac27a0ecSDave Kleikamp 38881d1fe1eeSDavid Howells inode = iget_locked(sb, ino); 38891d1fe1eeSDavid Howells if (!inode) 38901d1fe1eeSDavid Howells return ERR_PTR(-ENOMEM); 38911d1fe1eeSDavid Howells if (!(inode->i_state & I_NEW)) 38921d1fe1eeSDavid Howells return inode; 38931d1fe1eeSDavid Howells 38941d1fe1eeSDavid Howells ei = EXT4_I(inode); 38957dc57615SPeter Huewe iloc.bh = NULL; 3896ac27a0ecSDave Kleikamp 38971d1fe1eeSDavid Howells ret = __ext4_get_inode_loc(inode, &iloc, 0); 38981d1fe1eeSDavid Howells if (ret < 0) 3899ac27a0ecSDave Kleikamp goto bad_inode; 3900617ba13bSMingming Cao raw_inode = ext4_raw_inode(&iloc); 3901814525f4SDarrick J. Wong 3902814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 3903814525f4SDarrick J. Wong ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize); 3904814525f4SDarrick J. Wong if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize > 3905814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)) { 3906814525f4SDarrick J. Wong EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)", 3907814525f4SDarrick J. Wong EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize, 3908814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)); 3909814525f4SDarrick J. Wong ret = -EIO; 3910814525f4SDarrick J. Wong goto bad_inode; 3911814525f4SDarrick J. Wong } 3912814525f4SDarrick J. Wong } else 3913814525f4SDarrick J. Wong ei->i_extra_isize = 0; 3914814525f4SDarrick J. Wong 3915814525f4SDarrick J. Wong /* Precompute checksum seed for inode metadata */ 3916814525f4SDarrick J. Wong if (EXT4_HAS_RO_COMPAT_FEATURE(sb, 3917814525f4SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)) { 3918814525f4SDarrick J. Wong struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 3919814525f4SDarrick J. Wong __u32 csum; 3920814525f4SDarrick J. Wong __le32 inum = cpu_to_le32(inode->i_ino); 3921814525f4SDarrick J. Wong __le32 gen = raw_inode->i_generation; 3922814525f4SDarrick J. Wong csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum, 3923814525f4SDarrick J. Wong sizeof(inum)); 3924814525f4SDarrick J. Wong ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen, 3925814525f4SDarrick J. Wong sizeof(gen)); 3926814525f4SDarrick J. Wong } 3927814525f4SDarrick J. Wong 3928814525f4SDarrick J. Wong if (!ext4_inode_csum_verify(inode, raw_inode, ei)) { 3929814525f4SDarrick J. Wong EXT4_ERROR_INODE(inode, "checksum invalid"); 3930814525f4SDarrick J. Wong ret = -EIO; 3931814525f4SDarrick J. Wong goto bad_inode; 3932814525f4SDarrick J. Wong } 3933814525f4SDarrick J. Wong 3934ac27a0ecSDave Kleikamp inode->i_mode = le16_to_cpu(raw_inode->i_mode); 393508cefc7aSEric W. Biederman i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low); 393608cefc7aSEric W. Biederman i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low); 3937ac27a0ecSDave Kleikamp if (!(test_opt(inode->i_sb, NO_UID32))) { 393808cefc7aSEric W. Biederman i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16; 393908cefc7aSEric W. Biederman i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16; 3940ac27a0ecSDave Kleikamp } 394108cefc7aSEric W. Biederman i_uid_write(inode, i_uid); 394208cefc7aSEric W. Biederman i_gid_write(inode, i_gid); 3943bfe86848SMiklos Szeredi set_nlink(inode, le16_to_cpu(raw_inode->i_links_count)); 3944ac27a0ecSDave Kleikamp 3945353eb83cSTheodore Ts'o ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */ 394667cf5b09STao Ma ei->i_inline_off = 0; 3947ac27a0ecSDave Kleikamp ei->i_dir_start_lookup = 0; 3948ac27a0ecSDave Kleikamp ei->i_dtime = le32_to_cpu(raw_inode->i_dtime); 3949ac27a0ecSDave Kleikamp /* We now have enough fields to check if the inode was active or not. 3950ac27a0ecSDave Kleikamp * This is needed because nfsd might try to access dead inodes 3951ac27a0ecSDave Kleikamp * the test is that same one that e2fsck uses 3952ac27a0ecSDave Kleikamp * NeilBrown 1999oct15 3953ac27a0ecSDave Kleikamp */ 3954ac27a0ecSDave Kleikamp if (inode->i_nlink == 0) { 3955393d1d1dSDr. Tilmann Bubeck if ((inode->i_mode == 0 || 3956393d1d1dSDr. Tilmann Bubeck !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) && 3957393d1d1dSDr. Tilmann Bubeck ino != EXT4_BOOT_LOADER_INO) { 3958ac27a0ecSDave Kleikamp /* this inode is deleted */ 39591d1fe1eeSDavid Howells ret = -ESTALE; 3960ac27a0ecSDave Kleikamp goto bad_inode; 3961ac27a0ecSDave Kleikamp } 3962ac27a0ecSDave Kleikamp /* The only unlinked inodes we let through here have 3963ac27a0ecSDave Kleikamp * valid i_mode and are being read by the orphan 3964ac27a0ecSDave Kleikamp * recovery code: that's fine, we're about to complete 3965393d1d1dSDr. Tilmann Bubeck * the process of deleting those. 3966393d1d1dSDr. Tilmann Bubeck * OR it is the EXT4_BOOT_LOADER_INO which is 3967393d1d1dSDr. Tilmann Bubeck * not initialized on a new filesystem. */ 3968ac27a0ecSDave Kleikamp } 3969ac27a0ecSDave Kleikamp ei->i_flags = le32_to_cpu(raw_inode->i_flags); 39700fc1b451SAneesh Kumar K.V inode->i_blocks = ext4_inode_blocks(raw_inode, ei); 39717973c0c1SAneesh Kumar K.V ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo); 3972a9e81742STheodore Ts'o if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) 3973a1ddeb7eSBadari Pulavarty ei->i_file_acl |= 3974a1ddeb7eSBadari Pulavarty ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32; 3975a48380f7SAneesh Kumar K.V inode->i_size = ext4_isize(raw_inode); 3976ac27a0ecSDave Kleikamp ei->i_disksize = inode->i_size; 3977a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA 3978a9e7f447SDmitry Monakhov ei->i_reserved_quota = 0; 3979a9e7f447SDmitry Monakhov #endif 3980ac27a0ecSDave Kleikamp inode->i_generation = le32_to_cpu(raw_inode->i_generation); 3981ac27a0ecSDave Kleikamp ei->i_block_group = iloc.block_group; 3982a4912123STheodore Ts'o ei->i_last_alloc_group = ~0; 3983ac27a0ecSDave Kleikamp /* 3984ac27a0ecSDave Kleikamp * NOTE! The in-memory inode i_data array is in little-endian order 3985ac27a0ecSDave Kleikamp * even on big-endian machines: we do NOT byteswap the block numbers! 3986ac27a0ecSDave Kleikamp */ 3987617ba13bSMingming Cao for (block = 0; block < EXT4_N_BLOCKS; block++) 3988ac27a0ecSDave Kleikamp ei->i_data[block] = raw_inode->i_block[block]; 3989ac27a0ecSDave Kleikamp INIT_LIST_HEAD(&ei->i_orphan); 3990ac27a0ecSDave Kleikamp 3991b436b9beSJan Kara /* 3992b436b9beSJan Kara * Set transaction id's of transactions that have to be committed 3993b436b9beSJan Kara * to finish f[data]sync. We set them to currently running transaction 3994b436b9beSJan Kara * as we cannot be sure that the inode or some of its metadata isn't 3995b436b9beSJan Kara * part of the transaction - the inode could have been reclaimed and 3996b436b9beSJan Kara * now it is reread from disk. 3997b436b9beSJan Kara */ 3998b436b9beSJan Kara if (journal) { 3999b436b9beSJan Kara transaction_t *transaction; 4000b436b9beSJan Kara tid_t tid; 4001b436b9beSJan Kara 4002a931da6aSTheodore Ts'o read_lock(&journal->j_state_lock); 4003b436b9beSJan Kara if (journal->j_running_transaction) 4004b436b9beSJan Kara transaction = journal->j_running_transaction; 4005b436b9beSJan Kara else 4006b436b9beSJan Kara transaction = journal->j_committing_transaction; 4007b436b9beSJan Kara if (transaction) 4008b436b9beSJan Kara tid = transaction->t_tid; 4009b436b9beSJan Kara else 4010b436b9beSJan Kara tid = journal->j_commit_sequence; 4011a931da6aSTheodore Ts'o read_unlock(&journal->j_state_lock); 4012b436b9beSJan Kara ei->i_sync_tid = tid; 4013b436b9beSJan Kara ei->i_datasync_tid = tid; 4014b436b9beSJan Kara } 4015b436b9beSJan Kara 40160040d987SEric Sandeen if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 4017ac27a0ecSDave Kleikamp if (ei->i_extra_isize == 0) { 4018ac27a0ecSDave Kleikamp /* The extra space is currently unused. Use it. */ 4019617ba13bSMingming Cao ei->i_extra_isize = sizeof(struct ext4_inode) - 4020617ba13bSMingming Cao EXT4_GOOD_OLD_INODE_SIZE; 4021ac27a0ecSDave Kleikamp } else { 4022152a7b0aSTao Ma ext4_iget_extra_inode(inode, raw_inode, ei); 4023ac27a0ecSDave Kleikamp } 4024814525f4SDarrick J. Wong } 4025ac27a0ecSDave Kleikamp 4026ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode); 4027ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode); 4028ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode); 4029ef7f3835SKalpak Shah EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode); 4030ef7f3835SKalpak Shah 4031ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) { 403225ec56b5SJean Noel Cordenner inode->i_version = le32_to_cpu(raw_inode->i_disk_version); 403325ec56b5SJean Noel Cordenner if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 403425ec56b5SJean Noel Cordenner if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi)) 403525ec56b5SJean Noel Cordenner inode->i_version |= 403625ec56b5SJean Noel Cordenner (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32; 403725ec56b5SJean Noel Cordenner } 4038c4f65706STheodore Ts'o } 403925ec56b5SJean Noel Cordenner 4040c4b5a614STheodore Ts'o ret = 0; 4041485c26ecSTheodore Ts'o if (ei->i_file_acl && 40421032988cSTheodore Ts'o !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) { 404324676da4STheodore Ts'o EXT4_ERROR_INODE(inode, "bad extended attribute block %llu", 404424676da4STheodore Ts'o ei->i_file_acl); 4045485c26ecSTheodore Ts'o ret = -EIO; 4046485c26ecSTheodore Ts'o goto bad_inode; 4047f19d5870STao Ma } else if (!ext4_has_inline_data(inode)) { 4048f19d5870STao Ma if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 4049f19d5870STao Ma if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || 4050c4b5a614STheodore Ts'o (S_ISLNK(inode->i_mode) && 4051f19d5870STao Ma !ext4_inode_is_fast_symlink(inode)))) 40527a262f7cSAneesh Kumar K.V /* Validate extent which is part of inode */ 40537a262f7cSAneesh Kumar K.V ret = ext4_ext_check_inode(inode); 4054fe2c8191SThiemo Nagel } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || 4055fe2c8191SThiemo Nagel (S_ISLNK(inode->i_mode) && 4056fe2c8191SThiemo Nagel !ext4_inode_is_fast_symlink(inode))) { 4057fe2c8191SThiemo Nagel /* Validate block references which are part of inode */ 40581f7d1e77STheodore Ts'o ret = ext4_ind_check_inode(inode); 4059fe2c8191SThiemo Nagel } 4060f19d5870STao Ma } 4061567f3e9aSTheodore Ts'o if (ret) 40627a262f7cSAneesh Kumar K.V goto bad_inode; 40637a262f7cSAneesh Kumar K.V 4064ac27a0ecSDave Kleikamp if (S_ISREG(inode->i_mode)) { 4065617ba13bSMingming Cao inode->i_op = &ext4_file_inode_operations; 4066617ba13bSMingming Cao inode->i_fop = &ext4_file_operations; 4067617ba13bSMingming Cao ext4_set_aops(inode); 4068ac27a0ecSDave Kleikamp } else if (S_ISDIR(inode->i_mode)) { 4069617ba13bSMingming Cao inode->i_op = &ext4_dir_inode_operations; 4070617ba13bSMingming Cao inode->i_fop = &ext4_dir_operations; 4071ac27a0ecSDave Kleikamp } else if (S_ISLNK(inode->i_mode)) { 4072e83c1397SDuane Griffin if (ext4_inode_is_fast_symlink(inode)) { 4073617ba13bSMingming Cao inode->i_op = &ext4_fast_symlink_inode_operations; 4074e83c1397SDuane Griffin nd_terminate_link(ei->i_data, inode->i_size, 4075e83c1397SDuane Griffin sizeof(ei->i_data) - 1); 4076e83c1397SDuane Griffin } else { 4077617ba13bSMingming Cao inode->i_op = &ext4_symlink_inode_operations; 4078617ba13bSMingming Cao ext4_set_aops(inode); 4079ac27a0ecSDave Kleikamp } 4080563bdd61STheodore Ts'o } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) || 4081563bdd61STheodore Ts'o S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) { 4082617ba13bSMingming Cao inode->i_op = &ext4_special_inode_operations; 4083ac27a0ecSDave Kleikamp if (raw_inode->i_block[0]) 4084ac27a0ecSDave Kleikamp init_special_inode(inode, inode->i_mode, 4085ac27a0ecSDave Kleikamp old_decode_dev(le32_to_cpu(raw_inode->i_block[0]))); 4086ac27a0ecSDave Kleikamp else 4087ac27a0ecSDave Kleikamp init_special_inode(inode, inode->i_mode, 4088ac27a0ecSDave Kleikamp new_decode_dev(le32_to_cpu(raw_inode->i_block[1]))); 4089393d1d1dSDr. Tilmann Bubeck } else if (ino == EXT4_BOOT_LOADER_INO) { 4090393d1d1dSDr. Tilmann Bubeck make_bad_inode(inode); 4091563bdd61STheodore Ts'o } else { 4092563bdd61STheodore Ts'o ret = -EIO; 409324676da4STheodore Ts'o EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode); 4094563bdd61STheodore Ts'o goto bad_inode; 4095ac27a0ecSDave Kleikamp } 4096ac27a0ecSDave Kleikamp brelse(iloc.bh); 4097617ba13bSMingming Cao ext4_set_inode_flags(inode); 40981d1fe1eeSDavid Howells unlock_new_inode(inode); 40991d1fe1eeSDavid Howells return inode; 4100ac27a0ecSDave Kleikamp 4101ac27a0ecSDave Kleikamp bad_inode: 4102567f3e9aSTheodore Ts'o brelse(iloc.bh); 41031d1fe1eeSDavid Howells iget_failed(inode); 41041d1fe1eeSDavid Howells return ERR_PTR(ret); 4105ac27a0ecSDave Kleikamp } 4106ac27a0ecSDave Kleikamp 4107*f4bb2981STheodore Ts'o struct inode *ext4_iget_normal(struct super_block *sb, unsigned long ino) 4108*f4bb2981STheodore Ts'o { 4109*f4bb2981STheodore Ts'o if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO) 4110*f4bb2981STheodore Ts'o return ERR_PTR(-EIO); 4111*f4bb2981STheodore Ts'o return ext4_iget(sb, ino); 4112*f4bb2981STheodore Ts'o } 4113*f4bb2981STheodore Ts'o 41140fc1b451SAneesh Kumar K.V static int ext4_inode_blocks_set(handle_t *handle, 41150fc1b451SAneesh Kumar K.V struct ext4_inode *raw_inode, 41160fc1b451SAneesh Kumar K.V struct ext4_inode_info *ei) 41170fc1b451SAneesh Kumar K.V { 41180fc1b451SAneesh Kumar K.V struct inode *inode = &(ei->vfs_inode); 41190fc1b451SAneesh Kumar K.V u64 i_blocks = inode->i_blocks; 41200fc1b451SAneesh Kumar K.V struct super_block *sb = inode->i_sb; 41210fc1b451SAneesh Kumar K.V 41220fc1b451SAneesh Kumar K.V if (i_blocks <= ~0U) { 41230fc1b451SAneesh Kumar K.V /* 41244907cb7bSAnatol Pomozov * i_blocks can be represented in a 32 bit variable 41250fc1b451SAneesh Kumar K.V * as multiple of 512 bytes 41260fc1b451SAneesh Kumar K.V */ 41278180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 41280fc1b451SAneesh Kumar K.V raw_inode->i_blocks_high = 0; 412984a8dce2SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE); 4130f287a1a5STheodore Ts'o return 0; 4131f287a1a5STheodore Ts'o } 4132f287a1a5STheodore Ts'o if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) 4133f287a1a5STheodore Ts'o return -EFBIG; 4134f287a1a5STheodore Ts'o 4135f287a1a5STheodore Ts'o if (i_blocks <= 0xffffffffffffULL) { 41360fc1b451SAneesh Kumar K.V /* 41370fc1b451SAneesh Kumar K.V * i_blocks can be represented in a 48 bit variable 41380fc1b451SAneesh Kumar K.V * as multiple of 512 bytes 41390fc1b451SAneesh Kumar K.V */ 41408180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 41410fc1b451SAneesh Kumar K.V raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32); 414284a8dce2SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE); 41430fc1b451SAneesh Kumar K.V } else { 414484a8dce2SDmitry Monakhov ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE); 41458180a562SAneesh Kumar K.V /* i_block is stored in file system block size */ 41468180a562SAneesh Kumar K.V i_blocks = i_blocks >> (inode->i_blkbits - 9); 41478180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 41488180a562SAneesh Kumar K.V raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32); 41490fc1b451SAneesh Kumar K.V } 4150f287a1a5STheodore Ts'o return 0; 41510fc1b451SAneesh Kumar K.V } 41520fc1b451SAneesh Kumar K.V 4153ac27a0ecSDave Kleikamp /* 4154ac27a0ecSDave Kleikamp * Post the struct inode info into an on-disk inode location in the 4155ac27a0ecSDave Kleikamp * buffer-cache. This gobbles the caller's reference to the 4156ac27a0ecSDave Kleikamp * buffer_head in the inode location struct. 4157ac27a0ecSDave Kleikamp * 4158ac27a0ecSDave Kleikamp * The caller must have write access to iloc->bh. 4159ac27a0ecSDave Kleikamp */ 4160617ba13bSMingming Cao static int ext4_do_update_inode(handle_t *handle, 4161ac27a0ecSDave Kleikamp struct inode *inode, 4162830156c7SFrank Mayhar struct ext4_iloc *iloc) 4163ac27a0ecSDave Kleikamp { 4164617ba13bSMingming Cao struct ext4_inode *raw_inode = ext4_raw_inode(iloc); 4165617ba13bSMingming Cao struct ext4_inode_info *ei = EXT4_I(inode); 4166ac27a0ecSDave Kleikamp struct buffer_head *bh = iloc->bh; 4167202ee5dfSTheodore Ts'o struct super_block *sb = inode->i_sb; 4168ac27a0ecSDave Kleikamp int err = 0, rc, block; 4169202ee5dfSTheodore Ts'o int need_datasync = 0, set_large_file = 0; 417008cefc7aSEric W. Biederman uid_t i_uid; 417108cefc7aSEric W. Biederman gid_t i_gid; 4172ac27a0ecSDave Kleikamp 4173202ee5dfSTheodore Ts'o spin_lock(&ei->i_raw_lock); 4174202ee5dfSTheodore Ts'o 4175202ee5dfSTheodore Ts'o /* For fields not tracked in the in-memory inode, 4176ac27a0ecSDave Kleikamp * initialise them to zero for new inodes. */ 417719f5fb7aSTheodore Ts'o if (ext4_test_inode_state(inode, EXT4_STATE_NEW)) 4178617ba13bSMingming Cao memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size); 4179ac27a0ecSDave Kleikamp 4180ff9ddf7eSJan Kara ext4_get_inode_flags(ei); 4181ac27a0ecSDave Kleikamp raw_inode->i_mode = cpu_to_le16(inode->i_mode); 418208cefc7aSEric W. Biederman i_uid = i_uid_read(inode); 418308cefc7aSEric W. Biederman i_gid = i_gid_read(inode); 4184ac27a0ecSDave Kleikamp if (!(test_opt(inode->i_sb, NO_UID32))) { 418508cefc7aSEric W. Biederman raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid)); 418608cefc7aSEric W. Biederman raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid)); 4187ac27a0ecSDave Kleikamp /* 4188ac27a0ecSDave Kleikamp * Fix up interoperability with old kernels. Otherwise, old inodes get 4189ac27a0ecSDave Kleikamp * re-used with the upper 16 bits of the uid/gid intact 4190ac27a0ecSDave Kleikamp */ 4191ac27a0ecSDave Kleikamp if (!ei->i_dtime) { 4192ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 419308cefc7aSEric W. Biederman cpu_to_le16(high_16_bits(i_uid)); 4194ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 419508cefc7aSEric W. Biederman cpu_to_le16(high_16_bits(i_gid)); 4196ac27a0ecSDave Kleikamp } else { 4197ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 0; 4198ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 0; 4199ac27a0ecSDave Kleikamp } 4200ac27a0ecSDave Kleikamp } else { 420108cefc7aSEric W. Biederman raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid)); 420208cefc7aSEric W. Biederman raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid)); 4203ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 0; 4204ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 0; 4205ac27a0ecSDave Kleikamp } 4206ac27a0ecSDave Kleikamp raw_inode->i_links_count = cpu_to_le16(inode->i_nlink); 4207ef7f3835SKalpak Shah 4208ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode); 4209ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode); 4210ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode); 4211ef7f3835SKalpak Shah EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode); 4212ef7f3835SKalpak Shah 4213bce92d56SLi Xi err = ext4_inode_blocks_set(handle, raw_inode, ei); 4214bce92d56SLi Xi if (err) { 4215202ee5dfSTheodore Ts'o spin_unlock(&ei->i_raw_lock); 42160fc1b451SAneesh Kumar K.V goto out_brelse; 4217202ee5dfSTheodore Ts'o } 4218ac27a0ecSDave Kleikamp raw_inode->i_dtime = cpu_to_le32(ei->i_dtime); 4219353eb83cSTheodore Ts'o raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF); 4220ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) 4221a1ddeb7eSBadari Pulavarty raw_inode->i_file_acl_high = 4222a1ddeb7eSBadari Pulavarty cpu_to_le16(ei->i_file_acl >> 32); 42237973c0c1SAneesh Kumar K.V raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl); 4224b71fc079SJan Kara if (ei->i_disksize != ext4_isize(raw_inode)) { 4225a48380f7SAneesh Kumar K.V ext4_isize_set(raw_inode, ei->i_disksize); 4226b71fc079SJan Kara need_datasync = 1; 4227b71fc079SJan Kara } 4228ac27a0ecSDave Kleikamp if (ei->i_disksize > 0x7fffffffULL) { 4229617ba13bSMingming Cao if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, 4230617ba13bSMingming Cao EXT4_FEATURE_RO_COMPAT_LARGE_FILE) || 4231617ba13bSMingming Cao EXT4_SB(sb)->s_es->s_rev_level == 4232202ee5dfSTheodore Ts'o cpu_to_le32(EXT4_GOOD_OLD_REV)) 4233202ee5dfSTheodore Ts'o set_large_file = 1; 4234ac27a0ecSDave Kleikamp } 4235ac27a0ecSDave Kleikamp raw_inode->i_generation = cpu_to_le32(inode->i_generation); 4236ac27a0ecSDave Kleikamp if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) { 4237ac27a0ecSDave Kleikamp if (old_valid_dev(inode->i_rdev)) { 4238ac27a0ecSDave Kleikamp raw_inode->i_block[0] = 4239ac27a0ecSDave Kleikamp cpu_to_le32(old_encode_dev(inode->i_rdev)); 4240ac27a0ecSDave Kleikamp raw_inode->i_block[1] = 0; 4241ac27a0ecSDave Kleikamp } else { 4242ac27a0ecSDave Kleikamp raw_inode->i_block[0] = 0; 4243ac27a0ecSDave Kleikamp raw_inode->i_block[1] = 4244ac27a0ecSDave Kleikamp cpu_to_le32(new_encode_dev(inode->i_rdev)); 4245ac27a0ecSDave Kleikamp raw_inode->i_block[2] = 0; 4246ac27a0ecSDave Kleikamp } 4247f19d5870STao Ma } else if (!ext4_has_inline_data(inode)) { 4248de9a55b8STheodore Ts'o for (block = 0; block < EXT4_N_BLOCKS; block++) 4249ac27a0ecSDave Kleikamp raw_inode->i_block[block] = ei->i_data[block]; 4250f19d5870STao Ma } 4251ac27a0ecSDave Kleikamp 4252ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) { 425325ec56b5SJean Noel Cordenner raw_inode->i_disk_version = cpu_to_le32(inode->i_version); 425425ec56b5SJean Noel Cordenner if (ei->i_extra_isize) { 425525ec56b5SJean Noel Cordenner if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi)) 425625ec56b5SJean Noel Cordenner raw_inode->i_version_hi = 425725ec56b5SJean Noel Cordenner cpu_to_le32(inode->i_version >> 32); 4258c4f65706STheodore Ts'o raw_inode->i_extra_isize = 4259c4f65706STheodore Ts'o cpu_to_le16(ei->i_extra_isize); 4260c4f65706STheodore Ts'o } 426125ec56b5SJean Noel Cordenner } 426225ec56b5SJean Noel Cordenner 4263814525f4SDarrick J. Wong ext4_inode_csum_set(inode, raw_inode, ei); 4264814525f4SDarrick J. Wong 4265202ee5dfSTheodore Ts'o spin_unlock(&ei->i_raw_lock); 4266202ee5dfSTheodore Ts'o 42670390131bSFrank Mayhar BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); 426873b50c1cSCurt Wohlgemuth rc = ext4_handle_dirty_metadata(handle, NULL, bh); 4269ac27a0ecSDave Kleikamp if (!err) 4270ac27a0ecSDave Kleikamp err = rc; 427119f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_NEW); 4272202ee5dfSTheodore Ts'o if (set_large_file) { 42735d601255Sliang xie BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access"); 4274202ee5dfSTheodore Ts'o err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh); 4275202ee5dfSTheodore Ts'o if (err) 4276202ee5dfSTheodore Ts'o goto out_brelse; 4277202ee5dfSTheodore Ts'o ext4_update_dynamic_rev(sb); 4278202ee5dfSTheodore Ts'o EXT4_SET_RO_COMPAT_FEATURE(sb, 4279202ee5dfSTheodore Ts'o EXT4_FEATURE_RO_COMPAT_LARGE_FILE); 4280202ee5dfSTheodore Ts'o ext4_handle_sync(handle); 4281202ee5dfSTheodore Ts'o err = ext4_handle_dirty_super(handle, sb); 4282202ee5dfSTheodore Ts'o } 4283b71fc079SJan Kara ext4_update_inode_fsync_trans(handle, inode, need_datasync); 4284ac27a0ecSDave Kleikamp out_brelse: 4285ac27a0ecSDave Kleikamp brelse(bh); 4286617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 4287ac27a0ecSDave Kleikamp return err; 4288ac27a0ecSDave Kleikamp } 4289ac27a0ecSDave Kleikamp 4290ac27a0ecSDave Kleikamp /* 4291617ba13bSMingming Cao * ext4_write_inode() 4292ac27a0ecSDave Kleikamp * 4293ac27a0ecSDave Kleikamp * We are called from a few places: 4294ac27a0ecSDave Kleikamp * 429587f7e416STheodore Ts'o * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files. 4296ac27a0ecSDave Kleikamp * Here, there will be no transaction running. We wait for any running 42974907cb7bSAnatol Pomozov * transaction to commit. 4298ac27a0ecSDave Kleikamp * 429987f7e416STheodore Ts'o * - Within flush work (sys_sync(), kupdate and such). 430087f7e416STheodore Ts'o * We wait on commit, if told to. 4301ac27a0ecSDave Kleikamp * 430287f7e416STheodore Ts'o * - Within iput_final() -> write_inode_now() 430387f7e416STheodore Ts'o * We wait on commit, if told to. 4304ac27a0ecSDave Kleikamp * 4305ac27a0ecSDave Kleikamp * In all cases it is actually safe for us to return without doing anything, 4306ac27a0ecSDave Kleikamp * because the inode has been copied into a raw inode buffer in 430787f7e416STheodore Ts'o * ext4_mark_inode_dirty(). This is a correctness thing for WB_SYNC_ALL 430887f7e416STheodore Ts'o * writeback. 4309ac27a0ecSDave Kleikamp * 4310ac27a0ecSDave Kleikamp * Note that we are absolutely dependent upon all inode dirtiers doing the 4311ac27a0ecSDave Kleikamp * right thing: they *must* call mark_inode_dirty() after dirtying info in 4312ac27a0ecSDave Kleikamp * which we are interested. 4313ac27a0ecSDave Kleikamp * 4314ac27a0ecSDave Kleikamp * It would be a bug for them to not do this. The code: 4315ac27a0ecSDave Kleikamp * 4316ac27a0ecSDave Kleikamp * mark_inode_dirty(inode) 4317ac27a0ecSDave Kleikamp * stuff(); 4318ac27a0ecSDave Kleikamp * inode->i_size = expr; 4319ac27a0ecSDave Kleikamp * 432087f7e416STheodore Ts'o * is in error because write_inode() could occur while `stuff()' is running, 432187f7e416STheodore Ts'o * and the new i_size will be lost. Plus the inode will no longer be on the 432287f7e416STheodore Ts'o * superblock's dirty inode list. 4323ac27a0ecSDave Kleikamp */ 4324a9185b41SChristoph Hellwig int ext4_write_inode(struct inode *inode, struct writeback_control *wbc) 4325ac27a0ecSDave Kleikamp { 432691ac6f43SFrank Mayhar int err; 432791ac6f43SFrank Mayhar 432887f7e416STheodore Ts'o if (WARN_ON_ONCE(current->flags & PF_MEMALLOC)) 4329ac27a0ecSDave Kleikamp return 0; 4330ac27a0ecSDave Kleikamp 433191ac6f43SFrank Mayhar if (EXT4_SB(inode->i_sb)->s_journal) { 4332617ba13bSMingming Cao if (ext4_journal_current_handle()) { 4333b38bd33aSMingming Cao jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n"); 4334ac27a0ecSDave Kleikamp dump_stack(); 4335ac27a0ecSDave Kleikamp return -EIO; 4336ac27a0ecSDave Kleikamp } 4337ac27a0ecSDave Kleikamp 433810542c22SJan Kara /* 433910542c22SJan Kara * No need to force transaction in WB_SYNC_NONE mode. Also 434010542c22SJan Kara * ext4_sync_fs() will force the commit after everything is 434110542c22SJan Kara * written. 434210542c22SJan Kara */ 434310542c22SJan Kara if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync) 4344ac27a0ecSDave Kleikamp return 0; 4345ac27a0ecSDave Kleikamp 434691ac6f43SFrank Mayhar err = ext4_force_commit(inode->i_sb); 434791ac6f43SFrank Mayhar } else { 434891ac6f43SFrank Mayhar struct ext4_iloc iloc; 434991ac6f43SFrank Mayhar 43508b472d73SCurt Wohlgemuth err = __ext4_get_inode_loc(inode, &iloc, 0); 435191ac6f43SFrank Mayhar if (err) 435291ac6f43SFrank Mayhar return err; 435310542c22SJan Kara /* 435410542c22SJan Kara * sync(2) will flush the whole buffer cache. No need to do 435510542c22SJan Kara * it here separately for each inode. 435610542c22SJan Kara */ 435710542c22SJan Kara if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync) 4358830156c7SFrank Mayhar sync_dirty_buffer(iloc.bh); 4359830156c7SFrank Mayhar if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) { 4360c398eda0STheodore Ts'o EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr, 4361c398eda0STheodore Ts'o "IO error syncing inode"); 4362830156c7SFrank Mayhar err = -EIO; 4363830156c7SFrank Mayhar } 4364fd2dd9fbSCurt Wohlgemuth brelse(iloc.bh); 436591ac6f43SFrank Mayhar } 436691ac6f43SFrank Mayhar return err; 4367ac27a0ecSDave Kleikamp } 4368ac27a0ecSDave Kleikamp 4369ac27a0ecSDave Kleikamp /* 437053e87268SJan Kara * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate 437153e87268SJan Kara * buffers that are attached to a page stradding i_size and are undergoing 437253e87268SJan Kara * commit. In that case we have to wait for commit to finish and try again. 437353e87268SJan Kara */ 437453e87268SJan Kara static void ext4_wait_for_tail_page_commit(struct inode *inode) 437553e87268SJan Kara { 437653e87268SJan Kara struct page *page; 437753e87268SJan Kara unsigned offset; 437853e87268SJan Kara journal_t *journal = EXT4_SB(inode->i_sb)->s_journal; 437953e87268SJan Kara tid_t commit_tid = 0; 438053e87268SJan Kara int ret; 438153e87268SJan Kara 438253e87268SJan Kara offset = inode->i_size & (PAGE_CACHE_SIZE - 1); 438353e87268SJan Kara /* 438453e87268SJan Kara * All buffers in the last page remain valid? Then there's nothing to 438553e87268SJan Kara * do. We do the check mainly to optimize the common PAGE_CACHE_SIZE == 438653e87268SJan Kara * blocksize case 438753e87268SJan Kara */ 438853e87268SJan Kara if (offset > PAGE_CACHE_SIZE - (1 << inode->i_blkbits)) 438953e87268SJan Kara return; 439053e87268SJan Kara while (1) { 439153e87268SJan Kara page = find_lock_page(inode->i_mapping, 439253e87268SJan Kara inode->i_size >> PAGE_CACHE_SHIFT); 439353e87268SJan Kara if (!page) 439453e87268SJan Kara return; 4395ca99fdd2SLukas Czerner ret = __ext4_journalled_invalidatepage(page, offset, 4396ca99fdd2SLukas Czerner PAGE_CACHE_SIZE - offset); 439753e87268SJan Kara unlock_page(page); 439853e87268SJan Kara page_cache_release(page); 439953e87268SJan Kara if (ret != -EBUSY) 440053e87268SJan Kara return; 440153e87268SJan Kara commit_tid = 0; 440253e87268SJan Kara read_lock(&journal->j_state_lock); 440353e87268SJan Kara if (journal->j_committing_transaction) 440453e87268SJan Kara commit_tid = journal->j_committing_transaction->t_tid; 440553e87268SJan Kara read_unlock(&journal->j_state_lock); 440653e87268SJan Kara if (commit_tid) 440753e87268SJan Kara jbd2_log_wait_commit(journal, commit_tid); 440853e87268SJan Kara } 440953e87268SJan Kara } 441053e87268SJan Kara 441153e87268SJan Kara /* 4412617ba13bSMingming Cao * ext4_setattr() 4413ac27a0ecSDave Kleikamp * 4414ac27a0ecSDave Kleikamp * Called from notify_change. 4415ac27a0ecSDave Kleikamp * 4416ac27a0ecSDave Kleikamp * We want to trap VFS attempts to truncate the file as soon as 4417ac27a0ecSDave Kleikamp * possible. In particular, we want to make sure that when the VFS 4418ac27a0ecSDave Kleikamp * shrinks i_size, we put the inode on the orphan list and modify 4419ac27a0ecSDave Kleikamp * i_disksize immediately, so that during the subsequent flushing of 4420ac27a0ecSDave Kleikamp * dirty pages and freeing of disk blocks, we can guarantee that any 4421ac27a0ecSDave Kleikamp * commit will leave the blocks being flushed in an unused state on 4422ac27a0ecSDave Kleikamp * disk. (On recovery, the inode will get truncated and the blocks will 4423ac27a0ecSDave Kleikamp * be freed, so we have a strong guarantee that no future commit will 4424ac27a0ecSDave Kleikamp * leave these blocks visible to the user.) 4425ac27a0ecSDave Kleikamp * 4426678aaf48SJan Kara * Another thing we have to assure is that if we are in ordered mode 4427678aaf48SJan Kara * and inode is still attached to the committing transaction, we must 4428678aaf48SJan Kara * we start writeout of all the dirty pages which are being truncated. 4429678aaf48SJan Kara * This way we are sure that all the data written in the previous 4430678aaf48SJan Kara * transaction are already on disk (truncate waits for pages under 4431678aaf48SJan Kara * writeback). 4432678aaf48SJan Kara * 4433678aaf48SJan Kara * Called with inode->i_mutex down. 4434ac27a0ecSDave Kleikamp */ 4435617ba13bSMingming Cao int ext4_setattr(struct dentry *dentry, struct iattr *attr) 4436ac27a0ecSDave Kleikamp { 4437ac27a0ecSDave Kleikamp struct inode *inode = dentry->d_inode; 4438ac27a0ecSDave Kleikamp int error, rc = 0; 44393d287de3SDmitry Monakhov int orphan = 0; 4440ac27a0ecSDave Kleikamp const unsigned int ia_valid = attr->ia_valid; 4441ac27a0ecSDave Kleikamp 4442ac27a0ecSDave Kleikamp error = inode_change_ok(inode, attr); 4443ac27a0ecSDave Kleikamp if (error) 4444ac27a0ecSDave Kleikamp return error; 4445ac27a0ecSDave Kleikamp 444612755627SDmitry Monakhov if (is_quota_modification(inode, attr)) 4447871a2931SChristoph Hellwig dquot_initialize(inode); 444808cefc7aSEric W. Biederman if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) || 444908cefc7aSEric W. Biederman (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) { 4450ac27a0ecSDave Kleikamp handle_t *handle; 4451ac27a0ecSDave Kleikamp 4452ac27a0ecSDave Kleikamp /* (user+group)*(old+new) structure, inode write (sb, 4453ac27a0ecSDave Kleikamp * inode block, ? - but truncate inode update has it) */ 44549924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_QUOTA, 44559924a92aSTheodore Ts'o (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) + 4456194074acSDmitry Monakhov EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3); 4457ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 4458ac27a0ecSDave Kleikamp error = PTR_ERR(handle); 4459ac27a0ecSDave Kleikamp goto err_out; 4460ac27a0ecSDave Kleikamp } 4461b43fa828SChristoph Hellwig error = dquot_transfer(inode, attr); 4462ac27a0ecSDave Kleikamp if (error) { 4463617ba13bSMingming Cao ext4_journal_stop(handle); 4464ac27a0ecSDave Kleikamp return error; 4465ac27a0ecSDave Kleikamp } 4466ac27a0ecSDave Kleikamp /* Update corresponding info in inode so that everything is in 4467ac27a0ecSDave Kleikamp * one transaction */ 4468ac27a0ecSDave Kleikamp if (attr->ia_valid & ATTR_UID) 4469ac27a0ecSDave Kleikamp inode->i_uid = attr->ia_uid; 4470ac27a0ecSDave Kleikamp if (attr->ia_valid & ATTR_GID) 4471ac27a0ecSDave Kleikamp inode->i_gid = attr->ia_gid; 4472617ba13bSMingming Cao error = ext4_mark_inode_dirty(handle, inode); 4473617ba13bSMingming Cao ext4_journal_stop(handle); 4474ac27a0ecSDave Kleikamp } 4475ac27a0ecSDave Kleikamp 44765208386cSJan Kara if (attr->ia_valid & ATTR_SIZE && attr->ia_size != inode->i_size) { 44775208386cSJan Kara handle_t *handle; 4478562c72aaSChristoph Hellwig 447912e9b892SDmitry Monakhov if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) { 4480e2b46574SEric Sandeen struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 4481e2b46574SEric Sandeen 44820c095c7fSTheodore Ts'o if (attr->ia_size > sbi->s_bitmap_maxbytes) 44830c095c7fSTheodore Ts'o return -EFBIG; 4484e2b46574SEric Sandeen } 4485dff6efc3SChristoph Hellwig 4486dff6efc3SChristoph Hellwig if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size) 4487dff6efc3SChristoph Hellwig inode_inc_iversion(inode); 4488dff6efc3SChristoph Hellwig 4489ac27a0ecSDave Kleikamp if (S_ISREG(inode->i_mode) && 4490072bd7eaSTheodore Ts'o (attr->ia_size < inode->i_size)) { 44915208386cSJan Kara if (ext4_should_order_data(inode)) { 44925208386cSJan Kara error = ext4_begin_ordered_truncate(inode, 44935208386cSJan Kara attr->ia_size); 44945208386cSJan Kara if (error) 44955208386cSJan Kara goto err_out; 44965208386cSJan Kara } 44979924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 3); 4498ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 4499ac27a0ecSDave Kleikamp error = PTR_ERR(handle); 4500ac27a0ecSDave Kleikamp goto err_out; 4501ac27a0ecSDave Kleikamp } 45023d287de3SDmitry Monakhov if (ext4_handle_valid(handle)) { 4503617ba13bSMingming Cao error = ext4_orphan_add(handle, inode); 45043d287de3SDmitry Monakhov orphan = 1; 45053d287de3SDmitry Monakhov } 450690e775b7SJan Kara down_write(&EXT4_I(inode)->i_data_sem); 4507617ba13bSMingming Cao EXT4_I(inode)->i_disksize = attr->ia_size; 4508617ba13bSMingming Cao rc = ext4_mark_inode_dirty(handle, inode); 4509ac27a0ecSDave Kleikamp if (!error) 4510ac27a0ecSDave Kleikamp error = rc; 451190e775b7SJan Kara /* 451290e775b7SJan Kara * We have to update i_size under i_data_sem together 451390e775b7SJan Kara * with i_disksize to avoid races with writeback code 451490e775b7SJan Kara * running ext4_wb_update_i_disksize(). 451590e775b7SJan Kara */ 451690e775b7SJan Kara if (!error) 451790e775b7SJan Kara i_size_write(inode, attr->ia_size); 451890e775b7SJan Kara up_write(&EXT4_I(inode)->i_data_sem); 4519617ba13bSMingming Cao ext4_journal_stop(handle); 4520678aaf48SJan Kara if (error) { 4521678aaf48SJan Kara ext4_orphan_del(NULL, inode); 4522678aaf48SJan Kara goto err_out; 4523678aaf48SJan Kara } 4524d6320cbfSJan Kara } else { 4525d6320cbfSJan Kara loff_t oldsize = inode->i_size; 4526d6320cbfSJan Kara 452753e87268SJan Kara i_size_write(inode, attr->ia_size); 4528d6320cbfSJan Kara pagecache_isize_extended(inode, oldsize, inode->i_size); 4529d6320cbfSJan Kara } 453090e775b7SJan Kara 453153e87268SJan Kara /* 453253e87268SJan Kara * Blocks are going to be removed from the inode. Wait 453353e87268SJan Kara * for dio in flight. Temporarily disable 453453e87268SJan Kara * dioread_nolock to prevent livelock. 453553e87268SJan Kara */ 45361b65007eSDmitry Monakhov if (orphan) { 453753e87268SJan Kara if (!ext4_should_journal_data(inode)) { 45381b65007eSDmitry Monakhov ext4_inode_block_unlocked_dio(inode); 45391c9114f9SDmitry Monakhov inode_dio_wait(inode); 45401b65007eSDmitry Monakhov ext4_inode_resume_unlocked_dio(inode); 454153e87268SJan Kara } else 454253e87268SJan Kara ext4_wait_for_tail_page_commit(inode); 45431b65007eSDmitry Monakhov } 454453e87268SJan Kara /* 454553e87268SJan Kara * Truncate pagecache after we've waited for commit 454653e87268SJan Kara * in data=journal mode to make pages freeable. 454753e87268SJan Kara */ 45487caef267SKirill A. Shutemov truncate_pagecache(inode, inode->i_size); 45491c9114f9SDmitry Monakhov } 45505208386cSJan Kara /* 45515208386cSJan Kara * We want to call ext4_truncate() even if attr->ia_size == 45525208386cSJan Kara * inode->i_size for cases like truncation of fallocated space 45535208386cSJan Kara */ 45545208386cSJan Kara if (attr->ia_valid & ATTR_SIZE) 4555072bd7eaSTheodore Ts'o ext4_truncate(inode); 4556ac27a0ecSDave Kleikamp 45571025774cSChristoph Hellwig if (!rc) { 45581025774cSChristoph Hellwig setattr_copy(inode, attr); 45591025774cSChristoph Hellwig mark_inode_dirty(inode); 45601025774cSChristoph Hellwig } 45611025774cSChristoph Hellwig 45621025774cSChristoph Hellwig /* 45631025774cSChristoph Hellwig * If the call to ext4_truncate failed to get a transaction handle at 45641025774cSChristoph Hellwig * all, we need to clean up the in-core orphan list manually. 45651025774cSChristoph Hellwig */ 45663d287de3SDmitry Monakhov if (orphan && inode->i_nlink) 4567617ba13bSMingming Cao ext4_orphan_del(NULL, inode); 4568ac27a0ecSDave Kleikamp 4569ac27a0ecSDave Kleikamp if (!rc && (ia_valid & ATTR_MODE)) 457064e178a7SChristoph Hellwig rc = posix_acl_chmod(inode, inode->i_mode); 4571ac27a0ecSDave Kleikamp 4572ac27a0ecSDave Kleikamp err_out: 4573617ba13bSMingming Cao ext4_std_error(inode->i_sb, error); 4574ac27a0ecSDave Kleikamp if (!error) 4575ac27a0ecSDave Kleikamp error = rc; 4576ac27a0ecSDave Kleikamp return error; 4577ac27a0ecSDave Kleikamp } 4578ac27a0ecSDave Kleikamp 45793e3398a0SMingming Cao int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry, 45803e3398a0SMingming Cao struct kstat *stat) 45813e3398a0SMingming Cao { 45823e3398a0SMingming Cao struct inode *inode; 45838af8eeccSJan Kara unsigned long long delalloc_blocks; 45843e3398a0SMingming Cao 45853e3398a0SMingming Cao inode = dentry->d_inode; 45863e3398a0SMingming Cao generic_fillattr(inode, stat); 45873e3398a0SMingming Cao 45883e3398a0SMingming Cao /* 45899206c561SAndreas Dilger * If there is inline data in the inode, the inode will normally not 45909206c561SAndreas Dilger * have data blocks allocated (it may have an external xattr block). 45919206c561SAndreas Dilger * Report at least one sector for such files, so tools like tar, rsync, 45929206c561SAndreas Dilger * others doen't incorrectly think the file is completely sparse. 45939206c561SAndreas Dilger */ 45949206c561SAndreas Dilger if (unlikely(ext4_has_inline_data(inode))) 45959206c561SAndreas Dilger stat->blocks += (stat->size + 511) >> 9; 45969206c561SAndreas Dilger 45979206c561SAndreas Dilger /* 45983e3398a0SMingming Cao * We can't update i_blocks if the block allocation is delayed 45993e3398a0SMingming Cao * otherwise in the case of system crash before the real block 46003e3398a0SMingming Cao * allocation is done, we will have i_blocks inconsistent with 46013e3398a0SMingming Cao * on-disk file blocks. 46023e3398a0SMingming Cao * We always keep i_blocks updated together with real 46033e3398a0SMingming Cao * allocation. But to not confuse with user, stat 46043e3398a0SMingming Cao * will return the blocks that include the delayed allocation 46053e3398a0SMingming Cao * blocks for this file. 46063e3398a0SMingming Cao */ 460796607551STao Ma delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb), 460896607551STao Ma EXT4_I(inode)->i_reserved_data_blocks); 46098af8eeccSJan Kara stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9); 46103e3398a0SMingming Cao return 0; 46113e3398a0SMingming Cao } 4612ac27a0ecSDave Kleikamp 4613fffb2739SJan Kara static int ext4_index_trans_blocks(struct inode *inode, int lblocks, 4614fffb2739SJan Kara int pextents) 4615a02908f1SMingming Cao { 461612e9b892SDmitry Monakhov if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) 4617fffb2739SJan Kara return ext4_ind_trans_blocks(inode, lblocks); 4618fffb2739SJan Kara return ext4_ext_index_trans_blocks(inode, pextents); 4619a02908f1SMingming Cao } 4620ac51d837STheodore Ts'o 4621a02908f1SMingming Cao /* 4622a02908f1SMingming Cao * Account for index blocks, block groups bitmaps and block group 4623a02908f1SMingming Cao * descriptor blocks if modify datablocks and index blocks 4624a02908f1SMingming Cao * worse case, the indexs blocks spread over different block groups 4625a02908f1SMingming Cao * 4626a02908f1SMingming Cao * If datablocks are discontiguous, they are possible to spread over 46274907cb7bSAnatol Pomozov * different block groups too. If they are contiguous, with flexbg, 4628a02908f1SMingming Cao * they could still across block group boundary. 4629a02908f1SMingming Cao * 4630a02908f1SMingming Cao * Also account for superblock, inode, quota and xattr blocks 4631a02908f1SMingming Cao */ 4632fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks, 4633fffb2739SJan Kara int pextents) 4634a02908f1SMingming Cao { 46358df9675fSTheodore Ts'o ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb); 46368df9675fSTheodore Ts'o int gdpblocks; 4637a02908f1SMingming Cao int idxblocks; 4638a02908f1SMingming Cao int ret = 0; 4639a02908f1SMingming Cao 4640a02908f1SMingming Cao /* 4641fffb2739SJan Kara * How many index blocks need to touch to map @lblocks logical blocks 4642fffb2739SJan Kara * to @pextents physical extents? 4643a02908f1SMingming Cao */ 4644fffb2739SJan Kara idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents); 4645a02908f1SMingming Cao 4646a02908f1SMingming Cao ret = idxblocks; 4647a02908f1SMingming Cao 4648a02908f1SMingming Cao /* 4649a02908f1SMingming Cao * Now let's see how many group bitmaps and group descriptors need 4650a02908f1SMingming Cao * to account 4651a02908f1SMingming Cao */ 4652fffb2739SJan Kara groups = idxblocks + pextents; 4653a02908f1SMingming Cao gdpblocks = groups; 46548df9675fSTheodore Ts'o if (groups > ngroups) 46558df9675fSTheodore Ts'o groups = ngroups; 4656a02908f1SMingming Cao if (groups > EXT4_SB(inode->i_sb)->s_gdb_count) 4657a02908f1SMingming Cao gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count; 4658a02908f1SMingming Cao 4659a02908f1SMingming Cao /* bitmaps and block group descriptor blocks */ 4660a02908f1SMingming Cao ret += groups + gdpblocks; 4661a02908f1SMingming Cao 4662a02908f1SMingming Cao /* Blocks for super block, inode, quota and xattr blocks */ 4663a02908f1SMingming Cao ret += EXT4_META_TRANS_BLOCKS(inode->i_sb); 4664ac27a0ecSDave Kleikamp 4665ac27a0ecSDave Kleikamp return ret; 4666ac27a0ecSDave Kleikamp } 4667ac27a0ecSDave Kleikamp 4668ac27a0ecSDave Kleikamp /* 466925985edcSLucas De Marchi * Calculate the total number of credits to reserve to fit 4670f3bd1f3fSMingming Cao * the modification of a single pages into a single transaction, 4671f3bd1f3fSMingming Cao * which may include multiple chunks of block allocations. 4672a02908f1SMingming Cao * 4673525f4ed8SMingming Cao * This could be called via ext4_write_begin() 4674a02908f1SMingming Cao * 4675525f4ed8SMingming Cao * We need to consider the worse case, when 4676a02908f1SMingming Cao * one new block per extent. 4677a02908f1SMingming Cao */ 4678a02908f1SMingming Cao int ext4_writepage_trans_blocks(struct inode *inode) 4679a02908f1SMingming Cao { 4680a02908f1SMingming Cao int bpp = ext4_journal_blocks_per_page(inode); 4681a02908f1SMingming Cao int ret; 4682a02908f1SMingming Cao 4683fffb2739SJan Kara ret = ext4_meta_trans_blocks(inode, bpp, bpp); 4684a02908f1SMingming Cao 4685a02908f1SMingming Cao /* Account for data blocks for journalled mode */ 4686a02908f1SMingming Cao if (ext4_should_journal_data(inode)) 4687a02908f1SMingming Cao ret += bpp; 4688a02908f1SMingming Cao return ret; 4689a02908f1SMingming Cao } 4690f3bd1f3fSMingming Cao 4691f3bd1f3fSMingming Cao /* 4692f3bd1f3fSMingming Cao * Calculate the journal credits for a chunk of data modification. 4693f3bd1f3fSMingming Cao * 4694f3bd1f3fSMingming Cao * This is called from DIO, fallocate or whoever calling 469579e83036SEric Sandeen * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks. 4696f3bd1f3fSMingming Cao * 4697f3bd1f3fSMingming Cao * journal buffers for data blocks are not included here, as DIO 4698f3bd1f3fSMingming Cao * and fallocate do no need to journal data buffers. 4699f3bd1f3fSMingming Cao */ 4700f3bd1f3fSMingming Cao int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks) 4701f3bd1f3fSMingming Cao { 4702f3bd1f3fSMingming Cao return ext4_meta_trans_blocks(inode, nrblocks, 1); 4703f3bd1f3fSMingming Cao } 4704f3bd1f3fSMingming Cao 4705a02908f1SMingming Cao /* 4706617ba13bSMingming Cao * The caller must have previously called ext4_reserve_inode_write(). 4707ac27a0ecSDave Kleikamp * Give this, we know that the caller already has write access to iloc->bh. 4708ac27a0ecSDave Kleikamp */ 4709617ba13bSMingming Cao int ext4_mark_iloc_dirty(handle_t *handle, 4710617ba13bSMingming Cao struct inode *inode, struct ext4_iloc *iloc) 4711ac27a0ecSDave Kleikamp { 4712ac27a0ecSDave Kleikamp int err = 0; 4713ac27a0ecSDave Kleikamp 4714c64db50eSTheodore Ts'o if (IS_I_VERSION(inode)) 471525ec56b5SJean Noel Cordenner inode_inc_iversion(inode); 471625ec56b5SJean Noel Cordenner 4717ac27a0ecSDave Kleikamp /* the do_update_inode consumes one bh->b_count */ 4718ac27a0ecSDave Kleikamp get_bh(iloc->bh); 4719ac27a0ecSDave Kleikamp 4720dab291afSMingming Cao /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */ 4721830156c7SFrank Mayhar err = ext4_do_update_inode(handle, inode, iloc); 4722ac27a0ecSDave Kleikamp put_bh(iloc->bh); 4723ac27a0ecSDave Kleikamp return err; 4724ac27a0ecSDave Kleikamp } 4725ac27a0ecSDave Kleikamp 4726ac27a0ecSDave Kleikamp /* 4727ac27a0ecSDave Kleikamp * On success, We end up with an outstanding reference count against 4728ac27a0ecSDave Kleikamp * iloc->bh. This _must_ be cleaned up later. 4729ac27a0ecSDave Kleikamp */ 4730ac27a0ecSDave Kleikamp 4731ac27a0ecSDave Kleikamp int 4732617ba13bSMingming Cao ext4_reserve_inode_write(handle_t *handle, struct inode *inode, 4733617ba13bSMingming Cao struct ext4_iloc *iloc) 4734ac27a0ecSDave Kleikamp { 47350390131bSFrank Mayhar int err; 47360390131bSFrank Mayhar 4737617ba13bSMingming Cao err = ext4_get_inode_loc(inode, iloc); 4738ac27a0ecSDave Kleikamp if (!err) { 4739ac27a0ecSDave Kleikamp BUFFER_TRACE(iloc->bh, "get_write_access"); 4740617ba13bSMingming Cao err = ext4_journal_get_write_access(handle, iloc->bh); 4741ac27a0ecSDave Kleikamp if (err) { 4742ac27a0ecSDave Kleikamp brelse(iloc->bh); 4743ac27a0ecSDave Kleikamp iloc->bh = NULL; 4744ac27a0ecSDave Kleikamp } 4745ac27a0ecSDave Kleikamp } 4746617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 4747ac27a0ecSDave Kleikamp return err; 4748ac27a0ecSDave Kleikamp } 4749ac27a0ecSDave Kleikamp 4750ac27a0ecSDave Kleikamp /* 47516dd4ee7cSKalpak Shah * Expand an inode by new_extra_isize bytes. 47526dd4ee7cSKalpak Shah * Returns 0 on success or negative error number on failure. 47536dd4ee7cSKalpak Shah */ 47541d03ec98SAneesh Kumar K.V static int ext4_expand_extra_isize(struct inode *inode, 47551d03ec98SAneesh Kumar K.V unsigned int new_extra_isize, 47561d03ec98SAneesh Kumar K.V struct ext4_iloc iloc, 47571d03ec98SAneesh Kumar K.V handle_t *handle) 47586dd4ee7cSKalpak Shah { 47596dd4ee7cSKalpak Shah struct ext4_inode *raw_inode; 47606dd4ee7cSKalpak Shah struct ext4_xattr_ibody_header *header; 47616dd4ee7cSKalpak Shah 47626dd4ee7cSKalpak Shah if (EXT4_I(inode)->i_extra_isize >= new_extra_isize) 47636dd4ee7cSKalpak Shah return 0; 47646dd4ee7cSKalpak Shah 47656dd4ee7cSKalpak Shah raw_inode = ext4_raw_inode(&iloc); 47666dd4ee7cSKalpak Shah 47676dd4ee7cSKalpak Shah header = IHDR(inode, raw_inode); 47686dd4ee7cSKalpak Shah 47696dd4ee7cSKalpak Shah /* No extended attributes present */ 477019f5fb7aSTheodore Ts'o if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) || 47716dd4ee7cSKalpak Shah header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) { 47726dd4ee7cSKalpak Shah memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0, 47736dd4ee7cSKalpak Shah new_extra_isize); 47746dd4ee7cSKalpak Shah EXT4_I(inode)->i_extra_isize = new_extra_isize; 47756dd4ee7cSKalpak Shah return 0; 47766dd4ee7cSKalpak Shah } 47776dd4ee7cSKalpak Shah 47786dd4ee7cSKalpak Shah /* try to expand with EAs present */ 47796dd4ee7cSKalpak Shah return ext4_expand_extra_isize_ea(inode, new_extra_isize, 47806dd4ee7cSKalpak Shah raw_inode, handle); 47816dd4ee7cSKalpak Shah } 47826dd4ee7cSKalpak Shah 47836dd4ee7cSKalpak Shah /* 4784ac27a0ecSDave Kleikamp * What we do here is to mark the in-core inode as clean with respect to inode 4785ac27a0ecSDave Kleikamp * dirtiness (it may still be data-dirty). 4786ac27a0ecSDave Kleikamp * This means that the in-core inode may be reaped by prune_icache 4787ac27a0ecSDave Kleikamp * without having to perform any I/O. This is a very good thing, 4788ac27a0ecSDave Kleikamp * because *any* task may call prune_icache - even ones which 4789ac27a0ecSDave Kleikamp * have a transaction open against a different journal. 4790ac27a0ecSDave Kleikamp * 4791ac27a0ecSDave Kleikamp * Is this cheating? Not really. Sure, we haven't written the 4792ac27a0ecSDave Kleikamp * inode out, but prune_icache isn't a user-visible syncing function. 4793ac27a0ecSDave Kleikamp * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync) 4794ac27a0ecSDave Kleikamp * we start and wait on commits. 4795ac27a0ecSDave Kleikamp */ 4796617ba13bSMingming Cao int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode) 4797ac27a0ecSDave Kleikamp { 4798617ba13bSMingming Cao struct ext4_iloc iloc; 47996dd4ee7cSKalpak Shah struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 48006dd4ee7cSKalpak Shah static unsigned int mnt_count; 48016dd4ee7cSKalpak Shah int err, ret; 4802ac27a0ecSDave Kleikamp 4803ac27a0ecSDave Kleikamp might_sleep(); 48047ff9c073STheodore Ts'o trace_ext4_mark_inode_dirty(inode, _RET_IP_); 4805617ba13bSMingming Cao err = ext4_reserve_inode_write(handle, inode, &iloc); 48060390131bSFrank Mayhar if (ext4_handle_valid(handle) && 48070390131bSFrank Mayhar EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize && 480819f5fb7aSTheodore Ts'o !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) { 48096dd4ee7cSKalpak Shah /* 48106dd4ee7cSKalpak Shah * We need extra buffer credits since we may write into EA block 48116dd4ee7cSKalpak Shah * with this same handle. If journal_extend fails, then it will 48126dd4ee7cSKalpak Shah * only result in a minor loss of functionality for that inode. 48136dd4ee7cSKalpak Shah * If this is felt to be critical, then e2fsck should be run to 48146dd4ee7cSKalpak Shah * force a large enough s_min_extra_isize. 48156dd4ee7cSKalpak Shah */ 48166dd4ee7cSKalpak Shah if ((jbd2_journal_extend(handle, 48176dd4ee7cSKalpak Shah EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) { 48186dd4ee7cSKalpak Shah ret = ext4_expand_extra_isize(inode, 48196dd4ee7cSKalpak Shah sbi->s_want_extra_isize, 48206dd4ee7cSKalpak Shah iloc, handle); 48216dd4ee7cSKalpak Shah if (ret) { 482219f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, 482319f5fb7aSTheodore Ts'o EXT4_STATE_NO_EXPAND); 4824c1bddad9SAneesh Kumar K.V if (mnt_count != 4825c1bddad9SAneesh Kumar K.V le16_to_cpu(sbi->s_es->s_mnt_count)) { 482612062dddSEric Sandeen ext4_warning(inode->i_sb, 48276dd4ee7cSKalpak Shah "Unable to expand inode %lu. Delete" 48286dd4ee7cSKalpak Shah " some EAs or run e2fsck.", 48296dd4ee7cSKalpak Shah inode->i_ino); 4830c1bddad9SAneesh Kumar K.V mnt_count = 4831c1bddad9SAneesh Kumar K.V le16_to_cpu(sbi->s_es->s_mnt_count); 48326dd4ee7cSKalpak Shah } 48336dd4ee7cSKalpak Shah } 48346dd4ee7cSKalpak Shah } 48356dd4ee7cSKalpak Shah } 4836ac27a0ecSDave Kleikamp if (!err) 4837617ba13bSMingming Cao err = ext4_mark_iloc_dirty(handle, inode, &iloc); 4838ac27a0ecSDave Kleikamp return err; 4839ac27a0ecSDave Kleikamp } 4840ac27a0ecSDave Kleikamp 4841ac27a0ecSDave Kleikamp /* 4842617ba13bSMingming Cao * ext4_dirty_inode() is called from __mark_inode_dirty() 4843ac27a0ecSDave Kleikamp * 4844ac27a0ecSDave Kleikamp * We're really interested in the case where a file is being extended. 4845ac27a0ecSDave Kleikamp * i_size has been changed by generic_commit_write() and we thus need 4846ac27a0ecSDave Kleikamp * to include the updated inode in the current transaction. 4847ac27a0ecSDave Kleikamp * 48485dd4056dSChristoph Hellwig * Also, dquot_alloc_block() will always dirty the inode when blocks 4849ac27a0ecSDave Kleikamp * are allocated to the file. 4850ac27a0ecSDave Kleikamp * 4851ac27a0ecSDave Kleikamp * If the inode is marked synchronous, we don't honour that here - doing 4852ac27a0ecSDave Kleikamp * so would cause a commit on atime updates, which we don't bother doing. 4853ac27a0ecSDave Kleikamp * We handle synchronous inodes at the highest possible level. 4854ac27a0ecSDave Kleikamp */ 4855aa385729SChristoph Hellwig void ext4_dirty_inode(struct inode *inode, int flags) 4856ac27a0ecSDave Kleikamp { 4857ac27a0ecSDave Kleikamp handle_t *handle; 4858ac27a0ecSDave Kleikamp 48599924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 2); 4860ac27a0ecSDave Kleikamp if (IS_ERR(handle)) 4861ac27a0ecSDave Kleikamp goto out; 4862f3dc272fSCurt Wohlgemuth 4863617ba13bSMingming Cao ext4_mark_inode_dirty(handle, inode); 4864f3dc272fSCurt Wohlgemuth 4865617ba13bSMingming Cao ext4_journal_stop(handle); 4866ac27a0ecSDave Kleikamp out: 4867ac27a0ecSDave Kleikamp return; 4868ac27a0ecSDave Kleikamp } 4869ac27a0ecSDave Kleikamp 4870ac27a0ecSDave Kleikamp #if 0 4871ac27a0ecSDave Kleikamp /* 4872ac27a0ecSDave Kleikamp * Bind an inode's backing buffer_head into this transaction, to prevent 4873ac27a0ecSDave Kleikamp * it from being flushed to disk early. Unlike 4874617ba13bSMingming Cao * ext4_reserve_inode_write, this leaves behind no bh reference and 4875ac27a0ecSDave Kleikamp * returns no iloc structure, so the caller needs to repeat the iloc 4876ac27a0ecSDave Kleikamp * lookup to mark the inode dirty later. 4877ac27a0ecSDave Kleikamp */ 4878617ba13bSMingming Cao static int ext4_pin_inode(handle_t *handle, struct inode *inode) 4879ac27a0ecSDave Kleikamp { 4880617ba13bSMingming Cao struct ext4_iloc iloc; 4881ac27a0ecSDave Kleikamp 4882ac27a0ecSDave Kleikamp int err = 0; 4883ac27a0ecSDave Kleikamp if (handle) { 4884617ba13bSMingming Cao err = ext4_get_inode_loc(inode, &iloc); 4885ac27a0ecSDave Kleikamp if (!err) { 4886ac27a0ecSDave Kleikamp BUFFER_TRACE(iloc.bh, "get_write_access"); 4887dab291afSMingming Cao err = jbd2_journal_get_write_access(handle, iloc.bh); 4888ac27a0ecSDave Kleikamp if (!err) 48890390131bSFrank Mayhar err = ext4_handle_dirty_metadata(handle, 489073b50c1cSCurt Wohlgemuth NULL, 4891ac27a0ecSDave Kleikamp iloc.bh); 4892ac27a0ecSDave Kleikamp brelse(iloc.bh); 4893ac27a0ecSDave Kleikamp } 4894ac27a0ecSDave Kleikamp } 4895617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 4896ac27a0ecSDave Kleikamp return err; 4897ac27a0ecSDave Kleikamp } 4898ac27a0ecSDave Kleikamp #endif 4899ac27a0ecSDave Kleikamp 4900617ba13bSMingming Cao int ext4_change_inode_journal_flag(struct inode *inode, int val) 4901ac27a0ecSDave Kleikamp { 4902ac27a0ecSDave Kleikamp journal_t *journal; 4903ac27a0ecSDave Kleikamp handle_t *handle; 4904ac27a0ecSDave Kleikamp int err; 4905ac27a0ecSDave Kleikamp 4906ac27a0ecSDave Kleikamp /* 4907ac27a0ecSDave Kleikamp * We have to be very careful here: changing a data block's 4908ac27a0ecSDave Kleikamp * journaling status dynamically is dangerous. If we write a 4909ac27a0ecSDave Kleikamp * data block to the journal, change the status and then delete 4910ac27a0ecSDave Kleikamp * that block, we risk forgetting to revoke the old log record 4911ac27a0ecSDave Kleikamp * from the journal and so a subsequent replay can corrupt data. 4912ac27a0ecSDave Kleikamp * So, first we make sure that the journal is empty and that 4913ac27a0ecSDave Kleikamp * nobody is changing anything. 4914ac27a0ecSDave Kleikamp */ 4915ac27a0ecSDave Kleikamp 4916617ba13bSMingming Cao journal = EXT4_JOURNAL(inode); 49170390131bSFrank Mayhar if (!journal) 49180390131bSFrank Mayhar return 0; 4919d699594dSDave Hansen if (is_journal_aborted(journal)) 4920ac27a0ecSDave Kleikamp return -EROFS; 49212aff57b0SYongqiang Yang /* We have to allocate physical blocks for delalloc blocks 49222aff57b0SYongqiang Yang * before flushing journal. otherwise delalloc blocks can not 49232aff57b0SYongqiang Yang * be allocated any more. even more truncate on delalloc blocks 49242aff57b0SYongqiang Yang * could trigger BUG by flushing delalloc blocks in journal. 49252aff57b0SYongqiang Yang * There is no delalloc block in non-journal data mode. 49262aff57b0SYongqiang Yang */ 49272aff57b0SYongqiang Yang if (val && test_opt(inode->i_sb, DELALLOC)) { 49282aff57b0SYongqiang Yang err = ext4_alloc_da_blocks(inode); 49292aff57b0SYongqiang Yang if (err < 0) 49302aff57b0SYongqiang Yang return err; 49312aff57b0SYongqiang Yang } 4932ac27a0ecSDave Kleikamp 493317335dccSDmitry Monakhov /* Wait for all existing dio workers */ 493417335dccSDmitry Monakhov ext4_inode_block_unlocked_dio(inode); 493517335dccSDmitry Monakhov inode_dio_wait(inode); 493617335dccSDmitry Monakhov 4937dab291afSMingming Cao jbd2_journal_lock_updates(journal); 4938ac27a0ecSDave Kleikamp 4939ac27a0ecSDave Kleikamp /* 4940ac27a0ecSDave Kleikamp * OK, there are no updates running now, and all cached data is 4941ac27a0ecSDave Kleikamp * synced to disk. We are now in a completely consistent state 4942ac27a0ecSDave Kleikamp * which doesn't have anything in the journal, and we know that 4943ac27a0ecSDave Kleikamp * no filesystem updates are running, so it is safe to modify 4944ac27a0ecSDave Kleikamp * the inode's in-core data-journaling state flag now. 4945ac27a0ecSDave Kleikamp */ 4946ac27a0ecSDave Kleikamp 4947ac27a0ecSDave Kleikamp if (val) 494812e9b892SDmitry Monakhov ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA); 49495872ddaaSYongqiang Yang else { 49505872ddaaSYongqiang Yang jbd2_journal_flush(journal); 495112e9b892SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA); 49525872ddaaSYongqiang Yang } 4953617ba13bSMingming Cao ext4_set_aops(inode); 4954ac27a0ecSDave Kleikamp 4955dab291afSMingming Cao jbd2_journal_unlock_updates(journal); 495617335dccSDmitry Monakhov ext4_inode_resume_unlocked_dio(inode); 4957ac27a0ecSDave Kleikamp 4958ac27a0ecSDave Kleikamp /* Finally we can mark the inode as dirty. */ 4959ac27a0ecSDave Kleikamp 49609924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 1); 4961ac27a0ecSDave Kleikamp if (IS_ERR(handle)) 4962ac27a0ecSDave Kleikamp return PTR_ERR(handle); 4963ac27a0ecSDave Kleikamp 4964617ba13bSMingming Cao err = ext4_mark_inode_dirty(handle, inode); 49650390131bSFrank Mayhar ext4_handle_sync(handle); 4966617ba13bSMingming Cao ext4_journal_stop(handle); 4967617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 4968ac27a0ecSDave Kleikamp 4969ac27a0ecSDave Kleikamp return err; 4970ac27a0ecSDave Kleikamp } 49712e9ee850SAneesh Kumar K.V 49722e9ee850SAneesh Kumar K.V static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh) 49732e9ee850SAneesh Kumar K.V { 49742e9ee850SAneesh Kumar K.V return !buffer_mapped(bh); 49752e9ee850SAneesh Kumar K.V } 49762e9ee850SAneesh Kumar K.V 4977c2ec175cSNick Piggin int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf) 49782e9ee850SAneesh Kumar K.V { 4979c2ec175cSNick Piggin struct page *page = vmf->page; 49802e9ee850SAneesh Kumar K.V loff_t size; 49812e9ee850SAneesh Kumar K.V unsigned long len; 49829ea7df53SJan Kara int ret; 49832e9ee850SAneesh Kumar K.V struct file *file = vma->vm_file; 4984496ad9aaSAl Viro struct inode *inode = file_inode(file); 49852e9ee850SAneesh Kumar K.V struct address_space *mapping = inode->i_mapping; 49869ea7df53SJan Kara handle_t *handle; 49879ea7df53SJan Kara get_block_t *get_block; 49889ea7df53SJan Kara int retries = 0; 49892e9ee850SAneesh Kumar K.V 49908e8ad8a5SJan Kara sb_start_pagefault(inode->i_sb); 4991041bbb6dSTheodore Ts'o file_update_time(vma->vm_file); 49929ea7df53SJan Kara /* Delalloc case is easy... */ 49939ea7df53SJan Kara if (test_opt(inode->i_sb, DELALLOC) && 49949ea7df53SJan Kara !ext4_should_journal_data(inode) && 49959ea7df53SJan Kara !ext4_nonda_switch(inode->i_sb)) { 49969ea7df53SJan Kara do { 49979ea7df53SJan Kara ret = __block_page_mkwrite(vma, vmf, 49989ea7df53SJan Kara ext4_da_get_block_prep); 49999ea7df53SJan Kara } while (ret == -ENOSPC && 50009ea7df53SJan Kara ext4_should_retry_alloc(inode->i_sb, &retries)); 50019ea7df53SJan Kara goto out_ret; 50022e9ee850SAneesh Kumar K.V } 50030e499890SDarrick J. Wong 50040e499890SDarrick J. Wong lock_page(page); 50059ea7df53SJan Kara size = i_size_read(inode); 50069ea7df53SJan Kara /* Page got truncated from under us? */ 50079ea7df53SJan Kara if (page->mapping != mapping || page_offset(page) > size) { 50089ea7df53SJan Kara unlock_page(page); 50099ea7df53SJan Kara ret = VM_FAULT_NOPAGE; 50109ea7df53SJan Kara goto out; 50110e499890SDarrick J. Wong } 50122e9ee850SAneesh Kumar K.V 50132e9ee850SAneesh Kumar K.V if (page->index == size >> PAGE_CACHE_SHIFT) 50142e9ee850SAneesh Kumar K.V len = size & ~PAGE_CACHE_MASK; 50152e9ee850SAneesh Kumar K.V else 50162e9ee850SAneesh Kumar K.V len = PAGE_CACHE_SIZE; 5017a827eaffSAneesh Kumar K.V /* 50189ea7df53SJan Kara * Return if we have all the buffers mapped. This avoids the need to do 50199ea7df53SJan Kara * journal_start/journal_stop which can block and take a long time 5020a827eaffSAneesh Kumar K.V */ 50212e9ee850SAneesh Kumar K.V if (page_has_buffers(page)) { 5022f19d5870STao Ma if (!ext4_walk_page_buffers(NULL, page_buffers(page), 5023f19d5870STao Ma 0, len, NULL, 5024a827eaffSAneesh Kumar K.V ext4_bh_unmapped)) { 50259ea7df53SJan Kara /* Wait so that we don't change page under IO */ 50261d1d1a76SDarrick J. Wong wait_for_stable_page(page); 50279ea7df53SJan Kara ret = VM_FAULT_LOCKED; 50289ea7df53SJan Kara goto out; 50292e9ee850SAneesh Kumar K.V } 5030a827eaffSAneesh Kumar K.V } 5031a827eaffSAneesh Kumar K.V unlock_page(page); 50329ea7df53SJan Kara /* OK, we need to fill the hole... */ 50339ea7df53SJan Kara if (ext4_should_dioread_nolock(inode)) 50349ea7df53SJan Kara get_block = ext4_get_block_write; 50359ea7df53SJan Kara else 50369ea7df53SJan Kara get_block = ext4_get_block; 50379ea7df53SJan Kara retry_alloc: 50389924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 50399924a92aSTheodore Ts'o ext4_writepage_trans_blocks(inode)); 50409ea7df53SJan Kara if (IS_ERR(handle)) { 5041c2ec175cSNick Piggin ret = VM_FAULT_SIGBUS; 50429ea7df53SJan Kara goto out; 50439ea7df53SJan Kara } 50449ea7df53SJan Kara ret = __block_page_mkwrite(vma, vmf, get_block); 50459ea7df53SJan Kara if (!ret && ext4_should_journal_data(inode)) { 5046f19d5870STao Ma if (ext4_walk_page_buffers(handle, page_buffers(page), 0, 50479ea7df53SJan Kara PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) { 50489ea7df53SJan Kara unlock_page(page); 50499ea7df53SJan Kara ret = VM_FAULT_SIGBUS; 5050fcbb5515SYongqiang Yang ext4_journal_stop(handle); 50519ea7df53SJan Kara goto out; 50529ea7df53SJan Kara } 50539ea7df53SJan Kara ext4_set_inode_state(inode, EXT4_STATE_JDATA); 50549ea7df53SJan Kara } 50559ea7df53SJan Kara ext4_journal_stop(handle); 50569ea7df53SJan Kara if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries)) 50579ea7df53SJan Kara goto retry_alloc; 50589ea7df53SJan Kara out_ret: 50599ea7df53SJan Kara ret = block_page_mkwrite_return(ret); 50609ea7df53SJan Kara out: 50618e8ad8a5SJan Kara sb_end_pagefault(inode->i_sb); 50622e9ee850SAneesh Kumar K.V return ret; 50632e9ee850SAneesh Kumar K.V } 5064