1ac27a0ecSDave Kleikamp /* 2617ba13bSMingming Cao * linux/fs/ext4/inode.c 3ac27a0ecSDave Kleikamp * 4ac27a0ecSDave Kleikamp * Copyright (C) 1992, 1993, 1994, 1995 5ac27a0ecSDave Kleikamp * Remy Card (card@masi.ibp.fr) 6ac27a0ecSDave Kleikamp * Laboratoire MASI - Institut Blaise Pascal 7ac27a0ecSDave Kleikamp * Universite Pierre et Marie Curie (Paris VI) 8ac27a0ecSDave Kleikamp * 9ac27a0ecSDave Kleikamp * from 10ac27a0ecSDave Kleikamp * 11ac27a0ecSDave Kleikamp * linux/fs/minix/inode.c 12ac27a0ecSDave Kleikamp * 13ac27a0ecSDave Kleikamp * Copyright (C) 1991, 1992 Linus Torvalds 14ac27a0ecSDave Kleikamp * 15ac27a0ecSDave Kleikamp * 64-bit file support on 64-bit platforms by Jakub Jelinek 16ac27a0ecSDave Kleikamp * (jj@sunsite.ms.mff.cuni.cz) 17ac27a0ecSDave Kleikamp * 18617ba13bSMingming Cao * Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000 19ac27a0ecSDave Kleikamp */ 20ac27a0ecSDave Kleikamp 21ac27a0ecSDave Kleikamp #include <linux/fs.h> 22ac27a0ecSDave Kleikamp #include <linux/time.h> 23ac27a0ecSDave Kleikamp #include <linux/highuid.h> 24ac27a0ecSDave Kleikamp #include <linux/pagemap.h> 25c94c2acfSMatthew Wilcox #include <linux/dax.h> 26ac27a0ecSDave Kleikamp #include <linux/quotaops.h> 27ac27a0ecSDave Kleikamp #include <linux/string.h> 28ac27a0ecSDave Kleikamp #include <linux/buffer_head.h> 29ac27a0ecSDave Kleikamp #include <linux/writeback.h> 3064769240SAlex Tomas #include <linux/pagevec.h> 31ac27a0ecSDave Kleikamp #include <linux/mpage.h> 32e83c1397SDuane Griffin #include <linux/namei.h> 33ac27a0ecSDave Kleikamp #include <linux/uio.h> 34ac27a0ecSDave Kleikamp #include <linux/bio.h> 354c0425ffSMingming Cao #include <linux/workqueue.h> 36744692dcSJiaying Zhang #include <linux/kernel.h> 376db26ffcSAndrew Morton #include <linux/printk.h> 385a0e3ad6STejun Heo #include <linux/slab.h> 3900a1a053STheodore Ts'o #include <linux/bitops.h> 409bffad1eSTheodore Ts'o 413dcf5451SChristoph Hellwig #include "ext4_jbd2.h" 42ac27a0ecSDave Kleikamp #include "xattr.h" 43ac27a0ecSDave Kleikamp #include "acl.h" 449f125d64STheodore Ts'o #include "truncate.h" 45ac27a0ecSDave Kleikamp 469bffad1eSTheodore Ts'o #include <trace/events/ext4.h> 479bffad1eSTheodore Ts'o 48a1d6cc56SAneesh Kumar K.V #define MPAGE_DA_EXTENT_TAIL 0x01 49a1d6cc56SAneesh Kumar K.V 50814525f4SDarrick J. Wong static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw, 51814525f4SDarrick J. Wong struct ext4_inode_info *ei) 52814525f4SDarrick J. Wong { 53814525f4SDarrick J. Wong struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 54814525f4SDarrick J. Wong __u16 csum_lo; 55814525f4SDarrick J. Wong __u16 csum_hi = 0; 56814525f4SDarrick J. Wong __u32 csum; 57814525f4SDarrick J. Wong 58171a7f21SDmitry Monakhov csum_lo = le16_to_cpu(raw->i_checksum_lo); 59814525f4SDarrick J. Wong raw->i_checksum_lo = 0; 60814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 61814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) { 62171a7f21SDmitry Monakhov csum_hi = le16_to_cpu(raw->i_checksum_hi); 63814525f4SDarrick J. Wong raw->i_checksum_hi = 0; 64814525f4SDarrick J. Wong } 65814525f4SDarrick J. Wong 66814525f4SDarrick J. Wong csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw, 67814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)); 68814525f4SDarrick J. Wong 69171a7f21SDmitry Monakhov raw->i_checksum_lo = cpu_to_le16(csum_lo); 70814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 71814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 72171a7f21SDmitry Monakhov raw->i_checksum_hi = cpu_to_le16(csum_hi); 73814525f4SDarrick J. Wong 74814525f4SDarrick J. Wong return csum; 75814525f4SDarrick J. Wong } 76814525f4SDarrick J. Wong 77814525f4SDarrick J. Wong static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw, 78814525f4SDarrick J. Wong struct ext4_inode_info *ei) 79814525f4SDarrick J. Wong { 80814525f4SDarrick J. Wong __u32 provided, calculated; 81814525f4SDarrick J. Wong 82814525f4SDarrick J. Wong if (EXT4_SB(inode->i_sb)->s_es->s_creator_os != 83814525f4SDarrick J. Wong cpu_to_le32(EXT4_OS_LINUX) || 849aa5d32bSDmitry Monakhov !ext4_has_metadata_csum(inode->i_sb)) 85814525f4SDarrick J. Wong return 1; 86814525f4SDarrick J. Wong 87814525f4SDarrick J. Wong provided = le16_to_cpu(raw->i_checksum_lo); 88814525f4SDarrick J. Wong calculated = ext4_inode_csum(inode, raw, ei); 89814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 90814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 91814525f4SDarrick J. Wong provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16; 92814525f4SDarrick J. Wong else 93814525f4SDarrick J. Wong calculated &= 0xFFFF; 94814525f4SDarrick J. Wong 95814525f4SDarrick J. Wong return provided == calculated; 96814525f4SDarrick J. Wong } 97814525f4SDarrick J. Wong 98814525f4SDarrick J. Wong static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw, 99814525f4SDarrick J. Wong struct ext4_inode_info *ei) 100814525f4SDarrick J. Wong { 101814525f4SDarrick J. Wong __u32 csum; 102814525f4SDarrick J. Wong 103814525f4SDarrick J. Wong if (EXT4_SB(inode->i_sb)->s_es->s_creator_os != 104814525f4SDarrick J. Wong cpu_to_le32(EXT4_OS_LINUX) || 1059aa5d32bSDmitry Monakhov !ext4_has_metadata_csum(inode->i_sb)) 106814525f4SDarrick J. Wong return; 107814525f4SDarrick J. Wong 108814525f4SDarrick J. Wong csum = ext4_inode_csum(inode, raw, ei); 109814525f4SDarrick J. Wong raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF); 110814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 111814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 112814525f4SDarrick J. Wong raw->i_checksum_hi = cpu_to_le16(csum >> 16); 113814525f4SDarrick J. Wong } 114814525f4SDarrick J. Wong 115678aaf48SJan Kara static inline int ext4_begin_ordered_truncate(struct inode *inode, 116678aaf48SJan Kara loff_t new_size) 117678aaf48SJan Kara { 1187ff9c073STheodore Ts'o trace_ext4_begin_ordered_truncate(inode, new_size); 1198aefcd55STheodore Ts'o /* 1208aefcd55STheodore Ts'o * If jinode is zero, then we never opened the file for 1218aefcd55STheodore Ts'o * writing, so there's no need to call 1228aefcd55STheodore Ts'o * jbd2_journal_begin_ordered_truncate() since there's no 1238aefcd55STheodore Ts'o * outstanding writes we need to flush. 1248aefcd55STheodore Ts'o */ 1258aefcd55STheodore Ts'o if (!EXT4_I(inode)->jinode) 1268aefcd55STheodore Ts'o return 0; 1278aefcd55STheodore Ts'o return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode), 1288aefcd55STheodore Ts'o EXT4_I(inode)->jinode, 129678aaf48SJan Kara new_size); 130678aaf48SJan Kara } 131678aaf48SJan Kara 132d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset, 133d47992f8SLukas Czerner unsigned int length); 134cb20d518STheodore Ts'o static int __ext4_journalled_writepage(struct page *page, unsigned int len); 135cb20d518STheodore Ts'o static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh); 136fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks, 137fffb2739SJan Kara int pextents); 13864769240SAlex Tomas 139ac27a0ecSDave Kleikamp /* 140ac27a0ecSDave Kleikamp * Test whether an inode is a fast symlink. 141ac27a0ecSDave Kleikamp */ 142f348c252STheodore Ts'o int ext4_inode_is_fast_symlink(struct inode *inode) 143ac27a0ecSDave Kleikamp { 144617ba13bSMingming Cao int ea_blocks = EXT4_I(inode)->i_file_acl ? 14565eddb56SYongqiang Yang EXT4_CLUSTER_SIZE(inode->i_sb) >> 9 : 0; 146ac27a0ecSDave Kleikamp 147bd9db175SZheng Liu if (ext4_has_inline_data(inode)) 148bd9db175SZheng Liu return 0; 149bd9db175SZheng Liu 150ac27a0ecSDave Kleikamp return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0); 151ac27a0ecSDave Kleikamp } 152ac27a0ecSDave Kleikamp 153ac27a0ecSDave Kleikamp /* 154ac27a0ecSDave Kleikamp * Restart the transaction associated with *handle. This does a commit, 155ac27a0ecSDave Kleikamp * so before we call here everything must be consistently dirtied against 156ac27a0ecSDave Kleikamp * this transaction. 157ac27a0ecSDave Kleikamp */ 158487caeefSJan Kara int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode, 159487caeefSJan Kara int nblocks) 160ac27a0ecSDave Kleikamp { 161487caeefSJan Kara int ret; 162487caeefSJan Kara 163487caeefSJan Kara /* 164e35fd660STheodore Ts'o * Drop i_data_sem to avoid deadlock with ext4_map_blocks. At this 165487caeefSJan Kara * moment, get_block can be called only for blocks inside i_size since 166487caeefSJan Kara * page cache has been already dropped and writes are blocked by 167487caeefSJan Kara * i_mutex. So we can safely drop the i_data_sem here. 168487caeefSJan Kara */ 1690390131bSFrank Mayhar BUG_ON(EXT4_JOURNAL(inode) == NULL); 170ac27a0ecSDave Kleikamp jbd_debug(2, "restarting handle %p\n", handle); 171487caeefSJan Kara up_write(&EXT4_I(inode)->i_data_sem); 1728e8eaabeSAmir Goldstein ret = ext4_journal_restart(handle, nblocks); 173487caeefSJan Kara down_write(&EXT4_I(inode)->i_data_sem); 174fa5d1113SAneesh Kumar K.V ext4_discard_preallocations(inode); 175487caeefSJan Kara 176487caeefSJan Kara return ret; 177ac27a0ecSDave Kleikamp } 178ac27a0ecSDave Kleikamp 179ac27a0ecSDave Kleikamp /* 180ac27a0ecSDave Kleikamp * Called at the last iput() if i_nlink is zero. 181ac27a0ecSDave Kleikamp */ 1820930fcc1SAl Viro void ext4_evict_inode(struct inode *inode) 183ac27a0ecSDave Kleikamp { 184ac27a0ecSDave Kleikamp handle_t *handle; 185bc965ab3STheodore Ts'o int err; 186ac27a0ecSDave Kleikamp 1877ff9c073STheodore Ts'o trace_ext4_evict_inode(inode); 1882581fdc8SJiaying Zhang 1890930fcc1SAl Viro if (inode->i_nlink) { 1902d859db3SJan Kara /* 1912d859db3SJan Kara * When journalling data dirty buffers are tracked only in the 1922d859db3SJan Kara * journal. So although mm thinks everything is clean and 1932d859db3SJan Kara * ready for reaping the inode might still have some pages to 1942d859db3SJan Kara * write in the running transaction or waiting to be 1952d859db3SJan Kara * checkpointed. Thus calling jbd2_journal_invalidatepage() 1962d859db3SJan Kara * (via truncate_inode_pages()) to discard these buffers can 1972d859db3SJan Kara * cause data loss. Also even if we did not discard these 1982d859db3SJan Kara * buffers, we would have no way to find them after the inode 1992d859db3SJan Kara * is reaped and thus user could see stale data if he tries to 2002d859db3SJan Kara * read them before the transaction is checkpointed. So be 2012d859db3SJan Kara * careful and force everything to disk here... We use 2022d859db3SJan Kara * ei->i_datasync_tid to store the newest transaction 2032d859db3SJan Kara * containing inode's data. 2042d859db3SJan Kara * 2052d859db3SJan Kara * Note that directories do not have this problem because they 2062d859db3SJan Kara * don't use page cache. 2072d859db3SJan Kara */ 2082d859db3SJan Kara if (ext4_should_journal_data(inode) && 2092b405bfaSTheodore Ts'o (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) && 2102b405bfaSTheodore Ts'o inode->i_ino != EXT4_JOURNAL_INO) { 2112d859db3SJan Kara journal_t *journal = EXT4_SB(inode->i_sb)->s_journal; 2122d859db3SJan Kara tid_t commit_tid = EXT4_I(inode)->i_datasync_tid; 2132d859db3SJan Kara 214d76a3a77STheodore Ts'o jbd2_complete_transaction(journal, commit_tid); 2152d859db3SJan Kara filemap_write_and_wait(&inode->i_data); 2162d859db3SJan Kara } 21791b0abe3SJohannes Weiner truncate_inode_pages_final(&inode->i_data); 2185dc23bddSJan Kara 2195dc23bddSJan Kara WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count)); 2200930fcc1SAl Viro goto no_delete; 2210930fcc1SAl Viro } 2220930fcc1SAl Viro 223e2bfb088STheodore Ts'o if (is_bad_inode(inode)) 224e2bfb088STheodore Ts'o goto no_delete; 225871a2931SChristoph Hellwig dquot_initialize(inode); 226907f4554SChristoph Hellwig 227678aaf48SJan Kara if (ext4_should_order_data(inode)) 228678aaf48SJan Kara ext4_begin_ordered_truncate(inode, 0); 22991b0abe3SJohannes Weiner truncate_inode_pages_final(&inode->i_data); 230ac27a0ecSDave Kleikamp 2315dc23bddSJan Kara WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count)); 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 /* 3230637c6f4STheodore Ts'o * Called with i_data_sem down, which is important since we can call 3240637c6f4STheodore Ts'o * ext4_discard_preallocations() from here. 3250637c6f4STheodore Ts'o */ 3265f634d06SAneesh Kumar K.V void ext4_da_update_reserve_space(struct inode *inode, 3275f634d06SAneesh Kumar K.V int used, int quota_claim) 32812219aeaSAneesh Kumar K.V { 32912219aeaSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 3300637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 33112219aeaSAneesh Kumar K.V 3320637c6f4STheodore Ts'o spin_lock(&ei->i_block_reservation_lock); 333d8990240SAditya Kali trace_ext4_da_update_reserve_space(inode, used, quota_claim); 3340637c6f4STheodore Ts'o if (unlikely(used > ei->i_reserved_data_blocks)) { 3358de5c325STheodore Ts'o ext4_warning(inode->i_sb, "%s: ino %lu, used %d " 3361084f252STheodore Ts'o "with only %d reserved data blocks", 3370637c6f4STheodore Ts'o __func__, inode->i_ino, used, 3380637c6f4STheodore Ts'o ei->i_reserved_data_blocks); 3390637c6f4STheodore Ts'o WARN_ON(1); 3400637c6f4STheodore Ts'o used = ei->i_reserved_data_blocks; 3416bc6e63fSAneesh Kumar K.V } 34212219aeaSAneesh Kumar K.V 3430637c6f4STheodore Ts'o /* Update per-inode reservations */ 3440637c6f4STheodore Ts'o ei->i_reserved_data_blocks -= used; 34571d4f7d0STheodore Ts'o percpu_counter_sub(&sbi->s_dirtyclusters_counter, used); 3460637c6f4STheodore Ts'o 34712219aeaSAneesh Kumar K.V spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); 34860e58e0fSMingming Cao 34972b8ab9dSEric Sandeen /* Update quota subsystem for data blocks */ 35072b8ab9dSEric Sandeen if (quota_claim) 3517b415bf6SAditya Kali dquot_claim_block(inode, EXT4_C2B(sbi, used)); 35272b8ab9dSEric Sandeen else { 3535f634d06SAneesh Kumar K.V /* 3545f634d06SAneesh Kumar K.V * We did fallocate with an offset that is already delayed 3555f634d06SAneesh Kumar K.V * allocated. So on delayed allocated writeback we should 35672b8ab9dSEric Sandeen * not re-claim the quota for fallocated blocks. 3575f634d06SAneesh Kumar K.V */ 3587b415bf6SAditya Kali dquot_release_reservation_block(inode, EXT4_C2B(sbi, used)); 3595f634d06SAneesh Kumar K.V } 360d6014301SAneesh Kumar K.V 361d6014301SAneesh Kumar K.V /* 362d6014301SAneesh Kumar K.V * If we have done all the pending block allocations and if 363d6014301SAneesh Kumar K.V * there aren't any writers on the inode, we can discard the 364d6014301SAneesh Kumar K.V * inode's preallocations. 365d6014301SAneesh Kumar K.V */ 3660637c6f4STheodore Ts'o if ((ei->i_reserved_data_blocks == 0) && 3670637c6f4STheodore Ts'o (atomic_read(&inode->i_writecount) == 0)) 368d6014301SAneesh Kumar K.V ext4_discard_preallocations(inode); 36912219aeaSAneesh Kumar K.V } 37012219aeaSAneesh Kumar K.V 371e29136f8STheodore Ts'o static int __check_block_validity(struct inode *inode, const char *func, 372c398eda0STheodore Ts'o unsigned int line, 37324676da4STheodore Ts'o struct ext4_map_blocks *map) 3746fd058f7STheodore Ts'o { 37524676da4STheodore Ts'o if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk, 37624676da4STheodore Ts'o map->m_len)) { 377c398eda0STheodore Ts'o ext4_error_inode(inode, func, line, map->m_pblk, 378c398eda0STheodore Ts'o "lblock %lu mapped to illegal pblock " 37924676da4STheodore Ts'o "(length %d)", (unsigned long) map->m_lblk, 380c398eda0STheodore Ts'o map->m_len); 3816a797d27SDarrick J. Wong return -EFSCORRUPTED; 3826fd058f7STheodore Ts'o } 3836fd058f7STheodore Ts'o return 0; 3846fd058f7STheodore Ts'o } 3856fd058f7STheodore Ts'o 386e29136f8STheodore Ts'o #define check_block_validity(inode, map) \ 387c398eda0STheodore Ts'o __check_block_validity((inode), __func__, __LINE__, (map)) 388e29136f8STheodore Ts'o 389921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 390921f266bSDmitry Monakhov static void ext4_map_blocks_es_recheck(handle_t *handle, 391921f266bSDmitry Monakhov struct inode *inode, 392921f266bSDmitry Monakhov struct ext4_map_blocks *es_map, 393921f266bSDmitry Monakhov struct ext4_map_blocks *map, 394921f266bSDmitry Monakhov int flags) 395921f266bSDmitry Monakhov { 396921f266bSDmitry Monakhov int retval; 397921f266bSDmitry Monakhov 398921f266bSDmitry Monakhov map->m_flags = 0; 399921f266bSDmitry Monakhov /* 400921f266bSDmitry Monakhov * There is a race window that the result is not the same. 401921f266bSDmitry Monakhov * e.g. xfstests #223 when dioread_nolock enables. The reason 402921f266bSDmitry Monakhov * is that we lookup a block mapping in extent status tree with 403921f266bSDmitry Monakhov * out taking i_data_sem. So at the time the unwritten extent 404921f266bSDmitry Monakhov * could be converted. 405921f266bSDmitry Monakhov */ 406921f266bSDmitry Monakhov if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 407c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 408921f266bSDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 409921f266bSDmitry Monakhov retval = ext4_ext_map_blocks(handle, inode, map, flags & 410921f266bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 411921f266bSDmitry Monakhov } else { 412921f266bSDmitry Monakhov retval = ext4_ind_map_blocks(handle, inode, map, flags & 413921f266bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 414921f266bSDmitry Monakhov } 415921f266bSDmitry Monakhov if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 416921f266bSDmitry Monakhov up_read((&EXT4_I(inode)->i_data_sem)); 417921f266bSDmitry Monakhov 418921f266bSDmitry Monakhov /* 419921f266bSDmitry Monakhov * We don't check m_len because extent will be collpased in status 420921f266bSDmitry Monakhov * tree. So the m_len might not equal. 421921f266bSDmitry Monakhov */ 422921f266bSDmitry Monakhov if (es_map->m_lblk != map->m_lblk || 423921f266bSDmitry Monakhov es_map->m_flags != map->m_flags || 424921f266bSDmitry Monakhov es_map->m_pblk != map->m_pblk) { 425bdafe42aSTheodore Ts'o printk("ES cache assertion failed for inode: %lu " 426921f266bSDmitry Monakhov "es_cached ex [%d/%d/%llu/%x] != " 427921f266bSDmitry Monakhov "found ex [%d/%d/%llu/%x] retval %d flags %x\n", 428921f266bSDmitry Monakhov inode->i_ino, es_map->m_lblk, es_map->m_len, 429921f266bSDmitry Monakhov es_map->m_pblk, es_map->m_flags, map->m_lblk, 430921f266bSDmitry Monakhov map->m_len, map->m_pblk, map->m_flags, 431921f266bSDmitry Monakhov retval, flags); 432921f266bSDmitry Monakhov } 433921f266bSDmitry Monakhov } 434921f266bSDmitry Monakhov #endif /* ES_AGGRESSIVE_TEST */ 435921f266bSDmitry Monakhov 43655138e0bSTheodore Ts'o /* 437e35fd660STheodore Ts'o * The ext4_map_blocks() function tries to look up the requested blocks, 4382b2d6d01STheodore Ts'o * and returns if the blocks are already mapped. 439f5ab0d1fSMingming Cao * 440f5ab0d1fSMingming Cao * Otherwise it takes the write lock of the i_data_sem and allocate blocks 441f5ab0d1fSMingming Cao * and store the allocated blocks in the result buffer head and mark it 442f5ab0d1fSMingming Cao * mapped. 443f5ab0d1fSMingming Cao * 444e35fd660STheodore Ts'o * If file type is extents based, it will call ext4_ext_map_blocks(), 445e35fd660STheodore Ts'o * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping 446f5ab0d1fSMingming Cao * based files 447f5ab0d1fSMingming Cao * 448556615dcSLukas Czerner * On success, it returns the number of blocks being mapped or allocated. 449556615dcSLukas Czerner * if create==0 and the blocks are pre-allocated and unwritten block, 450f5ab0d1fSMingming Cao * the result buffer head is unmapped. If the create ==1, it will make sure 451f5ab0d1fSMingming Cao * the buffer head is mapped. 452f5ab0d1fSMingming Cao * 453f5ab0d1fSMingming Cao * It returns 0 if plain look up failed (blocks have not been allocated), in 454df3ab170STao Ma * that case, buffer head is unmapped 455f5ab0d1fSMingming Cao * 456f5ab0d1fSMingming Cao * It returns the error in case of allocation failure. 457f5ab0d1fSMingming Cao */ 458e35fd660STheodore Ts'o int ext4_map_blocks(handle_t *handle, struct inode *inode, 459e35fd660STheodore Ts'o struct ext4_map_blocks *map, int flags) 4600e855ac8SAneesh Kumar K.V { 461d100eef2SZheng Liu struct extent_status es; 4620e855ac8SAneesh Kumar K.V int retval; 463b8a86845SLukas Czerner int ret = 0; 464921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 465921f266bSDmitry Monakhov struct ext4_map_blocks orig_map; 466921f266bSDmitry Monakhov 467921f266bSDmitry Monakhov memcpy(&orig_map, map, sizeof(*map)); 468921f266bSDmitry Monakhov #endif 469f5ab0d1fSMingming Cao 470e35fd660STheodore Ts'o map->m_flags = 0; 471e35fd660STheodore Ts'o ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u," 472e35fd660STheodore Ts'o "logical block %lu\n", inode->i_ino, flags, map->m_len, 473e35fd660STheodore Ts'o (unsigned long) map->m_lblk); 474d100eef2SZheng Liu 475e861b5e9STheodore Ts'o /* 476e861b5e9STheodore Ts'o * ext4_map_blocks returns an int, and m_len is an unsigned int 477e861b5e9STheodore Ts'o */ 478e861b5e9STheodore Ts'o if (unlikely(map->m_len > INT_MAX)) 479e861b5e9STheodore Ts'o map->m_len = INT_MAX; 480e861b5e9STheodore Ts'o 4814adb6ab3SKazuya Mio /* We can handle the block number less than EXT_MAX_BLOCKS */ 4824adb6ab3SKazuya Mio if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS)) 4836a797d27SDarrick J. Wong return -EFSCORRUPTED; 4844adb6ab3SKazuya Mio 485d100eef2SZheng Liu /* Lookup extent status tree firstly */ 486d100eef2SZheng Liu if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) { 487d100eef2SZheng Liu if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) { 488d100eef2SZheng Liu map->m_pblk = ext4_es_pblock(&es) + 489d100eef2SZheng Liu map->m_lblk - es.es_lblk; 490d100eef2SZheng Liu map->m_flags |= ext4_es_is_written(&es) ? 491d100eef2SZheng Liu EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN; 492d100eef2SZheng Liu retval = es.es_len - (map->m_lblk - es.es_lblk); 493d100eef2SZheng Liu if (retval > map->m_len) 494d100eef2SZheng Liu retval = map->m_len; 495d100eef2SZheng Liu map->m_len = retval; 496d100eef2SZheng Liu } else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) { 497d100eef2SZheng Liu retval = 0; 498d100eef2SZheng Liu } else { 499d100eef2SZheng Liu BUG_ON(1); 500d100eef2SZheng Liu } 501921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 502921f266bSDmitry Monakhov ext4_map_blocks_es_recheck(handle, inode, map, 503921f266bSDmitry Monakhov &orig_map, flags); 504921f266bSDmitry Monakhov #endif 505d100eef2SZheng Liu goto found; 506d100eef2SZheng Liu } 507d100eef2SZheng Liu 5084df3d265SAneesh Kumar K.V /* 509b920c755STheodore Ts'o * Try to see if we can get the block without requesting a new 510b920c755STheodore Ts'o * file system block. 5114df3d265SAneesh Kumar K.V */ 512729f52c6SZheng Liu if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 513c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 51412e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 515a4e5d88bSDmitry Monakhov retval = ext4_ext_map_blocks(handle, inode, map, flags & 516a4e5d88bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 5174df3d265SAneesh Kumar K.V } else { 518a4e5d88bSDmitry Monakhov retval = ext4_ind_map_blocks(handle, inode, map, flags & 519a4e5d88bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 5200e855ac8SAneesh Kumar K.V } 521f7fec032SZheng Liu if (retval > 0) { 5223be78c73STheodore Ts'o unsigned int status; 523f7fec032SZheng Liu 52444fb851dSZheng Liu if (unlikely(retval != map->m_len)) { 52544fb851dSZheng Liu ext4_warning(inode->i_sb, 52644fb851dSZheng Liu "ES len assertion failed for inode " 52744fb851dSZheng Liu "%lu: retval %d != map->m_len %d", 52844fb851dSZheng Liu inode->i_ino, retval, map->m_len); 52944fb851dSZheng Liu WARN_ON(1); 530921f266bSDmitry Monakhov } 531921f266bSDmitry Monakhov 532f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 533f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 534f7fec032SZheng Liu if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) && 535d2dc317dSLukas Czerner !(status & EXTENT_STATUS_WRITTEN) && 536f7fec032SZheng Liu ext4_find_delalloc_range(inode, map->m_lblk, 537f7fec032SZheng Liu map->m_lblk + map->m_len - 1)) 538f7fec032SZheng Liu status |= EXTENT_STATUS_DELAYED; 539f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, 540f7fec032SZheng Liu map->m_len, map->m_pblk, status); 541f7fec032SZheng Liu if (ret < 0) 542f7fec032SZheng Liu retval = ret; 543f7fec032SZheng Liu } 544729f52c6SZheng Liu if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 5454df3d265SAneesh Kumar K.V up_read((&EXT4_I(inode)->i_data_sem)); 546f5ab0d1fSMingming Cao 547d100eef2SZheng Liu found: 548e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) { 549b8a86845SLukas Czerner ret = check_block_validity(inode, map); 5506fd058f7STheodore Ts'o if (ret != 0) 5516fd058f7STheodore Ts'o return ret; 5526fd058f7STheodore Ts'o } 5536fd058f7STheodore Ts'o 554f5ab0d1fSMingming Cao /* If it is only a block(s) look up */ 555c2177057STheodore Ts'o if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) 5564df3d265SAneesh Kumar K.V return retval; 5574df3d265SAneesh Kumar K.V 5584df3d265SAneesh Kumar K.V /* 559f5ab0d1fSMingming Cao * Returns if the blocks have already allocated 560f5ab0d1fSMingming Cao * 561f5ab0d1fSMingming Cao * Note that if blocks have been preallocated 562df3ab170STao Ma * ext4_ext_get_block() returns the create = 0 563f5ab0d1fSMingming Cao * with buffer head unmapped. 564f5ab0d1fSMingming Cao */ 565e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) 566b8a86845SLukas Czerner /* 567b8a86845SLukas Czerner * If we need to convert extent to unwritten 568b8a86845SLukas Czerner * we continue and do the actual work in 569b8a86845SLukas Czerner * ext4_ext_map_blocks() 570b8a86845SLukas Czerner */ 571b8a86845SLukas Czerner if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN)) 572f5ab0d1fSMingming Cao return retval; 573f5ab0d1fSMingming Cao 574f5ab0d1fSMingming Cao /* 575a25a4e1aSZheng Liu * Here we clear m_flags because after allocating an new extent, 576a25a4e1aSZheng Liu * it will be set again. 5772a8964d6SAneesh Kumar K.V */ 578a25a4e1aSZheng Liu map->m_flags &= ~EXT4_MAP_FLAGS; 5792a8964d6SAneesh Kumar K.V 5802a8964d6SAneesh Kumar K.V /* 581556615dcSLukas Czerner * New blocks allocate and/or writing to unwritten extent 582f5ab0d1fSMingming Cao * will possibly result in updating i_data, so we take 583d91bd2c1SSeunghun Lee * the write lock of i_data_sem, and call get_block() 584f5ab0d1fSMingming Cao * with create == 1 flag. 5854df3d265SAneesh Kumar K.V */ 586c8b459f4SLukas Czerner down_write(&EXT4_I(inode)->i_data_sem); 587d2a17637SMingming Cao 588d2a17637SMingming Cao /* 5894df3d265SAneesh Kumar K.V * We need to check for EXT4 here because migrate 5904df3d265SAneesh Kumar K.V * could have changed the inode type in between 5914df3d265SAneesh Kumar K.V */ 59212e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 593e35fd660STheodore Ts'o retval = ext4_ext_map_blocks(handle, inode, map, flags); 5940e855ac8SAneesh Kumar K.V } else { 595e35fd660STheodore Ts'o retval = ext4_ind_map_blocks(handle, inode, map, flags); 596267e4db9SAneesh Kumar K.V 597e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_NEW) { 598267e4db9SAneesh Kumar K.V /* 599267e4db9SAneesh Kumar K.V * We allocated new blocks which will result in 600267e4db9SAneesh Kumar K.V * i_data's format changing. Force the migrate 601267e4db9SAneesh Kumar K.V * to fail by clearing migrate flags 602267e4db9SAneesh Kumar K.V */ 60319f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE); 604267e4db9SAneesh Kumar K.V } 6052ac3b6e0STheodore Ts'o 606d2a17637SMingming Cao /* 6072ac3b6e0STheodore Ts'o * Update reserved blocks/metadata blocks after successful 6085f634d06SAneesh Kumar K.V * block allocation which had been deferred till now. We don't 6095f634d06SAneesh Kumar K.V * support fallocate for non extent files. So we can update 6105f634d06SAneesh Kumar K.V * reserve space here. 611d2a17637SMingming Cao */ 6125f634d06SAneesh Kumar K.V if ((retval > 0) && 6131296cc85SAneesh Kumar K.V (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)) 6145f634d06SAneesh Kumar K.V ext4_da_update_reserve_space(inode, retval, 1); 6155f634d06SAneesh Kumar K.V } 616d2a17637SMingming Cao 617f7fec032SZheng Liu if (retval > 0) { 6183be78c73STheodore Ts'o unsigned int status; 619f7fec032SZheng Liu 62044fb851dSZheng Liu if (unlikely(retval != map->m_len)) { 62144fb851dSZheng Liu ext4_warning(inode->i_sb, 62244fb851dSZheng Liu "ES len assertion failed for inode " 62344fb851dSZheng Liu "%lu: retval %d != map->m_len %d", 62444fb851dSZheng Liu inode->i_ino, retval, map->m_len); 62544fb851dSZheng Liu WARN_ON(1); 626921f266bSDmitry Monakhov } 627921f266bSDmitry Monakhov 628adb23551SZheng Liu /* 629adb23551SZheng Liu * If the extent has been zeroed out, we don't need to update 630adb23551SZheng Liu * extent status tree. 631adb23551SZheng Liu */ 632adb23551SZheng Liu if ((flags & EXT4_GET_BLOCKS_PRE_IO) && 633adb23551SZheng Liu ext4_es_lookup_extent(inode, map->m_lblk, &es)) { 634adb23551SZheng Liu if (ext4_es_is_written(&es)) 635adb23551SZheng Liu goto has_zeroout; 636adb23551SZheng Liu } 637f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 638f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 639f7fec032SZheng Liu if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) && 640d2dc317dSLukas Czerner !(status & EXTENT_STATUS_WRITTEN) && 641f7fec032SZheng Liu ext4_find_delalloc_range(inode, map->m_lblk, 642f7fec032SZheng Liu map->m_lblk + map->m_len - 1)) 643f7fec032SZheng Liu status |= EXTENT_STATUS_DELAYED; 644f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 645f7fec032SZheng Liu map->m_pblk, status); 64651865fdaSZheng Liu if (ret < 0) 64751865fdaSZheng Liu retval = ret; 64851865fdaSZheng Liu } 6495356f261SAditya Kali 650adb23551SZheng Liu has_zeroout: 6510e855ac8SAneesh Kumar K.V up_write((&EXT4_I(inode)->i_data_sem)); 652e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) { 653b8a86845SLukas Czerner ret = check_block_validity(inode, map); 6546fd058f7STheodore Ts'o if (ret != 0) 6556fd058f7STheodore Ts'o return ret; 6566fd058f7STheodore Ts'o } 6570e855ac8SAneesh Kumar K.V return retval; 6580e855ac8SAneesh Kumar K.V } 6590e855ac8SAneesh Kumar K.V 660f3bd1f3fSMingming Cao /* Maximum number of blocks we map for direct IO at once. */ 661f3bd1f3fSMingming Cao #define DIO_MAX_BLOCKS 4096 662f3bd1f3fSMingming Cao 6632ed88685STheodore Ts'o static int _ext4_get_block(struct inode *inode, sector_t iblock, 6642ed88685STheodore Ts'o struct buffer_head *bh, int flags) 665ac27a0ecSDave Kleikamp { 6663e4fdaf8SDmitriy Monakhov handle_t *handle = ext4_journal_current_handle(); 6672ed88685STheodore Ts'o struct ext4_map_blocks map; 6687fb5409dSJan Kara int ret = 0, started = 0; 669f3bd1f3fSMingming Cao int dio_credits; 670ac27a0ecSDave Kleikamp 67146c7f254STao Ma if (ext4_has_inline_data(inode)) 67246c7f254STao Ma return -ERANGE; 67346c7f254STao Ma 6742ed88685STheodore Ts'o map.m_lblk = iblock; 6752ed88685STheodore Ts'o map.m_len = bh->b_size >> inode->i_blkbits; 6762ed88685STheodore Ts'o 6778b0f165fSAnatol Pomozov if (flags && !(flags & EXT4_GET_BLOCKS_NO_LOCK) && !handle) { 6787fb5409dSJan Kara /* Direct IO write... */ 6792ed88685STheodore Ts'o if (map.m_len > DIO_MAX_BLOCKS) 6802ed88685STheodore Ts'o map.m_len = DIO_MAX_BLOCKS; 6812ed88685STheodore Ts'o dio_credits = ext4_chunk_trans_blocks(inode, map.m_len); 6829924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, 6839924a92aSTheodore Ts'o dio_credits); 6847fb5409dSJan Kara if (IS_ERR(handle)) { 685ac27a0ecSDave Kleikamp ret = PTR_ERR(handle); 6862ed88685STheodore Ts'o return ret; 6877fb5409dSJan Kara } 6887fb5409dSJan Kara started = 1; 689ac27a0ecSDave Kleikamp } 690ac27a0ecSDave Kleikamp 6912ed88685STheodore Ts'o ret = ext4_map_blocks(handle, inode, &map, flags); 692ac27a0ecSDave Kleikamp if (ret > 0) { 6937b7a8665SChristoph Hellwig ext4_io_end_t *io_end = ext4_inode_aio(inode); 6947b7a8665SChristoph Hellwig 6952ed88685STheodore Ts'o map_bh(bh, inode->i_sb, map.m_pblk); 6962ed88685STheodore Ts'o bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags; 697e842f290SDave Chinner if (IS_DAX(inode) && buffer_unwritten(bh)) { 698e842f290SDave Chinner /* 699e842f290SDave Chinner * dgc: I suspect unwritten conversion on ext4+DAX is 700e842f290SDave Chinner * fundamentally broken here when there are concurrent 701e842f290SDave Chinner * read/write in progress on this inode. 702e842f290SDave Chinner */ 703e842f290SDave Chinner WARN_ON_ONCE(io_end); 704923ae0ffSRoss Zwisler bh->b_assoc_map = inode->i_mapping; 705923ae0ffSRoss Zwisler bh->b_private = (void *)(unsigned long)iblock; 706923ae0ffSRoss Zwisler } 7077b7a8665SChristoph Hellwig if (io_end && io_end->flag & EXT4_IO_END_UNWRITTEN) 7087b7a8665SChristoph Hellwig set_buffer_defer_completion(bh); 7092ed88685STheodore Ts'o bh->b_size = inode->i_sb->s_blocksize * map.m_len; 710ac27a0ecSDave Kleikamp ret = 0; 711ac27a0ecSDave Kleikamp } 7127fb5409dSJan Kara if (started) 7137fb5409dSJan Kara ext4_journal_stop(handle); 714ac27a0ecSDave Kleikamp return ret; 715ac27a0ecSDave Kleikamp } 716ac27a0ecSDave Kleikamp 7172ed88685STheodore Ts'o int ext4_get_block(struct inode *inode, sector_t iblock, 7182ed88685STheodore Ts'o struct buffer_head *bh, int create) 7192ed88685STheodore Ts'o { 7202ed88685STheodore Ts'o return _ext4_get_block(inode, iblock, bh, 7212ed88685STheodore Ts'o create ? EXT4_GET_BLOCKS_CREATE : 0); 7222ed88685STheodore Ts'o } 7232ed88685STheodore Ts'o 724ac27a0ecSDave Kleikamp /* 725ac27a0ecSDave Kleikamp * `handle' can be NULL if create is zero 726ac27a0ecSDave Kleikamp */ 727617ba13bSMingming Cao struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode, 728c5e298aeSTheodore Ts'o ext4_lblk_t block, int map_flags) 729ac27a0ecSDave Kleikamp { 7302ed88685STheodore Ts'o struct ext4_map_blocks map; 7312ed88685STheodore Ts'o struct buffer_head *bh; 732c5e298aeSTheodore Ts'o int create = map_flags & EXT4_GET_BLOCKS_CREATE; 73310560082STheodore Ts'o int err; 734ac27a0ecSDave Kleikamp 735ac27a0ecSDave Kleikamp J_ASSERT(handle != NULL || create == 0); 736ac27a0ecSDave Kleikamp 7372ed88685STheodore Ts'o map.m_lblk = block; 7382ed88685STheodore Ts'o map.m_len = 1; 739c5e298aeSTheodore Ts'o err = ext4_map_blocks(handle, inode, &map, map_flags); 7402ed88685STheodore Ts'o 74110560082STheodore Ts'o if (err == 0) 74210560082STheodore Ts'o return create ? ERR_PTR(-ENOSPC) : NULL; 7432ed88685STheodore Ts'o if (err < 0) 74410560082STheodore Ts'o return ERR_PTR(err); 7452ed88685STheodore Ts'o 7462ed88685STheodore Ts'o bh = sb_getblk(inode->i_sb, map.m_pblk); 74710560082STheodore Ts'o if (unlikely(!bh)) 74810560082STheodore Ts'o return ERR_PTR(-ENOMEM); 7492ed88685STheodore Ts'o if (map.m_flags & EXT4_MAP_NEW) { 750ac27a0ecSDave Kleikamp J_ASSERT(create != 0); 751ac39849dSAneesh Kumar K.V J_ASSERT(handle != NULL); 752ac27a0ecSDave Kleikamp 753ac27a0ecSDave Kleikamp /* 754ac27a0ecSDave Kleikamp * Now that we do not always journal data, we should 755ac27a0ecSDave Kleikamp * keep in mind whether this should always journal the 756ac27a0ecSDave Kleikamp * new buffer as metadata. For now, regular file 757617ba13bSMingming Cao * writes use ext4_get_block instead, so it's not a 758ac27a0ecSDave Kleikamp * problem. 759ac27a0ecSDave Kleikamp */ 760ac27a0ecSDave Kleikamp lock_buffer(bh); 761ac27a0ecSDave Kleikamp BUFFER_TRACE(bh, "call get_create_access"); 76210560082STheodore Ts'o err = ext4_journal_get_create_access(handle, bh); 76310560082STheodore Ts'o if (unlikely(err)) { 76410560082STheodore Ts'o unlock_buffer(bh); 76510560082STheodore Ts'o goto errout; 76610560082STheodore Ts'o } 76710560082STheodore Ts'o if (!buffer_uptodate(bh)) { 768ac27a0ecSDave Kleikamp memset(bh->b_data, 0, inode->i_sb->s_blocksize); 769ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 770ac27a0ecSDave Kleikamp } 771ac27a0ecSDave Kleikamp unlock_buffer(bh); 7720390131bSFrank Mayhar BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); 7730390131bSFrank Mayhar err = ext4_handle_dirty_metadata(handle, inode, bh); 77410560082STheodore Ts'o if (unlikely(err)) 77510560082STheodore Ts'o goto errout; 77610560082STheodore Ts'o } else 777ac27a0ecSDave Kleikamp BUFFER_TRACE(bh, "not a new buffer"); 778ac27a0ecSDave Kleikamp return bh; 77910560082STheodore Ts'o errout: 78010560082STheodore Ts'o brelse(bh); 78110560082STheodore Ts'o return ERR_PTR(err); 782ac27a0ecSDave Kleikamp } 783ac27a0ecSDave Kleikamp 784617ba13bSMingming Cao struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode, 785c5e298aeSTheodore Ts'o ext4_lblk_t block, int map_flags) 786ac27a0ecSDave Kleikamp { 787ac27a0ecSDave Kleikamp struct buffer_head *bh; 788ac27a0ecSDave Kleikamp 789c5e298aeSTheodore Ts'o bh = ext4_getblk(handle, inode, block, map_flags); 7901c215028STheodore Ts'o if (IS_ERR(bh)) 791ac27a0ecSDave Kleikamp return bh; 7921c215028STheodore Ts'o if (!bh || buffer_uptodate(bh)) 793ac27a0ecSDave Kleikamp return bh; 79465299a3bSChristoph Hellwig ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh); 795ac27a0ecSDave Kleikamp wait_on_buffer(bh); 796ac27a0ecSDave Kleikamp if (buffer_uptodate(bh)) 797ac27a0ecSDave Kleikamp return bh; 798ac27a0ecSDave Kleikamp put_bh(bh); 7991c215028STheodore Ts'o return ERR_PTR(-EIO); 800ac27a0ecSDave Kleikamp } 801ac27a0ecSDave Kleikamp 802f19d5870STao Ma int ext4_walk_page_buffers(handle_t *handle, 803ac27a0ecSDave Kleikamp struct buffer_head *head, 804ac27a0ecSDave Kleikamp unsigned from, 805ac27a0ecSDave Kleikamp unsigned to, 806ac27a0ecSDave Kleikamp int *partial, 807ac27a0ecSDave Kleikamp int (*fn)(handle_t *handle, 808ac27a0ecSDave Kleikamp struct buffer_head *bh)) 809ac27a0ecSDave Kleikamp { 810ac27a0ecSDave Kleikamp struct buffer_head *bh; 811ac27a0ecSDave Kleikamp unsigned block_start, block_end; 812ac27a0ecSDave Kleikamp unsigned blocksize = head->b_size; 813ac27a0ecSDave Kleikamp int err, ret = 0; 814ac27a0ecSDave Kleikamp struct buffer_head *next; 815ac27a0ecSDave Kleikamp 816ac27a0ecSDave Kleikamp for (bh = head, block_start = 0; 817ac27a0ecSDave Kleikamp ret == 0 && (bh != head || !block_start); 818de9a55b8STheodore Ts'o block_start = block_end, bh = next) { 819ac27a0ecSDave Kleikamp next = bh->b_this_page; 820ac27a0ecSDave Kleikamp block_end = block_start + blocksize; 821ac27a0ecSDave Kleikamp if (block_end <= from || block_start >= to) { 822ac27a0ecSDave Kleikamp if (partial && !buffer_uptodate(bh)) 823ac27a0ecSDave Kleikamp *partial = 1; 824ac27a0ecSDave Kleikamp continue; 825ac27a0ecSDave Kleikamp } 826ac27a0ecSDave Kleikamp err = (*fn)(handle, bh); 827ac27a0ecSDave Kleikamp if (!ret) 828ac27a0ecSDave Kleikamp ret = err; 829ac27a0ecSDave Kleikamp } 830ac27a0ecSDave Kleikamp return ret; 831ac27a0ecSDave Kleikamp } 832ac27a0ecSDave Kleikamp 833ac27a0ecSDave Kleikamp /* 834ac27a0ecSDave Kleikamp * To preserve ordering, it is essential that the hole instantiation and 835ac27a0ecSDave Kleikamp * the data write be encapsulated in a single transaction. We cannot 836617ba13bSMingming Cao * close off a transaction and start a new one between the ext4_get_block() 837dab291afSMingming Cao * and the commit_write(). So doing the jbd2_journal_start at the start of 838ac27a0ecSDave Kleikamp * prepare_write() is the right place. 839ac27a0ecSDave Kleikamp * 84036ade451SJan Kara * Also, this function can nest inside ext4_writepage(). In that case, we 84136ade451SJan Kara * *know* that ext4_writepage() has generated enough buffer credits to do the 84236ade451SJan Kara * whole page. So we won't block on the journal in that case, which is good, 84336ade451SJan Kara * because the caller may be PF_MEMALLOC. 844ac27a0ecSDave Kleikamp * 845617ba13bSMingming Cao * By accident, ext4 can be reentered when a transaction is open via 846ac27a0ecSDave Kleikamp * quota file writes. If we were to commit the transaction while thus 847ac27a0ecSDave Kleikamp * reentered, there can be a deadlock - we would be holding a quota 848ac27a0ecSDave Kleikamp * lock, and the commit would never complete if another thread had a 849ac27a0ecSDave Kleikamp * transaction open and was blocking on the quota lock - a ranking 850ac27a0ecSDave Kleikamp * violation. 851ac27a0ecSDave Kleikamp * 852dab291afSMingming Cao * So what we do is to rely on the fact that jbd2_journal_stop/journal_start 853ac27a0ecSDave Kleikamp * will _not_ run commit under these circumstances because handle->h_ref 854ac27a0ecSDave Kleikamp * is elevated. We'll still have enough credits for the tiny quotafile 855ac27a0ecSDave Kleikamp * write. 856ac27a0ecSDave Kleikamp */ 857f19d5870STao Ma int do_journal_get_write_access(handle_t *handle, 858ac27a0ecSDave Kleikamp struct buffer_head *bh) 859ac27a0ecSDave Kleikamp { 86056d35a4cSJan Kara int dirty = buffer_dirty(bh); 86156d35a4cSJan Kara int ret; 86256d35a4cSJan Kara 863ac27a0ecSDave Kleikamp if (!buffer_mapped(bh) || buffer_freed(bh)) 864ac27a0ecSDave Kleikamp return 0; 86556d35a4cSJan Kara /* 866ebdec241SChristoph Hellwig * __block_write_begin() could have dirtied some buffers. Clean 86756d35a4cSJan Kara * the dirty bit as jbd2_journal_get_write_access() could complain 86856d35a4cSJan Kara * otherwise about fs integrity issues. Setting of the dirty bit 869ebdec241SChristoph Hellwig * by __block_write_begin() isn't a real problem here as we clear 87056d35a4cSJan Kara * the bit before releasing a page lock and thus writeback cannot 87156d35a4cSJan Kara * ever write the buffer. 87256d35a4cSJan Kara */ 87356d35a4cSJan Kara if (dirty) 87456d35a4cSJan Kara clear_buffer_dirty(bh); 8755d601255Sliang xie BUFFER_TRACE(bh, "get write access"); 87656d35a4cSJan Kara ret = ext4_journal_get_write_access(handle, bh); 87756d35a4cSJan Kara if (!ret && dirty) 87856d35a4cSJan Kara ret = ext4_handle_dirty_metadata(handle, NULL, bh); 87956d35a4cSJan Kara return ret; 880ac27a0ecSDave Kleikamp } 881ac27a0ecSDave Kleikamp 8828b0f165fSAnatol Pomozov static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock, 8838b0f165fSAnatol Pomozov struct buffer_head *bh_result, int create); 8842058f83aSMichael Halcrow 8852058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION 8862058f83aSMichael Halcrow static int ext4_block_write_begin(struct page *page, loff_t pos, unsigned len, 8872058f83aSMichael Halcrow get_block_t *get_block) 8882058f83aSMichael Halcrow { 8892058f83aSMichael Halcrow unsigned from = pos & (PAGE_CACHE_SIZE - 1); 8902058f83aSMichael Halcrow unsigned to = from + len; 8912058f83aSMichael Halcrow struct inode *inode = page->mapping->host; 8922058f83aSMichael Halcrow unsigned block_start, block_end; 8932058f83aSMichael Halcrow sector_t block; 8942058f83aSMichael Halcrow int err = 0; 8952058f83aSMichael Halcrow unsigned blocksize = inode->i_sb->s_blocksize; 8962058f83aSMichael Halcrow unsigned bbits; 8972058f83aSMichael Halcrow struct buffer_head *bh, *head, *wait[2], **wait_bh = wait; 8982058f83aSMichael Halcrow bool decrypt = false; 8992058f83aSMichael Halcrow 9002058f83aSMichael Halcrow BUG_ON(!PageLocked(page)); 9012058f83aSMichael Halcrow BUG_ON(from > PAGE_CACHE_SIZE); 9022058f83aSMichael Halcrow BUG_ON(to > PAGE_CACHE_SIZE); 9032058f83aSMichael Halcrow BUG_ON(from > to); 9042058f83aSMichael Halcrow 9052058f83aSMichael Halcrow if (!page_has_buffers(page)) 9062058f83aSMichael Halcrow create_empty_buffers(page, blocksize, 0); 9072058f83aSMichael Halcrow head = page_buffers(page); 9082058f83aSMichael Halcrow bbits = ilog2(blocksize); 9092058f83aSMichael Halcrow block = (sector_t)page->index << (PAGE_CACHE_SHIFT - bbits); 9102058f83aSMichael Halcrow 9112058f83aSMichael Halcrow for (bh = head, block_start = 0; bh != head || !block_start; 9122058f83aSMichael Halcrow block++, block_start = block_end, bh = bh->b_this_page) { 9132058f83aSMichael Halcrow block_end = block_start + blocksize; 9142058f83aSMichael Halcrow if (block_end <= from || block_start >= to) { 9152058f83aSMichael Halcrow if (PageUptodate(page)) { 9162058f83aSMichael Halcrow if (!buffer_uptodate(bh)) 9172058f83aSMichael Halcrow set_buffer_uptodate(bh); 9182058f83aSMichael Halcrow } 9192058f83aSMichael Halcrow continue; 9202058f83aSMichael Halcrow } 9212058f83aSMichael Halcrow if (buffer_new(bh)) 9222058f83aSMichael Halcrow clear_buffer_new(bh); 9232058f83aSMichael Halcrow if (!buffer_mapped(bh)) { 9242058f83aSMichael Halcrow WARN_ON(bh->b_size != blocksize); 9252058f83aSMichael Halcrow err = get_block(inode, block, bh, 1); 9262058f83aSMichael Halcrow if (err) 9272058f83aSMichael Halcrow break; 9282058f83aSMichael Halcrow if (buffer_new(bh)) { 9292058f83aSMichael Halcrow unmap_underlying_metadata(bh->b_bdev, 9302058f83aSMichael Halcrow bh->b_blocknr); 9312058f83aSMichael Halcrow if (PageUptodate(page)) { 9322058f83aSMichael Halcrow clear_buffer_new(bh); 9332058f83aSMichael Halcrow set_buffer_uptodate(bh); 9342058f83aSMichael Halcrow mark_buffer_dirty(bh); 9352058f83aSMichael Halcrow continue; 9362058f83aSMichael Halcrow } 9372058f83aSMichael Halcrow if (block_end > to || block_start < from) 9382058f83aSMichael Halcrow zero_user_segments(page, to, block_end, 9392058f83aSMichael Halcrow block_start, from); 9402058f83aSMichael Halcrow continue; 9412058f83aSMichael Halcrow } 9422058f83aSMichael Halcrow } 9432058f83aSMichael Halcrow if (PageUptodate(page)) { 9442058f83aSMichael Halcrow if (!buffer_uptodate(bh)) 9452058f83aSMichael Halcrow set_buffer_uptodate(bh); 9462058f83aSMichael Halcrow continue; 9472058f83aSMichael Halcrow } 9482058f83aSMichael Halcrow if (!buffer_uptodate(bh) && !buffer_delay(bh) && 9492058f83aSMichael Halcrow !buffer_unwritten(bh) && 9502058f83aSMichael Halcrow (block_start < from || block_end > to)) { 9512058f83aSMichael Halcrow ll_rw_block(READ, 1, &bh); 9522058f83aSMichael Halcrow *wait_bh++ = bh; 9532058f83aSMichael Halcrow decrypt = ext4_encrypted_inode(inode) && 9542058f83aSMichael Halcrow S_ISREG(inode->i_mode); 9552058f83aSMichael Halcrow } 9562058f83aSMichael Halcrow } 9572058f83aSMichael Halcrow /* 9582058f83aSMichael Halcrow * If we issued read requests, let them complete. 9592058f83aSMichael Halcrow */ 9602058f83aSMichael Halcrow while (wait_bh > wait) { 9612058f83aSMichael Halcrow wait_on_buffer(*--wait_bh); 9622058f83aSMichael Halcrow if (!buffer_uptodate(*wait_bh)) 9632058f83aSMichael Halcrow err = -EIO; 9642058f83aSMichael Halcrow } 9652058f83aSMichael Halcrow if (unlikely(err)) 9662058f83aSMichael Halcrow page_zero_new_buffers(page, from, to); 9672058f83aSMichael Halcrow else if (decrypt) 9683684de8cSTheodore Ts'o err = ext4_decrypt(page); 9692058f83aSMichael Halcrow return err; 9702058f83aSMichael Halcrow } 9712058f83aSMichael Halcrow #endif 9722058f83aSMichael Halcrow 973bfc1af65SNick Piggin static int ext4_write_begin(struct file *file, struct address_space *mapping, 974bfc1af65SNick Piggin loff_t pos, unsigned len, unsigned flags, 975bfc1af65SNick Piggin struct page **pagep, void **fsdata) 976ac27a0ecSDave Kleikamp { 977bfc1af65SNick Piggin struct inode *inode = mapping->host; 9781938a150SAneesh Kumar K.V int ret, needed_blocks; 979ac27a0ecSDave Kleikamp handle_t *handle; 980ac27a0ecSDave Kleikamp int retries = 0; 981bfc1af65SNick Piggin struct page *page; 982bfc1af65SNick Piggin pgoff_t index; 983bfc1af65SNick Piggin unsigned from, to; 984bfc1af65SNick Piggin 9859bffad1eSTheodore Ts'o trace_ext4_write_begin(inode, pos, len, flags); 9861938a150SAneesh Kumar K.V /* 9871938a150SAneesh Kumar K.V * Reserve one block more for addition to orphan list in case 9881938a150SAneesh Kumar K.V * we allocate blocks but write fails for some reason 9891938a150SAneesh Kumar K.V */ 9901938a150SAneesh Kumar K.V needed_blocks = ext4_writepage_trans_blocks(inode) + 1; 991bfc1af65SNick Piggin index = pos >> PAGE_CACHE_SHIFT; 992bfc1af65SNick Piggin from = pos & (PAGE_CACHE_SIZE - 1); 993bfc1af65SNick Piggin to = from + len; 994ac27a0ecSDave Kleikamp 995f19d5870STao Ma if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) { 996f19d5870STao Ma ret = ext4_try_to_write_inline_data(mapping, inode, pos, len, 997f19d5870STao Ma flags, pagep); 998f19d5870STao Ma if (ret < 0) 99947564bfbSTheodore Ts'o return ret; 100047564bfbSTheodore Ts'o if (ret == 1) 100147564bfbSTheodore Ts'o return 0; 1002f19d5870STao Ma } 1003f19d5870STao Ma 100447564bfbSTheodore Ts'o /* 100547564bfbSTheodore Ts'o * grab_cache_page_write_begin() can take a long time if the 100647564bfbSTheodore Ts'o * system is thrashing due to memory pressure, or if the page 100747564bfbSTheodore Ts'o * is being written back. So grab it first before we start 100847564bfbSTheodore Ts'o * the transaction handle. This also allows us to allocate 100947564bfbSTheodore Ts'o * the page (if needed) without using GFP_NOFS. 101047564bfbSTheodore Ts'o */ 101147564bfbSTheodore Ts'o retry_grab: 101254566b2cSNick Piggin page = grab_cache_page_write_begin(mapping, index, flags); 101347564bfbSTheodore Ts'o if (!page) 101447564bfbSTheodore Ts'o return -ENOMEM; 101547564bfbSTheodore Ts'o unlock_page(page); 101647564bfbSTheodore Ts'o 101747564bfbSTheodore Ts'o retry_journal: 10189924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks); 1019ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 102047564bfbSTheodore Ts'o page_cache_release(page); 102147564bfbSTheodore Ts'o return PTR_ERR(handle); 1022cf108bcaSJan Kara } 1023f19d5870STao Ma 102447564bfbSTheodore Ts'o lock_page(page); 102547564bfbSTheodore Ts'o if (page->mapping != mapping) { 102647564bfbSTheodore Ts'o /* The page got truncated from under us */ 102747564bfbSTheodore Ts'o unlock_page(page); 102847564bfbSTheodore Ts'o page_cache_release(page); 1029cf108bcaSJan Kara ext4_journal_stop(handle); 103047564bfbSTheodore Ts'o goto retry_grab; 1031cf108bcaSJan Kara } 10327afe5aa5SDmitry Monakhov /* In case writeback began while the page was unlocked */ 10337afe5aa5SDmitry Monakhov wait_for_stable_page(page); 1034cf108bcaSJan Kara 10352058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION 10362058f83aSMichael Halcrow if (ext4_should_dioread_nolock(inode)) 10372058f83aSMichael Halcrow ret = ext4_block_write_begin(page, pos, len, 10382058f83aSMichael Halcrow ext4_get_block_write); 10392058f83aSMichael Halcrow else 10402058f83aSMichael Halcrow ret = ext4_block_write_begin(page, pos, len, 10412058f83aSMichael Halcrow ext4_get_block); 10422058f83aSMichael Halcrow #else 1043744692dcSJiaying Zhang if (ext4_should_dioread_nolock(inode)) 10446e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_get_block_write); 1045744692dcSJiaying Zhang else 10466e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_get_block); 10472058f83aSMichael Halcrow #endif 1048bfc1af65SNick Piggin if (!ret && ext4_should_journal_data(inode)) { 1049f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_buffers(page), 1050f19d5870STao Ma from, to, NULL, 1051f19d5870STao Ma do_journal_get_write_access); 1052b46be050SAndrey Savochkin } 1053bfc1af65SNick Piggin 1054bfc1af65SNick Piggin if (ret) { 1055bfc1af65SNick Piggin unlock_page(page); 1056ae4d5372SAneesh Kumar K.V /* 10576e1db88dSChristoph Hellwig * __block_write_begin may have instantiated a few blocks 1058ae4d5372SAneesh Kumar K.V * outside i_size. Trim these off again. Don't need 1059ae4d5372SAneesh Kumar K.V * i_size_read because we hold i_mutex. 10601938a150SAneesh Kumar K.V * 10611938a150SAneesh Kumar K.V * Add inode to orphan list in case we crash before 10621938a150SAneesh Kumar K.V * truncate finishes 1063ae4d5372SAneesh Kumar K.V */ 1064ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 10651938a150SAneesh Kumar K.V ext4_orphan_add(handle, inode); 10661938a150SAneesh Kumar K.V 10671938a150SAneesh Kumar K.V ext4_journal_stop(handle); 10681938a150SAneesh Kumar K.V if (pos + len > inode->i_size) { 1069b9a4207dSJan Kara ext4_truncate_failed_write(inode); 10701938a150SAneesh Kumar K.V /* 1071ffacfa7aSJan Kara * If truncate failed early the inode might 10721938a150SAneesh Kumar K.V * still be on the orphan list; we need to 10731938a150SAneesh Kumar K.V * make sure the inode is removed from the 10741938a150SAneesh Kumar K.V * orphan list in that case. 10751938a150SAneesh Kumar K.V */ 10761938a150SAneesh Kumar K.V if (inode->i_nlink) 10771938a150SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 10781938a150SAneesh Kumar K.V } 1079bfc1af65SNick Piggin 108047564bfbSTheodore Ts'o if (ret == -ENOSPC && 108147564bfbSTheodore Ts'o ext4_should_retry_alloc(inode->i_sb, &retries)) 108247564bfbSTheodore Ts'o goto retry_journal; 108347564bfbSTheodore Ts'o page_cache_release(page); 108447564bfbSTheodore Ts'o return ret; 108547564bfbSTheodore Ts'o } 108647564bfbSTheodore Ts'o *pagep = page; 1087ac27a0ecSDave Kleikamp return ret; 1088ac27a0ecSDave Kleikamp } 1089ac27a0ecSDave Kleikamp 1090bfc1af65SNick Piggin /* For write_end() in data=journal mode */ 1091bfc1af65SNick Piggin static int write_end_fn(handle_t *handle, struct buffer_head *bh) 1092ac27a0ecSDave Kleikamp { 109313fca323STheodore Ts'o int ret; 1094ac27a0ecSDave Kleikamp if (!buffer_mapped(bh) || buffer_freed(bh)) 1095ac27a0ecSDave Kleikamp return 0; 1096ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 109713fca323STheodore Ts'o ret = ext4_handle_dirty_metadata(handle, NULL, bh); 109813fca323STheodore Ts'o clear_buffer_meta(bh); 109913fca323STheodore Ts'o clear_buffer_prio(bh); 110013fca323STheodore Ts'o return ret; 1101ac27a0ecSDave Kleikamp } 1102ac27a0ecSDave Kleikamp 1103eed4333fSZheng Liu /* 1104eed4333fSZheng Liu * We need to pick up the new inode size which generic_commit_write gave us 1105eed4333fSZheng Liu * `file' can be NULL - eg, when called from page_symlink(). 1106eed4333fSZheng Liu * 1107eed4333fSZheng Liu * ext4 never places buffers on inode->i_mapping->private_list. metadata 1108eed4333fSZheng Liu * buffers are managed internally. 1109eed4333fSZheng Liu */ 1110eed4333fSZheng Liu static int ext4_write_end(struct file *file, 1111f8514083SAneesh Kumar K.V struct address_space *mapping, 1112f8514083SAneesh Kumar K.V loff_t pos, unsigned len, unsigned copied, 1113f8514083SAneesh Kumar K.V struct page *page, void *fsdata) 1114f8514083SAneesh Kumar K.V { 1115f8514083SAneesh Kumar K.V handle_t *handle = ext4_journal_current_handle(); 1116eed4333fSZheng Liu struct inode *inode = mapping->host; 11170572639fSXiaoguang Wang loff_t old_size = inode->i_size; 1118eed4333fSZheng Liu int ret = 0, ret2; 1119eed4333fSZheng Liu int i_size_changed = 0; 1120eed4333fSZheng Liu 1121eed4333fSZheng Liu trace_ext4_write_end(inode, pos, len, copied); 1122eed4333fSZheng Liu if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) { 1123eed4333fSZheng Liu ret = ext4_jbd2_file_inode(handle, inode); 1124eed4333fSZheng Liu if (ret) { 1125eed4333fSZheng Liu unlock_page(page); 1126eed4333fSZheng Liu page_cache_release(page); 1127eed4333fSZheng Liu goto errout; 1128eed4333fSZheng Liu } 1129eed4333fSZheng Liu } 1130f8514083SAneesh Kumar K.V 113142c832deSTheodore Ts'o if (ext4_has_inline_data(inode)) { 113242c832deSTheodore Ts'o ret = ext4_write_inline_data_end(inode, pos, len, 1133f19d5870STao Ma copied, page); 113442c832deSTheodore Ts'o if (ret < 0) 113542c832deSTheodore Ts'o goto errout; 113642c832deSTheodore Ts'o copied = ret; 113742c832deSTheodore Ts'o } else 1138f19d5870STao Ma copied = block_write_end(file, mapping, pos, 1139f19d5870STao Ma len, copied, page, fsdata); 1140f8514083SAneesh Kumar K.V /* 11414631dbf6SDmitry Monakhov * it's important to update i_size while still holding page lock: 1142f8514083SAneesh Kumar K.V * page writeout could otherwise come in and zero beyond i_size. 1143f8514083SAneesh Kumar K.V */ 11444631dbf6SDmitry Monakhov i_size_changed = ext4_update_inode_size(inode, pos + copied); 1145f8514083SAneesh Kumar K.V unlock_page(page); 1146f8514083SAneesh Kumar K.V page_cache_release(page); 1147f8514083SAneesh Kumar K.V 11480572639fSXiaoguang Wang if (old_size < pos) 11490572639fSXiaoguang Wang pagecache_isize_extended(inode, old_size, pos); 1150f8514083SAneesh Kumar K.V /* 1151f8514083SAneesh Kumar K.V * Don't mark the inode dirty under page lock. First, it unnecessarily 1152f8514083SAneesh Kumar K.V * makes the holding time of page lock longer. Second, it forces lock 1153f8514083SAneesh Kumar K.V * ordering of page lock and transaction start for journaling 1154f8514083SAneesh Kumar K.V * filesystems. 1155f8514083SAneesh Kumar K.V */ 1156f8514083SAneesh Kumar K.V if (i_size_changed) 1157f8514083SAneesh Kumar K.V ext4_mark_inode_dirty(handle, inode); 1158f8514083SAneesh Kumar K.V 1159ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 1160f8514083SAneesh Kumar K.V /* if we have allocated more blocks and copied 1161f8514083SAneesh Kumar K.V * less. We will have blocks allocated outside 1162f8514083SAneesh Kumar K.V * inode->i_size. So truncate them 1163f8514083SAneesh Kumar K.V */ 1164f8514083SAneesh Kumar K.V ext4_orphan_add(handle, inode); 116574d553aaSTheodore Ts'o errout: 1166617ba13bSMingming Cao ret2 = ext4_journal_stop(handle); 1167ac27a0ecSDave Kleikamp if (!ret) 1168ac27a0ecSDave Kleikamp ret = ret2; 1169bfc1af65SNick Piggin 1170f8514083SAneesh Kumar K.V if (pos + len > inode->i_size) { 1171b9a4207dSJan Kara ext4_truncate_failed_write(inode); 1172f8514083SAneesh Kumar K.V /* 1173ffacfa7aSJan Kara * If truncate failed early the inode might still be 1174f8514083SAneesh Kumar K.V * on the orphan list; we need to make sure the inode 1175f8514083SAneesh Kumar K.V * is removed from the orphan list in that case. 1176f8514083SAneesh Kumar K.V */ 1177f8514083SAneesh Kumar K.V if (inode->i_nlink) 1178f8514083SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 1179f8514083SAneesh Kumar K.V } 1180f8514083SAneesh Kumar K.V 1181bfc1af65SNick Piggin return ret ? ret : copied; 1182ac27a0ecSDave Kleikamp } 1183ac27a0ecSDave Kleikamp 1184b90197b6STheodore Ts'o /* 1185b90197b6STheodore Ts'o * This is a private version of page_zero_new_buffers() which doesn't 1186b90197b6STheodore Ts'o * set the buffer to be dirty, since in data=journalled mode we need 1187b90197b6STheodore Ts'o * to call ext4_handle_dirty_metadata() instead. 1188b90197b6STheodore Ts'o */ 1189b90197b6STheodore Ts'o static void zero_new_buffers(struct page *page, unsigned from, unsigned to) 1190b90197b6STheodore Ts'o { 1191b90197b6STheodore Ts'o unsigned int block_start = 0, block_end; 1192b90197b6STheodore Ts'o struct buffer_head *head, *bh; 1193b90197b6STheodore Ts'o 1194b90197b6STheodore Ts'o bh = head = page_buffers(page); 1195b90197b6STheodore Ts'o do { 1196b90197b6STheodore Ts'o block_end = block_start + bh->b_size; 1197b90197b6STheodore Ts'o if (buffer_new(bh)) { 1198b90197b6STheodore Ts'o if (block_end > from && block_start < to) { 1199b90197b6STheodore Ts'o if (!PageUptodate(page)) { 1200b90197b6STheodore Ts'o unsigned start, size; 1201b90197b6STheodore Ts'o 1202b90197b6STheodore Ts'o start = max(from, block_start); 1203b90197b6STheodore Ts'o size = min(to, block_end) - start; 1204b90197b6STheodore Ts'o 1205b90197b6STheodore Ts'o zero_user(page, start, size); 1206b90197b6STheodore Ts'o set_buffer_uptodate(bh); 1207b90197b6STheodore Ts'o } 1208b90197b6STheodore Ts'o clear_buffer_new(bh); 1209b90197b6STheodore Ts'o } 1210b90197b6STheodore Ts'o } 1211b90197b6STheodore Ts'o block_start = block_end; 1212b90197b6STheodore Ts'o bh = bh->b_this_page; 1213b90197b6STheodore Ts'o } while (bh != head); 1214b90197b6STheodore Ts'o } 1215b90197b6STheodore Ts'o 1216bfc1af65SNick Piggin static int ext4_journalled_write_end(struct file *file, 1217bfc1af65SNick Piggin struct address_space *mapping, 1218bfc1af65SNick Piggin loff_t pos, unsigned len, unsigned copied, 1219bfc1af65SNick Piggin struct page *page, void *fsdata) 1220ac27a0ecSDave Kleikamp { 1221617ba13bSMingming Cao handle_t *handle = ext4_journal_current_handle(); 1222bfc1af65SNick Piggin struct inode *inode = mapping->host; 12230572639fSXiaoguang Wang loff_t old_size = inode->i_size; 1224ac27a0ecSDave Kleikamp int ret = 0, ret2; 1225ac27a0ecSDave Kleikamp int partial = 0; 1226bfc1af65SNick Piggin unsigned from, to; 12274631dbf6SDmitry Monakhov int size_changed = 0; 1228ac27a0ecSDave Kleikamp 12299bffad1eSTheodore Ts'o trace_ext4_journalled_write_end(inode, pos, len, copied); 1230bfc1af65SNick Piggin from = pos & (PAGE_CACHE_SIZE - 1); 1231bfc1af65SNick Piggin to = from + len; 1232bfc1af65SNick Piggin 1233441c8508SCurt Wohlgemuth BUG_ON(!ext4_handle_valid(handle)); 1234441c8508SCurt Wohlgemuth 12353fdcfb66STao Ma if (ext4_has_inline_data(inode)) 12363fdcfb66STao Ma copied = ext4_write_inline_data_end(inode, pos, len, 12373fdcfb66STao Ma copied, page); 12383fdcfb66STao Ma else { 1239bfc1af65SNick Piggin if (copied < len) { 1240bfc1af65SNick Piggin if (!PageUptodate(page)) 1241bfc1af65SNick Piggin copied = 0; 1242b90197b6STheodore Ts'o zero_new_buffers(page, from+copied, to); 1243bfc1af65SNick Piggin } 1244ac27a0ecSDave Kleikamp 1245f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_buffers(page), from, 1246bfc1af65SNick Piggin to, &partial, write_end_fn); 1247ac27a0ecSDave Kleikamp if (!partial) 1248ac27a0ecSDave Kleikamp SetPageUptodate(page); 12493fdcfb66STao Ma } 12504631dbf6SDmitry Monakhov size_changed = ext4_update_inode_size(inode, pos + copied); 125119f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_JDATA); 12522d859db3SJan Kara EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid; 12534631dbf6SDmitry Monakhov unlock_page(page); 12544631dbf6SDmitry Monakhov page_cache_release(page); 12554631dbf6SDmitry Monakhov 12560572639fSXiaoguang Wang if (old_size < pos) 12570572639fSXiaoguang Wang pagecache_isize_extended(inode, old_size, pos); 12580572639fSXiaoguang Wang 12594631dbf6SDmitry Monakhov if (size_changed) { 1260617ba13bSMingming Cao ret2 = ext4_mark_inode_dirty(handle, inode); 1261ac27a0ecSDave Kleikamp if (!ret) 1262ac27a0ecSDave Kleikamp ret = ret2; 1263ac27a0ecSDave Kleikamp } 1264bfc1af65SNick Piggin 1265ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 1266f8514083SAneesh Kumar K.V /* if we have allocated more blocks and copied 1267f8514083SAneesh Kumar K.V * less. We will have blocks allocated outside 1268f8514083SAneesh Kumar K.V * inode->i_size. So truncate them 1269f8514083SAneesh Kumar K.V */ 1270f8514083SAneesh Kumar K.V ext4_orphan_add(handle, inode); 1271f8514083SAneesh Kumar K.V 1272617ba13bSMingming Cao ret2 = ext4_journal_stop(handle); 1273ac27a0ecSDave Kleikamp if (!ret) 1274ac27a0ecSDave Kleikamp ret = ret2; 1275f8514083SAneesh Kumar K.V if (pos + len > inode->i_size) { 1276b9a4207dSJan Kara ext4_truncate_failed_write(inode); 1277f8514083SAneesh Kumar K.V /* 1278ffacfa7aSJan Kara * If truncate failed early the inode might still be 1279f8514083SAneesh Kumar K.V * on the orphan list; we need to make sure the inode 1280f8514083SAneesh Kumar K.V * is removed from the orphan list in that case. 1281f8514083SAneesh Kumar K.V */ 1282f8514083SAneesh Kumar K.V if (inode->i_nlink) 1283f8514083SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 1284f8514083SAneesh Kumar K.V } 1285bfc1af65SNick Piggin 1286bfc1af65SNick Piggin return ret ? ret : copied; 1287ac27a0ecSDave Kleikamp } 1288d2a17637SMingming Cao 12899d0be502STheodore Ts'o /* 1290c27e43a1SEric Whitney * Reserve space for a single cluster 12919d0be502STheodore Ts'o */ 1292c27e43a1SEric Whitney static int ext4_da_reserve_space(struct inode *inode) 1293d2a17637SMingming Cao { 1294d2a17637SMingming Cao struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 12950637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 12965dd4056dSChristoph Hellwig int ret; 1297d2a17637SMingming Cao 129860e58e0fSMingming Cao /* 129972b8ab9dSEric Sandeen * We will charge metadata quota at writeout time; this saves 130072b8ab9dSEric Sandeen * us from metadata over-estimation, though we may go over by 130172b8ab9dSEric Sandeen * a small amount in the end. Here we just reserve for data. 130260e58e0fSMingming Cao */ 13037b415bf6SAditya Kali ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1)); 13045dd4056dSChristoph Hellwig if (ret) 13055dd4056dSChristoph Hellwig return ret; 130603179fe9STheodore Ts'o 130703179fe9STheodore Ts'o spin_lock(&ei->i_block_reservation_lock); 130871d4f7d0STheodore Ts'o if (ext4_claim_free_clusters(sbi, 1, 0)) { 130903179fe9STheodore Ts'o spin_unlock(&ei->i_block_reservation_lock); 131003179fe9STheodore Ts'o dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1)); 1311d2a17637SMingming Cao return -ENOSPC; 1312d2a17637SMingming Cao } 13139d0be502STheodore Ts'o ei->i_reserved_data_blocks++; 1314c27e43a1SEric Whitney trace_ext4_da_reserve_space(inode); 13150637c6f4STheodore Ts'o spin_unlock(&ei->i_block_reservation_lock); 131639bc680aSDmitry Monakhov 1317d2a17637SMingming Cao return 0; /* success */ 1318d2a17637SMingming Cao } 1319d2a17637SMingming Cao 132012219aeaSAneesh Kumar K.V static void ext4_da_release_space(struct inode *inode, int to_free) 1321d2a17637SMingming Cao { 1322d2a17637SMingming Cao struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 13230637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 1324d2a17637SMingming Cao 1325cd213226SMingming Cao if (!to_free) 1326cd213226SMingming Cao return; /* Nothing to release, exit */ 1327cd213226SMingming Cao 1328d2a17637SMingming Cao spin_lock(&EXT4_I(inode)->i_block_reservation_lock); 1329cd213226SMingming Cao 13305a58ec87SLi Zefan trace_ext4_da_release_space(inode, to_free); 13310637c6f4STheodore Ts'o if (unlikely(to_free > ei->i_reserved_data_blocks)) { 1332cd213226SMingming Cao /* 13330637c6f4STheodore Ts'o * if there aren't enough reserved blocks, then the 13340637c6f4STheodore Ts'o * counter is messed up somewhere. Since this 13350637c6f4STheodore Ts'o * function is called from invalidate page, it's 13360637c6f4STheodore Ts'o * harmless to return without any action. 1337cd213226SMingming Cao */ 13388de5c325STheodore Ts'o ext4_warning(inode->i_sb, "ext4_da_release_space: " 13390637c6f4STheodore Ts'o "ino %lu, to_free %d with only %d reserved " 13401084f252STheodore Ts'o "data blocks", inode->i_ino, to_free, 13410637c6f4STheodore Ts'o ei->i_reserved_data_blocks); 13420637c6f4STheodore Ts'o WARN_ON(1); 13430637c6f4STheodore Ts'o to_free = ei->i_reserved_data_blocks; 13440637c6f4STheodore Ts'o } 13450637c6f4STheodore Ts'o ei->i_reserved_data_blocks -= to_free; 13460637c6f4STheodore Ts'o 134772b8ab9dSEric Sandeen /* update fs dirty data blocks counter */ 134857042651STheodore Ts'o percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free); 1349d2a17637SMingming Cao 1350d2a17637SMingming Cao spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); 135160e58e0fSMingming Cao 13527b415bf6SAditya Kali dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free)); 1353d2a17637SMingming Cao } 1354d2a17637SMingming Cao 1355d2a17637SMingming Cao static void ext4_da_page_release_reservation(struct page *page, 1356ca99fdd2SLukas Czerner unsigned int offset, 1357ca99fdd2SLukas Czerner unsigned int length) 1358d2a17637SMingming Cao { 13599705acd6SLukas Czerner int to_release = 0, contiguous_blks = 0; 1360d2a17637SMingming Cao struct buffer_head *head, *bh; 1361d2a17637SMingming Cao unsigned int curr_off = 0; 13627b415bf6SAditya Kali struct inode *inode = page->mapping->host; 13637b415bf6SAditya Kali struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 1364ca99fdd2SLukas Czerner unsigned int stop = offset + length; 13657b415bf6SAditya Kali int num_clusters; 136651865fdaSZheng Liu ext4_fsblk_t lblk; 1367d2a17637SMingming Cao 1368ca99fdd2SLukas Czerner BUG_ON(stop > PAGE_CACHE_SIZE || stop < length); 1369ca99fdd2SLukas Czerner 1370d2a17637SMingming Cao head = page_buffers(page); 1371d2a17637SMingming Cao bh = head; 1372d2a17637SMingming Cao do { 1373d2a17637SMingming Cao unsigned int next_off = curr_off + bh->b_size; 1374d2a17637SMingming Cao 1375ca99fdd2SLukas Czerner if (next_off > stop) 1376ca99fdd2SLukas Czerner break; 1377ca99fdd2SLukas Czerner 1378d2a17637SMingming Cao if ((offset <= curr_off) && (buffer_delay(bh))) { 1379d2a17637SMingming Cao to_release++; 13809705acd6SLukas Czerner contiguous_blks++; 1381d2a17637SMingming Cao clear_buffer_delay(bh); 13829705acd6SLukas Czerner } else if (contiguous_blks) { 13839705acd6SLukas Czerner lblk = page->index << 13849705acd6SLukas Czerner (PAGE_CACHE_SHIFT - inode->i_blkbits); 13859705acd6SLukas Czerner lblk += (curr_off >> inode->i_blkbits) - 13869705acd6SLukas Czerner contiguous_blks; 13879705acd6SLukas Czerner ext4_es_remove_extent(inode, lblk, contiguous_blks); 13889705acd6SLukas Czerner contiguous_blks = 0; 1389d2a17637SMingming Cao } 1390d2a17637SMingming Cao curr_off = next_off; 1391d2a17637SMingming Cao } while ((bh = bh->b_this_page) != head); 13927b415bf6SAditya Kali 13939705acd6SLukas Czerner if (contiguous_blks) { 139451865fdaSZheng Liu lblk = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits); 13959705acd6SLukas Czerner lblk += (curr_off >> inode->i_blkbits) - contiguous_blks; 13969705acd6SLukas Czerner ext4_es_remove_extent(inode, lblk, contiguous_blks); 139751865fdaSZheng Liu } 139851865fdaSZheng Liu 13997b415bf6SAditya Kali /* If we have released all the blocks belonging to a cluster, then we 14007b415bf6SAditya Kali * need to release the reserved space for that cluster. */ 14017b415bf6SAditya Kali num_clusters = EXT4_NUM_B2C(sbi, to_release); 14027b415bf6SAditya Kali while (num_clusters > 0) { 14037b415bf6SAditya Kali lblk = (page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits)) + 14047b415bf6SAditya Kali ((num_clusters - 1) << sbi->s_cluster_bits); 14057b415bf6SAditya Kali if (sbi->s_cluster_ratio == 1 || 14067d1b1fbcSZheng Liu !ext4_find_delalloc_cluster(inode, lblk)) 14077b415bf6SAditya Kali ext4_da_release_space(inode, 1); 14087b415bf6SAditya Kali 14097b415bf6SAditya Kali num_clusters--; 14107b415bf6SAditya Kali } 1411d2a17637SMingming Cao } 1412ac27a0ecSDave Kleikamp 1413ac27a0ecSDave Kleikamp /* 141464769240SAlex Tomas * Delayed allocation stuff 141564769240SAlex Tomas */ 141664769240SAlex Tomas 14174e7ea81dSJan Kara struct mpage_da_data { 14184e7ea81dSJan Kara struct inode *inode; 14194e7ea81dSJan Kara struct writeback_control *wbc; 14206b523df4SJan Kara 14214e7ea81dSJan Kara pgoff_t first_page; /* The first page to write */ 14224e7ea81dSJan Kara pgoff_t next_page; /* Current page to examine */ 14234e7ea81dSJan Kara pgoff_t last_page; /* Last page to examine */ 142464769240SAlex Tomas /* 14254e7ea81dSJan Kara * Extent to map - this can be after first_page because that can be 14264e7ea81dSJan Kara * fully mapped. We somewhat abuse m_flags to store whether the extent 14274e7ea81dSJan Kara * is delalloc or unwritten. 142864769240SAlex Tomas */ 14294e7ea81dSJan Kara struct ext4_map_blocks map; 14304e7ea81dSJan Kara struct ext4_io_submit io_submit; /* IO submission data */ 14314e7ea81dSJan Kara }; 143264769240SAlex Tomas 14334e7ea81dSJan Kara static void mpage_release_unused_pages(struct mpage_da_data *mpd, 14344e7ea81dSJan Kara bool invalidate) 1435c4a0c46eSAneesh Kumar K.V { 1436c4a0c46eSAneesh Kumar K.V int nr_pages, i; 1437c4a0c46eSAneesh Kumar K.V pgoff_t index, end; 1438c4a0c46eSAneesh Kumar K.V struct pagevec pvec; 1439c4a0c46eSAneesh Kumar K.V struct inode *inode = mpd->inode; 1440c4a0c46eSAneesh Kumar K.V struct address_space *mapping = inode->i_mapping; 14414e7ea81dSJan Kara 14424e7ea81dSJan Kara /* This is necessary when next_page == 0. */ 14434e7ea81dSJan Kara if (mpd->first_page >= mpd->next_page) 14444e7ea81dSJan Kara return; 1445c4a0c46eSAneesh Kumar K.V 1446c7f5938aSCurt Wohlgemuth index = mpd->first_page; 1447c7f5938aSCurt Wohlgemuth end = mpd->next_page - 1; 14484e7ea81dSJan Kara if (invalidate) { 14494e7ea81dSJan Kara ext4_lblk_t start, last; 145051865fdaSZheng Liu start = index << (PAGE_CACHE_SHIFT - inode->i_blkbits); 145151865fdaSZheng Liu last = end << (PAGE_CACHE_SHIFT - inode->i_blkbits); 145251865fdaSZheng Liu ext4_es_remove_extent(inode, start, last - start + 1); 14534e7ea81dSJan Kara } 145451865fdaSZheng Liu 145566bea92cSEric Sandeen pagevec_init(&pvec, 0); 1456c4a0c46eSAneesh Kumar K.V while (index <= end) { 1457c4a0c46eSAneesh Kumar K.V nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE); 1458c4a0c46eSAneesh Kumar K.V if (nr_pages == 0) 1459c4a0c46eSAneesh Kumar K.V break; 1460c4a0c46eSAneesh Kumar K.V for (i = 0; i < nr_pages; i++) { 1461c4a0c46eSAneesh Kumar K.V struct page *page = pvec.pages[i]; 14629b1d0998SJan Kara if (page->index > end) 1463c4a0c46eSAneesh Kumar K.V break; 1464c4a0c46eSAneesh Kumar K.V BUG_ON(!PageLocked(page)); 1465c4a0c46eSAneesh Kumar K.V BUG_ON(PageWriteback(page)); 14664e7ea81dSJan Kara if (invalidate) { 1467d47992f8SLukas Czerner block_invalidatepage(page, 0, PAGE_CACHE_SIZE); 1468c4a0c46eSAneesh Kumar K.V ClearPageUptodate(page); 14694e7ea81dSJan Kara } 1470c4a0c46eSAneesh Kumar K.V unlock_page(page); 1471c4a0c46eSAneesh Kumar K.V } 14729b1d0998SJan Kara index = pvec.pages[nr_pages - 1]->index + 1; 14739b1d0998SJan Kara pagevec_release(&pvec); 1474c4a0c46eSAneesh Kumar K.V } 1475c4a0c46eSAneesh Kumar K.V } 1476c4a0c46eSAneesh Kumar K.V 1477df22291fSAneesh Kumar K.V static void ext4_print_free_blocks(struct inode *inode) 1478df22291fSAneesh Kumar K.V { 1479df22291fSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 148092b97816STheodore Ts'o struct super_block *sb = inode->i_sb; 1481f78ee70dSLukas Czerner struct ext4_inode_info *ei = EXT4_I(inode); 148292b97816STheodore Ts'o 148392b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld", 14845dee5437STheodore Ts'o EXT4_C2B(EXT4_SB(inode->i_sb), 1485f78ee70dSLukas Czerner ext4_count_free_clusters(sb))); 148692b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Free/Dirty block details"); 148792b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "free_blocks=%lld", 1488f78ee70dSLukas Czerner (long long) EXT4_C2B(EXT4_SB(sb), 148957042651STheodore Ts'o percpu_counter_sum(&sbi->s_freeclusters_counter))); 149092b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld", 1491f78ee70dSLukas Czerner (long long) EXT4_C2B(EXT4_SB(sb), 14927b415bf6SAditya Kali percpu_counter_sum(&sbi->s_dirtyclusters_counter))); 149392b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Block reservation details"); 149492b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u", 1495f78ee70dSLukas Czerner ei->i_reserved_data_blocks); 1496df22291fSAneesh Kumar K.V return; 1497df22291fSAneesh Kumar K.V } 1498df22291fSAneesh Kumar K.V 1499c364b22cSAneesh Kumar K.V static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh) 150029fa89d0SAneesh Kumar K.V { 1501c364b22cSAneesh Kumar K.V return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh); 150229fa89d0SAneesh Kumar K.V } 150329fa89d0SAneesh Kumar K.V 150464769240SAlex Tomas /* 15055356f261SAditya Kali * This function is grabs code from the very beginning of 15065356f261SAditya Kali * ext4_map_blocks, but assumes that the caller is from delayed write 15075356f261SAditya Kali * time. This function looks up the requested blocks and sets the 15085356f261SAditya Kali * buffer delay bit under the protection of i_data_sem. 15095356f261SAditya Kali */ 15105356f261SAditya Kali static int ext4_da_map_blocks(struct inode *inode, sector_t iblock, 15115356f261SAditya Kali struct ext4_map_blocks *map, 15125356f261SAditya Kali struct buffer_head *bh) 15135356f261SAditya Kali { 1514d100eef2SZheng Liu struct extent_status es; 15155356f261SAditya Kali int retval; 15165356f261SAditya Kali sector_t invalid_block = ~((sector_t) 0xffff); 1517921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 1518921f266bSDmitry Monakhov struct ext4_map_blocks orig_map; 1519921f266bSDmitry Monakhov 1520921f266bSDmitry Monakhov memcpy(&orig_map, map, sizeof(*map)); 1521921f266bSDmitry Monakhov #endif 15225356f261SAditya Kali 15235356f261SAditya Kali if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es)) 15245356f261SAditya Kali invalid_block = ~0; 15255356f261SAditya Kali 15265356f261SAditya Kali map->m_flags = 0; 15275356f261SAditya Kali ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u," 15285356f261SAditya Kali "logical block %lu\n", inode->i_ino, map->m_len, 15295356f261SAditya Kali (unsigned long) map->m_lblk); 1530d100eef2SZheng Liu 1531d100eef2SZheng Liu /* Lookup extent status tree firstly */ 1532d100eef2SZheng Liu if (ext4_es_lookup_extent(inode, iblock, &es)) { 1533d100eef2SZheng Liu if (ext4_es_is_hole(&es)) { 1534d100eef2SZheng Liu retval = 0; 1535c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 1536d100eef2SZheng Liu goto add_delayed; 1537d100eef2SZheng Liu } 1538d100eef2SZheng Liu 1539d100eef2SZheng Liu /* 1540d100eef2SZheng Liu * Delayed extent could be allocated by fallocate. 1541d100eef2SZheng Liu * So we need to check it. 1542d100eef2SZheng Liu */ 1543d100eef2SZheng Liu if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) { 1544d100eef2SZheng Liu map_bh(bh, inode->i_sb, invalid_block); 1545d100eef2SZheng Liu set_buffer_new(bh); 1546d100eef2SZheng Liu set_buffer_delay(bh); 1547d100eef2SZheng Liu return 0; 1548d100eef2SZheng Liu } 1549d100eef2SZheng Liu 1550d100eef2SZheng Liu map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk; 1551d100eef2SZheng Liu retval = es.es_len - (iblock - es.es_lblk); 1552d100eef2SZheng Liu if (retval > map->m_len) 1553d100eef2SZheng Liu retval = map->m_len; 1554d100eef2SZheng Liu map->m_len = retval; 1555d100eef2SZheng Liu if (ext4_es_is_written(&es)) 1556d100eef2SZheng Liu map->m_flags |= EXT4_MAP_MAPPED; 1557d100eef2SZheng Liu else if (ext4_es_is_unwritten(&es)) 1558d100eef2SZheng Liu map->m_flags |= EXT4_MAP_UNWRITTEN; 1559d100eef2SZheng Liu else 1560d100eef2SZheng Liu BUG_ON(1); 1561d100eef2SZheng Liu 1562921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 1563921f266bSDmitry Monakhov ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0); 1564921f266bSDmitry Monakhov #endif 1565d100eef2SZheng Liu return retval; 1566d100eef2SZheng Liu } 1567d100eef2SZheng Liu 15685356f261SAditya Kali /* 15695356f261SAditya Kali * Try to see if we can get the block without requesting a new 15705356f261SAditya Kali * file system block. 15715356f261SAditya Kali */ 1572c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 1573cbd7584eSJan Kara if (ext4_has_inline_data(inode)) 15749c3569b5STao Ma retval = 0; 1575cbd7584eSJan Kara else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 15762f8e0a7cSZheng Liu retval = ext4_ext_map_blocks(NULL, inode, map, 0); 15775356f261SAditya Kali else 15782f8e0a7cSZheng Liu retval = ext4_ind_map_blocks(NULL, inode, map, 0); 15795356f261SAditya Kali 1580d100eef2SZheng Liu add_delayed: 15815356f261SAditya Kali if (retval == 0) { 1582f7fec032SZheng Liu int ret; 15835356f261SAditya Kali /* 15845356f261SAditya Kali * XXX: __block_prepare_write() unmaps passed block, 15855356f261SAditya Kali * is it OK? 15865356f261SAditya Kali */ 1587386ad67cSLukas Czerner /* 1588386ad67cSLukas Czerner * If the block was allocated from previously allocated cluster, 1589386ad67cSLukas Czerner * then we don't need to reserve it again. However we still need 1590386ad67cSLukas Czerner * to reserve metadata for every block we're going to write. 1591386ad67cSLukas Czerner */ 1592c27e43a1SEric Whitney if (EXT4_SB(inode->i_sb)->s_cluster_ratio == 1 || 1593cbd7584eSJan Kara !ext4_find_delalloc_cluster(inode, map->m_lblk)) { 1594c27e43a1SEric Whitney ret = ext4_da_reserve_space(inode); 1595f7fec032SZheng Liu if (ret) { 15965356f261SAditya Kali /* not enough space to reserve */ 1597f7fec032SZheng Liu retval = ret; 15985356f261SAditya Kali goto out_unlock; 15995356f261SAditya Kali } 1600f7fec032SZheng Liu } 16015356f261SAditya Kali 1602f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 1603fdc0212eSZheng Liu ~0, EXTENT_STATUS_DELAYED); 1604f7fec032SZheng Liu if (ret) { 1605f7fec032SZheng Liu retval = ret; 160651865fdaSZheng Liu goto out_unlock; 1607f7fec032SZheng Liu } 160851865fdaSZheng Liu 16095356f261SAditya Kali map_bh(bh, inode->i_sb, invalid_block); 16105356f261SAditya Kali set_buffer_new(bh); 16115356f261SAditya Kali set_buffer_delay(bh); 1612f7fec032SZheng Liu } else if (retval > 0) { 1613f7fec032SZheng Liu int ret; 16143be78c73STheodore Ts'o unsigned int status; 1615f7fec032SZheng Liu 161644fb851dSZheng Liu if (unlikely(retval != map->m_len)) { 161744fb851dSZheng Liu ext4_warning(inode->i_sb, 161844fb851dSZheng Liu "ES len assertion failed for inode " 161944fb851dSZheng Liu "%lu: retval %d != map->m_len %d", 162044fb851dSZheng Liu inode->i_ino, retval, map->m_len); 162144fb851dSZheng Liu WARN_ON(1); 1622921f266bSDmitry Monakhov } 1623921f266bSDmitry Monakhov 1624f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 1625f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 1626f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 1627f7fec032SZheng Liu map->m_pblk, status); 1628f7fec032SZheng Liu if (ret != 0) 1629f7fec032SZheng Liu retval = ret; 16305356f261SAditya Kali } 16315356f261SAditya Kali 16325356f261SAditya Kali out_unlock: 16335356f261SAditya Kali up_read((&EXT4_I(inode)->i_data_sem)); 16345356f261SAditya Kali 16355356f261SAditya Kali return retval; 16365356f261SAditya Kali } 16375356f261SAditya Kali 16385356f261SAditya Kali /* 1639d91bd2c1SSeunghun Lee * This is a special get_block_t callback which is used by 1640b920c755STheodore Ts'o * ext4_da_write_begin(). It will either return mapped block or 1641b920c755STheodore Ts'o * reserve space for a single block. 164229fa89d0SAneesh Kumar K.V * 164329fa89d0SAneesh Kumar K.V * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set. 164429fa89d0SAneesh Kumar K.V * We also have b_blocknr = -1 and b_bdev initialized properly 164529fa89d0SAneesh Kumar K.V * 164629fa89d0SAneesh Kumar K.V * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set. 164729fa89d0SAneesh Kumar K.V * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev 164829fa89d0SAneesh Kumar K.V * initialized properly. 164964769240SAlex Tomas */ 16509c3569b5STao Ma int ext4_da_get_block_prep(struct inode *inode, sector_t iblock, 16512ed88685STheodore Ts'o struct buffer_head *bh, int create) 165264769240SAlex Tomas { 16532ed88685STheodore Ts'o struct ext4_map_blocks map; 165464769240SAlex Tomas int ret = 0; 165564769240SAlex Tomas 165664769240SAlex Tomas BUG_ON(create == 0); 16572ed88685STheodore Ts'o BUG_ON(bh->b_size != inode->i_sb->s_blocksize); 16582ed88685STheodore Ts'o 16592ed88685STheodore Ts'o map.m_lblk = iblock; 16602ed88685STheodore Ts'o map.m_len = 1; 166164769240SAlex Tomas 166264769240SAlex Tomas /* 166364769240SAlex Tomas * first, we need to know whether the block is allocated already 166464769240SAlex Tomas * preallocated blocks are unmapped but should treated 166564769240SAlex Tomas * the same as allocated blocks. 166664769240SAlex Tomas */ 16675356f261SAditya Kali ret = ext4_da_map_blocks(inode, iblock, &map, bh); 16685356f261SAditya Kali if (ret <= 0) 16692ed88685STheodore Ts'o return ret; 167064769240SAlex Tomas 16712ed88685STheodore Ts'o map_bh(bh, inode->i_sb, map.m_pblk); 16722ed88685STheodore Ts'o bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags; 16732ed88685STheodore Ts'o 16742ed88685STheodore Ts'o if (buffer_unwritten(bh)) { 16752ed88685STheodore Ts'o /* A delayed write to unwritten bh should be marked 16762ed88685STheodore Ts'o * new and mapped. Mapped ensures that we don't do 16772ed88685STheodore Ts'o * get_block multiple times when we write to the same 16782ed88685STheodore Ts'o * offset and new ensures that we do proper zero out 16792ed88685STheodore Ts'o * for partial write. 16802ed88685STheodore Ts'o */ 16812ed88685STheodore Ts'o set_buffer_new(bh); 1682c8205636STheodore Ts'o set_buffer_mapped(bh); 16832ed88685STheodore Ts'o } 16842ed88685STheodore Ts'o return 0; 168564769240SAlex Tomas } 168661628a3fSMingming Cao 168762e086beSAneesh Kumar K.V static int bget_one(handle_t *handle, struct buffer_head *bh) 168862e086beSAneesh Kumar K.V { 168962e086beSAneesh Kumar K.V get_bh(bh); 169062e086beSAneesh Kumar K.V return 0; 169162e086beSAneesh Kumar K.V } 169262e086beSAneesh Kumar K.V 169362e086beSAneesh Kumar K.V static int bput_one(handle_t *handle, struct buffer_head *bh) 169462e086beSAneesh Kumar K.V { 169562e086beSAneesh Kumar K.V put_bh(bh); 169662e086beSAneesh Kumar K.V return 0; 169762e086beSAneesh Kumar K.V } 169862e086beSAneesh Kumar K.V 169962e086beSAneesh Kumar K.V static int __ext4_journalled_writepage(struct page *page, 170062e086beSAneesh Kumar K.V unsigned int len) 170162e086beSAneesh Kumar K.V { 170262e086beSAneesh Kumar K.V struct address_space *mapping = page->mapping; 170362e086beSAneesh Kumar K.V struct inode *inode = mapping->host; 17043fdcfb66STao Ma struct buffer_head *page_bufs = NULL; 170562e086beSAneesh Kumar K.V handle_t *handle = NULL; 17063fdcfb66STao Ma int ret = 0, err = 0; 17073fdcfb66STao Ma int inline_data = ext4_has_inline_data(inode); 17083fdcfb66STao Ma struct buffer_head *inode_bh = NULL; 170962e086beSAneesh Kumar K.V 1710cb20d518STheodore Ts'o ClearPageChecked(page); 17113fdcfb66STao Ma 17123fdcfb66STao Ma if (inline_data) { 17133fdcfb66STao Ma BUG_ON(page->index != 0); 17143fdcfb66STao Ma BUG_ON(len > ext4_get_max_inline_size(inode)); 17153fdcfb66STao Ma inode_bh = ext4_journalled_write_inline_data(inode, len, page); 17163fdcfb66STao Ma if (inode_bh == NULL) 17173fdcfb66STao Ma goto out; 17183fdcfb66STao Ma } else { 171962e086beSAneesh Kumar K.V page_bufs = page_buffers(page); 17203fdcfb66STao Ma if (!page_bufs) { 17213fdcfb66STao Ma BUG(); 17223fdcfb66STao Ma goto out; 17233fdcfb66STao Ma } 17243fdcfb66STao Ma ext4_walk_page_buffers(handle, page_bufs, 0, len, 17253fdcfb66STao Ma NULL, bget_one); 17263fdcfb66STao Ma } 1727bdf96838STheodore Ts'o /* 1728bdf96838STheodore Ts'o * We need to release the page lock before we start the 1729bdf96838STheodore Ts'o * journal, so grab a reference so the page won't disappear 1730bdf96838STheodore Ts'o * out from under us. 1731bdf96838STheodore Ts'o */ 1732bdf96838STheodore Ts'o get_page(page); 173362e086beSAneesh Kumar K.V unlock_page(page); 173462e086beSAneesh Kumar K.V 17359924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 17369924a92aSTheodore Ts'o ext4_writepage_trans_blocks(inode)); 173762e086beSAneesh Kumar K.V if (IS_ERR(handle)) { 173862e086beSAneesh Kumar K.V ret = PTR_ERR(handle); 1739bdf96838STheodore Ts'o put_page(page); 1740bdf96838STheodore Ts'o goto out_no_pagelock; 1741bdf96838STheodore Ts'o } 1742bdf96838STheodore Ts'o BUG_ON(!ext4_handle_valid(handle)); 1743bdf96838STheodore Ts'o 1744bdf96838STheodore Ts'o lock_page(page); 1745bdf96838STheodore Ts'o put_page(page); 1746bdf96838STheodore Ts'o if (page->mapping != mapping) { 1747bdf96838STheodore Ts'o /* The page got truncated from under us */ 1748bdf96838STheodore Ts'o ext4_journal_stop(handle); 1749bdf96838STheodore Ts'o ret = 0; 175062e086beSAneesh Kumar K.V goto out; 175162e086beSAneesh Kumar K.V } 175262e086beSAneesh Kumar K.V 17533fdcfb66STao Ma if (inline_data) { 17545d601255Sliang xie BUFFER_TRACE(inode_bh, "get write access"); 17553fdcfb66STao Ma ret = ext4_journal_get_write_access(handle, inode_bh); 17563fdcfb66STao Ma 17573fdcfb66STao Ma err = ext4_handle_dirty_metadata(handle, inode, inode_bh); 17583fdcfb66STao Ma 17593fdcfb66STao Ma } else { 1760f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL, 176162e086beSAneesh Kumar K.V do_journal_get_write_access); 176262e086beSAneesh Kumar K.V 1763f19d5870STao Ma err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL, 176462e086beSAneesh Kumar K.V write_end_fn); 17653fdcfb66STao Ma } 176662e086beSAneesh Kumar K.V if (ret == 0) 176762e086beSAneesh Kumar K.V ret = err; 17682d859db3SJan Kara EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid; 176962e086beSAneesh Kumar K.V err = ext4_journal_stop(handle); 177062e086beSAneesh Kumar K.V if (!ret) 177162e086beSAneesh Kumar K.V ret = err; 177262e086beSAneesh Kumar K.V 17733fdcfb66STao Ma if (!ext4_has_inline_data(inode)) 17748c9367fdSTheodore Ts'o ext4_walk_page_buffers(NULL, page_bufs, 0, len, 17753fdcfb66STao Ma NULL, bput_one); 177619f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_JDATA); 177762e086beSAneesh Kumar K.V out: 1778bdf96838STheodore Ts'o unlock_page(page); 1779bdf96838STheodore Ts'o out_no_pagelock: 17803fdcfb66STao Ma brelse(inode_bh); 178162e086beSAneesh Kumar K.V return ret; 178262e086beSAneesh Kumar K.V } 178362e086beSAneesh Kumar K.V 178461628a3fSMingming Cao /* 178543ce1d23SAneesh Kumar K.V * Note that we don't need to start a transaction unless we're journaling data 178643ce1d23SAneesh Kumar K.V * because we should have holes filled from ext4_page_mkwrite(). We even don't 178743ce1d23SAneesh Kumar K.V * need to file the inode to the transaction's list in ordered mode because if 178843ce1d23SAneesh Kumar K.V * we are writing back data added by write(), the inode is already there and if 178943ce1d23SAneesh Kumar K.V * we are writing back data modified via mmap(), no one guarantees in which 179043ce1d23SAneesh Kumar K.V * transaction the data will hit the disk. In case we are journaling data, we 179143ce1d23SAneesh Kumar K.V * cannot start transaction directly because transaction start ranks above page 179243ce1d23SAneesh Kumar K.V * lock so we have to do some magic. 179343ce1d23SAneesh Kumar K.V * 1794b920c755STheodore Ts'o * This function can get called via... 179520970ba6STheodore Ts'o * - ext4_writepages after taking page lock (have journal handle) 1796b920c755STheodore Ts'o * - journal_submit_inode_data_buffers (no journal handle) 1797f6463b0dSArtem Bityutskiy * - shrink_page_list via the kswapd/direct reclaim (no journal handle) 1798b920c755STheodore Ts'o * - grab_page_cache when doing write_begin (have journal handle) 179943ce1d23SAneesh Kumar K.V * 180043ce1d23SAneesh Kumar K.V * We don't do any block allocation in this function. If we have page with 180143ce1d23SAneesh Kumar K.V * multiple blocks we need to write those buffer_heads that are mapped. This 180243ce1d23SAneesh Kumar K.V * is important for mmaped based write. So if we do with blocksize 1K 180343ce1d23SAneesh Kumar K.V * truncate(f, 1024); 180443ce1d23SAneesh Kumar K.V * a = mmap(f, 0, 4096); 180543ce1d23SAneesh Kumar K.V * a[0] = 'a'; 180643ce1d23SAneesh Kumar K.V * truncate(f, 4096); 180743ce1d23SAneesh Kumar K.V * we have in the page first buffer_head mapped via page_mkwrite call back 180890802ed9SPaul Bolle * but other buffer_heads would be unmapped but dirty (dirty done via the 180943ce1d23SAneesh Kumar K.V * do_wp_page). So writepage should write the first block. If we modify 181043ce1d23SAneesh Kumar K.V * the mmap area beyond 1024 we will again get a page_fault and the 181143ce1d23SAneesh Kumar K.V * page_mkwrite callback will do the block allocation and mark the 181243ce1d23SAneesh Kumar K.V * buffer_heads mapped. 181343ce1d23SAneesh Kumar K.V * 181443ce1d23SAneesh Kumar K.V * We redirty the page if we have any buffer_heads that is either delay or 181543ce1d23SAneesh Kumar K.V * unwritten in the page. 181643ce1d23SAneesh Kumar K.V * 181743ce1d23SAneesh Kumar K.V * We can get recursively called as show below. 181843ce1d23SAneesh Kumar K.V * 181943ce1d23SAneesh Kumar K.V * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() -> 182043ce1d23SAneesh Kumar K.V * ext4_writepage() 182143ce1d23SAneesh Kumar K.V * 182243ce1d23SAneesh Kumar K.V * But since we don't do any block allocation we should not deadlock. 182343ce1d23SAneesh Kumar K.V * Page also have the dirty flag cleared so we don't get recurive page_lock. 182461628a3fSMingming Cao */ 182543ce1d23SAneesh Kumar K.V static int ext4_writepage(struct page *page, 182664769240SAlex Tomas struct writeback_control *wbc) 182764769240SAlex Tomas { 1828f8bec370SJan Kara int ret = 0; 182961628a3fSMingming Cao loff_t size; 1830498e5f24STheodore Ts'o unsigned int len; 1831744692dcSJiaying Zhang struct buffer_head *page_bufs = NULL; 183261628a3fSMingming Cao struct inode *inode = page->mapping->host; 183336ade451SJan Kara struct ext4_io_submit io_submit; 18341c8349a1SNamjae Jeon bool keep_towrite = false; 183564769240SAlex Tomas 1836a9c667f8SLukas Czerner trace_ext4_writepage(page); 183761628a3fSMingming Cao size = i_size_read(inode); 183861628a3fSMingming Cao if (page->index == size >> PAGE_CACHE_SHIFT) 183961628a3fSMingming Cao len = size & ~PAGE_CACHE_MASK; 184061628a3fSMingming Cao else 184161628a3fSMingming Cao len = PAGE_CACHE_SIZE; 184261628a3fSMingming Cao 1843f0e6c985SAneesh Kumar K.V page_bufs = page_buffers(page); 184464769240SAlex Tomas /* 1845fe386132SJan Kara * We cannot do block allocation or other extent handling in this 1846fe386132SJan Kara * function. If there are buffers needing that, we have to redirty 1847fe386132SJan Kara * the page. But we may reach here when we do a journal commit via 1848fe386132SJan Kara * journal_submit_inode_data_buffers() and in that case we must write 1849fe386132SJan Kara * allocated buffers to achieve data=ordered mode guarantees. 1850cccd147aSTheodore Ts'o * 1851cccd147aSTheodore Ts'o * Also, if there is only one buffer per page (the fs block 1852cccd147aSTheodore Ts'o * size == the page size), if one buffer needs block 1853cccd147aSTheodore Ts'o * allocation or needs to modify the extent tree to clear the 1854cccd147aSTheodore Ts'o * unwritten flag, we know that the page can't be written at 1855cccd147aSTheodore Ts'o * all, so we might as well refuse the write immediately. 1856cccd147aSTheodore Ts'o * Unfortunately if the block size != page size, we can't as 1857cccd147aSTheodore Ts'o * easily detect this case using ext4_walk_page_buffers(), but 1858cccd147aSTheodore Ts'o * for the extremely common case, this is an optimization that 1859cccd147aSTheodore Ts'o * skips a useless round trip through ext4_bio_write_page(). 186064769240SAlex Tomas */ 1861f19d5870STao Ma if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL, 1862c364b22cSAneesh Kumar K.V ext4_bh_delay_or_unwritten)) { 186361628a3fSMingming Cao redirty_page_for_writepage(wbc, page); 1864cccd147aSTheodore Ts'o if ((current->flags & PF_MEMALLOC) || 1865cccd147aSTheodore Ts'o (inode->i_sb->s_blocksize == PAGE_CACHE_SIZE)) { 1866fe386132SJan Kara /* 1867fe386132SJan Kara * For memory cleaning there's no point in writing only 1868fe386132SJan Kara * some buffers. So just bail out. Warn if we came here 1869fe386132SJan Kara * from direct reclaim. 1870fe386132SJan Kara */ 1871fe386132SJan Kara WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD)) 1872fe386132SJan Kara == PF_MEMALLOC); 187361628a3fSMingming Cao unlock_page(page); 187461628a3fSMingming Cao return 0; 187561628a3fSMingming Cao } 18761c8349a1SNamjae Jeon keep_towrite = true; 1877f0e6c985SAneesh Kumar K.V } 187864769240SAlex Tomas 1879cb20d518STheodore Ts'o if (PageChecked(page) && ext4_should_journal_data(inode)) 188043ce1d23SAneesh Kumar K.V /* 188143ce1d23SAneesh Kumar K.V * It's mmapped pagecache. Add buffers and journal it. There 188243ce1d23SAneesh Kumar K.V * doesn't seem much point in redirtying the page here. 188343ce1d23SAneesh Kumar K.V */ 18843f0ca309SWu Fengguang return __ext4_journalled_writepage(page, len); 188543ce1d23SAneesh Kumar K.V 188697a851edSJan Kara ext4_io_submit_init(&io_submit, wbc); 188797a851edSJan Kara io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS); 188897a851edSJan Kara if (!io_submit.io_end) { 188997a851edSJan Kara redirty_page_for_writepage(wbc, page); 189097a851edSJan Kara unlock_page(page); 189197a851edSJan Kara return -ENOMEM; 189297a851edSJan Kara } 18931c8349a1SNamjae Jeon ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite); 189436ade451SJan Kara ext4_io_submit(&io_submit); 189597a851edSJan Kara /* Drop io_end reference we got from init */ 189697a851edSJan Kara ext4_put_io_end_defer(io_submit.io_end); 189764769240SAlex Tomas return ret; 189864769240SAlex Tomas } 189964769240SAlex Tomas 19005f1132b2SJan Kara static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page) 19015f1132b2SJan Kara { 19025f1132b2SJan Kara int len; 19035f1132b2SJan Kara loff_t size = i_size_read(mpd->inode); 19045f1132b2SJan Kara int err; 19055f1132b2SJan Kara 19065f1132b2SJan Kara BUG_ON(page->index != mpd->first_page); 19075f1132b2SJan Kara if (page->index == size >> PAGE_CACHE_SHIFT) 19085f1132b2SJan Kara len = size & ~PAGE_CACHE_MASK; 19095f1132b2SJan Kara else 19105f1132b2SJan Kara len = PAGE_CACHE_SIZE; 19115f1132b2SJan Kara clear_page_dirty_for_io(page); 19121c8349a1SNamjae Jeon err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false); 19135f1132b2SJan Kara if (!err) 19145f1132b2SJan Kara mpd->wbc->nr_to_write--; 19155f1132b2SJan Kara mpd->first_page++; 19165f1132b2SJan Kara 19175f1132b2SJan Kara return err; 19185f1132b2SJan Kara } 19195f1132b2SJan Kara 19204e7ea81dSJan Kara #define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay)) 19214e7ea81dSJan Kara 192261628a3fSMingming Cao /* 1923fffb2739SJan Kara * mballoc gives us at most this number of blocks... 1924fffb2739SJan Kara * XXX: That seems to be only a limitation of ext4_mb_normalize_request(). 1925fffb2739SJan Kara * The rest of mballoc seems to handle chunks up to full group size. 192661628a3fSMingming Cao */ 1927fffb2739SJan Kara #define MAX_WRITEPAGES_EXTENT_LEN 2048 1928525f4ed8SMingming Cao 1929525f4ed8SMingming Cao /* 19304e7ea81dSJan Kara * mpage_add_bh_to_extent - try to add bh to extent of blocks to map 19314e7ea81dSJan Kara * 19324e7ea81dSJan Kara * @mpd - extent of blocks 19334e7ea81dSJan Kara * @lblk - logical number of the block in the file 193409930042SJan Kara * @bh - buffer head we want to add to the extent 19354e7ea81dSJan Kara * 193609930042SJan Kara * The function is used to collect contig. blocks in the same state. If the 193709930042SJan Kara * buffer doesn't require mapping for writeback and we haven't started the 193809930042SJan Kara * extent of buffers to map yet, the function returns 'true' immediately - the 193909930042SJan Kara * caller can write the buffer right away. Otherwise the function returns true 194009930042SJan Kara * if the block has been added to the extent, false if the block couldn't be 194109930042SJan Kara * added. 19424e7ea81dSJan Kara */ 194309930042SJan Kara static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk, 194409930042SJan Kara struct buffer_head *bh) 19454e7ea81dSJan Kara { 19464e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 19474e7ea81dSJan Kara 194809930042SJan Kara /* Buffer that doesn't need mapping for writeback? */ 194909930042SJan Kara if (!buffer_dirty(bh) || !buffer_mapped(bh) || 195009930042SJan Kara (!buffer_delay(bh) && !buffer_unwritten(bh))) { 195109930042SJan Kara /* So far no extent to map => we write the buffer right away */ 195209930042SJan Kara if (map->m_len == 0) 195309930042SJan Kara return true; 195409930042SJan Kara return false; 195509930042SJan Kara } 19564e7ea81dSJan Kara 19574e7ea81dSJan Kara /* First block in the extent? */ 19584e7ea81dSJan Kara if (map->m_len == 0) { 19594e7ea81dSJan Kara map->m_lblk = lblk; 19604e7ea81dSJan Kara map->m_len = 1; 196109930042SJan Kara map->m_flags = bh->b_state & BH_FLAGS; 196209930042SJan Kara return true; 19634e7ea81dSJan Kara } 19644e7ea81dSJan Kara 196509930042SJan Kara /* Don't go larger than mballoc is willing to allocate */ 196609930042SJan Kara if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN) 196709930042SJan Kara return false; 196809930042SJan Kara 19694e7ea81dSJan Kara /* Can we merge the block to our big extent? */ 19704e7ea81dSJan Kara if (lblk == map->m_lblk + map->m_len && 197109930042SJan Kara (bh->b_state & BH_FLAGS) == map->m_flags) { 19724e7ea81dSJan Kara map->m_len++; 197309930042SJan Kara return true; 19744e7ea81dSJan Kara } 197509930042SJan Kara return false; 19764e7ea81dSJan Kara } 19774e7ea81dSJan Kara 19785f1132b2SJan Kara /* 19795f1132b2SJan Kara * mpage_process_page_bufs - submit page buffers for IO or add them to extent 19805f1132b2SJan Kara * 19815f1132b2SJan Kara * @mpd - extent of blocks for mapping 19825f1132b2SJan Kara * @head - the first buffer in the page 19835f1132b2SJan Kara * @bh - buffer we should start processing from 19845f1132b2SJan Kara * @lblk - logical number of the block in the file corresponding to @bh 19855f1132b2SJan Kara * 19865f1132b2SJan Kara * Walk through page buffers from @bh upto @head (exclusive) and either submit 19875f1132b2SJan Kara * the page for IO if all buffers in this page were mapped and there's no 19885f1132b2SJan Kara * accumulated extent of buffers to map or add buffers in the page to the 19895f1132b2SJan Kara * extent of buffers to map. The function returns 1 if the caller can continue 19905f1132b2SJan Kara * by processing the next page, 0 if it should stop adding buffers to the 19915f1132b2SJan Kara * extent to map because we cannot extend it anymore. It can also return value 19925f1132b2SJan Kara * < 0 in case of error during IO submission. 19935f1132b2SJan Kara */ 19945f1132b2SJan Kara static int mpage_process_page_bufs(struct mpage_da_data *mpd, 19954e7ea81dSJan Kara struct buffer_head *head, 19964e7ea81dSJan Kara struct buffer_head *bh, 19974e7ea81dSJan Kara ext4_lblk_t lblk) 19984e7ea81dSJan Kara { 19994e7ea81dSJan Kara struct inode *inode = mpd->inode; 20005f1132b2SJan Kara int err; 20014e7ea81dSJan Kara ext4_lblk_t blocks = (i_size_read(inode) + (1 << inode->i_blkbits) - 1) 20024e7ea81dSJan Kara >> inode->i_blkbits; 20034e7ea81dSJan Kara 20044e7ea81dSJan Kara do { 20054e7ea81dSJan Kara BUG_ON(buffer_locked(bh)); 20064e7ea81dSJan Kara 200709930042SJan Kara if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) { 20084e7ea81dSJan Kara /* Found extent to map? */ 20094e7ea81dSJan Kara if (mpd->map.m_len) 20105f1132b2SJan Kara return 0; 201109930042SJan Kara /* Everything mapped so far and we hit EOF */ 20125f1132b2SJan Kara break; 20134e7ea81dSJan Kara } 20144e7ea81dSJan Kara } while (lblk++, (bh = bh->b_this_page) != head); 20155f1132b2SJan Kara /* So far everything mapped? Submit the page for IO. */ 20165f1132b2SJan Kara if (mpd->map.m_len == 0) { 20175f1132b2SJan Kara err = mpage_submit_page(mpd, head->b_page); 20185f1132b2SJan Kara if (err < 0) 20194e7ea81dSJan Kara return err; 20204e7ea81dSJan Kara } 20215f1132b2SJan Kara return lblk < blocks; 20225f1132b2SJan Kara } 20234e7ea81dSJan Kara 20244e7ea81dSJan Kara /* 20254e7ea81dSJan Kara * mpage_map_buffers - update buffers corresponding to changed extent and 20264e7ea81dSJan Kara * submit fully mapped pages for IO 20274e7ea81dSJan Kara * 20284e7ea81dSJan Kara * @mpd - description of extent to map, on return next extent to map 20294e7ea81dSJan Kara * 20304e7ea81dSJan Kara * Scan buffers corresponding to changed extent (we expect corresponding pages 20314e7ea81dSJan Kara * to be already locked) and update buffer state according to new extent state. 20324e7ea81dSJan Kara * We map delalloc buffers to their physical location, clear unwritten bits, 2033556615dcSLukas Czerner * and mark buffers as uninit when we perform writes to unwritten extents 20344e7ea81dSJan Kara * and do extent conversion after IO is finished. If the last page is not fully 20354e7ea81dSJan Kara * mapped, we update @map to the next extent in the last page that needs 20364e7ea81dSJan Kara * mapping. Otherwise we submit the page for IO. 20374e7ea81dSJan Kara */ 20384e7ea81dSJan Kara static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd) 20394e7ea81dSJan Kara { 20404e7ea81dSJan Kara struct pagevec pvec; 20414e7ea81dSJan Kara int nr_pages, i; 20424e7ea81dSJan Kara struct inode *inode = mpd->inode; 20434e7ea81dSJan Kara struct buffer_head *head, *bh; 20444e7ea81dSJan Kara int bpp_bits = PAGE_CACHE_SHIFT - inode->i_blkbits; 20454e7ea81dSJan Kara pgoff_t start, end; 20464e7ea81dSJan Kara ext4_lblk_t lblk; 20474e7ea81dSJan Kara sector_t pblock; 20484e7ea81dSJan Kara int err; 20494e7ea81dSJan Kara 20504e7ea81dSJan Kara start = mpd->map.m_lblk >> bpp_bits; 20514e7ea81dSJan Kara end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits; 20524e7ea81dSJan Kara lblk = start << bpp_bits; 20534e7ea81dSJan Kara pblock = mpd->map.m_pblk; 20544e7ea81dSJan Kara 20554e7ea81dSJan Kara pagevec_init(&pvec, 0); 20564e7ea81dSJan Kara while (start <= end) { 20574e7ea81dSJan Kara nr_pages = pagevec_lookup(&pvec, inode->i_mapping, start, 20584e7ea81dSJan Kara PAGEVEC_SIZE); 20594e7ea81dSJan Kara if (nr_pages == 0) 20604e7ea81dSJan Kara break; 20614e7ea81dSJan Kara for (i = 0; i < nr_pages; i++) { 20624e7ea81dSJan Kara struct page *page = pvec.pages[i]; 20634e7ea81dSJan Kara 20644e7ea81dSJan Kara if (page->index > end) 20654e7ea81dSJan Kara break; 20664e7ea81dSJan Kara /* Up to 'end' pages must be contiguous */ 20674e7ea81dSJan Kara BUG_ON(page->index != start); 20684e7ea81dSJan Kara bh = head = page_buffers(page); 20694e7ea81dSJan Kara do { 20704e7ea81dSJan Kara if (lblk < mpd->map.m_lblk) 20714e7ea81dSJan Kara continue; 20724e7ea81dSJan Kara if (lblk >= mpd->map.m_lblk + mpd->map.m_len) { 20734e7ea81dSJan Kara /* 20744e7ea81dSJan Kara * Buffer after end of mapped extent. 20754e7ea81dSJan Kara * Find next buffer in the page to map. 20764e7ea81dSJan Kara */ 20774e7ea81dSJan Kara mpd->map.m_len = 0; 20784e7ea81dSJan Kara mpd->map.m_flags = 0; 20795f1132b2SJan Kara /* 20805f1132b2SJan Kara * FIXME: If dioread_nolock supports 20815f1132b2SJan Kara * blocksize < pagesize, we need to make 20825f1132b2SJan Kara * sure we add size mapped so far to 20835f1132b2SJan Kara * io_end->size as the following call 20845f1132b2SJan Kara * can submit the page for IO. 20855f1132b2SJan Kara */ 20865f1132b2SJan Kara err = mpage_process_page_bufs(mpd, head, 20875f1132b2SJan Kara bh, lblk); 20884e7ea81dSJan Kara pagevec_release(&pvec); 20895f1132b2SJan Kara if (err > 0) 20905f1132b2SJan Kara err = 0; 20915f1132b2SJan Kara return err; 20924e7ea81dSJan Kara } 20934e7ea81dSJan Kara if (buffer_delay(bh)) { 20944e7ea81dSJan Kara clear_buffer_delay(bh); 20954e7ea81dSJan Kara bh->b_blocknr = pblock++; 20964e7ea81dSJan Kara } 20974e7ea81dSJan Kara clear_buffer_unwritten(bh); 20985f1132b2SJan Kara } while (lblk++, (bh = bh->b_this_page) != head); 20994e7ea81dSJan Kara 21004e7ea81dSJan Kara /* 21014e7ea81dSJan Kara * FIXME: This is going to break if dioread_nolock 21024e7ea81dSJan Kara * supports blocksize < pagesize as we will try to 21034e7ea81dSJan Kara * convert potentially unmapped parts of inode. 21044e7ea81dSJan Kara */ 21054e7ea81dSJan Kara mpd->io_submit.io_end->size += PAGE_CACHE_SIZE; 21064e7ea81dSJan Kara /* Page fully mapped - let IO run! */ 21074e7ea81dSJan Kara err = mpage_submit_page(mpd, page); 21084e7ea81dSJan Kara if (err < 0) { 21094e7ea81dSJan Kara pagevec_release(&pvec); 21104e7ea81dSJan Kara return err; 21114e7ea81dSJan Kara } 21124e7ea81dSJan Kara start++; 21134e7ea81dSJan Kara } 21144e7ea81dSJan Kara pagevec_release(&pvec); 21154e7ea81dSJan Kara } 21164e7ea81dSJan Kara /* Extent fully mapped and matches with page boundary. We are done. */ 21174e7ea81dSJan Kara mpd->map.m_len = 0; 21184e7ea81dSJan Kara mpd->map.m_flags = 0; 21194e7ea81dSJan Kara return 0; 21204e7ea81dSJan Kara } 21214e7ea81dSJan Kara 21224e7ea81dSJan Kara static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd) 21234e7ea81dSJan Kara { 21244e7ea81dSJan Kara struct inode *inode = mpd->inode; 21254e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 21264e7ea81dSJan Kara int get_blocks_flags; 2127090f32eeSLukas Czerner int err, dioread_nolock; 21284e7ea81dSJan Kara 21294e7ea81dSJan Kara trace_ext4_da_write_pages_extent(inode, map); 21304e7ea81dSJan Kara /* 21314e7ea81dSJan Kara * Call ext4_map_blocks() to allocate any delayed allocation blocks, or 2132556615dcSLukas Czerner * to convert an unwritten extent to be initialized (in the case 21334e7ea81dSJan Kara * where we have written into one or more preallocated blocks). It is 21344e7ea81dSJan Kara * possible that we're going to need more metadata blocks than 21354e7ea81dSJan Kara * previously reserved. However we must not fail because we're in 21364e7ea81dSJan Kara * writeback and there is nothing we can do about it so it might result 21374e7ea81dSJan Kara * in data loss. So use reserved blocks to allocate metadata if 21384e7ea81dSJan Kara * possible. 21394e7ea81dSJan Kara * 2140754cfed6STheodore Ts'o * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if 2141754cfed6STheodore Ts'o * the blocks in question are delalloc blocks. This indicates 2142754cfed6STheodore Ts'o * that the blocks and quotas has already been checked when 2143754cfed6STheodore Ts'o * the data was copied into the page cache. 21444e7ea81dSJan Kara */ 21454e7ea81dSJan Kara get_blocks_flags = EXT4_GET_BLOCKS_CREATE | 21464e7ea81dSJan Kara EXT4_GET_BLOCKS_METADATA_NOFAIL; 2147090f32eeSLukas Czerner dioread_nolock = ext4_should_dioread_nolock(inode); 2148090f32eeSLukas Czerner if (dioread_nolock) 21494e7ea81dSJan Kara get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT; 21504e7ea81dSJan Kara if (map->m_flags & (1 << BH_Delay)) 21514e7ea81dSJan Kara get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE; 21524e7ea81dSJan Kara 21534e7ea81dSJan Kara err = ext4_map_blocks(handle, inode, map, get_blocks_flags); 21544e7ea81dSJan Kara if (err < 0) 21554e7ea81dSJan Kara return err; 2156090f32eeSLukas Czerner if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) { 21576b523df4SJan Kara if (!mpd->io_submit.io_end->handle && 21586b523df4SJan Kara ext4_handle_valid(handle)) { 21596b523df4SJan Kara mpd->io_submit.io_end->handle = handle->h_rsv_handle; 21606b523df4SJan Kara handle->h_rsv_handle = NULL; 21616b523df4SJan Kara } 21623613d228SJan Kara ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end); 21636b523df4SJan Kara } 21644e7ea81dSJan Kara 21654e7ea81dSJan Kara BUG_ON(map->m_len == 0); 21664e7ea81dSJan Kara if (map->m_flags & EXT4_MAP_NEW) { 21674e7ea81dSJan Kara struct block_device *bdev = inode->i_sb->s_bdev; 21684e7ea81dSJan Kara int i; 21694e7ea81dSJan Kara 21704e7ea81dSJan Kara for (i = 0; i < map->m_len; i++) 21714e7ea81dSJan Kara unmap_underlying_metadata(bdev, map->m_pblk + i); 21724e7ea81dSJan Kara } 21734e7ea81dSJan Kara return 0; 21744e7ea81dSJan Kara } 21754e7ea81dSJan Kara 21764e7ea81dSJan Kara /* 21774e7ea81dSJan Kara * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length 21784e7ea81dSJan Kara * mpd->len and submit pages underlying it for IO 21794e7ea81dSJan Kara * 21804e7ea81dSJan Kara * @handle - handle for journal operations 21814e7ea81dSJan Kara * @mpd - extent to map 21827534e854SJan Kara * @give_up_on_write - we set this to true iff there is a fatal error and there 21837534e854SJan Kara * is no hope of writing the data. The caller should discard 21847534e854SJan Kara * dirty pages to avoid infinite loops. 21854e7ea81dSJan Kara * 21864e7ea81dSJan Kara * The function maps extent starting at mpd->lblk of length mpd->len. If it is 21874e7ea81dSJan Kara * delayed, blocks are allocated, if it is unwritten, we may need to convert 21884e7ea81dSJan Kara * them to initialized or split the described range from larger unwritten 21894e7ea81dSJan Kara * extent. Note that we need not map all the described range since allocation 21904e7ea81dSJan Kara * can return less blocks or the range is covered by more unwritten extents. We 21914e7ea81dSJan Kara * cannot map more because we are limited by reserved transaction credits. On 21924e7ea81dSJan Kara * the other hand we always make sure that the last touched page is fully 21934e7ea81dSJan Kara * mapped so that it can be written out (and thus forward progress is 21944e7ea81dSJan Kara * guaranteed). After mapping we submit all mapped pages for IO. 21954e7ea81dSJan Kara */ 21964e7ea81dSJan Kara static int mpage_map_and_submit_extent(handle_t *handle, 2197cb530541STheodore Ts'o struct mpage_da_data *mpd, 2198cb530541STheodore Ts'o bool *give_up_on_write) 21994e7ea81dSJan Kara { 22004e7ea81dSJan Kara struct inode *inode = mpd->inode; 22014e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 22024e7ea81dSJan Kara int err; 22034e7ea81dSJan Kara loff_t disksize; 22046603120eSDmitry Monakhov int progress = 0; 22054e7ea81dSJan Kara 22064e7ea81dSJan Kara mpd->io_submit.io_end->offset = 22074e7ea81dSJan Kara ((loff_t)map->m_lblk) << inode->i_blkbits; 220827d7c4edSJan Kara do { 22094e7ea81dSJan Kara err = mpage_map_one_extent(handle, mpd); 22104e7ea81dSJan Kara if (err < 0) { 22114e7ea81dSJan Kara struct super_block *sb = inode->i_sb; 22124e7ea81dSJan Kara 2213cb530541STheodore Ts'o if (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED) 2214cb530541STheodore Ts'o goto invalidate_dirty_pages; 22154e7ea81dSJan Kara /* 2216cb530541STheodore Ts'o * Let the uper layers retry transient errors. 2217cb530541STheodore Ts'o * In the case of ENOSPC, if ext4_count_free_blocks() 2218cb530541STheodore Ts'o * is non-zero, a commit should free up blocks. 22194e7ea81dSJan Kara */ 2220cb530541STheodore Ts'o if ((err == -ENOMEM) || 22216603120eSDmitry Monakhov (err == -ENOSPC && ext4_count_free_clusters(sb))) { 22226603120eSDmitry Monakhov if (progress) 22236603120eSDmitry Monakhov goto update_disksize; 2224cb530541STheodore Ts'o return err; 22256603120eSDmitry Monakhov } 22264e7ea81dSJan Kara ext4_msg(sb, KERN_CRIT, 22274e7ea81dSJan Kara "Delayed block allocation failed for " 22284e7ea81dSJan Kara "inode %lu at logical offset %llu with" 22294e7ea81dSJan Kara " max blocks %u with error %d", 22304e7ea81dSJan Kara inode->i_ino, 22314e7ea81dSJan Kara (unsigned long long)map->m_lblk, 2232cb530541STheodore Ts'o (unsigned)map->m_len, -err); 22334e7ea81dSJan Kara ext4_msg(sb, KERN_CRIT, 22344e7ea81dSJan Kara "This should not happen!! Data will " 22354e7ea81dSJan Kara "be lost\n"); 22364e7ea81dSJan Kara if (err == -ENOSPC) 22374e7ea81dSJan Kara ext4_print_free_blocks(inode); 2238cb530541STheodore Ts'o invalidate_dirty_pages: 2239cb530541STheodore Ts'o *give_up_on_write = true; 22404e7ea81dSJan Kara return err; 22414e7ea81dSJan Kara } 22426603120eSDmitry Monakhov progress = 1; 22434e7ea81dSJan Kara /* 22444e7ea81dSJan Kara * Update buffer state, submit mapped pages, and get us new 22454e7ea81dSJan Kara * extent to map 22464e7ea81dSJan Kara */ 22474e7ea81dSJan Kara err = mpage_map_and_submit_buffers(mpd); 22484e7ea81dSJan Kara if (err < 0) 22496603120eSDmitry Monakhov goto update_disksize; 225027d7c4edSJan Kara } while (map->m_len); 22514e7ea81dSJan Kara 22526603120eSDmitry Monakhov update_disksize: 2253622cad13STheodore Ts'o /* 2254622cad13STheodore Ts'o * Update on-disk size after IO is submitted. Races with 2255622cad13STheodore Ts'o * truncate are avoided by checking i_size under i_data_sem. 2256622cad13STheodore Ts'o */ 22574e7ea81dSJan Kara disksize = ((loff_t)mpd->first_page) << PAGE_CACHE_SHIFT; 22584e7ea81dSJan Kara if (disksize > EXT4_I(inode)->i_disksize) { 22594e7ea81dSJan Kara int err2; 2260622cad13STheodore Ts'o loff_t i_size; 22614e7ea81dSJan Kara 2262622cad13STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 2263622cad13STheodore Ts'o i_size = i_size_read(inode); 2264622cad13STheodore Ts'o if (disksize > i_size) 2265622cad13STheodore Ts'o disksize = i_size; 2266622cad13STheodore Ts'o if (disksize > EXT4_I(inode)->i_disksize) 2267622cad13STheodore Ts'o EXT4_I(inode)->i_disksize = disksize; 22684e7ea81dSJan Kara err2 = ext4_mark_inode_dirty(handle, inode); 2269622cad13STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 22704e7ea81dSJan Kara if (err2) 22714e7ea81dSJan Kara ext4_error(inode->i_sb, 22724e7ea81dSJan Kara "Failed to mark inode %lu dirty", 22734e7ea81dSJan Kara inode->i_ino); 22744e7ea81dSJan Kara if (!err) 22754e7ea81dSJan Kara err = err2; 22764e7ea81dSJan Kara } 22774e7ea81dSJan Kara return err; 22784e7ea81dSJan Kara } 22794e7ea81dSJan Kara 22804e7ea81dSJan Kara /* 2281fffb2739SJan Kara * Calculate the total number of credits to reserve for one writepages 228220970ba6STheodore Ts'o * iteration. This is called from ext4_writepages(). We map an extent of 2283fffb2739SJan Kara * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping 2284fffb2739SJan Kara * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN + 2285fffb2739SJan Kara * bpp - 1 blocks in bpp different extents. 2286525f4ed8SMingming Cao */ 2287fffb2739SJan Kara static int ext4_da_writepages_trans_blocks(struct inode *inode) 2288fffb2739SJan Kara { 2289fffb2739SJan Kara int bpp = ext4_journal_blocks_per_page(inode); 2290525f4ed8SMingming Cao 2291fffb2739SJan Kara return ext4_meta_trans_blocks(inode, 2292fffb2739SJan Kara MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp); 2293525f4ed8SMingming Cao } 229461628a3fSMingming Cao 22958e48dcfbSTheodore Ts'o /* 22964e7ea81dSJan Kara * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages 22974e7ea81dSJan Kara * and underlying extent to map 22984e7ea81dSJan Kara * 22994e7ea81dSJan Kara * @mpd - where to look for pages 23004e7ea81dSJan Kara * 23014e7ea81dSJan Kara * Walk dirty pages in the mapping. If they are fully mapped, submit them for 23024e7ea81dSJan Kara * IO immediately. When we find a page which isn't mapped we start accumulating 23034e7ea81dSJan Kara * extent of buffers underlying these pages that needs mapping (formed by 23044e7ea81dSJan Kara * either delayed or unwritten buffers). We also lock the pages containing 23054e7ea81dSJan Kara * these buffers. The extent found is returned in @mpd structure (starting at 23064e7ea81dSJan Kara * mpd->lblk with length mpd->len blocks). 23074e7ea81dSJan Kara * 23084e7ea81dSJan Kara * Note that this function can attach bios to one io_end structure which are 23094e7ea81dSJan Kara * neither logically nor physically contiguous. Although it may seem as an 23104e7ea81dSJan Kara * unnecessary complication, it is actually inevitable in blocksize < pagesize 23114e7ea81dSJan Kara * case as we need to track IO to all buffers underlying a page in one io_end. 23128e48dcfbSTheodore Ts'o */ 23134e7ea81dSJan Kara static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd) 23148e48dcfbSTheodore Ts'o { 23154e7ea81dSJan Kara struct address_space *mapping = mpd->inode->i_mapping; 23168e48dcfbSTheodore Ts'o struct pagevec pvec; 23174f01b02cSTheodore Ts'o unsigned int nr_pages; 2318aeac589aSMing Lei long left = mpd->wbc->nr_to_write; 23194e7ea81dSJan Kara pgoff_t index = mpd->first_page; 23204e7ea81dSJan Kara pgoff_t end = mpd->last_page; 23214e7ea81dSJan Kara int tag; 23224e7ea81dSJan Kara int i, err = 0; 23234e7ea81dSJan Kara int blkbits = mpd->inode->i_blkbits; 23244e7ea81dSJan Kara ext4_lblk_t lblk; 23254e7ea81dSJan Kara struct buffer_head *head; 23268e48dcfbSTheodore Ts'o 23274e7ea81dSJan Kara if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages) 23285b41d924SEric Sandeen tag = PAGECACHE_TAG_TOWRITE; 23295b41d924SEric Sandeen else 23305b41d924SEric Sandeen tag = PAGECACHE_TAG_DIRTY; 23315b41d924SEric Sandeen 23324e7ea81dSJan Kara pagevec_init(&pvec, 0); 23334e7ea81dSJan Kara mpd->map.m_len = 0; 23344e7ea81dSJan Kara mpd->next_page = index; 23354f01b02cSTheodore Ts'o while (index <= end) { 23365b41d924SEric Sandeen nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag, 23378e48dcfbSTheodore Ts'o min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1); 23388e48dcfbSTheodore Ts'o if (nr_pages == 0) 23394e7ea81dSJan Kara goto out; 23408e48dcfbSTheodore Ts'o 23418e48dcfbSTheodore Ts'o for (i = 0; i < nr_pages; i++) { 23428e48dcfbSTheodore Ts'o struct page *page = pvec.pages[i]; 23438e48dcfbSTheodore Ts'o 23448e48dcfbSTheodore Ts'o /* 23458e48dcfbSTheodore Ts'o * At this point, the page may be truncated or 23468e48dcfbSTheodore Ts'o * invalidated (changing page->mapping to NULL), or 23478e48dcfbSTheodore Ts'o * even swizzled back from swapper_space to tmpfs file 23488e48dcfbSTheodore Ts'o * mapping. However, page->index will not change 23498e48dcfbSTheodore Ts'o * because we have a reference on the page. 23508e48dcfbSTheodore Ts'o */ 23514f01b02cSTheodore Ts'o if (page->index > end) 23524f01b02cSTheodore Ts'o goto out; 23538e48dcfbSTheodore Ts'o 2354aeac589aSMing Lei /* 2355aeac589aSMing Lei * Accumulated enough dirty pages? This doesn't apply 2356aeac589aSMing Lei * to WB_SYNC_ALL mode. For integrity sync we have to 2357aeac589aSMing Lei * keep going because someone may be concurrently 2358aeac589aSMing Lei * dirtying pages, and we might have synced a lot of 2359aeac589aSMing Lei * newly appeared dirty pages, but have not synced all 2360aeac589aSMing Lei * of the old dirty pages. 2361aeac589aSMing Lei */ 2362aeac589aSMing Lei if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0) 2363aeac589aSMing Lei goto out; 2364aeac589aSMing Lei 23654e7ea81dSJan Kara /* If we can't merge this page, we are done. */ 23664e7ea81dSJan Kara if (mpd->map.m_len > 0 && mpd->next_page != page->index) 23674e7ea81dSJan Kara goto out; 236878aaced3STheodore Ts'o 23698e48dcfbSTheodore Ts'o lock_page(page); 23708e48dcfbSTheodore Ts'o /* 23714e7ea81dSJan Kara * If the page is no longer dirty, or its mapping no 23724e7ea81dSJan Kara * longer corresponds to inode we are writing (which 23734e7ea81dSJan Kara * means it has been truncated or invalidated), or the 23744e7ea81dSJan Kara * page is already under writeback and we are not doing 23754e7ea81dSJan Kara * a data integrity writeback, skip the page 23768e48dcfbSTheodore Ts'o */ 23774f01b02cSTheodore Ts'o if (!PageDirty(page) || 23784f01b02cSTheodore Ts'o (PageWriteback(page) && 23794e7ea81dSJan Kara (mpd->wbc->sync_mode == WB_SYNC_NONE)) || 23804f01b02cSTheodore Ts'o unlikely(page->mapping != mapping)) { 23818e48dcfbSTheodore Ts'o unlock_page(page); 23828e48dcfbSTheodore Ts'o continue; 23838e48dcfbSTheodore Ts'o } 23848e48dcfbSTheodore Ts'o 23858e48dcfbSTheodore Ts'o wait_on_page_writeback(page); 23868e48dcfbSTheodore Ts'o BUG_ON(PageWriteback(page)); 23878e48dcfbSTheodore Ts'o 23884e7ea81dSJan Kara if (mpd->map.m_len == 0) 23898eb9e5ceSTheodore Ts'o mpd->first_page = page->index; 23908eb9e5ceSTheodore Ts'o mpd->next_page = page->index + 1; 2391f8bec370SJan Kara /* Add all dirty buffers to mpd */ 23924e7ea81dSJan Kara lblk = ((ext4_lblk_t)page->index) << 23934e7ea81dSJan Kara (PAGE_CACHE_SHIFT - blkbits); 23948eb9e5ceSTheodore Ts'o head = page_buffers(page); 23955f1132b2SJan Kara err = mpage_process_page_bufs(mpd, head, head, lblk); 23965f1132b2SJan Kara if (err <= 0) 23974e7ea81dSJan Kara goto out; 23985f1132b2SJan Kara err = 0; 2399aeac589aSMing Lei left--; 24008e48dcfbSTheodore Ts'o } 24018e48dcfbSTheodore Ts'o pagevec_release(&pvec); 24028e48dcfbSTheodore Ts'o cond_resched(); 24038e48dcfbSTheodore Ts'o } 24044f01b02cSTheodore Ts'o return 0; 24058eb9e5ceSTheodore Ts'o out: 24068eb9e5ceSTheodore Ts'o pagevec_release(&pvec); 24074e7ea81dSJan Kara return err; 24088e48dcfbSTheodore Ts'o } 24098e48dcfbSTheodore Ts'o 241020970ba6STheodore Ts'o static int __writepage(struct page *page, struct writeback_control *wbc, 241120970ba6STheodore Ts'o void *data) 241220970ba6STheodore Ts'o { 241320970ba6STheodore Ts'o struct address_space *mapping = data; 241420970ba6STheodore Ts'o int ret = ext4_writepage(page, wbc); 241520970ba6STheodore Ts'o mapping_set_error(mapping, ret); 241620970ba6STheodore Ts'o return ret; 241720970ba6STheodore Ts'o } 241820970ba6STheodore Ts'o 241920970ba6STheodore Ts'o static int ext4_writepages(struct address_space *mapping, 242064769240SAlex Tomas struct writeback_control *wbc) 242164769240SAlex Tomas { 24224e7ea81dSJan Kara pgoff_t writeback_index = 0; 24234e7ea81dSJan Kara long nr_to_write = wbc->nr_to_write; 242422208dedSAneesh Kumar K.V int range_whole = 0; 24254e7ea81dSJan Kara int cycled = 1; 242661628a3fSMingming Cao handle_t *handle = NULL; 2427df22291fSAneesh Kumar K.V struct mpage_da_data mpd; 24285e745b04SAneesh Kumar K.V struct inode *inode = mapping->host; 24296b523df4SJan Kara int needed_blocks, rsv_blocks = 0, ret = 0; 24305e745b04SAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb); 24314e7ea81dSJan Kara bool done; 24321bce63d1SShaohua Li struct blk_plug plug; 2433cb530541STheodore Ts'o bool give_up_on_write = false; 243461628a3fSMingming Cao 243520970ba6STheodore Ts'o trace_ext4_writepages(inode, wbc); 2436ba80b101STheodore Ts'o 243761628a3fSMingming Cao /* 243861628a3fSMingming Cao * No pages to write? This is mainly a kludge to avoid starting 243961628a3fSMingming Cao * a transaction for special inodes like journal inode on last iput() 244061628a3fSMingming Cao * because that could violate lock ordering on umount 244161628a3fSMingming Cao */ 2442a1d6cc56SAneesh Kumar K.V if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) 2443bbf023c7SMing Lei goto out_writepages; 24442a21e37eSTheodore Ts'o 244520970ba6STheodore Ts'o if (ext4_should_journal_data(inode)) { 244620970ba6STheodore Ts'o struct blk_plug plug; 244720970ba6STheodore Ts'o 244820970ba6STheodore Ts'o blk_start_plug(&plug); 244920970ba6STheodore Ts'o ret = write_cache_pages(mapping, wbc, __writepage, mapping); 245020970ba6STheodore Ts'o blk_finish_plug(&plug); 2451bbf023c7SMing Lei goto out_writepages; 245220970ba6STheodore Ts'o } 245320970ba6STheodore Ts'o 24542a21e37eSTheodore Ts'o /* 24552a21e37eSTheodore Ts'o * If the filesystem has aborted, it is read-only, so return 24562a21e37eSTheodore Ts'o * right away instead of dumping stack traces later on that 24572a21e37eSTheodore Ts'o * will obscure the real source of the problem. We test 24584ab2f15bSTheodore Ts'o * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because 24592a21e37eSTheodore Ts'o * the latter could be true if the filesystem is mounted 246020970ba6STheodore Ts'o * read-only, and in that case, ext4_writepages should 24612a21e37eSTheodore Ts'o * *never* be called, so if that ever happens, we would want 24622a21e37eSTheodore Ts'o * the stack trace. 24632a21e37eSTheodore Ts'o */ 2464bbf023c7SMing Lei if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) { 2465bbf023c7SMing Lei ret = -EROFS; 2466bbf023c7SMing Lei goto out_writepages; 2467bbf023c7SMing Lei } 24682a21e37eSTheodore Ts'o 24696b523df4SJan Kara if (ext4_should_dioread_nolock(inode)) { 24706b523df4SJan Kara /* 24716b523df4SJan Kara * We may need to convert up to one extent per block in 24726b523df4SJan Kara * the page and we may dirty the inode. 24736b523df4SJan Kara */ 24746b523df4SJan Kara rsv_blocks = 1 + (PAGE_CACHE_SIZE >> inode->i_blkbits); 24756b523df4SJan Kara } 24766b523df4SJan Kara 24774e7ea81dSJan Kara /* 24784e7ea81dSJan Kara * If we have inline data and arrive here, it means that 24794e7ea81dSJan Kara * we will soon create the block for the 1st page, so 24804e7ea81dSJan Kara * we'd better clear the inline data here. 24814e7ea81dSJan Kara */ 24824e7ea81dSJan Kara if (ext4_has_inline_data(inode)) { 24834e7ea81dSJan Kara /* Just inode will be modified... */ 24844e7ea81dSJan Kara handle = ext4_journal_start(inode, EXT4_HT_INODE, 1); 24854e7ea81dSJan Kara if (IS_ERR(handle)) { 24864e7ea81dSJan Kara ret = PTR_ERR(handle); 24874e7ea81dSJan Kara goto out_writepages; 24884e7ea81dSJan Kara } 24894e7ea81dSJan Kara BUG_ON(ext4_test_inode_state(inode, 24904e7ea81dSJan Kara EXT4_STATE_MAY_INLINE_DATA)); 24914e7ea81dSJan Kara ext4_destroy_inline_data(handle, inode); 24924e7ea81dSJan Kara ext4_journal_stop(handle); 24934e7ea81dSJan Kara } 24944e7ea81dSJan Kara 249522208dedSAneesh Kumar K.V if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX) 249622208dedSAneesh Kumar K.V range_whole = 1; 249761628a3fSMingming Cao 24982acf2c26SAneesh Kumar K.V if (wbc->range_cyclic) { 24994e7ea81dSJan Kara writeback_index = mapping->writeback_index; 25004e7ea81dSJan Kara if (writeback_index) 25012acf2c26SAneesh Kumar K.V cycled = 0; 25024e7ea81dSJan Kara mpd.first_page = writeback_index; 25034e7ea81dSJan Kara mpd.last_page = -1; 25045b41d924SEric Sandeen } else { 25054e7ea81dSJan Kara mpd.first_page = wbc->range_start >> PAGE_CACHE_SHIFT; 25064e7ea81dSJan Kara mpd.last_page = wbc->range_end >> PAGE_CACHE_SHIFT; 25075b41d924SEric Sandeen } 2508a1d6cc56SAneesh Kumar K.V 25094e7ea81dSJan Kara mpd.inode = inode; 25104e7ea81dSJan Kara mpd.wbc = wbc; 25114e7ea81dSJan Kara ext4_io_submit_init(&mpd.io_submit, wbc); 25122acf2c26SAneesh Kumar K.V retry: 25136e6938b6SWu Fengguang if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages) 25144e7ea81dSJan Kara tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page); 25154e7ea81dSJan Kara done = false; 25161bce63d1SShaohua Li blk_start_plug(&plug); 25174e7ea81dSJan Kara while (!done && mpd.first_page <= mpd.last_page) { 25184e7ea81dSJan Kara /* For each extent of pages we use new io_end */ 25194e7ea81dSJan Kara mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL); 25204e7ea81dSJan Kara if (!mpd.io_submit.io_end) { 25214e7ea81dSJan Kara ret = -ENOMEM; 25224e7ea81dSJan Kara break; 25234e7ea81dSJan Kara } 2524a1d6cc56SAneesh Kumar K.V 2525a1d6cc56SAneesh Kumar K.V /* 25264e7ea81dSJan Kara * We have two constraints: We find one extent to map and we 25274e7ea81dSJan Kara * must always write out whole page (makes a difference when 25284e7ea81dSJan Kara * blocksize < pagesize) so that we don't block on IO when we 25294e7ea81dSJan Kara * try to write out the rest of the page. Journalled mode is 25304e7ea81dSJan Kara * not supported by delalloc. 2531a1d6cc56SAneesh Kumar K.V */ 2532a1d6cc56SAneesh Kumar K.V BUG_ON(ext4_should_journal_data(inode)); 2533525f4ed8SMingming Cao needed_blocks = ext4_da_writepages_trans_blocks(inode); 2534a1d6cc56SAneesh Kumar K.V 253561628a3fSMingming Cao /* start a new transaction */ 25366b523df4SJan Kara handle = ext4_journal_start_with_reserve(inode, 25376b523df4SJan Kara EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks); 253861628a3fSMingming Cao if (IS_ERR(handle)) { 253961628a3fSMingming Cao ret = PTR_ERR(handle); 25401693918eSTheodore Ts'o ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: " 2541fbe845ddSCurt Wohlgemuth "%ld pages, ino %lu; err %d", __func__, 2542a1d6cc56SAneesh Kumar K.V wbc->nr_to_write, inode->i_ino, ret); 25434e7ea81dSJan Kara /* Release allocated io_end */ 25444e7ea81dSJan Kara ext4_put_io_end(mpd.io_submit.io_end); 25454e7ea81dSJan Kara break; 254661628a3fSMingming Cao } 2547f63e6005STheodore Ts'o 25484e7ea81dSJan Kara trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc); 25494e7ea81dSJan Kara ret = mpage_prepare_extent_to_map(&mpd); 25504e7ea81dSJan Kara if (!ret) { 25514e7ea81dSJan Kara if (mpd.map.m_len) 2552cb530541STheodore Ts'o ret = mpage_map_and_submit_extent(handle, &mpd, 2553cb530541STheodore Ts'o &give_up_on_write); 25544e7ea81dSJan Kara else { 2555f63e6005STheodore Ts'o /* 25564e7ea81dSJan Kara * We scanned the whole range (or exhausted 25574e7ea81dSJan Kara * nr_to_write), submitted what was mapped and 25584e7ea81dSJan Kara * didn't find anything needing mapping. We are 25594e7ea81dSJan Kara * done. 2560f63e6005STheodore Ts'o */ 25614e7ea81dSJan Kara done = true; 2562f63e6005STheodore Ts'o } 25634e7ea81dSJan Kara } 256461628a3fSMingming Cao ext4_journal_stop(handle); 25654e7ea81dSJan Kara /* Submit prepared bio */ 25664e7ea81dSJan Kara ext4_io_submit(&mpd.io_submit); 25674e7ea81dSJan Kara /* Unlock pages we didn't use */ 2568cb530541STheodore Ts'o mpage_release_unused_pages(&mpd, give_up_on_write); 25694e7ea81dSJan Kara /* Drop our io_end reference we got from init */ 25704e7ea81dSJan Kara ext4_put_io_end(mpd.io_submit.io_end); 2571df22291fSAneesh Kumar K.V 25724e7ea81dSJan Kara if (ret == -ENOSPC && sbi->s_journal) { 25734e7ea81dSJan Kara /* 25744e7ea81dSJan Kara * Commit the transaction which would 257522208dedSAneesh Kumar K.V * free blocks released in the transaction 257622208dedSAneesh Kumar K.V * and try again 257722208dedSAneesh Kumar K.V */ 2578df22291fSAneesh Kumar K.V jbd2_journal_force_commit_nested(sbi->s_journal); 257922208dedSAneesh Kumar K.V ret = 0; 25804e7ea81dSJan Kara continue; 25814e7ea81dSJan Kara } 25824e7ea81dSJan Kara /* Fatal error - ENOMEM, EIO... */ 25834e7ea81dSJan Kara if (ret) 258461628a3fSMingming Cao break; 258561628a3fSMingming Cao } 25861bce63d1SShaohua Li blk_finish_plug(&plug); 25879c12a831SJan Kara if (!ret && !cycled && wbc->nr_to_write > 0) { 25882acf2c26SAneesh Kumar K.V cycled = 1; 25894e7ea81dSJan Kara mpd.last_page = writeback_index - 1; 25904e7ea81dSJan Kara mpd.first_page = 0; 25912acf2c26SAneesh Kumar K.V goto retry; 25922acf2c26SAneesh Kumar K.V } 259361628a3fSMingming Cao 259422208dedSAneesh Kumar K.V /* Update index */ 259522208dedSAneesh Kumar K.V if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0)) 259622208dedSAneesh Kumar K.V /* 25974e7ea81dSJan Kara * Set the writeback_index so that range_cyclic 259822208dedSAneesh Kumar K.V * mode will write it back later 259922208dedSAneesh Kumar K.V */ 26004e7ea81dSJan Kara mapping->writeback_index = mpd.first_page; 2601a1d6cc56SAneesh Kumar K.V 260261628a3fSMingming Cao out_writepages: 260320970ba6STheodore Ts'o trace_ext4_writepages_result(inode, wbc, ret, 26044e7ea81dSJan Kara nr_to_write - wbc->nr_to_write); 260561628a3fSMingming Cao return ret; 260664769240SAlex Tomas } 260764769240SAlex Tomas 260879f0be8dSAneesh Kumar K.V static int ext4_nonda_switch(struct super_block *sb) 260979f0be8dSAneesh Kumar K.V { 26105c1ff336SEric Whitney s64 free_clusters, dirty_clusters; 261179f0be8dSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(sb); 261279f0be8dSAneesh Kumar K.V 261379f0be8dSAneesh Kumar K.V /* 261479f0be8dSAneesh Kumar K.V * switch to non delalloc mode if we are running low 261579f0be8dSAneesh Kumar K.V * on free block. The free block accounting via percpu 2616179f7ebfSEric Dumazet * counters can get slightly wrong with percpu_counter_batch getting 261779f0be8dSAneesh Kumar K.V * accumulated on each CPU without updating global counters 261879f0be8dSAneesh Kumar K.V * Delalloc need an accurate free block accounting. So switch 261979f0be8dSAneesh Kumar K.V * to non delalloc when we are near to error range. 262079f0be8dSAneesh Kumar K.V */ 26215c1ff336SEric Whitney free_clusters = 26225c1ff336SEric Whitney percpu_counter_read_positive(&sbi->s_freeclusters_counter); 26235c1ff336SEric Whitney dirty_clusters = 26245c1ff336SEric Whitney percpu_counter_read_positive(&sbi->s_dirtyclusters_counter); 262500d4e736STheodore Ts'o /* 262600d4e736STheodore Ts'o * Start pushing delalloc when 1/2 of free blocks are dirty. 262700d4e736STheodore Ts'o */ 26285c1ff336SEric Whitney if (dirty_clusters && (free_clusters < 2 * dirty_clusters)) 262910ee27a0SMiao Xie try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE); 263000d4e736STheodore Ts'o 26315c1ff336SEric Whitney if (2 * free_clusters < 3 * dirty_clusters || 26325c1ff336SEric Whitney free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) { 263379f0be8dSAneesh Kumar K.V /* 2634c8afb446SEric Sandeen * free block count is less than 150% of dirty blocks 2635c8afb446SEric Sandeen * or free blocks is less than watermark 263679f0be8dSAneesh Kumar K.V */ 263779f0be8dSAneesh Kumar K.V return 1; 263879f0be8dSAneesh Kumar K.V } 263979f0be8dSAneesh Kumar K.V return 0; 264079f0be8dSAneesh Kumar K.V } 264179f0be8dSAneesh Kumar K.V 26420ff8947fSEric Sandeen /* We always reserve for an inode update; the superblock could be there too */ 26430ff8947fSEric Sandeen static int ext4_da_write_credits(struct inode *inode, loff_t pos, unsigned len) 26440ff8947fSEric Sandeen { 2645e2b911c5SDarrick J. Wong if (likely(ext4_has_feature_large_file(inode->i_sb))) 26460ff8947fSEric Sandeen return 1; 26470ff8947fSEric Sandeen 26480ff8947fSEric Sandeen if (pos + len <= 0x7fffffffULL) 26490ff8947fSEric Sandeen return 1; 26500ff8947fSEric Sandeen 26510ff8947fSEric Sandeen /* We might need to update the superblock to set LARGE_FILE */ 26520ff8947fSEric Sandeen return 2; 26530ff8947fSEric Sandeen } 26540ff8947fSEric Sandeen 265564769240SAlex Tomas static int ext4_da_write_begin(struct file *file, struct address_space *mapping, 265664769240SAlex Tomas loff_t pos, unsigned len, unsigned flags, 265764769240SAlex Tomas struct page **pagep, void **fsdata) 265864769240SAlex Tomas { 265972b8ab9dSEric Sandeen int ret, retries = 0; 266064769240SAlex Tomas struct page *page; 266164769240SAlex Tomas pgoff_t index; 266264769240SAlex Tomas struct inode *inode = mapping->host; 266364769240SAlex Tomas handle_t *handle; 266464769240SAlex Tomas 266564769240SAlex Tomas index = pos >> PAGE_CACHE_SHIFT; 266679f0be8dSAneesh Kumar K.V 266779f0be8dSAneesh Kumar K.V if (ext4_nonda_switch(inode->i_sb)) { 266879f0be8dSAneesh Kumar K.V *fsdata = (void *)FALL_BACK_TO_NONDELALLOC; 266979f0be8dSAneesh Kumar K.V return ext4_write_begin(file, mapping, pos, 267079f0be8dSAneesh Kumar K.V len, flags, pagep, fsdata); 267179f0be8dSAneesh Kumar K.V } 267279f0be8dSAneesh Kumar K.V *fsdata = (void *)0; 26739bffad1eSTheodore Ts'o trace_ext4_da_write_begin(inode, pos, len, flags); 26749c3569b5STao Ma 26759c3569b5STao Ma if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) { 26769c3569b5STao Ma ret = ext4_da_write_inline_data_begin(mapping, inode, 26779c3569b5STao Ma pos, len, flags, 26789c3569b5STao Ma pagep, fsdata); 26799c3569b5STao Ma if (ret < 0) 268047564bfbSTheodore Ts'o return ret; 268147564bfbSTheodore Ts'o if (ret == 1) 268247564bfbSTheodore Ts'o return 0; 26839c3569b5STao Ma } 26849c3569b5STao Ma 268547564bfbSTheodore Ts'o /* 268647564bfbSTheodore Ts'o * grab_cache_page_write_begin() can take a long time if the 268747564bfbSTheodore Ts'o * system is thrashing due to memory pressure, or if the page 268847564bfbSTheodore Ts'o * is being written back. So grab it first before we start 268947564bfbSTheodore Ts'o * the transaction handle. This also allows us to allocate 269047564bfbSTheodore Ts'o * the page (if needed) without using GFP_NOFS. 269147564bfbSTheodore Ts'o */ 269247564bfbSTheodore Ts'o retry_grab: 269347564bfbSTheodore Ts'o page = grab_cache_page_write_begin(mapping, index, flags); 269447564bfbSTheodore Ts'o if (!page) 269547564bfbSTheodore Ts'o return -ENOMEM; 269647564bfbSTheodore Ts'o unlock_page(page); 269747564bfbSTheodore Ts'o 269864769240SAlex Tomas /* 269964769240SAlex Tomas * With delayed allocation, we don't log the i_disksize update 270064769240SAlex Tomas * if there is delayed block allocation. But we still need 270164769240SAlex Tomas * to journalling the i_disksize update if writes to the end 270264769240SAlex Tomas * of file which has an already mapped buffer. 270364769240SAlex Tomas */ 270447564bfbSTheodore Ts'o retry_journal: 27050ff8947fSEric Sandeen handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 27060ff8947fSEric Sandeen ext4_da_write_credits(inode, pos, len)); 270764769240SAlex Tomas if (IS_ERR(handle)) { 270847564bfbSTheodore Ts'o page_cache_release(page); 270947564bfbSTheodore Ts'o return PTR_ERR(handle); 271064769240SAlex Tomas } 271164769240SAlex Tomas 271247564bfbSTheodore Ts'o lock_page(page); 271347564bfbSTheodore Ts'o if (page->mapping != mapping) { 271447564bfbSTheodore Ts'o /* The page got truncated from under us */ 271547564bfbSTheodore Ts'o unlock_page(page); 271647564bfbSTheodore Ts'o page_cache_release(page); 2717d5a0d4f7SEric Sandeen ext4_journal_stop(handle); 271847564bfbSTheodore Ts'o goto retry_grab; 2719d5a0d4f7SEric Sandeen } 272047564bfbSTheodore Ts'o /* In case writeback began while the page was unlocked */ 27217afe5aa5SDmitry Monakhov wait_for_stable_page(page); 272264769240SAlex Tomas 27232058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION 27242058f83aSMichael Halcrow ret = ext4_block_write_begin(page, pos, len, 27252058f83aSMichael Halcrow ext4_da_get_block_prep); 27262058f83aSMichael Halcrow #else 27276e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep); 27282058f83aSMichael Halcrow #endif 272964769240SAlex Tomas if (ret < 0) { 273064769240SAlex Tomas unlock_page(page); 273164769240SAlex Tomas ext4_journal_stop(handle); 2732ae4d5372SAneesh Kumar K.V /* 2733ae4d5372SAneesh Kumar K.V * block_write_begin may have instantiated a few blocks 2734ae4d5372SAneesh Kumar K.V * outside i_size. Trim these off again. Don't need 2735ae4d5372SAneesh Kumar K.V * i_size_read because we hold i_mutex. 2736ae4d5372SAneesh Kumar K.V */ 2737ae4d5372SAneesh Kumar K.V if (pos + len > inode->i_size) 2738b9a4207dSJan Kara ext4_truncate_failed_write(inode); 273947564bfbSTheodore Ts'o 274047564bfbSTheodore Ts'o if (ret == -ENOSPC && 274147564bfbSTheodore Ts'o ext4_should_retry_alloc(inode->i_sb, &retries)) 274247564bfbSTheodore Ts'o goto retry_journal; 274347564bfbSTheodore Ts'o 274447564bfbSTheodore Ts'o page_cache_release(page); 274547564bfbSTheodore Ts'o return ret; 274664769240SAlex Tomas } 274764769240SAlex Tomas 274847564bfbSTheodore Ts'o *pagep = page; 274964769240SAlex Tomas return ret; 275064769240SAlex Tomas } 275164769240SAlex Tomas 2752632eaeabSMingming Cao /* 2753632eaeabSMingming Cao * Check if we should update i_disksize 2754632eaeabSMingming Cao * when write to the end of file but not require block allocation 2755632eaeabSMingming Cao */ 2756632eaeabSMingming Cao static int ext4_da_should_update_i_disksize(struct page *page, 2757632eaeabSMingming Cao unsigned long offset) 2758632eaeabSMingming Cao { 2759632eaeabSMingming Cao struct buffer_head *bh; 2760632eaeabSMingming Cao struct inode *inode = page->mapping->host; 2761632eaeabSMingming Cao unsigned int idx; 2762632eaeabSMingming Cao int i; 2763632eaeabSMingming Cao 2764632eaeabSMingming Cao bh = page_buffers(page); 2765632eaeabSMingming Cao idx = offset >> inode->i_blkbits; 2766632eaeabSMingming Cao 2767632eaeabSMingming Cao for (i = 0; i < idx; i++) 2768632eaeabSMingming Cao bh = bh->b_this_page; 2769632eaeabSMingming Cao 277029fa89d0SAneesh Kumar K.V if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh)) 2771632eaeabSMingming Cao return 0; 2772632eaeabSMingming Cao return 1; 2773632eaeabSMingming Cao } 2774632eaeabSMingming Cao 277564769240SAlex Tomas static int ext4_da_write_end(struct file *file, 277664769240SAlex Tomas struct address_space *mapping, 277764769240SAlex Tomas loff_t pos, unsigned len, unsigned copied, 277864769240SAlex Tomas struct page *page, void *fsdata) 277964769240SAlex Tomas { 278064769240SAlex Tomas struct inode *inode = mapping->host; 278164769240SAlex Tomas int ret = 0, ret2; 278264769240SAlex Tomas handle_t *handle = ext4_journal_current_handle(); 278364769240SAlex Tomas loff_t new_i_size; 2784632eaeabSMingming Cao unsigned long start, end; 278579f0be8dSAneesh Kumar K.V int write_mode = (int)(unsigned long)fsdata; 278679f0be8dSAneesh Kumar K.V 278774d553aaSTheodore Ts'o if (write_mode == FALL_BACK_TO_NONDELALLOC) 278874d553aaSTheodore Ts'o return ext4_write_end(file, mapping, pos, 278979f0be8dSAneesh Kumar K.V len, copied, page, fsdata); 2790632eaeabSMingming Cao 27919bffad1eSTheodore Ts'o trace_ext4_da_write_end(inode, pos, len, copied); 2792632eaeabSMingming Cao start = pos & (PAGE_CACHE_SIZE - 1); 2793632eaeabSMingming Cao end = start + copied - 1; 279464769240SAlex Tomas 279564769240SAlex Tomas /* 279664769240SAlex Tomas * generic_write_end() will run mark_inode_dirty() if i_size 279764769240SAlex Tomas * changes. So let's piggyback the i_disksize mark_inode_dirty 279864769240SAlex Tomas * into that. 279964769240SAlex Tomas */ 280064769240SAlex Tomas new_i_size = pos + copied; 2801ea51d132SAndrea Arcangeli if (copied && new_i_size > EXT4_I(inode)->i_disksize) { 28029c3569b5STao Ma if (ext4_has_inline_data(inode) || 28039c3569b5STao Ma ext4_da_should_update_i_disksize(page, end)) { 2804ee124d27SDmitry Monakhov ext4_update_i_disksize(inode, new_i_size); 2805cf17fea6SAneesh Kumar K.V /* We need to mark inode dirty even if 2806cf17fea6SAneesh Kumar K.V * new_i_size is less that inode->i_size 2807cf17fea6SAneesh Kumar K.V * bu greater than i_disksize.(hint delalloc) 2808cf17fea6SAneesh Kumar K.V */ 2809cf17fea6SAneesh Kumar K.V ext4_mark_inode_dirty(handle, inode); 2810632eaeabSMingming Cao } 2811632eaeabSMingming Cao } 28129c3569b5STao Ma 28139c3569b5STao Ma if (write_mode != CONVERT_INLINE_DATA && 28149c3569b5STao Ma ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) && 28159c3569b5STao Ma ext4_has_inline_data(inode)) 28169c3569b5STao Ma ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied, 28179c3569b5STao Ma page); 28189c3569b5STao Ma else 281964769240SAlex Tomas ret2 = generic_write_end(file, mapping, pos, len, copied, 282064769240SAlex Tomas page, fsdata); 28219c3569b5STao Ma 282264769240SAlex Tomas copied = ret2; 282364769240SAlex Tomas if (ret2 < 0) 282464769240SAlex Tomas ret = ret2; 282564769240SAlex Tomas ret2 = ext4_journal_stop(handle); 282664769240SAlex Tomas if (!ret) 282764769240SAlex Tomas ret = ret2; 282864769240SAlex Tomas 282964769240SAlex Tomas return ret ? ret : copied; 283064769240SAlex Tomas } 283164769240SAlex Tomas 2832d47992f8SLukas Czerner static void ext4_da_invalidatepage(struct page *page, unsigned int offset, 2833d47992f8SLukas Czerner unsigned int length) 283464769240SAlex Tomas { 283564769240SAlex Tomas /* 283664769240SAlex Tomas * Drop reserved blocks 283764769240SAlex Tomas */ 283864769240SAlex Tomas BUG_ON(!PageLocked(page)); 283964769240SAlex Tomas if (!page_has_buffers(page)) 284064769240SAlex Tomas goto out; 284164769240SAlex Tomas 2842ca99fdd2SLukas Czerner ext4_da_page_release_reservation(page, offset, length); 284364769240SAlex Tomas 284464769240SAlex Tomas out: 2845d47992f8SLukas Czerner ext4_invalidatepage(page, offset, length); 284664769240SAlex Tomas 284764769240SAlex Tomas return; 284864769240SAlex Tomas } 284964769240SAlex Tomas 2850ccd2506bSTheodore Ts'o /* 2851ccd2506bSTheodore Ts'o * Force all delayed allocation blocks to be allocated for a given inode. 2852ccd2506bSTheodore Ts'o */ 2853ccd2506bSTheodore Ts'o int ext4_alloc_da_blocks(struct inode *inode) 2854ccd2506bSTheodore Ts'o { 2855fb40ba0dSTheodore Ts'o trace_ext4_alloc_da_blocks(inode); 2856fb40ba0dSTheodore Ts'o 285771d4f7d0STheodore Ts'o if (!EXT4_I(inode)->i_reserved_data_blocks) 2858ccd2506bSTheodore Ts'o return 0; 2859ccd2506bSTheodore Ts'o 2860ccd2506bSTheodore Ts'o /* 2861ccd2506bSTheodore Ts'o * We do something simple for now. The filemap_flush() will 2862ccd2506bSTheodore Ts'o * also start triggering a write of the data blocks, which is 2863ccd2506bSTheodore Ts'o * not strictly speaking necessary (and for users of 2864ccd2506bSTheodore Ts'o * laptop_mode, not even desirable). However, to do otherwise 2865ccd2506bSTheodore Ts'o * would require replicating code paths in: 2866ccd2506bSTheodore Ts'o * 286720970ba6STheodore Ts'o * ext4_writepages() -> 2868ccd2506bSTheodore Ts'o * write_cache_pages() ---> (via passed in callback function) 2869ccd2506bSTheodore Ts'o * __mpage_da_writepage() --> 2870ccd2506bSTheodore Ts'o * mpage_add_bh_to_extent() 2871ccd2506bSTheodore Ts'o * mpage_da_map_blocks() 2872ccd2506bSTheodore Ts'o * 2873ccd2506bSTheodore Ts'o * The problem is that write_cache_pages(), located in 2874ccd2506bSTheodore Ts'o * mm/page-writeback.c, marks pages clean in preparation for 2875ccd2506bSTheodore Ts'o * doing I/O, which is not desirable if we're not planning on 2876ccd2506bSTheodore Ts'o * doing I/O at all. 2877ccd2506bSTheodore Ts'o * 2878ccd2506bSTheodore Ts'o * We could call write_cache_pages(), and then redirty all of 2879380cf090SWu Fengguang * the pages by calling redirty_page_for_writepage() but that 2880ccd2506bSTheodore Ts'o * would be ugly in the extreme. So instead we would need to 2881ccd2506bSTheodore Ts'o * replicate parts of the code in the above functions, 288225985edcSLucas De Marchi * simplifying them because we wouldn't actually intend to 2883ccd2506bSTheodore Ts'o * write out the pages, but rather only collect contiguous 2884ccd2506bSTheodore Ts'o * logical block extents, call the multi-block allocator, and 2885ccd2506bSTheodore Ts'o * then update the buffer heads with the block allocations. 2886ccd2506bSTheodore Ts'o * 2887ccd2506bSTheodore Ts'o * For now, though, we'll cheat by calling filemap_flush(), 2888ccd2506bSTheodore Ts'o * which will map the blocks, and start the I/O, but not 2889ccd2506bSTheodore Ts'o * actually wait for the I/O to complete. 2890ccd2506bSTheodore Ts'o */ 2891ccd2506bSTheodore Ts'o return filemap_flush(inode->i_mapping); 2892ccd2506bSTheodore Ts'o } 289364769240SAlex Tomas 289464769240SAlex Tomas /* 2895ac27a0ecSDave Kleikamp * bmap() is special. It gets used by applications such as lilo and by 2896ac27a0ecSDave Kleikamp * the swapper to find the on-disk block of a specific piece of data. 2897ac27a0ecSDave Kleikamp * 2898ac27a0ecSDave Kleikamp * Naturally, this is dangerous if the block concerned is still in the 2899617ba13bSMingming Cao * journal. If somebody makes a swapfile on an ext4 data-journaling 2900ac27a0ecSDave Kleikamp * filesystem and enables swap, then they may get a nasty shock when the 2901ac27a0ecSDave Kleikamp * data getting swapped to that swapfile suddenly gets overwritten by 2902ac27a0ecSDave Kleikamp * the original zero's written out previously to the journal and 2903ac27a0ecSDave Kleikamp * awaiting writeback in the kernel's buffer cache. 2904ac27a0ecSDave Kleikamp * 2905ac27a0ecSDave Kleikamp * So, if we see any bmap calls here on a modified, data-journaled file, 2906ac27a0ecSDave Kleikamp * take extra steps to flush any blocks which might be in the cache. 2907ac27a0ecSDave Kleikamp */ 2908617ba13bSMingming Cao static sector_t ext4_bmap(struct address_space *mapping, sector_t block) 2909ac27a0ecSDave Kleikamp { 2910ac27a0ecSDave Kleikamp struct inode *inode = mapping->host; 2911ac27a0ecSDave Kleikamp journal_t *journal; 2912ac27a0ecSDave Kleikamp int err; 2913ac27a0ecSDave Kleikamp 291446c7f254STao Ma /* 291546c7f254STao Ma * We can get here for an inline file via the FIBMAP ioctl 291646c7f254STao Ma */ 291746c7f254STao Ma if (ext4_has_inline_data(inode)) 291846c7f254STao Ma return 0; 291946c7f254STao Ma 292064769240SAlex Tomas if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) && 292164769240SAlex Tomas test_opt(inode->i_sb, DELALLOC)) { 292264769240SAlex Tomas /* 292364769240SAlex Tomas * With delalloc we want to sync the file 292464769240SAlex Tomas * so that we can make sure we allocate 292564769240SAlex Tomas * blocks for file 292664769240SAlex Tomas */ 292764769240SAlex Tomas filemap_write_and_wait(mapping); 292864769240SAlex Tomas } 292964769240SAlex Tomas 293019f5fb7aSTheodore Ts'o if (EXT4_JOURNAL(inode) && 293119f5fb7aSTheodore Ts'o ext4_test_inode_state(inode, EXT4_STATE_JDATA)) { 2932ac27a0ecSDave Kleikamp /* 2933ac27a0ecSDave Kleikamp * This is a REALLY heavyweight approach, but the use of 2934ac27a0ecSDave Kleikamp * bmap on dirty files is expected to be extremely rare: 2935ac27a0ecSDave Kleikamp * only if we run lilo or swapon on a freshly made file 2936ac27a0ecSDave Kleikamp * do we expect this to happen. 2937ac27a0ecSDave Kleikamp * 2938ac27a0ecSDave Kleikamp * (bmap requires CAP_SYS_RAWIO so this does not 2939ac27a0ecSDave Kleikamp * represent an unprivileged user DOS attack --- we'd be 2940ac27a0ecSDave Kleikamp * in trouble if mortal users could trigger this path at 2941ac27a0ecSDave Kleikamp * will.) 2942ac27a0ecSDave Kleikamp * 2943617ba13bSMingming Cao * NB. EXT4_STATE_JDATA is not set on files other than 2944ac27a0ecSDave Kleikamp * regular files. If somebody wants to bmap a directory 2945ac27a0ecSDave Kleikamp * or symlink and gets confused because the buffer 2946ac27a0ecSDave Kleikamp * hasn't yet been flushed to disk, they deserve 2947ac27a0ecSDave Kleikamp * everything they get. 2948ac27a0ecSDave Kleikamp */ 2949ac27a0ecSDave Kleikamp 295019f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_JDATA); 2951617ba13bSMingming Cao journal = EXT4_JOURNAL(inode); 2952dab291afSMingming Cao jbd2_journal_lock_updates(journal); 2953dab291afSMingming Cao err = jbd2_journal_flush(journal); 2954dab291afSMingming Cao jbd2_journal_unlock_updates(journal); 2955ac27a0ecSDave Kleikamp 2956ac27a0ecSDave Kleikamp if (err) 2957ac27a0ecSDave Kleikamp return 0; 2958ac27a0ecSDave Kleikamp } 2959ac27a0ecSDave Kleikamp 2960617ba13bSMingming Cao return generic_block_bmap(mapping, block, ext4_get_block); 2961ac27a0ecSDave Kleikamp } 2962ac27a0ecSDave Kleikamp 2963617ba13bSMingming Cao static int ext4_readpage(struct file *file, struct page *page) 2964ac27a0ecSDave Kleikamp { 296546c7f254STao Ma int ret = -EAGAIN; 296646c7f254STao Ma struct inode *inode = page->mapping->host; 296746c7f254STao Ma 29680562e0baSJiaying Zhang trace_ext4_readpage(page); 296946c7f254STao Ma 297046c7f254STao Ma if (ext4_has_inline_data(inode)) 297146c7f254STao Ma ret = ext4_readpage_inline(inode, page); 297246c7f254STao Ma 297346c7f254STao Ma if (ret == -EAGAIN) 2974f64e02feSTheodore Ts'o return ext4_mpage_readpages(page->mapping, NULL, page, 1); 297546c7f254STao Ma 297646c7f254STao Ma return ret; 2977ac27a0ecSDave Kleikamp } 2978ac27a0ecSDave Kleikamp 2979ac27a0ecSDave Kleikamp static int 2980617ba13bSMingming Cao ext4_readpages(struct file *file, struct address_space *mapping, 2981ac27a0ecSDave Kleikamp struct list_head *pages, unsigned nr_pages) 2982ac27a0ecSDave Kleikamp { 298346c7f254STao Ma struct inode *inode = mapping->host; 298446c7f254STao Ma 298546c7f254STao Ma /* If the file has inline data, no need to do readpages. */ 298646c7f254STao Ma if (ext4_has_inline_data(inode)) 298746c7f254STao Ma return 0; 298846c7f254STao Ma 2989f64e02feSTheodore Ts'o return ext4_mpage_readpages(mapping, pages, NULL, nr_pages); 2990ac27a0ecSDave Kleikamp } 2991ac27a0ecSDave Kleikamp 2992d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset, 2993d47992f8SLukas Czerner unsigned int length) 2994ac27a0ecSDave Kleikamp { 2995ca99fdd2SLukas Czerner trace_ext4_invalidatepage(page, offset, length); 29960562e0baSJiaying Zhang 29974520fb3cSJan Kara /* No journalling happens on data buffers when this function is used */ 29984520fb3cSJan Kara WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page))); 29994520fb3cSJan Kara 3000ca99fdd2SLukas Czerner block_invalidatepage(page, offset, length); 30014520fb3cSJan Kara } 30024520fb3cSJan Kara 300353e87268SJan Kara static int __ext4_journalled_invalidatepage(struct page *page, 3004ca99fdd2SLukas Czerner unsigned int offset, 3005ca99fdd2SLukas Czerner unsigned int length) 30064520fb3cSJan Kara { 30074520fb3cSJan Kara journal_t *journal = EXT4_JOURNAL(page->mapping->host); 30084520fb3cSJan Kara 3009ca99fdd2SLukas Czerner trace_ext4_journalled_invalidatepage(page, offset, length); 30104520fb3cSJan Kara 3011744692dcSJiaying Zhang /* 3012ac27a0ecSDave Kleikamp * If it's a full truncate we just forget about the pending dirtying 3013ac27a0ecSDave Kleikamp */ 3014ca99fdd2SLukas Czerner if (offset == 0 && length == PAGE_CACHE_SIZE) 3015ac27a0ecSDave Kleikamp ClearPageChecked(page); 3016ac27a0ecSDave Kleikamp 3017ca99fdd2SLukas Czerner return jbd2_journal_invalidatepage(journal, page, offset, length); 301853e87268SJan Kara } 301953e87268SJan Kara 302053e87268SJan Kara /* Wrapper for aops... */ 302153e87268SJan Kara static void ext4_journalled_invalidatepage(struct page *page, 3022d47992f8SLukas Czerner unsigned int offset, 3023d47992f8SLukas Czerner unsigned int length) 302453e87268SJan Kara { 3025ca99fdd2SLukas Czerner WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0); 3026ac27a0ecSDave Kleikamp } 3027ac27a0ecSDave Kleikamp 3028617ba13bSMingming Cao static int ext4_releasepage(struct page *page, gfp_t wait) 3029ac27a0ecSDave Kleikamp { 3030617ba13bSMingming Cao journal_t *journal = EXT4_JOURNAL(page->mapping->host); 3031ac27a0ecSDave Kleikamp 30320562e0baSJiaying Zhang trace_ext4_releasepage(page); 30330562e0baSJiaying Zhang 3034e1c36595SJan Kara /* Page has dirty journalled data -> cannot release */ 3035e1c36595SJan Kara if (PageChecked(page)) 3036ac27a0ecSDave Kleikamp return 0; 30370390131bSFrank Mayhar if (journal) 3038dab291afSMingming Cao return jbd2_journal_try_to_free_buffers(journal, page, wait); 30390390131bSFrank Mayhar else 30400390131bSFrank Mayhar return try_to_free_buffers(page); 3041ac27a0ecSDave Kleikamp } 3042ac27a0ecSDave Kleikamp 3043ac27a0ecSDave Kleikamp /* 30442ed88685STheodore Ts'o * ext4_get_block used when preparing for a DIO write or buffer write. 30452ed88685STheodore Ts'o * We allocate an uinitialized extent if blocks haven't been allocated. 30462ed88685STheodore Ts'o * The extent will be converted to initialized after the IO is complete. 30472ed88685STheodore Ts'o */ 3048f19d5870STao Ma int ext4_get_block_write(struct inode *inode, sector_t iblock, 30494c0425ffSMingming Cao struct buffer_head *bh_result, int create) 30504c0425ffSMingming Cao { 3051c7064ef1SJiaying Zhang ext4_debug("ext4_get_block_write: inode %lu, create flag %d\n", 30528d5d02e6SMingming Cao inode->i_ino, create); 30532ed88685STheodore Ts'o return _ext4_get_block(inode, iblock, bh_result, 30542ed88685STheodore Ts'o EXT4_GET_BLOCKS_IO_CREATE_EXT); 30554c0425ffSMingming Cao } 30564c0425ffSMingming Cao 3057729f52c6SZheng Liu static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock, 30588b0f165fSAnatol Pomozov struct buffer_head *bh_result, int create) 3059729f52c6SZheng Liu { 30608b0f165fSAnatol Pomozov ext4_debug("ext4_get_block_write_nolock: inode %lu, create flag %d\n", 30618b0f165fSAnatol Pomozov inode->i_ino, create); 30628b0f165fSAnatol Pomozov return _ext4_get_block(inode, iblock, bh_result, 30638b0f165fSAnatol Pomozov EXT4_GET_BLOCKS_NO_LOCK); 3064729f52c6SZheng Liu } 3065729f52c6SZheng Liu 3066ed923b57SMatthew Wilcox int ext4_get_block_dax(struct inode *inode, sector_t iblock, 3067ed923b57SMatthew Wilcox struct buffer_head *bh_result, int create) 3068ed923b57SMatthew Wilcox { 3069ed923b57SMatthew Wilcox int flags = EXT4_GET_BLOCKS_PRE_IO | EXT4_GET_BLOCKS_UNWRIT_EXT; 3070ed923b57SMatthew Wilcox if (create) 3071ed923b57SMatthew Wilcox flags |= EXT4_GET_BLOCKS_CREATE; 3072ed923b57SMatthew Wilcox ext4_debug("ext4_get_block_dax: inode %lu, create flag %d\n", 3073ed923b57SMatthew Wilcox inode->i_ino, create); 3074ed923b57SMatthew Wilcox return _ext4_get_block(inode, iblock, bh_result, flags); 3075ed923b57SMatthew Wilcox } 3076ed923b57SMatthew Wilcox 30774c0425ffSMingming Cao static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset, 30787b7a8665SChristoph Hellwig ssize_t size, void *private) 30794c0425ffSMingming Cao { 30804c0425ffSMingming Cao ext4_io_end_t *io_end = iocb->private; 30814c0425ffSMingming Cao 308297a851edSJan Kara /* if not async direct IO just return */ 30837b7a8665SChristoph Hellwig if (!io_end) 308497a851edSJan Kara return; 30854b70df18SMingming 30868d5d02e6SMingming Cao ext_debug("ext4_end_io_dio(): io_end 0x%p " 3087ace36ad4SJoe Perches "for inode %lu, iocb 0x%p, offset %llu, size %zd\n", 30888d5d02e6SMingming Cao iocb->private, io_end->inode->i_ino, iocb, offset, 30898d5d02e6SMingming Cao size); 30908d5d02e6SMingming Cao 3091b5a7e970STheodore Ts'o iocb->private = NULL; 30924c0425ffSMingming Cao io_end->offset = offset; 30934c0425ffSMingming Cao io_end->size = size; 30947b7a8665SChristoph Hellwig ext4_put_io_end(io_end); 30954c0425ffSMingming Cao } 3096c7064ef1SJiaying Zhang 30974c0425ffSMingming Cao /* 30984c0425ffSMingming Cao * For ext4 extent files, ext4 will do direct-io write to holes, 30994c0425ffSMingming Cao * preallocated extents, and those write extend the file, no need to 31004c0425ffSMingming Cao * fall back to buffered IO. 31014c0425ffSMingming Cao * 3102556615dcSLukas Czerner * For holes, we fallocate those blocks, mark them as unwritten 310369c499d1STheodore Ts'o * If those blocks were preallocated, we mark sure they are split, but 3104556615dcSLukas Czerner * still keep the range to write as unwritten. 31054c0425ffSMingming Cao * 310669c499d1STheodore Ts'o * The unwritten extents will be converted to written when DIO is completed. 31078d5d02e6SMingming Cao * For async direct IO, since the IO may still pending when return, we 310825985edcSLucas De Marchi * set up an end_io call back function, which will do the conversion 31098d5d02e6SMingming Cao * when async direct IO completed. 31104c0425ffSMingming Cao * 31114c0425ffSMingming Cao * If the O_DIRECT write will extend the file then add this inode to the 31124c0425ffSMingming Cao * orphan list. So recovery will truncate it back to the original size 31134c0425ffSMingming Cao * if the machine crashes during the write. 31144c0425ffSMingming Cao * 31154c0425ffSMingming Cao */ 31166f673763SOmar Sandoval static ssize_t ext4_ext_direct_IO(struct kiocb *iocb, struct iov_iter *iter, 31176f673763SOmar Sandoval loff_t offset) 31184c0425ffSMingming Cao { 31194c0425ffSMingming Cao struct file *file = iocb->ki_filp; 31204c0425ffSMingming Cao struct inode *inode = file->f_mapping->host; 31214c0425ffSMingming Cao ssize_t ret; 3122a6cbcd4aSAl Viro size_t count = iov_iter_count(iter); 3123729f52c6SZheng Liu int overwrite = 0; 31248b0f165fSAnatol Pomozov get_block_t *get_block_func = NULL; 31258b0f165fSAnatol Pomozov int dio_flags = 0; 312669c499d1STheodore Ts'o loff_t final_size = offset + count; 312797a851edSJan Kara ext4_io_end_t *io_end = NULL; 312869c499d1STheodore Ts'o 312969c499d1STheodore Ts'o /* Use the old path for reads and writes beyond i_size. */ 31306f673763SOmar Sandoval if (iov_iter_rw(iter) != WRITE || final_size > inode->i_size) 31316f673763SOmar Sandoval return ext4_ind_direct_IO(iocb, iter, offset); 3132729f52c6SZheng Liu 31334bd809dbSZheng Liu BUG_ON(iocb->private == NULL); 31344bd809dbSZheng Liu 3135e8340395SJan Kara /* 3136e8340395SJan Kara * Make all waiters for direct IO properly wait also for extent 3137e8340395SJan Kara * conversion. This also disallows race between truncate() and 3138e8340395SJan Kara * overwrite DIO as i_dio_count needs to be incremented under i_mutex. 3139e8340395SJan Kara */ 31406f673763SOmar Sandoval if (iov_iter_rw(iter) == WRITE) 3141fe0f07d0SJens Axboe inode_dio_begin(inode); 3142e8340395SJan Kara 31434bd809dbSZheng Liu /* If we do a overwrite dio, i_mutex locking can be released */ 31444bd809dbSZheng Liu overwrite = *((int *)iocb->private); 31454bd809dbSZheng Liu 31464bd809dbSZheng Liu if (overwrite) { 31474bd809dbSZheng Liu down_read(&EXT4_I(inode)->i_data_sem); 31484bd809dbSZheng Liu mutex_unlock(&inode->i_mutex); 31494bd809dbSZheng Liu } 31504bd809dbSZheng Liu 31514c0425ffSMingming Cao /* 31528d5d02e6SMingming Cao * We could direct write to holes and fallocate. 31538d5d02e6SMingming Cao * 315469c499d1STheodore Ts'o * Allocated blocks to fill the hole are marked as 3155556615dcSLukas Czerner * unwritten to prevent parallel buffered read to expose 315669c499d1STheodore Ts'o * the stale data before DIO complete the data IO. 31578d5d02e6SMingming Cao * 315869c499d1STheodore Ts'o * As to previously fallocated extents, ext4 get_block will 315969c499d1STheodore Ts'o * just simply mark the buffer mapped but still keep the 3160556615dcSLukas Czerner * extents unwritten. 31614c0425ffSMingming Cao * 316269c499d1STheodore Ts'o * For non AIO case, we will convert those unwritten extents 31638d5d02e6SMingming Cao * to written after return back from blockdev_direct_IO. 31644c0425ffSMingming Cao * 316569c499d1STheodore Ts'o * For async DIO, the conversion needs to be deferred when the 316669c499d1STheodore Ts'o * IO is completed. The ext4 end_io callback function will be 316769c499d1STheodore Ts'o * called to take care of the conversion work. Here for async 316869c499d1STheodore Ts'o * case, we allocate an io_end structure to hook to the iocb. 31694c0425ffSMingming Cao */ 31708d5d02e6SMingming Cao iocb->private = NULL; 3171f45ee3a1SDmitry Monakhov ext4_inode_aio_set(inode, NULL); 31728d5d02e6SMingming Cao if (!is_sync_kiocb(iocb)) { 317397a851edSJan Kara io_end = ext4_init_io_end(inode, GFP_NOFS); 31744bd809dbSZheng Liu if (!io_end) { 31754bd809dbSZheng Liu ret = -ENOMEM; 31764bd809dbSZheng Liu goto retake_lock; 31774bd809dbSZheng Liu } 317897a851edSJan Kara /* 317997a851edSJan Kara * Grab reference for DIO. Will be dropped in ext4_end_io_dio() 318097a851edSJan Kara */ 318197a851edSJan Kara iocb->private = ext4_get_io_end(io_end); 31828d5d02e6SMingming Cao /* 318369c499d1STheodore Ts'o * we save the io structure for current async direct 318469c499d1STheodore Ts'o * IO, so that later ext4_map_blocks() could flag the 318569c499d1STheodore Ts'o * io structure whether there is a unwritten extents 318669c499d1STheodore Ts'o * needs to be converted when IO is completed. 31878d5d02e6SMingming Cao */ 3188f45ee3a1SDmitry Monakhov ext4_inode_aio_set(inode, io_end); 31898d5d02e6SMingming Cao } 31908d5d02e6SMingming Cao 31918b0f165fSAnatol Pomozov if (overwrite) { 31928b0f165fSAnatol Pomozov get_block_func = ext4_get_block_write_nolock; 31938b0f165fSAnatol Pomozov } else { 31948b0f165fSAnatol Pomozov get_block_func = ext4_get_block_write; 31958b0f165fSAnatol Pomozov dio_flags = DIO_LOCKING; 31968b0f165fSAnatol Pomozov } 31972058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION 31982058f83aSMichael Halcrow BUG_ON(ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode)); 31992058f83aSMichael Halcrow #endif 3200923ae0ffSRoss Zwisler if (IS_DAX(inode)) 3201a95cd631SOmar Sandoval ret = dax_do_io(iocb, inode, iter, offset, get_block_func, 3202923ae0ffSRoss Zwisler ext4_end_io_dio, dio_flags); 3203923ae0ffSRoss Zwisler else 320417f8c842SOmar Sandoval ret = __blockdev_direct_IO(iocb, inode, 3205923ae0ffSRoss Zwisler inode->i_sb->s_bdev, iter, offset, 32068b0f165fSAnatol Pomozov get_block_func, 3207923ae0ffSRoss Zwisler ext4_end_io_dio, NULL, dio_flags); 32088b0f165fSAnatol Pomozov 32094eec708dSJan Kara /* 321097a851edSJan Kara * Put our reference to io_end. This can free the io_end structure e.g. 321197a851edSJan Kara * in sync IO case or in case of error. It can even perform extent 321297a851edSJan Kara * conversion if all bios we submitted finished before we got here. 321397a851edSJan Kara * Note that in that case iocb->private can be already set to NULL 321497a851edSJan Kara * here. 32154eec708dSJan Kara */ 321697a851edSJan Kara if (io_end) { 321797a851edSJan Kara ext4_inode_aio_set(inode, NULL); 321897a851edSJan Kara ext4_put_io_end(io_end); 321997a851edSJan Kara /* 322097a851edSJan Kara * When no IO was submitted ext4_end_io_dio() was not 322197a851edSJan Kara * called so we have to put iocb's reference. 322297a851edSJan Kara */ 322397a851edSJan Kara if (ret <= 0 && ret != -EIOCBQUEUED && iocb->private) { 322497a851edSJan Kara WARN_ON(iocb->private != io_end); 322597a851edSJan Kara WARN_ON(io_end->flag & EXT4_IO_END_UNWRITTEN); 322697a851edSJan Kara ext4_put_io_end(io_end); 32278d5d02e6SMingming Cao iocb->private = NULL; 322897a851edSJan Kara } 322997a851edSJan Kara } 323097a851edSJan Kara if (ret > 0 && !overwrite && ext4_test_inode_state(inode, 32315f524950SMingming EXT4_STATE_DIO_UNWRITTEN)) { 3232109f5565SMingming int err; 32338d5d02e6SMingming Cao /* 32348d5d02e6SMingming Cao * for non AIO case, since the IO is already 323525985edcSLucas De Marchi * completed, we could do the conversion right here 32368d5d02e6SMingming Cao */ 32376b523df4SJan Kara err = ext4_convert_unwritten_extents(NULL, inode, 32388d5d02e6SMingming Cao offset, ret); 3239109f5565SMingming if (err < 0) 3240109f5565SMingming ret = err; 324119f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN); 3242109f5565SMingming } 32434bd809dbSZheng Liu 32444bd809dbSZheng Liu retake_lock: 32456f673763SOmar Sandoval if (iov_iter_rw(iter) == WRITE) 3246fe0f07d0SJens Axboe inode_dio_end(inode); 32474bd809dbSZheng Liu /* take i_mutex locking again if we do a ovewrite dio */ 32484bd809dbSZheng Liu if (overwrite) { 32494bd809dbSZheng Liu up_read(&EXT4_I(inode)->i_data_sem); 32504bd809dbSZheng Liu mutex_lock(&inode->i_mutex); 32514bd809dbSZheng Liu } 32524bd809dbSZheng Liu 32534c0425ffSMingming Cao return ret; 32544c0425ffSMingming Cao } 32558d5d02e6SMingming Cao 325622c6186eSOmar Sandoval static ssize_t ext4_direct_IO(struct kiocb *iocb, struct iov_iter *iter, 325722c6186eSOmar Sandoval loff_t offset) 32584c0425ffSMingming Cao { 32594c0425ffSMingming Cao struct file *file = iocb->ki_filp; 32604c0425ffSMingming Cao struct inode *inode = file->f_mapping->host; 3261a6cbcd4aSAl Viro size_t count = iov_iter_count(iter); 32620562e0baSJiaying Zhang ssize_t ret; 32634c0425ffSMingming Cao 32642058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION 32652058f83aSMichael Halcrow if (ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode)) 32662058f83aSMichael Halcrow return 0; 32672058f83aSMichael Halcrow #endif 32682058f83aSMichael Halcrow 326984ebd795STheodore Ts'o /* 327084ebd795STheodore Ts'o * If we are doing data journalling we don't support O_DIRECT 327184ebd795STheodore Ts'o */ 327284ebd795STheodore Ts'o if (ext4_should_journal_data(inode)) 327384ebd795STheodore Ts'o return 0; 327484ebd795STheodore Ts'o 327546c7f254STao Ma /* Let buffer I/O handle the inline data case. */ 327646c7f254STao Ma if (ext4_has_inline_data(inode)) 327746c7f254STao Ma return 0; 327846c7f254STao Ma 32796f673763SOmar Sandoval trace_ext4_direct_IO_enter(inode, offset, count, iov_iter_rw(iter)); 328012e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 32816f673763SOmar Sandoval ret = ext4_ext_direct_IO(iocb, iter, offset); 32820562e0baSJiaying Zhang else 32836f673763SOmar Sandoval ret = ext4_ind_direct_IO(iocb, iter, offset); 32846f673763SOmar Sandoval trace_ext4_direct_IO_exit(inode, offset, count, iov_iter_rw(iter), ret); 32850562e0baSJiaying Zhang return ret; 32864c0425ffSMingming Cao } 32874c0425ffSMingming Cao 3288ac27a0ecSDave Kleikamp /* 3289617ba13bSMingming Cao * Pages can be marked dirty completely asynchronously from ext4's journalling 3290ac27a0ecSDave Kleikamp * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do 3291ac27a0ecSDave Kleikamp * much here because ->set_page_dirty is called under VFS locks. The page is 3292ac27a0ecSDave Kleikamp * not necessarily locked. 3293ac27a0ecSDave Kleikamp * 3294ac27a0ecSDave Kleikamp * We cannot just dirty the page and leave attached buffers clean, because the 3295ac27a0ecSDave Kleikamp * buffers' dirty state is "definitive". We cannot just set the buffers dirty 3296ac27a0ecSDave Kleikamp * or jbddirty because all the journalling code will explode. 3297ac27a0ecSDave Kleikamp * 3298ac27a0ecSDave Kleikamp * So what we do is to mark the page "pending dirty" and next time writepage 3299ac27a0ecSDave Kleikamp * is called, propagate that into the buffers appropriately. 3300ac27a0ecSDave Kleikamp */ 3301617ba13bSMingming Cao static int ext4_journalled_set_page_dirty(struct page *page) 3302ac27a0ecSDave Kleikamp { 3303ac27a0ecSDave Kleikamp SetPageChecked(page); 3304ac27a0ecSDave Kleikamp return __set_page_dirty_nobuffers(page); 3305ac27a0ecSDave Kleikamp } 3306ac27a0ecSDave Kleikamp 330774d553aaSTheodore Ts'o static const struct address_space_operations ext4_aops = { 3308617ba13bSMingming Cao .readpage = ext4_readpage, 3309617ba13bSMingming Cao .readpages = ext4_readpages, 331043ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 331120970ba6STheodore Ts'o .writepages = ext4_writepages, 3312bfc1af65SNick Piggin .write_begin = ext4_write_begin, 331374d553aaSTheodore Ts'o .write_end = ext4_write_end, 3314617ba13bSMingming Cao .bmap = ext4_bmap, 3315617ba13bSMingming Cao .invalidatepage = ext4_invalidatepage, 3316617ba13bSMingming Cao .releasepage = ext4_releasepage, 3317617ba13bSMingming Cao .direct_IO = ext4_direct_IO, 3318ac27a0ecSDave Kleikamp .migratepage = buffer_migrate_page, 33198ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3320aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 3321ac27a0ecSDave Kleikamp }; 3322ac27a0ecSDave Kleikamp 3323617ba13bSMingming Cao static const struct address_space_operations ext4_journalled_aops = { 3324617ba13bSMingming Cao .readpage = ext4_readpage, 3325617ba13bSMingming Cao .readpages = ext4_readpages, 332643ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 332720970ba6STheodore Ts'o .writepages = ext4_writepages, 3328bfc1af65SNick Piggin .write_begin = ext4_write_begin, 3329bfc1af65SNick Piggin .write_end = ext4_journalled_write_end, 3330617ba13bSMingming Cao .set_page_dirty = ext4_journalled_set_page_dirty, 3331617ba13bSMingming Cao .bmap = ext4_bmap, 33324520fb3cSJan Kara .invalidatepage = ext4_journalled_invalidatepage, 3333617ba13bSMingming Cao .releasepage = ext4_releasepage, 333484ebd795STheodore Ts'o .direct_IO = ext4_direct_IO, 33358ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3336aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 3337ac27a0ecSDave Kleikamp }; 3338ac27a0ecSDave Kleikamp 333964769240SAlex Tomas static const struct address_space_operations ext4_da_aops = { 334064769240SAlex Tomas .readpage = ext4_readpage, 334164769240SAlex Tomas .readpages = ext4_readpages, 334243ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 334320970ba6STheodore Ts'o .writepages = ext4_writepages, 334464769240SAlex Tomas .write_begin = ext4_da_write_begin, 334564769240SAlex Tomas .write_end = ext4_da_write_end, 334664769240SAlex Tomas .bmap = ext4_bmap, 334764769240SAlex Tomas .invalidatepage = ext4_da_invalidatepage, 334864769240SAlex Tomas .releasepage = ext4_releasepage, 334964769240SAlex Tomas .direct_IO = ext4_direct_IO, 335064769240SAlex Tomas .migratepage = buffer_migrate_page, 33518ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3352aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 335364769240SAlex Tomas }; 335464769240SAlex Tomas 3355617ba13bSMingming Cao void ext4_set_aops(struct inode *inode) 3356ac27a0ecSDave Kleikamp { 33573d2b1582SLukas Czerner switch (ext4_inode_journal_mode(inode)) { 33583d2b1582SLukas Czerner case EXT4_INODE_ORDERED_DATA_MODE: 335974d553aaSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_ORDERED_MODE); 33603d2b1582SLukas Czerner break; 33613d2b1582SLukas Czerner case EXT4_INODE_WRITEBACK_DATA_MODE: 336274d553aaSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_ORDERED_MODE); 33633d2b1582SLukas Czerner break; 33643d2b1582SLukas Czerner case EXT4_INODE_JOURNAL_DATA_MODE: 3365617ba13bSMingming Cao inode->i_mapping->a_ops = &ext4_journalled_aops; 336674d553aaSTheodore Ts'o return; 33673d2b1582SLukas Czerner default: 33683d2b1582SLukas Czerner BUG(); 33693d2b1582SLukas Czerner } 337074d553aaSTheodore Ts'o if (test_opt(inode->i_sb, DELALLOC)) 337174d553aaSTheodore Ts'o inode->i_mapping->a_ops = &ext4_da_aops; 337274d553aaSTheodore Ts'o else 337374d553aaSTheodore Ts'o inode->i_mapping->a_ops = &ext4_aops; 3374ac27a0ecSDave Kleikamp } 3375ac27a0ecSDave Kleikamp 3376923ae0ffSRoss Zwisler static int __ext4_block_zero_page_range(handle_t *handle, 3377d863dc36SLukas Czerner struct address_space *mapping, loff_t from, loff_t length) 3378d863dc36SLukas Czerner { 3379d863dc36SLukas Czerner ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT; 3380d863dc36SLukas Czerner unsigned offset = from & (PAGE_CACHE_SIZE-1); 3381923ae0ffSRoss Zwisler unsigned blocksize, pos; 3382d863dc36SLukas Czerner ext4_lblk_t iblock; 3383d863dc36SLukas Czerner struct inode *inode = mapping->host; 3384d863dc36SLukas Czerner struct buffer_head *bh; 3385d863dc36SLukas Czerner struct page *page; 3386d863dc36SLukas Czerner int err = 0; 3387d863dc36SLukas Czerner 3388d863dc36SLukas Czerner page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT, 3389c62d2555SMichal Hocko mapping_gfp_constraint(mapping, ~__GFP_FS)); 3390d863dc36SLukas Czerner if (!page) 3391d863dc36SLukas Czerner return -ENOMEM; 3392d863dc36SLukas Czerner 3393d863dc36SLukas Czerner blocksize = inode->i_sb->s_blocksize; 3394d863dc36SLukas Czerner 3395d863dc36SLukas Czerner iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits); 3396d863dc36SLukas Czerner 3397d863dc36SLukas Czerner if (!page_has_buffers(page)) 3398d863dc36SLukas Czerner create_empty_buffers(page, blocksize, 0); 3399d863dc36SLukas Czerner 3400d863dc36SLukas Czerner /* Find the buffer that contains "offset" */ 3401d863dc36SLukas Czerner bh = page_buffers(page); 3402d863dc36SLukas Czerner pos = blocksize; 3403d863dc36SLukas Czerner while (offset >= pos) { 3404d863dc36SLukas Czerner bh = bh->b_this_page; 3405d863dc36SLukas Czerner iblock++; 3406d863dc36SLukas Czerner pos += blocksize; 3407d863dc36SLukas Czerner } 3408d863dc36SLukas Czerner if (buffer_freed(bh)) { 3409d863dc36SLukas Czerner BUFFER_TRACE(bh, "freed: skip"); 3410d863dc36SLukas Czerner goto unlock; 3411d863dc36SLukas Czerner } 3412d863dc36SLukas Czerner if (!buffer_mapped(bh)) { 3413d863dc36SLukas Czerner BUFFER_TRACE(bh, "unmapped"); 3414d863dc36SLukas Czerner ext4_get_block(inode, iblock, bh, 0); 3415d863dc36SLukas Czerner /* unmapped? It's a hole - nothing to do */ 3416d863dc36SLukas Czerner if (!buffer_mapped(bh)) { 3417d863dc36SLukas Czerner BUFFER_TRACE(bh, "still unmapped"); 3418d863dc36SLukas Czerner goto unlock; 3419d863dc36SLukas Czerner } 3420d863dc36SLukas Czerner } 3421d863dc36SLukas Czerner 3422d863dc36SLukas Czerner /* Ok, it's mapped. Make sure it's up-to-date */ 3423d863dc36SLukas Czerner if (PageUptodate(page)) 3424d863dc36SLukas Czerner set_buffer_uptodate(bh); 3425d863dc36SLukas Czerner 3426d863dc36SLukas Czerner if (!buffer_uptodate(bh)) { 3427d863dc36SLukas Czerner err = -EIO; 3428d863dc36SLukas Czerner ll_rw_block(READ, 1, &bh); 3429d863dc36SLukas Czerner wait_on_buffer(bh); 3430d863dc36SLukas Czerner /* Uhhuh. Read error. Complain and punt. */ 3431d863dc36SLukas Czerner if (!buffer_uptodate(bh)) 3432d863dc36SLukas Czerner goto unlock; 3433c9c7429cSMichael Halcrow if (S_ISREG(inode->i_mode) && 3434c9c7429cSMichael Halcrow ext4_encrypted_inode(inode)) { 3435c9c7429cSMichael Halcrow /* We expect the key to be set. */ 3436c9c7429cSMichael Halcrow BUG_ON(!ext4_has_encryption_key(inode)); 3437c9c7429cSMichael Halcrow BUG_ON(blocksize != PAGE_CACHE_SIZE); 34383684de8cSTheodore Ts'o WARN_ON_ONCE(ext4_decrypt(page)); 3439c9c7429cSMichael Halcrow } 3440d863dc36SLukas Czerner } 3441d863dc36SLukas Czerner if (ext4_should_journal_data(inode)) { 3442d863dc36SLukas Czerner BUFFER_TRACE(bh, "get write access"); 3443d863dc36SLukas Czerner err = ext4_journal_get_write_access(handle, bh); 3444d863dc36SLukas Czerner if (err) 3445d863dc36SLukas Czerner goto unlock; 3446d863dc36SLukas Czerner } 3447d863dc36SLukas Czerner zero_user(page, offset, length); 3448d863dc36SLukas Czerner BUFFER_TRACE(bh, "zeroed end of block"); 3449d863dc36SLukas Czerner 3450d863dc36SLukas Czerner if (ext4_should_journal_data(inode)) { 3451d863dc36SLukas Czerner err = ext4_handle_dirty_metadata(handle, inode, bh); 34520713ed0cSLukas Czerner } else { 3453353eefd3Sjon ernst err = 0; 3454d863dc36SLukas Czerner mark_buffer_dirty(bh); 34550713ed0cSLukas Czerner if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) 34560713ed0cSLukas Czerner err = ext4_jbd2_file_inode(handle, inode); 34570713ed0cSLukas Czerner } 3458d863dc36SLukas Czerner 3459d863dc36SLukas Czerner unlock: 3460d863dc36SLukas Czerner unlock_page(page); 3461d863dc36SLukas Czerner page_cache_release(page); 3462d863dc36SLukas Czerner return err; 3463d863dc36SLukas Czerner } 3464d863dc36SLukas Czerner 346594350ab5SMatthew Wilcox /* 3466923ae0ffSRoss Zwisler * ext4_block_zero_page_range() zeros out a mapping of length 'length' 3467923ae0ffSRoss Zwisler * starting from file offset 'from'. The range to be zero'd must 3468923ae0ffSRoss Zwisler * be contained with in one block. If the specified range exceeds 3469923ae0ffSRoss Zwisler * the end of the block it will be shortened to end of the block 3470923ae0ffSRoss Zwisler * that cooresponds to 'from' 3471923ae0ffSRoss Zwisler */ 3472923ae0ffSRoss Zwisler static int ext4_block_zero_page_range(handle_t *handle, 3473923ae0ffSRoss Zwisler struct address_space *mapping, loff_t from, loff_t length) 3474923ae0ffSRoss Zwisler { 3475923ae0ffSRoss Zwisler struct inode *inode = mapping->host; 3476923ae0ffSRoss Zwisler unsigned offset = from & (PAGE_CACHE_SIZE-1); 3477923ae0ffSRoss Zwisler unsigned blocksize = inode->i_sb->s_blocksize; 3478923ae0ffSRoss Zwisler unsigned max = blocksize - (offset & (blocksize - 1)); 3479923ae0ffSRoss Zwisler 3480923ae0ffSRoss Zwisler /* 3481923ae0ffSRoss Zwisler * correct length if it does not fall between 3482923ae0ffSRoss Zwisler * 'from' and the end of the block 3483923ae0ffSRoss Zwisler */ 3484923ae0ffSRoss Zwisler if (length > max || length < 0) 3485923ae0ffSRoss Zwisler length = max; 3486923ae0ffSRoss Zwisler 3487923ae0ffSRoss Zwisler if (IS_DAX(inode)) 3488923ae0ffSRoss Zwisler return dax_zero_page_range(inode, from, length, ext4_get_block); 3489923ae0ffSRoss Zwisler return __ext4_block_zero_page_range(handle, mapping, from, length); 3490923ae0ffSRoss Zwisler } 3491923ae0ffSRoss Zwisler 3492923ae0ffSRoss Zwisler /* 349394350ab5SMatthew Wilcox * ext4_block_truncate_page() zeroes out a mapping from file offset `from' 349494350ab5SMatthew Wilcox * up to the end of the block which corresponds to `from'. 349594350ab5SMatthew Wilcox * This required during truncate. We need to physically zero the tail end 349694350ab5SMatthew Wilcox * of that block so it doesn't yield old data if the file is later grown. 349794350ab5SMatthew Wilcox */ 3498c197855eSStephen Hemminger static int ext4_block_truncate_page(handle_t *handle, 349994350ab5SMatthew Wilcox struct address_space *mapping, loff_t from) 350094350ab5SMatthew Wilcox { 350194350ab5SMatthew Wilcox unsigned offset = from & (PAGE_CACHE_SIZE-1); 350294350ab5SMatthew Wilcox unsigned length; 350394350ab5SMatthew Wilcox unsigned blocksize; 350494350ab5SMatthew Wilcox struct inode *inode = mapping->host; 350594350ab5SMatthew Wilcox 350694350ab5SMatthew Wilcox blocksize = inode->i_sb->s_blocksize; 350794350ab5SMatthew Wilcox length = blocksize - (offset & (blocksize - 1)); 350894350ab5SMatthew Wilcox 350994350ab5SMatthew Wilcox return ext4_block_zero_page_range(handle, mapping, from, length); 351094350ab5SMatthew Wilcox } 351194350ab5SMatthew Wilcox 3512a87dd18cSLukas Czerner int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode, 3513a87dd18cSLukas Czerner loff_t lstart, loff_t length) 3514a87dd18cSLukas Czerner { 3515a87dd18cSLukas Czerner struct super_block *sb = inode->i_sb; 3516a87dd18cSLukas Czerner struct address_space *mapping = inode->i_mapping; 3517e1be3a92SLukas Czerner unsigned partial_start, partial_end; 3518a87dd18cSLukas Czerner ext4_fsblk_t start, end; 3519a87dd18cSLukas Czerner loff_t byte_end = (lstart + length - 1); 3520a87dd18cSLukas Czerner int err = 0; 3521a87dd18cSLukas Czerner 3522e1be3a92SLukas Czerner partial_start = lstart & (sb->s_blocksize - 1); 3523e1be3a92SLukas Czerner partial_end = byte_end & (sb->s_blocksize - 1); 3524e1be3a92SLukas Czerner 3525a87dd18cSLukas Czerner start = lstart >> sb->s_blocksize_bits; 3526a87dd18cSLukas Czerner end = byte_end >> sb->s_blocksize_bits; 3527a87dd18cSLukas Czerner 3528a87dd18cSLukas Czerner /* Handle partial zero within the single block */ 3529e1be3a92SLukas Czerner if (start == end && 3530e1be3a92SLukas Czerner (partial_start || (partial_end != sb->s_blocksize - 1))) { 3531a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3532a87dd18cSLukas Czerner lstart, length); 3533a87dd18cSLukas Czerner return err; 3534a87dd18cSLukas Czerner } 3535a87dd18cSLukas Czerner /* Handle partial zero out on the start of the range */ 3536e1be3a92SLukas Czerner if (partial_start) { 3537a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3538a87dd18cSLukas Czerner lstart, sb->s_blocksize); 3539a87dd18cSLukas Czerner if (err) 3540a87dd18cSLukas Czerner return err; 3541a87dd18cSLukas Czerner } 3542a87dd18cSLukas Czerner /* Handle partial zero out on the end of the range */ 3543e1be3a92SLukas Czerner if (partial_end != sb->s_blocksize - 1) 3544a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3545e1be3a92SLukas Czerner byte_end - partial_end, 3546e1be3a92SLukas Czerner partial_end + 1); 3547a87dd18cSLukas Czerner return err; 3548a87dd18cSLukas Czerner } 3549a87dd18cSLukas Czerner 355091ef4cafSDuane Griffin int ext4_can_truncate(struct inode *inode) 355191ef4cafSDuane Griffin { 355291ef4cafSDuane Griffin if (S_ISREG(inode->i_mode)) 355391ef4cafSDuane Griffin return 1; 355491ef4cafSDuane Griffin if (S_ISDIR(inode->i_mode)) 355591ef4cafSDuane Griffin return 1; 355691ef4cafSDuane Griffin if (S_ISLNK(inode->i_mode)) 355791ef4cafSDuane Griffin return !ext4_inode_is_fast_symlink(inode); 355891ef4cafSDuane Griffin return 0; 355991ef4cafSDuane Griffin } 356091ef4cafSDuane Griffin 3561ac27a0ecSDave Kleikamp /* 3562*01127848SJan Kara * We have to make sure i_disksize gets properly updated before we truncate 3563*01127848SJan Kara * page cache due to hole punching or zero range. Otherwise i_disksize update 3564*01127848SJan Kara * can get lost as it may have been postponed to submission of writeback but 3565*01127848SJan Kara * that will never happen after we truncate page cache. 3566*01127848SJan Kara */ 3567*01127848SJan Kara int ext4_update_disksize_before_punch(struct inode *inode, loff_t offset, 3568*01127848SJan Kara loff_t len) 3569*01127848SJan Kara { 3570*01127848SJan Kara handle_t *handle; 3571*01127848SJan Kara loff_t size = i_size_read(inode); 3572*01127848SJan Kara 3573*01127848SJan Kara WARN_ON(!mutex_is_locked(&inode->i_mutex)); 3574*01127848SJan Kara if (offset > size || offset + len < size) 3575*01127848SJan Kara return 0; 3576*01127848SJan Kara 3577*01127848SJan Kara if (EXT4_I(inode)->i_disksize >= size) 3578*01127848SJan Kara return 0; 3579*01127848SJan Kara 3580*01127848SJan Kara handle = ext4_journal_start(inode, EXT4_HT_MISC, 1); 3581*01127848SJan Kara if (IS_ERR(handle)) 3582*01127848SJan Kara return PTR_ERR(handle); 3583*01127848SJan Kara ext4_update_i_disksize(inode, size); 3584*01127848SJan Kara ext4_mark_inode_dirty(handle, inode); 3585*01127848SJan Kara ext4_journal_stop(handle); 3586*01127848SJan Kara 3587*01127848SJan Kara return 0; 3588*01127848SJan Kara } 3589*01127848SJan Kara 3590*01127848SJan Kara /* 3591a4bb6b64SAllison Henderson * ext4_punch_hole: punches a hole in a file by releaseing the blocks 3592a4bb6b64SAllison Henderson * associated with the given offset and length 3593a4bb6b64SAllison Henderson * 3594a4bb6b64SAllison Henderson * @inode: File inode 3595a4bb6b64SAllison Henderson * @offset: The offset where the hole will begin 3596a4bb6b64SAllison Henderson * @len: The length of the hole 3597a4bb6b64SAllison Henderson * 35984907cb7bSAnatol Pomozov * Returns: 0 on success or negative on failure 3599a4bb6b64SAllison Henderson */ 3600a4bb6b64SAllison Henderson 3601aeb2817aSAshish Sangwan int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length) 3602a4bb6b64SAllison Henderson { 360326a4c0c6STheodore Ts'o struct super_block *sb = inode->i_sb; 360426a4c0c6STheodore Ts'o ext4_lblk_t first_block, stop_block; 360526a4c0c6STheodore Ts'o struct address_space *mapping = inode->i_mapping; 3606a87dd18cSLukas Czerner loff_t first_block_offset, last_block_offset; 360726a4c0c6STheodore Ts'o handle_t *handle; 360826a4c0c6STheodore Ts'o unsigned int credits; 360926a4c0c6STheodore Ts'o int ret = 0; 361026a4c0c6STheodore Ts'o 3611a4bb6b64SAllison Henderson if (!S_ISREG(inode->i_mode)) 361273355192SAllison Henderson return -EOPNOTSUPP; 3613a4bb6b64SAllison Henderson 3614b8a86845SLukas Czerner trace_ext4_punch_hole(inode, offset, length, 0); 3615aaddea81SZheng Liu 361626a4c0c6STheodore Ts'o /* 361726a4c0c6STheodore Ts'o * Write out all dirty pages to avoid race conditions 361826a4c0c6STheodore Ts'o * Then release them. 361926a4c0c6STheodore Ts'o */ 362026a4c0c6STheodore Ts'o if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) { 362126a4c0c6STheodore Ts'o ret = filemap_write_and_wait_range(mapping, offset, 362226a4c0c6STheodore Ts'o offset + length - 1); 362326a4c0c6STheodore Ts'o if (ret) 362426a4c0c6STheodore Ts'o return ret; 362526a4c0c6STheodore Ts'o } 362626a4c0c6STheodore Ts'o 362726a4c0c6STheodore Ts'o mutex_lock(&inode->i_mutex); 36289ef06cecSLukas Czerner 362926a4c0c6STheodore Ts'o /* No need to punch hole beyond i_size */ 363026a4c0c6STheodore Ts'o if (offset >= inode->i_size) 363126a4c0c6STheodore Ts'o goto out_mutex; 363226a4c0c6STheodore Ts'o 363326a4c0c6STheodore Ts'o /* 363426a4c0c6STheodore Ts'o * If the hole extends beyond i_size, set the hole 363526a4c0c6STheodore Ts'o * to end after the page that contains i_size 363626a4c0c6STheodore Ts'o */ 363726a4c0c6STheodore Ts'o if (offset + length > inode->i_size) { 363826a4c0c6STheodore Ts'o length = inode->i_size + 363926a4c0c6STheodore Ts'o PAGE_CACHE_SIZE - (inode->i_size & (PAGE_CACHE_SIZE - 1)) - 364026a4c0c6STheodore Ts'o offset; 364126a4c0c6STheodore Ts'o } 364226a4c0c6STheodore Ts'o 3643a361293fSJan Kara if (offset & (sb->s_blocksize - 1) || 3644a361293fSJan Kara (offset + length) & (sb->s_blocksize - 1)) { 3645a361293fSJan Kara /* 3646a361293fSJan Kara * Attach jinode to inode for jbd2 if we do any zeroing of 3647a361293fSJan Kara * partial block 3648a361293fSJan Kara */ 3649a361293fSJan Kara ret = ext4_inode_attach_jinode(inode); 3650a361293fSJan Kara if (ret < 0) 3651a361293fSJan Kara goto out_mutex; 3652a361293fSJan Kara 3653a361293fSJan Kara } 3654a361293fSJan Kara 3655ea3d7209SJan Kara /* Wait all existing dio workers, newcomers will block on i_mutex */ 3656ea3d7209SJan Kara ext4_inode_block_unlocked_dio(inode); 3657ea3d7209SJan Kara inode_dio_wait(inode); 3658ea3d7209SJan Kara 3659ea3d7209SJan Kara /* 3660ea3d7209SJan Kara * Prevent page faults from reinstantiating pages we have released from 3661ea3d7209SJan Kara * page cache. 3662ea3d7209SJan Kara */ 3663ea3d7209SJan Kara down_write(&EXT4_I(inode)->i_mmap_sem); 3664a87dd18cSLukas Czerner first_block_offset = round_up(offset, sb->s_blocksize); 3665a87dd18cSLukas Czerner last_block_offset = round_down((offset + length), sb->s_blocksize) - 1; 366626a4c0c6STheodore Ts'o 3667a87dd18cSLukas Czerner /* Now release the pages and zero block aligned part of pages*/ 3668*01127848SJan Kara if (last_block_offset > first_block_offset) { 3669*01127848SJan Kara ret = ext4_update_disksize_before_punch(inode, offset, length); 3670*01127848SJan Kara if (ret) 3671*01127848SJan Kara goto out_dio; 3672a87dd18cSLukas Czerner truncate_pagecache_range(inode, first_block_offset, 3673a87dd18cSLukas Czerner last_block_offset); 3674*01127848SJan Kara } 367526a4c0c6STheodore Ts'o 367626a4c0c6STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 367726a4c0c6STheodore Ts'o credits = ext4_writepage_trans_blocks(inode); 367826a4c0c6STheodore Ts'o else 367926a4c0c6STheodore Ts'o credits = ext4_blocks_for_truncate(inode); 368026a4c0c6STheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits); 368126a4c0c6STheodore Ts'o if (IS_ERR(handle)) { 368226a4c0c6STheodore Ts'o ret = PTR_ERR(handle); 368326a4c0c6STheodore Ts'o ext4_std_error(sb, ret); 368426a4c0c6STheodore Ts'o goto out_dio; 368526a4c0c6STheodore Ts'o } 368626a4c0c6STheodore Ts'o 3687a87dd18cSLukas Czerner ret = ext4_zero_partial_blocks(handle, inode, offset, 3688a87dd18cSLukas Czerner length); 368926a4c0c6STheodore Ts'o if (ret) 369026a4c0c6STheodore Ts'o goto out_stop; 369126a4c0c6STheodore Ts'o 369226a4c0c6STheodore Ts'o first_block = (offset + sb->s_blocksize - 1) >> 369326a4c0c6STheodore Ts'o EXT4_BLOCK_SIZE_BITS(sb); 369426a4c0c6STheodore Ts'o stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb); 369526a4c0c6STheodore Ts'o 369626a4c0c6STheodore Ts'o /* If there are no blocks to remove, return now */ 369726a4c0c6STheodore Ts'o if (first_block >= stop_block) 369826a4c0c6STheodore Ts'o goto out_stop; 369926a4c0c6STheodore Ts'o 370026a4c0c6STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 370126a4c0c6STheodore Ts'o ext4_discard_preallocations(inode); 370226a4c0c6STheodore Ts'o 370326a4c0c6STheodore Ts'o ret = ext4_es_remove_extent(inode, first_block, 370426a4c0c6STheodore Ts'o stop_block - first_block); 370526a4c0c6STheodore Ts'o if (ret) { 370626a4c0c6STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 370726a4c0c6STheodore Ts'o goto out_stop; 370826a4c0c6STheodore Ts'o } 370926a4c0c6STheodore Ts'o 371026a4c0c6STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 371126a4c0c6STheodore Ts'o ret = ext4_ext_remove_space(inode, first_block, 371226a4c0c6STheodore Ts'o stop_block - 1); 371326a4c0c6STheodore Ts'o else 37144f579ae7SLukas Czerner ret = ext4_ind_remove_space(handle, inode, first_block, 371526a4c0c6STheodore Ts'o stop_block); 371626a4c0c6STheodore Ts'o 3717819c4920STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 371826a4c0c6STheodore Ts'o if (IS_SYNC(inode)) 371926a4c0c6STheodore Ts'o ext4_handle_sync(handle); 3720e251f9bcSMaxim Patlasov 372126a4c0c6STheodore Ts'o inode->i_mtime = inode->i_ctime = ext4_current_time(inode); 372226a4c0c6STheodore Ts'o ext4_mark_inode_dirty(handle, inode); 372326a4c0c6STheodore Ts'o out_stop: 372426a4c0c6STheodore Ts'o ext4_journal_stop(handle); 372526a4c0c6STheodore Ts'o out_dio: 3726ea3d7209SJan Kara up_write(&EXT4_I(inode)->i_mmap_sem); 372726a4c0c6STheodore Ts'o ext4_inode_resume_unlocked_dio(inode); 372826a4c0c6STheodore Ts'o out_mutex: 372926a4c0c6STheodore Ts'o mutex_unlock(&inode->i_mutex); 373026a4c0c6STheodore Ts'o return ret; 3731a4bb6b64SAllison Henderson } 3732a4bb6b64SAllison Henderson 3733a361293fSJan Kara int ext4_inode_attach_jinode(struct inode *inode) 3734a361293fSJan Kara { 3735a361293fSJan Kara struct ext4_inode_info *ei = EXT4_I(inode); 3736a361293fSJan Kara struct jbd2_inode *jinode; 3737a361293fSJan Kara 3738a361293fSJan Kara if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal) 3739a361293fSJan Kara return 0; 3740a361293fSJan Kara 3741a361293fSJan Kara jinode = jbd2_alloc_inode(GFP_KERNEL); 3742a361293fSJan Kara spin_lock(&inode->i_lock); 3743a361293fSJan Kara if (!ei->jinode) { 3744a361293fSJan Kara if (!jinode) { 3745a361293fSJan Kara spin_unlock(&inode->i_lock); 3746a361293fSJan Kara return -ENOMEM; 3747a361293fSJan Kara } 3748a361293fSJan Kara ei->jinode = jinode; 3749a361293fSJan Kara jbd2_journal_init_jbd_inode(ei->jinode, inode); 3750a361293fSJan Kara jinode = NULL; 3751a361293fSJan Kara } 3752a361293fSJan Kara spin_unlock(&inode->i_lock); 3753a361293fSJan Kara if (unlikely(jinode != NULL)) 3754a361293fSJan Kara jbd2_free_inode(jinode); 3755a361293fSJan Kara return 0; 3756a361293fSJan Kara } 3757a361293fSJan Kara 3758a4bb6b64SAllison Henderson /* 3759617ba13bSMingming Cao * ext4_truncate() 3760ac27a0ecSDave Kleikamp * 3761617ba13bSMingming Cao * We block out ext4_get_block() block instantiations across the entire 3762617ba13bSMingming Cao * transaction, and VFS/VM ensures that ext4_truncate() cannot run 3763ac27a0ecSDave Kleikamp * simultaneously on behalf of the same inode. 3764ac27a0ecSDave Kleikamp * 376542b2aa86SJustin P. Mattock * As we work through the truncate and commit bits of it to the journal there 3766ac27a0ecSDave Kleikamp * is one core, guiding principle: the file's tree must always be consistent on 3767ac27a0ecSDave Kleikamp * disk. We must be able to restart the truncate after a crash. 3768ac27a0ecSDave Kleikamp * 3769ac27a0ecSDave Kleikamp * The file's tree may be transiently inconsistent in memory (although it 3770ac27a0ecSDave Kleikamp * probably isn't), but whenever we close off and commit a journal transaction, 3771ac27a0ecSDave Kleikamp * the contents of (the filesystem + the journal) must be consistent and 3772ac27a0ecSDave Kleikamp * restartable. It's pretty simple, really: bottom up, right to left (although 3773ac27a0ecSDave Kleikamp * left-to-right works OK too). 3774ac27a0ecSDave Kleikamp * 3775ac27a0ecSDave Kleikamp * Note that at recovery time, journal replay occurs *before* the restart of 3776ac27a0ecSDave Kleikamp * truncate against the orphan inode list. 3777ac27a0ecSDave Kleikamp * 3778ac27a0ecSDave Kleikamp * The committed inode has the new, desired i_size (which is the same as 3779617ba13bSMingming Cao * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see 3780ac27a0ecSDave Kleikamp * that this inode's truncate did not complete and it will again call 3781617ba13bSMingming Cao * ext4_truncate() to have another go. So there will be instantiated blocks 3782617ba13bSMingming Cao * to the right of the truncation point in a crashed ext4 filesystem. But 3783ac27a0ecSDave Kleikamp * that's fine - as long as they are linked from the inode, the post-crash 3784617ba13bSMingming Cao * ext4_truncate() run will find them and release them. 3785ac27a0ecSDave Kleikamp */ 3786617ba13bSMingming Cao void ext4_truncate(struct inode *inode) 3787ac27a0ecSDave Kleikamp { 3788819c4920STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 3789819c4920STheodore Ts'o unsigned int credits; 3790819c4920STheodore Ts'o handle_t *handle; 3791819c4920STheodore Ts'o struct address_space *mapping = inode->i_mapping; 3792819c4920STheodore Ts'o 379319b5ef61STheodore Ts'o /* 379419b5ef61STheodore Ts'o * There is a possibility that we're either freeing the inode 3795e04027e8SMatthew Wilcox * or it's a completely new inode. In those cases we might not 379619b5ef61STheodore Ts'o * have i_mutex locked because it's not necessary. 379719b5ef61STheodore Ts'o */ 379819b5ef61STheodore Ts'o if (!(inode->i_state & (I_NEW|I_FREEING))) 379919b5ef61STheodore Ts'o WARN_ON(!mutex_is_locked(&inode->i_mutex)); 38000562e0baSJiaying Zhang trace_ext4_truncate_enter(inode); 38010562e0baSJiaying Zhang 380291ef4cafSDuane Griffin if (!ext4_can_truncate(inode)) 3803ac27a0ecSDave Kleikamp return; 3804ac27a0ecSDave Kleikamp 380512e9b892SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS); 3806c8d46e41SJiaying Zhang 38075534fb5bSTheodore Ts'o if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC)) 380819f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE); 38097d8f9f7dSTheodore Ts'o 3810aef1c851STao Ma if (ext4_has_inline_data(inode)) { 3811aef1c851STao Ma int has_inline = 1; 3812aef1c851STao Ma 3813aef1c851STao Ma ext4_inline_data_truncate(inode, &has_inline); 3814aef1c851STao Ma if (has_inline) 3815aef1c851STao Ma return; 3816aef1c851STao Ma } 3817aef1c851STao Ma 3818a361293fSJan Kara /* If we zero-out tail of the page, we have to create jinode for jbd2 */ 3819a361293fSJan Kara if (inode->i_size & (inode->i_sb->s_blocksize - 1)) { 3820a361293fSJan Kara if (ext4_inode_attach_jinode(inode) < 0) 3821a361293fSJan Kara return; 3822a361293fSJan Kara } 3823a361293fSJan Kara 3824ff9893dcSAmir Goldstein if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 3825819c4920STheodore Ts'o credits = ext4_writepage_trans_blocks(inode); 3826ff9893dcSAmir Goldstein else 3827819c4920STheodore Ts'o credits = ext4_blocks_for_truncate(inode); 3828819c4920STheodore Ts'o 3829819c4920STheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits); 3830819c4920STheodore Ts'o if (IS_ERR(handle)) { 3831819c4920STheodore Ts'o ext4_std_error(inode->i_sb, PTR_ERR(handle)); 3832819c4920STheodore Ts'o return; 3833819c4920STheodore Ts'o } 3834819c4920STheodore Ts'o 3835eb3544c6SLukas Czerner if (inode->i_size & (inode->i_sb->s_blocksize - 1)) 3836eb3544c6SLukas Czerner ext4_block_truncate_page(handle, mapping, inode->i_size); 3837819c4920STheodore Ts'o 3838819c4920STheodore Ts'o /* 3839819c4920STheodore Ts'o * We add the inode to the orphan list, so that if this 3840819c4920STheodore Ts'o * truncate spans multiple transactions, and we crash, we will 3841819c4920STheodore Ts'o * resume the truncate when the filesystem recovers. It also 3842819c4920STheodore Ts'o * marks the inode dirty, to catch the new size. 3843819c4920STheodore Ts'o * 3844819c4920STheodore Ts'o * Implication: the file must always be in a sane, consistent 3845819c4920STheodore Ts'o * truncatable state while each transaction commits. 3846819c4920STheodore Ts'o */ 3847819c4920STheodore Ts'o if (ext4_orphan_add(handle, inode)) 3848819c4920STheodore Ts'o goto out_stop; 3849819c4920STheodore Ts'o 3850819c4920STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 3851819c4920STheodore Ts'o 3852819c4920STheodore Ts'o ext4_discard_preallocations(inode); 3853819c4920STheodore Ts'o 3854819c4920STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 3855819c4920STheodore Ts'o ext4_ext_truncate(handle, inode); 3856819c4920STheodore Ts'o else 3857819c4920STheodore Ts'o ext4_ind_truncate(handle, inode); 3858819c4920STheodore Ts'o 3859819c4920STheodore Ts'o up_write(&ei->i_data_sem); 3860819c4920STheodore Ts'o 3861819c4920STheodore Ts'o if (IS_SYNC(inode)) 3862819c4920STheodore Ts'o ext4_handle_sync(handle); 3863819c4920STheodore Ts'o 3864819c4920STheodore Ts'o out_stop: 3865819c4920STheodore Ts'o /* 3866819c4920STheodore Ts'o * If this was a simple ftruncate() and the file will remain alive, 3867819c4920STheodore Ts'o * then we need to clear up the orphan record which we created above. 3868819c4920STheodore Ts'o * However, if this was a real unlink then we were called by 386958d86a50SWang Shilong * ext4_evict_inode(), and we allow that function to clean up the 3870819c4920STheodore Ts'o * orphan info for us. 3871819c4920STheodore Ts'o */ 3872819c4920STheodore Ts'o if (inode->i_nlink) 3873819c4920STheodore Ts'o ext4_orphan_del(handle, inode); 3874819c4920STheodore Ts'o 3875819c4920STheodore Ts'o inode->i_mtime = inode->i_ctime = ext4_current_time(inode); 3876819c4920STheodore Ts'o ext4_mark_inode_dirty(handle, inode); 3877819c4920STheodore Ts'o ext4_journal_stop(handle); 3878a86c6181SAlex Tomas 38790562e0baSJiaying Zhang trace_ext4_truncate_exit(inode); 3880ac27a0ecSDave Kleikamp } 3881ac27a0ecSDave Kleikamp 3882ac27a0ecSDave Kleikamp /* 3883617ba13bSMingming Cao * ext4_get_inode_loc returns with an extra refcount against the inode's 3884ac27a0ecSDave Kleikamp * underlying buffer_head on success. If 'in_mem' is true, we have all 3885ac27a0ecSDave Kleikamp * data in memory that is needed to recreate the on-disk version of this 3886ac27a0ecSDave Kleikamp * inode. 3887ac27a0ecSDave Kleikamp */ 3888617ba13bSMingming Cao static int __ext4_get_inode_loc(struct inode *inode, 3889617ba13bSMingming Cao struct ext4_iloc *iloc, int in_mem) 3890ac27a0ecSDave Kleikamp { 3891240799cdSTheodore Ts'o struct ext4_group_desc *gdp; 3892ac27a0ecSDave Kleikamp struct buffer_head *bh; 3893240799cdSTheodore Ts'o struct super_block *sb = inode->i_sb; 3894240799cdSTheodore Ts'o ext4_fsblk_t block; 3895240799cdSTheodore Ts'o int inodes_per_block, inode_offset; 3896ac27a0ecSDave Kleikamp 38973a06d778SAneesh Kumar K.V iloc->bh = NULL; 3898240799cdSTheodore Ts'o if (!ext4_valid_inum(sb, inode->i_ino)) 38996a797d27SDarrick J. Wong return -EFSCORRUPTED; 3900ac27a0ecSDave Kleikamp 3901240799cdSTheodore Ts'o iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb); 3902240799cdSTheodore Ts'o gdp = ext4_get_group_desc(sb, iloc->block_group, NULL); 3903240799cdSTheodore Ts'o if (!gdp) 3904240799cdSTheodore Ts'o return -EIO; 3905240799cdSTheodore Ts'o 3906240799cdSTheodore Ts'o /* 3907240799cdSTheodore Ts'o * Figure out the offset within the block group inode table 3908240799cdSTheodore Ts'o */ 390900d09882STao Ma inodes_per_block = EXT4_SB(sb)->s_inodes_per_block; 3910240799cdSTheodore Ts'o inode_offset = ((inode->i_ino - 1) % 3911240799cdSTheodore Ts'o EXT4_INODES_PER_GROUP(sb)); 3912240799cdSTheodore Ts'o block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block); 3913240799cdSTheodore Ts'o iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb); 3914240799cdSTheodore Ts'o 3915240799cdSTheodore Ts'o bh = sb_getblk(sb, block); 3916aebf0243SWang Shilong if (unlikely(!bh)) 3917860d21e2STheodore Ts'o return -ENOMEM; 3918ac27a0ecSDave Kleikamp if (!buffer_uptodate(bh)) { 3919ac27a0ecSDave Kleikamp lock_buffer(bh); 39209c83a923SHidehiro Kawai 39219c83a923SHidehiro Kawai /* 39229c83a923SHidehiro Kawai * If the buffer has the write error flag, we have failed 39239c83a923SHidehiro Kawai * to write out another inode in the same block. In this 39249c83a923SHidehiro Kawai * case, we don't have to read the block because we may 39259c83a923SHidehiro Kawai * read the old inode data successfully. 39269c83a923SHidehiro Kawai */ 39279c83a923SHidehiro Kawai if (buffer_write_io_error(bh) && !buffer_uptodate(bh)) 39289c83a923SHidehiro Kawai set_buffer_uptodate(bh); 39299c83a923SHidehiro Kawai 3930ac27a0ecSDave Kleikamp if (buffer_uptodate(bh)) { 3931ac27a0ecSDave Kleikamp /* someone brought it uptodate while we waited */ 3932ac27a0ecSDave Kleikamp unlock_buffer(bh); 3933ac27a0ecSDave Kleikamp goto has_buffer; 3934ac27a0ecSDave Kleikamp } 3935ac27a0ecSDave Kleikamp 3936ac27a0ecSDave Kleikamp /* 3937ac27a0ecSDave Kleikamp * If we have all information of the inode in memory and this 3938ac27a0ecSDave Kleikamp * is the only valid inode in the block, we need not read the 3939ac27a0ecSDave Kleikamp * block. 3940ac27a0ecSDave Kleikamp */ 3941ac27a0ecSDave Kleikamp if (in_mem) { 3942ac27a0ecSDave Kleikamp struct buffer_head *bitmap_bh; 3943240799cdSTheodore Ts'o int i, start; 3944ac27a0ecSDave Kleikamp 3945240799cdSTheodore Ts'o start = inode_offset & ~(inodes_per_block - 1); 3946ac27a0ecSDave Kleikamp 3947ac27a0ecSDave Kleikamp /* Is the inode bitmap in cache? */ 3948240799cdSTheodore Ts'o bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp)); 3949aebf0243SWang Shilong if (unlikely(!bitmap_bh)) 3950ac27a0ecSDave Kleikamp goto make_io; 3951ac27a0ecSDave Kleikamp 3952ac27a0ecSDave Kleikamp /* 3953ac27a0ecSDave Kleikamp * If the inode bitmap isn't in cache then the 3954ac27a0ecSDave Kleikamp * optimisation may end up performing two reads instead 3955ac27a0ecSDave Kleikamp * of one, so skip it. 3956ac27a0ecSDave Kleikamp */ 3957ac27a0ecSDave Kleikamp if (!buffer_uptodate(bitmap_bh)) { 3958ac27a0ecSDave Kleikamp brelse(bitmap_bh); 3959ac27a0ecSDave Kleikamp goto make_io; 3960ac27a0ecSDave Kleikamp } 3961240799cdSTheodore Ts'o for (i = start; i < start + inodes_per_block; i++) { 3962ac27a0ecSDave Kleikamp if (i == inode_offset) 3963ac27a0ecSDave Kleikamp continue; 3964617ba13bSMingming Cao if (ext4_test_bit(i, bitmap_bh->b_data)) 3965ac27a0ecSDave Kleikamp break; 3966ac27a0ecSDave Kleikamp } 3967ac27a0ecSDave Kleikamp brelse(bitmap_bh); 3968240799cdSTheodore Ts'o if (i == start + inodes_per_block) { 3969ac27a0ecSDave Kleikamp /* all other inodes are free, so skip I/O */ 3970ac27a0ecSDave Kleikamp memset(bh->b_data, 0, bh->b_size); 3971ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 3972ac27a0ecSDave Kleikamp unlock_buffer(bh); 3973ac27a0ecSDave Kleikamp goto has_buffer; 3974ac27a0ecSDave Kleikamp } 3975ac27a0ecSDave Kleikamp } 3976ac27a0ecSDave Kleikamp 3977ac27a0ecSDave Kleikamp make_io: 3978ac27a0ecSDave Kleikamp /* 3979240799cdSTheodore Ts'o * If we need to do any I/O, try to pre-readahead extra 3980240799cdSTheodore Ts'o * blocks from the inode table. 3981240799cdSTheodore Ts'o */ 3982240799cdSTheodore Ts'o if (EXT4_SB(sb)->s_inode_readahead_blks) { 3983240799cdSTheodore Ts'o ext4_fsblk_t b, end, table; 3984240799cdSTheodore Ts'o unsigned num; 39850d606e2cSTheodore Ts'o __u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks; 3986240799cdSTheodore Ts'o 3987240799cdSTheodore Ts'o table = ext4_inode_table(sb, gdp); 3988b713a5ecSTheodore Ts'o /* s_inode_readahead_blks is always a power of 2 */ 39890d606e2cSTheodore Ts'o b = block & ~((ext4_fsblk_t) ra_blks - 1); 3990240799cdSTheodore Ts'o if (table > b) 3991240799cdSTheodore Ts'o b = table; 39920d606e2cSTheodore Ts'o end = b + ra_blks; 3993240799cdSTheodore Ts'o num = EXT4_INODES_PER_GROUP(sb); 3994feb0ab32SDarrick J. Wong if (ext4_has_group_desc_csum(sb)) 3995560671a0SAneesh Kumar K.V num -= ext4_itable_unused_count(sb, gdp); 3996240799cdSTheodore Ts'o table += num / inodes_per_block; 3997240799cdSTheodore Ts'o if (end > table) 3998240799cdSTheodore Ts'o end = table; 3999240799cdSTheodore Ts'o while (b <= end) 4000240799cdSTheodore Ts'o sb_breadahead(sb, b++); 4001240799cdSTheodore Ts'o } 4002240799cdSTheodore Ts'o 4003240799cdSTheodore Ts'o /* 4004ac27a0ecSDave Kleikamp * There are other valid inodes in the buffer, this inode 4005ac27a0ecSDave Kleikamp * has in-inode xattrs, or we don't have this inode in memory. 4006ac27a0ecSDave Kleikamp * Read the block from disk. 4007ac27a0ecSDave Kleikamp */ 40080562e0baSJiaying Zhang trace_ext4_load_inode(inode); 4009ac27a0ecSDave Kleikamp get_bh(bh); 4010ac27a0ecSDave Kleikamp bh->b_end_io = end_buffer_read_sync; 401165299a3bSChristoph Hellwig submit_bh(READ | REQ_META | REQ_PRIO, bh); 4012ac27a0ecSDave Kleikamp wait_on_buffer(bh); 4013ac27a0ecSDave Kleikamp if (!buffer_uptodate(bh)) { 4014c398eda0STheodore Ts'o EXT4_ERROR_INODE_BLOCK(inode, block, 4015c398eda0STheodore Ts'o "unable to read itable block"); 4016ac27a0ecSDave Kleikamp brelse(bh); 4017ac27a0ecSDave Kleikamp return -EIO; 4018ac27a0ecSDave Kleikamp } 4019ac27a0ecSDave Kleikamp } 4020ac27a0ecSDave Kleikamp has_buffer: 4021ac27a0ecSDave Kleikamp iloc->bh = bh; 4022ac27a0ecSDave Kleikamp return 0; 4023ac27a0ecSDave Kleikamp } 4024ac27a0ecSDave Kleikamp 4025617ba13bSMingming Cao int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc) 4026ac27a0ecSDave Kleikamp { 4027ac27a0ecSDave Kleikamp /* We have all inode data except xattrs in memory here. */ 4028617ba13bSMingming Cao return __ext4_get_inode_loc(inode, iloc, 402919f5fb7aSTheodore Ts'o !ext4_test_inode_state(inode, EXT4_STATE_XATTR)); 4030ac27a0ecSDave Kleikamp } 4031ac27a0ecSDave Kleikamp 4032617ba13bSMingming Cao void ext4_set_inode_flags(struct inode *inode) 4033ac27a0ecSDave Kleikamp { 4034617ba13bSMingming Cao unsigned int flags = EXT4_I(inode)->i_flags; 403500a1a053STheodore Ts'o unsigned int new_fl = 0; 4036ac27a0ecSDave Kleikamp 4037617ba13bSMingming Cao if (flags & EXT4_SYNC_FL) 403800a1a053STheodore Ts'o new_fl |= S_SYNC; 4039617ba13bSMingming Cao if (flags & EXT4_APPEND_FL) 404000a1a053STheodore Ts'o new_fl |= S_APPEND; 4041617ba13bSMingming Cao if (flags & EXT4_IMMUTABLE_FL) 404200a1a053STheodore Ts'o new_fl |= S_IMMUTABLE; 4043617ba13bSMingming Cao if (flags & EXT4_NOATIME_FL) 404400a1a053STheodore Ts'o new_fl |= S_NOATIME; 4045617ba13bSMingming Cao if (flags & EXT4_DIRSYNC_FL) 404600a1a053STheodore Ts'o new_fl |= S_DIRSYNC; 4047923ae0ffSRoss Zwisler if (test_opt(inode->i_sb, DAX)) 4048923ae0ffSRoss Zwisler new_fl |= S_DAX; 40495f16f322STheodore Ts'o inode_set_flags(inode, new_fl, 4050923ae0ffSRoss Zwisler S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX); 4051ac27a0ecSDave Kleikamp } 4052ac27a0ecSDave Kleikamp 4053ff9ddf7eSJan Kara /* Propagate flags from i_flags to EXT4_I(inode)->i_flags */ 4054ff9ddf7eSJan Kara void ext4_get_inode_flags(struct ext4_inode_info *ei) 4055ff9ddf7eSJan Kara { 405684a8dce2SDmitry Monakhov unsigned int vfs_fl; 405784a8dce2SDmitry Monakhov unsigned long old_fl, new_fl; 4058ff9ddf7eSJan Kara 405984a8dce2SDmitry Monakhov do { 406084a8dce2SDmitry Monakhov vfs_fl = ei->vfs_inode.i_flags; 406184a8dce2SDmitry Monakhov old_fl = ei->i_flags; 406284a8dce2SDmitry Monakhov new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL| 406384a8dce2SDmitry Monakhov EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL| 406484a8dce2SDmitry Monakhov EXT4_DIRSYNC_FL); 406584a8dce2SDmitry Monakhov if (vfs_fl & S_SYNC) 406684a8dce2SDmitry Monakhov new_fl |= EXT4_SYNC_FL; 406784a8dce2SDmitry Monakhov if (vfs_fl & S_APPEND) 406884a8dce2SDmitry Monakhov new_fl |= EXT4_APPEND_FL; 406984a8dce2SDmitry Monakhov if (vfs_fl & S_IMMUTABLE) 407084a8dce2SDmitry Monakhov new_fl |= EXT4_IMMUTABLE_FL; 407184a8dce2SDmitry Monakhov if (vfs_fl & S_NOATIME) 407284a8dce2SDmitry Monakhov new_fl |= EXT4_NOATIME_FL; 407384a8dce2SDmitry Monakhov if (vfs_fl & S_DIRSYNC) 407484a8dce2SDmitry Monakhov new_fl |= EXT4_DIRSYNC_FL; 407584a8dce2SDmitry Monakhov } while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl); 4076ff9ddf7eSJan Kara } 4077de9a55b8STheodore Ts'o 40780fc1b451SAneesh Kumar K.V static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode, 40790fc1b451SAneesh Kumar K.V struct ext4_inode_info *ei) 40800fc1b451SAneesh Kumar K.V { 40810fc1b451SAneesh Kumar K.V blkcnt_t i_blocks ; 40828180a562SAneesh Kumar K.V struct inode *inode = &(ei->vfs_inode); 40838180a562SAneesh Kumar K.V struct super_block *sb = inode->i_sb; 40840fc1b451SAneesh Kumar K.V 4085e2b911c5SDarrick J. Wong if (ext4_has_feature_huge_file(sb)) { 40860fc1b451SAneesh Kumar K.V /* we are using combined 48 bit field */ 40870fc1b451SAneesh Kumar K.V i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 | 40880fc1b451SAneesh Kumar K.V le32_to_cpu(raw_inode->i_blocks_lo); 408907a03824STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) { 40908180a562SAneesh Kumar K.V /* i_blocks represent file system block size */ 40918180a562SAneesh Kumar K.V return i_blocks << (inode->i_blkbits - 9); 40928180a562SAneesh Kumar K.V } else { 40930fc1b451SAneesh Kumar K.V return i_blocks; 40948180a562SAneesh Kumar K.V } 40950fc1b451SAneesh Kumar K.V } else { 40960fc1b451SAneesh Kumar K.V return le32_to_cpu(raw_inode->i_blocks_lo); 40970fc1b451SAneesh Kumar K.V } 40980fc1b451SAneesh Kumar K.V } 4099ff9ddf7eSJan Kara 4100152a7b0aSTao Ma static inline void ext4_iget_extra_inode(struct inode *inode, 4101152a7b0aSTao Ma struct ext4_inode *raw_inode, 4102152a7b0aSTao Ma struct ext4_inode_info *ei) 4103152a7b0aSTao Ma { 4104152a7b0aSTao Ma __le32 *magic = (void *)raw_inode + 4105152a7b0aSTao Ma EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize; 410667cf5b09STao Ma if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) { 4107152a7b0aSTao Ma ext4_set_inode_state(inode, EXT4_STATE_XATTR); 410867cf5b09STao Ma ext4_find_inline_data_nolock(inode); 4109f19d5870STao Ma } else 4110f19d5870STao Ma EXT4_I(inode)->i_inline_off = 0; 4111152a7b0aSTao Ma } 4112152a7b0aSTao Ma 41131d1fe1eeSDavid Howells struct inode *ext4_iget(struct super_block *sb, unsigned long ino) 4114ac27a0ecSDave Kleikamp { 4115617ba13bSMingming Cao struct ext4_iloc iloc; 4116617ba13bSMingming Cao struct ext4_inode *raw_inode; 41171d1fe1eeSDavid Howells struct ext4_inode_info *ei; 41181d1fe1eeSDavid Howells struct inode *inode; 4119b436b9beSJan Kara journal_t *journal = EXT4_SB(sb)->s_journal; 41201d1fe1eeSDavid Howells long ret; 4121ac27a0ecSDave Kleikamp int block; 412208cefc7aSEric W. Biederman uid_t i_uid; 412308cefc7aSEric W. Biederman gid_t i_gid; 4124ac27a0ecSDave Kleikamp 41251d1fe1eeSDavid Howells inode = iget_locked(sb, ino); 41261d1fe1eeSDavid Howells if (!inode) 41271d1fe1eeSDavid Howells return ERR_PTR(-ENOMEM); 41281d1fe1eeSDavid Howells if (!(inode->i_state & I_NEW)) 41291d1fe1eeSDavid Howells return inode; 41301d1fe1eeSDavid Howells 41311d1fe1eeSDavid Howells ei = EXT4_I(inode); 41327dc57615SPeter Huewe iloc.bh = NULL; 4133ac27a0ecSDave Kleikamp 41341d1fe1eeSDavid Howells ret = __ext4_get_inode_loc(inode, &iloc, 0); 41351d1fe1eeSDavid Howells if (ret < 0) 4136ac27a0ecSDave Kleikamp goto bad_inode; 4137617ba13bSMingming Cao raw_inode = ext4_raw_inode(&iloc); 4138814525f4SDarrick J. Wong 4139814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 4140814525f4SDarrick J. Wong ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize); 4141814525f4SDarrick J. Wong if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize > 4142814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)) { 4143814525f4SDarrick J. Wong EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)", 4144814525f4SDarrick J. Wong EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize, 4145814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)); 41466a797d27SDarrick J. Wong ret = -EFSCORRUPTED; 4147814525f4SDarrick J. Wong goto bad_inode; 4148814525f4SDarrick J. Wong } 4149814525f4SDarrick J. Wong } else 4150814525f4SDarrick J. Wong ei->i_extra_isize = 0; 4151814525f4SDarrick J. Wong 4152814525f4SDarrick J. Wong /* Precompute checksum seed for inode metadata */ 41539aa5d32bSDmitry Monakhov if (ext4_has_metadata_csum(sb)) { 4154814525f4SDarrick J. Wong struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 4155814525f4SDarrick J. Wong __u32 csum; 4156814525f4SDarrick J. Wong __le32 inum = cpu_to_le32(inode->i_ino); 4157814525f4SDarrick J. Wong __le32 gen = raw_inode->i_generation; 4158814525f4SDarrick J. Wong csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum, 4159814525f4SDarrick J. Wong sizeof(inum)); 4160814525f4SDarrick J. Wong ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen, 4161814525f4SDarrick J. Wong sizeof(gen)); 4162814525f4SDarrick J. Wong } 4163814525f4SDarrick J. Wong 4164814525f4SDarrick J. Wong if (!ext4_inode_csum_verify(inode, raw_inode, ei)) { 4165814525f4SDarrick J. Wong EXT4_ERROR_INODE(inode, "checksum invalid"); 41666a797d27SDarrick J. Wong ret = -EFSBADCRC; 4167814525f4SDarrick J. Wong goto bad_inode; 4168814525f4SDarrick J. Wong } 4169814525f4SDarrick J. Wong 4170ac27a0ecSDave Kleikamp inode->i_mode = le16_to_cpu(raw_inode->i_mode); 417108cefc7aSEric W. Biederman i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low); 417208cefc7aSEric W. Biederman i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low); 4173ac27a0ecSDave Kleikamp if (!(test_opt(inode->i_sb, NO_UID32))) { 417408cefc7aSEric W. Biederman i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16; 417508cefc7aSEric W. Biederman i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16; 4176ac27a0ecSDave Kleikamp } 417708cefc7aSEric W. Biederman i_uid_write(inode, i_uid); 417808cefc7aSEric W. Biederman i_gid_write(inode, i_gid); 4179bfe86848SMiklos Szeredi set_nlink(inode, le16_to_cpu(raw_inode->i_links_count)); 4180ac27a0ecSDave Kleikamp 4181353eb83cSTheodore Ts'o ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */ 418267cf5b09STao Ma ei->i_inline_off = 0; 4183ac27a0ecSDave Kleikamp ei->i_dir_start_lookup = 0; 4184ac27a0ecSDave Kleikamp ei->i_dtime = le32_to_cpu(raw_inode->i_dtime); 4185ac27a0ecSDave Kleikamp /* We now have enough fields to check if the inode was active or not. 4186ac27a0ecSDave Kleikamp * This is needed because nfsd might try to access dead inodes 4187ac27a0ecSDave Kleikamp * the test is that same one that e2fsck uses 4188ac27a0ecSDave Kleikamp * NeilBrown 1999oct15 4189ac27a0ecSDave Kleikamp */ 4190ac27a0ecSDave Kleikamp if (inode->i_nlink == 0) { 4191393d1d1dSDr. Tilmann Bubeck if ((inode->i_mode == 0 || 4192393d1d1dSDr. Tilmann Bubeck !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) && 4193393d1d1dSDr. Tilmann Bubeck ino != EXT4_BOOT_LOADER_INO) { 4194ac27a0ecSDave Kleikamp /* this inode is deleted */ 41951d1fe1eeSDavid Howells ret = -ESTALE; 4196ac27a0ecSDave Kleikamp goto bad_inode; 4197ac27a0ecSDave Kleikamp } 4198ac27a0ecSDave Kleikamp /* The only unlinked inodes we let through here have 4199ac27a0ecSDave Kleikamp * valid i_mode and are being read by the orphan 4200ac27a0ecSDave Kleikamp * recovery code: that's fine, we're about to complete 4201393d1d1dSDr. Tilmann Bubeck * the process of deleting those. 4202393d1d1dSDr. Tilmann Bubeck * OR it is the EXT4_BOOT_LOADER_INO which is 4203393d1d1dSDr. Tilmann Bubeck * not initialized on a new filesystem. */ 4204ac27a0ecSDave Kleikamp } 4205ac27a0ecSDave Kleikamp ei->i_flags = le32_to_cpu(raw_inode->i_flags); 42060fc1b451SAneesh Kumar K.V inode->i_blocks = ext4_inode_blocks(raw_inode, ei); 42077973c0c1SAneesh Kumar K.V ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo); 4208e2b911c5SDarrick J. Wong if (ext4_has_feature_64bit(sb)) 4209a1ddeb7eSBadari Pulavarty ei->i_file_acl |= 4210a1ddeb7eSBadari Pulavarty ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32; 4211a48380f7SAneesh Kumar K.V inode->i_size = ext4_isize(raw_inode); 4212ac27a0ecSDave Kleikamp ei->i_disksize = inode->i_size; 4213a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA 4214a9e7f447SDmitry Monakhov ei->i_reserved_quota = 0; 4215a9e7f447SDmitry Monakhov #endif 4216ac27a0ecSDave Kleikamp inode->i_generation = le32_to_cpu(raw_inode->i_generation); 4217ac27a0ecSDave Kleikamp ei->i_block_group = iloc.block_group; 4218a4912123STheodore Ts'o ei->i_last_alloc_group = ~0; 4219ac27a0ecSDave Kleikamp /* 4220ac27a0ecSDave Kleikamp * NOTE! The in-memory inode i_data array is in little-endian order 4221ac27a0ecSDave Kleikamp * even on big-endian machines: we do NOT byteswap the block numbers! 4222ac27a0ecSDave Kleikamp */ 4223617ba13bSMingming Cao for (block = 0; block < EXT4_N_BLOCKS; block++) 4224ac27a0ecSDave Kleikamp ei->i_data[block] = raw_inode->i_block[block]; 4225ac27a0ecSDave Kleikamp INIT_LIST_HEAD(&ei->i_orphan); 4226ac27a0ecSDave Kleikamp 4227b436b9beSJan Kara /* 4228b436b9beSJan Kara * Set transaction id's of transactions that have to be committed 4229b436b9beSJan Kara * to finish f[data]sync. We set them to currently running transaction 4230b436b9beSJan Kara * as we cannot be sure that the inode or some of its metadata isn't 4231b436b9beSJan Kara * part of the transaction - the inode could have been reclaimed and 4232b436b9beSJan Kara * now it is reread from disk. 4233b436b9beSJan Kara */ 4234b436b9beSJan Kara if (journal) { 4235b436b9beSJan Kara transaction_t *transaction; 4236b436b9beSJan Kara tid_t tid; 4237b436b9beSJan Kara 4238a931da6aSTheodore Ts'o read_lock(&journal->j_state_lock); 4239b436b9beSJan Kara if (journal->j_running_transaction) 4240b436b9beSJan Kara transaction = journal->j_running_transaction; 4241b436b9beSJan Kara else 4242b436b9beSJan Kara transaction = journal->j_committing_transaction; 4243b436b9beSJan Kara if (transaction) 4244b436b9beSJan Kara tid = transaction->t_tid; 4245b436b9beSJan Kara else 4246b436b9beSJan Kara tid = journal->j_commit_sequence; 4247a931da6aSTheodore Ts'o read_unlock(&journal->j_state_lock); 4248b436b9beSJan Kara ei->i_sync_tid = tid; 4249b436b9beSJan Kara ei->i_datasync_tid = tid; 4250b436b9beSJan Kara } 4251b436b9beSJan Kara 42520040d987SEric Sandeen if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 4253ac27a0ecSDave Kleikamp if (ei->i_extra_isize == 0) { 4254ac27a0ecSDave Kleikamp /* The extra space is currently unused. Use it. */ 4255617ba13bSMingming Cao ei->i_extra_isize = sizeof(struct ext4_inode) - 4256617ba13bSMingming Cao EXT4_GOOD_OLD_INODE_SIZE; 4257ac27a0ecSDave Kleikamp } else { 4258152a7b0aSTao Ma ext4_iget_extra_inode(inode, raw_inode, ei); 4259ac27a0ecSDave Kleikamp } 4260814525f4SDarrick J. Wong } 4261ac27a0ecSDave Kleikamp 4262ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode); 4263ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode); 4264ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode); 4265ef7f3835SKalpak Shah EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode); 4266ef7f3835SKalpak Shah 4267ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) { 426825ec56b5SJean Noel Cordenner inode->i_version = le32_to_cpu(raw_inode->i_disk_version); 426925ec56b5SJean Noel Cordenner if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 427025ec56b5SJean Noel Cordenner if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi)) 427125ec56b5SJean Noel Cordenner inode->i_version |= 427225ec56b5SJean Noel Cordenner (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32; 427325ec56b5SJean Noel Cordenner } 4274c4f65706STheodore Ts'o } 427525ec56b5SJean Noel Cordenner 4276c4b5a614STheodore Ts'o ret = 0; 4277485c26ecSTheodore Ts'o if (ei->i_file_acl && 42781032988cSTheodore Ts'o !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) { 427924676da4STheodore Ts'o EXT4_ERROR_INODE(inode, "bad extended attribute block %llu", 428024676da4STheodore Ts'o ei->i_file_acl); 42816a797d27SDarrick J. Wong ret = -EFSCORRUPTED; 4282485c26ecSTheodore Ts'o goto bad_inode; 4283f19d5870STao Ma } else if (!ext4_has_inline_data(inode)) { 4284f19d5870STao Ma if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 4285f19d5870STao Ma if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || 4286c4b5a614STheodore Ts'o (S_ISLNK(inode->i_mode) && 4287f19d5870STao Ma !ext4_inode_is_fast_symlink(inode)))) 42887a262f7cSAneesh Kumar K.V /* Validate extent which is part of inode */ 42897a262f7cSAneesh Kumar K.V ret = ext4_ext_check_inode(inode); 4290fe2c8191SThiemo Nagel } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || 4291fe2c8191SThiemo Nagel (S_ISLNK(inode->i_mode) && 4292fe2c8191SThiemo Nagel !ext4_inode_is_fast_symlink(inode))) { 4293fe2c8191SThiemo Nagel /* Validate block references which are part of inode */ 42941f7d1e77STheodore Ts'o ret = ext4_ind_check_inode(inode); 4295fe2c8191SThiemo Nagel } 4296f19d5870STao Ma } 4297567f3e9aSTheodore Ts'o if (ret) 42987a262f7cSAneesh Kumar K.V goto bad_inode; 42997a262f7cSAneesh Kumar K.V 4300ac27a0ecSDave Kleikamp if (S_ISREG(inode->i_mode)) { 4301617ba13bSMingming Cao inode->i_op = &ext4_file_inode_operations; 4302617ba13bSMingming Cao inode->i_fop = &ext4_file_operations; 4303617ba13bSMingming Cao ext4_set_aops(inode); 4304ac27a0ecSDave Kleikamp } else if (S_ISDIR(inode->i_mode)) { 4305617ba13bSMingming Cao inode->i_op = &ext4_dir_inode_operations; 4306617ba13bSMingming Cao inode->i_fop = &ext4_dir_operations; 4307ac27a0ecSDave Kleikamp } else if (S_ISLNK(inode->i_mode)) { 4308a7a67e8aSAl Viro if (ext4_encrypted_inode(inode)) { 4309a7a67e8aSAl Viro inode->i_op = &ext4_encrypted_symlink_inode_operations; 4310a7a67e8aSAl Viro ext4_set_aops(inode); 4311a7a67e8aSAl Viro } else if (ext4_inode_is_fast_symlink(inode)) { 431275e7566bSAl Viro inode->i_link = (char *)ei->i_data; 4313617ba13bSMingming Cao inode->i_op = &ext4_fast_symlink_inode_operations; 4314e83c1397SDuane Griffin nd_terminate_link(ei->i_data, inode->i_size, 4315e83c1397SDuane Griffin sizeof(ei->i_data) - 1); 4316e83c1397SDuane Griffin } else { 4317617ba13bSMingming Cao inode->i_op = &ext4_symlink_inode_operations; 4318617ba13bSMingming Cao ext4_set_aops(inode); 4319ac27a0ecSDave Kleikamp } 4320563bdd61STheodore Ts'o } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) || 4321563bdd61STheodore Ts'o S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) { 4322617ba13bSMingming Cao inode->i_op = &ext4_special_inode_operations; 4323ac27a0ecSDave Kleikamp if (raw_inode->i_block[0]) 4324ac27a0ecSDave Kleikamp init_special_inode(inode, inode->i_mode, 4325ac27a0ecSDave Kleikamp old_decode_dev(le32_to_cpu(raw_inode->i_block[0]))); 4326ac27a0ecSDave Kleikamp else 4327ac27a0ecSDave Kleikamp init_special_inode(inode, inode->i_mode, 4328ac27a0ecSDave Kleikamp new_decode_dev(le32_to_cpu(raw_inode->i_block[1]))); 4329393d1d1dSDr. Tilmann Bubeck } else if (ino == EXT4_BOOT_LOADER_INO) { 4330393d1d1dSDr. Tilmann Bubeck make_bad_inode(inode); 4331563bdd61STheodore Ts'o } else { 43326a797d27SDarrick J. Wong ret = -EFSCORRUPTED; 433324676da4STheodore Ts'o EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode); 4334563bdd61STheodore Ts'o goto bad_inode; 4335ac27a0ecSDave Kleikamp } 4336ac27a0ecSDave Kleikamp brelse(iloc.bh); 4337617ba13bSMingming Cao ext4_set_inode_flags(inode); 43381d1fe1eeSDavid Howells unlock_new_inode(inode); 43391d1fe1eeSDavid Howells return inode; 4340ac27a0ecSDave Kleikamp 4341ac27a0ecSDave Kleikamp bad_inode: 4342567f3e9aSTheodore Ts'o brelse(iloc.bh); 43431d1fe1eeSDavid Howells iget_failed(inode); 43441d1fe1eeSDavid Howells return ERR_PTR(ret); 4345ac27a0ecSDave Kleikamp } 4346ac27a0ecSDave Kleikamp 4347f4bb2981STheodore Ts'o struct inode *ext4_iget_normal(struct super_block *sb, unsigned long ino) 4348f4bb2981STheodore Ts'o { 4349f4bb2981STheodore Ts'o if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO) 43506a797d27SDarrick J. Wong return ERR_PTR(-EFSCORRUPTED); 4351f4bb2981STheodore Ts'o return ext4_iget(sb, ino); 4352f4bb2981STheodore Ts'o } 4353f4bb2981STheodore Ts'o 43540fc1b451SAneesh Kumar K.V static int ext4_inode_blocks_set(handle_t *handle, 43550fc1b451SAneesh Kumar K.V struct ext4_inode *raw_inode, 43560fc1b451SAneesh Kumar K.V struct ext4_inode_info *ei) 43570fc1b451SAneesh Kumar K.V { 43580fc1b451SAneesh Kumar K.V struct inode *inode = &(ei->vfs_inode); 43590fc1b451SAneesh Kumar K.V u64 i_blocks = inode->i_blocks; 43600fc1b451SAneesh Kumar K.V struct super_block *sb = inode->i_sb; 43610fc1b451SAneesh Kumar K.V 43620fc1b451SAneesh Kumar K.V if (i_blocks <= ~0U) { 43630fc1b451SAneesh Kumar K.V /* 43644907cb7bSAnatol Pomozov * i_blocks can be represented in a 32 bit variable 43650fc1b451SAneesh Kumar K.V * as multiple of 512 bytes 43660fc1b451SAneesh Kumar K.V */ 43678180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 43680fc1b451SAneesh Kumar K.V raw_inode->i_blocks_high = 0; 436984a8dce2SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE); 4370f287a1a5STheodore Ts'o return 0; 4371f287a1a5STheodore Ts'o } 4372e2b911c5SDarrick J. Wong if (!ext4_has_feature_huge_file(sb)) 4373f287a1a5STheodore Ts'o return -EFBIG; 4374f287a1a5STheodore Ts'o 4375f287a1a5STheodore Ts'o if (i_blocks <= 0xffffffffffffULL) { 43760fc1b451SAneesh Kumar K.V /* 43770fc1b451SAneesh Kumar K.V * i_blocks can be represented in a 48 bit variable 43780fc1b451SAneesh Kumar K.V * as multiple of 512 bytes 43790fc1b451SAneesh Kumar K.V */ 43808180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 43810fc1b451SAneesh Kumar K.V raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32); 438284a8dce2SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE); 43830fc1b451SAneesh Kumar K.V } else { 438484a8dce2SDmitry Monakhov ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE); 43858180a562SAneesh Kumar K.V /* i_block is stored in file system block size */ 43868180a562SAneesh Kumar K.V i_blocks = i_blocks >> (inode->i_blkbits - 9); 43878180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 43888180a562SAneesh Kumar K.V raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32); 43890fc1b451SAneesh Kumar K.V } 4390f287a1a5STheodore Ts'o return 0; 43910fc1b451SAneesh Kumar K.V } 43920fc1b451SAneesh Kumar K.V 4393a26f4992STheodore Ts'o struct other_inode { 4394a26f4992STheodore Ts'o unsigned long orig_ino; 4395a26f4992STheodore Ts'o struct ext4_inode *raw_inode; 4396a26f4992STheodore Ts'o }; 4397a26f4992STheodore Ts'o 4398a26f4992STheodore Ts'o static int other_inode_match(struct inode * inode, unsigned long ino, 4399a26f4992STheodore Ts'o void *data) 4400a26f4992STheodore Ts'o { 4401a26f4992STheodore Ts'o struct other_inode *oi = (struct other_inode *) data; 4402a26f4992STheodore Ts'o 4403a26f4992STheodore Ts'o if ((inode->i_ino != ino) || 4404a26f4992STheodore Ts'o (inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW | 4405a26f4992STheodore Ts'o I_DIRTY_SYNC | I_DIRTY_DATASYNC)) || 4406a26f4992STheodore Ts'o ((inode->i_state & I_DIRTY_TIME) == 0)) 4407a26f4992STheodore Ts'o return 0; 4408a26f4992STheodore Ts'o spin_lock(&inode->i_lock); 4409a26f4992STheodore Ts'o if (((inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW | 4410a26f4992STheodore Ts'o I_DIRTY_SYNC | I_DIRTY_DATASYNC)) == 0) && 4411a26f4992STheodore Ts'o (inode->i_state & I_DIRTY_TIME)) { 4412a26f4992STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 4413a26f4992STheodore Ts'o 4414a26f4992STheodore Ts'o inode->i_state &= ~(I_DIRTY_TIME | I_DIRTY_TIME_EXPIRED); 4415a26f4992STheodore Ts'o spin_unlock(&inode->i_lock); 4416a26f4992STheodore Ts'o 4417a26f4992STheodore Ts'o spin_lock(&ei->i_raw_lock); 4418a26f4992STheodore Ts'o EXT4_INODE_SET_XTIME(i_ctime, inode, oi->raw_inode); 4419a26f4992STheodore Ts'o EXT4_INODE_SET_XTIME(i_mtime, inode, oi->raw_inode); 4420a26f4992STheodore Ts'o EXT4_INODE_SET_XTIME(i_atime, inode, oi->raw_inode); 4421a26f4992STheodore Ts'o ext4_inode_csum_set(inode, oi->raw_inode, ei); 4422a26f4992STheodore Ts'o spin_unlock(&ei->i_raw_lock); 4423a26f4992STheodore Ts'o trace_ext4_other_inode_update_time(inode, oi->orig_ino); 4424a26f4992STheodore Ts'o return -1; 4425a26f4992STheodore Ts'o } 4426a26f4992STheodore Ts'o spin_unlock(&inode->i_lock); 4427a26f4992STheodore Ts'o return -1; 4428a26f4992STheodore Ts'o } 4429a26f4992STheodore Ts'o 4430a26f4992STheodore Ts'o /* 4431a26f4992STheodore Ts'o * Opportunistically update the other time fields for other inodes in 4432a26f4992STheodore Ts'o * the same inode table block. 4433a26f4992STheodore Ts'o */ 4434a26f4992STheodore Ts'o static void ext4_update_other_inodes_time(struct super_block *sb, 4435a26f4992STheodore Ts'o unsigned long orig_ino, char *buf) 4436a26f4992STheodore Ts'o { 4437a26f4992STheodore Ts'o struct other_inode oi; 4438a26f4992STheodore Ts'o unsigned long ino; 4439a26f4992STheodore Ts'o int i, inodes_per_block = EXT4_SB(sb)->s_inodes_per_block; 4440a26f4992STheodore Ts'o int inode_size = EXT4_INODE_SIZE(sb); 4441a26f4992STheodore Ts'o 4442a26f4992STheodore Ts'o oi.orig_ino = orig_ino; 44430f0ff9a9STheodore Ts'o /* 44440f0ff9a9STheodore Ts'o * Calculate the first inode in the inode table block. Inode 44450f0ff9a9STheodore Ts'o * numbers are one-based. That is, the first inode in a block 44460f0ff9a9STheodore Ts'o * (assuming 4k blocks and 256 byte inodes) is (n*16 + 1). 44470f0ff9a9STheodore Ts'o */ 44480f0ff9a9STheodore Ts'o ino = ((orig_ino - 1) & ~(inodes_per_block - 1)) + 1; 4449a26f4992STheodore Ts'o for (i = 0; i < inodes_per_block; i++, ino++, buf += inode_size) { 4450a26f4992STheodore Ts'o if (ino == orig_ino) 4451a26f4992STheodore Ts'o continue; 4452a26f4992STheodore Ts'o oi.raw_inode = (struct ext4_inode *) buf; 4453a26f4992STheodore Ts'o (void) find_inode_nowait(sb, ino, other_inode_match, &oi); 4454a26f4992STheodore Ts'o } 4455a26f4992STheodore Ts'o } 4456a26f4992STheodore Ts'o 4457ac27a0ecSDave Kleikamp /* 4458ac27a0ecSDave Kleikamp * Post the struct inode info into an on-disk inode location in the 4459ac27a0ecSDave Kleikamp * buffer-cache. This gobbles the caller's reference to the 4460ac27a0ecSDave Kleikamp * buffer_head in the inode location struct. 4461ac27a0ecSDave Kleikamp * 4462ac27a0ecSDave Kleikamp * The caller must have write access to iloc->bh. 4463ac27a0ecSDave Kleikamp */ 4464617ba13bSMingming Cao static int ext4_do_update_inode(handle_t *handle, 4465ac27a0ecSDave Kleikamp struct inode *inode, 4466830156c7SFrank Mayhar struct ext4_iloc *iloc) 4467ac27a0ecSDave Kleikamp { 4468617ba13bSMingming Cao struct ext4_inode *raw_inode = ext4_raw_inode(iloc); 4469617ba13bSMingming Cao struct ext4_inode_info *ei = EXT4_I(inode); 4470ac27a0ecSDave Kleikamp struct buffer_head *bh = iloc->bh; 4471202ee5dfSTheodore Ts'o struct super_block *sb = inode->i_sb; 4472ac27a0ecSDave Kleikamp int err = 0, rc, block; 4473202ee5dfSTheodore Ts'o int need_datasync = 0, set_large_file = 0; 447408cefc7aSEric W. Biederman uid_t i_uid; 447508cefc7aSEric W. Biederman gid_t i_gid; 4476ac27a0ecSDave Kleikamp 4477202ee5dfSTheodore Ts'o spin_lock(&ei->i_raw_lock); 4478202ee5dfSTheodore Ts'o 4479202ee5dfSTheodore Ts'o /* For fields not tracked in the in-memory inode, 4480ac27a0ecSDave Kleikamp * initialise them to zero for new inodes. */ 448119f5fb7aSTheodore Ts'o if (ext4_test_inode_state(inode, EXT4_STATE_NEW)) 4482617ba13bSMingming Cao memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size); 4483ac27a0ecSDave Kleikamp 4484ff9ddf7eSJan Kara ext4_get_inode_flags(ei); 4485ac27a0ecSDave Kleikamp raw_inode->i_mode = cpu_to_le16(inode->i_mode); 448608cefc7aSEric W. Biederman i_uid = i_uid_read(inode); 448708cefc7aSEric W. Biederman i_gid = i_gid_read(inode); 4488ac27a0ecSDave Kleikamp if (!(test_opt(inode->i_sb, NO_UID32))) { 448908cefc7aSEric W. Biederman raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid)); 449008cefc7aSEric W. Biederman raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid)); 4491ac27a0ecSDave Kleikamp /* 4492ac27a0ecSDave Kleikamp * Fix up interoperability with old kernels. Otherwise, old inodes get 4493ac27a0ecSDave Kleikamp * re-used with the upper 16 bits of the uid/gid intact 4494ac27a0ecSDave Kleikamp */ 4495ac27a0ecSDave Kleikamp if (!ei->i_dtime) { 4496ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 449708cefc7aSEric W. Biederman cpu_to_le16(high_16_bits(i_uid)); 4498ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 449908cefc7aSEric W. Biederman cpu_to_le16(high_16_bits(i_gid)); 4500ac27a0ecSDave Kleikamp } else { 4501ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 0; 4502ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 0; 4503ac27a0ecSDave Kleikamp } 4504ac27a0ecSDave Kleikamp } else { 450508cefc7aSEric W. Biederman raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid)); 450608cefc7aSEric W. Biederman raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid)); 4507ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 0; 4508ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 0; 4509ac27a0ecSDave Kleikamp } 4510ac27a0ecSDave Kleikamp raw_inode->i_links_count = cpu_to_le16(inode->i_nlink); 4511ef7f3835SKalpak Shah 4512ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode); 4513ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode); 4514ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode); 4515ef7f3835SKalpak Shah EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode); 4516ef7f3835SKalpak Shah 4517bce92d56SLi Xi err = ext4_inode_blocks_set(handle, raw_inode, ei); 4518bce92d56SLi Xi if (err) { 4519202ee5dfSTheodore Ts'o spin_unlock(&ei->i_raw_lock); 45200fc1b451SAneesh Kumar K.V goto out_brelse; 4521202ee5dfSTheodore Ts'o } 4522ac27a0ecSDave Kleikamp raw_inode->i_dtime = cpu_to_le32(ei->i_dtime); 4523353eb83cSTheodore Ts'o raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF); 4524ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) 4525a1ddeb7eSBadari Pulavarty raw_inode->i_file_acl_high = 4526a1ddeb7eSBadari Pulavarty cpu_to_le16(ei->i_file_acl >> 32); 45277973c0c1SAneesh Kumar K.V raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl); 4528b71fc079SJan Kara if (ei->i_disksize != ext4_isize(raw_inode)) { 4529a48380f7SAneesh Kumar K.V ext4_isize_set(raw_inode, ei->i_disksize); 4530b71fc079SJan Kara need_datasync = 1; 4531b71fc079SJan Kara } 4532ac27a0ecSDave Kleikamp if (ei->i_disksize > 0x7fffffffULL) { 4533e2b911c5SDarrick J. Wong if (!ext4_has_feature_large_file(sb) || 4534617ba13bSMingming Cao EXT4_SB(sb)->s_es->s_rev_level == 4535202ee5dfSTheodore Ts'o cpu_to_le32(EXT4_GOOD_OLD_REV)) 4536202ee5dfSTheodore Ts'o set_large_file = 1; 4537ac27a0ecSDave Kleikamp } 4538ac27a0ecSDave Kleikamp raw_inode->i_generation = cpu_to_le32(inode->i_generation); 4539ac27a0ecSDave Kleikamp if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) { 4540ac27a0ecSDave Kleikamp if (old_valid_dev(inode->i_rdev)) { 4541ac27a0ecSDave Kleikamp raw_inode->i_block[0] = 4542ac27a0ecSDave Kleikamp cpu_to_le32(old_encode_dev(inode->i_rdev)); 4543ac27a0ecSDave Kleikamp raw_inode->i_block[1] = 0; 4544ac27a0ecSDave Kleikamp } else { 4545ac27a0ecSDave Kleikamp raw_inode->i_block[0] = 0; 4546ac27a0ecSDave Kleikamp raw_inode->i_block[1] = 4547ac27a0ecSDave Kleikamp cpu_to_le32(new_encode_dev(inode->i_rdev)); 4548ac27a0ecSDave Kleikamp raw_inode->i_block[2] = 0; 4549ac27a0ecSDave Kleikamp } 4550f19d5870STao Ma } else if (!ext4_has_inline_data(inode)) { 4551de9a55b8STheodore Ts'o for (block = 0; block < EXT4_N_BLOCKS; block++) 4552ac27a0ecSDave Kleikamp raw_inode->i_block[block] = ei->i_data[block]; 4553f19d5870STao Ma } 4554ac27a0ecSDave Kleikamp 4555ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) { 455625ec56b5SJean Noel Cordenner raw_inode->i_disk_version = cpu_to_le32(inode->i_version); 455725ec56b5SJean Noel Cordenner if (ei->i_extra_isize) { 455825ec56b5SJean Noel Cordenner if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi)) 455925ec56b5SJean Noel Cordenner raw_inode->i_version_hi = 456025ec56b5SJean Noel Cordenner cpu_to_le32(inode->i_version >> 32); 4561c4f65706STheodore Ts'o raw_inode->i_extra_isize = 4562c4f65706STheodore Ts'o cpu_to_le16(ei->i_extra_isize); 4563c4f65706STheodore Ts'o } 456425ec56b5SJean Noel Cordenner } 4565814525f4SDarrick J. Wong ext4_inode_csum_set(inode, raw_inode, ei); 4566202ee5dfSTheodore Ts'o spin_unlock(&ei->i_raw_lock); 4567a26f4992STheodore Ts'o if (inode->i_sb->s_flags & MS_LAZYTIME) 4568a26f4992STheodore Ts'o ext4_update_other_inodes_time(inode->i_sb, inode->i_ino, 4569a26f4992STheodore Ts'o bh->b_data); 4570202ee5dfSTheodore Ts'o 45710390131bSFrank Mayhar BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); 457273b50c1cSCurt Wohlgemuth rc = ext4_handle_dirty_metadata(handle, NULL, bh); 4573ac27a0ecSDave Kleikamp if (!err) 4574ac27a0ecSDave Kleikamp err = rc; 457519f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_NEW); 4576202ee5dfSTheodore Ts'o if (set_large_file) { 45775d601255Sliang xie BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access"); 4578202ee5dfSTheodore Ts'o err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh); 4579202ee5dfSTheodore Ts'o if (err) 4580202ee5dfSTheodore Ts'o goto out_brelse; 4581202ee5dfSTheodore Ts'o ext4_update_dynamic_rev(sb); 4582e2b911c5SDarrick J. Wong ext4_set_feature_large_file(sb); 4583202ee5dfSTheodore Ts'o ext4_handle_sync(handle); 4584202ee5dfSTheodore Ts'o err = ext4_handle_dirty_super(handle, sb); 4585202ee5dfSTheodore Ts'o } 4586b71fc079SJan Kara ext4_update_inode_fsync_trans(handle, inode, need_datasync); 4587ac27a0ecSDave Kleikamp out_brelse: 4588ac27a0ecSDave Kleikamp brelse(bh); 4589617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 4590ac27a0ecSDave Kleikamp return err; 4591ac27a0ecSDave Kleikamp } 4592ac27a0ecSDave Kleikamp 4593ac27a0ecSDave Kleikamp /* 4594617ba13bSMingming Cao * ext4_write_inode() 4595ac27a0ecSDave Kleikamp * 4596ac27a0ecSDave Kleikamp * We are called from a few places: 4597ac27a0ecSDave Kleikamp * 459887f7e416STheodore Ts'o * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files. 4599ac27a0ecSDave Kleikamp * Here, there will be no transaction running. We wait for any running 46004907cb7bSAnatol Pomozov * transaction to commit. 4601ac27a0ecSDave Kleikamp * 460287f7e416STheodore Ts'o * - Within flush work (sys_sync(), kupdate and such). 460387f7e416STheodore Ts'o * We wait on commit, if told to. 4604ac27a0ecSDave Kleikamp * 460587f7e416STheodore Ts'o * - Within iput_final() -> write_inode_now() 460687f7e416STheodore Ts'o * We wait on commit, if told to. 4607ac27a0ecSDave Kleikamp * 4608ac27a0ecSDave Kleikamp * In all cases it is actually safe for us to return without doing anything, 4609ac27a0ecSDave Kleikamp * because the inode has been copied into a raw inode buffer in 461087f7e416STheodore Ts'o * ext4_mark_inode_dirty(). This is a correctness thing for WB_SYNC_ALL 461187f7e416STheodore Ts'o * writeback. 4612ac27a0ecSDave Kleikamp * 4613ac27a0ecSDave Kleikamp * Note that we are absolutely dependent upon all inode dirtiers doing the 4614ac27a0ecSDave Kleikamp * right thing: they *must* call mark_inode_dirty() after dirtying info in 4615ac27a0ecSDave Kleikamp * which we are interested. 4616ac27a0ecSDave Kleikamp * 4617ac27a0ecSDave Kleikamp * It would be a bug for them to not do this. The code: 4618ac27a0ecSDave Kleikamp * 4619ac27a0ecSDave Kleikamp * mark_inode_dirty(inode) 4620ac27a0ecSDave Kleikamp * stuff(); 4621ac27a0ecSDave Kleikamp * inode->i_size = expr; 4622ac27a0ecSDave Kleikamp * 462387f7e416STheodore Ts'o * is in error because write_inode() could occur while `stuff()' is running, 462487f7e416STheodore Ts'o * and the new i_size will be lost. Plus the inode will no longer be on the 462587f7e416STheodore Ts'o * superblock's dirty inode list. 4626ac27a0ecSDave Kleikamp */ 4627a9185b41SChristoph Hellwig int ext4_write_inode(struct inode *inode, struct writeback_control *wbc) 4628ac27a0ecSDave Kleikamp { 462991ac6f43SFrank Mayhar int err; 463091ac6f43SFrank Mayhar 463187f7e416STheodore Ts'o if (WARN_ON_ONCE(current->flags & PF_MEMALLOC)) 4632ac27a0ecSDave Kleikamp return 0; 4633ac27a0ecSDave Kleikamp 463491ac6f43SFrank Mayhar if (EXT4_SB(inode->i_sb)->s_journal) { 4635617ba13bSMingming Cao if (ext4_journal_current_handle()) { 4636b38bd33aSMingming Cao jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n"); 4637ac27a0ecSDave Kleikamp dump_stack(); 4638ac27a0ecSDave Kleikamp return -EIO; 4639ac27a0ecSDave Kleikamp } 4640ac27a0ecSDave Kleikamp 464110542c22SJan Kara /* 464210542c22SJan Kara * No need to force transaction in WB_SYNC_NONE mode. Also 464310542c22SJan Kara * ext4_sync_fs() will force the commit after everything is 464410542c22SJan Kara * written. 464510542c22SJan Kara */ 464610542c22SJan Kara if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync) 4647ac27a0ecSDave Kleikamp return 0; 4648ac27a0ecSDave Kleikamp 464991ac6f43SFrank Mayhar err = ext4_force_commit(inode->i_sb); 465091ac6f43SFrank Mayhar } else { 465191ac6f43SFrank Mayhar struct ext4_iloc iloc; 465291ac6f43SFrank Mayhar 46538b472d73SCurt Wohlgemuth err = __ext4_get_inode_loc(inode, &iloc, 0); 465491ac6f43SFrank Mayhar if (err) 465591ac6f43SFrank Mayhar return err; 465610542c22SJan Kara /* 465710542c22SJan Kara * sync(2) will flush the whole buffer cache. No need to do 465810542c22SJan Kara * it here separately for each inode. 465910542c22SJan Kara */ 466010542c22SJan Kara if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync) 4661830156c7SFrank Mayhar sync_dirty_buffer(iloc.bh); 4662830156c7SFrank Mayhar if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) { 4663c398eda0STheodore Ts'o EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr, 4664c398eda0STheodore Ts'o "IO error syncing inode"); 4665830156c7SFrank Mayhar err = -EIO; 4666830156c7SFrank Mayhar } 4667fd2dd9fbSCurt Wohlgemuth brelse(iloc.bh); 466891ac6f43SFrank Mayhar } 466991ac6f43SFrank Mayhar return err; 4670ac27a0ecSDave Kleikamp } 4671ac27a0ecSDave Kleikamp 4672ac27a0ecSDave Kleikamp /* 467353e87268SJan Kara * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate 467453e87268SJan Kara * buffers that are attached to a page stradding i_size and are undergoing 467553e87268SJan Kara * commit. In that case we have to wait for commit to finish and try again. 467653e87268SJan Kara */ 467753e87268SJan Kara static void ext4_wait_for_tail_page_commit(struct inode *inode) 467853e87268SJan Kara { 467953e87268SJan Kara struct page *page; 468053e87268SJan Kara unsigned offset; 468153e87268SJan Kara journal_t *journal = EXT4_SB(inode->i_sb)->s_journal; 468253e87268SJan Kara tid_t commit_tid = 0; 468353e87268SJan Kara int ret; 468453e87268SJan Kara 468553e87268SJan Kara offset = inode->i_size & (PAGE_CACHE_SIZE - 1); 468653e87268SJan Kara /* 468753e87268SJan Kara * All buffers in the last page remain valid? Then there's nothing to 468853e87268SJan Kara * do. We do the check mainly to optimize the common PAGE_CACHE_SIZE == 468953e87268SJan Kara * blocksize case 469053e87268SJan Kara */ 469153e87268SJan Kara if (offset > PAGE_CACHE_SIZE - (1 << inode->i_blkbits)) 469253e87268SJan Kara return; 469353e87268SJan Kara while (1) { 469453e87268SJan Kara page = find_lock_page(inode->i_mapping, 469553e87268SJan Kara inode->i_size >> PAGE_CACHE_SHIFT); 469653e87268SJan Kara if (!page) 469753e87268SJan Kara return; 4698ca99fdd2SLukas Czerner ret = __ext4_journalled_invalidatepage(page, offset, 4699ca99fdd2SLukas Czerner PAGE_CACHE_SIZE - offset); 470053e87268SJan Kara unlock_page(page); 470153e87268SJan Kara page_cache_release(page); 470253e87268SJan Kara if (ret != -EBUSY) 470353e87268SJan Kara return; 470453e87268SJan Kara commit_tid = 0; 470553e87268SJan Kara read_lock(&journal->j_state_lock); 470653e87268SJan Kara if (journal->j_committing_transaction) 470753e87268SJan Kara commit_tid = journal->j_committing_transaction->t_tid; 470853e87268SJan Kara read_unlock(&journal->j_state_lock); 470953e87268SJan Kara if (commit_tid) 471053e87268SJan Kara jbd2_log_wait_commit(journal, commit_tid); 471153e87268SJan Kara } 471253e87268SJan Kara } 471353e87268SJan Kara 471453e87268SJan Kara /* 4715617ba13bSMingming Cao * ext4_setattr() 4716ac27a0ecSDave Kleikamp * 4717ac27a0ecSDave Kleikamp * Called from notify_change. 4718ac27a0ecSDave Kleikamp * 4719ac27a0ecSDave Kleikamp * We want to trap VFS attempts to truncate the file as soon as 4720ac27a0ecSDave Kleikamp * possible. In particular, we want to make sure that when the VFS 4721ac27a0ecSDave Kleikamp * shrinks i_size, we put the inode on the orphan list and modify 4722ac27a0ecSDave Kleikamp * i_disksize immediately, so that during the subsequent flushing of 4723ac27a0ecSDave Kleikamp * dirty pages and freeing of disk blocks, we can guarantee that any 4724ac27a0ecSDave Kleikamp * commit will leave the blocks being flushed in an unused state on 4725ac27a0ecSDave Kleikamp * disk. (On recovery, the inode will get truncated and the blocks will 4726ac27a0ecSDave Kleikamp * be freed, so we have a strong guarantee that no future commit will 4727ac27a0ecSDave Kleikamp * leave these blocks visible to the user.) 4728ac27a0ecSDave Kleikamp * 4729678aaf48SJan Kara * Another thing we have to assure is that if we are in ordered mode 4730678aaf48SJan Kara * and inode is still attached to the committing transaction, we must 4731678aaf48SJan Kara * we start writeout of all the dirty pages which are being truncated. 4732678aaf48SJan Kara * This way we are sure that all the data written in the previous 4733678aaf48SJan Kara * transaction are already on disk (truncate waits for pages under 4734678aaf48SJan Kara * writeback). 4735678aaf48SJan Kara * 4736678aaf48SJan Kara * Called with inode->i_mutex down. 4737ac27a0ecSDave Kleikamp */ 4738617ba13bSMingming Cao int ext4_setattr(struct dentry *dentry, struct iattr *attr) 4739ac27a0ecSDave Kleikamp { 47402b0143b5SDavid Howells struct inode *inode = d_inode(dentry); 4741ac27a0ecSDave Kleikamp int error, rc = 0; 47423d287de3SDmitry Monakhov int orphan = 0; 4743ac27a0ecSDave Kleikamp const unsigned int ia_valid = attr->ia_valid; 4744ac27a0ecSDave Kleikamp 4745ac27a0ecSDave Kleikamp error = inode_change_ok(inode, attr); 4746ac27a0ecSDave Kleikamp if (error) 4747ac27a0ecSDave Kleikamp return error; 4748ac27a0ecSDave Kleikamp 4749a7cdadeeSJan Kara if (is_quota_modification(inode, attr)) { 4750a7cdadeeSJan Kara error = dquot_initialize(inode); 4751a7cdadeeSJan Kara if (error) 4752a7cdadeeSJan Kara return error; 4753a7cdadeeSJan Kara } 475408cefc7aSEric W. Biederman if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) || 475508cefc7aSEric W. Biederman (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) { 4756ac27a0ecSDave Kleikamp handle_t *handle; 4757ac27a0ecSDave Kleikamp 4758ac27a0ecSDave Kleikamp /* (user+group)*(old+new) structure, inode write (sb, 4759ac27a0ecSDave Kleikamp * inode block, ? - but truncate inode update has it) */ 47609924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_QUOTA, 47619924a92aSTheodore Ts'o (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) + 4762194074acSDmitry Monakhov EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3); 4763ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 4764ac27a0ecSDave Kleikamp error = PTR_ERR(handle); 4765ac27a0ecSDave Kleikamp goto err_out; 4766ac27a0ecSDave Kleikamp } 4767b43fa828SChristoph Hellwig error = dquot_transfer(inode, attr); 4768ac27a0ecSDave Kleikamp if (error) { 4769617ba13bSMingming Cao ext4_journal_stop(handle); 4770ac27a0ecSDave Kleikamp return error; 4771ac27a0ecSDave Kleikamp } 4772ac27a0ecSDave Kleikamp /* Update corresponding info in inode so that everything is in 4773ac27a0ecSDave Kleikamp * one transaction */ 4774ac27a0ecSDave Kleikamp if (attr->ia_valid & ATTR_UID) 4775ac27a0ecSDave Kleikamp inode->i_uid = attr->ia_uid; 4776ac27a0ecSDave Kleikamp if (attr->ia_valid & ATTR_GID) 4777ac27a0ecSDave Kleikamp inode->i_gid = attr->ia_gid; 4778617ba13bSMingming Cao error = ext4_mark_inode_dirty(handle, inode); 4779617ba13bSMingming Cao ext4_journal_stop(handle); 4780ac27a0ecSDave Kleikamp } 4781ac27a0ecSDave Kleikamp 47823da40c7bSJosef Bacik if (attr->ia_valid & ATTR_SIZE) { 47835208386cSJan Kara handle_t *handle; 47843da40c7bSJosef Bacik loff_t oldsize = inode->i_size; 47853da40c7bSJosef Bacik int shrink = (attr->ia_size <= inode->i_size); 4786562c72aaSChristoph Hellwig 478712e9b892SDmitry Monakhov if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) { 4788e2b46574SEric Sandeen struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 4789e2b46574SEric Sandeen 47900c095c7fSTheodore Ts'o if (attr->ia_size > sbi->s_bitmap_maxbytes) 47910c095c7fSTheodore Ts'o return -EFBIG; 4792e2b46574SEric Sandeen } 47933da40c7bSJosef Bacik if (!S_ISREG(inode->i_mode)) 47943da40c7bSJosef Bacik return -EINVAL; 4795dff6efc3SChristoph Hellwig 4796dff6efc3SChristoph Hellwig if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size) 4797dff6efc3SChristoph Hellwig inode_inc_iversion(inode); 4798dff6efc3SChristoph Hellwig 47993da40c7bSJosef Bacik if (ext4_should_order_data(inode) && 4800072bd7eaSTheodore Ts'o (attr->ia_size < inode->i_size)) { 48015208386cSJan Kara error = ext4_begin_ordered_truncate(inode, 48025208386cSJan Kara attr->ia_size); 48035208386cSJan Kara if (error) 48045208386cSJan Kara goto err_out; 48055208386cSJan Kara } 48063da40c7bSJosef Bacik if (attr->ia_size != inode->i_size) { 48079924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 3); 4808ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 4809ac27a0ecSDave Kleikamp error = PTR_ERR(handle); 4810ac27a0ecSDave Kleikamp goto err_out; 4811ac27a0ecSDave Kleikamp } 48123da40c7bSJosef Bacik if (ext4_handle_valid(handle) && shrink) { 4813617ba13bSMingming Cao error = ext4_orphan_add(handle, inode); 48143d287de3SDmitry Monakhov orphan = 1; 48153d287de3SDmitry Monakhov } 4816911af577SEryu Guan /* 4817911af577SEryu Guan * Update c/mtime on truncate up, ext4_truncate() will 4818911af577SEryu Guan * update c/mtime in shrink case below 4819911af577SEryu Guan */ 4820911af577SEryu Guan if (!shrink) { 4821911af577SEryu Guan inode->i_mtime = ext4_current_time(inode); 4822911af577SEryu Guan inode->i_ctime = inode->i_mtime; 4823911af577SEryu Guan } 482490e775b7SJan Kara down_write(&EXT4_I(inode)->i_data_sem); 4825617ba13bSMingming Cao EXT4_I(inode)->i_disksize = attr->ia_size; 4826617ba13bSMingming Cao rc = ext4_mark_inode_dirty(handle, inode); 4827ac27a0ecSDave Kleikamp if (!error) 4828ac27a0ecSDave Kleikamp error = rc; 482990e775b7SJan Kara /* 483090e775b7SJan Kara * We have to update i_size under i_data_sem together 483190e775b7SJan Kara * with i_disksize to avoid races with writeback code 483290e775b7SJan Kara * running ext4_wb_update_i_disksize(). 483390e775b7SJan Kara */ 483490e775b7SJan Kara if (!error) 483590e775b7SJan Kara i_size_write(inode, attr->ia_size); 483690e775b7SJan Kara up_write(&EXT4_I(inode)->i_data_sem); 4837617ba13bSMingming Cao ext4_journal_stop(handle); 4838678aaf48SJan Kara if (error) { 48393da40c7bSJosef Bacik if (orphan) 4840678aaf48SJan Kara ext4_orphan_del(NULL, inode); 4841678aaf48SJan Kara goto err_out; 4842678aaf48SJan Kara } 4843d6320cbfSJan Kara } 48443da40c7bSJosef Bacik if (!shrink) 48453da40c7bSJosef Bacik pagecache_isize_extended(inode, oldsize, inode->i_size); 484690e775b7SJan Kara 484753e87268SJan Kara /* 484853e87268SJan Kara * Blocks are going to be removed from the inode. Wait 484953e87268SJan Kara * for dio in flight. Temporarily disable 485053e87268SJan Kara * dioread_nolock to prevent livelock. 485153e87268SJan Kara */ 48521b65007eSDmitry Monakhov if (orphan) { 485353e87268SJan Kara if (!ext4_should_journal_data(inode)) { 48541b65007eSDmitry Monakhov ext4_inode_block_unlocked_dio(inode); 48551c9114f9SDmitry Monakhov inode_dio_wait(inode); 48561b65007eSDmitry Monakhov ext4_inode_resume_unlocked_dio(inode); 485753e87268SJan Kara } else 485853e87268SJan Kara ext4_wait_for_tail_page_commit(inode); 48591b65007eSDmitry Monakhov } 4860ea3d7209SJan Kara down_write(&EXT4_I(inode)->i_mmap_sem); 486153e87268SJan Kara /* 486253e87268SJan Kara * Truncate pagecache after we've waited for commit 486353e87268SJan Kara * in data=journal mode to make pages freeable. 486453e87268SJan Kara */ 48657caef267SKirill A. Shutemov truncate_pagecache(inode, inode->i_size); 48663da40c7bSJosef Bacik if (shrink) 4867072bd7eaSTheodore Ts'o ext4_truncate(inode); 4868ea3d7209SJan Kara up_write(&EXT4_I(inode)->i_mmap_sem); 48693da40c7bSJosef Bacik } 4870ac27a0ecSDave Kleikamp 48711025774cSChristoph Hellwig if (!rc) { 48721025774cSChristoph Hellwig setattr_copy(inode, attr); 48731025774cSChristoph Hellwig mark_inode_dirty(inode); 48741025774cSChristoph Hellwig } 48751025774cSChristoph Hellwig 48761025774cSChristoph Hellwig /* 48771025774cSChristoph Hellwig * If the call to ext4_truncate failed to get a transaction handle at 48781025774cSChristoph Hellwig * all, we need to clean up the in-core orphan list manually. 48791025774cSChristoph Hellwig */ 48803d287de3SDmitry Monakhov if (orphan && inode->i_nlink) 4881617ba13bSMingming Cao ext4_orphan_del(NULL, inode); 4882ac27a0ecSDave Kleikamp 4883ac27a0ecSDave Kleikamp if (!rc && (ia_valid & ATTR_MODE)) 488464e178a7SChristoph Hellwig rc = posix_acl_chmod(inode, inode->i_mode); 4885ac27a0ecSDave Kleikamp 4886ac27a0ecSDave Kleikamp err_out: 4887617ba13bSMingming Cao ext4_std_error(inode->i_sb, error); 4888ac27a0ecSDave Kleikamp if (!error) 4889ac27a0ecSDave Kleikamp error = rc; 4890ac27a0ecSDave Kleikamp return error; 4891ac27a0ecSDave Kleikamp } 4892ac27a0ecSDave Kleikamp 48933e3398a0SMingming Cao int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry, 48943e3398a0SMingming Cao struct kstat *stat) 48953e3398a0SMingming Cao { 48963e3398a0SMingming Cao struct inode *inode; 48978af8eeccSJan Kara unsigned long long delalloc_blocks; 48983e3398a0SMingming Cao 48992b0143b5SDavid Howells inode = d_inode(dentry); 49003e3398a0SMingming Cao generic_fillattr(inode, stat); 49013e3398a0SMingming Cao 49023e3398a0SMingming Cao /* 49039206c561SAndreas Dilger * If there is inline data in the inode, the inode will normally not 49049206c561SAndreas Dilger * have data blocks allocated (it may have an external xattr block). 49059206c561SAndreas Dilger * Report at least one sector for such files, so tools like tar, rsync, 49069206c561SAndreas Dilger * others doen't incorrectly think the file is completely sparse. 49079206c561SAndreas Dilger */ 49089206c561SAndreas Dilger if (unlikely(ext4_has_inline_data(inode))) 49099206c561SAndreas Dilger stat->blocks += (stat->size + 511) >> 9; 49109206c561SAndreas Dilger 49119206c561SAndreas Dilger /* 49123e3398a0SMingming Cao * We can't update i_blocks if the block allocation is delayed 49133e3398a0SMingming Cao * otherwise in the case of system crash before the real block 49143e3398a0SMingming Cao * allocation is done, we will have i_blocks inconsistent with 49153e3398a0SMingming Cao * on-disk file blocks. 49163e3398a0SMingming Cao * We always keep i_blocks updated together with real 49173e3398a0SMingming Cao * allocation. But to not confuse with user, stat 49183e3398a0SMingming Cao * will return the blocks that include the delayed allocation 49193e3398a0SMingming Cao * blocks for this file. 49203e3398a0SMingming Cao */ 492196607551STao Ma delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb), 492296607551STao Ma EXT4_I(inode)->i_reserved_data_blocks); 49238af8eeccSJan Kara stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9); 49243e3398a0SMingming Cao return 0; 49253e3398a0SMingming Cao } 4926ac27a0ecSDave Kleikamp 4927fffb2739SJan Kara static int ext4_index_trans_blocks(struct inode *inode, int lblocks, 4928fffb2739SJan Kara int pextents) 4929a02908f1SMingming Cao { 493012e9b892SDmitry Monakhov if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) 4931fffb2739SJan Kara return ext4_ind_trans_blocks(inode, lblocks); 4932fffb2739SJan Kara return ext4_ext_index_trans_blocks(inode, pextents); 4933a02908f1SMingming Cao } 4934ac51d837STheodore Ts'o 4935a02908f1SMingming Cao /* 4936a02908f1SMingming Cao * Account for index blocks, block groups bitmaps and block group 4937a02908f1SMingming Cao * descriptor blocks if modify datablocks and index blocks 4938a02908f1SMingming Cao * worse case, the indexs blocks spread over different block groups 4939a02908f1SMingming Cao * 4940a02908f1SMingming Cao * If datablocks are discontiguous, they are possible to spread over 49414907cb7bSAnatol Pomozov * different block groups too. If they are contiguous, with flexbg, 4942a02908f1SMingming Cao * they could still across block group boundary. 4943a02908f1SMingming Cao * 4944a02908f1SMingming Cao * Also account for superblock, inode, quota and xattr blocks 4945a02908f1SMingming Cao */ 4946fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks, 4947fffb2739SJan Kara int pextents) 4948a02908f1SMingming Cao { 49498df9675fSTheodore Ts'o ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb); 49508df9675fSTheodore Ts'o int gdpblocks; 4951a02908f1SMingming Cao int idxblocks; 4952a02908f1SMingming Cao int ret = 0; 4953a02908f1SMingming Cao 4954a02908f1SMingming Cao /* 4955fffb2739SJan Kara * How many index blocks need to touch to map @lblocks logical blocks 4956fffb2739SJan Kara * to @pextents physical extents? 4957a02908f1SMingming Cao */ 4958fffb2739SJan Kara idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents); 4959a02908f1SMingming Cao 4960a02908f1SMingming Cao ret = idxblocks; 4961a02908f1SMingming Cao 4962a02908f1SMingming Cao /* 4963a02908f1SMingming Cao * Now let's see how many group bitmaps and group descriptors need 4964a02908f1SMingming Cao * to account 4965a02908f1SMingming Cao */ 4966fffb2739SJan Kara groups = idxblocks + pextents; 4967a02908f1SMingming Cao gdpblocks = groups; 49688df9675fSTheodore Ts'o if (groups > ngroups) 49698df9675fSTheodore Ts'o groups = ngroups; 4970a02908f1SMingming Cao if (groups > EXT4_SB(inode->i_sb)->s_gdb_count) 4971a02908f1SMingming Cao gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count; 4972a02908f1SMingming Cao 4973a02908f1SMingming Cao /* bitmaps and block group descriptor blocks */ 4974a02908f1SMingming Cao ret += groups + gdpblocks; 4975a02908f1SMingming Cao 4976a02908f1SMingming Cao /* Blocks for super block, inode, quota and xattr blocks */ 4977a02908f1SMingming Cao ret += EXT4_META_TRANS_BLOCKS(inode->i_sb); 4978ac27a0ecSDave Kleikamp 4979ac27a0ecSDave Kleikamp return ret; 4980ac27a0ecSDave Kleikamp } 4981ac27a0ecSDave Kleikamp 4982ac27a0ecSDave Kleikamp /* 498325985edcSLucas De Marchi * Calculate the total number of credits to reserve to fit 4984f3bd1f3fSMingming Cao * the modification of a single pages into a single transaction, 4985f3bd1f3fSMingming Cao * which may include multiple chunks of block allocations. 4986a02908f1SMingming Cao * 4987525f4ed8SMingming Cao * This could be called via ext4_write_begin() 4988a02908f1SMingming Cao * 4989525f4ed8SMingming Cao * We need to consider the worse case, when 4990a02908f1SMingming Cao * one new block per extent. 4991a02908f1SMingming Cao */ 4992a02908f1SMingming Cao int ext4_writepage_trans_blocks(struct inode *inode) 4993a02908f1SMingming Cao { 4994a02908f1SMingming Cao int bpp = ext4_journal_blocks_per_page(inode); 4995a02908f1SMingming Cao int ret; 4996a02908f1SMingming Cao 4997fffb2739SJan Kara ret = ext4_meta_trans_blocks(inode, bpp, bpp); 4998a02908f1SMingming Cao 4999a02908f1SMingming Cao /* Account for data blocks for journalled mode */ 5000a02908f1SMingming Cao if (ext4_should_journal_data(inode)) 5001a02908f1SMingming Cao ret += bpp; 5002a02908f1SMingming Cao return ret; 5003a02908f1SMingming Cao } 5004f3bd1f3fSMingming Cao 5005f3bd1f3fSMingming Cao /* 5006f3bd1f3fSMingming Cao * Calculate the journal credits for a chunk of data modification. 5007f3bd1f3fSMingming Cao * 5008f3bd1f3fSMingming Cao * This is called from DIO, fallocate or whoever calling 500979e83036SEric Sandeen * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks. 5010f3bd1f3fSMingming Cao * 5011f3bd1f3fSMingming Cao * journal buffers for data blocks are not included here, as DIO 5012f3bd1f3fSMingming Cao * and fallocate do no need to journal data buffers. 5013f3bd1f3fSMingming Cao */ 5014f3bd1f3fSMingming Cao int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks) 5015f3bd1f3fSMingming Cao { 5016f3bd1f3fSMingming Cao return ext4_meta_trans_blocks(inode, nrblocks, 1); 5017f3bd1f3fSMingming Cao } 5018f3bd1f3fSMingming Cao 5019a02908f1SMingming Cao /* 5020617ba13bSMingming Cao * The caller must have previously called ext4_reserve_inode_write(). 5021ac27a0ecSDave Kleikamp * Give this, we know that the caller already has write access to iloc->bh. 5022ac27a0ecSDave Kleikamp */ 5023617ba13bSMingming Cao int ext4_mark_iloc_dirty(handle_t *handle, 5024617ba13bSMingming Cao struct inode *inode, struct ext4_iloc *iloc) 5025ac27a0ecSDave Kleikamp { 5026ac27a0ecSDave Kleikamp int err = 0; 5027ac27a0ecSDave Kleikamp 5028c64db50eSTheodore Ts'o if (IS_I_VERSION(inode)) 502925ec56b5SJean Noel Cordenner inode_inc_iversion(inode); 503025ec56b5SJean Noel Cordenner 5031ac27a0ecSDave Kleikamp /* the do_update_inode consumes one bh->b_count */ 5032ac27a0ecSDave Kleikamp get_bh(iloc->bh); 5033ac27a0ecSDave Kleikamp 5034dab291afSMingming Cao /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */ 5035830156c7SFrank Mayhar err = ext4_do_update_inode(handle, inode, iloc); 5036ac27a0ecSDave Kleikamp put_bh(iloc->bh); 5037ac27a0ecSDave Kleikamp return err; 5038ac27a0ecSDave Kleikamp } 5039ac27a0ecSDave Kleikamp 5040ac27a0ecSDave Kleikamp /* 5041ac27a0ecSDave Kleikamp * On success, We end up with an outstanding reference count against 5042ac27a0ecSDave Kleikamp * iloc->bh. This _must_ be cleaned up later. 5043ac27a0ecSDave Kleikamp */ 5044ac27a0ecSDave Kleikamp 5045ac27a0ecSDave Kleikamp int 5046617ba13bSMingming Cao ext4_reserve_inode_write(handle_t *handle, struct inode *inode, 5047617ba13bSMingming Cao struct ext4_iloc *iloc) 5048ac27a0ecSDave Kleikamp { 50490390131bSFrank Mayhar int err; 50500390131bSFrank Mayhar 5051617ba13bSMingming Cao err = ext4_get_inode_loc(inode, iloc); 5052ac27a0ecSDave Kleikamp if (!err) { 5053ac27a0ecSDave Kleikamp BUFFER_TRACE(iloc->bh, "get_write_access"); 5054617ba13bSMingming Cao err = ext4_journal_get_write_access(handle, iloc->bh); 5055ac27a0ecSDave Kleikamp if (err) { 5056ac27a0ecSDave Kleikamp brelse(iloc->bh); 5057ac27a0ecSDave Kleikamp iloc->bh = NULL; 5058ac27a0ecSDave Kleikamp } 5059ac27a0ecSDave Kleikamp } 5060617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 5061ac27a0ecSDave Kleikamp return err; 5062ac27a0ecSDave Kleikamp } 5063ac27a0ecSDave Kleikamp 5064ac27a0ecSDave Kleikamp /* 50656dd4ee7cSKalpak Shah * Expand an inode by new_extra_isize bytes. 50666dd4ee7cSKalpak Shah * Returns 0 on success or negative error number on failure. 50676dd4ee7cSKalpak Shah */ 50681d03ec98SAneesh Kumar K.V static int ext4_expand_extra_isize(struct inode *inode, 50691d03ec98SAneesh Kumar K.V unsigned int new_extra_isize, 50701d03ec98SAneesh Kumar K.V struct ext4_iloc iloc, 50711d03ec98SAneesh Kumar K.V handle_t *handle) 50726dd4ee7cSKalpak Shah { 50736dd4ee7cSKalpak Shah struct ext4_inode *raw_inode; 50746dd4ee7cSKalpak Shah struct ext4_xattr_ibody_header *header; 50756dd4ee7cSKalpak Shah 50766dd4ee7cSKalpak Shah if (EXT4_I(inode)->i_extra_isize >= new_extra_isize) 50776dd4ee7cSKalpak Shah return 0; 50786dd4ee7cSKalpak Shah 50796dd4ee7cSKalpak Shah raw_inode = ext4_raw_inode(&iloc); 50806dd4ee7cSKalpak Shah 50816dd4ee7cSKalpak Shah header = IHDR(inode, raw_inode); 50826dd4ee7cSKalpak Shah 50836dd4ee7cSKalpak Shah /* No extended attributes present */ 508419f5fb7aSTheodore Ts'o if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) || 50856dd4ee7cSKalpak Shah header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) { 50866dd4ee7cSKalpak Shah memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0, 50876dd4ee7cSKalpak Shah new_extra_isize); 50886dd4ee7cSKalpak Shah EXT4_I(inode)->i_extra_isize = new_extra_isize; 50896dd4ee7cSKalpak Shah return 0; 50906dd4ee7cSKalpak Shah } 50916dd4ee7cSKalpak Shah 50926dd4ee7cSKalpak Shah /* try to expand with EAs present */ 50936dd4ee7cSKalpak Shah return ext4_expand_extra_isize_ea(inode, new_extra_isize, 50946dd4ee7cSKalpak Shah raw_inode, handle); 50956dd4ee7cSKalpak Shah } 50966dd4ee7cSKalpak Shah 50976dd4ee7cSKalpak Shah /* 5098ac27a0ecSDave Kleikamp * What we do here is to mark the in-core inode as clean with respect to inode 5099ac27a0ecSDave Kleikamp * dirtiness (it may still be data-dirty). 5100ac27a0ecSDave Kleikamp * This means that the in-core inode may be reaped by prune_icache 5101ac27a0ecSDave Kleikamp * without having to perform any I/O. This is a very good thing, 5102ac27a0ecSDave Kleikamp * because *any* task may call prune_icache - even ones which 5103ac27a0ecSDave Kleikamp * have a transaction open against a different journal. 5104ac27a0ecSDave Kleikamp * 5105ac27a0ecSDave Kleikamp * Is this cheating? Not really. Sure, we haven't written the 5106ac27a0ecSDave Kleikamp * inode out, but prune_icache isn't a user-visible syncing function. 5107ac27a0ecSDave Kleikamp * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync) 5108ac27a0ecSDave Kleikamp * we start and wait on commits. 5109ac27a0ecSDave Kleikamp */ 5110617ba13bSMingming Cao int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode) 5111ac27a0ecSDave Kleikamp { 5112617ba13bSMingming Cao struct ext4_iloc iloc; 51136dd4ee7cSKalpak Shah struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 51146dd4ee7cSKalpak Shah static unsigned int mnt_count; 51156dd4ee7cSKalpak Shah int err, ret; 5116ac27a0ecSDave Kleikamp 5117ac27a0ecSDave Kleikamp might_sleep(); 51187ff9c073STheodore Ts'o trace_ext4_mark_inode_dirty(inode, _RET_IP_); 5119617ba13bSMingming Cao err = ext4_reserve_inode_write(handle, inode, &iloc); 51200390131bSFrank Mayhar if (ext4_handle_valid(handle) && 51210390131bSFrank Mayhar EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize && 512219f5fb7aSTheodore Ts'o !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) { 51236dd4ee7cSKalpak Shah /* 51246dd4ee7cSKalpak Shah * We need extra buffer credits since we may write into EA block 51256dd4ee7cSKalpak Shah * with this same handle. If journal_extend fails, then it will 51266dd4ee7cSKalpak Shah * only result in a minor loss of functionality for that inode. 51276dd4ee7cSKalpak Shah * If this is felt to be critical, then e2fsck should be run to 51286dd4ee7cSKalpak Shah * force a large enough s_min_extra_isize. 51296dd4ee7cSKalpak Shah */ 51306dd4ee7cSKalpak Shah if ((jbd2_journal_extend(handle, 51316dd4ee7cSKalpak Shah EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) { 51326dd4ee7cSKalpak Shah ret = ext4_expand_extra_isize(inode, 51336dd4ee7cSKalpak Shah sbi->s_want_extra_isize, 51346dd4ee7cSKalpak Shah iloc, handle); 51356dd4ee7cSKalpak Shah if (ret) { 513619f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, 513719f5fb7aSTheodore Ts'o EXT4_STATE_NO_EXPAND); 5138c1bddad9SAneesh Kumar K.V if (mnt_count != 5139c1bddad9SAneesh Kumar K.V le16_to_cpu(sbi->s_es->s_mnt_count)) { 514012062dddSEric Sandeen ext4_warning(inode->i_sb, 51416dd4ee7cSKalpak Shah "Unable to expand inode %lu. Delete" 51426dd4ee7cSKalpak Shah " some EAs or run e2fsck.", 51436dd4ee7cSKalpak Shah inode->i_ino); 5144c1bddad9SAneesh Kumar K.V mnt_count = 5145c1bddad9SAneesh Kumar K.V le16_to_cpu(sbi->s_es->s_mnt_count); 51466dd4ee7cSKalpak Shah } 51476dd4ee7cSKalpak Shah } 51486dd4ee7cSKalpak Shah } 51496dd4ee7cSKalpak Shah } 5150ac27a0ecSDave Kleikamp if (!err) 5151617ba13bSMingming Cao err = ext4_mark_iloc_dirty(handle, inode, &iloc); 5152ac27a0ecSDave Kleikamp return err; 5153ac27a0ecSDave Kleikamp } 5154ac27a0ecSDave Kleikamp 5155ac27a0ecSDave Kleikamp /* 5156617ba13bSMingming Cao * ext4_dirty_inode() is called from __mark_inode_dirty() 5157ac27a0ecSDave Kleikamp * 5158ac27a0ecSDave Kleikamp * We're really interested in the case where a file is being extended. 5159ac27a0ecSDave Kleikamp * i_size has been changed by generic_commit_write() and we thus need 5160ac27a0ecSDave Kleikamp * to include the updated inode in the current transaction. 5161ac27a0ecSDave Kleikamp * 51625dd4056dSChristoph Hellwig * Also, dquot_alloc_block() will always dirty the inode when blocks 5163ac27a0ecSDave Kleikamp * are allocated to the file. 5164ac27a0ecSDave Kleikamp * 5165ac27a0ecSDave Kleikamp * If the inode is marked synchronous, we don't honour that here - doing 5166ac27a0ecSDave Kleikamp * so would cause a commit on atime updates, which we don't bother doing. 5167ac27a0ecSDave Kleikamp * We handle synchronous inodes at the highest possible level. 51680ae45f63STheodore Ts'o * 51690ae45f63STheodore Ts'o * If only the I_DIRTY_TIME flag is set, we can skip everything. If 51700ae45f63STheodore Ts'o * I_DIRTY_TIME and I_DIRTY_SYNC is set, the only inode fields we need 51710ae45f63STheodore Ts'o * to copy into the on-disk inode structure are the timestamp files. 5172ac27a0ecSDave Kleikamp */ 5173aa385729SChristoph Hellwig void ext4_dirty_inode(struct inode *inode, int flags) 5174ac27a0ecSDave Kleikamp { 5175ac27a0ecSDave Kleikamp handle_t *handle; 5176ac27a0ecSDave Kleikamp 51770ae45f63STheodore Ts'o if (flags == I_DIRTY_TIME) 51780ae45f63STheodore Ts'o return; 51799924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 2); 5180ac27a0ecSDave Kleikamp if (IS_ERR(handle)) 5181ac27a0ecSDave Kleikamp goto out; 5182f3dc272fSCurt Wohlgemuth 5183617ba13bSMingming Cao ext4_mark_inode_dirty(handle, inode); 5184f3dc272fSCurt Wohlgemuth 5185617ba13bSMingming Cao ext4_journal_stop(handle); 5186ac27a0ecSDave Kleikamp out: 5187ac27a0ecSDave Kleikamp return; 5188ac27a0ecSDave Kleikamp } 5189ac27a0ecSDave Kleikamp 5190ac27a0ecSDave Kleikamp #if 0 5191ac27a0ecSDave Kleikamp /* 5192ac27a0ecSDave Kleikamp * Bind an inode's backing buffer_head into this transaction, to prevent 5193ac27a0ecSDave Kleikamp * it from being flushed to disk early. Unlike 5194617ba13bSMingming Cao * ext4_reserve_inode_write, this leaves behind no bh reference and 5195ac27a0ecSDave Kleikamp * returns no iloc structure, so the caller needs to repeat the iloc 5196ac27a0ecSDave Kleikamp * lookup to mark the inode dirty later. 5197ac27a0ecSDave Kleikamp */ 5198617ba13bSMingming Cao static int ext4_pin_inode(handle_t *handle, struct inode *inode) 5199ac27a0ecSDave Kleikamp { 5200617ba13bSMingming Cao struct ext4_iloc iloc; 5201ac27a0ecSDave Kleikamp 5202ac27a0ecSDave Kleikamp int err = 0; 5203ac27a0ecSDave Kleikamp if (handle) { 5204617ba13bSMingming Cao err = ext4_get_inode_loc(inode, &iloc); 5205ac27a0ecSDave Kleikamp if (!err) { 5206ac27a0ecSDave Kleikamp BUFFER_TRACE(iloc.bh, "get_write_access"); 5207dab291afSMingming Cao err = jbd2_journal_get_write_access(handle, iloc.bh); 5208ac27a0ecSDave Kleikamp if (!err) 52090390131bSFrank Mayhar err = ext4_handle_dirty_metadata(handle, 521073b50c1cSCurt Wohlgemuth NULL, 5211ac27a0ecSDave Kleikamp iloc.bh); 5212ac27a0ecSDave Kleikamp brelse(iloc.bh); 5213ac27a0ecSDave Kleikamp } 5214ac27a0ecSDave Kleikamp } 5215617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 5216ac27a0ecSDave Kleikamp return err; 5217ac27a0ecSDave Kleikamp } 5218ac27a0ecSDave Kleikamp #endif 5219ac27a0ecSDave Kleikamp 5220617ba13bSMingming Cao int ext4_change_inode_journal_flag(struct inode *inode, int val) 5221ac27a0ecSDave Kleikamp { 5222ac27a0ecSDave Kleikamp journal_t *journal; 5223ac27a0ecSDave Kleikamp handle_t *handle; 5224ac27a0ecSDave Kleikamp int err; 5225ac27a0ecSDave Kleikamp 5226ac27a0ecSDave Kleikamp /* 5227ac27a0ecSDave Kleikamp * We have to be very careful here: changing a data block's 5228ac27a0ecSDave Kleikamp * journaling status dynamically is dangerous. If we write a 5229ac27a0ecSDave Kleikamp * data block to the journal, change the status and then delete 5230ac27a0ecSDave Kleikamp * that block, we risk forgetting to revoke the old log record 5231ac27a0ecSDave Kleikamp * from the journal and so a subsequent replay can corrupt data. 5232ac27a0ecSDave Kleikamp * So, first we make sure that the journal is empty and that 5233ac27a0ecSDave Kleikamp * nobody is changing anything. 5234ac27a0ecSDave Kleikamp */ 5235ac27a0ecSDave Kleikamp 5236617ba13bSMingming Cao journal = EXT4_JOURNAL(inode); 52370390131bSFrank Mayhar if (!journal) 52380390131bSFrank Mayhar return 0; 5239d699594dSDave Hansen if (is_journal_aborted(journal)) 5240ac27a0ecSDave Kleikamp return -EROFS; 52412aff57b0SYongqiang Yang /* We have to allocate physical blocks for delalloc blocks 52422aff57b0SYongqiang Yang * before flushing journal. otherwise delalloc blocks can not 52432aff57b0SYongqiang Yang * be allocated any more. even more truncate on delalloc blocks 52442aff57b0SYongqiang Yang * could trigger BUG by flushing delalloc blocks in journal. 52452aff57b0SYongqiang Yang * There is no delalloc block in non-journal data mode. 52462aff57b0SYongqiang Yang */ 52472aff57b0SYongqiang Yang if (val && test_opt(inode->i_sb, DELALLOC)) { 52482aff57b0SYongqiang Yang err = ext4_alloc_da_blocks(inode); 52492aff57b0SYongqiang Yang if (err < 0) 52502aff57b0SYongqiang Yang return err; 52512aff57b0SYongqiang Yang } 5252ac27a0ecSDave Kleikamp 525317335dccSDmitry Monakhov /* Wait for all existing dio workers */ 525417335dccSDmitry Monakhov ext4_inode_block_unlocked_dio(inode); 525517335dccSDmitry Monakhov inode_dio_wait(inode); 525617335dccSDmitry Monakhov 5257dab291afSMingming Cao jbd2_journal_lock_updates(journal); 5258ac27a0ecSDave Kleikamp 5259ac27a0ecSDave Kleikamp /* 5260ac27a0ecSDave Kleikamp * OK, there are no updates running now, and all cached data is 5261ac27a0ecSDave Kleikamp * synced to disk. We are now in a completely consistent state 5262ac27a0ecSDave Kleikamp * which doesn't have anything in the journal, and we know that 5263ac27a0ecSDave Kleikamp * no filesystem updates are running, so it is safe to modify 5264ac27a0ecSDave Kleikamp * the inode's in-core data-journaling state flag now. 5265ac27a0ecSDave Kleikamp */ 5266ac27a0ecSDave Kleikamp 5267ac27a0ecSDave Kleikamp if (val) 526812e9b892SDmitry Monakhov ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA); 52695872ddaaSYongqiang Yang else { 52704f879ca6SJan Kara err = jbd2_journal_flush(journal); 52714f879ca6SJan Kara if (err < 0) { 52724f879ca6SJan Kara jbd2_journal_unlock_updates(journal); 52734f879ca6SJan Kara ext4_inode_resume_unlocked_dio(inode); 52744f879ca6SJan Kara return err; 52754f879ca6SJan Kara } 527612e9b892SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA); 52775872ddaaSYongqiang Yang } 5278617ba13bSMingming Cao ext4_set_aops(inode); 5279ac27a0ecSDave Kleikamp 5280dab291afSMingming Cao jbd2_journal_unlock_updates(journal); 528117335dccSDmitry Monakhov ext4_inode_resume_unlocked_dio(inode); 5282ac27a0ecSDave Kleikamp 5283ac27a0ecSDave Kleikamp /* Finally we can mark the inode as dirty. */ 5284ac27a0ecSDave Kleikamp 52859924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 1); 5286ac27a0ecSDave Kleikamp if (IS_ERR(handle)) 5287ac27a0ecSDave Kleikamp return PTR_ERR(handle); 5288ac27a0ecSDave Kleikamp 5289617ba13bSMingming Cao err = ext4_mark_inode_dirty(handle, inode); 52900390131bSFrank Mayhar ext4_handle_sync(handle); 5291617ba13bSMingming Cao ext4_journal_stop(handle); 5292617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 5293ac27a0ecSDave Kleikamp 5294ac27a0ecSDave Kleikamp return err; 5295ac27a0ecSDave Kleikamp } 52962e9ee850SAneesh Kumar K.V 52972e9ee850SAneesh Kumar K.V static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh) 52982e9ee850SAneesh Kumar K.V { 52992e9ee850SAneesh Kumar K.V return !buffer_mapped(bh); 53002e9ee850SAneesh Kumar K.V } 53012e9ee850SAneesh Kumar K.V 5302c2ec175cSNick Piggin int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf) 53032e9ee850SAneesh Kumar K.V { 5304c2ec175cSNick Piggin struct page *page = vmf->page; 53052e9ee850SAneesh Kumar K.V loff_t size; 53062e9ee850SAneesh Kumar K.V unsigned long len; 53079ea7df53SJan Kara int ret; 53082e9ee850SAneesh Kumar K.V struct file *file = vma->vm_file; 5309496ad9aaSAl Viro struct inode *inode = file_inode(file); 53102e9ee850SAneesh Kumar K.V struct address_space *mapping = inode->i_mapping; 53119ea7df53SJan Kara handle_t *handle; 53129ea7df53SJan Kara get_block_t *get_block; 53139ea7df53SJan Kara int retries = 0; 53142e9ee850SAneesh Kumar K.V 53158e8ad8a5SJan Kara sb_start_pagefault(inode->i_sb); 5316041bbb6dSTheodore Ts'o file_update_time(vma->vm_file); 5317ea3d7209SJan Kara 5318ea3d7209SJan Kara down_read(&EXT4_I(inode)->i_mmap_sem); 53199ea7df53SJan Kara /* Delalloc case is easy... */ 53209ea7df53SJan Kara if (test_opt(inode->i_sb, DELALLOC) && 53219ea7df53SJan Kara !ext4_should_journal_data(inode) && 53229ea7df53SJan Kara !ext4_nonda_switch(inode->i_sb)) { 53239ea7df53SJan Kara do { 53245c500029SRoss Zwisler ret = block_page_mkwrite(vma, vmf, 53259ea7df53SJan Kara ext4_da_get_block_prep); 53269ea7df53SJan Kara } while (ret == -ENOSPC && 53279ea7df53SJan Kara ext4_should_retry_alloc(inode->i_sb, &retries)); 53289ea7df53SJan Kara goto out_ret; 53292e9ee850SAneesh Kumar K.V } 53300e499890SDarrick J. Wong 53310e499890SDarrick J. Wong lock_page(page); 53329ea7df53SJan Kara size = i_size_read(inode); 53339ea7df53SJan Kara /* Page got truncated from under us? */ 53349ea7df53SJan Kara if (page->mapping != mapping || page_offset(page) > size) { 53359ea7df53SJan Kara unlock_page(page); 53369ea7df53SJan Kara ret = VM_FAULT_NOPAGE; 53379ea7df53SJan Kara goto out; 53380e499890SDarrick J. Wong } 53392e9ee850SAneesh Kumar K.V 53402e9ee850SAneesh Kumar K.V if (page->index == size >> PAGE_CACHE_SHIFT) 53412e9ee850SAneesh Kumar K.V len = size & ~PAGE_CACHE_MASK; 53422e9ee850SAneesh Kumar K.V else 53432e9ee850SAneesh Kumar K.V len = PAGE_CACHE_SIZE; 5344a827eaffSAneesh Kumar K.V /* 53459ea7df53SJan Kara * Return if we have all the buffers mapped. This avoids the need to do 53469ea7df53SJan Kara * journal_start/journal_stop which can block and take a long time 5347a827eaffSAneesh Kumar K.V */ 53482e9ee850SAneesh Kumar K.V if (page_has_buffers(page)) { 5349f19d5870STao Ma if (!ext4_walk_page_buffers(NULL, page_buffers(page), 5350f19d5870STao Ma 0, len, NULL, 5351a827eaffSAneesh Kumar K.V ext4_bh_unmapped)) { 53529ea7df53SJan Kara /* Wait so that we don't change page under IO */ 53531d1d1a76SDarrick J. Wong wait_for_stable_page(page); 53549ea7df53SJan Kara ret = VM_FAULT_LOCKED; 53559ea7df53SJan Kara goto out; 53562e9ee850SAneesh Kumar K.V } 5357a827eaffSAneesh Kumar K.V } 5358a827eaffSAneesh Kumar K.V unlock_page(page); 53599ea7df53SJan Kara /* OK, we need to fill the hole... */ 53609ea7df53SJan Kara if (ext4_should_dioread_nolock(inode)) 53619ea7df53SJan Kara get_block = ext4_get_block_write; 53629ea7df53SJan Kara else 53639ea7df53SJan Kara get_block = ext4_get_block; 53649ea7df53SJan Kara retry_alloc: 53659924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 53669924a92aSTheodore Ts'o ext4_writepage_trans_blocks(inode)); 53679ea7df53SJan Kara if (IS_ERR(handle)) { 5368c2ec175cSNick Piggin ret = VM_FAULT_SIGBUS; 53699ea7df53SJan Kara goto out; 53709ea7df53SJan Kara } 53715c500029SRoss Zwisler ret = block_page_mkwrite(vma, vmf, get_block); 53729ea7df53SJan Kara if (!ret && ext4_should_journal_data(inode)) { 5373f19d5870STao Ma if (ext4_walk_page_buffers(handle, page_buffers(page), 0, 53749ea7df53SJan Kara PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) { 53759ea7df53SJan Kara unlock_page(page); 53769ea7df53SJan Kara ret = VM_FAULT_SIGBUS; 5377fcbb5515SYongqiang Yang ext4_journal_stop(handle); 53789ea7df53SJan Kara goto out; 53799ea7df53SJan Kara } 53809ea7df53SJan Kara ext4_set_inode_state(inode, EXT4_STATE_JDATA); 53819ea7df53SJan Kara } 53829ea7df53SJan Kara ext4_journal_stop(handle); 53839ea7df53SJan Kara if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries)) 53849ea7df53SJan Kara goto retry_alloc; 53859ea7df53SJan Kara out_ret: 53869ea7df53SJan Kara ret = block_page_mkwrite_return(ret); 53879ea7df53SJan Kara out: 5388ea3d7209SJan Kara up_read(&EXT4_I(inode)->i_mmap_sem); 53898e8ad8a5SJan Kara sb_end_pagefault(inode->i_sb); 53902e9ee850SAneesh Kumar K.V return ret; 53912e9ee850SAneesh Kumar K.V } 5392ea3d7209SJan Kara 5393ea3d7209SJan Kara int ext4_filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf) 5394ea3d7209SJan Kara { 5395ea3d7209SJan Kara struct inode *inode = file_inode(vma->vm_file); 5396ea3d7209SJan Kara int err; 5397ea3d7209SJan Kara 5398ea3d7209SJan Kara down_read(&EXT4_I(inode)->i_mmap_sem); 5399ea3d7209SJan Kara err = filemap_fault(vma, vmf); 5400ea3d7209SJan Kara up_read(&EXT4_I(inode)->i_mmap_sem); 5401ea3d7209SJan Kara 5402ea3d7209SJan Kara return err; 5403ea3d7209SJan Kara } 5404