1ac27a0ecSDave Kleikamp /* 2617ba13bSMingming Cao * linux/fs/ext4/inode.c 3ac27a0ecSDave Kleikamp * 4ac27a0ecSDave Kleikamp * Copyright (C) 1992, 1993, 1994, 1995 5ac27a0ecSDave Kleikamp * Remy Card (card@masi.ibp.fr) 6ac27a0ecSDave Kleikamp * Laboratoire MASI - Institut Blaise Pascal 7ac27a0ecSDave Kleikamp * Universite Pierre et Marie Curie (Paris VI) 8ac27a0ecSDave Kleikamp * 9ac27a0ecSDave Kleikamp * from 10ac27a0ecSDave Kleikamp * 11ac27a0ecSDave Kleikamp * linux/fs/minix/inode.c 12ac27a0ecSDave Kleikamp * 13ac27a0ecSDave Kleikamp * Copyright (C) 1991, 1992 Linus Torvalds 14ac27a0ecSDave Kleikamp * 15ac27a0ecSDave Kleikamp * 64-bit file support on 64-bit platforms by Jakub Jelinek 16ac27a0ecSDave Kleikamp * (jj@sunsite.ms.mff.cuni.cz) 17ac27a0ecSDave Kleikamp * 18617ba13bSMingming Cao * Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000 19ac27a0ecSDave Kleikamp */ 20ac27a0ecSDave Kleikamp 21ac27a0ecSDave Kleikamp #include <linux/fs.h> 22ac27a0ecSDave Kleikamp #include <linux/time.h> 23ac27a0ecSDave Kleikamp #include <linux/highuid.h> 24ac27a0ecSDave Kleikamp #include <linux/pagemap.h> 25ac27a0ecSDave Kleikamp #include <linux/quotaops.h> 26ac27a0ecSDave Kleikamp #include <linux/string.h> 27ac27a0ecSDave Kleikamp #include <linux/buffer_head.h> 28ac27a0ecSDave Kleikamp #include <linux/writeback.h> 2964769240SAlex Tomas #include <linux/pagevec.h> 30ac27a0ecSDave Kleikamp #include <linux/mpage.h> 31e83c1397SDuane Griffin #include <linux/namei.h> 32ac27a0ecSDave Kleikamp #include <linux/uio.h> 33ac27a0ecSDave Kleikamp #include <linux/bio.h> 344c0425ffSMingming Cao #include <linux/workqueue.h> 35744692dcSJiaying Zhang #include <linux/kernel.h> 366db26ffcSAndrew Morton #include <linux/printk.h> 375a0e3ad6STejun Heo #include <linux/slab.h> 3800a1a053STheodore Ts'o #include <linux/bitops.h> 399bffad1eSTheodore Ts'o 403dcf5451SChristoph Hellwig #include "ext4_jbd2.h" 41ac27a0ecSDave Kleikamp #include "xattr.h" 42ac27a0ecSDave Kleikamp #include "acl.h" 439f125d64STheodore Ts'o #include "truncate.h" 44ac27a0ecSDave Kleikamp 459bffad1eSTheodore Ts'o #include <trace/events/ext4.h> 469bffad1eSTheodore Ts'o 47a1d6cc56SAneesh Kumar K.V #define MPAGE_DA_EXTENT_TAIL 0x01 48a1d6cc56SAneesh Kumar K.V 49814525f4SDarrick J. Wong static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw, 50814525f4SDarrick J. Wong struct ext4_inode_info *ei) 51814525f4SDarrick J. Wong { 52814525f4SDarrick J. Wong struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 53814525f4SDarrick J. Wong __u16 csum_lo; 54814525f4SDarrick J. Wong __u16 csum_hi = 0; 55814525f4SDarrick J. Wong __u32 csum; 56814525f4SDarrick J. Wong 57171a7f21SDmitry Monakhov csum_lo = le16_to_cpu(raw->i_checksum_lo); 58814525f4SDarrick J. Wong raw->i_checksum_lo = 0; 59814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 60814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) { 61171a7f21SDmitry Monakhov csum_hi = le16_to_cpu(raw->i_checksum_hi); 62814525f4SDarrick J. Wong raw->i_checksum_hi = 0; 63814525f4SDarrick J. Wong } 64814525f4SDarrick J. Wong 65814525f4SDarrick J. Wong csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw, 66814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)); 67814525f4SDarrick J. Wong 68171a7f21SDmitry Monakhov raw->i_checksum_lo = cpu_to_le16(csum_lo); 69814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 70814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 71171a7f21SDmitry Monakhov raw->i_checksum_hi = cpu_to_le16(csum_hi); 72814525f4SDarrick J. Wong 73814525f4SDarrick J. Wong return csum; 74814525f4SDarrick J. Wong } 75814525f4SDarrick J. Wong 76814525f4SDarrick J. Wong static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw, 77814525f4SDarrick J. Wong struct ext4_inode_info *ei) 78814525f4SDarrick J. Wong { 79814525f4SDarrick J. Wong __u32 provided, calculated; 80814525f4SDarrick J. Wong 81814525f4SDarrick J. Wong if (EXT4_SB(inode->i_sb)->s_es->s_creator_os != 82814525f4SDarrick J. Wong cpu_to_le32(EXT4_OS_LINUX) || 839aa5d32bSDmitry Monakhov !ext4_has_metadata_csum(inode->i_sb)) 84814525f4SDarrick J. Wong return 1; 85814525f4SDarrick J. Wong 86814525f4SDarrick J. Wong provided = le16_to_cpu(raw->i_checksum_lo); 87814525f4SDarrick J. Wong calculated = ext4_inode_csum(inode, raw, ei); 88814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 89814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 90814525f4SDarrick J. Wong provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16; 91814525f4SDarrick J. Wong else 92814525f4SDarrick J. Wong calculated &= 0xFFFF; 93814525f4SDarrick J. Wong 94814525f4SDarrick J. Wong return provided == calculated; 95814525f4SDarrick J. Wong } 96814525f4SDarrick J. Wong 97814525f4SDarrick J. Wong static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw, 98814525f4SDarrick J. Wong struct ext4_inode_info *ei) 99814525f4SDarrick J. Wong { 100814525f4SDarrick J. Wong __u32 csum; 101814525f4SDarrick J. Wong 102814525f4SDarrick J. Wong if (EXT4_SB(inode->i_sb)->s_es->s_creator_os != 103814525f4SDarrick J. Wong cpu_to_le32(EXT4_OS_LINUX) || 1049aa5d32bSDmitry Monakhov !ext4_has_metadata_csum(inode->i_sb)) 105814525f4SDarrick J. Wong return; 106814525f4SDarrick J. Wong 107814525f4SDarrick J. Wong csum = ext4_inode_csum(inode, raw, ei); 108814525f4SDarrick J. Wong raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF); 109814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 110814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 111814525f4SDarrick J. Wong raw->i_checksum_hi = cpu_to_le16(csum >> 16); 112814525f4SDarrick J. Wong } 113814525f4SDarrick J. Wong 114678aaf48SJan Kara static inline int ext4_begin_ordered_truncate(struct inode *inode, 115678aaf48SJan Kara loff_t new_size) 116678aaf48SJan Kara { 1177ff9c073STheodore Ts'o trace_ext4_begin_ordered_truncate(inode, new_size); 1188aefcd55STheodore Ts'o /* 1198aefcd55STheodore Ts'o * If jinode is zero, then we never opened the file for 1208aefcd55STheodore Ts'o * writing, so there's no need to call 1218aefcd55STheodore Ts'o * jbd2_journal_begin_ordered_truncate() since there's no 1228aefcd55STheodore Ts'o * outstanding writes we need to flush. 1238aefcd55STheodore Ts'o */ 1248aefcd55STheodore Ts'o if (!EXT4_I(inode)->jinode) 1258aefcd55STheodore Ts'o return 0; 1268aefcd55STheodore Ts'o return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode), 1278aefcd55STheodore Ts'o EXT4_I(inode)->jinode, 128678aaf48SJan Kara new_size); 129678aaf48SJan Kara } 130678aaf48SJan Kara 131d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset, 132d47992f8SLukas Czerner unsigned int length); 133cb20d518STheodore Ts'o static int __ext4_journalled_writepage(struct page *page, unsigned int len); 134cb20d518STheodore Ts'o static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh); 135fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks, 136fffb2739SJan Kara int pextents); 13764769240SAlex Tomas 138ac27a0ecSDave Kleikamp /* 139ac27a0ecSDave Kleikamp * Test whether an inode is a fast symlink. 140ac27a0ecSDave Kleikamp */ 141f348c252STheodore Ts'o int ext4_inode_is_fast_symlink(struct inode *inode) 142ac27a0ecSDave Kleikamp { 143617ba13bSMingming Cao int ea_blocks = EXT4_I(inode)->i_file_acl ? 14465eddb56SYongqiang Yang EXT4_CLUSTER_SIZE(inode->i_sb) >> 9 : 0; 145ac27a0ecSDave Kleikamp 146bd9db175SZheng Liu if (ext4_has_inline_data(inode)) 147bd9db175SZheng Liu return 0; 148bd9db175SZheng Liu 149ac27a0ecSDave Kleikamp return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0); 150ac27a0ecSDave Kleikamp } 151ac27a0ecSDave Kleikamp 152ac27a0ecSDave Kleikamp /* 153ac27a0ecSDave Kleikamp * Restart the transaction associated with *handle. This does a commit, 154ac27a0ecSDave Kleikamp * so before we call here everything must be consistently dirtied against 155ac27a0ecSDave Kleikamp * this transaction. 156ac27a0ecSDave Kleikamp */ 157487caeefSJan Kara int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode, 158487caeefSJan Kara int nblocks) 159ac27a0ecSDave Kleikamp { 160487caeefSJan Kara int ret; 161487caeefSJan Kara 162487caeefSJan Kara /* 163e35fd660STheodore Ts'o * Drop i_data_sem to avoid deadlock with ext4_map_blocks. At this 164487caeefSJan Kara * moment, get_block can be called only for blocks inside i_size since 165487caeefSJan Kara * page cache has been already dropped and writes are blocked by 166487caeefSJan Kara * i_mutex. So we can safely drop the i_data_sem here. 167487caeefSJan Kara */ 1680390131bSFrank Mayhar BUG_ON(EXT4_JOURNAL(inode) == NULL); 169ac27a0ecSDave Kleikamp jbd_debug(2, "restarting handle %p\n", handle); 170487caeefSJan Kara up_write(&EXT4_I(inode)->i_data_sem); 1718e8eaabeSAmir Goldstein ret = ext4_journal_restart(handle, nblocks); 172487caeefSJan Kara down_write(&EXT4_I(inode)->i_data_sem); 173fa5d1113SAneesh Kumar K.V ext4_discard_preallocations(inode); 174487caeefSJan Kara 175487caeefSJan Kara return ret; 176ac27a0ecSDave Kleikamp } 177ac27a0ecSDave Kleikamp 178ac27a0ecSDave Kleikamp /* 179ac27a0ecSDave Kleikamp * Called at the last iput() if i_nlink is zero. 180ac27a0ecSDave Kleikamp */ 1810930fcc1SAl Viro void ext4_evict_inode(struct inode *inode) 182ac27a0ecSDave Kleikamp { 183ac27a0ecSDave Kleikamp handle_t *handle; 184bc965ab3STheodore Ts'o int err; 185ac27a0ecSDave Kleikamp 1867ff9c073STheodore Ts'o trace_ext4_evict_inode(inode); 1872581fdc8SJiaying Zhang 1880930fcc1SAl Viro if (inode->i_nlink) { 1892d859db3SJan Kara /* 1902d859db3SJan Kara * When journalling data dirty buffers are tracked only in the 1912d859db3SJan Kara * journal. So although mm thinks everything is clean and 1922d859db3SJan Kara * ready for reaping the inode might still have some pages to 1932d859db3SJan Kara * write in the running transaction or waiting to be 1942d859db3SJan Kara * checkpointed. Thus calling jbd2_journal_invalidatepage() 1952d859db3SJan Kara * (via truncate_inode_pages()) to discard these buffers can 1962d859db3SJan Kara * cause data loss. Also even if we did not discard these 1972d859db3SJan Kara * buffers, we would have no way to find them after the inode 1982d859db3SJan Kara * is reaped and thus user could see stale data if he tries to 1992d859db3SJan Kara * read them before the transaction is checkpointed. So be 2002d859db3SJan Kara * careful and force everything to disk here... We use 2012d859db3SJan Kara * ei->i_datasync_tid to store the newest transaction 2022d859db3SJan Kara * containing inode's data. 2032d859db3SJan Kara * 2042d859db3SJan Kara * Note that directories do not have this problem because they 2052d859db3SJan Kara * don't use page cache. 2062d859db3SJan Kara */ 2072d859db3SJan Kara if (ext4_should_journal_data(inode) && 2082b405bfaSTheodore Ts'o (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) && 2092b405bfaSTheodore Ts'o inode->i_ino != EXT4_JOURNAL_INO) { 2102d859db3SJan Kara journal_t *journal = EXT4_SB(inode->i_sb)->s_journal; 2112d859db3SJan Kara tid_t commit_tid = EXT4_I(inode)->i_datasync_tid; 2122d859db3SJan Kara 213d76a3a77STheodore Ts'o jbd2_complete_transaction(journal, commit_tid); 2142d859db3SJan Kara filemap_write_and_wait(&inode->i_data); 2152d859db3SJan Kara } 21691b0abe3SJohannes Weiner truncate_inode_pages_final(&inode->i_data); 2175dc23bddSJan Kara 2185dc23bddSJan Kara WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count)); 2190930fcc1SAl Viro goto no_delete; 2200930fcc1SAl Viro } 2210930fcc1SAl Viro 222e2bfb088STheodore Ts'o if (is_bad_inode(inode)) 223e2bfb088STheodore Ts'o goto no_delete; 224871a2931SChristoph Hellwig dquot_initialize(inode); 225907f4554SChristoph Hellwig 226678aaf48SJan Kara if (ext4_should_order_data(inode)) 227678aaf48SJan Kara ext4_begin_ordered_truncate(inode, 0); 22891b0abe3SJohannes Weiner truncate_inode_pages_final(&inode->i_data); 229ac27a0ecSDave Kleikamp 2305dc23bddSJan Kara WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count)); 231ac27a0ecSDave Kleikamp 2328e8ad8a5SJan Kara /* 2338e8ad8a5SJan Kara * Protect us against freezing - iput() caller didn't have to have any 2348e8ad8a5SJan Kara * protection against it 2358e8ad8a5SJan Kara */ 2368e8ad8a5SJan Kara sb_start_intwrite(inode->i_sb); 2379924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, 2389924a92aSTheodore Ts'o ext4_blocks_for_truncate(inode)+3); 239ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 240bc965ab3STheodore Ts'o ext4_std_error(inode->i_sb, PTR_ERR(handle)); 241ac27a0ecSDave Kleikamp /* 242ac27a0ecSDave Kleikamp * If we're going to skip the normal cleanup, we still need to 243ac27a0ecSDave Kleikamp * make sure that the in-core orphan linked list is properly 244ac27a0ecSDave Kleikamp * cleaned up. 245ac27a0ecSDave Kleikamp */ 246617ba13bSMingming Cao ext4_orphan_del(NULL, inode); 2478e8ad8a5SJan Kara sb_end_intwrite(inode->i_sb); 248ac27a0ecSDave Kleikamp goto no_delete; 249ac27a0ecSDave Kleikamp } 250ac27a0ecSDave Kleikamp 251ac27a0ecSDave Kleikamp if (IS_SYNC(inode)) 2520390131bSFrank Mayhar ext4_handle_sync(handle); 253ac27a0ecSDave Kleikamp inode->i_size = 0; 254bc965ab3STheodore Ts'o err = ext4_mark_inode_dirty(handle, inode); 255bc965ab3STheodore Ts'o if (err) { 25612062dddSEric Sandeen ext4_warning(inode->i_sb, 257bc965ab3STheodore Ts'o "couldn't mark inode dirty (err %d)", err); 258bc965ab3STheodore Ts'o goto stop_handle; 259bc965ab3STheodore Ts'o } 260ac27a0ecSDave Kleikamp if (inode->i_blocks) 261617ba13bSMingming Cao ext4_truncate(inode); 262bc965ab3STheodore Ts'o 263bc965ab3STheodore Ts'o /* 264bc965ab3STheodore Ts'o * ext4_ext_truncate() doesn't reserve any slop when it 265bc965ab3STheodore Ts'o * restarts journal transactions; therefore there may not be 266bc965ab3STheodore Ts'o * enough credits left in the handle to remove the inode from 267bc965ab3STheodore Ts'o * the orphan list and set the dtime field. 268bc965ab3STheodore Ts'o */ 2690390131bSFrank Mayhar if (!ext4_handle_has_enough_credits(handle, 3)) { 270bc965ab3STheodore Ts'o err = ext4_journal_extend(handle, 3); 271bc965ab3STheodore Ts'o if (err > 0) 272bc965ab3STheodore Ts'o err = ext4_journal_restart(handle, 3); 273bc965ab3STheodore Ts'o if (err != 0) { 27412062dddSEric Sandeen ext4_warning(inode->i_sb, 275bc965ab3STheodore Ts'o "couldn't extend journal (err %d)", err); 276bc965ab3STheodore Ts'o stop_handle: 277bc965ab3STheodore Ts'o ext4_journal_stop(handle); 27845388219STheodore Ts'o ext4_orphan_del(NULL, inode); 2798e8ad8a5SJan Kara sb_end_intwrite(inode->i_sb); 280bc965ab3STheodore Ts'o goto no_delete; 281bc965ab3STheodore Ts'o } 282bc965ab3STheodore Ts'o } 283bc965ab3STheodore Ts'o 284ac27a0ecSDave Kleikamp /* 285617ba13bSMingming Cao * Kill off the orphan record which ext4_truncate created. 286ac27a0ecSDave Kleikamp * AKPM: I think this can be inside the above `if'. 287617ba13bSMingming Cao * Note that ext4_orphan_del() has to be able to cope with the 288ac27a0ecSDave Kleikamp * deletion of a non-existent orphan - this is because we don't 289617ba13bSMingming Cao * know if ext4_truncate() actually created an orphan record. 290ac27a0ecSDave Kleikamp * (Well, we could do this if we need to, but heck - it works) 291ac27a0ecSDave Kleikamp */ 292617ba13bSMingming Cao ext4_orphan_del(handle, inode); 293617ba13bSMingming Cao EXT4_I(inode)->i_dtime = get_seconds(); 294ac27a0ecSDave Kleikamp 295ac27a0ecSDave Kleikamp /* 296ac27a0ecSDave Kleikamp * One subtle ordering requirement: if anything has gone wrong 297ac27a0ecSDave Kleikamp * (transaction abort, IO errors, whatever), then we can still 298ac27a0ecSDave Kleikamp * do these next steps (the fs will already have been marked as 299ac27a0ecSDave Kleikamp * having errors), but we can't free the inode if the mark_dirty 300ac27a0ecSDave Kleikamp * fails. 301ac27a0ecSDave Kleikamp */ 302617ba13bSMingming Cao if (ext4_mark_inode_dirty(handle, inode)) 303ac27a0ecSDave Kleikamp /* If that failed, just do the required in-core inode clear. */ 3040930fcc1SAl Viro ext4_clear_inode(inode); 305ac27a0ecSDave Kleikamp else 306617ba13bSMingming Cao ext4_free_inode(handle, inode); 307617ba13bSMingming Cao ext4_journal_stop(handle); 3088e8ad8a5SJan Kara sb_end_intwrite(inode->i_sb); 309ac27a0ecSDave Kleikamp return; 310ac27a0ecSDave Kleikamp no_delete: 3110930fcc1SAl Viro ext4_clear_inode(inode); /* We must guarantee clearing of inode... */ 312ac27a0ecSDave Kleikamp } 313ac27a0ecSDave Kleikamp 314a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA 315a9e7f447SDmitry Monakhov qsize_t *ext4_get_reserved_space(struct inode *inode) 31660e58e0fSMingming Cao { 317a9e7f447SDmitry Monakhov return &EXT4_I(inode)->i_reserved_quota; 31860e58e0fSMingming Cao } 319a9e7f447SDmitry Monakhov #endif 3209d0be502STheodore Ts'o 32112219aeaSAneesh Kumar K.V /* 3220637c6f4STheodore Ts'o * Called with i_data_sem down, which is important since we can call 3230637c6f4STheodore Ts'o * ext4_discard_preallocations() from here. 3240637c6f4STheodore Ts'o */ 3255f634d06SAneesh Kumar K.V void ext4_da_update_reserve_space(struct inode *inode, 3265f634d06SAneesh Kumar K.V int used, int quota_claim) 32712219aeaSAneesh Kumar K.V { 32812219aeaSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 3290637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 33012219aeaSAneesh Kumar K.V 3310637c6f4STheodore Ts'o spin_lock(&ei->i_block_reservation_lock); 332d8990240SAditya Kali trace_ext4_da_update_reserve_space(inode, used, quota_claim); 3330637c6f4STheodore Ts'o if (unlikely(used > ei->i_reserved_data_blocks)) { 3348de5c325STheodore Ts'o ext4_warning(inode->i_sb, "%s: ino %lu, used %d " 3351084f252STheodore Ts'o "with only %d reserved data blocks", 3360637c6f4STheodore Ts'o __func__, inode->i_ino, used, 3370637c6f4STheodore Ts'o ei->i_reserved_data_blocks); 3380637c6f4STheodore Ts'o WARN_ON(1); 3390637c6f4STheodore Ts'o used = ei->i_reserved_data_blocks; 3406bc6e63fSAneesh Kumar K.V } 34112219aeaSAneesh Kumar K.V 3420637c6f4STheodore Ts'o /* Update per-inode reservations */ 3430637c6f4STheodore Ts'o ei->i_reserved_data_blocks -= used; 34471d4f7d0STheodore Ts'o percpu_counter_sub(&sbi->s_dirtyclusters_counter, used); 3450637c6f4STheodore Ts'o 34612219aeaSAneesh Kumar K.V spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); 34760e58e0fSMingming Cao 34872b8ab9dSEric Sandeen /* Update quota subsystem for data blocks */ 34972b8ab9dSEric Sandeen if (quota_claim) 3507b415bf6SAditya Kali dquot_claim_block(inode, EXT4_C2B(sbi, used)); 35172b8ab9dSEric Sandeen else { 3525f634d06SAneesh Kumar K.V /* 3535f634d06SAneesh Kumar K.V * We did fallocate with an offset that is already delayed 3545f634d06SAneesh Kumar K.V * allocated. So on delayed allocated writeback we should 35572b8ab9dSEric Sandeen * not re-claim the quota for fallocated blocks. 3565f634d06SAneesh Kumar K.V */ 3577b415bf6SAditya Kali dquot_release_reservation_block(inode, EXT4_C2B(sbi, used)); 3585f634d06SAneesh Kumar K.V } 359d6014301SAneesh Kumar K.V 360d6014301SAneesh Kumar K.V /* 361d6014301SAneesh Kumar K.V * If we have done all the pending block allocations and if 362d6014301SAneesh Kumar K.V * there aren't any writers on the inode, we can discard the 363d6014301SAneesh Kumar K.V * inode's preallocations. 364d6014301SAneesh Kumar K.V */ 3650637c6f4STheodore Ts'o if ((ei->i_reserved_data_blocks == 0) && 3660637c6f4STheodore Ts'o (atomic_read(&inode->i_writecount) == 0)) 367d6014301SAneesh Kumar K.V ext4_discard_preallocations(inode); 36812219aeaSAneesh Kumar K.V } 36912219aeaSAneesh Kumar K.V 370e29136f8STheodore Ts'o static int __check_block_validity(struct inode *inode, const char *func, 371c398eda0STheodore Ts'o unsigned int line, 37224676da4STheodore Ts'o struct ext4_map_blocks *map) 3736fd058f7STheodore Ts'o { 37424676da4STheodore Ts'o if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk, 37524676da4STheodore Ts'o map->m_len)) { 376c398eda0STheodore Ts'o ext4_error_inode(inode, func, line, map->m_pblk, 377c398eda0STheodore Ts'o "lblock %lu mapped to illegal pblock " 37824676da4STheodore Ts'o "(length %d)", (unsigned long) map->m_lblk, 379c398eda0STheodore Ts'o map->m_len); 3806fd058f7STheodore Ts'o return -EIO; 3816fd058f7STheodore Ts'o } 3826fd058f7STheodore Ts'o return 0; 3836fd058f7STheodore Ts'o } 3846fd058f7STheodore Ts'o 385e29136f8STheodore Ts'o #define check_block_validity(inode, map) \ 386c398eda0STheodore Ts'o __check_block_validity((inode), __func__, __LINE__, (map)) 387e29136f8STheodore Ts'o 388921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 389921f266bSDmitry Monakhov static void ext4_map_blocks_es_recheck(handle_t *handle, 390921f266bSDmitry Monakhov struct inode *inode, 391921f266bSDmitry Monakhov struct ext4_map_blocks *es_map, 392921f266bSDmitry Monakhov struct ext4_map_blocks *map, 393921f266bSDmitry Monakhov int flags) 394921f266bSDmitry Monakhov { 395921f266bSDmitry Monakhov int retval; 396921f266bSDmitry Monakhov 397921f266bSDmitry Monakhov map->m_flags = 0; 398921f266bSDmitry Monakhov /* 399921f266bSDmitry Monakhov * There is a race window that the result is not the same. 400921f266bSDmitry Monakhov * e.g. xfstests #223 when dioread_nolock enables. The reason 401921f266bSDmitry Monakhov * is that we lookup a block mapping in extent status tree with 402921f266bSDmitry Monakhov * out taking i_data_sem. So at the time the unwritten extent 403921f266bSDmitry Monakhov * could be converted. 404921f266bSDmitry Monakhov */ 405921f266bSDmitry Monakhov if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 406c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 407921f266bSDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 408921f266bSDmitry Monakhov retval = ext4_ext_map_blocks(handle, inode, map, flags & 409921f266bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 410921f266bSDmitry Monakhov } else { 411921f266bSDmitry Monakhov retval = ext4_ind_map_blocks(handle, inode, map, flags & 412921f266bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 413921f266bSDmitry Monakhov } 414921f266bSDmitry Monakhov if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 415921f266bSDmitry Monakhov up_read((&EXT4_I(inode)->i_data_sem)); 416921f266bSDmitry Monakhov 417921f266bSDmitry Monakhov /* 418921f266bSDmitry Monakhov * We don't check m_len because extent will be collpased in status 419921f266bSDmitry Monakhov * tree. So the m_len might not equal. 420921f266bSDmitry Monakhov */ 421921f266bSDmitry Monakhov if (es_map->m_lblk != map->m_lblk || 422921f266bSDmitry Monakhov es_map->m_flags != map->m_flags || 423921f266bSDmitry Monakhov es_map->m_pblk != map->m_pblk) { 424bdafe42aSTheodore Ts'o printk("ES cache assertion failed for inode: %lu " 425921f266bSDmitry Monakhov "es_cached ex [%d/%d/%llu/%x] != " 426921f266bSDmitry Monakhov "found ex [%d/%d/%llu/%x] retval %d flags %x\n", 427921f266bSDmitry Monakhov inode->i_ino, es_map->m_lblk, es_map->m_len, 428921f266bSDmitry Monakhov es_map->m_pblk, es_map->m_flags, map->m_lblk, 429921f266bSDmitry Monakhov map->m_len, map->m_pblk, map->m_flags, 430921f266bSDmitry Monakhov retval, flags); 431921f266bSDmitry Monakhov } 432921f266bSDmitry Monakhov } 433921f266bSDmitry Monakhov #endif /* ES_AGGRESSIVE_TEST */ 434921f266bSDmitry Monakhov 43555138e0bSTheodore Ts'o /* 436e35fd660STheodore Ts'o * The ext4_map_blocks() function tries to look up the requested blocks, 4372b2d6d01STheodore Ts'o * and returns if the blocks are already mapped. 438f5ab0d1fSMingming Cao * 439f5ab0d1fSMingming Cao * Otherwise it takes the write lock of the i_data_sem and allocate blocks 440f5ab0d1fSMingming Cao * and store the allocated blocks in the result buffer head and mark it 441f5ab0d1fSMingming Cao * mapped. 442f5ab0d1fSMingming Cao * 443e35fd660STheodore Ts'o * If file type is extents based, it will call ext4_ext_map_blocks(), 444e35fd660STheodore Ts'o * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping 445f5ab0d1fSMingming Cao * based files 446f5ab0d1fSMingming Cao * 447556615dcSLukas Czerner * On success, it returns the number of blocks being mapped or allocated. 448556615dcSLukas Czerner * if create==0 and the blocks are pre-allocated and unwritten block, 449f5ab0d1fSMingming Cao * the result buffer head is unmapped. If the create ==1, it will make sure 450f5ab0d1fSMingming Cao * the buffer head is mapped. 451f5ab0d1fSMingming Cao * 452f5ab0d1fSMingming Cao * It returns 0 if plain look up failed (blocks have not been allocated), in 453df3ab170STao Ma * that case, buffer head is unmapped 454f5ab0d1fSMingming Cao * 455f5ab0d1fSMingming Cao * It returns the error in case of allocation failure. 456f5ab0d1fSMingming Cao */ 457e35fd660STheodore Ts'o int ext4_map_blocks(handle_t *handle, struct inode *inode, 458e35fd660STheodore Ts'o struct ext4_map_blocks *map, int flags) 4590e855ac8SAneesh Kumar K.V { 460d100eef2SZheng Liu struct extent_status es; 4610e855ac8SAneesh Kumar K.V int retval; 462b8a86845SLukas Czerner int ret = 0; 463921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 464921f266bSDmitry Monakhov struct ext4_map_blocks orig_map; 465921f266bSDmitry Monakhov 466921f266bSDmitry Monakhov memcpy(&orig_map, map, sizeof(*map)); 467921f266bSDmitry Monakhov #endif 468f5ab0d1fSMingming Cao 469e35fd660STheodore Ts'o map->m_flags = 0; 470e35fd660STheodore Ts'o ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u," 471e35fd660STheodore Ts'o "logical block %lu\n", inode->i_ino, flags, map->m_len, 472e35fd660STheodore Ts'o (unsigned long) map->m_lblk); 473d100eef2SZheng Liu 474e861b5e9STheodore Ts'o /* 475e861b5e9STheodore Ts'o * ext4_map_blocks returns an int, and m_len is an unsigned int 476e861b5e9STheodore Ts'o */ 477e861b5e9STheodore Ts'o if (unlikely(map->m_len > INT_MAX)) 478e861b5e9STheodore Ts'o map->m_len = INT_MAX; 479e861b5e9STheodore Ts'o 4804adb6ab3SKazuya Mio /* We can handle the block number less than EXT_MAX_BLOCKS */ 4814adb6ab3SKazuya Mio if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS)) 4824adb6ab3SKazuya Mio return -EIO; 4834adb6ab3SKazuya Mio 484d100eef2SZheng Liu /* Lookup extent status tree firstly */ 485d100eef2SZheng Liu if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) { 486d100eef2SZheng Liu if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) { 487d100eef2SZheng Liu map->m_pblk = ext4_es_pblock(&es) + 488d100eef2SZheng Liu map->m_lblk - es.es_lblk; 489d100eef2SZheng Liu map->m_flags |= ext4_es_is_written(&es) ? 490d100eef2SZheng Liu EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN; 491d100eef2SZheng Liu retval = es.es_len - (map->m_lblk - es.es_lblk); 492d100eef2SZheng Liu if (retval > map->m_len) 493d100eef2SZheng Liu retval = map->m_len; 494d100eef2SZheng Liu map->m_len = retval; 495d100eef2SZheng Liu } else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) { 496d100eef2SZheng Liu retval = 0; 497d100eef2SZheng Liu } else { 498d100eef2SZheng Liu BUG_ON(1); 499d100eef2SZheng Liu } 500921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 501921f266bSDmitry Monakhov ext4_map_blocks_es_recheck(handle, inode, map, 502921f266bSDmitry Monakhov &orig_map, flags); 503921f266bSDmitry Monakhov #endif 504d100eef2SZheng Liu goto found; 505d100eef2SZheng Liu } 506d100eef2SZheng Liu 5074df3d265SAneesh Kumar K.V /* 508b920c755STheodore Ts'o * Try to see if we can get the block without requesting a new 509b920c755STheodore Ts'o * file system block. 5104df3d265SAneesh Kumar K.V */ 511729f52c6SZheng Liu if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 512c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 51312e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 514a4e5d88bSDmitry Monakhov retval = ext4_ext_map_blocks(handle, inode, map, flags & 515a4e5d88bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 5164df3d265SAneesh Kumar K.V } else { 517a4e5d88bSDmitry Monakhov retval = ext4_ind_map_blocks(handle, inode, map, flags & 518a4e5d88bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 5190e855ac8SAneesh Kumar K.V } 520f7fec032SZheng Liu if (retval > 0) { 5213be78c73STheodore Ts'o unsigned int status; 522f7fec032SZheng Liu 52344fb851dSZheng Liu if (unlikely(retval != map->m_len)) { 52444fb851dSZheng Liu ext4_warning(inode->i_sb, 52544fb851dSZheng Liu "ES len assertion failed for inode " 52644fb851dSZheng Liu "%lu: retval %d != map->m_len %d", 52744fb851dSZheng Liu inode->i_ino, retval, map->m_len); 52844fb851dSZheng Liu WARN_ON(1); 529921f266bSDmitry Monakhov } 530921f266bSDmitry Monakhov 531f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 532f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 533f7fec032SZheng Liu if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) && 534d2dc317dSLukas Czerner !(status & EXTENT_STATUS_WRITTEN) && 535f7fec032SZheng Liu ext4_find_delalloc_range(inode, map->m_lblk, 536f7fec032SZheng Liu map->m_lblk + map->m_len - 1)) 537f7fec032SZheng Liu status |= EXTENT_STATUS_DELAYED; 538f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, 539f7fec032SZheng Liu map->m_len, map->m_pblk, status); 540f7fec032SZheng Liu if (ret < 0) 541f7fec032SZheng Liu retval = ret; 542f7fec032SZheng Liu } 543729f52c6SZheng Liu if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 5444df3d265SAneesh Kumar K.V up_read((&EXT4_I(inode)->i_data_sem)); 545f5ab0d1fSMingming Cao 546d100eef2SZheng Liu found: 547e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) { 548b8a86845SLukas Czerner ret = check_block_validity(inode, map); 5496fd058f7STheodore Ts'o if (ret != 0) 5506fd058f7STheodore Ts'o return ret; 5516fd058f7STheodore Ts'o } 5526fd058f7STheodore Ts'o 553f5ab0d1fSMingming Cao /* If it is only a block(s) look up */ 554c2177057STheodore Ts'o if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) 5554df3d265SAneesh Kumar K.V return retval; 5564df3d265SAneesh Kumar K.V 5574df3d265SAneesh Kumar K.V /* 558f5ab0d1fSMingming Cao * Returns if the blocks have already allocated 559f5ab0d1fSMingming Cao * 560f5ab0d1fSMingming Cao * Note that if blocks have been preallocated 561df3ab170STao Ma * ext4_ext_get_block() returns the create = 0 562f5ab0d1fSMingming Cao * with buffer head unmapped. 563f5ab0d1fSMingming Cao */ 564e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) 565b8a86845SLukas Czerner /* 566b8a86845SLukas Czerner * If we need to convert extent to unwritten 567b8a86845SLukas Czerner * we continue and do the actual work in 568b8a86845SLukas Czerner * ext4_ext_map_blocks() 569b8a86845SLukas Czerner */ 570b8a86845SLukas Czerner if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN)) 571f5ab0d1fSMingming Cao return retval; 572f5ab0d1fSMingming Cao 573f5ab0d1fSMingming Cao /* 574a25a4e1aSZheng Liu * Here we clear m_flags because after allocating an new extent, 575a25a4e1aSZheng Liu * it will be set again. 5762a8964d6SAneesh Kumar K.V */ 577a25a4e1aSZheng Liu map->m_flags &= ~EXT4_MAP_FLAGS; 5782a8964d6SAneesh Kumar K.V 5792a8964d6SAneesh Kumar K.V /* 580556615dcSLukas Czerner * New blocks allocate and/or writing to unwritten extent 581f5ab0d1fSMingming Cao * will possibly result in updating i_data, so we take 582d91bd2c1SSeunghun Lee * the write lock of i_data_sem, and call get_block() 583f5ab0d1fSMingming Cao * with create == 1 flag. 5844df3d265SAneesh Kumar K.V */ 585c8b459f4SLukas Czerner down_write(&EXT4_I(inode)->i_data_sem); 586d2a17637SMingming Cao 587d2a17637SMingming Cao /* 5884df3d265SAneesh Kumar K.V * We need to check for EXT4 here because migrate 5894df3d265SAneesh Kumar K.V * could have changed the inode type in between 5904df3d265SAneesh Kumar K.V */ 59112e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 592e35fd660STheodore Ts'o retval = ext4_ext_map_blocks(handle, inode, map, flags); 5930e855ac8SAneesh Kumar K.V } else { 594e35fd660STheodore Ts'o retval = ext4_ind_map_blocks(handle, inode, map, flags); 595267e4db9SAneesh Kumar K.V 596e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_NEW) { 597267e4db9SAneesh Kumar K.V /* 598267e4db9SAneesh Kumar K.V * We allocated new blocks which will result in 599267e4db9SAneesh Kumar K.V * i_data's format changing. Force the migrate 600267e4db9SAneesh Kumar K.V * to fail by clearing migrate flags 601267e4db9SAneesh Kumar K.V */ 60219f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE); 603267e4db9SAneesh Kumar K.V } 6042ac3b6e0STheodore Ts'o 605d2a17637SMingming Cao /* 6062ac3b6e0STheodore Ts'o * Update reserved blocks/metadata blocks after successful 6075f634d06SAneesh Kumar K.V * block allocation which had been deferred till now. We don't 6085f634d06SAneesh Kumar K.V * support fallocate for non extent files. So we can update 6095f634d06SAneesh Kumar K.V * reserve space here. 610d2a17637SMingming Cao */ 6115f634d06SAneesh Kumar K.V if ((retval > 0) && 6121296cc85SAneesh Kumar K.V (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)) 6135f634d06SAneesh Kumar K.V ext4_da_update_reserve_space(inode, retval, 1); 6145f634d06SAneesh Kumar K.V } 615d2a17637SMingming Cao 616f7fec032SZheng Liu if (retval > 0) { 6173be78c73STheodore Ts'o unsigned int status; 618f7fec032SZheng Liu 61944fb851dSZheng Liu if (unlikely(retval != map->m_len)) { 62044fb851dSZheng Liu ext4_warning(inode->i_sb, 62144fb851dSZheng Liu "ES len assertion failed for inode " 62244fb851dSZheng Liu "%lu: retval %d != map->m_len %d", 62344fb851dSZheng Liu inode->i_ino, retval, map->m_len); 62444fb851dSZheng Liu WARN_ON(1); 625921f266bSDmitry Monakhov } 626921f266bSDmitry Monakhov 627adb23551SZheng Liu /* 628adb23551SZheng Liu * If the extent has been zeroed out, we don't need to update 629adb23551SZheng Liu * extent status tree. 630adb23551SZheng Liu */ 631adb23551SZheng Liu if ((flags & EXT4_GET_BLOCKS_PRE_IO) && 632adb23551SZheng Liu ext4_es_lookup_extent(inode, map->m_lblk, &es)) { 633adb23551SZheng Liu if (ext4_es_is_written(&es)) 634adb23551SZheng Liu goto has_zeroout; 635adb23551SZheng Liu } 636f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 637f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 638f7fec032SZheng Liu if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) && 639d2dc317dSLukas Czerner !(status & EXTENT_STATUS_WRITTEN) && 640f7fec032SZheng Liu ext4_find_delalloc_range(inode, map->m_lblk, 641f7fec032SZheng Liu map->m_lblk + map->m_len - 1)) 642f7fec032SZheng Liu status |= EXTENT_STATUS_DELAYED; 643f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 644f7fec032SZheng Liu map->m_pblk, status); 64551865fdaSZheng Liu if (ret < 0) 64651865fdaSZheng Liu retval = ret; 64751865fdaSZheng Liu } 6485356f261SAditya Kali 649adb23551SZheng Liu has_zeroout: 6500e855ac8SAneesh Kumar K.V up_write((&EXT4_I(inode)->i_data_sem)); 651e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) { 652b8a86845SLukas Czerner ret = check_block_validity(inode, map); 6536fd058f7STheodore Ts'o if (ret != 0) 6546fd058f7STheodore Ts'o return ret; 6556fd058f7STheodore Ts'o } 6560e855ac8SAneesh Kumar K.V return retval; 6570e855ac8SAneesh Kumar K.V } 6580e855ac8SAneesh Kumar K.V 659923ae0ffSRoss Zwisler static void ext4_end_io_unwritten(struct buffer_head *bh, int uptodate) 660923ae0ffSRoss Zwisler { 661923ae0ffSRoss Zwisler struct inode *inode = bh->b_assoc_map->host; 662923ae0ffSRoss Zwisler /* XXX: breaks on 32-bit > 16GB. Is that even supported? */ 663923ae0ffSRoss Zwisler loff_t offset = (loff_t)(uintptr_t)bh->b_private << inode->i_blkbits; 664923ae0ffSRoss Zwisler int err; 665923ae0ffSRoss Zwisler if (!uptodate) 666923ae0ffSRoss Zwisler return; 667923ae0ffSRoss Zwisler WARN_ON(!buffer_unwritten(bh)); 668923ae0ffSRoss Zwisler err = ext4_convert_unwritten_extents(NULL, inode, offset, bh->b_size); 669923ae0ffSRoss Zwisler } 670923ae0ffSRoss Zwisler 671f3bd1f3fSMingming Cao /* Maximum number of blocks we map for direct IO at once. */ 672f3bd1f3fSMingming Cao #define DIO_MAX_BLOCKS 4096 673f3bd1f3fSMingming Cao 6742ed88685STheodore Ts'o static int _ext4_get_block(struct inode *inode, sector_t iblock, 6752ed88685STheodore Ts'o struct buffer_head *bh, int flags) 676ac27a0ecSDave Kleikamp { 6773e4fdaf8SDmitriy Monakhov handle_t *handle = ext4_journal_current_handle(); 6782ed88685STheodore Ts'o struct ext4_map_blocks map; 6797fb5409dSJan Kara int ret = 0, started = 0; 680f3bd1f3fSMingming Cao int dio_credits; 681ac27a0ecSDave Kleikamp 68246c7f254STao Ma if (ext4_has_inline_data(inode)) 68346c7f254STao Ma return -ERANGE; 68446c7f254STao Ma 6852ed88685STheodore Ts'o map.m_lblk = iblock; 6862ed88685STheodore Ts'o map.m_len = bh->b_size >> inode->i_blkbits; 6872ed88685STheodore Ts'o 6888b0f165fSAnatol Pomozov if (flags && !(flags & EXT4_GET_BLOCKS_NO_LOCK) && !handle) { 6897fb5409dSJan Kara /* Direct IO write... */ 6902ed88685STheodore Ts'o if (map.m_len > DIO_MAX_BLOCKS) 6912ed88685STheodore Ts'o map.m_len = DIO_MAX_BLOCKS; 6922ed88685STheodore Ts'o dio_credits = ext4_chunk_trans_blocks(inode, map.m_len); 6939924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, 6949924a92aSTheodore Ts'o dio_credits); 6957fb5409dSJan Kara if (IS_ERR(handle)) { 696ac27a0ecSDave Kleikamp ret = PTR_ERR(handle); 6972ed88685STheodore Ts'o return ret; 6987fb5409dSJan Kara } 6997fb5409dSJan Kara started = 1; 700ac27a0ecSDave Kleikamp } 701ac27a0ecSDave Kleikamp 7022ed88685STheodore Ts'o ret = ext4_map_blocks(handle, inode, &map, flags); 703ac27a0ecSDave Kleikamp if (ret > 0) { 7047b7a8665SChristoph Hellwig ext4_io_end_t *io_end = ext4_inode_aio(inode); 7057b7a8665SChristoph Hellwig 7062ed88685STheodore Ts'o map_bh(bh, inode->i_sb, map.m_pblk); 7072ed88685STheodore Ts'o bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags; 708923ae0ffSRoss Zwisler if (IS_DAX(inode) && buffer_unwritten(bh) && !io_end) { 709923ae0ffSRoss Zwisler bh->b_assoc_map = inode->i_mapping; 710923ae0ffSRoss Zwisler bh->b_private = (void *)(unsigned long)iblock; 711923ae0ffSRoss Zwisler bh->b_end_io = ext4_end_io_unwritten; 712923ae0ffSRoss Zwisler } 7137b7a8665SChristoph Hellwig if (io_end && io_end->flag & EXT4_IO_END_UNWRITTEN) 7147b7a8665SChristoph Hellwig set_buffer_defer_completion(bh); 7152ed88685STheodore Ts'o bh->b_size = inode->i_sb->s_blocksize * map.m_len; 716ac27a0ecSDave Kleikamp ret = 0; 717ac27a0ecSDave Kleikamp } 7187fb5409dSJan Kara if (started) 7197fb5409dSJan Kara ext4_journal_stop(handle); 720ac27a0ecSDave Kleikamp return ret; 721ac27a0ecSDave Kleikamp } 722ac27a0ecSDave Kleikamp 7232ed88685STheodore Ts'o int ext4_get_block(struct inode *inode, sector_t iblock, 7242ed88685STheodore Ts'o struct buffer_head *bh, int create) 7252ed88685STheodore Ts'o { 7262ed88685STheodore Ts'o return _ext4_get_block(inode, iblock, bh, 7272ed88685STheodore Ts'o create ? EXT4_GET_BLOCKS_CREATE : 0); 7282ed88685STheodore Ts'o } 7292ed88685STheodore Ts'o 730ac27a0ecSDave Kleikamp /* 731ac27a0ecSDave Kleikamp * `handle' can be NULL if create is zero 732ac27a0ecSDave Kleikamp */ 733617ba13bSMingming Cao struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode, 734c5e298aeSTheodore Ts'o ext4_lblk_t block, int map_flags) 735ac27a0ecSDave Kleikamp { 7362ed88685STheodore Ts'o struct ext4_map_blocks map; 7372ed88685STheodore Ts'o struct buffer_head *bh; 738c5e298aeSTheodore Ts'o int create = map_flags & EXT4_GET_BLOCKS_CREATE; 73910560082STheodore Ts'o int err; 740ac27a0ecSDave Kleikamp 741ac27a0ecSDave Kleikamp J_ASSERT(handle != NULL || create == 0); 742ac27a0ecSDave Kleikamp 7432ed88685STheodore Ts'o map.m_lblk = block; 7442ed88685STheodore Ts'o map.m_len = 1; 745c5e298aeSTheodore Ts'o err = ext4_map_blocks(handle, inode, &map, map_flags); 7462ed88685STheodore Ts'o 74710560082STheodore Ts'o if (err == 0) 74810560082STheodore Ts'o return create ? ERR_PTR(-ENOSPC) : NULL; 7492ed88685STheodore Ts'o if (err < 0) 75010560082STheodore Ts'o return ERR_PTR(err); 7512ed88685STheodore Ts'o 7522ed88685STheodore Ts'o bh = sb_getblk(inode->i_sb, map.m_pblk); 75310560082STheodore Ts'o if (unlikely(!bh)) 75410560082STheodore Ts'o return ERR_PTR(-ENOMEM); 7552ed88685STheodore Ts'o if (map.m_flags & EXT4_MAP_NEW) { 756ac27a0ecSDave Kleikamp J_ASSERT(create != 0); 757ac39849dSAneesh Kumar K.V J_ASSERT(handle != NULL); 758ac27a0ecSDave Kleikamp 759ac27a0ecSDave Kleikamp /* 760ac27a0ecSDave Kleikamp * Now that we do not always journal data, we should 761ac27a0ecSDave Kleikamp * keep in mind whether this should always journal the 762ac27a0ecSDave Kleikamp * new buffer as metadata. For now, regular file 763617ba13bSMingming Cao * writes use ext4_get_block instead, so it's not a 764ac27a0ecSDave Kleikamp * problem. 765ac27a0ecSDave Kleikamp */ 766ac27a0ecSDave Kleikamp lock_buffer(bh); 767ac27a0ecSDave Kleikamp BUFFER_TRACE(bh, "call get_create_access"); 76810560082STheodore Ts'o err = ext4_journal_get_create_access(handle, bh); 76910560082STheodore Ts'o if (unlikely(err)) { 77010560082STheodore Ts'o unlock_buffer(bh); 77110560082STheodore Ts'o goto errout; 77210560082STheodore Ts'o } 77310560082STheodore Ts'o if (!buffer_uptodate(bh)) { 774ac27a0ecSDave Kleikamp memset(bh->b_data, 0, inode->i_sb->s_blocksize); 775ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 776ac27a0ecSDave Kleikamp } 777ac27a0ecSDave Kleikamp unlock_buffer(bh); 7780390131bSFrank Mayhar BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); 7790390131bSFrank Mayhar err = ext4_handle_dirty_metadata(handle, inode, bh); 78010560082STheodore Ts'o if (unlikely(err)) 78110560082STheodore Ts'o goto errout; 78210560082STheodore Ts'o } else 783ac27a0ecSDave Kleikamp BUFFER_TRACE(bh, "not a new buffer"); 784ac27a0ecSDave Kleikamp return bh; 78510560082STheodore Ts'o errout: 78610560082STheodore Ts'o brelse(bh); 78710560082STheodore Ts'o return ERR_PTR(err); 788ac27a0ecSDave Kleikamp } 789ac27a0ecSDave Kleikamp 790617ba13bSMingming Cao struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode, 791c5e298aeSTheodore Ts'o ext4_lblk_t block, int map_flags) 792ac27a0ecSDave Kleikamp { 793ac27a0ecSDave Kleikamp struct buffer_head *bh; 794ac27a0ecSDave Kleikamp 795c5e298aeSTheodore Ts'o bh = ext4_getblk(handle, inode, block, map_flags); 7961c215028STheodore Ts'o if (IS_ERR(bh)) 797ac27a0ecSDave Kleikamp return bh; 7981c215028STheodore Ts'o if (!bh || buffer_uptodate(bh)) 799ac27a0ecSDave Kleikamp return bh; 80065299a3bSChristoph Hellwig ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh); 801ac27a0ecSDave Kleikamp wait_on_buffer(bh); 802ac27a0ecSDave Kleikamp if (buffer_uptodate(bh)) 803ac27a0ecSDave Kleikamp return bh; 804ac27a0ecSDave Kleikamp put_bh(bh); 8051c215028STheodore Ts'o return ERR_PTR(-EIO); 806ac27a0ecSDave Kleikamp } 807ac27a0ecSDave Kleikamp 808f19d5870STao Ma int ext4_walk_page_buffers(handle_t *handle, 809ac27a0ecSDave Kleikamp struct buffer_head *head, 810ac27a0ecSDave Kleikamp unsigned from, 811ac27a0ecSDave Kleikamp unsigned to, 812ac27a0ecSDave Kleikamp int *partial, 813ac27a0ecSDave Kleikamp int (*fn)(handle_t *handle, 814ac27a0ecSDave Kleikamp struct buffer_head *bh)) 815ac27a0ecSDave Kleikamp { 816ac27a0ecSDave Kleikamp struct buffer_head *bh; 817ac27a0ecSDave Kleikamp unsigned block_start, block_end; 818ac27a0ecSDave Kleikamp unsigned blocksize = head->b_size; 819ac27a0ecSDave Kleikamp int err, ret = 0; 820ac27a0ecSDave Kleikamp struct buffer_head *next; 821ac27a0ecSDave Kleikamp 822ac27a0ecSDave Kleikamp for (bh = head, block_start = 0; 823ac27a0ecSDave Kleikamp ret == 0 && (bh != head || !block_start); 824de9a55b8STheodore Ts'o block_start = block_end, bh = next) { 825ac27a0ecSDave Kleikamp next = bh->b_this_page; 826ac27a0ecSDave Kleikamp block_end = block_start + blocksize; 827ac27a0ecSDave Kleikamp if (block_end <= from || block_start >= to) { 828ac27a0ecSDave Kleikamp if (partial && !buffer_uptodate(bh)) 829ac27a0ecSDave Kleikamp *partial = 1; 830ac27a0ecSDave Kleikamp continue; 831ac27a0ecSDave Kleikamp } 832ac27a0ecSDave Kleikamp err = (*fn)(handle, bh); 833ac27a0ecSDave Kleikamp if (!ret) 834ac27a0ecSDave Kleikamp ret = err; 835ac27a0ecSDave Kleikamp } 836ac27a0ecSDave Kleikamp return ret; 837ac27a0ecSDave Kleikamp } 838ac27a0ecSDave Kleikamp 839ac27a0ecSDave Kleikamp /* 840ac27a0ecSDave Kleikamp * To preserve ordering, it is essential that the hole instantiation and 841ac27a0ecSDave Kleikamp * the data write be encapsulated in a single transaction. We cannot 842617ba13bSMingming Cao * close off a transaction and start a new one between the ext4_get_block() 843dab291afSMingming Cao * and the commit_write(). So doing the jbd2_journal_start at the start of 844ac27a0ecSDave Kleikamp * prepare_write() is the right place. 845ac27a0ecSDave Kleikamp * 84636ade451SJan Kara * Also, this function can nest inside ext4_writepage(). In that case, we 84736ade451SJan Kara * *know* that ext4_writepage() has generated enough buffer credits to do the 84836ade451SJan Kara * whole page. So we won't block on the journal in that case, which is good, 84936ade451SJan Kara * because the caller may be PF_MEMALLOC. 850ac27a0ecSDave Kleikamp * 851617ba13bSMingming Cao * By accident, ext4 can be reentered when a transaction is open via 852ac27a0ecSDave Kleikamp * quota file writes. If we were to commit the transaction while thus 853ac27a0ecSDave Kleikamp * reentered, there can be a deadlock - we would be holding a quota 854ac27a0ecSDave Kleikamp * lock, and the commit would never complete if another thread had a 855ac27a0ecSDave Kleikamp * transaction open and was blocking on the quota lock - a ranking 856ac27a0ecSDave Kleikamp * violation. 857ac27a0ecSDave Kleikamp * 858dab291afSMingming Cao * So what we do is to rely on the fact that jbd2_journal_stop/journal_start 859ac27a0ecSDave Kleikamp * will _not_ run commit under these circumstances because handle->h_ref 860ac27a0ecSDave Kleikamp * is elevated. We'll still have enough credits for the tiny quotafile 861ac27a0ecSDave Kleikamp * write. 862ac27a0ecSDave Kleikamp */ 863f19d5870STao Ma int do_journal_get_write_access(handle_t *handle, 864ac27a0ecSDave Kleikamp struct buffer_head *bh) 865ac27a0ecSDave Kleikamp { 86656d35a4cSJan Kara int dirty = buffer_dirty(bh); 86756d35a4cSJan Kara int ret; 86856d35a4cSJan Kara 869ac27a0ecSDave Kleikamp if (!buffer_mapped(bh) || buffer_freed(bh)) 870ac27a0ecSDave Kleikamp return 0; 87156d35a4cSJan Kara /* 872ebdec241SChristoph Hellwig * __block_write_begin() could have dirtied some buffers. Clean 87356d35a4cSJan Kara * the dirty bit as jbd2_journal_get_write_access() could complain 87456d35a4cSJan Kara * otherwise about fs integrity issues. Setting of the dirty bit 875ebdec241SChristoph Hellwig * by __block_write_begin() isn't a real problem here as we clear 87656d35a4cSJan Kara * the bit before releasing a page lock and thus writeback cannot 87756d35a4cSJan Kara * ever write the buffer. 87856d35a4cSJan Kara */ 87956d35a4cSJan Kara if (dirty) 88056d35a4cSJan Kara clear_buffer_dirty(bh); 8815d601255Sliang xie BUFFER_TRACE(bh, "get write access"); 88256d35a4cSJan Kara ret = ext4_journal_get_write_access(handle, bh); 88356d35a4cSJan Kara if (!ret && dirty) 88456d35a4cSJan Kara ret = ext4_handle_dirty_metadata(handle, NULL, bh); 88556d35a4cSJan Kara return ret; 886ac27a0ecSDave Kleikamp } 887ac27a0ecSDave Kleikamp 8888b0f165fSAnatol Pomozov static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock, 8898b0f165fSAnatol Pomozov struct buffer_head *bh_result, int create); 8902058f83aSMichael Halcrow 8912058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION 8922058f83aSMichael Halcrow static int ext4_block_write_begin(struct page *page, loff_t pos, unsigned len, 8932058f83aSMichael Halcrow get_block_t *get_block) 8942058f83aSMichael Halcrow { 8952058f83aSMichael Halcrow unsigned from = pos & (PAGE_CACHE_SIZE - 1); 8962058f83aSMichael Halcrow unsigned to = from + len; 8972058f83aSMichael Halcrow struct inode *inode = page->mapping->host; 8982058f83aSMichael Halcrow unsigned block_start, block_end; 8992058f83aSMichael Halcrow sector_t block; 9002058f83aSMichael Halcrow int err = 0; 9012058f83aSMichael Halcrow unsigned blocksize = inode->i_sb->s_blocksize; 9022058f83aSMichael Halcrow unsigned bbits; 9032058f83aSMichael Halcrow struct buffer_head *bh, *head, *wait[2], **wait_bh = wait; 9042058f83aSMichael Halcrow bool decrypt = false; 9052058f83aSMichael Halcrow 9062058f83aSMichael Halcrow BUG_ON(!PageLocked(page)); 9072058f83aSMichael Halcrow BUG_ON(from > PAGE_CACHE_SIZE); 9082058f83aSMichael Halcrow BUG_ON(to > PAGE_CACHE_SIZE); 9092058f83aSMichael Halcrow BUG_ON(from > to); 9102058f83aSMichael Halcrow 9112058f83aSMichael Halcrow if (!page_has_buffers(page)) 9122058f83aSMichael Halcrow create_empty_buffers(page, blocksize, 0); 9132058f83aSMichael Halcrow head = page_buffers(page); 9142058f83aSMichael Halcrow bbits = ilog2(blocksize); 9152058f83aSMichael Halcrow block = (sector_t)page->index << (PAGE_CACHE_SHIFT - bbits); 9162058f83aSMichael Halcrow 9172058f83aSMichael Halcrow for (bh = head, block_start = 0; bh != head || !block_start; 9182058f83aSMichael Halcrow block++, block_start = block_end, bh = bh->b_this_page) { 9192058f83aSMichael Halcrow block_end = block_start + blocksize; 9202058f83aSMichael Halcrow if (block_end <= from || block_start >= to) { 9212058f83aSMichael Halcrow if (PageUptodate(page)) { 9222058f83aSMichael Halcrow if (!buffer_uptodate(bh)) 9232058f83aSMichael Halcrow set_buffer_uptodate(bh); 9242058f83aSMichael Halcrow } 9252058f83aSMichael Halcrow continue; 9262058f83aSMichael Halcrow } 9272058f83aSMichael Halcrow if (buffer_new(bh)) 9282058f83aSMichael Halcrow clear_buffer_new(bh); 9292058f83aSMichael Halcrow if (!buffer_mapped(bh)) { 9302058f83aSMichael Halcrow WARN_ON(bh->b_size != blocksize); 9312058f83aSMichael Halcrow err = get_block(inode, block, bh, 1); 9322058f83aSMichael Halcrow if (err) 9332058f83aSMichael Halcrow break; 9342058f83aSMichael Halcrow if (buffer_new(bh)) { 9352058f83aSMichael Halcrow unmap_underlying_metadata(bh->b_bdev, 9362058f83aSMichael Halcrow bh->b_blocknr); 9372058f83aSMichael Halcrow if (PageUptodate(page)) { 9382058f83aSMichael Halcrow clear_buffer_new(bh); 9392058f83aSMichael Halcrow set_buffer_uptodate(bh); 9402058f83aSMichael Halcrow mark_buffer_dirty(bh); 9412058f83aSMichael Halcrow continue; 9422058f83aSMichael Halcrow } 9432058f83aSMichael Halcrow if (block_end > to || block_start < from) 9442058f83aSMichael Halcrow zero_user_segments(page, to, block_end, 9452058f83aSMichael Halcrow block_start, from); 9462058f83aSMichael Halcrow continue; 9472058f83aSMichael Halcrow } 9482058f83aSMichael Halcrow } 9492058f83aSMichael Halcrow if (PageUptodate(page)) { 9502058f83aSMichael Halcrow if (!buffer_uptodate(bh)) 9512058f83aSMichael Halcrow set_buffer_uptodate(bh); 9522058f83aSMichael Halcrow continue; 9532058f83aSMichael Halcrow } 9542058f83aSMichael Halcrow if (!buffer_uptodate(bh) && !buffer_delay(bh) && 9552058f83aSMichael Halcrow !buffer_unwritten(bh) && 9562058f83aSMichael Halcrow (block_start < from || block_end > to)) { 9572058f83aSMichael Halcrow ll_rw_block(READ, 1, &bh); 9582058f83aSMichael Halcrow *wait_bh++ = bh; 9592058f83aSMichael Halcrow decrypt = ext4_encrypted_inode(inode) && 9602058f83aSMichael Halcrow S_ISREG(inode->i_mode); 9612058f83aSMichael Halcrow } 9622058f83aSMichael Halcrow } 9632058f83aSMichael Halcrow /* 9642058f83aSMichael Halcrow * If we issued read requests, let them complete. 9652058f83aSMichael Halcrow */ 9662058f83aSMichael Halcrow while (wait_bh > wait) { 9672058f83aSMichael Halcrow wait_on_buffer(*--wait_bh); 9682058f83aSMichael Halcrow if (!buffer_uptodate(*wait_bh)) 9692058f83aSMichael Halcrow err = -EIO; 9702058f83aSMichael Halcrow } 9712058f83aSMichael Halcrow if (unlikely(err)) 9722058f83aSMichael Halcrow page_zero_new_buffers(page, from, to); 9732058f83aSMichael Halcrow else if (decrypt) 9742058f83aSMichael Halcrow err = ext4_decrypt_one(inode, page); 9752058f83aSMichael Halcrow return err; 9762058f83aSMichael Halcrow } 9772058f83aSMichael Halcrow #endif 9782058f83aSMichael Halcrow 979bfc1af65SNick Piggin static int ext4_write_begin(struct file *file, struct address_space *mapping, 980bfc1af65SNick Piggin loff_t pos, unsigned len, unsigned flags, 981bfc1af65SNick Piggin struct page **pagep, void **fsdata) 982ac27a0ecSDave Kleikamp { 983bfc1af65SNick Piggin struct inode *inode = mapping->host; 9841938a150SAneesh Kumar K.V int ret, needed_blocks; 985ac27a0ecSDave Kleikamp handle_t *handle; 986ac27a0ecSDave Kleikamp int retries = 0; 987bfc1af65SNick Piggin struct page *page; 988bfc1af65SNick Piggin pgoff_t index; 989bfc1af65SNick Piggin unsigned from, to; 990bfc1af65SNick Piggin 9919bffad1eSTheodore Ts'o trace_ext4_write_begin(inode, pos, len, flags); 9921938a150SAneesh Kumar K.V /* 9931938a150SAneesh Kumar K.V * Reserve one block more for addition to orphan list in case 9941938a150SAneesh Kumar K.V * we allocate blocks but write fails for some reason 9951938a150SAneesh Kumar K.V */ 9961938a150SAneesh Kumar K.V needed_blocks = ext4_writepage_trans_blocks(inode) + 1; 997bfc1af65SNick Piggin index = pos >> PAGE_CACHE_SHIFT; 998bfc1af65SNick Piggin from = pos & (PAGE_CACHE_SIZE - 1); 999bfc1af65SNick Piggin to = from + len; 1000ac27a0ecSDave Kleikamp 1001f19d5870STao Ma if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) { 1002f19d5870STao Ma ret = ext4_try_to_write_inline_data(mapping, inode, pos, len, 1003f19d5870STao Ma flags, pagep); 1004f19d5870STao Ma if (ret < 0) 100547564bfbSTheodore Ts'o return ret; 100647564bfbSTheodore Ts'o if (ret == 1) 100747564bfbSTheodore Ts'o return 0; 1008f19d5870STao Ma } 1009f19d5870STao Ma 101047564bfbSTheodore Ts'o /* 101147564bfbSTheodore Ts'o * grab_cache_page_write_begin() can take a long time if the 101247564bfbSTheodore Ts'o * system is thrashing due to memory pressure, or if the page 101347564bfbSTheodore Ts'o * is being written back. So grab it first before we start 101447564bfbSTheodore Ts'o * the transaction handle. This also allows us to allocate 101547564bfbSTheodore Ts'o * the page (if needed) without using GFP_NOFS. 101647564bfbSTheodore Ts'o */ 101747564bfbSTheodore Ts'o retry_grab: 101854566b2cSNick Piggin page = grab_cache_page_write_begin(mapping, index, flags); 101947564bfbSTheodore Ts'o if (!page) 102047564bfbSTheodore Ts'o return -ENOMEM; 102147564bfbSTheodore Ts'o unlock_page(page); 102247564bfbSTheodore Ts'o 102347564bfbSTheodore Ts'o retry_journal: 10249924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks); 1025ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 102647564bfbSTheodore Ts'o page_cache_release(page); 102747564bfbSTheodore Ts'o return PTR_ERR(handle); 1028cf108bcaSJan Kara } 1029f19d5870STao Ma 103047564bfbSTheodore Ts'o lock_page(page); 103147564bfbSTheodore Ts'o if (page->mapping != mapping) { 103247564bfbSTheodore Ts'o /* The page got truncated from under us */ 103347564bfbSTheodore Ts'o unlock_page(page); 103447564bfbSTheodore Ts'o page_cache_release(page); 1035cf108bcaSJan Kara ext4_journal_stop(handle); 103647564bfbSTheodore Ts'o goto retry_grab; 1037cf108bcaSJan Kara } 10387afe5aa5SDmitry Monakhov /* In case writeback began while the page was unlocked */ 10397afe5aa5SDmitry Monakhov wait_for_stable_page(page); 1040cf108bcaSJan Kara 10412058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION 10422058f83aSMichael Halcrow if (ext4_should_dioread_nolock(inode)) 10432058f83aSMichael Halcrow ret = ext4_block_write_begin(page, pos, len, 10442058f83aSMichael Halcrow ext4_get_block_write); 10452058f83aSMichael Halcrow else 10462058f83aSMichael Halcrow ret = ext4_block_write_begin(page, pos, len, 10472058f83aSMichael Halcrow ext4_get_block); 10482058f83aSMichael Halcrow #else 1049744692dcSJiaying Zhang if (ext4_should_dioread_nolock(inode)) 10506e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_get_block_write); 1051744692dcSJiaying Zhang else 10526e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_get_block); 10532058f83aSMichael Halcrow #endif 1054bfc1af65SNick Piggin if (!ret && ext4_should_journal_data(inode)) { 1055f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_buffers(page), 1056f19d5870STao Ma from, to, NULL, 1057f19d5870STao Ma do_journal_get_write_access); 1058b46be050SAndrey Savochkin } 1059bfc1af65SNick Piggin 1060bfc1af65SNick Piggin if (ret) { 1061bfc1af65SNick Piggin unlock_page(page); 1062ae4d5372SAneesh Kumar K.V /* 10636e1db88dSChristoph Hellwig * __block_write_begin may have instantiated a few blocks 1064ae4d5372SAneesh Kumar K.V * outside i_size. Trim these off again. Don't need 1065ae4d5372SAneesh Kumar K.V * i_size_read because we hold i_mutex. 10661938a150SAneesh Kumar K.V * 10671938a150SAneesh Kumar K.V * Add inode to orphan list in case we crash before 10681938a150SAneesh Kumar K.V * truncate finishes 1069ae4d5372SAneesh Kumar K.V */ 1070ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 10711938a150SAneesh Kumar K.V ext4_orphan_add(handle, inode); 10721938a150SAneesh Kumar K.V 10731938a150SAneesh Kumar K.V ext4_journal_stop(handle); 10741938a150SAneesh Kumar K.V if (pos + len > inode->i_size) { 1075b9a4207dSJan Kara ext4_truncate_failed_write(inode); 10761938a150SAneesh Kumar K.V /* 1077ffacfa7aSJan Kara * If truncate failed early the inode might 10781938a150SAneesh Kumar K.V * still be on the orphan list; we need to 10791938a150SAneesh Kumar K.V * make sure the inode is removed from the 10801938a150SAneesh Kumar K.V * orphan list in that case. 10811938a150SAneesh Kumar K.V */ 10821938a150SAneesh Kumar K.V if (inode->i_nlink) 10831938a150SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 10841938a150SAneesh Kumar K.V } 1085bfc1af65SNick Piggin 108647564bfbSTheodore Ts'o if (ret == -ENOSPC && 108747564bfbSTheodore Ts'o ext4_should_retry_alloc(inode->i_sb, &retries)) 108847564bfbSTheodore Ts'o goto retry_journal; 108947564bfbSTheodore Ts'o page_cache_release(page); 109047564bfbSTheodore Ts'o return ret; 109147564bfbSTheodore Ts'o } 109247564bfbSTheodore Ts'o *pagep = page; 1093ac27a0ecSDave Kleikamp return ret; 1094ac27a0ecSDave Kleikamp } 1095ac27a0ecSDave Kleikamp 1096bfc1af65SNick Piggin /* For write_end() in data=journal mode */ 1097bfc1af65SNick Piggin static int write_end_fn(handle_t *handle, struct buffer_head *bh) 1098ac27a0ecSDave Kleikamp { 109913fca323STheodore Ts'o int ret; 1100ac27a0ecSDave Kleikamp if (!buffer_mapped(bh) || buffer_freed(bh)) 1101ac27a0ecSDave Kleikamp return 0; 1102ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 110313fca323STheodore Ts'o ret = ext4_handle_dirty_metadata(handle, NULL, bh); 110413fca323STheodore Ts'o clear_buffer_meta(bh); 110513fca323STheodore Ts'o clear_buffer_prio(bh); 110613fca323STheodore Ts'o return ret; 1107ac27a0ecSDave Kleikamp } 1108ac27a0ecSDave Kleikamp 1109eed4333fSZheng Liu /* 1110eed4333fSZheng Liu * We need to pick up the new inode size which generic_commit_write gave us 1111eed4333fSZheng Liu * `file' can be NULL - eg, when called from page_symlink(). 1112eed4333fSZheng Liu * 1113eed4333fSZheng Liu * ext4 never places buffers on inode->i_mapping->private_list. metadata 1114eed4333fSZheng Liu * buffers are managed internally. 1115eed4333fSZheng Liu */ 1116eed4333fSZheng Liu static int ext4_write_end(struct file *file, 1117f8514083SAneesh Kumar K.V struct address_space *mapping, 1118f8514083SAneesh Kumar K.V loff_t pos, unsigned len, unsigned copied, 1119f8514083SAneesh Kumar K.V struct page *page, void *fsdata) 1120f8514083SAneesh Kumar K.V { 1121f8514083SAneesh Kumar K.V handle_t *handle = ext4_journal_current_handle(); 1122eed4333fSZheng Liu struct inode *inode = mapping->host; 11230572639fSXiaoguang Wang loff_t old_size = inode->i_size; 1124eed4333fSZheng Liu int ret = 0, ret2; 1125eed4333fSZheng Liu int i_size_changed = 0; 1126eed4333fSZheng Liu 1127eed4333fSZheng Liu trace_ext4_write_end(inode, pos, len, copied); 1128eed4333fSZheng Liu if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) { 1129eed4333fSZheng Liu ret = ext4_jbd2_file_inode(handle, inode); 1130eed4333fSZheng Liu if (ret) { 1131eed4333fSZheng Liu unlock_page(page); 1132eed4333fSZheng Liu page_cache_release(page); 1133eed4333fSZheng Liu goto errout; 1134eed4333fSZheng Liu } 1135eed4333fSZheng Liu } 1136f8514083SAneesh Kumar K.V 113742c832deSTheodore Ts'o if (ext4_has_inline_data(inode)) { 113842c832deSTheodore Ts'o ret = ext4_write_inline_data_end(inode, pos, len, 1139f19d5870STao Ma copied, page); 114042c832deSTheodore Ts'o if (ret < 0) 114142c832deSTheodore Ts'o goto errout; 114242c832deSTheodore Ts'o copied = ret; 114342c832deSTheodore Ts'o } else 1144f19d5870STao Ma copied = block_write_end(file, mapping, pos, 1145f19d5870STao Ma len, copied, page, fsdata); 1146f8514083SAneesh Kumar K.V /* 11474631dbf6SDmitry Monakhov * it's important to update i_size while still holding page lock: 1148f8514083SAneesh Kumar K.V * page writeout could otherwise come in and zero beyond i_size. 1149f8514083SAneesh Kumar K.V */ 11504631dbf6SDmitry Monakhov i_size_changed = ext4_update_inode_size(inode, pos + copied); 1151f8514083SAneesh Kumar K.V unlock_page(page); 1152f8514083SAneesh Kumar K.V page_cache_release(page); 1153f8514083SAneesh Kumar K.V 11540572639fSXiaoguang Wang if (old_size < pos) 11550572639fSXiaoguang Wang pagecache_isize_extended(inode, old_size, pos); 1156f8514083SAneesh Kumar K.V /* 1157f8514083SAneesh Kumar K.V * Don't mark the inode dirty under page lock. First, it unnecessarily 1158f8514083SAneesh Kumar K.V * makes the holding time of page lock longer. Second, it forces lock 1159f8514083SAneesh Kumar K.V * ordering of page lock and transaction start for journaling 1160f8514083SAneesh Kumar K.V * filesystems. 1161f8514083SAneesh Kumar K.V */ 1162f8514083SAneesh Kumar K.V if (i_size_changed) 1163f8514083SAneesh Kumar K.V ext4_mark_inode_dirty(handle, inode); 1164f8514083SAneesh Kumar K.V 1165ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 1166f8514083SAneesh Kumar K.V /* if we have allocated more blocks and copied 1167f8514083SAneesh Kumar K.V * less. We will have blocks allocated outside 1168f8514083SAneesh Kumar K.V * inode->i_size. So truncate them 1169f8514083SAneesh Kumar K.V */ 1170f8514083SAneesh Kumar K.V ext4_orphan_add(handle, inode); 117174d553aaSTheodore Ts'o errout: 1172617ba13bSMingming Cao ret2 = ext4_journal_stop(handle); 1173ac27a0ecSDave Kleikamp if (!ret) 1174ac27a0ecSDave Kleikamp ret = ret2; 1175bfc1af65SNick Piggin 1176f8514083SAneesh Kumar K.V if (pos + len > inode->i_size) { 1177b9a4207dSJan Kara ext4_truncate_failed_write(inode); 1178f8514083SAneesh Kumar K.V /* 1179ffacfa7aSJan Kara * If truncate failed early the inode might still be 1180f8514083SAneesh Kumar K.V * on the orphan list; we need to make sure the inode 1181f8514083SAneesh Kumar K.V * is removed from the orphan list in that case. 1182f8514083SAneesh Kumar K.V */ 1183f8514083SAneesh Kumar K.V if (inode->i_nlink) 1184f8514083SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 1185f8514083SAneesh Kumar K.V } 1186f8514083SAneesh Kumar K.V 1187bfc1af65SNick Piggin return ret ? ret : copied; 1188ac27a0ecSDave Kleikamp } 1189ac27a0ecSDave Kleikamp 1190bfc1af65SNick Piggin static int ext4_journalled_write_end(struct file *file, 1191bfc1af65SNick Piggin struct address_space *mapping, 1192bfc1af65SNick Piggin loff_t pos, unsigned len, unsigned copied, 1193bfc1af65SNick Piggin struct page *page, void *fsdata) 1194ac27a0ecSDave Kleikamp { 1195617ba13bSMingming Cao handle_t *handle = ext4_journal_current_handle(); 1196bfc1af65SNick Piggin struct inode *inode = mapping->host; 11970572639fSXiaoguang Wang loff_t old_size = inode->i_size; 1198ac27a0ecSDave Kleikamp int ret = 0, ret2; 1199ac27a0ecSDave Kleikamp int partial = 0; 1200bfc1af65SNick Piggin unsigned from, to; 12014631dbf6SDmitry Monakhov int size_changed = 0; 1202ac27a0ecSDave Kleikamp 12039bffad1eSTheodore Ts'o trace_ext4_journalled_write_end(inode, pos, len, copied); 1204bfc1af65SNick Piggin from = pos & (PAGE_CACHE_SIZE - 1); 1205bfc1af65SNick Piggin to = from + len; 1206bfc1af65SNick Piggin 1207441c8508SCurt Wohlgemuth BUG_ON(!ext4_handle_valid(handle)); 1208441c8508SCurt Wohlgemuth 12093fdcfb66STao Ma if (ext4_has_inline_data(inode)) 12103fdcfb66STao Ma copied = ext4_write_inline_data_end(inode, pos, len, 12113fdcfb66STao Ma copied, page); 12123fdcfb66STao Ma else { 1213bfc1af65SNick Piggin if (copied < len) { 1214bfc1af65SNick Piggin if (!PageUptodate(page)) 1215bfc1af65SNick Piggin copied = 0; 1216bfc1af65SNick Piggin page_zero_new_buffers(page, from+copied, to); 1217bfc1af65SNick Piggin } 1218ac27a0ecSDave Kleikamp 1219f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_buffers(page), from, 1220bfc1af65SNick Piggin to, &partial, write_end_fn); 1221ac27a0ecSDave Kleikamp if (!partial) 1222ac27a0ecSDave Kleikamp SetPageUptodate(page); 12233fdcfb66STao Ma } 12244631dbf6SDmitry Monakhov size_changed = ext4_update_inode_size(inode, pos + copied); 122519f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_JDATA); 12262d859db3SJan Kara EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid; 12274631dbf6SDmitry Monakhov unlock_page(page); 12284631dbf6SDmitry Monakhov page_cache_release(page); 12294631dbf6SDmitry Monakhov 12300572639fSXiaoguang Wang if (old_size < pos) 12310572639fSXiaoguang Wang pagecache_isize_extended(inode, old_size, pos); 12320572639fSXiaoguang Wang 12334631dbf6SDmitry Monakhov if (size_changed) { 1234617ba13bSMingming Cao ret2 = ext4_mark_inode_dirty(handle, inode); 1235ac27a0ecSDave Kleikamp if (!ret) 1236ac27a0ecSDave Kleikamp ret = ret2; 1237ac27a0ecSDave Kleikamp } 1238bfc1af65SNick Piggin 1239ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 1240f8514083SAneesh Kumar K.V /* if we have allocated more blocks and copied 1241f8514083SAneesh Kumar K.V * less. We will have blocks allocated outside 1242f8514083SAneesh Kumar K.V * inode->i_size. So truncate them 1243f8514083SAneesh Kumar K.V */ 1244f8514083SAneesh Kumar K.V ext4_orphan_add(handle, inode); 1245f8514083SAneesh Kumar K.V 1246617ba13bSMingming Cao ret2 = ext4_journal_stop(handle); 1247ac27a0ecSDave Kleikamp if (!ret) 1248ac27a0ecSDave Kleikamp ret = ret2; 1249f8514083SAneesh Kumar K.V if (pos + len > inode->i_size) { 1250b9a4207dSJan Kara ext4_truncate_failed_write(inode); 1251f8514083SAneesh Kumar K.V /* 1252ffacfa7aSJan Kara * If truncate failed early the inode might still be 1253f8514083SAneesh Kumar K.V * on the orphan list; we need to make sure the inode 1254f8514083SAneesh Kumar K.V * is removed from the orphan list in that case. 1255f8514083SAneesh Kumar K.V */ 1256f8514083SAneesh Kumar K.V if (inode->i_nlink) 1257f8514083SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 1258f8514083SAneesh Kumar K.V } 1259bfc1af65SNick Piggin 1260bfc1af65SNick Piggin return ret ? ret : copied; 1261ac27a0ecSDave Kleikamp } 1262d2a17637SMingming Cao 12639d0be502STheodore Ts'o /* 1264c27e43a1SEric Whitney * Reserve space for a single cluster 12659d0be502STheodore Ts'o */ 1266c27e43a1SEric Whitney static int ext4_da_reserve_space(struct inode *inode) 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); 12705dd4056dSChristoph Hellwig int ret; 1271d2a17637SMingming Cao 127260e58e0fSMingming Cao /* 127372b8ab9dSEric Sandeen * We will charge metadata quota at writeout time; this saves 127472b8ab9dSEric Sandeen * us from metadata over-estimation, though we may go over by 127572b8ab9dSEric Sandeen * a small amount in the end. Here we just reserve for data. 127660e58e0fSMingming Cao */ 12777b415bf6SAditya Kali ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1)); 12785dd4056dSChristoph Hellwig if (ret) 12795dd4056dSChristoph Hellwig return ret; 128003179fe9STheodore Ts'o 128103179fe9STheodore Ts'o spin_lock(&ei->i_block_reservation_lock); 128271d4f7d0STheodore Ts'o if (ext4_claim_free_clusters(sbi, 1, 0)) { 128303179fe9STheodore Ts'o spin_unlock(&ei->i_block_reservation_lock); 128403179fe9STheodore Ts'o dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1)); 1285d2a17637SMingming Cao return -ENOSPC; 1286d2a17637SMingming Cao } 12879d0be502STheodore Ts'o ei->i_reserved_data_blocks++; 1288c27e43a1SEric Whitney trace_ext4_da_reserve_space(inode); 12890637c6f4STheodore Ts'o spin_unlock(&ei->i_block_reservation_lock); 129039bc680aSDmitry Monakhov 1291d2a17637SMingming Cao return 0; /* success */ 1292d2a17637SMingming Cao } 1293d2a17637SMingming Cao 129412219aeaSAneesh Kumar K.V static void ext4_da_release_space(struct inode *inode, int to_free) 1295d2a17637SMingming Cao { 1296d2a17637SMingming Cao struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 12970637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 1298d2a17637SMingming Cao 1299cd213226SMingming Cao if (!to_free) 1300cd213226SMingming Cao return; /* Nothing to release, exit */ 1301cd213226SMingming Cao 1302d2a17637SMingming Cao spin_lock(&EXT4_I(inode)->i_block_reservation_lock); 1303cd213226SMingming Cao 13045a58ec87SLi Zefan trace_ext4_da_release_space(inode, to_free); 13050637c6f4STheodore Ts'o if (unlikely(to_free > ei->i_reserved_data_blocks)) { 1306cd213226SMingming Cao /* 13070637c6f4STheodore Ts'o * if there aren't enough reserved blocks, then the 13080637c6f4STheodore Ts'o * counter is messed up somewhere. Since this 13090637c6f4STheodore Ts'o * function is called from invalidate page, it's 13100637c6f4STheodore Ts'o * harmless to return without any action. 1311cd213226SMingming Cao */ 13128de5c325STheodore Ts'o ext4_warning(inode->i_sb, "ext4_da_release_space: " 13130637c6f4STheodore Ts'o "ino %lu, to_free %d with only %d reserved " 13141084f252STheodore Ts'o "data blocks", inode->i_ino, to_free, 13150637c6f4STheodore Ts'o ei->i_reserved_data_blocks); 13160637c6f4STheodore Ts'o WARN_ON(1); 13170637c6f4STheodore Ts'o to_free = ei->i_reserved_data_blocks; 13180637c6f4STheodore Ts'o } 13190637c6f4STheodore Ts'o ei->i_reserved_data_blocks -= to_free; 13200637c6f4STheodore Ts'o 132172b8ab9dSEric Sandeen /* update fs dirty data blocks counter */ 132257042651STheodore Ts'o percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free); 1323d2a17637SMingming Cao 1324d2a17637SMingming Cao spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); 132560e58e0fSMingming Cao 13267b415bf6SAditya Kali dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free)); 1327d2a17637SMingming Cao } 1328d2a17637SMingming Cao 1329d2a17637SMingming Cao static void ext4_da_page_release_reservation(struct page *page, 1330ca99fdd2SLukas Czerner unsigned int offset, 1331ca99fdd2SLukas Czerner unsigned int length) 1332d2a17637SMingming Cao { 1333d2a17637SMingming Cao int to_release = 0; 1334d2a17637SMingming Cao struct buffer_head *head, *bh; 1335d2a17637SMingming Cao unsigned int curr_off = 0; 13367b415bf6SAditya Kali struct inode *inode = page->mapping->host; 13377b415bf6SAditya Kali struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 1338ca99fdd2SLukas Czerner unsigned int stop = offset + length; 13397b415bf6SAditya Kali int num_clusters; 134051865fdaSZheng Liu ext4_fsblk_t lblk; 1341d2a17637SMingming Cao 1342ca99fdd2SLukas Czerner BUG_ON(stop > PAGE_CACHE_SIZE || stop < length); 1343ca99fdd2SLukas Czerner 1344d2a17637SMingming Cao head = page_buffers(page); 1345d2a17637SMingming Cao bh = head; 1346d2a17637SMingming Cao do { 1347d2a17637SMingming Cao unsigned int next_off = curr_off + bh->b_size; 1348d2a17637SMingming Cao 1349ca99fdd2SLukas Czerner if (next_off > stop) 1350ca99fdd2SLukas Czerner break; 1351ca99fdd2SLukas Czerner 1352d2a17637SMingming Cao if ((offset <= curr_off) && (buffer_delay(bh))) { 1353d2a17637SMingming Cao to_release++; 1354d2a17637SMingming Cao clear_buffer_delay(bh); 1355d2a17637SMingming Cao } 1356d2a17637SMingming Cao curr_off = next_off; 1357d2a17637SMingming Cao } while ((bh = bh->b_this_page) != head); 13587b415bf6SAditya Kali 135951865fdaSZheng Liu if (to_release) { 136051865fdaSZheng Liu lblk = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits); 136151865fdaSZheng Liu ext4_es_remove_extent(inode, lblk, to_release); 136251865fdaSZheng Liu } 136351865fdaSZheng Liu 13647b415bf6SAditya Kali /* If we have released all the blocks belonging to a cluster, then we 13657b415bf6SAditya Kali * need to release the reserved space for that cluster. */ 13667b415bf6SAditya Kali num_clusters = EXT4_NUM_B2C(sbi, to_release); 13677b415bf6SAditya Kali while (num_clusters > 0) { 13687b415bf6SAditya Kali lblk = (page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits)) + 13697b415bf6SAditya Kali ((num_clusters - 1) << sbi->s_cluster_bits); 13707b415bf6SAditya Kali if (sbi->s_cluster_ratio == 1 || 13717d1b1fbcSZheng Liu !ext4_find_delalloc_cluster(inode, lblk)) 13727b415bf6SAditya Kali ext4_da_release_space(inode, 1); 13737b415bf6SAditya Kali 13747b415bf6SAditya Kali num_clusters--; 13757b415bf6SAditya Kali } 1376d2a17637SMingming Cao } 1377ac27a0ecSDave Kleikamp 1378ac27a0ecSDave Kleikamp /* 137964769240SAlex Tomas * Delayed allocation stuff 138064769240SAlex Tomas */ 138164769240SAlex Tomas 13824e7ea81dSJan Kara struct mpage_da_data { 13834e7ea81dSJan Kara struct inode *inode; 13844e7ea81dSJan Kara struct writeback_control *wbc; 13856b523df4SJan Kara 13864e7ea81dSJan Kara pgoff_t first_page; /* The first page to write */ 13874e7ea81dSJan Kara pgoff_t next_page; /* Current page to examine */ 13884e7ea81dSJan Kara pgoff_t last_page; /* Last page to examine */ 138964769240SAlex Tomas /* 13904e7ea81dSJan Kara * Extent to map - this can be after first_page because that can be 13914e7ea81dSJan Kara * fully mapped. We somewhat abuse m_flags to store whether the extent 13924e7ea81dSJan Kara * is delalloc or unwritten. 139364769240SAlex Tomas */ 13944e7ea81dSJan Kara struct ext4_map_blocks map; 13954e7ea81dSJan Kara struct ext4_io_submit io_submit; /* IO submission data */ 13964e7ea81dSJan Kara }; 139764769240SAlex Tomas 13984e7ea81dSJan Kara static void mpage_release_unused_pages(struct mpage_da_data *mpd, 13994e7ea81dSJan Kara bool invalidate) 1400c4a0c46eSAneesh Kumar K.V { 1401c4a0c46eSAneesh Kumar K.V int nr_pages, i; 1402c4a0c46eSAneesh Kumar K.V pgoff_t index, end; 1403c4a0c46eSAneesh Kumar K.V struct pagevec pvec; 1404c4a0c46eSAneesh Kumar K.V struct inode *inode = mpd->inode; 1405c4a0c46eSAneesh Kumar K.V struct address_space *mapping = inode->i_mapping; 14064e7ea81dSJan Kara 14074e7ea81dSJan Kara /* This is necessary when next_page == 0. */ 14084e7ea81dSJan Kara if (mpd->first_page >= mpd->next_page) 14094e7ea81dSJan Kara return; 1410c4a0c46eSAneesh Kumar K.V 1411c7f5938aSCurt Wohlgemuth index = mpd->first_page; 1412c7f5938aSCurt Wohlgemuth end = mpd->next_page - 1; 14134e7ea81dSJan Kara if (invalidate) { 14144e7ea81dSJan Kara ext4_lblk_t start, last; 141551865fdaSZheng Liu start = index << (PAGE_CACHE_SHIFT - inode->i_blkbits); 141651865fdaSZheng Liu last = end << (PAGE_CACHE_SHIFT - inode->i_blkbits); 141751865fdaSZheng Liu ext4_es_remove_extent(inode, start, last - start + 1); 14184e7ea81dSJan Kara } 141951865fdaSZheng Liu 142066bea92cSEric Sandeen pagevec_init(&pvec, 0); 1421c4a0c46eSAneesh Kumar K.V while (index <= end) { 1422c4a0c46eSAneesh Kumar K.V nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE); 1423c4a0c46eSAneesh Kumar K.V if (nr_pages == 0) 1424c4a0c46eSAneesh Kumar K.V break; 1425c4a0c46eSAneesh Kumar K.V for (i = 0; i < nr_pages; i++) { 1426c4a0c46eSAneesh Kumar K.V struct page *page = pvec.pages[i]; 14279b1d0998SJan Kara if (page->index > end) 1428c4a0c46eSAneesh Kumar K.V break; 1429c4a0c46eSAneesh Kumar K.V BUG_ON(!PageLocked(page)); 1430c4a0c46eSAneesh Kumar K.V BUG_ON(PageWriteback(page)); 14314e7ea81dSJan Kara if (invalidate) { 1432d47992f8SLukas Czerner block_invalidatepage(page, 0, PAGE_CACHE_SIZE); 1433c4a0c46eSAneesh Kumar K.V ClearPageUptodate(page); 14344e7ea81dSJan Kara } 1435c4a0c46eSAneesh Kumar K.V unlock_page(page); 1436c4a0c46eSAneesh Kumar K.V } 14379b1d0998SJan Kara index = pvec.pages[nr_pages - 1]->index + 1; 14389b1d0998SJan Kara pagevec_release(&pvec); 1439c4a0c46eSAneesh Kumar K.V } 1440c4a0c46eSAneesh Kumar K.V } 1441c4a0c46eSAneesh Kumar K.V 1442df22291fSAneesh Kumar K.V static void ext4_print_free_blocks(struct inode *inode) 1443df22291fSAneesh Kumar K.V { 1444df22291fSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 144592b97816STheodore Ts'o struct super_block *sb = inode->i_sb; 1446f78ee70dSLukas Czerner struct ext4_inode_info *ei = EXT4_I(inode); 144792b97816STheodore Ts'o 144892b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld", 14495dee5437STheodore Ts'o EXT4_C2B(EXT4_SB(inode->i_sb), 1450f78ee70dSLukas Czerner ext4_count_free_clusters(sb))); 145192b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Free/Dirty block details"); 145292b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "free_blocks=%lld", 1453f78ee70dSLukas Czerner (long long) EXT4_C2B(EXT4_SB(sb), 145457042651STheodore Ts'o percpu_counter_sum(&sbi->s_freeclusters_counter))); 145592b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld", 1456f78ee70dSLukas Czerner (long long) EXT4_C2B(EXT4_SB(sb), 14577b415bf6SAditya Kali percpu_counter_sum(&sbi->s_dirtyclusters_counter))); 145892b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Block reservation details"); 145992b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u", 1460f78ee70dSLukas Czerner ei->i_reserved_data_blocks); 1461df22291fSAneesh Kumar K.V return; 1462df22291fSAneesh Kumar K.V } 1463df22291fSAneesh Kumar K.V 1464c364b22cSAneesh Kumar K.V static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh) 146529fa89d0SAneesh Kumar K.V { 1466c364b22cSAneesh Kumar K.V return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh); 146729fa89d0SAneesh Kumar K.V } 146829fa89d0SAneesh Kumar K.V 146964769240SAlex Tomas /* 14705356f261SAditya Kali * This function is grabs code from the very beginning of 14715356f261SAditya Kali * ext4_map_blocks, but assumes that the caller is from delayed write 14725356f261SAditya Kali * time. This function looks up the requested blocks and sets the 14735356f261SAditya Kali * buffer delay bit under the protection of i_data_sem. 14745356f261SAditya Kali */ 14755356f261SAditya Kali static int ext4_da_map_blocks(struct inode *inode, sector_t iblock, 14765356f261SAditya Kali struct ext4_map_blocks *map, 14775356f261SAditya Kali struct buffer_head *bh) 14785356f261SAditya Kali { 1479d100eef2SZheng Liu struct extent_status es; 14805356f261SAditya Kali int retval; 14815356f261SAditya Kali sector_t invalid_block = ~((sector_t) 0xffff); 1482921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 1483921f266bSDmitry Monakhov struct ext4_map_blocks orig_map; 1484921f266bSDmitry Monakhov 1485921f266bSDmitry Monakhov memcpy(&orig_map, map, sizeof(*map)); 1486921f266bSDmitry Monakhov #endif 14875356f261SAditya Kali 14885356f261SAditya Kali if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es)) 14895356f261SAditya Kali invalid_block = ~0; 14905356f261SAditya Kali 14915356f261SAditya Kali map->m_flags = 0; 14925356f261SAditya Kali ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u," 14935356f261SAditya Kali "logical block %lu\n", inode->i_ino, map->m_len, 14945356f261SAditya Kali (unsigned long) map->m_lblk); 1495d100eef2SZheng Liu 1496d100eef2SZheng Liu /* Lookup extent status tree firstly */ 1497d100eef2SZheng Liu if (ext4_es_lookup_extent(inode, iblock, &es)) { 1498d100eef2SZheng Liu if (ext4_es_is_hole(&es)) { 1499d100eef2SZheng Liu retval = 0; 1500c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 1501d100eef2SZheng Liu goto add_delayed; 1502d100eef2SZheng Liu } 1503d100eef2SZheng Liu 1504d100eef2SZheng Liu /* 1505d100eef2SZheng Liu * Delayed extent could be allocated by fallocate. 1506d100eef2SZheng Liu * So we need to check it. 1507d100eef2SZheng Liu */ 1508d100eef2SZheng Liu if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) { 1509d100eef2SZheng Liu map_bh(bh, inode->i_sb, invalid_block); 1510d100eef2SZheng Liu set_buffer_new(bh); 1511d100eef2SZheng Liu set_buffer_delay(bh); 1512d100eef2SZheng Liu return 0; 1513d100eef2SZheng Liu } 1514d100eef2SZheng Liu 1515d100eef2SZheng Liu map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk; 1516d100eef2SZheng Liu retval = es.es_len - (iblock - es.es_lblk); 1517d100eef2SZheng Liu if (retval > map->m_len) 1518d100eef2SZheng Liu retval = map->m_len; 1519d100eef2SZheng Liu map->m_len = retval; 1520d100eef2SZheng Liu if (ext4_es_is_written(&es)) 1521d100eef2SZheng Liu map->m_flags |= EXT4_MAP_MAPPED; 1522d100eef2SZheng Liu else if (ext4_es_is_unwritten(&es)) 1523d100eef2SZheng Liu map->m_flags |= EXT4_MAP_UNWRITTEN; 1524d100eef2SZheng Liu else 1525d100eef2SZheng Liu BUG_ON(1); 1526d100eef2SZheng Liu 1527921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 1528921f266bSDmitry Monakhov ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0); 1529921f266bSDmitry Monakhov #endif 1530d100eef2SZheng Liu return retval; 1531d100eef2SZheng Liu } 1532d100eef2SZheng Liu 15335356f261SAditya Kali /* 15345356f261SAditya Kali * Try to see if we can get the block without requesting a new 15355356f261SAditya Kali * file system block. 15365356f261SAditya Kali */ 1537c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 1538cbd7584eSJan Kara if (ext4_has_inline_data(inode)) 15399c3569b5STao Ma retval = 0; 1540cbd7584eSJan Kara else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 15412f8e0a7cSZheng Liu retval = ext4_ext_map_blocks(NULL, inode, map, 0); 15425356f261SAditya Kali else 15432f8e0a7cSZheng Liu retval = ext4_ind_map_blocks(NULL, inode, map, 0); 15445356f261SAditya Kali 1545d100eef2SZheng Liu add_delayed: 15465356f261SAditya Kali if (retval == 0) { 1547f7fec032SZheng Liu int ret; 15485356f261SAditya Kali /* 15495356f261SAditya Kali * XXX: __block_prepare_write() unmaps passed block, 15505356f261SAditya Kali * is it OK? 15515356f261SAditya Kali */ 1552386ad67cSLukas Czerner /* 1553386ad67cSLukas Czerner * If the block was allocated from previously allocated cluster, 1554386ad67cSLukas Czerner * then we don't need to reserve it again. However we still need 1555386ad67cSLukas Czerner * to reserve metadata for every block we're going to write. 1556386ad67cSLukas Czerner */ 1557c27e43a1SEric Whitney if (EXT4_SB(inode->i_sb)->s_cluster_ratio == 1 || 1558cbd7584eSJan Kara !ext4_find_delalloc_cluster(inode, map->m_lblk)) { 1559c27e43a1SEric Whitney ret = ext4_da_reserve_space(inode); 1560f7fec032SZheng Liu if (ret) { 15615356f261SAditya Kali /* not enough space to reserve */ 1562f7fec032SZheng Liu retval = ret; 15635356f261SAditya Kali goto out_unlock; 15645356f261SAditya Kali } 1565f7fec032SZheng Liu } 15665356f261SAditya Kali 1567f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 1568fdc0212eSZheng Liu ~0, EXTENT_STATUS_DELAYED); 1569f7fec032SZheng Liu if (ret) { 1570f7fec032SZheng Liu retval = ret; 157151865fdaSZheng Liu goto out_unlock; 1572f7fec032SZheng Liu } 157351865fdaSZheng Liu 15745356f261SAditya Kali map_bh(bh, inode->i_sb, invalid_block); 15755356f261SAditya Kali set_buffer_new(bh); 15765356f261SAditya Kali set_buffer_delay(bh); 1577f7fec032SZheng Liu } else if (retval > 0) { 1578f7fec032SZheng Liu int ret; 15793be78c73STheodore Ts'o unsigned int status; 1580f7fec032SZheng Liu 158144fb851dSZheng Liu if (unlikely(retval != map->m_len)) { 158244fb851dSZheng Liu ext4_warning(inode->i_sb, 158344fb851dSZheng Liu "ES len assertion failed for inode " 158444fb851dSZheng Liu "%lu: retval %d != map->m_len %d", 158544fb851dSZheng Liu inode->i_ino, retval, map->m_len); 158644fb851dSZheng Liu WARN_ON(1); 1587921f266bSDmitry Monakhov } 1588921f266bSDmitry Monakhov 1589f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 1590f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 1591f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 1592f7fec032SZheng Liu map->m_pblk, status); 1593f7fec032SZheng Liu if (ret != 0) 1594f7fec032SZheng Liu retval = ret; 15955356f261SAditya Kali } 15965356f261SAditya Kali 15975356f261SAditya Kali out_unlock: 15985356f261SAditya Kali up_read((&EXT4_I(inode)->i_data_sem)); 15995356f261SAditya Kali 16005356f261SAditya Kali return retval; 16015356f261SAditya Kali } 16025356f261SAditya Kali 16035356f261SAditya Kali /* 1604d91bd2c1SSeunghun Lee * This is a special get_block_t callback which is used by 1605b920c755STheodore Ts'o * ext4_da_write_begin(). It will either return mapped block or 1606b920c755STheodore Ts'o * reserve space for a single block. 160729fa89d0SAneesh Kumar K.V * 160829fa89d0SAneesh Kumar K.V * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set. 160929fa89d0SAneesh Kumar K.V * We also have b_blocknr = -1 and b_bdev initialized properly 161029fa89d0SAneesh Kumar K.V * 161129fa89d0SAneesh Kumar K.V * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set. 161229fa89d0SAneesh Kumar K.V * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev 161329fa89d0SAneesh Kumar K.V * initialized properly. 161464769240SAlex Tomas */ 16159c3569b5STao Ma int ext4_da_get_block_prep(struct inode *inode, sector_t iblock, 16162ed88685STheodore Ts'o struct buffer_head *bh, int create) 161764769240SAlex Tomas { 16182ed88685STheodore Ts'o struct ext4_map_blocks map; 161964769240SAlex Tomas int ret = 0; 162064769240SAlex Tomas 162164769240SAlex Tomas BUG_ON(create == 0); 16222ed88685STheodore Ts'o BUG_ON(bh->b_size != inode->i_sb->s_blocksize); 16232ed88685STheodore Ts'o 16242ed88685STheodore Ts'o map.m_lblk = iblock; 16252ed88685STheodore Ts'o map.m_len = 1; 162664769240SAlex Tomas 162764769240SAlex Tomas /* 162864769240SAlex Tomas * first, we need to know whether the block is allocated already 162964769240SAlex Tomas * preallocated blocks are unmapped but should treated 163064769240SAlex Tomas * the same as allocated blocks. 163164769240SAlex Tomas */ 16325356f261SAditya Kali ret = ext4_da_map_blocks(inode, iblock, &map, bh); 16335356f261SAditya Kali if (ret <= 0) 16342ed88685STheodore Ts'o return ret; 163564769240SAlex Tomas 16362ed88685STheodore Ts'o map_bh(bh, inode->i_sb, map.m_pblk); 16372ed88685STheodore Ts'o bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags; 16382ed88685STheodore Ts'o 16392ed88685STheodore Ts'o if (buffer_unwritten(bh)) { 16402ed88685STheodore Ts'o /* A delayed write to unwritten bh should be marked 16412ed88685STheodore Ts'o * new and mapped. Mapped ensures that we don't do 16422ed88685STheodore Ts'o * get_block multiple times when we write to the same 16432ed88685STheodore Ts'o * offset and new ensures that we do proper zero out 16442ed88685STheodore Ts'o * for partial write. 16452ed88685STheodore Ts'o */ 16462ed88685STheodore Ts'o set_buffer_new(bh); 1647c8205636STheodore Ts'o set_buffer_mapped(bh); 16482ed88685STheodore Ts'o } 16492ed88685STheodore Ts'o return 0; 165064769240SAlex Tomas } 165161628a3fSMingming Cao 165262e086beSAneesh Kumar K.V static int bget_one(handle_t *handle, struct buffer_head *bh) 165362e086beSAneesh Kumar K.V { 165462e086beSAneesh Kumar K.V get_bh(bh); 165562e086beSAneesh Kumar K.V return 0; 165662e086beSAneesh Kumar K.V } 165762e086beSAneesh Kumar K.V 165862e086beSAneesh Kumar K.V static int bput_one(handle_t *handle, struct buffer_head *bh) 165962e086beSAneesh Kumar K.V { 166062e086beSAneesh Kumar K.V put_bh(bh); 166162e086beSAneesh Kumar K.V return 0; 166262e086beSAneesh Kumar K.V } 166362e086beSAneesh Kumar K.V 166462e086beSAneesh Kumar K.V static int __ext4_journalled_writepage(struct page *page, 166562e086beSAneesh Kumar K.V unsigned int len) 166662e086beSAneesh Kumar K.V { 166762e086beSAneesh Kumar K.V struct address_space *mapping = page->mapping; 166862e086beSAneesh Kumar K.V struct inode *inode = mapping->host; 16693fdcfb66STao Ma struct buffer_head *page_bufs = NULL; 167062e086beSAneesh Kumar K.V handle_t *handle = NULL; 16713fdcfb66STao Ma int ret = 0, err = 0; 16723fdcfb66STao Ma int inline_data = ext4_has_inline_data(inode); 16733fdcfb66STao Ma struct buffer_head *inode_bh = NULL; 167462e086beSAneesh Kumar K.V 1675cb20d518STheodore Ts'o ClearPageChecked(page); 16763fdcfb66STao Ma 16773fdcfb66STao Ma if (inline_data) { 16783fdcfb66STao Ma BUG_ON(page->index != 0); 16793fdcfb66STao Ma BUG_ON(len > ext4_get_max_inline_size(inode)); 16803fdcfb66STao Ma inode_bh = ext4_journalled_write_inline_data(inode, len, page); 16813fdcfb66STao Ma if (inode_bh == NULL) 16823fdcfb66STao Ma goto out; 16833fdcfb66STao Ma } else { 168462e086beSAneesh Kumar K.V page_bufs = page_buffers(page); 16853fdcfb66STao Ma if (!page_bufs) { 16863fdcfb66STao Ma BUG(); 16873fdcfb66STao Ma goto out; 16883fdcfb66STao Ma } 16893fdcfb66STao Ma ext4_walk_page_buffers(handle, page_bufs, 0, len, 16903fdcfb66STao Ma NULL, bget_one); 16913fdcfb66STao Ma } 1692bdf96838STheodore Ts'o /* 1693bdf96838STheodore Ts'o * We need to release the page lock before we start the 1694bdf96838STheodore Ts'o * journal, so grab a reference so the page won't disappear 1695bdf96838STheodore Ts'o * out from under us. 1696bdf96838STheodore Ts'o */ 1697bdf96838STheodore Ts'o get_page(page); 169862e086beSAneesh Kumar K.V unlock_page(page); 169962e086beSAneesh Kumar K.V 17009924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 17019924a92aSTheodore Ts'o ext4_writepage_trans_blocks(inode)); 170262e086beSAneesh Kumar K.V if (IS_ERR(handle)) { 170362e086beSAneesh Kumar K.V ret = PTR_ERR(handle); 1704bdf96838STheodore Ts'o put_page(page); 1705bdf96838STheodore Ts'o goto out_no_pagelock; 1706bdf96838STheodore Ts'o } 1707bdf96838STheodore Ts'o BUG_ON(!ext4_handle_valid(handle)); 1708bdf96838STheodore Ts'o 1709bdf96838STheodore Ts'o lock_page(page); 1710bdf96838STheodore Ts'o put_page(page); 1711bdf96838STheodore Ts'o if (page->mapping != mapping) { 1712bdf96838STheodore Ts'o /* The page got truncated from under us */ 1713bdf96838STheodore Ts'o ext4_journal_stop(handle); 1714bdf96838STheodore Ts'o ret = 0; 171562e086beSAneesh Kumar K.V goto out; 171662e086beSAneesh Kumar K.V } 171762e086beSAneesh Kumar K.V 17183fdcfb66STao Ma if (inline_data) { 17195d601255Sliang xie BUFFER_TRACE(inode_bh, "get write access"); 17203fdcfb66STao Ma ret = ext4_journal_get_write_access(handle, inode_bh); 17213fdcfb66STao Ma 17223fdcfb66STao Ma err = ext4_handle_dirty_metadata(handle, inode, inode_bh); 17233fdcfb66STao Ma 17243fdcfb66STao Ma } else { 1725f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL, 172662e086beSAneesh Kumar K.V do_journal_get_write_access); 172762e086beSAneesh Kumar K.V 1728f19d5870STao Ma err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL, 172962e086beSAneesh Kumar K.V write_end_fn); 17303fdcfb66STao Ma } 173162e086beSAneesh Kumar K.V if (ret == 0) 173262e086beSAneesh Kumar K.V ret = err; 17332d859db3SJan Kara EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid; 173462e086beSAneesh Kumar K.V err = ext4_journal_stop(handle); 173562e086beSAneesh Kumar K.V if (!ret) 173662e086beSAneesh Kumar K.V ret = err; 173762e086beSAneesh Kumar K.V 17383fdcfb66STao Ma if (!ext4_has_inline_data(inode)) 17398c9367fdSTheodore Ts'o ext4_walk_page_buffers(NULL, page_bufs, 0, len, 17403fdcfb66STao Ma NULL, bput_one); 174119f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_JDATA); 174262e086beSAneesh Kumar K.V out: 1743bdf96838STheodore Ts'o unlock_page(page); 1744bdf96838STheodore Ts'o out_no_pagelock: 17453fdcfb66STao Ma brelse(inode_bh); 174662e086beSAneesh Kumar K.V return ret; 174762e086beSAneesh Kumar K.V } 174862e086beSAneesh Kumar K.V 174961628a3fSMingming Cao /* 175043ce1d23SAneesh Kumar K.V * Note that we don't need to start a transaction unless we're journaling data 175143ce1d23SAneesh Kumar K.V * because we should have holes filled from ext4_page_mkwrite(). We even don't 175243ce1d23SAneesh Kumar K.V * need to file the inode to the transaction's list in ordered mode because if 175343ce1d23SAneesh Kumar K.V * we are writing back data added by write(), the inode is already there and if 175443ce1d23SAneesh Kumar K.V * we are writing back data modified via mmap(), no one guarantees in which 175543ce1d23SAneesh Kumar K.V * transaction the data will hit the disk. In case we are journaling data, we 175643ce1d23SAneesh Kumar K.V * cannot start transaction directly because transaction start ranks above page 175743ce1d23SAneesh Kumar K.V * lock so we have to do some magic. 175843ce1d23SAneesh Kumar K.V * 1759b920c755STheodore Ts'o * This function can get called via... 176020970ba6STheodore Ts'o * - ext4_writepages after taking page lock (have journal handle) 1761b920c755STheodore Ts'o * - journal_submit_inode_data_buffers (no journal handle) 1762f6463b0dSArtem Bityutskiy * - shrink_page_list via the kswapd/direct reclaim (no journal handle) 1763b920c755STheodore Ts'o * - grab_page_cache when doing write_begin (have journal handle) 176443ce1d23SAneesh Kumar K.V * 176543ce1d23SAneesh Kumar K.V * We don't do any block allocation in this function. If we have page with 176643ce1d23SAneesh Kumar K.V * multiple blocks we need to write those buffer_heads that are mapped. This 176743ce1d23SAneesh Kumar K.V * is important for mmaped based write. So if we do with blocksize 1K 176843ce1d23SAneesh Kumar K.V * truncate(f, 1024); 176943ce1d23SAneesh Kumar K.V * a = mmap(f, 0, 4096); 177043ce1d23SAneesh Kumar K.V * a[0] = 'a'; 177143ce1d23SAneesh Kumar K.V * truncate(f, 4096); 177243ce1d23SAneesh Kumar K.V * we have in the page first buffer_head mapped via page_mkwrite call back 177390802ed9SPaul Bolle * but other buffer_heads would be unmapped but dirty (dirty done via the 177443ce1d23SAneesh Kumar K.V * do_wp_page). So writepage should write the first block. If we modify 177543ce1d23SAneesh Kumar K.V * the mmap area beyond 1024 we will again get a page_fault and the 177643ce1d23SAneesh Kumar K.V * page_mkwrite callback will do the block allocation and mark the 177743ce1d23SAneesh Kumar K.V * buffer_heads mapped. 177843ce1d23SAneesh Kumar K.V * 177943ce1d23SAneesh Kumar K.V * We redirty the page if we have any buffer_heads that is either delay or 178043ce1d23SAneesh Kumar K.V * unwritten in the page. 178143ce1d23SAneesh Kumar K.V * 178243ce1d23SAneesh Kumar K.V * We can get recursively called as show below. 178343ce1d23SAneesh Kumar K.V * 178443ce1d23SAneesh Kumar K.V * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() -> 178543ce1d23SAneesh Kumar K.V * ext4_writepage() 178643ce1d23SAneesh Kumar K.V * 178743ce1d23SAneesh Kumar K.V * But since we don't do any block allocation we should not deadlock. 178843ce1d23SAneesh Kumar K.V * Page also have the dirty flag cleared so we don't get recurive page_lock. 178961628a3fSMingming Cao */ 179043ce1d23SAneesh Kumar K.V static int ext4_writepage(struct page *page, 179164769240SAlex Tomas struct writeback_control *wbc) 179264769240SAlex Tomas { 1793f8bec370SJan Kara int ret = 0; 179461628a3fSMingming Cao loff_t size; 1795498e5f24STheodore Ts'o unsigned int len; 1796744692dcSJiaying Zhang struct buffer_head *page_bufs = NULL; 179761628a3fSMingming Cao struct inode *inode = page->mapping->host; 179836ade451SJan Kara struct ext4_io_submit io_submit; 17991c8349a1SNamjae Jeon bool keep_towrite = false; 180064769240SAlex Tomas 1801a9c667f8SLukas Czerner trace_ext4_writepage(page); 180261628a3fSMingming Cao size = i_size_read(inode); 180361628a3fSMingming Cao if (page->index == size >> PAGE_CACHE_SHIFT) 180461628a3fSMingming Cao len = size & ~PAGE_CACHE_MASK; 180561628a3fSMingming Cao else 180661628a3fSMingming Cao len = PAGE_CACHE_SIZE; 180761628a3fSMingming Cao 1808f0e6c985SAneesh Kumar K.V page_bufs = page_buffers(page); 180964769240SAlex Tomas /* 1810fe386132SJan Kara * We cannot do block allocation or other extent handling in this 1811fe386132SJan Kara * function. If there are buffers needing that, we have to redirty 1812fe386132SJan Kara * the page. But we may reach here when we do a journal commit via 1813fe386132SJan Kara * journal_submit_inode_data_buffers() and in that case we must write 1814fe386132SJan Kara * allocated buffers to achieve data=ordered mode guarantees. 181564769240SAlex Tomas */ 1816f19d5870STao Ma if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL, 1817c364b22cSAneesh Kumar K.V ext4_bh_delay_or_unwritten)) { 181861628a3fSMingming Cao redirty_page_for_writepage(wbc, page); 1819fe386132SJan Kara if (current->flags & PF_MEMALLOC) { 1820fe386132SJan Kara /* 1821fe386132SJan Kara * For memory cleaning there's no point in writing only 1822fe386132SJan Kara * some buffers. So just bail out. Warn if we came here 1823fe386132SJan Kara * from direct reclaim. 1824fe386132SJan Kara */ 1825fe386132SJan Kara WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD)) 1826fe386132SJan Kara == PF_MEMALLOC); 182761628a3fSMingming Cao unlock_page(page); 182861628a3fSMingming Cao return 0; 182961628a3fSMingming Cao } 18301c8349a1SNamjae Jeon keep_towrite = true; 1831f0e6c985SAneesh Kumar K.V } 183264769240SAlex Tomas 1833cb20d518STheodore Ts'o if (PageChecked(page) && ext4_should_journal_data(inode)) 183443ce1d23SAneesh Kumar K.V /* 183543ce1d23SAneesh Kumar K.V * It's mmapped pagecache. Add buffers and journal it. There 183643ce1d23SAneesh Kumar K.V * doesn't seem much point in redirtying the page here. 183743ce1d23SAneesh Kumar K.V */ 18383f0ca309SWu Fengguang return __ext4_journalled_writepage(page, len); 183943ce1d23SAneesh Kumar K.V 184097a851edSJan Kara ext4_io_submit_init(&io_submit, wbc); 184197a851edSJan Kara io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS); 184297a851edSJan Kara if (!io_submit.io_end) { 184397a851edSJan Kara redirty_page_for_writepage(wbc, page); 184497a851edSJan Kara unlock_page(page); 184597a851edSJan Kara return -ENOMEM; 184697a851edSJan Kara } 18471c8349a1SNamjae Jeon ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite); 184836ade451SJan Kara ext4_io_submit(&io_submit); 184997a851edSJan Kara /* Drop io_end reference we got from init */ 185097a851edSJan Kara ext4_put_io_end_defer(io_submit.io_end); 185164769240SAlex Tomas return ret; 185264769240SAlex Tomas } 185364769240SAlex Tomas 18545f1132b2SJan Kara static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page) 18555f1132b2SJan Kara { 18565f1132b2SJan Kara int len; 18575f1132b2SJan Kara loff_t size = i_size_read(mpd->inode); 18585f1132b2SJan Kara int err; 18595f1132b2SJan Kara 18605f1132b2SJan Kara BUG_ON(page->index != mpd->first_page); 18615f1132b2SJan Kara if (page->index == size >> PAGE_CACHE_SHIFT) 18625f1132b2SJan Kara len = size & ~PAGE_CACHE_MASK; 18635f1132b2SJan Kara else 18645f1132b2SJan Kara len = PAGE_CACHE_SIZE; 18655f1132b2SJan Kara clear_page_dirty_for_io(page); 18661c8349a1SNamjae Jeon err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false); 18675f1132b2SJan Kara if (!err) 18685f1132b2SJan Kara mpd->wbc->nr_to_write--; 18695f1132b2SJan Kara mpd->first_page++; 18705f1132b2SJan Kara 18715f1132b2SJan Kara return err; 18725f1132b2SJan Kara } 18735f1132b2SJan Kara 18744e7ea81dSJan Kara #define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay)) 18754e7ea81dSJan Kara 187661628a3fSMingming Cao /* 1877fffb2739SJan Kara * mballoc gives us at most this number of blocks... 1878fffb2739SJan Kara * XXX: That seems to be only a limitation of ext4_mb_normalize_request(). 1879fffb2739SJan Kara * The rest of mballoc seems to handle chunks up to full group size. 188061628a3fSMingming Cao */ 1881fffb2739SJan Kara #define MAX_WRITEPAGES_EXTENT_LEN 2048 1882525f4ed8SMingming Cao 1883525f4ed8SMingming Cao /* 18844e7ea81dSJan Kara * mpage_add_bh_to_extent - try to add bh to extent of blocks to map 18854e7ea81dSJan Kara * 18864e7ea81dSJan Kara * @mpd - extent of blocks 18874e7ea81dSJan Kara * @lblk - logical number of the block in the file 188809930042SJan Kara * @bh - buffer head we want to add to the extent 18894e7ea81dSJan Kara * 189009930042SJan Kara * The function is used to collect contig. blocks in the same state. If the 189109930042SJan Kara * buffer doesn't require mapping for writeback and we haven't started the 189209930042SJan Kara * extent of buffers to map yet, the function returns 'true' immediately - the 189309930042SJan Kara * caller can write the buffer right away. Otherwise the function returns true 189409930042SJan Kara * if the block has been added to the extent, false if the block couldn't be 189509930042SJan Kara * added. 18964e7ea81dSJan Kara */ 189709930042SJan Kara static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk, 189809930042SJan Kara struct buffer_head *bh) 18994e7ea81dSJan Kara { 19004e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 19014e7ea81dSJan Kara 190209930042SJan Kara /* Buffer that doesn't need mapping for writeback? */ 190309930042SJan Kara if (!buffer_dirty(bh) || !buffer_mapped(bh) || 190409930042SJan Kara (!buffer_delay(bh) && !buffer_unwritten(bh))) { 190509930042SJan Kara /* So far no extent to map => we write the buffer right away */ 190609930042SJan Kara if (map->m_len == 0) 190709930042SJan Kara return true; 190809930042SJan Kara return false; 190909930042SJan Kara } 19104e7ea81dSJan Kara 19114e7ea81dSJan Kara /* First block in the extent? */ 19124e7ea81dSJan Kara if (map->m_len == 0) { 19134e7ea81dSJan Kara map->m_lblk = lblk; 19144e7ea81dSJan Kara map->m_len = 1; 191509930042SJan Kara map->m_flags = bh->b_state & BH_FLAGS; 191609930042SJan Kara return true; 19174e7ea81dSJan Kara } 19184e7ea81dSJan Kara 191909930042SJan Kara /* Don't go larger than mballoc is willing to allocate */ 192009930042SJan Kara if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN) 192109930042SJan Kara return false; 192209930042SJan Kara 19234e7ea81dSJan Kara /* Can we merge the block to our big extent? */ 19244e7ea81dSJan Kara if (lblk == map->m_lblk + map->m_len && 192509930042SJan Kara (bh->b_state & BH_FLAGS) == map->m_flags) { 19264e7ea81dSJan Kara map->m_len++; 192709930042SJan Kara return true; 19284e7ea81dSJan Kara } 192909930042SJan Kara return false; 19304e7ea81dSJan Kara } 19314e7ea81dSJan Kara 19325f1132b2SJan Kara /* 19335f1132b2SJan Kara * mpage_process_page_bufs - submit page buffers for IO or add them to extent 19345f1132b2SJan Kara * 19355f1132b2SJan Kara * @mpd - extent of blocks for mapping 19365f1132b2SJan Kara * @head - the first buffer in the page 19375f1132b2SJan Kara * @bh - buffer we should start processing from 19385f1132b2SJan Kara * @lblk - logical number of the block in the file corresponding to @bh 19395f1132b2SJan Kara * 19405f1132b2SJan Kara * Walk through page buffers from @bh upto @head (exclusive) and either submit 19415f1132b2SJan Kara * the page for IO if all buffers in this page were mapped and there's no 19425f1132b2SJan Kara * accumulated extent of buffers to map or add buffers in the page to the 19435f1132b2SJan Kara * extent of buffers to map. The function returns 1 if the caller can continue 19445f1132b2SJan Kara * by processing the next page, 0 if it should stop adding buffers to the 19455f1132b2SJan Kara * extent to map because we cannot extend it anymore. It can also return value 19465f1132b2SJan Kara * < 0 in case of error during IO submission. 19475f1132b2SJan Kara */ 19485f1132b2SJan Kara static int mpage_process_page_bufs(struct mpage_da_data *mpd, 19494e7ea81dSJan Kara struct buffer_head *head, 19504e7ea81dSJan Kara struct buffer_head *bh, 19514e7ea81dSJan Kara ext4_lblk_t lblk) 19524e7ea81dSJan Kara { 19534e7ea81dSJan Kara struct inode *inode = mpd->inode; 19545f1132b2SJan Kara int err; 19554e7ea81dSJan Kara ext4_lblk_t blocks = (i_size_read(inode) + (1 << inode->i_blkbits) - 1) 19564e7ea81dSJan Kara >> inode->i_blkbits; 19574e7ea81dSJan Kara 19584e7ea81dSJan Kara do { 19594e7ea81dSJan Kara BUG_ON(buffer_locked(bh)); 19604e7ea81dSJan Kara 196109930042SJan Kara if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) { 19624e7ea81dSJan Kara /* Found extent to map? */ 19634e7ea81dSJan Kara if (mpd->map.m_len) 19645f1132b2SJan Kara return 0; 196509930042SJan Kara /* Everything mapped so far and we hit EOF */ 19665f1132b2SJan Kara break; 19674e7ea81dSJan Kara } 19684e7ea81dSJan Kara } while (lblk++, (bh = bh->b_this_page) != head); 19695f1132b2SJan Kara /* So far everything mapped? Submit the page for IO. */ 19705f1132b2SJan Kara if (mpd->map.m_len == 0) { 19715f1132b2SJan Kara err = mpage_submit_page(mpd, head->b_page); 19725f1132b2SJan Kara if (err < 0) 19734e7ea81dSJan Kara return err; 19744e7ea81dSJan Kara } 19755f1132b2SJan Kara return lblk < blocks; 19765f1132b2SJan Kara } 19774e7ea81dSJan Kara 19784e7ea81dSJan Kara /* 19794e7ea81dSJan Kara * mpage_map_buffers - update buffers corresponding to changed extent and 19804e7ea81dSJan Kara * submit fully mapped pages for IO 19814e7ea81dSJan Kara * 19824e7ea81dSJan Kara * @mpd - description of extent to map, on return next extent to map 19834e7ea81dSJan Kara * 19844e7ea81dSJan Kara * Scan buffers corresponding to changed extent (we expect corresponding pages 19854e7ea81dSJan Kara * to be already locked) and update buffer state according to new extent state. 19864e7ea81dSJan Kara * We map delalloc buffers to their physical location, clear unwritten bits, 1987556615dcSLukas Czerner * and mark buffers as uninit when we perform writes to unwritten extents 19884e7ea81dSJan Kara * and do extent conversion after IO is finished. If the last page is not fully 19894e7ea81dSJan Kara * mapped, we update @map to the next extent in the last page that needs 19904e7ea81dSJan Kara * mapping. Otherwise we submit the page for IO. 19914e7ea81dSJan Kara */ 19924e7ea81dSJan Kara static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd) 19934e7ea81dSJan Kara { 19944e7ea81dSJan Kara struct pagevec pvec; 19954e7ea81dSJan Kara int nr_pages, i; 19964e7ea81dSJan Kara struct inode *inode = mpd->inode; 19974e7ea81dSJan Kara struct buffer_head *head, *bh; 19984e7ea81dSJan Kara int bpp_bits = PAGE_CACHE_SHIFT - inode->i_blkbits; 19994e7ea81dSJan Kara pgoff_t start, end; 20004e7ea81dSJan Kara ext4_lblk_t lblk; 20014e7ea81dSJan Kara sector_t pblock; 20024e7ea81dSJan Kara int err; 20034e7ea81dSJan Kara 20044e7ea81dSJan Kara start = mpd->map.m_lblk >> bpp_bits; 20054e7ea81dSJan Kara end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits; 20064e7ea81dSJan Kara lblk = start << bpp_bits; 20074e7ea81dSJan Kara pblock = mpd->map.m_pblk; 20084e7ea81dSJan Kara 20094e7ea81dSJan Kara pagevec_init(&pvec, 0); 20104e7ea81dSJan Kara while (start <= end) { 20114e7ea81dSJan Kara nr_pages = pagevec_lookup(&pvec, inode->i_mapping, start, 20124e7ea81dSJan Kara PAGEVEC_SIZE); 20134e7ea81dSJan Kara if (nr_pages == 0) 20144e7ea81dSJan Kara break; 20154e7ea81dSJan Kara for (i = 0; i < nr_pages; i++) { 20164e7ea81dSJan Kara struct page *page = pvec.pages[i]; 20174e7ea81dSJan Kara 20184e7ea81dSJan Kara if (page->index > end) 20194e7ea81dSJan Kara break; 20204e7ea81dSJan Kara /* Up to 'end' pages must be contiguous */ 20214e7ea81dSJan Kara BUG_ON(page->index != start); 20224e7ea81dSJan Kara bh = head = page_buffers(page); 20234e7ea81dSJan Kara do { 20244e7ea81dSJan Kara if (lblk < mpd->map.m_lblk) 20254e7ea81dSJan Kara continue; 20264e7ea81dSJan Kara if (lblk >= mpd->map.m_lblk + mpd->map.m_len) { 20274e7ea81dSJan Kara /* 20284e7ea81dSJan Kara * Buffer after end of mapped extent. 20294e7ea81dSJan Kara * Find next buffer in the page to map. 20304e7ea81dSJan Kara */ 20314e7ea81dSJan Kara mpd->map.m_len = 0; 20324e7ea81dSJan Kara mpd->map.m_flags = 0; 20335f1132b2SJan Kara /* 20345f1132b2SJan Kara * FIXME: If dioread_nolock supports 20355f1132b2SJan Kara * blocksize < pagesize, we need to make 20365f1132b2SJan Kara * sure we add size mapped so far to 20375f1132b2SJan Kara * io_end->size as the following call 20385f1132b2SJan Kara * can submit the page for IO. 20395f1132b2SJan Kara */ 20405f1132b2SJan Kara err = mpage_process_page_bufs(mpd, head, 20415f1132b2SJan Kara bh, lblk); 20424e7ea81dSJan Kara pagevec_release(&pvec); 20435f1132b2SJan Kara if (err > 0) 20445f1132b2SJan Kara err = 0; 20455f1132b2SJan Kara return err; 20464e7ea81dSJan Kara } 20474e7ea81dSJan Kara if (buffer_delay(bh)) { 20484e7ea81dSJan Kara clear_buffer_delay(bh); 20494e7ea81dSJan Kara bh->b_blocknr = pblock++; 20504e7ea81dSJan Kara } 20514e7ea81dSJan Kara clear_buffer_unwritten(bh); 20525f1132b2SJan Kara } while (lblk++, (bh = bh->b_this_page) != head); 20534e7ea81dSJan Kara 20544e7ea81dSJan Kara /* 20554e7ea81dSJan Kara * FIXME: This is going to break if dioread_nolock 20564e7ea81dSJan Kara * supports blocksize < pagesize as we will try to 20574e7ea81dSJan Kara * convert potentially unmapped parts of inode. 20584e7ea81dSJan Kara */ 20594e7ea81dSJan Kara mpd->io_submit.io_end->size += PAGE_CACHE_SIZE; 20604e7ea81dSJan Kara /* Page fully mapped - let IO run! */ 20614e7ea81dSJan Kara err = mpage_submit_page(mpd, page); 20624e7ea81dSJan Kara if (err < 0) { 20634e7ea81dSJan Kara pagevec_release(&pvec); 20644e7ea81dSJan Kara return err; 20654e7ea81dSJan Kara } 20664e7ea81dSJan Kara start++; 20674e7ea81dSJan Kara } 20684e7ea81dSJan Kara pagevec_release(&pvec); 20694e7ea81dSJan Kara } 20704e7ea81dSJan Kara /* Extent fully mapped and matches with page boundary. We are done. */ 20714e7ea81dSJan Kara mpd->map.m_len = 0; 20724e7ea81dSJan Kara mpd->map.m_flags = 0; 20734e7ea81dSJan Kara return 0; 20744e7ea81dSJan Kara } 20754e7ea81dSJan Kara 20764e7ea81dSJan Kara static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd) 20774e7ea81dSJan Kara { 20784e7ea81dSJan Kara struct inode *inode = mpd->inode; 20794e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 20804e7ea81dSJan Kara int get_blocks_flags; 2081090f32eeSLukas Czerner int err, dioread_nolock; 20824e7ea81dSJan Kara 20834e7ea81dSJan Kara trace_ext4_da_write_pages_extent(inode, map); 20844e7ea81dSJan Kara /* 20854e7ea81dSJan Kara * Call ext4_map_blocks() to allocate any delayed allocation blocks, or 2086556615dcSLukas Czerner * to convert an unwritten extent to be initialized (in the case 20874e7ea81dSJan Kara * where we have written into one or more preallocated blocks). It is 20884e7ea81dSJan Kara * possible that we're going to need more metadata blocks than 20894e7ea81dSJan Kara * previously reserved. However we must not fail because we're in 20904e7ea81dSJan Kara * writeback and there is nothing we can do about it so it might result 20914e7ea81dSJan Kara * in data loss. So use reserved blocks to allocate metadata if 20924e7ea81dSJan Kara * possible. 20934e7ea81dSJan Kara * 2094754cfed6STheodore Ts'o * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if 2095754cfed6STheodore Ts'o * the blocks in question are delalloc blocks. This indicates 2096754cfed6STheodore Ts'o * that the blocks and quotas has already been checked when 2097754cfed6STheodore Ts'o * the data was copied into the page cache. 20984e7ea81dSJan Kara */ 20994e7ea81dSJan Kara get_blocks_flags = EXT4_GET_BLOCKS_CREATE | 21004e7ea81dSJan Kara EXT4_GET_BLOCKS_METADATA_NOFAIL; 2101090f32eeSLukas Czerner dioread_nolock = ext4_should_dioread_nolock(inode); 2102090f32eeSLukas Czerner if (dioread_nolock) 21034e7ea81dSJan Kara get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT; 21044e7ea81dSJan Kara if (map->m_flags & (1 << BH_Delay)) 21054e7ea81dSJan Kara get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE; 21064e7ea81dSJan Kara 21074e7ea81dSJan Kara err = ext4_map_blocks(handle, inode, map, get_blocks_flags); 21084e7ea81dSJan Kara if (err < 0) 21094e7ea81dSJan Kara return err; 2110090f32eeSLukas Czerner if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) { 21116b523df4SJan Kara if (!mpd->io_submit.io_end->handle && 21126b523df4SJan Kara ext4_handle_valid(handle)) { 21136b523df4SJan Kara mpd->io_submit.io_end->handle = handle->h_rsv_handle; 21146b523df4SJan Kara handle->h_rsv_handle = NULL; 21156b523df4SJan Kara } 21163613d228SJan Kara ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end); 21176b523df4SJan Kara } 21184e7ea81dSJan Kara 21194e7ea81dSJan Kara BUG_ON(map->m_len == 0); 21204e7ea81dSJan Kara if (map->m_flags & EXT4_MAP_NEW) { 21214e7ea81dSJan Kara struct block_device *bdev = inode->i_sb->s_bdev; 21224e7ea81dSJan Kara int i; 21234e7ea81dSJan Kara 21244e7ea81dSJan Kara for (i = 0; i < map->m_len; i++) 21254e7ea81dSJan Kara unmap_underlying_metadata(bdev, map->m_pblk + i); 21264e7ea81dSJan Kara } 21274e7ea81dSJan Kara return 0; 21284e7ea81dSJan Kara } 21294e7ea81dSJan Kara 21304e7ea81dSJan Kara /* 21314e7ea81dSJan Kara * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length 21324e7ea81dSJan Kara * mpd->len and submit pages underlying it for IO 21334e7ea81dSJan Kara * 21344e7ea81dSJan Kara * @handle - handle for journal operations 21354e7ea81dSJan Kara * @mpd - extent to map 21367534e854SJan Kara * @give_up_on_write - we set this to true iff there is a fatal error and there 21377534e854SJan Kara * is no hope of writing the data. The caller should discard 21387534e854SJan Kara * dirty pages to avoid infinite loops. 21394e7ea81dSJan Kara * 21404e7ea81dSJan Kara * The function maps extent starting at mpd->lblk of length mpd->len. If it is 21414e7ea81dSJan Kara * delayed, blocks are allocated, if it is unwritten, we may need to convert 21424e7ea81dSJan Kara * them to initialized or split the described range from larger unwritten 21434e7ea81dSJan Kara * extent. Note that we need not map all the described range since allocation 21444e7ea81dSJan Kara * can return less blocks or the range is covered by more unwritten extents. We 21454e7ea81dSJan Kara * cannot map more because we are limited by reserved transaction credits. On 21464e7ea81dSJan Kara * the other hand we always make sure that the last touched page is fully 21474e7ea81dSJan Kara * mapped so that it can be written out (and thus forward progress is 21484e7ea81dSJan Kara * guaranteed). After mapping we submit all mapped pages for IO. 21494e7ea81dSJan Kara */ 21504e7ea81dSJan Kara static int mpage_map_and_submit_extent(handle_t *handle, 2151cb530541STheodore Ts'o struct mpage_da_data *mpd, 2152cb530541STheodore Ts'o bool *give_up_on_write) 21534e7ea81dSJan Kara { 21544e7ea81dSJan Kara struct inode *inode = mpd->inode; 21554e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 21564e7ea81dSJan Kara int err; 21574e7ea81dSJan Kara loff_t disksize; 21586603120eSDmitry Monakhov int progress = 0; 21594e7ea81dSJan Kara 21604e7ea81dSJan Kara mpd->io_submit.io_end->offset = 21614e7ea81dSJan Kara ((loff_t)map->m_lblk) << inode->i_blkbits; 216227d7c4edSJan Kara do { 21634e7ea81dSJan Kara err = mpage_map_one_extent(handle, mpd); 21644e7ea81dSJan Kara if (err < 0) { 21654e7ea81dSJan Kara struct super_block *sb = inode->i_sb; 21664e7ea81dSJan Kara 2167cb530541STheodore Ts'o if (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED) 2168cb530541STheodore Ts'o goto invalidate_dirty_pages; 21694e7ea81dSJan Kara /* 2170cb530541STheodore Ts'o * Let the uper layers retry transient errors. 2171cb530541STheodore Ts'o * In the case of ENOSPC, if ext4_count_free_blocks() 2172cb530541STheodore Ts'o * is non-zero, a commit should free up blocks. 21734e7ea81dSJan Kara */ 2174cb530541STheodore Ts'o if ((err == -ENOMEM) || 21756603120eSDmitry Monakhov (err == -ENOSPC && ext4_count_free_clusters(sb))) { 21766603120eSDmitry Monakhov if (progress) 21776603120eSDmitry Monakhov goto update_disksize; 2178cb530541STheodore Ts'o return err; 21796603120eSDmitry Monakhov } 21804e7ea81dSJan Kara ext4_msg(sb, KERN_CRIT, 21814e7ea81dSJan Kara "Delayed block allocation failed for " 21824e7ea81dSJan Kara "inode %lu at logical offset %llu with" 21834e7ea81dSJan Kara " max blocks %u with error %d", 21844e7ea81dSJan Kara inode->i_ino, 21854e7ea81dSJan Kara (unsigned long long)map->m_lblk, 2186cb530541STheodore Ts'o (unsigned)map->m_len, -err); 21874e7ea81dSJan Kara ext4_msg(sb, KERN_CRIT, 21884e7ea81dSJan Kara "This should not happen!! Data will " 21894e7ea81dSJan Kara "be lost\n"); 21904e7ea81dSJan Kara if (err == -ENOSPC) 21914e7ea81dSJan Kara ext4_print_free_blocks(inode); 2192cb530541STheodore Ts'o invalidate_dirty_pages: 2193cb530541STheodore Ts'o *give_up_on_write = true; 21944e7ea81dSJan Kara return err; 21954e7ea81dSJan Kara } 21966603120eSDmitry Monakhov progress = 1; 21974e7ea81dSJan Kara /* 21984e7ea81dSJan Kara * Update buffer state, submit mapped pages, and get us new 21994e7ea81dSJan Kara * extent to map 22004e7ea81dSJan Kara */ 22014e7ea81dSJan Kara err = mpage_map_and_submit_buffers(mpd); 22024e7ea81dSJan Kara if (err < 0) 22036603120eSDmitry Monakhov goto update_disksize; 220427d7c4edSJan Kara } while (map->m_len); 22054e7ea81dSJan Kara 22066603120eSDmitry Monakhov update_disksize: 2207622cad13STheodore Ts'o /* 2208622cad13STheodore Ts'o * Update on-disk size after IO is submitted. Races with 2209622cad13STheodore Ts'o * truncate are avoided by checking i_size under i_data_sem. 2210622cad13STheodore Ts'o */ 22114e7ea81dSJan Kara disksize = ((loff_t)mpd->first_page) << PAGE_CACHE_SHIFT; 22124e7ea81dSJan Kara if (disksize > EXT4_I(inode)->i_disksize) { 22134e7ea81dSJan Kara int err2; 2214622cad13STheodore Ts'o loff_t i_size; 22154e7ea81dSJan Kara 2216622cad13STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 2217622cad13STheodore Ts'o i_size = i_size_read(inode); 2218622cad13STheodore Ts'o if (disksize > i_size) 2219622cad13STheodore Ts'o disksize = i_size; 2220622cad13STheodore Ts'o if (disksize > EXT4_I(inode)->i_disksize) 2221622cad13STheodore Ts'o EXT4_I(inode)->i_disksize = disksize; 22224e7ea81dSJan Kara err2 = ext4_mark_inode_dirty(handle, inode); 2223622cad13STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 22244e7ea81dSJan Kara if (err2) 22254e7ea81dSJan Kara ext4_error(inode->i_sb, 22264e7ea81dSJan Kara "Failed to mark inode %lu dirty", 22274e7ea81dSJan Kara inode->i_ino); 22284e7ea81dSJan Kara if (!err) 22294e7ea81dSJan Kara err = err2; 22304e7ea81dSJan Kara } 22314e7ea81dSJan Kara return err; 22324e7ea81dSJan Kara } 22334e7ea81dSJan Kara 22344e7ea81dSJan Kara /* 2235fffb2739SJan Kara * Calculate the total number of credits to reserve for one writepages 223620970ba6STheodore Ts'o * iteration. This is called from ext4_writepages(). We map an extent of 2237fffb2739SJan Kara * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping 2238fffb2739SJan Kara * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN + 2239fffb2739SJan Kara * bpp - 1 blocks in bpp different extents. 2240525f4ed8SMingming Cao */ 2241fffb2739SJan Kara static int ext4_da_writepages_trans_blocks(struct inode *inode) 2242fffb2739SJan Kara { 2243fffb2739SJan Kara int bpp = ext4_journal_blocks_per_page(inode); 2244525f4ed8SMingming Cao 2245fffb2739SJan Kara return ext4_meta_trans_blocks(inode, 2246fffb2739SJan Kara MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp); 2247525f4ed8SMingming Cao } 224861628a3fSMingming Cao 22498e48dcfbSTheodore Ts'o /* 22504e7ea81dSJan Kara * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages 22514e7ea81dSJan Kara * and underlying extent to map 22524e7ea81dSJan Kara * 22534e7ea81dSJan Kara * @mpd - where to look for pages 22544e7ea81dSJan Kara * 22554e7ea81dSJan Kara * Walk dirty pages in the mapping. If they are fully mapped, submit them for 22564e7ea81dSJan Kara * IO immediately. When we find a page which isn't mapped we start accumulating 22574e7ea81dSJan Kara * extent of buffers underlying these pages that needs mapping (formed by 22584e7ea81dSJan Kara * either delayed or unwritten buffers). We also lock the pages containing 22594e7ea81dSJan Kara * these buffers. The extent found is returned in @mpd structure (starting at 22604e7ea81dSJan Kara * mpd->lblk with length mpd->len blocks). 22614e7ea81dSJan Kara * 22624e7ea81dSJan Kara * Note that this function can attach bios to one io_end structure which are 22634e7ea81dSJan Kara * neither logically nor physically contiguous. Although it may seem as an 22644e7ea81dSJan Kara * unnecessary complication, it is actually inevitable in blocksize < pagesize 22654e7ea81dSJan Kara * case as we need to track IO to all buffers underlying a page in one io_end. 22668e48dcfbSTheodore Ts'o */ 22674e7ea81dSJan Kara static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd) 22688e48dcfbSTheodore Ts'o { 22694e7ea81dSJan Kara struct address_space *mapping = mpd->inode->i_mapping; 22708e48dcfbSTheodore Ts'o struct pagevec pvec; 22714f01b02cSTheodore Ts'o unsigned int nr_pages; 2272aeac589aSMing Lei long left = mpd->wbc->nr_to_write; 22734e7ea81dSJan Kara pgoff_t index = mpd->first_page; 22744e7ea81dSJan Kara pgoff_t end = mpd->last_page; 22754e7ea81dSJan Kara int tag; 22764e7ea81dSJan Kara int i, err = 0; 22774e7ea81dSJan Kara int blkbits = mpd->inode->i_blkbits; 22784e7ea81dSJan Kara ext4_lblk_t lblk; 22794e7ea81dSJan Kara struct buffer_head *head; 22808e48dcfbSTheodore Ts'o 22814e7ea81dSJan Kara if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages) 22825b41d924SEric Sandeen tag = PAGECACHE_TAG_TOWRITE; 22835b41d924SEric Sandeen else 22845b41d924SEric Sandeen tag = PAGECACHE_TAG_DIRTY; 22855b41d924SEric Sandeen 22864e7ea81dSJan Kara pagevec_init(&pvec, 0); 22874e7ea81dSJan Kara mpd->map.m_len = 0; 22884e7ea81dSJan Kara mpd->next_page = index; 22894f01b02cSTheodore Ts'o while (index <= end) { 22905b41d924SEric Sandeen nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag, 22918e48dcfbSTheodore Ts'o min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1); 22928e48dcfbSTheodore Ts'o if (nr_pages == 0) 22934e7ea81dSJan Kara goto out; 22948e48dcfbSTheodore Ts'o 22958e48dcfbSTheodore Ts'o for (i = 0; i < nr_pages; i++) { 22968e48dcfbSTheodore Ts'o struct page *page = pvec.pages[i]; 22978e48dcfbSTheodore Ts'o 22988e48dcfbSTheodore Ts'o /* 22998e48dcfbSTheodore Ts'o * At this point, the page may be truncated or 23008e48dcfbSTheodore Ts'o * invalidated (changing page->mapping to NULL), or 23018e48dcfbSTheodore Ts'o * even swizzled back from swapper_space to tmpfs file 23028e48dcfbSTheodore Ts'o * mapping. However, page->index will not change 23038e48dcfbSTheodore Ts'o * because we have a reference on the page. 23048e48dcfbSTheodore Ts'o */ 23054f01b02cSTheodore Ts'o if (page->index > end) 23064f01b02cSTheodore Ts'o goto out; 23078e48dcfbSTheodore Ts'o 2308aeac589aSMing Lei /* 2309aeac589aSMing Lei * Accumulated enough dirty pages? This doesn't apply 2310aeac589aSMing Lei * to WB_SYNC_ALL mode. For integrity sync we have to 2311aeac589aSMing Lei * keep going because someone may be concurrently 2312aeac589aSMing Lei * dirtying pages, and we might have synced a lot of 2313aeac589aSMing Lei * newly appeared dirty pages, but have not synced all 2314aeac589aSMing Lei * of the old dirty pages. 2315aeac589aSMing Lei */ 2316aeac589aSMing Lei if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0) 2317aeac589aSMing Lei goto out; 2318aeac589aSMing Lei 23194e7ea81dSJan Kara /* If we can't merge this page, we are done. */ 23204e7ea81dSJan Kara if (mpd->map.m_len > 0 && mpd->next_page != page->index) 23214e7ea81dSJan Kara goto out; 232278aaced3STheodore Ts'o 23238e48dcfbSTheodore Ts'o lock_page(page); 23248e48dcfbSTheodore Ts'o /* 23254e7ea81dSJan Kara * If the page is no longer dirty, or its mapping no 23264e7ea81dSJan Kara * longer corresponds to inode we are writing (which 23274e7ea81dSJan Kara * means it has been truncated or invalidated), or the 23284e7ea81dSJan Kara * page is already under writeback and we are not doing 23294e7ea81dSJan Kara * a data integrity writeback, skip the page 23308e48dcfbSTheodore Ts'o */ 23314f01b02cSTheodore Ts'o if (!PageDirty(page) || 23324f01b02cSTheodore Ts'o (PageWriteback(page) && 23334e7ea81dSJan Kara (mpd->wbc->sync_mode == WB_SYNC_NONE)) || 23344f01b02cSTheodore Ts'o unlikely(page->mapping != mapping)) { 23358e48dcfbSTheodore Ts'o unlock_page(page); 23368e48dcfbSTheodore Ts'o continue; 23378e48dcfbSTheodore Ts'o } 23388e48dcfbSTheodore Ts'o 23398e48dcfbSTheodore Ts'o wait_on_page_writeback(page); 23408e48dcfbSTheodore Ts'o BUG_ON(PageWriteback(page)); 23418e48dcfbSTheodore Ts'o 23424e7ea81dSJan Kara if (mpd->map.m_len == 0) 23438eb9e5ceSTheodore Ts'o mpd->first_page = page->index; 23448eb9e5ceSTheodore Ts'o mpd->next_page = page->index + 1; 2345f8bec370SJan Kara /* Add all dirty buffers to mpd */ 23464e7ea81dSJan Kara lblk = ((ext4_lblk_t)page->index) << 23474e7ea81dSJan Kara (PAGE_CACHE_SHIFT - blkbits); 23488eb9e5ceSTheodore Ts'o head = page_buffers(page); 23495f1132b2SJan Kara err = mpage_process_page_bufs(mpd, head, head, lblk); 23505f1132b2SJan Kara if (err <= 0) 23514e7ea81dSJan Kara goto out; 23525f1132b2SJan Kara err = 0; 2353aeac589aSMing Lei left--; 23548e48dcfbSTheodore Ts'o } 23558e48dcfbSTheodore Ts'o pagevec_release(&pvec); 23568e48dcfbSTheodore Ts'o cond_resched(); 23578e48dcfbSTheodore Ts'o } 23584f01b02cSTheodore Ts'o return 0; 23598eb9e5ceSTheodore Ts'o out: 23608eb9e5ceSTheodore Ts'o pagevec_release(&pvec); 23614e7ea81dSJan Kara return err; 23628e48dcfbSTheodore Ts'o } 23638e48dcfbSTheodore Ts'o 236420970ba6STheodore Ts'o static int __writepage(struct page *page, struct writeback_control *wbc, 236520970ba6STheodore Ts'o void *data) 236620970ba6STheodore Ts'o { 236720970ba6STheodore Ts'o struct address_space *mapping = data; 236820970ba6STheodore Ts'o int ret = ext4_writepage(page, wbc); 236920970ba6STheodore Ts'o mapping_set_error(mapping, ret); 237020970ba6STheodore Ts'o return ret; 237120970ba6STheodore Ts'o } 237220970ba6STheodore Ts'o 237320970ba6STheodore Ts'o static int ext4_writepages(struct address_space *mapping, 237464769240SAlex Tomas struct writeback_control *wbc) 237564769240SAlex Tomas { 23764e7ea81dSJan Kara pgoff_t writeback_index = 0; 23774e7ea81dSJan Kara long nr_to_write = wbc->nr_to_write; 237822208dedSAneesh Kumar K.V int range_whole = 0; 23794e7ea81dSJan Kara int cycled = 1; 238061628a3fSMingming Cao handle_t *handle = NULL; 2381df22291fSAneesh Kumar K.V struct mpage_da_data mpd; 23825e745b04SAneesh Kumar K.V struct inode *inode = mapping->host; 23836b523df4SJan Kara int needed_blocks, rsv_blocks = 0, ret = 0; 23845e745b04SAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb); 23854e7ea81dSJan Kara bool done; 23861bce63d1SShaohua Li struct blk_plug plug; 2387cb530541STheodore Ts'o bool give_up_on_write = false; 238861628a3fSMingming Cao 238920970ba6STheodore Ts'o trace_ext4_writepages(inode, wbc); 2390ba80b101STheodore Ts'o 239161628a3fSMingming Cao /* 239261628a3fSMingming Cao * No pages to write? This is mainly a kludge to avoid starting 239361628a3fSMingming Cao * a transaction for special inodes like journal inode on last iput() 239461628a3fSMingming Cao * because that could violate lock ordering on umount 239561628a3fSMingming Cao */ 2396a1d6cc56SAneesh Kumar K.V if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) 2397bbf023c7SMing Lei goto out_writepages; 23982a21e37eSTheodore Ts'o 239920970ba6STheodore Ts'o if (ext4_should_journal_data(inode)) { 240020970ba6STheodore Ts'o struct blk_plug plug; 240120970ba6STheodore Ts'o 240220970ba6STheodore Ts'o blk_start_plug(&plug); 240320970ba6STheodore Ts'o ret = write_cache_pages(mapping, wbc, __writepage, mapping); 240420970ba6STheodore Ts'o blk_finish_plug(&plug); 2405bbf023c7SMing Lei goto out_writepages; 240620970ba6STheodore Ts'o } 240720970ba6STheodore Ts'o 24082a21e37eSTheodore Ts'o /* 24092a21e37eSTheodore Ts'o * If the filesystem has aborted, it is read-only, so return 24102a21e37eSTheodore Ts'o * right away instead of dumping stack traces later on that 24112a21e37eSTheodore Ts'o * will obscure the real source of the problem. We test 24124ab2f15bSTheodore Ts'o * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because 24132a21e37eSTheodore Ts'o * the latter could be true if the filesystem is mounted 241420970ba6STheodore Ts'o * read-only, and in that case, ext4_writepages should 24152a21e37eSTheodore Ts'o * *never* be called, so if that ever happens, we would want 24162a21e37eSTheodore Ts'o * the stack trace. 24172a21e37eSTheodore Ts'o */ 2418bbf023c7SMing Lei if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) { 2419bbf023c7SMing Lei ret = -EROFS; 2420bbf023c7SMing Lei goto out_writepages; 2421bbf023c7SMing Lei } 24222a21e37eSTheodore Ts'o 24236b523df4SJan Kara if (ext4_should_dioread_nolock(inode)) { 24246b523df4SJan Kara /* 24256b523df4SJan Kara * We may need to convert up to one extent per block in 24266b523df4SJan Kara * the page and we may dirty the inode. 24276b523df4SJan Kara */ 24286b523df4SJan Kara rsv_blocks = 1 + (PAGE_CACHE_SIZE >> inode->i_blkbits); 24296b523df4SJan Kara } 24306b523df4SJan Kara 24314e7ea81dSJan Kara /* 24324e7ea81dSJan Kara * If we have inline data and arrive here, it means that 24334e7ea81dSJan Kara * we will soon create the block for the 1st page, so 24344e7ea81dSJan Kara * we'd better clear the inline data here. 24354e7ea81dSJan Kara */ 24364e7ea81dSJan Kara if (ext4_has_inline_data(inode)) { 24374e7ea81dSJan Kara /* Just inode will be modified... */ 24384e7ea81dSJan Kara handle = ext4_journal_start(inode, EXT4_HT_INODE, 1); 24394e7ea81dSJan Kara if (IS_ERR(handle)) { 24404e7ea81dSJan Kara ret = PTR_ERR(handle); 24414e7ea81dSJan Kara goto out_writepages; 24424e7ea81dSJan Kara } 24434e7ea81dSJan Kara BUG_ON(ext4_test_inode_state(inode, 24444e7ea81dSJan Kara EXT4_STATE_MAY_INLINE_DATA)); 24454e7ea81dSJan Kara ext4_destroy_inline_data(handle, inode); 24464e7ea81dSJan Kara ext4_journal_stop(handle); 24474e7ea81dSJan Kara } 24484e7ea81dSJan Kara 244922208dedSAneesh Kumar K.V if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX) 245022208dedSAneesh Kumar K.V range_whole = 1; 245161628a3fSMingming Cao 24522acf2c26SAneesh Kumar K.V if (wbc->range_cyclic) { 24534e7ea81dSJan Kara writeback_index = mapping->writeback_index; 24544e7ea81dSJan Kara if (writeback_index) 24552acf2c26SAneesh Kumar K.V cycled = 0; 24564e7ea81dSJan Kara mpd.first_page = writeback_index; 24574e7ea81dSJan Kara mpd.last_page = -1; 24585b41d924SEric Sandeen } else { 24594e7ea81dSJan Kara mpd.first_page = wbc->range_start >> PAGE_CACHE_SHIFT; 24604e7ea81dSJan Kara mpd.last_page = wbc->range_end >> PAGE_CACHE_SHIFT; 24615b41d924SEric Sandeen } 2462a1d6cc56SAneesh Kumar K.V 24634e7ea81dSJan Kara mpd.inode = inode; 24644e7ea81dSJan Kara mpd.wbc = wbc; 24654e7ea81dSJan Kara ext4_io_submit_init(&mpd.io_submit, wbc); 24662acf2c26SAneesh Kumar K.V retry: 24676e6938b6SWu Fengguang if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages) 24684e7ea81dSJan Kara tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page); 24694e7ea81dSJan Kara done = false; 24701bce63d1SShaohua Li blk_start_plug(&plug); 24714e7ea81dSJan Kara while (!done && mpd.first_page <= mpd.last_page) { 24724e7ea81dSJan Kara /* For each extent of pages we use new io_end */ 24734e7ea81dSJan Kara mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL); 24744e7ea81dSJan Kara if (!mpd.io_submit.io_end) { 24754e7ea81dSJan Kara ret = -ENOMEM; 24764e7ea81dSJan Kara break; 24774e7ea81dSJan Kara } 2478a1d6cc56SAneesh Kumar K.V 2479a1d6cc56SAneesh Kumar K.V /* 24804e7ea81dSJan Kara * We have two constraints: We find one extent to map and we 24814e7ea81dSJan Kara * must always write out whole page (makes a difference when 24824e7ea81dSJan Kara * blocksize < pagesize) so that we don't block on IO when we 24834e7ea81dSJan Kara * try to write out the rest of the page. Journalled mode is 24844e7ea81dSJan Kara * not supported by delalloc. 2485a1d6cc56SAneesh Kumar K.V */ 2486a1d6cc56SAneesh Kumar K.V BUG_ON(ext4_should_journal_data(inode)); 2487525f4ed8SMingming Cao needed_blocks = ext4_da_writepages_trans_blocks(inode); 2488a1d6cc56SAneesh Kumar K.V 248961628a3fSMingming Cao /* start a new transaction */ 24906b523df4SJan Kara handle = ext4_journal_start_with_reserve(inode, 24916b523df4SJan Kara EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks); 249261628a3fSMingming Cao if (IS_ERR(handle)) { 249361628a3fSMingming Cao ret = PTR_ERR(handle); 24941693918eSTheodore Ts'o ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: " 2495fbe845ddSCurt Wohlgemuth "%ld pages, ino %lu; err %d", __func__, 2496a1d6cc56SAneesh Kumar K.V wbc->nr_to_write, inode->i_ino, ret); 24974e7ea81dSJan Kara /* Release allocated io_end */ 24984e7ea81dSJan Kara ext4_put_io_end(mpd.io_submit.io_end); 24994e7ea81dSJan Kara break; 250061628a3fSMingming Cao } 2501f63e6005STheodore Ts'o 25024e7ea81dSJan Kara trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc); 25034e7ea81dSJan Kara ret = mpage_prepare_extent_to_map(&mpd); 25044e7ea81dSJan Kara if (!ret) { 25054e7ea81dSJan Kara if (mpd.map.m_len) 2506cb530541STheodore Ts'o ret = mpage_map_and_submit_extent(handle, &mpd, 2507cb530541STheodore Ts'o &give_up_on_write); 25084e7ea81dSJan Kara else { 2509f63e6005STheodore Ts'o /* 25104e7ea81dSJan Kara * We scanned the whole range (or exhausted 25114e7ea81dSJan Kara * nr_to_write), submitted what was mapped and 25124e7ea81dSJan Kara * didn't find anything needing mapping. We are 25134e7ea81dSJan Kara * done. 2514f63e6005STheodore Ts'o */ 25154e7ea81dSJan Kara done = true; 2516f63e6005STheodore Ts'o } 25174e7ea81dSJan Kara } 251861628a3fSMingming Cao ext4_journal_stop(handle); 25194e7ea81dSJan Kara /* Submit prepared bio */ 25204e7ea81dSJan Kara ext4_io_submit(&mpd.io_submit); 25214e7ea81dSJan Kara /* Unlock pages we didn't use */ 2522cb530541STheodore Ts'o mpage_release_unused_pages(&mpd, give_up_on_write); 25234e7ea81dSJan Kara /* Drop our io_end reference we got from init */ 25244e7ea81dSJan Kara ext4_put_io_end(mpd.io_submit.io_end); 2525df22291fSAneesh Kumar K.V 25264e7ea81dSJan Kara if (ret == -ENOSPC && sbi->s_journal) { 25274e7ea81dSJan Kara /* 25284e7ea81dSJan Kara * Commit the transaction which would 252922208dedSAneesh Kumar K.V * free blocks released in the transaction 253022208dedSAneesh Kumar K.V * and try again 253122208dedSAneesh Kumar K.V */ 2532df22291fSAneesh Kumar K.V jbd2_journal_force_commit_nested(sbi->s_journal); 253322208dedSAneesh Kumar K.V ret = 0; 25344e7ea81dSJan Kara continue; 25354e7ea81dSJan Kara } 25364e7ea81dSJan Kara /* Fatal error - ENOMEM, EIO... */ 25374e7ea81dSJan Kara if (ret) 253861628a3fSMingming Cao break; 253961628a3fSMingming Cao } 25401bce63d1SShaohua Li blk_finish_plug(&plug); 25419c12a831SJan Kara if (!ret && !cycled && wbc->nr_to_write > 0) { 25422acf2c26SAneesh Kumar K.V cycled = 1; 25434e7ea81dSJan Kara mpd.last_page = writeback_index - 1; 25444e7ea81dSJan Kara mpd.first_page = 0; 25452acf2c26SAneesh Kumar K.V goto retry; 25462acf2c26SAneesh Kumar K.V } 254761628a3fSMingming Cao 254822208dedSAneesh Kumar K.V /* Update index */ 254922208dedSAneesh Kumar K.V if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0)) 255022208dedSAneesh Kumar K.V /* 25514e7ea81dSJan Kara * Set the writeback_index so that range_cyclic 255222208dedSAneesh Kumar K.V * mode will write it back later 255322208dedSAneesh Kumar K.V */ 25544e7ea81dSJan Kara mapping->writeback_index = mpd.first_page; 2555a1d6cc56SAneesh Kumar K.V 255661628a3fSMingming Cao out_writepages: 255720970ba6STheodore Ts'o trace_ext4_writepages_result(inode, wbc, ret, 25584e7ea81dSJan Kara nr_to_write - wbc->nr_to_write); 255961628a3fSMingming Cao return ret; 256064769240SAlex Tomas } 256164769240SAlex Tomas 256279f0be8dSAneesh Kumar K.V static int ext4_nonda_switch(struct super_block *sb) 256379f0be8dSAneesh Kumar K.V { 25645c1ff336SEric Whitney s64 free_clusters, dirty_clusters; 256579f0be8dSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(sb); 256679f0be8dSAneesh Kumar K.V 256779f0be8dSAneesh Kumar K.V /* 256879f0be8dSAneesh Kumar K.V * switch to non delalloc mode if we are running low 256979f0be8dSAneesh Kumar K.V * on free block. The free block accounting via percpu 2570179f7ebfSEric Dumazet * counters can get slightly wrong with percpu_counter_batch getting 257179f0be8dSAneesh Kumar K.V * accumulated on each CPU without updating global counters 257279f0be8dSAneesh Kumar K.V * Delalloc need an accurate free block accounting. So switch 257379f0be8dSAneesh Kumar K.V * to non delalloc when we are near to error range. 257479f0be8dSAneesh Kumar K.V */ 25755c1ff336SEric Whitney free_clusters = 25765c1ff336SEric Whitney percpu_counter_read_positive(&sbi->s_freeclusters_counter); 25775c1ff336SEric Whitney dirty_clusters = 25785c1ff336SEric Whitney percpu_counter_read_positive(&sbi->s_dirtyclusters_counter); 257900d4e736STheodore Ts'o /* 258000d4e736STheodore Ts'o * Start pushing delalloc when 1/2 of free blocks are dirty. 258100d4e736STheodore Ts'o */ 25825c1ff336SEric Whitney if (dirty_clusters && (free_clusters < 2 * dirty_clusters)) 258310ee27a0SMiao Xie try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE); 258400d4e736STheodore Ts'o 25855c1ff336SEric Whitney if (2 * free_clusters < 3 * dirty_clusters || 25865c1ff336SEric Whitney free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) { 258779f0be8dSAneesh Kumar K.V /* 2588c8afb446SEric Sandeen * free block count is less than 150% of dirty blocks 2589c8afb446SEric Sandeen * or free blocks is less than watermark 259079f0be8dSAneesh Kumar K.V */ 259179f0be8dSAneesh Kumar K.V return 1; 259279f0be8dSAneesh Kumar K.V } 259379f0be8dSAneesh Kumar K.V return 0; 259479f0be8dSAneesh Kumar K.V } 259579f0be8dSAneesh Kumar K.V 25960ff8947fSEric Sandeen /* We always reserve for an inode update; the superblock could be there too */ 25970ff8947fSEric Sandeen static int ext4_da_write_credits(struct inode *inode, loff_t pos, unsigned len) 25980ff8947fSEric Sandeen { 25990ff8947fSEric Sandeen if (likely(EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, 26000ff8947fSEric Sandeen EXT4_FEATURE_RO_COMPAT_LARGE_FILE))) 26010ff8947fSEric Sandeen return 1; 26020ff8947fSEric Sandeen 26030ff8947fSEric Sandeen if (pos + len <= 0x7fffffffULL) 26040ff8947fSEric Sandeen return 1; 26050ff8947fSEric Sandeen 26060ff8947fSEric Sandeen /* We might need to update the superblock to set LARGE_FILE */ 26070ff8947fSEric Sandeen return 2; 26080ff8947fSEric Sandeen } 26090ff8947fSEric Sandeen 261064769240SAlex Tomas static int ext4_da_write_begin(struct file *file, struct address_space *mapping, 261164769240SAlex Tomas loff_t pos, unsigned len, unsigned flags, 261264769240SAlex Tomas struct page **pagep, void **fsdata) 261364769240SAlex Tomas { 261472b8ab9dSEric Sandeen int ret, retries = 0; 261564769240SAlex Tomas struct page *page; 261664769240SAlex Tomas pgoff_t index; 261764769240SAlex Tomas struct inode *inode = mapping->host; 261864769240SAlex Tomas handle_t *handle; 261964769240SAlex Tomas 262064769240SAlex Tomas index = pos >> PAGE_CACHE_SHIFT; 262179f0be8dSAneesh Kumar K.V 262279f0be8dSAneesh Kumar K.V if (ext4_nonda_switch(inode->i_sb)) { 262379f0be8dSAneesh Kumar K.V *fsdata = (void *)FALL_BACK_TO_NONDELALLOC; 262479f0be8dSAneesh Kumar K.V return ext4_write_begin(file, mapping, pos, 262579f0be8dSAneesh Kumar K.V len, flags, pagep, fsdata); 262679f0be8dSAneesh Kumar K.V } 262779f0be8dSAneesh Kumar K.V *fsdata = (void *)0; 26289bffad1eSTheodore Ts'o trace_ext4_da_write_begin(inode, pos, len, flags); 26299c3569b5STao Ma 26309c3569b5STao Ma if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) { 26319c3569b5STao Ma ret = ext4_da_write_inline_data_begin(mapping, inode, 26329c3569b5STao Ma pos, len, flags, 26339c3569b5STao Ma pagep, fsdata); 26349c3569b5STao Ma if (ret < 0) 263547564bfbSTheodore Ts'o return ret; 263647564bfbSTheodore Ts'o if (ret == 1) 263747564bfbSTheodore Ts'o return 0; 26389c3569b5STao Ma } 26399c3569b5STao Ma 264047564bfbSTheodore Ts'o /* 264147564bfbSTheodore Ts'o * grab_cache_page_write_begin() can take a long time if the 264247564bfbSTheodore Ts'o * system is thrashing due to memory pressure, or if the page 264347564bfbSTheodore Ts'o * is being written back. So grab it first before we start 264447564bfbSTheodore Ts'o * the transaction handle. This also allows us to allocate 264547564bfbSTheodore Ts'o * the page (if needed) without using GFP_NOFS. 264647564bfbSTheodore Ts'o */ 264747564bfbSTheodore Ts'o retry_grab: 264847564bfbSTheodore Ts'o page = grab_cache_page_write_begin(mapping, index, flags); 264947564bfbSTheodore Ts'o if (!page) 265047564bfbSTheodore Ts'o return -ENOMEM; 265147564bfbSTheodore Ts'o unlock_page(page); 265247564bfbSTheodore Ts'o 265364769240SAlex Tomas /* 265464769240SAlex Tomas * With delayed allocation, we don't log the i_disksize update 265564769240SAlex Tomas * if there is delayed block allocation. But we still need 265664769240SAlex Tomas * to journalling the i_disksize update if writes to the end 265764769240SAlex Tomas * of file which has an already mapped buffer. 265864769240SAlex Tomas */ 265947564bfbSTheodore Ts'o retry_journal: 26600ff8947fSEric Sandeen handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 26610ff8947fSEric Sandeen ext4_da_write_credits(inode, pos, len)); 266264769240SAlex Tomas if (IS_ERR(handle)) { 266347564bfbSTheodore Ts'o page_cache_release(page); 266447564bfbSTheodore Ts'o return PTR_ERR(handle); 266564769240SAlex Tomas } 266664769240SAlex Tomas 266747564bfbSTheodore Ts'o lock_page(page); 266847564bfbSTheodore Ts'o if (page->mapping != mapping) { 266947564bfbSTheodore Ts'o /* The page got truncated from under us */ 267047564bfbSTheodore Ts'o unlock_page(page); 267147564bfbSTheodore Ts'o page_cache_release(page); 2672d5a0d4f7SEric Sandeen ext4_journal_stop(handle); 267347564bfbSTheodore Ts'o goto retry_grab; 2674d5a0d4f7SEric Sandeen } 267547564bfbSTheodore Ts'o /* In case writeback began while the page was unlocked */ 26767afe5aa5SDmitry Monakhov wait_for_stable_page(page); 267764769240SAlex Tomas 26782058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION 26792058f83aSMichael Halcrow ret = ext4_block_write_begin(page, pos, len, 26802058f83aSMichael Halcrow ext4_da_get_block_prep); 26812058f83aSMichael Halcrow #else 26826e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep); 26832058f83aSMichael Halcrow #endif 268464769240SAlex Tomas if (ret < 0) { 268564769240SAlex Tomas unlock_page(page); 268664769240SAlex Tomas ext4_journal_stop(handle); 2687ae4d5372SAneesh Kumar K.V /* 2688ae4d5372SAneesh Kumar K.V * block_write_begin may have instantiated a few blocks 2689ae4d5372SAneesh Kumar K.V * outside i_size. Trim these off again. Don't need 2690ae4d5372SAneesh Kumar K.V * i_size_read because we hold i_mutex. 2691ae4d5372SAneesh Kumar K.V */ 2692ae4d5372SAneesh Kumar K.V if (pos + len > inode->i_size) 2693b9a4207dSJan Kara ext4_truncate_failed_write(inode); 269447564bfbSTheodore Ts'o 269547564bfbSTheodore Ts'o if (ret == -ENOSPC && 269647564bfbSTheodore Ts'o ext4_should_retry_alloc(inode->i_sb, &retries)) 269747564bfbSTheodore Ts'o goto retry_journal; 269847564bfbSTheodore Ts'o 269947564bfbSTheodore Ts'o page_cache_release(page); 270047564bfbSTheodore Ts'o return ret; 270164769240SAlex Tomas } 270264769240SAlex Tomas 270347564bfbSTheodore Ts'o *pagep = page; 270464769240SAlex Tomas return ret; 270564769240SAlex Tomas } 270664769240SAlex Tomas 2707632eaeabSMingming Cao /* 2708632eaeabSMingming Cao * Check if we should update i_disksize 2709632eaeabSMingming Cao * when write to the end of file but not require block allocation 2710632eaeabSMingming Cao */ 2711632eaeabSMingming Cao static int ext4_da_should_update_i_disksize(struct page *page, 2712632eaeabSMingming Cao unsigned long offset) 2713632eaeabSMingming Cao { 2714632eaeabSMingming Cao struct buffer_head *bh; 2715632eaeabSMingming Cao struct inode *inode = page->mapping->host; 2716632eaeabSMingming Cao unsigned int idx; 2717632eaeabSMingming Cao int i; 2718632eaeabSMingming Cao 2719632eaeabSMingming Cao bh = page_buffers(page); 2720632eaeabSMingming Cao idx = offset >> inode->i_blkbits; 2721632eaeabSMingming Cao 2722632eaeabSMingming Cao for (i = 0; i < idx; i++) 2723632eaeabSMingming Cao bh = bh->b_this_page; 2724632eaeabSMingming Cao 272529fa89d0SAneesh Kumar K.V if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh)) 2726632eaeabSMingming Cao return 0; 2727632eaeabSMingming Cao return 1; 2728632eaeabSMingming Cao } 2729632eaeabSMingming Cao 273064769240SAlex Tomas static int ext4_da_write_end(struct file *file, 273164769240SAlex Tomas struct address_space *mapping, 273264769240SAlex Tomas loff_t pos, unsigned len, unsigned copied, 273364769240SAlex Tomas struct page *page, void *fsdata) 273464769240SAlex Tomas { 273564769240SAlex Tomas struct inode *inode = mapping->host; 273664769240SAlex Tomas int ret = 0, ret2; 273764769240SAlex Tomas handle_t *handle = ext4_journal_current_handle(); 273864769240SAlex Tomas loff_t new_i_size; 2739632eaeabSMingming Cao unsigned long start, end; 274079f0be8dSAneesh Kumar K.V int write_mode = (int)(unsigned long)fsdata; 274179f0be8dSAneesh Kumar K.V 274274d553aaSTheodore Ts'o if (write_mode == FALL_BACK_TO_NONDELALLOC) 274374d553aaSTheodore Ts'o return ext4_write_end(file, mapping, pos, 274479f0be8dSAneesh Kumar K.V len, copied, page, fsdata); 2745632eaeabSMingming Cao 27469bffad1eSTheodore Ts'o trace_ext4_da_write_end(inode, pos, len, copied); 2747632eaeabSMingming Cao start = pos & (PAGE_CACHE_SIZE - 1); 2748632eaeabSMingming Cao end = start + copied - 1; 274964769240SAlex Tomas 275064769240SAlex Tomas /* 275164769240SAlex Tomas * generic_write_end() will run mark_inode_dirty() if i_size 275264769240SAlex Tomas * changes. So let's piggyback the i_disksize mark_inode_dirty 275364769240SAlex Tomas * into that. 275464769240SAlex Tomas */ 275564769240SAlex Tomas new_i_size = pos + copied; 2756ea51d132SAndrea Arcangeli if (copied && new_i_size > EXT4_I(inode)->i_disksize) { 27579c3569b5STao Ma if (ext4_has_inline_data(inode) || 27589c3569b5STao Ma ext4_da_should_update_i_disksize(page, end)) { 2759ee124d27SDmitry Monakhov ext4_update_i_disksize(inode, new_i_size); 2760cf17fea6SAneesh Kumar K.V /* We need to mark inode dirty even if 2761cf17fea6SAneesh Kumar K.V * new_i_size is less that inode->i_size 2762cf17fea6SAneesh Kumar K.V * bu greater than i_disksize.(hint delalloc) 2763cf17fea6SAneesh Kumar K.V */ 2764cf17fea6SAneesh Kumar K.V ext4_mark_inode_dirty(handle, inode); 2765632eaeabSMingming Cao } 2766632eaeabSMingming Cao } 27679c3569b5STao Ma 27689c3569b5STao Ma if (write_mode != CONVERT_INLINE_DATA && 27699c3569b5STao Ma ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) && 27709c3569b5STao Ma ext4_has_inline_data(inode)) 27719c3569b5STao Ma ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied, 27729c3569b5STao Ma page); 27739c3569b5STao Ma else 277464769240SAlex Tomas ret2 = generic_write_end(file, mapping, pos, len, copied, 277564769240SAlex Tomas page, fsdata); 27769c3569b5STao Ma 277764769240SAlex Tomas copied = ret2; 277864769240SAlex Tomas if (ret2 < 0) 277964769240SAlex Tomas ret = ret2; 278064769240SAlex Tomas ret2 = ext4_journal_stop(handle); 278164769240SAlex Tomas if (!ret) 278264769240SAlex Tomas ret = ret2; 278364769240SAlex Tomas 278464769240SAlex Tomas return ret ? ret : copied; 278564769240SAlex Tomas } 278664769240SAlex Tomas 2787d47992f8SLukas Czerner static void ext4_da_invalidatepage(struct page *page, unsigned int offset, 2788d47992f8SLukas Czerner unsigned int length) 278964769240SAlex Tomas { 279064769240SAlex Tomas /* 279164769240SAlex Tomas * Drop reserved blocks 279264769240SAlex Tomas */ 279364769240SAlex Tomas BUG_ON(!PageLocked(page)); 279464769240SAlex Tomas if (!page_has_buffers(page)) 279564769240SAlex Tomas goto out; 279664769240SAlex Tomas 2797ca99fdd2SLukas Czerner ext4_da_page_release_reservation(page, offset, length); 279864769240SAlex Tomas 279964769240SAlex Tomas out: 2800d47992f8SLukas Czerner ext4_invalidatepage(page, offset, length); 280164769240SAlex Tomas 280264769240SAlex Tomas return; 280364769240SAlex Tomas } 280464769240SAlex Tomas 2805ccd2506bSTheodore Ts'o /* 2806ccd2506bSTheodore Ts'o * Force all delayed allocation blocks to be allocated for a given inode. 2807ccd2506bSTheodore Ts'o */ 2808ccd2506bSTheodore Ts'o int ext4_alloc_da_blocks(struct inode *inode) 2809ccd2506bSTheodore Ts'o { 2810fb40ba0dSTheodore Ts'o trace_ext4_alloc_da_blocks(inode); 2811fb40ba0dSTheodore Ts'o 281271d4f7d0STheodore Ts'o if (!EXT4_I(inode)->i_reserved_data_blocks) 2813ccd2506bSTheodore Ts'o return 0; 2814ccd2506bSTheodore Ts'o 2815ccd2506bSTheodore Ts'o /* 2816ccd2506bSTheodore Ts'o * We do something simple for now. The filemap_flush() will 2817ccd2506bSTheodore Ts'o * also start triggering a write of the data blocks, which is 2818ccd2506bSTheodore Ts'o * not strictly speaking necessary (and for users of 2819ccd2506bSTheodore Ts'o * laptop_mode, not even desirable). However, to do otherwise 2820ccd2506bSTheodore Ts'o * would require replicating code paths in: 2821ccd2506bSTheodore Ts'o * 282220970ba6STheodore Ts'o * ext4_writepages() -> 2823ccd2506bSTheodore Ts'o * write_cache_pages() ---> (via passed in callback function) 2824ccd2506bSTheodore Ts'o * __mpage_da_writepage() --> 2825ccd2506bSTheodore Ts'o * mpage_add_bh_to_extent() 2826ccd2506bSTheodore Ts'o * mpage_da_map_blocks() 2827ccd2506bSTheodore Ts'o * 2828ccd2506bSTheodore Ts'o * The problem is that write_cache_pages(), located in 2829ccd2506bSTheodore Ts'o * mm/page-writeback.c, marks pages clean in preparation for 2830ccd2506bSTheodore Ts'o * doing I/O, which is not desirable if we're not planning on 2831ccd2506bSTheodore Ts'o * doing I/O at all. 2832ccd2506bSTheodore Ts'o * 2833ccd2506bSTheodore Ts'o * We could call write_cache_pages(), and then redirty all of 2834380cf090SWu Fengguang * the pages by calling redirty_page_for_writepage() but that 2835ccd2506bSTheodore Ts'o * would be ugly in the extreme. So instead we would need to 2836ccd2506bSTheodore Ts'o * replicate parts of the code in the above functions, 283725985edcSLucas De Marchi * simplifying them because we wouldn't actually intend to 2838ccd2506bSTheodore Ts'o * write out the pages, but rather only collect contiguous 2839ccd2506bSTheodore Ts'o * logical block extents, call the multi-block allocator, and 2840ccd2506bSTheodore Ts'o * then update the buffer heads with the block allocations. 2841ccd2506bSTheodore Ts'o * 2842ccd2506bSTheodore Ts'o * For now, though, we'll cheat by calling filemap_flush(), 2843ccd2506bSTheodore Ts'o * which will map the blocks, and start the I/O, but not 2844ccd2506bSTheodore Ts'o * actually wait for the I/O to complete. 2845ccd2506bSTheodore Ts'o */ 2846ccd2506bSTheodore Ts'o return filemap_flush(inode->i_mapping); 2847ccd2506bSTheodore Ts'o } 284864769240SAlex Tomas 284964769240SAlex Tomas /* 2850ac27a0ecSDave Kleikamp * bmap() is special. It gets used by applications such as lilo and by 2851ac27a0ecSDave Kleikamp * the swapper to find the on-disk block of a specific piece of data. 2852ac27a0ecSDave Kleikamp * 2853ac27a0ecSDave Kleikamp * Naturally, this is dangerous if the block concerned is still in the 2854617ba13bSMingming Cao * journal. If somebody makes a swapfile on an ext4 data-journaling 2855ac27a0ecSDave Kleikamp * filesystem and enables swap, then they may get a nasty shock when the 2856ac27a0ecSDave Kleikamp * data getting swapped to that swapfile suddenly gets overwritten by 2857ac27a0ecSDave Kleikamp * the original zero's written out previously to the journal and 2858ac27a0ecSDave Kleikamp * awaiting writeback in the kernel's buffer cache. 2859ac27a0ecSDave Kleikamp * 2860ac27a0ecSDave Kleikamp * So, if we see any bmap calls here on a modified, data-journaled file, 2861ac27a0ecSDave Kleikamp * take extra steps to flush any blocks which might be in the cache. 2862ac27a0ecSDave Kleikamp */ 2863617ba13bSMingming Cao static sector_t ext4_bmap(struct address_space *mapping, sector_t block) 2864ac27a0ecSDave Kleikamp { 2865ac27a0ecSDave Kleikamp struct inode *inode = mapping->host; 2866ac27a0ecSDave Kleikamp journal_t *journal; 2867ac27a0ecSDave Kleikamp int err; 2868ac27a0ecSDave Kleikamp 286946c7f254STao Ma /* 287046c7f254STao Ma * We can get here for an inline file via the FIBMAP ioctl 287146c7f254STao Ma */ 287246c7f254STao Ma if (ext4_has_inline_data(inode)) 287346c7f254STao Ma return 0; 287446c7f254STao Ma 287564769240SAlex Tomas if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) && 287664769240SAlex Tomas test_opt(inode->i_sb, DELALLOC)) { 287764769240SAlex Tomas /* 287864769240SAlex Tomas * With delalloc we want to sync the file 287964769240SAlex Tomas * so that we can make sure we allocate 288064769240SAlex Tomas * blocks for file 288164769240SAlex Tomas */ 288264769240SAlex Tomas filemap_write_and_wait(mapping); 288364769240SAlex Tomas } 288464769240SAlex Tomas 288519f5fb7aSTheodore Ts'o if (EXT4_JOURNAL(inode) && 288619f5fb7aSTheodore Ts'o ext4_test_inode_state(inode, EXT4_STATE_JDATA)) { 2887ac27a0ecSDave Kleikamp /* 2888ac27a0ecSDave Kleikamp * This is a REALLY heavyweight approach, but the use of 2889ac27a0ecSDave Kleikamp * bmap on dirty files is expected to be extremely rare: 2890ac27a0ecSDave Kleikamp * only if we run lilo or swapon on a freshly made file 2891ac27a0ecSDave Kleikamp * do we expect this to happen. 2892ac27a0ecSDave Kleikamp * 2893ac27a0ecSDave Kleikamp * (bmap requires CAP_SYS_RAWIO so this does not 2894ac27a0ecSDave Kleikamp * represent an unprivileged user DOS attack --- we'd be 2895ac27a0ecSDave Kleikamp * in trouble if mortal users could trigger this path at 2896ac27a0ecSDave Kleikamp * will.) 2897ac27a0ecSDave Kleikamp * 2898617ba13bSMingming Cao * NB. EXT4_STATE_JDATA is not set on files other than 2899ac27a0ecSDave Kleikamp * regular files. If somebody wants to bmap a directory 2900ac27a0ecSDave Kleikamp * or symlink and gets confused because the buffer 2901ac27a0ecSDave Kleikamp * hasn't yet been flushed to disk, they deserve 2902ac27a0ecSDave Kleikamp * everything they get. 2903ac27a0ecSDave Kleikamp */ 2904ac27a0ecSDave Kleikamp 290519f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_JDATA); 2906617ba13bSMingming Cao journal = EXT4_JOURNAL(inode); 2907dab291afSMingming Cao jbd2_journal_lock_updates(journal); 2908dab291afSMingming Cao err = jbd2_journal_flush(journal); 2909dab291afSMingming Cao jbd2_journal_unlock_updates(journal); 2910ac27a0ecSDave Kleikamp 2911ac27a0ecSDave Kleikamp if (err) 2912ac27a0ecSDave Kleikamp return 0; 2913ac27a0ecSDave Kleikamp } 2914ac27a0ecSDave Kleikamp 2915617ba13bSMingming Cao return generic_block_bmap(mapping, block, ext4_get_block); 2916ac27a0ecSDave Kleikamp } 2917ac27a0ecSDave Kleikamp 2918617ba13bSMingming Cao static int ext4_readpage(struct file *file, struct page *page) 2919ac27a0ecSDave Kleikamp { 292046c7f254STao Ma int ret = -EAGAIN; 292146c7f254STao Ma struct inode *inode = page->mapping->host; 292246c7f254STao Ma 29230562e0baSJiaying Zhang trace_ext4_readpage(page); 292446c7f254STao Ma 292546c7f254STao Ma if (ext4_has_inline_data(inode)) 292646c7f254STao Ma ret = ext4_readpage_inline(inode, page); 292746c7f254STao Ma 292846c7f254STao Ma if (ret == -EAGAIN) 2929f64e02feSTheodore Ts'o return ext4_mpage_readpages(page->mapping, NULL, page, 1); 293046c7f254STao Ma 293146c7f254STao Ma return ret; 2932ac27a0ecSDave Kleikamp } 2933ac27a0ecSDave Kleikamp 2934ac27a0ecSDave Kleikamp static int 2935617ba13bSMingming Cao ext4_readpages(struct file *file, struct address_space *mapping, 2936ac27a0ecSDave Kleikamp struct list_head *pages, unsigned nr_pages) 2937ac27a0ecSDave Kleikamp { 293846c7f254STao Ma struct inode *inode = mapping->host; 293946c7f254STao Ma 294046c7f254STao Ma /* If the file has inline data, no need to do readpages. */ 294146c7f254STao Ma if (ext4_has_inline_data(inode)) 294246c7f254STao Ma return 0; 294346c7f254STao Ma 2944f64e02feSTheodore Ts'o return ext4_mpage_readpages(mapping, pages, NULL, nr_pages); 2945ac27a0ecSDave Kleikamp } 2946ac27a0ecSDave Kleikamp 2947d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset, 2948d47992f8SLukas Czerner unsigned int length) 2949ac27a0ecSDave Kleikamp { 2950ca99fdd2SLukas Czerner trace_ext4_invalidatepage(page, offset, length); 29510562e0baSJiaying Zhang 29524520fb3cSJan Kara /* No journalling happens on data buffers when this function is used */ 29534520fb3cSJan Kara WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page))); 29544520fb3cSJan Kara 2955ca99fdd2SLukas Czerner block_invalidatepage(page, offset, length); 29564520fb3cSJan Kara } 29574520fb3cSJan Kara 295853e87268SJan Kara static int __ext4_journalled_invalidatepage(struct page *page, 2959ca99fdd2SLukas Czerner unsigned int offset, 2960ca99fdd2SLukas Czerner unsigned int length) 29614520fb3cSJan Kara { 29624520fb3cSJan Kara journal_t *journal = EXT4_JOURNAL(page->mapping->host); 29634520fb3cSJan Kara 2964ca99fdd2SLukas Czerner trace_ext4_journalled_invalidatepage(page, offset, length); 29654520fb3cSJan Kara 2966744692dcSJiaying Zhang /* 2967ac27a0ecSDave Kleikamp * If it's a full truncate we just forget about the pending dirtying 2968ac27a0ecSDave Kleikamp */ 2969ca99fdd2SLukas Czerner if (offset == 0 && length == PAGE_CACHE_SIZE) 2970ac27a0ecSDave Kleikamp ClearPageChecked(page); 2971ac27a0ecSDave Kleikamp 2972ca99fdd2SLukas Czerner return jbd2_journal_invalidatepage(journal, page, offset, length); 297353e87268SJan Kara } 297453e87268SJan Kara 297553e87268SJan Kara /* Wrapper for aops... */ 297653e87268SJan Kara static void ext4_journalled_invalidatepage(struct page *page, 2977d47992f8SLukas Czerner unsigned int offset, 2978d47992f8SLukas Czerner unsigned int length) 297953e87268SJan Kara { 2980ca99fdd2SLukas Czerner WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0); 2981ac27a0ecSDave Kleikamp } 2982ac27a0ecSDave Kleikamp 2983617ba13bSMingming Cao static int ext4_releasepage(struct page *page, gfp_t wait) 2984ac27a0ecSDave Kleikamp { 2985617ba13bSMingming Cao journal_t *journal = EXT4_JOURNAL(page->mapping->host); 2986ac27a0ecSDave Kleikamp 29870562e0baSJiaying Zhang trace_ext4_releasepage(page); 29880562e0baSJiaying Zhang 2989e1c36595SJan Kara /* Page has dirty journalled data -> cannot release */ 2990e1c36595SJan Kara if (PageChecked(page)) 2991ac27a0ecSDave Kleikamp return 0; 29920390131bSFrank Mayhar if (journal) 2993dab291afSMingming Cao return jbd2_journal_try_to_free_buffers(journal, page, wait); 29940390131bSFrank Mayhar else 29950390131bSFrank Mayhar return try_to_free_buffers(page); 2996ac27a0ecSDave Kleikamp } 2997ac27a0ecSDave Kleikamp 2998ac27a0ecSDave Kleikamp /* 29992ed88685STheodore Ts'o * ext4_get_block used when preparing for a DIO write or buffer write. 30002ed88685STheodore Ts'o * We allocate an uinitialized extent if blocks haven't been allocated. 30012ed88685STheodore Ts'o * The extent will be converted to initialized after the IO is complete. 30022ed88685STheodore Ts'o */ 3003f19d5870STao Ma int ext4_get_block_write(struct inode *inode, sector_t iblock, 30044c0425ffSMingming Cao struct buffer_head *bh_result, int create) 30054c0425ffSMingming Cao { 3006c7064ef1SJiaying Zhang ext4_debug("ext4_get_block_write: inode %lu, create flag %d\n", 30078d5d02e6SMingming Cao inode->i_ino, create); 30082ed88685STheodore Ts'o return _ext4_get_block(inode, iblock, bh_result, 30092ed88685STheodore Ts'o EXT4_GET_BLOCKS_IO_CREATE_EXT); 30104c0425ffSMingming Cao } 30114c0425ffSMingming Cao 3012729f52c6SZheng Liu static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock, 30138b0f165fSAnatol Pomozov struct buffer_head *bh_result, int create) 3014729f52c6SZheng Liu { 30158b0f165fSAnatol Pomozov ext4_debug("ext4_get_block_write_nolock: inode %lu, create flag %d\n", 30168b0f165fSAnatol Pomozov inode->i_ino, create); 30178b0f165fSAnatol Pomozov return _ext4_get_block(inode, iblock, bh_result, 30188b0f165fSAnatol Pomozov EXT4_GET_BLOCKS_NO_LOCK); 3019729f52c6SZheng Liu } 3020729f52c6SZheng Liu 30214c0425ffSMingming Cao static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset, 30227b7a8665SChristoph Hellwig ssize_t size, void *private) 30234c0425ffSMingming Cao { 30244c0425ffSMingming Cao ext4_io_end_t *io_end = iocb->private; 30254c0425ffSMingming Cao 302697a851edSJan Kara /* if not async direct IO just return */ 30277b7a8665SChristoph Hellwig if (!io_end) 302897a851edSJan Kara return; 30294b70df18SMingming 30308d5d02e6SMingming Cao ext_debug("ext4_end_io_dio(): io_end 0x%p " 3031ace36ad4SJoe Perches "for inode %lu, iocb 0x%p, offset %llu, size %zd\n", 30328d5d02e6SMingming Cao iocb->private, io_end->inode->i_ino, iocb, offset, 30338d5d02e6SMingming Cao size); 30348d5d02e6SMingming Cao 3035b5a7e970STheodore Ts'o iocb->private = NULL; 30364c0425ffSMingming Cao io_end->offset = offset; 30374c0425ffSMingming Cao io_end->size = size; 30387b7a8665SChristoph Hellwig ext4_put_io_end(io_end); 30394c0425ffSMingming Cao } 3040c7064ef1SJiaying Zhang 30414c0425ffSMingming Cao /* 30424c0425ffSMingming Cao * For ext4 extent files, ext4 will do direct-io write to holes, 30434c0425ffSMingming Cao * preallocated extents, and those write extend the file, no need to 30444c0425ffSMingming Cao * fall back to buffered IO. 30454c0425ffSMingming Cao * 3046556615dcSLukas Czerner * For holes, we fallocate those blocks, mark them as unwritten 304769c499d1STheodore Ts'o * If those blocks were preallocated, we mark sure they are split, but 3048556615dcSLukas Czerner * still keep the range to write as unwritten. 30494c0425ffSMingming Cao * 305069c499d1STheodore Ts'o * The unwritten extents will be converted to written when DIO is completed. 30518d5d02e6SMingming Cao * For async direct IO, since the IO may still pending when return, we 305225985edcSLucas De Marchi * set up an end_io call back function, which will do the conversion 30538d5d02e6SMingming Cao * when async direct IO completed. 30544c0425ffSMingming Cao * 30554c0425ffSMingming Cao * If the O_DIRECT write will extend the file then add this inode to the 30564c0425ffSMingming Cao * orphan list. So recovery will truncate it back to the original size 30574c0425ffSMingming Cao * if the machine crashes during the write. 30584c0425ffSMingming Cao * 30594c0425ffSMingming Cao */ 30606f673763SOmar Sandoval static ssize_t ext4_ext_direct_IO(struct kiocb *iocb, struct iov_iter *iter, 30616f673763SOmar Sandoval loff_t offset) 30624c0425ffSMingming Cao { 30634c0425ffSMingming Cao struct file *file = iocb->ki_filp; 30644c0425ffSMingming Cao struct inode *inode = file->f_mapping->host; 30654c0425ffSMingming Cao ssize_t ret; 3066a6cbcd4aSAl Viro size_t count = iov_iter_count(iter); 3067729f52c6SZheng Liu int overwrite = 0; 30688b0f165fSAnatol Pomozov get_block_t *get_block_func = NULL; 30698b0f165fSAnatol Pomozov int dio_flags = 0; 307069c499d1STheodore Ts'o loff_t final_size = offset + count; 307197a851edSJan Kara ext4_io_end_t *io_end = NULL; 307269c499d1STheodore Ts'o 307369c499d1STheodore Ts'o /* Use the old path for reads and writes beyond i_size. */ 30746f673763SOmar Sandoval if (iov_iter_rw(iter) != WRITE || final_size > inode->i_size) 30756f673763SOmar Sandoval return ext4_ind_direct_IO(iocb, iter, offset); 3076729f52c6SZheng Liu 30774bd809dbSZheng Liu BUG_ON(iocb->private == NULL); 30784bd809dbSZheng Liu 3079e8340395SJan Kara /* 3080e8340395SJan Kara * Make all waiters for direct IO properly wait also for extent 3081e8340395SJan Kara * conversion. This also disallows race between truncate() and 3082e8340395SJan Kara * overwrite DIO as i_dio_count needs to be incremented under i_mutex. 3083e8340395SJan Kara */ 30846f673763SOmar Sandoval if (iov_iter_rw(iter) == WRITE) 3085fe0f07d0SJens Axboe inode_dio_begin(inode); 3086e8340395SJan Kara 30874bd809dbSZheng Liu /* If we do a overwrite dio, i_mutex locking can be released */ 30884bd809dbSZheng Liu overwrite = *((int *)iocb->private); 30894bd809dbSZheng Liu 30904bd809dbSZheng Liu if (overwrite) { 30914bd809dbSZheng Liu down_read(&EXT4_I(inode)->i_data_sem); 30924bd809dbSZheng Liu mutex_unlock(&inode->i_mutex); 30934bd809dbSZheng Liu } 30944bd809dbSZheng Liu 30954c0425ffSMingming Cao /* 30968d5d02e6SMingming Cao * We could direct write to holes and fallocate. 30978d5d02e6SMingming Cao * 309869c499d1STheodore Ts'o * Allocated blocks to fill the hole are marked as 3099556615dcSLukas Czerner * unwritten to prevent parallel buffered read to expose 310069c499d1STheodore Ts'o * the stale data before DIO complete the data IO. 31018d5d02e6SMingming Cao * 310269c499d1STheodore Ts'o * As to previously fallocated extents, ext4 get_block will 310369c499d1STheodore Ts'o * just simply mark the buffer mapped but still keep the 3104556615dcSLukas Czerner * extents unwritten. 31054c0425ffSMingming Cao * 310669c499d1STheodore Ts'o * For non AIO case, we will convert those unwritten extents 31078d5d02e6SMingming Cao * to written after return back from blockdev_direct_IO. 31084c0425ffSMingming Cao * 310969c499d1STheodore Ts'o * For async DIO, the conversion needs to be deferred when the 311069c499d1STheodore Ts'o * IO is completed. The ext4 end_io callback function will be 311169c499d1STheodore Ts'o * called to take care of the conversion work. Here for async 311269c499d1STheodore Ts'o * case, we allocate an io_end structure to hook to the iocb. 31134c0425ffSMingming Cao */ 31148d5d02e6SMingming Cao iocb->private = NULL; 3115f45ee3a1SDmitry Monakhov ext4_inode_aio_set(inode, NULL); 31168d5d02e6SMingming Cao if (!is_sync_kiocb(iocb)) { 311797a851edSJan Kara io_end = ext4_init_io_end(inode, GFP_NOFS); 31184bd809dbSZheng Liu if (!io_end) { 31194bd809dbSZheng Liu ret = -ENOMEM; 31204bd809dbSZheng Liu goto retake_lock; 31214bd809dbSZheng Liu } 312297a851edSJan Kara /* 312397a851edSJan Kara * Grab reference for DIO. Will be dropped in ext4_end_io_dio() 312497a851edSJan Kara */ 312597a851edSJan Kara iocb->private = ext4_get_io_end(io_end); 31268d5d02e6SMingming Cao /* 312769c499d1STheodore Ts'o * we save the io structure for current async direct 312869c499d1STheodore Ts'o * IO, so that later ext4_map_blocks() could flag the 312969c499d1STheodore Ts'o * io structure whether there is a unwritten extents 313069c499d1STheodore Ts'o * needs to be converted when IO is completed. 31318d5d02e6SMingming Cao */ 3132f45ee3a1SDmitry Monakhov ext4_inode_aio_set(inode, io_end); 31338d5d02e6SMingming Cao } 31348d5d02e6SMingming Cao 31358b0f165fSAnatol Pomozov if (overwrite) { 31368b0f165fSAnatol Pomozov get_block_func = ext4_get_block_write_nolock; 31378b0f165fSAnatol Pomozov } else { 31388b0f165fSAnatol Pomozov get_block_func = ext4_get_block_write; 31398b0f165fSAnatol Pomozov dio_flags = DIO_LOCKING; 31408b0f165fSAnatol Pomozov } 31412058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION 31422058f83aSMichael Halcrow BUG_ON(ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode)); 31432058f83aSMichael Halcrow #endif 3144923ae0ffSRoss Zwisler if (IS_DAX(inode)) 3145a95cd631SOmar Sandoval ret = dax_do_io(iocb, inode, iter, offset, get_block_func, 3146923ae0ffSRoss Zwisler ext4_end_io_dio, dio_flags); 3147923ae0ffSRoss Zwisler else 314817f8c842SOmar Sandoval ret = __blockdev_direct_IO(iocb, inode, 3149923ae0ffSRoss Zwisler inode->i_sb->s_bdev, iter, offset, 31508b0f165fSAnatol Pomozov get_block_func, 3151923ae0ffSRoss Zwisler ext4_end_io_dio, NULL, dio_flags); 31528b0f165fSAnatol Pomozov 31534eec708dSJan Kara /* 315497a851edSJan Kara * Put our reference to io_end. This can free the io_end structure e.g. 315597a851edSJan Kara * in sync IO case or in case of error. It can even perform extent 315697a851edSJan Kara * conversion if all bios we submitted finished before we got here. 315797a851edSJan Kara * Note that in that case iocb->private can be already set to NULL 315897a851edSJan Kara * here. 31594eec708dSJan Kara */ 316097a851edSJan Kara if (io_end) { 316197a851edSJan Kara ext4_inode_aio_set(inode, NULL); 316297a851edSJan Kara ext4_put_io_end(io_end); 316397a851edSJan Kara /* 316497a851edSJan Kara * When no IO was submitted ext4_end_io_dio() was not 316597a851edSJan Kara * called so we have to put iocb's reference. 316697a851edSJan Kara */ 316797a851edSJan Kara if (ret <= 0 && ret != -EIOCBQUEUED && iocb->private) { 316897a851edSJan Kara WARN_ON(iocb->private != io_end); 316997a851edSJan Kara WARN_ON(io_end->flag & EXT4_IO_END_UNWRITTEN); 317097a851edSJan Kara ext4_put_io_end(io_end); 31718d5d02e6SMingming Cao iocb->private = NULL; 317297a851edSJan Kara } 317397a851edSJan Kara } 317497a851edSJan Kara if (ret > 0 && !overwrite && ext4_test_inode_state(inode, 31755f524950SMingming EXT4_STATE_DIO_UNWRITTEN)) { 3176109f5565SMingming int err; 31778d5d02e6SMingming Cao /* 31788d5d02e6SMingming Cao * for non AIO case, since the IO is already 317925985edcSLucas De Marchi * completed, we could do the conversion right here 31808d5d02e6SMingming Cao */ 31816b523df4SJan Kara err = ext4_convert_unwritten_extents(NULL, inode, 31828d5d02e6SMingming Cao offset, ret); 3183109f5565SMingming if (err < 0) 3184109f5565SMingming ret = err; 318519f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN); 3186109f5565SMingming } 31874bd809dbSZheng Liu 31884bd809dbSZheng Liu retake_lock: 31896f673763SOmar Sandoval if (iov_iter_rw(iter) == WRITE) 3190fe0f07d0SJens Axboe inode_dio_end(inode); 31914bd809dbSZheng Liu /* take i_mutex locking again if we do a ovewrite dio */ 31924bd809dbSZheng Liu if (overwrite) { 31934bd809dbSZheng Liu up_read(&EXT4_I(inode)->i_data_sem); 31944bd809dbSZheng Liu mutex_lock(&inode->i_mutex); 31954bd809dbSZheng Liu } 31964bd809dbSZheng Liu 31974c0425ffSMingming Cao return ret; 31984c0425ffSMingming Cao } 31998d5d02e6SMingming Cao 320022c6186eSOmar Sandoval static ssize_t ext4_direct_IO(struct kiocb *iocb, struct iov_iter *iter, 320122c6186eSOmar Sandoval loff_t offset) 32024c0425ffSMingming Cao { 32034c0425ffSMingming Cao struct file *file = iocb->ki_filp; 32044c0425ffSMingming Cao struct inode *inode = file->f_mapping->host; 3205a6cbcd4aSAl Viro size_t count = iov_iter_count(iter); 32060562e0baSJiaying Zhang ssize_t ret; 32074c0425ffSMingming Cao 32082058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION 32092058f83aSMichael Halcrow if (ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode)) 32102058f83aSMichael Halcrow return 0; 32112058f83aSMichael Halcrow #endif 32122058f83aSMichael Halcrow 321384ebd795STheodore Ts'o /* 321484ebd795STheodore Ts'o * If we are doing data journalling we don't support O_DIRECT 321584ebd795STheodore Ts'o */ 321684ebd795STheodore Ts'o if (ext4_should_journal_data(inode)) 321784ebd795STheodore Ts'o return 0; 321884ebd795STheodore Ts'o 321946c7f254STao Ma /* Let buffer I/O handle the inline data case. */ 322046c7f254STao Ma if (ext4_has_inline_data(inode)) 322146c7f254STao Ma return 0; 322246c7f254STao Ma 32236f673763SOmar Sandoval trace_ext4_direct_IO_enter(inode, offset, count, iov_iter_rw(iter)); 322412e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 32256f673763SOmar Sandoval ret = ext4_ext_direct_IO(iocb, iter, offset); 32260562e0baSJiaying Zhang else 32276f673763SOmar Sandoval ret = ext4_ind_direct_IO(iocb, iter, offset); 32286f673763SOmar Sandoval trace_ext4_direct_IO_exit(inode, offset, count, iov_iter_rw(iter), ret); 32290562e0baSJiaying Zhang return ret; 32304c0425ffSMingming Cao } 32314c0425ffSMingming Cao 3232ac27a0ecSDave Kleikamp /* 3233617ba13bSMingming Cao * Pages can be marked dirty completely asynchronously from ext4's journalling 3234ac27a0ecSDave Kleikamp * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do 3235ac27a0ecSDave Kleikamp * much here because ->set_page_dirty is called under VFS locks. The page is 3236ac27a0ecSDave Kleikamp * not necessarily locked. 3237ac27a0ecSDave Kleikamp * 3238ac27a0ecSDave Kleikamp * We cannot just dirty the page and leave attached buffers clean, because the 3239ac27a0ecSDave Kleikamp * buffers' dirty state is "definitive". We cannot just set the buffers dirty 3240ac27a0ecSDave Kleikamp * or jbddirty because all the journalling code will explode. 3241ac27a0ecSDave Kleikamp * 3242ac27a0ecSDave Kleikamp * So what we do is to mark the page "pending dirty" and next time writepage 3243ac27a0ecSDave Kleikamp * is called, propagate that into the buffers appropriately. 3244ac27a0ecSDave Kleikamp */ 3245617ba13bSMingming Cao static int ext4_journalled_set_page_dirty(struct page *page) 3246ac27a0ecSDave Kleikamp { 3247ac27a0ecSDave Kleikamp SetPageChecked(page); 3248ac27a0ecSDave Kleikamp return __set_page_dirty_nobuffers(page); 3249ac27a0ecSDave Kleikamp } 3250ac27a0ecSDave Kleikamp 325174d553aaSTheodore Ts'o static const struct address_space_operations ext4_aops = { 3252617ba13bSMingming Cao .readpage = ext4_readpage, 3253617ba13bSMingming Cao .readpages = ext4_readpages, 325443ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 325520970ba6STheodore Ts'o .writepages = ext4_writepages, 3256bfc1af65SNick Piggin .write_begin = ext4_write_begin, 325774d553aaSTheodore Ts'o .write_end = ext4_write_end, 3258617ba13bSMingming Cao .bmap = ext4_bmap, 3259617ba13bSMingming Cao .invalidatepage = ext4_invalidatepage, 3260617ba13bSMingming Cao .releasepage = ext4_releasepage, 3261617ba13bSMingming Cao .direct_IO = ext4_direct_IO, 3262ac27a0ecSDave Kleikamp .migratepage = buffer_migrate_page, 32638ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3264aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 3265ac27a0ecSDave Kleikamp }; 3266ac27a0ecSDave Kleikamp 3267617ba13bSMingming Cao static const struct address_space_operations ext4_journalled_aops = { 3268617ba13bSMingming Cao .readpage = ext4_readpage, 3269617ba13bSMingming Cao .readpages = ext4_readpages, 327043ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 327120970ba6STheodore Ts'o .writepages = ext4_writepages, 3272bfc1af65SNick Piggin .write_begin = ext4_write_begin, 3273bfc1af65SNick Piggin .write_end = ext4_journalled_write_end, 3274617ba13bSMingming Cao .set_page_dirty = ext4_journalled_set_page_dirty, 3275617ba13bSMingming Cao .bmap = ext4_bmap, 32764520fb3cSJan Kara .invalidatepage = ext4_journalled_invalidatepage, 3277617ba13bSMingming Cao .releasepage = ext4_releasepage, 327884ebd795STheodore Ts'o .direct_IO = ext4_direct_IO, 32798ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3280aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 3281ac27a0ecSDave Kleikamp }; 3282ac27a0ecSDave Kleikamp 328364769240SAlex Tomas static const struct address_space_operations ext4_da_aops = { 328464769240SAlex Tomas .readpage = ext4_readpage, 328564769240SAlex Tomas .readpages = ext4_readpages, 328643ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 328720970ba6STheodore Ts'o .writepages = ext4_writepages, 328864769240SAlex Tomas .write_begin = ext4_da_write_begin, 328964769240SAlex Tomas .write_end = ext4_da_write_end, 329064769240SAlex Tomas .bmap = ext4_bmap, 329164769240SAlex Tomas .invalidatepage = ext4_da_invalidatepage, 329264769240SAlex Tomas .releasepage = ext4_releasepage, 329364769240SAlex Tomas .direct_IO = ext4_direct_IO, 329464769240SAlex Tomas .migratepage = buffer_migrate_page, 32958ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3296aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 329764769240SAlex Tomas }; 329864769240SAlex Tomas 3299617ba13bSMingming Cao void ext4_set_aops(struct inode *inode) 3300ac27a0ecSDave Kleikamp { 33013d2b1582SLukas Czerner switch (ext4_inode_journal_mode(inode)) { 33023d2b1582SLukas Czerner case EXT4_INODE_ORDERED_DATA_MODE: 330374d553aaSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_ORDERED_MODE); 33043d2b1582SLukas Czerner break; 33053d2b1582SLukas Czerner case EXT4_INODE_WRITEBACK_DATA_MODE: 330674d553aaSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_ORDERED_MODE); 33073d2b1582SLukas Czerner break; 33083d2b1582SLukas Czerner case EXT4_INODE_JOURNAL_DATA_MODE: 3309617ba13bSMingming Cao inode->i_mapping->a_ops = &ext4_journalled_aops; 331074d553aaSTheodore Ts'o return; 33113d2b1582SLukas Czerner default: 33123d2b1582SLukas Czerner BUG(); 33133d2b1582SLukas Czerner } 331474d553aaSTheodore Ts'o if (test_opt(inode->i_sb, DELALLOC)) 331574d553aaSTheodore Ts'o inode->i_mapping->a_ops = &ext4_da_aops; 331674d553aaSTheodore Ts'o else 331774d553aaSTheodore Ts'o inode->i_mapping->a_ops = &ext4_aops; 3318ac27a0ecSDave Kleikamp } 3319ac27a0ecSDave Kleikamp 3320923ae0ffSRoss Zwisler static int __ext4_block_zero_page_range(handle_t *handle, 3321d863dc36SLukas Czerner struct address_space *mapping, loff_t from, loff_t length) 3322d863dc36SLukas Czerner { 3323d863dc36SLukas Czerner ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT; 3324d863dc36SLukas Czerner unsigned offset = from & (PAGE_CACHE_SIZE-1); 3325923ae0ffSRoss Zwisler unsigned blocksize, pos; 3326d863dc36SLukas Czerner ext4_lblk_t iblock; 3327d863dc36SLukas Czerner struct inode *inode = mapping->host; 3328d863dc36SLukas Czerner struct buffer_head *bh; 3329d863dc36SLukas Czerner struct page *page; 3330d863dc36SLukas Czerner int err = 0; 3331d863dc36SLukas Czerner 3332d863dc36SLukas Czerner page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT, 3333d863dc36SLukas Czerner mapping_gfp_mask(mapping) & ~__GFP_FS); 3334d863dc36SLukas Czerner if (!page) 3335d863dc36SLukas Czerner return -ENOMEM; 3336d863dc36SLukas Czerner 3337d863dc36SLukas Czerner blocksize = inode->i_sb->s_blocksize; 3338d863dc36SLukas Czerner 3339d863dc36SLukas Czerner iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits); 3340d863dc36SLukas Czerner 3341d863dc36SLukas Czerner if (!page_has_buffers(page)) 3342d863dc36SLukas Czerner create_empty_buffers(page, blocksize, 0); 3343d863dc36SLukas Czerner 3344d863dc36SLukas Czerner /* Find the buffer that contains "offset" */ 3345d863dc36SLukas Czerner bh = page_buffers(page); 3346d863dc36SLukas Czerner pos = blocksize; 3347d863dc36SLukas Czerner while (offset >= pos) { 3348d863dc36SLukas Czerner bh = bh->b_this_page; 3349d863dc36SLukas Czerner iblock++; 3350d863dc36SLukas Czerner pos += blocksize; 3351d863dc36SLukas Czerner } 3352d863dc36SLukas Czerner if (buffer_freed(bh)) { 3353d863dc36SLukas Czerner BUFFER_TRACE(bh, "freed: skip"); 3354d863dc36SLukas Czerner goto unlock; 3355d863dc36SLukas Czerner } 3356d863dc36SLukas Czerner if (!buffer_mapped(bh)) { 3357d863dc36SLukas Czerner BUFFER_TRACE(bh, "unmapped"); 3358d863dc36SLukas Czerner ext4_get_block(inode, iblock, bh, 0); 3359d863dc36SLukas Czerner /* unmapped? It's a hole - nothing to do */ 3360d863dc36SLukas Czerner if (!buffer_mapped(bh)) { 3361d863dc36SLukas Czerner BUFFER_TRACE(bh, "still unmapped"); 3362d863dc36SLukas Czerner goto unlock; 3363d863dc36SLukas Czerner } 3364d863dc36SLukas Czerner } 3365d863dc36SLukas Czerner 3366d863dc36SLukas Czerner /* Ok, it's mapped. Make sure it's up-to-date */ 3367d863dc36SLukas Czerner if (PageUptodate(page)) 3368d863dc36SLukas Czerner set_buffer_uptodate(bh); 3369d863dc36SLukas Czerner 3370d863dc36SLukas Czerner if (!buffer_uptodate(bh)) { 3371d863dc36SLukas Czerner err = -EIO; 3372d863dc36SLukas Czerner ll_rw_block(READ, 1, &bh); 3373d863dc36SLukas Czerner wait_on_buffer(bh); 3374d863dc36SLukas Czerner /* Uhhuh. Read error. Complain and punt. */ 3375d863dc36SLukas Czerner if (!buffer_uptodate(bh)) 3376d863dc36SLukas Czerner goto unlock; 3377c9c7429cSMichael Halcrow if (S_ISREG(inode->i_mode) && 3378c9c7429cSMichael Halcrow ext4_encrypted_inode(inode)) { 3379c9c7429cSMichael Halcrow /* We expect the key to be set. */ 3380c9c7429cSMichael Halcrow BUG_ON(!ext4_has_encryption_key(inode)); 3381c9c7429cSMichael Halcrow BUG_ON(blocksize != PAGE_CACHE_SIZE); 3382c9c7429cSMichael Halcrow WARN_ON_ONCE(ext4_decrypt_one(inode, page)); 3383c9c7429cSMichael Halcrow } 3384d863dc36SLukas Czerner } 3385d863dc36SLukas Czerner if (ext4_should_journal_data(inode)) { 3386d863dc36SLukas Czerner BUFFER_TRACE(bh, "get write access"); 3387d863dc36SLukas Czerner err = ext4_journal_get_write_access(handle, bh); 3388d863dc36SLukas Czerner if (err) 3389d863dc36SLukas Czerner goto unlock; 3390d863dc36SLukas Czerner } 3391d863dc36SLukas Czerner zero_user(page, offset, length); 3392d863dc36SLukas Czerner BUFFER_TRACE(bh, "zeroed end of block"); 3393d863dc36SLukas Czerner 3394d863dc36SLukas Czerner if (ext4_should_journal_data(inode)) { 3395d863dc36SLukas Czerner err = ext4_handle_dirty_metadata(handle, inode, bh); 33960713ed0cSLukas Czerner } else { 3397353eefd3Sjon ernst err = 0; 3398d863dc36SLukas Czerner mark_buffer_dirty(bh); 33990713ed0cSLukas Czerner if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) 34000713ed0cSLukas Czerner err = ext4_jbd2_file_inode(handle, inode); 34010713ed0cSLukas Czerner } 3402d863dc36SLukas Czerner 3403d863dc36SLukas Czerner unlock: 3404d863dc36SLukas Czerner unlock_page(page); 3405d863dc36SLukas Czerner page_cache_release(page); 3406d863dc36SLukas Czerner return err; 3407d863dc36SLukas Czerner } 3408d863dc36SLukas Czerner 340994350ab5SMatthew Wilcox /* 3410923ae0ffSRoss Zwisler * ext4_block_zero_page_range() zeros out a mapping of length 'length' 3411923ae0ffSRoss Zwisler * starting from file offset 'from'. The range to be zero'd must 3412923ae0ffSRoss Zwisler * be contained with in one block. If the specified range exceeds 3413923ae0ffSRoss Zwisler * the end of the block it will be shortened to end of the block 3414923ae0ffSRoss Zwisler * that cooresponds to 'from' 3415923ae0ffSRoss Zwisler */ 3416923ae0ffSRoss Zwisler static int ext4_block_zero_page_range(handle_t *handle, 3417923ae0ffSRoss Zwisler struct address_space *mapping, loff_t from, loff_t length) 3418923ae0ffSRoss Zwisler { 3419923ae0ffSRoss Zwisler struct inode *inode = mapping->host; 3420923ae0ffSRoss Zwisler unsigned offset = from & (PAGE_CACHE_SIZE-1); 3421923ae0ffSRoss Zwisler unsigned blocksize = inode->i_sb->s_blocksize; 3422923ae0ffSRoss Zwisler unsigned max = blocksize - (offset & (blocksize - 1)); 3423923ae0ffSRoss Zwisler 3424923ae0ffSRoss Zwisler /* 3425923ae0ffSRoss Zwisler * correct length if it does not fall between 3426923ae0ffSRoss Zwisler * 'from' and the end of the block 3427923ae0ffSRoss Zwisler */ 3428923ae0ffSRoss Zwisler if (length > max || length < 0) 3429923ae0ffSRoss Zwisler length = max; 3430923ae0ffSRoss Zwisler 3431923ae0ffSRoss Zwisler if (IS_DAX(inode)) 3432923ae0ffSRoss Zwisler return dax_zero_page_range(inode, from, length, ext4_get_block); 3433923ae0ffSRoss Zwisler return __ext4_block_zero_page_range(handle, mapping, from, length); 3434923ae0ffSRoss Zwisler } 3435923ae0ffSRoss Zwisler 3436923ae0ffSRoss Zwisler /* 343794350ab5SMatthew Wilcox * ext4_block_truncate_page() zeroes out a mapping from file offset `from' 343894350ab5SMatthew Wilcox * up to the end of the block which corresponds to `from'. 343994350ab5SMatthew Wilcox * This required during truncate. We need to physically zero the tail end 344094350ab5SMatthew Wilcox * of that block so it doesn't yield old data if the file is later grown. 344194350ab5SMatthew Wilcox */ 3442c197855eSStephen Hemminger static int ext4_block_truncate_page(handle_t *handle, 344394350ab5SMatthew Wilcox struct address_space *mapping, loff_t from) 344494350ab5SMatthew Wilcox { 344594350ab5SMatthew Wilcox unsigned offset = from & (PAGE_CACHE_SIZE-1); 344694350ab5SMatthew Wilcox unsigned length; 344794350ab5SMatthew Wilcox unsigned blocksize; 344894350ab5SMatthew Wilcox struct inode *inode = mapping->host; 344994350ab5SMatthew Wilcox 345094350ab5SMatthew Wilcox blocksize = inode->i_sb->s_blocksize; 345194350ab5SMatthew Wilcox length = blocksize - (offset & (blocksize - 1)); 345294350ab5SMatthew Wilcox 345394350ab5SMatthew Wilcox return ext4_block_zero_page_range(handle, mapping, from, length); 345494350ab5SMatthew Wilcox } 345594350ab5SMatthew Wilcox 3456a87dd18cSLukas Czerner int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode, 3457a87dd18cSLukas Czerner loff_t lstart, loff_t length) 3458a87dd18cSLukas Czerner { 3459a87dd18cSLukas Czerner struct super_block *sb = inode->i_sb; 3460a87dd18cSLukas Czerner struct address_space *mapping = inode->i_mapping; 3461e1be3a92SLukas Czerner unsigned partial_start, partial_end; 3462a87dd18cSLukas Czerner ext4_fsblk_t start, end; 3463a87dd18cSLukas Czerner loff_t byte_end = (lstart + length - 1); 3464a87dd18cSLukas Czerner int err = 0; 3465a87dd18cSLukas Czerner 3466e1be3a92SLukas Czerner partial_start = lstart & (sb->s_blocksize - 1); 3467e1be3a92SLukas Czerner partial_end = byte_end & (sb->s_blocksize - 1); 3468e1be3a92SLukas Czerner 3469a87dd18cSLukas Czerner start = lstart >> sb->s_blocksize_bits; 3470a87dd18cSLukas Czerner end = byte_end >> sb->s_blocksize_bits; 3471a87dd18cSLukas Czerner 3472a87dd18cSLukas Czerner /* Handle partial zero within the single block */ 3473e1be3a92SLukas Czerner if (start == end && 3474e1be3a92SLukas Czerner (partial_start || (partial_end != sb->s_blocksize - 1))) { 3475a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3476a87dd18cSLukas Czerner lstart, length); 3477a87dd18cSLukas Czerner return err; 3478a87dd18cSLukas Czerner } 3479a87dd18cSLukas Czerner /* Handle partial zero out on the start of the range */ 3480e1be3a92SLukas Czerner if (partial_start) { 3481a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3482a87dd18cSLukas Czerner lstart, sb->s_blocksize); 3483a87dd18cSLukas Czerner if (err) 3484a87dd18cSLukas Czerner return err; 3485a87dd18cSLukas Czerner } 3486a87dd18cSLukas Czerner /* Handle partial zero out on the end of the range */ 3487e1be3a92SLukas Czerner if (partial_end != sb->s_blocksize - 1) 3488a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3489e1be3a92SLukas Czerner byte_end - partial_end, 3490e1be3a92SLukas Czerner partial_end + 1); 3491a87dd18cSLukas Czerner return err; 3492a87dd18cSLukas Czerner } 3493a87dd18cSLukas Czerner 349491ef4cafSDuane Griffin int ext4_can_truncate(struct inode *inode) 349591ef4cafSDuane Griffin { 349691ef4cafSDuane Griffin if (S_ISREG(inode->i_mode)) 349791ef4cafSDuane Griffin return 1; 349891ef4cafSDuane Griffin if (S_ISDIR(inode->i_mode)) 349991ef4cafSDuane Griffin return 1; 350091ef4cafSDuane Griffin if (S_ISLNK(inode->i_mode)) 350191ef4cafSDuane Griffin return !ext4_inode_is_fast_symlink(inode); 350291ef4cafSDuane Griffin return 0; 350391ef4cafSDuane Griffin } 350491ef4cafSDuane Griffin 3505ac27a0ecSDave Kleikamp /* 3506a4bb6b64SAllison Henderson * ext4_punch_hole: punches a hole in a file by releaseing the blocks 3507a4bb6b64SAllison Henderson * associated with the given offset and length 3508a4bb6b64SAllison Henderson * 3509a4bb6b64SAllison Henderson * @inode: File inode 3510a4bb6b64SAllison Henderson * @offset: The offset where the hole will begin 3511a4bb6b64SAllison Henderson * @len: The length of the hole 3512a4bb6b64SAllison Henderson * 35134907cb7bSAnatol Pomozov * Returns: 0 on success or negative on failure 3514a4bb6b64SAllison Henderson */ 3515a4bb6b64SAllison Henderson 3516aeb2817aSAshish Sangwan int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length) 3517a4bb6b64SAllison Henderson { 351826a4c0c6STheodore Ts'o struct super_block *sb = inode->i_sb; 351926a4c0c6STheodore Ts'o ext4_lblk_t first_block, stop_block; 352026a4c0c6STheodore Ts'o struct address_space *mapping = inode->i_mapping; 3521a87dd18cSLukas Czerner loff_t first_block_offset, last_block_offset; 352226a4c0c6STheodore Ts'o handle_t *handle; 352326a4c0c6STheodore Ts'o unsigned int credits; 352426a4c0c6STheodore Ts'o int ret = 0; 352526a4c0c6STheodore Ts'o 3526a4bb6b64SAllison Henderson if (!S_ISREG(inode->i_mode)) 352773355192SAllison Henderson return -EOPNOTSUPP; 3528a4bb6b64SAllison Henderson 3529b8a86845SLukas Czerner trace_ext4_punch_hole(inode, offset, length, 0); 3530aaddea81SZheng Liu 353126a4c0c6STheodore Ts'o /* 353226a4c0c6STheodore Ts'o * Write out all dirty pages to avoid race conditions 353326a4c0c6STheodore Ts'o * Then release them. 353426a4c0c6STheodore Ts'o */ 353526a4c0c6STheodore Ts'o if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) { 353626a4c0c6STheodore Ts'o ret = filemap_write_and_wait_range(mapping, offset, 353726a4c0c6STheodore Ts'o offset + length - 1); 353826a4c0c6STheodore Ts'o if (ret) 353926a4c0c6STheodore Ts'o return ret; 354026a4c0c6STheodore Ts'o } 354126a4c0c6STheodore Ts'o 354226a4c0c6STheodore Ts'o mutex_lock(&inode->i_mutex); 35439ef06cecSLukas Czerner 354426a4c0c6STheodore Ts'o /* No need to punch hole beyond i_size */ 354526a4c0c6STheodore Ts'o if (offset >= inode->i_size) 354626a4c0c6STheodore Ts'o goto out_mutex; 354726a4c0c6STheodore Ts'o 354826a4c0c6STheodore Ts'o /* 354926a4c0c6STheodore Ts'o * If the hole extends beyond i_size, set the hole 355026a4c0c6STheodore Ts'o * to end after the page that contains i_size 355126a4c0c6STheodore Ts'o */ 355226a4c0c6STheodore Ts'o if (offset + length > inode->i_size) { 355326a4c0c6STheodore Ts'o length = inode->i_size + 355426a4c0c6STheodore Ts'o PAGE_CACHE_SIZE - (inode->i_size & (PAGE_CACHE_SIZE - 1)) - 355526a4c0c6STheodore Ts'o offset; 355626a4c0c6STheodore Ts'o } 355726a4c0c6STheodore Ts'o 3558a361293fSJan Kara if (offset & (sb->s_blocksize - 1) || 3559a361293fSJan Kara (offset + length) & (sb->s_blocksize - 1)) { 3560a361293fSJan Kara /* 3561a361293fSJan Kara * Attach jinode to inode for jbd2 if we do any zeroing of 3562a361293fSJan Kara * partial block 3563a361293fSJan Kara */ 3564a361293fSJan Kara ret = ext4_inode_attach_jinode(inode); 3565a361293fSJan Kara if (ret < 0) 3566a361293fSJan Kara goto out_mutex; 3567a361293fSJan Kara 3568a361293fSJan Kara } 3569a361293fSJan Kara 3570a87dd18cSLukas Czerner first_block_offset = round_up(offset, sb->s_blocksize); 3571a87dd18cSLukas Czerner last_block_offset = round_down((offset + length), sb->s_blocksize) - 1; 357226a4c0c6STheodore Ts'o 3573a87dd18cSLukas Czerner /* Now release the pages and zero block aligned part of pages*/ 3574a87dd18cSLukas Czerner if (last_block_offset > first_block_offset) 3575a87dd18cSLukas Czerner truncate_pagecache_range(inode, first_block_offset, 3576a87dd18cSLukas Czerner last_block_offset); 357726a4c0c6STheodore Ts'o 357826a4c0c6STheodore Ts'o /* Wait all existing dio workers, newcomers will block on i_mutex */ 357926a4c0c6STheodore Ts'o ext4_inode_block_unlocked_dio(inode); 358026a4c0c6STheodore Ts'o inode_dio_wait(inode); 358126a4c0c6STheodore Ts'o 358226a4c0c6STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 358326a4c0c6STheodore Ts'o credits = ext4_writepage_trans_blocks(inode); 358426a4c0c6STheodore Ts'o else 358526a4c0c6STheodore Ts'o credits = ext4_blocks_for_truncate(inode); 358626a4c0c6STheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits); 358726a4c0c6STheodore Ts'o if (IS_ERR(handle)) { 358826a4c0c6STheodore Ts'o ret = PTR_ERR(handle); 358926a4c0c6STheodore Ts'o ext4_std_error(sb, ret); 359026a4c0c6STheodore Ts'o goto out_dio; 359126a4c0c6STheodore Ts'o } 359226a4c0c6STheodore Ts'o 3593a87dd18cSLukas Czerner ret = ext4_zero_partial_blocks(handle, inode, offset, 3594a87dd18cSLukas Czerner length); 359526a4c0c6STheodore Ts'o if (ret) 359626a4c0c6STheodore Ts'o goto out_stop; 359726a4c0c6STheodore Ts'o 359826a4c0c6STheodore Ts'o first_block = (offset + sb->s_blocksize - 1) >> 359926a4c0c6STheodore Ts'o EXT4_BLOCK_SIZE_BITS(sb); 360026a4c0c6STheodore Ts'o stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb); 360126a4c0c6STheodore Ts'o 360226a4c0c6STheodore Ts'o /* If there are no blocks to remove, return now */ 360326a4c0c6STheodore Ts'o if (first_block >= stop_block) 360426a4c0c6STheodore Ts'o goto out_stop; 360526a4c0c6STheodore Ts'o 360626a4c0c6STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 360726a4c0c6STheodore Ts'o ext4_discard_preallocations(inode); 360826a4c0c6STheodore Ts'o 360926a4c0c6STheodore Ts'o ret = ext4_es_remove_extent(inode, first_block, 361026a4c0c6STheodore Ts'o stop_block - first_block); 361126a4c0c6STheodore Ts'o if (ret) { 361226a4c0c6STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 361326a4c0c6STheodore Ts'o goto out_stop; 361426a4c0c6STheodore Ts'o } 361526a4c0c6STheodore Ts'o 361626a4c0c6STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 361726a4c0c6STheodore Ts'o ret = ext4_ext_remove_space(inode, first_block, 361826a4c0c6STheodore Ts'o stop_block - 1); 361926a4c0c6STheodore Ts'o else 36204f579ae7SLukas Czerner ret = ext4_ind_remove_space(handle, inode, first_block, 362126a4c0c6STheodore Ts'o stop_block); 362226a4c0c6STheodore Ts'o 3623819c4920STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 362426a4c0c6STheodore Ts'o if (IS_SYNC(inode)) 362526a4c0c6STheodore Ts'o ext4_handle_sync(handle); 3626e251f9bcSMaxim Patlasov 3627e251f9bcSMaxim Patlasov /* Now release the pages again to reduce race window */ 3628e251f9bcSMaxim Patlasov if (last_block_offset > first_block_offset) 3629e251f9bcSMaxim Patlasov truncate_pagecache_range(inode, first_block_offset, 3630e251f9bcSMaxim Patlasov last_block_offset); 3631e251f9bcSMaxim Patlasov 363226a4c0c6STheodore Ts'o inode->i_mtime = inode->i_ctime = ext4_current_time(inode); 363326a4c0c6STheodore Ts'o ext4_mark_inode_dirty(handle, inode); 363426a4c0c6STheodore Ts'o out_stop: 363526a4c0c6STheodore Ts'o ext4_journal_stop(handle); 363626a4c0c6STheodore Ts'o out_dio: 363726a4c0c6STheodore Ts'o ext4_inode_resume_unlocked_dio(inode); 363826a4c0c6STheodore Ts'o out_mutex: 363926a4c0c6STheodore Ts'o mutex_unlock(&inode->i_mutex); 364026a4c0c6STheodore Ts'o return ret; 3641a4bb6b64SAllison Henderson } 3642a4bb6b64SAllison Henderson 3643a361293fSJan Kara int ext4_inode_attach_jinode(struct inode *inode) 3644a361293fSJan Kara { 3645a361293fSJan Kara struct ext4_inode_info *ei = EXT4_I(inode); 3646a361293fSJan Kara struct jbd2_inode *jinode; 3647a361293fSJan Kara 3648a361293fSJan Kara if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal) 3649a361293fSJan Kara return 0; 3650a361293fSJan Kara 3651a361293fSJan Kara jinode = jbd2_alloc_inode(GFP_KERNEL); 3652a361293fSJan Kara spin_lock(&inode->i_lock); 3653a361293fSJan Kara if (!ei->jinode) { 3654a361293fSJan Kara if (!jinode) { 3655a361293fSJan Kara spin_unlock(&inode->i_lock); 3656a361293fSJan Kara return -ENOMEM; 3657a361293fSJan Kara } 3658a361293fSJan Kara ei->jinode = jinode; 3659a361293fSJan Kara jbd2_journal_init_jbd_inode(ei->jinode, inode); 3660a361293fSJan Kara jinode = NULL; 3661a361293fSJan Kara } 3662a361293fSJan Kara spin_unlock(&inode->i_lock); 3663a361293fSJan Kara if (unlikely(jinode != NULL)) 3664a361293fSJan Kara jbd2_free_inode(jinode); 3665a361293fSJan Kara return 0; 3666a361293fSJan Kara } 3667a361293fSJan Kara 3668a4bb6b64SAllison Henderson /* 3669617ba13bSMingming Cao * ext4_truncate() 3670ac27a0ecSDave Kleikamp * 3671617ba13bSMingming Cao * We block out ext4_get_block() block instantiations across the entire 3672617ba13bSMingming Cao * transaction, and VFS/VM ensures that ext4_truncate() cannot run 3673ac27a0ecSDave Kleikamp * simultaneously on behalf of the same inode. 3674ac27a0ecSDave Kleikamp * 367542b2aa86SJustin P. Mattock * As we work through the truncate and commit bits of it to the journal there 3676ac27a0ecSDave Kleikamp * is one core, guiding principle: the file's tree must always be consistent on 3677ac27a0ecSDave Kleikamp * disk. We must be able to restart the truncate after a crash. 3678ac27a0ecSDave Kleikamp * 3679ac27a0ecSDave Kleikamp * The file's tree may be transiently inconsistent in memory (although it 3680ac27a0ecSDave Kleikamp * probably isn't), but whenever we close off and commit a journal transaction, 3681ac27a0ecSDave Kleikamp * the contents of (the filesystem + the journal) must be consistent and 3682ac27a0ecSDave Kleikamp * restartable. It's pretty simple, really: bottom up, right to left (although 3683ac27a0ecSDave Kleikamp * left-to-right works OK too). 3684ac27a0ecSDave Kleikamp * 3685ac27a0ecSDave Kleikamp * Note that at recovery time, journal replay occurs *before* the restart of 3686ac27a0ecSDave Kleikamp * truncate against the orphan inode list. 3687ac27a0ecSDave Kleikamp * 3688ac27a0ecSDave Kleikamp * The committed inode has the new, desired i_size (which is the same as 3689617ba13bSMingming Cao * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see 3690ac27a0ecSDave Kleikamp * that this inode's truncate did not complete and it will again call 3691617ba13bSMingming Cao * ext4_truncate() to have another go. So there will be instantiated blocks 3692617ba13bSMingming Cao * to the right of the truncation point in a crashed ext4 filesystem. But 3693ac27a0ecSDave Kleikamp * that's fine - as long as they are linked from the inode, the post-crash 3694617ba13bSMingming Cao * ext4_truncate() run will find them and release them. 3695ac27a0ecSDave Kleikamp */ 3696617ba13bSMingming Cao void ext4_truncate(struct inode *inode) 3697ac27a0ecSDave Kleikamp { 3698819c4920STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 3699819c4920STheodore Ts'o unsigned int credits; 3700819c4920STheodore Ts'o handle_t *handle; 3701819c4920STheodore Ts'o struct address_space *mapping = inode->i_mapping; 3702819c4920STheodore Ts'o 370319b5ef61STheodore Ts'o /* 370419b5ef61STheodore Ts'o * There is a possibility that we're either freeing the inode 3705e04027e8SMatthew Wilcox * or it's a completely new inode. In those cases we might not 370619b5ef61STheodore Ts'o * have i_mutex locked because it's not necessary. 370719b5ef61STheodore Ts'o */ 370819b5ef61STheodore Ts'o if (!(inode->i_state & (I_NEW|I_FREEING))) 370919b5ef61STheodore Ts'o WARN_ON(!mutex_is_locked(&inode->i_mutex)); 37100562e0baSJiaying Zhang trace_ext4_truncate_enter(inode); 37110562e0baSJiaying Zhang 371291ef4cafSDuane Griffin if (!ext4_can_truncate(inode)) 3713ac27a0ecSDave Kleikamp return; 3714ac27a0ecSDave Kleikamp 371512e9b892SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS); 3716c8d46e41SJiaying Zhang 37175534fb5bSTheodore Ts'o if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC)) 371819f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE); 37197d8f9f7dSTheodore Ts'o 3720aef1c851STao Ma if (ext4_has_inline_data(inode)) { 3721aef1c851STao Ma int has_inline = 1; 3722aef1c851STao Ma 3723aef1c851STao Ma ext4_inline_data_truncate(inode, &has_inline); 3724aef1c851STao Ma if (has_inline) 3725aef1c851STao Ma return; 3726aef1c851STao Ma } 3727aef1c851STao Ma 3728a361293fSJan Kara /* If we zero-out tail of the page, we have to create jinode for jbd2 */ 3729a361293fSJan Kara if (inode->i_size & (inode->i_sb->s_blocksize - 1)) { 3730a361293fSJan Kara if (ext4_inode_attach_jinode(inode) < 0) 3731a361293fSJan Kara return; 3732a361293fSJan Kara } 3733a361293fSJan Kara 3734ff9893dcSAmir Goldstein if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 3735819c4920STheodore Ts'o credits = ext4_writepage_trans_blocks(inode); 3736ff9893dcSAmir Goldstein else 3737819c4920STheodore Ts'o credits = ext4_blocks_for_truncate(inode); 3738819c4920STheodore Ts'o 3739819c4920STheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits); 3740819c4920STheodore Ts'o if (IS_ERR(handle)) { 3741819c4920STheodore Ts'o ext4_std_error(inode->i_sb, PTR_ERR(handle)); 3742819c4920STheodore Ts'o return; 3743819c4920STheodore Ts'o } 3744819c4920STheodore Ts'o 3745eb3544c6SLukas Czerner if (inode->i_size & (inode->i_sb->s_blocksize - 1)) 3746eb3544c6SLukas Czerner ext4_block_truncate_page(handle, mapping, inode->i_size); 3747819c4920STheodore Ts'o 3748819c4920STheodore Ts'o /* 3749819c4920STheodore Ts'o * We add the inode to the orphan list, so that if this 3750819c4920STheodore Ts'o * truncate spans multiple transactions, and we crash, we will 3751819c4920STheodore Ts'o * resume the truncate when the filesystem recovers. It also 3752819c4920STheodore Ts'o * marks the inode dirty, to catch the new size. 3753819c4920STheodore Ts'o * 3754819c4920STheodore Ts'o * Implication: the file must always be in a sane, consistent 3755819c4920STheodore Ts'o * truncatable state while each transaction commits. 3756819c4920STheodore Ts'o */ 3757819c4920STheodore Ts'o if (ext4_orphan_add(handle, inode)) 3758819c4920STheodore Ts'o goto out_stop; 3759819c4920STheodore Ts'o 3760819c4920STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 3761819c4920STheodore Ts'o 3762819c4920STheodore Ts'o ext4_discard_preallocations(inode); 3763819c4920STheodore Ts'o 3764819c4920STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 3765819c4920STheodore Ts'o ext4_ext_truncate(handle, inode); 3766819c4920STheodore Ts'o else 3767819c4920STheodore Ts'o ext4_ind_truncate(handle, inode); 3768819c4920STheodore Ts'o 3769819c4920STheodore Ts'o up_write(&ei->i_data_sem); 3770819c4920STheodore Ts'o 3771819c4920STheodore Ts'o if (IS_SYNC(inode)) 3772819c4920STheodore Ts'o ext4_handle_sync(handle); 3773819c4920STheodore Ts'o 3774819c4920STheodore Ts'o out_stop: 3775819c4920STheodore Ts'o /* 3776819c4920STheodore Ts'o * If this was a simple ftruncate() and the file will remain alive, 3777819c4920STheodore Ts'o * then we need to clear up the orphan record which we created above. 3778819c4920STheodore Ts'o * However, if this was a real unlink then we were called by 377958d86a50SWang Shilong * ext4_evict_inode(), and we allow that function to clean up the 3780819c4920STheodore Ts'o * orphan info for us. 3781819c4920STheodore Ts'o */ 3782819c4920STheodore Ts'o if (inode->i_nlink) 3783819c4920STheodore Ts'o ext4_orphan_del(handle, inode); 3784819c4920STheodore Ts'o 3785819c4920STheodore Ts'o inode->i_mtime = inode->i_ctime = ext4_current_time(inode); 3786819c4920STheodore Ts'o ext4_mark_inode_dirty(handle, inode); 3787819c4920STheodore Ts'o ext4_journal_stop(handle); 3788a86c6181SAlex Tomas 37890562e0baSJiaying Zhang trace_ext4_truncate_exit(inode); 3790ac27a0ecSDave Kleikamp } 3791ac27a0ecSDave Kleikamp 3792ac27a0ecSDave Kleikamp /* 3793617ba13bSMingming Cao * ext4_get_inode_loc returns with an extra refcount against the inode's 3794ac27a0ecSDave Kleikamp * underlying buffer_head on success. If 'in_mem' is true, we have all 3795ac27a0ecSDave Kleikamp * data in memory that is needed to recreate the on-disk version of this 3796ac27a0ecSDave Kleikamp * inode. 3797ac27a0ecSDave Kleikamp */ 3798617ba13bSMingming Cao static int __ext4_get_inode_loc(struct inode *inode, 3799617ba13bSMingming Cao struct ext4_iloc *iloc, int in_mem) 3800ac27a0ecSDave Kleikamp { 3801240799cdSTheodore Ts'o struct ext4_group_desc *gdp; 3802ac27a0ecSDave Kleikamp struct buffer_head *bh; 3803240799cdSTheodore Ts'o struct super_block *sb = inode->i_sb; 3804240799cdSTheodore Ts'o ext4_fsblk_t block; 3805240799cdSTheodore Ts'o int inodes_per_block, inode_offset; 3806ac27a0ecSDave Kleikamp 38073a06d778SAneesh Kumar K.V iloc->bh = NULL; 3808240799cdSTheodore Ts'o if (!ext4_valid_inum(sb, inode->i_ino)) 3809ac27a0ecSDave Kleikamp return -EIO; 3810ac27a0ecSDave Kleikamp 3811240799cdSTheodore Ts'o iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb); 3812240799cdSTheodore Ts'o gdp = ext4_get_group_desc(sb, iloc->block_group, NULL); 3813240799cdSTheodore Ts'o if (!gdp) 3814240799cdSTheodore Ts'o return -EIO; 3815240799cdSTheodore Ts'o 3816240799cdSTheodore Ts'o /* 3817240799cdSTheodore Ts'o * Figure out the offset within the block group inode table 3818240799cdSTheodore Ts'o */ 381900d09882STao Ma inodes_per_block = EXT4_SB(sb)->s_inodes_per_block; 3820240799cdSTheodore Ts'o inode_offset = ((inode->i_ino - 1) % 3821240799cdSTheodore Ts'o EXT4_INODES_PER_GROUP(sb)); 3822240799cdSTheodore Ts'o block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block); 3823240799cdSTheodore Ts'o iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb); 3824240799cdSTheodore Ts'o 3825240799cdSTheodore Ts'o bh = sb_getblk(sb, block); 3826aebf0243SWang Shilong if (unlikely(!bh)) 3827860d21e2STheodore Ts'o return -ENOMEM; 3828ac27a0ecSDave Kleikamp if (!buffer_uptodate(bh)) { 3829ac27a0ecSDave Kleikamp lock_buffer(bh); 38309c83a923SHidehiro Kawai 38319c83a923SHidehiro Kawai /* 38329c83a923SHidehiro Kawai * If the buffer has the write error flag, we have failed 38339c83a923SHidehiro Kawai * to write out another inode in the same block. In this 38349c83a923SHidehiro Kawai * case, we don't have to read the block because we may 38359c83a923SHidehiro Kawai * read the old inode data successfully. 38369c83a923SHidehiro Kawai */ 38379c83a923SHidehiro Kawai if (buffer_write_io_error(bh) && !buffer_uptodate(bh)) 38389c83a923SHidehiro Kawai set_buffer_uptodate(bh); 38399c83a923SHidehiro Kawai 3840ac27a0ecSDave Kleikamp if (buffer_uptodate(bh)) { 3841ac27a0ecSDave Kleikamp /* someone brought it uptodate while we waited */ 3842ac27a0ecSDave Kleikamp unlock_buffer(bh); 3843ac27a0ecSDave Kleikamp goto has_buffer; 3844ac27a0ecSDave Kleikamp } 3845ac27a0ecSDave Kleikamp 3846ac27a0ecSDave Kleikamp /* 3847ac27a0ecSDave Kleikamp * If we have all information of the inode in memory and this 3848ac27a0ecSDave Kleikamp * is the only valid inode in the block, we need not read the 3849ac27a0ecSDave Kleikamp * block. 3850ac27a0ecSDave Kleikamp */ 3851ac27a0ecSDave Kleikamp if (in_mem) { 3852ac27a0ecSDave Kleikamp struct buffer_head *bitmap_bh; 3853240799cdSTheodore Ts'o int i, start; 3854ac27a0ecSDave Kleikamp 3855240799cdSTheodore Ts'o start = inode_offset & ~(inodes_per_block - 1); 3856ac27a0ecSDave Kleikamp 3857ac27a0ecSDave Kleikamp /* Is the inode bitmap in cache? */ 3858240799cdSTheodore Ts'o bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp)); 3859aebf0243SWang Shilong if (unlikely(!bitmap_bh)) 3860ac27a0ecSDave Kleikamp goto make_io; 3861ac27a0ecSDave Kleikamp 3862ac27a0ecSDave Kleikamp /* 3863ac27a0ecSDave Kleikamp * If the inode bitmap isn't in cache then the 3864ac27a0ecSDave Kleikamp * optimisation may end up performing two reads instead 3865ac27a0ecSDave Kleikamp * of one, so skip it. 3866ac27a0ecSDave Kleikamp */ 3867ac27a0ecSDave Kleikamp if (!buffer_uptodate(bitmap_bh)) { 3868ac27a0ecSDave Kleikamp brelse(bitmap_bh); 3869ac27a0ecSDave Kleikamp goto make_io; 3870ac27a0ecSDave Kleikamp } 3871240799cdSTheodore Ts'o for (i = start; i < start + inodes_per_block; i++) { 3872ac27a0ecSDave Kleikamp if (i == inode_offset) 3873ac27a0ecSDave Kleikamp continue; 3874617ba13bSMingming Cao if (ext4_test_bit(i, bitmap_bh->b_data)) 3875ac27a0ecSDave Kleikamp break; 3876ac27a0ecSDave Kleikamp } 3877ac27a0ecSDave Kleikamp brelse(bitmap_bh); 3878240799cdSTheodore Ts'o if (i == start + inodes_per_block) { 3879ac27a0ecSDave Kleikamp /* all other inodes are free, so skip I/O */ 3880ac27a0ecSDave Kleikamp memset(bh->b_data, 0, bh->b_size); 3881ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 3882ac27a0ecSDave Kleikamp unlock_buffer(bh); 3883ac27a0ecSDave Kleikamp goto has_buffer; 3884ac27a0ecSDave Kleikamp } 3885ac27a0ecSDave Kleikamp } 3886ac27a0ecSDave Kleikamp 3887ac27a0ecSDave Kleikamp make_io: 3888ac27a0ecSDave Kleikamp /* 3889240799cdSTheodore Ts'o * If we need to do any I/O, try to pre-readahead extra 3890240799cdSTheodore Ts'o * blocks from the inode table. 3891240799cdSTheodore Ts'o */ 3892240799cdSTheodore Ts'o if (EXT4_SB(sb)->s_inode_readahead_blks) { 3893240799cdSTheodore Ts'o ext4_fsblk_t b, end, table; 3894240799cdSTheodore Ts'o unsigned num; 38950d606e2cSTheodore Ts'o __u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks; 3896240799cdSTheodore Ts'o 3897240799cdSTheodore Ts'o table = ext4_inode_table(sb, gdp); 3898b713a5ecSTheodore Ts'o /* s_inode_readahead_blks is always a power of 2 */ 38990d606e2cSTheodore Ts'o b = block & ~((ext4_fsblk_t) ra_blks - 1); 3900240799cdSTheodore Ts'o if (table > b) 3901240799cdSTheodore Ts'o b = table; 39020d606e2cSTheodore Ts'o end = b + ra_blks; 3903240799cdSTheodore Ts'o num = EXT4_INODES_PER_GROUP(sb); 3904feb0ab32SDarrick J. Wong if (ext4_has_group_desc_csum(sb)) 3905560671a0SAneesh Kumar K.V num -= ext4_itable_unused_count(sb, gdp); 3906240799cdSTheodore Ts'o table += num / inodes_per_block; 3907240799cdSTheodore Ts'o if (end > table) 3908240799cdSTheodore Ts'o end = table; 3909240799cdSTheodore Ts'o while (b <= end) 3910240799cdSTheodore Ts'o sb_breadahead(sb, b++); 3911240799cdSTheodore Ts'o } 3912240799cdSTheodore Ts'o 3913240799cdSTheodore Ts'o /* 3914ac27a0ecSDave Kleikamp * There are other valid inodes in the buffer, this inode 3915ac27a0ecSDave Kleikamp * has in-inode xattrs, or we don't have this inode in memory. 3916ac27a0ecSDave Kleikamp * Read the block from disk. 3917ac27a0ecSDave Kleikamp */ 39180562e0baSJiaying Zhang trace_ext4_load_inode(inode); 3919ac27a0ecSDave Kleikamp get_bh(bh); 3920ac27a0ecSDave Kleikamp bh->b_end_io = end_buffer_read_sync; 392165299a3bSChristoph Hellwig submit_bh(READ | REQ_META | REQ_PRIO, bh); 3922ac27a0ecSDave Kleikamp wait_on_buffer(bh); 3923ac27a0ecSDave Kleikamp if (!buffer_uptodate(bh)) { 3924c398eda0STheodore Ts'o EXT4_ERROR_INODE_BLOCK(inode, block, 3925c398eda0STheodore Ts'o "unable to read itable block"); 3926ac27a0ecSDave Kleikamp brelse(bh); 3927ac27a0ecSDave Kleikamp return -EIO; 3928ac27a0ecSDave Kleikamp } 3929ac27a0ecSDave Kleikamp } 3930ac27a0ecSDave Kleikamp has_buffer: 3931ac27a0ecSDave Kleikamp iloc->bh = bh; 3932ac27a0ecSDave Kleikamp return 0; 3933ac27a0ecSDave Kleikamp } 3934ac27a0ecSDave Kleikamp 3935617ba13bSMingming Cao int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc) 3936ac27a0ecSDave Kleikamp { 3937ac27a0ecSDave Kleikamp /* We have all inode data except xattrs in memory here. */ 3938617ba13bSMingming Cao return __ext4_get_inode_loc(inode, iloc, 393919f5fb7aSTheodore Ts'o !ext4_test_inode_state(inode, EXT4_STATE_XATTR)); 3940ac27a0ecSDave Kleikamp } 3941ac27a0ecSDave Kleikamp 3942617ba13bSMingming Cao void ext4_set_inode_flags(struct inode *inode) 3943ac27a0ecSDave Kleikamp { 3944617ba13bSMingming Cao unsigned int flags = EXT4_I(inode)->i_flags; 394500a1a053STheodore Ts'o unsigned int new_fl = 0; 3946ac27a0ecSDave Kleikamp 3947617ba13bSMingming Cao if (flags & EXT4_SYNC_FL) 394800a1a053STheodore Ts'o new_fl |= S_SYNC; 3949617ba13bSMingming Cao if (flags & EXT4_APPEND_FL) 395000a1a053STheodore Ts'o new_fl |= S_APPEND; 3951617ba13bSMingming Cao if (flags & EXT4_IMMUTABLE_FL) 395200a1a053STheodore Ts'o new_fl |= S_IMMUTABLE; 3953617ba13bSMingming Cao if (flags & EXT4_NOATIME_FL) 395400a1a053STheodore Ts'o new_fl |= S_NOATIME; 3955617ba13bSMingming Cao if (flags & EXT4_DIRSYNC_FL) 395600a1a053STheodore Ts'o new_fl |= S_DIRSYNC; 3957923ae0ffSRoss Zwisler if (test_opt(inode->i_sb, DAX)) 3958923ae0ffSRoss Zwisler new_fl |= S_DAX; 39595f16f322STheodore Ts'o inode_set_flags(inode, new_fl, 3960923ae0ffSRoss Zwisler S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX); 3961ac27a0ecSDave Kleikamp } 3962ac27a0ecSDave Kleikamp 3963ff9ddf7eSJan Kara /* Propagate flags from i_flags to EXT4_I(inode)->i_flags */ 3964ff9ddf7eSJan Kara void ext4_get_inode_flags(struct ext4_inode_info *ei) 3965ff9ddf7eSJan Kara { 396684a8dce2SDmitry Monakhov unsigned int vfs_fl; 396784a8dce2SDmitry Monakhov unsigned long old_fl, new_fl; 3968ff9ddf7eSJan Kara 396984a8dce2SDmitry Monakhov do { 397084a8dce2SDmitry Monakhov vfs_fl = ei->vfs_inode.i_flags; 397184a8dce2SDmitry Monakhov old_fl = ei->i_flags; 397284a8dce2SDmitry Monakhov new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL| 397384a8dce2SDmitry Monakhov EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL| 397484a8dce2SDmitry Monakhov EXT4_DIRSYNC_FL); 397584a8dce2SDmitry Monakhov if (vfs_fl & S_SYNC) 397684a8dce2SDmitry Monakhov new_fl |= EXT4_SYNC_FL; 397784a8dce2SDmitry Monakhov if (vfs_fl & S_APPEND) 397884a8dce2SDmitry Monakhov new_fl |= EXT4_APPEND_FL; 397984a8dce2SDmitry Monakhov if (vfs_fl & S_IMMUTABLE) 398084a8dce2SDmitry Monakhov new_fl |= EXT4_IMMUTABLE_FL; 398184a8dce2SDmitry Monakhov if (vfs_fl & S_NOATIME) 398284a8dce2SDmitry Monakhov new_fl |= EXT4_NOATIME_FL; 398384a8dce2SDmitry Monakhov if (vfs_fl & S_DIRSYNC) 398484a8dce2SDmitry Monakhov new_fl |= EXT4_DIRSYNC_FL; 398584a8dce2SDmitry Monakhov } while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl); 3986ff9ddf7eSJan Kara } 3987de9a55b8STheodore Ts'o 39880fc1b451SAneesh Kumar K.V static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode, 39890fc1b451SAneesh Kumar K.V struct ext4_inode_info *ei) 39900fc1b451SAneesh Kumar K.V { 39910fc1b451SAneesh Kumar K.V blkcnt_t i_blocks ; 39928180a562SAneesh Kumar K.V struct inode *inode = &(ei->vfs_inode); 39938180a562SAneesh Kumar K.V struct super_block *sb = inode->i_sb; 39940fc1b451SAneesh Kumar K.V 39950fc1b451SAneesh Kumar K.V if (EXT4_HAS_RO_COMPAT_FEATURE(sb, 39960fc1b451SAneesh Kumar K.V EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) { 39970fc1b451SAneesh Kumar K.V /* we are using combined 48 bit field */ 39980fc1b451SAneesh Kumar K.V i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 | 39990fc1b451SAneesh Kumar K.V le32_to_cpu(raw_inode->i_blocks_lo); 400007a03824STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) { 40018180a562SAneesh Kumar K.V /* i_blocks represent file system block size */ 40028180a562SAneesh Kumar K.V return i_blocks << (inode->i_blkbits - 9); 40038180a562SAneesh Kumar K.V } else { 40040fc1b451SAneesh Kumar K.V return i_blocks; 40058180a562SAneesh Kumar K.V } 40060fc1b451SAneesh Kumar K.V } else { 40070fc1b451SAneesh Kumar K.V return le32_to_cpu(raw_inode->i_blocks_lo); 40080fc1b451SAneesh Kumar K.V } 40090fc1b451SAneesh Kumar K.V } 4010ff9ddf7eSJan Kara 4011152a7b0aSTao Ma static inline void ext4_iget_extra_inode(struct inode *inode, 4012152a7b0aSTao Ma struct ext4_inode *raw_inode, 4013152a7b0aSTao Ma struct ext4_inode_info *ei) 4014152a7b0aSTao Ma { 4015152a7b0aSTao Ma __le32 *magic = (void *)raw_inode + 4016152a7b0aSTao Ma EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize; 401767cf5b09STao Ma if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) { 4018152a7b0aSTao Ma ext4_set_inode_state(inode, EXT4_STATE_XATTR); 401967cf5b09STao Ma ext4_find_inline_data_nolock(inode); 4020f19d5870STao Ma } else 4021f19d5870STao Ma EXT4_I(inode)->i_inline_off = 0; 4022152a7b0aSTao Ma } 4023152a7b0aSTao Ma 40241d1fe1eeSDavid Howells struct inode *ext4_iget(struct super_block *sb, unsigned long ino) 4025ac27a0ecSDave Kleikamp { 4026617ba13bSMingming Cao struct ext4_iloc iloc; 4027617ba13bSMingming Cao struct ext4_inode *raw_inode; 40281d1fe1eeSDavid Howells struct ext4_inode_info *ei; 40291d1fe1eeSDavid Howells struct inode *inode; 4030b436b9beSJan Kara journal_t *journal = EXT4_SB(sb)->s_journal; 40311d1fe1eeSDavid Howells long ret; 4032ac27a0ecSDave Kleikamp int block; 403308cefc7aSEric W. Biederman uid_t i_uid; 403408cefc7aSEric W. Biederman gid_t i_gid; 4035ac27a0ecSDave Kleikamp 40361d1fe1eeSDavid Howells inode = iget_locked(sb, ino); 40371d1fe1eeSDavid Howells if (!inode) 40381d1fe1eeSDavid Howells return ERR_PTR(-ENOMEM); 40391d1fe1eeSDavid Howells if (!(inode->i_state & I_NEW)) 40401d1fe1eeSDavid Howells return inode; 40411d1fe1eeSDavid Howells 40421d1fe1eeSDavid Howells ei = EXT4_I(inode); 40437dc57615SPeter Huewe iloc.bh = NULL; 4044ac27a0ecSDave Kleikamp 40451d1fe1eeSDavid Howells ret = __ext4_get_inode_loc(inode, &iloc, 0); 40461d1fe1eeSDavid Howells if (ret < 0) 4047ac27a0ecSDave Kleikamp goto bad_inode; 4048617ba13bSMingming Cao raw_inode = ext4_raw_inode(&iloc); 4049814525f4SDarrick J. Wong 4050814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 4051814525f4SDarrick J. Wong ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize); 4052814525f4SDarrick J. Wong if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize > 4053814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)) { 4054814525f4SDarrick J. Wong EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)", 4055814525f4SDarrick J. Wong EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize, 4056814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)); 4057814525f4SDarrick J. Wong ret = -EIO; 4058814525f4SDarrick J. Wong goto bad_inode; 4059814525f4SDarrick J. Wong } 4060814525f4SDarrick J. Wong } else 4061814525f4SDarrick J. Wong ei->i_extra_isize = 0; 4062814525f4SDarrick J. Wong 4063814525f4SDarrick J. Wong /* Precompute checksum seed for inode metadata */ 40649aa5d32bSDmitry Monakhov if (ext4_has_metadata_csum(sb)) { 4065814525f4SDarrick J. Wong struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 4066814525f4SDarrick J. Wong __u32 csum; 4067814525f4SDarrick J. Wong __le32 inum = cpu_to_le32(inode->i_ino); 4068814525f4SDarrick J. Wong __le32 gen = raw_inode->i_generation; 4069814525f4SDarrick J. Wong csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum, 4070814525f4SDarrick J. Wong sizeof(inum)); 4071814525f4SDarrick J. Wong ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen, 4072814525f4SDarrick J. Wong sizeof(gen)); 4073814525f4SDarrick J. Wong } 4074814525f4SDarrick J. Wong 4075814525f4SDarrick J. Wong if (!ext4_inode_csum_verify(inode, raw_inode, ei)) { 4076814525f4SDarrick J. Wong EXT4_ERROR_INODE(inode, "checksum invalid"); 4077814525f4SDarrick J. Wong ret = -EIO; 4078814525f4SDarrick J. Wong goto bad_inode; 4079814525f4SDarrick J. Wong } 4080814525f4SDarrick J. Wong 4081ac27a0ecSDave Kleikamp inode->i_mode = le16_to_cpu(raw_inode->i_mode); 408208cefc7aSEric W. Biederman i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low); 408308cefc7aSEric W. Biederman i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low); 4084ac27a0ecSDave Kleikamp if (!(test_opt(inode->i_sb, NO_UID32))) { 408508cefc7aSEric W. Biederman i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16; 408608cefc7aSEric W. Biederman i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16; 4087ac27a0ecSDave Kleikamp } 408808cefc7aSEric W. Biederman i_uid_write(inode, i_uid); 408908cefc7aSEric W. Biederman i_gid_write(inode, i_gid); 4090bfe86848SMiklos Szeredi set_nlink(inode, le16_to_cpu(raw_inode->i_links_count)); 4091ac27a0ecSDave Kleikamp 4092353eb83cSTheodore Ts'o ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */ 409367cf5b09STao Ma ei->i_inline_off = 0; 4094ac27a0ecSDave Kleikamp ei->i_dir_start_lookup = 0; 4095ac27a0ecSDave Kleikamp ei->i_dtime = le32_to_cpu(raw_inode->i_dtime); 4096ac27a0ecSDave Kleikamp /* We now have enough fields to check if the inode was active or not. 4097ac27a0ecSDave Kleikamp * This is needed because nfsd might try to access dead inodes 4098ac27a0ecSDave Kleikamp * the test is that same one that e2fsck uses 4099ac27a0ecSDave Kleikamp * NeilBrown 1999oct15 4100ac27a0ecSDave Kleikamp */ 4101ac27a0ecSDave Kleikamp if (inode->i_nlink == 0) { 4102393d1d1dSDr. Tilmann Bubeck if ((inode->i_mode == 0 || 4103393d1d1dSDr. Tilmann Bubeck !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) && 4104393d1d1dSDr. Tilmann Bubeck ino != EXT4_BOOT_LOADER_INO) { 4105ac27a0ecSDave Kleikamp /* this inode is deleted */ 41061d1fe1eeSDavid Howells ret = -ESTALE; 4107ac27a0ecSDave Kleikamp goto bad_inode; 4108ac27a0ecSDave Kleikamp } 4109ac27a0ecSDave Kleikamp /* The only unlinked inodes we let through here have 4110ac27a0ecSDave Kleikamp * valid i_mode and are being read by the orphan 4111ac27a0ecSDave Kleikamp * recovery code: that's fine, we're about to complete 4112393d1d1dSDr. Tilmann Bubeck * the process of deleting those. 4113393d1d1dSDr. Tilmann Bubeck * OR it is the EXT4_BOOT_LOADER_INO which is 4114393d1d1dSDr. Tilmann Bubeck * not initialized on a new filesystem. */ 4115ac27a0ecSDave Kleikamp } 4116ac27a0ecSDave Kleikamp ei->i_flags = le32_to_cpu(raw_inode->i_flags); 41170fc1b451SAneesh Kumar K.V inode->i_blocks = ext4_inode_blocks(raw_inode, ei); 41187973c0c1SAneesh Kumar K.V ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo); 4119a9e81742STheodore Ts'o if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) 4120a1ddeb7eSBadari Pulavarty ei->i_file_acl |= 4121a1ddeb7eSBadari Pulavarty ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32; 4122a48380f7SAneesh Kumar K.V inode->i_size = ext4_isize(raw_inode); 4123ac27a0ecSDave Kleikamp ei->i_disksize = inode->i_size; 4124a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA 4125a9e7f447SDmitry Monakhov ei->i_reserved_quota = 0; 4126a9e7f447SDmitry Monakhov #endif 4127ac27a0ecSDave Kleikamp inode->i_generation = le32_to_cpu(raw_inode->i_generation); 4128ac27a0ecSDave Kleikamp ei->i_block_group = iloc.block_group; 4129a4912123STheodore Ts'o ei->i_last_alloc_group = ~0; 4130ac27a0ecSDave Kleikamp /* 4131ac27a0ecSDave Kleikamp * NOTE! The in-memory inode i_data array is in little-endian order 4132ac27a0ecSDave Kleikamp * even on big-endian machines: we do NOT byteswap the block numbers! 4133ac27a0ecSDave Kleikamp */ 4134617ba13bSMingming Cao for (block = 0; block < EXT4_N_BLOCKS; block++) 4135ac27a0ecSDave Kleikamp ei->i_data[block] = raw_inode->i_block[block]; 4136ac27a0ecSDave Kleikamp INIT_LIST_HEAD(&ei->i_orphan); 4137ac27a0ecSDave Kleikamp 4138b436b9beSJan Kara /* 4139b436b9beSJan Kara * Set transaction id's of transactions that have to be committed 4140b436b9beSJan Kara * to finish f[data]sync. We set them to currently running transaction 4141b436b9beSJan Kara * as we cannot be sure that the inode or some of its metadata isn't 4142b436b9beSJan Kara * part of the transaction - the inode could have been reclaimed and 4143b436b9beSJan Kara * now it is reread from disk. 4144b436b9beSJan Kara */ 4145b436b9beSJan Kara if (journal) { 4146b436b9beSJan Kara transaction_t *transaction; 4147b436b9beSJan Kara tid_t tid; 4148b436b9beSJan Kara 4149a931da6aSTheodore Ts'o read_lock(&journal->j_state_lock); 4150b436b9beSJan Kara if (journal->j_running_transaction) 4151b436b9beSJan Kara transaction = journal->j_running_transaction; 4152b436b9beSJan Kara else 4153b436b9beSJan Kara transaction = journal->j_committing_transaction; 4154b436b9beSJan Kara if (transaction) 4155b436b9beSJan Kara tid = transaction->t_tid; 4156b436b9beSJan Kara else 4157b436b9beSJan Kara tid = journal->j_commit_sequence; 4158a931da6aSTheodore Ts'o read_unlock(&journal->j_state_lock); 4159b436b9beSJan Kara ei->i_sync_tid = tid; 4160b436b9beSJan Kara ei->i_datasync_tid = tid; 4161b436b9beSJan Kara } 4162b436b9beSJan Kara 41630040d987SEric Sandeen if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 4164ac27a0ecSDave Kleikamp if (ei->i_extra_isize == 0) { 4165ac27a0ecSDave Kleikamp /* The extra space is currently unused. Use it. */ 4166617ba13bSMingming Cao ei->i_extra_isize = sizeof(struct ext4_inode) - 4167617ba13bSMingming Cao EXT4_GOOD_OLD_INODE_SIZE; 4168ac27a0ecSDave Kleikamp } else { 4169152a7b0aSTao Ma ext4_iget_extra_inode(inode, raw_inode, ei); 4170ac27a0ecSDave Kleikamp } 4171814525f4SDarrick J. Wong } 4172ac27a0ecSDave Kleikamp 4173ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode); 4174ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode); 4175ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode); 4176ef7f3835SKalpak Shah EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode); 4177ef7f3835SKalpak Shah 4178ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) { 417925ec56b5SJean Noel Cordenner inode->i_version = le32_to_cpu(raw_inode->i_disk_version); 418025ec56b5SJean Noel Cordenner if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 418125ec56b5SJean Noel Cordenner if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi)) 418225ec56b5SJean Noel Cordenner inode->i_version |= 418325ec56b5SJean Noel Cordenner (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32; 418425ec56b5SJean Noel Cordenner } 4185c4f65706STheodore Ts'o } 418625ec56b5SJean Noel Cordenner 4187c4b5a614STheodore Ts'o ret = 0; 4188485c26ecSTheodore Ts'o if (ei->i_file_acl && 41891032988cSTheodore Ts'o !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) { 419024676da4STheodore Ts'o EXT4_ERROR_INODE(inode, "bad extended attribute block %llu", 419124676da4STheodore Ts'o ei->i_file_acl); 4192485c26ecSTheodore Ts'o ret = -EIO; 4193485c26ecSTheodore Ts'o goto bad_inode; 4194f19d5870STao Ma } else if (!ext4_has_inline_data(inode)) { 4195f19d5870STao Ma if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 4196f19d5870STao Ma if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || 4197c4b5a614STheodore Ts'o (S_ISLNK(inode->i_mode) && 4198f19d5870STao Ma !ext4_inode_is_fast_symlink(inode)))) 41997a262f7cSAneesh Kumar K.V /* Validate extent which is part of inode */ 42007a262f7cSAneesh Kumar K.V ret = ext4_ext_check_inode(inode); 4201fe2c8191SThiemo Nagel } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || 4202fe2c8191SThiemo Nagel (S_ISLNK(inode->i_mode) && 4203fe2c8191SThiemo Nagel !ext4_inode_is_fast_symlink(inode))) { 4204fe2c8191SThiemo Nagel /* Validate block references which are part of inode */ 42051f7d1e77STheodore Ts'o ret = ext4_ind_check_inode(inode); 4206fe2c8191SThiemo Nagel } 4207f19d5870STao Ma } 4208567f3e9aSTheodore Ts'o if (ret) 42097a262f7cSAneesh Kumar K.V goto bad_inode; 42107a262f7cSAneesh Kumar K.V 4211ac27a0ecSDave Kleikamp if (S_ISREG(inode->i_mode)) { 4212617ba13bSMingming Cao inode->i_op = &ext4_file_inode_operations; 4213617ba13bSMingming Cao inode->i_fop = &ext4_file_operations; 4214617ba13bSMingming Cao ext4_set_aops(inode); 4215ac27a0ecSDave Kleikamp } else if (S_ISDIR(inode->i_mode)) { 4216617ba13bSMingming Cao inode->i_op = &ext4_dir_inode_operations; 4217617ba13bSMingming Cao inode->i_fop = &ext4_dir_operations; 4218ac27a0ecSDave Kleikamp } else if (S_ISLNK(inode->i_mode)) { 4219f348c252STheodore Ts'o if (ext4_inode_is_fast_symlink(inode) && 4220f348c252STheodore Ts'o !ext4_encrypted_inode(inode)) { 4221617ba13bSMingming Cao inode->i_op = &ext4_fast_symlink_inode_operations; 4222e83c1397SDuane Griffin nd_terminate_link(ei->i_data, inode->i_size, 4223e83c1397SDuane Griffin sizeof(ei->i_data) - 1); 4224e83c1397SDuane Griffin } else { 4225617ba13bSMingming Cao inode->i_op = &ext4_symlink_inode_operations; 4226617ba13bSMingming Cao ext4_set_aops(inode); 4227ac27a0ecSDave Kleikamp } 4228563bdd61STheodore Ts'o } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) || 4229563bdd61STheodore Ts'o S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) { 4230617ba13bSMingming Cao inode->i_op = &ext4_special_inode_operations; 4231ac27a0ecSDave Kleikamp if (raw_inode->i_block[0]) 4232ac27a0ecSDave Kleikamp init_special_inode(inode, inode->i_mode, 4233ac27a0ecSDave Kleikamp old_decode_dev(le32_to_cpu(raw_inode->i_block[0]))); 4234ac27a0ecSDave Kleikamp else 4235ac27a0ecSDave Kleikamp init_special_inode(inode, inode->i_mode, 4236ac27a0ecSDave Kleikamp new_decode_dev(le32_to_cpu(raw_inode->i_block[1]))); 4237393d1d1dSDr. Tilmann Bubeck } else if (ino == EXT4_BOOT_LOADER_INO) { 4238393d1d1dSDr. Tilmann Bubeck make_bad_inode(inode); 4239563bdd61STheodore Ts'o } else { 4240563bdd61STheodore Ts'o ret = -EIO; 424124676da4STheodore Ts'o EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode); 4242563bdd61STheodore Ts'o goto bad_inode; 4243ac27a0ecSDave Kleikamp } 4244ac27a0ecSDave Kleikamp brelse(iloc.bh); 4245617ba13bSMingming Cao ext4_set_inode_flags(inode); 42461d1fe1eeSDavid Howells unlock_new_inode(inode); 42471d1fe1eeSDavid Howells return inode; 4248ac27a0ecSDave Kleikamp 4249ac27a0ecSDave Kleikamp bad_inode: 4250567f3e9aSTheodore Ts'o brelse(iloc.bh); 42511d1fe1eeSDavid Howells iget_failed(inode); 42521d1fe1eeSDavid Howells return ERR_PTR(ret); 4253ac27a0ecSDave Kleikamp } 4254ac27a0ecSDave Kleikamp 4255f4bb2981STheodore Ts'o struct inode *ext4_iget_normal(struct super_block *sb, unsigned long ino) 4256f4bb2981STheodore Ts'o { 4257f4bb2981STheodore Ts'o if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO) 4258f4bb2981STheodore Ts'o return ERR_PTR(-EIO); 4259f4bb2981STheodore Ts'o return ext4_iget(sb, ino); 4260f4bb2981STheodore Ts'o } 4261f4bb2981STheodore Ts'o 42620fc1b451SAneesh Kumar K.V static int ext4_inode_blocks_set(handle_t *handle, 42630fc1b451SAneesh Kumar K.V struct ext4_inode *raw_inode, 42640fc1b451SAneesh Kumar K.V struct ext4_inode_info *ei) 42650fc1b451SAneesh Kumar K.V { 42660fc1b451SAneesh Kumar K.V struct inode *inode = &(ei->vfs_inode); 42670fc1b451SAneesh Kumar K.V u64 i_blocks = inode->i_blocks; 42680fc1b451SAneesh Kumar K.V struct super_block *sb = inode->i_sb; 42690fc1b451SAneesh Kumar K.V 42700fc1b451SAneesh Kumar K.V if (i_blocks <= ~0U) { 42710fc1b451SAneesh Kumar K.V /* 42724907cb7bSAnatol Pomozov * i_blocks can be represented in a 32 bit variable 42730fc1b451SAneesh Kumar K.V * as multiple of 512 bytes 42740fc1b451SAneesh Kumar K.V */ 42758180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 42760fc1b451SAneesh Kumar K.V raw_inode->i_blocks_high = 0; 427784a8dce2SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE); 4278f287a1a5STheodore Ts'o return 0; 4279f287a1a5STheodore Ts'o } 4280f287a1a5STheodore Ts'o if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) 4281f287a1a5STheodore Ts'o return -EFBIG; 4282f287a1a5STheodore Ts'o 4283f287a1a5STheodore Ts'o if (i_blocks <= 0xffffffffffffULL) { 42840fc1b451SAneesh Kumar K.V /* 42850fc1b451SAneesh Kumar K.V * i_blocks can be represented in a 48 bit variable 42860fc1b451SAneesh Kumar K.V * as multiple of 512 bytes 42870fc1b451SAneesh Kumar K.V */ 42888180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 42890fc1b451SAneesh Kumar K.V raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32); 429084a8dce2SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE); 42910fc1b451SAneesh Kumar K.V } else { 429284a8dce2SDmitry Monakhov ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE); 42938180a562SAneesh Kumar K.V /* i_block is stored in file system block size */ 42948180a562SAneesh Kumar K.V i_blocks = i_blocks >> (inode->i_blkbits - 9); 42958180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 42968180a562SAneesh Kumar K.V raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32); 42970fc1b451SAneesh Kumar K.V } 4298f287a1a5STheodore Ts'o return 0; 42990fc1b451SAneesh Kumar K.V } 43000fc1b451SAneesh Kumar K.V 4301a26f4992STheodore Ts'o struct other_inode { 4302a26f4992STheodore Ts'o unsigned long orig_ino; 4303a26f4992STheodore Ts'o struct ext4_inode *raw_inode; 4304a26f4992STheodore Ts'o }; 4305a26f4992STheodore Ts'o 4306a26f4992STheodore Ts'o static int other_inode_match(struct inode * inode, unsigned long ino, 4307a26f4992STheodore Ts'o void *data) 4308a26f4992STheodore Ts'o { 4309a26f4992STheodore Ts'o struct other_inode *oi = (struct other_inode *) data; 4310a26f4992STheodore Ts'o 4311a26f4992STheodore Ts'o if ((inode->i_ino != ino) || 4312a26f4992STheodore Ts'o (inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW | 4313a26f4992STheodore Ts'o I_DIRTY_SYNC | I_DIRTY_DATASYNC)) || 4314a26f4992STheodore Ts'o ((inode->i_state & I_DIRTY_TIME) == 0)) 4315a26f4992STheodore Ts'o return 0; 4316a26f4992STheodore Ts'o spin_lock(&inode->i_lock); 4317a26f4992STheodore Ts'o if (((inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW | 4318a26f4992STheodore Ts'o I_DIRTY_SYNC | I_DIRTY_DATASYNC)) == 0) && 4319a26f4992STheodore Ts'o (inode->i_state & I_DIRTY_TIME)) { 4320a26f4992STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 4321a26f4992STheodore Ts'o 4322a26f4992STheodore Ts'o inode->i_state &= ~(I_DIRTY_TIME | I_DIRTY_TIME_EXPIRED); 4323a26f4992STheodore Ts'o spin_unlock(&inode->i_lock); 4324a26f4992STheodore Ts'o 4325a26f4992STheodore Ts'o spin_lock(&ei->i_raw_lock); 4326a26f4992STheodore Ts'o EXT4_INODE_SET_XTIME(i_ctime, inode, oi->raw_inode); 4327a26f4992STheodore Ts'o EXT4_INODE_SET_XTIME(i_mtime, inode, oi->raw_inode); 4328a26f4992STheodore Ts'o EXT4_INODE_SET_XTIME(i_atime, inode, oi->raw_inode); 4329a26f4992STheodore Ts'o ext4_inode_csum_set(inode, oi->raw_inode, ei); 4330a26f4992STheodore Ts'o spin_unlock(&ei->i_raw_lock); 4331a26f4992STheodore Ts'o trace_ext4_other_inode_update_time(inode, oi->orig_ino); 4332a26f4992STheodore Ts'o return -1; 4333a26f4992STheodore Ts'o } 4334a26f4992STheodore Ts'o spin_unlock(&inode->i_lock); 4335a26f4992STheodore Ts'o return -1; 4336a26f4992STheodore Ts'o } 4337a26f4992STheodore Ts'o 4338a26f4992STheodore Ts'o /* 4339a26f4992STheodore Ts'o * Opportunistically update the other time fields for other inodes in 4340a26f4992STheodore Ts'o * the same inode table block. 4341a26f4992STheodore Ts'o */ 4342a26f4992STheodore Ts'o static void ext4_update_other_inodes_time(struct super_block *sb, 4343a26f4992STheodore Ts'o unsigned long orig_ino, char *buf) 4344a26f4992STheodore Ts'o { 4345a26f4992STheodore Ts'o struct other_inode oi; 4346a26f4992STheodore Ts'o unsigned long ino; 4347a26f4992STheodore Ts'o int i, inodes_per_block = EXT4_SB(sb)->s_inodes_per_block; 4348a26f4992STheodore Ts'o int inode_size = EXT4_INODE_SIZE(sb); 4349a26f4992STheodore Ts'o 4350a26f4992STheodore Ts'o oi.orig_ino = orig_ino; 4351*0f0ff9a9STheodore Ts'o /* 4352*0f0ff9a9STheodore Ts'o * Calculate the first inode in the inode table block. Inode 4353*0f0ff9a9STheodore Ts'o * numbers are one-based. That is, the first inode in a block 4354*0f0ff9a9STheodore Ts'o * (assuming 4k blocks and 256 byte inodes) is (n*16 + 1). 4355*0f0ff9a9STheodore Ts'o */ 4356*0f0ff9a9STheodore Ts'o ino = ((orig_ino - 1) & ~(inodes_per_block - 1)) + 1; 4357a26f4992STheodore Ts'o for (i = 0; i < inodes_per_block; i++, ino++, buf += inode_size) { 4358a26f4992STheodore Ts'o if (ino == orig_ino) 4359a26f4992STheodore Ts'o continue; 4360a26f4992STheodore Ts'o oi.raw_inode = (struct ext4_inode *) buf; 4361a26f4992STheodore Ts'o (void) find_inode_nowait(sb, ino, other_inode_match, &oi); 4362a26f4992STheodore Ts'o } 4363a26f4992STheodore Ts'o } 4364a26f4992STheodore Ts'o 4365ac27a0ecSDave Kleikamp /* 4366ac27a0ecSDave Kleikamp * Post the struct inode info into an on-disk inode location in the 4367ac27a0ecSDave Kleikamp * buffer-cache. This gobbles the caller's reference to the 4368ac27a0ecSDave Kleikamp * buffer_head in the inode location struct. 4369ac27a0ecSDave Kleikamp * 4370ac27a0ecSDave Kleikamp * The caller must have write access to iloc->bh. 4371ac27a0ecSDave Kleikamp */ 4372617ba13bSMingming Cao static int ext4_do_update_inode(handle_t *handle, 4373ac27a0ecSDave Kleikamp struct inode *inode, 4374830156c7SFrank Mayhar struct ext4_iloc *iloc) 4375ac27a0ecSDave Kleikamp { 4376617ba13bSMingming Cao struct ext4_inode *raw_inode = ext4_raw_inode(iloc); 4377617ba13bSMingming Cao struct ext4_inode_info *ei = EXT4_I(inode); 4378ac27a0ecSDave Kleikamp struct buffer_head *bh = iloc->bh; 4379202ee5dfSTheodore Ts'o struct super_block *sb = inode->i_sb; 4380ac27a0ecSDave Kleikamp int err = 0, rc, block; 4381202ee5dfSTheodore Ts'o int need_datasync = 0, set_large_file = 0; 438208cefc7aSEric W. Biederman uid_t i_uid; 438308cefc7aSEric W. Biederman gid_t i_gid; 4384ac27a0ecSDave Kleikamp 4385202ee5dfSTheodore Ts'o spin_lock(&ei->i_raw_lock); 4386202ee5dfSTheodore Ts'o 4387202ee5dfSTheodore Ts'o /* For fields not tracked in the in-memory inode, 4388ac27a0ecSDave Kleikamp * initialise them to zero for new inodes. */ 438919f5fb7aSTheodore Ts'o if (ext4_test_inode_state(inode, EXT4_STATE_NEW)) 4390617ba13bSMingming Cao memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size); 4391ac27a0ecSDave Kleikamp 4392ff9ddf7eSJan Kara ext4_get_inode_flags(ei); 4393ac27a0ecSDave Kleikamp raw_inode->i_mode = cpu_to_le16(inode->i_mode); 439408cefc7aSEric W. Biederman i_uid = i_uid_read(inode); 439508cefc7aSEric W. Biederman i_gid = i_gid_read(inode); 4396ac27a0ecSDave Kleikamp if (!(test_opt(inode->i_sb, NO_UID32))) { 439708cefc7aSEric W. Biederman raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid)); 439808cefc7aSEric W. Biederman raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid)); 4399ac27a0ecSDave Kleikamp /* 4400ac27a0ecSDave Kleikamp * Fix up interoperability with old kernels. Otherwise, old inodes get 4401ac27a0ecSDave Kleikamp * re-used with the upper 16 bits of the uid/gid intact 4402ac27a0ecSDave Kleikamp */ 4403ac27a0ecSDave Kleikamp if (!ei->i_dtime) { 4404ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 440508cefc7aSEric W. Biederman cpu_to_le16(high_16_bits(i_uid)); 4406ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 440708cefc7aSEric W. Biederman cpu_to_le16(high_16_bits(i_gid)); 4408ac27a0ecSDave Kleikamp } else { 4409ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 0; 4410ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 0; 4411ac27a0ecSDave Kleikamp } 4412ac27a0ecSDave Kleikamp } else { 441308cefc7aSEric W. Biederman raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid)); 441408cefc7aSEric W. Biederman raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid)); 4415ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 0; 4416ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 0; 4417ac27a0ecSDave Kleikamp } 4418ac27a0ecSDave Kleikamp raw_inode->i_links_count = cpu_to_le16(inode->i_nlink); 4419ef7f3835SKalpak Shah 4420ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode); 4421ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode); 4422ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode); 4423ef7f3835SKalpak Shah EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode); 4424ef7f3835SKalpak Shah 4425bce92d56SLi Xi err = ext4_inode_blocks_set(handle, raw_inode, ei); 4426bce92d56SLi Xi if (err) { 4427202ee5dfSTheodore Ts'o spin_unlock(&ei->i_raw_lock); 44280fc1b451SAneesh Kumar K.V goto out_brelse; 4429202ee5dfSTheodore Ts'o } 4430ac27a0ecSDave Kleikamp raw_inode->i_dtime = cpu_to_le32(ei->i_dtime); 4431353eb83cSTheodore Ts'o raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF); 4432ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) 4433a1ddeb7eSBadari Pulavarty raw_inode->i_file_acl_high = 4434a1ddeb7eSBadari Pulavarty cpu_to_le16(ei->i_file_acl >> 32); 44357973c0c1SAneesh Kumar K.V raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl); 4436b71fc079SJan Kara if (ei->i_disksize != ext4_isize(raw_inode)) { 4437a48380f7SAneesh Kumar K.V ext4_isize_set(raw_inode, ei->i_disksize); 4438b71fc079SJan Kara need_datasync = 1; 4439b71fc079SJan Kara } 4440ac27a0ecSDave Kleikamp if (ei->i_disksize > 0x7fffffffULL) { 4441617ba13bSMingming Cao if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, 4442617ba13bSMingming Cao EXT4_FEATURE_RO_COMPAT_LARGE_FILE) || 4443617ba13bSMingming Cao EXT4_SB(sb)->s_es->s_rev_level == 4444202ee5dfSTheodore Ts'o cpu_to_le32(EXT4_GOOD_OLD_REV)) 4445202ee5dfSTheodore Ts'o set_large_file = 1; 4446ac27a0ecSDave Kleikamp } 4447ac27a0ecSDave Kleikamp raw_inode->i_generation = cpu_to_le32(inode->i_generation); 4448ac27a0ecSDave Kleikamp if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) { 4449ac27a0ecSDave Kleikamp if (old_valid_dev(inode->i_rdev)) { 4450ac27a0ecSDave Kleikamp raw_inode->i_block[0] = 4451ac27a0ecSDave Kleikamp cpu_to_le32(old_encode_dev(inode->i_rdev)); 4452ac27a0ecSDave Kleikamp raw_inode->i_block[1] = 0; 4453ac27a0ecSDave Kleikamp } else { 4454ac27a0ecSDave Kleikamp raw_inode->i_block[0] = 0; 4455ac27a0ecSDave Kleikamp raw_inode->i_block[1] = 4456ac27a0ecSDave Kleikamp cpu_to_le32(new_encode_dev(inode->i_rdev)); 4457ac27a0ecSDave Kleikamp raw_inode->i_block[2] = 0; 4458ac27a0ecSDave Kleikamp } 4459f19d5870STao Ma } else if (!ext4_has_inline_data(inode)) { 4460de9a55b8STheodore Ts'o for (block = 0; block < EXT4_N_BLOCKS; block++) 4461ac27a0ecSDave Kleikamp raw_inode->i_block[block] = ei->i_data[block]; 4462f19d5870STao Ma } 4463ac27a0ecSDave Kleikamp 4464ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) { 446525ec56b5SJean Noel Cordenner raw_inode->i_disk_version = cpu_to_le32(inode->i_version); 446625ec56b5SJean Noel Cordenner if (ei->i_extra_isize) { 446725ec56b5SJean Noel Cordenner if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi)) 446825ec56b5SJean Noel Cordenner raw_inode->i_version_hi = 446925ec56b5SJean Noel Cordenner cpu_to_le32(inode->i_version >> 32); 4470c4f65706STheodore Ts'o raw_inode->i_extra_isize = 4471c4f65706STheodore Ts'o cpu_to_le16(ei->i_extra_isize); 4472c4f65706STheodore Ts'o } 447325ec56b5SJean Noel Cordenner } 4474814525f4SDarrick J. Wong ext4_inode_csum_set(inode, raw_inode, ei); 4475202ee5dfSTheodore Ts'o spin_unlock(&ei->i_raw_lock); 4476a26f4992STheodore Ts'o if (inode->i_sb->s_flags & MS_LAZYTIME) 4477a26f4992STheodore Ts'o ext4_update_other_inodes_time(inode->i_sb, inode->i_ino, 4478a26f4992STheodore Ts'o bh->b_data); 4479202ee5dfSTheodore Ts'o 44800390131bSFrank Mayhar BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); 448173b50c1cSCurt Wohlgemuth rc = ext4_handle_dirty_metadata(handle, NULL, bh); 4482ac27a0ecSDave Kleikamp if (!err) 4483ac27a0ecSDave Kleikamp err = rc; 448419f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_NEW); 4485202ee5dfSTheodore Ts'o if (set_large_file) { 44865d601255Sliang xie BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access"); 4487202ee5dfSTheodore Ts'o err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh); 4488202ee5dfSTheodore Ts'o if (err) 4489202ee5dfSTheodore Ts'o goto out_brelse; 4490202ee5dfSTheodore Ts'o ext4_update_dynamic_rev(sb); 4491202ee5dfSTheodore Ts'o EXT4_SET_RO_COMPAT_FEATURE(sb, 4492202ee5dfSTheodore Ts'o EXT4_FEATURE_RO_COMPAT_LARGE_FILE); 4493202ee5dfSTheodore Ts'o ext4_handle_sync(handle); 4494202ee5dfSTheodore Ts'o err = ext4_handle_dirty_super(handle, sb); 4495202ee5dfSTheodore Ts'o } 4496b71fc079SJan Kara ext4_update_inode_fsync_trans(handle, inode, need_datasync); 4497ac27a0ecSDave Kleikamp out_brelse: 4498ac27a0ecSDave Kleikamp brelse(bh); 4499617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 4500ac27a0ecSDave Kleikamp return err; 4501ac27a0ecSDave Kleikamp } 4502ac27a0ecSDave Kleikamp 4503ac27a0ecSDave Kleikamp /* 4504617ba13bSMingming Cao * ext4_write_inode() 4505ac27a0ecSDave Kleikamp * 4506ac27a0ecSDave Kleikamp * We are called from a few places: 4507ac27a0ecSDave Kleikamp * 450887f7e416STheodore Ts'o * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files. 4509ac27a0ecSDave Kleikamp * Here, there will be no transaction running. We wait for any running 45104907cb7bSAnatol Pomozov * transaction to commit. 4511ac27a0ecSDave Kleikamp * 451287f7e416STheodore Ts'o * - Within flush work (sys_sync(), kupdate and such). 451387f7e416STheodore Ts'o * We wait on commit, if told to. 4514ac27a0ecSDave Kleikamp * 451587f7e416STheodore Ts'o * - Within iput_final() -> write_inode_now() 451687f7e416STheodore Ts'o * We wait on commit, if told to. 4517ac27a0ecSDave Kleikamp * 4518ac27a0ecSDave Kleikamp * In all cases it is actually safe for us to return without doing anything, 4519ac27a0ecSDave Kleikamp * because the inode has been copied into a raw inode buffer in 452087f7e416STheodore Ts'o * ext4_mark_inode_dirty(). This is a correctness thing for WB_SYNC_ALL 452187f7e416STheodore Ts'o * writeback. 4522ac27a0ecSDave Kleikamp * 4523ac27a0ecSDave Kleikamp * Note that we are absolutely dependent upon all inode dirtiers doing the 4524ac27a0ecSDave Kleikamp * right thing: they *must* call mark_inode_dirty() after dirtying info in 4525ac27a0ecSDave Kleikamp * which we are interested. 4526ac27a0ecSDave Kleikamp * 4527ac27a0ecSDave Kleikamp * It would be a bug for them to not do this. The code: 4528ac27a0ecSDave Kleikamp * 4529ac27a0ecSDave Kleikamp * mark_inode_dirty(inode) 4530ac27a0ecSDave Kleikamp * stuff(); 4531ac27a0ecSDave Kleikamp * inode->i_size = expr; 4532ac27a0ecSDave Kleikamp * 453387f7e416STheodore Ts'o * is in error because write_inode() could occur while `stuff()' is running, 453487f7e416STheodore Ts'o * and the new i_size will be lost. Plus the inode will no longer be on the 453587f7e416STheodore Ts'o * superblock's dirty inode list. 4536ac27a0ecSDave Kleikamp */ 4537a9185b41SChristoph Hellwig int ext4_write_inode(struct inode *inode, struct writeback_control *wbc) 4538ac27a0ecSDave Kleikamp { 453991ac6f43SFrank Mayhar int err; 454091ac6f43SFrank Mayhar 454187f7e416STheodore Ts'o if (WARN_ON_ONCE(current->flags & PF_MEMALLOC)) 4542ac27a0ecSDave Kleikamp return 0; 4543ac27a0ecSDave Kleikamp 454491ac6f43SFrank Mayhar if (EXT4_SB(inode->i_sb)->s_journal) { 4545617ba13bSMingming Cao if (ext4_journal_current_handle()) { 4546b38bd33aSMingming Cao jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n"); 4547ac27a0ecSDave Kleikamp dump_stack(); 4548ac27a0ecSDave Kleikamp return -EIO; 4549ac27a0ecSDave Kleikamp } 4550ac27a0ecSDave Kleikamp 455110542c22SJan Kara /* 455210542c22SJan Kara * No need to force transaction in WB_SYNC_NONE mode. Also 455310542c22SJan Kara * ext4_sync_fs() will force the commit after everything is 455410542c22SJan Kara * written. 455510542c22SJan Kara */ 455610542c22SJan Kara if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync) 4557ac27a0ecSDave Kleikamp return 0; 4558ac27a0ecSDave Kleikamp 455991ac6f43SFrank Mayhar err = ext4_force_commit(inode->i_sb); 456091ac6f43SFrank Mayhar } else { 456191ac6f43SFrank Mayhar struct ext4_iloc iloc; 456291ac6f43SFrank Mayhar 45638b472d73SCurt Wohlgemuth err = __ext4_get_inode_loc(inode, &iloc, 0); 456491ac6f43SFrank Mayhar if (err) 456591ac6f43SFrank Mayhar return err; 456610542c22SJan Kara /* 456710542c22SJan Kara * sync(2) will flush the whole buffer cache. No need to do 456810542c22SJan Kara * it here separately for each inode. 456910542c22SJan Kara */ 457010542c22SJan Kara if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync) 4571830156c7SFrank Mayhar sync_dirty_buffer(iloc.bh); 4572830156c7SFrank Mayhar if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) { 4573c398eda0STheodore Ts'o EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr, 4574c398eda0STheodore Ts'o "IO error syncing inode"); 4575830156c7SFrank Mayhar err = -EIO; 4576830156c7SFrank Mayhar } 4577fd2dd9fbSCurt Wohlgemuth brelse(iloc.bh); 457891ac6f43SFrank Mayhar } 457991ac6f43SFrank Mayhar return err; 4580ac27a0ecSDave Kleikamp } 4581ac27a0ecSDave Kleikamp 4582ac27a0ecSDave Kleikamp /* 458353e87268SJan Kara * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate 458453e87268SJan Kara * buffers that are attached to a page stradding i_size and are undergoing 458553e87268SJan Kara * commit. In that case we have to wait for commit to finish and try again. 458653e87268SJan Kara */ 458753e87268SJan Kara static void ext4_wait_for_tail_page_commit(struct inode *inode) 458853e87268SJan Kara { 458953e87268SJan Kara struct page *page; 459053e87268SJan Kara unsigned offset; 459153e87268SJan Kara journal_t *journal = EXT4_SB(inode->i_sb)->s_journal; 459253e87268SJan Kara tid_t commit_tid = 0; 459353e87268SJan Kara int ret; 459453e87268SJan Kara 459553e87268SJan Kara offset = inode->i_size & (PAGE_CACHE_SIZE - 1); 459653e87268SJan Kara /* 459753e87268SJan Kara * All buffers in the last page remain valid? Then there's nothing to 459853e87268SJan Kara * do. We do the check mainly to optimize the common PAGE_CACHE_SIZE == 459953e87268SJan Kara * blocksize case 460053e87268SJan Kara */ 460153e87268SJan Kara if (offset > PAGE_CACHE_SIZE - (1 << inode->i_blkbits)) 460253e87268SJan Kara return; 460353e87268SJan Kara while (1) { 460453e87268SJan Kara page = find_lock_page(inode->i_mapping, 460553e87268SJan Kara inode->i_size >> PAGE_CACHE_SHIFT); 460653e87268SJan Kara if (!page) 460753e87268SJan Kara return; 4608ca99fdd2SLukas Czerner ret = __ext4_journalled_invalidatepage(page, offset, 4609ca99fdd2SLukas Czerner PAGE_CACHE_SIZE - offset); 461053e87268SJan Kara unlock_page(page); 461153e87268SJan Kara page_cache_release(page); 461253e87268SJan Kara if (ret != -EBUSY) 461353e87268SJan Kara return; 461453e87268SJan Kara commit_tid = 0; 461553e87268SJan Kara read_lock(&journal->j_state_lock); 461653e87268SJan Kara if (journal->j_committing_transaction) 461753e87268SJan Kara commit_tid = journal->j_committing_transaction->t_tid; 461853e87268SJan Kara read_unlock(&journal->j_state_lock); 461953e87268SJan Kara if (commit_tid) 462053e87268SJan Kara jbd2_log_wait_commit(journal, commit_tid); 462153e87268SJan Kara } 462253e87268SJan Kara } 462353e87268SJan Kara 462453e87268SJan Kara /* 4625617ba13bSMingming Cao * ext4_setattr() 4626ac27a0ecSDave Kleikamp * 4627ac27a0ecSDave Kleikamp * Called from notify_change. 4628ac27a0ecSDave Kleikamp * 4629ac27a0ecSDave Kleikamp * We want to trap VFS attempts to truncate the file as soon as 4630ac27a0ecSDave Kleikamp * possible. In particular, we want to make sure that when the VFS 4631ac27a0ecSDave Kleikamp * shrinks i_size, we put the inode on the orphan list and modify 4632ac27a0ecSDave Kleikamp * i_disksize immediately, so that during the subsequent flushing of 4633ac27a0ecSDave Kleikamp * dirty pages and freeing of disk blocks, we can guarantee that any 4634ac27a0ecSDave Kleikamp * commit will leave the blocks being flushed in an unused state on 4635ac27a0ecSDave Kleikamp * disk. (On recovery, the inode will get truncated and the blocks will 4636ac27a0ecSDave Kleikamp * be freed, so we have a strong guarantee that no future commit will 4637ac27a0ecSDave Kleikamp * leave these blocks visible to the user.) 4638ac27a0ecSDave Kleikamp * 4639678aaf48SJan Kara * Another thing we have to assure is that if we are in ordered mode 4640678aaf48SJan Kara * and inode is still attached to the committing transaction, we must 4641678aaf48SJan Kara * we start writeout of all the dirty pages which are being truncated. 4642678aaf48SJan Kara * This way we are sure that all the data written in the previous 4643678aaf48SJan Kara * transaction are already on disk (truncate waits for pages under 4644678aaf48SJan Kara * writeback). 4645678aaf48SJan Kara * 4646678aaf48SJan Kara * Called with inode->i_mutex down. 4647ac27a0ecSDave Kleikamp */ 4648617ba13bSMingming Cao int ext4_setattr(struct dentry *dentry, struct iattr *attr) 4649ac27a0ecSDave Kleikamp { 46502b0143b5SDavid Howells struct inode *inode = d_inode(dentry); 4651ac27a0ecSDave Kleikamp int error, rc = 0; 46523d287de3SDmitry Monakhov int orphan = 0; 4653ac27a0ecSDave Kleikamp const unsigned int ia_valid = attr->ia_valid; 4654ac27a0ecSDave Kleikamp 4655ac27a0ecSDave Kleikamp error = inode_change_ok(inode, attr); 4656ac27a0ecSDave Kleikamp if (error) 4657ac27a0ecSDave Kleikamp return error; 4658ac27a0ecSDave Kleikamp 465912755627SDmitry Monakhov if (is_quota_modification(inode, attr)) 4660871a2931SChristoph Hellwig dquot_initialize(inode); 466108cefc7aSEric W. Biederman if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) || 466208cefc7aSEric W. Biederman (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) { 4663ac27a0ecSDave Kleikamp handle_t *handle; 4664ac27a0ecSDave Kleikamp 4665ac27a0ecSDave Kleikamp /* (user+group)*(old+new) structure, inode write (sb, 4666ac27a0ecSDave Kleikamp * inode block, ? - but truncate inode update has it) */ 46679924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_QUOTA, 46689924a92aSTheodore Ts'o (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) + 4669194074acSDmitry Monakhov EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3); 4670ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 4671ac27a0ecSDave Kleikamp error = PTR_ERR(handle); 4672ac27a0ecSDave Kleikamp goto err_out; 4673ac27a0ecSDave Kleikamp } 4674b43fa828SChristoph Hellwig error = dquot_transfer(inode, attr); 4675ac27a0ecSDave Kleikamp if (error) { 4676617ba13bSMingming Cao ext4_journal_stop(handle); 4677ac27a0ecSDave Kleikamp return error; 4678ac27a0ecSDave Kleikamp } 4679ac27a0ecSDave Kleikamp /* Update corresponding info in inode so that everything is in 4680ac27a0ecSDave Kleikamp * one transaction */ 4681ac27a0ecSDave Kleikamp if (attr->ia_valid & ATTR_UID) 4682ac27a0ecSDave Kleikamp inode->i_uid = attr->ia_uid; 4683ac27a0ecSDave Kleikamp if (attr->ia_valid & ATTR_GID) 4684ac27a0ecSDave Kleikamp inode->i_gid = attr->ia_gid; 4685617ba13bSMingming Cao error = ext4_mark_inode_dirty(handle, inode); 4686617ba13bSMingming Cao ext4_journal_stop(handle); 4687ac27a0ecSDave Kleikamp } 4688ac27a0ecSDave Kleikamp 46893da40c7bSJosef Bacik if (attr->ia_valid & ATTR_SIZE) { 46905208386cSJan Kara handle_t *handle; 46913da40c7bSJosef Bacik loff_t oldsize = inode->i_size; 46923da40c7bSJosef Bacik int shrink = (attr->ia_size <= inode->i_size); 4693562c72aaSChristoph Hellwig 469412e9b892SDmitry Monakhov if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) { 4695e2b46574SEric Sandeen struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 4696e2b46574SEric Sandeen 46970c095c7fSTheodore Ts'o if (attr->ia_size > sbi->s_bitmap_maxbytes) 46980c095c7fSTheodore Ts'o return -EFBIG; 4699e2b46574SEric Sandeen } 47003da40c7bSJosef Bacik if (!S_ISREG(inode->i_mode)) 47013da40c7bSJosef Bacik return -EINVAL; 4702dff6efc3SChristoph Hellwig 4703dff6efc3SChristoph Hellwig if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size) 4704dff6efc3SChristoph Hellwig inode_inc_iversion(inode); 4705dff6efc3SChristoph Hellwig 47063da40c7bSJosef Bacik if (ext4_should_order_data(inode) && 4707072bd7eaSTheodore Ts'o (attr->ia_size < inode->i_size)) { 47085208386cSJan Kara error = ext4_begin_ordered_truncate(inode, 47095208386cSJan Kara attr->ia_size); 47105208386cSJan Kara if (error) 47115208386cSJan Kara goto err_out; 47125208386cSJan Kara } 47133da40c7bSJosef Bacik if (attr->ia_size != inode->i_size) { 47149924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 3); 4715ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 4716ac27a0ecSDave Kleikamp error = PTR_ERR(handle); 4717ac27a0ecSDave Kleikamp goto err_out; 4718ac27a0ecSDave Kleikamp } 47193da40c7bSJosef Bacik if (ext4_handle_valid(handle) && shrink) { 4720617ba13bSMingming Cao error = ext4_orphan_add(handle, inode); 47213d287de3SDmitry Monakhov orphan = 1; 47223d287de3SDmitry Monakhov } 472390e775b7SJan Kara down_write(&EXT4_I(inode)->i_data_sem); 4724617ba13bSMingming Cao EXT4_I(inode)->i_disksize = attr->ia_size; 4725617ba13bSMingming Cao rc = ext4_mark_inode_dirty(handle, inode); 4726ac27a0ecSDave Kleikamp if (!error) 4727ac27a0ecSDave Kleikamp error = rc; 472890e775b7SJan Kara /* 472990e775b7SJan Kara * We have to update i_size under i_data_sem together 473090e775b7SJan Kara * with i_disksize to avoid races with writeback code 473190e775b7SJan Kara * running ext4_wb_update_i_disksize(). 473290e775b7SJan Kara */ 473390e775b7SJan Kara if (!error) 473490e775b7SJan Kara i_size_write(inode, attr->ia_size); 473590e775b7SJan Kara up_write(&EXT4_I(inode)->i_data_sem); 4736617ba13bSMingming Cao ext4_journal_stop(handle); 4737678aaf48SJan Kara if (error) { 47383da40c7bSJosef Bacik if (orphan) 4739678aaf48SJan Kara ext4_orphan_del(NULL, inode); 4740678aaf48SJan Kara goto err_out; 4741678aaf48SJan Kara } 4742d6320cbfSJan Kara } 47433da40c7bSJosef Bacik if (!shrink) 47443da40c7bSJosef Bacik pagecache_isize_extended(inode, oldsize, inode->i_size); 474590e775b7SJan Kara 474653e87268SJan Kara /* 474753e87268SJan Kara * Blocks are going to be removed from the inode. Wait 474853e87268SJan Kara * for dio in flight. Temporarily disable 474953e87268SJan Kara * dioread_nolock to prevent livelock. 475053e87268SJan Kara */ 47511b65007eSDmitry Monakhov if (orphan) { 475253e87268SJan Kara if (!ext4_should_journal_data(inode)) { 47531b65007eSDmitry Monakhov ext4_inode_block_unlocked_dio(inode); 47541c9114f9SDmitry Monakhov inode_dio_wait(inode); 47551b65007eSDmitry Monakhov ext4_inode_resume_unlocked_dio(inode); 475653e87268SJan Kara } else 475753e87268SJan Kara ext4_wait_for_tail_page_commit(inode); 47581b65007eSDmitry Monakhov } 475953e87268SJan Kara /* 476053e87268SJan Kara * Truncate pagecache after we've waited for commit 476153e87268SJan Kara * in data=journal mode to make pages freeable. 476253e87268SJan Kara */ 47637caef267SKirill A. Shutemov truncate_pagecache(inode, inode->i_size); 47643da40c7bSJosef Bacik if (shrink) 4765072bd7eaSTheodore Ts'o ext4_truncate(inode); 47663da40c7bSJosef Bacik } 4767ac27a0ecSDave Kleikamp 47681025774cSChristoph Hellwig if (!rc) { 47691025774cSChristoph Hellwig setattr_copy(inode, attr); 47701025774cSChristoph Hellwig mark_inode_dirty(inode); 47711025774cSChristoph Hellwig } 47721025774cSChristoph Hellwig 47731025774cSChristoph Hellwig /* 47741025774cSChristoph Hellwig * If the call to ext4_truncate failed to get a transaction handle at 47751025774cSChristoph Hellwig * all, we need to clean up the in-core orphan list manually. 47761025774cSChristoph Hellwig */ 47773d287de3SDmitry Monakhov if (orphan && inode->i_nlink) 4778617ba13bSMingming Cao ext4_orphan_del(NULL, inode); 4779ac27a0ecSDave Kleikamp 4780ac27a0ecSDave Kleikamp if (!rc && (ia_valid & ATTR_MODE)) 478164e178a7SChristoph Hellwig rc = posix_acl_chmod(inode, inode->i_mode); 4782ac27a0ecSDave Kleikamp 4783ac27a0ecSDave Kleikamp err_out: 4784617ba13bSMingming Cao ext4_std_error(inode->i_sb, error); 4785ac27a0ecSDave Kleikamp if (!error) 4786ac27a0ecSDave Kleikamp error = rc; 4787ac27a0ecSDave Kleikamp return error; 4788ac27a0ecSDave Kleikamp } 4789ac27a0ecSDave Kleikamp 47903e3398a0SMingming Cao int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry, 47913e3398a0SMingming Cao struct kstat *stat) 47923e3398a0SMingming Cao { 47933e3398a0SMingming Cao struct inode *inode; 47948af8eeccSJan Kara unsigned long long delalloc_blocks; 47953e3398a0SMingming Cao 47962b0143b5SDavid Howells inode = d_inode(dentry); 47973e3398a0SMingming Cao generic_fillattr(inode, stat); 47983e3398a0SMingming Cao 47993e3398a0SMingming Cao /* 48009206c561SAndreas Dilger * If there is inline data in the inode, the inode will normally not 48019206c561SAndreas Dilger * have data blocks allocated (it may have an external xattr block). 48029206c561SAndreas Dilger * Report at least one sector for such files, so tools like tar, rsync, 48039206c561SAndreas Dilger * others doen't incorrectly think the file is completely sparse. 48049206c561SAndreas Dilger */ 48059206c561SAndreas Dilger if (unlikely(ext4_has_inline_data(inode))) 48069206c561SAndreas Dilger stat->blocks += (stat->size + 511) >> 9; 48079206c561SAndreas Dilger 48089206c561SAndreas Dilger /* 48093e3398a0SMingming Cao * We can't update i_blocks if the block allocation is delayed 48103e3398a0SMingming Cao * otherwise in the case of system crash before the real block 48113e3398a0SMingming Cao * allocation is done, we will have i_blocks inconsistent with 48123e3398a0SMingming Cao * on-disk file blocks. 48133e3398a0SMingming Cao * We always keep i_blocks updated together with real 48143e3398a0SMingming Cao * allocation. But to not confuse with user, stat 48153e3398a0SMingming Cao * will return the blocks that include the delayed allocation 48163e3398a0SMingming Cao * blocks for this file. 48173e3398a0SMingming Cao */ 481896607551STao Ma delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb), 481996607551STao Ma EXT4_I(inode)->i_reserved_data_blocks); 48208af8eeccSJan Kara stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9); 48213e3398a0SMingming Cao return 0; 48223e3398a0SMingming Cao } 4823ac27a0ecSDave Kleikamp 4824fffb2739SJan Kara static int ext4_index_trans_blocks(struct inode *inode, int lblocks, 4825fffb2739SJan Kara int pextents) 4826a02908f1SMingming Cao { 482712e9b892SDmitry Monakhov if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) 4828fffb2739SJan Kara return ext4_ind_trans_blocks(inode, lblocks); 4829fffb2739SJan Kara return ext4_ext_index_trans_blocks(inode, pextents); 4830a02908f1SMingming Cao } 4831ac51d837STheodore Ts'o 4832a02908f1SMingming Cao /* 4833a02908f1SMingming Cao * Account for index blocks, block groups bitmaps and block group 4834a02908f1SMingming Cao * descriptor blocks if modify datablocks and index blocks 4835a02908f1SMingming Cao * worse case, the indexs blocks spread over different block groups 4836a02908f1SMingming Cao * 4837a02908f1SMingming Cao * If datablocks are discontiguous, they are possible to spread over 48384907cb7bSAnatol Pomozov * different block groups too. If they are contiguous, with flexbg, 4839a02908f1SMingming Cao * they could still across block group boundary. 4840a02908f1SMingming Cao * 4841a02908f1SMingming Cao * Also account for superblock, inode, quota and xattr blocks 4842a02908f1SMingming Cao */ 4843fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks, 4844fffb2739SJan Kara int pextents) 4845a02908f1SMingming Cao { 48468df9675fSTheodore Ts'o ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb); 48478df9675fSTheodore Ts'o int gdpblocks; 4848a02908f1SMingming Cao int idxblocks; 4849a02908f1SMingming Cao int ret = 0; 4850a02908f1SMingming Cao 4851a02908f1SMingming Cao /* 4852fffb2739SJan Kara * How many index blocks need to touch to map @lblocks logical blocks 4853fffb2739SJan Kara * to @pextents physical extents? 4854a02908f1SMingming Cao */ 4855fffb2739SJan Kara idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents); 4856a02908f1SMingming Cao 4857a02908f1SMingming Cao ret = idxblocks; 4858a02908f1SMingming Cao 4859a02908f1SMingming Cao /* 4860a02908f1SMingming Cao * Now let's see how many group bitmaps and group descriptors need 4861a02908f1SMingming Cao * to account 4862a02908f1SMingming Cao */ 4863fffb2739SJan Kara groups = idxblocks + pextents; 4864a02908f1SMingming Cao gdpblocks = groups; 48658df9675fSTheodore Ts'o if (groups > ngroups) 48668df9675fSTheodore Ts'o groups = ngroups; 4867a02908f1SMingming Cao if (groups > EXT4_SB(inode->i_sb)->s_gdb_count) 4868a02908f1SMingming Cao gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count; 4869a02908f1SMingming Cao 4870a02908f1SMingming Cao /* bitmaps and block group descriptor blocks */ 4871a02908f1SMingming Cao ret += groups + gdpblocks; 4872a02908f1SMingming Cao 4873a02908f1SMingming Cao /* Blocks for super block, inode, quota and xattr blocks */ 4874a02908f1SMingming Cao ret += EXT4_META_TRANS_BLOCKS(inode->i_sb); 4875ac27a0ecSDave Kleikamp 4876ac27a0ecSDave Kleikamp return ret; 4877ac27a0ecSDave Kleikamp } 4878ac27a0ecSDave Kleikamp 4879ac27a0ecSDave Kleikamp /* 488025985edcSLucas De Marchi * Calculate the total number of credits to reserve to fit 4881f3bd1f3fSMingming Cao * the modification of a single pages into a single transaction, 4882f3bd1f3fSMingming Cao * which may include multiple chunks of block allocations. 4883a02908f1SMingming Cao * 4884525f4ed8SMingming Cao * This could be called via ext4_write_begin() 4885a02908f1SMingming Cao * 4886525f4ed8SMingming Cao * We need to consider the worse case, when 4887a02908f1SMingming Cao * one new block per extent. 4888a02908f1SMingming Cao */ 4889a02908f1SMingming Cao int ext4_writepage_trans_blocks(struct inode *inode) 4890a02908f1SMingming Cao { 4891a02908f1SMingming Cao int bpp = ext4_journal_blocks_per_page(inode); 4892a02908f1SMingming Cao int ret; 4893a02908f1SMingming Cao 4894fffb2739SJan Kara ret = ext4_meta_trans_blocks(inode, bpp, bpp); 4895a02908f1SMingming Cao 4896a02908f1SMingming Cao /* Account for data blocks for journalled mode */ 4897a02908f1SMingming Cao if (ext4_should_journal_data(inode)) 4898a02908f1SMingming Cao ret += bpp; 4899a02908f1SMingming Cao return ret; 4900a02908f1SMingming Cao } 4901f3bd1f3fSMingming Cao 4902f3bd1f3fSMingming Cao /* 4903f3bd1f3fSMingming Cao * Calculate the journal credits for a chunk of data modification. 4904f3bd1f3fSMingming Cao * 4905f3bd1f3fSMingming Cao * This is called from DIO, fallocate or whoever calling 490679e83036SEric Sandeen * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks. 4907f3bd1f3fSMingming Cao * 4908f3bd1f3fSMingming Cao * journal buffers for data blocks are not included here, as DIO 4909f3bd1f3fSMingming Cao * and fallocate do no need to journal data buffers. 4910f3bd1f3fSMingming Cao */ 4911f3bd1f3fSMingming Cao int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks) 4912f3bd1f3fSMingming Cao { 4913f3bd1f3fSMingming Cao return ext4_meta_trans_blocks(inode, nrblocks, 1); 4914f3bd1f3fSMingming Cao } 4915f3bd1f3fSMingming Cao 4916a02908f1SMingming Cao /* 4917617ba13bSMingming Cao * The caller must have previously called ext4_reserve_inode_write(). 4918ac27a0ecSDave Kleikamp * Give this, we know that the caller already has write access to iloc->bh. 4919ac27a0ecSDave Kleikamp */ 4920617ba13bSMingming Cao int ext4_mark_iloc_dirty(handle_t *handle, 4921617ba13bSMingming Cao struct inode *inode, struct ext4_iloc *iloc) 4922ac27a0ecSDave Kleikamp { 4923ac27a0ecSDave Kleikamp int err = 0; 4924ac27a0ecSDave Kleikamp 4925c64db50eSTheodore Ts'o if (IS_I_VERSION(inode)) 492625ec56b5SJean Noel Cordenner inode_inc_iversion(inode); 492725ec56b5SJean Noel Cordenner 4928ac27a0ecSDave Kleikamp /* the do_update_inode consumes one bh->b_count */ 4929ac27a0ecSDave Kleikamp get_bh(iloc->bh); 4930ac27a0ecSDave Kleikamp 4931dab291afSMingming Cao /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */ 4932830156c7SFrank Mayhar err = ext4_do_update_inode(handle, inode, iloc); 4933ac27a0ecSDave Kleikamp put_bh(iloc->bh); 4934ac27a0ecSDave Kleikamp return err; 4935ac27a0ecSDave Kleikamp } 4936ac27a0ecSDave Kleikamp 4937ac27a0ecSDave Kleikamp /* 4938ac27a0ecSDave Kleikamp * On success, We end up with an outstanding reference count against 4939ac27a0ecSDave Kleikamp * iloc->bh. This _must_ be cleaned up later. 4940ac27a0ecSDave Kleikamp */ 4941ac27a0ecSDave Kleikamp 4942ac27a0ecSDave Kleikamp int 4943617ba13bSMingming Cao ext4_reserve_inode_write(handle_t *handle, struct inode *inode, 4944617ba13bSMingming Cao struct ext4_iloc *iloc) 4945ac27a0ecSDave Kleikamp { 49460390131bSFrank Mayhar int err; 49470390131bSFrank Mayhar 4948617ba13bSMingming Cao err = ext4_get_inode_loc(inode, iloc); 4949ac27a0ecSDave Kleikamp if (!err) { 4950ac27a0ecSDave Kleikamp BUFFER_TRACE(iloc->bh, "get_write_access"); 4951617ba13bSMingming Cao err = ext4_journal_get_write_access(handle, iloc->bh); 4952ac27a0ecSDave Kleikamp if (err) { 4953ac27a0ecSDave Kleikamp brelse(iloc->bh); 4954ac27a0ecSDave Kleikamp iloc->bh = NULL; 4955ac27a0ecSDave Kleikamp } 4956ac27a0ecSDave Kleikamp } 4957617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 4958ac27a0ecSDave Kleikamp return err; 4959ac27a0ecSDave Kleikamp } 4960ac27a0ecSDave Kleikamp 4961ac27a0ecSDave Kleikamp /* 49626dd4ee7cSKalpak Shah * Expand an inode by new_extra_isize bytes. 49636dd4ee7cSKalpak Shah * Returns 0 on success or negative error number on failure. 49646dd4ee7cSKalpak Shah */ 49651d03ec98SAneesh Kumar K.V static int ext4_expand_extra_isize(struct inode *inode, 49661d03ec98SAneesh Kumar K.V unsigned int new_extra_isize, 49671d03ec98SAneesh Kumar K.V struct ext4_iloc iloc, 49681d03ec98SAneesh Kumar K.V handle_t *handle) 49696dd4ee7cSKalpak Shah { 49706dd4ee7cSKalpak Shah struct ext4_inode *raw_inode; 49716dd4ee7cSKalpak Shah struct ext4_xattr_ibody_header *header; 49726dd4ee7cSKalpak Shah 49736dd4ee7cSKalpak Shah if (EXT4_I(inode)->i_extra_isize >= new_extra_isize) 49746dd4ee7cSKalpak Shah return 0; 49756dd4ee7cSKalpak Shah 49766dd4ee7cSKalpak Shah raw_inode = ext4_raw_inode(&iloc); 49776dd4ee7cSKalpak Shah 49786dd4ee7cSKalpak Shah header = IHDR(inode, raw_inode); 49796dd4ee7cSKalpak Shah 49806dd4ee7cSKalpak Shah /* No extended attributes present */ 498119f5fb7aSTheodore Ts'o if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) || 49826dd4ee7cSKalpak Shah header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) { 49836dd4ee7cSKalpak Shah memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0, 49846dd4ee7cSKalpak Shah new_extra_isize); 49856dd4ee7cSKalpak Shah EXT4_I(inode)->i_extra_isize = new_extra_isize; 49866dd4ee7cSKalpak Shah return 0; 49876dd4ee7cSKalpak Shah } 49886dd4ee7cSKalpak Shah 49896dd4ee7cSKalpak Shah /* try to expand with EAs present */ 49906dd4ee7cSKalpak Shah return ext4_expand_extra_isize_ea(inode, new_extra_isize, 49916dd4ee7cSKalpak Shah raw_inode, handle); 49926dd4ee7cSKalpak Shah } 49936dd4ee7cSKalpak Shah 49946dd4ee7cSKalpak Shah /* 4995ac27a0ecSDave Kleikamp * What we do here is to mark the in-core inode as clean with respect to inode 4996ac27a0ecSDave Kleikamp * dirtiness (it may still be data-dirty). 4997ac27a0ecSDave Kleikamp * This means that the in-core inode may be reaped by prune_icache 4998ac27a0ecSDave Kleikamp * without having to perform any I/O. This is a very good thing, 4999ac27a0ecSDave Kleikamp * because *any* task may call prune_icache - even ones which 5000ac27a0ecSDave Kleikamp * have a transaction open against a different journal. 5001ac27a0ecSDave Kleikamp * 5002ac27a0ecSDave Kleikamp * Is this cheating? Not really. Sure, we haven't written the 5003ac27a0ecSDave Kleikamp * inode out, but prune_icache isn't a user-visible syncing function. 5004ac27a0ecSDave Kleikamp * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync) 5005ac27a0ecSDave Kleikamp * we start and wait on commits. 5006ac27a0ecSDave Kleikamp */ 5007617ba13bSMingming Cao int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode) 5008ac27a0ecSDave Kleikamp { 5009617ba13bSMingming Cao struct ext4_iloc iloc; 50106dd4ee7cSKalpak Shah struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 50116dd4ee7cSKalpak Shah static unsigned int mnt_count; 50126dd4ee7cSKalpak Shah int err, ret; 5013ac27a0ecSDave Kleikamp 5014ac27a0ecSDave Kleikamp might_sleep(); 50157ff9c073STheodore Ts'o trace_ext4_mark_inode_dirty(inode, _RET_IP_); 5016617ba13bSMingming Cao err = ext4_reserve_inode_write(handle, inode, &iloc); 50170390131bSFrank Mayhar if (ext4_handle_valid(handle) && 50180390131bSFrank Mayhar EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize && 501919f5fb7aSTheodore Ts'o !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) { 50206dd4ee7cSKalpak Shah /* 50216dd4ee7cSKalpak Shah * We need extra buffer credits since we may write into EA block 50226dd4ee7cSKalpak Shah * with this same handle. If journal_extend fails, then it will 50236dd4ee7cSKalpak Shah * only result in a minor loss of functionality for that inode. 50246dd4ee7cSKalpak Shah * If this is felt to be critical, then e2fsck should be run to 50256dd4ee7cSKalpak Shah * force a large enough s_min_extra_isize. 50266dd4ee7cSKalpak Shah */ 50276dd4ee7cSKalpak Shah if ((jbd2_journal_extend(handle, 50286dd4ee7cSKalpak Shah EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) { 50296dd4ee7cSKalpak Shah ret = ext4_expand_extra_isize(inode, 50306dd4ee7cSKalpak Shah sbi->s_want_extra_isize, 50316dd4ee7cSKalpak Shah iloc, handle); 50326dd4ee7cSKalpak Shah if (ret) { 503319f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, 503419f5fb7aSTheodore Ts'o EXT4_STATE_NO_EXPAND); 5035c1bddad9SAneesh Kumar K.V if (mnt_count != 5036c1bddad9SAneesh Kumar K.V le16_to_cpu(sbi->s_es->s_mnt_count)) { 503712062dddSEric Sandeen ext4_warning(inode->i_sb, 50386dd4ee7cSKalpak Shah "Unable to expand inode %lu. Delete" 50396dd4ee7cSKalpak Shah " some EAs or run e2fsck.", 50406dd4ee7cSKalpak Shah inode->i_ino); 5041c1bddad9SAneesh Kumar K.V mnt_count = 5042c1bddad9SAneesh Kumar K.V le16_to_cpu(sbi->s_es->s_mnt_count); 50436dd4ee7cSKalpak Shah } 50446dd4ee7cSKalpak Shah } 50456dd4ee7cSKalpak Shah } 50466dd4ee7cSKalpak Shah } 5047ac27a0ecSDave Kleikamp if (!err) 5048617ba13bSMingming Cao err = ext4_mark_iloc_dirty(handle, inode, &iloc); 5049ac27a0ecSDave Kleikamp return err; 5050ac27a0ecSDave Kleikamp } 5051ac27a0ecSDave Kleikamp 5052ac27a0ecSDave Kleikamp /* 5053617ba13bSMingming Cao * ext4_dirty_inode() is called from __mark_inode_dirty() 5054ac27a0ecSDave Kleikamp * 5055ac27a0ecSDave Kleikamp * We're really interested in the case where a file is being extended. 5056ac27a0ecSDave Kleikamp * i_size has been changed by generic_commit_write() and we thus need 5057ac27a0ecSDave Kleikamp * to include the updated inode in the current transaction. 5058ac27a0ecSDave Kleikamp * 50595dd4056dSChristoph Hellwig * Also, dquot_alloc_block() will always dirty the inode when blocks 5060ac27a0ecSDave Kleikamp * are allocated to the file. 5061ac27a0ecSDave Kleikamp * 5062ac27a0ecSDave Kleikamp * If the inode is marked synchronous, we don't honour that here - doing 5063ac27a0ecSDave Kleikamp * so would cause a commit on atime updates, which we don't bother doing. 5064ac27a0ecSDave Kleikamp * We handle synchronous inodes at the highest possible level. 50650ae45f63STheodore Ts'o * 50660ae45f63STheodore Ts'o * If only the I_DIRTY_TIME flag is set, we can skip everything. If 50670ae45f63STheodore Ts'o * I_DIRTY_TIME and I_DIRTY_SYNC is set, the only inode fields we need 50680ae45f63STheodore Ts'o * to copy into the on-disk inode structure are the timestamp files. 5069ac27a0ecSDave Kleikamp */ 5070aa385729SChristoph Hellwig void ext4_dirty_inode(struct inode *inode, int flags) 5071ac27a0ecSDave Kleikamp { 5072ac27a0ecSDave Kleikamp handle_t *handle; 5073ac27a0ecSDave Kleikamp 50740ae45f63STheodore Ts'o if (flags == I_DIRTY_TIME) 50750ae45f63STheodore Ts'o return; 50769924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 2); 5077ac27a0ecSDave Kleikamp if (IS_ERR(handle)) 5078ac27a0ecSDave Kleikamp goto out; 5079f3dc272fSCurt Wohlgemuth 5080617ba13bSMingming Cao ext4_mark_inode_dirty(handle, inode); 5081f3dc272fSCurt Wohlgemuth 5082617ba13bSMingming Cao ext4_journal_stop(handle); 5083ac27a0ecSDave Kleikamp out: 5084ac27a0ecSDave Kleikamp return; 5085ac27a0ecSDave Kleikamp } 5086ac27a0ecSDave Kleikamp 5087ac27a0ecSDave Kleikamp #if 0 5088ac27a0ecSDave Kleikamp /* 5089ac27a0ecSDave Kleikamp * Bind an inode's backing buffer_head into this transaction, to prevent 5090ac27a0ecSDave Kleikamp * it from being flushed to disk early. Unlike 5091617ba13bSMingming Cao * ext4_reserve_inode_write, this leaves behind no bh reference and 5092ac27a0ecSDave Kleikamp * returns no iloc structure, so the caller needs to repeat the iloc 5093ac27a0ecSDave Kleikamp * lookup to mark the inode dirty later. 5094ac27a0ecSDave Kleikamp */ 5095617ba13bSMingming Cao static int ext4_pin_inode(handle_t *handle, struct inode *inode) 5096ac27a0ecSDave Kleikamp { 5097617ba13bSMingming Cao struct ext4_iloc iloc; 5098ac27a0ecSDave Kleikamp 5099ac27a0ecSDave Kleikamp int err = 0; 5100ac27a0ecSDave Kleikamp if (handle) { 5101617ba13bSMingming Cao err = ext4_get_inode_loc(inode, &iloc); 5102ac27a0ecSDave Kleikamp if (!err) { 5103ac27a0ecSDave Kleikamp BUFFER_TRACE(iloc.bh, "get_write_access"); 5104dab291afSMingming Cao err = jbd2_journal_get_write_access(handle, iloc.bh); 5105ac27a0ecSDave Kleikamp if (!err) 51060390131bSFrank Mayhar err = ext4_handle_dirty_metadata(handle, 510773b50c1cSCurt Wohlgemuth NULL, 5108ac27a0ecSDave Kleikamp iloc.bh); 5109ac27a0ecSDave Kleikamp brelse(iloc.bh); 5110ac27a0ecSDave Kleikamp } 5111ac27a0ecSDave Kleikamp } 5112617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 5113ac27a0ecSDave Kleikamp return err; 5114ac27a0ecSDave Kleikamp } 5115ac27a0ecSDave Kleikamp #endif 5116ac27a0ecSDave Kleikamp 5117617ba13bSMingming Cao int ext4_change_inode_journal_flag(struct inode *inode, int val) 5118ac27a0ecSDave Kleikamp { 5119ac27a0ecSDave Kleikamp journal_t *journal; 5120ac27a0ecSDave Kleikamp handle_t *handle; 5121ac27a0ecSDave Kleikamp int err; 5122ac27a0ecSDave Kleikamp 5123ac27a0ecSDave Kleikamp /* 5124ac27a0ecSDave Kleikamp * We have to be very careful here: changing a data block's 5125ac27a0ecSDave Kleikamp * journaling status dynamically is dangerous. If we write a 5126ac27a0ecSDave Kleikamp * data block to the journal, change the status and then delete 5127ac27a0ecSDave Kleikamp * that block, we risk forgetting to revoke the old log record 5128ac27a0ecSDave Kleikamp * from the journal and so a subsequent replay can corrupt data. 5129ac27a0ecSDave Kleikamp * So, first we make sure that the journal is empty and that 5130ac27a0ecSDave Kleikamp * nobody is changing anything. 5131ac27a0ecSDave Kleikamp */ 5132ac27a0ecSDave Kleikamp 5133617ba13bSMingming Cao journal = EXT4_JOURNAL(inode); 51340390131bSFrank Mayhar if (!journal) 51350390131bSFrank Mayhar return 0; 5136d699594dSDave Hansen if (is_journal_aborted(journal)) 5137ac27a0ecSDave Kleikamp return -EROFS; 51382aff57b0SYongqiang Yang /* We have to allocate physical blocks for delalloc blocks 51392aff57b0SYongqiang Yang * before flushing journal. otherwise delalloc blocks can not 51402aff57b0SYongqiang Yang * be allocated any more. even more truncate on delalloc blocks 51412aff57b0SYongqiang Yang * could trigger BUG by flushing delalloc blocks in journal. 51422aff57b0SYongqiang Yang * There is no delalloc block in non-journal data mode. 51432aff57b0SYongqiang Yang */ 51442aff57b0SYongqiang Yang if (val && test_opt(inode->i_sb, DELALLOC)) { 51452aff57b0SYongqiang Yang err = ext4_alloc_da_blocks(inode); 51462aff57b0SYongqiang Yang if (err < 0) 51472aff57b0SYongqiang Yang return err; 51482aff57b0SYongqiang Yang } 5149ac27a0ecSDave Kleikamp 515017335dccSDmitry Monakhov /* Wait for all existing dio workers */ 515117335dccSDmitry Monakhov ext4_inode_block_unlocked_dio(inode); 515217335dccSDmitry Monakhov inode_dio_wait(inode); 515317335dccSDmitry Monakhov 5154dab291afSMingming Cao jbd2_journal_lock_updates(journal); 5155ac27a0ecSDave Kleikamp 5156ac27a0ecSDave Kleikamp /* 5157ac27a0ecSDave Kleikamp * OK, there are no updates running now, and all cached data is 5158ac27a0ecSDave Kleikamp * synced to disk. We are now in a completely consistent state 5159ac27a0ecSDave Kleikamp * which doesn't have anything in the journal, and we know that 5160ac27a0ecSDave Kleikamp * no filesystem updates are running, so it is safe to modify 5161ac27a0ecSDave Kleikamp * the inode's in-core data-journaling state flag now. 5162ac27a0ecSDave Kleikamp */ 5163ac27a0ecSDave Kleikamp 5164ac27a0ecSDave Kleikamp if (val) 516512e9b892SDmitry Monakhov ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA); 51665872ddaaSYongqiang Yang else { 51674f879ca6SJan Kara err = jbd2_journal_flush(journal); 51684f879ca6SJan Kara if (err < 0) { 51694f879ca6SJan Kara jbd2_journal_unlock_updates(journal); 51704f879ca6SJan Kara ext4_inode_resume_unlocked_dio(inode); 51714f879ca6SJan Kara return err; 51724f879ca6SJan Kara } 517312e9b892SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA); 51745872ddaaSYongqiang Yang } 5175617ba13bSMingming Cao ext4_set_aops(inode); 5176ac27a0ecSDave Kleikamp 5177dab291afSMingming Cao jbd2_journal_unlock_updates(journal); 517817335dccSDmitry Monakhov ext4_inode_resume_unlocked_dio(inode); 5179ac27a0ecSDave Kleikamp 5180ac27a0ecSDave Kleikamp /* Finally we can mark the inode as dirty. */ 5181ac27a0ecSDave Kleikamp 51829924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 1); 5183ac27a0ecSDave Kleikamp if (IS_ERR(handle)) 5184ac27a0ecSDave Kleikamp return PTR_ERR(handle); 5185ac27a0ecSDave Kleikamp 5186617ba13bSMingming Cao err = ext4_mark_inode_dirty(handle, inode); 51870390131bSFrank Mayhar ext4_handle_sync(handle); 5188617ba13bSMingming Cao ext4_journal_stop(handle); 5189617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 5190ac27a0ecSDave Kleikamp 5191ac27a0ecSDave Kleikamp return err; 5192ac27a0ecSDave Kleikamp } 51932e9ee850SAneesh Kumar K.V 51942e9ee850SAneesh Kumar K.V static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh) 51952e9ee850SAneesh Kumar K.V { 51962e9ee850SAneesh Kumar K.V return !buffer_mapped(bh); 51972e9ee850SAneesh Kumar K.V } 51982e9ee850SAneesh Kumar K.V 5199c2ec175cSNick Piggin int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf) 52002e9ee850SAneesh Kumar K.V { 5201c2ec175cSNick Piggin struct page *page = vmf->page; 52022e9ee850SAneesh Kumar K.V loff_t size; 52032e9ee850SAneesh Kumar K.V unsigned long len; 52049ea7df53SJan Kara int ret; 52052e9ee850SAneesh Kumar K.V struct file *file = vma->vm_file; 5206496ad9aaSAl Viro struct inode *inode = file_inode(file); 52072e9ee850SAneesh Kumar K.V struct address_space *mapping = inode->i_mapping; 52089ea7df53SJan Kara handle_t *handle; 52099ea7df53SJan Kara get_block_t *get_block; 52109ea7df53SJan Kara int retries = 0; 52112e9ee850SAneesh Kumar K.V 52128e8ad8a5SJan Kara sb_start_pagefault(inode->i_sb); 5213041bbb6dSTheodore Ts'o file_update_time(vma->vm_file); 52149ea7df53SJan Kara /* Delalloc case is easy... */ 52159ea7df53SJan Kara if (test_opt(inode->i_sb, DELALLOC) && 52169ea7df53SJan Kara !ext4_should_journal_data(inode) && 52179ea7df53SJan Kara !ext4_nonda_switch(inode->i_sb)) { 52189ea7df53SJan Kara do { 52199ea7df53SJan Kara ret = __block_page_mkwrite(vma, vmf, 52209ea7df53SJan Kara ext4_da_get_block_prep); 52219ea7df53SJan Kara } while (ret == -ENOSPC && 52229ea7df53SJan Kara ext4_should_retry_alloc(inode->i_sb, &retries)); 52239ea7df53SJan Kara goto out_ret; 52242e9ee850SAneesh Kumar K.V } 52250e499890SDarrick J. Wong 52260e499890SDarrick J. Wong lock_page(page); 52279ea7df53SJan Kara size = i_size_read(inode); 52289ea7df53SJan Kara /* Page got truncated from under us? */ 52299ea7df53SJan Kara if (page->mapping != mapping || page_offset(page) > size) { 52309ea7df53SJan Kara unlock_page(page); 52319ea7df53SJan Kara ret = VM_FAULT_NOPAGE; 52329ea7df53SJan Kara goto out; 52330e499890SDarrick J. Wong } 52342e9ee850SAneesh Kumar K.V 52352e9ee850SAneesh Kumar K.V if (page->index == size >> PAGE_CACHE_SHIFT) 52362e9ee850SAneesh Kumar K.V len = size & ~PAGE_CACHE_MASK; 52372e9ee850SAneesh Kumar K.V else 52382e9ee850SAneesh Kumar K.V len = PAGE_CACHE_SIZE; 5239a827eaffSAneesh Kumar K.V /* 52409ea7df53SJan Kara * Return if we have all the buffers mapped. This avoids the need to do 52419ea7df53SJan Kara * journal_start/journal_stop which can block and take a long time 5242a827eaffSAneesh Kumar K.V */ 52432e9ee850SAneesh Kumar K.V if (page_has_buffers(page)) { 5244f19d5870STao Ma if (!ext4_walk_page_buffers(NULL, page_buffers(page), 5245f19d5870STao Ma 0, len, NULL, 5246a827eaffSAneesh Kumar K.V ext4_bh_unmapped)) { 52479ea7df53SJan Kara /* Wait so that we don't change page under IO */ 52481d1d1a76SDarrick J. Wong wait_for_stable_page(page); 52499ea7df53SJan Kara ret = VM_FAULT_LOCKED; 52509ea7df53SJan Kara goto out; 52512e9ee850SAneesh Kumar K.V } 5252a827eaffSAneesh Kumar K.V } 5253a827eaffSAneesh Kumar K.V unlock_page(page); 52549ea7df53SJan Kara /* OK, we need to fill the hole... */ 52559ea7df53SJan Kara if (ext4_should_dioread_nolock(inode)) 52569ea7df53SJan Kara get_block = ext4_get_block_write; 52579ea7df53SJan Kara else 52589ea7df53SJan Kara get_block = ext4_get_block; 52599ea7df53SJan Kara retry_alloc: 52609924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 52619924a92aSTheodore Ts'o ext4_writepage_trans_blocks(inode)); 52629ea7df53SJan Kara if (IS_ERR(handle)) { 5263c2ec175cSNick Piggin ret = VM_FAULT_SIGBUS; 52649ea7df53SJan Kara goto out; 52659ea7df53SJan Kara } 52669ea7df53SJan Kara ret = __block_page_mkwrite(vma, vmf, get_block); 52679ea7df53SJan Kara if (!ret && ext4_should_journal_data(inode)) { 5268f19d5870STao Ma if (ext4_walk_page_buffers(handle, page_buffers(page), 0, 52699ea7df53SJan Kara PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) { 52709ea7df53SJan Kara unlock_page(page); 52719ea7df53SJan Kara ret = VM_FAULT_SIGBUS; 5272fcbb5515SYongqiang Yang ext4_journal_stop(handle); 52739ea7df53SJan Kara goto out; 52749ea7df53SJan Kara } 52759ea7df53SJan Kara ext4_set_inode_state(inode, EXT4_STATE_JDATA); 52769ea7df53SJan Kara } 52779ea7df53SJan Kara ext4_journal_stop(handle); 52789ea7df53SJan Kara if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries)) 52799ea7df53SJan Kara goto retry_alloc; 52809ea7df53SJan Kara out_ret: 52819ea7df53SJan Kara ret = block_page_mkwrite_return(ret); 52829ea7df53SJan Kara out: 52838e8ad8a5SJan Kara sb_end_pagefault(inode->i_sb); 52842e9ee850SAneesh Kumar K.V return ret; 52852e9ee850SAneesh Kumar K.V } 5286