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> 419bffad1eSTheodore Ts'o 423dcf5451SChristoph Hellwig #include "ext4_jbd2.h" 43ac27a0ecSDave Kleikamp #include "xattr.h" 44ac27a0ecSDave Kleikamp #include "acl.h" 459f125d64STheodore Ts'o #include "truncate.h" 46ac27a0ecSDave Kleikamp 479bffad1eSTheodore Ts'o #include <trace/events/ext4.h> 489bffad1eSTheodore Ts'o 49a1d6cc56SAneesh Kumar K.V #define MPAGE_DA_EXTENT_TAIL 0x01 50a1d6cc56SAneesh Kumar K.V 51814525f4SDarrick J. Wong static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw, 52814525f4SDarrick J. Wong struct ext4_inode_info *ei) 53814525f4SDarrick J. Wong { 54814525f4SDarrick J. Wong struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 55814525f4SDarrick J. Wong __u16 csum_lo; 56814525f4SDarrick J. Wong __u16 csum_hi = 0; 57814525f4SDarrick J. Wong __u32 csum; 58814525f4SDarrick J. Wong 59171a7f21SDmitry Monakhov csum_lo = le16_to_cpu(raw->i_checksum_lo); 60814525f4SDarrick J. Wong raw->i_checksum_lo = 0; 61814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 62814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) { 63171a7f21SDmitry Monakhov csum_hi = le16_to_cpu(raw->i_checksum_hi); 64814525f4SDarrick J. Wong raw->i_checksum_hi = 0; 65814525f4SDarrick J. Wong } 66814525f4SDarrick J. Wong 67814525f4SDarrick J. Wong csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw, 68814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)); 69814525f4SDarrick J. Wong 70171a7f21SDmitry Monakhov raw->i_checksum_lo = cpu_to_le16(csum_lo); 71814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 72814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 73171a7f21SDmitry Monakhov raw->i_checksum_hi = cpu_to_le16(csum_hi); 74814525f4SDarrick J. Wong 75814525f4SDarrick J. Wong return csum; 76814525f4SDarrick J. Wong } 77814525f4SDarrick J. Wong 78814525f4SDarrick J. Wong static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw, 79814525f4SDarrick J. Wong struct ext4_inode_info *ei) 80814525f4SDarrick J. Wong { 81814525f4SDarrick J. Wong __u32 provided, calculated; 82814525f4SDarrick J. Wong 83814525f4SDarrick J. Wong if (EXT4_SB(inode->i_sb)->s_es->s_creator_os != 84814525f4SDarrick J. Wong cpu_to_le32(EXT4_OS_LINUX) || 85814525f4SDarrick J. Wong !EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, 86814525f4SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)) 87814525f4SDarrick J. Wong return 1; 88814525f4SDarrick J. Wong 89814525f4SDarrick J. Wong provided = le16_to_cpu(raw->i_checksum_lo); 90814525f4SDarrick J. Wong calculated = ext4_inode_csum(inode, raw, ei); 91814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 92814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 93814525f4SDarrick J. Wong provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16; 94814525f4SDarrick J. Wong else 95814525f4SDarrick J. Wong calculated &= 0xFFFF; 96814525f4SDarrick J. Wong 97814525f4SDarrick J. Wong return provided == calculated; 98814525f4SDarrick J. Wong } 99814525f4SDarrick J. Wong 100814525f4SDarrick J. Wong static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw, 101814525f4SDarrick J. Wong struct ext4_inode_info *ei) 102814525f4SDarrick J. Wong { 103814525f4SDarrick J. Wong __u32 csum; 104814525f4SDarrick J. Wong 105814525f4SDarrick J. Wong if (EXT4_SB(inode->i_sb)->s_es->s_creator_os != 106814525f4SDarrick J. Wong cpu_to_le32(EXT4_OS_LINUX) || 107814525f4SDarrick J. Wong !EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, 108814525f4SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)) 109814525f4SDarrick J. Wong return; 110814525f4SDarrick J. Wong 111814525f4SDarrick J. Wong csum = ext4_inode_csum(inode, raw, ei); 112814525f4SDarrick J. Wong raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF); 113814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 114814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 115814525f4SDarrick J. Wong raw->i_checksum_hi = cpu_to_le16(csum >> 16); 116814525f4SDarrick J. Wong } 117814525f4SDarrick J. Wong 118678aaf48SJan Kara static inline int ext4_begin_ordered_truncate(struct inode *inode, 119678aaf48SJan Kara loff_t new_size) 120678aaf48SJan Kara { 1217ff9c073STheodore Ts'o trace_ext4_begin_ordered_truncate(inode, new_size); 1228aefcd55STheodore Ts'o /* 1238aefcd55STheodore Ts'o * If jinode is zero, then we never opened the file for 1248aefcd55STheodore Ts'o * writing, so there's no need to call 1258aefcd55STheodore Ts'o * jbd2_journal_begin_ordered_truncate() since there's no 1268aefcd55STheodore Ts'o * outstanding writes we need to flush. 1278aefcd55STheodore Ts'o */ 1288aefcd55STheodore Ts'o if (!EXT4_I(inode)->jinode) 1298aefcd55STheodore Ts'o return 0; 1308aefcd55STheodore Ts'o return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode), 1318aefcd55STheodore Ts'o EXT4_I(inode)->jinode, 132678aaf48SJan Kara new_size); 133678aaf48SJan Kara } 134678aaf48SJan Kara 135d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset, 136d47992f8SLukas Czerner unsigned int length); 137cb20d518STheodore Ts'o static int __ext4_journalled_writepage(struct page *page, unsigned int len); 138cb20d518STheodore Ts'o static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh); 139*fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks, 140*fffb2739SJan Kara int pextents); 14164769240SAlex Tomas 142ac27a0ecSDave Kleikamp /* 143ac27a0ecSDave Kleikamp * Test whether an inode is a fast symlink. 144ac27a0ecSDave Kleikamp */ 145617ba13bSMingming Cao static int ext4_inode_is_fast_symlink(struct inode *inode) 146ac27a0ecSDave Kleikamp { 147617ba13bSMingming Cao int ea_blocks = EXT4_I(inode)->i_file_acl ? 148ac27a0ecSDave Kleikamp (inode->i_sb->s_blocksize >> 9) : 0; 149ac27a0ecSDave Kleikamp 150ac27a0ecSDave Kleikamp return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0); 151ac27a0ecSDave Kleikamp } 152ac27a0ecSDave Kleikamp 153ac27a0ecSDave Kleikamp /* 154ac27a0ecSDave Kleikamp * Restart the transaction associated with *handle. This does a commit, 155ac27a0ecSDave Kleikamp * so before we call here everything must be consistently dirtied against 156ac27a0ecSDave Kleikamp * this transaction. 157ac27a0ecSDave Kleikamp */ 158487caeefSJan Kara int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode, 159487caeefSJan Kara int nblocks) 160ac27a0ecSDave Kleikamp { 161487caeefSJan Kara int ret; 162487caeefSJan Kara 163487caeefSJan Kara /* 164e35fd660STheodore Ts'o * Drop i_data_sem to avoid deadlock with ext4_map_blocks. At this 165487caeefSJan Kara * moment, get_block can be called only for blocks inside i_size since 166487caeefSJan Kara * page cache has been already dropped and writes are blocked by 167487caeefSJan Kara * i_mutex. So we can safely drop the i_data_sem here. 168487caeefSJan Kara */ 1690390131bSFrank Mayhar BUG_ON(EXT4_JOURNAL(inode) == NULL); 170ac27a0ecSDave Kleikamp jbd_debug(2, "restarting handle %p\n", handle); 171487caeefSJan Kara up_write(&EXT4_I(inode)->i_data_sem); 1728e8eaabeSAmir Goldstein ret = ext4_journal_restart(handle, nblocks); 173487caeefSJan Kara down_write(&EXT4_I(inode)->i_data_sem); 174fa5d1113SAneesh Kumar K.V ext4_discard_preallocations(inode); 175487caeefSJan Kara 176487caeefSJan Kara return ret; 177ac27a0ecSDave Kleikamp } 178ac27a0ecSDave Kleikamp 179ac27a0ecSDave Kleikamp /* 180ac27a0ecSDave Kleikamp * Called at the last iput() if i_nlink is zero. 181ac27a0ecSDave Kleikamp */ 1820930fcc1SAl Viro void ext4_evict_inode(struct inode *inode) 183ac27a0ecSDave Kleikamp { 184ac27a0ecSDave Kleikamp handle_t *handle; 185bc965ab3STheodore Ts'o int err; 186ac27a0ecSDave Kleikamp 1877ff9c073STheodore Ts'o trace_ext4_evict_inode(inode); 1882581fdc8SJiaying Zhang 1890930fcc1SAl Viro if (inode->i_nlink) { 1902d859db3SJan Kara /* 1912d859db3SJan Kara * When journalling data dirty buffers are tracked only in the 1922d859db3SJan Kara * journal. So although mm thinks everything is clean and 1932d859db3SJan Kara * ready for reaping the inode might still have some pages to 1942d859db3SJan Kara * write in the running transaction or waiting to be 1952d859db3SJan Kara * checkpointed. Thus calling jbd2_journal_invalidatepage() 1962d859db3SJan Kara * (via truncate_inode_pages()) to discard these buffers can 1972d859db3SJan Kara * cause data loss. Also even if we did not discard these 1982d859db3SJan Kara * buffers, we would have no way to find them after the inode 1992d859db3SJan Kara * is reaped and thus user could see stale data if he tries to 2002d859db3SJan Kara * read them before the transaction is checkpointed. So be 2012d859db3SJan Kara * careful and force everything to disk here... We use 2022d859db3SJan Kara * ei->i_datasync_tid to store the newest transaction 2032d859db3SJan Kara * containing inode's data. 2042d859db3SJan Kara * 2052d859db3SJan Kara * Note that directories do not have this problem because they 2062d859db3SJan Kara * don't use page cache. 2072d859db3SJan Kara */ 2082d859db3SJan Kara if (ext4_should_journal_data(inode) && 2092b405bfaSTheodore Ts'o (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) && 2102b405bfaSTheodore Ts'o inode->i_ino != EXT4_JOURNAL_INO) { 2112d859db3SJan Kara journal_t *journal = EXT4_SB(inode->i_sb)->s_journal; 2122d859db3SJan Kara tid_t commit_tid = EXT4_I(inode)->i_datasync_tid; 2132d859db3SJan Kara 214d76a3a77STheodore Ts'o jbd2_complete_transaction(journal, commit_tid); 2152d859db3SJan Kara filemap_write_and_wait(&inode->i_data); 2162d859db3SJan Kara } 2170930fcc1SAl Viro truncate_inode_pages(&inode->i_data, 0); 2181ada47d9STheodore Ts'o ext4_ioend_shutdown(inode); 2190930fcc1SAl Viro goto no_delete; 2200930fcc1SAl Viro } 2210930fcc1SAl Viro 222907f4554SChristoph Hellwig if (!is_bad_inode(inode)) 223871a2931SChristoph Hellwig dquot_initialize(inode); 224907f4554SChristoph Hellwig 225678aaf48SJan Kara if (ext4_should_order_data(inode)) 226678aaf48SJan Kara ext4_begin_ordered_truncate(inode, 0); 227ac27a0ecSDave Kleikamp truncate_inode_pages(&inode->i_data, 0); 2281ada47d9STheodore Ts'o ext4_ioend_shutdown(inode); 229ac27a0ecSDave Kleikamp 230ac27a0ecSDave Kleikamp if (is_bad_inode(inode)) 231ac27a0ecSDave Kleikamp goto no_delete; 232ac27a0ecSDave Kleikamp 2338e8ad8a5SJan Kara /* 2348e8ad8a5SJan Kara * Protect us against freezing - iput() caller didn't have to have any 2358e8ad8a5SJan Kara * protection against it 2368e8ad8a5SJan Kara */ 2378e8ad8a5SJan Kara sb_start_intwrite(inode->i_sb); 2389924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, 2399924a92aSTheodore Ts'o ext4_blocks_for_truncate(inode)+3); 240ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 241bc965ab3STheodore Ts'o ext4_std_error(inode->i_sb, PTR_ERR(handle)); 242ac27a0ecSDave Kleikamp /* 243ac27a0ecSDave Kleikamp * If we're going to skip the normal cleanup, we still need to 244ac27a0ecSDave Kleikamp * make sure that the in-core orphan linked list is properly 245ac27a0ecSDave Kleikamp * cleaned up. 246ac27a0ecSDave Kleikamp */ 247617ba13bSMingming Cao ext4_orphan_del(NULL, inode); 2488e8ad8a5SJan Kara sb_end_intwrite(inode->i_sb); 249ac27a0ecSDave Kleikamp goto no_delete; 250ac27a0ecSDave Kleikamp } 251ac27a0ecSDave Kleikamp 252ac27a0ecSDave Kleikamp if (IS_SYNC(inode)) 2530390131bSFrank Mayhar ext4_handle_sync(handle); 254ac27a0ecSDave Kleikamp inode->i_size = 0; 255bc965ab3STheodore Ts'o err = ext4_mark_inode_dirty(handle, inode); 256bc965ab3STheodore Ts'o if (err) { 25712062dddSEric Sandeen ext4_warning(inode->i_sb, 258bc965ab3STheodore Ts'o "couldn't mark inode dirty (err %d)", err); 259bc965ab3STheodore Ts'o goto stop_handle; 260bc965ab3STheodore Ts'o } 261ac27a0ecSDave Kleikamp if (inode->i_blocks) 262617ba13bSMingming Cao ext4_truncate(inode); 263bc965ab3STheodore Ts'o 264bc965ab3STheodore Ts'o /* 265bc965ab3STheodore Ts'o * ext4_ext_truncate() doesn't reserve any slop when it 266bc965ab3STheodore Ts'o * restarts journal transactions; therefore there may not be 267bc965ab3STheodore Ts'o * enough credits left in the handle to remove the inode from 268bc965ab3STheodore Ts'o * the orphan list and set the dtime field. 269bc965ab3STheodore Ts'o */ 2700390131bSFrank Mayhar if (!ext4_handle_has_enough_credits(handle, 3)) { 271bc965ab3STheodore Ts'o err = ext4_journal_extend(handle, 3); 272bc965ab3STheodore Ts'o if (err > 0) 273bc965ab3STheodore Ts'o err = ext4_journal_restart(handle, 3); 274bc965ab3STheodore Ts'o if (err != 0) { 27512062dddSEric Sandeen ext4_warning(inode->i_sb, 276bc965ab3STheodore Ts'o "couldn't extend journal (err %d)", err); 277bc965ab3STheodore Ts'o stop_handle: 278bc965ab3STheodore Ts'o ext4_journal_stop(handle); 27945388219STheodore Ts'o ext4_orphan_del(NULL, inode); 2808e8ad8a5SJan Kara sb_end_intwrite(inode->i_sb); 281bc965ab3STheodore Ts'o goto no_delete; 282bc965ab3STheodore Ts'o } 283bc965ab3STheodore Ts'o } 284bc965ab3STheodore Ts'o 285ac27a0ecSDave Kleikamp /* 286617ba13bSMingming Cao * Kill off the orphan record which ext4_truncate created. 287ac27a0ecSDave Kleikamp * AKPM: I think this can be inside the above `if'. 288617ba13bSMingming Cao * Note that ext4_orphan_del() has to be able to cope with the 289ac27a0ecSDave Kleikamp * deletion of a non-existent orphan - this is because we don't 290617ba13bSMingming Cao * know if ext4_truncate() actually created an orphan record. 291ac27a0ecSDave Kleikamp * (Well, we could do this if we need to, but heck - it works) 292ac27a0ecSDave Kleikamp */ 293617ba13bSMingming Cao ext4_orphan_del(handle, inode); 294617ba13bSMingming Cao EXT4_I(inode)->i_dtime = get_seconds(); 295ac27a0ecSDave Kleikamp 296ac27a0ecSDave Kleikamp /* 297ac27a0ecSDave Kleikamp * One subtle ordering requirement: if anything has gone wrong 298ac27a0ecSDave Kleikamp * (transaction abort, IO errors, whatever), then we can still 299ac27a0ecSDave Kleikamp * do these next steps (the fs will already have been marked as 300ac27a0ecSDave Kleikamp * having errors), but we can't free the inode if the mark_dirty 301ac27a0ecSDave Kleikamp * fails. 302ac27a0ecSDave Kleikamp */ 303617ba13bSMingming Cao if (ext4_mark_inode_dirty(handle, inode)) 304ac27a0ecSDave Kleikamp /* If that failed, just do the required in-core inode clear. */ 3050930fcc1SAl Viro ext4_clear_inode(inode); 306ac27a0ecSDave Kleikamp else 307617ba13bSMingming Cao ext4_free_inode(handle, inode); 308617ba13bSMingming Cao ext4_journal_stop(handle); 3098e8ad8a5SJan Kara sb_end_intwrite(inode->i_sb); 310ac27a0ecSDave Kleikamp return; 311ac27a0ecSDave Kleikamp no_delete: 3120930fcc1SAl Viro ext4_clear_inode(inode); /* We must guarantee clearing of inode... */ 313ac27a0ecSDave Kleikamp } 314ac27a0ecSDave Kleikamp 315a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA 316a9e7f447SDmitry Monakhov qsize_t *ext4_get_reserved_space(struct inode *inode) 31760e58e0fSMingming Cao { 318a9e7f447SDmitry Monakhov return &EXT4_I(inode)->i_reserved_quota; 31960e58e0fSMingming Cao } 320a9e7f447SDmitry Monakhov #endif 3219d0be502STheodore Ts'o 32212219aeaSAneesh Kumar K.V /* 32312219aeaSAneesh Kumar K.V * Calculate the number of metadata blocks need to reserve 3249d0be502STheodore Ts'o * to allocate a block located at @lblock 32512219aeaSAneesh Kumar K.V */ 32601f49d0bSTheodore Ts'o static int ext4_calc_metadata_amount(struct inode *inode, ext4_lblk_t lblock) 32712219aeaSAneesh Kumar K.V { 32812e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 3299d0be502STheodore Ts'o return ext4_ext_calc_metadata_amount(inode, lblock); 33012219aeaSAneesh Kumar K.V 3318bb2b247SAmir Goldstein return ext4_ind_calc_metadata_amount(inode, lblock); 33212219aeaSAneesh Kumar K.V } 33312219aeaSAneesh Kumar K.V 3340637c6f4STheodore Ts'o /* 3350637c6f4STheodore Ts'o * Called with i_data_sem down, which is important since we can call 3360637c6f4STheodore Ts'o * ext4_discard_preallocations() from here. 3370637c6f4STheodore Ts'o */ 3385f634d06SAneesh Kumar K.V void ext4_da_update_reserve_space(struct inode *inode, 3395f634d06SAneesh Kumar K.V int used, int quota_claim) 34012219aeaSAneesh Kumar K.V { 34112219aeaSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 3420637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 34312219aeaSAneesh Kumar K.V 3440637c6f4STheodore Ts'o spin_lock(&ei->i_block_reservation_lock); 345d8990240SAditya Kali trace_ext4_da_update_reserve_space(inode, used, quota_claim); 3460637c6f4STheodore Ts'o if (unlikely(used > ei->i_reserved_data_blocks)) { 3478de5c325STheodore Ts'o ext4_warning(inode->i_sb, "%s: ino %lu, used %d " 3481084f252STheodore Ts'o "with only %d reserved data blocks", 3490637c6f4STheodore Ts'o __func__, inode->i_ino, used, 3500637c6f4STheodore Ts'o ei->i_reserved_data_blocks); 3510637c6f4STheodore Ts'o WARN_ON(1); 3520637c6f4STheodore Ts'o used = ei->i_reserved_data_blocks; 3536bc6e63fSAneesh Kumar K.V } 35412219aeaSAneesh Kumar K.V 35597795d2aSBrian Foster if (unlikely(ei->i_allocated_meta_blocks > ei->i_reserved_meta_blocks)) { 35601a523ebSTheodore Ts'o ext4_warning(inode->i_sb, "ino %lu, allocated %d " 35701a523ebSTheodore Ts'o "with only %d reserved metadata blocks " 35801a523ebSTheodore Ts'o "(releasing %d blocks with reserved %d data blocks)", 35997795d2aSBrian Foster inode->i_ino, ei->i_allocated_meta_blocks, 36001a523ebSTheodore Ts'o ei->i_reserved_meta_blocks, used, 36101a523ebSTheodore Ts'o ei->i_reserved_data_blocks); 36297795d2aSBrian Foster WARN_ON(1); 36397795d2aSBrian Foster ei->i_allocated_meta_blocks = ei->i_reserved_meta_blocks; 36497795d2aSBrian Foster } 36597795d2aSBrian Foster 3660637c6f4STheodore Ts'o /* Update per-inode reservations */ 3670637c6f4STheodore Ts'o ei->i_reserved_data_blocks -= used; 3680637c6f4STheodore Ts'o ei->i_reserved_meta_blocks -= ei->i_allocated_meta_blocks; 36957042651STheodore Ts'o percpu_counter_sub(&sbi->s_dirtyclusters_counter, 37072b8ab9dSEric Sandeen used + ei->i_allocated_meta_blocks); 3710637c6f4STheodore Ts'o ei->i_allocated_meta_blocks = 0; 3720637c6f4STheodore Ts'o 3730637c6f4STheodore Ts'o if (ei->i_reserved_data_blocks == 0) { 3740637c6f4STheodore Ts'o /* 3750637c6f4STheodore Ts'o * We can release all of the reserved metadata blocks 3760637c6f4STheodore Ts'o * only when we have written all of the delayed 3770637c6f4STheodore Ts'o * allocation blocks. 3780637c6f4STheodore Ts'o */ 37957042651STheodore Ts'o percpu_counter_sub(&sbi->s_dirtyclusters_counter, 38072b8ab9dSEric Sandeen ei->i_reserved_meta_blocks); 381ee5f4d9cSTheodore Ts'o ei->i_reserved_meta_blocks = 0; 3829d0be502STheodore Ts'o ei->i_da_metadata_calc_len = 0; 3830637c6f4STheodore Ts'o } 38412219aeaSAneesh Kumar K.V spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); 38560e58e0fSMingming Cao 38672b8ab9dSEric Sandeen /* Update quota subsystem for data blocks */ 38772b8ab9dSEric Sandeen if (quota_claim) 3887b415bf6SAditya Kali dquot_claim_block(inode, EXT4_C2B(sbi, used)); 38972b8ab9dSEric Sandeen else { 3905f634d06SAneesh Kumar K.V /* 3915f634d06SAneesh Kumar K.V * We did fallocate with an offset that is already delayed 3925f634d06SAneesh Kumar K.V * allocated. So on delayed allocated writeback we should 39372b8ab9dSEric Sandeen * not re-claim the quota for fallocated blocks. 3945f634d06SAneesh Kumar K.V */ 3957b415bf6SAditya Kali dquot_release_reservation_block(inode, EXT4_C2B(sbi, used)); 3965f634d06SAneesh Kumar K.V } 397d6014301SAneesh Kumar K.V 398d6014301SAneesh Kumar K.V /* 399d6014301SAneesh Kumar K.V * If we have done all the pending block allocations and if 400d6014301SAneesh Kumar K.V * there aren't any writers on the inode, we can discard the 401d6014301SAneesh Kumar K.V * inode's preallocations. 402d6014301SAneesh Kumar K.V */ 4030637c6f4STheodore Ts'o if ((ei->i_reserved_data_blocks == 0) && 4040637c6f4STheodore Ts'o (atomic_read(&inode->i_writecount) == 0)) 405d6014301SAneesh Kumar K.V ext4_discard_preallocations(inode); 40612219aeaSAneesh Kumar K.V } 40712219aeaSAneesh Kumar K.V 408e29136f8STheodore Ts'o static int __check_block_validity(struct inode *inode, const char *func, 409c398eda0STheodore Ts'o unsigned int line, 41024676da4STheodore Ts'o struct ext4_map_blocks *map) 4116fd058f7STheodore Ts'o { 41224676da4STheodore Ts'o if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk, 41324676da4STheodore Ts'o map->m_len)) { 414c398eda0STheodore Ts'o ext4_error_inode(inode, func, line, map->m_pblk, 415c398eda0STheodore Ts'o "lblock %lu mapped to illegal pblock " 41624676da4STheodore Ts'o "(length %d)", (unsigned long) map->m_lblk, 417c398eda0STheodore Ts'o map->m_len); 4186fd058f7STheodore Ts'o return -EIO; 4196fd058f7STheodore Ts'o } 4206fd058f7STheodore Ts'o return 0; 4216fd058f7STheodore Ts'o } 4226fd058f7STheodore Ts'o 423e29136f8STheodore Ts'o #define check_block_validity(inode, map) \ 424c398eda0STheodore Ts'o __check_block_validity((inode), __func__, __LINE__, (map)) 425e29136f8STheodore Ts'o 426921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 427921f266bSDmitry Monakhov static void ext4_map_blocks_es_recheck(handle_t *handle, 428921f266bSDmitry Monakhov struct inode *inode, 429921f266bSDmitry Monakhov struct ext4_map_blocks *es_map, 430921f266bSDmitry Monakhov struct ext4_map_blocks *map, 431921f266bSDmitry Monakhov int flags) 432921f266bSDmitry Monakhov { 433921f266bSDmitry Monakhov int retval; 434921f266bSDmitry Monakhov 435921f266bSDmitry Monakhov map->m_flags = 0; 436921f266bSDmitry Monakhov /* 437921f266bSDmitry Monakhov * There is a race window that the result is not the same. 438921f266bSDmitry Monakhov * e.g. xfstests #223 when dioread_nolock enables. The reason 439921f266bSDmitry Monakhov * is that we lookup a block mapping in extent status tree with 440921f266bSDmitry Monakhov * out taking i_data_sem. So at the time the unwritten extent 441921f266bSDmitry Monakhov * could be converted. 442921f266bSDmitry Monakhov */ 443921f266bSDmitry Monakhov if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 444921f266bSDmitry Monakhov down_read((&EXT4_I(inode)->i_data_sem)); 445921f266bSDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 446921f266bSDmitry Monakhov retval = ext4_ext_map_blocks(handle, inode, map, flags & 447921f266bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 448921f266bSDmitry Monakhov } else { 449921f266bSDmitry Monakhov retval = ext4_ind_map_blocks(handle, inode, map, flags & 450921f266bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 451921f266bSDmitry Monakhov } 452921f266bSDmitry Monakhov if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 453921f266bSDmitry Monakhov up_read((&EXT4_I(inode)->i_data_sem)); 454921f266bSDmitry Monakhov /* 455921f266bSDmitry Monakhov * Clear EXT4_MAP_FROM_CLUSTER and EXT4_MAP_BOUNDARY flag 456921f266bSDmitry Monakhov * because it shouldn't be marked in es_map->m_flags. 457921f266bSDmitry Monakhov */ 458921f266bSDmitry Monakhov map->m_flags &= ~(EXT4_MAP_FROM_CLUSTER | EXT4_MAP_BOUNDARY); 459921f266bSDmitry Monakhov 460921f266bSDmitry Monakhov /* 461921f266bSDmitry Monakhov * We don't check m_len because extent will be collpased in status 462921f266bSDmitry Monakhov * tree. So the m_len might not equal. 463921f266bSDmitry Monakhov */ 464921f266bSDmitry Monakhov if (es_map->m_lblk != map->m_lblk || 465921f266bSDmitry Monakhov es_map->m_flags != map->m_flags || 466921f266bSDmitry Monakhov es_map->m_pblk != map->m_pblk) { 467921f266bSDmitry Monakhov printk("ES cache assertation failed for inode: %lu " 468921f266bSDmitry Monakhov "es_cached ex [%d/%d/%llu/%x] != " 469921f266bSDmitry Monakhov "found ex [%d/%d/%llu/%x] retval %d flags %x\n", 470921f266bSDmitry Monakhov inode->i_ino, es_map->m_lblk, es_map->m_len, 471921f266bSDmitry Monakhov es_map->m_pblk, es_map->m_flags, map->m_lblk, 472921f266bSDmitry Monakhov map->m_len, map->m_pblk, map->m_flags, 473921f266bSDmitry Monakhov retval, flags); 474921f266bSDmitry Monakhov } 475921f266bSDmitry Monakhov } 476921f266bSDmitry Monakhov #endif /* ES_AGGRESSIVE_TEST */ 477921f266bSDmitry Monakhov 47855138e0bSTheodore Ts'o /* 479e35fd660STheodore Ts'o * The ext4_map_blocks() function tries to look up the requested blocks, 4802b2d6d01STheodore Ts'o * and returns if the blocks are already mapped. 481f5ab0d1fSMingming Cao * 482f5ab0d1fSMingming Cao * Otherwise it takes the write lock of the i_data_sem and allocate blocks 483f5ab0d1fSMingming Cao * and store the allocated blocks in the result buffer head and mark it 484f5ab0d1fSMingming Cao * mapped. 485f5ab0d1fSMingming Cao * 486e35fd660STheodore Ts'o * If file type is extents based, it will call ext4_ext_map_blocks(), 487e35fd660STheodore Ts'o * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping 488f5ab0d1fSMingming Cao * based files 489f5ab0d1fSMingming Cao * 490f5ab0d1fSMingming Cao * On success, it returns the number of blocks being mapped or allocate. 491f5ab0d1fSMingming Cao * if create==0 and the blocks are pre-allocated and uninitialized block, 492f5ab0d1fSMingming Cao * the result buffer head is unmapped. If the create ==1, it will make sure 493f5ab0d1fSMingming Cao * the buffer head is mapped. 494f5ab0d1fSMingming Cao * 495f5ab0d1fSMingming Cao * It returns 0 if plain look up failed (blocks have not been allocated), in 496df3ab170STao Ma * that case, buffer head is unmapped 497f5ab0d1fSMingming Cao * 498f5ab0d1fSMingming Cao * It returns the error in case of allocation failure. 499f5ab0d1fSMingming Cao */ 500e35fd660STheodore Ts'o int ext4_map_blocks(handle_t *handle, struct inode *inode, 501e35fd660STheodore Ts'o struct ext4_map_blocks *map, int flags) 5020e855ac8SAneesh Kumar K.V { 503d100eef2SZheng Liu struct extent_status es; 5040e855ac8SAneesh Kumar K.V int retval; 505921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 506921f266bSDmitry Monakhov struct ext4_map_blocks orig_map; 507921f266bSDmitry Monakhov 508921f266bSDmitry Monakhov memcpy(&orig_map, map, sizeof(*map)); 509921f266bSDmitry Monakhov #endif 510f5ab0d1fSMingming Cao 511e35fd660STheodore Ts'o map->m_flags = 0; 512e35fd660STheodore Ts'o ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u," 513e35fd660STheodore Ts'o "logical block %lu\n", inode->i_ino, flags, map->m_len, 514e35fd660STheodore Ts'o (unsigned long) map->m_lblk); 515d100eef2SZheng Liu 516d100eef2SZheng Liu /* Lookup extent status tree firstly */ 517d100eef2SZheng Liu if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) { 518d100eef2SZheng Liu if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) { 519d100eef2SZheng Liu map->m_pblk = ext4_es_pblock(&es) + 520d100eef2SZheng Liu map->m_lblk - es.es_lblk; 521d100eef2SZheng Liu map->m_flags |= ext4_es_is_written(&es) ? 522d100eef2SZheng Liu EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN; 523d100eef2SZheng Liu retval = es.es_len - (map->m_lblk - es.es_lblk); 524d100eef2SZheng Liu if (retval > map->m_len) 525d100eef2SZheng Liu retval = map->m_len; 526d100eef2SZheng Liu map->m_len = retval; 527d100eef2SZheng Liu } else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) { 528d100eef2SZheng Liu retval = 0; 529d100eef2SZheng Liu } else { 530d100eef2SZheng Liu BUG_ON(1); 531d100eef2SZheng Liu } 532921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 533921f266bSDmitry Monakhov ext4_map_blocks_es_recheck(handle, inode, map, 534921f266bSDmitry Monakhov &orig_map, flags); 535921f266bSDmitry Monakhov #endif 536d100eef2SZheng Liu goto found; 537d100eef2SZheng Liu } 538d100eef2SZheng Liu 5394df3d265SAneesh Kumar K.V /* 540b920c755STheodore Ts'o * Try to see if we can get the block without requesting a new 541b920c755STheodore Ts'o * file system block. 5424df3d265SAneesh Kumar K.V */ 543729f52c6SZheng Liu if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 5440e855ac8SAneesh Kumar K.V down_read((&EXT4_I(inode)->i_data_sem)); 54512e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 546a4e5d88bSDmitry Monakhov retval = ext4_ext_map_blocks(handle, inode, map, flags & 547a4e5d88bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 5484df3d265SAneesh Kumar K.V } else { 549a4e5d88bSDmitry Monakhov retval = ext4_ind_map_blocks(handle, inode, map, flags & 550a4e5d88bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 5510e855ac8SAneesh Kumar K.V } 552f7fec032SZheng Liu if (retval > 0) { 553f7fec032SZheng Liu int ret; 554f7fec032SZheng Liu unsigned long long status; 555f7fec032SZheng Liu 556921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 557921f266bSDmitry Monakhov if (retval != map->m_len) { 558921f266bSDmitry Monakhov printk("ES len assertation failed for inode: %lu " 559921f266bSDmitry Monakhov "retval %d != map->m_len %d " 560921f266bSDmitry Monakhov "in %s (lookup)\n", inode->i_ino, retval, 561921f266bSDmitry Monakhov map->m_len, __func__); 562921f266bSDmitry Monakhov } 563921f266bSDmitry Monakhov #endif 564921f266bSDmitry Monakhov 565f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 566f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 567f7fec032SZheng Liu if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) && 568f7fec032SZheng Liu ext4_find_delalloc_range(inode, map->m_lblk, 569f7fec032SZheng Liu map->m_lblk + map->m_len - 1)) 570f7fec032SZheng Liu status |= EXTENT_STATUS_DELAYED; 571f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, 572f7fec032SZheng Liu map->m_len, map->m_pblk, status); 573f7fec032SZheng Liu if (ret < 0) 574f7fec032SZheng Liu retval = ret; 575f7fec032SZheng Liu } 576729f52c6SZheng Liu if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 5774df3d265SAneesh Kumar K.V up_read((&EXT4_I(inode)->i_data_sem)); 578f5ab0d1fSMingming Cao 579d100eef2SZheng Liu found: 580e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) { 581f7fec032SZheng Liu int ret = check_block_validity(inode, map); 5826fd058f7STheodore Ts'o if (ret != 0) 5836fd058f7STheodore Ts'o return ret; 5846fd058f7STheodore Ts'o } 5856fd058f7STheodore Ts'o 586f5ab0d1fSMingming Cao /* If it is only a block(s) look up */ 587c2177057STheodore Ts'o if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) 5884df3d265SAneesh Kumar K.V return retval; 5894df3d265SAneesh Kumar K.V 5904df3d265SAneesh Kumar K.V /* 591f5ab0d1fSMingming Cao * Returns if the blocks have already allocated 592f5ab0d1fSMingming Cao * 593f5ab0d1fSMingming Cao * Note that if blocks have been preallocated 594df3ab170STao Ma * ext4_ext_get_block() returns the create = 0 595f5ab0d1fSMingming Cao * with buffer head unmapped. 596f5ab0d1fSMingming Cao */ 597e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) 598f5ab0d1fSMingming Cao return retval; 599f5ab0d1fSMingming Cao 600f5ab0d1fSMingming Cao /* 601a25a4e1aSZheng Liu * Here we clear m_flags because after allocating an new extent, 602a25a4e1aSZheng Liu * it will be set again. 6032a8964d6SAneesh Kumar K.V */ 604a25a4e1aSZheng Liu map->m_flags &= ~EXT4_MAP_FLAGS; 6052a8964d6SAneesh Kumar K.V 6062a8964d6SAneesh Kumar K.V /* 607f5ab0d1fSMingming Cao * New blocks allocate and/or writing to uninitialized extent 608f5ab0d1fSMingming Cao * will possibly result in updating i_data, so we take 609f5ab0d1fSMingming Cao * the write lock of i_data_sem, and call get_blocks() 610f5ab0d1fSMingming Cao * with create == 1 flag. 6114df3d265SAneesh Kumar K.V */ 6124df3d265SAneesh Kumar K.V down_write((&EXT4_I(inode)->i_data_sem)); 613d2a17637SMingming Cao 614d2a17637SMingming Cao /* 615d2a17637SMingming Cao * if the caller is from delayed allocation writeout path 616d2a17637SMingming Cao * we have already reserved fs blocks for allocation 617d2a17637SMingming Cao * let the underlying get_block() function know to 618d2a17637SMingming Cao * avoid double accounting 619d2a17637SMingming Cao */ 620c2177057STheodore Ts'o if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) 621f2321097STheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_DELALLOC_RESERVED); 6224df3d265SAneesh Kumar K.V /* 6234df3d265SAneesh Kumar K.V * We need to check for EXT4 here because migrate 6244df3d265SAneesh Kumar K.V * could have changed the inode type in between 6254df3d265SAneesh Kumar K.V */ 62612e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 627e35fd660STheodore Ts'o retval = ext4_ext_map_blocks(handle, inode, map, flags); 6280e855ac8SAneesh Kumar K.V } else { 629e35fd660STheodore Ts'o retval = ext4_ind_map_blocks(handle, inode, map, flags); 630267e4db9SAneesh Kumar K.V 631e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_NEW) { 632267e4db9SAneesh Kumar K.V /* 633267e4db9SAneesh Kumar K.V * We allocated new blocks which will result in 634267e4db9SAneesh Kumar K.V * i_data's format changing. Force the migrate 635267e4db9SAneesh Kumar K.V * to fail by clearing migrate flags 636267e4db9SAneesh Kumar K.V */ 63719f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE); 638267e4db9SAneesh Kumar K.V } 6392ac3b6e0STheodore Ts'o 640d2a17637SMingming Cao /* 6412ac3b6e0STheodore Ts'o * Update reserved blocks/metadata blocks after successful 6425f634d06SAneesh Kumar K.V * block allocation which had been deferred till now. We don't 6435f634d06SAneesh Kumar K.V * support fallocate for non extent files. So we can update 6445f634d06SAneesh Kumar K.V * reserve space here. 645d2a17637SMingming Cao */ 6465f634d06SAneesh Kumar K.V if ((retval > 0) && 6471296cc85SAneesh Kumar K.V (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)) 6485f634d06SAneesh Kumar K.V ext4_da_update_reserve_space(inode, retval, 1); 6495f634d06SAneesh Kumar K.V } 650f7fec032SZheng Liu if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) 651f2321097STheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_DELALLOC_RESERVED); 652d2a17637SMingming Cao 653f7fec032SZheng Liu if (retval > 0) { 65451865fdaSZheng Liu int ret; 655f7fec032SZheng Liu unsigned long long status; 656f7fec032SZheng Liu 657921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 658921f266bSDmitry Monakhov if (retval != map->m_len) { 659921f266bSDmitry Monakhov printk("ES len assertation failed for inode: %lu " 660921f266bSDmitry Monakhov "retval %d != map->m_len %d " 661921f266bSDmitry Monakhov "in %s (allocation)\n", inode->i_ino, retval, 662921f266bSDmitry Monakhov map->m_len, __func__); 663921f266bSDmitry Monakhov } 664921f266bSDmitry Monakhov #endif 665921f266bSDmitry Monakhov 666adb23551SZheng Liu /* 667adb23551SZheng Liu * If the extent has been zeroed out, we don't need to update 668adb23551SZheng Liu * extent status tree. 669adb23551SZheng Liu */ 670adb23551SZheng Liu if ((flags & EXT4_GET_BLOCKS_PRE_IO) && 671adb23551SZheng Liu ext4_es_lookup_extent(inode, map->m_lblk, &es)) { 672adb23551SZheng Liu if (ext4_es_is_written(&es)) 673adb23551SZheng Liu goto has_zeroout; 674adb23551SZheng Liu } 675f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 676f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 677f7fec032SZheng Liu if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) && 678f7fec032SZheng Liu ext4_find_delalloc_range(inode, map->m_lblk, 679f7fec032SZheng Liu map->m_lblk + map->m_len - 1)) 680f7fec032SZheng Liu status |= EXTENT_STATUS_DELAYED; 681f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 682f7fec032SZheng Liu map->m_pblk, status); 68351865fdaSZheng Liu if (ret < 0) 68451865fdaSZheng Liu retval = ret; 68551865fdaSZheng Liu } 6865356f261SAditya Kali 687adb23551SZheng Liu has_zeroout: 6880e855ac8SAneesh Kumar K.V up_write((&EXT4_I(inode)->i_data_sem)); 689e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) { 690e29136f8STheodore Ts'o int ret = check_block_validity(inode, map); 6916fd058f7STheodore Ts'o if (ret != 0) 6926fd058f7STheodore Ts'o return ret; 6936fd058f7STheodore Ts'o } 6940e855ac8SAneesh Kumar K.V return retval; 6950e855ac8SAneesh Kumar K.V } 6960e855ac8SAneesh Kumar K.V 697f3bd1f3fSMingming Cao /* Maximum number of blocks we map for direct IO at once. */ 698f3bd1f3fSMingming Cao #define DIO_MAX_BLOCKS 4096 699f3bd1f3fSMingming Cao 7002ed88685STheodore Ts'o static int _ext4_get_block(struct inode *inode, sector_t iblock, 7012ed88685STheodore Ts'o struct buffer_head *bh, int flags) 702ac27a0ecSDave Kleikamp { 7033e4fdaf8SDmitriy Monakhov handle_t *handle = ext4_journal_current_handle(); 7042ed88685STheodore Ts'o struct ext4_map_blocks map; 7057fb5409dSJan Kara int ret = 0, started = 0; 706f3bd1f3fSMingming Cao int dio_credits; 707ac27a0ecSDave Kleikamp 70846c7f254STao Ma if (ext4_has_inline_data(inode)) 70946c7f254STao Ma return -ERANGE; 71046c7f254STao Ma 7112ed88685STheodore Ts'o map.m_lblk = iblock; 7122ed88685STheodore Ts'o map.m_len = bh->b_size >> inode->i_blkbits; 7132ed88685STheodore Ts'o 7148b0f165fSAnatol Pomozov if (flags && !(flags & EXT4_GET_BLOCKS_NO_LOCK) && !handle) { 7157fb5409dSJan Kara /* Direct IO write... */ 7162ed88685STheodore Ts'o if (map.m_len > DIO_MAX_BLOCKS) 7172ed88685STheodore Ts'o map.m_len = DIO_MAX_BLOCKS; 7182ed88685STheodore Ts'o dio_credits = ext4_chunk_trans_blocks(inode, map.m_len); 7199924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, 7209924a92aSTheodore Ts'o dio_credits); 7217fb5409dSJan Kara if (IS_ERR(handle)) { 722ac27a0ecSDave Kleikamp ret = PTR_ERR(handle); 7232ed88685STheodore Ts'o return ret; 7247fb5409dSJan Kara } 7257fb5409dSJan Kara started = 1; 726ac27a0ecSDave Kleikamp } 727ac27a0ecSDave Kleikamp 7282ed88685STheodore Ts'o ret = ext4_map_blocks(handle, inode, &map, flags); 729ac27a0ecSDave Kleikamp if (ret > 0) { 7302ed88685STheodore Ts'o map_bh(bh, inode->i_sb, map.m_pblk); 7312ed88685STheodore Ts'o bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags; 7322ed88685STheodore Ts'o bh->b_size = inode->i_sb->s_blocksize * map.m_len; 733ac27a0ecSDave Kleikamp ret = 0; 734ac27a0ecSDave Kleikamp } 7357fb5409dSJan Kara if (started) 7367fb5409dSJan Kara ext4_journal_stop(handle); 737ac27a0ecSDave Kleikamp return ret; 738ac27a0ecSDave Kleikamp } 739ac27a0ecSDave Kleikamp 7402ed88685STheodore Ts'o int ext4_get_block(struct inode *inode, sector_t iblock, 7412ed88685STheodore Ts'o struct buffer_head *bh, int create) 7422ed88685STheodore Ts'o { 7432ed88685STheodore Ts'o return _ext4_get_block(inode, iblock, bh, 7442ed88685STheodore Ts'o create ? EXT4_GET_BLOCKS_CREATE : 0); 7452ed88685STheodore Ts'o } 7462ed88685STheodore Ts'o 747ac27a0ecSDave Kleikamp /* 748ac27a0ecSDave Kleikamp * `handle' can be NULL if create is zero 749ac27a0ecSDave Kleikamp */ 750617ba13bSMingming Cao struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode, 751725d26d3SAneesh Kumar K.V ext4_lblk_t block, int create, int *errp) 752ac27a0ecSDave Kleikamp { 7532ed88685STheodore Ts'o struct ext4_map_blocks map; 7542ed88685STheodore Ts'o struct buffer_head *bh; 755ac27a0ecSDave Kleikamp int fatal = 0, err; 756ac27a0ecSDave Kleikamp 757ac27a0ecSDave Kleikamp J_ASSERT(handle != NULL || create == 0); 758ac27a0ecSDave Kleikamp 7592ed88685STheodore Ts'o map.m_lblk = block; 7602ed88685STheodore Ts'o map.m_len = 1; 7612ed88685STheodore Ts'o err = ext4_map_blocks(handle, inode, &map, 7622ed88685STheodore Ts'o create ? EXT4_GET_BLOCKS_CREATE : 0); 7632ed88685STheodore Ts'o 76490b0a973SCarlos Maiolino /* ensure we send some value back into *errp */ 76590b0a973SCarlos Maiolino *errp = 0; 76690b0a973SCarlos Maiolino 7670f70b406STheodore Ts'o if (create && err == 0) 7680f70b406STheodore Ts'o err = -ENOSPC; /* should never happen */ 7692ed88685STheodore Ts'o if (err < 0) 770ac27a0ecSDave Kleikamp *errp = err; 7712ed88685STheodore Ts'o if (err <= 0) 7722ed88685STheodore Ts'o return NULL; 7732ed88685STheodore Ts'o 7742ed88685STheodore Ts'o bh = sb_getblk(inode->i_sb, map.m_pblk); 775aebf0243SWang Shilong if (unlikely(!bh)) { 776860d21e2STheodore Ts'o *errp = -ENOMEM; 7772ed88685STheodore Ts'o return NULL; 778ac27a0ecSDave Kleikamp } 7792ed88685STheodore Ts'o if (map.m_flags & EXT4_MAP_NEW) { 780ac27a0ecSDave Kleikamp J_ASSERT(create != 0); 781ac39849dSAneesh Kumar K.V J_ASSERT(handle != NULL); 782ac27a0ecSDave Kleikamp 783ac27a0ecSDave Kleikamp /* 784ac27a0ecSDave Kleikamp * Now that we do not always journal data, we should 785ac27a0ecSDave Kleikamp * keep in mind whether this should always journal the 786ac27a0ecSDave Kleikamp * new buffer as metadata. For now, regular file 787617ba13bSMingming Cao * writes use ext4_get_block instead, so it's not a 788ac27a0ecSDave Kleikamp * problem. 789ac27a0ecSDave Kleikamp */ 790ac27a0ecSDave Kleikamp lock_buffer(bh); 791ac27a0ecSDave Kleikamp BUFFER_TRACE(bh, "call get_create_access"); 792617ba13bSMingming Cao fatal = ext4_journal_get_create_access(handle, bh); 793ac27a0ecSDave Kleikamp if (!fatal && !buffer_uptodate(bh)) { 794ac27a0ecSDave Kleikamp memset(bh->b_data, 0, inode->i_sb->s_blocksize); 795ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 796ac27a0ecSDave Kleikamp } 797ac27a0ecSDave Kleikamp unlock_buffer(bh); 7980390131bSFrank Mayhar BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); 7990390131bSFrank Mayhar err = ext4_handle_dirty_metadata(handle, inode, bh); 800ac27a0ecSDave Kleikamp if (!fatal) 801ac27a0ecSDave Kleikamp fatal = err; 802ac27a0ecSDave Kleikamp } else { 803ac27a0ecSDave Kleikamp BUFFER_TRACE(bh, "not a new buffer"); 804ac27a0ecSDave Kleikamp } 805ac27a0ecSDave Kleikamp if (fatal) { 806ac27a0ecSDave Kleikamp *errp = fatal; 807ac27a0ecSDave Kleikamp brelse(bh); 808ac27a0ecSDave Kleikamp bh = NULL; 809ac27a0ecSDave Kleikamp } 810ac27a0ecSDave Kleikamp return bh; 811ac27a0ecSDave Kleikamp } 812ac27a0ecSDave Kleikamp 813617ba13bSMingming Cao struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode, 814725d26d3SAneesh Kumar K.V ext4_lblk_t block, int create, int *err) 815ac27a0ecSDave Kleikamp { 816ac27a0ecSDave Kleikamp struct buffer_head *bh; 817ac27a0ecSDave Kleikamp 818617ba13bSMingming Cao bh = ext4_getblk(handle, inode, block, create, err); 819ac27a0ecSDave Kleikamp if (!bh) 820ac27a0ecSDave Kleikamp return bh; 821ac27a0ecSDave Kleikamp if (buffer_uptodate(bh)) 822ac27a0ecSDave Kleikamp return bh; 82365299a3bSChristoph Hellwig ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh); 824ac27a0ecSDave Kleikamp wait_on_buffer(bh); 825ac27a0ecSDave Kleikamp if (buffer_uptodate(bh)) 826ac27a0ecSDave Kleikamp return bh; 827ac27a0ecSDave Kleikamp put_bh(bh); 828ac27a0ecSDave Kleikamp *err = -EIO; 829ac27a0ecSDave Kleikamp return NULL; 830ac27a0ecSDave Kleikamp } 831ac27a0ecSDave Kleikamp 832f19d5870STao Ma int ext4_walk_page_buffers(handle_t *handle, 833ac27a0ecSDave Kleikamp struct buffer_head *head, 834ac27a0ecSDave Kleikamp unsigned from, 835ac27a0ecSDave Kleikamp unsigned to, 836ac27a0ecSDave Kleikamp int *partial, 837ac27a0ecSDave Kleikamp int (*fn)(handle_t *handle, 838ac27a0ecSDave Kleikamp struct buffer_head *bh)) 839ac27a0ecSDave Kleikamp { 840ac27a0ecSDave Kleikamp struct buffer_head *bh; 841ac27a0ecSDave Kleikamp unsigned block_start, block_end; 842ac27a0ecSDave Kleikamp unsigned blocksize = head->b_size; 843ac27a0ecSDave Kleikamp int err, ret = 0; 844ac27a0ecSDave Kleikamp struct buffer_head *next; 845ac27a0ecSDave Kleikamp 846ac27a0ecSDave Kleikamp for (bh = head, block_start = 0; 847ac27a0ecSDave Kleikamp ret == 0 && (bh != head || !block_start); 848de9a55b8STheodore Ts'o block_start = block_end, bh = next) { 849ac27a0ecSDave Kleikamp next = bh->b_this_page; 850ac27a0ecSDave Kleikamp block_end = block_start + blocksize; 851ac27a0ecSDave Kleikamp if (block_end <= from || block_start >= to) { 852ac27a0ecSDave Kleikamp if (partial && !buffer_uptodate(bh)) 853ac27a0ecSDave Kleikamp *partial = 1; 854ac27a0ecSDave Kleikamp continue; 855ac27a0ecSDave Kleikamp } 856ac27a0ecSDave Kleikamp err = (*fn)(handle, bh); 857ac27a0ecSDave Kleikamp if (!ret) 858ac27a0ecSDave Kleikamp ret = err; 859ac27a0ecSDave Kleikamp } 860ac27a0ecSDave Kleikamp return ret; 861ac27a0ecSDave Kleikamp } 862ac27a0ecSDave Kleikamp 863ac27a0ecSDave Kleikamp /* 864ac27a0ecSDave Kleikamp * To preserve ordering, it is essential that the hole instantiation and 865ac27a0ecSDave Kleikamp * the data write be encapsulated in a single transaction. We cannot 866617ba13bSMingming Cao * close off a transaction and start a new one between the ext4_get_block() 867dab291afSMingming Cao * and the commit_write(). So doing the jbd2_journal_start at the start of 868ac27a0ecSDave Kleikamp * prepare_write() is the right place. 869ac27a0ecSDave Kleikamp * 87036ade451SJan Kara * Also, this function can nest inside ext4_writepage(). In that case, we 87136ade451SJan Kara * *know* that ext4_writepage() has generated enough buffer credits to do the 87236ade451SJan Kara * whole page. So we won't block on the journal in that case, which is good, 87336ade451SJan Kara * because the caller may be PF_MEMALLOC. 874ac27a0ecSDave Kleikamp * 875617ba13bSMingming Cao * By accident, ext4 can be reentered when a transaction is open via 876ac27a0ecSDave Kleikamp * quota file writes. If we were to commit the transaction while thus 877ac27a0ecSDave Kleikamp * reentered, there can be a deadlock - we would be holding a quota 878ac27a0ecSDave Kleikamp * lock, and the commit would never complete if another thread had a 879ac27a0ecSDave Kleikamp * transaction open and was blocking on the quota lock - a ranking 880ac27a0ecSDave Kleikamp * violation. 881ac27a0ecSDave Kleikamp * 882dab291afSMingming Cao * So what we do is to rely on the fact that jbd2_journal_stop/journal_start 883ac27a0ecSDave Kleikamp * will _not_ run commit under these circumstances because handle->h_ref 884ac27a0ecSDave Kleikamp * is elevated. We'll still have enough credits for the tiny quotafile 885ac27a0ecSDave Kleikamp * write. 886ac27a0ecSDave Kleikamp */ 887f19d5870STao Ma int do_journal_get_write_access(handle_t *handle, 888ac27a0ecSDave Kleikamp struct buffer_head *bh) 889ac27a0ecSDave Kleikamp { 89056d35a4cSJan Kara int dirty = buffer_dirty(bh); 89156d35a4cSJan Kara int ret; 89256d35a4cSJan Kara 893ac27a0ecSDave Kleikamp if (!buffer_mapped(bh) || buffer_freed(bh)) 894ac27a0ecSDave Kleikamp return 0; 89556d35a4cSJan Kara /* 896ebdec241SChristoph Hellwig * __block_write_begin() could have dirtied some buffers. Clean 89756d35a4cSJan Kara * the dirty bit as jbd2_journal_get_write_access() could complain 89856d35a4cSJan Kara * otherwise about fs integrity issues. Setting of the dirty bit 899ebdec241SChristoph Hellwig * by __block_write_begin() isn't a real problem here as we clear 90056d35a4cSJan Kara * the bit before releasing a page lock and thus writeback cannot 90156d35a4cSJan Kara * ever write the buffer. 90256d35a4cSJan Kara */ 90356d35a4cSJan Kara if (dirty) 90456d35a4cSJan Kara clear_buffer_dirty(bh); 90556d35a4cSJan Kara ret = ext4_journal_get_write_access(handle, bh); 90656d35a4cSJan Kara if (!ret && dirty) 90756d35a4cSJan Kara ret = ext4_handle_dirty_metadata(handle, NULL, bh); 90856d35a4cSJan Kara return ret; 909ac27a0ecSDave Kleikamp } 910ac27a0ecSDave Kleikamp 9118b0f165fSAnatol Pomozov static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock, 9128b0f165fSAnatol Pomozov struct buffer_head *bh_result, int create); 913bfc1af65SNick Piggin static int ext4_write_begin(struct file *file, struct address_space *mapping, 914bfc1af65SNick Piggin loff_t pos, unsigned len, unsigned flags, 915bfc1af65SNick Piggin struct page **pagep, void **fsdata) 916ac27a0ecSDave Kleikamp { 917bfc1af65SNick Piggin struct inode *inode = mapping->host; 9181938a150SAneesh Kumar K.V int ret, needed_blocks; 919ac27a0ecSDave Kleikamp handle_t *handle; 920ac27a0ecSDave Kleikamp int retries = 0; 921bfc1af65SNick Piggin struct page *page; 922bfc1af65SNick Piggin pgoff_t index; 923bfc1af65SNick Piggin unsigned from, to; 924bfc1af65SNick Piggin 9259bffad1eSTheodore Ts'o trace_ext4_write_begin(inode, pos, len, flags); 9261938a150SAneesh Kumar K.V /* 9271938a150SAneesh Kumar K.V * Reserve one block more for addition to orphan list in case 9281938a150SAneesh Kumar K.V * we allocate blocks but write fails for some reason 9291938a150SAneesh Kumar K.V */ 9301938a150SAneesh Kumar K.V needed_blocks = ext4_writepage_trans_blocks(inode) + 1; 931bfc1af65SNick Piggin index = pos >> PAGE_CACHE_SHIFT; 932bfc1af65SNick Piggin from = pos & (PAGE_CACHE_SIZE - 1); 933bfc1af65SNick Piggin to = from + len; 934ac27a0ecSDave Kleikamp 935f19d5870STao Ma if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) { 936f19d5870STao Ma ret = ext4_try_to_write_inline_data(mapping, inode, pos, len, 937f19d5870STao Ma flags, pagep); 938f19d5870STao Ma if (ret < 0) 93947564bfbSTheodore Ts'o return ret; 94047564bfbSTheodore Ts'o if (ret == 1) 94147564bfbSTheodore Ts'o return 0; 942f19d5870STao Ma } 943f19d5870STao Ma 94447564bfbSTheodore Ts'o /* 94547564bfbSTheodore Ts'o * grab_cache_page_write_begin() can take a long time if the 94647564bfbSTheodore Ts'o * system is thrashing due to memory pressure, or if the page 94747564bfbSTheodore Ts'o * is being written back. So grab it first before we start 94847564bfbSTheodore Ts'o * the transaction handle. This also allows us to allocate 94947564bfbSTheodore Ts'o * the page (if needed) without using GFP_NOFS. 95047564bfbSTheodore Ts'o */ 95147564bfbSTheodore Ts'o retry_grab: 95254566b2cSNick Piggin page = grab_cache_page_write_begin(mapping, index, flags); 95347564bfbSTheodore Ts'o if (!page) 95447564bfbSTheodore Ts'o return -ENOMEM; 95547564bfbSTheodore Ts'o unlock_page(page); 95647564bfbSTheodore Ts'o 95747564bfbSTheodore Ts'o retry_journal: 9589924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks); 959ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 96047564bfbSTheodore Ts'o page_cache_release(page); 96147564bfbSTheodore Ts'o return PTR_ERR(handle); 962cf108bcaSJan Kara } 963f19d5870STao Ma 96447564bfbSTheodore Ts'o lock_page(page); 96547564bfbSTheodore Ts'o if (page->mapping != mapping) { 96647564bfbSTheodore Ts'o /* The page got truncated from under us */ 96747564bfbSTheodore Ts'o unlock_page(page); 96847564bfbSTheodore Ts'o page_cache_release(page); 969cf108bcaSJan Kara ext4_journal_stop(handle); 97047564bfbSTheodore Ts'o goto retry_grab; 971cf108bcaSJan Kara } 97247564bfbSTheodore Ts'o wait_on_page_writeback(page); 973cf108bcaSJan Kara 974744692dcSJiaying Zhang if (ext4_should_dioread_nolock(inode)) 9756e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_get_block_write); 976744692dcSJiaying Zhang else 9776e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_get_block); 978bfc1af65SNick Piggin 979bfc1af65SNick Piggin if (!ret && ext4_should_journal_data(inode)) { 980f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_buffers(page), 981f19d5870STao Ma from, to, NULL, 982f19d5870STao Ma do_journal_get_write_access); 983b46be050SAndrey Savochkin } 984bfc1af65SNick Piggin 985bfc1af65SNick Piggin if (ret) { 986bfc1af65SNick Piggin unlock_page(page); 987ae4d5372SAneesh Kumar K.V /* 9886e1db88dSChristoph Hellwig * __block_write_begin may have instantiated a few blocks 989ae4d5372SAneesh Kumar K.V * outside i_size. Trim these off again. Don't need 990ae4d5372SAneesh Kumar K.V * i_size_read because we hold i_mutex. 9911938a150SAneesh Kumar K.V * 9921938a150SAneesh Kumar K.V * Add inode to orphan list in case we crash before 9931938a150SAneesh Kumar K.V * truncate finishes 994ae4d5372SAneesh Kumar K.V */ 995ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 9961938a150SAneesh Kumar K.V ext4_orphan_add(handle, inode); 9971938a150SAneesh Kumar K.V 9981938a150SAneesh Kumar K.V ext4_journal_stop(handle); 9991938a150SAneesh Kumar K.V if (pos + len > inode->i_size) { 1000b9a4207dSJan Kara ext4_truncate_failed_write(inode); 10011938a150SAneesh Kumar K.V /* 1002ffacfa7aSJan Kara * If truncate failed early the inode might 10031938a150SAneesh Kumar K.V * still be on the orphan list; we need to 10041938a150SAneesh Kumar K.V * make sure the inode is removed from the 10051938a150SAneesh Kumar K.V * orphan list in that case. 10061938a150SAneesh Kumar K.V */ 10071938a150SAneesh Kumar K.V if (inode->i_nlink) 10081938a150SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 10091938a150SAneesh Kumar K.V } 1010bfc1af65SNick Piggin 101147564bfbSTheodore Ts'o if (ret == -ENOSPC && 101247564bfbSTheodore Ts'o ext4_should_retry_alloc(inode->i_sb, &retries)) 101347564bfbSTheodore Ts'o goto retry_journal; 101447564bfbSTheodore Ts'o page_cache_release(page); 101547564bfbSTheodore Ts'o return ret; 101647564bfbSTheodore Ts'o } 101747564bfbSTheodore Ts'o *pagep = page; 1018ac27a0ecSDave Kleikamp return ret; 1019ac27a0ecSDave Kleikamp } 1020ac27a0ecSDave Kleikamp 1021bfc1af65SNick Piggin /* For write_end() in data=journal mode */ 1022bfc1af65SNick Piggin static int write_end_fn(handle_t *handle, struct buffer_head *bh) 1023ac27a0ecSDave Kleikamp { 102413fca323STheodore Ts'o int ret; 1025ac27a0ecSDave Kleikamp if (!buffer_mapped(bh) || buffer_freed(bh)) 1026ac27a0ecSDave Kleikamp return 0; 1027ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 102813fca323STheodore Ts'o ret = ext4_handle_dirty_metadata(handle, NULL, bh); 102913fca323STheodore Ts'o clear_buffer_meta(bh); 103013fca323STheodore Ts'o clear_buffer_prio(bh); 103113fca323STheodore Ts'o return ret; 1032ac27a0ecSDave Kleikamp } 1033ac27a0ecSDave Kleikamp 1034eed4333fSZheng Liu /* 1035eed4333fSZheng Liu * We need to pick up the new inode size which generic_commit_write gave us 1036eed4333fSZheng Liu * `file' can be NULL - eg, when called from page_symlink(). 1037eed4333fSZheng Liu * 1038eed4333fSZheng Liu * ext4 never places buffers on inode->i_mapping->private_list. metadata 1039eed4333fSZheng Liu * buffers are managed internally. 1040eed4333fSZheng Liu */ 1041eed4333fSZheng Liu static int ext4_write_end(struct file *file, 1042f8514083SAneesh Kumar K.V struct address_space *mapping, 1043f8514083SAneesh Kumar K.V loff_t pos, unsigned len, unsigned copied, 1044f8514083SAneesh Kumar K.V struct page *page, void *fsdata) 1045f8514083SAneesh Kumar K.V { 1046f8514083SAneesh Kumar K.V handle_t *handle = ext4_journal_current_handle(); 1047eed4333fSZheng Liu struct inode *inode = mapping->host; 1048eed4333fSZheng Liu int ret = 0, ret2; 1049eed4333fSZheng Liu int i_size_changed = 0; 1050eed4333fSZheng Liu 1051eed4333fSZheng Liu trace_ext4_write_end(inode, pos, len, copied); 1052eed4333fSZheng Liu if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) { 1053eed4333fSZheng Liu ret = ext4_jbd2_file_inode(handle, inode); 1054eed4333fSZheng Liu if (ret) { 1055eed4333fSZheng Liu unlock_page(page); 1056eed4333fSZheng Liu page_cache_release(page); 1057eed4333fSZheng Liu goto errout; 1058eed4333fSZheng Liu } 1059eed4333fSZheng Liu } 1060f8514083SAneesh Kumar K.V 1061f19d5870STao Ma if (ext4_has_inline_data(inode)) 1062f19d5870STao Ma copied = ext4_write_inline_data_end(inode, pos, len, 1063f19d5870STao Ma copied, page); 1064f19d5870STao Ma else 1065f19d5870STao Ma copied = block_write_end(file, mapping, pos, 1066f19d5870STao Ma len, copied, page, fsdata); 1067f8514083SAneesh Kumar K.V 1068f8514083SAneesh Kumar K.V /* 1069f8514083SAneesh Kumar K.V * No need to use i_size_read() here, the i_size 1070eed4333fSZheng Liu * cannot change under us because we hole i_mutex. 1071f8514083SAneesh Kumar K.V * 1072f8514083SAneesh Kumar K.V * But it's important to update i_size while still holding page lock: 1073f8514083SAneesh Kumar K.V * page writeout could otherwise come in and zero beyond i_size. 1074f8514083SAneesh Kumar K.V */ 1075f8514083SAneesh Kumar K.V if (pos + copied > inode->i_size) { 1076f8514083SAneesh Kumar K.V i_size_write(inode, pos + copied); 1077f8514083SAneesh Kumar K.V i_size_changed = 1; 1078f8514083SAneesh Kumar K.V } 1079f8514083SAneesh Kumar K.V 1080f8514083SAneesh Kumar K.V if (pos + copied > EXT4_I(inode)->i_disksize) { 1081f8514083SAneesh Kumar K.V /* We need to mark inode dirty even if 1082f8514083SAneesh Kumar K.V * new_i_size is less that inode->i_size 1083eed4333fSZheng Liu * but greater than i_disksize. (hint delalloc) 1084f8514083SAneesh Kumar K.V */ 1085f8514083SAneesh Kumar K.V ext4_update_i_disksize(inode, (pos + copied)); 1086f8514083SAneesh Kumar K.V i_size_changed = 1; 1087f8514083SAneesh Kumar K.V } 1088f8514083SAneesh Kumar K.V unlock_page(page); 1089f8514083SAneesh Kumar K.V page_cache_release(page); 1090f8514083SAneesh Kumar K.V 1091f8514083SAneesh Kumar K.V /* 1092f8514083SAneesh Kumar K.V * Don't mark the inode dirty under page lock. First, it unnecessarily 1093f8514083SAneesh Kumar K.V * makes the holding time of page lock longer. Second, it forces lock 1094f8514083SAneesh Kumar K.V * ordering of page lock and transaction start for journaling 1095f8514083SAneesh Kumar K.V * filesystems. 1096f8514083SAneesh Kumar K.V */ 1097f8514083SAneesh Kumar K.V if (i_size_changed) 1098f8514083SAneesh Kumar K.V ext4_mark_inode_dirty(handle, inode); 1099f8514083SAneesh Kumar K.V 110074d553aaSTheodore Ts'o if (copied < 0) 110174d553aaSTheodore Ts'o ret = copied; 1102ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 1103f8514083SAneesh Kumar K.V /* if we have allocated more blocks and copied 1104f8514083SAneesh Kumar K.V * less. We will have blocks allocated outside 1105f8514083SAneesh Kumar K.V * inode->i_size. So truncate them 1106f8514083SAneesh Kumar K.V */ 1107f8514083SAneesh Kumar K.V ext4_orphan_add(handle, inode); 110874d553aaSTheodore Ts'o errout: 1109617ba13bSMingming Cao ret2 = ext4_journal_stop(handle); 1110ac27a0ecSDave Kleikamp if (!ret) 1111ac27a0ecSDave Kleikamp ret = ret2; 1112bfc1af65SNick Piggin 1113f8514083SAneesh Kumar K.V if (pos + len > inode->i_size) { 1114b9a4207dSJan Kara ext4_truncate_failed_write(inode); 1115f8514083SAneesh Kumar K.V /* 1116ffacfa7aSJan Kara * If truncate failed early the inode might still be 1117f8514083SAneesh Kumar K.V * on the orphan list; we need to make sure the inode 1118f8514083SAneesh Kumar K.V * is removed from the orphan list in that case. 1119f8514083SAneesh Kumar K.V */ 1120f8514083SAneesh Kumar K.V if (inode->i_nlink) 1121f8514083SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 1122f8514083SAneesh Kumar K.V } 1123f8514083SAneesh Kumar K.V 1124bfc1af65SNick Piggin return ret ? ret : copied; 1125ac27a0ecSDave Kleikamp } 1126ac27a0ecSDave Kleikamp 1127bfc1af65SNick Piggin static int ext4_journalled_write_end(struct file *file, 1128bfc1af65SNick Piggin struct address_space *mapping, 1129bfc1af65SNick Piggin loff_t pos, unsigned len, unsigned copied, 1130bfc1af65SNick Piggin struct page *page, void *fsdata) 1131ac27a0ecSDave Kleikamp { 1132617ba13bSMingming Cao handle_t *handle = ext4_journal_current_handle(); 1133bfc1af65SNick Piggin struct inode *inode = mapping->host; 1134ac27a0ecSDave Kleikamp int ret = 0, ret2; 1135ac27a0ecSDave Kleikamp int partial = 0; 1136bfc1af65SNick Piggin unsigned from, to; 1137cf17fea6SAneesh Kumar K.V loff_t new_i_size; 1138ac27a0ecSDave Kleikamp 11399bffad1eSTheodore Ts'o trace_ext4_journalled_write_end(inode, pos, len, copied); 1140bfc1af65SNick Piggin from = pos & (PAGE_CACHE_SIZE - 1); 1141bfc1af65SNick Piggin to = from + len; 1142bfc1af65SNick Piggin 1143441c8508SCurt Wohlgemuth BUG_ON(!ext4_handle_valid(handle)); 1144441c8508SCurt Wohlgemuth 11453fdcfb66STao Ma if (ext4_has_inline_data(inode)) 11463fdcfb66STao Ma copied = ext4_write_inline_data_end(inode, pos, len, 11473fdcfb66STao Ma copied, page); 11483fdcfb66STao Ma else { 1149bfc1af65SNick Piggin if (copied < len) { 1150bfc1af65SNick Piggin if (!PageUptodate(page)) 1151bfc1af65SNick Piggin copied = 0; 1152bfc1af65SNick Piggin page_zero_new_buffers(page, from+copied, to); 1153bfc1af65SNick Piggin } 1154ac27a0ecSDave Kleikamp 1155f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_buffers(page), from, 1156bfc1af65SNick Piggin to, &partial, write_end_fn); 1157ac27a0ecSDave Kleikamp if (!partial) 1158ac27a0ecSDave Kleikamp SetPageUptodate(page); 11593fdcfb66STao Ma } 1160cf17fea6SAneesh Kumar K.V new_i_size = pos + copied; 1161cf17fea6SAneesh Kumar K.V if (new_i_size > inode->i_size) 1162bfc1af65SNick Piggin i_size_write(inode, pos+copied); 116319f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_JDATA); 11642d859db3SJan Kara EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid; 1165cf17fea6SAneesh Kumar K.V if (new_i_size > EXT4_I(inode)->i_disksize) { 1166cf17fea6SAneesh Kumar K.V ext4_update_i_disksize(inode, new_i_size); 1167617ba13bSMingming Cao ret2 = ext4_mark_inode_dirty(handle, inode); 1168ac27a0ecSDave Kleikamp if (!ret) 1169ac27a0ecSDave Kleikamp ret = ret2; 1170ac27a0ecSDave Kleikamp } 1171bfc1af65SNick Piggin 1172cf108bcaSJan Kara unlock_page(page); 1173f8514083SAneesh Kumar K.V page_cache_release(page); 1174ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 1175f8514083SAneesh Kumar K.V /* if we have allocated more blocks and copied 1176f8514083SAneesh Kumar K.V * less. We will have blocks allocated outside 1177f8514083SAneesh Kumar K.V * inode->i_size. So truncate them 1178f8514083SAneesh Kumar K.V */ 1179f8514083SAneesh Kumar K.V ext4_orphan_add(handle, inode); 1180f8514083SAneesh Kumar K.V 1181617ba13bSMingming Cao ret2 = ext4_journal_stop(handle); 1182ac27a0ecSDave Kleikamp if (!ret) 1183ac27a0ecSDave Kleikamp ret = ret2; 1184f8514083SAneesh Kumar K.V if (pos + len > inode->i_size) { 1185b9a4207dSJan Kara ext4_truncate_failed_write(inode); 1186f8514083SAneesh Kumar K.V /* 1187ffacfa7aSJan Kara * If truncate failed early the inode might still be 1188f8514083SAneesh Kumar K.V * on the orphan list; we need to make sure the inode 1189f8514083SAneesh Kumar K.V * is removed from the orphan list in that case. 1190f8514083SAneesh Kumar K.V */ 1191f8514083SAneesh Kumar K.V if (inode->i_nlink) 1192f8514083SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 1193f8514083SAneesh Kumar K.V } 1194bfc1af65SNick Piggin 1195bfc1af65SNick Piggin return ret ? ret : copied; 1196ac27a0ecSDave Kleikamp } 1197d2a17637SMingming Cao 11989d0be502STheodore Ts'o /* 1199386ad67cSLukas Czerner * Reserve a metadata for a single block located at lblock 1200386ad67cSLukas Czerner */ 1201386ad67cSLukas Czerner static int ext4_da_reserve_metadata(struct inode *inode, ext4_lblk_t lblock) 1202386ad67cSLukas Czerner { 1203386ad67cSLukas Czerner int retries = 0; 1204386ad67cSLukas Czerner struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 1205386ad67cSLukas Czerner struct ext4_inode_info *ei = EXT4_I(inode); 1206386ad67cSLukas Czerner unsigned int md_needed; 1207386ad67cSLukas Czerner ext4_lblk_t save_last_lblock; 1208386ad67cSLukas Czerner int save_len; 1209386ad67cSLukas Czerner 1210386ad67cSLukas Czerner /* 1211386ad67cSLukas Czerner * recalculate the amount of metadata blocks to reserve 1212386ad67cSLukas Czerner * in order to allocate nrblocks 1213386ad67cSLukas Czerner * worse case is one extent per block 1214386ad67cSLukas Czerner */ 1215386ad67cSLukas Czerner repeat: 1216386ad67cSLukas Czerner spin_lock(&ei->i_block_reservation_lock); 1217386ad67cSLukas Czerner /* 1218386ad67cSLukas Czerner * ext4_calc_metadata_amount() has side effects, which we have 1219386ad67cSLukas Czerner * to be prepared undo if we fail to claim space. 1220386ad67cSLukas Czerner */ 1221386ad67cSLukas Czerner save_len = ei->i_da_metadata_calc_len; 1222386ad67cSLukas Czerner save_last_lblock = ei->i_da_metadata_calc_last_lblock; 1223386ad67cSLukas Czerner md_needed = EXT4_NUM_B2C(sbi, 1224386ad67cSLukas Czerner ext4_calc_metadata_amount(inode, lblock)); 1225386ad67cSLukas Czerner trace_ext4_da_reserve_space(inode, md_needed); 1226386ad67cSLukas Czerner 1227386ad67cSLukas Czerner /* 1228386ad67cSLukas Czerner * We do still charge estimated metadata to the sb though; 1229386ad67cSLukas Czerner * we cannot afford to run out of free blocks. 1230386ad67cSLukas Czerner */ 1231386ad67cSLukas Czerner if (ext4_claim_free_clusters(sbi, md_needed, 0)) { 1232386ad67cSLukas Czerner ei->i_da_metadata_calc_len = save_len; 1233386ad67cSLukas Czerner ei->i_da_metadata_calc_last_lblock = save_last_lblock; 1234386ad67cSLukas Czerner spin_unlock(&ei->i_block_reservation_lock); 1235386ad67cSLukas Czerner if (ext4_should_retry_alloc(inode->i_sb, &retries)) { 1236386ad67cSLukas Czerner cond_resched(); 1237386ad67cSLukas Czerner goto repeat; 1238386ad67cSLukas Czerner } 1239386ad67cSLukas Czerner return -ENOSPC; 1240386ad67cSLukas Czerner } 1241386ad67cSLukas Czerner ei->i_reserved_meta_blocks += md_needed; 1242386ad67cSLukas Czerner spin_unlock(&ei->i_block_reservation_lock); 1243386ad67cSLukas Czerner 1244386ad67cSLukas Czerner return 0; /* success */ 1245386ad67cSLukas Czerner } 1246386ad67cSLukas Czerner 1247386ad67cSLukas Czerner /* 12487b415bf6SAditya Kali * Reserve a single cluster located at lblock 12499d0be502STheodore Ts'o */ 125001f49d0bSTheodore Ts'o static int ext4_da_reserve_space(struct inode *inode, ext4_lblk_t lblock) 1251d2a17637SMingming Cao { 1252030ba6bcSAneesh Kumar K.V int retries = 0; 1253d2a17637SMingming Cao struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 12540637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 12557b415bf6SAditya Kali unsigned int md_needed; 12565dd4056dSChristoph Hellwig int ret; 125703179fe9STheodore Ts'o ext4_lblk_t save_last_lblock; 125803179fe9STheodore Ts'o int save_len; 1259d2a17637SMingming Cao 126060e58e0fSMingming Cao /* 126172b8ab9dSEric Sandeen * We will charge metadata quota at writeout time; this saves 126272b8ab9dSEric Sandeen * us from metadata over-estimation, though we may go over by 126372b8ab9dSEric Sandeen * a small amount in the end. Here we just reserve for data. 126460e58e0fSMingming Cao */ 12657b415bf6SAditya Kali ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1)); 12665dd4056dSChristoph Hellwig if (ret) 12675dd4056dSChristoph Hellwig return ret; 126803179fe9STheodore Ts'o 126903179fe9STheodore Ts'o /* 127003179fe9STheodore Ts'o * recalculate the amount of metadata blocks to reserve 127103179fe9STheodore Ts'o * in order to allocate nrblocks 127203179fe9STheodore Ts'o * worse case is one extent per block 127303179fe9STheodore Ts'o */ 127403179fe9STheodore Ts'o repeat: 127503179fe9STheodore Ts'o spin_lock(&ei->i_block_reservation_lock); 127603179fe9STheodore Ts'o /* 127703179fe9STheodore Ts'o * ext4_calc_metadata_amount() has side effects, which we have 127803179fe9STheodore Ts'o * to be prepared undo if we fail to claim space. 127903179fe9STheodore Ts'o */ 128003179fe9STheodore Ts'o save_len = ei->i_da_metadata_calc_len; 128103179fe9STheodore Ts'o save_last_lblock = ei->i_da_metadata_calc_last_lblock; 128203179fe9STheodore Ts'o md_needed = EXT4_NUM_B2C(sbi, 128303179fe9STheodore Ts'o ext4_calc_metadata_amount(inode, lblock)); 128403179fe9STheodore Ts'o trace_ext4_da_reserve_space(inode, md_needed); 128503179fe9STheodore Ts'o 128672b8ab9dSEric Sandeen /* 128772b8ab9dSEric Sandeen * We do still charge estimated metadata to the sb though; 128872b8ab9dSEric Sandeen * we cannot afford to run out of free blocks. 128972b8ab9dSEric Sandeen */ 1290e7d5f315STheodore Ts'o if (ext4_claim_free_clusters(sbi, md_needed + 1, 0)) { 129103179fe9STheodore Ts'o ei->i_da_metadata_calc_len = save_len; 129203179fe9STheodore Ts'o ei->i_da_metadata_calc_last_lblock = save_last_lblock; 129303179fe9STheodore Ts'o spin_unlock(&ei->i_block_reservation_lock); 1294030ba6bcSAneesh Kumar K.V if (ext4_should_retry_alloc(inode->i_sb, &retries)) { 1295bb8b20edSLukas Czerner cond_resched(); 1296030ba6bcSAneesh Kumar K.V goto repeat; 1297030ba6bcSAneesh Kumar K.V } 129803179fe9STheodore Ts'o dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1)); 1299d2a17637SMingming Cao return -ENOSPC; 1300d2a17637SMingming Cao } 13019d0be502STheodore Ts'o ei->i_reserved_data_blocks++; 13020637c6f4STheodore Ts'o ei->i_reserved_meta_blocks += md_needed; 13030637c6f4STheodore Ts'o spin_unlock(&ei->i_block_reservation_lock); 130439bc680aSDmitry Monakhov 1305d2a17637SMingming Cao return 0; /* success */ 1306d2a17637SMingming Cao } 1307d2a17637SMingming Cao 130812219aeaSAneesh Kumar K.V static void ext4_da_release_space(struct inode *inode, int to_free) 1309d2a17637SMingming Cao { 1310d2a17637SMingming Cao struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 13110637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 1312d2a17637SMingming Cao 1313cd213226SMingming Cao if (!to_free) 1314cd213226SMingming Cao return; /* Nothing to release, exit */ 1315cd213226SMingming Cao 1316d2a17637SMingming Cao spin_lock(&EXT4_I(inode)->i_block_reservation_lock); 1317cd213226SMingming Cao 13185a58ec87SLi Zefan trace_ext4_da_release_space(inode, to_free); 13190637c6f4STheodore Ts'o if (unlikely(to_free > ei->i_reserved_data_blocks)) { 1320cd213226SMingming Cao /* 13210637c6f4STheodore Ts'o * if there aren't enough reserved blocks, then the 13220637c6f4STheodore Ts'o * counter is messed up somewhere. Since this 13230637c6f4STheodore Ts'o * function is called from invalidate page, it's 13240637c6f4STheodore Ts'o * harmless to return without any action. 1325cd213226SMingming Cao */ 13268de5c325STheodore Ts'o ext4_warning(inode->i_sb, "ext4_da_release_space: " 13270637c6f4STheodore Ts'o "ino %lu, to_free %d with only %d reserved " 13281084f252STheodore Ts'o "data blocks", inode->i_ino, to_free, 13290637c6f4STheodore Ts'o ei->i_reserved_data_blocks); 13300637c6f4STheodore Ts'o WARN_ON(1); 13310637c6f4STheodore Ts'o to_free = ei->i_reserved_data_blocks; 13320637c6f4STheodore Ts'o } 13330637c6f4STheodore Ts'o ei->i_reserved_data_blocks -= to_free; 13340637c6f4STheodore Ts'o 13350637c6f4STheodore Ts'o if (ei->i_reserved_data_blocks == 0) { 13360637c6f4STheodore Ts'o /* 13370637c6f4STheodore Ts'o * We can release all of the reserved metadata blocks 13380637c6f4STheodore Ts'o * only when we have written all of the delayed 13390637c6f4STheodore Ts'o * allocation blocks. 13407b415bf6SAditya Kali * Note that in case of bigalloc, i_reserved_meta_blocks, 13417b415bf6SAditya Kali * i_reserved_data_blocks, etc. refer to number of clusters. 13420637c6f4STheodore Ts'o */ 134357042651STheodore Ts'o percpu_counter_sub(&sbi->s_dirtyclusters_counter, 134472b8ab9dSEric Sandeen ei->i_reserved_meta_blocks); 1345ee5f4d9cSTheodore Ts'o ei->i_reserved_meta_blocks = 0; 13469d0be502STheodore Ts'o ei->i_da_metadata_calc_len = 0; 1347cd213226SMingming Cao } 1348cd213226SMingming Cao 134972b8ab9dSEric Sandeen /* update fs dirty data blocks counter */ 135057042651STheodore Ts'o percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free); 1351d2a17637SMingming Cao 1352d2a17637SMingming Cao spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); 135360e58e0fSMingming Cao 13547b415bf6SAditya Kali dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free)); 1355d2a17637SMingming Cao } 1356d2a17637SMingming Cao 1357d2a17637SMingming Cao static void ext4_da_page_release_reservation(struct page *page, 1358ca99fdd2SLukas Czerner unsigned int offset, 1359ca99fdd2SLukas Czerner unsigned int length) 1360d2a17637SMingming Cao { 1361d2a17637SMingming Cao int to_release = 0; 1362d2a17637SMingming Cao struct buffer_head *head, *bh; 1363d2a17637SMingming Cao unsigned int curr_off = 0; 13647b415bf6SAditya Kali struct inode *inode = page->mapping->host; 13657b415bf6SAditya Kali struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 1366ca99fdd2SLukas Czerner unsigned int stop = offset + length; 13677b415bf6SAditya Kali int num_clusters; 136851865fdaSZheng Liu ext4_fsblk_t lblk; 1369d2a17637SMingming Cao 1370ca99fdd2SLukas Czerner BUG_ON(stop > PAGE_CACHE_SIZE || stop < length); 1371ca99fdd2SLukas Czerner 1372d2a17637SMingming Cao head = page_buffers(page); 1373d2a17637SMingming Cao bh = head; 1374d2a17637SMingming Cao do { 1375d2a17637SMingming Cao unsigned int next_off = curr_off + bh->b_size; 1376d2a17637SMingming Cao 1377ca99fdd2SLukas Czerner if (next_off > stop) 1378ca99fdd2SLukas Czerner break; 1379ca99fdd2SLukas Czerner 1380d2a17637SMingming Cao if ((offset <= curr_off) && (buffer_delay(bh))) { 1381d2a17637SMingming Cao to_release++; 1382d2a17637SMingming Cao clear_buffer_delay(bh); 1383d2a17637SMingming Cao } 1384d2a17637SMingming Cao curr_off = next_off; 1385d2a17637SMingming Cao } while ((bh = bh->b_this_page) != head); 13867b415bf6SAditya Kali 138751865fdaSZheng Liu if (to_release) { 138851865fdaSZheng Liu lblk = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits); 138951865fdaSZheng Liu ext4_es_remove_extent(inode, lblk, to_release); 139051865fdaSZheng Liu } 139151865fdaSZheng Liu 13927b415bf6SAditya Kali /* If we have released all the blocks belonging to a cluster, then we 13937b415bf6SAditya Kali * need to release the reserved space for that cluster. */ 13947b415bf6SAditya Kali num_clusters = EXT4_NUM_B2C(sbi, to_release); 13957b415bf6SAditya Kali while (num_clusters > 0) { 13967b415bf6SAditya Kali lblk = (page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits)) + 13977b415bf6SAditya Kali ((num_clusters - 1) << sbi->s_cluster_bits); 13987b415bf6SAditya Kali if (sbi->s_cluster_ratio == 1 || 13997d1b1fbcSZheng Liu !ext4_find_delalloc_cluster(inode, lblk)) 14007b415bf6SAditya Kali ext4_da_release_space(inode, 1); 14017b415bf6SAditya Kali 14027b415bf6SAditya Kali num_clusters--; 14037b415bf6SAditya Kali } 1404d2a17637SMingming Cao } 1405ac27a0ecSDave Kleikamp 1406ac27a0ecSDave Kleikamp /* 140764769240SAlex Tomas * Delayed allocation stuff 140864769240SAlex Tomas */ 140964769240SAlex Tomas 141097a851edSJan Kara static void ext4_da_block_invalidatepages(struct mpage_da_data *mpd); 141197a851edSJan Kara 141264769240SAlex Tomas /* 141364769240SAlex Tomas * mpage_da_submit_io - walks through extent of pages and try to write 1414a1d6cc56SAneesh Kumar K.V * them with writepage() call back 141564769240SAlex Tomas * 141664769240SAlex Tomas * @mpd->inode: inode 141764769240SAlex Tomas * @mpd->first_page: first page of the extent 141864769240SAlex Tomas * @mpd->next_page: page after the last page of the extent 141964769240SAlex Tomas * 142064769240SAlex Tomas * By the time mpage_da_submit_io() is called we expect all blocks 142164769240SAlex Tomas * to be allocated. this may be wrong if allocation failed. 142264769240SAlex Tomas * 142364769240SAlex Tomas * As pages are already locked by write_cache_pages(), we can't use it 142464769240SAlex Tomas */ 14251de3e3dfSTheodore Ts'o static int mpage_da_submit_io(struct mpage_da_data *mpd, 14261de3e3dfSTheodore Ts'o struct ext4_map_blocks *map) 142764769240SAlex Tomas { 1428791b7f08SAneesh Kumar K.V struct pagevec pvec; 1429791b7f08SAneesh Kumar K.V unsigned long index, end; 1430791b7f08SAneesh Kumar K.V int ret = 0, err, nr_pages, i; 1431791b7f08SAneesh Kumar K.V struct inode *inode = mpd->inode; 1432791b7f08SAneesh Kumar K.V struct address_space *mapping = inode->i_mapping; 1433cb20d518STheodore Ts'o loff_t size = i_size_read(inode); 14343ecdb3a1STheodore Ts'o unsigned int len, block_start; 14353ecdb3a1STheodore Ts'o struct buffer_head *bh, *page_bufs = NULL; 14361de3e3dfSTheodore Ts'o sector_t pblock = 0, cur_logical = 0; 1437bd2d0210STheodore Ts'o struct ext4_io_submit io_submit; 143864769240SAlex Tomas 143964769240SAlex Tomas BUG_ON(mpd->next_page <= mpd->first_page); 144097a851edSJan Kara ext4_io_submit_init(&io_submit, mpd->wbc); 144197a851edSJan Kara io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS); 144297a851edSJan Kara if (!io_submit.io_end) { 144397a851edSJan Kara ext4_da_block_invalidatepages(mpd); 144497a851edSJan Kara return -ENOMEM; 144597a851edSJan Kara } 1446791b7f08SAneesh Kumar K.V /* 1447791b7f08SAneesh Kumar K.V * We need to start from the first_page to the next_page - 1 1448791b7f08SAneesh Kumar K.V * to make sure we also write the mapped dirty buffer_heads. 14498dc207c0STheodore Ts'o * If we look at mpd->b_blocknr we would only be looking 1450791b7f08SAneesh Kumar K.V * at the currently mapped buffer_heads. 1451791b7f08SAneesh Kumar K.V */ 145264769240SAlex Tomas index = mpd->first_page; 145364769240SAlex Tomas end = mpd->next_page - 1; 145464769240SAlex Tomas 1455791b7f08SAneesh Kumar K.V pagevec_init(&pvec, 0); 145664769240SAlex Tomas while (index <= end) { 1457791b7f08SAneesh Kumar K.V nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE); 145864769240SAlex Tomas if (nr_pages == 0) 145964769240SAlex Tomas break; 146064769240SAlex Tomas for (i = 0; i < nr_pages; i++) { 1461f8bec370SJan Kara int skip_page = 0; 146264769240SAlex Tomas struct page *page = pvec.pages[i]; 146364769240SAlex Tomas 1464791b7f08SAneesh Kumar K.V index = page->index; 1465791b7f08SAneesh Kumar K.V if (index > end) 1466791b7f08SAneesh Kumar K.V break; 1467cb20d518STheodore Ts'o 1468cb20d518STheodore Ts'o if (index == size >> PAGE_CACHE_SHIFT) 1469cb20d518STheodore Ts'o len = size & ~PAGE_CACHE_MASK; 1470cb20d518STheodore Ts'o else 1471cb20d518STheodore Ts'o len = PAGE_CACHE_SIZE; 14721de3e3dfSTheodore Ts'o if (map) { 14731de3e3dfSTheodore Ts'o cur_logical = index << (PAGE_CACHE_SHIFT - 14741de3e3dfSTheodore Ts'o inode->i_blkbits); 14751de3e3dfSTheodore Ts'o pblock = map->m_pblk + (cur_logical - 14761de3e3dfSTheodore Ts'o map->m_lblk); 14771de3e3dfSTheodore Ts'o } 1478791b7f08SAneesh Kumar K.V index++; 1479791b7f08SAneesh Kumar K.V 1480791b7f08SAneesh Kumar K.V BUG_ON(!PageLocked(page)); 1481791b7f08SAneesh Kumar K.V BUG_ON(PageWriteback(page)); 1482791b7f08SAneesh Kumar K.V 14833ecdb3a1STheodore Ts'o bh = page_bufs = page_buffers(page); 14843ecdb3a1STheodore Ts'o block_start = 0; 14853ecdb3a1STheodore Ts'o do { 14861de3e3dfSTheodore Ts'o if (map && (cur_logical >= map->m_lblk) && 14871de3e3dfSTheodore Ts'o (cur_logical <= (map->m_lblk + 14881de3e3dfSTheodore Ts'o (map->m_len - 1)))) { 14891de3e3dfSTheodore Ts'o if (buffer_delay(bh)) { 14901de3e3dfSTheodore Ts'o clear_buffer_delay(bh); 14911de3e3dfSTheodore Ts'o bh->b_blocknr = pblock; 14921de3e3dfSTheodore Ts'o } 14931de3e3dfSTheodore Ts'o if (buffer_unwritten(bh) || 14941de3e3dfSTheodore Ts'o buffer_mapped(bh)) 14951de3e3dfSTheodore Ts'o BUG_ON(bh->b_blocknr != pblock); 14961de3e3dfSTheodore Ts'o if (map->m_flags & EXT4_MAP_UNINIT) 14971de3e3dfSTheodore Ts'o set_buffer_uninit(bh); 14981de3e3dfSTheodore Ts'o clear_buffer_unwritten(bh); 14991de3e3dfSTheodore Ts'o } 15001de3e3dfSTheodore Ts'o 150113a79a47SYongqiang Yang /* 150213a79a47SYongqiang Yang * skip page if block allocation undone and 150313a79a47SYongqiang Yang * block is dirty 150413a79a47SYongqiang Yang */ 150513a79a47SYongqiang Yang if (ext4_bh_delay_or_unwritten(NULL, bh)) 150697498956STheodore Ts'o skip_page = 1; 15073ecdb3a1STheodore Ts'o bh = bh->b_this_page; 15083ecdb3a1STheodore Ts'o block_start += bh->b_size; 15091de3e3dfSTheodore Ts'o cur_logical++; 15101de3e3dfSTheodore Ts'o pblock++; 15111de3e3dfSTheodore Ts'o } while (bh != page_bufs); 15121de3e3dfSTheodore Ts'o 1513f8bec370SJan Kara if (skip_page) { 1514f8bec370SJan Kara unlock_page(page); 1515f8bec370SJan Kara continue; 1516f8bec370SJan Kara } 1517cb20d518STheodore Ts'o 151897498956STheodore Ts'o clear_page_dirty_for_io(page); 1519fe089c77SJan Kara err = ext4_bio_write_page(&io_submit, page, len, 1520fe089c77SJan Kara mpd->wbc); 1521cb20d518STheodore Ts'o if (!err) 1522a1d6cc56SAneesh Kumar K.V mpd->pages_written++; 152364769240SAlex Tomas /* 152464769240SAlex Tomas * In error case, we have to continue because 152564769240SAlex Tomas * remaining pages are still locked 152664769240SAlex Tomas */ 152764769240SAlex Tomas if (ret == 0) 152864769240SAlex Tomas ret = err; 152964769240SAlex Tomas } 153064769240SAlex Tomas pagevec_release(&pvec); 153164769240SAlex Tomas } 1532bd2d0210STheodore Ts'o ext4_io_submit(&io_submit); 153397a851edSJan Kara /* Drop io_end reference we got from init */ 153497a851edSJan Kara ext4_put_io_end_defer(io_submit.io_end); 153564769240SAlex Tomas return ret; 153664769240SAlex Tomas } 153764769240SAlex Tomas 1538c7f5938aSCurt Wohlgemuth static void ext4_da_block_invalidatepages(struct mpage_da_data *mpd) 1539c4a0c46eSAneesh Kumar K.V { 1540c4a0c46eSAneesh Kumar K.V int nr_pages, i; 1541c4a0c46eSAneesh Kumar K.V pgoff_t index, end; 1542c4a0c46eSAneesh Kumar K.V struct pagevec pvec; 1543c4a0c46eSAneesh Kumar K.V struct inode *inode = mpd->inode; 1544c4a0c46eSAneesh Kumar K.V struct address_space *mapping = inode->i_mapping; 154551865fdaSZheng Liu ext4_lblk_t start, last; 1546c4a0c46eSAneesh Kumar K.V 1547c7f5938aSCurt Wohlgemuth index = mpd->first_page; 1548c7f5938aSCurt Wohlgemuth end = mpd->next_page - 1; 154951865fdaSZheng Liu 155051865fdaSZheng Liu start = index << (PAGE_CACHE_SHIFT - inode->i_blkbits); 155151865fdaSZheng Liu last = end << (PAGE_CACHE_SHIFT - inode->i_blkbits); 155251865fdaSZheng Liu ext4_es_remove_extent(inode, start, last - start + 1); 155351865fdaSZheng Liu 155466bea92cSEric Sandeen pagevec_init(&pvec, 0); 1555c4a0c46eSAneesh Kumar K.V while (index <= end) { 1556c4a0c46eSAneesh Kumar K.V nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE); 1557c4a0c46eSAneesh Kumar K.V if (nr_pages == 0) 1558c4a0c46eSAneesh Kumar K.V break; 1559c4a0c46eSAneesh Kumar K.V for (i = 0; i < nr_pages; i++) { 1560c4a0c46eSAneesh Kumar K.V struct page *page = pvec.pages[i]; 15619b1d0998SJan Kara if (page->index > end) 1562c4a0c46eSAneesh Kumar K.V break; 1563c4a0c46eSAneesh Kumar K.V BUG_ON(!PageLocked(page)); 1564c4a0c46eSAneesh Kumar K.V BUG_ON(PageWriteback(page)); 1565d47992f8SLukas Czerner block_invalidatepage(page, 0, PAGE_CACHE_SIZE); 1566c4a0c46eSAneesh Kumar K.V ClearPageUptodate(page); 1567c4a0c46eSAneesh Kumar K.V unlock_page(page); 1568c4a0c46eSAneesh Kumar K.V } 15699b1d0998SJan Kara index = pvec.pages[nr_pages - 1]->index + 1; 15709b1d0998SJan Kara pagevec_release(&pvec); 1571c4a0c46eSAneesh Kumar K.V } 1572c4a0c46eSAneesh Kumar K.V return; 1573c4a0c46eSAneesh Kumar K.V } 1574c4a0c46eSAneesh Kumar K.V 1575df22291fSAneesh Kumar K.V static void ext4_print_free_blocks(struct inode *inode) 1576df22291fSAneesh Kumar K.V { 1577df22291fSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 157892b97816STheodore Ts'o struct super_block *sb = inode->i_sb; 1579f78ee70dSLukas Czerner struct ext4_inode_info *ei = EXT4_I(inode); 158092b97816STheodore Ts'o 158192b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld", 15825dee5437STheodore Ts'o EXT4_C2B(EXT4_SB(inode->i_sb), 1583f78ee70dSLukas Czerner ext4_count_free_clusters(sb))); 158492b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Free/Dirty block details"); 158592b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "free_blocks=%lld", 1586f78ee70dSLukas Czerner (long long) EXT4_C2B(EXT4_SB(sb), 158757042651STheodore Ts'o percpu_counter_sum(&sbi->s_freeclusters_counter))); 158892b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld", 1589f78ee70dSLukas Czerner (long long) EXT4_C2B(EXT4_SB(sb), 15907b415bf6SAditya Kali percpu_counter_sum(&sbi->s_dirtyclusters_counter))); 159192b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Block reservation details"); 159292b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u", 1593f78ee70dSLukas Czerner ei->i_reserved_data_blocks); 159492b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "i_reserved_meta_blocks=%u", 1595f78ee70dSLukas Czerner ei->i_reserved_meta_blocks); 1596f78ee70dSLukas Czerner ext4_msg(sb, KERN_CRIT, "i_allocated_meta_blocks=%u", 1597f78ee70dSLukas Czerner ei->i_allocated_meta_blocks); 1598df22291fSAneesh Kumar K.V return; 1599df22291fSAneesh Kumar K.V } 1600df22291fSAneesh Kumar K.V 1601b920c755STheodore Ts'o /* 16025a87b7a5STheodore Ts'o * mpage_da_map_and_submit - go through given space, map them 16035a87b7a5STheodore Ts'o * if necessary, and then submit them for I/O 160464769240SAlex Tomas * 16058dc207c0STheodore Ts'o * @mpd - bh describing space 160664769240SAlex Tomas * 160764769240SAlex Tomas * The function skips space we know is already mapped to disk blocks. 160864769240SAlex Tomas * 160964769240SAlex Tomas */ 16105a87b7a5STheodore Ts'o static void mpage_da_map_and_submit(struct mpage_da_data *mpd) 161164769240SAlex Tomas { 16122ac3b6e0STheodore Ts'o int err, blks, get_blocks_flags; 16131de3e3dfSTheodore Ts'o struct ext4_map_blocks map, *mapp = NULL; 16142fa3cdfbSTheodore Ts'o sector_t next = mpd->b_blocknr; 16152fa3cdfbSTheodore Ts'o unsigned max_blocks = mpd->b_size >> mpd->inode->i_blkbits; 16162fa3cdfbSTheodore Ts'o loff_t disksize = EXT4_I(mpd->inode)->i_disksize; 16172fa3cdfbSTheodore Ts'o handle_t *handle = NULL; 161864769240SAlex Tomas 161964769240SAlex Tomas /* 16205a87b7a5STheodore Ts'o * If the blocks are mapped already, or we couldn't accumulate 16215a87b7a5STheodore Ts'o * any blocks, then proceed immediately to the submission stage. 162264769240SAlex Tomas */ 16235a87b7a5STheodore Ts'o if ((mpd->b_size == 0) || 16245a87b7a5STheodore Ts'o ((mpd->b_state & (1 << BH_Mapped)) && 162529fa89d0SAneesh Kumar K.V !(mpd->b_state & (1 << BH_Delay)) && 16265a87b7a5STheodore Ts'o !(mpd->b_state & (1 << BH_Unwritten)))) 16275a87b7a5STheodore Ts'o goto submit_io; 16282fa3cdfbSTheodore Ts'o 16292fa3cdfbSTheodore Ts'o handle = ext4_journal_current_handle(); 16302fa3cdfbSTheodore Ts'o BUG_ON(!handle); 16312fa3cdfbSTheodore Ts'o 163279ffab34SAneesh Kumar K.V /* 163379e83036SEric Sandeen * Call ext4_map_blocks() to allocate any delayed allocation 16342ac3b6e0STheodore Ts'o * blocks, or to convert an uninitialized extent to be 16352ac3b6e0STheodore Ts'o * initialized (in the case where we have written into 16362ac3b6e0STheodore Ts'o * one or more preallocated blocks). 16372ac3b6e0STheodore Ts'o * 16382ac3b6e0STheodore Ts'o * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE to 16392ac3b6e0STheodore Ts'o * indicate that we are on the delayed allocation path. This 16402ac3b6e0STheodore Ts'o * affects functions in many different parts of the allocation 16412ac3b6e0STheodore Ts'o * call path. This flag exists primarily because we don't 164279e83036SEric Sandeen * want to change *many* call functions, so ext4_map_blocks() 1643f2321097STheodore Ts'o * will set the EXT4_STATE_DELALLOC_RESERVED flag once the 16442ac3b6e0STheodore Ts'o * inode's allocation semaphore is taken. 16452ac3b6e0STheodore Ts'o * 16462ac3b6e0STheodore Ts'o * If the blocks in questions were delalloc blocks, set 16472ac3b6e0STheodore Ts'o * EXT4_GET_BLOCKS_DELALLOC_RESERVE so the delalloc accounting 16482ac3b6e0STheodore Ts'o * variables are updated after the blocks have been allocated. 164979ffab34SAneesh Kumar K.V */ 16502ed88685STheodore Ts'o map.m_lblk = next; 16512ed88685STheodore Ts'o map.m_len = max_blocks; 165227dd4385SLukas Czerner /* 165327dd4385SLukas Czerner * We're in delalloc path and it is possible that we're going to 165427dd4385SLukas Czerner * need more metadata blocks than previously reserved. However 165527dd4385SLukas Czerner * we must not fail because we're in writeback and there is 165627dd4385SLukas Czerner * nothing we can do about it so it might result in data loss. 165727dd4385SLukas Czerner * So use reserved blocks to allocate metadata if possible. 165827dd4385SLukas Czerner */ 165927dd4385SLukas Czerner get_blocks_flags = EXT4_GET_BLOCKS_CREATE | 166027dd4385SLukas Czerner EXT4_GET_BLOCKS_METADATA_NOFAIL; 1661744692dcSJiaying Zhang if (ext4_should_dioread_nolock(mpd->inode)) 1662744692dcSJiaying Zhang get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT; 16632ac3b6e0STheodore Ts'o if (mpd->b_state & (1 << BH_Delay)) 16641296cc85SAneesh Kumar K.V get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE; 16651296cc85SAneesh Kumar K.V 166627dd4385SLukas Czerner 16672ed88685STheodore Ts'o blks = ext4_map_blocks(handle, mpd->inode, &map, get_blocks_flags); 16682fa3cdfbSTheodore Ts'o if (blks < 0) { 1669e3570639SEric Sandeen struct super_block *sb = mpd->inode->i_sb; 1670e3570639SEric Sandeen 16712fa3cdfbSTheodore Ts'o err = blks; 1672ed5bde0bSTheodore Ts'o /* 16735a87b7a5STheodore Ts'o * If get block returns EAGAIN or ENOSPC and there 167497498956STheodore Ts'o * appears to be free blocks we will just let 167597498956STheodore Ts'o * mpage_da_submit_io() unlock all of the pages. 1676c4a0c46eSAneesh Kumar K.V */ 1677c4a0c46eSAneesh Kumar K.V if (err == -EAGAIN) 16785a87b7a5STheodore Ts'o goto submit_io; 1679df22291fSAneesh Kumar K.V 16805dee5437STheodore Ts'o if (err == -ENOSPC && ext4_count_free_clusters(sb)) { 1681df22291fSAneesh Kumar K.V mpd->retval = err; 16825a87b7a5STheodore Ts'o goto submit_io; 1683df22291fSAneesh Kumar K.V } 1684df22291fSAneesh Kumar K.V 1685c4a0c46eSAneesh Kumar K.V /* 1686ed5bde0bSTheodore Ts'o * get block failure will cause us to loop in 1687ed5bde0bSTheodore Ts'o * writepages, because a_ops->writepage won't be able 1688ed5bde0bSTheodore Ts'o * to make progress. The page will be redirtied by 1689ed5bde0bSTheodore Ts'o * writepage and writepages will again try to write 1690ed5bde0bSTheodore Ts'o * the same. 1691c4a0c46eSAneesh Kumar K.V */ 1692e3570639SEric Sandeen if (!(EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)) { 1693e3570639SEric Sandeen ext4_msg(sb, KERN_CRIT, 1694e3570639SEric Sandeen "delayed block allocation failed for inode %lu " 1695e3570639SEric Sandeen "at logical offset %llu with max blocks %zd " 1696e3570639SEric Sandeen "with error %d", mpd->inode->i_ino, 1697c4a0c46eSAneesh Kumar K.V (unsigned long long) next, 16988dc207c0STheodore Ts'o mpd->b_size >> mpd->inode->i_blkbits, err); 1699e3570639SEric Sandeen ext4_msg(sb, KERN_CRIT, 170001a523ebSTheodore Ts'o "This should not happen!! Data will be lost"); 1701e3570639SEric Sandeen if (err == -ENOSPC) 1702df22291fSAneesh Kumar K.V ext4_print_free_blocks(mpd->inode); 1703030ba6bcSAneesh Kumar K.V } 17042fa3cdfbSTheodore Ts'o /* invalidate all the pages */ 1705c7f5938aSCurt Wohlgemuth ext4_da_block_invalidatepages(mpd); 1706e0fd9b90SCurt Wohlgemuth 1707e0fd9b90SCurt Wohlgemuth /* Mark this page range as having been completed */ 1708e0fd9b90SCurt Wohlgemuth mpd->io_done = 1; 17095a87b7a5STheodore Ts'o return; 1710c4a0c46eSAneesh Kumar K.V } 17112fa3cdfbSTheodore Ts'o BUG_ON(blks == 0); 17122fa3cdfbSTheodore Ts'o 17131de3e3dfSTheodore Ts'o mapp = ↦ 17142ed88685STheodore Ts'o if (map.m_flags & EXT4_MAP_NEW) { 17152ed88685STheodore Ts'o struct block_device *bdev = mpd->inode->i_sb->s_bdev; 17162ed88685STheodore Ts'o int i; 171764769240SAlex Tomas 17182ed88685STheodore Ts'o for (i = 0; i < map.m_len; i++) 17192ed88685STheodore Ts'o unmap_underlying_metadata(bdev, map.m_pblk + i); 17202fa3cdfbSTheodore Ts'o } 17212fa3cdfbSTheodore Ts'o 17222fa3cdfbSTheodore Ts'o /* 172303f5d8bcSJan Kara * Update on-disk size along with block allocation. 17242fa3cdfbSTheodore Ts'o */ 17252fa3cdfbSTheodore Ts'o disksize = ((loff_t) next + blks) << mpd->inode->i_blkbits; 17262fa3cdfbSTheodore Ts'o if (disksize > i_size_read(mpd->inode)) 17272fa3cdfbSTheodore Ts'o disksize = i_size_read(mpd->inode); 17282fa3cdfbSTheodore Ts'o if (disksize > EXT4_I(mpd->inode)->i_disksize) { 17292fa3cdfbSTheodore Ts'o ext4_update_i_disksize(mpd->inode, disksize); 17305a87b7a5STheodore Ts'o err = ext4_mark_inode_dirty(handle, mpd->inode); 17315a87b7a5STheodore Ts'o if (err) 17325a87b7a5STheodore Ts'o ext4_error(mpd->inode->i_sb, 17335a87b7a5STheodore Ts'o "Failed to mark inode %lu dirty", 17345a87b7a5STheodore Ts'o mpd->inode->i_ino); 17352fa3cdfbSTheodore Ts'o } 17362fa3cdfbSTheodore Ts'o 17375a87b7a5STheodore Ts'o submit_io: 17381de3e3dfSTheodore Ts'o mpage_da_submit_io(mpd, mapp); 17395a87b7a5STheodore Ts'o mpd->io_done = 1; 174064769240SAlex Tomas } 174164769240SAlex Tomas 1742bf068ee2SAneesh Kumar K.V #define BH_FLAGS ((1 << BH_Uptodate) | (1 << BH_Mapped) | \ 1743bf068ee2SAneesh Kumar K.V (1 << BH_Delay) | (1 << BH_Unwritten)) 174464769240SAlex Tomas 174564769240SAlex Tomas /* 174664769240SAlex Tomas * mpage_add_bh_to_extent - try to add one more block to extent of blocks 174764769240SAlex Tomas * 174864769240SAlex Tomas * @mpd->lbh - extent of blocks 174964769240SAlex Tomas * @logical - logical number of the block in the file 1750b6a8e62fSJan Kara * @b_state - b_state of the buffer head added 175164769240SAlex Tomas * 175264769240SAlex Tomas * the function is used to collect contig. blocks in same state 175364769240SAlex Tomas */ 1754b6a8e62fSJan Kara static void mpage_add_bh_to_extent(struct mpage_da_data *mpd, sector_t logical, 17558dc207c0STheodore Ts'o unsigned long b_state) 175664769240SAlex Tomas { 175764769240SAlex Tomas sector_t next; 1758b6a8e62fSJan Kara int blkbits = mpd->inode->i_blkbits; 1759b6a8e62fSJan Kara int nrblocks = mpd->b_size >> blkbits; 176064769240SAlex Tomas 1761c445e3e0SEric Sandeen /* 1762c445e3e0SEric Sandeen * XXX Don't go larger than mballoc is willing to allocate 1763c445e3e0SEric Sandeen * This is a stopgap solution. We eventually need to fold 1764c445e3e0SEric Sandeen * mpage_da_submit_io() into this function and then call 176579e83036SEric Sandeen * ext4_map_blocks() multiple times in a loop 1766c445e3e0SEric Sandeen */ 1767b6a8e62fSJan Kara if (nrblocks >= (8*1024*1024 >> blkbits)) 1768c445e3e0SEric Sandeen goto flush_it; 1769c445e3e0SEric Sandeen 1770525f4ed8SMingming Cao /* check if the reserved journal credits might overflow */ 1771b6a8e62fSJan Kara if (!ext4_test_inode_flag(mpd->inode, EXT4_INODE_EXTENTS)) { 1772525f4ed8SMingming Cao if (nrblocks >= EXT4_MAX_TRANS_DATA) { 1773525f4ed8SMingming Cao /* 1774525f4ed8SMingming Cao * With non-extent format we are limited by the journal 1775525f4ed8SMingming Cao * credit available. Total credit needed to insert 1776525f4ed8SMingming Cao * nrblocks contiguous blocks is dependent on the 1777525f4ed8SMingming Cao * nrblocks. So limit nrblocks. 1778525f4ed8SMingming Cao */ 1779525f4ed8SMingming Cao goto flush_it; 1780525f4ed8SMingming Cao } 1781525f4ed8SMingming Cao } 178264769240SAlex Tomas /* 178364769240SAlex Tomas * First block in the extent 178464769240SAlex Tomas */ 17858dc207c0STheodore Ts'o if (mpd->b_size == 0) { 17868dc207c0STheodore Ts'o mpd->b_blocknr = logical; 1787b6a8e62fSJan Kara mpd->b_size = 1 << blkbits; 17888dc207c0STheodore Ts'o mpd->b_state = b_state & BH_FLAGS; 178964769240SAlex Tomas return; 179064769240SAlex Tomas } 179164769240SAlex Tomas 17928dc207c0STheodore Ts'o next = mpd->b_blocknr + nrblocks; 179364769240SAlex Tomas /* 179464769240SAlex Tomas * Can we merge the block to our big extent? 179564769240SAlex Tomas */ 17968dc207c0STheodore Ts'o if (logical == next && (b_state & BH_FLAGS) == mpd->b_state) { 1797b6a8e62fSJan Kara mpd->b_size += 1 << blkbits; 179864769240SAlex Tomas return; 179964769240SAlex Tomas } 180064769240SAlex Tomas 1801525f4ed8SMingming Cao flush_it: 180264769240SAlex Tomas /* 180364769240SAlex Tomas * We couldn't merge the block to our extent, so we 180464769240SAlex Tomas * need to flush current extent and start new one 180564769240SAlex Tomas */ 18065a87b7a5STheodore Ts'o mpage_da_map_and_submit(mpd); 1807a1d6cc56SAneesh Kumar K.V return; 180864769240SAlex Tomas } 180964769240SAlex Tomas 1810c364b22cSAneesh Kumar K.V static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh) 181129fa89d0SAneesh Kumar K.V { 1812c364b22cSAneesh Kumar K.V return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh); 181329fa89d0SAneesh Kumar K.V } 181429fa89d0SAneesh Kumar K.V 181564769240SAlex Tomas /* 18165356f261SAditya Kali * This function is grabs code from the very beginning of 18175356f261SAditya Kali * ext4_map_blocks, but assumes that the caller is from delayed write 18185356f261SAditya Kali * time. This function looks up the requested blocks and sets the 18195356f261SAditya Kali * buffer delay bit under the protection of i_data_sem. 18205356f261SAditya Kali */ 18215356f261SAditya Kali static int ext4_da_map_blocks(struct inode *inode, sector_t iblock, 18225356f261SAditya Kali struct ext4_map_blocks *map, 18235356f261SAditya Kali struct buffer_head *bh) 18245356f261SAditya Kali { 1825d100eef2SZheng Liu struct extent_status es; 18265356f261SAditya Kali int retval; 18275356f261SAditya Kali sector_t invalid_block = ~((sector_t) 0xffff); 1828921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 1829921f266bSDmitry Monakhov struct ext4_map_blocks orig_map; 1830921f266bSDmitry Monakhov 1831921f266bSDmitry Monakhov memcpy(&orig_map, map, sizeof(*map)); 1832921f266bSDmitry Monakhov #endif 18335356f261SAditya Kali 18345356f261SAditya Kali if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es)) 18355356f261SAditya Kali invalid_block = ~0; 18365356f261SAditya Kali 18375356f261SAditya Kali map->m_flags = 0; 18385356f261SAditya Kali ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u," 18395356f261SAditya Kali "logical block %lu\n", inode->i_ino, map->m_len, 18405356f261SAditya Kali (unsigned long) map->m_lblk); 1841d100eef2SZheng Liu 1842d100eef2SZheng Liu /* Lookup extent status tree firstly */ 1843d100eef2SZheng Liu if (ext4_es_lookup_extent(inode, iblock, &es)) { 1844d100eef2SZheng Liu 1845d100eef2SZheng Liu if (ext4_es_is_hole(&es)) { 1846d100eef2SZheng Liu retval = 0; 1847d100eef2SZheng Liu down_read((&EXT4_I(inode)->i_data_sem)); 1848d100eef2SZheng Liu goto add_delayed; 1849d100eef2SZheng Liu } 1850d100eef2SZheng Liu 1851d100eef2SZheng Liu /* 1852d100eef2SZheng Liu * Delayed extent could be allocated by fallocate. 1853d100eef2SZheng Liu * So we need to check it. 1854d100eef2SZheng Liu */ 1855d100eef2SZheng Liu if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) { 1856d100eef2SZheng Liu map_bh(bh, inode->i_sb, invalid_block); 1857d100eef2SZheng Liu set_buffer_new(bh); 1858d100eef2SZheng Liu set_buffer_delay(bh); 1859d100eef2SZheng Liu return 0; 1860d100eef2SZheng Liu } 1861d100eef2SZheng Liu 1862d100eef2SZheng Liu map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk; 1863d100eef2SZheng Liu retval = es.es_len - (iblock - es.es_lblk); 1864d100eef2SZheng Liu if (retval > map->m_len) 1865d100eef2SZheng Liu retval = map->m_len; 1866d100eef2SZheng Liu map->m_len = retval; 1867d100eef2SZheng Liu if (ext4_es_is_written(&es)) 1868d100eef2SZheng Liu map->m_flags |= EXT4_MAP_MAPPED; 1869d100eef2SZheng Liu else if (ext4_es_is_unwritten(&es)) 1870d100eef2SZheng Liu map->m_flags |= EXT4_MAP_UNWRITTEN; 1871d100eef2SZheng Liu else 1872d100eef2SZheng Liu BUG_ON(1); 1873d100eef2SZheng Liu 1874921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 1875921f266bSDmitry Monakhov ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0); 1876921f266bSDmitry Monakhov #endif 1877d100eef2SZheng Liu return retval; 1878d100eef2SZheng Liu } 1879d100eef2SZheng Liu 18805356f261SAditya Kali /* 18815356f261SAditya Kali * Try to see if we can get the block without requesting a new 18825356f261SAditya Kali * file system block. 18835356f261SAditya Kali */ 18845356f261SAditya Kali down_read((&EXT4_I(inode)->i_data_sem)); 18859c3569b5STao Ma if (ext4_has_inline_data(inode)) { 18869c3569b5STao Ma /* 18879c3569b5STao Ma * We will soon create blocks for this page, and let 18889c3569b5STao Ma * us pretend as if the blocks aren't allocated yet. 18899c3569b5STao Ma * In case of clusters, we have to handle the work 18909c3569b5STao Ma * of mapping from cluster so that the reserved space 18919c3569b5STao Ma * is calculated properly. 18929c3569b5STao Ma */ 18939c3569b5STao Ma if ((EXT4_SB(inode->i_sb)->s_cluster_ratio > 1) && 18949c3569b5STao Ma ext4_find_delalloc_cluster(inode, map->m_lblk)) 18959c3569b5STao Ma map->m_flags |= EXT4_MAP_FROM_CLUSTER; 18969c3569b5STao Ma retval = 0; 18979c3569b5STao Ma } else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 1898d100eef2SZheng Liu retval = ext4_ext_map_blocks(NULL, inode, map, 1899d100eef2SZheng Liu EXT4_GET_BLOCKS_NO_PUT_HOLE); 19005356f261SAditya Kali else 1901d100eef2SZheng Liu retval = ext4_ind_map_blocks(NULL, inode, map, 1902d100eef2SZheng Liu EXT4_GET_BLOCKS_NO_PUT_HOLE); 19035356f261SAditya Kali 1904d100eef2SZheng Liu add_delayed: 19055356f261SAditya Kali if (retval == 0) { 1906f7fec032SZheng Liu int ret; 19075356f261SAditya Kali /* 19085356f261SAditya Kali * XXX: __block_prepare_write() unmaps passed block, 19095356f261SAditya Kali * is it OK? 19105356f261SAditya Kali */ 1911386ad67cSLukas Czerner /* 1912386ad67cSLukas Czerner * If the block was allocated from previously allocated cluster, 1913386ad67cSLukas Czerner * then we don't need to reserve it again. However we still need 1914386ad67cSLukas Czerner * to reserve metadata for every block we're going to write. 1915386ad67cSLukas Czerner */ 19165356f261SAditya Kali if (!(map->m_flags & EXT4_MAP_FROM_CLUSTER)) { 1917f7fec032SZheng Liu ret = ext4_da_reserve_space(inode, iblock); 1918f7fec032SZheng Liu if (ret) { 19195356f261SAditya Kali /* not enough space to reserve */ 1920f7fec032SZheng Liu retval = ret; 19215356f261SAditya Kali goto out_unlock; 19225356f261SAditya Kali } 1923386ad67cSLukas Czerner } else { 1924386ad67cSLukas Czerner ret = ext4_da_reserve_metadata(inode, iblock); 1925386ad67cSLukas Czerner if (ret) { 1926386ad67cSLukas Czerner /* not enough space to reserve */ 1927386ad67cSLukas Czerner retval = ret; 1928386ad67cSLukas Czerner goto out_unlock; 1929386ad67cSLukas Czerner } 1930f7fec032SZheng Liu } 19315356f261SAditya Kali 1932f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 1933fdc0212eSZheng Liu ~0, EXTENT_STATUS_DELAYED); 1934f7fec032SZheng Liu if (ret) { 1935f7fec032SZheng Liu retval = ret; 193651865fdaSZheng Liu goto out_unlock; 1937f7fec032SZheng Liu } 193851865fdaSZheng Liu 19395356f261SAditya Kali /* Clear EXT4_MAP_FROM_CLUSTER flag since its purpose is served 19405356f261SAditya Kali * and it should not appear on the bh->b_state. 19415356f261SAditya Kali */ 19425356f261SAditya Kali map->m_flags &= ~EXT4_MAP_FROM_CLUSTER; 19435356f261SAditya Kali 19445356f261SAditya Kali map_bh(bh, inode->i_sb, invalid_block); 19455356f261SAditya Kali set_buffer_new(bh); 19465356f261SAditya Kali set_buffer_delay(bh); 1947f7fec032SZheng Liu } else if (retval > 0) { 1948f7fec032SZheng Liu int ret; 1949f7fec032SZheng Liu unsigned long long status; 1950f7fec032SZheng Liu 1951921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 1952921f266bSDmitry Monakhov if (retval != map->m_len) { 1953921f266bSDmitry Monakhov printk("ES len assertation failed for inode: %lu " 1954921f266bSDmitry Monakhov "retval %d != map->m_len %d " 1955921f266bSDmitry Monakhov "in %s (lookup)\n", inode->i_ino, retval, 1956921f266bSDmitry Monakhov map->m_len, __func__); 1957921f266bSDmitry Monakhov } 1958921f266bSDmitry Monakhov #endif 1959921f266bSDmitry Monakhov 1960f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 1961f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 1962f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 1963f7fec032SZheng Liu map->m_pblk, status); 1964f7fec032SZheng Liu if (ret != 0) 1965f7fec032SZheng Liu retval = ret; 19665356f261SAditya Kali } 19675356f261SAditya Kali 19685356f261SAditya Kali out_unlock: 19695356f261SAditya Kali up_read((&EXT4_I(inode)->i_data_sem)); 19705356f261SAditya Kali 19715356f261SAditya Kali return retval; 19725356f261SAditya Kali } 19735356f261SAditya Kali 19745356f261SAditya Kali /* 1975b920c755STheodore Ts'o * This is a special get_blocks_t callback which is used by 1976b920c755STheodore Ts'o * ext4_da_write_begin(). It will either return mapped block or 1977b920c755STheodore Ts'o * reserve space for a single block. 197829fa89d0SAneesh Kumar K.V * 197929fa89d0SAneesh Kumar K.V * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set. 198029fa89d0SAneesh Kumar K.V * We also have b_blocknr = -1 and b_bdev initialized properly 198129fa89d0SAneesh Kumar K.V * 198229fa89d0SAneesh Kumar K.V * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set. 198329fa89d0SAneesh Kumar K.V * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev 198429fa89d0SAneesh Kumar K.V * initialized properly. 198564769240SAlex Tomas */ 19869c3569b5STao Ma int ext4_da_get_block_prep(struct inode *inode, sector_t iblock, 19872ed88685STheodore Ts'o struct buffer_head *bh, int create) 198864769240SAlex Tomas { 19892ed88685STheodore Ts'o struct ext4_map_blocks map; 199064769240SAlex Tomas int ret = 0; 199164769240SAlex Tomas 199264769240SAlex Tomas BUG_ON(create == 0); 19932ed88685STheodore Ts'o BUG_ON(bh->b_size != inode->i_sb->s_blocksize); 19942ed88685STheodore Ts'o 19952ed88685STheodore Ts'o map.m_lblk = iblock; 19962ed88685STheodore Ts'o map.m_len = 1; 199764769240SAlex Tomas 199864769240SAlex Tomas /* 199964769240SAlex Tomas * first, we need to know whether the block is allocated already 200064769240SAlex Tomas * preallocated blocks are unmapped but should treated 200164769240SAlex Tomas * the same as allocated blocks. 200264769240SAlex Tomas */ 20035356f261SAditya Kali ret = ext4_da_map_blocks(inode, iblock, &map, bh); 20045356f261SAditya Kali if (ret <= 0) 20052ed88685STheodore Ts'o return ret; 200664769240SAlex Tomas 20072ed88685STheodore Ts'o map_bh(bh, inode->i_sb, map.m_pblk); 20082ed88685STheodore Ts'o bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags; 20092ed88685STheodore Ts'o 20102ed88685STheodore Ts'o if (buffer_unwritten(bh)) { 20112ed88685STheodore Ts'o /* A delayed write to unwritten bh should be marked 20122ed88685STheodore Ts'o * new and mapped. Mapped ensures that we don't do 20132ed88685STheodore Ts'o * get_block multiple times when we write to the same 20142ed88685STheodore Ts'o * offset and new ensures that we do proper zero out 20152ed88685STheodore Ts'o * for partial write. 20162ed88685STheodore Ts'o */ 20172ed88685STheodore Ts'o set_buffer_new(bh); 2018c8205636STheodore Ts'o set_buffer_mapped(bh); 20192ed88685STheodore Ts'o } 20202ed88685STheodore Ts'o return 0; 202164769240SAlex Tomas } 202261628a3fSMingming Cao 202362e086beSAneesh Kumar K.V static int bget_one(handle_t *handle, struct buffer_head *bh) 202462e086beSAneesh Kumar K.V { 202562e086beSAneesh Kumar K.V get_bh(bh); 202662e086beSAneesh Kumar K.V return 0; 202762e086beSAneesh Kumar K.V } 202862e086beSAneesh Kumar K.V 202962e086beSAneesh Kumar K.V static int bput_one(handle_t *handle, struct buffer_head *bh) 203062e086beSAneesh Kumar K.V { 203162e086beSAneesh Kumar K.V put_bh(bh); 203262e086beSAneesh Kumar K.V return 0; 203362e086beSAneesh Kumar K.V } 203462e086beSAneesh Kumar K.V 203562e086beSAneesh Kumar K.V static int __ext4_journalled_writepage(struct page *page, 203662e086beSAneesh Kumar K.V unsigned int len) 203762e086beSAneesh Kumar K.V { 203862e086beSAneesh Kumar K.V struct address_space *mapping = page->mapping; 203962e086beSAneesh Kumar K.V struct inode *inode = mapping->host; 20403fdcfb66STao Ma struct buffer_head *page_bufs = NULL; 204162e086beSAneesh Kumar K.V handle_t *handle = NULL; 20423fdcfb66STao Ma int ret = 0, err = 0; 20433fdcfb66STao Ma int inline_data = ext4_has_inline_data(inode); 20443fdcfb66STao Ma struct buffer_head *inode_bh = NULL; 204562e086beSAneesh Kumar K.V 2046cb20d518STheodore Ts'o ClearPageChecked(page); 20473fdcfb66STao Ma 20483fdcfb66STao Ma if (inline_data) { 20493fdcfb66STao Ma BUG_ON(page->index != 0); 20503fdcfb66STao Ma BUG_ON(len > ext4_get_max_inline_size(inode)); 20513fdcfb66STao Ma inode_bh = ext4_journalled_write_inline_data(inode, len, page); 20523fdcfb66STao Ma if (inode_bh == NULL) 20533fdcfb66STao Ma goto out; 20543fdcfb66STao Ma } else { 205562e086beSAneesh Kumar K.V page_bufs = page_buffers(page); 20563fdcfb66STao Ma if (!page_bufs) { 20573fdcfb66STao Ma BUG(); 20583fdcfb66STao Ma goto out; 20593fdcfb66STao Ma } 20603fdcfb66STao Ma ext4_walk_page_buffers(handle, page_bufs, 0, len, 20613fdcfb66STao Ma NULL, bget_one); 20623fdcfb66STao Ma } 206362e086beSAneesh Kumar K.V /* As soon as we unlock the page, it can go away, but we have 206462e086beSAneesh Kumar K.V * references to buffers so we are safe */ 206562e086beSAneesh Kumar K.V unlock_page(page); 206662e086beSAneesh Kumar K.V 20679924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 20689924a92aSTheodore Ts'o ext4_writepage_trans_blocks(inode)); 206962e086beSAneesh Kumar K.V if (IS_ERR(handle)) { 207062e086beSAneesh Kumar K.V ret = PTR_ERR(handle); 207162e086beSAneesh Kumar K.V goto out; 207262e086beSAneesh Kumar K.V } 207362e086beSAneesh Kumar K.V 2074441c8508SCurt Wohlgemuth BUG_ON(!ext4_handle_valid(handle)); 2075441c8508SCurt Wohlgemuth 20763fdcfb66STao Ma if (inline_data) { 20773fdcfb66STao Ma ret = ext4_journal_get_write_access(handle, inode_bh); 20783fdcfb66STao Ma 20793fdcfb66STao Ma err = ext4_handle_dirty_metadata(handle, inode, inode_bh); 20803fdcfb66STao Ma 20813fdcfb66STao Ma } else { 2082f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL, 208362e086beSAneesh Kumar K.V do_journal_get_write_access); 208462e086beSAneesh Kumar K.V 2085f19d5870STao Ma err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL, 208662e086beSAneesh Kumar K.V write_end_fn); 20873fdcfb66STao Ma } 208862e086beSAneesh Kumar K.V if (ret == 0) 208962e086beSAneesh Kumar K.V ret = err; 20902d859db3SJan Kara EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid; 209162e086beSAneesh Kumar K.V err = ext4_journal_stop(handle); 209262e086beSAneesh Kumar K.V if (!ret) 209362e086beSAneesh Kumar K.V ret = err; 209462e086beSAneesh Kumar K.V 20953fdcfb66STao Ma if (!ext4_has_inline_data(inode)) 20963fdcfb66STao Ma ext4_walk_page_buffers(handle, page_bufs, 0, len, 20973fdcfb66STao Ma NULL, bput_one); 209819f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_JDATA); 209962e086beSAneesh Kumar K.V out: 21003fdcfb66STao Ma brelse(inode_bh); 210162e086beSAneesh Kumar K.V return ret; 210262e086beSAneesh Kumar K.V } 210362e086beSAneesh Kumar K.V 210461628a3fSMingming Cao /* 210543ce1d23SAneesh Kumar K.V * Note that we don't need to start a transaction unless we're journaling data 210643ce1d23SAneesh Kumar K.V * because we should have holes filled from ext4_page_mkwrite(). We even don't 210743ce1d23SAneesh Kumar K.V * need to file the inode to the transaction's list in ordered mode because if 210843ce1d23SAneesh Kumar K.V * we are writing back data added by write(), the inode is already there and if 210943ce1d23SAneesh Kumar K.V * we are writing back data modified via mmap(), no one guarantees in which 211043ce1d23SAneesh Kumar K.V * transaction the data will hit the disk. In case we are journaling data, we 211143ce1d23SAneesh Kumar K.V * cannot start transaction directly because transaction start ranks above page 211243ce1d23SAneesh Kumar K.V * lock so we have to do some magic. 211343ce1d23SAneesh Kumar K.V * 2114b920c755STheodore Ts'o * This function can get called via... 2115b920c755STheodore Ts'o * - ext4_da_writepages after taking page lock (have journal handle) 2116b920c755STheodore Ts'o * - journal_submit_inode_data_buffers (no journal handle) 2117f6463b0dSArtem Bityutskiy * - shrink_page_list via the kswapd/direct reclaim (no journal handle) 2118b920c755STheodore Ts'o * - grab_page_cache when doing write_begin (have journal handle) 211943ce1d23SAneesh Kumar K.V * 212043ce1d23SAneesh Kumar K.V * We don't do any block allocation in this function. If we have page with 212143ce1d23SAneesh Kumar K.V * multiple blocks we need to write those buffer_heads that are mapped. This 212243ce1d23SAneesh Kumar K.V * is important for mmaped based write. So if we do with blocksize 1K 212343ce1d23SAneesh Kumar K.V * truncate(f, 1024); 212443ce1d23SAneesh Kumar K.V * a = mmap(f, 0, 4096); 212543ce1d23SAneesh Kumar K.V * a[0] = 'a'; 212643ce1d23SAneesh Kumar K.V * truncate(f, 4096); 212743ce1d23SAneesh Kumar K.V * we have in the page first buffer_head mapped via page_mkwrite call back 212890802ed9SPaul Bolle * but other buffer_heads would be unmapped but dirty (dirty done via the 212943ce1d23SAneesh Kumar K.V * do_wp_page). So writepage should write the first block. If we modify 213043ce1d23SAneesh Kumar K.V * the mmap area beyond 1024 we will again get a page_fault and the 213143ce1d23SAneesh Kumar K.V * page_mkwrite callback will do the block allocation and mark the 213243ce1d23SAneesh Kumar K.V * buffer_heads mapped. 213343ce1d23SAneesh Kumar K.V * 213443ce1d23SAneesh Kumar K.V * We redirty the page if we have any buffer_heads that is either delay or 213543ce1d23SAneesh Kumar K.V * unwritten in the page. 213643ce1d23SAneesh Kumar K.V * 213743ce1d23SAneesh Kumar K.V * We can get recursively called as show below. 213843ce1d23SAneesh Kumar K.V * 213943ce1d23SAneesh Kumar K.V * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() -> 214043ce1d23SAneesh Kumar K.V * ext4_writepage() 214143ce1d23SAneesh Kumar K.V * 214243ce1d23SAneesh Kumar K.V * But since we don't do any block allocation we should not deadlock. 214343ce1d23SAneesh Kumar K.V * Page also have the dirty flag cleared so we don't get recurive page_lock. 214461628a3fSMingming Cao */ 214543ce1d23SAneesh Kumar K.V static int ext4_writepage(struct page *page, 214664769240SAlex Tomas struct writeback_control *wbc) 214764769240SAlex Tomas { 2148f8bec370SJan Kara int ret = 0; 214961628a3fSMingming Cao loff_t size; 2150498e5f24STheodore Ts'o unsigned int len; 2151744692dcSJiaying Zhang struct buffer_head *page_bufs = NULL; 215261628a3fSMingming Cao struct inode *inode = page->mapping->host; 215336ade451SJan Kara struct ext4_io_submit io_submit; 215464769240SAlex Tomas 2155a9c667f8SLukas Czerner trace_ext4_writepage(page); 215661628a3fSMingming Cao size = i_size_read(inode); 215761628a3fSMingming Cao if (page->index == size >> PAGE_CACHE_SHIFT) 215861628a3fSMingming Cao len = size & ~PAGE_CACHE_MASK; 215961628a3fSMingming Cao else 216061628a3fSMingming Cao len = PAGE_CACHE_SIZE; 216161628a3fSMingming Cao 2162f0e6c985SAneesh Kumar K.V page_bufs = page_buffers(page); 216364769240SAlex Tomas /* 2164fe386132SJan Kara * We cannot do block allocation or other extent handling in this 2165fe386132SJan Kara * function. If there are buffers needing that, we have to redirty 2166fe386132SJan Kara * the page. But we may reach here when we do a journal commit via 2167fe386132SJan Kara * journal_submit_inode_data_buffers() and in that case we must write 2168fe386132SJan Kara * allocated buffers to achieve data=ordered mode guarantees. 216964769240SAlex Tomas */ 2170f19d5870STao Ma if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL, 2171c364b22cSAneesh Kumar K.V ext4_bh_delay_or_unwritten)) { 217261628a3fSMingming Cao redirty_page_for_writepage(wbc, page); 2173fe386132SJan Kara if (current->flags & PF_MEMALLOC) { 2174fe386132SJan Kara /* 2175fe386132SJan Kara * For memory cleaning there's no point in writing only 2176fe386132SJan Kara * some buffers. So just bail out. Warn if we came here 2177fe386132SJan Kara * from direct reclaim. 2178fe386132SJan Kara */ 2179fe386132SJan Kara WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD)) 2180fe386132SJan Kara == PF_MEMALLOC); 218161628a3fSMingming Cao unlock_page(page); 218261628a3fSMingming Cao return 0; 218361628a3fSMingming Cao } 2184f0e6c985SAneesh Kumar K.V } 218564769240SAlex Tomas 2186cb20d518STheodore Ts'o if (PageChecked(page) && ext4_should_journal_data(inode)) 218743ce1d23SAneesh Kumar K.V /* 218843ce1d23SAneesh Kumar K.V * It's mmapped pagecache. Add buffers and journal it. There 218943ce1d23SAneesh Kumar K.V * doesn't seem much point in redirtying the page here. 219043ce1d23SAneesh Kumar K.V */ 21913f0ca309SWu Fengguang return __ext4_journalled_writepage(page, len); 219243ce1d23SAneesh Kumar K.V 219397a851edSJan Kara ext4_io_submit_init(&io_submit, wbc); 219497a851edSJan Kara io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS); 219597a851edSJan Kara if (!io_submit.io_end) { 219697a851edSJan Kara redirty_page_for_writepage(wbc, page); 219797a851edSJan Kara unlock_page(page); 219897a851edSJan Kara return -ENOMEM; 219997a851edSJan Kara } 220036ade451SJan Kara ret = ext4_bio_write_page(&io_submit, page, len, wbc); 220136ade451SJan Kara ext4_io_submit(&io_submit); 220297a851edSJan Kara /* Drop io_end reference we got from init */ 220397a851edSJan Kara ext4_put_io_end_defer(io_submit.io_end); 220464769240SAlex Tomas return ret; 220564769240SAlex Tomas } 220664769240SAlex Tomas 220761628a3fSMingming Cao /* 2208*fffb2739SJan Kara * mballoc gives us at most this number of blocks... 2209*fffb2739SJan Kara * XXX: That seems to be only a limitation of ext4_mb_normalize_request(). 2210*fffb2739SJan Kara * The rest of mballoc seems to handle chunks upto full group size. 221161628a3fSMingming Cao */ 2212*fffb2739SJan Kara #define MAX_WRITEPAGES_EXTENT_LEN 2048 2213525f4ed8SMingming Cao 2214525f4ed8SMingming Cao /* 2215*fffb2739SJan Kara * Calculate the total number of credits to reserve for one writepages 2216*fffb2739SJan Kara * iteration. This is called from ext4_da_writepages(). We map an extent of 2217*fffb2739SJan Kara * upto MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping 2218*fffb2739SJan Kara * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN + 2219*fffb2739SJan Kara * bpp - 1 blocks in bpp different extents. 2220525f4ed8SMingming Cao */ 2221*fffb2739SJan Kara static int ext4_da_writepages_trans_blocks(struct inode *inode) 2222*fffb2739SJan Kara { 2223*fffb2739SJan Kara int bpp = ext4_journal_blocks_per_page(inode); 2224525f4ed8SMingming Cao 2225*fffb2739SJan Kara return ext4_meta_trans_blocks(inode, 2226*fffb2739SJan Kara MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp); 2227525f4ed8SMingming Cao } 222861628a3fSMingming Cao 22298e48dcfbSTheodore Ts'o /* 22308e48dcfbSTheodore Ts'o * write_cache_pages_da - walk the list of dirty pages of the given 22318eb9e5ceSTheodore Ts'o * address space and accumulate pages that need writing, and call 2232168fc022STheodore Ts'o * mpage_da_map_and_submit to map a single contiguous memory region 2233168fc022STheodore Ts'o * and then write them. 22348e48dcfbSTheodore Ts'o */ 22359c3569b5STao Ma static int write_cache_pages_da(handle_t *handle, 22369c3569b5STao Ma struct address_space *mapping, 22378e48dcfbSTheodore Ts'o struct writeback_control *wbc, 223872f84e65SEric Sandeen struct mpage_da_data *mpd, 223972f84e65SEric Sandeen pgoff_t *done_index) 22408e48dcfbSTheodore Ts'o { 22418eb9e5ceSTheodore Ts'o struct buffer_head *bh, *head; 2242168fc022STheodore Ts'o struct inode *inode = mapping->host; 22438e48dcfbSTheodore Ts'o struct pagevec pvec; 22444f01b02cSTheodore Ts'o unsigned int nr_pages; 22454f01b02cSTheodore Ts'o sector_t logical; 22464f01b02cSTheodore Ts'o pgoff_t index, end; 22478e48dcfbSTheodore Ts'o long nr_to_write = wbc->nr_to_write; 22484f01b02cSTheodore Ts'o int i, tag, ret = 0; 22498e48dcfbSTheodore Ts'o 2250168fc022STheodore Ts'o memset(mpd, 0, sizeof(struct mpage_da_data)); 2251168fc022STheodore Ts'o mpd->wbc = wbc; 2252168fc022STheodore Ts'o mpd->inode = inode; 22538e48dcfbSTheodore Ts'o pagevec_init(&pvec, 0); 22548e48dcfbSTheodore Ts'o index = wbc->range_start >> PAGE_CACHE_SHIFT; 22558e48dcfbSTheodore Ts'o end = wbc->range_end >> PAGE_CACHE_SHIFT; 22568e48dcfbSTheodore Ts'o 22576e6938b6SWu Fengguang if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages) 22585b41d924SEric Sandeen tag = PAGECACHE_TAG_TOWRITE; 22595b41d924SEric Sandeen else 22605b41d924SEric Sandeen tag = PAGECACHE_TAG_DIRTY; 22615b41d924SEric Sandeen 226272f84e65SEric Sandeen *done_index = index; 22634f01b02cSTheodore Ts'o while (index <= end) { 22645b41d924SEric Sandeen nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag, 22658e48dcfbSTheodore Ts'o min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1); 22668e48dcfbSTheodore Ts'o if (nr_pages == 0) 22674f01b02cSTheodore Ts'o return 0; 22688e48dcfbSTheodore Ts'o 22698e48dcfbSTheodore Ts'o for (i = 0; i < nr_pages; i++) { 22708e48dcfbSTheodore Ts'o struct page *page = pvec.pages[i]; 22718e48dcfbSTheodore Ts'o 22728e48dcfbSTheodore Ts'o /* 22738e48dcfbSTheodore Ts'o * At this point, the page may be truncated or 22748e48dcfbSTheodore Ts'o * invalidated (changing page->mapping to NULL), or 22758e48dcfbSTheodore Ts'o * even swizzled back from swapper_space to tmpfs file 22768e48dcfbSTheodore Ts'o * mapping. However, page->index will not change 22778e48dcfbSTheodore Ts'o * because we have a reference on the page. 22788e48dcfbSTheodore Ts'o */ 22794f01b02cSTheodore Ts'o if (page->index > end) 22804f01b02cSTheodore Ts'o goto out; 22818e48dcfbSTheodore Ts'o 228272f84e65SEric Sandeen *done_index = page->index + 1; 228372f84e65SEric Sandeen 228478aaced3STheodore Ts'o /* 228578aaced3STheodore Ts'o * If we can't merge this page, and we have 228678aaced3STheodore Ts'o * accumulated an contiguous region, write it 228778aaced3STheodore Ts'o */ 228878aaced3STheodore Ts'o if ((mpd->next_page != page->index) && 228978aaced3STheodore Ts'o (mpd->next_page != mpd->first_page)) { 229078aaced3STheodore Ts'o mpage_da_map_and_submit(mpd); 229178aaced3STheodore Ts'o goto ret_extent_tail; 229278aaced3STheodore Ts'o } 229378aaced3STheodore Ts'o 22948e48dcfbSTheodore Ts'o lock_page(page); 22958e48dcfbSTheodore Ts'o 22968e48dcfbSTheodore Ts'o /* 22974f01b02cSTheodore Ts'o * If the page is no longer dirty, or its 22984f01b02cSTheodore Ts'o * mapping no longer corresponds to inode we 22994f01b02cSTheodore Ts'o * are writing (which means it has been 23004f01b02cSTheodore Ts'o * truncated or invalidated), or the page is 23014f01b02cSTheodore Ts'o * already under writeback and we are not 23024f01b02cSTheodore Ts'o * doing a data integrity writeback, skip the page 23038e48dcfbSTheodore Ts'o */ 23044f01b02cSTheodore Ts'o if (!PageDirty(page) || 23054f01b02cSTheodore Ts'o (PageWriteback(page) && 23064f01b02cSTheodore Ts'o (wbc->sync_mode == WB_SYNC_NONE)) || 23074f01b02cSTheodore Ts'o unlikely(page->mapping != mapping)) { 23088e48dcfbSTheodore Ts'o unlock_page(page); 23098e48dcfbSTheodore Ts'o continue; 23108e48dcfbSTheodore Ts'o } 23118e48dcfbSTheodore Ts'o 23128e48dcfbSTheodore Ts'o wait_on_page_writeback(page); 23138e48dcfbSTheodore Ts'o BUG_ON(PageWriteback(page)); 23148e48dcfbSTheodore Ts'o 23159c3569b5STao Ma /* 23169c3569b5STao Ma * If we have inline data and arrive here, it means that 23179c3569b5STao Ma * we will soon create the block for the 1st page, so 23189c3569b5STao Ma * we'd better clear the inline data here. 23199c3569b5STao Ma */ 23209c3569b5STao Ma if (ext4_has_inline_data(inode)) { 23219c3569b5STao Ma BUG_ON(ext4_test_inode_state(inode, 23229c3569b5STao Ma EXT4_STATE_MAY_INLINE_DATA)); 23239c3569b5STao Ma ext4_destroy_inline_data(handle, inode); 23249c3569b5STao Ma } 23259c3569b5STao Ma 2326168fc022STheodore Ts'o if (mpd->next_page != page->index) 23278eb9e5ceSTheodore Ts'o mpd->first_page = page->index; 23288eb9e5ceSTheodore Ts'o mpd->next_page = page->index + 1; 23298eb9e5ceSTheodore Ts'o logical = (sector_t) page->index << 23308eb9e5ceSTheodore Ts'o (PAGE_CACHE_SHIFT - inode->i_blkbits); 23318eb9e5ceSTheodore Ts'o 2332f8bec370SJan Kara /* Add all dirty buffers to mpd */ 23338eb9e5ceSTheodore Ts'o head = page_buffers(page); 23348eb9e5ceSTheodore Ts'o bh = head; 23358eb9e5ceSTheodore Ts'o do { 23368eb9e5ceSTheodore Ts'o BUG_ON(buffer_locked(bh)); 23378eb9e5ceSTheodore Ts'o /* 2338f8bec370SJan Kara * We need to try to allocate unmapped blocks 2339f8bec370SJan Kara * in the same page. Otherwise we won't make 2340f8bec370SJan Kara * progress with the page in ext4_writepage 23418eb9e5ceSTheodore Ts'o */ 23428eb9e5ceSTheodore Ts'o if (ext4_bh_delay_or_unwritten(NULL, bh)) { 23438eb9e5ceSTheodore Ts'o mpage_add_bh_to_extent(mpd, logical, 23448eb9e5ceSTheodore Ts'o bh->b_state); 23454f01b02cSTheodore Ts'o if (mpd->io_done) 23464f01b02cSTheodore Ts'o goto ret_extent_tail; 2347f8bec370SJan Kara } else if (buffer_dirty(bh) && 2348f8bec370SJan Kara buffer_mapped(bh)) { 23498eb9e5ceSTheodore Ts'o /* 2350f8bec370SJan Kara * mapped dirty buffer. We need to 2351f8bec370SJan Kara * update the b_state because we look 2352f8bec370SJan Kara * at b_state in mpage_da_map_blocks. 2353f8bec370SJan Kara * We don't update b_size because if we 2354f8bec370SJan Kara * find an unmapped buffer_head later 2355f8bec370SJan Kara * we need to use the b_state flag of 2356f8bec370SJan Kara * that buffer_head. 23578eb9e5ceSTheodore Ts'o */ 23588eb9e5ceSTheodore Ts'o if (mpd->b_size == 0) 2359f8bec370SJan Kara mpd->b_state = 2360f8bec370SJan Kara bh->b_state & BH_FLAGS; 23618e48dcfbSTheodore Ts'o } 23628eb9e5ceSTheodore Ts'o logical++; 23638eb9e5ceSTheodore Ts'o } while ((bh = bh->b_this_page) != head); 23648e48dcfbSTheodore Ts'o 23658e48dcfbSTheodore Ts'o if (nr_to_write > 0) { 23668e48dcfbSTheodore Ts'o nr_to_write--; 23678e48dcfbSTheodore Ts'o if (nr_to_write == 0 && 23684f01b02cSTheodore Ts'o wbc->sync_mode == WB_SYNC_NONE) 23698e48dcfbSTheodore Ts'o /* 23708e48dcfbSTheodore Ts'o * We stop writing back only if we are 23718e48dcfbSTheodore Ts'o * not doing integrity sync. In case of 23728e48dcfbSTheodore Ts'o * integrity sync we have to keep going 23738e48dcfbSTheodore Ts'o * because someone may be concurrently 23748e48dcfbSTheodore Ts'o * dirtying pages, and we might have 23758e48dcfbSTheodore Ts'o * synced a lot of newly appeared dirty 23768e48dcfbSTheodore Ts'o * pages, but have not synced all of the 23778e48dcfbSTheodore Ts'o * old dirty pages. 23788e48dcfbSTheodore Ts'o */ 23794f01b02cSTheodore Ts'o goto out; 23808e48dcfbSTheodore Ts'o } 23818e48dcfbSTheodore Ts'o } 23828e48dcfbSTheodore Ts'o pagevec_release(&pvec); 23838e48dcfbSTheodore Ts'o cond_resched(); 23848e48dcfbSTheodore Ts'o } 23854f01b02cSTheodore Ts'o return 0; 23864f01b02cSTheodore Ts'o ret_extent_tail: 23874f01b02cSTheodore Ts'o ret = MPAGE_DA_EXTENT_TAIL; 23888eb9e5ceSTheodore Ts'o out: 23898eb9e5ceSTheodore Ts'o pagevec_release(&pvec); 23908eb9e5ceSTheodore Ts'o cond_resched(); 23918e48dcfbSTheodore Ts'o return ret; 23928e48dcfbSTheodore Ts'o } 23938e48dcfbSTheodore Ts'o 23948e48dcfbSTheodore Ts'o 239564769240SAlex Tomas static int ext4_da_writepages(struct address_space *mapping, 239664769240SAlex Tomas struct writeback_control *wbc) 239764769240SAlex Tomas { 239822208dedSAneesh Kumar K.V pgoff_t index; 239922208dedSAneesh Kumar K.V int range_whole = 0; 240061628a3fSMingming Cao handle_t *handle = NULL; 2401df22291fSAneesh Kumar K.V struct mpage_da_data mpd; 24025e745b04SAneesh Kumar K.V struct inode *inode = mapping->host; 2403498e5f24STheodore Ts'o int pages_written = 0; 24042acf2c26SAneesh Kumar K.V int range_cyclic, cycled = 1, io_done = 0; 240555138e0bSTheodore Ts'o int needed_blocks, ret = 0; 2406de89de6eSTheodore Ts'o loff_t range_start = wbc->range_start; 24075e745b04SAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb); 240872f84e65SEric Sandeen pgoff_t done_index = 0; 24095b41d924SEric Sandeen pgoff_t end; 24101bce63d1SShaohua Li struct blk_plug plug; 241161628a3fSMingming Cao 24129bffad1eSTheodore Ts'o trace_ext4_da_writepages(inode, wbc); 2413ba80b101STheodore Ts'o 241461628a3fSMingming Cao /* 241561628a3fSMingming Cao * No pages to write? This is mainly a kludge to avoid starting 241661628a3fSMingming Cao * a transaction for special inodes like journal inode on last iput() 241761628a3fSMingming Cao * because that could violate lock ordering on umount 241861628a3fSMingming Cao */ 2419a1d6cc56SAneesh Kumar K.V if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) 242061628a3fSMingming Cao return 0; 24212a21e37eSTheodore Ts'o 24222a21e37eSTheodore Ts'o /* 24232a21e37eSTheodore Ts'o * If the filesystem has aborted, it is read-only, so return 24242a21e37eSTheodore Ts'o * right away instead of dumping stack traces later on that 24252a21e37eSTheodore Ts'o * will obscure the real source of the problem. We test 24264ab2f15bSTheodore Ts'o * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because 24272a21e37eSTheodore Ts'o * the latter could be true if the filesystem is mounted 24282a21e37eSTheodore Ts'o * read-only, and in that case, ext4_da_writepages should 24292a21e37eSTheodore Ts'o * *never* be called, so if that ever happens, we would want 24302a21e37eSTheodore Ts'o * the stack trace. 24312a21e37eSTheodore Ts'o */ 24324ab2f15bSTheodore Ts'o if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) 24332a21e37eSTheodore Ts'o return -EROFS; 24342a21e37eSTheodore Ts'o 243522208dedSAneesh Kumar K.V if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX) 243622208dedSAneesh Kumar K.V range_whole = 1; 243761628a3fSMingming Cao 24382acf2c26SAneesh Kumar K.V range_cyclic = wbc->range_cyclic; 24392acf2c26SAneesh Kumar K.V if (wbc->range_cyclic) { 244022208dedSAneesh Kumar K.V index = mapping->writeback_index; 24412acf2c26SAneesh Kumar K.V if (index) 24422acf2c26SAneesh Kumar K.V cycled = 0; 24432acf2c26SAneesh Kumar K.V wbc->range_start = index << PAGE_CACHE_SHIFT; 24442acf2c26SAneesh Kumar K.V wbc->range_end = LLONG_MAX; 24452acf2c26SAneesh Kumar K.V wbc->range_cyclic = 0; 24465b41d924SEric Sandeen end = -1; 24475b41d924SEric Sandeen } else { 244822208dedSAneesh Kumar K.V index = wbc->range_start >> PAGE_CACHE_SHIFT; 24495b41d924SEric Sandeen end = wbc->range_end >> PAGE_CACHE_SHIFT; 24505b41d924SEric Sandeen } 2451a1d6cc56SAneesh Kumar K.V 24522acf2c26SAneesh Kumar K.V retry: 24536e6938b6SWu Fengguang if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages) 24545b41d924SEric Sandeen tag_pages_for_writeback(mapping, index, end); 24555b41d924SEric Sandeen 24561bce63d1SShaohua Li blk_start_plug(&plug); 245722208dedSAneesh Kumar K.V while (!ret && wbc->nr_to_write > 0) { 2458a1d6cc56SAneesh Kumar K.V 2459a1d6cc56SAneesh Kumar K.V /* 2460a1d6cc56SAneesh Kumar K.V * we insert one extent at a time. So we need 2461a1d6cc56SAneesh Kumar K.V * credit needed for single extent allocation. 2462a1d6cc56SAneesh Kumar K.V * journalled mode is currently not supported 2463a1d6cc56SAneesh Kumar K.V * by delalloc 2464a1d6cc56SAneesh Kumar K.V */ 2465a1d6cc56SAneesh Kumar K.V BUG_ON(ext4_should_journal_data(inode)); 2466525f4ed8SMingming Cao needed_blocks = ext4_da_writepages_trans_blocks(inode); 2467a1d6cc56SAneesh Kumar K.V 246861628a3fSMingming Cao /* start a new transaction*/ 24699924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 24709924a92aSTheodore Ts'o needed_blocks); 247161628a3fSMingming Cao if (IS_ERR(handle)) { 247261628a3fSMingming Cao ret = PTR_ERR(handle); 24731693918eSTheodore Ts'o ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: " 2474fbe845ddSCurt Wohlgemuth "%ld pages, ino %lu; err %d", __func__, 2475a1d6cc56SAneesh Kumar K.V wbc->nr_to_write, inode->i_ino, ret); 24763c1fcb2cSNamjae Jeon blk_finish_plug(&plug); 247761628a3fSMingming Cao goto out_writepages; 247861628a3fSMingming Cao } 2479f63e6005STheodore Ts'o 2480f63e6005STheodore Ts'o /* 24818eb9e5ceSTheodore Ts'o * Now call write_cache_pages_da() to find the next 2482f63e6005STheodore Ts'o * contiguous region of logical blocks that need 24838eb9e5ceSTheodore Ts'o * blocks to be allocated by ext4 and submit them. 2484f63e6005STheodore Ts'o */ 24859c3569b5STao Ma ret = write_cache_pages_da(handle, mapping, 24869c3569b5STao Ma wbc, &mpd, &done_index); 2487f63e6005STheodore Ts'o /* 2488af901ca1SAndré Goddard Rosa * If we have a contiguous extent of pages and we 2489f63e6005STheodore Ts'o * haven't done the I/O yet, map the blocks and submit 2490f63e6005STheodore Ts'o * them for I/O. 2491f63e6005STheodore Ts'o */ 2492f63e6005STheodore Ts'o if (!mpd.io_done && mpd.next_page != mpd.first_page) { 24935a87b7a5STheodore Ts'o mpage_da_map_and_submit(&mpd); 2494f63e6005STheodore Ts'o ret = MPAGE_DA_EXTENT_TAIL; 2495f63e6005STheodore Ts'o } 2496b3a3ca8cSTheodore Ts'o trace_ext4_da_write_pages(inode, &mpd); 2497f63e6005STheodore Ts'o wbc->nr_to_write -= mpd.pages_written; 2498df22291fSAneesh Kumar K.V 249961628a3fSMingming Cao ext4_journal_stop(handle); 2500df22291fSAneesh Kumar K.V 25018f64b32eSEric Sandeen if ((mpd.retval == -ENOSPC) && sbi->s_journal) { 250222208dedSAneesh Kumar K.V /* commit the transaction which would 250322208dedSAneesh Kumar K.V * free blocks released in the transaction 250422208dedSAneesh Kumar K.V * and try again 250522208dedSAneesh Kumar K.V */ 2506df22291fSAneesh Kumar K.V jbd2_journal_force_commit_nested(sbi->s_journal); 250722208dedSAneesh Kumar K.V ret = 0; 250822208dedSAneesh Kumar K.V } else if (ret == MPAGE_DA_EXTENT_TAIL) { 2509a1d6cc56SAneesh Kumar K.V /* 25108de49e67SKazuya Mio * Got one extent now try with rest of the pages. 25118de49e67SKazuya Mio * If mpd.retval is set -EIO, journal is aborted. 25128de49e67SKazuya Mio * So we don't need to write any more. 2513a1d6cc56SAneesh Kumar K.V */ 251422208dedSAneesh Kumar K.V pages_written += mpd.pages_written; 25158de49e67SKazuya Mio ret = mpd.retval; 25162acf2c26SAneesh Kumar K.V io_done = 1; 251722208dedSAneesh Kumar K.V } else if (wbc->nr_to_write) 251861628a3fSMingming Cao /* 251961628a3fSMingming Cao * There is no more writeout needed 252061628a3fSMingming Cao * or we requested for a noblocking writeout 252161628a3fSMingming Cao * and we found the device congested 252261628a3fSMingming Cao */ 252361628a3fSMingming Cao break; 252461628a3fSMingming Cao } 25251bce63d1SShaohua Li blk_finish_plug(&plug); 25262acf2c26SAneesh Kumar K.V if (!io_done && !cycled) { 25272acf2c26SAneesh Kumar K.V cycled = 1; 25282acf2c26SAneesh Kumar K.V index = 0; 25292acf2c26SAneesh Kumar K.V wbc->range_start = index << PAGE_CACHE_SHIFT; 25302acf2c26SAneesh Kumar K.V wbc->range_end = mapping->writeback_index - 1; 25312acf2c26SAneesh Kumar K.V goto retry; 25322acf2c26SAneesh Kumar K.V } 253361628a3fSMingming Cao 253422208dedSAneesh Kumar K.V /* Update index */ 25352acf2c26SAneesh Kumar K.V wbc->range_cyclic = range_cyclic; 253622208dedSAneesh Kumar K.V if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0)) 253722208dedSAneesh Kumar K.V /* 253822208dedSAneesh Kumar K.V * set the writeback_index so that range_cyclic 253922208dedSAneesh Kumar K.V * mode will write it back later 254022208dedSAneesh Kumar K.V */ 254172f84e65SEric Sandeen mapping->writeback_index = done_index; 2542a1d6cc56SAneesh Kumar K.V 254361628a3fSMingming Cao out_writepages: 2544de89de6eSTheodore Ts'o wbc->range_start = range_start; 25459bffad1eSTheodore Ts'o trace_ext4_da_writepages_result(inode, wbc, ret, pages_written); 254661628a3fSMingming Cao return ret; 254764769240SAlex Tomas } 254864769240SAlex Tomas 254979f0be8dSAneesh Kumar K.V static int ext4_nonda_switch(struct super_block *sb) 255079f0be8dSAneesh Kumar K.V { 25515c1ff336SEric Whitney s64 free_clusters, dirty_clusters; 255279f0be8dSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(sb); 255379f0be8dSAneesh Kumar K.V 255479f0be8dSAneesh Kumar K.V /* 255579f0be8dSAneesh Kumar K.V * switch to non delalloc mode if we are running low 255679f0be8dSAneesh Kumar K.V * on free block. The free block accounting via percpu 2557179f7ebfSEric Dumazet * counters can get slightly wrong with percpu_counter_batch getting 255879f0be8dSAneesh Kumar K.V * accumulated on each CPU without updating global counters 255979f0be8dSAneesh Kumar K.V * Delalloc need an accurate free block accounting. So switch 256079f0be8dSAneesh Kumar K.V * to non delalloc when we are near to error range. 256179f0be8dSAneesh Kumar K.V */ 25625c1ff336SEric Whitney free_clusters = 25635c1ff336SEric Whitney percpu_counter_read_positive(&sbi->s_freeclusters_counter); 25645c1ff336SEric Whitney dirty_clusters = 25655c1ff336SEric Whitney percpu_counter_read_positive(&sbi->s_dirtyclusters_counter); 256600d4e736STheodore Ts'o /* 256700d4e736STheodore Ts'o * Start pushing delalloc when 1/2 of free blocks are dirty. 256800d4e736STheodore Ts'o */ 25695c1ff336SEric Whitney if (dirty_clusters && (free_clusters < 2 * dirty_clusters)) 257010ee27a0SMiao Xie try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE); 257100d4e736STheodore Ts'o 25725c1ff336SEric Whitney if (2 * free_clusters < 3 * dirty_clusters || 25735c1ff336SEric Whitney free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) { 257479f0be8dSAneesh Kumar K.V /* 2575c8afb446SEric Sandeen * free block count is less than 150% of dirty blocks 2576c8afb446SEric Sandeen * or free blocks is less than watermark 257779f0be8dSAneesh Kumar K.V */ 257879f0be8dSAneesh Kumar K.V return 1; 257979f0be8dSAneesh Kumar K.V } 258079f0be8dSAneesh Kumar K.V return 0; 258179f0be8dSAneesh Kumar K.V } 258279f0be8dSAneesh Kumar K.V 258364769240SAlex Tomas static int ext4_da_write_begin(struct file *file, struct address_space *mapping, 258464769240SAlex Tomas loff_t pos, unsigned len, unsigned flags, 258564769240SAlex Tomas struct page **pagep, void **fsdata) 258664769240SAlex Tomas { 258772b8ab9dSEric Sandeen int ret, retries = 0; 258864769240SAlex Tomas struct page *page; 258964769240SAlex Tomas pgoff_t index; 259064769240SAlex Tomas struct inode *inode = mapping->host; 259164769240SAlex Tomas handle_t *handle; 259264769240SAlex Tomas 259364769240SAlex Tomas index = pos >> PAGE_CACHE_SHIFT; 259479f0be8dSAneesh Kumar K.V 259579f0be8dSAneesh Kumar K.V if (ext4_nonda_switch(inode->i_sb)) { 259679f0be8dSAneesh Kumar K.V *fsdata = (void *)FALL_BACK_TO_NONDELALLOC; 259779f0be8dSAneesh Kumar K.V return ext4_write_begin(file, mapping, pos, 259879f0be8dSAneesh Kumar K.V len, flags, pagep, fsdata); 259979f0be8dSAneesh Kumar K.V } 260079f0be8dSAneesh Kumar K.V *fsdata = (void *)0; 26019bffad1eSTheodore Ts'o trace_ext4_da_write_begin(inode, pos, len, flags); 26029c3569b5STao Ma 26039c3569b5STao Ma if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) { 26049c3569b5STao Ma ret = ext4_da_write_inline_data_begin(mapping, inode, 26059c3569b5STao Ma pos, len, flags, 26069c3569b5STao Ma pagep, fsdata); 26079c3569b5STao Ma if (ret < 0) 260847564bfbSTheodore Ts'o return ret; 260947564bfbSTheodore Ts'o if (ret == 1) 261047564bfbSTheodore Ts'o return 0; 26119c3569b5STao Ma } 26129c3569b5STao Ma 261347564bfbSTheodore Ts'o /* 261447564bfbSTheodore Ts'o * grab_cache_page_write_begin() can take a long time if the 261547564bfbSTheodore Ts'o * system is thrashing due to memory pressure, or if the page 261647564bfbSTheodore Ts'o * is being written back. So grab it first before we start 261747564bfbSTheodore Ts'o * the transaction handle. This also allows us to allocate 261847564bfbSTheodore Ts'o * the page (if needed) without using GFP_NOFS. 261947564bfbSTheodore Ts'o */ 262047564bfbSTheodore Ts'o retry_grab: 262147564bfbSTheodore Ts'o page = grab_cache_page_write_begin(mapping, index, flags); 262247564bfbSTheodore Ts'o if (!page) 262347564bfbSTheodore Ts'o return -ENOMEM; 262447564bfbSTheodore Ts'o unlock_page(page); 262547564bfbSTheodore Ts'o 262664769240SAlex Tomas /* 262764769240SAlex Tomas * With delayed allocation, we don't log the i_disksize update 262864769240SAlex Tomas * if there is delayed block allocation. But we still need 262964769240SAlex Tomas * to journalling the i_disksize update if writes to the end 263064769240SAlex Tomas * of file which has an already mapped buffer. 263164769240SAlex Tomas */ 263247564bfbSTheodore Ts'o retry_journal: 26339924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 1); 263464769240SAlex Tomas if (IS_ERR(handle)) { 263547564bfbSTheodore Ts'o page_cache_release(page); 263647564bfbSTheodore Ts'o return PTR_ERR(handle); 263764769240SAlex Tomas } 263864769240SAlex Tomas 263947564bfbSTheodore Ts'o lock_page(page); 264047564bfbSTheodore Ts'o if (page->mapping != mapping) { 264147564bfbSTheodore Ts'o /* The page got truncated from under us */ 264247564bfbSTheodore Ts'o unlock_page(page); 264347564bfbSTheodore Ts'o page_cache_release(page); 2644d5a0d4f7SEric Sandeen ext4_journal_stop(handle); 264547564bfbSTheodore Ts'o goto retry_grab; 2646d5a0d4f7SEric Sandeen } 264747564bfbSTheodore Ts'o /* In case writeback began while the page was unlocked */ 264847564bfbSTheodore Ts'o wait_on_page_writeback(page); 264964769240SAlex Tomas 26506e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep); 265164769240SAlex Tomas if (ret < 0) { 265264769240SAlex Tomas unlock_page(page); 265364769240SAlex Tomas ext4_journal_stop(handle); 2654ae4d5372SAneesh Kumar K.V /* 2655ae4d5372SAneesh Kumar K.V * block_write_begin may have instantiated a few blocks 2656ae4d5372SAneesh Kumar K.V * outside i_size. Trim these off again. Don't need 2657ae4d5372SAneesh Kumar K.V * i_size_read because we hold i_mutex. 2658ae4d5372SAneesh Kumar K.V */ 2659ae4d5372SAneesh Kumar K.V if (pos + len > inode->i_size) 2660b9a4207dSJan Kara ext4_truncate_failed_write(inode); 266147564bfbSTheodore Ts'o 266247564bfbSTheodore Ts'o if (ret == -ENOSPC && 266347564bfbSTheodore Ts'o ext4_should_retry_alloc(inode->i_sb, &retries)) 266447564bfbSTheodore Ts'o goto retry_journal; 266547564bfbSTheodore Ts'o 266647564bfbSTheodore Ts'o page_cache_release(page); 266747564bfbSTheodore Ts'o return ret; 266864769240SAlex Tomas } 266964769240SAlex Tomas 267047564bfbSTheodore Ts'o *pagep = page; 267164769240SAlex Tomas return ret; 267264769240SAlex Tomas } 267364769240SAlex Tomas 2674632eaeabSMingming Cao /* 2675632eaeabSMingming Cao * Check if we should update i_disksize 2676632eaeabSMingming Cao * when write to the end of file but not require block allocation 2677632eaeabSMingming Cao */ 2678632eaeabSMingming Cao static int ext4_da_should_update_i_disksize(struct page *page, 2679632eaeabSMingming Cao unsigned long offset) 2680632eaeabSMingming Cao { 2681632eaeabSMingming Cao struct buffer_head *bh; 2682632eaeabSMingming Cao struct inode *inode = page->mapping->host; 2683632eaeabSMingming Cao unsigned int idx; 2684632eaeabSMingming Cao int i; 2685632eaeabSMingming Cao 2686632eaeabSMingming Cao bh = page_buffers(page); 2687632eaeabSMingming Cao idx = offset >> inode->i_blkbits; 2688632eaeabSMingming Cao 2689632eaeabSMingming Cao for (i = 0; i < idx; i++) 2690632eaeabSMingming Cao bh = bh->b_this_page; 2691632eaeabSMingming Cao 269229fa89d0SAneesh Kumar K.V if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh)) 2693632eaeabSMingming Cao return 0; 2694632eaeabSMingming Cao return 1; 2695632eaeabSMingming Cao } 2696632eaeabSMingming Cao 269764769240SAlex Tomas static int ext4_da_write_end(struct file *file, 269864769240SAlex Tomas struct address_space *mapping, 269964769240SAlex Tomas loff_t pos, unsigned len, unsigned copied, 270064769240SAlex Tomas struct page *page, void *fsdata) 270164769240SAlex Tomas { 270264769240SAlex Tomas struct inode *inode = mapping->host; 270364769240SAlex Tomas int ret = 0, ret2; 270464769240SAlex Tomas handle_t *handle = ext4_journal_current_handle(); 270564769240SAlex Tomas loff_t new_i_size; 2706632eaeabSMingming Cao unsigned long start, end; 270779f0be8dSAneesh Kumar K.V int write_mode = (int)(unsigned long)fsdata; 270879f0be8dSAneesh Kumar K.V 270974d553aaSTheodore Ts'o if (write_mode == FALL_BACK_TO_NONDELALLOC) 271074d553aaSTheodore Ts'o return ext4_write_end(file, mapping, pos, 271179f0be8dSAneesh Kumar K.V len, copied, page, fsdata); 2712632eaeabSMingming Cao 27139bffad1eSTheodore Ts'o trace_ext4_da_write_end(inode, pos, len, copied); 2714632eaeabSMingming Cao start = pos & (PAGE_CACHE_SIZE - 1); 2715632eaeabSMingming Cao end = start + copied - 1; 271664769240SAlex Tomas 271764769240SAlex Tomas /* 271864769240SAlex Tomas * generic_write_end() will run mark_inode_dirty() if i_size 271964769240SAlex Tomas * changes. So let's piggyback the i_disksize mark_inode_dirty 272064769240SAlex Tomas * into that. 272164769240SAlex Tomas */ 272264769240SAlex Tomas new_i_size = pos + copied; 2723ea51d132SAndrea Arcangeli if (copied && new_i_size > EXT4_I(inode)->i_disksize) { 27249c3569b5STao Ma if (ext4_has_inline_data(inode) || 27259c3569b5STao Ma ext4_da_should_update_i_disksize(page, end)) { 2726632eaeabSMingming Cao down_write(&EXT4_I(inode)->i_data_sem); 2727f3b59291STheodore Ts'o if (new_i_size > EXT4_I(inode)->i_disksize) 272864769240SAlex Tomas EXT4_I(inode)->i_disksize = new_i_size; 2729632eaeabSMingming Cao up_write(&EXT4_I(inode)->i_data_sem); 2730cf17fea6SAneesh Kumar K.V /* We need to mark inode dirty even if 2731cf17fea6SAneesh Kumar K.V * new_i_size is less that inode->i_size 2732cf17fea6SAneesh Kumar K.V * bu greater than i_disksize.(hint delalloc) 2733cf17fea6SAneesh Kumar K.V */ 2734cf17fea6SAneesh Kumar K.V ext4_mark_inode_dirty(handle, inode); 2735632eaeabSMingming Cao } 2736632eaeabSMingming Cao } 27379c3569b5STao Ma 27389c3569b5STao Ma if (write_mode != CONVERT_INLINE_DATA && 27399c3569b5STao Ma ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) && 27409c3569b5STao Ma ext4_has_inline_data(inode)) 27419c3569b5STao Ma ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied, 27429c3569b5STao Ma page); 27439c3569b5STao Ma else 274464769240SAlex Tomas ret2 = generic_write_end(file, mapping, pos, len, copied, 274564769240SAlex Tomas page, fsdata); 27469c3569b5STao Ma 274764769240SAlex Tomas copied = ret2; 274864769240SAlex Tomas if (ret2 < 0) 274964769240SAlex Tomas ret = ret2; 275064769240SAlex Tomas ret2 = ext4_journal_stop(handle); 275164769240SAlex Tomas if (!ret) 275264769240SAlex Tomas ret = ret2; 275364769240SAlex Tomas 275464769240SAlex Tomas return ret ? ret : copied; 275564769240SAlex Tomas } 275664769240SAlex Tomas 2757d47992f8SLukas Czerner static void ext4_da_invalidatepage(struct page *page, unsigned int offset, 2758d47992f8SLukas Czerner unsigned int length) 275964769240SAlex Tomas { 276064769240SAlex Tomas /* 276164769240SAlex Tomas * Drop reserved blocks 276264769240SAlex Tomas */ 276364769240SAlex Tomas BUG_ON(!PageLocked(page)); 276464769240SAlex Tomas if (!page_has_buffers(page)) 276564769240SAlex Tomas goto out; 276664769240SAlex Tomas 2767ca99fdd2SLukas Czerner ext4_da_page_release_reservation(page, offset, length); 276864769240SAlex Tomas 276964769240SAlex Tomas out: 2770d47992f8SLukas Czerner ext4_invalidatepage(page, offset, length); 277164769240SAlex Tomas 277264769240SAlex Tomas return; 277364769240SAlex Tomas } 277464769240SAlex Tomas 2775ccd2506bSTheodore Ts'o /* 2776ccd2506bSTheodore Ts'o * Force all delayed allocation blocks to be allocated for a given inode. 2777ccd2506bSTheodore Ts'o */ 2778ccd2506bSTheodore Ts'o int ext4_alloc_da_blocks(struct inode *inode) 2779ccd2506bSTheodore Ts'o { 2780fb40ba0dSTheodore Ts'o trace_ext4_alloc_da_blocks(inode); 2781fb40ba0dSTheodore Ts'o 2782ccd2506bSTheodore Ts'o if (!EXT4_I(inode)->i_reserved_data_blocks && 2783ccd2506bSTheodore Ts'o !EXT4_I(inode)->i_reserved_meta_blocks) 2784ccd2506bSTheodore Ts'o return 0; 2785ccd2506bSTheodore Ts'o 2786ccd2506bSTheodore Ts'o /* 2787ccd2506bSTheodore Ts'o * We do something simple for now. The filemap_flush() will 2788ccd2506bSTheodore Ts'o * also start triggering a write of the data blocks, which is 2789ccd2506bSTheodore Ts'o * not strictly speaking necessary (and for users of 2790ccd2506bSTheodore Ts'o * laptop_mode, not even desirable). However, to do otherwise 2791ccd2506bSTheodore Ts'o * would require replicating code paths in: 2792ccd2506bSTheodore Ts'o * 2793ccd2506bSTheodore Ts'o * ext4_da_writepages() -> 2794ccd2506bSTheodore Ts'o * write_cache_pages() ---> (via passed in callback function) 2795ccd2506bSTheodore Ts'o * __mpage_da_writepage() --> 2796ccd2506bSTheodore Ts'o * mpage_add_bh_to_extent() 2797ccd2506bSTheodore Ts'o * mpage_da_map_blocks() 2798ccd2506bSTheodore Ts'o * 2799ccd2506bSTheodore Ts'o * The problem is that write_cache_pages(), located in 2800ccd2506bSTheodore Ts'o * mm/page-writeback.c, marks pages clean in preparation for 2801ccd2506bSTheodore Ts'o * doing I/O, which is not desirable if we're not planning on 2802ccd2506bSTheodore Ts'o * doing I/O at all. 2803ccd2506bSTheodore Ts'o * 2804ccd2506bSTheodore Ts'o * We could call write_cache_pages(), and then redirty all of 2805380cf090SWu Fengguang * the pages by calling redirty_page_for_writepage() but that 2806ccd2506bSTheodore Ts'o * would be ugly in the extreme. So instead we would need to 2807ccd2506bSTheodore Ts'o * replicate parts of the code in the above functions, 280825985edcSLucas De Marchi * simplifying them because we wouldn't actually intend to 2809ccd2506bSTheodore Ts'o * write out the pages, but rather only collect contiguous 2810ccd2506bSTheodore Ts'o * logical block extents, call the multi-block allocator, and 2811ccd2506bSTheodore Ts'o * then update the buffer heads with the block allocations. 2812ccd2506bSTheodore Ts'o * 2813ccd2506bSTheodore Ts'o * For now, though, we'll cheat by calling filemap_flush(), 2814ccd2506bSTheodore Ts'o * which will map the blocks, and start the I/O, but not 2815ccd2506bSTheodore Ts'o * actually wait for the I/O to complete. 2816ccd2506bSTheodore Ts'o */ 2817ccd2506bSTheodore Ts'o return filemap_flush(inode->i_mapping); 2818ccd2506bSTheodore Ts'o } 281964769240SAlex Tomas 282064769240SAlex Tomas /* 2821ac27a0ecSDave Kleikamp * bmap() is special. It gets used by applications such as lilo and by 2822ac27a0ecSDave Kleikamp * the swapper to find the on-disk block of a specific piece of data. 2823ac27a0ecSDave Kleikamp * 2824ac27a0ecSDave Kleikamp * Naturally, this is dangerous if the block concerned is still in the 2825617ba13bSMingming Cao * journal. If somebody makes a swapfile on an ext4 data-journaling 2826ac27a0ecSDave Kleikamp * filesystem and enables swap, then they may get a nasty shock when the 2827ac27a0ecSDave Kleikamp * data getting swapped to that swapfile suddenly gets overwritten by 2828ac27a0ecSDave Kleikamp * the original zero's written out previously to the journal and 2829ac27a0ecSDave Kleikamp * awaiting writeback in the kernel's buffer cache. 2830ac27a0ecSDave Kleikamp * 2831ac27a0ecSDave Kleikamp * So, if we see any bmap calls here on a modified, data-journaled file, 2832ac27a0ecSDave Kleikamp * take extra steps to flush any blocks which might be in the cache. 2833ac27a0ecSDave Kleikamp */ 2834617ba13bSMingming Cao static sector_t ext4_bmap(struct address_space *mapping, sector_t block) 2835ac27a0ecSDave Kleikamp { 2836ac27a0ecSDave Kleikamp struct inode *inode = mapping->host; 2837ac27a0ecSDave Kleikamp journal_t *journal; 2838ac27a0ecSDave Kleikamp int err; 2839ac27a0ecSDave Kleikamp 284046c7f254STao Ma /* 284146c7f254STao Ma * We can get here for an inline file via the FIBMAP ioctl 284246c7f254STao Ma */ 284346c7f254STao Ma if (ext4_has_inline_data(inode)) 284446c7f254STao Ma return 0; 284546c7f254STao Ma 284664769240SAlex Tomas if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) && 284764769240SAlex Tomas test_opt(inode->i_sb, DELALLOC)) { 284864769240SAlex Tomas /* 284964769240SAlex Tomas * With delalloc we want to sync the file 285064769240SAlex Tomas * so that we can make sure we allocate 285164769240SAlex Tomas * blocks for file 285264769240SAlex Tomas */ 285364769240SAlex Tomas filemap_write_and_wait(mapping); 285464769240SAlex Tomas } 285564769240SAlex Tomas 285619f5fb7aSTheodore Ts'o if (EXT4_JOURNAL(inode) && 285719f5fb7aSTheodore Ts'o ext4_test_inode_state(inode, EXT4_STATE_JDATA)) { 2858ac27a0ecSDave Kleikamp /* 2859ac27a0ecSDave Kleikamp * This is a REALLY heavyweight approach, but the use of 2860ac27a0ecSDave Kleikamp * bmap on dirty files is expected to be extremely rare: 2861ac27a0ecSDave Kleikamp * only if we run lilo or swapon on a freshly made file 2862ac27a0ecSDave Kleikamp * do we expect this to happen. 2863ac27a0ecSDave Kleikamp * 2864ac27a0ecSDave Kleikamp * (bmap requires CAP_SYS_RAWIO so this does not 2865ac27a0ecSDave Kleikamp * represent an unprivileged user DOS attack --- we'd be 2866ac27a0ecSDave Kleikamp * in trouble if mortal users could trigger this path at 2867ac27a0ecSDave Kleikamp * will.) 2868ac27a0ecSDave Kleikamp * 2869617ba13bSMingming Cao * NB. EXT4_STATE_JDATA is not set on files other than 2870ac27a0ecSDave Kleikamp * regular files. If somebody wants to bmap a directory 2871ac27a0ecSDave Kleikamp * or symlink and gets confused because the buffer 2872ac27a0ecSDave Kleikamp * hasn't yet been flushed to disk, they deserve 2873ac27a0ecSDave Kleikamp * everything they get. 2874ac27a0ecSDave Kleikamp */ 2875ac27a0ecSDave Kleikamp 287619f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_JDATA); 2877617ba13bSMingming Cao journal = EXT4_JOURNAL(inode); 2878dab291afSMingming Cao jbd2_journal_lock_updates(journal); 2879dab291afSMingming Cao err = jbd2_journal_flush(journal); 2880dab291afSMingming Cao jbd2_journal_unlock_updates(journal); 2881ac27a0ecSDave Kleikamp 2882ac27a0ecSDave Kleikamp if (err) 2883ac27a0ecSDave Kleikamp return 0; 2884ac27a0ecSDave Kleikamp } 2885ac27a0ecSDave Kleikamp 2886617ba13bSMingming Cao return generic_block_bmap(mapping, block, ext4_get_block); 2887ac27a0ecSDave Kleikamp } 2888ac27a0ecSDave Kleikamp 2889617ba13bSMingming Cao static int ext4_readpage(struct file *file, struct page *page) 2890ac27a0ecSDave Kleikamp { 289146c7f254STao Ma int ret = -EAGAIN; 289246c7f254STao Ma struct inode *inode = page->mapping->host; 289346c7f254STao Ma 28940562e0baSJiaying Zhang trace_ext4_readpage(page); 289546c7f254STao Ma 289646c7f254STao Ma if (ext4_has_inline_data(inode)) 289746c7f254STao Ma ret = ext4_readpage_inline(inode, page); 289846c7f254STao Ma 289946c7f254STao Ma if (ret == -EAGAIN) 2900617ba13bSMingming Cao return mpage_readpage(page, ext4_get_block); 290146c7f254STao Ma 290246c7f254STao Ma return ret; 2903ac27a0ecSDave Kleikamp } 2904ac27a0ecSDave Kleikamp 2905ac27a0ecSDave Kleikamp static int 2906617ba13bSMingming Cao ext4_readpages(struct file *file, struct address_space *mapping, 2907ac27a0ecSDave Kleikamp struct list_head *pages, unsigned nr_pages) 2908ac27a0ecSDave Kleikamp { 290946c7f254STao Ma struct inode *inode = mapping->host; 291046c7f254STao Ma 291146c7f254STao Ma /* If the file has inline data, no need to do readpages. */ 291246c7f254STao Ma if (ext4_has_inline_data(inode)) 291346c7f254STao Ma return 0; 291446c7f254STao Ma 2915617ba13bSMingming Cao return mpage_readpages(mapping, pages, nr_pages, ext4_get_block); 2916ac27a0ecSDave Kleikamp } 2917ac27a0ecSDave Kleikamp 2918d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset, 2919d47992f8SLukas Czerner unsigned int length) 2920ac27a0ecSDave Kleikamp { 2921ca99fdd2SLukas Czerner trace_ext4_invalidatepage(page, offset, length); 29220562e0baSJiaying Zhang 29234520fb3cSJan Kara /* No journalling happens on data buffers when this function is used */ 29244520fb3cSJan Kara WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page))); 29254520fb3cSJan Kara 2926ca99fdd2SLukas Czerner block_invalidatepage(page, offset, length); 29274520fb3cSJan Kara } 29284520fb3cSJan Kara 292953e87268SJan Kara static int __ext4_journalled_invalidatepage(struct page *page, 2930ca99fdd2SLukas Czerner unsigned int offset, 2931ca99fdd2SLukas Czerner unsigned int length) 29324520fb3cSJan Kara { 29334520fb3cSJan Kara journal_t *journal = EXT4_JOURNAL(page->mapping->host); 29344520fb3cSJan Kara 2935ca99fdd2SLukas Czerner trace_ext4_journalled_invalidatepage(page, offset, length); 29364520fb3cSJan Kara 2937744692dcSJiaying Zhang /* 2938ac27a0ecSDave Kleikamp * If it's a full truncate we just forget about the pending dirtying 2939ac27a0ecSDave Kleikamp */ 2940ca99fdd2SLukas Czerner if (offset == 0 && length == PAGE_CACHE_SIZE) 2941ac27a0ecSDave Kleikamp ClearPageChecked(page); 2942ac27a0ecSDave Kleikamp 2943ca99fdd2SLukas Czerner return jbd2_journal_invalidatepage(journal, page, offset, length); 294453e87268SJan Kara } 294553e87268SJan Kara 294653e87268SJan Kara /* Wrapper for aops... */ 294753e87268SJan Kara static void ext4_journalled_invalidatepage(struct page *page, 2948d47992f8SLukas Czerner unsigned int offset, 2949d47992f8SLukas Czerner unsigned int length) 295053e87268SJan Kara { 2951ca99fdd2SLukas Czerner WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0); 2952ac27a0ecSDave Kleikamp } 2953ac27a0ecSDave Kleikamp 2954617ba13bSMingming Cao static int ext4_releasepage(struct page *page, gfp_t wait) 2955ac27a0ecSDave Kleikamp { 2956617ba13bSMingming Cao journal_t *journal = EXT4_JOURNAL(page->mapping->host); 2957ac27a0ecSDave Kleikamp 29580562e0baSJiaying Zhang trace_ext4_releasepage(page); 29590562e0baSJiaying Zhang 2960e1c36595SJan Kara /* Page has dirty journalled data -> cannot release */ 2961e1c36595SJan Kara if (PageChecked(page)) 2962ac27a0ecSDave Kleikamp return 0; 29630390131bSFrank Mayhar if (journal) 2964dab291afSMingming Cao return jbd2_journal_try_to_free_buffers(journal, page, wait); 29650390131bSFrank Mayhar else 29660390131bSFrank Mayhar return try_to_free_buffers(page); 2967ac27a0ecSDave Kleikamp } 2968ac27a0ecSDave Kleikamp 2969ac27a0ecSDave Kleikamp /* 29702ed88685STheodore Ts'o * ext4_get_block used when preparing for a DIO write or buffer write. 29712ed88685STheodore Ts'o * We allocate an uinitialized extent if blocks haven't been allocated. 29722ed88685STheodore Ts'o * The extent will be converted to initialized after the IO is complete. 29732ed88685STheodore Ts'o */ 2974f19d5870STao Ma int ext4_get_block_write(struct inode *inode, sector_t iblock, 29754c0425ffSMingming Cao struct buffer_head *bh_result, int create) 29764c0425ffSMingming Cao { 2977c7064ef1SJiaying Zhang ext4_debug("ext4_get_block_write: inode %lu, create flag %d\n", 29788d5d02e6SMingming Cao inode->i_ino, create); 29792ed88685STheodore Ts'o return _ext4_get_block(inode, iblock, bh_result, 29802ed88685STheodore Ts'o EXT4_GET_BLOCKS_IO_CREATE_EXT); 29814c0425ffSMingming Cao } 29824c0425ffSMingming Cao 2983729f52c6SZheng Liu static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock, 29848b0f165fSAnatol Pomozov struct buffer_head *bh_result, int create) 2985729f52c6SZheng Liu { 29868b0f165fSAnatol Pomozov ext4_debug("ext4_get_block_write_nolock: inode %lu, create flag %d\n", 29878b0f165fSAnatol Pomozov inode->i_ino, create); 29888b0f165fSAnatol Pomozov return _ext4_get_block(inode, iblock, bh_result, 29898b0f165fSAnatol Pomozov EXT4_GET_BLOCKS_NO_LOCK); 2990729f52c6SZheng Liu } 2991729f52c6SZheng Liu 29924c0425ffSMingming Cao static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset, 2993552ef802SChristoph Hellwig ssize_t size, void *private, int ret, 2994552ef802SChristoph Hellwig bool is_async) 29954c0425ffSMingming Cao { 2996496ad9aaSAl Viro struct inode *inode = file_inode(iocb->ki_filp); 29974c0425ffSMingming Cao ext4_io_end_t *io_end = iocb->private; 29984c0425ffSMingming Cao 299997a851edSJan Kara /* if not async direct IO just return */ 300097a851edSJan Kara if (!io_end) { 300197a851edSJan Kara inode_dio_done(inode); 300297a851edSJan Kara if (is_async) 300397a851edSJan Kara aio_complete(iocb, ret, 0); 300497a851edSJan Kara return; 300597a851edSJan Kara } 30064b70df18SMingming 30078d5d02e6SMingming Cao ext_debug("ext4_end_io_dio(): io_end 0x%p " 3008ace36ad4SJoe Perches "for inode %lu, iocb 0x%p, offset %llu, size %zd\n", 30098d5d02e6SMingming Cao iocb->private, io_end->inode->i_ino, iocb, offset, 30108d5d02e6SMingming Cao size); 30118d5d02e6SMingming Cao 3012b5a7e970STheodore Ts'o iocb->private = NULL; 30134c0425ffSMingming Cao io_end->offset = offset; 30144c0425ffSMingming Cao io_end->size = size; 30155b3ff237Sjiayingz@google.com (Jiaying Zhang) if (is_async) { 30165b3ff237Sjiayingz@google.com (Jiaying Zhang) io_end->iocb = iocb; 30175b3ff237Sjiayingz@google.com (Jiaying Zhang) io_end->result = ret; 30185b3ff237Sjiayingz@google.com (Jiaying Zhang) } 301997a851edSJan Kara ext4_put_io_end_defer(io_end); 30204c0425ffSMingming Cao } 3021c7064ef1SJiaying Zhang 30224c0425ffSMingming Cao /* 30234c0425ffSMingming Cao * For ext4 extent files, ext4 will do direct-io write to holes, 30244c0425ffSMingming Cao * preallocated extents, and those write extend the file, no need to 30254c0425ffSMingming Cao * fall back to buffered IO. 30264c0425ffSMingming Cao * 3027b595076aSUwe Kleine-König * For holes, we fallocate those blocks, mark them as uninitialized 302869c499d1STheodore Ts'o * If those blocks were preallocated, we mark sure they are split, but 3029b595076aSUwe Kleine-König * still keep the range to write as uninitialized. 30304c0425ffSMingming Cao * 303169c499d1STheodore Ts'o * The unwritten extents will be converted to written when DIO is completed. 30328d5d02e6SMingming Cao * For async direct IO, since the IO may still pending when return, we 303325985edcSLucas De Marchi * set up an end_io call back function, which will do the conversion 30348d5d02e6SMingming Cao * when async direct IO completed. 30354c0425ffSMingming Cao * 30364c0425ffSMingming Cao * If the O_DIRECT write will extend the file then add this inode to the 30374c0425ffSMingming Cao * orphan list. So recovery will truncate it back to the original size 30384c0425ffSMingming Cao * if the machine crashes during the write. 30394c0425ffSMingming Cao * 30404c0425ffSMingming Cao */ 30414c0425ffSMingming Cao static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb, 30424c0425ffSMingming Cao const struct iovec *iov, loff_t offset, 30434c0425ffSMingming Cao unsigned long nr_segs) 30444c0425ffSMingming Cao { 30454c0425ffSMingming Cao struct file *file = iocb->ki_filp; 30464c0425ffSMingming Cao struct inode *inode = file->f_mapping->host; 30474c0425ffSMingming Cao ssize_t ret; 30484c0425ffSMingming Cao size_t count = iov_length(iov, nr_segs); 3049729f52c6SZheng Liu int overwrite = 0; 30508b0f165fSAnatol Pomozov get_block_t *get_block_func = NULL; 30518b0f165fSAnatol Pomozov int dio_flags = 0; 305269c499d1STheodore Ts'o loff_t final_size = offset + count; 305397a851edSJan Kara ext4_io_end_t *io_end = NULL; 305469c499d1STheodore Ts'o 305569c499d1STheodore Ts'o /* Use the old path for reads and writes beyond i_size. */ 305669c499d1STheodore Ts'o if (rw != WRITE || final_size > inode->i_size) 305769c499d1STheodore Ts'o return ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs); 3058729f52c6SZheng Liu 30594bd809dbSZheng Liu BUG_ON(iocb->private == NULL); 30604bd809dbSZheng Liu 30614bd809dbSZheng Liu /* If we do a overwrite dio, i_mutex locking can be released */ 30624bd809dbSZheng Liu overwrite = *((int *)iocb->private); 30634bd809dbSZheng Liu 30644bd809dbSZheng Liu if (overwrite) { 30651f555cfaSDmitry Monakhov atomic_inc(&inode->i_dio_count); 30664bd809dbSZheng Liu down_read(&EXT4_I(inode)->i_data_sem); 30674bd809dbSZheng Liu mutex_unlock(&inode->i_mutex); 30684bd809dbSZheng Liu } 30694bd809dbSZheng Liu 30704c0425ffSMingming Cao /* 30718d5d02e6SMingming Cao * We could direct write to holes and fallocate. 30728d5d02e6SMingming Cao * 307369c499d1STheodore Ts'o * Allocated blocks to fill the hole are marked as 307469c499d1STheodore Ts'o * uninitialized to prevent parallel buffered read to expose 307569c499d1STheodore Ts'o * the stale data before DIO complete the data IO. 30768d5d02e6SMingming Cao * 307769c499d1STheodore Ts'o * As to previously fallocated extents, ext4 get_block will 307869c499d1STheodore Ts'o * just simply mark the buffer mapped but still keep the 307969c499d1STheodore Ts'o * extents uninitialized. 30804c0425ffSMingming Cao * 308169c499d1STheodore Ts'o * For non AIO case, we will convert those unwritten extents 30828d5d02e6SMingming Cao * to written after return back from blockdev_direct_IO. 30834c0425ffSMingming Cao * 308469c499d1STheodore Ts'o * For async DIO, the conversion needs to be deferred when the 308569c499d1STheodore Ts'o * IO is completed. The ext4 end_io callback function will be 308669c499d1STheodore Ts'o * called to take care of the conversion work. Here for async 308769c499d1STheodore Ts'o * case, we allocate an io_end structure to hook to the iocb. 30884c0425ffSMingming Cao */ 30898d5d02e6SMingming Cao iocb->private = NULL; 3090f45ee3a1SDmitry Monakhov ext4_inode_aio_set(inode, NULL); 30918d5d02e6SMingming Cao if (!is_sync_kiocb(iocb)) { 309297a851edSJan Kara io_end = ext4_init_io_end(inode, GFP_NOFS); 30934bd809dbSZheng Liu if (!io_end) { 30944bd809dbSZheng Liu ret = -ENOMEM; 30954bd809dbSZheng Liu goto retake_lock; 30964bd809dbSZheng Liu } 3097266991b1SJeff Moyer io_end->flag |= EXT4_IO_END_DIRECT; 309897a851edSJan Kara /* 309997a851edSJan Kara * Grab reference for DIO. Will be dropped in ext4_end_io_dio() 310097a851edSJan Kara */ 310197a851edSJan Kara iocb->private = ext4_get_io_end(io_end); 31028d5d02e6SMingming Cao /* 310369c499d1STheodore Ts'o * we save the io structure for current async direct 310469c499d1STheodore Ts'o * IO, so that later ext4_map_blocks() could flag the 310569c499d1STheodore Ts'o * io structure whether there is a unwritten extents 310669c499d1STheodore Ts'o * needs to be converted when IO is completed. 31078d5d02e6SMingming Cao */ 3108f45ee3a1SDmitry Monakhov ext4_inode_aio_set(inode, io_end); 31098d5d02e6SMingming Cao } 31108d5d02e6SMingming Cao 31118b0f165fSAnatol Pomozov if (overwrite) { 31128b0f165fSAnatol Pomozov get_block_func = ext4_get_block_write_nolock; 31138b0f165fSAnatol Pomozov } else { 31148b0f165fSAnatol Pomozov get_block_func = ext4_get_block_write; 31158b0f165fSAnatol Pomozov dio_flags = DIO_LOCKING; 31168b0f165fSAnatol Pomozov } 3117729f52c6SZheng Liu ret = __blockdev_direct_IO(rw, iocb, inode, 3118729f52c6SZheng Liu inode->i_sb->s_bdev, iov, 3119729f52c6SZheng Liu offset, nr_segs, 31208b0f165fSAnatol Pomozov get_block_func, 3121729f52c6SZheng Liu ext4_end_io_dio, 3122729f52c6SZheng Liu NULL, 31238b0f165fSAnatol Pomozov dio_flags); 31248b0f165fSAnatol Pomozov 31254eec708dSJan Kara /* 312697a851edSJan Kara * Put our reference to io_end. This can free the io_end structure e.g. 312797a851edSJan Kara * in sync IO case or in case of error. It can even perform extent 312897a851edSJan Kara * conversion if all bios we submitted finished before we got here. 312997a851edSJan Kara * Note that in that case iocb->private can be already set to NULL 313097a851edSJan Kara * here. 31314eec708dSJan Kara */ 313297a851edSJan Kara if (io_end) { 313397a851edSJan Kara ext4_inode_aio_set(inode, NULL); 313497a851edSJan Kara ext4_put_io_end(io_end); 313597a851edSJan Kara /* 313697a851edSJan Kara * When no IO was submitted ext4_end_io_dio() was not 313797a851edSJan Kara * called so we have to put iocb's reference. 313897a851edSJan Kara */ 313997a851edSJan Kara if (ret <= 0 && ret != -EIOCBQUEUED && iocb->private) { 314097a851edSJan Kara WARN_ON(iocb->private != io_end); 314197a851edSJan Kara WARN_ON(io_end->flag & EXT4_IO_END_UNWRITTEN); 314297a851edSJan Kara WARN_ON(io_end->iocb); 314397a851edSJan Kara /* 314497a851edSJan Kara * Generic code already did inode_dio_done() so we 314597a851edSJan Kara * have to clear EXT4_IO_END_DIRECT to not do it for 314697a851edSJan Kara * the second time. 314797a851edSJan Kara */ 314897a851edSJan Kara io_end->flag = 0; 314997a851edSJan Kara ext4_put_io_end(io_end); 31508d5d02e6SMingming Cao iocb->private = NULL; 315197a851edSJan Kara } 315297a851edSJan Kara } 315397a851edSJan Kara if (ret > 0 && !overwrite && ext4_test_inode_state(inode, 31545f524950SMingming EXT4_STATE_DIO_UNWRITTEN)) { 3155109f5565SMingming int err; 31568d5d02e6SMingming Cao /* 31578d5d02e6SMingming Cao * for non AIO case, since the IO is already 315825985edcSLucas De Marchi * completed, we could do the conversion right here 31598d5d02e6SMingming Cao */ 3160109f5565SMingming err = ext4_convert_unwritten_extents(inode, 31618d5d02e6SMingming Cao offset, ret); 3162109f5565SMingming if (err < 0) 3163109f5565SMingming ret = err; 316419f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN); 3165109f5565SMingming } 31664bd809dbSZheng Liu 31674bd809dbSZheng Liu retake_lock: 31684bd809dbSZheng Liu /* take i_mutex locking again if we do a ovewrite dio */ 31694bd809dbSZheng Liu if (overwrite) { 31701f555cfaSDmitry Monakhov inode_dio_done(inode); 31714bd809dbSZheng Liu up_read(&EXT4_I(inode)->i_data_sem); 31724bd809dbSZheng Liu mutex_lock(&inode->i_mutex); 31734bd809dbSZheng Liu } 31744bd809dbSZheng Liu 31754c0425ffSMingming Cao return ret; 31764c0425ffSMingming Cao } 31778d5d02e6SMingming Cao 31784c0425ffSMingming Cao static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb, 31794c0425ffSMingming Cao const struct iovec *iov, loff_t offset, 31804c0425ffSMingming Cao unsigned long nr_segs) 31814c0425ffSMingming Cao { 31824c0425ffSMingming Cao struct file *file = iocb->ki_filp; 31834c0425ffSMingming Cao struct inode *inode = file->f_mapping->host; 31840562e0baSJiaying Zhang ssize_t ret; 31854c0425ffSMingming Cao 318684ebd795STheodore Ts'o /* 318784ebd795STheodore Ts'o * If we are doing data journalling we don't support O_DIRECT 318884ebd795STheodore Ts'o */ 318984ebd795STheodore Ts'o if (ext4_should_journal_data(inode)) 319084ebd795STheodore Ts'o return 0; 319184ebd795STheodore Ts'o 319246c7f254STao Ma /* Let buffer I/O handle the inline data case. */ 319346c7f254STao Ma if (ext4_has_inline_data(inode)) 319446c7f254STao Ma return 0; 319546c7f254STao Ma 31960562e0baSJiaying Zhang trace_ext4_direct_IO_enter(inode, offset, iov_length(iov, nr_segs), rw); 319712e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 31980562e0baSJiaying Zhang ret = ext4_ext_direct_IO(rw, iocb, iov, offset, nr_segs); 31990562e0baSJiaying Zhang else 32000562e0baSJiaying Zhang ret = ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs); 32010562e0baSJiaying Zhang trace_ext4_direct_IO_exit(inode, offset, 32020562e0baSJiaying Zhang iov_length(iov, nr_segs), rw, ret); 32030562e0baSJiaying Zhang return ret; 32044c0425ffSMingming Cao } 32054c0425ffSMingming Cao 3206ac27a0ecSDave Kleikamp /* 3207617ba13bSMingming Cao * Pages can be marked dirty completely asynchronously from ext4's journalling 3208ac27a0ecSDave Kleikamp * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do 3209ac27a0ecSDave Kleikamp * much here because ->set_page_dirty is called under VFS locks. The page is 3210ac27a0ecSDave Kleikamp * not necessarily locked. 3211ac27a0ecSDave Kleikamp * 3212ac27a0ecSDave Kleikamp * We cannot just dirty the page and leave attached buffers clean, because the 3213ac27a0ecSDave Kleikamp * buffers' dirty state is "definitive". We cannot just set the buffers dirty 3214ac27a0ecSDave Kleikamp * or jbddirty because all the journalling code will explode. 3215ac27a0ecSDave Kleikamp * 3216ac27a0ecSDave Kleikamp * So what we do is to mark the page "pending dirty" and next time writepage 3217ac27a0ecSDave Kleikamp * is called, propagate that into the buffers appropriately. 3218ac27a0ecSDave Kleikamp */ 3219617ba13bSMingming Cao static int ext4_journalled_set_page_dirty(struct page *page) 3220ac27a0ecSDave Kleikamp { 3221ac27a0ecSDave Kleikamp SetPageChecked(page); 3222ac27a0ecSDave Kleikamp return __set_page_dirty_nobuffers(page); 3223ac27a0ecSDave Kleikamp } 3224ac27a0ecSDave Kleikamp 322574d553aaSTheodore Ts'o static const struct address_space_operations ext4_aops = { 3226617ba13bSMingming Cao .readpage = ext4_readpage, 3227617ba13bSMingming Cao .readpages = ext4_readpages, 322843ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 3229bfc1af65SNick Piggin .write_begin = ext4_write_begin, 323074d553aaSTheodore Ts'o .write_end = ext4_write_end, 3231617ba13bSMingming Cao .bmap = ext4_bmap, 3232617ba13bSMingming Cao .invalidatepage = ext4_invalidatepage, 3233617ba13bSMingming Cao .releasepage = ext4_releasepage, 3234617ba13bSMingming Cao .direct_IO = ext4_direct_IO, 3235ac27a0ecSDave Kleikamp .migratepage = buffer_migrate_page, 32368ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3237aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 3238ac27a0ecSDave Kleikamp }; 3239ac27a0ecSDave Kleikamp 3240617ba13bSMingming Cao static const struct address_space_operations ext4_journalled_aops = { 3241617ba13bSMingming Cao .readpage = ext4_readpage, 3242617ba13bSMingming Cao .readpages = ext4_readpages, 324343ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 3244bfc1af65SNick Piggin .write_begin = ext4_write_begin, 3245bfc1af65SNick Piggin .write_end = ext4_journalled_write_end, 3246617ba13bSMingming Cao .set_page_dirty = ext4_journalled_set_page_dirty, 3247617ba13bSMingming Cao .bmap = ext4_bmap, 32484520fb3cSJan Kara .invalidatepage = ext4_journalled_invalidatepage, 3249617ba13bSMingming Cao .releasepage = ext4_releasepage, 325084ebd795STheodore Ts'o .direct_IO = ext4_direct_IO, 32518ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3252aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 3253ac27a0ecSDave Kleikamp }; 3254ac27a0ecSDave Kleikamp 325564769240SAlex Tomas static const struct address_space_operations ext4_da_aops = { 325664769240SAlex Tomas .readpage = ext4_readpage, 325764769240SAlex Tomas .readpages = ext4_readpages, 325843ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 325964769240SAlex Tomas .writepages = ext4_da_writepages, 326064769240SAlex Tomas .write_begin = ext4_da_write_begin, 326164769240SAlex Tomas .write_end = ext4_da_write_end, 326264769240SAlex Tomas .bmap = ext4_bmap, 326364769240SAlex Tomas .invalidatepage = ext4_da_invalidatepage, 326464769240SAlex Tomas .releasepage = ext4_releasepage, 326564769240SAlex Tomas .direct_IO = ext4_direct_IO, 326664769240SAlex Tomas .migratepage = buffer_migrate_page, 32678ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3268aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 326964769240SAlex Tomas }; 327064769240SAlex Tomas 3271617ba13bSMingming Cao void ext4_set_aops(struct inode *inode) 3272ac27a0ecSDave Kleikamp { 32733d2b1582SLukas Czerner switch (ext4_inode_journal_mode(inode)) { 32743d2b1582SLukas Czerner case EXT4_INODE_ORDERED_DATA_MODE: 327574d553aaSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_ORDERED_MODE); 32763d2b1582SLukas Czerner break; 32773d2b1582SLukas Czerner case EXT4_INODE_WRITEBACK_DATA_MODE: 327874d553aaSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_ORDERED_MODE); 32793d2b1582SLukas Czerner break; 32803d2b1582SLukas Czerner case EXT4_INODE_JOURNAL_DATA_MODE: 3281617ba13bSMingming Cao inode->i_mapping->a_ops = &ext4_journalled_aops; 328274d553aaSTheodore Ts'o return; 32833d2b1582SLukas Czerner default: 32843d2b1582SLukas Czerner BUG(); 32853d2b1582SLukas Czerner } 328674d553aaSTheodore Ts'o if (test_opt(inode->i_sb, DELALLOC)) 328774d553aaSTheodore Ts'o inode->i_mapping->a_ops = &ext4_da_aops; 328874d553aaSTheodore Ts'o else 328974d553aaSTheodore Ts'o inode->i_mapping->a_ops = &ext4_aops; 3290ac27a0ecSDave Kleikamp } 3291ac27a0ecSDave Kleikamp 3292d863dc36SLukas Czerner /* 3293d863dc36SLukas Czerner * ext4_block_truncate_page() zeroes out a mapping from file offset `from' 3294d863dc36SLukas Czerner * up to the end of the block which corresponds to `from'. 3295d863dc36SLukas Czerner * This required during truncate. We need to physically zero the tail end 3296d863dc36SLukas Czerner * of that block so it doesn't yield old data if the file is later grown. 3297d863dc36SLukas Czerner */ 3298d863dc36SLukas Czerner int ext4_block_truncate_page(handle_t *handle, 3299d863dc36SLukas Czerner struct address_space *mapping, loff_t from) 3300d863dc36SLukas Czerner { 3301d863dc36SLukas Czerner unsigned offset = from & (PAGE_CACHE_SIZE-1); 3302d863dc36SLukas Czerner unsigned length; 3303d863dc36SLukas Czerner unsigned blocksize; 3304d863dc36SLukas Czerner struct inode *inode = mapping->host; 3305d863dc36SLukas Czerner 3306d863dc36SLukas Czerner blocksize = inode->i_sb->s_blocksize; 3307d863dc36SLukas Czerner length = blocksize - (offset & (blocksize - 1)); 3308d863dc36SLukas Czerner 3309d863dc36SLukas Czerner return ext4_block_zero_page_range(handle, mapping, from, length); 3310d863dc36SLukas Czerner } 3311d863dc36SLukas Czerner 3312d863dc36SLukas Czerner /* 3313d863dc36SLukas Czerner * ext4_block_zero_page_range() zeros out a mapping of length 'length' 3314d863dc36SLukas Czerner * starting from file offset 'from'. The range to be zero'd must 3315d863dc36SLukas Czerner * be contained with in one block. If the specified range exceeds 3316d863dc36SLukas Czerner * the end of the block it will be shortened to end of the block 3317d863dc36SLukas Czerner * that cooresponds to 'from' 3318d863dc36SLukas Czerner */ 3319d863dc36SLukas Czerner int ext4_block_zero_page_range(handle_t *handle, 3320d863dc36SLukas Czerner struct address_space *mapping, loff_t from, loff_t length) 3321d863dc36SLukas Czerner { 3322d863dc36SLukas Czerner ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT; 3323d863dc36SLukas Czerner unsigned offset = from & (PAGE_CACHE_SIZE-1); 3324d863dc36SLukas Czerner unsigned blocksize, max, pos; 3325d863dc36SLukas Czerner ext4_lblk_t iblock; 3326d863dc36SLukas Czerner struct inode *inode = mapping->host; 3327d863dc36SLukas Czerner struct buffer_head *bh; 3328d863dc36SLukas Czerner struct page *page; 3329d863dc36SLukas Czerner int err = 0; 3330d863dc36SLukas Czerner 3331d863dc36SLukas Czerner page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT, 3332d863dc36SLukas Czerner mapping_gfp_mask(mapping) & ~__GFP_FS); 3333d863dc36SLukas Czerner if (!page) 3334d863dc36SLukas Czerner return -ENOMEM; 3335d863dc36SLukas Czerner 3336d863dc36SLukas Czerner blocksize = inode->i_sb->s_blocksize; 3337d863dc36SLukas Czerner max = blocksize - (offset & (blocksize - 1)); 3338d863dc36SLukas Czerner 3339d863dc36SLukas Czerner /* 3340d863dc36SLukas Czerner * correct length if it does not fall between 3341d863dc36SLukas Czerner * 'from' and the end of the block 3342d863dc36SLukas Czerner */ 3343d863dc36SLukas Czerner if (length > max || length < 0) 3344d863dc36SLukas Czerner length = max; 3345d863dc36SLukas Czerner 3346d863dc36SLukas Czerner iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits); 3347d863dc36SLukas Czerner 3348d863dc36SLukas Czerner if (!page_has_buffers(page)) 3349d863dc36SLukas Czerner create_empty_buffers(page, blocksize, 0); 3350d863dc36SLukas Czerner 3351d863dc36SLukas Czerner /* Find the buffer that contains "offset" */ 3352d863dc36SLukas Czerner bh = page_buffers(page); 3353d863dc36SLukas Czerner pos = blocksize; 3354d863dc36SLukas Czerner while (offset >= pos) { 3355d863dc36SLukas Czerner bh = bh->b_this_page; 3356d863dc36SLukas Czerner iblock++; 3357d863dc36SLukas Czerner pos += blocksize; 3358d863dc36SLukas Czerner } 3359d863dc36SLukas Czerner 3360d863dc36SLukas Czerner err = 0; 3361d863dc36SLukas Czerner if (buffer_freed(bh)) { 3362d863dc36SLukas Czerner BUFFER_TRACE(bh, "freed: skip"); 3363d863dc36SLukas Czerner goto unlock; 3364d863dc36SLukas Czerner } 3365d863dc36SLukas Czerner 3366d863dc36SLukas Czerner if (!buffer_mapped(bh)) { 3367d863dc36SLukas Czerner BUFFER_TRACE(bh, "unmapped"); 3368d863dc36SLukas Czerner ext4_get_block(inode, iblock, bh, 0); 3369d863dc36SLukas Czerner /* unmapped? It's a hole - nothing to do */ 3370d863dc36SLukas Czerner if (!buffer_mapped(bh)) { 3371d863dc36SLukas Czerner BUFFER_TRACE(bh, "still unmapped"); 3372d863dc36SLukas Czerner goto unlock; 3373d863dc36SLukas Czerner } 3374d863dc36SLukas Czerner } 3375d863dc36SLukas Czerner 3376d863dc36SLukas Czerner /* Ok, it's mapped. Make sure it's up-to-date */ 3377d863dc36SLukas Czerner if (PageUptodate(page)) 3378d863dc36SLukas Czerner set_buffer_uptodate(bh); 3379d863dc36SLukas Czerner 3380d863dc36SLukas Czerner if (!buffer_uptodate(bh)) { 3381d863dc36SLukas Czerner err = -EIO; 3382d863dc36SLukas Czerner ll_rw_block(READ, 1, &bh); 3383d863dc36SLukas Czerner wait_on_buffer(bh); 3384d863dc36SLukas Czerner /* Uhhuh. Read error. Complain and punt. */ 3385d863dc36SLukas Czerner if (!buffer_uptodate(bh)) 3386d863dc36SLukas Czerner goto unlock; 3387d863dc36SLukas Czerner } 3388d863dc36SLukas Czerner 3389d863dc36SLukas Czerner if (ext4_should_journal_data(inode)) { 3390d863dc36SLukas Czerner BUFFER_TRACE(bh, "get write access"); 3391d863dc36SLukas Czerner err = ext4_journal_get_write_access(handle, bh); 3392d863dc36SLukas Czerner if (err) 3393d863dc36SLukas Czerner goto unlock; 3394d863dc36SLukas Czerner } 3395d863dc36SLukas Czerner 3396d863dc36SLukas Czerner zero_user(page, offset, length); 3397d863dc36SLukas Czerner 3398d863dc36SLukas Czerner BUFFER_TRACE(bh, "zeroed end of block"); 3399d863dc36SLukas Czerner 3400d863dc36SLukas Czerner err = 0; 3401d863dc36SLukas Czerner if (ext4_should_journal_data(inode)) { 3402d863dc36SLukas Czerner err = ext4_handle_dirty_metadata(handle, inode, bh); 34030713ed0cSLukas Czerner } else { 3404d863dc36SLukas Czerner mark_buffer_dirty(bh); 34050713ed0cSLukas Czerner if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) 34060713ed0cSLukas Czerner err = ext4_jbd2_file_inode(handle, inode); 34070713ed0cSLukas Czerner } 3408d863dc36SLukas Czerner 3409d863dc36SLukas Czerner unlock: 3410d863dc36SLukas Czerner unlock_page(page); 3411d863dc36SLukas Czerner page_cache_release(page); 3412d863dc36SLukas Czerner return err; 3413d863dc36SLukas Czerner } 3414d863dc36SLukas Czerner 3415a87dd18cSLukas Czerner int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode, 3416a87dd18cSLukas Czerner loff_t lstart, loff_t length) 3417a87dd18cSLukas Czerner { 3418a87dd18cSLukas Czerner struct super_block *sb = inode->i_sb; 3419a87dd18cSLukas Czerner struct address_space *mapping = inode->i_mapping; 3420a87dd18cSLukas Czerner unsigned partial = lstart & (sb->s_blocksize - 1); 3421a87dd18cSLukas Czerner ext4_fsblk_t start, end; 3422a87dd18cSLukas Czerner loff_t byte_end = (lstart + length - 1); 3423a87dd18cSLukas Czerner int err = 0; 3424a87dd18cSLukas Czerner 3425a87dd18cSLukas Czerner start = lstart >> sb->s_blocksize_bits; 3426a87dd18cSLukas Czerner end = byte_end >> sb->s_blocksize_bits; 3427a87dd18cSLukas Czerner 3428a87dd18cSLukas Czerner /* Handle partial zero within the single block */ 3429a87dd18cSLukas Czerner if (start == end) { 3430a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3431a87dd18cSLukas Czerner lstart, length); 3432a87dd18cSLukas Czerner return err; 3433a87dd18cSLukas Czerner } 3434a87dd18cSLukas Czerner /* Handle partial zero out on the start of the range */ 3435a87dd18cSLukas Czerner if (partial) { 3436a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3437a87dd18cSLukas Czerner lstart, sb->s_blocksize); 3438a87dd18cSLukas Czerner if (err) 3439a87dd18cSLukas Czerner return err; 3440a87dd18cSLukas Czerner } 3441a87dd18cSLukas Czerner /* Handle partial zero out on the end of the range */ 3442a87dd18cSLukas Czerner partial = byte_end & (sb->s_blocksize - 1); 3443a87dd18cSLukas Czerner if (partial != sb->s_blocksize - 1) 3444a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3445a87dd18cSLukas Czerner byte_end - partial, 3446a87dd18cSLukas Czerner partial + 1); 3447a87dd18cSLukas Czerner return err; 3448a87dd18cSLukas Czerner } 3449a87dd18cSLukas Czerner 345091ef4cafSDuane Griffin int ext4_can_truncate(struct inode *inode) 345191ef4cafSDuane Griffin { 345291ef4cafSDuane Griffin if (S_ISREG(inode->i_mode)) 345391ef4cafSDuane Griffin return 1; 345491ef4cafSDuane Griffin if (S_ISDIR(inode->i_mode)) 345591ef4cafSDuane Griffin return 1; 345691ef4cafSDuane Griffin if (S_ISLNK(inode->i_mode)) 345791ef4cafSDuane Griffin return !ext4_inode_is_fast_symlink(inode); 345891ef4cafSDuane Griffin return 0; 345991ef4cafSDuane Griffin } 346091ef4cafSDuane Griffin 3461ac27a0ecSDave Kleikamp /* 3462a4bb6b64SAllison Henderson * ext4_punch_hole: punches a hole in a file by releaseing the blocks 3463a4bb6b64SAllison Henderson * associated with the given offset and length 3464a4bb6b64SAllison Henderson * 3465a4bb6b64SAllison Henderson * @inode: File inode 3466a4bb6b64SAllison Henderson * @offset: The offset where the hole will begin 3467a4bb6b64SAllison Henderson * @len: The length of the hole 3468a4bb6b64SAllison Henderson * 34694907cb7bSAnatol Pomozov * Returns: 0 on success or negative on failure 3470a4bb6b64SAllison Henderson */ 3471a4bb6b64SAllison Henderson 3472a4bb6b64SAllison Henderson int ext4_punch_hole(struct file *file, loff_t offset, loff_t length) 3473a4bb6b64SAllison Henderson { 3474496ad9aaSAl Viro struct inode *inode = file_inode(file); 347526a4c0c6STheodore Ts'o struct super_block *sb = inode->i_sb; 347626a4c0c6STheodore Ts'o ext4_lblk_t first_block, stop_block; 347726a4c0c6STheodore Ts'o struct address_space *mapping = inode->i_mapping; 3478a87dd18cSLukas Czerner loff_t first_block_offset, last_block_offset; 347926a4c0c6STheodore Ts'o handle_t *handle; 348026a4c0c6STheodore Ts'o unsigned int credits; 348126a4c0c6STheodore Ts'o int ret = 0; 348226a4c0c6STheodore Ts'o 3483a4bb6b64SAllison Henderson if (!S_ISREG(inode->i_mode)) 348473355192SAllison Henderson return -EOPNOTSUPP; 3485a4bb6b64SAllison Henderson 348626a4c0c6STheodore Ts'o if (EXT4_SB(sb)->s_cluster_ratio > 1) { 3487bab08ab9STheodore Ts'o /* TODO: Add support for bigalloc file systems */ 348873355192SAllison Henderson return -EOPNOTSUPP; 3489bab08ab9STheodore Ts'o } 3490bab08ab9STheodore Ts'o 3491aaddea81SZheng Liu trace_ext4_punch_hole(inode, offset, length); 3492aaddea81SZheng Liu 349326a4c0c6STheodore Ts'o /* 349426a4c0c6STheodore Ts'o * Write out all dirty pages to avoid race conditions 349526a4c0c6STheodore Ts'o * Then release them. 349626a4c0c6STheodore Ts'o */ 349726a4c0c6STheodore Ts'o if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) { 349826a4c0c6STheodore Ts'o ret = filemap_write_and_wait_range(mapping, offset, 349926a4c0c6STheodore Ts'o offset + length - 1); 350026a4c0c6STheodore Ts'o if (ret) 350126a4c0c6STheodore Ts'o return ret; 350226a4c0c6STheodore Ts'o } 350326a4c0c6STheodore Ts'o 350426a4c0c6STheodore Ts'o mutex_lock(&inode->i_mutex); 350526a4c0c6STheodore Ts'o /* It's not possible punch hole on append only file */ 350626a4c0c6STheodore Ts'o if (IS_APPEND(inode) || IS_IMMUTABLE(inode)) { 350726a4c0c6STheodore Ts'o ret = -EPERM; 350826a4c0c6STheodore Ts'o goto out_mutex; 350926a4c0c6STheodore Ts'o } 351026a4c0c6STheodore Ts'o if (IS_SWAPFILE(inode)) { 351126a4c0c6STheodore Ts'o ret = -ETXTBSY; 351226a4c0c6STheodore Ts'o goto out_mutex; 351326a4c0c6STheodore Ts'o } 351426a4c0c6STheodore Ts'o 351526a4c0c6STheodore Ts'o /* No need to punch hole beyond i_size */ 351626a4c0c6STheodore Ts'o if (offset >= inode->i_size) 351726a4c0c6STheodore Ts'o goto out_mutex; 351826a4c0c6STheodore Ts'o 351926a4c0c6STheodore Ts'o /* 352026a4c0c6STheodore Ts'o * If the hole extends beyond i_size, set the hole 352126a4c0c6STheodore Ts'o * to end after the page that contains i_size 352226a4c0c6STheodore Ts'o */ 352326a4c0c6STheodore Ts'o if (offset + length > inode->i_size) { 352426a4c0c6STheodore Ts'o length = inode->i_size + 352526a4c0c6STheodore Ts'o PAGE_CACHE_SIZE - (inode->i_size & (PAGE_CACHE_SIZE - 1)) - 352626a4c0c6STheodore Ts'o offset; 352726a4c0c6STheodore Ts'o } 352826a4c0c6STheodore Ts'o 3529a87dd18cSLukas Czerner first_block_offset = round_up(offset, sb->s_blocksize); 3530a87dd18cSLukas Czerner last_block_offset = round_down((offset + length), sb->s_blocksize) - 1; 353126a4c0c6STheodore Ts'o 3532a87dd18cSLukas Czerner /* Now release the pages and zero block aligned part of pages*/ 3533a87dd18cSLukas Czerner if (last_block_offset > first_block_offset) 3534a87dd18cSLukas Czerner truncate_pagecache_range(inode, first_block_offset, 3535a87dd18cSLukas Czerner last_block_offset); 353626a4c0c6STheodore Ts'o 353726a4c0c6STheodore Ts'o /* Wait all existing dio workers, newcomers will block on i_mutex */ 353826a4c0c6STheodore Ts'o ext4_inode_block_unlocked_dio(inode); 353926a4c0c6STheodore Ts'o ret = ext4_flush_unwritten_io(inode); 354026a4c0c6STheodore Ts'o if (ret) 354126a4c0c6STheodore Ts'o goto out_dio; 354226a4c0c6STheodore Ts'o inode_dio_wait(inode); 354326a4c0c6STheodore Ts'o 354426a4c0c6STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 354526a4c0c6STheodore Ts'o credits = ext4_writepage_trans_blocks(inode); 354626a4c0c6STheodore Ts'o else 354726a4c0c6STheodore Ts'o credits = ext4_blocks_for_truncate(inode); 354826a4c0c6STheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits); 354926a4c0c6STheodore Ts'o if (IS_ERR(handle)) { 355026a4c0c6STheodore Ts'o ret = PTR_ERR(handle); 355126a4c0c6STheodore Ts'o ext4_std_error(sb, ret); 355226a4c0c6STheodore Ts'o goto out_dio; 355326a4c0c6STheodore Ts'o } 355426a4c0c6STheodore Ts'o 3555a87dd18cSLukas Czerner ret = ext4_zero_partial_blocks(handle, inode, offset, 3556a87dd18cSLukas Czerner length); 355726a4c0c6STheodore Ts'o if (ret) 355826a4c0c6STheodore Ts'o goto out_stop; 355926a4c0c6STheodore Ts'o 356026a4c0c6STheodore Ts'o first_block = (offset + sb->s_blocksize - 1) >> 356126a4c0c6STheodore Ts'o EXT4_BLOCK_SIZE_BITS(sb); 356226a4c0c6STheodore Ts'o stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb); 356326a4c0c6STheodore Ts'o 356426a4c0c6STheodore Ts'o /* If there are no blocks to remove, return now */ 356526a4c0c6STheodore Ts'o if (first_block >= stop_block) 356626a4c0c6STheodore Ts'o goto out_stop; 356726a4c0c6STheodore Ts'o 356826a4c0c6STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 356926a4c0c6STheodore Ts'o ext4_discard_preallocations(inode); 357026a4c0c6STheodore Ts'o 357126a4c0c6STheodore Ts'o ret = ext4_es_remove_extent(inode, first_block, 357226a4c0c6STheodore Ts'o stop_block - first_block); 357326a4c0c6STheodore Ts'o if (ret) { 357426a4c0c6STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 357526a4c0c6STheodore Ts'o goto out_stop; 357626a4c0c6STheodore Ts'o } 357726a4c0c6STheodore Ts'o 357826a4c0c6STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 357926a4c0c6STheodore Ts'o ret = ext4_ext_remove_space(inode, first_block, 358026a4c0c6STheodore Ts'o stop_block - 1); 358126a4c0c6STheodore Ts'o else 358226a4c0c6STheodore Ts'o ret = ext4_free_hole_blocks(handle, inode, first_block, 358326a4c0c6STheodore Ts'o stop_block); 358426a4c0c6STheodore Ts'o 358526a4c0c6STheodore Ts'o ext4_discard_preallocations(inode); 3586819c4920STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 358726a4c0c6STheodore Ts'o if (IS_SYNC(inode)) 358826a4c0c6STheodore Ts'o ext4_handle_sync(handle); 358926a4c0c6STheodore Ts'o inode->i_mtime = inode->i_ctime = ext4_current_time(inode); 359026a4c0c6STheodore Ts'o ext4_mark_inode_dirty(handle, inode); 359126a4c0c6STheodore Ts'o out_stop: 359226a4c0c6STheodore Ts'o ext4_journal_stop(handle); 359326a4c0c6STheodore Ts'o out_dio: 359426a4c0c6STheodore Ts'o ext4_inode_resume_unlocked_dio(inode); 359526a4c0c6STheodore Ts'o out_mutex: 359626a4c0c6STheodore Ts'o mutex_unlock(&inode->i_mutex); 359726a4c0c6STheodore Ts'o return ret; 3598a4bb6b64SAllison Henderson } 3599a4bb6b64SAllison Henderson 3600a4bb6b64SAllison Henderson /* 3601617ba13bSMingming Cao * ext4_truncate() 3602ac27a0ecSDave Kleikamp * 3603617ba13bSMingming Cao * We block out ext4_get_block() block instantiations across the entire 3604617ba13bSMingming Cao * transaction, and VFS/VM ensures that ext4_truncate() cannot run 3605ac27a0ecSDave Kleikamp * simultaneously on behalf of the same inode. 3606ac27a0ecSDave Kleikamp * 360742b2aa86SJustin P. Mattock * As we work through the truncate and commit bits of it to the journal there 3608ac27a0ecSDave Kleikamp * is one core, guiding principle: the file's tree must always be consistent on 3609ac27a0ecSDave Kleikamp * disk. We must be able to restart the truncate after a crash. 3610ac27a0ecSDave Kleikamp * 3611ac27a0ecSDave Kleikamp * The file's tree may be transiently inconsistent in memory (although it 3612ac27a0ecSDave Kleikamp * probably isn't), but whenever we close off and commit a journal transaction, 3613ac27a0ecSDave Kleikamp * the contents of (the filesystem + the journal) must be consistent and 3614ac27a0ecSDave Kleikamp * restartable. It's pretty simple, really: bottom up, right to left (although 3615ac27a0ecSDave Kleikamp * left-to-right works OK too). 3616ac27a0ecSDave Kleikamp * 3617ac27a0ecSDave Kleikamp * Note that at recovery time, journal replay occurs *before* the restart of 3618ac27a0ecSDave Kleikamp * truncate against the orphan inode list. 3619ac27a0ecSDave Kleikamp * 3620ac27a0ecSDave Kleikamp * The committed inode has the new, desired i_size (which is the same as 3621617ba13bSMingming Cao * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see 3622ac27a0ecSDave Kleikamp * that this inode's truncate did not complete and it will again call 3623617ba13bSMingming Cao * ext4_truncate() to have another go. So there will be instantiated blocks 3624617ba13bSMingming Cao * to the right of the truncation point in a crashed ext4 filesystem. But 3625ac27a0ecSDave Kleikamp * that's fine - as long as they are linked from the inode, the post-crash 3626617ba13bSMingming Cao * ext4_truncate() run will find them and release them. 3627ac27a0ecSDave Kleikamp */ 3628617ba13bSMingming Cao void ext4_truncate(struct inode *inode) 3629ac27a0ecSDave Kleikamp { 3630819c4920STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 3631819c4920STheodore Ts'o unsigned int credits; 3632819c4920STheodore Ts'o handle_t *handle; 3633819c4920STheodore Ts'o struct address_space *mapping = inode->i_mapping; 3634819c4920STheodore Ts'o 363519b5ef61STheodore Ts'o /* 363619b5ef61STheodore Ts'o * There is a possibility that we're either freeing the inode 363719b5ef61STheodore Ts'o * or it completely new indode. In those cases we might not 363819b5ef61STheodore Ts'o * have i_mutex locked because it's not necessary. 363919b5ef61STheodore Ts'o */ 364019b5ef61STheodore Ts'o if (!(inode->i_state & (I_NEW|I_FREEING))) 364119b5ef61STheodore Ts'o WARN_ON(!mutex_is_locked(&inode->i_mutex)); 36420562e0baSJiaying Zhang trace_ext4_truncate_enter(inode); 36430562e0baSJiaying Zhang 364491ef4cafSDuane Griffin if (!ext4_can_truncate(inode)) 3645ac27a0ecSDave Kleikamp return; 3646ac27a0ecSDave Kleikamp 364712e9b892SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS); 3648c8d46e41SJiaying Zhang 36495534fb5bSTheodore Ts'o if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC)) 365019f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE); 36517d8f9f7dSTheodore Ts'o 3652aef1c851STao Ma if (ext4_has_inline_data(inode)) { 3653aef1c851STao Ma int has_inline = 1; 3654aef1c851STao Ma 3655aef1c851STao Ma ext4_inline_data_truncate(inode, &has_inline); 3656aef1c851STao Ma if (has_inline) 3657aef1c851STao Ma return; 3658aef1c851STao Ma } 3659aef1c851STao Ma 3660819c4920STheodore Ts'o /* 3661819c4920STheodore Ts'o * finish any pending end_io work so we won't run the risk of 3662819c4920STheodore Ts'o * converting any truncated blocks to initialized later 3663819c4920STheodore Ts'o */ 3664819c4920STheodore Ts'o ext4_flush_unwritten_io(inode); 3665819c4920STheodore Ts'o 3666ff9893dcSAmir Goldstein if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 3667819c4920STheodore Ts'o credits = ext4_writepage_trans_blocks(inode); 3668ff9893dcSAmir Goldstein else 3669819c4920STheodore Ts'o credits = ext4_blocks_for_truncate(inode); 3670819c4920STheodore Ts'o 3671819c4920STheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits); 3672819c4920STheodore Ts'o if (IS_ERR(handle)) { 3673819c4920STheodore Ts'o ext4_std_error(inode->i_sb, PTR_ERR(handle)); 3674819c4920STheodore Ts'o return; 3675819c4920STheodore Ts'o } 3676819c4920STheodore Ts'o 3677eb3544c6SLukas Czerner if (inode->i_size & (inode->i_sb->s_blocksize - 1)) 3678eb3544c6SLukas Czerner ext4_block_truncate_page(handle, mapping, inode->i_size); 3679819c4920STheodore Ts'o 3680819c4920STheodore Ts'o /* 3681819c4920STheodore Ts'o * We add the inode to the orphan list, so that if this 3682819c4920STheodore Ts'o * truncate spans multiple transactions, and we crash, we will 3683819c4920STheodore Ts'o * resume the truncate when the filesystem recovers. It also 3684819c4920STheodore Ts'o * marks the inode dirty, to catch the new size. 3685819c4920STheodore Ts'o * 3686819c4920STheodore Ts'o * Implication: the file must always be in a sane, consistent 3687819c4920STheodore Ts'o * truncatable state while each transaction commits. 3688819c4920STheodore Ts'o */ 3689819c4920STheodore Ts'o if (ext4_orphan_add(handle, inode)) 3690819c4920STheodore Ts'o goto out_stop; 3691819c4920STheodore Ts'o 3692819c4920STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 3693819c4920STheodore Ts'o 3694819c4920STheodore Ts'o ext4_discard_preallocations(inode); 3695819c4920STheodore Ts'o 3696819c4920STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 3697819c4920STheodore Ts'o ext4_ext_truncate(handle, inode); 3698819c4920STheodore Ts'o else 3699819c4920STheodore Ts'o ext4_ind_truncate(handle, inode); 3700819c4920STheodore Ts'o 3701819c4920STheodore Ts'o up_write(&ei->i_data_sem); 3702819c4920STheodore Ts'o 3703819c4920STheodore Ts'o if (IS_SYNC(inode)) 3704819c4920STheodore Ts'o ext4_handle_sync(handle); 3705819c4920STheodore Ts'o 3706819c4920STheodore Ts'o out_stop: 3707819c4920STheodore Ts'o /* 3708819c4920STheodore Ts'o * If this was a simple ftruncate() and the file will remain alive, 3709819c4920STheodore Ts'o * then we need to clear up the orphan record which we created above. 3710819c4920STheodore Ts'o * However, if this was a real unlink then we were called by 3711819c4920STheodore Ts'o * ext4_delete_inode(), and we allow that function to clean up the 3712819c4920STheodore Ts'o * orphan info for us. 3713819c4920STheodore Ts'o */ 3714819c4920STheodore Ts'o if (inode->i_nlink) 3715819c4920STheodore Ts'o ext4_orphan_del(handle, inode); 3716819c4920STheodore Ts'o 3717819c4920STheodore Ts'o inode->i_mtime = inode->i_ctime = ext4_current_time(inode); 3718819c4920STheodore Ts'o ext4_mark_inode_dirty(handle, inode); 3719819c4920STheodore Ts'o ext4_journal_stop(handle); 3720a86c6181SAlex Tomas 37210562e0baSJiaying Zhang trace_ext4_truncate_exit(inode); 3722ac27a0ecSDave Kleikamp } 3723ac27a0ecSDave Kleikamp 3724ac27a0ecSDave Kleikamp /* 3725617ba13bSMingming Cao * ext4_get_inode_loc returns with an extra refcount against the inode's 3726ac27a0ecSDave Kleikamp * underlying buffer_head on success. If 'in_mem' is true, we have all 3727ac27a0ecSDave Kleikamp * data in memory that is needed to recreate the on-disk version of this 3728ac27a0ecSDave Kleikamp * inode. 3729ac27a0ecSDave Kleikamp */ 3730617ba13bSMingming Cao static int __ext4_get_inode_loc(struct inode *inode, 3731617ba13bSMingming Cao struct ext4_iloc *iloc, int in_mem) 3732ac27a0ecSDave Kleikamp { 3733240799cdSTheodore Ts'o struct ext4_group_desc *gdp; 3734ac27a0ecSDave Kleikamp struct buffer_head *bh; 3735240799cdSTheodore Ts'o struct super_block *sb = inode->i_sb; 3736240799cdSTheodore Ts'o ext4_fsblk_t block; 3737240799cdSTheodore Ts'o int inodes_per_block, inode_offset; 3738ac27a0ecSDave Kleikamp 37393a06d778SAneesh Kumar K.V iloc->bh = NULL; 3740240799cdSTheodore Ts'o if (!ext4_valid_inum(sb, inode->i_ino)) 3741ac27a0ecSDave Kleikamp return -EIO; 3742ac27a0ecSDave Kleikamp 3743240799cdSTheodore Ts'o iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb); 3744240799cdSTheodore Ts'o gdp = ext4_get_group_desc(sb, iloc->block_group, NULL); 3745240799cdSTheodore Ts'o if (!gdp) 3746240799cdSTheodore Ts'o return -EIO; 3747240799cdSTheodore Ts'o 3748240799cdSTheodore Ts'o /* 3749240799cdSTheodore Ts'o * Figure out the offset within the block group inode table 3750240799cdSTheodore Ts'o */ 375100d09882STao Ma inodes_per_block = EXT4_SB(sb)->s_inodes_per_block; 3752240799cdSTheodore Ts'o inode_offset = ((inode->i_ino - 1) % 3753240799cdSTheodore Ts'o EXT4_INODES_PER_GROUP(sb)); 3754240799cdSTheodore Ts'o block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block); 3755240799cdSTheodore Ts'o iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb); 3756240799cdSTheodore Ts'o 3757240799cdSTheodore Ts'o bh = sb_getblk(sb, block); 3758aebf0243SWang Shilong if (unlikely(!bh)) 3759860d21e2STheodore Ts'o return -ENOMEM; 3760ac27a0ecSDave Kleikamp if (!buffer_uptodate(bh)) { 3761ac27a0ecSDave Kleikamp lock_buffer(bh); 37629c83a923SHidehiro Kawai 37639c83a923SHidehiro Kawai /* 37649c83a923SHidehiro Kawai * If the buffer has the write error flag, we have failed 37659c83a923SHidehiro Kawai * to write out another inode in the same block. In this 37669c83a923SHidehiro Kawai * case, we don't have to read the block because we may 37679c83a923SHidehiro Kawai * read the old inode data successfully. 37689c83a923SHidehiro Kawai */ 37699c83a923SHidehiro Kawai if (buffer_write_io_error(bh) && !buffer_uptodate(bh)) 37709c83a923SHidehiro Kawai set_buffer_uptodate(bh); 37719c83a923SHidehiro Kawai 3772ac27a0ecSDave Kleikamp if (buffer_uptodate(bh)) { 3773ac27a0ecSDave Kleikamp /* someone brought it uptodate while we waited */ 3774ac27a0ecSDave Kleikamp unlock_buffer(bh); 3775ac27a0ecSDave Kleikamp goto has_buffer; 3776ac27a0ecSDave Kleikamp } 3777ac27a0ecSDave Kleikamp 3778ac27a0ecSDave Kleikamp /* 3779ac27a0ecSDave Kleikamp * If we have all information of the inode in memory and this 3780ac27a0ecSDave Kleikamp * is the only valid inode in the block, we need not read the 3781ac27a0ecSDave Kleikamp * block. 3782ac27a0ecSDave Kleikamp */ 3783ac27a0ecSDave Kleikamp if (in_mem) { 3784ac27a0ecSDave Kleikamp struct buffer_head *bitmap_bh; 3785240799cdSTheodore Ts'o int i, start; 3786ac27a0ecSDave Kleikamp 3787240799cdSTheodore Ts'o start = inode_offset & ~(inodes_per_block - 1); 3788ac27a0ecSDave Kleikamp 3789ac27a0ecSDave Kleikamp /* Is the inode bitmap in cache? */ 3790240799cdSTheodore Ts'o bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp)); 3791aebf0243SWang Shilong if (unlikely(!bitmap_bh)) 3792ac27a0ecSDave Kleikamp goto make_io; 3793ac27a0ecSDave Kleikamp 3794ac27a0ecSDave Kleikamp /* 3795ac27a0ecSDave Kleikamp * If the inode bitmap isn't in cache then the 3796ac27a0ecSDave Kleikamp * optimisation may end up performing two reads instead 3797ac27a0ecSDave Kleikamp * of one, so skip it. 3798ac27a0ecSDave Kleikamp */ 3799ac27a0ecSDave Kleikamp if (!buffer_uptodate(bitmap_bh)) { 3800ac27a0ecSDave Kleikamp brelse(bitmap_bh); 3801ac27a0ecSDave Kleikamp goto make_io; 3802ac27a0ecSDave Kleikamp } 3803240799cdSTheodore Ts'o for (i = start; i < start + inodes_per_block; i++) { 3804ac27a0ecSDave Kleikamp if (i == inode_offset) 3805ac27a0ecSDave Kleikamp continue; 3806617ba13bSMingming Cao if (ext4_test_bit(i, bitmap_bh->b_data)) 3807ac27a0ecSDave Kleikamp break; 3808ac27a0ecSDave Kleikamp } 3809ac27a0ecSDave Kleikamp brelse(bitmap_bh); 3810240799cdSTheodore Ts'o if (i == start + inodes_per_block) { 3811ac27a0ecSDave Kleikamp /* all other inodes are free, so skip I/O */ 3812ac27a0ecSDave Kleikamp memset(bh->b_data, 0, bh->b_size); 3813ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 3814ac27a0ecSDave Kleikamp unlock_buffer(bh); 3815ac27a0ecSDave Kleikamp goto has_buffer; 3816ac27a0ecSDave Kleikamp } 3817ac27a0ecSDave Kleikamp } 3818ac27a0ecSDave Kleikamp 3819ac27a0ecSDave Kleikamp make_io: 3820ac27a0ecSDave Kleikamp /* 3821240799cdSTheodore Ts'o * If we need to do any I/O, try to pre-readahead extra 3822240799cdSTheodore Ts'o * blocks from the inode table. 3823240799cdSTheodore Ts'o */ 3824240799cdSTheodore Ts'o if (EXT4_SB(sb)->s_inode_readahead_blks) { 3825240799cdSTheodore Ts'o ext4_fsblk_t b, end, table; 3826240799cdSTheodore Ts'o unsigned num; 38270d606e2cSTheodore Ts'o __u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks; 3828240799cdSTheodore Ts'o 3829240799cdSTheodore Ts'o table = ext4_inode_table(sb, gdp); 3830b713a5ecSTheodore Ts'o /* s_inode_readahead_blks is always a power of 2 */ 38310d606e2cSTheodore Ts'o b = block & ~((ext4_fsblk_t) ra_blks - 1); 3832240799cdSTheodore Ts'o if (table > b) 3833240799cdSTheodore Ts'o b = table; 38340d606e2cSTheodore Ts'o end = b + ra_blks; 3835240799cdSTheodore Ts'o num = EXT4_INODES_PER_GROUP(sb); 3836feb0ab32SDarrick J. Wong if (ext4_has_group_desc_csum(sb)) 3837560671a0SAneesh Kumar K.V num -= ext4_itable_unused_count(sb, gdp); 3838240799cdSTheodore Ts'o table += num / inodes_per_block; 3839240799cdSTheodore Ts'o if (end > table) 3840240799cdSTheodore Ts'o end = table; 3841240799cdSTheodore Ts'o while (b <= end) 3842240799cdSTheodore Ts'o sb_breadahead(sb, b++); 3843240799cdSTheodore Ts'o } 3844240799cdSTheodore Ts'o 3845240799cdSTheodore Ts'o /* 3846ac27a0ecSDave Kleikamp * There are other valid inodes in the buffer, this inode 3847ac27a0ecSDave Kleikamp * has in-inode xattrs, or we don't have this inode in memory. 3848ac27a0ecSDave Kleikamp * Read the block from disk. 3849ac27a0ecSDave Kleikamp */ 38500562e0baSJiaying Zhang trace_ext4_load_inode(inode); 3851ac27a0ecSDave Kleikamp get_bh(bh); 3852ac27a0ecSDave Kleikamp bh->b_end_io = end_buffer_read_sync; 385365299a3bSChristoph Hellwig submit_bh(READ | REQ_META | REQ_PRIO, bh); 3854ac27a0ecSDave Kleikamp wait_on_buffer(bh); 3855ac27a0ecSDave Kleikamp if (!buffer_uptodate(bh)) { 3856c398eda0STheodore Ts'o EXT4_ERROR_INODE_BLOCK(inode, block, 3857c398eda0STheodore Ts'o "unable to read itable block"); 3858ac27a0ecSDave Kleikamp brelse(bh); 3859ac27a0ecSDave Kleikamp return -EIO; 3860ac27a0ecSDave Kleikamp } 3861ac27a0ecSDave Kleikamp } 3862ac27a0ecSDave Kleikamp has_buffer: 3863ac27a0ecSDave Kleikamp iloc->bh = bh; 3864ac27a0ecSDave Kleikamp return 0; 3865ac27a0ecSDave Kleikamp } 3866ac27a0ecSDave Kleikamp 3867617ba13bSMingming Cao int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc) 3868ac27a0ecSDave Kleikamp { 3869ac27a0ecSDave Kleikamp /* We have all inode data except xattrs in memory here. */ 3870617ba13bSMingming Cao return __ext4_get_inode_loc(inode, iloc, 387119f5fb7aSTheodore Ts'o !ext4_test_inode_state(inode, EXT4_STATE_XATTR)); 3872ac27a0ecSDave Kleikamp } 3873ac27a0ecSDave Kleikamp 3874617ba13bSMingming Cao void ext4_set_inode_flags(struct inode *inode) 3875ac27a0ecSDave Kleikamp { 3876617ba13bSMingming Cao unsigned int flags = EXT4_I(inode)->i_flags; 3877ac27a0ecSDave Kleikamp 3878ac27a0ecSDave Kleikamp inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC); 3879617ba13bSMingming Cao if (flags & EXT4_SYNC_FL) 3880ac27a0ecSDave Kleikamp inode->i_flags |= S_SYNC; 3881617ba13bSMingming Cao if (flags & EXT4_APPEND_FL) 3882ac27a0ecSDave Kleikamp inode->i_flags |= S_APPEND; 3883617ba13bSMingming Cao if (flags & EXT4_IMMUTABLE_FL) 3884ac27a0ecSDave Kleikamp inode->i_flags |= S_IMMUTABLE; 3885617ba13bSMingming Cao if (flags & EXT4_NOATIME_FL) 3886ac27a0ecSDave Kleikamp inode->i_flags |= S_NOATIME; 3887617ba13bSMingming Cao if (flags & EXT4_DIRSYNC_FL) 3888ac27a0ecSDave Kleikamp inode->i_flags |= S_DIRSYNC; 3889ac27a0ecSDave Kleikamp } 3890ac27a0ecSDave Kleikamp 3891ff9ddf7eSJan Kara /* Propagate flags from i_flags to EXT4_I(inode)->i_flags */ 3892ff9ddf7eSJan Kara void ext4_get_inode_flags(struct ext4_inode_info *ei) 3893ff9ddf7eSJan Kara { 389484a8dce2SDmitry Monakhov unsigned int vfs_fl; 389584a8dce2SDmitry Monakhov unsigned long old_fl, new_fl; 3896ff9ddf7eSJan Kara 389784a8dce2SDmitry Monakhov do { 389884a8dce2SDmitry Monakhov vfs_fl = ei->vfs_inode.i_flags; 389984a8dce2SDmitry Monakhov old_fl = ei->i_flags; 390084a8dce2SDmitry Monakhov new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL| 390184a8dce2SDmitry Monakhov EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL| 390284a8dce2SDmitry Monakhov EXT4_DIRSYNC_FL); 390384a8dce2SDmitry Monakhov if (vfs_fl & S_SYNC) 390484a8dce2SDmitry Monakhov new_fl |= EXT4_SYNC_FL; 390584a8dce2SDmitry Monakhov if (vfs_fl & S_APPEND) 390684a8dce2SDmitry Monakhov new_fl |= EXT4_APPEND_FL; 390784a8dce2SDmitry Monakhov if (vfs_fl & S_IMMUTABLE) 390884a8dce2SDmitry Monakhov new_fl |= EXT4_IMMUTABLE_FL; 390984a8dce2SDmitry Monakhov if (vfs_fl & S_NOATIME) 391084a8dce2SDmitry Monakhov new_fl |= EXT4_NOATIME_FL; 391184a8dce2SDmitry Monakhov if (vfs_fl & S_DIRSYNC) 391284a8dce2SDmitry Monakhov new_fl |= EXT4_DIRSYNC_FL; 391384a8dce2SDmitry Monakhov } while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl); 3914ff9ddf7eSJan Kara } 3915de9a55b8STheodore Ts'o 39160fc1b451SAneesh Kumar K.V static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode, 39170fc1b451SAneesh Kumar K.V struct ext4_inode_info *ei) 39180fc1b451SAneesh Kumar K.V { 39190fc1b451SAneesh Kumar K.V blkcnt_t i_blocks ; 39208180a562SAneesh Kumar K.V struct inode *inode = &(ei->vfs_inode); 39218180a562SAneesh Kumar K.V struct super_block *sb = inode->i_sb; 39220fc1b451SAneesh Kumar K.V 39230fc1b451SAneesh Kumar K.V if (EXT4_HAS_RO_COMPAT_FEATURE(sb, 39240fc1b451SAneesh Kumar K.V EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) { 39250fc1b451SAneesh Kumar K.V /* we are using combined 48 bit field */ 39260fc1b451SAneesh Kumar K.V i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 | 39270fc1b451SAneesh Kumar K.V le32_to_cpu(raw_inode->i_blocks_lo); 392807a03824STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) { 39298180a562SAneesh Kumar K.V /* i_blocks represent file system block size */ 39308180a562SAneesh Kumar K.V return i_blocks << (inode->i_blkbits - 9); 39318180a562SAneesh Kumar K.V } else { 39320fc1b451SAneesh Kumar K.V return i_blocks; 39338180a562SAneesh Kumar K.V } 39340fc1b451SAneesh Kumar K.V } else { 39350fc1b451SAneesh Kumar K.V return le32_to_cpu(raw_inode->i_blocks_lo); 39360fc1b451SAneesh Kumar K.V } 39370fc1b451SAneesh Kumar K.V } 3938ff9ddf7eSJan Kara 3939152a7b0aSTao Ma static inline void ext4_iget_extra_inode(struct inode *inode, 3940152a7b0aSTao Ma struct ext4_inode *raw_inode, 3941152a7b0aSTao Ma struct ext4_inode_info *ei) 3942152a7b0aSTao Ma { 3943152a7b0aSTao Ma __le32 *magic = (void *)raw_inode + 3944152a7b0aSTao Ma EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize; 394567cf5b09STao Ma if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) { 3946152a7b0aSTao Ma ext4_set_inode_state(inode, EXT4_STATE_XATTR); 394767cf5b09STao Ma ext4_find_inline_data_nolock(inode); 3948f19d5870STao Ma } else 3949f19d5870STao Ma EXT4_I(inode)->i_inline_off = 0; 3950152a7b0aSTao Ma } 3951152a7b0aSTao Ma 39521d1fe1eeSDavid Howells struct inode *ext4_iget(struct super_block *sb, unsigned long ino) 3953ac27a0ecSDave Kleikamp { 3954617ba13bSMingming Cao struct ext4_iloc iloc; 3955617ba13bSMingming Cao struct ext4_inode *raw_inode; 39561d1fe1eeSDavid Howells struct ext4_inode_info *ei; 39571d1fe1eeSDavid Howells struct inode *inode; 3958b436b9beSJan Kara journal_t *journal = EXT4_SB(sb)->s_journal; 39591d1fe1eeSDavid Howells long ret; 3960ac27a0ecSDave Kleikamp int block; 396108cefc7aSEric W. Biederman uid_t i_uid; 396208cefc7aSEric W. Biederman gid_t i_gid; 3963ac27a0ecSDave Kleikamp 39641d1fe1eeSDavid Howells inode = iget_locked(sb, ino); 39651d1fe1eeSDavid Howells if (!inode) 39661d1fe1eeSDavid Howells return ERR_PTR(-ENOMEM); 39671d1fe1eeSDavid Howells if (!(inode->i_state & I_NEW)) 39681d1fe1eeSDavid Howells return inode; 39691d1fe1eeSDavid Howells 39701d1fe1eeSDavid Howells ei = EXT4_I(inode); 39717dc57615SPeter Huewe iloc.bh = NULL; 3972ac27a0ecSDave Kleikamp 39731d1fe1eeSDavid Howells ret = __ext4_get_inode_loc(inode, &iloc, 0); 39741d1fe1eeSDavid Howells if (ret < 0) 3975ac27a0ecSDave Kleikamp goto bad_inode; 3976617ba13bSMingming Cao raw_inode = ext4_raw_inode(&iloc); 3977814525f4SDarrick J. Wong 3978814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 3979814525f4SDarrick J. Wong ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize); 3980814525f4SDarrick J. Wong if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize > 3981814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)) { 3982814525f4SDarrick J. Wong EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)", 3983814525f4SDarrick J. Wong EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize, 3984814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)); 3985814525f4SDarrick J. Wong ret = -EIO; 3986814525f4SDarrick J. Wong goto bad_inode; 3987814525f4SDarrick J. Wong } 3988814525f4SDarrick J. Wong } else 3989814525f4SDarrick J. Wong ei->i_extra_isize = 0; 3990814525f4SDarrick J. Wong 3991814525f4SDarrick J. Wong /* Precompute checksum seed for inode metadata */ 3992814525f4SDarrick J. Wong if (EXT4_HAS_RO_COMPAT_FEATURE(sb, 3993814525f4SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)) { 3994814525f4SDarrick J. Wong struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 3995814525f4SDarrick J. Wong __u32 csum; 3996814525f4SDarrick J. Wong __le32 inum = cpu_to_le32(inode->i_ino); 3997814525f4SDarrick J. Wong __le32 gen = raw_inode->i_generation; 3998814525f4SDarrick J. Wong csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum, 3999814525f4SDarrick J. Wong sizeof(inum)); 4000814525f4SDarrick J. Wong ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen, 4001814525f4SDarrick J. Wong sizeof(gen)); 4002814525f4SDarrick J. Wong } 4003814525f4SDarrick J. Wong 4004814525f4SDarrick J. Wong if (!ext4_inode_csum_verify(inode, raw_inode, ei)) { 4005814525f4SDarrick J. Wong EXT4_ERROR_INODE(inode, "checksum invalid"); 4006814525f4SDarrick J. Wong ret = -EIO; 4007814525f4SDarrick J. Wong goto bad_inode; 4008814525f4SDarrick J. Wong } 4009814525f4SDarrick J. Wong 4010ac27a0ecSDave Kleikamp inode->i_mode = le16_to_cpu(raw_inode->i_mode); 401108cefc7aSEric W. Biederman i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low); 401208cefc7aSEric W. Biederman i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low); 4013ac27a0ecSDave Kleikamp if (!(test_opt(inode->i_sb, NO_UID32))) { 401408cefc7aSEric W. Biederman i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16; 401508cefc7aSEric W. Biederman i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16; 4016ac27a0ecSDave Kleikamp } 401708cefc7aSEric W. Biederman i_uid_write(inode, i_uid); 401808cefc7aSEric W. Biederman i_gid_write(inode, i_gid); 4019bfe86848SMiklos Szeredi set_nlink(inode, le16_to_cpu(raw_inode->i_links_count)); 4020ac27a0ecSDave Kleikamp 4021353eb83cSTheodore Ts'o ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */ 402267cf5b09STao Ma ei->i_inline_off = 0; 4023ac27a0ecSDave Kleikamp ei->i_dir_start_lookup = 0; 4024ac27a0ecSDave Kleikamp ei->i_dtime = le32_to_cpu(raw_inode->i_dtime); 4025ac27a0ecSDave Kleikamp /* We now have enough fields to check if the inode was active or not. 4026ac27a0ecSDave Kleikamp * This is needed because nfsd might try to access dead inodes 4027ac27a0ecSDave Kleikamp * the test is that same one that e2fsck uses 4028ac27a0ecSDave Kleikamp * NeilBrown 1999oct15 4029ac27a0ecSDave Kleikamp */ 4030ac27a0ecSDave Kleikamp if (inode->i_nlink == 0) { 4031393d1d1dSDr. Tilmann Bubeck if ((inode->i_mode == 0 || 4032393d1d1dSDr. Tilmann Bubeck !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) && 4033393d1d1dSDr. Tilmann Bubeck ino != EXT4_BOOT_LOADER_INO) { 4034ac27a0ecSDave Kleikamp /* this inode is deleted */ 40351d1fe1eeSDavid Howells ret = -ESTALE; 4036ac27a0ecSDave Kleikamp goto bad_inode; 4037ac27a0ecSDave Kleikamp } 4038ac27a0ecSDave Kleikamp /* The only unlinked inodes we let through here have 4039ac27a0ecSDave Kleikamp * valid i_mode and are being read by the orphan 4040ac27a0ecSDave Kleikamp * recovery code: that's fine, we're about to complete 4041393d1d1dSDr. Tilmann Bubeck * the process of deleting those. 4042393d1d1dSDr. Tilmann Bubeck * OR it is the EXT4_BOOT_LOADER_INO which is 4043393d1d1dSDr. Tilmann Bubeck * not initialized on a new filesystem. */ 4044ac27a0ecSDave Kleikamp } 4045ac27a0ecSDave Kleikamp ei->i_flags = le32_to_cpu(raw_inode->i_flags); 40460fc1b451SAneesh Kumar K.V inode->i_blocks = ext4_inode_blocks(raw_inode, ei); 40477973c0c1SAneesh Kumar K.V ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo); 4048a9e81742STheodore Ts'o if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) 4049a1ddeb7eSBadari Pulavarty ei->i_file_acl |= 4050a1ddeb7eSBadari Pulavarty ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32; 4051a48380f7SAneesh Kumar K.V inode->i_size = ext4_isize(raw_inode); 4052ac27a0ecSDave Kleikamp ei->i_disksize = inode->i_size; 4053a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA 4054a9e7f447SDmitry Monakhov ei->i_reserved_quota = 0; 4055a9e7f447SDmitry Monakhov #endif 4056ac27a0ecSDave Kleikamp inode->i_generation = le32_to_cpu(raw_inode->i_generation); 4057ac27a0ecSDave Kleikamp ei->i_block_group = iloc.block_group; 4058a4912123STheodore Ts'o ei->i_last_alloc_group = ~0; 4059ac27a0ecSDave Kleikamp /* 4060ac27a0ecSDave Kleikamp * NOTE! The in-memory inode i_data array is in little-endian order 4061ac27a0ecSDave Kleikamp * even on big-endian machines: we do NOT byteswap the block numbers! 4062ac27a0ecSDave Kleikamp */ 4063617ba13bSMingming Cao for (block = 0; block < EXT4_N_BLOCKS; block++) 4064ac27a0ecSDave Kleikamp ei->i_data[block] = raw_inode->i_block[block]; 4065ac27a0ecSDave Kleikamp INIT_LIST_HEAD(&ei->i_orphan); 4066ac27a0ecSDave Kleikamp 4067b436b9beSJan Kara /* 4068b436b9beSJan Kara * Set transaction id's of transactions that have to be committed 4069b436b9beSJan Kara * to finish f[data]sync. We set them to currently running transaction 4070b436b9beSJan Kara * as we cannot be sure that the inode or some of its metadata isn't 4071b436b9beSJan Kara * part of the transaction - the inode could have been reclaimed and 4072b436b9beSJan Kara * now it is reread from disk. 4073b436b9beSJan Kara */ 4074b436b9beSJan Kara if (journal) { 4075b436b9beSJan Kara transaction_t *transaction; 4076b436b9beSJan Kara tid_t tid; 4077b436b9beSJan Kara 4078a931da6aSTheodore Ts'o read_lock(&journal->j_state_lock); 4079b436b9beSJan Kara if (journal->j_running_transaction) 4080b436b9beSJan Kara transaction = journal->j_running_transaction; 4081b436b9beSJan Kara else 4082b436b9beSJan Kara transaction = journal->j_committing_transaction; 4083b436b9beSJan Kara if (transaction) 4084b436b9beSJan Kara tid = transaction->t_tid; 4085b436b9beSJan Kara else 4086b436b9beSJan Kara tid = journal->j_commit_sequence; 4087a931da6aSTheodore Ts'o read_unlock(&journal->j_state_lock); 4088b436b9beSJan Kara ei->i_sync_tid = tid; 4089b436b9beSJan Kara ei->i_datasync_tid = tid; 4090b436b9beSJan Kara } 4091b436b9beSJan Kara 40920040d987SEric Sandeen if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 4093ac27a0ecSDave Kleikamp if (ei->i_extra_isize == 0) { 4094ac27a0ecSDave Kleikamp /* The extra space is currently unused. Use it. */ 4095617ba13bSMingming Cao ei->i_extra_isize = sizeof(struct ext4_inode) - 4096617ba13bSMingming Cao EXT4_GOOD_OLD_INODE_SIZE; 4097ac27a0ecSDave Kleikamp } else { 4098152a7b0aSTao Ma ext4_iget_extra_inode(inode, raw_inode, ei); 4099ac27a0ecSDave Kleikamp } 4100814525f4SDarrick J. Wong } 4101ac27a0ecSDave Kleikamp 4102ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode); 4103ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode); 4104ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode); 4105ef7f3835SKalpak Shah EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode); 4106ef7f3835SKalpak Shah 410725ec56b5SJean Noel Cordenner inode->i_version = le32_to_cpu(raw_inode->i_disk_version); 410825ec56b5SJean Noel Cordenner if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 410925ec56b5SJean Noel Cordenner if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi)) 411025ec56b5SJean Noel Cordenner inode->i_version |= 411125ec56b5SJean Noel Cordenner (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32; 411225ec56b5SJean Noel Cordenner } 411325ec56b5SJean Noel Cordenner 4114c4b5a614STheodore Ts'o ret = 0; 4115485c26ecSTheodore Ts'o if (ei->i_file_acl && 41161032988cSTheodore Ts'o !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) { 411724676da4STheodore Ts'o EXT4_ERROR_INODE(inode, "bad extended attribute block %llu", 411824676da4STheodore Ts'o ei->i_file_acl); 4119485c26ecSTheodore Ts'o ret = -EIO; 4120485c26ecSTheodore Ts'o goto bad_inode; 4121f19d5870STao Ma } else if (!ext4_has_inline_data(inode)) { 4122f19d5870STao Ma if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 4123f19d5870STao Ma if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || 4124c4b5a614STheodore Ts'o (S_ISLNK(inode->i_mode) && 4125f19d5870STao Ma !ext4_inode_is_fast_symlink(inode)))) 41267a262f7cSAneesh Kumar K.V /* Validate extent which is part of inode */ 41277a262f7cSAneesh Kumar K.V ret = ext4_ext_check_inode(inode); 4128fe2c8191SThiemo Nagel } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || 4129fe2c8191SThiemo Nagel (S_ISLNK(inode->i_mode) && 4130fe2c8191SThiemo Nagel !ext4_inode_is_fast_symlink(inode))) { 4131fe2c8191SThiemo Nagel /* Validate block references which are part of inode */ 41321f7d1e77STheodore Ts'o ret = ext4_ind_check_inode(inode); 4133fe2c8191SThiemo Nagel } 4134f19d5870STao Ma } 4135567f3e9aSTheodore Ts'o if (ret) 41367a262f7cSAneesh Kumar K.V goto bad_inode; 41377a262f7cSAneesh Kumar K.V 4138ac27a0ecSDave Kleikamp if (S_ISREG(inode->i_mode)) { 4139617ba13bSMingming Cao inode->i_op = &ext4_file_inode_operations; 4140617ba13bSMingming Cao inode->i_fop = &ext4_file_operations; 4141617ba13bSMingming Cao ext4_set_aops(inode); 4142ac27a0ecSDave Kleikamp } else if (S_ISDIR(inode->i_mode)) { 4143617ba13bSMingming Cao inode->i_op = &ext4_dir_inode_operations; 4144617ba13bSMingming Cao inode->i_fop = &ext4_dir_operations; 4145ac27a0ecSDave Kleikamp } else if (S_ISLNK(inode->i_mode)) { 4146e83c1397SDuane Griffin if (ext4_inode_is_fast_symlink(inode)) { 4147617ba13bSMingming Cao inode->i_op = &ext4_fast_symlink_inode_operations; 4148e83c1397SDuane Griffin nd_terminate_link(ei->i_data, inode->i_size, 4149e83c1397SDuane Griffin sizeof(ei->i_data) - 1); 4150e83c1397SDuane Griffin } else { 4151617ba13bSMingming Cao inode->i_op = &ext4_symlink_inode_operations; 4152617ba13bSMingming Cao ext4_set_aops(inode); 4153ac27a0ecSDave Kleikamp } 4154563bdd61STheodore Ts'o } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) || 4155563bdd61STheodore Ts'o S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) { 4156617ba13bSMingming Cao inode->i_op = &ext4_special_inode_operations; 4157ac27a0ecSDave Kleikamp if (raw_inode->i_block[0]) 4158ac27a0ecSDave Kleikamp init_special_inode(inode, inode->i_mode, 4159ac27a0ecSDave Kleikamp old_decode_dev(le32_to_cpu(raw_inode->i_block[0]))); 4160ac27a0ecSDave Kleikamp else 4161ac27a0ecSDave Kleikamp init_special_inode(inode, inode->i_mode, 4162ac27a0ecSDave Kleikamp new_decode_dev(le32_to_cpu(raw_inode->i_block[1]))); 4163393d1d1dSDr. Tilmann Bubeck } else if (ino == EXT4_BOOT_LOADER_INO) { 4164393d1d1dSDr. Tilmann Bubeck make_bad_inode(inode); 4165563bdd61STheodore Ts'o } else { 4166563bdd61STheodore Ts'o ret = -EIO; 416724676da4STheodore Ts'o EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode); 4168563bdd61STheodore Ts'o goto bad_inode; 4169ac27a0ecSDave Kleikamp } 4170ac27a0ecSDave Kleikamp brelse(iloc.bh); 4171617ba13bSMingming Cao ext4_set_inode_flags(inode); 41721d1fe1eeSDavid Howells unlock_new_inode(inode); 41731d1fe1eeSDavid Howells return inode; 4174ac27a0ecSDave Kleikamp 4175ac27a0ecSDave Kleikamp bad_inode: 4176567f3e9aSTheodore Ts'o brelse(iloc.bh); 41771d1fe1eeSDavid Howells iget_failed(inode); 41781d1fe1eeSDavid Howells return ERR_PTR(ret); 4179ac27a0ecSDave Kleikamp } 4180ac27a0ecSDave Kleikamp 41810fc1b451SAneesh Kumar K.V static int ext4_inode_blocks_set(handle_t *handle, 41820fc1b451SAneesh Kumar K.V struct ext4_inode *raw_inode, 41830fc1b451SAneesh Kumar K.V struct ext4_inode_info *ei) 41840fc1b451SAneesh Kumar K.V { 41850fc1b451SAneesh Kumar K.V struct inode *inode = &(ei->vfs_inode); 41860fc1b451SAneesh Kumar K.V u64 i_blocks = inode->i_blocks; 41870fc1b451SAneesh Kumar K.V struct super_block *sb = inode->i_sb; 41880fc1b451SAneesh Kumar K.V 41890fc1b451SAneesh Kumar K.V if (i_blocks <= ~0U) { 41900fc1b451SAneesh Kumar K.V /* 41914907cb7bSAnatol Pomozov * i_blocks can be represented in a 32 bit variable 41920fc1b451SAneesh Kumar K.V * as multiple of 512 bytes 41930fc1b451SAneesh Kumar K.V */ 41948180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 41950fc1b451SAneesh Kumar K.V raw_inode->i_blocks_high = 0; 419684a8dce2SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE); 4197f287a1a5STheodore Ts'o return 0; 4198f287a1a5STheodore Ts'o } 4199f287a1a5STheodore Ts'o if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) 4200f287a1a5STheodore Ts'o return -EFBIG; 4201f287a1a5STheodore Ts'o 4202f287a1a5STheodore Ts'o if (i_blocks <= 0xffffffffffffULL) { 42030fc1b451SAneesh Kumar K.V /* 42040fc1b451SAneesh Kumar K.V * i_blocks can be represented in a 48 bit variable 42050fc1b451SAneesh Kumar K.V * as multiple of 512 bytes 42060fc1b451SAneesh Kumar K.V */ 42078180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 42080fc1b451SAneesh Kumar K.V raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32); 420984a8dce2SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE); 42100fc1b451SAneesh Kumar K.V } else { 421184a8dce2SDmitry Monakhov ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE); 42128180a562SAneesh Kumar K.V /* i_block is stored in file system block size */ 42138180a562SAneesh Kumar K.V i_blocks = i_blocks >> (inode->i_blkbits - 9); 42148180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 42158180a562SAneesh Kumar K.V raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32); 42160fc1b451SAneesh Kumar K.V } 4217f287a1a5STheodore Ts'o return 0; 42180fc1b451SAneesh Kumar K.V } 42190fc1b451SAneesh Kumar K.V 4220ac27a0ecSDave Kleikamp /* 4221ac27a0ecSDave Kleikamp * Post the struct inode info into an on-disk inode location in the 4222ac27a0ecSDave Kleikamp * buffer-cache. This gobbles the caller's reference to the 4223ac27a0ecSDave Kleikamp * buffer_head in the inode location struct. 4224ac27a0ecSDave Kleikamp * 4225ac27a0ecSDave Kleikamp * The caller must have write access to iloc->bh. 4226ac27a0ecSDave Kleikamp */ 4227617ba13bSMingming Cao static int ext4_do_update_inode(handle_t *handle, 4228ac27a0ecSDave Kleikamp struct inode *inode, 4229830156c7SFrank Mayhar struct ext4_iloc *iloc) 4230ac27a0ecSDave Kleikamp { 4231617ba13bSMingming Cao struct ext4_inode *raw_inode = ext4_raw_inode(iloc); 4232617ba13bSMingming Cao struct ext4_inode_info *ei = EXT4_I(inode); 4233ac27a0ecSDave Kleikamp struct buffer_head *bh = iloc->bh; 4234ac27a0ecSDave Kleikamp int err = 0, rc, block; 4235b71fc079SJan Kara int need_datasync = 0; 423608cefc7aSEric W. Biederman uid_t i_uid; 423708cefc7aSEric W. Biederman gid_t i_gid; 4238ac27a0ecSDave Kleikamp 4239ac27a0ecSDave Kleikamp /* For fields not not tracking in the in-memory inode, 4240ac27a0ecSDave Kleikamp * initialise them to zero for new inodes. */ 424119f5fb7aSTheodore Ts'o if (ext4_test_inode_state(inode, EXT4_STATE_NEW)) 4242617ba13bSMingming Cao memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size); 4243ac27a0ecSDave Kleikamp 4244ff9ddf7eSJan Kara ext4_get_inode_flags(ei); 4245ac27a0ecSDave Kleikamp raw_inode->i_mode = cpu_to_le16(inode->i_mode); 424608cefc7aSEric W. Biederman i_uid = i_uid_read(inode); 424708cefc7aSEric W. Biederman i_gid = i_gid_read(inode); 4248ac27a0ecSDave Kleikamp if (!(test_opt(inode->i_sb, NO_UID32))) { 424908cefc7aSEric W. Biederman raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid)); 425008cefc7aSEric W. Biederman raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid)); 4251ac27a0ecSDave Kleikamp /* 4252ac27a0ecSDave Kleikamp * Fix up interoperability with old kernels. Otherwise, old inodes get 4253ac27a0ecSDave Kleikamp * re-used with the upper 16 bits of the uid/gid intact 4254ac27a0ecSDave Kleikamp */ 4255ac27a0ecSDave Kleikamp if (!ei->i_dtime) { 4256ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 425708cefc7aSEric W. Biederman cpu_to_le16(high_16_bits(i_uid)); 4258ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 425908cefc7aSEric W. Biederman cpu_to_le16(high_16_bits(i_gid)); 4260ac27a0ecSDave Kleikamp } else { 4261ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 0; 4262ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 0; 4263ac27a0ecSDave Kleikamp } 4264ac27a0ecSDave Kleikamp } else { 426508cefc7aSEric W. Biederman raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid)); 426608cefc7aSEric W. Biederman raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid)); 4267ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 0; 4268ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 0; 4269ac27a0ecSDave Kleikamp } 4270ac27a0ecSDave Kleikamp raw_inode->i_links_count = cpu_to_le16(inode->i_nlink); 4271ef7f3835SKalpak Shah 4272ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode); 4273ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode); 4274ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode); 4275ef7f3835SKalpak Shah EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode); 4276ef7f3835SKalpak Shah 42770fc1b451SAneesh Kumar K.V if (ext4_inode_blocks_set(handle, raw_inode, ei)) 42780fc1b451SAneesh Kumar K.V goto out_brelse; 4279ac27a0ecSDave Kleikamp raw_inode->i_dtime = cpu_to_le32(ei->i_dtime); 4280353eb83cSTheodore Ts'o raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF); 42819b8f1f01SMingming Cao if (EXT4_SB(inode->i_sb)->s_es->s_creator_os != 42829b8f1f01SMingming Cao cpu_to_le32(EXT4_OS_HURD)) 4283a1ddeb7eSBadari Pulavarty raw_inode->i_file_acl_high = 4284a1ddeb7eSBadari Pulavarty cpu_to_le16(ei->i_file_acl >> 32); 42857973c0c1SAneesh Kumar K.V raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl); 4286b71fc079SJan Kara if (ei->i_disksize != ext4_isize(raw_inode)) { 4287a48380f7SAneesh Kumar K.V ext4_isize_set(raw_inode, ei->i_disksize); 4288b71fc079SJan Kara need_datasync = 1; 4289b71fc079SJan Kara } 4290ac27a0ecSDave Kleikamp if (ei->i_disksize > 0x7fffffffULL) { 4291ac27a0ecSDave Kleikamp struct super_block *sb = inode->i_sb; 4292617ba13bSMingming Cao if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, 4293617ba13bSMingming Cao EXT4_FEATURE_RO_COMPAT_LARGE_FILE) || 4294617ba13bSMingming Cao EXT4_SB(sb)->s_es->s_rev_level == 4295617ba13bSMingming Cao cpu_to_le32(EXT4_GOOD_OLD_REV)) { 4296ac27a0ecSDave Kleikamp /* If this is the first large file 4297ac27a0ecSDave Kleikamp * created, add a flag to the superblock. 4298ac27a0ecSDave Kleikamp */ 4299617ba13bSMingming Cao err = ext4_journal_get_write_access(handle, 4300617ba13bSMingming Cao EXT4_SB(sb)->s_sbh); 4301ac27a0ecSDave Kleikamp if (err) 4302ac27a0ecSDave Kleikamp goto out_brelse; 4303617ba13bSMingming Cao ext4_update_dynamic_rev(sb); 4304617ba13bSMingming Cao EXT4_SET_RO_COMPAT_FEATURE(sb, 4305617ba13bSMingming Cao EXT4_FEATURE_RO_COMPAT_LARGE_FILE); 43060390131bSFrank Mayhar ext4_handle_sync(handle); 4307b50924c2SArtem Bityutskiy err = ext4_handle_dirty_super(handle, sb); 4308ac27a0ecSDave Kleikamp } 4309ac27a0ecSDave Kleikamp } 4310ac27a0ecSDave Kleikamp raw_inode->i_generation = cpu_to_le32(inode->i_generation); 4311ac27a0ecSDave Kleikamp if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) { 4312ac27a0ecSDave Kleikamp if (old_valid_dev(inode->i_rdev)) { 4313ac27a0ecSDave Kleikamp raw_inode->i_block[0] = 4314ac27a0ecSDave Kleikamp cpu_to_le32(old_encode_dev(inode->i_rdev)); 4315ac27a0ecSDave Kleikamp raw_inode->i_block[1] = 0; 4316ac27a0ecSDave Kleikamp } else { 4317ac27a0ecSDave Kleikamp raw_inode->i_block[0] = 0; 4318ac27a0ecSDave Kleikamp raw_inode->i_block[1] = 4319ac27a0ecSDave Kleikamp cpu_to_le32(new_encode_dev(inode->i_rdev)); 4320ac27a0ecSDave Kleikamp raw_inode->i_block[2] = 0; 4321ac27a0ecSDave Kleikamp } 4322f19d5870STao Ma } else if (!ext4_has_inline_data(inode)) { 4323de9a55b8STheodore Ts'o for (block = 0; block < EXT4_N_BLOCKS; block++) 4324ac27a0ecSDave Kleikamp raw_inode->i_block[block] = ei->i_data[block]; 4325f19d5870STao Ma } 4326ac27a0ecSDave Kleikamp 432725ec56b5SJean Noel Cordenner raw_inode->i_disk_version = cpu_to_le32(inode->i_version); 432825ec56b5SJean Noel Cordenner if (ei->i_extra_isize) { 432925ec56b5SJean Noel Cordenner if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi)) 433025ec56b5SJean Noel Cordenner raw_inode->i_version_hi = 433125ec56b5SJean Noel Cordenner cpu_to_le32(inode->i_version >> 32); 4332ac27a0ecSDave Kleikamp raw_inode->i_extra_isize = cpu_to_le16(ei->i_extra_isize); 433325ec56b5SJean Noel Cordenner } 433425ec56b5SJean Noel Cordenner 4335814525f4SDarrick J. Wong ext4_inode_csum_set(inode, raw_inode, ei); 4336814525f4SDarrick J. Wong 43370390131bSFrank Mayhar BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); 433873b50c1cSCurt Wohlgemuth rc = ext4_handle_dirty_metadata(handle, NULL, bh); 4339ac27a0ecSDave Kleikamp if (!err) 4340ac27a0ecSDave Kleikamp err = rc; 434119f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_NEW); 4342ac27a0ecSDave Kleikamp 4343b71fc079SJan Kara ext4_update_inode_fsync_trans(handle, inode, need_datasync); 4344ac27a0ecSDave Kleikamp out_brelse: 4345ac27a0ecSDave Kleikamp brelse(bh); 4346617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 4347ac27a0ecSDave Kleikamp return err; 4348ac27a0ecSDave Kleikamp } 4349ac27a0ecSDave Kleikamp 4350ac27a0ecSDave Kleikamp /* 4351617ba13bSMingming Cao * ext4_write_inode() 4352ac27a0ecSDave Kleikamp * 4353ac27a0ecSDave Kleikamp * We are called from a few places: 4354ac27a0ecSDave Kleikamp * 4355ac27a0ecSDave Kleikamp * - Within generic_file_write() for O_SYNC files. 4356ac27a0ecSDave Kleikamp * Here, there will be no transaction running. We wait for any running 43574907cb7bSAnatol Pomozov * transaction to commit. 4358ac27a0ecSDave Kleikamp * 4359ac27a0ecSDave Kleikamp * - Within sys_sync(), kupdate and such. 4360ac27a0ecSDave Kleikamp * We wait on commit, if tol to. 4361ac27a0ecSDave Kleikamp * 4362ac27a0ecSDave Kleikamp * - Within prune_icache() (PF_MEMALLOC == true) 4363ac27a0ecSDave Kleikamp * Here we simply return. We can't afford to block kswapd on the 4364ac27a0ecSDave Kleikamp * journal commit. 4365ac27a0ecSDave Kleikamp * 4366ac27a0ecSDave Kleikamp * In all cases it is actually safe for us to return without doing anything, 4367ac27a0ecSDave Kleikamp * because the inode has been copied into a raw inode buffer in 4368617ba13bSMingming Cao * ext4_mark_inode_dirty(). This is a correctness thing for O_SYNC and for 4369ac27a0ecSDave Kleikamp * knfsd. 4370ac27a0ecSDave Kleikamp * 4371ac27a0ecSDave Kleikamp * Note that we are absolutely dependent upon all inode dirtiers doing the 4372ac27a0ecSDave Kleikamp * right thing: they *must* call mark_inode_dirty() after dirtying info in 4373ac27a0ecSDave Kleikamp * which we are interested. 4374ac27a0ecSDave Kleikamp * 4375ac27a0ecSDave Kleikamp * It would be a bug for them to not do this. The code: 4376ac27a0ecSDave Kleikamp * 4377ac27a0ecSDave Kleikamp * mark_inode_dirty(inode) 4378ac27a0ecSDave Kleikamp * stuff(); 4379ac27a0ecSDave Kleikamp * inode->i_size = expr; 4380ac27a0ecSDave Kleikamp * 4381ac27a0ecSDave Kleikamp * is in error because a kswapd-driven write_inode() could occur while 4382ac27a0ecSDave Kleikamp * `stuff()' is running, and the new i_size will be lost. Plus the inode 4383ac27a0ecSDave Kleikamp * will no longer be on the superblock's dirty inode list. 4384ac27a0ecSDave Kleikamp */ 4385a9185b41SChristoph Hellwig int ext4_write_inode(struct inode *inode, struct writeback_control *wbc) 4386ac27a0ecSDave Kleikamp { 438791ac6f43SFrank Mayhar int err; 438891ac6f43SFrank Mayhar 4389ac27a0ecSDave Kleikamp if (current->flags & PF_MEMALLOC) 4390ac27a0ecSDave Kleikamp return 0; 4391ac27a0ecSDave Kleikamp 439291ac6f43SFrank Mayhar if (EXT4_SB(inode->i_sb)->s_journal) { 4393617ba13bSMingming Cao if (ext4_journal_current_handle()) { 4394b38bd33aSMingming Cao jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n"); 4395ac27a0ecSDave Kleikamp dump_stack(); 4396ac27a0ecSDave Kleikamp return -EIO; 4397ac27a0ecSDave Kleikamp } 4398ac27a0ecSDave Kleikamp 4399a9185b41SChristoph Hellwig if (wbc->sync_mode != WB_SYNC_ALL) 4400ac27a0ecSDave Kleikamp return 0; 4401ac27a0ecSDave Kleikamp 440291ac6f43SFrank Mayhar err = ext4_force_commit(inode->i_sb); 440391ac6f43SFrank Mayhar } else { 440491ac6f43SFrank Mayhar struct ext4_iloc iloc; 440591ac6f43SFrank Mayhar 44068b472d73SCurt Wohlgemuth err = __ext4_get_inode_loc(inode, &iloc, 0); 440791ac6f43SFrank Mayhar if (err) 440891ac6f43SFrank Mayhar return err; 4409a9185b41SChristoph Hellwig if (wbc->sync_mode == WB_SYNC_ALL) 4410830156c7SFrank Mayhar sync_dirty_buffer(iloc.bh); 4411830156c7SFrank Mayhar if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) { 4412c398eda0STheodore Ts'o EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr, 4413c398eda0STheodore Ts'o "IO error syncing inode"); 4414830156c7SFrank Mayhar err = -EIO; 4415830156c7SFrank Mayhar } 4416fd2dd9fbSCurt Wohlgemuth brelse(iloc.bh); 441791ac6f43SFrank Mayhar } 441891ac6f43SFrank Mayhar return err; 4419ac27a0ecSDave Kleikamp } 4420ac27a0ecSDave Kleikamp 4421ac27a0ecSDave Kleikamp /* 442253e87268SJan Kara * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate 442353e87268SJan Kara * buffers that are attached to a page stradding i_size and are undergoing 442453e87268SJan Kara * commit. In that case we have to wait for commit to finish and try again. 442553e87268SJan Kara */ 442653e87268SJan Kara static void ext4_wait_for_tail_page_commit(struct inode *inode) 442753e87268SJan Kara { 442853e87268SJan Kara struct page *page; 442953e87268SJan Kara unsigned offset; 443053e87268SJan Kara journal_t *journal = EXT4_SB(inode->i_sb)->s_journal; 443153e87268SJan Kara tid_t commit_tid = 0; 443253e87268SJan Kara int ret; 443353e87268SJan Kara 443453e87268SJan Kara offset = inode->i_size & (PAGE_CACHE_SIZE - 1); 443553e87268SJan Kara /* 443653e87268SJan Kara * All buffers in the last page remain valid? Then there's nothing to 443753e87268SJan Kara * do. We do the check mainly to optimize the common PAGE_CACHE_SIZE == 443853e87268SJan Kara * blocksize case 443953e87268SJan Kara */ 444053e87268SJan Kara if (offset > PAGE_CACHE_SIZE - (1 << inode->i_blkbits)) 444153e87268SJan Kara return; 444253e87268SJan Kara while (1) { 444353e87268SJan Kara page = find_lock_page(inode->i_mapping, 444453e87268SJan Kara inode->i_size >> PAGE_CACHE_SHIFT); 444553e87268SJan Kara if (!page) 444653e87268SJan Kara return; 4447ca99fdd2SLukas Czerner ret = __ext4_journalled_invalidatepage(page, offset, 4448ca99fdd2SLukas Czerner PAGE_CACHE_SIZE - offset); 444953e87268SJan Kara unlock_page(page); 445053e87268SJan Kara page_cache_release(page); 445153e87268SJan Kara if (ret != -EBUSY) 445253e87268SJan Kara return; 445353e87268SJan Kara commit_tid = 0; 445453e87268SJan Kara read_lock(&journal->j_state_lock); 445553e87268SJan Kara if (journal->j_committing_transaction) 445653e87268SJan Kara commit_tid = journal->j_committing_transaction->t_tid; 445753e87268SJan Kara read_unlock(&journal->j_state_lock); 445853e87268SJan Kara if (commit_tid) 445953e87268SJan Kara jbd2_log_wait_commit(journal, commit_tid); 446053e87268SJan Kara } 446153e87268SJan Kara } 446253e87268SJan Kara 446353e87268SJan Kara /* 4464617ba13bSMingming Cao * ext4_setattr() 4465ac27a0ecSDave Kleikamp * 4466ac27a0ecSDave Kleikamp * Called from notify_change. 4467ac27a0ecSDave Kleikamp * 4468ac27a0ecSDave Kleikamp * We want to trap VFS attempts to truncate the file as soon as 4469ac27a0ecSDave Kleikamp * possible. In particular, we want to make sure that when the VFS 4470ac27a0ecSDave Kleikamp * shrinks i_size, we put the inode on the orphan list and modify 4471ac27a0ecSDave Kleikamp * i_disksize immediately, so that during the subsequent flushing of 4472ac27a0ecSDave Kleikamp * dirty pages and freeing of disk blocks, we can guarantee that any 4473ac27a0ecSDave Kleikamp * commit will leave the blocks being flushed in an unused state on 4474ac27a0ecSDave Kleikamp * disk. (On recovery, the inode will get truncated and the blocks will 4475ac27a0ecSDave Kleikamp * be freed, so we have a strong guarantee that no future commit will 4476ac27a0ecSDave Kleikamp * leave these blocks visible to the user.) 4477ac27a0ecSDave Kleikamp * 4478678aaf48SJan Kara * Another thing we have to assure is that if we are in ordered mode 4479678aaf48SJan Kara * and inode is still attached to the committing transaction, we must 4480678aaf48SJan Kara * we start writeout of all the dirty pages which are being truncated. 4481678aaf48SJan Kara * This way we are sure that all the data written in the previous 4482678aaf48SJan Kara * transaction are already on disk (truncate waits for pages under 4483678aaf48SJan Kara * writeback). 4484678aaf48SJan Kara * 4485678aaf48SJan Kara * Called with inode->i_mutex down. 4486ac27a0ecSDave Kleikamp */ 4487617ba13bSMingming Cao int ext4_setattr(struct dentry *dentry, struct iattr *attr) 4488ac27a0ecSDave Kleikamp { 4489ac27a0ecSDave Kleikamp struct inode *inode = dentry->d_inode; 4490ac27a0ecSDave Kleikamp int error, rc = 0; 44913d287de3SDmitry Monakhov int orphan = 0; 4492ac27a0ecSDave Kleikamp const unsigned int ia_valid = attr->ia_valid; 4493ac27a0ecSDave Kleikamp 4494ac27a0ecSDave Kleikamp error = inode_change_ok(inode, attr); 4495ac27a0ecSDave Kleikamp if (error) 4496ac27a0ecSDave Kleikamp return error; 4497ac27a0ecSDave Kleikamp 449812755627SDmitry Monakhov if (is_quota_modification(inode, attr)) 4499871a2931SChristoph Hellwig dquot_initialize(inode); 450008cefc7aSEric W. Biederman if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) || 450108cefc7aSEric W. Biederman (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) { 4502ac27a0ecSDave Kleikamp handle_t *handle; 4503ac27a0ecSDave Kleikamp 4504ac27a0ecSDave Kleikamp /* (user+group)*(old+new) structure, inode write (sb, 4505ac27a0ecSDave Kleikamp * inode block, ? - but truncate inode update has it) */ 45069924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_QUOTA, 45079924a92aSTheodore Ts'o (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) + 4508194074acSDmitry Monakhov EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3); 4509ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 4510ac27a0ecSDave Kleikamp error = PTR_ERR(handle); 4511ac27a0ecSDave Kleikamp goto err_out; 4512ac27a0ecSDave Kleikamp } 4513b43fa828SChristoph Hellwig error = dquot_transfer(inode, attr); 4514ac27a0ecSDave Kleikamp if (error) { 4515617ba13bSMingming Cao ext4_journal_stop(handle); 4516ac27a0ecSDave Kleikamp return error; 4517ac27a0ecSDave Kleikamp } 4518ac27a0ecSDave Kleikamp /* Update corresponding info in inode so that everything is in 4519ac27a0ecSDave Kleikamp * one transaction */ 4520ac27a0ecSDave Kleikamp if (attr->ia_valid & ATTR_UID) 4521ac27a0ecSDave Kleikamp inode->i_uid = attr->ia_uid; 4522ac27a0ecSDave Kleikamp if (attr->ia_valid & ATTR_GID) 4523ac27a0ecSDave Kleikamp inode->i_gid = attr->ia_gid; 4524617ba13bSMingming Cao error = ext4_mark_inode_dirty(handle, inode); 4525617ba13bSMingming Cao ext4_journal_stop(handle); 4526ac27a0ecSDave Kleikamp } 4527ac27a0ecSDave Kleikamp 4528e2b46574SEric Sandeen if (attr->ia_valid & ATTR_SIZE) { 4529562c72aaSChristoph Hellwig 453012e9b892SDmitry Monakhov if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) { 4531e2b46574SEric Sandeen struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 4532e2b46574SEric Sandeen 45330c095c7fSTheodore Ts'o if (attr->ia_size > sbi->s_bitmap_maxbytes) 45340c095c7fSTheodore Ts'o return -EFBIG; 4535e2b46574SEric Sandeen } 4536e2b46574SEric Sandeen } 4537e2b46574SEric Sandeen 4538ac27a0ecSDave Kleikamp if (S_ISREG(inode->i_mode) && 4539c8d46e41SJiaying Zhang attr->ia_valid & ATTR_SIZE && 4540072bd7eaSTheodore Ts'o (attr->ia_size < inode->i_size)) { 4541ac27a0ecSDave Kleikamp handle_t *handle; 4542ac27a0ecSDave Kleikamp 45439924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 3); 4544ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 4545ac27a0ecSDave Kleikamp error = PTR_ERR(handle); 4546ac27a0ecSDave Kleikamp goto err_out; 4547ac27a0ecSDave Kleikamp } 45483d287de3SDmitry Monakhov if (ext4_handle_valid(handle)) { 4549617ba13bSMingming Cao error = ext4_orphan_add(handle, inode); 45503d287de3SDmitry Monakhov orphan = 1; 45513d287de3SDmitry Monakhov } 4552617ba13bSMingming Cao EXT4_I(inode)->i_disksize = attr->ia_size; 4553617ba13bSMingming Cao rc = ext4_mark_inode_dirty(handle, inode); 4554ac27a0ecSDave Kleikamp if (!error) 4555ac27a0ecSDave Kleikamp error = rc; 4556617ba13bSMingming Cao ext4_journal_stop(handle); 4557678aaf48SJan Kara 4558678aaf48SJan Kara if (ext4_should_order_data(inode)) { 4559678aaf48SJan Kara error = ext4_begin_ordered_truncate(inode, 4560678aaf48SJan Kara attr->ia_size); 4561678aaf48SJan Kara if (error) { 4562678aaf48SJan Kara /* Do as much error cleanup as possible */ 45639924a92aSTheodore Ts'o handle = ext4_journal_start(inode, 45649924a92aSTheodore Ts'o EXT4_HT_INODE, 3); 4565678aaf48SJan Kara if (IS_ERR(handle)) { 4566678aaf48SJan Kara ext4_orphan_del(NULL, inode); 4567678aaf48SJan Kara goto err_out; 4568678aaf48SJan Kara } 4569678aaf48SJan Kara ext4_orphan_del(handle, inode); 45703d287de3SDmitry Monakhov orphan = 0; 4571678aaf48SJan Kara ext4_journal_stop(handle); 4572678aaf48SJan Kara goto err_out; 4573678aaf48SJan Kara } 4574678aaf48SJan Kara } 4575ac27a0ecSDave Kleikamp } 4576ac27a0ecSDave Kleikamp 4577072bd7eaSTheodore Ts'o if (attr->ia_valid & ATTR_SIZE) { 457853e87268SJan Kara if (attr->ia_size != inode->i_size) { 457953e87268SJan Kara loff_t oldsize = inode->i_size; 458053e87268SJan Kara 458153e87268SJan Kara i_size_write(inode, attr->ia_size); 458253e87268SJan Kara /* 458353e87268SJan Kara * Blocks are going to be removed from the inode. Wait 458453e87268SJan Kara * for dio in flight. Temporarily disable 458553e87268SJan Kara * dioread_nolock to prevent livelock. 458653e87268SJan Kara */ 45871b65007eSDmitry Monakhov if (orphan) { 458853e87268SJan Kara if (!ext4_should_journal_data(inode)) { 45891b65007eSDmitry Monakhov ext4_inode_block_unlocked_dio(inode); 45901c9114f9SDmitry Monakhov inode_dio_wait(inode); 45911b65007eSDmitry Monakhov ext4_inode_resume_unlocked_dio(inode); 459253e87268SJan Kara } else 459353e87268SJan Kara ext4_wait_for_tail_page_commit(inode); 45941b65007eSDmitry Monakhov } 459553e87268SJan Kara /* 459653e87268SJan Kara * Truncate pagecache after we've waited for commit 459753e87268SJan Kara * in data=journal mode to make pages freeable. 459853e87268SJan Kara */ 459953e87268SJan Kara truncate_pagecache(inode, oldsize, inode->i_size); 46001c9114f9SDmitry Monakhov } 4601072bd7eaSTheodore Ts'o ext4_truncate(inode); 4602072bd7eaSTheodore Ts'o } 4603ac27a0ecSDave Kleikamp 46041025774cSChristoph Hellwig if (!rc) { 46051025774cSChristoph Hellwig setattr_copy(inode, attr); 46061025774cSChristoph Hellwig mark_inode_dirty(inode); 46071025774cSChristoph Hellwig } 46081025774cSChristoph Hellwig 46091025774cSChristoph Hellwig /* 46101025774cSChristoph Hellwig * If the call to ext4_truncate failed to get a transaction handle at 46111025774cSChristoph Hellwig * all, we need to clean up the in-core orphan list manually. 46121025774cSChristoph Hellwig */ 46133d287de3SDmitry Monakhov if (orphan && inode->i_nlink) 4614617ba13bSMingming Cao ext4_orphan_del(NULL, inode); 4615ac27a0ecSDave Kleikamp 4616ac27a0ecSDave Kleikamp if (!rc && (ia_valid & ATTR_MODE)) 4617617ba13bSMingming Cao rc = ext4_acl_chmod(inode); 4618ac27a0ecSDave Kleikamp 4619ac27a0ecSDave Kleikamp err_out: 4620617ba13bSMingming Cao ext4_std_error(inode->i_sb, error); 4621ac27a0ecSDave Kleikamp if (!error) 4622ac27a0ecSDave Kleikamp error = rc; 4623ac27a0ecSDave Kleikamp return error; 4624ac27a0ecSDave Kleikamp } 4625ac27a0ecSDave Kleikamp 46263e3398a0SMingming Cao int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry, 46273e3398a0SMingming Cao struct kstat *stat) 46283e3398a0SMingming Cao { 46293e3398a0SMingming Cao struct inode *inode; 46308af8eeccSJan Kara unsigned long long delalloc_blocks; 46313e3398a0SMingming Cao 46323e3398a0SMingming Cao inode = dentry->d_inode; 46333e3398a0SMingming Cao generic_fillattr(inode, stat); 46343e3398a0SMingming Cao 46353e3398a0SMingming Cao /* 46363e3398a0SMingming Cao * We can't update i_blocks if the block allocation is delayed 46373e3398a0SMingming Cao * otherwise in the case of system crash before the real block 46383e3398a0SMingming Cao * allocation is done, we will have i_blocks inconsistent with 46393e3398a0SMingming Cao * on-disk file blocks. 46403e3398a0SMingming Cao * We always keep i_blocks updated together with real 46413e3398a0SMingming Cao * allocation. But to not confuse with user, stat 46423e3398a0SMingming Cao * will return the blocks that include the delayed allocation 46433e3398a0SMingming Cao * blocks for this file. 46443e3398a0SMingming Cao */ 464596607551STao Ma delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb), 464696607551STao Ma EXT4_I(inode)->i_reserved_data_blocks); 46473e3398a0SMingming Cao 46488af8eeccSJan Kara stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits-9); 46493e3398a0SMingming Cao return 0; 46503e3398a0SMingming Cao } 4651ac27a0ecSDave Kleikamp 4652*fffb2739SJan Kara static int ext4_index_trans_blocks(struct inode *inode, int lblocks, 4653*fffb2739SJan Kara int pextents) 4654a02908f1SMingming Cao { 465512e9b892SDmitry Monakhov if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) 4656*fffb2739SJan Kara return ext4_ind_trans_blocks(inode, lblocks); 4657*fffb2739SJan Kara return ext4_ext_index_trans_blocks(inode, pextents); 4658a02908f1SMingming Cao } 4659ac51d837STheodore Ts'o 4660a02908f1SMingming Cao /* 4661a02908f1SMingming Cao * Account for index blocks, block groups bitmaps and block group 4662a02908f1SMingming Cao * descriptor blocks if modify datablocks and index blocks 4663a02908f1SMingming Cao * worse case, the indexs blocks spread over different block groups 4664a02908f1SMingming Cao * 4665a02908f1SMingming Cao * If datablocks are discontiguous, they are possible to spread over 46664907cb7bSAnatol Pomozov * different block groups too. If they are contiguous, with flexbg, 4667a02908f1SMingming Cao * they could still across block group boundary. 4668a02908f1SMingming Cao * 4669a02908f1SMingming Cao * Also account for superblock, inode, quota and xattr blocks 4670a02908f1SMingming Cao */ 4671*fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks, 4672*fffb2739SJan Kara int pextents) 4673a02908f1SMingming Cao { 46748df9675fSTheodore Ts'o ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb); 46758df9675fSTheodore Ts'o int gdpblocks; 4676a02908f1SMingming Cao int idxblocks; 4677a02908f1SMingming Cao int ret = 0; 4678a02908f1SMingming Cao 4679a02908f1SMingming Cao /* 4680*fffb2739SJan Kara * How many index blocks need to touch to map @lblocks logical blocks 4681*fffb2739SJan Kara * to @pextents physical extents? 4682a02908f1SMingming Cao */ 4683*fffb2739SJan Kara idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents); 4684a02908f1SMingming Cao 4685a02908f1SMingming Cao ret = idxblocks; 4686a02908f1SMingming Cao 4687a02908f1SMingming Cao /* 4688a02908f1SMingming Cao * Now let's see how many group bitmaps and group descriptors need 4689a02908f1SMingming Cao * to account 4690a02908f1SMingming Cao */ 4691*fffb2739SJan Kara groups = idxblocks + pextents; 4692a02908f1SMingming Cao gdpblocks = groups; 46938df9675fSTheodore Ts'o if (groups > ngroups) 46948df9675fSTheodore Ts'o groups = ngroups; 4695a02908f1SMingming Cao if (groups > EXT4_SB(inode->i_sb)->s_gdb_count) 4696a02908f1SMingming Cao gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count; 4697a02908f1SMingming Cao 4698a02908f1SMingming Cao /* bitmaps and block group descriptor blocks */ 4699a02908f1SMingming Cao ret += groups + gdpblocks; 4700a02908f1SMingming Cao 4701a02908f1SMingming Cao /* Blocks for super block, inode, quota and xattr blocks */ 4702a02908f1SMingming Cao ret += EXT4_META_TRANS_BLOCKS(inode->i_sb); 4703ac27a0ecSDave Kleikamp 4704ac27a0ecSDave Kleikamp return ret; 4705ac27a0ecSDave Kleikamp } 4706ac27a0ecSDave Kleikamp 4707ac27a0ecSDave Kleikamp /* 470825985edcSLucas De Marchi * Calculate the total number of credits to reserve to fit 4709f3bd1f3fSMingming Cao * the modification of a single pages into a single transaction, 4710f3bd1f3fSMingming Cao * which may include multiple chunks of block allocations. 4711a02908f1SMingming Cao * 4712525f4ed8SMingming Cao * This could be called via ext4_write_begin() 4713a02908f1SMingming Cao * 4714525f4ed8SMingming Cao * We need to consider the worse case, when 4715a02908f1SMingming Cao * one new block per extent. 4716a02908f1SMingming Cao */ 4717a02908f1SMingming Cao int ext4_writepage_trans_blocks(struct inode *inode) 4718a02908f1SMingming Cao { 4719a02908f1SMingming Cao int bpp = ext4_journal_blocks_per_page(inode); 4720a02908f1SMingming Cao int ret; 4721a02908f1SMingming Cao 4722*fffb2739SJan Kara ret = ext4_meta_trans_blocks(inode, bpp, bpp); 4723a02908f1SMingming Cao 4724a02908f1SMingming Cao /* Account for data blocks for journalled mode */ 4725a02908f1SMingming Cao if (ext4_should_journal_data(inode)) 4726a02908f1SMingming Cao ret += bpp; 4727a02908f1SMingming Cao return ret; 4728a02908f1SMingming Cao } 4729f3bd1f3fSMingming Cao 4730f3bd1f3fSMingming Cao /* 4731f3bd1f3fSMingming Cao * Calculate the journal credits for a chunk of data modification. 4732f3bd1f3fSMingming Cao * 4733f3bd1f3fSMingming Cao * This is called from DIO, fallocate or whoever calling 473479e83036SEric Sandeen * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks. 4735f3bd1f3fSMingming Cao * 4736f3bd1f3fSMingming Cao * journal buffers for data blocks are not included here, as DIO 4737f3bd1f3fSMingming Cao * and fallocate do no need to journal data buffers. 4738f3bd1f3fSMingming Cao */ 4739f3bd1f3fSMingming Cao int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks) 4740f3bd1f3fSMingming Cao { 4741f3bd1f3fSMingming Cao return ext4_meta_trans_blocks(inode, nrblocks, 1); 4742f3bd1f3fSMingming Cao } 4743f3bd1f3fSMingming Cao 4744a02908f1SMingming Cao /* 4745617ba13bSMingming Cao * The caller must have previously called ext4_reserve_inode_write(). 4746ac27a0ecSDave Kleikamp * Give this, we know that the caller already has write access to iloc->bh. 4747ac27a0ecSDave Kleikamp */ 4748617ba13bSMingming Cao int ext4_mark_iloc_dirty(handle_t *handle, 4749617ba13bSMingming Cao struct inode *inode, struct ext4_iloc *iloc) 4750ac27a0ecSDave Kleikamp { 4751ac27a0ecSDave Kleikamp int err = 0; 4752ac27a0ecSDave Kleikamp 4753c64db50eSTheodore Ts'o if (IS_I_VERSION(inode)) 475425ec56b5SJean Noel Cordenner inode_inc_iversion(inode); 475525ec56b5SJean Noel Cordenner 4756ac27a0ecSDave Kleikamp /* the do_update_inode consumes one bh->b_count */ 4757ac27a0ecSDave Kleikamp get_bh(iloc->bh); 4758ac27a0ecSDave Kleikamp 4759dab291afSMingming Cao /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */ 4760830156c7SFrank Mayhar err = ext4_do_update_inode(handle, inode, iloc); 4761ac27a0ecSDave Kleikamp put_bh(iloc->bh); 4762ac27a0ecSDave Kleikamp return err; 4763ac27a0ecSDave Kleikamp } 4764ac27a0ecSDave Kleikamp 4765ac27a0ecSDave Kleikamp /* 4766ac27a0ecSDave Kleikamp * On success, We end up with an outstanding reference count against 4767ac27a0ecSDave Kleikamp * iloc->bh. This _must_ be cleaned up later. 4768ac27a0ecSDave Kleikamp */ 4769ac27a0ecSDave Kleikamp 4770ac27a0ecSDave Kleikamp int 4771617ba13bSMingming Cao ext4_reserve_inode_write(handle_t *handle, struct inode *inode, 4772617ba13bSMingming Cao struct ext4_iloc *iloc) 4773ac27a0ecSDave Kleikamp { 47740390131bSFrank Mayhar int err; 47750390131bSFrank Mayhar 4776617ba13bSMingming Cao err = ext4_get_inode_loc(inode, iloc); 4777ac27a0ecSDave Kleikamp if (!err) { 4778ac27a0ecSDave Kleikamp BUFFER_TRACE(iloc->bh, "get_write_access"); 4779617ba13bSMingming Cao err = ext4_journal_get_write_access(handle, iloc->bh); 4780ac27a0ecSDave Kleikamp if (err) { 4781ac27a0ecSDave Kleikamp brelse(iloc->bh); 4782ac27a0ecSDave Kleikamp iloc->bh = NULL; 4783ac27a0ecSDave Kleikamp } 4784ac27a0ecSDave Kleikamp } 4785617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 4786ac27a0ecSDave Kleikamp return err; 4787ac27a0ecSDave Kleikamp } 4788ac27a0ecSDave Kleikamp 4789ac27a0ecSDave Kleikamp /* 47906dd4ee7cSKalpak Shah * Expand an inode by new_extra_isize bytes. 47916dd4ee7cSKalpak Shah * Returns 0 on success or negative error number on failure. 47926dd4ee7cSKalpak Shah */ 47931d03ec98SAneesh Kumar K.V static int ext4_expand_extra_isize(struct inode *inode, 47941d03ec98SAneesh Kumar K.V unsigned int new_extra_isize, 47951d03ec98SAneesh Kumar K.V struct ext4_iloc iloc, 47961d03ec98SAneesh Kumar K.V handle_t *handle) 47976dd4ee7cSKalpak Shah { 47986dd4ee7cSKalpak Shah struct ext4_inode *raw_inode; 47996dd4ee7cSKalpak Shah struct ext4_xattr_ibody_header *header; 48006dd4ee7cSKalpak Shah 48016dd4ee7cSKalpak Shah if (EXT4_I(inode)->i_extra_isize >= new_extra_isize) 48026dd4ee7cSKalpak Shah return 0; 48036dd4ee7cSKalpak Shah 48046dd4ee7cSKalpak Shah raw_inode = ext4_raw_inode(&iloc); 48056dd4ee7cSKalpak Shah 48066dd4ee7cSKalpak Shah header = IHDR(inode, raw_inode); 48076dd4ee7cSKalpak Shah 48086dd4ee7cSKalpak Shah /* No extended attributes present */ 480919f5fb7aSTheodore Ts'o if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) || 48106dd4ee7cSKalpak Shah header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) { 48116dd4ee7cSKalpak Shah memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0, 48126dd4ee7cSKalpak Shah new_extra_isize); 48136dd4ee7cSKalpak Shah EXT4_I(inode)->i_extra_isize = new_extra_isize; 48146dd4ee7cSKalpak Shah return 0; 48156dd4ee7cSKalpak Shah } 48166dd4ee7cSKalpak Shah 48176dd4ee7cSKalpak Shah /* try to expand with EAs present */ 48186dd4ee7cSKalpak Shah return ext4_expand_extra_isize_ea(inode, new_extra_isize, 48196dd4ee7cSKalpak Shah raw_inode, handle); 48206dd4ee7cSKalpak Shah } 48216dd4ee7cSKalpak Shah 48226dd4ee7cSKalpak Shah /* 4823ac27a0ecSDave Kleikamp * What we do here is to mark the in-core inode as clean with respect to inode 4824ac27a0ecSDave Kleikamp * dirtiness (it may still be data-dirty). 4825ac27a0ecSDave Kleikamp * This means that the in-core inode may be reaped by prune_icache 4826ac27a0ecSDave Kleikamp * without having to perform any I/O. This is a very good thing, 4827ac27a0ecSDave Kleikamp * because *any* task may call prune_icache - even ones which 4828ac27a0ecSDave Kleikamp * have a transaction open against a different journal. 4829ac27a0ecSDave Kleikamp * 4830ac27a0ecSDave Kleikamp * Is this cheating? Not really. Sure, we haven't written the 4831ac27a0ecSDave Kleikamp * inode out, but prune_icache isn't a user-visible syncing function. 4832ac27a0ecSDave Kleikamp * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync) 4833ac27a0ecSDave Kleikamp * we start and wait on commits. 4834ac27a0ecSDave Kleikamp */ 4835617ba13bSMingming Cao int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode) 4836ac27a0ecSDave Kleikamp { 4837617ba13bSMingming Cao struct ext4_iloc iloc; 48386dd4ee7cSKalpak Shah struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 48396dd4ee7cSKalpak Shah static unsigned int mnt_count; 48406dd4ee7cSKalpak Shah int err, ret; 4841ac27a0ecSDave Kleikamp 4842ac27a0ecSDave Kleikamp might_sleep(); 48437ff9c073STheodore Ts'o trace_ext4_mark_inode_dirty(inode, _RET_IP_); 4844617ba13bSMingming Cao err = ext4_reserve_inode_write(handle, inode, &iloc); 48450390131bSFrank Mayhar if (ext4_handle_valid(handle) && 48460390131bSFrank Mayhar EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize && 484719f5fb7aSTheodore Ts'o !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) { 48486dd4ee7cSKalpak Shah /* 48496dd4ee7cSKalpak Shah * We need extra buffer credits since we may write into EA block 48506dd4ee7cSKalpak Shah * with this same handle. If journal_extend fails, then it will 48516dd4ee7cSKalpak Shah * only result in a minor loss of functionality for that inode. 48526dd4ee7cSKalpak Shah * If this is felt to be critical, then e2fsck should be run to 48536dd4ee7cSKalpak Shah * force a large enough s_min_extra_isize. 48546dd4ee7cSKalpak Shah */ 48556dd4ee7cSKalpak Shah if ((jbd2_journal_extend(handle, 48566dd4ee7cSKalpak Shah EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) { 48576dd4ee7cSKalpak Shah ret = ext4_expand_extra_isize(inode, 48586dd4ee7cSKalpak Shah sbi->s_want_extra_isize, 48596dd4ee7cSKalpak Shah iloc, handle); 48606dd4ee7cSKalpak Shah if (ret) { 486119f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, 486219f5fb7aSTheodore Ts'o EXT4_STATE_NO_EXPAND); 4863c1bddad9SAneesh Kumar K.V if (mnt_count != 4864c1bddad9SAneesh Kumar K.V le16_to_cpu(sbi->s_es->s_mnt_count)) { 486512062dddSEric Sandeen ext4_warning(inode->i_sb, 48666dd4ee7cSKalpak Shah "Unable to expand inode %lu. Delete" 48676dd4ee7cSKalpak Shah " some EAs or run e2fsck.", 48686dd4ee7cSKalpak Shah inode->i_ino); 4869c1bddad9SAneesh Kumar K.V mnt_count = 4870c1bddad9SAneesh Kumar K.V le16_to_cpu(sbi->s_es->s_mnt_count); 48716dd4ee7cSKalpak Shah } 48726dd4ee7cSKalpak Shah } 48736dd4ee7cSKalpak Shah } 48746dd4ee7cSKalpak Shah } 4875ac27a0ecSDave Kleikamp if (!err) 4876617ba13bSMingming Cao err = ext4_mark_iloc_dirty(handle, inode, &iloc); 4877ac27a0ecSDave Kleikamp return err; 4878ac27a0ecSDave Kleikamp } 4879ac27a0ecSDave Kleikamp 4880ac27a0ecSDave Kleikamp /* 4881617ba13bSMingming Cao * ext4_dirty_inode() is called from __mark_inode_dirty() 4882ac27a0ecSDave Kleikamp * 4883ac27a0ecSDave Kleikamp * We're really interested in the case where a file is being extended. 4884ac27a0ecSDave Kleikamp * i_size has been changed by generic_commit_write() and we thus need 4885ac27a0ecSDave Kleikamp * to include the updated inode in the current transaction. 4886ac27a0ecSDave Kleikamp * 48875dd4056dSChristoph Hellwig * Also, dquot_alloc_block() will always dirty the inode when blocks 4888ac27a0ecSDave Kleikamp * are allocated to the file. 4889ac27a0ecSDave Kleikamp * 4890ac27a0ecSDave Kleikamp * If the inode is marked synchronous, we don't honour that here - doing 4891ac27a0ecSDave Kleikamp * so would cause a commit on atime updates, which we don't bother doing. 4892ac27a0ecSDave Kleikamp * We handle synchronous inodes at the highest possible level. 4893ac27a0ecSDave Kleikamp */ 4894aa385729SChristoph Hellwig void ext4_dirty_inode(struct inode *inode, int flags) 4895ac27a0ecSDave Kleikamp { 4896ac27a0ecSDave Kleikamp handle_t *handle; 4897ac27a0ecSDave Kleikamp 48989924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 2); 4899ac27a0ecSDave Kleikamp if (IS_ERR(handle)) 4900ac27a0ecSDave Kleikamp goto out; 4901f3dc272fSCurt Wohlgemuth 4902617ba13bSMingming Cao ext4_mark_inode_dirty(handle, inode); 4903f3dc272fSCurt Wohlgemuth 4904617ba13bSMingming Cao ext4_journal_stop(handle); 4905ac27a0ecSDave Kleikamp out: 4906ac27a0ecSDave Kleikamp return; 4907ac27a0ecSDave Kleikamp } 4908ac27a0ecSDave Kleikamp 4909ac27a0ecSDave Kleikamp #if 0 4910ac27a0ecSDave Kleikamp /* 4911ac27a0ecSDave Kleikamp * Bind an inode's backing buffer_head into this transaction, to prevent 4912ac27a0ecSDave Kleikamp * it from being flushed to disk early. Unlike 4913617ba13bSMingming Cao * ext4_reserve_inode_write, this leaves behind no bh reference and 4914ac27a0ecSDave Kleikamp * returns no iloc structure, so the caller needs to repeat the iloc 4915ac27a0ecSDave Kleikamp * lookup to mark the inode dirty later. 4916ac27a0ecSDave Kleikamp */ 4917617ba13bSMingming Cao static int ext4_pin_inode(handle_t *handle, struct inode *inode) 4918ac27a0ecSDave Kleikamp { 4919617ba13bSMingming Cao struct ext4_iloc iloc; 4920ac27a0ecSDave Kleikamp 4921ac27a0ecSDave Kleikamp int err = 0; 4922ac27a0ecSDave Kleikamp if (handle) { 4923617ba13bSMingming Cao err = ext4_get_inode_loc(inode, &iloc); 4924ac27a0ecSDave Kleikamp if (!err) { 4925ac27a0ecSDave Kleikamp BUFFER_TRACE(iloc.bh, "get_write_access"); 4926dab291afSMingming Cao err = jbd2_journal_get_write_access(handle, iloc.bh); 4927ac27a0ecSDave Kleikamp if (!err) 49280390131bSFrank Mayhar err = ext4_handle_dirty_metadata(handle, 492973b50c1cSCurt Wohlgemuth NULL, 4930ac27a0ecSDave Kleikamp iloc.bh); 4931ac27a0ecSDave Kleikamp brelse(iloc.bh); 4932ac27a0ecSDave Kleikamp } 4933ac27a0ecSDave Kleikamp } 4934617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 4935ac27a0ecSDave Kleikamp return err; 4936ac27a0ecSDave Kleikamp } 4937ac27a0ecSDave Kleikamp #endif 4938ac27a0ecSDave Kleikamp 4939617ba13bSMingming Cao int ext4_change_inode_journal_flag(struct inode *inode, int val) 4940ac27a0ecSDave Kleikamp { 4941ac27a0ecSDave Kleikamp journal_t *journal; 4942ac27a0ecSDave Kleikamp handle_t *handle; 4943ac27a0ecSDave Kleikamp int err; 4944ac27a0ecSDave Kleikamp 4945ac27a0ecSDave Kleikamp /* 4946ac27a0ecSDave Kleikamp * We have to be very careful here: changing a data block's 4947ac27a0ecSDave Kleikamp * journaling status dynamically is dangerous. If we write a 4948ac27a0ecSDave Kleikamp * data block to the journal, change the status and then delete 4949ac27a0ecSDave Kleikamp * that block, we risk forgetting to revoke the old log record 4950ac27a0ecSDave Kleikamp * from the journal and so a subsequent replay can corrupt data. 4951ac27a0ecSDave Kleikamp * So, first we make sure that the journal is empty and that 4952ac27a0ecSDave Kleikamp * nobody is changing anything. 4953ac27a0ecSDave Kleikamp */ 4954ac27a0ecSDave Kleikamp 4955617ba13bSMingming Cao journal = EXT4_JOURNAL(inode); 49560390131bSFrank Mayhar if (!journal) 49570390131bSFrank Mayhar return 0; 4958d699594dSDave Hansen if (is_journal_aborted(journal)) 4959ac27a0ecSDave Kleikamp return -EROFS; 49602aff57b0SYongqiang Yang /* We have to allocate physical blocks for delalloc blocks 49612aff57b0SYongqiang Yang * before flushing journal. otherwise delalloc blocks can not 49622aff57b0SYongqiang Yang * be allocated any more. even more truncate on delalloc blocks 49632aff57b0SYongqiang Yang * could trigger BUG by flushing delalloc blocks in journal. 49642aff57b0SYongqiang Yang * There is no delalloc block in non-journal data mode. 49652aff57b0SYongqiang Yang */ 49662aff57b0SYongqiang Yang if (val && test_opt(inode->i_sb, DELALLOC)) { 49672aff57b0SYongqiang Yang err = ext4_alloc_da_blocks(inode); 49682aff57b0SYongqiang Yang if (err < 0) 49692aff57b0SYongqiang Yang return err; 49702aff57b0SYongqiang Yang } 4971ac27a0ecSDave Kleikamp 497217335dccSDmitry Monakhov /* Wait for all existing dio workers */ 497317335dccSDmitry Monakhov ext4_inode_block_unlocked_dio(inode); 497417335dccSDmitry Monakhov inode_dio_wait(inode); 497517335dccSDmitry Monakhov 4976dab291afSMingming Cao jbd2_journal_lock_updates(journal); 4977ac27a0ecSDave Kleikamp 4978ac27a0ecSDave Kleikamp /* 4979ac27a0ecSDave Kleikamp * OK, there are no updates running now, and all cached data is 4980ac27a0ecSDave Kleikamp * synced to disk. We are now in a completely consistent state 4981ac27a0ecSDave Kleikamp * which doesn't have anything in the journal, and we know that 4982ac27a0ecSDave Kleikamp * no filesystem updates are running, so it is safe to modify 4983ac27a0ecSDave Kleikamp * the inode's in-core data-journaling state flag now. 4984ac27a0ecSDave Kleikamp */ 4985ac27a0ecSDave Kleikamp 4986ac27a0ecSDave Kleikamp if (val) 498712e9b892SDmitry Monakhov ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA); 49885872ddaaSYongqiang Yang else { 49895872ddaaSYongqiang Yang jbd2_journal_flush(journal); 499012e9b892SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA); 49915872ddaaSYongqiang Yang } 4992617ba13bSMingming Cao ext4_set_aops(inode); 4993ac27a0ecSDave Kleikamp 4994dab291afSMingming Cao jbd2_journal_unlock_updates(journal); 499517335dccSDmitry Monakhov ext4_inode_resume_unlocked_dio(inode); 4996ac27a0ecSDave Kleikamp 4997ac27a0ecSDave Kleikamp /* Finally we can mark the inode as dirty. */ 4998ac27a0ecSDave Kleikamp 49999924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 1); 5000ac27a0ecSDave Kleikamp if (IS_ERR(handle)) 5001ac27a0ecSDave Kleikamp return PTR_ERR(handle); 5002ac27a0ecSDave Kleikamp 5003617ba13bSMingming Cao err = ext4_mark_inode_dirty(handle, inode); 50040390131bSFrank Mayhar ext4_handle_sync(handle); 5005617ba13bSMingming Cao ext4_journal_stop(handle); 5006617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 5007ac27a0ecSDave Kleikamp 5008ac27a0ecSDave Kleikamp return err; 5009ac27a0ecSDave Kleikamp } 50102e9ee850SAneesh Kumar K.V 50112e9ee850SAneesh Kumar K.V static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh) 50122e9ee850SAneesh Kumar K.V { 50132e9ee850SAneesh Kumar K.V return !buffer_mapped(bh); 50142e9ee850SAneesh Kumar K.V } 50152e9ee850SAneesh Kumar K.V 5016c2ec175cSNick Piggin int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf) 50172e9ee850SAneesh Kumar K.V { 5018c2ec175cSNick Piggin struct page *page = vmf->page; 50192e9ee850SAneesh Kumar K.V loff_t size; 50202e9ee850SAneesh Kumar K.V unsigned long len; 50219ea7df53SJan Kara int ret; 50222e9ee850SAneesh Kumar K.V struct file *file = vma->vm_file; 5023496ad9aaSAl Viro struct inode *inode = file_inode(file); 50242e9ee850SAneesh Kumar K.V struct address_space *mapping = inode->i_mapping; 50259ea7df53SJan Kara handle_t *handle; 50269ea7df53SJan Kara get_block_t *get_block; 50279ea7df53SJan Kara int retries = 0; 50282e9ee850SAneesh Kumar K.V 50298e8ad8a5SJan Kara sb_start_pagefault(inode->i_sb); 5030041bbb6dSTheodore Ts'o file_update_time(vma->vm_file); 50319ea7df53SJan Kara /* Delalloc case is easy... */ 50329ea7df53SJan Kara if (test_opt(inode->i_sb, DELALLOC) && 50339ea7df53SJan Kara !ext4_should_journal_data(inode) && 50349ea7df53SJan Kara !ext4_nonda_switch(inode->i_sb)) { 50359ea7df53SJan Kara do { 50369ea7df53SJan Kara ret = __block_page_mkwrite(vma, vmf, 50379ea7df53SJan Kara ext4_da_get_block_prep); 50389ea7df53SJan Kara } while (ret == -ENOSPC && 50399ea7df53SJan Kara ext4_should_retry_alloc(inode->i_sb, &retries)); 50409ea7df53SJan Kara goto out_ret; 50412e9ee850SAneesh Kumar K.V } 50420e499890SDarrick J. Wong 50430e499890SDarrick J. Wong lock_page(page); 50449ea7df53SJan Kara size = i_size_read(inode); 50459ea7df53SJan Kara /* Page got truncated from under us? */ 50469ea7df53SJan Kara if (page->mapping != mapping || page_offset(page) > size) { 50479ea7df53SJan Kara unlock_page(page); 50489ea7df53SJan Kara ret = VM_FAULT_NOPAGE; 50499ea7df53SJan Kara goto out; 50500e499890SDarrick J. Wong } 50512e9ee850SAneesh Kumar K.V 50522e9ee850SAneesh Kumar K.V if (page->index == size >> PAGE_CACHE_SHIFT) 50532e9ee850SAneesh Kumar K.V len = size & ~PAGE_CACHE_MASK; 50542e9ee850SAneesh Kumar K.V else 50552e9ee850SAneesh Kumar K.V len = PAGE_CACHE_SIZE; 5056a827eaffSAneesh Kumar K.V /* 50579ea7df53SJan Kara * Return if we have all the buffers mapped. This avoids the need to do 50589ea7df53SJan Kara * journal_start/journal_stop which can block and take a long time 5059a827eaffSAneesh Kumar K.V */ 50602e9ee850SAneesh Kumar K.V if (page_has_buffers(page)) { 5061f19d5870STao Ma if (!ext4_walk_page_buffers(NULL, page_buffers(page), 5062f19d5870STao Ma 0, len, NULL, 5063a827eaffSAneesh Kumar K.V ext4_bh_unmapped)) { 50649ea7df53SJan Kara /* Wait so that we don't change page under IO */ 50651d1d1a76SDarrick J. Wong wait_for_stable_page(page); 50669ea7df53SJan Kara ret = VM_FAULT_LOCKED; 50679ea7df53SJan Kara goto out; 50682e9ee850SAneesh Kumar K.V } 5069a827eaffSAneesh Kumar K.V } 5070a827eaffSAneesh Kumar K.V unlock_page(page); 50719ea7df53SJan Kara /* OK, we need to fill the hole... */ 50729ea7df53SJan Kara if (ext4_should_dioread_nolock(inode)) 50739ea7df53SJan Kara get_block = ext4_get_block_write; 50749ea7df53SJan Kara else 50759ea7df53SJan Kara get_block = ext4_get_block; 50769ea7df53SJan Kara retry_alloc: 50779924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 50789924a92aSTheodore Ts'o ext4_writepage_trans_blocks(inode)); 50799ea7df53SJan Kara if (IS_ERR(handle)) { 5080c2ec175cSNick Piggin ret = VM_FAULT_SIGBUS; 50819ea7df53SJan Kara goto out; 50829ea7df53SJan Kara } 50839ea7df53SJan Kara ret = __block_page_mkwrite(vma, vmf, get_block); 50849ea7df53SJan Kara if (!ret && ext4_should_journal_data(inode)) { 5085f19d5870STao Ma if (ext4_walk_page_buffers(handle, page_buffers(page), 0, 50869ea7df53SJan Kara PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) { 50879ea7df53SJan Kara unlock_page(page); 50889ea7df53SJan Kara ret = VM_FAULT_SIGBUS; 5089fcbb5515SYongqiang Yang ext4_journal_stop(handle); 50909ea7df53SJan Kara goto out; 50919ea7df53SJan Kara } 50929ea7df53SJan Kara ext4_set_inode_state(inode, EXT4_STATE_JDATA); 50939ea7df53SJan Kara } 50949ea7df53SJan Kara ext4_journal_stop(handle); 50959ea7df53SJan Kara if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries)) 50969ea7df53SJan Kara goto retry_alloc; 50979ea7df53SJan Kara out_ret: 50989ea7df53SJan Kara ret = block_page_mkwrite_return(ret); 50999ea7df53SJan Kara out: 51008e8ad8a5SJan Kara sb_end_pagefault(inode->i_sb); 51012e9ee850SAneesh Kumar K.V return ret; 51022e9ee850SAneesh Kumar K.V } 5103