1ac27a0ecSDave Kleikamp /* 2617ba13bSMingming Cao * linux/fs/ext4/inode.c 3ac27a0ecSDave Kleikamp * 4ac27a0ecSDave Kleikamp * Copyright (C) 1992, 1993, 1994, 1995 5ac27a0ecSDave Kleikamp * Remy Card (card@masi.ibp.fr) 6ac27a0ecSDave Kleikamp * Laboratoire MASI - Institut Blaise Pascal 7ac27a0ecSDave Kleikamp * Universite Pierre et Marie Curie (Paris VI) 8ac27a0ecSDave Kleikamp * 9ac27a0ecSDave Kleikamp * from 10ac27a0ecSDave Kleikamp * 11ac27a0ecSDave Kleikamp * linux/fs/minix/inode.c 12ac27a0ecSDave Kleikamp * 13ac27a0ecSDave Kleikamp * Copyright (C) 1991, 1992 Linus Torvalds 14ac27a0ecSDave Kleikamp * 15ac27a0ecSDave Kleikamp * 64-bit file support on 64-bit platforms by Jakub Jelinek 16ac27a0ecSDave Kleikamp * (jj@sunsite.ms.mff.cuni.cz) 17ac27a0ecSDave Kleikamp * 18617ba13bSMingming Cao * Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000 19ac27a0ecSDave Kleikamp */ 20ac27a0ecSDave Kleikamp 21ac27a0ecSDave Kleikamp #include <linux/fs.h> 22ac27a0ecSDave Kleikamp #include <linux/time.h> 23dab291afSMingming Cao #include <linux/jbd2.h> 24ac27a0ecSDave Kleikamp #include <linux/highuid.h> 25ac27a0ecSDave Kleikamp #include <linux/pagemap.h> 26ac27a0ecSDave Kleikamp #include <linux/quotaops.h> 27ac27a0ecSDave Kleikamp #include <linux/string.h> 28ac27a0ecSDave Kleikamp #include <linux/buffer_head.h> 29ac27a0ecSDave Kleikamp #include <linux/writeback.h> 3064769240SAlex Tomas #include <linux/pagevec.h> 31ac27a0ecSDave Kleikamp #include <linux/mpage.h> 32e83c1397SDuane Griffin #include <linux/namei.h> 33ac27a0ecSDave Kleikamp #include <linux/uio.h> 34ac27a0ecSDave Kleikamp #include <linux/bio.h> 354c0425ffSMingming Cao #include <linux/workqueue.h> 36744692dcSJiaying Zhang #include <linux/kernel.h> 376db26ffcSAndrew Morton #include <linux/printk.h> 385a0e3ad6STejun Heo #include <linux/slab.h> 39a8901d34STheodore Ts'o #include <linux/ratelimit.h> 40a27bb332SKent Overstreet #include <linux/aio.h> 4100a1a053STheodore Ts'o #include <linux/bitops.h> 429bffad1eSTheodore Ts'o 433dcf5451SChristoph Hellwig #include "ext4_jbd2.h" 44ac27a0ecSDave Kleikamp #include "xattr.h" 45ac27a0ecSDave Kleikamp #include "acl.h" 469f125d64STheodore Ts'o #include "truncate.h" 47ac27a0ecSDave Kleikamp 489bffad1eSTheodore Ts'o #include <trace/events/ext4.h> 499bffad1eSTheodore Ts'o 50a1d6cc56SAneesh Kumar K.V #define MPAGE_DA_EXTENT_TAIL 0x01 51a1d6cc56SAneesh Kumar K.V 52814525f4SDarrick J. Wong static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw, 53814525f4SDarrick J. Wong struct ext4_inode_info *ei) 54814525f4SDarrick J. Wong { 55814525f4SDarrick J. Wong struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 56814525f4SDarrick J. Wong __u16 csum_lo; 57814525f4SDarrick J. Wong __u16 csum_hi = 0; 58814525f4SDarrick J. Wong __u32 csum; 59814525f4SDarrick J. Wong 60171a7f21SDmitry Monakhov csum_lo = le16_to_cpu(raw->i_checksum_lo); 61814525f4SDarrick J. Wong raw->i_checksum_lo = 0; 62814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 63814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) { 64171a7f21SDmitry Monakhov csum_hi = le16_to_cpu(raw->i_checksum_hi); 65814525f4SDarrick J. Wong raw->i_checksum_hi = 0; 66814525f4SDarrick J. Wong } 67814525f4SDarrick J. Wong 68814525f4SDarrick J. Wong csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw, 69814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)); 70814525f4SDarrick J. Wong 71171a7f21SDmitry Monakhov raw->i_checksum_lo = cpu_to_le16(csum_lo); 72814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 73814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 74171a7f21SDmitry Monakhov raw->i_checksum_hi = cpu_to_le16(csum_hi); 75814525f4SDarrick J. Wong 76814525f4SDarrick J. Wong return csum; 77814525f4SDarrick J. Wong } 78814525f4SDarrick J. Wong 79814525f4SDarrick J. Wong static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw, 80814525f4SDarrick J. Wong struct ext4_inode_info *ei) 81814525f4SDarrick J. Wong { 82814525f4SDarrick J. Wong __u32 provided, calculated; 83814525f4SDarrick J. Wong 84814525f4SDarrick J. Wong if (EXT4_SB(inode->i_sb)->s_es->s_creator_os != 85814525f4SDarrick J. Wong cpu_to_le32(EXT4_OS_LINUX) || 86814525f4SDarrick J. Wong !EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, 87814525f4SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)) 88814525f4SDarrick J. Wong return 1; 89814525f4SDarrick J. Wong 90814525f4SDarrick J. Wong provided = le16_to_cpu(raw->i_checksum_lo); 91814525f4SDarrick J. Wong calculated = ext4_inode_csum(inode, raw, ei); 92814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 93814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 94814525f4SDarrick J. Wong provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16; 95814525f4SDarrick J. Wong else 96814525f4SDarrick J. Wong calculated &= 0xFFFF; 97814525f4SDarrick J. Wong 98814525f4SDarrick J. Wong return provided == calculated; 99814525f4SDarrick J. Wong } 100814525f4SDarrick J. Wong 101814525f4SDarrick J. Wong static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw, 102814525f4SDarrick J. Wong struct ext4_inode_info *ei) 103814525f4SDarrick J. Wong { 104814525f4SDarrick J. Wong __u32 csum; 105814525f4SDarrick J. Wong 106814525f4SDarrick J. Wong if (EXT4_SB(inode->i_sb)->s_es->s_creator_os != 107814525f4SDarrick J. Wong cpu_to_le32(EXT4_OS_LINUX) || 108814525f4SDarrick J. Wong !EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, 109814525f4SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)) 110814525f4SDarrick J. Wong return; 111814525f4SDarrick J. Wong 112814525f4SDarrick J. Wong csum = ext4_inode_csum(inode, raw, ei); 113814525f4SDarrick J. Wong raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF); 114814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 115814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 116814525f4SDarrick J. Wong raw->i_checksum_hi = cpu_to_le16(csum >> 16); 117814525f4SDarrick J. Wong } 118814525f4SDarrick J. Wong 119678aaf48SJan Kara static inline int ext4_begin_ordered_truncate(struct inode *inode, 120678aaf48SJan Kara loff_t new_size) 121678aaf48SJan Kara { 1227ff9c073STheodore Ts'o trace_ext4_begin_ordered_truncate(inode, new_size); 1238aefcd55STheodore Ts'o /* 1248aefcd55STheodore Ts'o * If jinode is zero, then we never opened the file for 1258aefcd55STheodore Ts'o * writing, so there's no need to call 1268aefcd55STheodore Ts'o * jbd2_journal_begin_ordered_truncate() since there's no 1278aefcd55STheodore Ts'o * outstanding writes we need to flush. 1288aefcd55STheodore Ts'o */ 1298aefcd55STheodore Ts'o if (!EXT4_I(inode)->jinode) 1308aefcd55STheodore Ts'o return 0; 1318aefcd55STheodore Ts'o return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode), 1328aefcd55STheodore Ts'o EXT4_I(inode)->jinode, 133678aaf48SJan Kara new_size); 134678aaf48SJan Kara } 135678aaf48SJan Kara 136d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset, 137d47992f8SLukas Czerner unsigned int length); 138cb20d518STheodore Ts'o static int __ext4_journalled_writepage(struct page *page, unsigned int len); 139cb20d518STheodore Ts'o static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh); 140fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks, 141fffb2739SJan Kara int pextents); 14264769240SAlex Tomas 143ac27a0ecSDave Kleikamp /* 144ac27a0ecSDave Kleikamp * Test whether an inode is a fast symlink. 145ac27a0ecSDave Kleikamp */ 146617ba13bSMingming Cao static int ext4_inode_is_fast_symlink(struct inode *inode) 147ac27a0ecSDave Kleikamp { 148617ba13bSMingming Cao int ea_blocks = EXT4_I(inode)->i_file_acl ? 14965eddb56SYongqiang Yang EXT4_CLUSTER_SIZE(inode->i_sb) >> 9 : 0; 150ac27a0ecSDave Kleikamp 151ac27a0ecSDave Kleikamp return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0); 152ac27a0ecSDave Kleikamp } 153ac27a0ecSDave Kleikamp 154ac27a0ecSDave Kleikamp /* 155ac27a0ecSDave Kleikamp * Restart the transaction associated with *handle. This does a commit, 156ac27a0ecSDave Kleikamp * so before we call here everything must be consistently dirtied against 157ac27a0ecSDave Kleikamp * this transaction. 158ac27a0ecSDave Kleikamp */ 159487caeefSJan Kara int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode, 160487caeefSJan Kara int nblocks) 161ac27a0ecSDave Kleikamp { 162487caeefSJan Kara int ret; 163487caeefSJan Kara 164487caeefSJan Kara /* 165e35fd660STheodore Ts'o * Drop i_data_sem to avoid deadlock with ext4_map_blocks. At this 166487caeefSJan Kara * moment, get_block can be called only for blocks inside i_size since 167487caeefSJan Kara * page cache has been already dropped and writes are blocked by 168487caeefSJan Kara * i_mutex. So we can safely drop the i_data_sem here. 169487caeefSJan Kara */ 1700390131bSFrank Mayhar BUG_ON(EXT4_JOURNAL(inode) == NULL); 171ac27a0ecSDave Kleikamp jbd_debug(2, "restarting handle %p\n", handle); 172487caeefSJan Kara up_write(&EXT4_I(inode)->i_data_sem); 1738e8eaabeSAmir Goldstein ret = ext4_journal_restart(handle, nblocks); 174487caeefSJan Kara down_write(&EXT4_I(inode)->i_data_sem); 175fa5d1113SAneesh Kumar K.V ext4_discard_preallocations(inode); 176487caeefSJan Kara 177487caeefSJan Kara return ret; 178ac27a0ecSDave Kleikamp } 179ac27a0ecSDave Kleikamp 180ac27a0ecSDave Kleikamp /* 181ac27a0ecSDave Kleikamp * Called at the last iput() if i_nlink is zero. 182ac27a0ecSDave Kleikamp */ 1830930fcc1SAl Viro void ext4_evict_inode(struct inode *inode) 184ac27a0ecSDave Kleikamp { 185ac27a0ecSDave Kleikamp handle_t *handle; 186bc965ab3STheodore Ts'o int err; 187ac27a0ecSDave Kleikamp 1887ff9c073STheodore Ts'o trace_ext4_evict_inode(inode); 1892581fdc8SJiaying Zhang 1900930fcc1SAl Viro if (inode->i_nlink) { 1912d859db3SJan Kara /* 1922d859db3SJan Kara * When journalling data dirty buffers are tracked only in the 1932d859db3SJan Kara * journal. So although mm thinks everything is clean and 1942d859db3SJan Kara * ready for reaping the inode might still have some pages to 1952d859db3SJan Kara * write in the running transaction or waiting to be 1962d859db3SJan Kara * checkpointed. Thus calling jbd2_journal_invalidatepage() 1972d859db3SJan Kara * (via truncate_inode_pages()) to discard these buffers can 1982d859db3SJan Kara * cause data loss. Also even if we did not discard these 1992d859db3SJan Kara * buffers, we would have no way to find them after the inode 2002d859db3SJan Kara * is reaped and thus user could see stale data if he tries to 2012d859db3SJan Kara * read them before the transaction is checkpointed. So be 2022d859db3SJan Kara * careful and force everything to disk here... We use 2032d859db3SJan Kara * ei->i_datasync_tid to store the newest transaction 2042d859db3SJan Kara * containing inode's data. 2052d859db3SJan Kara * 2062d859db3SJan Kara * Note that directories do not have this problem because they 2072d859db3SJan Kara * don't use page cache. 2082d859db3SJan Kara */ 2092d859db3SJan Kara if (ext4_should_journal_data(inode) && 2102b405bfaSTheodore Ts'o (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) && 2112b405bfaSTheodore Ts'o inode->i_ino != EXT4_JOURNAL_INO) { 2122d859db3SJan Kara journal_t *journal = EXT4_SB(inode->i_sb)->s_journal; 2132d859db3SJan Kara tid_t commit_tid = EXT4_I(inode)->i_datasync_tid; 2142d859db3SJan Kara 215d76a3a77STheodore Ts'o jbd2_complete_transaction(journal, commit_tid); 2162d859db3SJan Kara filemap_write_and_wait(&inode->i_data); 2172d859db3SJan Kara } 21891b0abe3SJohannes Weiner truncate_inode_pages_final(&inode->i_data); 2195dc23bddSJan Kara 2205dc23bddSJan Kara WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count)); 2210930fcc1SAl Viro goto no_delete; 2220930fcc1SAl Viro } 2230930fcc1SAl Viro 224907f4554SChristoph Hellwig if (!is_bad_inode(inode)) 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 if (is_bad_inode(inode)) 233ac27a0ecSDave Kleikamp goto no_delete; 234ac27a0ecSDave Kleikamp 2358e8ad8a5SJan Kara /* 2368e8ad8a5SJan Kara * Protect us against freezing - iput() caller didn't have to have any 2378e8ad8a5SJan Kara * protection against it 2388e8ad8a5SJan Kara */ 2398e8ad8a5SJan Kara sb_start_intwrite(inode->i_sb); 2409924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, 2419924a92aSTheodore Ts'o ext4_blocks_for_truncate(inode)+3); 242ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 243bc965ab3STheodore Ts'o ext4_std_error(inode->i_sb, PTR_ERR(handle)); 244ac27a0ecSDave Kleikamp /* 245ac27a0ecSDave Kleikamp * If we're going to skip the normal cleanup, we still need to 246ac27a0ecSDave Kleikamp * make sure that the in-core orphan linked list is properly 247ac27a0ecSDave Kleikamp * cleaned up. 248ac27a0ecSDave Kleikamp */ 249617ba13bSMingming Cao ext4_orphan_del(NULL, inode); 2508e8ad8a5SJan Kara sb_end_intwrite(inode->i_sb); 251ac27a0ecSDave Kleikamp goto no_delete; 252ac27a0ecSDave Kleikamp } 253ac27a0ecSDave Kleikamp 254ac27a0ecSDave Kleikamp if (IS_SYNC(inode)) 2550390131bSFrank Mayhar ext4_handle_sync(handle); 256ac27a0ecSDave Kleikamp inode->i_size = 0; 257bc965ab3STheodore Ts'o err = ext4_mark_inode_dirty(handle, inode); 258bc965ab3STheodore Ts'o if (err) { 25912062dddSEric Sandeen ext4_warning(inode->i_sb, 260bc965ab3STheodore Ts'o "couldn't mark inode dirty (err %d)", err); 261bc965ab3STheodore Ts'o goto stop_handle; 262bc965ab3STheodore Ts'o } 263ac27a0ecSDave Kleikamp if (inode->i_blocks) 264617ba13bSMingming Cao ext4_truncate(inode); 265bc965ab3STheodore Ts'o 266bc965ab3STheodore Ts'o /* 267bc965ab3STheodore Ts'o * ext4_ext_truncate() doesn't reserve any slop when it 268bc965ab3STheodore Ts'o * restarts journal transactions; therefore there may not be 269bc965ab3STheodore Ts'o * enough credits left in the handle to remove the inode from 270bc965ab3STheodore Ts'o * the orphan list and set the dtime field. 271bc965ab3STheodore Ts'o */ 2720390131bSFrank Mayhar if (!ext4_handle_has_enough_credits(handle, 3)) { 273bc965ab3STheodore Ts'o err = ext4_journal_extend(handle, 3); 274bc965ab3STheodore Ts'o if (err > 0) 275bc965ab3STheodore Ts'o err = ext4_journal_restart(handle, 3); 276bc965ab3STheodore Ts'o if (err != 0) { 27712062dddSEric Sandeen ext4_warning(inode->i_sb, 278bc965ab3STheodore Ts'o "couldn't extend journal (err %d)", err); 279bc965ab3STheodore Ts'o stop_handle: 280bc965ab3STheodore Ts'o ext4_journal_stop(handle); 28145388219STheodore Ts'o ext4_orphan_del(NULL, inode); 2828e8ad8a5SJan Kara sb_end_intwrite(inode->i_sb); 283bc965ab3STheodore Ts'o goto no_delete; 284bc965ab3STheodore Ts'o } 285bc965ab3STheodore Ts'o } 286bc965ab3STheodore Ts'o 287ac27a0ecSDave Kleikamp /* 288617ba13bSMingming Cao * Kill off the orphan record which ext4_truncate created. 289ac27a0ecSDave Kleikamp * AKPM: I think this can be inside the above `if'. 290617ba13bSMingming Cao * Note that ext4_orphan_del() has to be able to cope with the 291ac27a0ecSDave Kleikamp * deletion of a non-existent orphan - this is because we don't 292617ba13bSMingming Cao * know if ext4_truncate() actually created an orphan record. 293ac27a0ecSDave Kleikamp * (Well, we could do this if we need to, but heck - it works) 294ac27a0ecSDave Kleikamp */ 295617ba13bSMingming Cao ext4_orphan_del(handle, inode); 296617ba13bSMingming Cao EXT4_I(inode)->i_dtime = get_seconds(); 297ac27a0ecSDave Kleikamp 298ac27a0ecSDave Kleikamp /* 299ac27a0ecSDave Kleikamp * One subtle ordering requirement: if anything has gone wrong 300ac27a0ecSDave Kleikamp * (transaction abort, IO errors, whatever), then we can still 301ac27a0ecSDave Kleikamp * do these next steps (the fs will already have been marked as 302ac27a0ecSDave Kleikamp * having errors), but we can't free the inode if the mark_dirty 303ac27a0ecSDave Kleikamp * fails. 304ac27a0ecSDave Kleikamp */ 305617ba13bSMingming Cao if (ext4_mark_inode_dirty(handle, inode)) 306ac27a0ecSDave Kleikamp /* If that failed, just do the required in-core inode clear. */ 3070930fcc1SAl Viro ext4_clear_inode(inode); 308ac27a0ecSDave Kleikamp else 309617ba13bSMingming Cao ext4_free_inode(handle, inode); 310617ba13bSMingming Cao ext4_journal_stop(handle); 3118e8ad8a5SJan Kara sb_end_intwrite(inode->i_sb); 312ac27a0ecSDave Kleikamp return; 313ac27a0ecSDave Kleikamp no_delete: 3140930fcc1SAl Viro ext4_clear_inode(inode); /* We must guarantee clearing of inode... */ 315ac27a0ecSDave Kleikamp } 316ac27a0ecSDave Kleikamp 317a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA 318a9e7f447SDmitry Monakhov qsize_t *ext4_get_reserved_space(struct inode *inode) 31960e58e0fSMingming Cao { 320a9e7f447SDmitry Monakhov return &EXT4_I(inode)->i_reserved_quota; 32160e58e0fSMingming Cao } 322a9e7f447SDmitry Monakhov #endif 3239d0be502STheodore Ts'o 32412219aeaSAneesh Kumar K.V /* 32512219aeaSAneesh Kumar K.V * Calculate the number of metadata blocks need to reserve 3269d0be502STheodore Ts'o * to allocate a block located at @lblock 32712219aeaSAneesh Kumar K.V */ 32801f49d0bSTheodore Ts'o static int ext4_calc_metadata_amount(struct inode *inode, ext4_lblk_t lblock) 32912219aeaSAneesh Kumar K.V { 33012e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 3319d0be502STheodore Ts'o return ext4_ext_calc_metadata_amount(inode, lblock); 33212219aeaSAneesh Kumar K.V 3338bb2b247SAmir Goldstein return ext4_ind_calc_metadata_amount(inode, lblock); 33412219aeaSAneesh Kumar K.V } 33512219aeaSAneesh Kumar K.V 3360637c6f4STheodore Ts'o /* 3370637c6f4STheodore Ts'o * Called with i_data_sem down, which is important since we can call 3380637c6f4STheodore Ts'o * ext4_discard_preallocations() from here. 3390637c6f4STheodore Ts'o */ 3405f634d06SAneesh Kumar K.V void ext4_da_update_reserve_space(struct inode *inode, 3415f634d06SAneesh Kumar K.V int used, int quota_claim) 34212219aeaSAneesh Kumar K.V { 34312219aeaSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 3440637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 34512219aeaSAneesh Kumar K.V 3460637c6f4STheodore Ts'o spin_lock(&ei->i_block_reservation_lock); 347d8990240SAditya Kali trace_ext4_da_update_reserve_space(inode, used, quota_claim); 3480637c6f4STheodore Ts'o if (unlikely(used > ei->i_reserved_data_blocks)) { 3498de5c325STheodore Ts'o ext4_warning(inode->i_sb, "%s: ino %lu, used %d " 3501084f252STheodore Ts'o "with only %d reserved data blocks", 3510637c6f4STheodore Ts'o __func__, inode->i_ino, used, 3520637c6f4STheodore Ts'o ei->i_reserved_data_blocks); 3530637c6f4STheodore Ts'o WARN_ON(1); 3540637c6f4STheodore Ts'o used = ei->i_reserved_data_blocks; 3556bc6e63fSAneesh Kumar K.V } 35612219aeaSAneesh Kumar K.V 35797795d2aSBrian Foster if (unlikely(ei->i_allocated_meta_blocks > ei->i_reserved_meta_blocks)) { 35801a523ebSTheodore Ts'o ext4_warning(inode->i_sb, "ino %lu, allocated %d " 35901a523ebSTheodore Ts'o "with only %d reserved metadata blocks " 36001a523ebSTheodore Ts'o "(releasing %d blocks with reserved %d data blocks)", 36197795d2aSBrian Foster inode->i_ino, ei->i_allocated_meta_blocks, 36201a523ebSTheodore Ts'o ei->i_reserved_meta_blocks, used, 36301a523ebSTheodore Ts'o ei->i_reserved_data_blocks); 36497795d2aSBrian Foster WARN_ON(1); 36597795d2aSBrian Foster ei->i_allocated_meta_blocks = ei->i_reserved_meta_blocks; 36697795d2aSBrian Foster } 36797795d2aSBrian Foster 3680637c6f4STheodore Ts'o /* Update per-inode reservations */ 3690637c6f4STheodore Ts'o ei->i_reserved_data_blocks -= used; 3700637c6f4STheodore Ts'o ei->i_reserved_meta_blocks -= ei->i_allocated_meta_blocks; 37157042651STheodore Ts'o percpu_counter_sub(&sbi->s_dirtyclusters_counter, 37272b8ab9dSEric Sandeen used + ei->i_allocated_meta_blocks); 3730637c6f4STheodore Ts'o ei->i_allocated_meta_blocks = 0; 3740637c6f4STheodore Ts'o 3750637c6f4STheodore Ts'o if (ei->i_reserved_data_blocks == 0) { 3760637c6f4STheodore Ts'o /* 3770637c6f4STheodore Ts'o * We can release all of the reserved metadata blocks 3780637c6f4STheodore Ts'o * only when we have written all of the delayed 3790637c6f4STheodore Ts'o * allocation blocks. 3800637c6f4STheodore Ts'o */ 38157042651STheodore Ts'o percpu_counter_sub(&sbi->s_dirtyclusters_counter, 38272b8ab9dSEric Sandeen ei->i_reserved_meta_blocks); 383ee5f4d9cSTheodore Ts'o ei->i_reserved_meta_blocks = 0; 3849d0be502STheodore Ts'o ei->i_da_metadata_calc_len = 0; 3850637c6f4STheodore Ts'o } 38612219aeaSAneesh Kumar K.V spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); 38760e58e0fSMingming Cao 38872b8ab9dSEric Sandeen /* Update quota subsystem for data blocks */ 38972b8ab9dSEric Sandeen if (quota_claim) 3907b415bf6SAditya Kali dquot_claim_block(inode, EXT4_C2B(sbi, used)); 39172b8ab9dSEric Sandeen else { 3925f634d06SAneesh Kumar K.V /* 3935f634d06SAneesh Kumar K.V * We did fallocate with an offset that is already delayed 3945f634d06SAneesh Kumar K.V * allocated. So on delayed allocated writeback we should 39572b8ab9dSEric Sandeen * not re-claim the quota for fallocated blocks. 3965f634d06SAneesh Kumar K.V */ 3977b415bf6SAditya Kali dquot_release_reservation_block(inode, EXT4_C2B(sbi, used)); 3985f634d06SAneesh Kumar K.V } 399d6014301SAneesh Kumar K.V 400d6014301SAneesh Kumar K.V /* 401d6014301SAneesh Kumar K.V * If we have done all the pending block allocations and if 402d6014301SAneesh Kumar K.V * there aren't any writers on the inode, we can discard the 403d6014301SAneesh Kumar K.V * inode's preallocations. 404d6014301SAneesh Kumar K.V */ 4050637c6f4STheodore Ts'o if ((ei->i_reserved_data_blocks == 0) && 4060637c6f4STheodore Ts'o (atomic_read(&inode->i_writecount) == 0)) 407d6014301SAneesh Kumar K.V ext4_discard_preallocations(inode); 40812219aeaSAneesh Kumar K.V } 40912219aeaSAneesh Kumar K.V 410e29136f8STheodore Ts'o static int __check_block_validity(struct inode *inode, const char *func, 411c398eda0STheodore Ts'o unsigned int line, 41224676da4STheodore Ts'o struct ext4_map_blocks *map) 4136fd058f7STheodore Ts'o { 41424676da4STheodore Ts'o if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk, 41524676da4STheodore Ts'o map->m_len)) { 416c398eda0STheodore Ts'o ext4_error_inode(inode, func, line, map->m_pblk, 417c398eda0STheodore Ts'o "lblock %lu mapped to illegal pblock " 41824676da4STheodore Ts'o "(length %d)", (unsigned long) map->m_lblk, 419c398eda0STheodore Ts'o map->m_len); 4206fd058f7STheodore Ts'o return -EIO; 4216fd058f7STheodore Ts'o } 4226fd058f7STheodore Ts'o return 0; 4236fd058f7STheodore Ts'o } 4246fd058f7STheodore Ts'o 425e29136f8STheodore Ts'o #define check_block_validity(inode, map) \ 426c398eda0STheodore Ts'o __check_block_validity((inode), __func__, __LINE__, (map)) 427e29136f8STheodore Ts'o 428921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 429921f266bSDmitry Monakhov static void ext4_map_blocks_es_recheck(handle_t *handle, 430921f266bSDmitry Monakhov struct inode *inode, 431921f266bSDmitry Monakhov struct ext4_map_blocks *es_map, 432921f266bSDmitry Monakhov struct ext4_map_blocks *map, 433921f266bSDmitry Monakhov int flags) 434921f266bSDmitry Monakhov { 435921f266bSDmitry Monakhov int retval; 436921f266bSDmitry Monakhov 437921f266bSDmitry Monakhov map->m_flags = 0; 438921f266bSDmitry Monakhov /* 439921f266bSDmitry Monakhov * There is a race window that the result is not the same. 440921f266bSDmitry Monakhov * e.g. xfstests #223 when dioread_nolock enables. The reason 441921f266bSDmitry Monakhov * is that we lookup a block mapping in extent status tree with 442921f266bSDmitry Monakhov * out taking i_data_sem. So at the time the unwritten extent 443921f266bSDmitry Monakhov * could be converted. 444921f266bSDmitry Monakhov */ 445921f266bSDmitry Monakhov if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 446921f266bSDmitry Monakhov down_read((&EXT4_I(inode)->i_data_sem)); 447921f266bSDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 448921f266bSDmitry Monakhov retval = ext4_ext_map_blocks(handle, inode, map, flags & 449921f266bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 450921f266bSDmitry Monakhov } else { 451921f266bSDmitry Monakhov retval = ext4_ind_map_blocks(handle, inode, map, flags & 452921f266bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 453921f266bSDmitry Monakhov } 454921f266bSDmitry Monakhov if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 455921f266bSDmitry Monakhov up_read((&EXT4_I(inode)->i_data_sem)); 456921f266bSDmitry Monakhov /* 457921f266bSDmitry Monakhov * Clear EXT4_MAP_FROM_CLUSTER and EXT4_MAP_BOUNDARY flag 458921f266bSDmitry Monakhov * because it shouldn't be marked in es_map->m_flags. 459921f266bSDmitry Monakhov */ 460921f266bSDmitry Monakhov map->m_flags &= ~(EXT4_MAP_FROM_CLUSTER | EXT4_MAP_BOUNDARY); 461921f266bSDmitry Monakhov 462921f266bSDmitry Monakhov /* 463921f266bSDmitry Monakhov * We don't check m_len because extent will be collpased in status 464921f266bSDmitry Monakhov * tree. So the m_len might not equal. 465921f266bSDmitry Monakhov */ 466921f266bSDmitry Monakhov if (es_map->m_lblk != map->m_lblk || 467921f266bSDmitry Monakhov es_map->m_flags != map->m_flags || 468921f266bSDmitry Monakhov es_map->m_pblk != map->m_pblk) { 469bdafe42aSTheodore Ts'o printk("ES cache assertion failed for inode: %lu " 470921f266bSDmitry Monakhov "es_cached ex [%d/%d/%llu/%x] != " 471921f266bSDmitry Monakhov "found ex [%d/%d/%llu/%x] retval %d flags %x\n", 472921f266bSDmitry Monakhov inode->i_ino, es_map->m_lblk, es_map->m_len, 473921f266bSDmitry Monakhov es_map->m_pblk, es_map->m_flags, map->m_lblk, 474921f266bSDmitry Monakhov map->m_len, map->m_pblk, map->m_flags, 475921f266bSDmitry Monakhov retval, flags); 476921f266bSDmitry Monakhov } 477921f266bSDmitry Monakhov } 478921f266bSDmitry Monakhov #endif /* ES_AGGRESSIVE_TEST */ 479921f266bSDmitry Monakhov 48055138e0bSTheodore Ts'o /* 481e35fd660STheodore Ts'o * The ext4_map_blocks() function tries to look up the requested blocks, 4822b2d6d01STheodore Ts'o * and returns if the blocks are already mapped. 483f5ab0d1fSMingming Cao * 484f5ab0d1fSMingming Cao * Otherwise it takes the write lock of the i_data_sem and allocate blocks 485f5ab0d1fSMingming Cao * and store the allocated blocks in the result buffer head and mark it 486f5ab0d1fSMingming Cao * mapped. 487f5ab0d1fSMingming Cao * 488e35fd660STheodore Ts'o * If file type is extents based, it will call ext4_ext_map_blocks(), 489e35fd660STheodore Ts'o * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping 490f5ab0d1fSMingming Cao * based files 491f5ab0d1fSMingming Cao * 492556615dcSLukas Czerner * On success, it returns the number of blocks being mapped or allocated. 493556615dcSLukas Czerner * if create==0 and the blocks are pre-allocated and unwritten block, 494f5ab0d1fSMingming Cao * the result buffer head is unmapped. If the create ==1, it will make sure 495f5ab0d1fSMingming Cao * the buffer head is mapped. 496f5ab0d1fSMingming Cao * 497f5ab0d1fSMingming Cao * It returns 0 if plain look up failed (blocks have not been allocated), in 498df3ab170STao Ma * that case, buffer head is unmapped 499f5ab0d1fSMingming Cao * 500f5ab0d1fSMingming Cao * It returns the error in case of allocation failure. 501f5ab0d1fSMingming Cao */ 502e35fd660STheodore Ts'o int ext4_map_blocks(handle_t *handle, struct inode *inode, 503e35fd660STheodore Ts'o struct ext4_map_blocks *map, int flags) 5040e855ac8SAneesh Kumar K.V { 505d100eef2SZheng Liu struct extent_status es; 5060e855ac8SAneesh Kumar K.V int retval; 507b8a86845SLukas Czerner int ret = 0; 508921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 509921f266bSDmitry Monakhov struct ext4_map_blocks orig_map; 510921f266bSDmitry Monakhov 511921f266bSDmitry Monakhov memcpy(&orig_map, map, sizeof(*map)); 512921f266bSDmitry Monakhov #endif 513f5ab0d1fSMingming Cao 514e35fd660STheodore Ts'o map->m_flags = 0; 515e35fd660STheodore Ts'o ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u," 516e35fd660STheodore Ts'o "logical block %lu\n", inode->i_ino, flags, map->m_len, 517e35fd660STheodore Ts'o (unsigned long) map->m_lblk); 518d100eef2SZheng Liu 519e861b5e9STheodore Ts'o /* 520e861b5e9STheodore Ts'o * ext4_map_blocks returns an int, and m_len is an unsigned int 521e861b5e9STheodore Ts'o */ 522e861b5e9STheodore Ts'o if (unlikely(map->m_len > INT_MAX)) 523e861b5e9STheodore Ts'o map->m_len = INT_MAX; 524e861b5e9STheodore Ts'o 5254adb6ab3SKazuya Mio /* We can handle the block number less than EXT_MAX_BLOCKS */ 5264adb6ab3SKazuya Mio if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS)) 5274adb6ab3SKazuya Mio return -EIO; 5284adb6ab3SKazuya Mio 529d100eef2SZheng Liu /* Lookup extent status tree firstly */ 530d100eef2SZheng Liu if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) { 53163b99968STheodore Ts'o ext4_es_lru_add(inode); 532d100eef2SZheng Liu if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) { 533d100eef2SZheng Liu map->m_pblk = ext4_es_pblock(&es) + 534d100eef2SZheng Liu map->m_lblk - es.es_lblk; 535d100eef2SZheng Liu map->m_flags |= ext4_es_is_written(&es) ? 536d100eef2SZheng Liu EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN; 537d100eef2SZheng Liu retval = es.es_len - (map->m_lblk - es.es_lblk); 538d100eef2SZheng Liu if (retval > map->m_len) 539d100eef2SZheng Liu retval = map->m_len; 540d100eef2SZheng Liu map->m_len = retval; 541d100eef2SZheng Liu } else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) { 542d100eef2SZheng Liu retval = 0; 543d100eef2SZheng Liu } else { 544d100eef2SZheng Liu BUG_ON(1); 545d100eef2SZheng Liu } 546921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 547921f266bSDmitry Monakhov ext4_map_blocks_es_recheck(handle, inode, map, 548921f266bSDmitry Monakhov &orig_map, flags); 549921f266bSDmitry Monakhov #endif 550d100eef2SZheng Liu goto found; 551d100eef2SZheng Liu } 552d100eef2SZheng Liu 5534df3d265SAneesh Kumar K.V /* 554b920c755STheodore Ts'o * Try to see if we can get the block without requesting a new 555b920c755STheodore Ts'o * file system block. 5564df3d265SAneesh Kumar K.V */ 557729f52c6SZheng Liu if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 5580e855ac8SAneesh Kumar K.V down_read((&EXT4_I(inode)->i_data_sem)); 55912e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 560a4e5d88bSDmitry Monakhov retval = ext4_ext_map_blocks(handle, inode, map, flags & 561a4e5d88bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 5624df3d265SAneesh Kumar K.V } else { 563a4e5d88bSDmitry Monakhov retval = ext4_ind_map_blocks(handle, inode, map, flags & 564a4e5d88bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 5650e855ac8SAneesh Kumar K.V } 566f7fec032SZheng Liu if (retval > 0) { 5673be78c73STheodore Ts'o unsigned int status; 568f7fec032SZheng Liu 56944fb851dSZheng Liu if (unlikely(retval != map->m_len)) { 57044fb851dSZheng Liu ext4_warning(inode->i_sb, 57144fb851dSZheng Liu "ES len assertion failed for inode " 57244fb851dSZheng Liu "%lu: retval %d != map->m_len %d", 57344fb851dSZheng Liu inode->i_ino, retval, map->m_len); 57444fb851dSZheng Liu WARN_ON(1); 575921f266bSDmitry Monakhov } 576921f266bSDmitry Monakhov 577f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 578f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 579f7fec032SZheng Liu if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) && 580f7fec032SZheng Liu ext4_find_delalloc_range(inode, map->m_lblk, 581f7fec032SZheng Liu map->m_lblk + map->m_len - 1)) 582f7fec032SZheng Liu status |= EXTENT_STATUS_DELAYED; 583f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, 584f7fec032SZheng Liu map->m_len, map->m_pblk, status); 585f7fec032SZheng Liu if (ret < 0) 586f7fec032SZheng Liu retval = ret; 587f7fec032SZheng Liu } 588729f52c6SZheng Liu if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 5894df3d265SAneesh Kumar K.V up_read((&EXT4_I(inode)->i_data_sem)); 590f5ab0d1fSMingming Cao 591d100eef2SZheng Liu found: 592e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) { 593b8a86845SLukas Czerner ret = check_block_validity(inode, map); 5946fd058f7STheodore Ts'o if (ret != 0) 5956fd058f7STheodore Ts'o return ret; 5966fd058f7STheodore Ts'o } 5976fd058f7STheodore Ts'o 598f5ab0d1fSMingming Cao /* If it is only a block(s) look up */ 599c2177057STheodore Ts'o if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) 6004df3d265SAneesh Kumar K.V return retval; 6014df3d265SAneesh Kumar K.V 6024df3d265SAneesh Kumar K.V /* 603f5ab0d1fSMingming Cao * Returns if the blocks have already allocated 604f5ab0d1fSMingming Cao * 605f5ab0d1fSMingming Cao * Note that if blocks have been preallocated 606df3ab170STao Ma * ext4_ext_get_block() returns the create = 0 607f5ab0d1fSMingming Cao * with buffer head unmapped. 608f5ab0d1fSMingming Cao */ 609e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) 610b8a86845SLukas Czerner /* 611b8a86845SLukas Czerner * If we need to convert extent to unwritten 612b8a86845SLukas Czerner * we continue and do the actual work in 613b8a86845SLukas Czerner * ext4_ext_map_blocks() 614b8a86845SLukas Czerner */ 615b8a86845SLukas Czerner if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN)) 616f5ab0d1fSMingming Cao return retval; 617f5ab0d1fSMingming Cao 618f5ab0d1fSMingming Cao /* 619a25a4e1aSZheng Liu * Here we clear m_flags because after allocating an new extent, 620a25a4e1aSZheng Liu * it will be set again. 6212a8964d6SAneesh Kumar K.V */ 622a25a4e1aSZheng Liu map->m_flags &= ~EXT4_MAP_FLAGS; 6232a8964d6SAneesh Kumar K.V 6242a8964d6SAneesh Kumar K.V /* 625556615dcSLukas Czerner * New blocks allocate and/or writing to unwritten extent 626f5ab0d1fSMingming Cao * will possibly result in updating i_data, so we take 627f5ab0d1fSMingming Cao * the write lock of i_data_sem, and call get_blocks() 628f5ab0d1fSMingming Cao * with create == 1 flag. 6294df3d265SAneesh Kumar K.V */ 6304df3d265SAneesh Kumar K.V down_write((&EXT4_I(inode)->i_data_sem)); 631d2a17637SMingming Cao 632d2a17637SMingming Cao /* 633d2a17637SMingming Cao * if the caller is from delayed allocation writeout path 634d2a17637SMingming Cao * we have already reserved fs blocks for allocation 635d2a17637SMingming Cao * let the underlying get_block() function know to 636d2a17637SMingming Cao * avoid double accounting 637d2a17637SMingming Cao */ 638c2177057STheodore Ts'o if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) 639f2321097STheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_DELALLOC_RESERVED); 6404df3d265SAneesh Kumar K.V /* 6414df3d265SAneesh Kumar K.V * We need to check for EXT4 here because migrate 6424df3d265SAneesh Kumar K.V * could have changed the inode type in between 6434df3d265SAneesh Kumar K.V */ 64412e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 645e35fd660STheodore Ts'o retval = ext4_ext_map_blocks(handle, inode, map, flags); 6460e855ac8SAneesh Kumar K.V } else { 647e35fd660STheodore Ts'o retval = ext4_ind_map_blocks(handle, inode, map, flags); 648267e4db9SAneesh Kumar K.V 649e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_NEW) { 650267e4db9SAneesh Kumar K.V /* 651267e4db9SAneesh Kumar K.V * We allocated new blocks which will result in 652267e4db9SAneesh Kumar K.V * i_data's format changing. Force the migrate 653267e4db9SAneesh Kumar K.V * to fail by clearing migrate flags 654267e4db9SAneesh Kumar K.V */ 65519f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE); 656267e4db9SAneesh Kumar K.V } 6572ac3b6e0STheodore Ts'o 658d2a17637SMingming Cao /* 6592ac3b6e0STheodore Ts'o * Update reserved blocks/metadata blocks after successful 6605f634d06SAneesh Kumar K.V * block allocation which had been deferred till now. We don't 6615f634d06SAneesh Kumar K.V * support fallocate for non extent files. So we can update 6625f634d06SAneesh Kumar K.V * reserve space here. 663d2a17637SMingming Cao */ 6645f634d06SAneesh Kumar K.V if ((retval > 0) && 6651296cc85SAneesh Kumar K.V (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)) 6665f634d06SAneesh Kumar K.V ext4_da_update_reserve_space(inode, retval, 1); 6675f634d06SAneesh Kumar K.V } 668f7fec032SZheng Liu if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) 669f2321097STheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_DELALLOC_RESERVED); 670d2a17637SMingming Cao 671f7fec032SZheng Liu if (retval > 0) { 6723be78c73STheodore Ts'o unsigned int status; 673f7fec032SZheng Liu 67444fb851dSZheng Liu if (unlikely(retval != map->m_len)) { 67544fb851dSZheng Liu ext4_warning(inode->i_sb, 67644fb851dSZheng Liu "ES len assertion failed for inode " 67744fb851dSZheng Liu "%lu: retval %d != map->m_len %d", 67844fb851dSZheng Liu inode->i_ino, retval, map->m_len); 67944fb851dSZheng Liu WARN_ON(1); 680921f266bSDmitry Monakhov } 681921f266bSDmitry Monakhov 682adb23551SZheng Liu /* 683adb23551SZheng Liu * If the extent has been zeroed out, we don't need to update 684adb23551SZheng Liu * extent status tree. 685adb23551SZheng Liu */ 686adb23551SZheng Liu if ((flags & EXT4_GET_BLOCKS_PRE_IO) && 687adb23551SZheng Liu ext4_es_lookup_extent(inode, map->m_lblk, &es)) { 688adb23551SZheng Liu if (ext4_es_is_written(&es)) 689adb23551SZheng Liu goto has_zeroout; 690adb23551SZheng Liu } 691f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 692f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 693f7fec032SZheng Liu if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) && 694f7fec032SZheng Liu ext4_find_delalloc_range(inode, map->m_lblk, 695f7fec032SZheng Liu map->m_lblk + map->m_len - 1)) 696f7fec032SZheng Liu status |= EXTENT_STATUS_DELAYED; 697f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 698f7fec032SZheng Liu map->m_pblk, status); 69951865fdaSZheng Liu if (ret < 0) 70051865fdaSZheng Liu retval = ret; 70151865fdaSZheng Liu } 7025356f261SAditya Kali 703adb23551SZheng Liu has_zeroout: 7040e855ac8SAneesh Kumar K.V up_write((&EXT4_I(inode)->i_data_sem)); 705e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) { 706b8a86845SLukas Czerner ret = check_block_validity(inode, map); 7076fd058f7STheodore Ts'o if (ret != 0) 7086fd058f7STheodore Ts'o return ret; 7096fd058f7STheodore Ts'o } 7100e855ac8SAneesh Kumar K.V return retval; 7110e855ac8SAneesh Kumar K.V } 7120e855ac8SAneesh Kumar K.V 713f3bd1f3fSMingming Cao /* Maximum number of blocks we map for direct IO at once. */ 714f3bd1f3fSMingming Cao #define DIO_MAX_BLOCKS 4096 715f3bd1f3fSMingming Cao 7162ed88685STheodore Ts'o static int _ext4_get_block(struct inode *inode, sector_t iblock, 7172ed88685STheodore Ts'o struct buffer_head *bh, int flags) 718ac27a0ecSDave Kleikamp { 7193e4fdaf8SDmitriy Monakhov handle_t *handle = ext4_journal_current_handle(); 7202ed88685STheodore Ts'o struct ext4_map_blocks map; 7217fb5409dSJan Kara int ret = 0, started = 0; 722f3bd1f3fSMingming Cao int dio_credits; 723ac27a0ecSDave Kleikamp 72446c7f254STao Ma if (ext4_has_inline_data(inode)) 72546c7f254STao Ma return -ERANGE; 72646c7f254STao Ma 7272ed88685STheodore Ts'o map.m_lblk = iblock; 7282ed88685STheodore Ts'o map.m_len = bh->b_size >> inode->i_blkbits; 7292ed88685STheodore Ts'o 7308b0f165fSAnatol Pomozov if (flags && !(flags & EXT4_GET_BLOCKS_NO_LOCK) && !handle) { 7317fb5409dSJan Kara /* Direct IO write... */ 7322ed88685STheodore Ts'o if (map.m_len > DIO_MAX_BLOCKS) 7332ed88685STheodore Ts'o map.m_len = DIO_MAX_BLOCKS; 7342ed88685STheodore Ts'o dio_credits = ext4_chunk_trans_blocks(inode, map.m_len); 7359924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, 7369924a92aSTheodore Ts'o dio_credits); 7377fb5409dSJan Kara if (IS_ERR(handle)) { 738ac27a0ecSDave Kleikamp ret = PTR_ERR(handle); 7392ed88685STheodore Ts'o return ret; 7407fb5409dSJan Kara } 7417fb5409dSJan Kara started = 1; 742ac27a0ecSDave Kleikamp } 743ac27a0ecSDave Kleikamp 7442ed88685STheodore Ts'o ret = ext4_map_blocks(handle, inode, &map, flags); 745ac27a0ecSDave Kleikamp if (ret > 0) { 7467b7a8665SChristoph Hellwig ext4_io_end_t *io_end = ext4_inode_aio(inode); 7477b7a8665SChristoph Hellwig 7482ed88685STheodore Ts'o map_bh(bh, inode->i_sb, map.m_pblk); 7492ed88685STheodore Ts'o bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags; 7507b7a8665SChristoph Hellwig if (io_end && io_end->flag & EXT4_IO_END_UNWRITTEN) 7517b7a8665SChristoph Hellwig set_buffer_defer_completion(bh); 7522ed88685STheodore Ts'o bh->b_size = inode->i_sb->s_blocksize * map.m_len; 753ac27a0ecSDave Kleikamp ret = 0; 754ac27a0ecSDave Kleikamp } 7557fb5409dSJan Kara if (started) 7567fb5409dSJan Kara ext4_journal_stop(handle); 757ac27a0ecSDave Kleikamp return ret; 758ac27a0ecSDave Kleikamp } 759ac27a0ecSDave Kleikamp 7602ed88685STheodore Ts'o int ext4_get_block(struct inode *inode, sector_t iblock, 7612ed88685STheodore Ts'o struct buffer_head *bh, int create) 7622ed88685STheodore Ts'o { 7632ed88685STheodore Ts'o return _ext4_get_block(inode, iblock, bh, 7642ed88685STheodore Ts'o create ? EXT4_GET_BLOCKS_CREATE : 0); 7652ed88685STheodore Ts'o } 7662ed88685STheodore Ts'o 767ac27a0ecSDave Kleikamp /* 768ac27a0ecSDave Kleikamp * `handle' can be NULL if create is zero 769ac27a0ecSDave Kleikamp */ 770617ba13bSMingming Cao struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode, 771725d26d3SAneesh Kumar K.V ext4_lblk_t block, int create, int *errp) 772ac27a0ecSDave Kleikamp { 7732ed88685STheodore Ts'o struct ext4_map_blocks map; 7742ed88685STheodore Ts'o struct buffer_head *bh; 775ac27a0ecSDave Kleikamp int fatal = 0, err; 776ac27a0ecSDave Kleikamp 777ac27a0ecSDave Kleikamp J_ASSERT(handle != NULL || create == 0); 778ac27a0ecSDave Kleikamp 7792ed88685STheodore Ts'o map.m_lblk = block; 7802ed88685STheodore Ts'o map.m_len = 1; 7812ed88685STheodore Ts'o err = ext4_map_blocks(handle, inode, &map, 7822ed88685STheodore Ts'o create ? EXT4_GET_BLOCKS_CREATE : 0); 7832ed88685STheodore Ts'o 78490b0a973SCarlos Maiolino /* ensure we send some value back into *errp */ 78590b0a973SCarlos Maiolino *errp = 0; 78690b0a973SCarlos Maiolino 7870f70b406STheodore Ts'o if (create && err == 0) 7880f70b406STheodore Ts'o err = -ENOSPC; /* should never happen */ 7892ed88685STheodore Ts'o if (err < 0) 790ac27a0ecSDave Kleikamp *errp = err; 7912ed88685STheodore Ts'o if (err <= 0) 7922ed88685STheodore Ts'o return NULL; 7932ed88685STheodore Ts'o 7942ed88685STheodore Ts'o bh = sb_getblk(inode->i_sb, map.m_pblk); 795aebf0243SWang Shilong if (unlikely(!bh)) { 796860d21e2STheodore Ts'o *errp = -ENOMEM; 7972ed88685STheodore Ts'o return NULL; 798ac27a0ecSDave Kleikamp } 7992ed88685STheodore Ts'o if (map.m_flags & EXT4_MAP_NEW) { 800ac27a0ecSDave Kleikamp J_ASSERT(create != 0); 801ac39849dSAneesh Kumar K.V J_ASSERT(handle != NULL); 802ac27a0ecSDave Kleikamp 803ac27a0ecSDave Kleikamp /* 804ac27a0ecSDave Kleikamp * Now that we do not always journal data, we should 805ac27a0ecSDave Kleikamp * keep in mind whether this should always journal the 806ac27a0ecSDave Kleikamp * new buffer as metadata. For now, regular file 807617ba13bSMingming Cao * writes use ext4_get_block instead, so it's not a 808ac27a0ecSDave Kleikamp * problem. 809ac27a0ecSDave Kleikamp */ 810ac27a0ecSDave Kleikamp lock_buffer(bh); 811ac27a0ecSDave Kleikamp BUFFER_TRACE(bh, "call get_create_access"); 812617ba13bSMingming Cao fatal = ext4_journal_get_create_access(handle, bh); 813ac27a0ecSDave Kleikamp if (!fatal && !buffer_uptodate(bh)) { 814ac27a0ecSDave Kleikamp memset(bh->b_data, 0, inode->i_sb->s_blocksize); 815ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 816ac27a0ecSDave Kleikamp } 817ac27a0ecSDave Kleikamp unlock_buffer(bh); 8180390131bSFrank Mayhar BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); 8190390131bSFrank Mayhar err = ext4_handle_dirty_metadata(handle, inode, bh); 820ac27a0ecSDave Kleikamp if (!fatal) 821ac27a0ecSDave Kleikamp fatal = err; 822ac27a0ecSDave Kleikamp } else { 823ac27a0ecSDave Kleikamp BUFFER_TRACE(bh, "not a new buffer"); 824ac27a0ecSDave Kleikamp } 825ac27a0ecSDave Kleikamp if (fatal) { 826ac27a0ecSDave Kleikamp *errp = fatal; 827ac27a0ecSDave Kleikamp brelse(bh); 828ac27a0ecSDave Kleikamp bh = NULL; 829ac27a0ecSDave Kleikamp } 830ac27a0ecSDave Kleikamp return bh; 831ac27a0ecSDave Kleikamp } 832ac27a0ecSDave Kleikamp 833617ba13bSMingming Cao struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode, 834725d26d3SAneesh Kumar K.V ext4_lblk_t block, int create, int *err) 835ac27a0ecSDave Kleikamp { 836ac27a0ecSDave Kleikamp struct buffer_head *bh; 837ac27a0ecSDave Kleikamp 838617ba13bSMingming Cao bh = ext4_getblk(handle, inode, block, create, err); 839ac27a0ecSDave Kleikamp if (!bh) 840ac27a0ecSDave Kleikamp return bh; 841ac27a0ecSDave Kleikamp if (buffer_uptodate(bh)) 842ac27a0ecSDave Kleikamp return bh; 84365299a3bSChristoph Hellwig ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh); 844ac27a0ecSDave Kleikamp wait_on_buffer(bh); 845ac27a0ecSDave Kleikamp if (buffer_uptodate(bh)) 846ac27a0ecSDave Kleikamp return bh; 847ac27a0ecSDave Kleikamp put_bh(bh); 848ac27a0ecSDave Kleikamp *err = -EIO; 849ac27a0ecSDave Kleikamp return NULL; 850ac27a0ecSDave Kleikamp } 851ac27a0ecSDave Kleikamp 852f19d5870STao Ma int ext4_walk_page_buffers(handle_t *handle, 853ac27a0ecSDave Kleikamp struct buffer_head *head, 854ac27a0ecSDave Kleikamp unsigned from, 855ac27a0ecSDave Kleikamp unsigned to, 856ac27a0ecSDave Kleikamp int *partial, 857ac27a0ecSDave Kleikamp int (*fn)(handle_t *handle, 858ac27a0ecSDave Kleikamp struct buffer_head *bh)) 859ac27a0ecSDave Kleikamp { 860ac27a0ecSDave Kleikamp struct buffer_head *bh; 861ac27a0ecSDave Kleikamp unsigned block_start, block_end; 862ac27a0ecSDave Kleikamp unsigned blocksize = head->b_size; 863ac27a0ecSDave Kleikamp int err, ret = 0; 864ac27a0ecSDave Kleikamp struct buffer_head *next; 865ac27a0ecSDave Kleikamp 866ac27a0ecSDave Kleikamp for (bh = head, block_start = 0; 867ac27a0ecSDave Kleikamp ret == 0 && (bh != head || !block_start); 868de9a55b8STheodore Ts'o block_start = block_end, bh = next) { 869ac27a0ecSDave Kleikamp next = bh->b_this_page; 870ac27a0ecSDave Kleikamp block_end = block_start + blocksize; 871ac27a0ecSDave Kleikamp if (block_end <= from || block_start >= to) { 872ac27a0ecSDave Kleikamp if (partial && !buffer_uptodate(bh)) 873ac27a0ecSDave Kleikamp *partial = 1; 874ac27a0ecSDave Kleikamp continue; 875ac27a0ecSDave Kleikamp } 876ac27a0ecSDave Kleikamp err = (*fn)(handle, bh); 877ac27a0ecSDave Kleikamp if (!ret) 878ac27a0ecSDave Kleikamp ret = err; 879ac27a0ecSDave Kleikamp } 880ac27a0ecSDave Kleikamp return ret; 881ac27a0ecSDave Kleikamp } 882ac27a0ecSDave Kleikamp 883ac27a0ecSDave Kleikamp /* 884ac27a0ecSDave Kleikamp * To preserve ordering, it is essential that the hole instantiation and 885ac27a0ecSDave Kleikamp * the data write be encapsulated in a single transaction. We cannot 886617ba13bSMingming Cao * close off a transaction and start a new one between the ext4_get_block() 887dab291afSMingming Cao * and the commit_write(). So doing the jbd2_journal_start at the start of 888ac27a0ecSDave Kleikamp * prepare_write() is the right place. 889ac27a0ecSDave Kleikamp * 89036ade451SJan Kara * Also, this function can nest inside ext4_writepage(). In that case, we 89136ade451SJan Kara * *know* that ext4_writepage() has generated enough buffer credits to do the 89236ade451SJan Kara * whole page. So we won't block on the journal in that case, which is good, 89336ade451SJan Kara * because the caller may be PF_MEMALLOC. 894ac27a0ecSDave Kleikamp * 895617ba13bSMingming Cao * By accident, ext4 can be reentered when a transaction is open via 896ac27a0ecSDave Kleikamp * quota file writes. If we were to commit the transaction while thus 897ac27a0ecSDave Kleikamp * reentered, there can be a deadlock - we would be holding a quota 898ac27a0ecSDave Kleikamp * lock, and the commit would never complete if another thread had a 899ac27a0ecSDave Kleikamp * transaction open and was blocking on the quota lock - a ranking 900ac27a0ecSDave Kleikamp * violation. 901ac27a0ecSDave Kleikamp * 902dab291afSMingming Cao * So what we do is to rely on the fact that jbd2_journal_stop/journal_start 903ac27a0ecSDave Kleikamp * will _not_ run commit under these circumstances because handle->h_ref 904ac27a0ecSDave Kleikamp * is elevated. We'll still have enough credits for the tiny quotafile 905ac27a0ecSDave Kleikamp * write. 906ac27a0ecSDave Kleikamp */ 907f19d5870STao Ma int do_journal_get_write_access(handle_t *handle, 908ac27a0ecSDave Kleikamp struct buffer_head *bh) 909ac27a0ecSDave Kleikamp { 91056d35a4cSJan Kara int dirty = buffer_dirty(bh); 91156d35a4cSJan Kara int ret; 91256d35a4cSJan Kara 913ac27a0ecSDave Kleikamp if (!buffer_mapped(bh) || buffer_freed(bh)) 914ac27a0ecSDave Kleikamp return 0; 91556d35a4cSJan Kara /* 916ebdec241SChristoph Hellwig * __block_write_begin() could have dirtied some buffers. Clean 91756d35a4cSJan Kara * the dirty bit as jbd2_journal_get_write_access() could complain 91856d35a4cSJan Kara * otherwise about fs integrity issues. Setting of the dirty bit 919ebdec241SChristoph Hellwig * by __block_write_begin() isn't a real problem here as we clear 92056d35a4cSJan Kara * the bit before releasing a page lock and thus writeback cannot 92156d35a4cSJan Kara * ever write the buffer. 92256d35a4cSJan Kara */ 92356d35a4cSJan Kara if (dirty) 92456d35a4cSJan Kara clear_buffer_dirty(bh); 92556d35a4cSJan Kara ret = ext4_journal_get_write_access(handle, bh); 92656d35a4cSJan Kara if (!ret && dirty) 92756d35a4cSJan Kara ret = ext4_handle_dirty_metadata(handle, NULL, bh); 92856d35a4cSJan Kara return ret; 929ac27a0ecSDave Kleikamp } 930ac27a0ecSDave Kleikamp 9318b0f165fSAnatol Pomozov static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock, 9328b0f165fSAnatol Pomozov struct buffer_head *bh_result, int create); 933bfc1af65SNick Piggin static int ext4_write_begin(struct file *file, struct address_space *mapping, 934bfc1af65SNick Piggin loff_t pos, unsigned len, unsigned flags, 935bfc1af65SNick Piggin struct page **pagep, void **fsdata) 936ac27a0ecSDave Kleikamp { 937bfc1af65SNick Piggin struct inode *inode = mapping->host; 9381938a150SAneesh Kumar K.V int ret, needed_blocks; 939ac27a0ecSDave Kleikamp handle_t *handle; 940ac27a0ecSDave Kleikamp int retries = 0; 941bfc1af65SNick Piggin struct page *page; 942bfc1af65SNick Piggin pgoff_t index; 943bfc1af65SNick Piggin unsigned from, to; 944bfc1af65SNick Piggin 9459bffad1eSTheodore Ts'o trace_ext4_write_begin(inode, pos, len, flags); 9461938a150SAneesh Kumar K.V /* 9471938a150SAneesh Kumar K.V * Reserve one block more for addition to orphan list in case 9481938a150SAneesh Kumar K.V * we allocate blocks but write fails for some reason 9491938a150SAneesh Kumar K.V */ 9501938a150SAneesh Kumar K.V needed_blocks = ext4_writepage_trans_blocks(inode) + 1; 951bfc1af65SNick Piggin index = pos >> PAGE_CACHE_SHIFT; 952bfc1af65SNick Piggin from = pos & (PAGE_CACHE_SIZE - 1); 953bfc1af65SNick Piggin to = from + len; 954ac27a0ecSDave Kleikamp 955f19d5870STao Ma if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) { 956f19d5870STao Ma ret = ext4_try_to_write_inline_data(mapping, inode, pos, len, 957f19d5870STao Ma flags, pagep); 958f19d5870STao Ma if (ret < 0) 95947564bfbSTheodore Ts'o return ret; 96047564bfbSTheodore Ts'o if (ret == 1) 96147564bfbSTheodore Ts'o return 0; 962f19d5870STao Ma } 963f19d5870STao Ma 96447564bfbSTheodore Ts'o /* 96547564bfbSTheodore Ts'o * grab_cache_page_write_begin() can take a long time if the 96647564bfbSTheodore Ts'o * system is thrashing due to memory pressure, or if the page 96747564bfbSTheodore Ts'o * is being written back. So grab it first before we start 96847564bfbSTheodore Ts'o * the transaction handle. This also allows us to allocate 96947564bfbSTheodore Ts'o * the page (if needed) without using GFP_NOFS. 97047564bfbSTheodore Ts'o */ 97147564bfbSTheodore Ts'o retry_grab: 97254566b2cSNick Piggin page = grab_cache_page_write_begin(mapping, index, flags); 97347564bfbSTheodore Ts'o if (!page) 97447564bfbSTheodore Ts'o return -ENOMEM; 97547564bfbSTheodore Ts'o unlock_page(page); 97647564bfbSTheodore Ts'o 97747564bfbSTheodore Ts'o retry_journal: 9789924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks); 979ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 98047564bfbSTheodore Ts'o page_cache_release(page); 98147564bfbSTheodore Ts'o return PTR_ERR(handle); 982cf108bcaSJan Kara } 983f19d5870STao Ma 98447564bfbSTheodore Ts'o lock_page(page); 98547564bfbSTheodore Ts'o if (page->mapping != mapping) { 98647564bfbSTheodore Ts'o /* The page got truncated from under us */ 98747564bfbSTheodore Ts'o unlock_page(page); 98847564bfbSTheodore Ts'o page_cache_release(page); 989cf108bcaSJan Kara ext4_journal_stop(handle); 99047564bfbSTheodore Ts'o goto retry_grab; 991cf108bcaSJan Kara } 9927afe5aa5SDmitry Monakhov /* In case writeback began while the page was unlocked */ 9937afe5aa5SDmitry Monakhov wait_for_stable_page(page); 994cf108bcaSJan Kara 995744692dcSJiaying Zhang if (ext4_should_dioread_nolock(inode)) 9966e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_get_block_write); 997744692dcSJiaying Zhang else 9986e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_get_block); 999bfc1af65SNick Piggin 1000bfc1af65SNick Piggin if (!ret && ext4_should_journal_data(inode)) { 1001f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_buffers(page), 1002f19d5870STao Ma from, to, NULL, 1003f19d5870STao Ma do_journal_get_write_access); 1004b46be050SAndrey Savochkin } 1005bfc1af65SNick Piggin 1006bfc1af65SNick Piggin if (ret) { 1007bfc1af65SNick Piggin unlock_page(page); 1008ae4d5372SAneesh Kumar K.V /* 10096e1db88dSChristoph Hellwig * __block_write_begin may have instantiated a few blocks 1010ae4d5372SAneesh Kumar K.V * outside i_size. Trim these off again. Don't need 1011ae4d5372SAneesh Kumar K.V * i_size_read because we hold i_mutex. 10121938a150SAneesh Kumar K.V * 10131938a150SAneesh Kumar K.V * Add inode to orphan list in case we crash before 10141938a150SAneesh Kumar K.V * truncate finishes 1015ae4d5372SAneesh Kumar K.V */ 1016ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 10171938a150SAneesh Kumar K.V ext4_orphan_add(handle, inode); 10181938a150SAneesh Kumar K.V 10191938a150SAneesh Kumar K.V ext4_journal_stop(handle); 10201938a150SAneesh Kumar K.V if (pos + len > inode->i_size) { 1021b9a4207dSJan Kara ext4_truncate_failed_write(inode); 10221938a150SAneesh Kumar K.V /* 1023ffacfa7aSJan Kara * If truncate failed early the inode might 10241938a150SAneesh Kumar K.V * still be on the orphan list; we need to 10251938a150SAneesh Kumar K.V * make sure the inode is removed from the 10261938a150SAneesh Kumar K.V * orphan list in that case. 10271938a150SAneesh Kumar K.V */ 10281938a150SAneesh Kumar K.V if (inode->i_nlink) 10291938a150SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 10301938a150SAneesh Kumar K.V } 1031bfc1af65SNick Piggin 103247564bfbSTheodore Ts'o if (ret == -ENOSPC && 103347564bfbSTheodore Ts'o ext4_should_retry_alloc(inode->i_sb, &retries)) 103447564bfbSTheodore Ts'o goto retry_journal; 103547564bfbSTheodore Ts'o page_cache_release(page); 103647564bfbSTheodore Ts'o return ret; 103747564bfbSTheodore Ts'o } 103847564bfbSTheodore Ts'o *pagep = page; 1039ac27a0ecSDave Kleikamp return ret; 1040ac27a0ecSDave Kleikamp } 1041ac27a0ecSDave Kleikamp 1042bfc1af65SNick Piggin /* For write_end() in data=journal mode */ 1043bfc1af65SNick Piggin static int write_end_fn(handle_t *handle, struct buffer_head *bh) 1044ac27a0ecSDave Kleikamp { 104513fca323STheodore Ts'o int ret; 1046ac27a0ecSDave Kleikamp if (!buffer_mapped(bh) || buffer_freed(bh)) 1047ac27a0ecSDave Kleikamp return 0; 1048ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 104913fca323STheodore Ts'o ret = ext4_handle_dirty_metadata(handle, NULL, bh); 105013fca323STheodore Ts'o clear_buffer_meta(bh); 105113fca323STheodore Ts'o clear_buffer_prio(bh); 105213fca323STheodore Ts'o return ret; 1053ac27a0ecSDave Kleikamp } 1054ac27a0ecSDave Kleikamp 1055eed4333fSZheng Liu /* 1056eed4333fSZheng Liu * We need to pick up the new inode size which generic_commit_write gave us 1057eed4333fSZheng Liu * `file' can be NULL - eg, when called from page_symlink(). 1058eed4333fSZheng Liu * 1059eed4333fSZheng Liu * ext4 never places buffers on inode->i_mapping->private_list. metadata 1060eed4333fSZheng Liu * buffers are managed internally. 1061eed4333fSZheng Liu */ 1062eed4333fSZheng Liu static int ext4_write_end(struct file *file, 1063f8514083SAneesh Kumar K.V struct address_space *mapping, 1064f8514083SAneesh Kumar K.V loff_t pos, unsigned len, unsigned copied, 1065f8514083SAneesh Kumar K.V struct page *page, void *fsdata) 1066f8514083SAneesh Kumar K.V { 1067f8514083SAneesh Kumar K.V handle_t *handle = ext4_journal_current_handle(); 1068eed4333fSZheng Liu struct inode *inode = mapping->host; 1069eed4333fSZheng Liu int ret = 0, ret2; 1070eed4333fSZheng Liu int i_size_changed = 0; 1071eed4333fSZheng Liu 1072eed4333fSZheng Liu trace_ext4_write_end(inode, pos, len, copied); 1073eed4333fSZheng Liu if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) { 1074eed4333fSZheng Liu ret = ext4_jbd2_file_inode(handle, inode); 1075eed4333fSZheng Liu if (ret) { 1076eed4333fSZheng Liu unlock_page(page); 1077eed4333fSZheng Liu page_cache_release(page); 1078eed4333fSZheng Liu goto errout; 1079eed4333fSZheng Liu } 1080eed4333fSZheng Liu } 1081f8514083SAneesh Kumar K.V 108242c832deSTheodore Ts'o if (ext4_has_inline_data(inode)) { 108342c832deSTheodore Ts'o ret = ext4_write_inline_data_end(inode, pos, len, 1084f19d5870STao Ma copied, page); 108542c832deSTheodore Ts'o if (ret < 0) 108642c832deSTheodore Ts'o goto errout; 108742c832deSTheodore Ts'o copied = ret; 108842c832deSTheodore Ts'o } else 1089f19d5870STao Ma copied = block_write_end(file, mapping, pos, 1090f19d5870STao Ma len, copied, page, fsdata); 1091f8514083SAneesh Kumar K.V 1092f8514083SAneesh Kumar K.V /* 1093f8514083SAneesh Kumar K.V * No need to use i_size_read() here, the i_size 1094eed4333fSZheng Liu * cannot change under us because we hole i_mutex. 1095f8514083SAneesh Kumar K.V * 1096f8514083SAneesh Kumar K.V * But it's important to update i_size while still holding page lock: 1097f8514083SAneesh Kumar K.V * page writeout could otherwise come in and zero beyond i_size. 1098f8514083SAneesh Kumar K.V */ 1099f8514083SAneesh Kumar K.V if (pos + copied > inode->i_size) { 1100f8514083SAneesh Kumar K.V i_size_write(inode, pos + copied); 1101f8514083SAneesh Kumar K.V i_size_changed = 1; 1102f8514083SAneesh Kumar K.V } 1103f8514083SAneesh Kumar K.V 1104f8514083SAneesh Kumar K.V if (pos + copied > EXT4_I(inode)->i_disksize) { 1105f8514083SAneesh Kumar K.V /* We need to mark inode dirty even if 1106f8514083SAneesh Kumar K.V * new_i_size is less that inode->i_size 1107eed4333fSZheng Liu * but greater than i_disksize. (hint delalloc) 1108f8514083SAneesh Kumar K.V */ 1109f8514083SAneesh Kumar K.V ext4_update_i_disksize(inode, (pos + copied)); 1110f8514083SAneesh Kumar K.V i_size_changed = 1; 1111f8514083SAneesh Kumar K.V } 1112f8514083SAneesh Kumar K.V unlock_page(page); 1113f8514083SAneesh Kumar K.V page_cache_release(page); 1114f8514083SAneesh Kumar K.V 1115f8514083SAneesh Kumar K.V /* 1116f8514083SAneesh Kumar K.V * Don't mark the inode dirty under page lock. First, it unnecessarily 1117f8514083SAneesh Kumar K.V * makes the holding time of page lock longer. Second, it forces lock 1118f8514083SAneesh Kumar K.V * ordering of page lock and transaction start for journaling 1119f8514083SAneesh Kumar K.V * filesystems. 1120f8514083SAneesh Kumar K.V */ 1121f8514083SAneesh Kumar K.V if (i_size_changed) 1122f8514083SAneesh Kumar K.V ext4_mark_inode_dirty(handle, inode); 1123f8514083SAneesh Kumar K.V 1124ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 1125f8514083SAneesh Kumar K.V /* if we have allocated more blocks and copied 1126f8514083SAneesh Kumar K.V * less. We will have blocks allocated outside 1127f8514083SAneesh Kumar K.V * inode->i_size. So truncate them 1128f8514083SAneesh Kumar K.V */ 1129f8514083SAneesh Kumar K.V ext4_orphan_add(handle, inode); 113074d553aaSTheodore Ts'o errout: 1131617ba13bSMingming Cao ret2 = ext4_journal_stop(handle); 1132ac27a0ecSDave Kleikamp if (!ret) 1133ac27a0ecSDave Kleikamp ret = ret2; 1134bfc1af65SNick Piggin 1135f8514083SAneesh Kumar K.V if (pos + len > inode->i_size) { 1136b9a4207dSJan Kara ext4_truncate_failed_write(inode); 1137f8514083SAneesh Kumar K.V /* 1138ffacfa7aSJan Kara * If truncate failed early the inode might still be 1139f8514083SAneesh Kumar K.V * on the orphan list; we need to make sure the inode 1140f8514083SAneesh Kumar K.V * is removed from the orphan list in that case. 1141f8514083SAneesh Kumar K.V */ 1142f8514083SAneesh Kumar K.V if (inode->i_nlink) 1143f8514083SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 1144f8514083SAneesh Kumar K.V } 1145f8514083SAneesh Kumar K.V 1146bfc1af65SNick Piggin return ret ? ret : copied; 1147ac27a0ecSDave Kleikamp } 1148ac27a0ecSDave Kleikamp 1149bfc1af65SNick Piggin static int ext4_journalled_write_end(struct file *file, 1150bfc1af65SNick Piggin struct address_space *mapping, 1151bfc1af65SNick Piggin loff_t pos, unsigned len, unsigned copied, 1152bfc1af65SNick Piggin struct page *page, void *fsdata) 1153ac27a0ecSDave Kleikamp { 1154617ba13bSMingming Cao handle_t *handle = ext4_journal_current_handle(); 1155bfc1af65SNick Piggin struct inode *inode = mapping->host; 1156ac27a0ecSDave Kleikamp int ret = 0, ret2; 1157ac27a0ecSDave Kleikamp int partial = 0; 1158bfc1af65SNick Piggin unsigned from, to; 1159cf17fea6SAneesh Kumar K.V loff_t new_i_size; 1160ac27a0ecSDave Kleikamp 11619bffad1eSTheodore Ts'o trace_ext4_journalled_write_end(inode, pos, len, copied); 1162bfc1af65SNick Piggin from = pos & (PAGE_CACHE_SIZE - 1); 1163bfc1af65SNick Piggin to = from + len; 1164bfc1af65SNick Piggin 1165441c8508SCurt Wohlgemuth BUG_ON(!ext4_handle_valid(handle)); 1166441c8508SCurt Wohlgemuth 11673fdcfb66STao Ma if (ext4_has_inline_data(inode)) 11683fdcfb66STao Ma copied = ext4_write_inline_data_end(inode, pos, len, 11693fdcfb66STao Ma copied, page); 11703fdcfb66STao Ma else { 1171bfc1af65SNick Piggin if (copied < len) { 1172bfc1af65SNick Piggin if (!PageUptodate(page)) 1173bfc1af65SNick Piggin copied = 0; 1174bfc1af65SNick Piggin page_zero_new_buffers(page, from+copied, to); 1175bfc1af65SNick Piggin } 1176ac27a0ecSDave Kleikamp 1177f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_buffers(page), from, 1178bfc1af65SNick Piggin to, &partial, write_end_fn); 1179ac27a0ecSDave Kleikamp if (!partial) 1180ac27a0ecSDave Kleikamp SetPageUptodate(page); 11813fdcfb66STao Ma } 1182cf17fea6SAneesh Kumar K.V new_i_size = pos + copied; 1183cf17fea6SAneesh Kumar K.V if (new_i_size > inode->i_size) 1184bfc1af65SNick Piggin i_size_write(inode, pos+copied); 118519f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_JDATA); 11862d859db3SJan Kara EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid; 1187cf17fea6SAneesh Kumar K.V if (new_i_size > EXT4_I(inode)->i_disksize) { 1188cf17fea6SAneesh Kumar K.V ext4_update_i_disksize(inode, new_i_size); 1189617ba13bSMingming Cao ret2 = ext4_mark_inode_dirty(handle, inode); 1190ac27a0ecSDave Kleikamp if (!ret) 1191ac27a0ecSDave Kleikamp ret = ret2; 1192ac27a0ecSDave Kleikamp } 1193bfc1af65SNick Piggin 1194cf108bcaSJan Kara unlock_page(page); 1195f8514083SAneesh Kumar K.V page_cache_release(page); 1196ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 1197f8514083SAneesh Kumar K.V /* if we have allocated more blocks and copied 1198f8514083SAneesh Kumar K.V * less. We will have blocks allocated outside 1199f8514083SAneesh Kumar K.V * inode->i_size. So truncate them 1200f8514083SAneesh Kumar K.V */ 1201f8514083SAneesh Kumar K.V ext4_orphan_add(handle, inode); 1202f8514083SAneesh Kumar K.V 1203617ba13bSMingming Cao ret2 = ext4_journal_stop(handle); 1204ac27a0ecSDave Kleikamp if (!ret) 1205ac27a0ecSDave Kleikamp ret = ret2; 1206f8514083SAneesh Kumar K.V if (pos + len > inode->i_size) { 1207b9a4207dSJan Kara ext4_truncate_failed_write(inode); 1208f8514083SAneesh Kumar K.V /* 1209ffacfa7aSJan Kara * If truncate failed early the inode might still be 1210f8514083SAneesh Kumar K.V * on the orphan list; we need to make sure the inode 1211f8514083SAneesh Kumar K.V * is removed from the orphan list in that case. 1212f8514083SAneesh Kumar K.V */ 1213f8514083SAneesh Kumar K.V if (inode->i_nlink) 1214f8514083SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 1215f8514083SAneesh Kumar K.V } 1216bfc1af65SNick Piggin 1217bfc1af65SNick Piggin return ret ? ret : copied; 1218ac27a0ecSDave Kleikamp } 1219d2a17637SMingming Cao 12209d0be502STheodore Ts'o /* 1221386ad67cSLukas Czerner * Reserve a metadata for a single block located at lblock 1222386ad67cSLukas Czerner */ 1223386ad67cSLukas Czerner static int ext4_da_reserve_metadata(struct inode *inode, ext4_lblk_t lblock) 1224386ad67cSLukas Czerner { 1225386ad67cSLukas Czerner struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 1226386ad67cSLukas Czerner struct ext4_inode_info *ei = EXT4_I(inode); 1227386ad67cSLukas Czerner unsigned int md_needed; 1228386ad67cSLukas Czerner ext4_lblk_t save_last_lblock; 1229386ad67cSLukas Czerner int save_len; 1230386ad67cSLukas Czerner 1231386ad67cSLukas Czerner /* 1232386ad67cSLukas Czerner * recalculate the amount of metadata blocks to reserve 1233386ad67cSLukas Czerner * in order to allocate nrblocks 1234386ad67cSLukas Czerner * worse case is one extent per block 1235386ad67cSLukas Czerner */ 1236386ad67cSLukas Czerner spin_lock(&ei->i_block_reservation_lock); 1237386ad67cSLukas Czerner /* 1238386ad67cSLukas Czerner * ext4_calc_metadata_amount() has side effects, which we have 1239386ad67cSLukas Czerner * to be prepared undo if we fail to claim space. 1240386ad67cSLukas Czerner */ 1241386ad67cSLukas Czerner save_len = ei->i_da_metadata_calc_len; 1242386ad67cSLukas Czerner save_last_lblock = ei->i_da_metadata_calc_last_lblock; 1243386ad67cSLukas Czerner md_needed = EXT4_NUM_B2C(sbi, 1244386ad67cSLukas Czerner ext4_calc_metadata_amount(inode, lblock)); 1245386ad67cSLukas Czerner trace_ext4_da_reserve_space(inode, md_needed); 1246386ad67cSLukas Czerner 1247386ad67cSLukas Czerner /* 1248386ad67cSLukas Czerner * We do still charge estimated metadata to the sb though; 1249386ad67cSLukas Czerner * we cannot afford to run out of free blocks. 1250386ad67cSLukas Czerner */ 1251386ad67cSLukas Czerner if (ext4_claim_free_clusters(sbi, md_needed, 0)) { 1252386ad67cSLukas Czerner ei->i_da_metadata_calc_len = save_len; 1253386ad67cSLukas Czerner ei->i_da_metadata_calc_last_lblock = save_last_lblock; 1254386ad67cSLukas Czerner spin_unlock(&ei->i_block_reservation_lock); 1255386ad67cSLukas Czerner return -ENOSPC; 1256386ad67cSLukas Czerner } 1257386ad67cSLukas Czerner ei->i_reserved_meta_blocks += md_needed; 1258386ad67cSLukas Czerner spin_unlock(&ei->i_block_reservation_lock); 1259386ad67cSLukas Czerner 1260386ad67cSLukas Czerner return 0; /* success */ 1261386ad67cSLukas Czerner } 1262386ad67cSLukas Czerner 1263386ad67cSLukas Czerner /* 12647b415bf6SAditya Kali * Reserve a single cluster located at lblock 12659d0be502STheodore Ts'o */ 126601f49d0bSTheodore Ts'o static int ext4_da_reserve_space(struct inode *inode, ext4_lblk_t lblock) 1267d2a17637SMingming Cao { 1268d2a17637SMingming Cao struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 12690637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 12707b415bf6SAditya Kali unsigned int md_needed; 12715dd4056dSChristoph Hellwig int ret; 127203179fe9STheodore Ts'o ext4_lblk_t save_last_lblock; 127303179fe9STheodore Ts'o int save_len; 1274d2a17637SMingming Cao 127560e58e0fSMingming Cao /* 127672b8ab9dSEric Sandeen * We will charge metadata quota at writeout time; this saves 127772b8ab9dSEric Sandeen * us from metadata over-estimation, though we may go over by 127872b8ab9dSEric Sandeen * a small amount in the end. Here we just reserve for data. 127960e58e0fSMingming Cao */ 12807b415bf6SAditya Kali ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1)); 12815dd4056dSChristoph Hellwig if (ret) 12825dd4056dSChristoph Hellwig return ret; 128303179fe9STheodore Ts'o 128403179fe9STheodore Ts'o /* 128503179fe9STheodore Ts'o * recalculate the amount of metadata blocks to reserve 128603179fe9STheodore Ts'o * in order to allocate nrblocks 128703179fe9STheodore Ts'o * worse case is one extent per block 128803179fe9STheodore Ts'o */ 128903179fe9STheodore Ts'o spin_lock(&ei->i_block_reservation_lock); 129003179fe9STheodore Ts'o /* 129103179fe9STheodore Ts'o * ext4_calc_metadata_amount() has side effects, which we have 129203179fe9STheodore Ts'o * to be prepared undo if we fail to claim space. 129303179fe9STheodore Ts'o */ 129403179fe9STheodore Ts'o save_len = ei->i_da_metadata_calc_len; 129503179fe9STheodore Ts'o save_last_lblock = ei->i_da_metadata_calc_last_lblock; 129603179fe9STheodore Ts'o md_needed = EXT4_NUM_B2C(sbi, 129703179fe9STheodore Ts'o ext4_calc_metadata_amount(inode, lblock)); 129803179fe9STheodore Ts'o trace_ext4_da_reserve_space(inode, md_needed); 129903179fe9STheodore Ts'o 130072b8ab9dSEric Sandeen /* 130172b8ab9dSEric Sandeen * We do still charge estimated metadata to the sb though; 130272b8ab9dSEric Sandeen * we cannot afford to run out of free blocks. 130372b8ab9dSEric Sandeen */ 1304e7d5f315STheodore Ts'o if (ext4_claim_free_clusters(sbi, md_needed + 1, 0)) { 130503179fe9STheodore Ts'o ei->i_da_metadata_calc_len = save_len; 130603179fe9STheodore Ts'o ei->i_da_metadata_calc_last_lblock = save_last_lblock; 130703179fe9STheodore Ts'o spin_unlock(&ei->i_block_reservation_lock); 130803179fe9STheodore Ts'o dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1)); 1309d2a17637SMingming Cao return -ENOSPC; 1310d2a17637SMingming Cao } 13119d0be502STheodore Ts'o ei->i_reserved_data_blocks++; 13120637c6f4STheodore Ts'o ei->i_reserved_meta_blocks += md_needed; 13130637c6f4STheodore Ts'o spin_unlock(&ei->i_block_reservation_lock); 131439bc680aSDmitry Monakhov 1315d2a17637SMingming Cao return 0; /* success */ 1316d2a17637SMingming Cao } 1317d2a17637SMingming Cao 131812219aeaSAneesh Kumar K.V static void ext4_da_release_space(struct inode *inode, int to_free) 1319d2a17637SMingming Cao { 1320d2a17637SMingming Cao struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 13210637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 1322d2a17637SMingming Cao 1323cd213226SMingming Cao if (!to_free) 1324cd213226SMingming Cao return; /* Nothing to release, exit */ 1325cd213226SMingming Cao 1326d2a17637SMingming Cao spin_lock(&EXT4_I(inode)->i_block_reservation_lock); 1327cd213226SMingming Cao 13285a58ec87SLi Zefan trace_ext4_da_release_space(inode, to_free); 13290637c6f4STheodore Ts'o if (unlikely(to_free > ei->i_reserved_data_blocks)) { 1330cd213226SMingming Cao /* 13310637c6f4STheodore Ts'o * if there aren't enough reserved blocks, then the 13320637c6f4STheodore Ts'o * counter is messed up somewhere. Since this 13330637c6f4STheodore Ts'o * function is called from invalidate page, it's 13340637c6f4STheodore Ts'o * harmless to return without any action. 1335cd213226SMingming Cao */ 13368de5c325STheodore Ts'o ext4_warning(inode->i_sb, "ext4_da_release_space: " 13370637c6f4STheodore Ts'o "ino %lu, to_free %d with only %d reserved " 13381084f252STheodore Ts'o "data blocks", inode->i_ino, to_free, 13390637c6f4STheodore Ts'o ei->i_reserved_data_blocks); 13400637c6f4STheodore Ts'o WARN_ON(1); 13410637c6f4STheodore Ts'o to_free = ei->i_reserved_data_blocks; 13420637c6f4STheodore Ts'o } 13430637c6f4STheodore Ts'o ei->i_reserved_data_blocks -= to_free; 13440637c6f4STheodore Ts'o 13450637c6f4STheodore Ts'o if (ei->i_reserved_data_blocks == 0) { 13460637c6f4STheodore Ts'o /* 13470637c6f4STheodore Ts'o * We can release all of the reserved metadata blocks 13480637c6f4STheodore Ts'o * only when we have written all of the delayed 13490637c6f4STheodore Ts'o * allocation blocks. 13507b415bf6SAditya Kali * Note that in case of bigalloc, i_reserved_meta_blocks, 13517b415bf6SAditya Kali * i_reserved_data_blocks, etc. refer to number of clusters. 13520637c6f4STheodore Ts'o */ 135357042651STheodore Ts'o percpu_counter_sub(&sbi->s_dirtyclusters_counter, 135472b8ab9dSEric Sandeen ei->i_reserved_meta_blocks); 1355ee5f4d9cSTheodore Ts'o ei->i_reserved_meta_blocks = 0; 13569d0be502STheodore Ts'o ei->i_da_metadata_calc_len = 0; 1357cd213226SMingming Cao } 1358cd213226SMingming Cao 135972b8ab9dSEric Sandeen /* update fs dirty data blocks counter */ 136057042651STheodore Ts'o percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free); 1361d2a17637SMingming Cao 1362d2a17637SMingming Cao spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); 136360e58e0fSMingming Cao 13647b415bf6SAditya Kali dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free)); 1365d2a17637SMingming Cao } 1366d2a17637SMingming Cao 1367d2a17637SMingming Cao static void ext4_da_page_release_reservation(struct page *page, 1368ca99fdd2SLukas Czerner unsigned int offset, 1369ca99fdd2SLukas Czerner unsigned int length) 1370d2a17637SMingming Cao { 1371d2a17637SMingming Cao int to_release = 0; 1372d2a17637SMingming Cao struct buffer_head *head, *bh; 1373d2a17637SMingming Cao unsigned int curr_off = 0; 13747b415bf6SAditya Kali struct inode *inode = page->mapping->host; 13757b415bf6SAditya Kali struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 1376ca99fdd2SLukas Czerner unsigned int stop = offset + length; 13777b415bf6SAditya Kali int num_clusters; 137851865fdaSZheng Liu ext4_fsblk_t lblk; 1379d2a17637SMingming Cao 1380ca99fdd2SLukas Czerner BUG_ON(stop > PAGE_CACHE_SIZE || stop < length); 1381ca99fdd2SLukas Czerner 1382d2a17637SMingming Cao head = page_buffers(page); 1383d2a17637SMingming Cao bh = head; 1384d2a17637SMingming Cao do { 1385d2a17637SMingming Cao unsigned int next_off = curr_off + bh->b_size; 1386d2a17637SMingming Cao 1387ca99fdd2SLukas Czerner if (next_off > stop) 1388ca99fdd2SLukas Czerner break; 1389ca99fdd2SLukas Czerner 1390d2a17637SMingming Cao if ((offset <= curr_off) && (buffer_delay(bh))) { 1391d2a17637SMingming Cao to_release++; 1392d2a17637SMingming Cao clear_buffer_delay(bh); 1393d2a17637SMingming Cao } 1394d2a17637SMingming Cao curr_off = next_off; 1395d2a17637SMingming Cao } while ((bh = bh->b_this_page) != head); 13967b415bf6SAditya Kali 139751865fdaSZheng Liu if (to_release) { 139851865fdaSZheng Liu lblk = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits); 139951865fdaSZheng Liu ext4_es_remove_extent(inode, lblk, to_release); 140051865fdaSZheng Liu } 140151865fdaSZheng Liu 14027b415bf6SAditya Kali /* If we have released all the blocks belonging to a cluster, then we 14037b415bf6SAditya Kali * need to release the reserved space for that cluster. */ 14047b415bf6SAditya Kali num_clusters = EXT4_NUM_B2C(sbi, to_release); 14057b415bf6SAditya Kali while (num_clusters > 0) { 14067b415bf6SAditya Kali lblk = (page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits)) + 14077b415bf6SAditya Kali ((num_clusters - 1) << sbi->s_cluster_bits); 14087b415bf6SAditya Kali if (sbi->s_cluster_ratio == 1 || 14097d1b1fbcSZheng Liu !ext4_find_delalloc_cluster(inode, lblk)) 14107b415bf6SAditya Kali ext4_da_release_space(inode, 1); 14117b415bf6SAditya Kali 14127b415bf6SAditya Kali num_clusters--; 14137b415bf6SAditya Kali } 1414d2a17637SMingming Cao } 1415ac27a0ecSDave Kleikamp 1416ac27a0ecSDave Kleikamp /* 141764769240SAlex Tomas * Delayed allocation stuff 141864769240SAlex Tomas */ 141964769240SAlex Tomas 14204e7ea81dSJan Kara struct mpage_da_data { 14214e7ea81dSJan Kara struct inode *inode; 14224e7ea81dSJan Kara struct writeback_control *wbc; 14236b523df4SJan Kara 14244e7ea81dSJan Kara pgoff_t first_page; /* The first page to write */ 14254e7ea81dSJan Kara pgoff_t next_page; /* Current page to examine */ 14264e7ea81dSJan Kara pgoff_t last_page; /* Last page to examine */ 142764769240SAlex Tomas /* 14284e7ea81dSJan Kara * Extent to map - this can be after first_page because that can be 14294e7ea81dSJan Kara * fully mapped. We somewhat abuse m_flags to store whether the extent 14304e7ea81dSJan Kara * is delalloc or unwritten. 143164769240SAlex Tomas */ 14324e7ea81dSJan Kara struct ext4_map_blocks map; 14334e7ea81dSJan Kara struct ext4_io_submit io_submit; /* IO submission data */ 14344e7ea81dSJan Kara }; 143564769240SAlex Tomas 14364e7ea81dSJan Kara static void mpage_release_unused_pages(struct mpage_da_data *mpd, 14374e7ea81dSJan Kara bool invalidate) 1438c4a0c46eSAneesh Kumar K.V { 1439c4a0c46eSAneesh Kumar K.V int nr_pages, i; 1440c4a0c46eSAneesh Kumar K.V pgoff_t index, end; 1441c4a0c46eSAneesh Kumar K.V struct pagevec pvec; 1442c4a0c46eSAneesh Kumar K.V struct inode *inode = mpd->inode; 1443c4a0c46eSAneesh Kumar K.V struct address_space *mapping = inode->i_mapping; 14444e7ea81dSJan Kara 14454e7ea81dSJan Kara /* This is necessary when next_page == 0. */ 14464e7ea81dSJan Kara if (mpd->first_page >= mpd->next_page) 14474e7ea81dSJan Kara return; 1448c4a0c46eSAneesh Kumar K.V 1449c7f5938aSCurt Wohlgemuth index = mpd->first_page; 1450c7f5938aSCurt Wohlgemuth end = mpd->next_page - 1; 14514e7ea81dSJan Kara if (invalidate) { 14524e7ea81dSJan Kara ext4_lblk_t start, last; 145351865fdaSZheng Liu start = index << (PAGE_CACHE_SHIFT - inode->i_blkbits); 145451865fdaSZheng Liu last = end << (PAGE_CACHE_SHIFT - inode->i_blkbits); 145551865fdaSZheng Liu ext4_es_remove_extent(inode, start, last - start + 1); 14564e7ea81dSJan Kara } 145751865fdaSZheng Liu 145866bea92cSEric Sandeen pagevec_init(&pvec, 0); 1459c4a0c46eSAneesh Kumar K.V while (index <= end) { 1460c4a0c46eSAneesh Kumar K.V nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE); 1461c4a0c46eSAneesh Kumar K.V if (nr_pages == 0) 1462c4a0c46eSAneesh Kumar K.V break; 1463c4a0c46eSAneesh Kumar K.V for (i = 0; i < nr_pages; i++) { 1464c4a0c46eSAneesh Kumar K.V struct page *page = pvec.pages[i]; 14659b1d0998SJan Kara if (page->index > end) 1466c4a0c46eSAneesh Kumar K.V break; 1467c4a0c46eSAneesh Kumar K.V BUG_ON(!PageLocked(page)); 1468c4a0c46eSAneesh Kumar K.V BUG_ON(PageWriteback(page)); 14694e7ea81dSJan Kara if (invalidate) { 1470d47992f8SLukas Czerner block_invalidatepage(page, 0, PAGE_CACHE_SIZE); 1471c4a0c46eSAneesh Kumar K.V ClearPageUptodate(page); 14724e7ea81dSJan Kara } 1473c4a0c46eSAneesh Kumar K.V unlock_page(page); 1474c4a0c46eSAneesh Kumar K.V } 14759b1d0998SJan Kara index = pvec.pages[nr_pages - 1]->index + 1; 14769b1d0998SJan Kara pagevec_release(&pvec); 1477c4a0c46eSAneesh Kumar K.V } 1478c4a0c46eSAneesh Kumar K.V } 1479c4a0c46eSAneesh Kumar K.V 1480df22291fSAneesh Kumar K.V static void ext4_print_free_blocks(struct inode *inode) 1481df22291fSAneesh Kumar K.V { 1482df22291fSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 148392b97816STheodore Ts'o struct super_block *sb = inode->i_sb; 1484f78ee70dSLukas Czerner struct ext4_inode_info *ei = EXT4_I(inode); 148592b97816STheodore Ts'o 148692b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld", 14875dee5437STheodore Ts'o EXT4_C2B(EXT4_SB(inode->i_sb), 1488f78ee70dSLukas Czerner ext4_count_free_clusters(sb))); 148992b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Free/Dirty block details"); 149092b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "free_blocks=%lld", 1491f78ee70dSLukas Czerner (long long) EXT4_C2B(EXT4_SB(sb), 149257042651STheodore Ts'o percpu_counter_sum(&sbi->s_freeclusters_counter))); 149392b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld", 1494f78ee70dSLukas Czerner (long long) EXT4_C2B(EXT4_SB(sb), 14957b415bf6SAditya Kali percpu_counter_sum(&sbi->s_dirtyclusters_counter))); 149692b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Block reservation details"); 149792b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u", 1498f78ee70dSLukas Czerner ei->i_reserved_data_blocks); 149992b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "i_reserved_meta_blocks=%u", 1500f78ee70dSLukas Czerner ei->i_reserved_meta_blocks); 1501f78ee70dSLukas Czerner ext4_msg(sb, KERN_CRIT, "i_allocated_meta_blocks=%u", 1502f78ee70dSLukas Czerner ei->i_allocated_meta_blocks); 1503df22291fSAneesh Kumar K.V return; 1504df22291fSAneesh Kumar K.V } 1505df22291fSAneesh Kumar K.V 1506c364b22cSAneesh Kumar K.V static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh) 150729fa89d0SAneesh Kumar K.V { 1508c364b22cSAneesh Kumar K.V return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh); 150929fa89d0SAneesh Kumar K.V } 151029fa89d0SAneesh Kumar K.V 151164769240SAlex Tomas /* 15125356f261SAditya Kali * This function is grabs code from the very beginning of 15135356f261SAditya Kali * ext4_map_blocks, but assumes that the caller is from delayed write 15145356f261SAditya Kali * time. This function looks up the requested blocks and sets the 15155356f261SAditya Kali * buffer delay bit under the protection of i_data_sem. 15165356f261SAditya Kali */ 15175356f261SAditya Kali static int ext4_da_map_blocks(struct inode *inode, sector_t iblock, 15185356f261SAditya Kali struct ext4_map_blocks *map, 15195356f261SAditya Kali struct buffer_head *bh) 15205356f261SAditya Kali { 1521d100eef2SZheng Liu struct extent_status es; 15225356f261SAditya Kali int retval; 15235356f261SAditya Kali sector_t invalid_block = ~((sector_t) 0xffff); 1524921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 1525921f266bSDmitry Monakhov struct ext4_map_blocks orig_map; 1526921f266bSDmitry Monakhov 1527921f266bSDmitry Monakhov memcpy(&orig_map, map, sizeof(*map)); 1528921f266bSDmitry Monakhov #endif 15295356f261SAditya Kali 15305356f261SAditya Kali if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es)) 15315356f261SAditya Kali invalid_block = ~0; 15325356f261SAditya Kali 15335356f261SAditya Kali map->m_flags = 0; 15345356f261SAditya Kali ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u," 15355356f261SAditya Kali "logical block %lu\n", inode->i_ino, map->m_len, 15365356f261SAditya Kali (unsigned long) map->m_lblk); 1537d100eef2SZheng Liu 1538d100eef2SZheng Liu /* Lookup extent status tree firstly */ 1539d100eef2SZheng Liu if (ext4_es_lookup_extent(inode, iblock, &es)) { 154063b99968STheodore Ts'o ext4_es_lru_add(inode); 1541d100eef2SZheng Liu if (ext4_es_is_hole(&es)) { 1542d100eef2SZheng Liu retval = 0; 1543d100eef2SZheng Liu down_read((&EXT4_I(inode)->i_data_sem)); 1544d100eef2SZheng Liu goto add_delayed; 1545d100eef2SZheng Liu } 1546d100eef2SZheng Liu 1547d100eef2SZheng Liu /* 1548d100eef2SZheng Liu * Delayed extent could be allocated by fallocate. 1549d100eef2SZheng Liu * So we need to check it. 1550d100eef2SZheng Liu */ 1551d100eef2SZheng Liu if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) { 1552d100eef2SZheng Liu map_bh(bh, inode->i_sb, invalid_block); 1553d100eef2SZheng Liu set_buffer_new(bh); 1554d100eef2SZheng Liu set_buffer_delay(bh); 1555d100eef2SZheng Liu return 0; 1556d100eef2SZheng Liu } 1557d100eef2SZheng Liu 1558d100eef2SZheng Liu map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk; 1559d100eef2SZheng Liu retval = es.es_len - (iblock - es.es_lblk); 1560d100eef2SZheng Liu if (retval > map->m_len) 1561d100eef2SZheng Liu retval = map->m_len; 1562d100eef2SZheng Liu map->m_len = retval; 1563d100eef2SZheng Liu if (ext4_es_is_written(&es)) 1564d100eef2SZheng Liu map->m_flags |= EXT4_MAP_MAPPED; 1565d100eef2SZheng Liu else if (ext4_es_is_unwritten(&es)) 1566d100eef2SZheng Liu map->m_flags |= EXT4_MAP_UNWRITTEN; 1567d100eef2SZheng Liu else 1568d100eef2SZheng Liu BUG_ON(1); 1569d100eef2SZheng Liu 1570921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 1571921f266bSDmitry Monakhov ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0); 1572921f266bSDmitry Monakhov #endif 1573d100eef2SZheng Liu return retval; 1574d100eef2SZheng Liu } 1575d100eef2SZheng Liu 15765356f261SAditya Kali /* 15775356f261SAditya Kali * Try to see if we can get the block without requesting a new 15785356f261SAditya Kali * file system block. 15795356f261SAditya Kali */ 15805356f261SAditya Kali down_read((&EXT4_I(inode)->i_data_sem)); 15819c3569b5STao Ma if (ext4_has_inline_data(inode)) { 15829c3569b5STao Ma /* 15839c3569b5STao Ma * We will soon create blocks for this page, and let 15849c3569b5STao Ma * us pretend as if the blocks aren't allocated yet. 15859c3569b5STao Ma * In case of clusters, we have to handle the work 15869c3569b5STao Ma * of mapping from cluster so that the reserved space 15879c3569b5STao Ma * is calculated properly. 15889c3569b5STao Ma */ 15899c3569b5STao Ma if ((EXT4_SB(inode->i_sb)->s_cluster_ratio > 1) && 15909c3569b5STao Ma ext4_find_delalloc_cluster(inode, map->m_lblk)) 15919c3569b5STao Ma map->m_flags |= EXT4_MAP_FROM_CLUSTER; 15929c3569b5STao Ma retval = 0; 15939c3569b5STao Ma } else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 1594d100eef2SZheng Liu retval = ext4_ext_map_blocks(NULL, inode, map, 1595d100eef2SZheng Liu EXT4_GET_BLOCKS_NO_PUT_HOLE); 15965356f261SAditya Kali else 1597d100eef2SZheng Liu retval = ext4_ind_map_blocks(NULL, inode, map, 1598d100eef2SZheng Liu EXT4_GET_BLOCKS_NO_PUT_HOLE); 15995356f261SAditya Kali 1600d100eef2SZheng Liu add_delayed: 16015356f261SAditya Kali if (retval == 0) { 1602f7fec032SZheng Liu int ret; 16035356f261SAditya Kali /* 16045356f261SAditya Kali * XXX: __block_prepare_write() unmaps passed block, 16055356f261SAditya Kali * is it OK? 16065356f261SAditya Kali */ 1607386ad67cSLukas Czerner /* 1608386ad67cSLukas Czerner * If the block was allocated from previously allocated cluster, 1609386ad67cSLukas Czerner * then we don't need to reserve it again. However we still need 1610386ad67cSLukas Czerner * to reserve metadata for every block we're going to write. 1611386ad67cSLukas Czerner */ 16125356f261SAditya Kali if (!(map->m_flags & EXT4_MAP_FROM_CLUSTER)) { 1613f7fec032SZheng Liu ret = ext4_da_reserve_space(inode, iblock); 1614f7fec032SZheng Liu if (ret) { 16155356f261SAditya Kali /* not enough space to reserve */ 1616f7fec032SZheng Liu retval = ret; 16175356f261SAditya Kali goto out_unlock; 16185356f261SAditya Kali } 1619386ad67cSLukas Czerner } else { 1620386ad67cSLukas Czerner ret = ext4_da_reserve_metadata(inode, iblock); 1621386ad67cSLukas Czerner if (ret) { 1622386ad67cSLukas Czerner /* not enough space to reserve */ 1623386ad67cSLukas Czerner retval = ret; 1624386ad67cSLukas Czerner goto out_unlock; 1625386ad67cSLukas Czerner } 1626f7fec032SZheng Liu } 16275356f261SAditya Kali 1628f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 1629fdc0212eSZheng Liu ~0, EXTENT_STATUS_DELAYED); 1630f7fec032SZheng Liu if (ret) { 1631f7fec032SZheng Liu retval = ret; 163251865fdaSZheng Liu goto out_unlock; 1633f7fec032SZheng Liu } 163451865fdaSZheng Liu 16355356f261SAditya Kali /* Clear EXT4_MAP_FROM_CLUSTER flag since its purpose is served 16365356f261SAditya Kali * and it should not appear on the bh->b_state. 16375356f261SAditya Kali */ 16385356f261SAditya Kali map->m_flags &= ~EXT4_MAP_FROM_CLUSTER; 16395356f261SAditya Kali 16405356f261SAditya Kali map_bh(bh, inode->i_sb, invalid_block); 16415356f261SAditya Kali set_buffer_new(bh); 16425356f261SAditya Kali set_buffer_delay(bh); 1643f7fec032SZheng Liu } else if (retval > 0) { 1644f7fec032SZheng Liu int ret; 16453be78c73STheodore Ts'o unsigned int status; 1646f7fec032SZheng Liu 164744fb851dSZheng Liu if (unlikely(retval != map->m_len)) { 164844fb851dSZheng Liu ext4_warning(inode->i_sb, 164944fb851dSZheng Liu "ES len assertion failed for inode " 165044fb851dSZheng Liu "%lu: retval %d != map->m_len %d", 165144fb851dSZheng Liu inode->i_ino, retval, map->m_len); 165244fb851dSZheng Liu WARN_ON(1); 1653921f266bSDmitry Monakhov } 1654921f266bSDmitry Monakhov 1655f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 1656f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 1657f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 1658f7fec032SZheng Liu map->m_pblk, status); 1659f7fec032SZheng Liu if (ret != 0) 1660f7fec032SZheng Liu retval = ret; 16615356f261SAditya Kali } 16625356f261SAditya Kali 16635356f261SAditya Kali out_unlock: 16645356f261SAditya Kali up_read((&EXT4_I(inode)->i_data_sem)); 16655356f261SAditya Kali 16665356f261SAditya Kali return retval; 16675356f261SAditya Kali } 16685356f261SAditya Kali 16695356f261SAditya Kali /* 1670b920c755STheodore Ts'o * This is a special get_blocks_t callback which is used by 1671b920c755STheodore Ts'o * ext4_da_write_begin(). It will either return mapped block or 1672b920c755STheodore Ts'o * reserve space for a single block. 167329fa89d0SAneesh Kumar K.V * 167429fa89d0SAneesh Kumar K.V * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set. 167529fa89d0SAneesh Kumar K.V * We also have b_blocknr = -1 and b_bdev initialized properly 167629fa89d0SAneesh Kumar K.V * 167729fa89d0SAneesh Kumar K.V * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set. 167829fa89d0SAneesh Kumar K.V * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev 167929fa89d0SAneesh Kumar K.V * initialized properly. 168064769240SAlex Tomas */ 16819c3569b5STao Ma int ext4_da_get_block_prep(struct inode *inode, sector_t iblock, 16822ed88685STheodore Ts'o struct buffer_head *bh, int create) 168364769240SAlex Tomas { 16842ed88685STheodore Ts'o struct ext4_map_blocks map; 168564769240SAlex Tomas int ret = 0; 168664769240SAlex Tomas 168764769240SAlex Tomas BUG_ON(create == 0); 16882ed88685STheodore Ts'o BUG_ON(bh->b_size != inode->i_sb->s_blocksize); 16892ed88685STheodore Ts'o 16902ed88685STheodore Ts'o map.m_lblk = iblock; 16912ed88685STheodore Ts'o map.m_len = 1; 169264769240SAlex Tomas 169364769240SAlex Tomas /* 169464769240SAlex Tomas * first, we need to know whether the block is allocated already 169564769240SAlex Tomas * preallocated blocks are unmapped but should treated 169664769240SAlex Tomas * the same as allocated blocks. 169764769240SAlex Tomas */ 16985356f261SAditya Kali ret = ext4_da_map_blocks(inode, iblock, &map, bh); 16995356f261SAditya Kali if (ret <= 0) 17002ed88685STheodore Ts'o return ret; 170164769240SAlex Tomas 17022ed88685STheodore Ts'o map_bh(bh, inode->i_sb, map.m_pblk); 17032ed88685STheodore Ts'o bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags; 17042ed88685STheodore Ts'o 17052ed88685STheodore Ts'o if (buffer_unwritten(bh)) { 17062ed88685STheodore Ts'o /* A delayed write to unwritten bh should be marked 17072ed88685STheodore Ts'o * new and mapped. Mapped ensures that we don't do 17082ed88685STheodore Ts'o * get_block multiple times when we write to the same 17092ed88685STheodore Ts'o * offset and new ensures that we do proper zero out 17102ed88685STheodore Ts'o * for partial write. 17112ed88685STheodore Ts'o */ 17122ed88685STheodore Ts'o set_buffer_new(bh); 1713c8205636STheodore Ts'o set_buffer_mapped(bh); 17142ed88685STheodore Ts'o } 17152ed88685STheodore Ts'o return 0; 171664769240SAlex Tomas } 171761628a3fSMingming Cao 171862e086beSAneesh Kumar K.V static int bget_one(handle_t *handle, struct buffer_head *bh) 171962e086beSAneesh Kumar K.V { 172062e086beSAneesh Kumar K.V get_bh(bh); 172162e086beSAneesh Kumar K.V return 0; 172262e086beSAneesh Kumar K.V } 172362e086beSAneesh Kumar K.V 172462e086beSAneesh Kumar K.V static int bput_one(handle_t *handle, struct buffer_head *bh) 172562e086beSAneesh Kumar K.V { 172662e086beSAneesh Kumar K.V put_bh(bh); 172762e086beSAneesh Kumar K.V return 0; 172862e086beSAneesh Kumar K.V } 172962e086beSAneesh Kumar K.V 173062e086beSAneesh Kumar K.V static int __ext4_journalled_writepage(struct page *page, 173162e086beSAneesh Kumar K.V unsigned int len) 173262e086beSAneesh Kumar K.V { 173362e086beSAneesh Kumar K.V struct address_space *mapping = page->mapping; 173462e086beSAneesh Kumar K.V struct inode *inode = mapping->host; 17353fdcfb66STao Ma struct buffer_head *page_bufs = NULL; 173662e086beSAneesh Kumar K.V handle_t *handle = NULL; 17373fdcfb66STao Ma int ret = 0, err = 0; 17383fdcfb66STao Ma int inline_data = ext4_has_inline_data(inode); 17393fdcfb66STao Ma struct buffer_head *inode_bh = NULL; 174062e086beSAneesh Kumar K.V 1741cb20d518STheodore Ts'o ClearPageChecked(page); 17423fdcfb66STao Ma 17433fdcfb66STao Ma if (inline_data) { 17443fdcfb66STao Ma BUG_ON(page->index != 0); 17453fdcfb66STao Ma BUG_ON(len > ext4_get_max_inline_size(inode)); 17463fdcfb66STao Ma inode_bh = ext4_journalled_write_inline_data(inode, len, page); 17473fdcfb66STao Ma if (inode_bh == NULL) 17483fdcfb66STao Ma goto out; 17493fdcfb66STao Ma } else { 175062e086beSAneesh Kumar K.V page_bufs = page_buffers(page); 17513fdcfb66STao Ma if (!page_bufs) { 17523fdcfb66STao Ma BUG(); 17533fdcfb66STao Ma goto out; 17543fdcfb66STao Ma } 17553fdcfb66STao Ma ext4_walk_page_buffers(handle, page_bufs, 0, len, 17563fdcfb66STao Ma NULL, bget_one); 17573fdcfb66STao Ma } 175862e086beSAneesh Kumar K.V /* As soon as we unlock the page, it can go away, but we have 175962e086beSAneesh Kumar K.V * references to buffers so we are safe */ 176062e086beSAneesh Kumar K.V unlock_page(page); 176162e086beSAneesh Kumar K.V 17629924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 17639924a92aSTheodore Ts'o ext4_writepage_trans_blocks(inode)); 176462e086beSAneesh Kumar K.V if (IS_ERR(handle)) { 176562e086beSAneesh Kumar K.V ret = PTR_ERR(handle); 176662e086beSAneesh Kumar K.V goto out; 176762e086beSAneesh Kumar K.V } 176862e086beSAneesh Kumar K.V 1769441c8508SCurt Wohlgemuth BUG_ON(!ext4_handle_valid(handle)); 1770441c8508SCurt Wohlgemuth 17713fdcfb66STao Ma if (inline_data) { 17723fdcfb66STao Ma ret = ext4_journal_get_write_access(handle, inode_bh); 17733fdcfb66STao Ma 17743fdcfb66STao Ma err = ext4_handle_dirty_metadata(handle, inode, inode_bh); 17753fdcfb66STao Ma 17763fdcfb66STao Ma } else { 1777f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL, 177862e086beSAneesh Kumar K.V do_journal_get_write_access); 177962e086beSAneesh Kumar K.V 1780f19d5870STao Ma err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL, 178162e086beSAneesh Kumar K.V write_end_fn); 17823fdcfb66STao Ma } 178362e086beSAneesh Kumar K.V if (ret == 0) 178462e086beSAneesh Kumar K.V ret = err; 17852d859db3SJan Kara EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid; 178662e086beSAneesh Kumar K.V err = ext4_journal_stop(handle); 178762e086beSAneesh Kumar K.V if (!ret) 178862e086beSAneesh Kumar K.V ret = err; 178962e086beSAneesh Kumar K.V 17903fdcfb66STao Ma if (!ext4_has_inline_data(inode)) 17918c9367fdSTheodore Ts'o ext4_walk_page_buffers(NULL, page_bufs, 0, len, 17923fdcfb66STao Ma NULL, bput_one); 179319f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_JDATA); 179462e086beSAneesh Kumar K.V out: 17953fdcfb66STao Ma brelse(inode_bh); 179662e086beSAneesh Kumar K.V return ret; 179762e086beSAneesh Kumar K.V } 179862e086beSAneesh Kumar K.V 179961628a3fSMingming Cao /* 180043ce1d23SAneesh Kumar K.V * Note that we don't need to start a transaction unless we're journaling data 180143ce1d23SAneesh Kumar K.V * because we should have holes filled from ext4_page_mkwrite(). We even don't 180243ce1d23SAneesh Kumar K.V * need to file the inode to the transaction's list in ordered mode because if 180343ce1d23SAneesh Kumar K.V * we are writing back data added by write(), the inode is already there and if 180443ce1d23SAneesh Kumar K.V * we are writing back data modified via mmap(), no one guarantees in which 180543ce1d23SAneesh Kumar K.V * transaction the data will hit the disk. In case we are journaling data, we 180643ce1d23SAneesh Kumar K.V * cannot start transaction directly because transaction start ranks above page 180743ce1d23SAneesh Kumar K.V * lock so we have to do some magic. 180843ce1d23SAneesh Kumar K.V * 1809b920c755STheodore Ts'o * This function can get called via... 181020970ba6STheodore Ts'o * - ext4_writepages after taking page lock (have journal handle) 1811b920c755STheodore Ts'o * - journal_submit_inode_data_buffers (no journal handle) 1812f6463b0dSArtem Bityutskiy * - shrink_page_list via the kswapd/direct reclaim (no journal handle) 1813b920c755STheodore Ts'o * - grab_page_cache when doing write_begin (have journal handle) 181443ce1d23SAneesh Kumar K.V * 181543ce1d23SAneesh Kumar K.V * We don't do any block allocation in this function. If we have page with 181643ce1d23SAneesh Kumar K.V * multiple blocks we need to write those buffer_heads that are mapped. This 181743ce1d23SAneesh Kumar K.V * is important for mmaped based write. So if we do with blocksize 1K 181843ce1d23SAneesh Kumar K.V * truncate(f, 1024); 181943ce1d23SAneesh Kumar K.V * a = mmap(f, 0, 4096); 182043ce1d23SAneesh Kumar K.V * a[0] = 'a'; 182143ce1d23SAneesh Kumar K.V * truncate(f, 4096); 182243ce1d23SAneesh Kumar K.V * we have in the page first buffer_head mapped via page_mkwrite call back 182390802ed9SPaul Bolle * but other buffer_heads would be unmapped but dirty (dirty done via the 182443ce1d23SAneesh Kumar K.V * do_wp_page). So writepage should write the first block. If we modify 182543ce1d23SAneesh Kumar K.V * the mmap area beyond 1024 we will again get a page_fault and the 182643ce1d23SAneesh Kumar K.V * page_mkwrite callback will do the block allocation and mark the 182743ce1d23SAneesh Kumar K.V * buffer_heads mapped. 182843ce1d23SAneesh Kumar K.V * 182943ce1d23SAneesh Kumar K.V * We redirty the page if we have any buffer_heads that is either delay or 183043ce1d23SAneesh Kumar K.V * unwritten in the page. 183143ce1d23SAneesh Kumar K.V * 183243ce1d23SAneesh Kumar K.V * We can get recursively called as show below. 183343ce1d23SAneesh Kumar K.V * 183443ce1d23SAneesh Kumar K.V * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() -> 183543ce1d23SAneesh Kumar K.V * ext4_writepage() 183643ce1d23SAneesh Kumar K.V * 183743ce1d23SAneesh Kumar K.V * But since we don't do any block allocation we should not deadlock. 183843ce1d23SAneesh Kumar K.V * Page also have the dirty flag cleared so we don't get recurive page_lock. 183961628a3fSMingming Cao */ 184043ce1d23SAneesh Kumar K.V static int ext4_writepage(struct page *page, 184164769240SAlex Tomas struct writeback_control *wbc) 184264769240SAlex Tomas { 1843f8bec370SJan Kara int ret = 0; 184461628a3fSMingming Cao loff_t size; 1845498e5f24STheodore Ts'o unsigned int len; 1846744692dcSJiaying Zhang struct buffer_head *page_bufs = NULL; 184761628a3fSMingming Cao struct inode *inode = page->mapping->host; 184836ade451SJan Kara struct ext4_io_submit io_submit; 1849*1c8349a1SNamjae Jeon bool keep_towrite = false; 185064769240SAlex Tomas 1851a9c667f8SLukas Czerner trace_ext4_writepage(page); 185261628a3fSMingming Cao size = i_size_read(inode); 185361628a3fSMingming Cao if (page->index == size >> PAGE_CACHE_SHIFT) 185461628a3fSMingming Cao len = size & ~PAGE_CACHE_MASK; 185561628a3fSMingming Cao else 185661628a3fSMingming Cao len = PAGE_CACHE_SIZE; 185761628a3fSMingming Cao 1858f0e6c985SAneesh Kumar K.V page_bufs = page_buffers(page); 185964769240SAlex Tomas /* 1860fe386132SJan Kara * We cannot do block allocation or other extent handling in this 1861fe386132SJan Kara * function. If there are buffers needing that, we have to redirty 1862fe386132SJan Kara * the page. But we may reach here when we do a journal commit via 1863fe386132SJan Kara * journal_submit_inode_data_buffers() and in that case we must write 1864fe386132SJan Kara * allocated buffers to achieve data=ordered mode guarantees. 186564769240SAlex Tomas */ 1866f19d5870STao Ma if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL, 1867c364b22cSAneesh Kumar K.V ext4_bh_delay_or_unwritten)) { 186861628a3fSMingming Cao redirty_page_for_writepage(wbc, page); 1869fe386132SJan Kara if (current->flags & PF_MEMALLOC) { 1870fe386132SJan Kara /* 1871fe386132SJan Kara * For memory cleaning there's no point in writing only 1872fe386132SJan Kara * some buffers. So just bail out. Warn if we came here 1873fe386132SJan Kara * from direct reclaim. 1874fe386132SJan Kara */ 1875fe386132SJan Kara WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD)) 1876fe386132SJan Kara == PF_MEMALLOC); 187761628a3fSMingming Cao unlock_page(page); 187861628a3fSMingming Cao return 0; 187961628a3fSMingming Cao } 1880*1c8349a1SNamjae Jeon keep_towrite = true; 1881f0e6c985SAneesh Kumar K.V } 188264769240SAlex Tomas 1883cb20d518STheodore Ts'o if (PageChecked(page) && ext4_should_journal_data(inode)) 188443ce1d23SAneesh Kumar K.V /* 188543ce1d23SAneesh Kumar K.V * It's mmapped pagecache. Add buffers and journal it. There 188643ce1d23SAneesh Kumar K.V * doesn't seem much point in redirtying the page here. 188743ce1d23SAneesh Kumar K.V */ 18883f0ca309SWu Fengguang return __ext4_journalled_writepage(page, len); 188943ce1d23SAneesh Kumar K.V 189097a851edSJan Kara ext4_io_submit_init(&io_submit, wbc); 189197a851edSJan Kara io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS); 189297a851edSJan Kara if (!io_submit.io_end) { 189397a851edSJan Kara redirty_page_for_writepage(wbc, page); 189497a851edSJan Kara unlock_page(page); 189597a851edSJan Kara return -ENOMEM; 189697a851edSJan Kara } 1897*1c8349a1SNamjae Jeon ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite); 189836ade451SJan Kara ext4_io_submit(&io_submit); 189997a851edSJan Kara /* Drop io_end reference we got from init */ 190097a851edSJan Kara ext4_put_io_end_defer(io_submit.io_end); 190164769240SAlex Tomas return ret; 190264769240SAlex Tomas } 190364769240SAlex Tomas 19045f1132b2SJan Kara static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page) 19055f1132b2SJan Kara { 19065f1132b2SJan Kara int len; 19075f1132b2SJan Kara loff_t size = i_size_read(mpd->inode); 19085f1132b2SJan Kara int err; 19095f1132b2SJan Kara 19105f1132b2SJan Kara BUG_ON(page->index != mpd->first_page); 19115f1132b2SJan Kara if (page->index == size >> PAGE_CACHE_SHIFT) 19125f1132b2SJan Kara len = size & ~PAGE_CACHE_MASK; 19135f1132b2SJan Kara else 19145f1132b2SJan Kara len = PAGE_CACHE_SIZE; 19155f1132b2SJan Kara clear_page_dirty_for_io(page); 1916*1c8349a1SNamjae Jeon err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false); 19175f1132b2SJan Kara if (!err) 19185f1132b2SJan Kara mpd->wbc->nr_to_write--; 19195f1132b2SJan Kara mpd->first_page++; 19205f1132b2SJan Kara 19215f1132b2SJan Kara return err; 19225f1132b2SJan Kara } 19235f1132b2SJan Kara 19244e7ea81dSJan Kara #define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay)) 19254e7ea81dSJan Kara 192661628a3fSMingming Cao /* 1927fffb2739SJan Kara * mballoc gives us at most this number of blocks... 1928fffb2739SJan Kara * XXX: That seems to be only a limitation of ext4_mb_normalize_request(). 1929fffb2739SJan Kara * The rest of mballoc seems to handle chunks up to full group size. 193061628a3fSMingming Cao */ 1931fffb2739SJan Kara #define MAX_WRITEPAGES_EXTENT_LEN 2048 1932525f4ed8SMingming Cao 1933525f4ed8SMingming Cao /* 19344e7ea81dSJan Kara * mpage_add_bh_to_extent - try to add bh to extent of blocks to map 19354e7ea81dSJan Kara * 19364e7ea81dSJan Kara * @mpd - extent of blocks 19374e7ea81dSJan Kara * @lblk - logical number of the block in the file 193809930042SJan Kara * @bh - buffer head we want to add to the extent 19394e7ea81dSJan Kara * 194009930042SJan Kara * The function is used to collect contig. blocks in the same state. If the 194109930042SJan Kara * buffer doesn't require mapping for writeback and we haven't started the 194209930042SJan Kara * extent of buffers to map yet, the function returns 'true' immediately - the 194309930042SJan Kara * caller can write the buffer right away. Otherwise the function returns true 194409930042SJan Kara * if the block has been added to the extent, false if the block couldn't be 194509930042SJan Kara * added. 19464e7ea81dSJan Kara */ 194709930042SJan Kara static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk, 194809930042SJan Kara struct buffer_head *bh) 19494e7ea81dSJan Kara { 19504e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 19514e7ea81dSJan Kara 195209930042SJan Kara /* Buffer that doesn't need mapping for writeback? */ 195309930042SJan Kara if (!buffer_dirty(bh) || !buffer_mapped(bh) || 195409930042SJan Kara (!buffer_delay(bh) && !buffer_unwritten(bh))) { 195509930042SJan Kara /* So far no extent to map => we write the buffer right away */ 195609930042SJan Kara if (map->m_len == 0) 195709930042SJan Kara return true; 195809930042SJan Kara return false; 195909930042SJan Kara } 19604e7ea81dSJan Kara 19614e7ea81dSJan Kara /* First block in the extent? */ 19624e7ea81dSJan Kara if (map->m_len == 0) { 19634e7ea81dSJan Kara map->m_lblk = lblk; 19644e7ea81dSJan Kara map->m_len = 1; 196509930042SJan Kara map->m_flags = bh->b_state & BH_FLAGS; 196609930042SJan Kara return true; 19674e7ea81dSJan Kara } 19684e7ea81dSJan Kara 196909930042SJan Kara /* Don't go larger than mballoc is willing to allocate */ 197009930042SJan Kara if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN) 197109930042SJan Kara return false; 197209930042SJan Kara 19734e7ea81dSJan Kara /* Can we merge the block to our big extent? */ 19744e7ea81dSJan Kara if (lblk == map->m_lblk + map->m_len && 197509930042SJan Kara (bh->b_state & BH_FLAGS) == map->m_flags) { 19764e7ea81dSJan Kara map->m_len++; 197709930042SJan Kara return true; 19784e7ea81dSJan Kara } 197909930042SJan Kara return false; 19804e7ea81dSJan Kara } 19814e7ea81dSJan Kara 19825f1132b2SJan Kara /* 19835f1132b2SJan Kara * mpage_process_page_bufs - submit page buffers for IO or add them to extent 19845f1132b2SJan Kara * 19855f1132b2SJan Kara * @mpd - extent of blocks for mapping 19865f1132b2SJan Kara * @head - the first buffer in the page 19875f1132b2SJan Kara * @bh - buffer we should start processing from 19885f1132b2SJan Kara * @lblk - logical number of the block in the file corresponding to @bh 19895f1132b2SJan Kara * 19905f1132b2SJan Kara * Walk through page buffers from @bh upto @head (exclusive) and either submit 19915f1132b2SJan Kara * the page for IO if all buffers in this page were mapped and there's no 19925f1132b2SJan Kara * accumulated extent of buffers to map or add buffers in the page to the 19935f1132b2SJan Kara * extent of buffers to map. The function returns 1 if the caller can continue 19945f1132b2SJan Kara * by processing the next page, 0 if it should stop adding buffers to the 19955f1132b2SJan Kara * extent to map because we cannot extend it anymore. It can also return value 19965f1132b2SJan Kara * < 0 in case of error during IO submission. 19975f1132b2SJan Kara */ 19985f1132b2SJan Kara static int mpage_process_page_bufs(struct mpage_da_data *mpd, 19994e7ea81dSJan Kara struct buffer_head *head, 20004e7ea81dSJan Kara struct buffer_head *bh, 20014e7ea81dSJan Kara ext4_lblk_t lblk) 20024e7ea81dSJan Kara { 20034e7ea81dSJan Kara struct inode *inode = mpd->inode; 20045f1132b2SJan Kara int err; 20054e7ea81dSJan Kara ext4_lblk_t blocks = (i_size_read(inode) + (1 << inode->i_blkbits) - 1) 20064e7ea81dSJan Kara >> inode->i_blkbits; 20074e7ea81dSJan Kara 20084e7ea81dSJan Kara do { 20094e7ea81dSJan Kara BUG_ON(buffer_locked(bh)); 20104e7ea81dSJan Kara 201109930042SJan Kara if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) { 20124e7ea81dSJan Kara /* Found extent to map? */ 20134e7ea81dSJan Kara if (mpd->map.m_len) 20145f1132b2SJan Kara return 0; 201509930042SJan Kara /* Everything mapped so far and we hit EOF */ 20165f1132b2SJan Kara break; 20174e7ea81dSJan Kara } 20184e7ea81dSJan Kara } while (lblk++, (bh = bh->b_this_page) != head); 20195f1132b2SJan Kara /* So far everything mapped? Submit the page for IO. */ 20205f1132b2SJan Kara if (mpd->map.m_len == 0) { 20215f1132b2SJan Kara err = mpage_submit_page(mpd, head->b_page); 20225f1132b2SJan Kara if (err < 0) 20234e7ea81dSJan Kara return err; 20244e7ea81dSJan Kara } 20255f1132b2SJan Kara return lblk < blocks; 20265f1132b2SJan Kara } 20274e7ea81dSJan Kara 20284e7ea81dSJan Kara /* 20294e7ea81dSJan Kara * mpage_map_buffers - update buffers corresponding to changed extent and 20304e7ea81dSJan Kara * submit fully mapped pages for IO 20314e7ea81dSJan Kara * 20324e7ea81dSJan Kara * @mpd - description of extent to map, on return next extent to map 20334e7ea81dSJan Kara * 20344e7ea81dSJan Kara * Scan buffers corresponding to changed extent (we expect corresponding pages 20354e7ea81dSJan Kara * to be already locked) and update buffer state according to new extent state. 20364e7ea81dSJan Kara * We map delalloc buffers to their physical location, clear unwritten bits, 2037556615dcSLukas Czerner * and mark buffers as uninit when we perform writes to unwritten extents 20384e7ea81dSJan Kara * and do extent conversion after IO is finished. If the last page is not fully 20394e7ea81dSJan Kara * mapped, we update @map to the next extent in the last page that needs 20404e7ea81dSJan Kara * mapping. Otherwise we submit the page for IO. 20414e7ea81dSJan Kara */ 20424e7ea81dSJan Kara static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd) 20434e7ea81dSJan Kara { 20444e7ea81dSJan Kara struct pagevec pvec; 20454e7ea81dSJan Kara int nr_pages, i; 20464e7ea81dSJan Kara struct inode *inode = mpd->inode; 20474e7ea81dSJan Kara struct buffer_head *head, *bh; 20484e7ea81dSJan Kara int bpp_bits = PAGE_CACHE_SHIFT - inode->i_blkbits; 20494e7ea81dSJan Kara pgoff_t start, end; 20504e7ea81dSJan Kara ext4_lblk_t lblk; 20514e7ea81dSJan Kara sector_t pblock; 20524e7ea81dSJan Kara int err; 20534e7ea81dSJan Kara 20544e7ea81dSJan Kara start = mpd->map.m_lblk >> bpp_bits; 20554e7ea81dSJan Kara end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits; 20564e7ea81dSJan Kara lblk = start << bpp_bits; 20574e7ea81dSJan Kara pblock = mpd->map.m_pblk; 20584e7ea81dSJan Kara 20594e7ea81dSJan Kara pagevec_init(&pvec, 0); 20604e7ea81dSJan Kara while (start <= end) { 20614e7ea81dSJan Kara nr_pages = pagevec_lookup(&pvec, inode->i_mapping, start, 20624e7ea81dSJan Kara PAGEVEC_SIZE); 20634e7ea81dSJan Kara if (nr_pages == 0) 20644e7ea81dSJan Kara break; 20654e7ea81dSJan Kara for (i = 0; i < nr_pages; i++) { 20664e7ea81dSJan Kara struct page *page = pvec.pages[i]; 20674e7ea81dSJan Kara 20684e7ea81dSJan Kara if (page->index > end) 20694e7ea81dSJan Kara break; 20704e7ea81dSJan Kara /* Up to 'end' pages must be contiguous */ 20714e7ea81dSJan Kara BUG_ON(page->index != start); 20724e7ea81dSJan Kara bh = head = page_buffers(page); 20734e7ea81dSJan Kara do { 20744e7ea81dSJan Kara if (lblk < mpd->map.m_lblk) 20754e7ea81dSJan Kara continue; 20764e7ea81dSJan Kara if (lblk >= mpd->map.m_lblk + mpd->map.m_len) { 20774e7ea81dSJan Kara /* 20784e7ea81dSJan Kara * Buffer after end of mapped extent. 20794e7ea81dSJan Kara * Find next buffer in the page to map. 20804e7ea81dSJan Kara */ 20814e7ea81dSJan Kara mpd->map.m_len = 0; 20824e7ea81dSJan Kara mpd->map.m_flags = 0; 20835f1132b2SJan Kara /* 20845f1132b2SJan Kara * FIXME: If dioread_nolock supports 20855f1132b2SJan Kara * blocksize < pagesize, we need to make 20865f1132b2SJan Kara * sure we add size mapped so far to 20875f1132b2SJan Kara * io_end->size as the following call 20885f1132b2SJan Kara * can submit the page for IO. 20895f1132b2SJan Kara */ 20905f1132b2SJan Kara err = mpage_process_page_bufs(mpd, head, 20915f1132b2SJan Kara bh, lblk); 20924e7ea81dSJan Kara pagevec_release(&pvec); 20935f1132b2SJan Kara if (err > 0) 20945f1132b2SJan Kara err = 0; 20955f1132b2SJan Kara return err; 20964e7ea81dSJan Kara } 20974e7ea81dSJan Kara if (buffer_delay(bh)) { 20984e7ea81dSJan Kara clear_buffer_delay(bh); 20994e7ea81dSJan Kara bh->b_blocknr = pblock++; 21004e7ea81dSJan Kara } 21014e7ea81dSJan Kara clear_buffer_unwritten(bh); 21025f1132b2SJan Kara } while (lblk++, (bh = bh->b_this_page) != head); 21034e7ea81dSJan Kara 21044e7ea81dSJan Kara /* 21054e7ea81dSJan Kara * FIXME: This is going to break if dioread_nolock 21064e7ea81dSJan Kara * supports blocksize < pagesize as we will try to 21074e7ea81dSJan Kara * convert potentially unmapped parts of inode. 21084e7ea81dSJan Kara */ 21094e7ea81dSJan Kara mpd->io_submit.io_end->size += PAGE_CACHE_SIZE; 21104e7ea81dSJan Kara /* Page fully mapped - let IO run! */ 21114e7ea81dSJan Kara err = mpage_submit_page(mpd, page); 21124e7ea81dSJan Kara if (err < 0) { 21134e7ea81dSJan Kara pagevec_release(&pvec); 21144e7ea81dSJan Kara return err; 21154e7ea81dSJan Kara } 21164e7ea81dSJan Kara start++; 21174e7ea81dSJan Kara } 21184e7ea81dSJan Kara pagevec_release(&pvec); 21194e7ea81dSJan Kara } 21204e7ea81dSJan Kara /* Extent fully mapped and matches with page boundary. We are done. */ 21214e7ea81dSJan Kara mpd->map.m_len = 0; 21224e7ea81dSJan Kara mpd->map.m_flags = 0; 21234e7ea81dSJan Kara return 0; 21244e7ea81dSJan Kara } 21254e7ea81dSJan Kara 21264e7ea81dSJan Kara static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd) 21274e7ea81dSJan Kara { 21284e7ea81dSJan Kara struct inode *inode = mpd->inode; 21294e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 21304e7ea81dSJan Kara int get_blocks_flags; 2131090f32eeSLukas Czerner int err, dioread_nolock; 21324e7ea81dSJan Kara 21334e7ea81dSJan Kara trace_ext4_da_write_pages_extent(inode, map); 21344e7ea81dSJan Kara /* 21354e7ea81dSJan Kara * Call ext4_map_blocks() to allocate any delayed allocation blocks, or 2136556615dcSLukas Czerner * to convert an unwritten extent to be initialized (in the case 21374e7ea81dSJan Kara * where we have written into one or more preallocated blocks). It is 21384e7ea81dSJan Kara * possible that we're going to need more metadata blocks than 21394e7ea81dSJan Kara * previously reserved. However we must not fail because we're in 21404e7ea81dSJan Kara * writeback and there is nothing we can do about it so it might result 21414e7ea81dSJan Kara * in data loss. So use reserved blocks to allocate metadata if 21424e7ea81dSJan Kara * possible. 21434e7ea81dSJan Kara * 21444e7ea81dSJan Kara * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if the blocks 21454e7ea81dSJan Kara * in question are delalloc blocks. This affects functions in many 21464e7ea81dSJan Kara * different parts of the allocation call path. This flag exists 21474e7ea81dSJan Kara * primarily because we don't want to change *many* call functions, so 21484e7ea81dSJan Kara * ext4_map_blocks() will set the EXT4_STATE_DELALLOC_RESERVED flag 21494e7ea81dSJan Kara * once the inode's allocation semaphore is taken. 21504e7ea81dSJan Kara */ 21514e7ea81dSJan Kara get_blocks_flags = EXT4_GET_BLOCKS_CREATE | 21524e7ea81dSJan Kara EXT4_GET_BLOCKS_METADATA_NOFAIL; 2153090f32eeSLukas Czerner dioread_nolock = ext4_should_dioread_nolock(inode); 2154090f32eeSLukas Czerner if (dioread_nolock) 21554e7ea81dSJan Kara get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT; 21564e7ea81dSJan Kara if (map->m_flags & (1 << BH_Delay)) 21574e7ea81dSJan Kara get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE; 21584e7ea81dSJan Kara 21594e7ea81dSJan Kara err = ext4_map_blocks(handle, inode, map, get_blocks_flags); 21604e7ea81dSJan Kara if (err < 0) 21614e7ea81dSJan Kara return err; 2162090f32eeSLukas Czerner if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) { 21636b523df4SJan Kara if (!mpd->io_submit.io_end->handle && 21646b523df4SJan Kara ext4_handle_valid(handle)) { 21656b523df4SJan Kara mpd->io_submit.io_end->handle = handle->h_rsv_handle; 21666b523df4SJan Kara handle->h_rsv_handle = NULL; 21676b523df4SJan Kara } 21683613d228SJan Kara ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end); 21696b523df4SJan Kara } 21704e7ea81dSJan Kara 21714e7ea81dSJan Kara BUG_ON(map->m_len == 0); 21724e7ea81dSJan Kara if (map->m_flags & EXT4_MAP_NEW) { 21734e7ea81dSJan Kara struct block_device *bdev = inode->i_sb->s_bdev; 21744e7ea81dSJan Kara int i; 21754e7ea81dSJan Kara 21764e7ea81dSJan Kara for (i = 0; i < map->m_len; i++) 21774e7ea81dSJan Kara unmap_underlying_metadata(bdev, map->m_pblk + i); 21784e7ea81dSJan Kara } 21794e7ea81dSJan Kara return 0; 21804e7ea81dSJan Kara } 21814e7ea81dSJan Kara 21824e7ea81dSJan Kara /* 21834e7ea81dSJan Kara * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length 21844e7ea81dSJan Kara * mpd->len and submit pages underlying it for IO 21854e7ea81dSJan Kara * 21864e7ea81dSJan Kara * @handle - handle for journal operations 21874e7ea81dSJan Kara * @mpd - extent to map 21887534e854SJan Kara * @give_up_on_write - we set this to true iff there is a fatal error and there 21897534e854SJan Kara * is no hope of writing the data. The caller should discard 21907534e854SJan Kara * dirty pages to avoid infinite loops. 21914e7ea81dSJan Kara * 21924e7ea81dSJan Kara * The function maps extent starting at mpd->lblk of length mpd->len. If it is 21934e7ea81dSJan Kara * delayed, blocks are allocated, if it is unwritten, we may need to convert 21944e7ea81dSJan Kara * them to initialized or split the described range from larger unwritten 21954e7ea81dSJan Kara * extent. Note that we need not map all the described range since allocation 21964e7ea81dSJan Kara * can return less blocks or the range is covered by more unwritten extents. We 21974e7ea81dSJan Kara * cannot map more because we are limited by reserved transaction credits. On 21984e7ea81dSJan Kara * the other hand we always make sure that the last touched page is fully 21994e7ea81dSJan Kara * mapped so that it can be written out (and thus forward progress is 22004e7ea81dSJan Kara * guaranteed). After mapping we submit all mapped pages for IO. 22014e7ea81dSJan Kara */ 22024e7ea81dSJan Kara static int mpage_map_and_submit_extent(handle_t *handle, 2203cb530541STheodore Ts'o struct mpage_da_data *mpd, 2204cb530541STheodore Ts'o bool *give_up_on_write) 22054e7ea81dSJan Kara { 22064e7ea81dSJan Kara struct inode *inode = mpd->inode; 22074e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 22084e7ea81dSJan Kara int err; 22094e7ea81dSJan Kara loff_t disksize; 22104e7ea81dSJan Kara 22114e7ea81dSJan Kara mpd->io_submit.io_end->offset = 22124e7ea81dSJan Kara ((loff_t)map->m_lblk) << inode->i_blkbits; 221327d7c4edSJan Kara do { 22144e7ea81dSJan Kara err = mpage_map_one_extent(handle, mpd); 22154e7ea81dSJan Kara if (err < 0) { 22164e7ea81dSJan Kara struct super_block *sb = inode->i_sb; 22174e7ea81dSJan Kara 2218cb530541STheodore Ts'o if (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED) 2219cb530541STheodore Ts'o goto invalidate_dirty_pages; 22204e7ea81dSJan Kara /* 2221cb530541STheodore Ts'o * Let the uper layers retry transient errors. 2222cb530541STheodore Ts'o * In the case of ENOSPC, if ext4_count_free_blocks() 2223cb530541STheodore Ts'o * is non-zero, a commit should free up blocks. 22244e7ea81dSJan Kara */ 2225cb530541STheodore Ts'o if ((err == -ENOMEM) || 2226cb530541STheodore Ts'o (err == -ENOSPC && ext4_count_free_clusters(sb))) 2227cb530541STheodore Ts'o return err; 22284e7ea81dSJan Kara ext4_msg(sb, KERN_CRIT, 22294e7ea81dSJan Kara "Delayed block allocation failed for " 22304e7ea81dSJan Kara "inode %lu at logical offset %llu with" 22314e7ea81dSJan Kara " max blocks %u with error %d", 22324e7ea81dSJan Kara inode->i_ino, 22334e7ea81dSJan Kara (unsigned long long)map->m_lblk, 2234cb530541STheodore Ts'o (unsigned)map->m_len, -err); 22354e7ea81dSJan Kara ext4_msg(sb, KERN_CRIT, 22364e7ea81dSJan Kara "This should not happen!! Data will " 22374e7ea81dSJan Kara "be lost\n"); 22384e7ea81dSJan Kara if (err == -ENOSPC) 22394e7ea81dSJan Kara ext4_print_free_blocks(inode); 2240cb530541STheodore Ts'o invalidate_dirty_pages: 2241cb530541STheodore Ts'o *give_up_on_write = true; 22424e7ea81dSJan Kara return err; 22434e7ea81dSJan Kara } 22444e7ea81dSJan Kara /* 22454e7ea81dSJan Kara * Update buffer state, submit mapped pages, and get us new 22464e7ea81dSJan Kara * extent to map 22474e7ea81dSJan Kara */ 22484e7ea81dSJan Kara err = mpage_map_and_submit_buffers(mpd); 22494e7ea81dSJan Kara if (err < 0) 22504e7ea81dSJan Kara return err; 225127d7c4edSJan Kara } while (map->m_len); 22524e7ea81dSJan Kara 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 264264769240SAlex Tomas static int ext4_da_write_begin(struct file *file, struct address_space *mapping, 264364769240SAlex Tomas loff_t pos, unsigned len, unsigned flags, 264464769240SAlex Tomas struct page **pagep, void **fsdata) 264564769240SAlex Tomas { 264672b8ab9dSEric Sandeen int ret, retries = 0; 264764769240SAlex Tomas struct page *page; 264864769240SAlex Tomas pgoff_t index; 264964769240SAlex Tomas struct inode *inode = mapping->host; 265064769240SAlex Tomas handle_t *handle; 265164769240SAlex Tomas 265264769240SAlex Tomas index = pos >> PAGE_CACHE_SHIFT; 265379f0be8dSAneesh Kumar K.V 265479f0be8dSAneesh Kumar K.V if (ext4_nonda_switch(inode->i_sb)) { 265579f0be8dSAneesh Kumar K.V *fsdata = (void *)FALL_BACK_TO_NONDELALLOC; 265679f0be8dSAneesh Kumar K.V return ext4_write_begin(file, mapping, pos, 265779f0be8dSAneesh Kumar K.V len, flags, pagep, fsdata); 265879f0be8dSAneesh Kumar K.V } 265979f0be8dSAneesh Kumar K.V *fsdata = (void *)0; 26609bffad1eSTheodore Ts'o trace_ext4_da_write_begin(inode, pos, len, flags); 26619c3569b5STao Ma 26629c3569b5STao Ma if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) { 26639c3569b5STao Ma ret = ext4_da_write_inline_data_begin(mapping, inode, 26649c3569b5STao Ma pos, len, flags, 26659c3569b5STao Ma pagep, fsdata); 26669c3569b5STao Ma if (ret < 0) 266747564bfbSTheodore Ts'o return ret; 266847564bfbSTheodore Ts'o if (ret == 1) 266947564bfbSTheodore Ts'o return 0; 26709c3569b5STao Ma } 26719c3569b5STao Ma 267247564bfbSTheodore Ts'o /* 267347564bfbSTheodore Ts'o * grab_cache_page_write_begin() can take a long time if the 267447564bfbSTheodore Ts'o * system is thrashing due to memory pressure, or if the page 267547564bfbSTheodore Ts'o * is being written back. So grab it first before we start 267647564bfbSTheodore Ts'o * the transaction handle. This also allows us to allocate 267747564bfbSTheodore Ts'o * the page (if needed) without using GFP_NOFS. 267847564bfbSTheodore Ts'o */ 267947564bfbSTheodore Ts'o retry_grab: 268047564bfbSTheodore Ts'o page = grab_cache_page_write_begin(mapping, index, flags); 268147564bfbSTheodore Ts'o if (!page) 268247564bfbSTheodore Ts'o return -ENOMEM; 268347564bfbSTheodore Ts'o unlock_page(page); 268447564bfbSTheodore Ts'o 268564769240SAlex Tomas /* 268664769240SAlex Tomas * With delayed allocation, we don't log the i_disksize update 268764769240SAlex Tomas * if there is delayed block allocation. But we still need 268864769240SAlex Tomas * to journalling the i_disksize update if writes to the end 268964769240SAlex Tomas * of file which has an already mapped buffer. 269064769240SAlex Tomas */ 269147564bfbSTheodore Ts'o retry_journal: 26929924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 1); 269364769240SAlex Tomas if (IS_ERR(handle)) { 269447564bfbSTheodore Ts'o page_cache_release(page); 269547564bfbSTheodore Ts'o return PTR_ERR(handle); 269664769240SAlex Tomas } 269764769240SAlex Tomas 269847564bfbSTheodore Ts'o lock_page(page); 269947564bfbSTheodore Ts'o if (page->mapping != mapping) { 270047564bfbSTheodore Ts'o /* The page got truncated from under us */ 270147564bfbSTheodore Ts'o unlock_page(page); 270247564bfbSTheodore Ts'o page_cache_release(page); 2703d5a0d4f7SEric Sandeen ext4_journal_stop(handle); 270447564bfbSTheodore Ts'o goto retry_grab; 2705d5a0d4f7SEric Sandeen } 270647564bfbSTheodore Ts'o /* In case writeback began while the page was unlocked */ 27077afe5aa5SDmitry Monakhov wait_for_stable_page(page); 270864769240SAlex Tomas 27096e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep); 271064769240SAlex Tomas if (ret < 0) { 271164769240SAlex Tomas unlock_page(page); 271264769240SAlex Tomas ext4_journal_stop(handle); 2713ae4d5372SAneesh Kumar K.V /* 2714ae4d5372SAneesh Kumar K.V * block_write_begin may have instantiated a few blocks 2715ae4d5372SAneesh Kumar K.V * outside i_size. Trim these off again. Don't need 2716ae4d5372SAneesh Kumar K.V * i_size_read because we hold i_mutex. 2717ae4d5372SAneesh Kumar K.V */ 2718ae4d5372SAneesh Kumar K.V if (pos + len > inode->i_size) 2719b9a4207dSJan Kara ext4_truncate_failed_write(inode); 272047564bfbSTheodore Ts'o 272147564bfbSTheodore Ts'o if (ret == -ENOSPC && 272247564bfbSTheodore Ts'o ext4_should_retry_alloc(inode->i_sb, &retries)) 272347564bfbSTheodore Ts'o goto retry_journal; 272447564bfbSTheodore Ts'o 272547564bfbSTheodore Ts'o page_cache_release(page); 272647564bfbSTheodore Ts'o return ret; 272764769240SAlex Tomas } 272864769240SAlex Tomas 272947564bfbSTheodore Ts'o *pagep = page; 273064769240SAlex Tomas return ret; 273164769240SAlex Tomas } 273264769240SAlex Tomas 2733632eaeabSMingming Cao /* 2734632eaeabSMingming Cao * Check if we should update i_disksize 2735632eaeabSMingming Cao * when write to the end of file but not require block allocation 2736632eaeabSMingming Cao */ 2737632eaeabSMingming Cao static int ext4_da_should_update_i_disksize(struct page *page, 2738632eaeabSMingming Cao unsigned long offset) 2739632eaeabSMingming Cao { 2740632eaeabSMingming Cao struct buffer_head *bh; 2741632eaeabSMingming Cao struct inode *inode = page->mapping->host; 2742632eaeabSMingming Cao unsigned int idx; 2743632eaeabSMingming Cao int i; 2744632eaeabSMingming Cao 2745632eaeabSMingming Cao bh = page_buffers(page); 2746632eaeabSMingming Cao idx = offset >> inode->i_blkbits; 2747632eaeabSMingming Cao 2748632eaeabSMingming Cao for (i = 0; i < idx; i++) 2749632eaeabSMingming Cao bh = bh->b_this_page; 2750632eaeabSMingming Cao 275129fa89d0SAneesh Kumar K.V if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh)) 2752632eaeabSMingming Cao return 0; 2753632eaeabSMingming Cao return 1; 2754632eaeabSMingming Cao } 2755632eaeabSMingming Cao 275664769240SAlex Tomas static int ext4_da_write_end(struct file *file, 275764769240SAlex Tomas struct address_space *mapping, 275864769240SAlex Tomas loff_t pos, unsigned len, unsigned copied, 275964769240SAlex Tomas struct page *page, void *fsdata) 276064769240SAlex Tomas { 276164769240SAlex Tomas struct inode *inode = mapping->host; 276264769240SAlex Tomas int ret = 0, ret2; 276364769240SAlex Tomas handle_t *handle = ext4_journal_current_handle(); 276464769240SAlex Tomas loff_t new_i_size; 2765632eaeabSMingming Cao unsigned long start, end; 276679f0be8dSAneesh Kumar K.V int write_mode = (int)(unsigned long)fsdata; 276779f0be8dSAneesh Kumar K.V 276874d553aaSTheodore Ts'o if (write_mode == FALL_BACK_TO_NONDELALLOC) 276974d553aaSTheodore Ts'o return ext4_write_end(file, mapping, pos, 277079f0be8dSAneesh Kumar K.V len, copied, page, fsdata); 2771632eaeabSMingming Cao 27729bffad1eSTheodore Ts'o trace_ext4_da_write_end(inode, pos, len, copied); 2773632eaeabSMingming Cao start = pos & (PAGE_CACHE_SIZE - 1); 2774632eaeabSMingming Cao end = start + copied - 1; 277564769240SAlex Tomas 277664769240SAlex Tomas /* 277764769240SAlex Tomas * generic_write_end() will run mark_inode_dirty() if i_size 277864769240SAlex Tomas * changes. So let's piggyback the i_disksize mark_inode_dirty 277964769240SAlex Tomas * into that. 278064769240SAlex Tomas */ 278164769240SAlex Tomas new_i_size = pos + copied; 2782ea51d132SAndrea Arcangeli if (copied && new_i_size > EXT4_I(inode)->i_disksize) { 27839c3569b5STao Ma if (ext4_has_inline_data(inode) || 27849c3569b5STao Ma ext4_da_should_update_i_disksize(page, end)) { 2785632eaeabSMingming Cao down_write(&EXT4_I(inode)->i_data_sem); 2786f3b59291STheodore Ts'o if (new_i_size > EXT4_I(inode)->i_disksize) 278764769240SAlex Tomas EXT4_I(inode)->i_disksize = new_i_size; 2788632eaeabSMingming Cao up_write(&EXT4_I(inode)->i_data_sem); 2789cf17fea6SAneesh Kumar K.V /* We need to mark inode dirty even if 2790cf17fea6SAneesh Kumar K.V * new_i_size is less that inode->i_size 2791cf17fea6SAneesh Kumar K.V * bu greater than i_disksize.(hint delalloc) 2792cf17fea6SAneesh Kumar K.V */ 2793cf17fea6SAneesh Kumar K.V ext4_mark_inode_dirty(handle, inode); 2794632eaeabSMingming Cao } 2795632eaeabSMingming Cao } 27969c3569b5STao Ma 27979c3569b5STao Ma if (write_mode != CONVERT_INLINE_DATA && 27989c3569b5STao Ma ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) && 27999c3569b5STao Ma ext4_has_inline_data(inode)) 28009c3569b5STao Ma ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied, 28019c3569b5STao Ma page); 28029c3569b5STao Ma else 280364769240SAlex Tomas ret2 = generic_write_end(file, mapping, pos, len, copied, 280464769240SAlex Tomas page, fsdata); 28059c3569b5STao Ma 280664769240SAlex Tomas copied = ret2; 280764769240SAlex Tomas if (ret2 < 0) 280864769240SAlex Tomas ret = ret2; 280964769240SAlex Tomas ret2 = ext4_journal_stop(handle); 281064769240SAlex Tomas if (!ret) 281164769240SAlex Tomas ret = ret2; 281264769240SAlex Tomas 281364769240SAlex Tomas return ret ? ret : copied; 281464769240SAlex Tomas } 281564769240SAlex Tomas 2816d47992f8SLukas Czerner static void ext4_da_invalidatepage(struct page *page, unsigned int offset, 2817d47992f8SLukas Czerner unsigned int length) 281864769240SAlex Tomas { 281964769240SAlex Tomas /* 282064769240SAlex Tomas * Drop reserved blocks 282164769240SAlex Tomas */ 282264769240SAlex Tomas BUG_ON(!PageLocked(page)); 282364769240SAlex Tomas if (!page_has_buffers(page)) 282464769240SAlex Tomas goto out; 282564769240SAlex Tomas 2826ca99fdd2SLukas Czerner ext4_da_page_release_reservation(page, offset, length); 282764769240SAlex Tomas 282864769240SAlex Tomas out: 2829d47992f8SLukas Czerner ext4_invalidatepage(page, offset, length); 283064769240SAlex Tomas 283164769240SAlex Tomas return; 283264769240SAlex Tomas } 283364769240SAlex Tomas 2834ccd2506bSTheodore Ts'o /* 2835ccd2506bSTheodore Ts'o * Force all delayed allocation blocks to be allocated for a given inode. 2836ccd2506bSTheodore Ts'o */ 2837ccd2506bSTheodore Ts'o int ext4_alloc_da_blocks(struct inode *inode) 2838ccd2506bSTheodore Ts'o { 2839fb40ba0dSTheodore Ts'o trace_ext4_alloc_da_blocks(inode); 2840fb40ba0dSTheodore Ts'o 2841ccd2506bSTheodore Ts'o if (!EXT4_I(inode)->i_reserved_data_blocks && 2842ccd2506bSTheodore Ts'o !EXT4_I(inode)->i_reserved_meta_blocks) 2843ccd2506bSTheodore Ts'o return 0; 2844ccd2506bSTheodore Ts'o 2845ccd2506bSTheodore Ts'o /* 2846ccd2506bSTheodore Ts'o * We do something simple for now. The filemap_flush() will 2847ccd2506bSTheodore Ts'o * also start triggering a write of the data blocks, which is 2848ccd2506bSTheodore Ts'o * not strictly speaking necessary (and for users of 2849ccd2506bSTheodore Ts'o * laptop_mode, not even desirable). However, to do otherwise 2850ccd2506bSTheodore Ts'o * would require replicating code paths in: 2851ccd2506bSTheodore Ts'o * 285220970ba6STheodore Ts'o * ext4_writepages() -> 2853ccd2506bSTheodore Ts'o * write_cache_pages() ---> (via passed in callback function) 2854ccd2506bSTheodore Ts'o * __mpage_da_writepage() --> 2855ccd2506bSTheodore Ts'o * mpage_add_bh_to_extent() 2856ccd2506bSTheodore Ts'o * mpage_da_map_blocks() 2857ccd2506bSTheodore Ts'o * 2858ccd2506bSTheodore Ts'o * The problem is that write_cache_pages(), located in 2859ccd2506bSTheodore Ts'o * mm/page-writeback.c, marks pages clean in preparation for 2860ccd2506bSTheodore Ts'o * doing I/O, which is not desirable if we're not planning on 2861ccd2506bSTheodore Ts'o * doing I/O at all. 2862ccd2506bSTheodore Ts'o * 2863ccd2506bSTheodore Ts'o * We could call write_cache_pages(), and then redirty all of 2864380cf090SWu Fengguang * the pages by calling redirty_page_for_writepage() but that 2865ccd2506bSTheodore Ts'o * would be ugly in the extreme. So instead we would need to 2866ccd2506bSTheodore Ts'o * replicate parts of the code in the above functions, 286725985edcSLucas De Marchi * simplifying them because we wouldn't actually intend to 2868ccd2506bSTheodore Ts'o * write out the pages, but rather only collect contiguous 2869ccd2506bSTheodore Ts'o * logical block extents, call the multi-block allocator, and 2870ccd2506bSTheodore Ts'o * then update the buffer heads with the block allocations. 2871ccd2506bSTheodore Ts'o * 2872ccd2506bSTheodore Ts'o * For now, though, we'll cheat by calling filemap_flush(), 2873ccd2506bSTheodore Ts'o * which will map the blocks, and start the I/O, but not 2874ccd2506bSTheodore Ts'o * actually wait for the I/O to complete. 2875ccd2506bSTheodore Ts'o */ 2876ccd2506bSTheodore Ts'o return filemap_flush(inode->i_mapping); 2877ccd2506bSTheodore Ts'o } 287864769240SAlex Tomas 287964769240SAlex Tomas /* 2880ac27a0ecSDave Kleikamp * bmap() is special. It gets used by applications such as lilo and by 2881ac27a0ecSDave Kleikamp * the swapper to find the on-disk block of a specific piece of data. 2882ac27a0ecSDave Kleikamp * 2883ac27a0ecSDave Kleikamp * Naturally, this is dangerous if the block concerned is still in the 2884617ba13bSMingming Cao * journal. If somebody makes a swapfile on an ext4 data-journaling 2885ac27a0ecSDave Kleikamp * filesystem and enables swap, then they may get a nasty shock when the 2886ac27a0ecSDave Kleikamp * data getting swapped to that swapfile suddenly gets overwritten by 2887ac27a0ecSDave Kleikamp * the original zero's written out previously to the journal and 2888ac27a0ecSDave Kleikamp * awaiting writeback in the kernel's buffer cache. 2889ac27a0ecSDave Kleikamp * 2890ac27a0ecSDave Kleikamp * So, if we see any bmap calls here on a modified, data-journaled file, 2891ac27a0ecSDave Kleikamp * take extra steps to flush any blocks which might be in the cache. 2892ac27a0ecSDave Kleikamp */ 2893617ba13bSMingming Cao static sector_t ext4_bmap(struct address_space *mapping, sector_t block) 2894ac27a0ecSDave Kleikamp { 2895ac27a0ecSDave Kleikamp struct inode *inode = mapping->host; 2896ac27a0ecSDave Kleikamp journal_t *journal; 2897ac27a0ecSDave Kleikamp int err; 2898ac27a0ecSDave Kleikamp 289946c7f254STao Ma /* 290046c7f254STao Ma * We can get here for an inline file via the FIBMAP ioctl 290146c7f254STao Ma */ 290246c7f254STao Ma if (ext4_has_inline_data(inode)) 290346c7f254STao Ma return 0; 290446c7f254STao Ma 290564769240SAlex Tomas if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) && 290664769240SAlex Tomas test_opt(inode->i_sb, DELALLOC)) { 290764769240SAlex Tomas /* 290864769240SAlex Tomas * With delalloc we want to sync the file 290964769240SAlex Tomas * so that we can make sure we allocate 291064769240SAlex Tomas * blocks for file 291164769240SAlex Tomas */ 291264769240SAlex Tomas filemap_write_and_wait(mapping); 291364769240SAlex Tomas } 291464769240SAlex Tomas 291519f5fb7aSTheodore Ts'o if (EXT4_JOURNAL(inode) && 291619f5fb7aSTheodore Ts'o ext4_test_inode_state(inode, EXT4_STATE_JDATA)) { 2917ac27a0ecSDave Kleikamp /* 2918ac27a0ecSDave Kleikamp * This is a REALLY heavyweight approach, but the use of 2919ac27a0ecSDave Kleikamp * bmap on dirty files is expected to be extremely rare: 2920ac27a0ecSDave Kleikamp * only if we run lilo or swapon on a freshly made file 2921ac27a0ecSDave Kleikamp * do we expect this to happen. 2922ac27a0ecSDave Kleikamp * 2923ac27a0ecSDave Kleikamp * (bmap requires CAP_SYS_RAWIO so this does not 2924ac27a0ecSDave Kleikamp * represent an unprivileged user DOS attack --- we'd be 2925ac27a0ecSDave Kleikamp * in trouble if mortal users could trigger this path at 2926ac27a0ecSDave Kleikamp * will.) 2927ac27a0ecSDave Kleikamp * 2928617ba13bSMingming Cao * NB. EXT4_STATE_JDATA is not set on files other than 2929ac27a0ecSDave Kleikamp * regular files. If somebody wants to bmap a directory 2930ac27a0ecSDave Kleikamp * or symlink and gets confused because the buffer 2931ac27a0ecSDave Kleikamp * hasn't yet been flushed to disk, they deserve 2932ac27a0ecSDave Kleikamp * everything they get. 2933ac27a0ecSDave Kleikamp */ 2934ac27a0ecSDave Kleikamp 293519f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_JDATA); 2936617ba13bSMingming Cao journal = EXT4_JOURNAL(inode); 2937dab291afSMingming Cao jbd2_journal_lock_updates(journal); 2938dab291afSMingming Cao err = jbd2_journal_flush(journal); 2939dab291afSMingming Cao jbd2_journal_unlock_updates(journal); 2940ac27a0ecSDave Kleikamp 2941ac27a0ecSDave Kleikamp if (err) 2942ac27a0ecSDave Kleikamp return 0; 2943ac27a0ecSDave Kleikamp } 2944ac27a0ecSDave Kleikamp 2945617ba13bSMingming Cao return generic_block_bmap(mapping, block, ext4_get_block); 2946ac27a0ecSDave Kleikamp } 2947ac27a0ecSDave Kleikamp 2948617ba13bSMingming Cao static int ext4_readpage(struct file *file, struct page *page) 2949ac27a0ecSDave Kleikamp { 295046c7f254STao Ma int ret = -EAGAIN; 295146c7f254STao Ma struct inode *inode = page->mapping->host; 295246c7f254STao Ma 29530562e0baSJiaying Zhang trace_ext4_readpage(page); 295446c7f254STao Ma 295546c7f254STao Ma if (ext4_has_inline_data(inode)) 295646c7f254STao Ma ret = ext4_readpage_inline(inode, page); 295746c7f254STao Ma 295846c7f254STao Ma if (ret == -EAGAIN) 2959617ba13bSMingming Cao return mpage_readpage(page, ext4_get_block); 296046c7f254STao Ma 296146c7f254STao Ma return ret; 2962ac27a0ecSDave Kleikamp } 2963ac27a0ecSDave Kleikamp 2964ac27a0ecSDave Kleikamp static int 2965617ba13bSMingming Cao ext4_readpages(struct file *file, struct address_space *mapping, 2966ac27a0ecSDave Kleikamp struct list_head *pages, unsigned nr_pages) 2967ac27a0ecSDave Kleikamp { 296846c7f254STao Ma struct inode *inode = mapping->host; 296946c7f254STao Ma 297046c7f254STao Ma /* If the file has inline data, no need to do readpages. */ 297146c7f254STao Ma if (ext4_has_inline_data(inode)) 297246c7f254STao Ma return 0; 297346c7f254STao Ma 2974617ba13bSMingming Cao return mpage_readpages(mapping, pages, nr_pages, ext4_get_block); 2975ac27a0ecSDave Kleikamp } 2976ac27a0ecSDave Kleikamp 2977d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset, 2978d47992f8SLukas Czerner unsigned int length) 2979ac27a0ecSDave Kleikamp { 2980ca99fdd2SLukas Czerner trace_ext4_invalidatepage(page, offset, length); 29810562e0baSJiaying Zhang 29824520fb3cSJan Kara /* No journalling happens on data buffers when this function is used */ 29834520fb3cSJan Kara WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page))); 29844520fb3cSJan Kara 2985ca99fdd2SLukas Czerner block_invalidatepage(page, offset, length); 29864520fb3cSJan Kara } 29874520fb3cSJan Kara 298853e87268SJan Kara static int __ext4_journalled_invalidatepage(struct page *page, 2989ca99fdd2SLukas Czerner unsigned int offset, 2990ca99fdd2SLukas Czerner unsigned int length) 29914520fb3cSJan Kara { 29924520fb3cSJan Kara journal_t *journal = EXT4_JOURNAL(page->mapping->host); 29934520fb3cSJan Kara 2994ca99fdd2SLukas Czerner trace_ext4_journalled_invalidatepage(page, offset, length); 29954520fb3cSJan Kara 2996744692dcSJiaying Zhang /* 2997ac27a0ecSDave Kleikamp * If it's a full truncate we just forget about the pending dirtying 2998ac27a0ecSDave Kleikamp */ 2999ca99fdd2SLukas Czerner if (offset == 0 && length == PAGE_CACHE_SIZE) 3000ac27a0ecSDave Kleikamp ClearPageChecked(page); 3001ac27a0ecSDave Kleikamp 3002ca99fdd2SLukas Czerner return jbd2_journal_invalidatepage(journal, page, offset, length); 300353e87268SJan Kara } 300453e87268SJan Kara 300553e87268SJan Kara /* Wrapper for aops... */ 300653e87268SJan Kara static void ext4_journalled_invalidatepage(struct page *page, 3007d47992f8SLukas Czerner unsigned int offset, 3008d47992f8SLukas Czerner unsigned int length) 300953e87268SJan Kara { 3010ca99fdd2SLukas Czerner WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0); 3011ac27a0ecSDave Kleikamp } 3012ac27a0ecSDave Kleikamp 3013617ba13bSMingming Cao static int ext4_releasepage(struct page *page, gfp_t wait) 3014ac27a0ecSDave Kleikamp { 3015617ba13bSMingming Cao journal_t *journal = EXT4_JOURNAL(page->mapping->host); 3016ac27a0ecSDave Kleikamp 30170562e0baSJiaying Zhang trace_ext4_releasepage(page); 30180562e0baSJiaying Zhang 3019e1c36595SJan Kara /* Page has dirty journalled data -> cannot release */ 3020e1c36595SJan Kara if (PageChecked(page)) 3021ac27a0ecSDave Kleikamp return 0; 30220390131bSFrank Mayhar if (journal) 3023dab291afSMingming Cao return jbd2_journal_try_to_free_buffers(journal, page, wait); 30240390131bSFrank Mayhar else 30250390131bSFrank Mayhar return try_to_free_buffers(page); 3026ac27a0ecSDave Kleikamp } 3027ac27a0ecSDave Kleikamp 3028ac27a0ecSDave Kleikamp /* 30292ed88685STheodore Ts'o * ext4_get_block used when preparing for a DIO write or buffer write. 30302ed88685STheodore Ts'o * We allocate an uinitialized extent if blocks haven't been allocated. 30312ed88685STheodore Ts'o * The extent will be converted to initialized after the IO is complete. 30322ed88685STheodore Ts'o */ 3033f19d5870STao Ma int ext4_get_block_write(struct inode *inode, sector_t iblock, 30344c0425ffSMingming Cao struct buffer_head *bh_result, int create) 30354c0425ffSMingming Cao { 3036c7064ef1SJiaying Zhang ext4_debug("ext4_get_block_write: inode %lu, create flag %d\n", 30378d5d02e6SMingming Cao inode->i_ino, create); 30382ed88685STheodore Ts'o return _ext4_get_block(inode, iblock, bh_result, 30392ed88685STheodore Ts'o EXT4_GET_BLOCKS_IO_CREATE_EXT); 30404c0425ffSMingming Cao } 30414c0425ffSMingming Cao 3042729f52c6SZheng Liu static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock, 30438b0f165fSAnatol Pomozov struct buffer_head *bh_result, int create) 3044729f52c6SZheng Liu { 30458b0f165fSAnatol Pomozov ext4_debug("ext4_get_block_write_nolock: inode %lu, create flag %d\n", 30468b0f165fSAnatol Pomozov inode->i_ino, create); 30478b0f165fSAnatol Pomozov return _ext4_get_block(inode, iblock, bh_result, 30488b0f165fSAnatol Pomozov EXT4_GET_BLOCKS_NO_LOCK); 3049729f52c6SZheng Liu } 3050729f52c6SZheng Liu 30514c0425ffSMingming Cao static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset, 30527b7a8665SChristoph Hellwig ssize_t size, void *private) 30534c0425ffSMingming Cao { 30544c0425ffSMingming Cao ext4_io_end_t *io_end = iocb->private; 30554c0425ffSMingming Cao 305697a851edSJan Kara /* if not async direct IO just return */ 30577b7a8665SChristoph Hellwig if (!io_end) 305897a851edSJan Kara return; 30594b70df18SMingming 30608d5d02e6SMingming Cao ext_debug("ext4_end_io_dio(): io_end 0x%p " 3061ace36ad4SJoe Perches "for inode %lu, iocb 0x%p, offset %llu, size %zd\n", 30628d5d02e6SMingming Cao iocb->private, io_end->inode->i_ino, iocb, offset, 30638d5d02e6SMingming Cao size); 30648d5d02e6SMingming Cao 3065b5a7e970STheodore Ts'o iocb->private = NULL; 30664c0425ffSMingming Cao io_end->offset = offset; 30674c0425ffSMingming Cao io_end->size = size; 30687b7a8665SChristoph Hellwig ext4_put_io_end(io_end); 30694c0425ffSMingming Cao } 3070c7064ef1SJiaying Zhang 30714c0425ffSMingming Cao /* 30724c0425ffSMingming Cao * For ext4 extent files, ext4 will do direct-io write to holes, 30734c0425ffSMingming Cao * preallocated extents, and those write extend the file, no need to 30744c0425ffSMingming Cao * fall back to buffered IO. 30754c0425ffSMingming Cao * 3076556615dcSLukas Czerner * For holes, we fallocate those blocks, mark them as unwritten 307769c499d1STheodore Ts'o * If those blocks were preallocated, we mark sure they are split, but 3078556615dcSLukas Czerner * still keep the range to write as unwritten. 30794c0425ffSMingming Cao * 308069c499d1STheodore Ts'o * The unwritten extents will be converted to written when DIO is completed. 30818d5d02e6SMingming Cao * For async direct IO, since the IO may still pending when return, we 308225985edcSLucas De Marchi * set up an end_io call back function, which will do the conversion 30838d5d02e6SMingming Cao * when async direct IO completed. 30844c0425ffSMingming Cao * 30854c0425ffSMingming Cao * If the O_DIRECT write will extend the file then add this inode to the 30864c0425ffSMingming Cao * orphan list. So recovery will truncate it back to the original size 30874c0425ffSMingming Cao * if the machine crashes during the write. 30884c0425ffSMingming Cao * 30894c0425ffSMingming Cao */ 30904c0425ffSMingming Cao static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb, 30914c0425ffSMingming Cao const struct iovec *iov, loff_t offset, 30924c0425ffSMingming Cao unsigned long nr_segs) 30934c0425ffSMingming Cao { 30944c0425ffSMingming Cao struct file *file = iocb->ki_filp; 30954c0425ffSMingming Cao struct inode *inode = file->f_mapping->host; 30964c0425ffSMingming Cao ssize_t ret; 30974c0425ffSMingming Cao size_t count = iov_length(iov, nr_segs); 3098729f52c6SZheng Liu int overwrite = 0; 30998b0f165fSAnatol Pomozov get_block_t *get_block_func = NULL; 31008b0f165fSAnatol Pomozov int dio_flags = 0; 310169c499d1STheodore Ts'o loff_t final_size = offset + count; 310297a851edSJan Kara ext4_io_end_t *io_end = NULL; 310369c499d1STheodore Ts'o 310469c499d1STheodore Ts'o /* Use the old path for reads and writes beyond i_size. */ 310569c499d1STheodore Ts'o if (rw != WRITE || final_size > inode->i_size) 310669c499d1STheodore Ts'o return ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs); 3107729f52c6SZheng Liu 31084bd809dbSZheng Liu BUG_ON(iocb->private == NULL); 31094bd809dbSZheng Liu 3110e8340395SJan Kara /* 3111e8340395SJan Kara * Make all waiters for direct IO properly wait also for extent 3112e8340395SJan Kara * conversion. This also disallows race between truncate() and 3113e8340395SJan Kara * overwrite DIO as i_dio_count needs to be incremented under i_mutex. 3114e8340395SJan Kara */ 3115e8340395SJan Kara if (rw == WRITE) 3116e8340395SJan Kara atomic_inc(&inode->i_dio_count); 3117e8340395SJan Kara 31184bd809dbSZheng Liu /* If we do a overwrite dio, i_mutex locking can be released */ 31194bd809dbSZheng Liu overwrite = *((int *)iocb->private); 31204bd809dbSZheng Liu 31214bd809dbSZheng Liu if (overwrite) { 31224bd809dbSZheng Liu down_read(&EXT4_I(inode)->i_data_sem); 31234bd809dbSZheng Liu mutex_unlock(&inode->i_mutex); 31244bd809dbSZheng Liu } 31254bd809dbSZheng Liu 31264c0425ffSMingming Cao /* 31278d5d02e6SMingming Cao * We could direct write to holes and fallocate. 31288d5d02e6SMingming Cao * 312969c499d1STheodore Ts'o * Allocated blocks to fill the hole are marked as 3130556615dcSLukas Czerner * unwritten to prevent parallel buffered read to expose 313169c499d1STheodore Ts'o * the stale data before DIO complete the data IO. 31328d5d02e6SMingming Cao * 313369c499d1STheodore Ts'o * As to previously fallocated extents, ext4 get_block will 313469c499d1STheodore Ts'o * just simply mark the buffer mapped but still keep the 3135556615dcSLukas Czerner * extents unwritten. 31364c0425ffSMingming Cao * 313769c499d1STheodore Ts'o * For non AIO case, we will convert those unwritten extents 31388d5d02e6SMingming Cao * to written after return back from blockdev_direct_IO. 31394c0425ffSMingming Cao * 314069c499d1STheodore Ts'o * For async DIO, the conversion needs to be deferred when the 314169c499d1STheodore Ts'o * IO is completed. The ext4 end_io callback function will be 314269c499d1STheodore Ts'o * called to take care of the conversion work. Here for async 314369c499d1STheodore Ts'o * case, we allocate an io_end structure to hook to the iocb. 31444c0425ffSMingming Cao */ 31458d5d02e6SMingming Cao iocb->private = NULL; 3146f45ee3a1SDmitry Monakhov ext4_inode_aio_set(inode, NULL); 31478d5d02e6SMingming Cao if (!is_sync_kiocb(iocb)) { 314897a851edSJan Kara io_end = ext4_init_io_end(inode, GFP_NOFS); 31494bd809dbSZheng Liu if (!io_end) { 31504bd809dbSZheng Liu ret = -ENOMEM; 31514bd809dbSZheng Liu goto retake_lock; 31524bd809dbSZheng Liu } 315397a851edSJan Kara /* 315497a851edSJan Kara * Grab reference for DIO. Will be dropped in ext4_end_io_dio() 315597a851edSJan Kara */ 315697a851edSJan Kara iocb->private = ext4_get_io_end(io_end); 31578d5d02e6SMingming Cao /* 315869c499d1STheodore Ts'o * we save the io structure for current async direct 315969c499d1STheodore Ts'o * IO, so that later ext4_map_blocks() could flag the 316069c499d1STheodore Ts'o * io structure whether there is a unwritten extents 316169c499d1STheodore Ts'o * needs to be converted when IO is completed. 31628d5d02e6SMingming Cao */ 3163f45ee3a1SDmitry Monakhov ext4_inode_aio_set(inode, io_end); 31648d5d02e6SMingming Cao } 31658d5d02e6SMingming Cao 31668b0f165fSAnatol Pomozov if (overwrite) { 31678b0f165fSAnatol Pomozov get_block_func = ext4_get_block_write_nolock; 31688b0f165fSAnatol Pomozov } else { 31698b0f165fSAnatol Pomozov get_block_func = ext4_get_block_write; 31708b0f165fSAnatol Pomozov dio_flags = DIO_LOCKING; 31718b0f165fSAnatol Pomozov } 3172729f52c6SZheng Liu ret = __blockdev_direct_IO(rw, iocb, inode, 3173729f52c6SZheng Liu inode->i_sb->s_bdev, iov, 3174729f52c6SZheng Liu offset, nr_segs, 31758b0f165fSAnatol Pomozov get_block_func, 3176729f52c6SZheng Liu ext4_end_io_dio, 3177729f52c6SZheng Liu NULL, 31788b0f165fSAnatol Pomozov dio_flags); 31798b0f165fSAnatol Pomozov 31804eec708dSJan Kara /* 318197a851edSJan Kara * Put our reference to io_end. This can free the io_end structure e.g. 318297a851edSJan Kara * in sync IO case or in case of error. It can even perform extent 318397a851edSJan Kara * conversion if all bios we submitted finished before we got here. 318497a851edSJan Kara * Note that in that case iocb->private can be already set to NULL 318597a851edSJan Kara * here. 31864eec708dSJan Kara */ 318797a851edSJan Kara if (io_end) { 318897a851edSJan Kara ext4_inode_aio_set(inode, NULL); 318997a851edSJan Kara ext4_put_io_end(io_end); 319097a851edSJan Kara /* 319197a851edSJan Kara * When no IO was submitted ext4_end_io_dio() was not 319297a851edSJan Kara * called so we have to put iocb's reference. 319397a851edSJan Kara */ 319497a851edSJan Kara if (ret <= 0 && ret != -EIOCBQUEUED && iocb->private) { 319597a851edSJan Kara WARN_ON(iocb->private != io_end); 319697a851edSJan Kara WARN_ON(io_end->flag & EXT4_IO_END_UNWRITTEN); 319797a851edSJan Kara ext4_put_io_end(io_end); 31988d5d02e6SMingming Cao iocb->private = NULL; 319997a851edSJan Kara } 320097a851edSJan Kara } 320197a851edSJan Kara if (ret > 0 && !overwrite && ext4_test_inode_state(inode, 32025f524950SMingming EXT4_STATE_DIO_UNWRITTEN)) { 3203109f5565SMingming int err; 32048d5d02e6SMingming Cao /* 32058d5d02e6SMingming Cao * for non AIO case, since the IO is already 320625985edcSLucas De Marchi * completed, we could do the conversion right here 32078d5d02e6SMingming Cao */ 32086b523df4SJan Kara err = ext4_convert_unwritten_extents(NULL, inode, 32098d5d02e6SMingming Cao offset, ret); 3210109f5565SMingming if (err < 0) 3211109f5565SMingming ret = err; 321219f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN); 3213109f5565SMingming } 32144bd809dbSZheng Liu 32154bd809dbSZheng Liu retake_lock: 3216e8340395SJan Kara if (rw == WRITE) 3217e8340395SJan Kara inode_dio_done(inode); 32184bd809dbSZheng Liu /* take i_mutex locking again if we do a ovewrite dio */ 32194bd809dbSZheng Liu if (overwrite) { 32204bd809dbSZheng Liu up_read(&EXT4_I(inode)->i_data_sem); 32214bd809dbSZheng Liu mutex_lock(&inode->i_mutex); 32224bd809dbSZheng Liu } 32234bd809dbSZheng Liu 32244c0425ffSMingming Cao return ret; 32254c0425ffSMingming Cao } 32268d5d02e6SMingming Cao 32274c0425ffSMingming Cao static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb, 32284c0425ffSMingming Cao const struct iovec *iov, loff_t offset, 32294c0425ffSMingming Cao unsigned long nr_segs) 32304c0425ffSMingming Cao { 32314c0425ffSMingming Cao struct file *file = iocb->ki_filp; 32324c0425ffSMingming Cao struct inode *inode = file->f_mapping->host; 32330562e0baSJiaying Zhang ssize_t ret; 32344c0425ffSMingming Cao 323584ebd795STheodore Ts'o /* 323684ebd795STheodore Ts'o * If we are doing data journalling we don't support O_DIRECT 323784ebd795STheodore Ts'o */ 323884ebd795STheodore Ts'o if (ext4_should_journal_data(inode)) 323984ebd795STheodore Ts'o return 0; 324084ebd795STheodore Ts'o 324146c7f254STao Ma /* Let buffer I/O handle the inline data case. */ 324246c7f254STao Ma if (ext4_has_inline_data(inode)) 324346c7f254STao Ma return 0; 324446c7f254STao Ma 32450562e0baSJiaying Zhang trace_ext4_direct_IO_enter(inode, offset, iov_length(iov, nr_segs), rw); 324612e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 32470562e0baSJiaying Zhang ret = ext4_ext_direct_IO(rw, iocb, iov, offset, nr_segs); 32480562e0baSJiaying Zhang else 32490562e0baSJiaying Zhang ret = ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs); 32500562e0baSJiaying Zhang trace_ext4_direct_IO_exit(inode, offset, 32510562e0baSJiaying Zhang iov_length(iov, nr_segs), rw, ret); 32520562e0baSJiaying Zhang return ret; 32534c0425ffSMingming Cao } 32544c0425ffSMingming Cao 3255ac27a0ecSDave Kleikamp /* 3256617ba13bSMingming Cao * Pages can be marked dirty completely asynchronously from ext4's journalling 3257ac27a0ecSDave Kleikamp * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do 3258ac27a0ecSDave Kleikamp * much here because ->set_page_dirty is called under VFS locks. The page is 3259ac27a0ecSDave Kleikamp * not necessarily locked. 3260ac27a0ecSDave Kleikamp * 3261ac27a0ecSDave Kleikamp * We cannot just dirty the page and leave attached buffers clean, because the 3262ac27a0ecSDave Kleikamp * buffers' dirty state is "definitive". We cannot just set the buffers dirty 3263ac27a0ecSDave Kleikamp * or jbddirty because all the journalling code will explode. 3264ac27a0ecSDave Kleikamp * 3265ac27a0ecSDave Kleikamp * So what we do is to mark the page "pending dirty" and next time writepage 3266ac27a0ecSDave Kleikamp * is called, propagate that into the buffers appropriately. 3267ac27a0ecSDave Kleikamp */ 3268617ba13bSMingming Cao static int ext4_journalled_set_page_dirty(struct page *page) 3269ac27a0ecSDave Kleikamp { 3270ac27a0ecSDave Kleikamp SetPageChecked(page); 3271ac27a0ecSDave Kleikamp return __set_page_dirty_nobuffers(page); 3272ac27a0ecSDave Kleikamp } 3273ac27a0ecSDave Kleikamp 327474d553aaSTheodore Ts'o static const struct address_space_operations ext4_aops = { 3275617ba13bSMingming Cao .readpage = ext4_readpage, 3276617ba13bSMingming Cao .readpages = ext4_readpages, 327743ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 327820970ba6STheodore Ts'o .writepages = ext4_writepages, 3279bfc1af65SNick Piggin .write_begin = ext4_write_begin, 328074d553aaSTheodore Ts'o .write_end = ext4_write_end, 3281617ba13bSMingming Cao .bmap = ext4_bmap, 3282617ba13bSMingming Cao .invalidatepage = ext4_invalidatepage, 3283617ba13bSMingming Cao .releasepage = ext4_releasepage, 3284617ba13bSMingming Cao .direct_IO = ext4_direct_IO, 3285ac27a0ecSDave Kleikamp .migratepage = buffer_migrate_page, 32868ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3287aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 3288ac27a0ecSDave Kleikamp }; 3289ac27a0ecSDave Kleikamp 3290617ba13bSMingming Cao static const struct address_space_operations ext4_journalled_aops = { 3291617ba13bSMingming Cao .readpage = ext4_readpage, 3292617ba13bSMingming Cao .readpages = ext4_readpages, 329343ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 329420970ba6STheodore Ts'o .writepages = ext4_writepages, 3295bfc1af65SNick Piggin .write_begin = ext4_write_begin, 3296bfc1af65SNick Piggin .write_end = ext4_journalled_write_end, 3297617ba13bSMingming Cao .set_page_dirty = ext4_journalled_set_page_dirty, 3298617ba13bSMingming Cao .bmap = ext4_bmap, 32994520fb3cSJan Kara .invalidatepage = ext4_journalled_invalidatepage, 3300617ba13bSMingming Cao .releasepage = ext4_releasepage, 330184ebd795STheodore Ts'o .direct_IO = ext4_direct_IO, 33028ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3303aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 3304ac27a0ecSDave Kleikamp }; 3305ac27a0ecSDave Kleikamp 330664769240SAlex Tomas static const struct address_space_operations ext4_da_aops = { 330764769240SAlex Tomas .readpage = ext4_readpage, 330864769240SAlex Tomas .readpages = ext4_readpages, 330943ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 331020970ba6STheodore Ts'o .writepages = ext4_writepages, 331164769240SAlex Tomas .write_begin = ext4_da_write_begin, 331264769240SAlex Tomas .write_end = ext4_da_write_end, 331364769240SAlex Tomas .bmap = ext4_bmap, 331464769240SAlex Tomas .invalidatepage = ext4_da_invalidatepage, 331564769240SAlex Tomas .releasepage = ext4_releasepage, 331664769240SAlex Tomas .direct_IO = ext4_direct_IO, 331764769240SAlex Tomas .migratepage = buffer_migrate_page, 33188ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3319aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 332064769240SAlex Tomas }; 332164769240SAlex Tomas 3322617ba13bSMingming Cao void ext4_set_aops(struct inode *inode) 3323ac27a0ecSDave Kleikamp { 33243d2b1582SLukas Czerner switch (ext4_inode_journal_mode(inode)) { 33253d2b1582SLukas Czerner case EXT4_INODE_ORDERED_DATA_MODE: 332674d553aaSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_ORDERED_MODE); 33273d2b1582SLukas Czerner break; 33283d2b1582SLukas Czerner case EXT4_INODE_WRITEBACK_DATA_MODE: 332974d553aaSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_ORDERED_MODE); 33303d2b1582SLukas Czerner break; 33313d2b1582SLukas Czerner case EXT4_INODE_JOURNAL_DATA_MODE: 3332617ba13bSMingming Cao inode->i_mapping->a_ops = &ext4_journalled_aops; 333374d553aaSTheodore Ts'o return; 33343d2b1582SLukas Czerner default: 33353d2b1582SLukas Czerner BUG(); 33363d2b1582SLukas Czerner } 333774d553aaSTheodore Ts'o if (test_opt(inode->i_sb, DELALLOC)) 333874d553aaSTheodore Ts'o inode->i_mapping->a_ops = &ext4_da_aops; 333974d553aaSTheodore Ts'o else 334074d553aaSTheodore Ts'o inode->i_mapping->a_ops = &ext4_aops; 3341ac27a0ecSDave Kleikamp } 3342ac27a0ecSDave Kleikamp 3343d863dc36SLukas Czerner /* 3344d863dc36SLukas Czerner * ext4_block_zero_page_range() zeros out a mapping of length 'length' 3345d863dc36SLukas Czerner * starting from file offset 'from'. The range to be zero'd must 3346d863dc36SLukas Czerner * be contained with in one block. If the specified range exceeds 3347d863dc36SLukas Czerner * the end of the block it will be shortened to end of the block 3348d863dc36SLukas Czerner * that cooresponds to 'from' 3349d863dc36SLukas Czerner */ 335094350ab5SMatthew Wilcox static int ext4_block_zero_page_range(handle_t *handle, 3351d863dc36SLukas Czerner struct address_space *mapping, loff_t from, loff_t length) 3352d863dc36SLukas Czerner { 3353d863dc36SLukas Czerner ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT; 3354d863dc36SLukas Czerner unsigned offset = from & (PAGE_CACHE_SIZE-1); 3355d863dc36SLukas Czerner unsigned blocksize, max, pos; 3356d863dc36SLukas Czerner ext4_lblk_t iblock; 3357d863dc36SLukas Czerner struct inode *inode = mapping->host; 3358d863dc36SLukas Czerner struct buffer_head *bh; 3359d863dc36SLukas Czerner struct page *page; 3360d863dc36SLukas Czerner int err = 0; 3361d863dc36SLukas Czerner 3362d863dc36SLukas Czerner page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT, 3363d863dc36SLukas Czerner mapping_gfp_mask(mapping) & ~__GFP_FS); 3364d863dc36SLukas Czerner if (!page) 3365d863dc36SLukas Czerner return -ENOMEM; 3366d863dc36SLukas Czerner 3367d863dc36SLukas Czerner blocksize = inode->i_sb->s_blocksize; 3368d863dc36SLukas Czerner max = blocksize - (offset & (blocksize - 1)); 3369d863dc36SLukas Czerner 3370d863dc36SLukas Czerner /* 3371d863dc36SLukas Czerner * correct length if it does not fall between 3372d863dc36SLukas Czerner * 'from' and the end of the block 3373d863dc36SLukas Czerner */ 3374d863dc36SLukas Czerner if (length > max || length < 0) 3375d863dc36SLukas Czerner length = max; 3376d863dc36SLukas Czerner 3377d863dc36SLukas Czerner iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits); 3378d863dc36SLukas Czerner 3379d863dc36SLukas Czerner if (!page_has_buffers(page)) 3380d863dc36SLukas Czerner create_empty_buffers(page, blocksize, 0); 3381d863dc36SLukas Czerner 3382d863dc36SLukas Czerner /* Find the buffer that contains "offset" */ 3383d863dc36SLukas Czerner bh = page_buffers(page); 3384d863dc36SLukas Czerner pos = blocksize; 3385d863dc36SLukas Czerner while (offset >= pos) { 3386d863dc36SLukas Czerner bh = bh->b_this_page; 3387d863dc36SLukas Czerner iblock++; 3388d863dc36SLukas Czerner pos += blocksize; 3389d863dc36SLukas Czerner } 3390d863dc36SLukas Czerner if (buffer_freed(bh)) { 3391d863dc36SLukas Czerner BUFFER_TRACE(bh, "freed: skip"); 3392d863dc36SLukas Czerner goto unlock; 3393d863dc36SLukas Czerner } 3394d863dc36SLukas Czerner if (!buffer_mapped(bh)) { 3395d863dc36SLukas Czerner BUFFER_TRACE(bh, "unmapped"); 3396d863dc36SLukas Czerner ext4_get_block(inode, iblock, bh, 0); 3397d863dc36SLukas Czerner /* unmapped? It's a hole - nothing to do */ 3398d863dc36SLukas Czerner if (!buffer_mapped(bh)) { 3399d863dc36SLukas Czerner BUFFER_TRACE(bh, "still unmapped"); 3400d863dc36SLukas Czerner goto unlock; 3401d863dc36SLukas Czerner } 3402d863dc36SLukas Czerner } 3403d863dc36SLukas Czerner 3404d863dc36SLukas Czerner /* Ok, it's mapped. Make sure it's up-to-date */ 3405d863dc36SLukas Czerner if (PageUptodate(page)) 3406d863dc36SLukas Czerner set_buffer_uptodate(bh); 3407d863dc36SLukas Czerner 3408d863dc36SLukas Czerner if (!buffer_uptodate(bh)) { 3409d863dc36SLukas Czerner err = -EIO; 3410d863dc36SLukas Czerner ll_rw_block(READ, 1, &bh); 3411d863dc36SLukas Czerner wait_on_buffer(bh); 3412d863dc36SLukas Czerner /* Uhhuh. Read error. Complain and punt. */ 3413d863dc36SLukas Czerner if (!buffer_uptodate(bh)) 3414d863dc36SLukas Czerner goto unlock; 3415d863dc36SLukas Czerner } 3416d863dc36SLukas Czerner if (ext4_should_journal_data(inode)) { 3417d863dc36SLukas Czerner BUFFER_TRACE(bh, "get write access"); 3418d863dc36SLukas Czerner err = ext4_journal_get_write_access(handle, bh); 3419d863dc36SLukas Czerner if (err) 3420d863dc36SLukas Czerner goto unlock; 3421d863dc36SLukas Czerner } 3422d863dc36SLukas Czerner zero_user(page, offset, length); 3423d863dc36SLukas Czerner BUFFER_TRACE(bh, "zeroed end of block"); 3424d863dc36SLukas Czerner 3425d863dc36SLukas Czerner if (ext4_should_journal_data(inode)) { 3426d863dc36SLukas Czerner err = ext4_handle_dirty_metadata(handle, inode, bh); 34270713ed0cSLukas Czerner } else { 3428353eefd3Sjon ernst err = 0; 3429d863dc36SLukas Czerner mark_buffer_dirty(bh); 34300713ed0cSLukas Czerner if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) 34310713ed0cSLukas Czerner err = ext4_jbd2_file_inode(handle, inode); 34320713ed0cSLukas Czerner } 3433d863dc36SLukas Czerner 3434d863dc36SLukas Czerner unlock: 3435d863dc36SLukas Czerner unlock_page(page); 3436d863dc36SLukas Czerner page_cache_release(page); 3437d863dc36SLukas Czerner return err; 3438d863dc36SLukas Czerner } 3439d863dc36SLukas Czerner 344094350ab5SMatthew Wilcox /* 344194350ab5SMatthew Wilcox * ext4_block_truncate_page() zeroes out a mapping from file offset `from' 344294350ab5SMatthew Wilcox * up to the end of the block which corresponds to `from'. 344394350ab5SMatthew Wilcox * This required during truncate. We need to physically zero the tail end 344494350ab5SMatthew Wilcox * of that block so it doesn't yield old data if the file is later grown. 344594350ab5SMatthew Wilcox */ 344694350ab5SMatthew Wilcox int ext4_block_truncate_page(handle_t *handle, 344794350ab5SMatthew Wilcox struct address_space *mapping, loff_t from) 344894350ab5SMatthew Wilcox { 344994350ab5SMatthew Wilcox unsigned offset = from & (PAGE_CACHE_SIZE-1); 345094350ab5SMatthew Wilcox unsigned length; 345194350ab5SMatthew Wilcox unsigned blocksize; 345294350ab5SMatthew Wilcox struct inode *inode = mapping->host; 345394350ab5SMatthew Wilcox 345494350ab5SMatthew Wilcox blocksize = inode->i_sb->s_blocksize; 345594350ab5SMatthew Wilcox length = blocksize - (offset & (blocksize - 1)); 345694350ab5SMatthew Wilcox 345794350ab5SMatthew Wilcox return ext4_block_zero_page_range(handle, mapping, from, length); 345894350ab5SMatthew Wilcox } 345994350ab5SMatthew Wilcox 3460a87dd18cSLukas Czerner int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode, 3461a87dd18cSLukas Czerner loff_t lstart, loff_t length) 3462a87dd18cSLukas Czerner { 3463a87dd18cSLukas Czerner struct super_block *sb = inode->i_sb; 3464a87dd18cSLukas Czerner struct address_space *mapping = inode->i_mapping; 3465e1be3a92SLukas Czerner unsigned partial_start, partial_end; 3466a87dd18cSLukas Czerner ext4_fsblk_t start, end; 3467a87dd18cSLukas Czerner loff_t byte_end = (lstart + length - 1); 3468a87dd18cSLukas Czerner int err = 0; 3469a87dd18cSLukas Czerner 3470e1be3a92SLukas Czerner partial_start = lstart & (sb->s_blocksize - 1); 3471e1be3a92SLukas Czerner partial_end = byte_end & (sb->s_blocksize - 1); 3472e1be3a92SLukas Czerner 3473a87dd18cSLukas Czerner start = lstart >> sb->s_blocksize_bits; 3474a87dd18cSLukas Czerner end = byte_end >> sb->s_blocksize_bits; 3475a87dd18cSLukas Czerner 3476a87dd18cSLukas Czerner /* Handle partial zero within the single block */ 3477e1be3a92SLukas Czerner if (start == end && 3478e1be3a92SLukas Czerner (partial_start || (partial_end != sb->s_blocksize - 1))) { 3479a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3480a87dd18cSLukas Czerner lstart, length); 3481a87dd18cSLukas Czerner return err; 3482a87dd18cSLukas Czerner } 3483a87dd18cSLukas Czerner /* Handle partial zero out on the start of the range */ 3484e1be3a92SLukas Czerner if (partial_start) { 3485a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3486a87dd18cSLukas Czerner lstart, sb->s_blocksize); 3487a87dd18cSLukas Czerner if (err) 3488a87dd18cSLukas Czerner return err; 3489a87dd18cSLukas Czerner } 3490a87dd18cSLukas Czerner /* Handle partial zero out on the end of the range */ 3491e1be3a92SLukas Czerner if (partial_end != sb->s_blocksize - 1) 3492a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3493e1be3a92SLukas Czerner byte_end - partial_end, 3494e1be3a92SLukas Czerner partial_end + 1); 3495a87dd18cSLukas Czerner return err; 3496a87dd18cSLukas Czerner } 3497a87dd18cSLukas Czerner 349891ef4cafSDuane Griffin int ext4_can_truncate(struct inode *inode) 349991ef4cafSDuane Griffin { 350091ef4cafSDuane Griffin if (S_ISREG(inode->i_mode)) 350191ef4cafSDuane Griffin return 1; 350291ef4cafSDuane Griffin if (S_ISDIR(inode->i_mode)) 350391ef4cafSDuane Griffin return 1; 350491ef4cafSDuane Griffin if (S_ISLNK(inode->i_mode)) 350591ef4cafSDuane Griffin return !ext4_inode_is_fast_symlink(inode); 350691ef4cafSDuane Griffin return 0; 350791ef4cafSDuane Griffin } 350891ef4cafSDuane Griffin 3509ac27a0ecSDave Kleikamp /* 3510a4bb6b64SAllison Henderson * ext4_punch_hole: punches a hole in a file by releaseing the blocks 3511a4bb6b64SAllison Henderson * associated with the given offset and length 3512a4bb6b64SAllison Henderson * 3513a4bb6b64SAllison Henderson * @inode: File inode 3514a4bb6b64SAllison Henderson * @offset: The offset where the hole will begin 3515a4bb6b64SAllison Henderson * @len: The length of the hole 3516a4bb6b64SAllison Henderson * 35174907cb7bSAnatol Pomozov * Returns: 0 on success or negative on failure 3518a4bb6b64SAllison Henderson */ 3519a4bb6b64SAllison Henderson 3520aeb2817aSAshish Sangwan int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length) 3521a4bb6b64SAllison Henderson { 352226a4c0c6STheodore Ts'o struct super_block *sb = inode->i_sb; 352326a4c0c6STheodore Ts'o ext4_lblk_t first_block, stop_block; 352426a4c0c6STheodore Ts'o struct address_space *mapping = inode->i_mapping; 3525a87dd18cSLukas Czerner loff_t first_block_offset, last_block_offset; 352626a4c0c6STheodore Ts'o handle_t *handle; 352726a4c0c6STheodore Ts'o unsigned int credits; 352826a4c0c6STheodore Ts'o int ret = 0; 352926a4c0c6STheodore Ts'o 3530a4bb6b64SAllison Henderson if (!S_ISREG(inode->i_mode)) 353173355192SAllison Henderson return -EOPNOTSUPP; 3532a4bb6b64SAllison Henderson 3533b8a86845SLukas Czerner trace_ext4_punch_hole(inode, offset, length, 0); 3534aaddea81SZheng Liu 353526a4c0c6STheodore Ts'o /* 353626a4c0c6STheodore Ts'o * Write out all dirty pages to avoid race conditions 353726a4c0c6STheodore Ts'o * Then release them. 353826a4c0c6STheodore Ts'o */ 353926a4c0c6STheodore Ts'o if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) { 354026a4c0c6STheodore Ts'o ret = filemap_write_and_wait_range(mapping, offset, 354126a4c0c6STheodore Ts'o offset + length - 1); 354226a4c0c6STheodore Ts'o if (ret) 354326a4c0c6STheodore Ts'o return ret; 354426a4c0c6STheodore Ts'o } 354526a4c0c6STheodore Ts'o 354626a4c0c6STheodore Ts'o mutex_lock(&inode->i_mutex); 35479ef06cecSLukas Czerner 354826a4c0c6STheodore Ts'o /* No need to punch hole beyond i_size */ 354926a4c0c6STheodore Ts'o if (offset >= inode->i_size) 355026a4c0c6STheodore Ts'o goto out_mutex; 355126a4c0c6STheodore Ts'o 355226a4c0c6STheodore Ts'o /* 355326a4c0c6STheodore Ts'o * If the hole extends beyond i_size, set the hole 355426a4c0c6STheodore Ts'o * to end after the page that contains i_size 355526a4c0c6STheodore Ts'o */ 355626a4c0c6STheodore Ts'o if (offset + length > inode->i_size) { 355726a4c0c6STheodore Ts'o length = inode->i_size + 355826a4c0c6STheodore Ts'o PAGE_CACHE_SIZE - (inode->i_size & (PAGE_CACHE_SIZE - 1)) - 355926a4c0c6STheodore Ts'o offset; 356026a4c0c6STheodore Ts'o } 356126a4c0c6STheodore Ts'o 3562a361293fSJan Kara if (offset & (sb->s_blocksize - 1) || 3563a361293fSJan Kara (offset + length) & (sb->s_blocksize - 1)) { 3564a361293fSJan Kara /* 3565a361293fSJan Kara * Attach jinode to inode for jbd2 if we do any zeroing of 3566a361293fSJan Kara * partial block 3567a361293fSJan Kara */ 3568a361293fSJan Kara ret = ext4_inode_attach_jinode(inode); 3569a361293fSJan Kara if (ret < 0) 3570a361293fSJan Kara goto out_mutex; 3571a361293fSJan Kara 3572a361293fSJan Kara } 3573a361293fSJan Kara 3574a87dd18cSLukas Czerner first_block_offset = round_up(offset, sb->s_blocksize); 3575a87dd18cSLukas Czerner last_block_offset = round_down((offset + length), sb->s_blocksize) - 1; 357626a4c0c6STheodore Ts'o 3577a87dd18cSLukas Czerner /* Now release the pages and zero block aligned part of pages*/ 3578a87dd18cSLukas Czerner if (last_block_offset > first_block_offset) 3579a87dd18cSLukas Czerner truncate_pagecache_range(inode, first_block_offset, 3580a87dd18cSLukas Czerner last_block_offset); 358126a4c0c6STheodore Ts'o 358226a4c0c6STheodore Ts'o /* Wait all existing dio workers, newcomers will block on i_mutex */ 358326a4c0c6STheodore Ts'o ext4_inode_block_unlocked_dio(inode); 358426a4c0c6STheodore Ts'o inode_dio_wait(inode); 358526a4c0c6STheodore Ts'o 358626a4c0c6STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 358726a4c0c6STheodore Ts'o credits = ext4_writepage_trans_blocks(inode); 358826a4c0c6STheodore Ts'o else 358926a4c0c6STheodore Ts'o credits = ext4_blocks_for_truncate(inode); 359026a4c0c6STheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits); 359126a4c0c6STheodore Ts'o if (IS_ERR(handle)) { 359226a4c0c6STheodore Ts'o ret = PTR_ERR(handle); 359326a4c0c6STheodore Ts'o ext4_std_error(sb, ret); 359426a4c0c6STheodore Ts'o goto out_dio; 359526a4c0c6STheodore Ts'o } 359626a4c0c6STheodore Ts'o 3597a87dd18cSLukas Czerner ret = ext4_zero_partial_blocks(handle, inode, offset, 3598a87dd18cSLukas Czerner length); 359926a4c0c6STheodore Ts'o if (ret) 360026a4c0c6STheodore Ts'o goto out_stop; 360126a4c0c6STheodore Ts'o 360226a4c0c6STheodore Ts'o first_block = (offset + sb->s_blocksize - 1) >> 360326a4c0c6STheodore Ts'o EXT4_BLOCK_SIZE_BITS(sb); 360426a4c0c6STheodore Ts'o stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb); 360526a4c0c6STheodore Ts'o 360626a4c0c6STheodore Ts'o /* If there are no blocks to remove, return now */ 360726a4c0c6STheodore Ts'o if (first_block >= stop_block) 360826a4c0c6STheodore Ts'o goto out_stop; 360926a4c0c6STheodore Ts'o 361026a4c0c6STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 361126a4c0c6STheodore Ts'o ext4_discard_preallocations(inode); 361226a4c0c6STheodore Ts'o 361326a4c0c6STheodore Ts'o ret = ext4_es_remove_extent(inode, first_block, 361426a4c0c6STheodore Ts'o stop_block - first_block); 361526a4c0c6STheodore Ts'o if (ret) { 361626a4c0c6STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 361726a4c0c6STheodore Ts'o goto out_stop; 361826a4c0c6STheodore Ts'o } 361926a4c0c6STheodore Ts'o 362026a4c0c6STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 362126a4c0c6STheodore Ts'o ret = ext4_ext_remove_space(inode, first_block, 362226a4c0c6STheodore Ts'o stop_block - 1); 362326a4c0c6STheodore Ts'o else 362426a4c0c6STheodore Ts'o ret = ext4_free_hole_blocks(handle, inode, first_block, 362526a4c0c6STheodore Ts'o stop_block); 362626a4c0c6STheodore Ts'o 3627819c4920STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 362826a4c0c6STheodore Ts'o if (IS_SYNC(inode)) 362926a4c0c6STheodore Ts'o ext4_handle_sync(handle); 3630e251f9bcSMaxim Patlasov 3631e251f9bcSMaxim Patlasov /* Now release the pages again to reduce race window */ 3632e251f9bcSMaxim Patlasov if (last_block_offset > first_block_offset) 3633e251f9bcSMaxim Patlasov truncate_pagecache_range(inode, first_block_offset, 3634e251f9bcSMaxim Patlasov last_block_offset); 3635e251f9bcSMaxim Patlasov 363626a4c0c6STheodore Ts'o inode->i_mtime = inode->i_ctime = ext4_current_time(inode); 363726a4c0c6STheodore Ts'o ext4_mark_inode_dirty(handle, inode); 363826a4c0c6STheodore Ts'o out_stop: 363926a4c0c6STheodore Ts'o ext4_journal_stop(handle); 364026a4c0c6STheodore Ts'o out_dio: 364126a4c0c6STheodore Ts'o ext4_inode_resume_unlocked_dio(inode); 364226a4c0c6STheodore Ts'o out_mutex: 364326a4c0c6STheodore Ts'o mutex_unlock(&inode->i_mutex); 364426a4c0c6STheodore Ts'o return ret; 3645a4bb6b64SAllison Henderson } 3646a4bb6b64SAllison Henderson 3647a361293fSJan Kara int ext4_inode_attach_jinode(struct inode *inode) 3648a361293fSJan Kara { 3649a361293fSJan Kara struct ext4_inode_info *ei = EXT4_I(inode); 3650a361293fSJan Kara struct jbd2_inode *jinode; 3651a361293fSJan Kara 3652a361293fSJan Kara if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal) 3653a361293fSJan Kara return 0; 3654a361293fSJan Kara 3655a361293fSJan Kara jinode = jbd2_alloc_inode(GFP_KERNEL); 3656a361293fSJan Kara spin_lock(&inode->i_lock); 3657a361293fSJan Kara if (!ei->jinode) { 3658a361293fSJan Kara if (!jinode) { 3659a361293fSJan Kara spin_unlock(&inode->i_lock); 3660a361293fSJan Kara return -ENOMEM; 3661a361293fSJan Kara } 3662a361293fSJan Kara ei->jinode = jinode; 3663a361293fSJan Kara jbd2_journal_init_jbd_inode(ei->jinode, inode); 3664a361293fSJan Kara jinode = NULL; 3665a361293fSJan Kara } 3666a361293fSJan Kara spin_unlock(&inode->i_lock); 3667a361293fSJan Kara if (unlikely(jinode != NULL)) 3668a361293fSJan Kara jbd2_free_inode(jinode); 3669a361293fSJan Kara return 0; 3670a361293fSJan Kara } 3671a361293fSJan Kara 3672a4bb6b64SAllison Henderson /* 3673617ba13bSMingming Cao * ext4_truncate() 3674ac27a0ecSDave Kleikamp * 3675617ba13bSMingming Cao * We block out ext4_get_block() block instantiations across the entire 3676617ba13bSMingming Cao * transaction, and VFS/VM ensures that ext4_truncate() cannot run 3677ac27a0ecSDave Kleikamp * simultaneously on behalf of the same inode. 3678ac27a0ecSDave Kleikamp * 367942b2aa86SJustin P. Mattock * As we work through the truncate and commit bits of it to the journal there 3680ac27a0ecSDave Kleikamp * is one core, guiding principle: the file's tree must always be consistent on 3681ac27a0ecSDave Kleikamp * disk. We must be able to restart the truncate after a crash. 3682ac27a0ecSDave Kleikamp * 3683ac27a0ecSDave Kleikamp * The file's tree may be transiently inconsistent in memory (although it 3684ac27a0ecSDave Kleikamp * probably isn't), but whenever we close off and commit a journal transaction, 3685ac27a0ecSDave Kleikamp * the contents of (the filesystem + the journal) must be consistent and 3686ac27a0ecSDave Kleikamp * restartable. It's pretty simple, really: bottom up, right to left (although 3687ac27a0ecSDave Kleikamp * left-to-right works OK too). 3688ac27a0ecSDave Kleikamp * 3689ac27a0ecSDave Kleikamp * Note that at recovery time, journal replay occurs *before* the restart of 3690ac27a0ecSDave Kleikamp * truncate against the orphan inode list. 3691ac27a0ecSDave Kleikamp * 3692ac27a0ecSDave Kleikamp * The committed inode has the new, desired i_size (which is the same as 3693617ba13bSMingming Cao * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see 3694ac27a0ecSDave Kleikamp * that this inode's truncate did not complete and it will again call 3695617ba13bSMingming Cao * ext4_truncate() to have another go. So there will be instantiated blocks 3696617ba13bSMingming Cao * to the right of the truncation point in a crashed ext4 filesystem. But 3697ac27a0ecSDave Kleikamp * that's fine - as long as they are linked from the inode, the post-crash 3698617ba13bSMingming Cao * ext4_truncate() run will find them and release them. 3699ac27a0ecSDave Kleikamp */ 3700617ba13bSMingming Cao void ext4_truncate(struct inode *inode) 3701ac27a0ecSDave Kleikamp { 3702819c4920STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 3703819c4920STheodore Ts'o unsigned int credits; 3704819c4920STheodore Ts'o handle_t *handle; 3705819c4920STheodore Ts'o struct address_space *mapping = inode->i_mapping; 3706819c4920STheodore Ts'o 370719b5ef61STheodore Ts'o /* 370819b5ef61STheodore Ts'o * There is a possibility that we're either freeing the inode 3709e04027e8SMatthew Wilcox * or it's a completely new inode. In those cases we might not 371019b5ef61STheodore Ts'o * have i_mutex locked because it's not necessary. 371119b5ef61STheodore Ts'o */ 371219b5ef61STheodore Ts'o if (!(inode->i_state & (I_NEW|I_FREEING))) 371319b5ef61STheodore Ts'o WARN_ON(!mutex_is_locked(&inode->i_mutex)); 37140562e0baSJiaying Zhang trace_ext4_truncate_enter(inode); 37150562e0baSJiaying Zhang 371691ef4cafSDuane Griffin if (!ext4_can_truncate(inode)) 3717ac27a0ecSDave Kleikamp return; 3718ac27a0ecSDave Kleikamp 371912e9b892SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS); 3720c8d46e41SJiaying Zhang 37215534fb5bSTheodore Ts'o if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC)) 372219f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE); 37237d8f9f7dSTheodore Ts'o 3724aef1c851STao Ma if (ext4_has_inline_data(inode)) { 3725aef1c851STao Ma int has_inline = 1; 3726aef1c851STao Ma 3727aef1c851STao Ma ext4_inline_data_truncate(inode, &has_inline); 3728aef1c851STao Ma if (has_inline) 3729aef1c851STao Ma return; 3730aef1c851STao Ma } 3731aef1c851STao Ma 3732a361293fSJan Kara /* If we zero-out tail of the page, we have to create jinode for jbd2 */ 3733a361293fSJan Kara if (inode->i_size & (inode->i_sb->s_blocksize - 1)) { 3734a361293fSJan Kara if (ext4_inode_attach_jinode(inode) < 0) 3735a361293fSJan Kara return; 3736a361293fSJan Kara } 3737a361293fSJan Kara 3738ff9893dcSAmir Goldstein if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 3739819c4920STheodore Ts'o credits = ext4_writepage_trans_blocks(inode); 3740ff9893dcSAmir Goldstein else 3741819c4920STheodore Ts'o credits = ext4_blocks_for_truncate(inode); 3742819c4920STheodore Ts'o 3743819c4920STheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits); 3744819c4920STheodore Ts'o if (IS_ERR(handle)) { 3745819c4920STheodore Ts'o ext4_std_error(inode->i_sb, PTR_ERR(handle)); 3746819c4920STheodore Ts'o return; 3747819c4920STheodore Ts'o } 3748819c4920STheodore Ts'o 3749eb3544c6SLukas Czerner if (inode->i_size & (inode->i_sb->s_blocksize - 1)) 3750eb3544c6SLukas Czerner ext4_block_truncate_page(handle, mapping, inode->i_size); 3751819c4920STheodore Ts'o 3752819c4920STheodore Ts'o /* 3753819c4920STheodore Ts'o * We add the inode to the orphan list, so that if this 3754819c4920STheodore Ts'o * truncate spans multiple transactions, and we crash, we will 3755819c4920STheodore Ts'o * resume the truncate when the filesystem recovers. It also 3756819c4920STheodore Ts'o * marks the inode dirty, to catch the new size. 3757819c4920STheodore Ts'o * 3758819c4920STheodore Ts'o * Implication: the file must always be in a sane, consistent 3759819c4920STheodore Ts'o * truncatable state while each transaction commits. 3760819c4920STheodore Ts'o */ 3761819c4920STheodore Ts'o if (ext4_orphan_add(handle, inode)) 3762819c4920STheodore Ts'o goto out_stop; 3763819c4920STheodore Ts'o 3764819c4920STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 3765819c4920STheodore Ts'o 3766819c4920STheodore Ts'o ext4_discard_preallocations(inode); 3767819c4920STheodore Ts'o 3768819c4920STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 3769819c4920STheodore Ts'o ext4_ext_truncate(handle, inode); 3770819c4920STheodore Ts'o else 3771819c4920STheodore Ts'o ext4_ind_truncate(handle, inode); 3772819c4920STheodore Ts'o 3773819c4920STheodore Ts'o up_write(&ei->i_data_sem); 3774819c4920STheodore Ts'o 3775819c4920STheodore Ts'o if (IS_SYNC(inode)) 3776819c4920STheodore Ts'o ext4_handle_sync(handle); 3777819c4920STheodore Ts'o 3778819c4920STheodore Ts'o out_stop: 3779819c4920STheodore Ts'o /* 3780819c4920STheodore Ts'o * If this was a simple ftruncate() and the file will remain alive, 3781819c4920STheodore Ts'o * then we need to clear up the orphan record which we created above. 3782819c4920STheodore Ts'o * However, if this was a real unlink then we were called by 3783819c4920STheodore Ts'o * ext4_delete_inode(), and we allow that function to clean up the 3784819c4920STheodore Ts'o * orphan info for us. 3785819c4920STheodore Ts'o */ 3786819c4920STheodore Ts'o if (inode->i_nlink) 3787819c4920STheodore Ts'o ext4_orphan_del(handle, inode); 3788819c4920STheodore Ts'o 3789819c4920STheodore Ts'o inode->i_mtime = inode->i_ctime = ext4_current_time(inode); 3790819c4920STheodore Ts'o ext4_mark_inode_dirty(handle, inode); 3791819c4920STheodore Ts'o ext4_journal_stop(handle); 3792a86c6181SAlex Tomas 37930562e0baSJiaying Zhang trace_ext4_truncate_exit(inode); 3794ac27a0ecSDave Kleikamp } 3795ac27a0ecSDave Kleikamp 3796ac27a0ecSDave Kleikamp /* 3797617ba13bSMingming Cao * ext4_get_inode_loc returns with an extra refcount against the inode's 3798ac27a0ecSDave Kleikamp * underlying buffer_head on success. If 'in_mem' is true, we have all 3799ac27a0ecSDave Kleikamp * data in memory that is needed to recreate the on-disk version of this 3800ac27a0ecSDave Kleikamp * inode. 3801ac27a0ecSDave Kleikamp */ 3802617ba13bSMingming Cao static int __ext4_get_inode_loc(struct inode *inode, 3803617ba13bSMingming Cao struct ext4_iloc *iloc, int in_mem) 3804ac27a0ecSDave Kleikamp { 3805240799cdSTheodore Ts'o struct ext4_group_desc *gdp; 3806ac27a0ecSDave Kleikamp struct buffer_head *bh; 3807240799cdSTheodore Ts'o struct super_block *sb = inode->i_sb; 3808240799cdSTheodore Ts'o ext4_fsblk_t block; 3809240799cdSTheodore Ts'o int inodes_per_block, inode_offset; 3810ac27a0ecSDave Kleikamp 38113a06d778SAneesh Kumar K.V iloc->bh = NULL; 3812240799cdSTheodore Ts'o if (!ext4_valid_inum(sb, inode->i_ino)) 3813ac27a0ecSDave Kleikamp return -EIO; 3814ac27a0ecSDave Kleikamp 3815240799cdSTheodore Ts'o iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb); 3816240799cdSTheodore Ts'o gdp = ext4_get_group_desc(sb, iloc->block_group, NULL); 3817240799cdSTheodore Ts'o if (!gdp) 3818240799cdSTheodore Ts'o return -EIO; 3819240799cdSTheodore Ts'o 3820240799cdSTheodore Ts'o /* 3821240799cdSTheodore Ts'o * Figure out the offset within the block group inode table 3822240799cdSTheodore Ts'o */ 382300d09882STao Ma inodes_per_block = EXT4_SB(sb)->s_inodes_per_block; 3824240799cdSTheodore Ts'o inode_offset = ((inode->i_ino - 1) % 3825240799cdSTheodore Ts'o EXT4_INODES_PER_GROUP(sb)); 3826240799cdSTheodore Ts'o block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block); 3827240799cdSTheodore Ts'o iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb); 3828240799cdSTheodore Ts'o 3829240799cdSTheodore Ts'o bh = sb_getblk(sb, block); 3830aebf0243SWang Shilong if (unlikely(!bh)) 3831860d21e2STheodore Ts'o return -ENOMEM; 3832ac27a0ecSDave Kleikamp if (!buffer_uptodate(bh)) { 3833ac27a0ecSDave Kleikamp lock_buffer(bh); 38349c83a923SHidehiro Kawai 38359c83a923SHidehiro Kawai /* 38369c83a923SHidehiro Kawai * If the buffer has the write error flag, we have failed 38379c83a923SHidehiro Kawai * to write out another inode in the same block. In this 38389c83a923SHidehiro Kawai * case, we don't have to read the block because we may 38399c83a923SHidehiro Kawai * read the old inode data successfully. 38409c83a923SHidehiro Kawai */ 38419c83a923SHidehiro Kawai if (buffer_write_io_error(bh) && !buffer_uptodate(bh)) 38429c83a923SHidehiro Kawai set_buffer_uptodate(bh); 38439c83a923SHidehiro Kawai 3844ac27a0ecSDave Kleikamp if (buffer_uptodate(bh)) { 3845ac27a0ecSDave Kleikamp /* someone brought it uptodate while we waited */ 3846ac27a0ecSDave Kleikamp unlock_buffer(bh); 3847ac27a0ecSDave Kleikamp goto has_buffer; 3848ac27a0ecSDave Kleikamp } 3849ac27a0ecSDave Kleikamp 3850ac27a0ecSDave Kleikamp /* 3851ac27a0ecSDave Kleikamp * If we have all information of the inode in memory and this 3852ac27a0ecSDave Kleikamp * is the only valid inode in the block, we need not read the 3853ac27a0ecSDave Kleikamp * block. 3854ac27a0ecSDave Kleikamp */ 3855ac27a0ecSDave Kleikamp if (in_mem) { 3856ac27a0ecSDave Kleikamp struct buffer_head *bitmap_bh; 3857240799cdSTheodore Ts'o int i, start; 3858ac27a0ecSDave Kleikamp 3859240799cdSTheodore Ts'o start = inode_offset & ~(inodes_per_block - 1); 3860ac27a0ecSDave Kleikamp 3861ac27a0ecSDave Kleikamp /* Is the inode bitmap in cache? */ 3862240799cdSTheodore Ts'o bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp)); 3863aebf0243SWang Shilong if (unlikely(!bitmap_bh)) 3864ac27a0ecSDave Kleikamp goto make_io; 3865ac27a0ecSDave Kleikamp 3866ac27a0ecSDave Kleikamp /* 3867ac27a0ecSDave Kleikamp * If the inode bitmap isn't in cache then the 3868ac27a0ecSDave Kleikamp * optimisation may end up performing two reads instead 3869ac27a0ecSDave Kleikamp * of one, so skip it. 3870ac27a0ecSDave Kleikamp */ 3871ac27a0ecSDave Kleikamp if (!buffer_uptodate(bitmap_bh)) { 3872ac27a0ecSDave Kleikamp brelse(bitmap_bh); 3873ac27a0ecSDave Kleikamp goto make_io; 3874ac27a0ecSDave Kleikamp } 3875240799cdSTheodore Ts'o for (i = start; i < start + inodes_per_block; i++) { 3876ac27a0ecSDave Kleikamp if (i == inode_offset) 3877ac27a0ecSDave Kleikamp continue; 3878617ba13bSMingming Cao if (ext4_test_bit(i, bitmap_bh->b_data)) 3879ac27a0ecSDave Kleikamp break; 3880ac27a0ecSDave Kleikamp } 3881ac27a0ecSDave Kleikamp brelse(bitmap_bh); 3882240799cdSTheodore Ts'o if (i == start + inodes_per_block) { 3883ac27a0ecSDave Kleikamp /* all other inodes are free, so skip I/O */ 3884ac27a0ecSDave Kleikamp memset(bh->b_data, 0, bh->b_size); 3885ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 3886ac27a0ecSDave Kleikamp unlock_buffer(bh); 3887ac27a0ecSDave Kleikamp goto has_buffer; 3888ac27a0ecSDave Kleikamp } 3889ac27a0ecSDave Kleikamp } 3890ac27a0ecSDave Kleikamp 3891ac27a0ecSDave Kleikamp make_io: 3892ac27a0ecSDave Kleikamp /* 3893240799cdSTheodore Ts'o * If we need to do any I/O, try to pre-readahead extra 3894240799cdSTheodore Ts'o * blocks from the inode table. 3895240799cdSTheodore Ts'o */ 3896240799cdSTheodore Ts'o if (EXT4_SB(sb)->s_inode_readahead_blks) { 3897240799cdSTheodore Ts'o ext4_fsblk_t b, end, table; 3898240799cdSTheodore Ts'o unsigned num; 38990d606e2cSTheodore Ts'o __u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks; 3900240799cdSTheodore Ts'o 3901240799cdSTheodore Ts'o table = ext4_inode_table(sb, gdp); 3902b713a5ecSTheodore Ts'o /* s_inode_readahead_blks is always a power of 2 */ 39030d606e2cSTheodore Ts'o b = block & ~((ext4_fsblk_t) ra_blks - 1); 3904240799cdSTheodore Ts'o if (table > b) 3905240799cdSTheodore Ts'o b = table; 39060d606e2cSTheodore Ts'o end = b + ra_blks; 3907240799cdSTheodore Ts'o num = EXT4_INODES_PER_GROUP(sb); 3908feb0ab32SDarrick J. Wong if (ext4_has_group_desc_csum(sb)) 3909560671a0SAneesh Kumar K.V num -= ext4_itable_unused_count(sb, gdp); 3910240799cdSTheodore Ts'o table += num / inodes_per_block; 3911240799cdSTheodore Ts'o if (end > table) 3912240799cdSTheodore Ts'o end = table; 3913240799cdSTheodore Ts'o while (b <= end) 3914240799cdSTheodore Ts'o sb_breadahead(sb, b++); 3915240799cdSTheodore Ts'o } 3916240799cdSTheodore Ts'o 3917240799cdSTheodore Ts'o /* 3918ac27a0ecSDave Kleikamp * There are other valid inodes in the buffer, this inode 3919ac27a0ecSDave Kleikamp * has in-inode xattrs, or we don't have this inode in memory. 3920ac27a0ecSDave Kleikamp * Read the block from disk. 3921ac27a0ecSDave Kleikamp */ 39220562e0baSJiaying Zhang trace_ext4_load_inode(inode); 3923ac27a0ecSDave Kleikamp get_bh(bh); 3924ac27a0ecSDave Kleikamp bh->b_end_io = end_buffer_read_sync; 392565299a3bSChristoph Hellwig submit_bh(READ | REQ_META | REQ_PRIO, bh); 3926ac27a0ecSDave Kleikamp wait_on_buffer(bh); 3927ac27a0ecSDave Kleikamp if (!buffer_uptodate(bh)) { 3928c398eda0STheodore Ts'o EXT4_ERROR_INODE_BLOCK(inode, block, 3929c398eda0STheodore Ts'o "unable to read itable block"); 3930ac27a0ecSDave Kleikamp brelse(bh); 3931ac27a0ecSDave Kleikamp return -EIO; 3932ac27a0ecSDave Kleikamp } 3933ac27a0ecSDave Kleikamp } 3934ac27a0ecSDave Kleikamp has_buffer: 3935ac27a0ecSDave Kleikamp iloc->bh = bh; 3936ac27a0ecSDave Kleikamp return 0; 3937ac27a0ecSDave Kleikamp } 3938ac27a0ecSDave Kleikamp 3939617ba13bSMingming Cao int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc) 3940ac27a0ecSDave Kleikamp { 3941ac27a0ecSDave Kleikamp /* We have all inode data except xattrs in memory here. */ 3942617ba13bSMingming Cao return __ext4_get_inode_loc(inode, iloc, 394319f5fb7aSTheodore Ts'o !ext4_test_inode_state(inode, EXT4_STATE_XATTR)); 3944ac27a0ecSDave Kleikamp } 3945ac27a0ecSDave Kleikamp 3946617ba13bSMingming Cao void ext4_set_inode_flags(struct inode *inode) 3947ac27a0ecSDave Kleikamp { 3948617ba13bSMingming Cao unsigned int flags = EXT4_I(inode)->i_flags; 394900a1a053STheodore Ts'o unsigned int new_fl = 0; 3950ac27a0ecSDave Kleikamp 3951617ba13bSMingming Cao if (flags & EXT4_SYNC_FL) 395200a1a053STheodore Ts'o new_fl |= S_SYNC; 3953617ba13bSMingming Cao if (flags & EXT4_APPEND_FL) 395400a1a053STheodore Ts'o new_fl |= S_APPEND; 3955617ba13bSMingming Cao if (flags & EXT4_IMMUTABLE_FL) 395600a1a053STheodore Ts'o new_fl |= S_IMMUTABLE; 3957617ba13bSMingming Cao if (flags & EXT4_NOATIME_FL) 395800a1a053STheodore Ts'o new_fl |= S_NOATIME; 3959617ba13bSMingming Cao if (flags & EXT4_DIRSYNC_FL) 396000a1a053STheodore Ts'o new_fl |= S_DIRSYNC; 39615f16f322STheodore Ts'o inode_set_flags(inode, new_fl, 39625f16f322STheodore Ts'o S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC); 3963ac27a0ecSDave Kleikamp } 3964ac27a0ecSDave Kleikamp 3965ff9ddf7eSJan Kara /* Propagate flags from i_flags to EXT4_I(inode)->i_flags */ 3966ff9ddf7eSJan Kara void ext4_get_inode_flags(struct ext4_inode_info *ei) 3967ff9ddf7eSJan Kara { 396884a8dce2SDmitry Monakhov unsigned int vfs_fl; 396984a8dce2SDmitry Monakhov unsigned long old_fl, new_fl; 3970ff9ddf7eSJan Kara 397184a8dce2SDmitry Monakhov do { 397284a8dce2SDmitry Monakhov vfs_fl = ei->vfs_inode.i_flags; 397384a8dce2SDmitry Monakhov old_fl = ei->i_flags; 397484a8dce2SDmitry Monakhov new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL| 397584a8dce2SDmitry Monakhov EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL| 397684a8dce2SDmitry Monakhov EXT4_DIRSYNC_FL); 397784a8dce2SDmitry Monakhov if (vfs_fl & S_SYNC) 397884a8dce2SDmitry Monakhov new_fl |= EXT4_SYNC_FL; 397984a8dce2SDmitry Monakhov if (vfs_fl & S_APPEND) 398084a8dce2SDmitry Monakhov new_fl |= EXT4_APPEND_FL; 398184a8dce2SDmitry Monakhov if (vfs_fl & S_IMMUTABLE) 398284a8dce2SDmitry Monakhov new_fl |= EXT4_IMMUTABLE_FL; 398384a8dce2SDmitry Monakhov if (vfs_fl & S_NOATIME) 398484a8dce2SDmitry Monakhov new_fl |= EXT4_NOATIME_FL; 398584a8dce2SDmitry Monakhov if (vfs_fl & S_DIRSYNC) 398684a8dce2SDmitry Monakhov new_fl |= EXT4_DIRSYNC_FL; 398784a8dce2SDmitry Monakhov } while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl); 3988ff9ddf7eSJan Kara } 3989de9a55b8STheodore Ts'o 39900fc1b451SAneesh Kumar K.V static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode, 39910fc1b451SAneesh Kumar K.V struct ext4_inode_info *ei) 39920fc1b451SAneesh Kumar K.V { 39930fc1b451SAneesh Kumar K.V blkcnt_t i_blocks ; 39948180a562SAneesh Kumar K.V struct inode *inode = &(ei->vfs_inode); 39958180a562SAneesh Kumar K.V struct super_block *sb = inode->i_sb; 39960fc1b451SAneesh Kumar K.V 39970fc1b451SAneesh Kumar K.V if (EXT4_HAS_RO_COMPAT_FEATURE(sb, 39980fc1b451SAneesh Kumar K.V EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) { 39990fc1b451SAneesh Kumar K.V /* we are using combined 48 bit field */ 40000fc1b451SAneesh Kumar K.V i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 | 40010fc1b451SAneesh Kumar K.V le32_to_cpu(raw_inode->i_blocks_lo); 400207a03824STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) { 40038180a562SAneesh Kumar K.V /* i_blocks represent file system block size */ 40048180a562SAneesh Kumar K.V return i_blocks << (inode->i_blkbits - 9); 40058180a562SAneesh Kumar K.V } else { 40060fc1b451SAneesh Kumar K.V return i_blocks; 40078180a562SAneesh Kumar K.V } 40080fc1b451SAneesh Kumar K.V } else { 40090fc1b451SAneesh Kumar K.V return le32_to_cpu(raw_inode->i_blocks_lo); 40100fc1b451SAneesh Kumar K.V } 40110fc1b451SAneesh Kumar K.V } 4012ff9ddf7eSJan Kara 4013152a7b0aSTao Ma static inline void ext4_iget_extra_inode(struct inode *inode, 4014152a7b0aSTao Ma struct ext4_inode *raw_inode, 4015152a7b0aSTao Ma struct ext4_inode_info *ei) 4016152a7b0aSTao Ma { 4017152a7b0aSTao Ma __le32 *magic = (void *)raw_inode + 4018152a7b0aSTao Ma EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize; 401967cf5b09STao Ma if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) { 4020152a7b0aSTao Ma ext4_set_inode_state(inode, EXT4_STATE_XATTR); 402167cf5b09STao Ma ext4_find_inline_data_nolock(inode); 4022f19d5870STao Ma } else 4023f19d5870STao Ma EXT4_I(inode)->i_inline_off = 0; 4024152a7b0aSTao Ma } 4025152a7b0aSTao Ma 40261d1fe1eeSDavid Howells struct inode *ext4_iget(struct super_block *sb, unsigned long ino) 4027ac27a0ecSDave Kleikamp { 4028617ba13bSMingming Cao struct ext4_iloc iloc; 4029617ba13bSMingming Cao struct ext4_inode *raw_inode; 40301d1fe1eeSDavid Howells struct ext4_inode_info *ei; 40311d1fe1eeSDavid Howells struct inode *inode; 4032b436b9beSJan Kara journal_t *journal = EXT4_SB(sb)->s_journal; 40331d1fe1eeSDavid Howells long ret; 4034ac27a0ecSDave Kleikamp int block; 403508cefc7aSEric W. Biederman uid_t i_uid; 403608cefc7aSEric W. Biederman gid_t i_gid; 4037ac27a0ecSDave Kleikamp 40381d1fe1eeSDavid Howells inode = iget_locked(sb, ino); 40391d1fe1eeSDavid Howells if (!inode) 40401d1fe1eeSDavid Howells return ERR_PTR(-ENOMEM); 40411d1fe1eeSDavid Howells if (!(inode->i_state & I_NEW)) 40421d1fe1eeSDavid Howells return inode; 40431d1fe1eeSDavid Howells 40441d1fe1eeSDavid Howells ei = EXT4_I(inode); 40457dc57615SPeter Huewe iloc.bh = NULL; 4046ac27a0ecSDave Kleikamp 40471d1fe1eeSDavid Howells ret = __ext4_get_inode_loc(inode, &iloc, 0); 40481d1fe1eeSDavid Howells if (ret < 0) 4049ac27a0ecSDave Kleikamp goto bad_inode; 4050617ba13bSMingming Cao raw_inode = ext4_raw_inode(&iloc); 4051814525f4SDarrick J. Wong 4052814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 4053814525f4SDarrick J. Wong ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize); 4054814525f4SDarrick J. Wong if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize > 4055814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)) { 4056814525f4SDarrick J. Wong EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)", 4057814525f4SDarrick J. Wong EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize, 4058814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)); 4059814525f4SDarrick J. Wong ret = -EIO; 4060814525f4SDarrick J. Wong goto bad_inode; 4061814525f4SDarrick J. Wong } 4062814525f4SDarrick J. Wong } else 4063814525f4SDarrick J. Wong ei->i_extra_isize = 0; 4064814525f4SDarrick J. Wong 4065814525f4SDarrick J. Wong /* Precompute checksum seed for inode metadata */ 4066814525f4SDarrick J. Wong if (EXT4_HAS_RO_COMPAT_FEATURE(sb, 4067814525f4SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)) { 4068814525f4SDarrick J. Wong struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 4069814525f4SDarrick J. Wong __u32 csum; 4070814525f4SDarrick J. Wong __le32 inum = cpu_to_le32(inode->i_ino); 4071814525f4SDarrick J. Wong __le32 gen = raw_inode->i_generation; 4072814525f4SDarrick J. Wong csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum, 4073814525f4SDarrick J. Wong sizeof(inum)); 4074814525f4SDarrick J. Wong ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen, 4075814525f4SDarrick J. Wong sizeof(gen)); 4076814525f4SDarrick J. Wong } 4077814525f4SDarrick J. Wong 4078814525f4SDarrick J. Wong if (!ext4_inode_csum_verify(inode, raw_inode, ei)) { 4079814525f4SDarrick J. Wong EXT4_ERROR_INODE(inode, "checksum invalid"); 4080814525f4SDarrick J. Wong ret = -EIO; 4081814525f4SDarrick J. Wong goto bad_inode; 4082814525f4SDarrick J. Wong } 4083814525f4SDarrick J. Wong 4084ac27a0ecSDave Kleikamp inode->i_mode = le16_to_cpu(raw_inode->i_mode); 408508cefc7aSEric W. Biederman i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low); 408608cefc7aSEric W. Biederman i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low); 4087ac27a0ecSDave Kleikamp if (!(test_opt(inode->i_sb, NO_UID32))) { 408808cefc7aSEric W. Biederman i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16; 408908cefc7aSEric W. Biederman i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16; 4090ac27a0ecSDave Kleikamp } 409108cefc7aSEric W. Biederman i_uid_write(inode, i_uid); 409208cefc7aSEric W. Biederman i_gid_write(inode, i_gid); 4093bfe86848SMiklos Szeredi set_nlink(inode, le16_to_cpu(raw_inode->i_links_count)); 4094ac27a0ecSDave Kleikamp 4095353eb83cSTheodore Ts'o ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */ 409667cf5b09STao Ma ei->i_inline_off = 0; 4097ac27a0ecSDave Kleikamp ei->i_dir_start_lookup = 0; 4098ac27a0ecSDave Kleikamp ei->i_dtime = le32_to_cpu(raw_inode->i_dtime); 4099ac27a0ecSDave Kleikamp /* We now have enough fields to check if the inode was active or not. 4100ac27a0ecSDave Kleikamp * This is needed because nfsd might try to access dead inodes 4101ac27a0ecSDave Kleikamp * the test is that same one that e2fsck uses 4102ac27a0ecSDave Kleikamp * NeilBrown 1999oct15 4103ac27a0ecSDave Kleikamp */ 4104ac27a0ecSDave Kleikamp if (inode->i_nlink == 0) { 4105393d1d1dSDr. Tilmann Bubeck if ((inode->i_mode == 0 || 4106393d1d1dSDr. Tilmann Bubeck !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) && 4107393d1d1dSDr. Tilmann Bubeck ino != EXT4_BOOT_LOADER_INO) { 4108ac27a0ecSDave Kleikamp /* this inode is deleted */ 41091d1fe1eeSDavid Howells ret = -ESTALE; 4110ac27a0ecSDave Kleikamp goto bad_inode; 4111ac27a0ecSDave Kleikamp } 4112ac27a0ecSDave Kleikamp /* The only unlinked inodes we let through here have 4113ac27a0ecSDave Kleikamp * valid i_mode and are being read by the orphan 4114ac27a0ecSDave Kleikamp * recovery code: that's fine, we're about to complete 4115393d1d1dSDr. Tilmann Bubeck * the process of deleting those. 4116393d1d1dSDr. Tilmann Bubeck * OR it is the EXT4_BOOT_LOADER_INO which is 4117393d1d1dSDr. Tilmann Bubeck * not initialized on a new filesystem. */ 4118ac27a0ecSDave Kleikamp } 4119ac27a0ecSDave Kleikamp ei->i_flags = le32_to_cpu(raw_inode->i_flags); 41200fc1b451SAneesh Kumar K.V inode->i_blocks = ext4_inode_blocks(raw_inode, ei); 41217973c0c1SAneesh Kumar K.V ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo); 4122a9e81742STheodore Ts'o if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) 4123a1ddeb7eSBadari Pulavarty ei->i_file_acl |= 4124a1ddeb7eSBadari Pulavarty ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32; 4125a48380f7SAneesh Kumar K.V inode->i_size = ext4_isize(raw_inode); 4126ac27a0ecSDave Kleikamp ei->i_disksize = inode->i_size; 4127a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA 4128a9e7f447SDmitry Monakhov ei->i_reserved_quota = 0; 4129a9e7f447SDmitry Monakhov #endif 4130ac27a0ecSDave Kleikamp inode->i_generation = le32_to_cpu(raw_inode->i_generation); 4131ac27a0ecSDave Kleikamp ei->i_block_group = iloc.block_group; 4132a4912123STheodore Ts'o ei->i_last_alloc_group = ~0; 4133ac27a0ecSDave Kleikamp /* 4134ac27a0ecSDave Kleikamp * NOTE! The in-memory inode i_data array is in little-endian order 4135ac27a0ecSDave Kleikamp * even on big-endian machines: we do NOT byteswap the block numbers! 4136ac27a0ecSDave Kleikamp */ 4137617ba13bSMingming Cao for (block = 0; block < EXT4_N_BLOCKS; block++) 4138ac27a0ecSDave Kleikamp ei->i_data[block] = raw_inode->i_block[block]; 4139ac27a0ecSDave Kleikamp INIT_LIST_HEAD(&ei->i_orphan); 4140ac27a0ecSDave Kleikamp 4141b436b9beSJan Kara /* 4142b436b9beSJan Kara * Set transaction id's of transactions that have to be committed 4143b436b9beSJan Kara * to finish f[data]sync. We set them to currently running transaction 4144b436b9beSJan Kara * as we cannot be sure that the inode or some of its metadata isn't 4145b436b9beSJan Kara * part of the transaction - the inode could have been reclaimed and 4146b436b9beSJan Kara * now it is reread from disk. 4147b436b9beSJan Kara */ 4148b436b9beSJan Kara if (journal) { 4149b436b9beSJan Kara transaction_t *transaction; 4150b436b9beSJan Kara tid_t tid; 4151b436b9beSJan Kara 4152a931da6aSTheodore Ts'o read_lock(&journal->j_state_lock); 4153b436b9beSJan Kara if (journal->j_running_transaction) 4154b436b9beSJan Kara transaction = journal->j_running_transaction; 4155b436b9beSJan Kara else 4156b436b9beSJan Kara transaction = journal->j_committing_transaction; 4157b436b9beSJan Kara if (transaction) 4158b436b9beSJan Kara tid = transaction->t_tid; 4159b436b9beSJan Kara else 4160b436b9beSJan Kara tid = journal->j_commit_sequence; 4161a931da6aSTheodore Ts'o read_unlock(&journal->j_state_lock); 4162b436b9beSJan Kara ei->i_sync_tid = tid; 4163b436b9beSJan Kara ei->i_datasync_tid = tid; 4164b436b9beSJan Kara } 4165b436b9beSJan Kara 41660040d987SEric Sandeen if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 4167ac27a0ecSDave Kleikamp if (ei->i_extra_isize == 0) { 4168ac27a0ecSDave Kleikamp /* The extra space is currently unused. Use it. */ 4169617ba13bSMingming Cao ei->i_extra_isize = sizeof(struct ext4_inode) - 4170617ba13bSMingming Cao EXT4_GOOD_OLD_INODE_SIZE; 4171ac27a0ecSDave Kleikamp } else { 4172152a7b0aSTao Ma ext4_iget_extra_inode(inode, raw_inode, ei); 4173ac27a0ecSDave Kleikamp } 4174814525f4SDarrick J. Wong } 4175ac27a0ecSDave Kleikamp 4176ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode); 4177ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode); 4178ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode); 4179ef7f3835SKalpak Shah EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode); 4180ef7f3835SKalpak Shah 4181ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) { 418225ec56b5SJean Noel Cordenner inode->i_version = le32_to_cpu(raw_inode->i_disk_version); 418325ec56b5SJean Noel Cordenner if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 418425ec56b5SJean Noel Cordenner if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi)) 418525ec56b5SJean Noel Cordenner inode->i_version |= 418625ec56b5SJean Noel Cordenner (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32; 418725ec56b5SJean Noel Cordenner } 4188c4f65706STheodore Ts'o } 418925ec56b5SJean Noel Cordenner 4190c4b5a614STheodore Ts'o ret = 0; 4191485c26ecSTheodore Ts'o if (ei->i_file_acl && 41921032988cSTheodore Ts'o !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) { 419324676da4STheodore Ts'o EXT4_ERROR_INODE(inode, "bad extended attribute block %llu", 419424676da4STheodore Ts'o ei->i_file_acl); 4195485c26ecSTheodore Ts'o ret = -EIO; 4196485c26ecSTheodore Ts'o goto bad_inode; 4197f19d5870STao Ma } else if (!ext4_has_inline_data(inode)) { 4198f19d5870STao Ma if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 4199f19d5870STao Ma if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || 4200c4b5a614STheodore Ts'o (S_ISLNK(inode->i_mode) && 4201f19d5870STao Ma !ext4_inode_is_fast_symlink(inode)))) 42027a262f7cSAneesh Kumar K.V /* Validate extent which is part of inode */ 42037a262f7cSAneesh Kumar K.V ret = ext4_ext_check_inode(inode); 4204fe2c8191SThiemo Nagel } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || 4205fe2c8191SThiemo Nagel (S_ISLNK(inode->i_mode) && 4206fe2c8191SThiemo Nagel !ext4_inode_is_fast_symlink(inode))) { 4207fe2c8191SThiemo Nagel /* Validate block references which are part of inode */ 42081f7d1e77STheodore Ts'o ret = ext4_ind_check_inode(inode); 4209fe2c8191SThiemo Nagel } 4210f19d5870STao Ma } 4211567f3e9aSTheodore Ts'o if (ret) 42127a262f7cSAneesh Kumar K.V goto bad_inode; 42137a262f7cSAneesh Kumar K.V 4214ac27a0ecSDave Kleikamp if (S_ISREG(inode->i_mode)) { 4215617ba13bSMingming Cao inode->i_op = &ext4_file_inode_operations; 4216617ba13bSMingming Cao inode->i_fop = &ext4_file_operations; 4217617ba13bSMingming Cao ext4_set_aops(inode); 4218ac27a0ecSDave Kleikamp } else if (S_ISDIR(inode->i_mode)) { 4219617ba13bSMingming Cao inode->i_op = &ext4_dir_inode_operations; 4220617ba13bSMingming Cao inode->i_fop = &ext4_dir_operations; 4221ac27a0ecSDave Kleikamp } else if (S_ISLNK(inode->i_mode)) { 4222e83c1397SDuane Griffin if (ext4_inode_is_fast_symlink(inode)) { 4223617ba13bSMingming Cao inode->i_op = &ext4_fast_symlink_inode_operations; 4224e83c1397SDuane Griffin nd_terminate_link(ei->i_data, inode->i_size, 4225e83c1397SDuane Griffin sizeof(ei->i_data) - 1); 4226e83c1397SDuane Griffin } else { 4227617ba13bSMingming Cao inode->i_op = &ext4_symlink_inode_operations; 4228617ba13bSMingming Cao ext4_set_aops(inode); 4229ac27a0ecSDave Kleikamp } 4230563bdd61STheodore Ts'o } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) || 4231563bdd61STheodore Ts'o S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) { 4232617ba13bSMingming Cao inode->i_op = &ext4_special_inode_operations; 4233ac27a0ecSDave Kleikamp if (raw_inode->i_block[0]) 4234ac27a0ecSDave Kleikamp init_special_inode(inode, inode->i_mode, 4235ac27a0ecSDave Kleikamp old_decode_dev(le32_to_cpu(raw_inode->i_block[0]))); 4236ac27a0ecSDave Kleikamp else 4237ac27a0ecSDave Kleikamp init_special_inode(inode, inode->i_mode, 4238ac27a0ecSDave Kleikamp new_decode_dev(le32_to_cpu(raw_inode->i_block[1]))); 4239393d1d1dSDr. Tilmann Bubeck } else if (ino == EXT4_BOOT_LOADER_INO) { 4240393d1d1dSDr. Tilmann Bubeck make_bad_inode(inode); 4241563bdd61STheodore Ts'o } else { 4242563bdd61STheodore Ts'o ret = -EIO; 424324676da4STheodore Ts'o EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode); 4244563bdd61STheodore Ts'o goto bad_inode; 4245ac27a0ecSDave Kleikamp } 4246ac27a0ecSDave Kleikamp brelse(iloc.bh); 4247617ba13bSMingming Cao ext4_set_inode_flags(inode); 42481d1fe1eeSDavid Howells unlock_new_inode(inode); 42491d1fe1eeSDavid Howells return inode; 4250ac27a0ecSDave Kleikamp 4251ac27a0ecSDave Kleikamp bad_inode: 4252567f3e9aSTheodore Ts'o brelse(iloc.bh); 42531d1fe1eeSDavid Howells iget_failed(inode); 42541d1fe1eeSDavid Howells return ERR_PTR(ret); 4255ac27a0ecSDave Kleikamp } 4256ac27a0ecSDave Kleikamp 42570fc1b451SAneesh Kumar K.V static int ext4_inode_blocks_set(handle_t *handle, 42580fc1b451SAneesh Kumar K.V struct ext4_inode *raw_inode, 42590fc1b451SAneesh Kumar K.V struct ext4_inode_info *ei) 42600fc1b451SAneesh Kumar K.V { 42610fc1b451SAneesh Kumar K.V struct inode *inode = &(ei->vfs_inode); 42620fc1b451SAneesh Kumar K.V u64 i_blocks = inode->i_blocks; 42630fc1b451SAneesh Kumar K.V struct super_block *sb = inode->i_sb; 42640fc1b451SAneesh Kumar K.V 42650fc1b451SAneesh Kumar K.V if (i_blocks <= ~0U) { 42660fc1b451SAneesh Kumar K.V /* 42674907cb7bSAnatol Pomozov * i_blocks can be represented in a 32 bit variable 42680fc1b451SAneesh Kumar K.V * as multiple of 512 bytes 42690fc1b451SAneesh Kumar K.V */ 42708180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 42710fc1b451SAneesh Kumar K.V raw_inode->i_blocks_high = 0; 427284a8dce2SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE); 4273f287a1a5STheodore Ts'o return 0; 4274f287a1a5STheodore Ts'o } 4275f287a1a5STheodore Ts'o if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) 4276f287a1a5STheodore Ts'o return -EFBIG; 4277f287a1a5STheodore Ts'o 4278f287a1a5STheodore Ts'o if (i_blocks <= 0xffffffffffffULL) { 42790fc1b451SAneesh Kumar K.V /* 42800fc1b451SAneesh Kumar K.V * i_blocks can be represented in a 48 bit variable 42810fc1b451SAneesh Kumar K.V * as multiple of 512 bytes 42820fc1b451SAneesh Kumar K.V */ 42838180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 42840fc1b451SAneesh Kumar K.V raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32); 428584a8dce2SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE); 42860fc1b451SAneesh Kumar K.V } else { 428784a8dce2SDmitry Monakhov ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE); 42888180a562SAneesh Kumar K.V /* i_block is stored in file system block size */ 42898180a562SAneesh Kumar K.V i_blocks = i_blocks >> (inode->i_blkbits - 9); 42908180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 42918180a562SAneesh Kumar K.V raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32); 42920fc1b451SAneesh Kumar K.V } 4293f287a1a5STheodore Ts'o return 0; 42940fc1b451SAneesh Kumar K.V } 42950fc1b451SAneesh Kumar K.V 4296ac27a0ecSDave Kleikamp /* 4297ac27a0ecSDave Kleikamp * Post the struct inode info into an on-disk inode location in the 4298ac27a0ecSDave Kleikamp * buffer-cache. This gobbles the caller's reference to the 4299ac27a0ecSDave Kleikamp * buffer_head in the inode location struct. 4300ac27a0ecSDave Kleikamp * 4301ac27a0ecSDave Kleikamp * The caller must have write access to iloc->bh. 4302ac27a0ecSDave Kleikamp */ 4303617ba13bSMingming Cao static int ext4_do_update_inode(handle_t *handle, 4304ac27a0ecSDave Kleikamp struct inode *inode, 4305830156c7SFrank Mayhar struct ext4_iloc *iloc) 4306ac27a0ecSDave Kleikamp { 4307617ba13bSMingming Cao struct ext4_inode *raw_inode = ext4_raw_inode(iloc); 4308617ba13bSMingming Cao struct ext4_inode_info *ei = EXT4_I(inode); 4309ac27a0ecSDave Kleikamp struct buffer_head *bh = iloc->bh; 4310202ee5dfSTheodore Ts'o struct super_block *sb = inode->i_sb; 4311ac27a0ecSDave Kleikamp int err = 0, rc, block; 4312202ee5dfSTheodore Ts'o int need_datasync = 0, set_large_file = 0; 431308cefc7aSEric W. Biederman uid_t i_uid; 431408cefc7aSEric W. Biederman gid_t i_gid; 4315ac27a0ecSDave Kleikamp 4316202ee5dfSTheodore Ts'o spin_lock(&ei->i_raw_lock); 4317202ee5dfSTheodore Ts'o 4318202ee5dfSTheodore Ts'o /* For fields not tracked in the in-memory inode, 4319ac27a0ecSDave Kleikamp * initialise them to zero for new inodes. */ 432019f5fb7aSTheodore Ts'o if (ext4_test_inode_state(inode, EXT4_STATE_NEW)) 4321617ba13bSMingming Cao memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size); 4322ac27a0ecSDave Kleikamp 4323ff9ddf7eSJan Kara ext4_get_inode_flags(ei); 4324ac27a0ecSDave Kleikamp raw_inode->i_mode = cpu_to_le16(inode->i_mode); 432508cefc7aSEric W. Biederman i_uid = i_uid_read(inode); 432608cefc7aSEric W. Biederman i_gid = i_gid_read(inode); 4327ac27a0ecSDave Kleikamp if (!(test_opt(inode->i_sb, NO_UID32))) { 432808cefc7aSEric W. Biederman raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid)); 432908cefc7aSEric W. Biederman raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid)); 4330ac27a0ecSDave Kleikamp /* 4331ac27a0ecSDave Kleikamp * Fix up interoperability with old kernels. Otherwise, old inodes get 4332ac27a0ecSDave Kleikamp * re-used with the upper 16 bits of the uid/gid intact 4333ac27a0ecSDave Kleikamp */ 4334ac27a0ecSDave Kleikamp if (!ei->i_dtime) { 4335ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 433608cefc7aSEric W. Biederman cpu_to_le16(high_16_bits(i_uid)); 4337ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 433808cefc7aSEric W. Biederman cpu_to_le16(high_16_bits(i_gid)); 4339ac27a0ecSDave Kleikamp } else { 4340ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 0; 4341ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 0; 4342ac27a0ecSDave Kleikamp } 4343ac27a0ecSDave Kleikamp } else { 434408cefc7aSEric W. Biederman raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid)); 434508cefc7aSEric W. Biederman raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid)); 4346ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 0; 4347ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 0; 4348ac27a0ecSDave Kleikamp } 4349ac27a0ecSDave Kleikamp raw_inode->i_links_count = cpu_to_le16(inode->i_nlink); 4350ef7f3835SKalpak Shah 4351ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode); 4352ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode); 4353ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode); 4354ef7f3835SKalpak Shah EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode); 4355ef7f3835SKalpak Shah 4356202ee5dfSTheodore Ts'o if (ext4_inode_blocks_set(handle, raw_inode, ei)) { 4357202ee5dfSTheodore Ts'o spin_unlock(&ei->i_raw_lock); 43580fc1b451SAneesh Kumar K.V goto out_brelse; 4359202ee5dfSTheodore Ts'o } 4360ac27a0ecSDave Kleikamp raw_inode->i_dtime = cpu_to_le32(ei->i_dtime); 4361353eb83cSTheodore Ts'o raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF); 4362ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) 4363a1ddeb7eSBadari Pulavarty raw_inode->i_file_acl_high = 4364a1ddeb7eSBadari Pulavarty cpu_to_le16(ei->i_file_acl >> 32); 43657973c0c1SAneesh Kumar K.V raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl); 4366b71fc079SJan Kara if (ei->i_disksize != ext4_isize(raw_inode)) { 4367a48380f7SAneesh Kumar K.V ext4_isize_set(raw_inode, ei->i_disksize); 4368b71fc079SJan Kara need_datasync = 1; 4369b71fc079SJan Kara } 4370ac27a0ecSDave Kleikamp if (ei->i_disksize > 0x7fffffffULL) { 4371617ba13bSMingming Cao if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, 4372617ba13bSMingming Cao EXT4_FEATURE_RO_COMPAT_LARGE_FILE) || 4373617ba13bSMingming Cao EXT4_SB(sb)->s_es->s_rev_level == 4374202ee5dfSTheodore Ts'o cpu_to_le32(EXT4_GOOD_OLD_REV)) 4375202ee5dfSTheodore Ts'o set_large_file = 1; 4376ac27a0ecSDave Kleikamp } 4377ac27a0ecSDave Kleikamp raw_inode->i_generation = cpu_to_le32(inode->i_generation); 4378ac27a0ecSDave Kleikamp if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) { 4379ac27a0ecSDave Kleikamp if (old_valid_dev(inode->i_rdev)) { 4380ac27a0ecSDave Kleikamp raw_inode->i_block[0] = 4381ac27a0ecSDave Kleikamp cpu_to_le32(old_encode_dev(inode->i_rdev)); 4382ac27a0ecSDave Kleikamp raw_inode->i_block[1] = 0; 4383ac27a0ecSDave Kleikamp } else { 4384ac27a0ecSDave Kleikamp raw_inode->i_block[0] = 0; 4385ac27a0ecSDave Kleikamp raw_inode->i_block[1] = 4386ac27a0ecSDave Kleikamp cpu_to_le32(new_encode_dev(inode->i_rdev)); 4387ac27a0ecSDave Kleikamp raw_inode->i_block[2] = 0; 4388ac27a0ecSDave Kleikamp } 4389f19d5870STao Ma } else if (!ext4_has_inline_data(inode)) { 4390de9a55b8STheodore Ts'o for (block = 0; block < EXT4_N_BLOCKS; block++) 4391ac27a0ecSDave Kleikamp raw_inode->i_block[block] = ei->i_data[block]; 4392f19d5870STao Ma } 4393ac27a0ecSDave Kleikamp 4394ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) { 439525ec56b5SJean Noel Cordenner raw_inode->i_disk_version = cpu_to_le32(inode->i_version); 439625ec56b5SJean Noel Cordenner if (ei->i_extra_isize) { 439725ec56b5SJean Noel Cordenner if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi)) 439825ec56b5SJean Noel Cordenner raw_inode->i_version_hi = 439925ec56b5SJean Noel Cordenner cpu_to_le32(inode->i_version >> 32); 4400c4f65706STheodore Ts'o raw_inode->i_extra_isize = 4401c4f65706STheodore Ts'o cpu_to_le16(ei->i_extra_isize); 4402c4f65706STheodore Ts'o } 440325ec56b5SJean Noel Cordenner } 440425ec56b5SJean Noel Cordenner 4405814525f4SDarrick J. Wong ext4_inode_csum_set(inode, raw_inode, ei); 4406814525f4SDarrick J. Wong 4407202ee5dfSTheodore Ts'o spin_unlock(&ei->i_raw_lock); 4408202ee5dfSTheodore Ts'o 44090390131bSFrank Mayhar BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); 441073b50c1cSCurt Wohlgemuth rc = ext4_handle_dirty_metadata(handle, NULL, bh); 4411ac27a0ecSDave Kleikamp if (!err) 4412ac27a0ecSDave Kleikamp err = rc; 441319f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_NEW); 4414202ee5dfSTheodore Ts'o if (set_large_file) { 4415202ee5dfSTheodore Ts'o err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh); 4416202ee5dfSTheodore Ts'o if (err) 4417202ee5dfSTheodore Ts'o goto out_brelse; 4418202ee5dfSTheodore Ts'o ext4_update_dynamic_rev(sb); 4419202ee5dfSTheodore Ts'o EXT4_SET_RO_COMPAT_FEATURE(sb, 4420202ee5dfSTheodore Ts'o EXT4_FEATURE_RO_COMPAT_LARGE_FILE); 4421202ee5dfSTheodore Ts'o ext4_handle_sync(handle); 4422202ee5dfSTheodore Ts'o err = ext4_handle_dirty_super(handle, sb); 4423202ee5dfSTheodore Ts'o } 4424b71fc079SJan Kara ext4_update_inode_fsync_trans(handle, inode, need_datasync); 4425ac27a0ecSDave Kleikamp out_brelse: 4426ac27a0ecSDave Kleikamp brelse(bh); 4427617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 4428ac27a0ecSDave Kleikamp return err; 4429ac27a0ecSDave Kleikamp } 4430ac27a0ecSDave Kleikamp 4431ac27a0ecSDave Kleikamp /* 4432617ba13bSMingming Cao * ext4_write_inode() 4433ac27a0ecSDave Kleikamp * 4434ac27a0ecSDave Kleikamp * We are called from a few places: 4435ac27a0ecSDave Kleikamp * 443687f7e416STheodore Ts'o * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files. 4437ac27a0ecSDave Kleikamp * Here, there will be no transaction running. We wait for any running 44384907cb7bSAnatol Pomozov * transaction to commit. 4439ac27a0ecSDave Kleikamp * 444087f7e416STheodore Ts'o * - Within flush work (sys_sync(), kupdate and such). 444187f7e416STheodore Ts'o * We wait on commit, if told to. 4442ac27a0ecSDave Kleikamp * 444387f7e416STheodore Ts'o * - Within iput_final() -> write_inode_now() 444487f7e416STheodore Ts'o * We wait on commit, if told to. 4445ac27a0ecSDave Kleikamp * 4446ac27a0ecSDave Kleikamp * In all cases it is actually safe for us to return without doing anything, 4447ac27a0ecSDave Kleikamp * because the inode has been copied into a raw inode buffer in 444887f7e416STheodore Ts'o * ext4_mark_inode_dirty(). This is a correctness thing for WB_SYNC_ALL 444987f7e416STheodore Ts'o * writeback. 4450ac27a0ecSDave Kleikamp * 4451ac27a0ecSDave Kleikamp * Note that we are absolutely dependent upon all inode dirtiers doing the 4452ac27a0ecSDave Kleikamp * right thing: they *must* call mark_inode_dirty() after dirtying info in 4453ac27a0ecSDave Kleikamp * which we are interested. 4454ac27a0ecSDave Kleikamp * 4455ac27a0ecSDave Kleikamp * It would be a bug for them to not do this. The code: 4456ac27a0ecSDave Kleikamp * 4457ac27a0ecSDave Kleikamp * mark_inode_dirty(inode) 4458ac27a0ecSDave Kleikamp * stuff(); 4459ac27a0ecSDave Kleikamp * inode->i_size = expr; 4460ac27a0ecSDave Kleikamp * 446187f7e416STheodore Ts'o * is in error because write_inode() could occur while `stuff()' is running, 446287f7e416STheodore Ts'o * and the new i_size will be lost. Plus the inode will no longer be on the 446387f7e416STheodore Ts'o * superblock's dirty inode list. 4464ac27a0ecSDave Kleikamp */ 4465a9185b41SChristoph Hellwig int ext4_write_inode(struct inode *inode, struct writeback_control *wbc) 4466ac27a0ecSDave Kleikamp { 446791ac6f43SFrank Mayhar int err; 446891ac6f43SFrank Mayhar 446987f7e416STheodore Ts'o if (WARN_ON_ONCE(current->flags & PF_MEMALLOC)) 4470ac27a0ecSDave Kleikamp return 0; 4471ac27a0ecSDave Kleikamp 447291ac6f43SFrank Mayhar if (EXT4_SB(inode->i_sb)->s_journal) { 4473617ba13bSMingming Cao if (ext4_journal_current_handle()) { 4474b38bd33aSMingming Cao jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n"); 4475ac27a0ecSDave Kleikamp dump_stack(); 4476ac27a0ecSDave Kleikamp return -EIO; 4477ac27a0ecSDave Kleikamp } 4478ac27a0ecSDave Kleikamp 447910542c22SJan Kara /* 448010542c22SJan Kara * No need to force transaction in WB_SYNC_NONE mode. Also 448110542c22SJan Kara * ext4_sync_fs() will force the commit after everything is 448210542c22SJan Kara * written. 448310542c22SJan Kara */ 448410542c22SJan Kara if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync) 4485ac27a0ecSDave Kleikamp return 0; 4486ac27a0ecSDave Kleikamp 448791ac6f43SFrank Mayhar err = ext4_force_commit(inode->i_sb); 448891ac6f43SFrank Mayhar } else { 448991ac6f43SFrank Mayhar struct ext4_iloc iloc; 449091ac6f43SFrank Mayhar 44918b472d73SCurt Wohlgemuth err = __ext4_get_inode_loc(inode, &iloc, 0); 449291ac6f43SFrank Mayhar if (err) 449391ac6f43SFrank Mayhar return err; 449410542c22SJan Kara /* 449510542c22SJan Kara * sync(2) will flush the whole buffer cache. No need to do 449610542c22SJan Kara * it here separately for each inode. 449710542c22SJan Kara */ 449810542c22SJan Kara if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync) 4499830156c7SFrank Mayhar sync_dirty_buffer(iloc.bh); 4500830156c7SFrank Mayhar if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) { 4501c398eda0STheodore Ts'o EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr, 4502c398eda0STheodore Ts'o "IO error syncing inode"); 4503830156c7SFrank Mayhar err = -EIO; 4504830156c7SFrank Mayhar } 4505fd2dd9fbSCurt Wohlgemuth brelse(iloc.bh); 450691ac6f43SFrank Mayhar } 450791ac6f43SFrank Mayhar return err; 4508ac27a0ecSDave Kleikamp } 4509ac27a0ecSDave Kleikamp 4510ac27a0ecSDave Kleikamp /* 451153e87268SJan Kara * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate 451253e87268SJan Kara * buffers that are attached to a page stradding i_size and are undergoing 451353e87268SJan Kara * commit. In that case we have to wait for commit to finish and try again. 451453e87268SJan Kara */ 451553e87268SJan Kara static void ext4_wait_for_tail_page_commit(struct inode *inode) 451653e87268SJan Kara { 451753e87268SJan Kara struct page *page; 451853e87268SJan Kara unsigned offset; 451953e87268SJan Kara journal_t *journal = EXT4_SB(inode->i_sb)->s_journal; 452053e87268SJan Kara tid_t commit_tid = 0; 452153e87268SJan Kara int ret; 452253e87268SJan Kara 452353e87268SJan Kara offset = inode->i_size & (PAGE_CACHE_SIZE - 1); 452453e87268SJan Kara /* 452553e87268SJan Kara * All buffers in the last page remain valid? Then there's nothing to 452653e87268SJan Kara * do. We do the check mainly to optimize the common PAGE_CACHE_SIZE == 452753e87268SJan Kara * blocksize case 452853e87268SJan Kara */ 452953e87268SJan Kara if (offset > PAGE_CACHE_SIZE - (1 << inode->i_blkbits)) 453053e87268SJan Kara return; 453153e87268SJan Kara while (1) { 453253e87268SJan Kara page = find_lock_page(inode->i_mapping, 453353e87268SJan Kara inode->i_size >> PAGE_CACHE_SHIFT); 453453e87268SJan Kara if (!page) 453553e87268SJan Kara return; 4536ca99fdd2SLukas Czerner ret = __ext4_journalled_invalidatepage(page, offset, 4537ca99fdd2SLukas Czerner PAGE_CACHE_SIZE - offset); 453853e87268SJan Kara unlock_page(page); 453953e87268SJan Kara page_cache_release(page); 454053e87268SJan Kara if (ret != -EBUSY) 454153e87268SJan Kara return; 454253e87268SJan Kara commit_tid = 0; 454353e87268SJan Kara read_lock(&journal->j_state_lock); 454453e87268SJan Kara if (journal->j_committing_transaction) 454553e87268SJan Kara commit_tid = journal->j_committing_transaction->t_tid; 454653e87268SJan Kara read_unlock(&journal->j_state_lock); 454753e87268SJan Kara if (commit_tid) 454853e87268SJan Kara jbd2_log_wait_commit(journal, commit_tid); 454953e87268SJan Kara } 455053e87268SJan Kara } 455153e87268SJan Kara 455253e87268SJan Kara /* 4553617ba13bSMingming Cao * ext4_setattr() 4554ac27a0ecSDave Kleikamp * 4555ac27a0ecSDave Kleikamp * Called from notify_change. 4556ac27a0ecSDave Kleikamp * 4557ac27a0ecSDave Kleikamp * We want to trap VFS attempts to truncate the file as soon as 4558ac27a0ecSDave Kleikamp * possible. In particular, we want to make sure that when the VFS 4559ac27a0ecSDave Kleikamp * shrinks i_size, we put the inode on the orphan list and modify 4560ac27a0ecSDave Kleikamp * i_disksize immediately, so that during the subsequent flushing of 4561ac27a0ecSDave Kleikamp * dirty pages and freeing of disk blocks, we can guarantee that any 4562ac27a0ecSDave Kleikamp * commit will leave the blocks being flushed in an unused state on 4563ac27a0ecSDave Kleikamp * disk. (On recovery, the inode will get truncated and the blocks will 4564ac27a0ecSDave Kleikamp * be freed, so we have a strong guarantee that no future commit will 4565ac27a0ecSDave Kleikamp * leave these blocks visible to the user.) 4566ac27a0ecSDave Kleikamp * 4567678aaf48SJan Kara * Another thing we have to assure is that if we are in ordered mode 4568678aaf48SJan Kara * and inode is still attached to the committing transaction, we must 4569678aaf48SJan Kara * we start writeout of all the dirty pages which are being truncated. 4570678aaf48SJan Kara * This way we are sure that all the data written in the previous 4571678aaf48SJan Kara * transaction are already on disk (truncate waits for pages under 4572678aaf48SJan Kara * writeback). 4573678aaf48SJan Kara * 4574678aaf48SJan Kara * Called with inode->i_mutex down. 4575ac27a0ecSDave Kleikamp */ 4576617ba13bSMingming Cao int ext4_setattr(struct dentry *dentry, struct iattr *attr) 4577ac27a0ecSDave Kleikamp { 4578ac27a0ecSDave Kleikamp struct inode *inode = dentry->d_inode; 4579ac27a0ecSDave Kleikamp int error, rc = 0; 45803d287de3SDmitry Monakhov int orphan = 0; 4581ac27a0ecSDave Kleikamp const unsigned int ia_valid = attr->ia_valid; 4582ac27a0ecSDave Kleikamp 4583ac27a0ecSDave Kleikamp error = inode_change_ok(inode, attr); 4584ac27a0ecSDave Kleikamp if (error) 4585ac27a0ecSDave Kleikamp return error; 4586ac27a0ecSDave Kleikamp 458712755627SDmitry Monakhov if (is_quota_modification(inode, attr)) 4588871a2931SChristoph Hellwig dquot_initialize(inode); 458908cefc7aSEric W. Biederman if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) || 459008cefc7aSEric W. Biederman (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) { 4591ac27a0ecSDave Kleikamp handle_t *handle; 4592ac27a0ecSDave Kleikamp 4593ac27a0ecSDave Kleikamp /* (user+group)*(old+new) structure, inode write (sb, 4594ac27a0ecSDave Kleikamp * inode block, ? - but truncate inode update has it) */ 45959924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_QUOTA, 45969924a92aSTheodore Ts'o (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) + 4597194074acSDmitry Monakhov EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3); 4598ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 4599ac27a0ecSDave Kleikamp error = PTR_ERR(handle); 4600ac27a0ecSDave Kleikamp goto err_out; 4601ac27a0ecSDave Kleikamp } 4602b43fa828SChristoph Hellwig error = dquot_transfer(inode, attr); 4603ac27a0ecSDave Kleikamp if (error) { 4604617ba13bSMingming Cao ext4_journal_stop(handle); 4605ac27a0ecSDave Kleikamp return error; 4606ac27a0ecSDave Kleikamp } 4607ac27a0ecSDave Kleikamp /* Update corresponding info in inode so that everything is in 4608ac27a0ecSDave Kleikamp * one transaction */ 4609ac27a0ecSDave Kleikamp if (attr->ia_valid & ATTR_UID) 4610ac27a0ecSDave Kleikamp inode->i_uid = attr->ia_uid; 4611ac27a0ecSDave Kleikamp if (attr->ia_valid & ATTR_GID) 4612ac27a0ecSDave Kleikamp inode->i_gid = attr->ia_gid; 4613617ba13bSMingming Cao error = ext4_mark_inode_dirty(handle, inode); 4614617ba13bSMingming Cao ext4_journal_stop(handle); 4615ac27a0ecSDave Kleikamp } 4616ac27a0ecSDave Kleikamp 46175208386cSJan Kara if (attr->ia_valid & ATTR_SIZE && attr->ia_size != inode->i_size) { 46185208386cSJan Kara handle_t *handle; 4619562c72aaSChristoph Hellwig 462012e9b892SDmitry Monakhov if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) { 4621e2b46574SEric Sandeen struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 4622e2b46574SEric Sandeen 46230c095c7fSTheodore Ts'o if (attr->ia_size > sbi->s_bitmap_maxbytes) 46240c095c7fSTheodore Ts'o return -EFBIG; 4625e2b46574SEric Sandeen } 4626dff6efc3SChristoph Hellwig 4627dff6efc3SChristoph Hellwig if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size) 4628dff6efc3SChristoph Hellwig inode_inc_iversion(inode); 4629dff6efc3SChristoph Hellwig 4630ac27a0ecSDave Kleikamp if (S_ISREG(inode->i_mode) && 4631072bd7eaSTheodore Ts'o (attr->ia_size < inode->i_size)) { 46325208386cSJan Kara if (ext4_should_order_data(inode)) { 46335208386cSJan Kara error = ext4_begin_ordered_truncate(inode, 46345208386cSJan Kara attr->ia_size); 46355208386cSJan Kara if (error) 46365208386cSJan Kara goto err_out; 46375208386cSJan Kara } 46389924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 3); 4639ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 4640ac27a0ecSDave Kleikamp error = PTR_ERR(handle); 4641ac27a0ecSDave Kleikamp goto err_out; 4642ac27a0ecSDave Kleikamp } 46433d287de3SDmitry Monakhov if (ext4_handle_valid(handle)) { 4644617ba13bSMingming Cao error = ext4_orphan_add(handle, inode); 46453d287de3SDmitry Monakhov orphan = 1; 46463d287de3SDmitry Monakhov } 464790e775b7SJan Kara down_write(&EXT4_I(inode)->i_data_sem); 4648617ba13bSMingming Cao EXT4_I(inode)->i_disksize = attr->ia_size; 4649617ba13bSMingming Cao rc = ext4_mark_inode_dirty(handle, inode); 4650ac27a0ecSDave Kleikamp if (!error) 4651ac27a0ecSDave Kleikamp error = rc; 465290e775b7SJan Kara /* 465390e775b7SJan Kara * We have to update i_size under i_data_sem together 465490e775b7SJan Kara * with i_disksize to avoid races with writeback code 465590e775b7SJan Kara * running ext4_wb_update_i_disksize(). 465690e775b7SJan Kara */ 465790e775b7SJan Kara if (!error) 465890e775b7SJan Kara i_size_write(inode, attr->ia_size); 465990e775b7SJan Kara up_write(&EXT4_I(inode)->i_data_sem); 4660617ba13bSMingming Cao ext4_journal_stop(handle); 4661678aaf48SJan Kara if (error) { 4662678aaf48SJan Kara ext4_orphan_del(NULL, inode); 4663678aaf48SJan Kara goto err_out; 4664678aaf48SJan Kara } 466590e775b7SJan Kara } else 466653e87268SJan Kara i_size_write(inode, attr->ia_size); 466790e775b7SJan Kara 466853e87268SJan Kara /* 466953e87268SJan Kara * Blocks are going to be removed from the inode. Wait 467053e87268SJan Kara * for dio in flight. Temporarily disable 467153e87268SJan Kara * dioread_nolock to prevent livelock. 467253e87268SJan Kara */ 46731b65007eSDmitry Monakhov if (orphan) { 467453e87268SJan Kara if (!ext4_should_journal_data(inode)) { 46751b65007eSDmitry Monakhov ext4_inode_block_unlocked_dio(inode); 46761c9114f9SDmitry Monakhov inode_dio_wait(inode); 46771b65007eSDmitry Monakhov ext4_inode_resume_unlocked_dio(inode); 467853e87268SJan Kara } else 467953e87268SJan Kara ext4_wait_for_tail_page_commit(inode); 46801b65007eSDmitry Monakhov } 468153e87268SJan Kara /* 468253e87268SJan Kara * Truncate pagecache after we've waited for commit 468353e87268SJan Kara * in data=journal mode to make pages freeable. 468453e87268SJan Kara */ 46857caef267SKirill A. Shutemov truncate_pagecache(inode, inode->i_size); 46861c9114f9SDmitry Monakhov } 46875208386cSJan Kara /* 46885208386cSJan Kara * We want to call ext4_truncate() even if attr->ia_size == 46895208386cSJan Kara * inode->i_size for cases like truncation of fallocated space 46905208386cSJan Kara */ 46915208386cSJan Kara if (attr->ia_valid & ATTR_SIZE) 4692072bd7eaSTheodore Ts'o ext4_truncate(inode); 4693ac27a0ecSDave Kleikamp 46941025774cSChristoph Hellwig if (!rc) { 46951025774cSChristoph Hellwig setattr_copy(inode, attr); 46961025774cSChristoph Hellwig mark_inode_dirty(inode); 46971025774cSChristoph Hellwig } 46981025774cSChristoph Hellwig 46991025774cSChristoph Hellwig /* 47001025774cSChristoph Hellwig * If the call to ext4_truncate failed to get a transaction handle at 47011025774cSChristoph Hellwig * all, we need to clean up the in-core orphan list manually. 47021025774cSChristoph Hellwig */ 47033d287de3SDmitry Monakhov if (orphan && inode->i_nlink) 4704617ba13bSMingming Cao ext4_orphan_del(NULL, inode); 4705ac27a0ecSDave Kleikamp 4706ac27a0ecSDave Kleikamp if (!rc && (ia_valid & ATTR_MODE)) 470764e178a7SChristoph Hellwig rc = posix_acl_chmod(inode, inode->i_mode); 4708ac27a0ecSDave Kleikamp 4709ac27a0ecSDave Kleikamp err_out: 4710617ba13bSMingming Cao ext4_std_error(inode->i_sb, error); 4711ac27a0ecSDave Kleikamp if (!error) 4712ac27a0ecSDave Kleikamp error = rc; 4713ac27a0ecSDave Kleikamp return error; 4714ac27a0ecSDave Kleikamp } 4715ac27a0ecSDave Kleikamp 47163e3398a0SMingming Cao int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry, 47173e3398a0SMingming Cao struct kstat *stat) 47183e3398a0SMingming Cao { 47193e3398a0SMingming Cao struct inode *inode; 47208af8eeccSJan Kara unsigned long long delalloc_blocks; 47213e3398a0SMingming Cao 47223e3398a0SMingming Cao inode = dentry->d_inode; 47233e3398a0SMingming Cao generic_fillattr(inode, stat); 47243e3398a0SMingming Cao 47253e3398a0SMingming Cao /* 47269206c561SAndreas Dilger * If there is inline data in the inode, the inode will normally not 47279206c561SAndreas Dilger * have data blocks allocated (it may have an external xattr block). 47289206c561SAndreas Dilger * Report at least one sector for such files, so tools like tar, rsync, 47299206c561SAndreas Dilger * others doen't incorrectly think the file is completely sparse. 47309206c561SAndreas Dilger */ 47319206c561SAndreas Dilger if (unlikely(ext4_has_inline_data(inode))) 47329206c561SAndreas Dilger stat->blocks += (stat->size + 511) >> 9; 47339206c561SAndreas Dilger 47349206c561SAndreas Dilger /* 47353e3398a0SMingming Cao * We can't update i_blocks if the block allocation is delayed 47363e3398a0SMingming Cao * otherwise in the case of system crash before the real block 47373e3398a0SMingming Cao * allocation is done, we will have i_blocks inconsistent with 47383e3398a0SMingming Cao * on-disk file blocks. 47393e3398a0SMingming Cao * We always keep i_blocks updated together with real 47403e3398a0SMingming Cao * allocation. But to not confuse with user, stat 47413e3398a0SMingming Cao * will return the blocks that include the delayed allocation 47423e3398a0SMingming Cao * blocks for this file. 47433e3398a0SMingming Cao */ 474496607551STao Ma delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb), 474596607551STao Ma EXT4_I(inode)->i_reserved_data_blocks); 47468af8eeccSJan Kara stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9); 47473e3398a0SMingming Cao return 0; 47483e3398a0SMingming Cao } 4749ac27a0ecSDave Kleikamp 4750fffb2739SJan Kara static int ext4_index_trans_blocks(struct inode *inode, int lblocks, 4751fffb2739SJan Kara int pextents) 4752a02908f1SMingming Cao { 475312e9b892SDmitry Monakhov if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) 4754fffb2739SJan Kara return ext4_ind_trans_blocks(inode, lblocks); 4755fffb2739SJan Kara return ext4_ext_index_trans_blocks(inode, pextents); 4756a02908f1SMingming Cao } 4757ac51d837STheodore Ts'o 4758a02908f1SMingming Cao /* 4759a02908f1SMingming Cao * Account for index blocks, block groups bitmaps and block group 4760a02908f1SMingming Cao * descriptor blocks if modify datablocks and index blocks 4761a02908f1SMingming Cao * worse case, the indexs blocks spread over different block groups 4762a02908f1SMingming Cao * 4763a02908f1SMingming Cao * If datablocks are discontiguous, they are possible to spread over 47644907cb7bSAnatol Pomozov * different block groups too. If they are contiguous, with flexbg, 4765a02908f1SMingming Cao * they could still across block group boundary. 4766a02908f1SMingming Cao * 4767a02908f1SMingming Cao * Also account for superblock, inode, quota and xattr blocks 4768a02908f1SMingming Cao */ 4769fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks, 4770fffb2739SJan Kara int pextents) 4771a02908f1SMingming Cao { 47728df9675fSTheodore Ts'o ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb); 47738df9675fSTheodore Ts'o int gdpblocks; 4774a02908f1SMingming Cao int idxblocks; 4775a02908f1SMingming Cao int ret = 0; 4776a02908f1SMingming Cao 4777a02908f1SMingming Cao /* 4778fffb2739SJan Kara * How many index blocks need to touch to map @lblocks logical blocks 4779fffb2739SJan Kara * to @pextents physical extents? 4780a02908f1SMingming Cao */ 4781fffb2739SJan Kara idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents); 4782a02908f1SMingming Cao 4783a02908f1SMingming Cao ret = idxblocks; 4784a02908f1SMingming Cao 4785a02908f1SMingming Cao /* 4786a02908f1SMingming Cao * Now let's see how many group bitmaps and group descriptors need 4787a02908f1SMingming Cao * to account 4788a02908f1SMingming Cao */ 4789fffb2739SJan Kara groups = idxblocks + pextents; 4790a02908f1SMingming Cao gdpblocks = groups; 47918df9675fSTheodore Ts'o if (groups > ngroups) 47928df9675fSTheodore Ts'o groups = ngroups; 4793a02908f1SMingming Cao if (groups > EXT4_SB(inode->i_sb)->s_gdb_count) 4794a02908f1SMingming Cao gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count; 4795a02908f1SMingming Cao 4796a02908f1SMingming Cao /* bitmaps and block group descriptor blocks */ 4797a02908f1SMingming Cao ret += groups + gdpblocks; 4798a02908f1SMingming Cao 4799a02908f1SMingming Cao /* Blocks for super block, inode, quota and xattr blocks */ 4800a02908f1SMingming Cao ret += EXT4_META_TRANS_BLOCKS(inode->i_sb); 4801ac27a0ecSDave Kleikamp 4802ac27a0ecSDave Kleikamp return ret; 4803ac27a0ecSDave Kleikamp } 4804ac27a0ecSDave Kleikamp 4805ac27a0ecSDave Kleikamp /* 480625985edcSLucas De Marchi * Calculate the total number of credits to reserve to fit 4807f3bd1f3fSMingming Cao * the modification of a single pages into a single transaction, 4808f3bd1f3fSMingming Cao * which may include multiple chunks of block allocations. 4809a02908f1SMingming Cao * 4810525f4ed8SMingming Cao * This could be called via ext4_write_begin() 4811a02908f1SMingming Cao * 4812525f4ed8SMingming Cao * We need to consider the worse case, when 4813a02908f1SMingming Cao * one new block per extent. 4814a02908f1SMingming Cao */ 4815a02908f1SMingming Cao int ext4_writepage_trans_blocks(struct inode *inode) 4816a02908f1SMingming Cao { 4817a02908f1SMingming Cao int bpp = ext4_journal_blocks_per_page(inode); 4818a02908f1SMingming Cao int ret; 4819a02908f1SMingming Cao 4820fffb2739SJan Kara ret = ext4_meta_trans_blocks(inode, bpp, bpp); 4821a02908f1SMingming Cao 4822a02908f1SMingming Cao /* Account for data blocks for journalled mode */ 4823a02908f1SMingming Cao if (ext4_should_journal_data(inode)) 4824a02908f1SMingming Cao ret += bpp; 4825a02908f1SMingming Cao return ret; 4826a02908f1SMingming Cao } 4827f3bd1f3fSMingming Cao 4828f3bd1f3fSMingming Cao /* 4829f3bd1f3fSMingming Cao * Calculate the journal credits for a chunk of data modification. 4830f3bd1f3fSMingming Cao * 4831f3bd1f3fSMingming Cao * This is called from DIO, fallocate or whoever calling 483279e83036SEric Sandeen * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks. 4833f3bd1f3fSMingming Cao * 4834f3bd1f3fSMingming Cao * journal buffers for data blocks are not included here, as DIO 4835f3bd1f3fSMingming Cao * and fallocate do no need to journal data buffers. 4836f3bd1f3fSMingming Cao */ 4837f3bd1f3fSMingming Cao int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks) 4838f3bd1f3fSMingming Cao { 4839f3bd1f3fSMingming Cao return ext4_meta_trans_blocks(inode, nrblocks, 1); 4840f3bd1f3fSMingming Cao } 4841f3bd1f3fSMingming Cao 4842a02908f1SMingming Cao /* 4843617ba13bSMingming Cao * The caller must have previously called ext4_reserve_inode_write(). 4844ac27a0ecSDave Kleikamp * Give this, we know that the caller already has write access to iloc->bh. 4845ac27a0ecSDave Kleikamp */ 4846617ba13bSMingming Cao int ext4_mark_iloc_dirty(handle_t *handle, 4847617ba13bSMingming Cao struct inode *inode, struct ext4_iloc *iloc) 4848ac27a0ecSDave Kleikamp { 4849ac27a0ecSDave Kleikamp int err = 0; 4850ac27a0ecSDave Kleikamp 4851c64db50eSTheodore Ts'o if (IS_I_VERSION(inode)) 485225ec56b5SJean Noel Cordenner inode_inc_iversion(inode); 485325ec56b5SJean Noel Cordenner 4854ac27a0ecSDave Kleikamp /* the do_update_inode consumes one bh->b_count */ 4855ac27a0ecSDave Kleikamp get_bh(iloc->bh); 4856ac27a0ecSDave Kleikamp 4857dab291afSMingming Cao /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */ 4858830156c7SFrank Mayhar err = ext4_do_update_inode(handle, inode, iloc); 4859ac27a0ecSDave Kleikamp put_bh(iloc->bh); 4860ac27a0ecSDave Kleikamp return err; 4861ac27a0ecSDave Kleikamp } 4862ac27a0ecSDave Kleikamp 4863ac27a0ecSDave Kleikamp /* 4864ac27a0ecSDave Kleikamp * On success, We end up with an outstanding reference count against 4865ac27a0ecSDave Kleikamp * iloc->bh. This _must_ be cleaned up later. 4866ac27a0ecSDave Kleikamp */ 4867ac27a0ecSDave Kleikamp 4868ac27a0ecSDave Kleikamp int 4869617ba13bSMingming Cao ext4_reserve_inode_write(handle_t *handle, struct inode *inode, 4870617ba13bSMingming Cao struct ext4_iloc *iloc) 4871ac27a0ecSDave Kleikamp { 48720390131bSFrank Mayhar int err; 48730390131bSFrank Mayhar 4874617ba13bSMingming Cao err = ext4_get_inode_loc(inode, iloc); 4875ac27a0ecSDave Kleikamp if (!err) { 4876ac27a0ecSDave Kleikamp BUFFER_TRACE(iloc->bh, "get_write_access"); 4877617ba13bSMingming Cao err = ext4_journal_get_write_access(handle, iloc->bh); 4878ac27a0ecSDave Kleikamp if (err) { 4879ac27a0ecSDave Kleikamp brelse(iloc->bh); 4880ac27a0ecSDave Kleikamp iloc->bh = NULL; 4881ac27a0ecSDave Kleikamp } 4882ac27a0ecSDave Kleikamp } 4883617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 4884ac27a0ecSDave Kleikamp return err; 4885ac27a0ecSDave Kleikamp } 4886ac27a0ecSDave Kleikamp 4887ac27a0ecSDave Kleikamp /* 48886dd4ee7cSKalpak Shah * Expand an inode by new_extra_isize bytes. 48896dd4ee7cSKalpak Shah * Returns 0 on success or negative error number on failure. 48906dd4ee7cSKalpak Shah */ 48911d03ec98SAneesh Kumar K.V static int ext4_expand_extra_isize(struct inode *inode, 48921d03ec98SAneesh Kumar K.V unsigned int new_extra_isize, 48931d03ec98SAneesh Kumar K.V struct ext4_iloc iloc, 48941d03ec98SAneesh Kumar K.V handle_t *handle) 48956dd4ee7cSKalpak Shah { 48966dd4ee7cSKalpak Shah struct ext4_inode *raw_inode; 48976dd4ee7cSKalpak Shah struct ext4_xattr_ibody_header *header; 48986dd4ee7cSKalpak Shah 48996dd4ee7cSKalpak Shah if (EXT4_I(inode)->i_extra_isize >= new_extra_isize) 49006dd4ee7cSKalpak Shah return 0; 49016dd4ee7cSKalpak Shah 49026dd4ee7cSKalpak Shah raw_inode = ext4_raw_inode(&iloc); 49036dd4ee7cSKalpak Shah 49046dd4ee7cSKalpak Shah header = IHDR(inode, raw_inode); 49056dd4ee7cSKalpak Shah 49066dd4ee7cSKalpak Shah /* No extended attributes present */ 490719f5fb7aSTheodore Ts'o if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) || 49086dd4ee7cSKalpak Shah header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) { 49096dd4ee7cSKalpak Shah memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0, 49106dd4ee7cSKalpak Shah new_extra_isize); 49116dd4ee7cSKalpak Shah EXT4_I(inode)->i_extra_isize = new_extra_isize; 49126dd4ee7cSKalpak Shah return 0; 49136dd4ee7cSKalpak Shah } 49146dd4ee7cSKalpak Shah 49156dd4ee7cSKalpak Shah /* try to expand with EAs present */ 49166dd4ee7cSKalpak Shah return ext4_expand_extra_isize_ea(inode, new_extra_isize, 49176dd4ee7cSKalpak Shah raw_inode, handle); 49186dd4ee7cSKalpak Shah } 49196dd4ee7cSKalpak Shah 49206dd4ee7cSKalpak Shah /* 4921ac27a0ecSDave Kleikamp * What we do here is to mark the in-core inode as clean with respect to inode 4922ac27a0ecSDave Kleikamp * dirtiness (it may still be data-dirty). 4923ac27a0ecSDave Kleikamp * This means that the in-core inode may be reaped by prune_icache 4924ac27a0ecSDave Kleikamp * without having to perform any I/O. This is a very good thing, 4925ac27a0ecSDave Kleikamp * because *any* task may call prune_icache - even ones which 4926ac27a0ecSDave Kleikamp * have a transaction open against a different journal. 4927ac27a0ecSDave Kleikamp * 4928ac27a0ecSDave Kleikamp * Is this cheating? Not really. Sure, we haven't written the 4929ac27a0ecSDave Kleikamp * inode out, but prune_icache isn't a user-visible syncing function. 4930ac27a0ecSDave Kleikamp * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync) 4931ac27a0ecSDave Kleikamp * we start and wait on commits. 4932ac27a0ecSDave Kleikamp */ 4933617ba13bSMingming Cao int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode) 4934ac27a0ecSDave Kleikamp { 4935617ba13bSMingming Cao struct ext4_iloc iloc; 49366dd4ee7cSKalpak Shah struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 49376dd4ee7cSKalpak Shah static unsigned int mnt_count; 49386dd4ee7cSKalpak Shah int err, ret; 4939ac27a0ecSDave Kleikamp 4940ac27a0ecSDave Kleikamp might_sleep(); 49417ff9c073STheodore Ts'o trace_ext4_mark_inode_dirty(inode, _RET_IP_); 4942617ba13bSMingming Cao err = ext4_reserve_inode_write(handle, inode, &iloc); 49430390131bSFrank Mayhar if (ext4_handle_valid(handle) && 49440390131bSFrank Mayhar EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize && 494519f5fb7aSTheodore Ts'o !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) { 49466dd4ee7cSKalpak Shah /* 49476dd4ee7cSKalpak Shah * We need extra buffer credits since we may write into EA block 49486dd4ee7cSKalpak Shah * with this same handle. If journal_extend fails, then it will 49496dd4ee7cSKalpak Shah * only result in a minor loss of functionality for that inode. 49506dd4ee7cSKalpak Shah * If this is felt to be critical, then e2fsck should be run to 49516dd4ee7cSKalpak Shah * force a large enough s_min_extra_isize. 49526dd4ee7cSKalpak Shah */ 49536dd4ee7cSKalpak Shah if ((jbd2_journal_extend(handle, 49546dd4ee7cSKalpak Shah EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) { 49556dd4ee7cSKalpak Shah ret = ext4_expand_extra_isize(inode, 49566dd4ee7cSKalpak Shah sbi->s_want_extra_isize, 49576dd4ee7cSKalpak Shah iloc, handle); 49586dd4ee7cSKalpak Shah if (ret) { 495919f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, 496019f5fb7aSTheodore Ts'o EXT4_STATE_NO_EXPAND); 4961c1bddad9SAneesh Kumar K.V if (mnt_count != 4962c1bddad9SAneesh Kumar K.V le16_to_cpu(sbi->s_es->s_mnt_count)) { 496312062dddSEric Sandeen ext4_warning(inode->i_sb, 49646dd4ee7cSKalpak Shah "Unable to expand inode %lu. Delete" 49656dd4ee7cSKalpak Shah " some EAs or run e2fsck.", 49666dd4ee7cSKalpak Shah inode->i_ino); 4967c1bddad9SAneesh Kumar K.V mnt_count = 4968c1bddad9SAneesh Kumar K.V le16_to_cpu(sbi->s_es->s_mnt_count); 49696dd4ee7cSKalpak Shah } 49706dd4ee7cSKalpak Shah } 49716dd4ee7cSKalpak Shah } 49726dd4ee7cSKalpak Shah } 4973ac27a0ecSDave Kleikamp if (!err) 4974617ba13bSMingming Cao err = ext4_mark_iloc_dirty(handle, inode, &iloc); 4975ac27a0ecSDave Kleikamp return err; 4976ac27a0ecSDave Kleikamp } 4977ac27a0ecSDave Kleikamp 4978ac27a0ecSDave Kleikamp /* 4979617ba13bSMingming Cao * ext4_dirty_inode() is called from __mark_inode_dirty() 4980ac27a0ecSDave Kleikamp * 4981ac27a0ecSDave Kleikamp * We're really interested in the case where a file is being extended. 4982ac27a0ecSDave Kleikamp * i_size has been changed by generic_commit_write() and we thus need 4983ac27a0ecSDave Kleikamp * to include the updated inode in the current transaction. 4984ac27a0ecSDave Kleikamp * 49855dd4056dSChristoph Hellwig * Also, dquot_alloc_block() will always dirty the inode when blocks 4986ac27a0ecSDave Kleikamp * are allocated to the file. 4987ac27a0ecSDave Kleikamp * 4988ac27a0ecSDave Kleikamp * If the inode is marked synchronous, we don't honour that here - doing 4989ac27a0ecSDave Kleikamp * so would cause a commit on atime updates, which we don't bother doing. 4990ac27a0ecSDave Kleikamp * We handle synchronous inodes at the highest possible level. 4991ac27a0ecSDave Kleikamp */ 4992aa385729SChristoph Hellwig void ext4_dirty_inode(struct inode *inode, int flags) 4993ac27a0ecSDave Kleikamp { 4994ac27a0ecSDave Kleikamp handle_t *handle; 4995ac27a0ecSDave Kleikamp 49969924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 2); 4997ac27a0ecSDave Kleikamp if (IS_ERR(handle)) 4998ac27a0ecSDave Kleikamp goto out; 4999f3dc272fSCurt Wohlgemuth 5000617ba13bSMingming Cao ext4_mark_inode_dirty(handle, inode); 5001f3dc272fSCurt Wohlgemuth 5002617ba13bSMingming Cao ext4_journal_stop(handle); 5003ac27a0ecSDave Kleikamp out: 5004ac27a0ecSDave Kleikamp return; 5005ac27a0ecSDave Kleikamp } 5006ac27a0ecSDave Kleikamp 5007ac27a0ecSDave Kleikamp #if 0 5008ac27a0ecSDave Kleikamp /* 5009ac27a0ecSDave Kleikamp * Bind an inode's backing buffer_head into this transaction, to prevent 5010ac27a0ecSDave Kleikamp * it from being flushed to disk early. Unlike 5011617ba13bSMingming Cao * ext4_reserve_inode_write, this leaves behind no bh reference and 5012ac27a0ecSDave Kleikamp * returns no iloc structure, so the caller needs to repeat the iloc 5013ac27a0ecSDave Kleikamp * lookup to mark the inode dirty later. 5014ac27a0ecSDave Kleikamp */ 5015617ba13bSMingming Cao static int ext4_pin_inode(handle_t *handle, struct inode *inode) 5016ac27a0ecSDave Kleikamp { 5017617ba13bSMingming Cao struct ext4_iloc iloc; 5018ac27a0ecSDave Kleikamp 5019ac27a0ecSDave Kleikamp int err = 0; 5020ac27a0ecSDave Kleikamp if (handle) { 5021617ba13bSMingming Cao err = ext4_get_inode_loc(inode, &iloc); 5022ac27a0ecSDave Kleikamp if (!err) { 5023ac27a0ecSDave Kleikamp BUFFER_TRACE(iloc.bh, "get_write_access"); 5024dab291afSMingming Cao err = jbd2_journal_get_write_access(handle, iloc.bh); 5025ac27a0ecSDave Kleikamp if (!err) 50260390131bSFrank Mayhar err = ext4_handle_dirty_metadata(handle, 502773b50c1cSCurt Wohlgemuth NULL, 5028ac27a0ecSDave Kleikamp iloc.bh); 5029ac27a0ecSDave Kleikamp brelse(iloc.bh); 5030ac27a0ecSDave Kleikamp } 5031ac27a0ecSDave Kleikamp } 5032617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 5033ac27a0ecSDave Kleikamp return err; 5034ac27a0ecSDave Kleikamp } 5035ac27a0ecSDave Kleikamp #endif 5036ac27a0ecSDave Kleikamp 5037617ba13bSMingming Cao int ext4_change_inode_journal_flag(struct inode *inode, int val) 5038ac27a0ecSDave Kleikamp { 5039ac27a0ecSDave Kleikamp journal_t *journal; 5040ac27a0ecSDave Kleikamp handle_t *handle; 5041ac27a0ecSDave Kleikamp int err; 5042ac27a0ecSDave Kleikamp 5043ac27a0ecSDave Kleikamp /* 5044ac27a0ecSDave Kleikamp * We have to be very careful here: changing a data block's 5045ac27a0ecSDave Kleikamp * journaling status dynamically is dangerous. If we write a 5046ac27a0ecSDave Kleikamp * data block to the journal, change the status and then delete 5047ac27a0ecSDave Kleikamp * that block, we risk forgetting to revoke the old log record 5048ac27a0ecSDave Kleikamp * from the journal and so a subsequent replay can corrupt data. 5049ac27a0ecSDave Kleikamp * So, first we make sure that the journal is empty and that 5050ac27a0ecSDave Kleikamp * nobody is changing anything. 5051ac27a0ecSDave Kleikamp */ 5052ac27a0ecSDave Kleikamp 5053617ba13bSMingming Cao journal = EXT4_JOURNAL(inode); 50540390131bSFrank Mayhar if (!journal) 50550390131bSFrank Mayhar return 0; 5056d699594dSDave Hansen if (is_journal_aborted(journal)) 5057ac27a0ecSDave Kleikamp return -EROFS; 50582aff57b0SYongqiang Yang /* We have to allocate physical blocks for delalloc blocks 50592aff57b0SYongqiang Yang * before flushing journal. otherwise delalloc blocks can not 50602aff57b0SYongqiang Yang * be allocated any more. even more truncate on delalloc blocks 50612aff57b0SYongqiang Yang * could trigger BUG by flushing delalloc blocks in journal. 50622aff57b0SYongqiang Yang * There is no delalloc block in non-journal data mode. 50632aff57b0SYongqiang Yang */ 50642aff57b0SYongqiang Yang if (val && test_opt(inode->i_sb, DELALLOC)) { 50652aff57b0SYongqiang Yang err = ext4_alloc_da_blocks(inode); 50662aff57b0SYongqiang Yang if (err < 0) 50672aff57b0SYongqiang Yang return err; 50682aff57b0SYongqiang Yang } 5069ac27a0ecSDave Kleikamp 507017335dccSDmitry Monakhov /* Wait for all existing dio workers */ 507117335dccSDmitry Monakhov ext4_inode_block_unlocked_dio(inode); 507217335dccSDmitry Monakhov inode_dio_wait(inode); 507317335dccSDmitry Monakhov 5074dab291afSMingming Cao jbd2_journal_lock_updates(journal); 5075ac27a0ecSDave Kleikamp 5076ac27a0ecSDave Kleikamp /* 5077ac27a0ecSDave Kleikamp * OK, there are no updates running now, and all cached data is 5078ac27a0ecSDave Kleikamp * synced to disk. We are now in a completely consistent state 5079ac27a0ecSDave Kleikamp * which doesn't have anything in the journal, and we know that 5080ac27a0ecSDave Kleikamp * no filesystem updates are running, so it is safe to modify 5081ac27a0ecSDave Kleikamp * the inode's in-core data-journaling state flag now. 5082ac27a0ecSDave Kleikamp */ 5083ac27a0ecSDave Kleikamp 5084ac27a0ecSDave Kleikamp if (val) 508512e9b892SDmitry Monakhov ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA); 50865872ddaaSYongqiang Yang else { 50875872ddaaSYongqiang Yang jbd2_journal_flush(journal); 508812e9b892SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA); 50895872ddaaSYongqiang Yang } 5090617ba13bSMingming Cao ext4_set_aops(inode); 5091ac27a0ecSDave Kleikamp 5092dab291afSMingming Cao jbd2_journal_unlock_updates(journal); 509317335dccSDmitry Monakhov ext4_inode_resume_unlocked_dio(inode); 5094ac27a0ecSDave Kleikamp 5095ac27a0ecSDave Kleikamp /* Finally we can mark the inode as dirty. */ 5096ac27a0ecSDave Kleikamp 50979924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 1); 5098ac27a0ecSDave Kleikamp if (IS_ERR(handle)) 5099ac27a0ecSDave Kleikamp return PTR_ERR(handle); 5100ac27a0ecSDave Kleikamp 5101617ba13bSMingming Cao err = ext4_mark_inode_dirty(handle, inode); 51020390131bSFrank Mayhar ext4_handle_sync(handle); 5103617ba13bSMingming Cao ext4_journal_stop(handle); 5104617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 5105ac27a0ecSDave Kleikamp 5106ac27a0ecSDave Kleikamp return err; 5107ac27a0ecSDave Kleikamp } 51082e9ee850SAneesh Kumar K.V 51092e9ee850SAneesh Kumar K.V static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh) 51102e9ee850SAneesh Kumar K.V { 51112e9ee850SAneesh Kumar K.V return !buffer_mapped(bh); 51122e9ee850SAneesh Kumar K.V } 51132e9ee850SAneesh Kumar K.V 5114c2ec175cSNick Piggin int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf) 51152e9ee850SAneesh Kumar K.V { 5116c2ec175cSNick Piggin struct page *page = vmf->page; 51172e9ee850SAneesh Kumar K.V loff_t size; 51182e9ee850SAneesh Kumar K.V unsigned long len; 51199ea7df53SJan Kara int ret; 51202e9ee850SAneesh Kumar K.V struct file *file = vma->vm_file; 5121496ad9aaSAl Viro struct inode *inode = file_inode(file); 51222e9ee850SAneesh Kumar K.V struct address_space *mapping = inode->i_mapping; 51239ea7df53SJan Kara handle_t *handle; 51249ea7df53SJan Kara get_block_t *get_block; 51259ea7df53SJan Kara int retries = 0; 51262e9ee850SAneesh Kumar K.V 51278e8ad8a5SJan Kara sb_start_pagefault(inode->i_sb); 5128041bbb6dSTheodore Ts'o file_update_time(vma->vm_file); 51299ea7df53SJan Kara /* Delalloc case is easy... */ 51309ea7df53SJan Kara if (test_opt(inode->i_sb, DELALLOC) && 51319ea7df53SJan Kara !ext4_should_journal_data(inode) && 51329ea7df53SJan Kara !ext4_nonda_switch(inode->i_sb)) { 51339ea7df53SJan Kara do { 51349ea7df53SJan Kara ret = __block_page_mkwrite(vma, vmf, 51359ea7df53SJan Kara ext4_da_get_block_prep); 51369ea7df53SJan Kara } while (ret == -ENOSPC && 51379ea7df53SJan Kara ext4_should_retry_alloc(inode->i_sb, &retries)); 51389ea7df53SJan Kara goto out_ret; 51392e9ee850SAneesh Kumar K.V } 51400e499890SDarrick J. Wong 51410e499890SDarrick J. Wong lock_page(page); 51429ea7df53SJan Kara size = i_size_read(inode); 51439ea7df53SJan Kara /* Page got truncated from under us? */ 51449ea7df53SJan Kara if (page->mapping != mapping || page_offset(page) > size) { 51459ea7df53SJan Kara unlock_page(page); 51469ea7df53SJan Kara ret = VM_FAULT_NOPAGE; 51479ea7df53SJan Kara goto out; 51480e499890SDarrick J. Wong } 51492e9ee850SAneesh Kumar K.V 51502e9ee850SAneesh Kumar K.V if (page->index == size >> PAGE_CACHE_SHIFT) 51512e9ee850SAneesh Kumar K.V len = size & ~PAGE_CACHE_MASK; 51522e9ee850SAneesh Kumar K.V else 51532e9ee850SAneesh Kumar K.V len = PAGE_CACHE_SIZE; 5154a827eaffSAneesh Kumar K.V /* 51559ea7df53SJan Kara * Return if we have all the buffers mapped. This avoids the need to do 51569ea7df53SJan Kara * journal_start/journal_stop which can block and take a long time 5157a827eaffSAneesh Kumar K.V */ 51582e9ee850SAneesh Kumar K.V if (page_has_buffers(page)) { 5159f19d5870STao Ma if (!ext4_walk_page_buffers(NULL, page_buffers(page), 5160f19d5870STao Ma 0, len, NULL, 5161a827eaffSAneesh Kumar K.V ext4_bh_unmapped)) { 51629ea7df53SJan Kara /* Wait so that we don't change page under IO */ 51631d1d1a76SDarrick J. Wong wait_for_stable_page(page); 51649ea7df53SJan Kara ret = VM_FAULT_LOCKED; 51659ea7df53SJan Kara goto out; 51662e9ee850SAneesh Kumar K.V } 5167a827eaffSAneesh Kumar K.V } 5168a827eaffSAneesh Kumar K.V unlock_page(page); 51699ea7df53SJan Kara /* OK, we need to fill the hole... */ 51709ea7df53SJan Kara if (ext4_should_dioread_nolock(inode)) 51719ea7df53SJan Kara get_block = ext4_get_block_write; 51729ea7df53SJan Kara else 51739ea7df53SJan Kara get_block = ext4_get_block; 51749ea7df53SJan Kara retry_alloc: 51759924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 51769924a92aSTheodore Ts'o ext4_writepage_trans_blocks(inode)); 51779ea7df53SJan Kara if (IS_ERR(handle)) { 5178c2ec175cSNick Piggin ret = VM_FAULT_SIGBUS; 51799ea7df53SJan Kara goto out; 51809ea7df53SJan Kara } 51819ea7df53SJan Kara ret = __block_page_mkwrite(vma, vmf, get_block); 51829ea7df53SJan Kara if (!ret && ext4_should_journal_data(inode)) { 5183f19d5870STao Ma if (ext4_walk_page_buffers(handle, page_buffers(page), 0, 51849ea7df53SJan Kara PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) { 51859ea7df53SJan Kara unlock_page(page); 51869ea7df53SJan Kara ret = VM_FAULT_SIGBUS; 5187fcbb5515SYongqiang Yang ext4_journal_stop(handle); 51889ea7df53SJan Kara goto out; 51899ea7df53SJan Kara } 51909ea7df53SJan Kara ext4_set_inode_state(inode, EXT4_STATE_JDATA); 51919ea7df53SJan Kara } 51929ea7df53SJan Kara ext4_journal_stop(handle); 51939ea7df53SJan Kara if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries)) 51949ea7df53SJan Kara goto retry_alloc; 51959ea7df53SJan Kara out_ret: 51969ea7df53SJan Kara ret = block_page_mkwrite_return(ret); 51979ea7df53SJan Kara out: 51988e8ad8a5SJan Kara sb_end_pagefault(inode->i_sb); 51992e9ee850SAneesh Kumar K.V return ret; 52002e9ee850SAneesh Kumar K.V } 5201