1ac27a0ecSDave Kleikamp /* 2617ba13bSMingming Cao * linux/fs/ext4/inode.c 3ac27a0ecSDave Kleikamp * 4ac27a0ecSDave Kleikamp * Copyright (C) 1992, 1993, 1994, 1995 5ac27a0ecSDave Kleikamp * Remy Card (card@masi.ibp.fr) 6ac27a0ecSDave Kleikamp * Laboratoire MASI - Institut Blaise Pascal 7ac27a0ecSDave Kleikamp * Universite Pierre et Marie Curie (Paris VI) 8ac27a0ecSDave Kleikamp * 9ac27a0ecSDave Kleikamp * from 10ac27a0ecSDave Kleikamp * 11ac27a0ecSDave Kleikamp * linux/fs/minix/inode.c 12ac27a0ecSDave Kleikamp * 13ac27a0ecSDave Kleikamp * Copyright (C) 1991, 1992 Linus Torvalds 14ac27a0ecSDave Kleikamp * 15ac27a0ecSDave Kleikamp * 64-bit file support on 64-bit platforms by Jakub Jelinek 16ac27a0ecSDave Kleikamp * (jj@sunsite.ms.mff.cuni.cz) 17ac27a0ecSDave Kleikamp * 18617ba13bSMingming Cao * Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000 19ac27a0ecSDave Kleikamp */ 20ac27a0ecSDave Kleikamp 21ac27a0ecSDave Kleikamp #include <linux/fs.h> 22ac27a0ecSDave Kleikamp #include <linux/time.h> 23dab291afSMingming Cao #include <linux/jbd2.h> 24ac27a0ecSDave Kleikamp #include <linux/highuid.h> 25ac27a0ecSDave Kleikamp #include <linux/pagemap.h> 26ac27a0ecSDave Kleikamp #include <linux/quotaops.h> 27ac27a0ecSDave Kleikamp #include <linux/string.h> 28ac27a0ecSDave Kleikamp #include <linux/buffer_head.h> 29ac27a0ecSDave Kleikamp #include <linux/writeback.h> 3064769240SAlex Tomas #include <linux/pagevec.h> 31ac27a0ecSDave Kleikamp #include <linux/mpage.h> 32e83c1397SDuane Griffin #include <linux/namei.h> 33ac27a0ecSDave Kleikamp #include <linux/uio.h> 34ac27a0ecSDave Kleikamp #include <linux/bio.h> 354c0425ffSMingming Cao #include <linux/workqueue.h> 36744692dcSJiaying Zhang #include <linux/kernel.h> 376db26ffcSAndrew Morton #include <linux/printk.h> 385a0e3ad6STejun Heo #include <linux/slab.h> 39a8901d34STheodore Ts'o #include <linux/ratelimit.h> 40a27bb332SKent Overstreet #include <linux/aio.h> 4100a1a053STheodore Ts'o #include <linux/bitops.h> 429bffad1eSTheodore Ts'o 433dcf5451SChristoph Hellwig #include "ext4_jbd2.h" 44ac27a0ecSDave Kleikamp #include "xattr.h" 45ac27a0ecSDave Kleikamp #include "acl.h" 469f125d64STheodore Ts'o #include "truncate.h" 47ac27a0ecSDave Kleikamp 489bffad1eSTheodore Ts'o #include <trace/events/ext4.h> 499bffad1eSTheodore Ts'o 50a1d6cc56SAneesh Kumar K.V #define MPAGE_DA_EXTENT_TAIL 0x01 51a1d6cc56SAneesh Kumar K.V 52814525f4SDarrick J. Wong static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw, 53814525f4SDarrick J. Wong struct ext4_inode_info *ei) 54814525f4SDarrick J. Wong { 55814525f4SDarrick J. Wong struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 56814525f4SDarrick J. Wong __u16 csum_lo; 57814525f4SDarrick J. Wong __u16 csum_hi = 0; 58814525f4SDarrick J. Wong __u32 csum; 59814525f4SDarrick J. Wong 60171a7f21SDmitry Monakhov csum_lo = le16_to_cpu(raw->i_checksum_lo); 61814525f4SDarrick J. Wong raw->i_checksum_lo = 0; 62814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 63814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) { 64171a7f21SDmitry Monakhov csum_hi = le16_to_cpu(raw->i_checksum_hi); 65814525f4SDarrick J. Wong raw->i_checksum_hi = 0; 66814525f4SDarrick J. Wong } 67814525f4SDarrick J. Wong 68814525f4SDarrick J. Wong csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw, 69814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)); 70814525f4SDarrick J. Wong 71171a7f21SDmitry Monakhov raw->i_checksum_lo = cpu_to_le16(csum_lo); 72814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 73814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 74171a7f21SDmitry Monakhov raw->i_checksum_hi = cpu_to_le16(csum_hi); 75814525f4SDarrick J. Wong 76814525f4SDarrick J. Wong return csum; 77814525f4SDarrick J. Wong } 78814525f4SDarrick J. Wong 79814525f4SDarrick J. Wong static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw, 80814525f4SDarrick J. Wong struct ext4_inode_info *ei) 81814525f4SDarrick J. Wong { 82814525f4SDarrick J. Wong __u32 provided, calculated; 83814525f4SDarrick J. Wong 84814525f4SDarrick J. Wong if (EXT4_SB(inode->i_sb)->s_es->s_creator_os != 85814525f4SDarrick J. Wong cpu_to_le32(EXT4_OS_LINUX) || 869aa5d32bSDmitry Monakhov !ext4_has_metadata_csum(inode->i_sb)) 87814525f4SDarrick J. Wong return 1; 88814525f4SDarrick J. Wong 89814525f4SDarrick J. Wong provided = le16_to_cpu(raw->i_checksum_lo); 90814525f4SDarrick J. Wong calculated = ext4_inode_csum(inode, raw, ei); 91814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 92814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 93814525f4SDarrick J. Wong provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16; 94814525f4SDarrick J. Wong else 95814525f4SDarrick J. Wong calculated &= 0xFFFF; 96814525f4SDarrick J. Wong 97814525f4SDarrick J. Wong return provided == calculated; 98814525f4SDarrick J. Wong } 99814525f4SDarrick J. Wong 100814525f4SDarrick J. Wong static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw, 101814525f4SDarrick J. Wong struct ext4_inode_info *ei) 102814525f4SDarrick J. Wong { 103814525f4SDarrick J. Wong __u32 csum; 104814525f4SDarrick J. Wong 105814525f4SDarrick J. Wong if (EXT4_SB(inode->i_sb)->s_es->s_creator_os != 106814525f4SDarrick J. Wong cpu_to_le32(EXT4_OS_LINUX) || 1079aa5d32bSDmitry Monakhov !ext4_has_metadata_csum(inode->i_sb)) 108814525f4SDarrick J. Wong return; 109814525f4SDarrick J. Wong 110814525f4SDarrick J. Wong csum = ext4_inode_csum(inode, raw, ei); 111814525f4SDarrick J. Wong raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF); 112814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && 113814525f4SDarrick J. Wong EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) 114814525f4SDarrick J. Wong raw->i_checksum_hi = cpu_to_le16(csum >> 16); 115814525f4SDarrick J. Wong } 116814525f4SDarrick J. Wong 117678aaf48SJan Kara static inline int ext4_begin_ordered_truncate(struct inode *inode, 118678aaf48SJan Kara loff_t new_size) 119678aaf48SJan Kara { 1207ff9c073STheodore Ts'o trace_ext4_begin_ordered_truncate(inode, new_size); 1218aefcd55STheodore Ts'o /* 1228aefcd55STheodore Ts'o * If jinode is zero, then we never opened the file for 1238aefcd55STheodore Ts'o * writing, so there's no need to call 1248aefcd55STheodore Ts'o * jbd2_journal_begin_ordered_truncate() since there's no 1258aefcd55STheodore Ts'o * outstanding writes we need to flush. 1268aefcd55STheodore Ts'o */ 1278aefcd55STheodore Ts'o if (!EXT4_I(inode)->jinode) 1288aefcd55STheodore Ts'o return 0; 1298aefcd55STheodore Ts'o return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode), 1308aefcd55STheodore Ts'o EXT4_I(inode)->jinode, 131678aaf48SJan Kara new_size); 132678aaf48SJan Kara } 133678aaf48SJan Kara 134d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset, 135d47992f8SLukas Czerner unsigned int length); 136cb20d518STheodore Ts'o static int __ext4_journalled_writepage(struct page *page, unsigned int len); 137cb20d518STheodore Ts'o static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh); 138fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks, 139fffb2739SJan Kara int pextents); 14064769240SAlex Tomas 141ac27a0ecSDave Kleikamp /* 142ac27a0ecSDave Kleikamp * Test whether an inode is a fast symlink. 143ac27a0ecSDave Kleikamp */ 144617ba13bSMingming Cao static int ext4_inode_is_fast_symlink(struct inode *inode) 145ac27a0ecSDave Kleikamp { 146617ba13bSMingming Cao int ea_blocks = EXT4_I(inode)->i_file_acl ? 14765eddb56SYongqiang Yang EXT4_CLUSTER_SIZE(inode->i_sb) >> 9 : 0; 148ac27a0ecSDave Kleikamp 149bd9db175SZheng Liu if (ext4_has_inline_data(inode)) 150bd9db175SZheng Liu return 0; 151bd9db175SZheng Liu 152ac27a0ecSDave Kleikamp return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0); 153ac27a0ecSDave Kleikamp } 154ac27a0ecSDave Kleikamp 155ac27a0ecSDave Kleikamp /* 156ac27a0ecSDave Kleikamp * Restart the transaction associated with *handle. This does a commit, 157ac27a0ecSDave Kleikamp * so before we call here everything must be consistently dirtied against 158ac27a0ecSDave Kleikamp * this transaction. 159ac27a0ecSDave Kleikamp */ 160487caeefSJan Kara int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode, 161487caeefSJan Kara int nblocks) 162ac27a0ecSDave Kleikamp { 163487caeefSJan Kara int ret; 164487caeefSJan Kara 165487caeefSJan Kara /* 166e35fd660STheodore Ts'o * Drop i_data_sem to avoid deadlock with ext4_map_blocks. At this 167487caeefSJan Kara * moment, get_block can be called only for blocks inside i_size since 168487caeefSJan Kara * page cache has been already dropped and writes are blocked by 169487caeefSJan Kara * i_mutex. So we can safely drop the i_data_sem here. 170487caeefSJan Kara */ 1710390131bSFrank Mayhar BUG_ON(EXT4_JOURNAL(inode) == NULL); 172ac27a0ecSDave Kleikamp jbd_debug(2, "restarting handle %p\n", handle); 173487caeefSJan Kara up_write(&EXT4_I(inode)->i_data_sem); 1748e8eaabeSAmir Goldstein ret = ext4_journal_restart(handle, nblocks); 175487caeefSJan Kara down_write(&EXT4_I(inode)->i_data_sem); 176fa5d1113SAneesh Kumar K.V ext4_discard_preallocations(inode); 177487caeefSJan Kara 178487caeefSJan Kara return ret; 179ac27a0ecSDave Kleikamp } 180ac27a0ecSDave Kleikamp 181ac27a0ecSDave Kleikamp /* 182ac27a0ecSDave Kleikamp * Called at the last iput() if i_nlink is zero. 183ac27a0ecSDave Kleikamp */ 1840930fcc1SAl Viro void ext4_evict_inode(struct inode *inode) 185ac27a0ecSDave Kleikamp { 186ac27a0ecSDave Kleikamp handle_t *handle; 187bc965ab3STheodore Ts'o int err; 188ac27a0ecSDave Kleikamp 1897ff9c073STheodore Ts'o trace_ext4_evict_inode(inode); 1902581fdc8SJiaying Zhang 1910930fcc1SAl Viro if (inode->i_nlink) { 1922d859db3SJan Kara /* 1932d859db3SJan Kara * When journalling data dirty buffers are tracked only in the 1942d859db3SJan Kara * journal. So although mm thinks everything is clean and 1952d859db3SJan Kara * ready for reaping the inode might still have some pages to 1962d859db3SJan Kara * write in the running transaction or waiting to be 1972d859db3SJan Kara * checkpointed. Thus calling jbd2_journal_invalidatepage() 1982d859db3SJan Kara * (via truncate_inode_pages()) to discard these buffers can 1992d859db3SJan Kara * cause data loss. Also even if we did not discard these 2002d859db3SJan Kara * buffers, we would have no way to find them after the inode 2012d859db3SJan Kara * is reaped and thus user could see stale data if he tries to 2022d859db3SJan Kara * read them before the transaction is checkpointed. So be 2032d859db3SJan Kara * careful and force everything to disk here... We use 2042d859db3SJan Kara * ei->i_datasync_tid to store the newest transaction 2052d859db3SJan Kara * containing inode's data. 2062d859db3SJan Kara * 2072d859db3SJan Kara * Note that directories do not have this problem because they 2082d859db3SJan Kara * don't use page cache. 2092d859db3SJan Kara */ 2102d859db3SJan Kara if (ext4_should_journal_data(inode) && 2112b405bfaSTheodore Ts'o (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) && 2122b405bfaSTheodore Ts'o inode->i_ino != EXT4_JOURNAL_INO) { 2132d859db3SJan Kara journal_t *journal = EXT4_SB(inode->i_sb)->s_journal; 2142d859db3SJan Kara tid_t commit_tid = EXT4_I(inode)->i_datasync_tid; 2152d859db3SJan Kara 216d76a3a77STheodore Ts'o jbd2_complete_transaction(journal, commit_tid); 2172d859db3SJan Kara filemap_write_and_wait(&inode->i_data); 2182d859db3SJan Kara } 21991b0abe3SJohannes Weiner truncate_inode_pages_final(&inode->i_data); 2205dc23bddSJan Kara 2215dc23bddSJan Kara WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count)); 2220930fcc1SAl Viro goto no_delete; 2230930fcc1SAl Viro } 2240930fcc1SAl Viro 225e2bfb088STheodore Ts'o if (is_bad_inode(inode)) 226e2bfb088STheodore Ts'o goto no_delete; 227871a2931SChristoph Hellwig dquot_initialize(inode); 228907f4554SChristoph Hellwig 229678aaf48SJan Kara if (ext4_should_order_data(inode)) 230678aaf48SJan Kara ext4_begin_ordered_truncate(inode, 0); 23191b0abe3SJohannes Weiner truncate_inode_pages_final(&inode->i_data); 232ac27a0ecSDave Kleikamp 2335dc23bddSJan Kara WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count)); 234ac27a0ecSDave Kleikamp 2358e8ad8a5SJan Kara /* 2368e8ad8a5SJan Kara * Protect us against freezing - iput() caller didn't have to have any 2378e8ad8a5SJan Kara * protection against it 2388e8ad8a5SJan Kara */ 2398e8ad8a5SJan Kara sb_start_intwrite(inode->i_sb); 2409924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, 2419924a92aSTheodore Ts'o ext4_blocks_for_truncate(inode)+3); 242ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 243bc965ab3STheodore Ts'o ext4_std_error(inode->i_sb, PTR_ERR(handle)); 244ac27a0ecSDave Kleikamp /* 245ac27a0ecSDave Kleikamp * If we're going to skip the normal cleanup, we still need to 246ac27a0ecSDave Kleikamp * make sure that the in-core orphan linked list is properly 247ac27a0ecSDave Kleikamp * cleaned up. 248ac27a0ecSDave Kleikamp */ 249617ba13bSMingming Cao ext4_orphan_del(NULL, inode); 2508e8ad8a5SJan Kara sb_end_intwrite(inode->i_sb); 251ac27a0ecSDave Kleikamp goto no_delete; 252ac27a0ecSDave Kleikamp } 253ac27a0ecSDave Kleikamp 254ac27a0ecSDave Kleikamp if (IS_SYNC(inode)) 2550390131bSFrank Mayhar ext4_handle_sync(handle); 256ac27a0ecSDave Kleikamp inode->i_size = 0; 257bc965ab3STheodore Ts'o err = ext4_mark_inode_dirty(handle, inode); 258bc965ab3STheodore Ts'o if (err) { 25912062dddSEric Sandeen ext4_warning(inode->i_sb, 260bc965ab3STheodore Ts'o "couldn't mark inode dirty (err %d)", err); 261bc965ab3STheodore Ts'o goto stop_handle; 262bc965ab3STheodore Ts'o } 263ac27a0ecSDave Kleikamp if (inode->i_blocks) 264617ba13bSMingming Cao ext4_truncate(inode); 265bc965ab3STheodore Ts'o 266bc965ab3STheodore Ts'o /* 267bc965ab3STheodore Ts'o * ext4_ext_truncate() doesn't reserve any slop when it 268bc965ab3STheodore Ts'o * restarts journal transactions; therefore there may not be 269bc965ab3STheodore Ts'o * enough credits left in the handle to remove the inode from 270bc965ab3STheodore Ts'o * the orphan list and set the dtime field. 271bc965ab3STheodore Ts'o */ 2720390131bSFrank Mayhar if (!ext4_handle_has_enough_credits(handle, 3)) { 273bc965ab3STheodore Ts'o err = ext4_journal_extend(handle, 3); 274bc965ab3STheodore Ts'o if (err > 0) 275bc965ab3STheodore Ts'o err = ext4_journal_restart(handle, 3); 276bc965ab3STheodore Ts'o if (err != 0) { 27712062dddSEric Sandeen ext4_warning(inode->i_sb, 278bc965ab3STheodore Ts'o "couldn't extend journal (err %d)", err); 279bc965ab3STheodore Ts'o stop_handle: 280bc965ab3STheodore Ts'o ext4_journal_stop(handle); 28145388219STheodore Ts'o ext4_orphan_del(NULL, inode); 2828e8ad8a5SJan Kara sb_end_intwrite(inode->i_sb); 283bc965ab3STheodore Ts'o goto no_delete; 284bc965ab3STheodore Ts'o } 285bc965ab3STheodore Ts'o } 286bc965ab3STheodore Ts'o 287ac27a0ecSDave Kleikamp /* 288617ba13bSMingming Cao * Kill off the orphan record which ext4_truncate created. 289ac27a0ecSDave Kleikamp * AKPM: I think this can be inside the above `if'. 290617ba13bSMingming Cao * Note that ext4_orphan_del() has to be able to cope with the 291ac27a0ecSDave Kleikamp * deletion of a non-existent orphan - this is because we don't 292617ba13bSMingming Cao * know if ext4_truncate() actually created an orphan record. 293ac27a0ecSDave Kleikamp * (Well, we could do this if we need to, but heck - it works) 294ac27a0ecSDave Kleikamp */ 295617ba13bSMingming Cao ext4_orphan_del(handle, inode); 296617ba13bSMingming Cao EXT4_I(inode)->i_dtime = get_seconds(); 297ac27a0ecSDave Kleikamp 298ac27a0ecSDave Kleikamp /* 299ac27a0ecSDave Kleikamp * One subtle ordering requirement: if anything has gone wrong 300ac27a0ecSDave Kleikamp * (transaction abort, IO errors, whatever), then we can still 301ac27a0ecSDave Kleikamp * do these next steps (the fs will already have been marked as 302ac27a0ecSDave Kleikamp * having errors), but we can't free the inode if the mark_dirty 303ac27a0ecSDave Kleikamp * fails. 304ac27a0ecSDave Kleikamp */ 305617ba13bSMingming Cao if (ext4_mark_inode_dirty(handle, inode)) 306ac27a0ecSDave Kleikamp /* If that failed, just do the required in-core inode clear. */ 3070930fcc1SAl Viro ext4_clear_inode(inode); 308ac27a0ecSDave Kleikamp else 309617ba13bSMingming Cao ext4_free_inode(handle, inode); 310617ba13bSMingming Cao ext4_journal_stop(handle); 3118e8ad8a5SJan Kara sb_end_intwrite(inode->i_sb); 312ac27a0ecSDave Kleikamp return; 313ac27a0ecSDave Kleikamp no_delete: 3140930fcc1SAl Viro ext4_clear_inode(inode); /* We must guarantee clearing of inode... */ 315ac27a0ecSDave Kleikamp } 316ac27a0ecSDave Kleikamp 317a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA 318a9e7f447SDmitry Monakhov qsize_t *ext4_get_reserved_space(struct inode *inode) 31960e58e0fSMingming Cao { 320a9e7f447SDmitry Monakhov return &EXT4_I(inode)->i_reserved_quota; 32160e58e0fSMingming Cao } 322a9e7f447SDmitry Monakhov #endif 3239d0be502STheodore Ts'o 32412219aeaSAneesh Kumar K.V /* 3250637c6f4STheodore Ts'o * Called with i_data_sem down, which is important since we can call 3260637c6f4STheodore Ts'o * ext4_discard_preallocations() from here. 3270637c6f4STheodore Ts'o */ 3285f634d06SAneesh Kumar K.V void ext4_da_update_reserve_space(struct inode *inode, 3295f634d06SAneesh Kumar K.V int used, int quota_claim) 33012219aeaSAneesh Kumar K.V { 33112219aeaSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 3320637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 33312219aeaSAneesh Kumar K.V 3340637c6f4STheodore Ts'o spin_lock(&ei->i_block_reservation_lock); 335d8990240SAditya Kali trace_ext4_da_update_reserve_space(inode, used, quota_claim); 3360637c6f4STheodore Ts'o if (unlikely(used > ei->i_reserved_data_blocks)) { 3378de5c325STheodore Ts'o ext4_warning(inode->i_sb, "%s: ino %lu, used %d " 3381084f252STheodore Ts'o "with only %d reserved data blocks", 3390637c6f4STheodore Ts'o __func__, inode->i_ino, used, 3400637c6f4STheodore Ts'o ei->i_reserved_data_blocks); 3410637c6f4STheodore Ts'o WARN_ON(1); 3420637c6f4STheodore Ts'o used = ei->i_reserved_data_blocks; 3436bc6e63fSAneesh Kumar K.V } 34412219aeaSAneesh Kumar K.V 3450637c6f4STheodore Ts'o /* Update per-inode reservations */ 3460637c6f4STheodore Ts'o ei->i_reserved_data_blocks -= used; 34771d4f7d0STheodore Ts'o percpu_counter_sub(&sbi->s_dirtyclusters_counter, used); 3480637c6f4STheodore Ts'o 34912219aeaSAneesh Kumar K.V spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); 35060e58e0fSMingming Cao 35172b8ab9dSEric Sandeen /* Update quota subsystem for data blocks */ 35272b8ab9dSEric Sandeen if (quota_claim) 3537b415bf6SAditya Kali dquot_claim_block(inode, EXT4_C2B(sbi, used)); 35472b8ab9dSEric Sandeen else { 3555f634d06SAneesh Kumar K.V /* 3565f634d06SAneesh Kumar K.V * We did fallocate with an offset that is already delayed 3575f634d06SAneesh Kumar K.V * allocated. So on delayed allocated writeback we should 35872b8ab9dSEric Sandeen * not re-claim the quota for fallocated blocks. 3595f634d06SAneesh Kumar K.V */ 3607b415bf6SAditya Kali dquot_release_reservation_block(inode, EXT4_C2B(sbi, used)); 3615f634d06SAneesh Kumar K.V } 362d6014301SAneesh Kumar K.V 363d6014301SAneesh Kumar K.V /* 364d6014301SAneesh Kumar K.V * If we have done all the pending block allocations and if 365d6014301SAneesh Kumar K.V * there aren't any writers on the inode, we can discard the 366d6014301SAneesh Kumar K.V * inode's preallocations. 367d6014301SAneesh Kumar K.V */ 3680637c6f4STheodore Ts'o if ((ei->i_reserved_data_blocks == 0) && 3690637c6f4STheodore Ts'o (atomic_read(&inode->i_writecount) == 0)) 370d6014301SAneesh Kumar K.V ext4_discard_preallocations(inode); 37112219aeaSAneesh Kumar K.V } 37212219aeaSAneesh Kumar K.V 373e29136f8STheodore Ts'o static int __check_block_validity(struct inode *inode, const char *func, 374c398eda0STheodore Ts'o unsigned int line, 37524676da4STheodore Ts'o struct ext4_map_blocks *map) 3766fd058f7STheodore Ts'o { 37724676da4STheodore Ts'o if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk, 37824676da4STheodore Ts'o map->m_len)) { 379c398eda0STheodore Ts'o ext4_error_inode(inode, func, line, map->m_pblk, 380c398eda0STheodore Ts'o "lblock %lu mapped to illegal pblock " 38124676da4STheodore Ts'o "(length %d)", (unsigned long) map->m_lblk, 382c398eda0STheodore Ts'o map->m_len); 3836fd058f7STheodore Ts'o return -EIO; 3846fd058f7STheodore Ts'o } 3856fd058f7STheodore Ts'o return 0; 3866fd058f7STheodore Ts'o } 3876fd058f7STheodore Ts'o 388e29136f8STheodore Ts'o #define check_block_validity(inode, map) \ 389c398eda0STheodore Ts'o __check_block_validity((inode), __func__, __LINE__, (map)) 390e29136f8STheodore Ts'o 391921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 392921f266bSDmitry Monakhov static void ext4_map_blocks_es_recheck(handle_t *handle, 393921f266bSDmitry Monakhov struct inode *inode, 394921f266bSDmitry Monakhov struct ext4_map_blocks *es_map, 395921f266bSDmitry Monakhov struct ext4_map_blocks *map, 396921f266bSDmitry Monakhov int flags) 397921f266bSDmitry Monakhov { 398921f266bSDmitry Monakhov int retval; 399921f266bSDmitry Monakhov 400921f266bSDmitry Monakhov map->m_flags = 0; 401921f266bSDmitry Monakhov /* 402921f266bSDmitry Monakhov * There is a race window that the result is not the same. 403921f266bSDmitry Monakhov * e.g. xfstests #223 when dioread_nolock enables. The reason 404921f266bSDmitry Monakhov * is that we lookup a block mapping in extent status tree with 405921f266bSDmitry Monakhov * out taking i_data_sem. So at the time the unwritten extent 406921f266bSDmitry Monakhov * could be converted. 407921f266bSDmitry Monakhov */ 408921f266bSDmitry Monakhov if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 409c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 410921f266bSDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 411921f266bSDmitry Monakhov retval = ext4_ext_map_blocks(handle, inode, map, flags & 412921f266bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 413921f266bSDmitry Monakhov } else { 414921f266bSDmitry Monakhov retval = ext4_ind_map_blocks(handle, inode, map, flags & 415921f266bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 416921f266bSDmitry Monakhov } 417921f266bSDmitry Monakhov if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 418921f266bSDmitry Monakhov up_read((&EXT4_I(inode)->i_data_sem)); 419921f266bSDmitry Monakhov 420921f266bSDmitry Monakhov /* 421921f266bSDmitry Monakhov * We don't check m_len because extent will be collpased in status 422921f266bSDmitry Monakhov * tree. So the m_len might not equal. 423921f266bSDmitry Monakhov */ 424921f266bSDmitry Monakhov if (es_map->m_lblk != map->m_lblk || 425921f266bSDmitry Monakhov es_map->m_flags != map->m_flags || 426921f266bSDmitry Monakhov es_map->m_pblk != map->m_pblk) { 427bdafe42aSTheodore Ts'o printk("ES cache assertion failed for inode: %lu " 428921f266bSDmitry Monakhov "es_cached ex [%d/%d/%llu/%x] != " 429921f266bSDmitry Monakhov "found ex [%d/%d/%llu/%x] retval %d flags %x\n", 430921f266bSDmitry Monakhov inode->i_ino, es_map->m_lblk, es_map->m_len, 431921f266bSDmitry Monakhov es_map->m_pblk, es_map->m_flags, map->m_lblk, 432921f266bSDmitry Monakhov map->m_len, map->m_pblk, map->m_flags, 433921f266bSDmitry Monakhov retval, flags); 434921f266bSDmitry Monakhov } 435921f266bSDmitry Monakhov } 436921f266bSDmitry Monakhov #endif /* ES_AGGRESSIVE_TEST */ 437921f266bSDmitry Monakhov 43855138e0bSTheodore Ts'o /* 439e35fd660STheodore Ts'o * The ext4_map_blocks() function tries to look up the requested blocks, 4402b2d6d01STheodore Ts'o * and returns if the blocks are already mapped. 441f5ab0d1fSMingming Cao * 442f5ab0d1fSMingming Cao * Otherwise it takes the write lock of the i_data_sem and allocate blocks 443f5ab0d1fSMingming Cao * and store the allocated blocks in the result buffer head and mark it 444f5ab0d1fSMingming Cao * mapped. 445f5ab0d1fSMingming Cao * 446e35fd660STheodore Ts'o * If file type is extents based, it will call ext4_ext_map_blocks(), 447e35fd660STheodore Ts'o * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping 448f5ab0d1fSMingming Cao * based files 449f5ab0d1fSMingming Cao * 450556615dcSLukas Czerner * On success, it returns the number of blocks being mapped or allocated. 451556615dcSLukas Czerner * if create==0 and the blocks are pre-allocated and unwritten block, 452f5ab0d1fSMingming Cao * the result buffer head is unmapped. If the create ==1, it will make sure 453f5ab0d1fSMingming Cao * the buffer head is mapped. 454f5ab0d1fSMingming Cao * 455f5ab0d1fSMingming Cao * It returns 0 if plain look up failed (blocks have not been allocated), in 456df3ab170STao Ma * that case, buffer head is unmapped 457f5ab0d1fSMingming Cao * 458f5ab0d1fSMingming Cao * It returns the error in case of allocation failure. 459f5ab0d1fSMingming Cao */ 460e35fd660STheodore Ts'o int ext4_map_blocks(handle_t *handle, struct inode *inode, 461e35fd660STheodore Ts'o struct ext4_map_blocks *map, int flags) 4620e855ac8SAneesh Kumar K.V { 463d100eef2SZheng Liu struct extent_status es; 4640e855ac8SAneesh Kumar K.V int retval; 465b8a86845SLukas Czerner int ret = 0; 466921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 467921f266bSDmitry Monakhov struct ext4_map_blocks orig_map; 468921f266bSDmitry Monakhov 469921f266bSDmitry Monakhov memcpy(&orig_map, map, sizeof(*map)); 470921f266bSDmitry Monakhov #endif 471f5ab0d1fSMingming Cao 472e35fd660STheodore Ts'o map->m_flags = 0; 473e35fd660STheodore Ts'o ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u," 474e35fd660STheodore Ts'o "logical block %lu\n", inode->i_ino, flags, map->m_len, 475e35fd660STheodore Ts'o (unsigned long) map->m_lblk); 476d100eef2SZheng Liu 477e861b5e9STheodore Ts'o /* 478e861b5e9STheodore Ts'o * ext4_map_blocks returns an int, and m_len is an unsigned int 479e861b5e9STheodore Ts'o */ 480e861b5e9STheodore Ts'o if (unlikely(map->m_len > INT_MAX)) 481e861b5e9STheodore Ts'o map->m_len = INT_MAX; 482e861b5e9STheodore Ts'o 4834adb6ab3SKazuya Mio /* We can handle the block number less than EXT_MAX_BLOCKS */ 4844adb6ab3SKazuya Mio if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS)) 4854adb6ab3SKazuya Mio return -EIO; 4864adb6ab3SKazuya Mio 487d100eef2SZheng Liu /* Lookup extent status tree firstly */ 488d100eef2SZheng Liu if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) { 489d100eef2SZheng Liu if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) { 490d100eef2SZheng Liu map->m_pblk = ext4_es_pblock(&es) + 491d100eef2SZheng Liu map->m_lblk - es.es_lblk; 492d100eef2SZheng Liu map->m_flags |= ext4_es_is_written(&es) ? 493d100eef2SZheng Liu EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN; 494d100eef2SZheng Liu retval = es.es_len - (map->m_lblk - es.es_lblk); 495d100eef2SZheng Liu if (retval > map->m_len) 496d100eef2SZheng Liu retval = map->m_len; 497d100eef2SZheng Liu map->m_len = retval; 498d100eef2SZheng Liu } else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) { 499d100eef2SZheng Liu retval = 0; 500d100eef2SZheng Liu } else { 501d100eef2SZheng Liu BUG_ON(1); 502d100eef2SZheng Liu } 503921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 504921f266bSDmitry Monakhov ext4_map_blocks_es_recheck(handle, inode, map, 505921f266bSDmitry Monakhov &orig_map, flags); 506921f266bSDmitry Monakhov #endif 507d100eef2SZheng Liu goto found; 508d100eef2SZheng Liu } 509d100eef2SZheng Liu 5104df3d265SAneesh Kumar K.V /* 511b920c755STheodore Ts'o * Try to see if we can get the block without requesting a new 512b920c755STheodore Ts'o * file system block. 5134df3d265SAneesh Kumar K.V */ 514729f52c6SZheng Liu if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 515c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 51612e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 517a4e5d88bSDmitry Monakhov retval = ext4_ext_map_blocks(handle, inode, map, flags & 518a4e5d88bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 5194df3d265SAneesh Kumar K.V } else { 520a4e5d88bSDmitry Monakhov retval = ext4_ind_map_blocks(handle, inode, map, flags & 521a4e5d88bSDmitry Monakhov EXT4_GET_BLOCKS_KEEP_SIZE); 5220e855ac8SAneesh Kumar K.V } 523f7fec032SZheng Liu if (retval > 0) { 5243be78c73STheodore Ts'o unsigned int status; 525f7fec032SZheng Liu 52644fb851dSZheng Liu if (unlikely(retval != map->m_len)) { 52744fb851dSZheng Liu ext4_warning(inode->i_sb, 52844fb851dSZheng Liu "ES len assertion failed for inode " 52944fb851dSZheng Liu "%lu: retval %d != map->m_len %d", 53044fb851dSZheng Liu inode->i_ino, retval, map->m_len); 53144fb851dSZheng Liu WARN_ON(1); 532921f266bSDmitry Monakhov } 533921f266bSDmitry Monakhov 534f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 535f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 536f7fec032SZheng Liu if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) && 537f7fec032SZheng Liu ext4_find_delalloc_range(inode, map->m_lblk, 538f7fec032SZheng Liu map->m_lblk + map->m_len - 1)) 539f7fec032SZheng Liu status |= EXTENT_STATUS_DELAYED; 540f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, 541f7fec032SZheng Liu map->m_len, map->m_pblk, status); 542f7fec032SZheng Liu if (ret < 0) 543f7fec032SZheng Liu retval = ret; 544f7fec032SZheng Liu } 545729f52c6SZheng Liu if (!(flags & EXT4_GET_BLOCKS_NO_LOCK)) 5464df3d265SAneesh Kumar K.V up_read((&EXT4_I(inode)->i_data_sem)); 547f5ab0d1fSMingming Cao 548d100eef2SZheng Liu found: 549e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) { 550b8a86845SLukas Czerner ret = check_block_validity(inode, map); 5516fd058f7STheodore Ts'o if (ret != 0) 5526fd058f7STheodore Ts'o return ret; 5536fd058f7STheodore Ts'o } 5546fd058f7STheodore Ts'o 555f5ab0d1fSMingming Cao /* If it is only a block(s) look up */ 556c2177057STheodore Ts'o if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) 5574df3d265SAneesh Kumar K.V return retval; 5584df3d265SAneesh Kumar K.V 5594df3d265SAneesh Kumar K.V /* 560f5ab0d1fSMingming Cao * Returns if the blocks have already allocated 561f5ab0d1fSMingming Cao * 562f5ab0d1fSMingming Cao * Note that if blocks have been preallocated 563df3ab170STao Ma * ext4_ext_get_block() returns the create = 0 564f5ab0d1fSMingming Cao * with buffer head unmapped. 565f5ab0d1fSMingming Cao */ 566e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) 567b8a86845SLukas Czerner /* 568b8a86845SLukas Czerner * If we need to convert extent to unwritten 569b8a86845SLukas Czerner * we continue and do the actual work in 570b8a86845SLukas Czerner * ext4_ext_map_blocks() 571b8a86845SLukas Czerner */ 572b8a86845SLukas Czerner if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN)) 573f5ab0d1fSMingming Cao return retval; 574f5ab0d1fSMingming Cao 575f5ab0d1fSMingming Cao /* 576a25a4e1aSZheng Liu * Here we clear m_flags because after allocating an new extent, 577a25a4e1aSZheng Liu * it will be set again. 5782a8964d6SAneesh Kumar K.V */ 579a25a4e1aSZheng Liu map->m_flags &= ~EXT4_MAP_FLAGS; 5802a8964d6SAneesh Kumar K.V 5812a8964d6SAneesh Kumar K.V /* 582556615dcSLukas Czerner * New blocks allocate and/or writing to unwritten extent 583f5ab0d1fSMingming Cao * will possibly result in updating i_data, so we take 584d91bd2c1SSeunghun Lee * the write lock of i_data_sem, and call get_block() 585f5ab0d1fSMingming Cao * with create == 1 flag. 5864df3d265SAneesh Kumar K.V */ 587c8b459f4SLukas Czerner down_write(&EXT4_I(inode)->i_data_sem); 588d2a17637SMingming Cao 589d2a17637SMingming Cao /* 5904df3d265SAneesh Kumar K.V * We need to check for EXT4 here because migrate 5914df3d265SAneesh Kumar K.V * could have changed the inode type in between 5924df3d265SAneesh Kumar K.V */ 59312e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 594e35fd660STheodore Ts'o retval = ext4_ext_map_blocks(handle, inode, map, flags); 5950e855ac8SAneesh Kumar K.V } else { 596e35fd660STheodore Ts'o retval = ext4_ind_map_blocks(handle, inode, map, flags); 597267e4db9SAneesh Kumar K.V 598e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_NEW) { 599267e4db9SAneesh Kumar K.V /* 600267e4db9SAneesh Kumar K.V * We allocated new blocks which will result in 601267e4db9SAneesh Kumar K.V * i_data's format changing. Force the migrate 602267e4db9SAneesh Kumar K.V * to fail by clearing migrate flags 603267e4db9SAneesh Kumar K.V */ 60419f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE); 605267e4db9SAneesh Kumar K.V } 6062ac3b6e0STheodore Ts'o 607d2a17637SMingming Cao /* 6082ac3b6e0STheodore Ts'o * Update reserved blocks/metadata blocks after successful 6095f634d06SAneesh Kumar K.V * block allocation which had been deferred till now. We don't 6105f634d06SAneesh Kumar K.V * support fallocate for non extent files. So we can update 6115f634d06SAneesh Kumar K.V * reserve space here. 612d2a17637SMingming Cao */ 6135f634d06SAneesh Kumar K.V if ((retval > 0) && 6141296cc85SAneesh Kumar K.V (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)) 6155f634d06SAneesh Kumar K.V ext4_da_update_reserve_space(inode, retval, 1); 6165f634d06SAneesh Kumar K.V } 617d2a17637SMingming Cao 618f7fec032SZheng Liu if (retval > 0) { 6193be78c73STheodore Ts'o unsigned int status; 620f7fec032SZheng Liu 62144fb851dSZheng Liu if (unlikely(retval != map->m_len)) { 62244fb851dSZheng Liu ext4_warning(inode->i_sb, 62344fb851dSZheng Liu "ES len assertion failed for inode " 62444fb851dSZheng Liu "%lu: retval %d != map->m_len %d", 62544fb851dSZheng Liu inode->i_ino, retval, map->m_len); 62644fb851dSZheng Liu WARN_ON(1); 627921f266bSDmitry Monakhov } 628921f266bSDmitry Monakhov 629adb23551SZheng Liu /* 630adb23551SZheng Liu * If the extent has been zeroed out, we don't need to update 631adb23551SZheng Liu * extent status tree. 632adb23551SZheng Liu */ 633adb23551SZheng Liu if ((flags & EXT4_GET_BLOCKS_PRE_IO) && 634adb23551SZheng Liu ext4_es_lookup_extent(inode, map->m_lblk, &es)) { 635adb23551SZheng Liu if (ext4_es_is_written(&es)) 636adb23551SZheng Liu goto has_zeroout; 637adb23551SZheng Liu } 638f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 639f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 640f7fec032SZheng Liu if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) && 641f7fec032SZheng Liu ext4_find_delalloc_range(inode, map->m_lblk, 642f7fec032SZheng Liu map->m_lblk + map->m_len - 1)) 643f7fec032SZheng Liu status |= EXTENT_STATUS_DELAYED; 644f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 645f7fec032SZheng Liu map->m_pblk, status); 64651865fdaSZheng Liu if (ret < 0) 64751865fdaSZheng Liu retval = ret; 64851865fdaSZheng Liu } 6495356f261SAditya Kali 650adb23551SZheng Liu has_zeroout: 6510e855ac8SAneesh Kumar K.V up_write((&EXT4_I(inode)->i_data_sem)); 652e35fd660STheodore Ts'o if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) { 653b8a86845SLukas Czerner ret = check_block_validity(inode, map); 6546fd058f7STheodore Ts'o if (ret != 0) 6556fd058f7STheodore Ts'o return ret; 6566fd058f7STheodore Ts'o } 6570e855ac8SAneesh Kumar K.V return retval; 6580e855ac8SAneesh Kumar K.V } 6590e855ac8SAneesh Kumar K.V 660*923ae0ffSRoss Zwisler static void ext4_end_io_unwritten(struct buffer_head *bh, int uptodate) 661*923ae0ffSRoss Zwisler { 662*923ae0ffSRoss Zwisler struct inode *inode = bh->b_assoc_map->host; 663*923ae0ffSRoss Zwisler /* XXX: breaks on 32-bit > 16GB. Is that even supported? */ 664*923ae0ffSRoss Zwisler loff_t offset = (loff_t)(uintptr_t)bh->b_private << inode->i_blkbits; 665*923ae0ffSRoss Zwisler int err; 666*923ae0ffSRoss Zwisler if (!uptodate) 667*923ae0ffSRoss Zwisler return; 668*923ae0ffSRoss Zwisler WARN_ON(!buffer_unwritten(bh)); 669*923ae0ffSRoss Zwisler err = ext4_convert_unwritten_extents(NULL, inode, offset, bh->b_size); 670*923ae0ffSRoss Zwisler } 671*923ae0ffSRoss Zwisler 672f3bd1f3fSMingming Cao /* Maximum number of blocks we map for direct IO at once. */ 673f3bd1f3fSMingming Cao #define DIO_MAX_BLOCKS 4096 674f3bd1f3fSMingming Cao 6752ed88685STheodore Ts'o static int _ext4_get_block(struct inode *inode, sector_t iblock, 6762ed88685STheodore Ts'o struct buffer_head *bh, int flags) 677ac27a0ecSDave Kleikamp { 6783e4fdaf8SDmitriy Monakhov handle_t *handle = ext4_journal_current_handle(); 6792ed88685STheodore Ts'o struct ext4_map_blocks map; 6807fb5409dSJan Kara int ret = 0, started = 0; 681f3bd1f3fSMingming Cao int dio_credits; 682ac27a0ecSDave Kleikamp 68346c7f254STao Ma if (ext4_has_inline_data(inode)) 68446c7f254STao Ma return -ERANGE; 68546c7f254STao Ma 6862ed88685STheodore Ts'o map.m_lblk = iblock; 6872ed88685STheodore Ts'o map.m_len = bh->b_size >> inode->i_blkbits; 6882ed88685STheodore Ts'o 6898b0f165fSAnatol Pomozov if (flags && !(flags & EXT4_GET_BLOCKS_NO_LOCK) && !handle) { 6907fb5409dSJan Kara /* Direct IO write... */ 6912ed88685STheodore Ts'o if (map.m_len > DIO_MAX_BLOCKS) 6922ed88685STheodore Ts'o map.m_len = DIO_MAX_BLOCKS; 6932ed88685STheodore Ts'o dio_credits = ext4_chunk_trans_blocks(inode, map.m_len); 6949924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, 6959924a92aSTheodore Ts'o dio_credits); 6967fb5409dSJan Kara if (IS_ERR(handle)) { 697ac27a0ecSDave Kleikamp ret = PTR_ERR(handle); 6982ed88685STheodore Ts'o return ret; 6997fb5409dSJan Kara } 7007fb5409dSJan Kara started = 1; 701ac27a0ecSDave Kleikamp } 702ac27a0ecSDave Kleikamp 7032ed88685STheodore Ts'o ret = ext4_map_blocks(handle, inode, &map, flags); 704ac27a0ecSDave Kleikamp if (ret > 0) { 7057b7a8665SChristoph Hellwig ext4_io_end_t *io_end = ext4_inode_aio(inode); 7067b7a8665SChristoph Hellwig 7072ed88685STheodore Ts'o map_bh(bh, inode->i_sb, map.m_pblk); 7082ed88685STheodore Ts'o bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags; 709*923ae0ffSRoss Zwisler if (IS_DAX(inode) && buffer_unwritten(bh) && !io_end) { 710*923ae0ffSRoss Zwisler bh->b_assoc_map = inode->i_mapping; 711*923ae0ffSRoss Zwisler bh->b_private = (void *)(unsigned long)iblock; 712*923ae0ffSRoss Zwisler bh->b_end_io = ext4_end_io_unwritten; 713*923ae0ffSRoss Zwisler } 7147b7a8665SChristoph Hellwig if (io_end && io_end->flag & EXT4_IO_END_UNWRITTEN) 7157b7a8665SChristoph Hellwig set_buffer_defer_completion(bh); 7162ed88685STheodore Ts'o bh->b_size = inode->i_sb->s_blocksize * map.m_len; 717ac27a0ecSDave Kleikamp ret = 0; 718ac27a0ecSDave Kleikamp } 7197fb5409dSJan Kara if (started) 7207fb5409dSJan Kara ext4_journal_stop(handle); 721ac27a0ecSDave Kleikamp return ret; 722ac27a0ecSDave Kleikamp } 723ac27a0ecSDave Kleikamp 7242ed88685STheodore Ts'o int ext4_get_block(struct inode *inode, sector_t iblock, 7252ed88685STheodore Ts'o struct buffer_head *bh, int create) 7262ed88685STheodore Ts'o { 7272ed88685STheodore Ts'o return _ext4_get_block(inode, iblock, bh, 7282ed88685STheodore Ts'o create ? EXT4_GET_BLOCKS_CREATE : 0); 7292ed88685STheodore Ts'o } 7302ed88685STheodore Ts'o 731ac27a0ecSDave Kleikamp /* 732ac27a0ecSDave Kleikamp * `handle' can be NULL if create is zero 733ac27a0ecSDave Kleikamp */ 734617ba13bSMingming Cao struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode, 73510560082STheodore Ts'o ext4_lblk_t block, int create) 736ac27a0ecSDave Kleikamp { 7372ed88685STheodore Ts'o struct ext4_map_blocks map; 7382ed88685STheodore Ts'o struct buffer_head *bh; 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; 7452ed88685STheodore Ts'o err = ext4_map_blocks(handle, inode, &map, 7462ed88685STheodore Ts'o create ? EXT4_GET_BLOCKS_CREATE : 0); 7472ed88685STheodore Ts'o 74810560082STheodore Ts'o if (err == 0) 74910560082STheodore Ts'o return create ? ERR_PTR(-ENOSPC) : NULL; 7502ed88685STheodore Ts'o if (err < 0) 75110560082STheodore Ts'o return ERR_PTR(err); 7522ed88685STheodore Ts'o 7532ed88685STheodore Ts'o bh = sb_getblk(inode->i_sb, map.m_pblk); 75410560082STheodore Ts'o if (unlikely(!bh)) 75510560082STheodore Ts'o return ERR_PTR(-ENOMEM); 7562ed88685STheodore Ts'o if (map.m_flags & EXT4_MAP_NEW) { 757ac27a0ecSDave Kleikamp J_ASSERT(create != 0); 758ac39849dSAneesh Kumar K.V J_ASSERT(handle != NULL); 759ac27a0ecSDave Kleikamp 760ac27a0ecSDave Kleikamp /* 761ac27a0ecSDave Kleikamp * Now that we do not always journal data, we should 762ac27a0ecSDave Kleikamp * keep in mind whether this should always journal the 763ac27a0ecSDave Kleikamp * new buffer as metadata. For now, regular file 764617ba13bSMingming Cao * writes use ext4_get_block instead, so it's not a 765ac27a0ecSDave Kleikamp * problem. 766ac27a0ecSDave Kleikamp */ 767ac27a0ecSDave Kleikamp lock_buffer(bh); 768ac27a0ecSDave Kleikamp BUFFER_TRACE(bh, "call get_create_access"); 76910560082STheodore Ts'o err = ext4_journal_get_create_access(handle, bh); 77010560082STheodore Ts'o if (unlikely(err)) { 77110560082STheodore Ts'o unlock_buffer(bh); 77210560082STheodore Ts'o goto errout; 77310560082STheodore Ts'o } 77410560082STheodore Ts'o if (!buffer_uptodate(bh)) { 775ac27a0ecSDave Kleikamp memset(bh->b_data, 0, inode->i_sb->s_blocksize); 776ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 777ac27a0ecSDave Kleikamp } 778ac27a0ecSDave Kleikamp unlock_buffer(bh); 7790390131bSFrank Mayhar BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); 7800390131bSFrank Mayhar err = ext4_handle_dirty_metadata(handle, inode, bh); 78110560082STheodore Ts'o if (unlikely(err)) 78210560082STheodore Ts'o goto errout; 78310560082STheodore Ts'o } else 784ac27a0ecSDave Kleikamp BUFFER_TRACE(bh, "not a new buffer"); 785ac27a0ecSDave Kleikamp return bh; 78610560082STheodore Ts'o errout: 78710560082STheodore Ts'o brelse(bh); 78810560082STheodore Ts'o return ERR_PTR(err); 789ac27a0ecSDave Kleikamp } 790ac27a0ecSDave Kleikamp 791617ba13bSMingming Cao struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode, 7921c215028STheodore Ts'o ext4_lblk_t block, int create) 793ac27a0ecSDave Kleikamp { 794ac27a0ecSDave Kleikamp struct buffer_head *bh; 795ac27a0ecSDave Kleikamp 79610560082STheodore Ts'o bh = ext4_getblk(handle, inode, block, create); 7971c215028STheodore Ts'o if (IS_ERR(bh)) 798ac27a0ecSDave Kleikamp return bh; 7991c215028STheodore Ts'o if (!bh || buffer_uptodate(bh)) 800ac27a0ecSDave Kleikamp return bh; 80165299a3bSChristoph Hellwig ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh); 802ac27a0ecSDave Kleikamp wait_on_buffer(bh); 803ac27a0ecSDave Kleikamp if (buffer_uptodate(bh)) 804ac27a0ecSDave Kleikamp return bh; 805ac27a0ecSDave Kleikamp put_bh(bh); 8061c215028STheodore Ts'o return ERR_PTR(-EIO); 807ac27a0ecSDave Kleikamp } 808ac27a0ecSDave Kleikamp 809f19d5870STao Ma int ext4_walk_page_buffers(handle_t *handle, 810ac27a0ecSDave Kleikamp struct buffer_head *head, 811ac27a0ecSDave Kleikamp unsigned from, 812ac27a0ecSDave Kleikamp unsigned to, 813ac27a0ecSDave Kleikamp int *partial, 814ac27a0ecSDave Kleikamp int (*fn)(handle_t *handle, 815ac27a0ecSDave Kleikamp struct buffer_head *bh)) 816ac27a0ecSDave Kleikamp { 817ac27a0ecSDave Kleikamp struct buffer_head *bh; 818ac27a0ecSDave Kleikamp unsigned block_start, block_end; 819ac27a0ecSDave Kleikamp unsigned blocksize = head->b_size; 820ac27a0ecSDave Kleikamp int err, ret = 0; 821ac27a0ecSDave Kleikamp struct buffer_head *next; 822ac27a0ecSDave Kleikamp 823ac27a0ecSDave Kleikamp for (bh = head, block_start = 0; 824ac27a0ecSDave Kleikamp ret == 0 && (bh != head || !block_start); 825de9a55b8STheodore Ts'o block_start = block_end, bh = next) { 826ac27a0ecSDave Kleikamp next = bh->b_this_page; 827ac27a0ecSDave Kleikamp block_end = block_start + blocksize; 828ac27a0ecSDave Kleikamp if (block_end <= from || block_start >= to) { 829ac27a0ecSDave Kleikamp if (partial && !buffer_uptodate(bh)) 830ac27a0ecSDave Kleikamp *partial = 1; 831ac27a0ecSDave Kleikamp continue; 832ac27a0ecSDave Kleikamp } 833ac27a0ecSDave Kleikamp err = (*fn)(handle, bh); 834ac27a0ecSDave Kleikamp if (!ret) 835ac27a0ecSDave Kleikamp ret = err; 836ac27a0ecSDave Kleikamp } 837ac27a0ecSDave Kleikamp return ret; 838ac27a0ecSDave Kleikamp } 839ac27a0ecSDave Kleikamp 840ac27a0ecSDave Kleikamp /* 841ac27a0ecSDave Kleikamp * To preserve ordering, it is essential that the hole instantiation and 842ac27a0ecSDave Kleikamp * the data write be encapsulated in a single transaction. We cannot 843617ba13bSMingming Cao * close off a transaction and start a new one between the ext4_get_block() 844dab291afSMingming Cao * and the commit_write(). So doing the jbd2_journal_start at the start of 845ac27a0ecSDave Kleikamp * prepare_write() is the right place. 846ac27a0ecSDave Kleikamp * 84736ade451SJan Kara * Also, this function can nest inside ext4_writepage(). In that case, we 84836ade451SJan Kara * *know* that ext4_writepage() has generated enough buffer credits to do the 84936ade451SJan Kara * whole page. So we won't block on the journal in that case, which is good, 85036ade451SJan Kara * because the caller may be PF_MEMALLOC. 851ac27a0ecSDave Kleikamp * 852617ba13bSMingming Cao * By accident, ext4 can be reentered when a transaction is open via 853ac27a0ecSDave Kleikamp * quota file writes. If we were to commit the transaction while thus 854ac27a0ecSDave Kleikamp * reentered, there can be a deadlock - we would be holding a quota 855ac27a0ecSDave Kleikamp * lock, and the commit would never complete if another thread had a 856ac27a0ecSDave Kleikamp * transaction open and was blocking on the quota lock - a ranking 857ac27a0ecSDave Kleikamp * violation. 858ac27a0ecSDave Kleikamp * 859dab291afSMingming Cao * So what we do is to rely on the fact that jbd2_journal_stop/journal_start 860ac27a0ecSDave Kleikamp * will _not_ run commit under these circumstances because handle->h_ref 861ac27a0ecSDave Kleikamp * is elevated. We'll still have enough credits for the tiny quotafile 862ac27a0ecSDave Kleikamp * write. 863ac27a0ecSDave Kleikamp */ 864f19d5870STao Ma int do_journal_get_write_access(handle_t *handle, 865ac27a0ecSDave Kleikamp struct buffer_head *bh) 866ac27a0ecSDave Kleikamp { 86756d35a4cSJan Kara int dirty = buffer_dirty(bh); 86856d35a4cSJan Kara int ret; 86956d35a4cSJan Kara 870ac27a0ecSDave Kleikamp if (!buffer_mapped(bh) || buffer_freed(bh)) 871ac27a0ecSDave Kleikamp return 0; 87256d35a4cSJan Kara /* 873ebdec241SChristoph Hellwig * __block_write_begin() could have dirtied some buffers. Clean 87456d35a4cSJan Kara * the dirty bit as jbd2_journal_get_write_access() could complain 87556d35a4cSJan Kara * otherwise about fs integrity issues. Setting of the dirty bit 876ebdec241SChristoph Hellwig * by __block_write_begin() isn't a real problem here as we clear 87756d35a4cSJan Kara * the bit before releasing a page lock and thus writeback cannot 87856d35a4cSJan Kara * ever write the buffer. 87956d35a4cSJan Kara */ 88056d35a4cSJan Kara if (dirty) 88156d35a4cSJan Kara clear_buffer_dirty(bh); 8825d601255Sliang xie BUFFER_TRACE(bh, "get write access"); 88356d35a4cSJan Kara ret = ext4_journal_get_write_access(handle, bh); 88456d35a4cSJan Kara if (!ret && dirty) 88556d35a4cSJan Kara ret = ext4_handle_dirty_metadata(handle, NULL, bh); 88656d35a4cSJan Kara return ret; 887ac27a0ecSDave Kleikamp } 888ac27a0ecSDave Kleikamp 8898b0f165fSAnatol Pomozov static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock, 8908b0f165fSAnatol Pomozov struct buffer_head *bh_result, int create); 891bfc1af65SNick Piggin static int ext4_write_begin(struct file *file, struct address_space *mapping, 892bfc1af65SNick Piggin loff_t pos, unsigned len, unsigned flags, 893bfc1af65SNick Piggin struct page **pagep, void **fsdata) 894ac27a0ecSDave Kleikamp { 895bfc1af65SNick Piggin struct inode *inode = mapping->host; 8961938a150SAneesh Kumar K.V int ret, needed_blocks; 897ac27a0ecSDave Kleikamp handle_t *handle; 898ac27a0ecSDave Kleikamp int retries = 0; 899bfc1af65SNick Piggin struct page *page; 900bfc1af65SNick Piggin pgoff_t index; 901bfc1af65SNick Piggin unsigned from, to; 902bfc1af65SNick Piggin 9039bffad1eSTheodore Ts'o trace_ext4_write_begin(inode, pos, len, flags); 9041938a150SAneesh Kumar K.V /* 9051938a150SAneesh Kumar K.V * Reserve one block more for addition to orphan list in case 9061938a150SAneesh Kumar K.V * we allocate blocks but write fails for some reason 9071938a150SAneesh Kumar K.V */ 9081938a150SAneesh Kumar K.V needed_blocks = ext4_writepage_trans_blocks(inode) + 1; 909bfc1af65SNick Piggin index = pos >> PAGE_CACHE_SHIFT; 910bfc1af65SNick Piggin from = pos & (PAGE_CACHE_SIZE - 1); 911bfc1af65SNick Piggin to = from + len; 912ac27a0ecSDave Kleikamp 913f19d5870STao Ma if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) { 914f19d5870STao Ma ret = ext4_try_to_write_inline_data(mapping, inode, pos, len, 915f19d5870STao Ma flags, pagep); 916f19d5870STao Ma if (ret < 0) 91747564bfbSTheodore Ts'o return ret; 91847564bfbSTheodore Ts'o if (ret == 1) 91947564bfbSTheodore Ts'o return 0; 920f19d5870STao Ma } 921f19d5870STao Ma 92247564bfbSTheodore Ts'o /* 92347564bfbSTheodore Ts'o * grab_cache_page_write_begin() can take a long time if the 92447564bfbSTheodore Ts'o * system is thrashing due to memory pressure, or if the page 92547564bfbSTheodore Ts'o * is being written back. So grab it first before we start 92647564bfbSTheodore Ts'o * the transaction handle. This also allows us to allocate 92747564bfbSTheodore Ts'o * the page (if needed) without using GFP_NOFS. 92847564bfbSTheodore Ts'o */ 92947564bfbSTheodore Ts'o retry_grab: 93054566b2cSNick Piggin page = grab_cache_page_write_begin(mapping, index, flags); 93147564bfbSTheodore Ts'o if (!page) 93247564bfbSTheodore Ts'o return -ENOMEM; 93347564bfbSTheodore Ts'o unlock_page(page); 93447564bfbSTheodore Ts'o 93547564bfbSTheodore Ts'o retry_journal: 9369924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks); 937ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 93847564bfbSTheodore Ts'o page_cache_release(page); 93947564bfbSTheodore Ts'o return PTR_ERR(handle); 940cf108bcaSJan Kara } 941f19d5870STao Ma 94247564bfbSTheodore Ts'o lock_page(page); 94347564bfbSTheodore Ts'o if (page->mapping != mapping) { 94447564bfbSTheodore Ts'o /* The page got truncated from under us */ 94547564bfbSTheodore Ts'o unlock_page(page); 94647564bfbSTheodore Ts'o page_cache_release(page); 947cf108bcaSJan Kara ext4_journal_stop(handle); 94847564bfbSTheodore Ts'o goto retry_grab; 949cf108bcaSJan Kara } 9507afe5aa5SDmitry Monakhov /* In case writeback began while the page was unlocked */ 9517afe5aa5SDmitry Monakhov wait_for_stable_page(page); 952cf108bcaSJan Kara 953744692dcSJiaying Zhang if (ext4_should_dioread_nolock(inode)) 9546e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_get_block_write); 955744692dcSJiaying Zhang else 9566e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_get_block); 957bfc1af65SNick Piggin 958bfc1af65SNick Piggin if (!ret && ext4_should_journal_data(inode)) { 959f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_buffers(page), 960f19d5870STao Ma from, to, NULL, 961f19d5870STao Ma do_journal_get_write_access); 962b46be050SAndrey Savochkin } 963bfc1af65SNick Piggin 964bfc1af65SNick Piggin if (ret) { 965bfc1af65SNick Piggin unlock_page(page); 966ae4d5372SAneesh Kumar K.V /* 9676e1db88dSChristoph Hellwig * __block_write_begin may have instantiated a few blocks 968ae4d5372SAneesh Kumar K.V * outside i_size. Trim these off again. Don't need 969ae4d5372SAneesh Kumar K.V * i_size_read because we hold i_mutex. 9701938a150SAneesh Kumar K.V * 9711938a150SAneesh Kumar K.V * Add inode to orphan list in case we crash before 9721938a150SAneesh Kumar K.V * truncate finishes 973ae4d5372SAneesh Kumar K.V */ 974ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 9751938a150SAneesh Kumar K.V ext4_orphan_add(handle, inode); 9761938a150SAneesh Kumar K.V 9771938a150SAneesh Kumar K.V ext4_journal_stop(handle); 9781938a150SAneesh Kumar K.V if (pos + len > inode->i_size) { 979b9a4207dSJan Kara ext4_truncate_failed_write(inode); 9801938a150SAneesh Kumar K.V /* 981ffacfa7aSJan Kara * If truncate failed early the inode might 9821938a150SAneesh Kumar K.V * still be on the orphan list; we need to 9831938a150SAneesh Kumar K.V * make sure the inode is removed from the 9841938a150SAneesh Kumar K.V * orphan list in that case. 9851938a150SAneesh Kumar K.V */ 9861938a150SAneesh Kumar K.V if (inode->i_nlink) 9871938a150SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 9881938a150SAneesh Kumar K.V } 989bfc1af65SNick Piggin 99047564bfbSTheodore Ts'o if (ret == -ENOSPC && 99147564bfbSTheodore Ts'o ext4_should_retry_alloc(inode->i_sb, &retries)) 99247564bfbSTheodore Ts'o goto retry_journal; 99347564bfbSTheodore Ts'o page_cache_release(page); 99447564bfbSTheodore Ts'o return ret; 99547564bfbSTheodore Ts'o } 99647564bfbSTheodore Ts'o *pagep = page; 997ac27a0ecSDave Kleikamp return ret; 998ac27a0ecSDave Kleikamp } 999ac27a0ecSDave Kleikamp 1000bfc1af65SNick Piggin /* For write_end() in data=journal mode */ 1001bfc1af65SNick Piggin static int write_end_fn(handle_t *handle, struct buffer_head *bh) 1002ac27a0ecSDave Kleikamp { 100313fca323STheodore Ts'o int ret; 1004ac27a0ecSDave Kleikamp if (!buffer_mapped(bh) || buffer_freed(bh)) 1005ac27a0ecSDave Kleikamp return 0; 1006ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 100713fca323STheodore Ts'o ret = ext4_handle_dirty_metadata(handle, NULL, bh); 100813fca323STheodore Ts'o clear_buffer_meta(bh); 100913fca323STheodore Ts'o clear_buffer_prio(bh); 101013fca323STheodore Ts'o return ret; 1011ac27a0ecSDave Kleikamp } 1012ac27a0ecSDave Kleikamp 1013eed4333fSZheng Liu /* 1014eed4333fSZheng Liu * We need to pick up the new inode size which generic_commit_write gave us 1015eed4333fSZheng Liu * `file' can be NULL - eg, when called from page_symlink(). 1016eed4333fSZheng Liu * 1017eed4333fSZheng Liu * ext4 never places buffers on inode->i_mapping->private_list. metadata 1018eed4333fSZheng Liu * buffers are managed internally. 1019eed4333fSZheng Liu */ 1020eed4333fSZheng Liu static int ext4_write_end(struct file *file, 1021f8514083SAneesh Kumar K.V struct address_space *mapping, 1022f8514083SAneesh Kumar K.V loff_t pos, unsigned len, unsigned copied, 1023f8514083SAneesh Kumar K.V struct page *page, void *fsdata) 1024f8514083SAneesh Kumar K.V { 1025f8514083SAneesh Kumar K.V handle_t *handle = ext4_journal_current_handle(); 1026eed4333fSZheng Liu struct inode *inode = mapping->host; 1027eed4333fSZheng Liu int ret = 0, ret2; 1028eed4333fSZheng Liu int i_size_changed = 0; 1029eed4333fSZheng Liu 1030eed4333fSZheng Liu trace_ext4_write_end(inode, pos, len, copied); 1031eed4333fSZheng Liu if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) { 1032eed4333fSZheng Liu ret = ext4_jbd2_file_inode(handle, inode); 1033eed4333fSZheng Liu if (ret) { 1034eed4333fSZheng Liu unlock_page(page); 1035eed4333fSZheng Liu page_cache_release(page); 1036eed4333fSZheng Liu goto errout; 1037eed4333fSZheng Liu } 1038eed4333fSZheng Liu } 1039f8514083SAneesh Kumar K.V 104042c832deSTheodore Ts'o if (ext4_has_inline_data(inode)) { 104142c832deSTheodore Ts'o ret = ext4_write_inline_data_end(inode, pos, len, 1042f19d5870STao Ma copied, page); 104342c832deSTheodore Ts'o if (ret < 0) 104442c832deSTheodore Ts'o goto errout; 104542c832deSTheodore Ts'o copied = ret; 104642c832deSTheodore Ts'o } else 1047f19d5870STao Ma copied = block_write_end(file, mapping, pos, 1048f19d5870STao Ma len, copied, page, fsdata); 1049f8514083SAneesh Kumar K.V /* 10504631dbf6SDmitry Monakhov * it's important to update i_size while still holding page lock: 1051f8514083SAneesh Kumar K.V * page writeout could otherwise come in and zero beyond i_size. 1052f8514083SAneesh Kumar K.V */ 10534631dbf6SDmitry Monakhov i_size_changed = ext4_update_inode_size(inode, pos + copied); 1054f8514083SAneesh Kumar K.V unlock_page(page); 1055f8514083SAneesh Kumar K.V page_cache_release(page); 1056f8514083SAneesh Kumar K.V 1057f8514083SAneesh Kumar K.V /* 1058f8514083SAneesh Kumar K.V * Don't mark the inode dirty under page lock. First, it unnecessarily 1059f8514083SAneesh Kumar K.V * makes the holding time of page lock longer. Second, it forces lock 1060f8514083SAneesh Kumar K.V * ordering of page lock and transaction start for journaling 1061f8514083SAneesh Kumar K.V * filesystems. 1062f8514083SAneesh Kumar K.V */ 1063f8514083SAneesh Kumar K.V if (i_size_changed) 1064f8514083SAneesh Kumar K.V ext4_mark_inode_dirty(handle, inode); 1065f8514083SAneesh Kumar K.V 1066ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 1067f8514083SAneesh Kumar K.V /* if we have allocated more blocks and copied 1068f8514083SAneesh Kumar K.V * less. We will have blocks allocated outside 1069f8514083SAneesh Kumar K.V * inode->i_size. So truncate them 1070f8514083SAneesh Kumar K.V */ 1071f8514083SAneesh Kumar K.V ext4_orphan_add(handle, inode); 107274d553aaSTheodore Ts'o errout: 1073617ba13bSMingming Cao ret2 = ext4_journal_stop(handle); 1074ac27a0ecSDave Kleikamp if (!ret) 1075ac27a0ecSDave Kleikamp ret = ret2; 1076bfc1af65SNick Piggin 1077f8514083SAneesh Kumar K.V if (pos + len > inode->i_size) { 1078b9a4207dSJan Kara ext4_truncate_failed_write(inode); 1079f8514083SAneesh Kumar K.V /* 1080ffacfa7aSJan Kara * If truncate failed early the inode might still be 1081f8514083SAneesh Kumar K.V * on the orphan list; we need to make sure the inode 1082f8514083SAneesh Kumar K.V * is removed from the orphan list in that case. 1083f8514083SAneesh Kumar K.V */ 1084f8514083SAneesh Kumar K.V if (inode->i_nlink) 1085f8514083SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 1086f8514083SAneesh Kumar K.V } 1087f8514083SAneesh Kumar K.V 1088bfc1af65SNick Piggin return ret ? ret : copied; 1089ac27a0ecSDave Kleikamp } 1090ac27a0ecSDave Kleikamp 1091bfc1af65SNick Piggin static int ext4_journalled_write_end(struct file *file, 1092bfc1af65SNick Piggin struct address_space *mapping, 1093bfc1af65SNick Piggin loff_t pos, unsigned len, unsigned copied, 1094bfc1af65SNick Piggin struct page *page, void *fsdata) 1095ac27a0ecSDave Kleikamp { 1096617ba13bSMingming Cao handle_t *handle = ext4_journal_current_handle(); 1097bfc1af65SNick Piggin struct inode *inode = mapping->host; 1098ac27a0ecSDave Kleikamp int ret = 0, ret2; 1099ac27a0ecSDave Kleikamp int partial = 0; 1100bfc1af65SNick Piggin unsigned from, to; 11014631dbf6SDmitry Monakhov int size_changed = 0; 1102ac27a0ecSDave Kleikamp 11039bffad1eSTheodore Ts'o trace_ext4_journalled_write_end(inode, pos, len, copied); 1104bfc1af65SNick Piggin from = pos & (PAGE_CACHE_SIZE - 1); 1105bfc1af65SNick Piggin to = from + len; 1106bfc1af65SNick Piggin 1107441c8508SCurt Wohlgemuth BUG_ON(!ext4_handle_valid(handle)); 1108441c8508SCurt Wohlgemuth 11093fdcfb66STao Ma if (ext4_has_inline_data(inode)) 11103fdcfb66STao Ma copied = ext4_write_inline_data_end(inode, pos, len, 11113fdcfb66STao Ma copied, page); 11123fdcfb66STao Ma else { 1113bfc1af65SNick Piggin if (copied < len) { 1114bfc1af65SNick Piggin if (!PageUptodate(page)) 1115bfc1af65SNick Piggin copied = 0; 1116bfc1af65SNick Piggin page_zero_new_buffers(page, from+copied, to); 1117bfc1af65SNick Piggin } 1118ac27a0ecSDave Kleikamp 1119f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_buffers(page), from, 1120bfc1af65SNick Piggin to, &partial, write_end_fn); 1121ac27a0ecSDave Kleikamp if (!partial) 1122ac27a0ecSDave Kleikamp SetPageUptodate(page); 11233fdcfb66STao Ma } 11244631dbf6SDmitry Monakhov size_changed = ext4_update_inode_size(inode, pos + copied); 112519f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_JDATA); 11262d859db3SJan Kara EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid; 11274631dbf6SDmitry Monakhov unlock_page(page); 11284631dbf6SDmitry Monakhov page_cache_release(page); 11294631dbf6SDmitry Monakhov 11304631dbf6SDmitry Monakhov if (size_changed) { 1131617ba13bSMingming Cao ret2 = ext4_mark_inode_dirty(handle, inode); 1132ac27a0ecSDave Kleikamp if (!ret) 1133ac27a0ecSDave Kleikamp ret = ret2; 1134ac27a0ecSDave Kleikamp } 1135bfc1af65SNick Piggin 1136ffacfa7aSJan Kara if (pos + len > inode->i_size && ext4_can_truncate(inode)) 1137f8514083SAneesh Kumar K.V /* if we have allocated more blocks and copied 1138f8514083SAneesh Kumar K.V * less. We will have blocks allocated outside 1139f8514083SAneesh Kumar K.V * inode->i_size. So truncate them 1140f8514083SAneesh Kumar K.V */ 1141f8514083SAneesh Kumar K.V ext4_orphan_add(handle, inode); 1142f8514083SAneesh Kumar K.V 1143617ba13bSMingming Cao ret2 = ext4_journal_stop(handle); 1144ac27a0ecSDave Kleikamp if (!ret) 1145ac27a0ecSDave Kleikamp ret = ret2; 1146f8514083SAneesh Kumar K.V if (pos + len > inode->i_size) { 1147b9a4207dSJan Kara ext4_truncate_failed_write(inode); 1148f8514083SAneesh Kumar K.V /* 1149ffacfa7aSJan Kara * If truncate failed early the inode might still be 1150f8514083SAneesh Kumar K.V * on the orphan list; we need to make sure the inode 1151f8514083SAneesh Kumar K.V * is removed from the orphan list in that case. 1152f8514083SAneesh Kumar K.V */ 1153f8514083SAneesh Kumar K.V if (inode->i_nlink) 1154f8514083SAneesh Kumar K.V ext4_orphan_del(NULL, inode); 1155f8514083SAneesh Kumar K.V } 1156bfc1af65SNick Piggin 1157bfc1af65SNick Piggin return ret ? ret : copied; 1158ac27a0ecSDave Kleikamp } 1159d2a17637SMingming Cao 11609d0be502STheodore Ts'o /* 11617b415bf6SAditya Kali * Reserve a single cluster located at lblock 11629d0be502STheodore Ts'o */ 116301f49d0bSTheodore Ts'o static int ext4_da_reserve_space(struct inode *inode, ext4_lblk_t lblock) 1164d2a17637SMingming Cao { 1165d2a17637SMingming Cao struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 11660637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 11677b415bf6SAditya Kali unsigned int md_needed; 11685dd4056dSChristoph Hellwig int ret; 1169d2a17637SMingming Cao 117060e58e0fSMingming Cao /* 117172b8ab9dSEric Sandeen * We will charge metadata quota at writeout time; this saves 117272b8ab9dSEric Sandeen * us from metadata over-estimation, though we may go over by 117372b8ab9dSEric Sandeen * a small amount in the end. Here we just reserve for data. 117460e58e0fSMingming Cao */ 11757b415bf6SAditya Kali ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1)); 11765dd4056dSChristoph Hellwig if (ret) 11775dd4056dSChristoph Hellwig return ret; 117803179fe9STheodore Ts'o 117903179fe9STheodore Ts'o /* 118003179fe9STheodore Ts'o * recalculate the amount of metadata blocks to reserve 118103179fe9STheodore Ts'o * in order to allocate nrblocks 118203179fe9STheodore Ts'o * worse case is one extent per block 118303179fe9STheodore Ts'o */ 118403179fe9STheodore Ts'o spin_lock(&ei->i_block_reservation_lock); 118503179fe9STheodore Ts'o /* 118603179fe9STheodore Ts'o * ext4_calc_metadata_amount() has side effects, which we have 118703179fe9STheodore Ts'o * to be prepared undo if we fail to claim space. 118803179fe9STheodore Ts'o */ 118971d4f7d0STheodore Ts'o md_needed = 0; 119071d4f7d0STheodore Ts'o trace_ext4_da_reserve_space(inode, 0); 119103179fe9STheodore Ts'o 119271d4f7d0STheodore Ts'o if (ext4_claim_free_clusters(sbi, 1, 0)) { 119303179fe9STheodore Ts'o spin_unlock(&ei->i_block_reservation_lock); 119403179fe9STheodore Ts'o dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1)); 1195d2a17637SMingming Cao return -ENOSPC; 1196d2a17637SMingming Cao } 11979d0be502STheodore Ts'o ei->i_reserved_data_blocks++; 11980637c6f4STheodore Ts'o spin_unlock(&ei->i_block_reservation_lock); 119939bc680aSDmitry Monakhov 1200d2a17637SMingming Cao return 0; /* success */ 1201d2a17637SMingming Cao } 1202d2a17637SMingming Cao 120312219aeaSAneesh Kumar K.V static void ext4_da_release_space(struct inode *inode, int to_free) 1204d2a17637SMingming Cao { 1205d2a17637SMingming Cao struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 12060637c6f4STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 1207d2a17637SMingming Cao 1208cd213226SMingming Cao if (!to_free) 1209cd213226SMingming Cao return; /* Nothing to release, exit */ 1210cd213226SMingming Cao 1211d2a17637SMingming Cao spin_lock(&EXT4_I(inode)->i_block_reservation_lock); 1212cd213226SMingming Cao 12135a58ec87SLi Zefan trace_ext4_da_release_space(inode, to_free); 12140637c6f4STheodore Ts'o if (unlikely(to_free > ei->i_reserved_data_blocks)) { 1215cd213226SMingming Cao /* 12160637c6f4STheodore Ts'o * if there aren't enough reserved blocks, then the 12170637c6f4STheodore Ts'o * counter is messed up somewhere. Since this 12180637c6f4STheodore Ts'o * function is called from invalidate page, it's 12190637c6f4STheodore Ts'o * harmless to return without any action. 1220cd213226SMingming Cao */ 12218de5c325STheodore Ts'o ext4_warning(inode->i_sb, "ext4_da_release_space: " 12220637c6f4STheodore Ts'o "ino %lu, to_free %d with only %d reserved " 12231084f252STheodore Ts'o "data blocks", inode->i_ino, to_free, 12240637c6f4STheodore Ts'o ei->i_reserved_data_blocks); 12250637c6f4STheodore Ts'o WARN_ON(1); 12260637c6f4STheodore Ts'o to_free = ei->i_reserved_data_blocks; 12270637c6f4STheodore Ts'o } 12280637c6f4STheodore Ts'o ei->i_reserved_data_blocks -= to_free; 12290637c6f4STheodore Ts'o 123072b8ab9dSEric Sandeen /* update fs dirty data blocks counter */ 123157042651STheodore Ts'o percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free); 1232d2a17637SMingming Cao 1233d2a17637SMingming Cao spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); 123460e58e0fSMingming Cao 12357b415bf6SAditya Kali dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free)); 1236d2a17637SMingming Cao } 1237d2a17637SMingming Cao 1238d2a17637SMingming Cao static void ext4_da_page_release_reservation(struct page *page, 1239ca99fdd2SLukas Czerner unsigned int offset, 1240ca99fdd2SLukas Czerner unsigned int length) 1241d2a17637SMingming Cao { 1242d2a17637SMingming Cao int to_release = 0; 1243d2a17637SMingming Cao struct buffer_head *head, *bh; 1244d2a17637SMingming Cao unsigned int curr_off = 0; 12457b415bf6SAditya Kali struct inode *inode = page->mapping->host; 12467b415bf6SAditya Kali struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 1247ca99fdd2SLukas Czerner unsigned int stop = offset + length; 12487b415bf6SAditya Kali int num_clusters; 124951865fdaSZheng Liu ext4_fsblk_t lblk; 1250d2a17637SMingming Cao 1251ca99fdd2SLukas Czerner BUG_ON(stop > PAGE_CACHE_SIZE || stop < length); 1252ca99fdd2SLukas Czerner 1253d2a17637SMingming Cao head = page_buffers(page); 1254d2a17637SMingming Cao bh = head; 1255d2a17637SMingming Cao do { 1256d2a17637SMingming Cao unsigned int next_off = curr_off + bh->b_size; 1257d2a17637SMingming Cao 1258ca99fdd2SLukas Czerner if (next_off > stop) 1259ca99fdd2SLukas Czerner break; 1260ca99fdd2SLukas Czerner 1261d2a17637SMingming Cao if ((offset <= curr_off) && (buffer_delay(bh))) { 1262d2a17637SMingming Cao to_release++; 1263d2a17637SMingming Cao clear_buffer_delay(bh); 1264d2a17637SMingming Cao } 1265d2a17637SMingming Cao curr_off = next_off; 1266d2a17637SMingming Cao } while ((bh = bh->b_this_page) != head); 12677b415bf6SAditya Kali 126851865fdaSZheng Liu if (to_release) { 126951865fdaSZheng Liu lblk = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits); 127051865fdaSZheng Liu ext4_es_remove_extent(inode, lblk, to_release); 127151865fdaSZheng Liu } 127251865fdaSZheng Liu 12737b415bf6SAditya Kali /* If we have released all the blocks belonging to a cluster, then we 12747b415bf6SAditya Kali * need to release the reserved space for that cluster. */ 12757b415bf6SAditya Kali num_clusters = EXT4_NUM_B2C(sbi, to_release); 12767b415bf6SAditya Kali while (num_clusters > 0) { 12777b415bf6SAditya Kali lblk = (page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits)) + 12787b415bf6SAditya Kali ((num_clusters - 1) << sbi->s_cluster_bits); 12797b415bf6SAditya Kali if (sbi->s_cluster_ratio == 1 || 12807d1b1fbcSZheng Liu !ext4_find_delalloc_cluster(inode, lblk)) 12817b415bf6SAditya Kali ext4_da_release_space(inode, 1); 12827b415bf6SAditya Kali 12837b415bf6SAditya Kali num_clusters--; 12847b415bf6SAditya Kali } 1285d2a17637SMingming Cao } 1286ac27a0ecSDave Kleikamp 1287ac27a0ecSDave Kleikamp /* 128864769240SAlex Tomas * Delayed allocation stuff 128964769240SAlex Tomas */ 129064769240SAlex Tomas 12914e7ea81dSJan Kara struct mpage_da_data { 12924e7ea81dSJan Kara struct inode *inode; 12934e7ea81dSJan Kara struct writeback_control *wbc; 12946b523df4SJan Kara 12954e7ea81dSJan Kara pgoff_t first_page; /* The first page to write */ 12964e7ea81dSJan Kara pgoff_t next_page; /* Current page to examine */ 12974e7ea81dSJan Kara pgoff_t last_page; /* Last page to examine */ 129864769240SAlex Tomas /* 12994e7ea81dSJan Kara * Extent to map - this can be after first_page because that can be 13004e7ea81dSJan Kara * fully mapped. We somewhat abuse m_flags to store whether the extent 13014e7ea81dSJan Kara * is delalloc or unwritten. 130264769240SAlex Tomas */ 13034e7ea81dSJan Kara struct ext4_map_blocks map; 13044e7ea81dSJan Kara struct ext4_io_submit io_submit; /* IO submission data */ 13054e7ea81dSJan Kara }; 130664769240SAlex Tomas 13074e7ea81dSJan Kara static void mpage_release_unused_pages(struct mpage_da_data *mpd, 13084e7ea81dSJan Kara bool invalidate) 1309c4a0c46eSAneesh Kumar K.V { 1310c4a0c46eSAneesh Kumar K.V int nr_pages, i; 1311c4a0c46eSAneesh Kumar K.V pgoff_t index, end; 1312c4a0c46eSAneesh Kumar K.V struct pagevec pvec; 1313c4a0c46eSAneesh Kumar K.V struct inode *inode = mpd->inode; 1314c4a0c46eSAneesh Kumar K.V struct address_space *mapping = inode->i_mapping; 13154e7ea81dSJan Kara 13164e7ea81dSJan Kara /* This is necessary when next_page == 0. */ 13174e7ea81dSJan Kara if (mpd->first_page >= mpd->next_page) 13184e7ea81dSJan Kara return; 1319c4a0c46eSAneesh Kumar K.V 1320c7f5938aSCurt Wohlgemuth index = mpd->first_page; 1321c7f5938aSCurt Wohlgemuth end = mpd->next_page - 1; 13224e7ea81dSJan Kara if (invalidate) { 13234e7ea81dSJan Kara ext4_lblk_t start, last; 132451865fdaSZheng Liu start = index << (PAGE_CACHE_SHIFT - inode->i_blkbits); 132551865fdaSZheng Liu last = end << (PAGE_CACHE_SHIFT - inode->i_blkbits); 132651865fdaSZheng Liu ext4_es_remove_extent(inode, start, last - start + 1); 13274e7ea81dSJan Kara } 132851865fdaSZheng Liu 132966bea92cSEric Sandeen pagevec_init(&pvec, 0); 1330c4a0c46eSAneesh Kumar K.V while (index <= end) { 1331c4a0c46eSAneesh Kumar K.V nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE); 1332c4a0c46eSAneesh Kumar K.V if (nr_pages == 0) 1333c4a0c46eSAneesh Kumar K.V break; 1334c4a0c46eSAneesh Kumar K.V for (i = 0; i < nr_pages; i++) { 1335c4a0c46eSAneesh Kumar K.V struct page *page = pvec.pages[i]; 13369b1d0998SJan Kara if (page->index > end) 1337c4a0c46eSAneesh Kumar K.V break; 1338c4a0c46eSAneesh Kumar K.V BUG_ON(!PageLocked(page)); 1339c4a0c46eSAneesh Kumar K.V BUG_ON(PageWriteback(page)); 13404e7ea81dSJan Kara if (invalidate) { 1341d47992f8SLukas Czerner block_invalidatepage(page, 0, PAGE_CACHE_SIZE); 1342c4a0c46eSAneesh Kumar K.V ClearPageUptodate(page); 13434e7ea81dSJan Kara } 1344c4a0c46eSAneesh Kumar K.V unlock_page(page); 1345c4a0c46eSAneesh Kumar K.V } 13469b1d0998SJan Kara index = pvec.pages[nr_pages - 1]->index + 1; 13479b1d0998SJan Kara pagevec_release(&pvec); 1348c4a0c46eSAneesh Kumar K.V } 1349c4a0c46eSAneesh Kumar K.V } 1350c4a0c46eSAneesh Kumar K.V 1351df22291fSAneesh Kumar K.V static void ext4_print_free_blocks(struct inode *inode) 1352df22291fSAneesh Kumar K.V { 1353df22291fSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 135492b97816STheodore Ts'o struct super_block *sb = inode->i_sb; 1355f78ee70dSLukas Czerner struct ext4_inode_info *ei = EXT4_I(inode); 135692b97816STheodore Ts'o 135792b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld", 13585dee5437STheodore Ts'o EXT4_C2B(EXT4_SB(inode->i_sb), 1359f78ee70dSLukas Czerner ext4_count_free_clusters(sb))); 136092b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Free/Dirty block details"); 136192b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "free_blocks=%lld", 1362f78ee70dSLukas Czerner (long long) EXT4_C2B(EXT4_SB(sb), 136357042651STheodore Ts'o percpu_counter_sum(&sbi->s_freeclusters_counter))); 136492b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld", 1365f78ee70dSLukas Czerner (long long) EXT4_C2B(EXT4_SB(sb), 13667b415bf6SAditya Kali percpu_counter_sum(&sbi->s_dirtyclusters_counter))); 136792b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "Block reservation details"); 136892b97816STheodore Ts'o ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u", 1369f78ee70dSLukas Czerner ei->i_reserved_data_blocks); 1370df22291fSAneesh Kumar K.V return; 1371df22291fSAneesh Kumar K.V } 1372df22291fSAneesh Kumar K.V 1373c364b22cSAneesh Kumar K.V static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh) 137429fa89d0SAneesh Kumar K.V { 1375c364b22cSAneesh Kumar K.V return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh); 137629fa89d0SAneesh Kumar K.V } 137729fa89d0SAneesh Kumar K.V 137864769240SAlex Tomas /* 13795356f261SAditya Kali * This function is grabs code from the very beginning of 13805356f261SAditya Kali * ext4_map_blocks, but assumes that the caller is from delayed write 13815356f261SAditya Kali * time. This function looks up the requested blocks and sets the 13825356f261SAditya Kali * buffer delay bit under the protection of i_data_sem. 13835356f261SAditya Kali */ 13845356f261SAditya Kali static int ext4_da_map_blocks(struct inode *inode, sector_t iblock, 13855356f261SAditya Kali struct ext4_map_blocks *map, 13865356f261SAditya Kali struct buffer_head *bh) 13875356f261SAditya Kali { 1388d100eef2SZheng Liu struct extent_status es; 13895356f261SAditya Kali int retval; 13905356f261SAditya Kali sector_t invalid_block = ~((sector_t) 0xffff); 1391921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 1392921f266bSDmitry Monakhov struct ext4_map_blocks orig_map; 1393921f266bSDmitry Monakhov 1394921f266bSDmitry Monakhov memcpy(&orig_map, map, sizeof(*map)); 1395921f266bSDmitry Monakhov #endif 13965356f261SAditya Kali 13975356f261SAditya Kali if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es)) 13985356f261SAditya Kali invalid_block = ~0; 13995356f261SAditya Kali 14005356f261SAditya Kali map->m_flags = 0; 14015356f261SAditya Kali ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u," 14025356f261SAditya Kali "logical block %lu\n", inode->i_ino, map->m_len, 14035356f261SAditya Kali (unsigned long) map->m_lblk); 1404d100eef2SZheng Liu 1405d100eef2SZheng Liu /* Lookup extent status tree firstly */ 1406d100eef2SZheng Liu if (ext4_es_lookup_extent(inode, iblock, &es)) { 1407d100eef2SZheng Liu if (ext4_es_is_hole(&es)) { 1408d100eef2SZheng Liu retval = 0; 1409c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 1410d100eef2SZheng Liu goto add_delayed; 1411d100eef2SZheng Liu } 1412d100eef2SZheng Liu 1413d100eef2SZheng Liu /* 1414d100eef2SZheng Liu * Delayed extent could be allocated by fallocate. 1415d100eef2SZheng Liu * So we need to check it. 1416d100eef2SZheng Liu */ 1417d100eef2SZheng Liu if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) { 1418d100eef2SZheng Liu map_bh(bh, inode->i_sb, invalid_block); 1419d100eef2SZheng Liu set_buffer_new(bh); 1420d100eef2SZheng Liu set_buffer_delay(bh); 1421d100eef2SZheng Liu return 0; 1422d100eef2SZheng Liu } 1423d100eef2SZheng Liu 1424d100eef2SZheng Liu map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk; 1425d100eef2SZheng Liu retval = es.es_len - (iblock - es.es_lblk); 1426d100eef2SZheng Liu if (retval > map->m_len) 1427d100eef2SZheng Liu retval = map->m_len; 1428d100eef2SZheng Liu map->m_len = retval; 1429d100eef2SZheng Liu if (ext4_es_is_written(&es)) 1430d100eef2SZheng Liu map->m_flags |= EXT4_MAP_MAPPED; 1431d100eef2SZheng Liu else if (ext4_es_is_unwritten(&es)) 1432d100eef2SZheng Liu map->m_flags |= EXT4_MAP_UNWRITTEN; 1433d100eef2SZheng Liu else 1434d100eef2SZheng Liu BUG_ON(1); 1435d100eef2SZheng Liu 1436921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST 1437921f266bSDmitry Monakhov ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0); 1438921f266bSDmitry Monakhov #endif 1439d100eef2SZheng Liu return retval; 1440d100eef2SZheng Liu } 1441d100eef2SZheng Liu 14425356f261SAditya Kali /* 14435356f261SAditya Kali * Try to see if we can get the block without requesting a new 14445356f261SAditya Kali * file system block. 14455356f261SAditya Kali */ 1446c8b459f4SLukas Czerner down_read(&EXT4_I(inode)->i_data_sem); 1447cbd7584eSJan Kara if (ext4_has_inline_data(inode)) 14489c3569b5STao Ma retval = 0; 1449cbd7584eSJan Kara else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 14502f8e0a7cSZheng Liu retval = ext4_ext_map_blocks(NULL, inode, map, 0); 14515356f261SAditya Kali else 14522f8e0a7cSZheng Liu retval = ext4_ind_map_blocks(NULL, inode, map, 0); 14535356f261SAditya Kali 1454d100eef2SZheng Liu add_delayed: 14555356f261SAditya Kali if (retval == 0) { 1456f7fec032SZheng Liu int ret; 14575356f261SAditya Kali /* 14585356f261SAditya Kali * XXX: __block_prepare_write() unmaps passed block, 14595356f261SAditya Kali * is it OK? 14605356f261SAditya Kali */ 1461386ad67cSLukas Czerner /* 1462386ad67cSLukas Czerner * If the block was allocated from previously allocated cluster, 1463386ad67cSLukas Czerner * then we don't need to reserve it again. However we still need 1464386ad67cSLukas Czerner * to reserve metadata for every block we're going to write. 1465386ad67cSLukas Czerner */ 1466cbd7584eSJan Kara if (EXT4_SB(inode->i_sb)->s_cluster_ratio <= 1 || 1467cbd7584eSJan Kara !ext4_find_delalloc_cluster(inode, map->m_lblk)) { 1468f7fec032SZheng Liu ret = ext4_da_reserve_space(inode, iblock); 1469f7fec032SZheng Liu if (ret) { 14705356f261SAditya Kali /* not enough space to reserve */ 1471f7fec032SZheng Liu retval = ret; 14725356f261SAditya Kali goto out_unlock; 14735356f261SAditya Kali } 1474f7fec032SZheng Liu } 14755356f261SAditya Kali 1476f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 1477fdc0212eSZheng Liu ~0, EXTENT_STATUS_DELAYED); 1478f7fec032SZheng Liu if (ret) { 1479f7fec032SZheng Liu retval = ret; 148051865fdaSZheng Liu goto out_unlock; 1481f7fec032SZheng Liu } 148251865fdaSZheng Liu 14835356f261SAditya Kali map_bh(bh, inode->i_sb, invalid_block); 14845356f261SAditya Kali set_buffer_new(bh); 14855356f261SAditya Kali set_buffer_delay(bh); 1486f7fec032SZheng Liu } else if (retval > 0) { 1487f7fec032SZheng Liu int ret; 14883be78c73STheodore Ts'o unsigned int status; 1489f7fec032SZheng Liu 149044fb851dSZheng Liu if (unlikely(retval != map->m_len)) { 149144fb851dSZheng Liu ext4_warning(inode->i_sb, 149244fb851dSZheng Liu "ES len assertion failed for inode " 149344fb851dSZheng Liu "%lu: retval %d != map->m_len %d", 149444fb851dSZheng Liu inode->i_ino, retval, map->m_len); 149544fb851dSZheng Liu WARN_ON(1); 1496921f266bSDmitry Monakhov } 1497921f266bSDmitry Monakhov 1498f7fec032SZheng Liu status = map->m_flags & EXT4_MAP_UNWRITTEN ? 1499f7fec032SZheng Liu EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN; 1500f7fec032SZheng Liu ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len, 1501f7fec032SZheng Liu map->m_pblk, status); 1502f7fec032SZheng Liu if (ret != 0) 1503f7fec032SZheng Liu retval = ret; 15045356f261SAditya Kali } 15055356f261SAditya Kali 15065356f261SAditya Kali out_unlock: 15075356f261SAditya Kali up_read((&EXT4_I(inode)->i_data_sem)); 15085356f261SAditya Kali 15095356f261SAditya Kali return retval; 15105356f261SAditya Kali } 15115356f261SAditya Kali 15125356f261SAditya Kali /* 1513d91bd2c1SSeunghun Lee * This is a special get_block_t callback which is used by 1514b920c755STheodore Ts'o * ext4_da_write_begin(). It will either return mapped block or 1515b920c755STheodore Ts'o * reserve space for a single block. 151629fa89d0SAneesh Kumar K.V * 151729fa89d0SAneesh Kumar K.V * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set. 151829fa89d0SAneesh Kumar K.V * We also have b_blocknr = -1 and b_bdev initialized properly 151929fa89d0SAneesh Kumar K.V * 152029fa89d0SAneesh Kumar K.V * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set. 152129fa89d0SAneesh Kumar K.V * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev 152229fa89d0SAneesh Kumar K.V * initialized properly. 152364769240SAlex Tomas */ 15249c3569b5STao Ma int ext4_da_get_block_prep(struct inode *inode, sector_t iblock, 15252ed88685STheodore Ts'o struct buffer_head *bh, int create) 152664769240SAlex Tomas { 15272ed88685STheodore Ts'o struct ext4_map_blocks map; 152864769240SAlex Tomas int ret = 0; 152964769240SAlex Tomas 153064769240SAlex Tomas BUG_ON(create == 0); 15312ed88685STheodore Ts'o BUG_ON(bh->b_size != inode->i_sb->s_blocksize); 15322ed88685STheodore Ts'o 15332ed88685STheodore Ts'o map.m_lblk = iblock; 15342ed88685STheodore Ts'o map.m_len = 1; 153564769240SAlex Tomas 153664769240SAlex Tomas /* 153764769240SAlex Tomas * first, we need to know whether the block is allocated already 153864769240SAlex Tomas * preallocated blocks are unmapped but should treated 153964769240SAlex Tomas * the same as allocated blocks. 154064769240SAlex Tomas */ 15415356f261SAditya Kali ret = ext4_da_map_blocks(inode, iblock, &map, bh); 15425356f261SAditya Kali if (ret <= 0) 15432ed88685STheodore Ts'o return ret; 154464769240SAlex Tomas 15452ed88685STheodore Ts'o map_bh(bh, inode->i_sb, map.m_pblk); 15462ed88685STheodore Ts'o bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags; 15472ed88685STheodore Ts'o 15482ed88685STheodore Ts'o if (buffer_unwritten(bh)) { 15492ed88685STheodore Ts'o /* A delayed write to unwritten bh should be marked 15502ed88685STheodore Ts'o * new and mapped. Mapped ensures that we don't do 15512ed88685STheodore Ts'o * get_block multiple times when we write to the same 15522ed88685STheodore Ts'o * offset and new ensures that we do proper zero out 15532ed88685STheodore Ts'o * for partial write. 15542ed88685STheodore Ts'o */ 15552ed88685STheodore Ts'o set_buffer_new(bh); 1556c8205636STheodore Ts'o set_buffer_mapped(bh); 15572ed88685STheodore Ts'o } 15582ed88685STheodore Ts'o return 0; 155964769240SAlex Tomas } 156061628a3fSMingming Cao 156162e086beSAneesh Kumar K.V static int bget_one(handle_t *handle, struct buffer_head *bh) 156262e086beSAneesh Kumar K.V { 156362e086beSAneesh Kumar K.V get_bh(bh); 156462e086beSAneesh Kumar K.V return 0; 156562e086beSAneesh Kumar K.V } 156662e086beSAneesh Kumar K.V 156762e086beSAneesh Kumar K.V static int bput_one(handle_t *handle, struct buffer_head *bh) 156862e086beSAneesh Kumar K.V { 156962e086beSAneesh Kumar K.V put_bh(bh); 157062e086beSAneesh Kumar K.V return 0; 157162e086beSAneesh Kumar K.V } 157262e086beSAneesh Kumar K.V 157362e086beSAneesh Kumar K.V static int __ext4_journalled_writepage(struct page *page, 157462e086beSAneesh Kumar K.V unsigned int len) 157562e086beSAneesh Kumar K.V { 157662e086beSAneesh Kumar K.V struct address_space *mapping = page->mapping; 157762e086beSAneesh Kumar K.V struct inode *inode = mapping->host; 15783fdcfb66STao Ma struct buffer_head *page_bufs = NULL; 157962e086beSAneesh Kumar K.V handle_t *handle = NULL; 15803fdcfb66STao Ma int ret = 0, err = 0; 15813fdcfb66STao Ma int inline_data = ext4_has_inline_data(inode); 15823fdcfb66STao Ma struct buffer_head *inode_bh = NULL; 158362e086beSAneesh Kumar K.V 1584cb20d518STheodore Ts'o ClearPageChecked(page); 15853fdcfb66STao Ma 15863fdcfb66STao Ma if (inline_data) { 15873fdcfb66STao Ma BUG_ON(page->index != 0); 15883fdcfb66STao Ma BUG_ON(len > ext4_get_max_inline_size(inode)); 15893fdcfb66STao Ma inode_bh = ext4_journalled_write_inline_data(inode, len, page); 15903fdcfb66STao Ma if (inode_bh == NULL) 15913fdcfb66STao Ma goto out; 15923fdcfb66STao Ma } else { 159362e086beSAneesh Kumar K.V page_bufs = page_buffers(page); 15943fdcfb66STao Ma if (!page_bufs) { 15953fdcfb66STao Ma BUG(); 15963fdcfb66STao Ma goto out; 15973fdcfb66STao Ma } 15983fdcfb66STao Ma ext4_walk_page_buffers(handle, page_bufs, 0, len, 15993fdcfb66STao Ma NULL, bget_one); 16003fdcfb66STao Ma } 160162e086beSAneesh Kumar K.V /* As soon as we unlock the page, it can go away, but we have 160262e086beSAneesh Kumar K.V * references to buffers so we are safe */ 160362e086beSAneesh Kumar K.V unlock_page(page); 160462e086beSAneesh Kumar K.V 16059924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 16069924a92aSTheodore Ts'o ext4_writepage_trans_blocks(inode)); 160762e086beSAneesh Kumar K.V if (IS_ERR(handle)) { 160862e086beSAneesh Kumar K.V ret = PTR_ERR(handle); 160962e086beSAneesh Kumar K.V goto out; 161062e086beSAneesh Kumar K.V } 161162e086beSAneesh Kumar K.V 1612441c8508SCurt Wohlgemuth BUG_ON(!ext4_handle_valid(handle)); 1613441c8508SCurt Wohlgemuth 16143fdcfb66STao Ma if (inline_data) { 16155d601255Sliang xie BUFFER_TRACE(inode_bh, "get write access"); 16163fdcfb66STao Ma ret = ext4_journal_get_write_access(handle, inode_bh); 16173fdcfb66STao Ma 16183fdcfb66STao Ma err = ext4_handle_dirty_metadata(handle, inode, inode_bh); 16193fdcfb66STao Ma 16203fdcfb66STao Ma } else { 1621f19d5870STao Ma ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL, 162262e086beSAneesh Kumar K.V do_journal_get_write_access); 162362e086beSAneesh Kumar K.V 1624f19d5870STao Ma err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL, 162562e086beSAneesh Kumar K.V write_end_fn); 16263fdcfb66STao Ma } 162762e086beSAneesh Kumar K.V if (ret == 0) 162862e086beSAneesh Kumar K.V ret = err; 16292d859db3SJan Kara EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid; 163062e086beSAneesh Kumar K.V err = ext4_journal_stop(handle); 163162e086beSAneesh Kumar K.V if (!ret) 163262e086beSAneesh Kumar K.V ret = err; 163362e086beSAneesh Kumar K.V 16343fdcfb66STao Ma if (!ext4_has_inline_data(inode)) 16358c9367fdSTheodore Ts'o ext4_walk_page_buffers(NULL, page_bufs, 0, len, 16363fdcfb66STao Ma NULL, bput_one); 163719f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_JDATA); 163862e086beSAneesh Kumar K.V out: 16393fdcfb66STao Ma brelse(inode_bh); 164062e086beSAneesh Kumar K.V return ret; 164162e086beSAneesh Kumar K.V } 164262e086beSAneesh Kumar K.V 164361628a3fSMingming Cao /* 164443ce1d23SAneesh Kumar K.V * Note that we don't need to start a transaction unless we're journaling data 164543ce1d23SAneesh Kumar K.V * because we should have holes filled from ext4_page_mkwrite(). We even don't 164643ce1d23SAneesh Kumar K.V * need to file the inode to the transaction's list in ordered mode because if 164743ce1d23SAneesh Kumar K.V * we are writing back data added by write(), the inode is already there and if 164843ce1d23SAneesh Kumar K.V * we are writing back data modified via mmap(), no one guarantees in which 164943ce1d23SAneesh Kumar K.V * transaction the data will hit the disk. In case we are journaling data, we 165043ce1d23SAneesh Kumar K.V * cannot start transaction directly because transaction start ranks above page 165143ce1d23SAneesh Kumar K.V * lock so we have to do some magic. 165243ce1d23SAneesh Kumar K.V * 1653b920c755STheodore Ts'o * This function can get called via... 165420970ba6STheodore Ts'o * - ext4_writepages after taking page lock (have journal handle) 1655b920c755STheodore Ts'o * - journal_submit_inode_data_buffers (no journal handle) 1656f6463b0dSArtem Bityutskiy * - shrink_page_list via the kswapd/direct reclaim (no journal handle) 1657b920c755STheodore Ts'o * - grab_page_cache when doing write_begin (have journal handle) 165843ce1d23SAneesh Kumar K.V * 165943ce1d23SAneesh Kumar K.V * We don't do any block allocation in this function. If we have page with 166043ce1d23SAneesh Kumar K.V * multiple blocks we need to write those buffer_heads that are mapped. This 166143ce1d23SAneesh Kumar K.V * is important for mmaped based write. So if we do with blocksize 1K 166243ce1d23SAneesh Kumar K.V * truncate(f, 1024); 166343ce1d23SAneesh Kumar K.V * a = mmap(f, 0, 4096); 166443ce1d23SAneesh Kumar K.V * a[0] = 'a'; 166543ce1d23SAneesh Kumar K.V * truncate(f, 4096); 166643ce1d23SAneesh Kumar K.V * we have in the page first buffer_head mapped via page_mkwrite call back 166790802ed9SPaul Bolle * but other buffer_heads would be unmapped but dirty (dirty done via the 166843ce1d23SAneesh Kumar K.V * do_wp_page). So writepage should write the first block. If we modify 166943ce1d23SAneesh Kumar K.V * the mmap area beyond 1024 we will again get a page_fault and the 167043ce1d23SAneesh Kumar K.V * page_mkwrite callback will do the block allocation and mark the 167143ce1d23SAneesh Kumar K.V * buffer_heads mapped. 167243ce1d23SAneesh Kumar K.V * 167343ce1d23SAneesh Kumar K.V * We redirty the page if we have any buffer_heads that is either delay or 167443ce1d23SAneesh Kumar K.V * unwritten in the page. 167543ce1d23SAneesh Kumar K.V * 167643ce1d23SAneesh Kumar K.V * We can get recursively called as show below. 167743ce1d23SAneesh Kumar K.V * 167843ce1d23SAneesh Kumar K.V * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() -> 167943ce1d23SAneesh Kumar K.V * ext4_writepage() 168043ce1d23SAneesh Kumar K.V * 168143ce1d23SAneesh Kumar K.V * But since we don't do any block allocation we should not deadlock. 168243ce1d23SAneesh Kumar K.V * Page also have the dirty flag cleared so we don't get recurive page_lock. 168361628a3fSMingming Cao */ 168443ce1d23SAneesh Kumar K.V static int ext4_writepage(struct page *page, 168564769240SAlex Tomas struct writeback_control *wbc) 168664769240SAlex Tomas { 1687f8bec370SJan Kara int ret = 0; 168861628a3fSMingming Cao loff_t size; 1689498e5f24STheodore Ts'o unsigned int len; 1690744692dcSJiaying Zhang struct buffer_head *page_bufs = NULL; 169161628a3fSMingming Cao struct inode *inode = page->mapping->host; 169236ade451SJan Kara struct ext4_io_submit io_submit; 16931c8349a1SNamjae Jeon bool keep_towrite = false; 169464769240SAlex Tomas 1695a9c667f8SLukas Czerner trace_ext4_writepage(page); 169661628a3fSMingming Cao size = i_size_read(inode); 169761628a3fSMingming Cao if (page->index == size >> PAGE_CACHE_SHIFT) 169861628a3fSMingming Cao len = size & ~PAGE_CACHE_MASK; 169961628a3fSMingming Cao else 170061628a3fSMingming Cao len = PAGE_CACHE_SIZE; 170161628a3fSMingming Cao 1702f0e6c985SAneesh Kumar K.V page_bufs = page_buffers(page); 170364769240SAlex Tomas /* 1704fe386132SJan Kara * We cannot do block allocation or other extent handling in this 1705fe386132SJan Kara * function. If there are buffers needing that, we have to redirty 1706fe386132SJan Kara * the page. But we may reach here when we do a journal commit via 1707fe386132SJan Kara * journal_submit_inode_data_buffers() and in that case we must write 1708fe386132SJan Kara * allocated buffers to achieve data=ordered mode guarantees. 170964769240SAlex Tomas */ 1710f19d5870STao Ma if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL, 1711c364b22cSAneesh Kumar K.V ext4_bh_delay_or_unwritten)) { 171261628a3fSMingming Cao redirty_page_for_writepage(wbc, page); 1713fe386132SJan Kara if (current->flags & PF_MEMALLOC) { 1714fe386132SJan Kara /* 1715fe386132SJan Kara * For memory cleaning there's no point in writing only 1716fe386132SJan Kara * some buffers. So just bail out. Warn if we came here 1717fe386132SJan Kara * from direct reclaim. 1718fe386132SJan Kara */ 1719fe386132SJan Kara WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD)) 1720fe386132SJan Kara == PF_MEMALLOC); 172161628a3fSMingming Cao unlock_page(page); 172261628a3fSMingming Cao return 0; 172361628a3fSMingming Cao } 17241c8349a1SNamjae Jeon keep_towrite = true; 1725f0e6c985SAneesh Kumar K.V } 172664769240SAlex Tomas 1727cb20d518STheodore Ts'o if (PageChecked(page) && ext4_should_journal_data(inode)) 172843ce1d23SAneesh Kumar K.V /* 172943ce1d23SAneesh Kumar K.V * It's mmapped pagecache. Add buffers and journal it. There 173043ce1d23SAneesh Kumar K.V * doesn't seem much point in redirtying the page here. 173143ce1d23SAneesh Kumar K.V */ 17323f0ca309SWu Fengguang return __ext4_journalled_writepage(page, len); 173343ce1d23SAneesh Kumar K.V 173497a851edSJan Kara ext4_io_submit_init(&io_submit, wbc); 173597a851edSJan Kara io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS); 173697a851edSJan Kara if (!io_submit.io_end) { 173797a851edSJan Kara redirty_page_for_writepage(wbc, page); 173897a851edSJan Kara unlock_page(page); 173997a851edSJan Kara return -ENOMEM; 174097a851edSJan Kara } 17411c8349a1SNamjae Jeon ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite); 174236ade451SJan Kara ext4_io_submit(&io_submit); 174397a851edSJan Kara /* Drop io_end reference we got from init */ 174497a851edSJan Kara ext4_put_io_end_defer(io_submit.io_end); 174564769240SAlex Tomas return ret; 174664769240SAlex Tomas } 174764769240SAlex Tomas 17485f1132b2SJan Kara static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page) 17495f1132b2SJan Kara { 17505f1132b2SJan Kara int len; 17515f1132b2SJan Kara loff_t size = i_size_read(mpd->inode); 17525f1132b2SJan Kara int err; 17535f1132b2SJan Kara 17545f1132b2SJan Kara BUG_ON(page->index != mpd->first_page); 17555f1132b2SJan Kara if (page->index == size >> PAGE_CACHE_SHIFT) 17565f1132b2SJan Kara len = size & ~PAGE_CACHE_MASK; 17575f1132b2SJan Kara else 17585f1132b2SJan Kara len = PAGE_CACHE_SIZE; 17595f1132b2SJan Kara clear_page_dirty_for_io(page); 17601c8349a1SNamjae Jeon err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false); 17615f1132b2SJan Kara if (!err) 17625f1132b2SJan Kara mpd->wbc->nr_to_write--; 17635f1132b2SJan Kara mpd->first_page++; 17645f1132b2SJan Kara 17655f1132b2SJan Kara return err; 17665f1132b2SJan Kara } 17675f1132b2SJan Kara 17684e7ea81dSJan Kara #define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay)) 17694e7ea81dSJan Kara 177061628a3fSMingming Cao /* 1771fffb2739SJan Kara * mballoc gives us at most this number of blocks... 1772fffb2739SJan Kara * XXX: That seems to be only a limitation of ext4_mb_normalize_request(). 1773fffb2739SJan Kara * The rest of mballoc seems to handle chunks up to full group size. 177461628a3fSMingming Cao */ 1775fffb2739SJan Kara #define MAX_WRITEPAGES_EXTENT_LEN 2048 1776525f4ed8SMingming Cao 1777525f4ed8SMingming Cao /* 17784e7ea81dSJan Kara * mpage_add_bh_to_extent - try to add bh to extent of blocks to map 17794e7ea81dSJan Kara * 17804e7ea81dSJan Kara * @mpd - extent of blocks 17814e7ea81dSJan Kara * @lblk - logical number of the block in the file 178209930042SJan Kara * @bh - buffer head we want to add to the extent 17834e7ea81dSJan Kara * 178409930042SJan Kara * The function is used to collect contig. blocks in the same state. If the 178509930042SJan Kara * buffer doesn't require mapping for writeback and we haven't started the 178609930042SJan Kara * extent of buffers to map yet, the function returns 'true' immediately - the 178709930042SJan Kara * caller can write the buffer right away. Otherwise the function returns true 178809930042SJan Kara * if the block has been added to the extent, false if the block couldn't be 178909930042SJan Kara * added. 17904e7ea81dSJan Kara */ 179109930042SJan Kara static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk, 179209930042SJan Kara struct buffer_head *bh) 17934e7ea81dSJan Kara { 17944e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 17954e7ea81dSJan Kara 179609930042SJan Kara /* Buffer that doesn't need mapping for writeback? */ 179709930042SJan Kara if (!buffer_dirty(bh) || !buffer_mapped(bh) || 179809930042SJan Kara (!buffer_delay(bh) && !buffer_unwritten(bh))) { 179909930042SJan Kara /* So far no extent to map => we write the buffer right away */ 180009930042SJan Kara if (map->m_len == 0) 180109930042SJan Kara return true; 180209930042SJan Kara return false; 180309930042SJan Kara } 18044e7ea81dSJan Kara 18054e7ea81dSJan Kara /* First block in the extent? */ 18064e7ea81dSJan Kara if (map->m_len == 0) { 18074e7ea81dSJan Kara map->m_lblk = lblk; 18084e7ea81dSJan Kara map->m_len = 1; 180909930042SJan Kara map->m_flags = bh->b_state & BH_FLAGS; 181009930042SJan Kara return true; 18114e7ea81dSJan Kara } 18124e7ea81dSJan Kara 181309930042SJan Kara /* Don't go larger than mballoc is willing to allocate */ 181409930042SJan Kara if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN) 181509930042SJan Kara return false; 181609930042SJan Kara 18174e7ea81dSJan Kara /* Can we merge the block to our big extent? */ 18184e7ea81dSJan Kara if (lblk == map->m_lblk + map->m_len && 181909930042SJan Kara (bh->b_state & BH_FLAGS) == map->m_flags) { 18204e7ea81dSJan Kara map->m_len++; 182109930042SJan Kara return true; 18224e7ea81dSJan Kara } 182309930042SJan Kara return false; 18244e7ea81dSJan Kara } 18254e7ea81dSJan Kara 18265f1132b2SJan Kara /* 18275f1132b2SJan Kara * mpage_process_page_bufs - submit page buffers for IO or add them to extent 18285f1132b2SJan Kara * 18295f1132b2SJan Kara * @mpd - extent of blocks for mapping 18305f1132b2SJan Kara * @head - the first buffer in the page 18315f1132b2SJan Kara * @bh - buffer we should start processing from 18325f1132b2SJan Kara * @lblk - logical number of the block in the file corresponding to @bh 18335f1132b2SJan Kara * 18345f1132b2SJan Kara * Walk through page buffers from @bh upto @head (exclusive) and either submit 18355f1132b2SJan Kara * the page for IO if all buffers in this page were mapped and there's no 18365f1132b2SJan Kara * accumulated extent of buffers to map or add buffers in the page to the 18375f1132b2SJan Kara * extent of buffers to map. The function returns 1 if the caller can continue 18385f1132b2SJan Kara * by processing the next page, 0 if it should stop adding buffers to the 18395f1132b2SJan Kara * extent to map because we cannot extend it anymore. It can also return value 18405f1132b2SJan Kara * < 0 in case of error during IO submission. 18415f1132b2SJan Kara */ 18425f1132b2SJan Kara static int mpage_process_page_bufs(struct mpage_da_data *mpd, 18434e7ea81dSJan Kara struct buffer_head *head, 18444e7ea81dSJan Kara struct buffer_head *bh, 18454e7ea81dSJan Kara ext4_lblk_t lblk) 18464e7ea81dSJan Kara { 18474e7ea81dSJan Kara struct inode *inode = mpd->inode; 18485f1132b2SJan Kara int err; 18494e7ea81dSJan Kara ext4_lblk_t blocks = (i_size_read(inode) + (1 << inode->i_blkbits) - 1) 18504e7ea81dSJan Kara >> inode->i_blkbits; 18514e7ea81dSJan Kara 18524e7ea81dSJan Kara do { 18534e7ea81dSJan Kara BUG_ON(buffer_locked(bh)); 18544e7ea81dSJan Kara 185509930042SJan Kara if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) { 18564e7ea81dSJan Kara /* Found extent to map? */ 18574e7ea81dSJan Kara if (mpd->map.m_len) 18585f1132b2SJan Kara return 0; 185909930042SJan Kara /* Everything mapped so far and we hit EOF */ 18605f1132b2SJan Kara break; 18614e7ea81dSJan Kara } 18624e7ea81dSJan Kara } while (lblk++, (bh = bh->b_this_page) != head); 18635f1132b2SJan Kara /* So far everything mapped? Submit the page for IO. */ 18645f1132b2SJan Kara if (mpd->map.m_len == 0) { 18655f1132b2SJan Kara err = mpage_submit_page(mpd, head->b_page); 18665f1132b2SJan Kara if (err < 0) 18674e7ea81dSJan Kara return err; 18684e7ea81dSJan Kara } 18695f1132b2SJan Kara return lblk < blocks; 18705f1132b2SJan Kara } 18714e7ea81dSJan Kara 18724e7ea81dSJan Kara /* 18734e7ea81dSJan Kara * mpage_map_buffers - update buffers corresponding to changed extent and 18744e7ea81dSJan Kara * submit fully mapped pages for IO 18754e7ea81dSJan Kara * 18764e7ea81dSJan Kara * @mpd - description of extent to map, on return next extent to map 18774e7ea81dSJan Kara * 18784e7ea81dSJan Kara * Scan buffers corresponding to changed extent (we expect corresponding pages 18794e7ea81dSJan Kara * to be already locked) and update buffer state according to new extent state. 18804e7ea81dSJan Kara * We map delalloc buffers to their physical location, clear unwritten bits, 1881556615dcSLukas Czerner * and mark buffers as uninit when we perform writes to unwritten extents 18824e7ea81dSJan Kara * and do extent conversion after IO is finished. If the last page is not fully 18834e7ea81dSJan Kara * mapped, we update @map to the next extent in the last page that needs 18844e7ea81dSJan Kara * mapping. Otherwise we submit the page for IO. 18854e7ea81dSJan Kara */ 18864e7ea81dSJan Kara static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd) 18874e7ea81dSJan Kara { 18884e7ea81dSJan Kara struct pagevec pvec; 18894e7ea81dSJan Kara int nr_pages, i; 18904e7ea81dSJan Kara struct inode *inode = mpd->inode; 18914e7ea81dSJan Kara struct buffer_head *head, *bh; 18924e7ea81dSJan Kara int bpp_bits = PAGE_CACHE_SHIFT - inode->i_blkbits; 18934e7ea81dSJan Kara pgoff_t start, end; 18944e7ea81dSJan Kara ext4_lblk_t lblk; 18954e7ea81dSJan Kara sector_t pblock; 18964e7ea81dSJan Kara int err; 18974e7ea81dSJan Kara 18984e7ea81dSJan Kara start = mpd->map.m_lblk >> bpp_bits; 18994e7ea81dSJan Kara end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits; 19004e7ea81dSJan Kara lblk = start << bpp_bits; 19014e7ea81dSJan Kara pblock = mpd->map.m_pblk; 19024e7ea81dSJan Kara 19034e7ea81dSJan Kara pagevec_init(&pvec, 0); 19044e7ea81dSJan Kara while (start <= end) { 19054e7ea81dSJan Kara nr_pages = pagevec_lookup(&pvec, inode->i_mapping, start, 19064e7ea81dSJan Kara PAGEVEC_SIZE); 19074e7ea81dSJan Kara if (nr_pages == 0) 19084e7ea81dSJan Kara break; 19094e7ea81dSJan Kara for (i = 0; i < nr_pages; i++) { 19104e7ea81dSJan Kara struct page *page = pvec.pages[i]; 19114e7ea81dSJan Kara 19124e7ea81dSJan Kara if (page->index > end) 19134e7ea81dSJan Kara break; 19144e7ea81dSJan Kara /* Up to 'end' pages must be contiguous */ 19154e7ea81dSJan Kara BUG_ON(page->index != start); 19164e7ea81dSJan Kara bh = head = page_buffers(page); 19174e7ea81dSJan Kara do { 19184e7ea81dSJan Kara if (lblk < mpd->map.m_lblk) 19194e7ea81dSJan Kara continue; 19204e7ea81dSJan Kara if (lblk >= mpd->map.m_lblk + mpd->map.m_len) { 19214e7ea81dSJan Kara /* 19224e7ea81dSJan Kara * Buffer after end of mapped extent. 19234e7ea81dSJan Kara * Find next buffer in the page to map. 19244e7ea81dSJan Kara */ 19254e7ea81dSJan Kara mpd->map.m_len = 0; 19264e7ea81dSJan Kara mpd->map.m_flags = 0; 19275f1132b2SJan Kara /* 19285f1132b2SJan Kara * FIXME: If dioread_nolock supports 19295f1132b2SJan Kara * blocksize < pagesize, we need to make 19305f1132b2SJan Kara * sure we add size mapped so far to 19315f1132b2SJan Kara * io_end->size as the following call 19325f1132b2SJan Kara * can submit the page for IO. 19335f1132b2SJan Kara */ 19345f1132b2SJan Kara err = mpage_process_page_bufs(mpd, head, 19355f1132b2SJan Kara bh, lblk); 19364e7ea81dSJan Kara pagevec_release(&pvec); 19375f1132b2SJan Kara if (err > 0) 19385f1132b2SJan Kara err = 0; 19395f1132b2SJan Kara return err; 19404e7ea81dSJan Kara } 19414e7ea81dSJan Kara if (buffer_delay(bh)) { 19424e7ea81dSJan Kara clear_buffer_delay(bh); 19434e7ea81dSJan Kara bh->b_blocknr = pblock++; 19444e7ea81dSJan Kara } 19454e7ea81dSJan Kara clear_buffer_unwritten(bh); 19465f1132b2SJan Kara } while (lblk++, (bh = bh->b_this_page) != head); 19474e7ea81dSJan Kara 19484e7ea81dSJan Kara /* 19494e7ea81dSJan Kara * FIXME: This is going to break if dioread_nolock 19504e7ea81dSJan Kara * supports blocksize < pagesize as we will try to 19514e7ea81dSJan Kara * convert potentially unmapped parts of inode. 19524e7ea81dSJan Kara */ 19534e7ea81dSJan Kara mpd->io_submit.io_end->size += PAGE_CACHE_SIZE; 19544e7ea81dSJan Kara /* Page fully mapped - let IO run! */ 19554e7ea81dSJan Kara err = mpage_submit_page(mpd, page); 19564e7ea81dSJan Kara if (err < 0) { 19574e7ea81dSJan Kara pagevec_release(&pvec); 19584e7ea81dSJan Kara return err; 19594e7ea81dSJan Kara } 19604e7ea81dSJan Kara start++; 19614e7ea81dSJan Kara } 19624e7ea81dSJan Kara pagevec_release(&pvec); 19634e7ea81dSJan Kara } 19644e7ea81dSJan Kara /* Extent fully mapped and matches with page boundary. We are done. */ 19654e7ea81dSJan Kara mpd->map.m_len = 0; 19664e7ea81dSJan Kara mpd->map.m_flags = 0; 19674e7ea81dSJan Kara return 0; 19684e7ea81dSJan Kara } 19694e7ea81dSJan Kara 19704e7ea81dSJan Kara static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd) 19714e7ea81dSJan Kara { 19724e7ea81dSJan Kara struct inode *inode = mpd->inode; 19734e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 19744e7ea81dSJan Kara int get_blocks_flags; 1975090f32eeSLukas Czerner int err, dioread_nolock; 19764e7ea81dSJan Kara 19774e7ea81dSJan Kara trace_ext4_da_write_pages_extent(inode, map); 19784e7ea81dSJan Kara /* 19794e7ea81dSJan Kara * Call ext4_map_blocks() to allocate any delayed allocation blocks, or 1980556615dcSLukas Czerner * to convert an unwritten extent to be initialized (in the case 19814e7ea81dSJan Kara * where we have written into one or more preallocated blocks). It is 19824e7ea81dSJan Kara * possible that we're going to need more metadata blocks than 19834e7ea81dSJan Kara * previously reserved. However we must not fail because we're in 19844e7ea81dSJan Kara * writeback and there is nothing we can do about it so it might result 19854e7ea81dSJan Kara * in data loss. So use reserved blocks to allocate metadata if 19864e7ea81dSJan Kara * possible. 19874e7ea81dSJan Kara * 1988754cfed6STheodore Ts'o * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if 1989754cfed6STheodore Ts'o * the blocks in question are delalloc blocks. This indicates 1990754cfed6STheodore Ts'o * that the blocks and quotas has already been checked when 1991754cfed6STheodore Ts'o * the data was copied into the page cache. 19924e7ea81dSJan Kara */ 19934e7ea81dSJan Kara get_blocks_flags = EXT4_GET_BLOCKS_CREATE | 19944e7ea81dSJan Kara EXT4_GET_BLOCKS_METADATA_NOFAIL; 1995090f32eeSLukas Czerner dioread_nolock = ext4_should_dioread_nolock(inode); 1996090f32eeSLukas Czerner if (dioread_nolock) 19974e7ea81dSJan Kara get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT; 19984e7ea81dSJan Kara if (map->m_flags & (1 << BH_Delay)) 19994e7ea81dSJan Kara get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE; 20004e7ea81dSJan Kara 20014e7ea81dSJan Kara err = ext4_map_blocks(handle, inode, map, get_blocks_flags); 20024e7ea81dSJan Kara if (err < 0) 20034e7ea81dSJan Kara return err; 2004090f32eeSLukas Czerner if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) { 20056b523df4SJan Kara if (!mpd->io_submit.io_end->handle && 20066b523df4SJan Kara ext4_handle_valid(handle)) { 20076b523df4SJan Kara mpd->io_submit.io_end->handle = handle->h_rsv_handle; 20086b523df4SJan Kara handle->h_rsv_handle = NULL; 20096b523df4SJan Kara } 20103613d228SJan Kara ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end); 20116b523df4SJan Kara } 20124e7ea81dSJan Kara 20134e7ea81dSJan Kara BUG_ON(map->m_len == 0); 20144e7ea81dSJan Kara if (map->m_flags & EXT4_MAP_NEW) { 20154e7ea81dSJan Kara struct block_device *bdev = inode->i_sb->s_bdev; 20164e7ea81dSJan Kara int i; 20174e7ea81dSJan Kara 20184e7ea81dSJan Kara for (i = 0; i < map->m_len; i++) 20194e7ea81dSJan Kara unmap_underlying_metadata(bdev, map->m_pblk + i); 20204e7ea81dSJan Kara } 20214e7ea81dSJan Kara return 0; 20224e7ea81dSJan Kara } 20234e7ea81dSJan Kara 20244e7ea81dSJan Kara /* 20254e7ea81dSJan Kara * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length 20264e7ea81dSJan Kara * mpd->len and submit pages underlying it for IO 20274e7ea81dSJan Kara * 20284e7ea81dSJan Kara * @handle - handle for journal operations 20294e7ea81dSJan Kara * @mpd - extent to map 20307534e854SJan Kara * @give_up_on_write - we set this to true iff there is a fatal error and there 20317534e854SJan Kara * is no hope of writing the data. The caller should discard 20327534e854SJan Kara * dirty pages to avoid infinite loops. 20334e7ea81dSJan Kara * 20344e7ea81dSJan Kara * The function maps extent starting at mpd->lblk of length mpd->len. If it is 20354e7ea81dSJan Kara * delayed, blocks are allocated, if it is unwritten, we may need to convert 20364e7ea81dSJan Kara * them to initialized or split the described range from larger unwritten 20374e7ea81dSJan Kara * extent. Note that we need not map all the described range since allocation 20384e7ea81dSJan Kara * can return less blocks or the range is covered by more unwritten extents. We 20394e7ea81dSJan Kara * cannot map more because we are limited by reserved transaction credits. On 20404e7ea81dSJan Kara * the other hand we always make sure that the last touched page is fully 20414e7ea81dSJan Kara * mapped so that it can be written out (and thus forward progress is 20424e7ea81dSJan Kara * guaranteed). After mapping we submit all mapped pages for IO. 20434e7ea81dSJan Kara */ 20444e7ea81dSJan Kara static int mpage_map_and_submit_extent(handle_t *handle, 2045cb530541STheodore Ts'o struct mpage_da_data *mpd, 2046cb530541STheodore Ts'o bool *give_up_on_write) 20474e7ea81dSJan Kara { 20484e7ea81dSJan Kara struct inode *inode = mpd->inode; 20494e7ea81dSJan Kara struct ext4_map_blocks *map = &mpd->map; 20504e7ea81dSJan Kara int err; 20514e7ea81dSJan Kara loff_t disksize; 20526603120eSDmitry Monakhov int progress = 0; 20534e7ea81dSJan Kara 20544e7ea81dSJan Kara mpd->io_submit.io_end->offset = 20554e7ea81dSJan Kara ((loff_t)map->m_lblk) << inode->i_blkbits; 205627d7c4edSJan Kara do { 20574e7ea81dSJan Kara err = mpage_map_one_extent(handle, mpd); 20584e7ea81dSJan Kara if (err < 0) { 20594e7ea81dSJan Kara struct super_block *sb = inode->i_sb; 20604e7ea81dSJan Kara 2061cb530541STheodore Ts'o if (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED) 2062cb530541STheodore Ts'o goto invalidate_dirty_pages; 20634e7ea81dSJan Kara /* 2064cb530541STheodore Ts'o * Let the uper layers retry transient errors. 2065cb530541STheodore Ts'o * In the case of ENOSPC, if ext4_count_free_blocks() 2066cb530541STheodore Ts'o * is non-zero, a commit should free up blocks. 20674e7ea81dSJan Kara */ 2068cb530541STheodore Ts'o if ((err == -ENOMEM) || 20696603120eSDmitry Monakhov (err == -ENOSPC && ext4_count_free_clusters(sb))) { 20706603120eSDmitry Monakhov if (progress) 20716603120eSDmitry Monakhov goto update_disksize; 2072cb530541STheodore Ts'o return err; 20736603120eSDmitry Monakhov } 20744e7ea81dSJan Kara ext4_msg(sb, KERN_CRIT, 20754e7ea81dSJan Kara "Delayed block allocation failed for " 20764e7ea81dSJan Kara "inode %lu at logical offset %llu with" 20774e7ea81dSJan Kara " max blocks %u with error %d", 20784e7ea81dSJan Kara inode->i_ino, 20794e7ea81dSJan Kara (unsigned long long)map->m_lblk, 2080cb530541STheodore Ts'o (unsigned)map->m_len, -err); 20814e7ea81dSJan Kara ext4_msg(sb, KERN_CRIT, 20824e7ea81dSJan Kara "This should not happen!! Data will " 20834e7ea81dSJan Kara "be lost\n"); 20844e7ea81dSJan Kara if (err == -ENOSPC) 20854e7ea81dSJan Kara ext4_print_free_blocks(inode); 2086cb530541STheodore Ts'o invalidate_dirty_pages: 2087cb530541STheodore Ts'o *give_up_on_write = true; 20884e7ea81dSJan Kara return err; 20894e7ea81dSJan Kara } 20906603120eSDmitry Monakhov progress = 1; 20914e7ea81dSJan Kara /* 20924e7ea81dSJan Kara * Update buffer state, submit mapped pages, and get us new 20934e7ea81dSJan Kara * extent to map 20944e7ea81dSJan Kara */ 20954e7ea81dSJan Kara err = mpage_map_and_submit_buffers(mpd); 20964e7ea81dSJan Kara if (err < 0) 20976603120eSDmitry Monakhov goto update_disksize; 209827d7c4edSJan Kara } while (map->m_len); 20994e7ea81dSJan Kara 21006603120eSDmitry Monakhov update_disksize: 2101622cad13STheodore Ts'o /* 2102622cad13STheodore Ts'o * Update on-disk size after IO is submitted. Races with 2103622cad13STheodore Ts'o * truncate are avoided by checking i_size under i_data_sem. 2104622cad13STheodore Ts'o */ 21054e7ea81dSJan Kara disksize = ((loff_t)mpd->first_page) << PAGE_CACHE_SHIFT; 21064e7ea81dSJan Kara if (disksize > EXT4_I(inode)->i_disksize) { 21074e7ea81dSJan Kara int err2; 2108622cad13STheodore Ts'o loff_t i_size; 21094e7ea81dSJan Kara 2110622cad13STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 2111622cad13STheodore Ts'o i_size = i_size_read(inode); 2112622cad13STheodore Ts'o if (disksize > i_size) 2113622cad13STheodore Ts'o disksize = i_size; 2114622cad13STheodore Ts'o if (disksize > EXT4_I(inode)->i_disksize) 2115622cad13STheodore Ts'o EXT4_I(inode)->i_disksize = disksize; 21164e7ea81dSJan Kara err2 = ext4_mark_inode_dirty(handle, inode); 2117622cad13STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 21184e7ea81dSJan Kara if (err2) 21194e7ea81dSJan Kara ext4_error(inode->i_sb, 21204e7ea81dSJan Kara "Failed to mark inode %lu dirty", 21214e7ea81dSJan Kara inode->i_ino); 21224e7ea81dSJan Kara if (!err) 21234e7ea81dSJan Kara err = err2; 21244e7ea81dSJan Kara } 21254e7ea81dSJan Kara return err; 21264e7ea81dSJan Kara } 21274e7ea81dSJan Kara 21284e7ea81dSJan Kara /* 2129fffb2739SJan Kara * Calculate the total number of credits to reserve for one writepages 213020970ba6STheodore Ts'o * iteration. This is called from ext4_writepages(). We map an extent of 2131fffb2739SJan Kara * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping 2132fffb2739SJan Kara * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN + 2133fffb2739SJan Kara * bpp - 1 blocks in bpp different extents. 2134525f4ed8SMingming Cao */ 2135fffb2739SJan Kara static int ext4_da_writepages_trans_blocks(struct inode *inode) 2136fffb2739SJan Kara { 2137fffb2739SJan Kara int bpp = ext4_journal_blocks_per_page(inode); 2138525f4ed8SMingming Cao 2139fffb2739SJan Kara return ext4_meta_trans_blocks(inode, 2140fffb2739SJan Kara MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp); 2141525f4ed8SMingming Cao } 214261628a3fSMingming Cao 21438e48dcfbSTheodore Ts'o /* 21444e7ea81dSJan Kara * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages 21454e7ea81dSJan Kara * and underlying extent to map 21464e7ea81dSJan Kara * 21474e7ea81dSJan Kara * @mpd - where to look for pages 21484e7ea81dSJan Kara * 21494e7ea81dSJan Kara * Walk dirty pages in the mapping. If they are fully mapped, submit them for 21504e7ea81dSJan Kara * IO immediately. When we find a page which isn't mapped we start accumulating 21514e7ea81dSJan Kara * extent of buffers underlying these pages that needs mapping (formed by 21524e7ea81dSJan Kara * either delayed or unwritten buffers). We also lock the pages containing 21534e7ea81dSJan Kara * these buffers. The extent found is returned in @mpd structure (starting at 21544e7ea81dSJan Kara * mpd->lblk with length mpd->len blocks). 21554e7ea81dSJan Kara * 21564e7ea81dSJan Kara * Note that this function can attach bios to one io_end structure which are 21574e7ea81dSJan Kara * neither logically nor physically contiguous. Although it may seem as an 21584e7ea81dSJan Kara * unnecessary complication, it is actually inevitable in blocksize < pagesize 21594e7ea81dSJan Kara * case as we need to track IO to all buffers underlying a page in one io_end. 21608e48dcfbSTheodore Ts'o */ 21614e7ea81dSJan Kara static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd) 21628e48dcfbSTheodore Ts'o { 21634e7ea81dSJan Kara struct address_space *mapping = mpd->inode->i_mapping; 21648e48dcfbSTheodore Ts'o struct pagevec pvec; 21654f01b02cSTheodore Ts'o unsigned int nr_pages; 2166aeac589aSMing Lei long left = mpd->wbc->nr_to_write; 21674e7ea81dSJan Kara pgoff_t index = mpd->first_page; 21684e7ea81dSJan Kara pgoff_t end = mpd->last_page; 21694e7ea81dSJan Kara int tag; 21704e7ea81dSJan Kara int i, err = 0; 21714e7ea81dSJan Kara int blkbits = mpd->inode->i_blkbits; 21724e7ea81dSJan Kara ext4_lblk_t lblk; 21734e7ea81dSJan Kara struct buffer_head *head; 21748e48dcfbSTheodore Ts'o 21754e7ea81dSJan Kara if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages) 21765b41d924SEric Sandeen tag = PAGECACHE_TAG_TOWRITE; 21775b41d924SEric Sandeen else 21785b41d924SEric Sandeen tag = PAGECACHE_TAG_DIRTY; 21795b41d924SEric Sandeen 21804e7ea81dSJan Kara pagevec_init(&pvec, 0); 21814e7ea81dSJan Kara mpd->map.m_len = 0; 21824e7ea81dSJan Kara mpd->next_page = index; 21834f01b02cSTheodore Ts'o while (index <= end) { 21845b41d924SEric Sandeen nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag, 21858e48dcfbSTheodore Ts'o min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1); 21868e48dcfbSTheodore Ts'o if (nr_pages == 0) 21874e7ea81dSJan Kara goto out; 21888e48dcfbSTheodore Ts'o 21898e48dcfbSTheodore Ts'o for (i = 0; i < nr_pages; i++) { 21908e48dcfbSTheodore Ts'o struct page *page = pvec.pages[i]; 21918e48dcfbSTheodore Ts'o 21928e48dcfbSTheodore Ts'o /* 21938e48dcfbSTheodore Ts'o * At this point, the page may be truncated or 21948e48dcfbSTheodore Ts'o * invalidated (changing page->mapping to NULL), or 21958e48dcfbSTheodore Ts'o * even swizzled back from swapper_space to tmpfs file 21968e48dcfbSTheodore Ts'o * mapping. However, page->index will not change 21978e48dcfbSTheodore Ts'o * because we have a reference on the page. 21988e48dcfbSTheodore Ts'o */ 21994f01b02cSTheodore Ts'o if (page->index > end) 22004f01b02cSTheodore Ts'o goto out; 22018e48dcfbSTheodore Ts'o 2202aeac589aSMing Lei /* 2203aeac589aSMing Lei * Accumulated enough dirty pages? This doesn't apply 2204aeac589aSMing Lei * to WB_SYNC_ALL mode. For integrity sync we have to 2205aeac589aSMing Lei * keep going because someone may be concurrently 2206aeac589aSMing Lei * dirtying pages, and we might have synced a lot of 2207aeac589aSMing Lei * newly appeared dirty pages, but have not synced all 2208aeac589aSMing Lei * of the old dirty pages. 2209aeac589aSMing Lei */ 2210aeac589aSMing Lei if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0) 2211aeac589aSMing Lei goto out; 2212aeac589aSMing Lei 22134e7ea81dSJan Kara /* If we can't merge this page, we are done. */ 22144e7ea81dSJan Kara if (mpd->map.m_len > 0 && mpd->next_page != page->index) 22154e7ea81dSJan Kara goto out; 221678aaced3STheodore Ts'o 22178e48dcfbSTheodore Ts'o lock_page(page); 22188e48dcfbSTheodore Ts'o /* 22194e7ea81dSJan Kara * If the page is no longer dirty, or its mapping no 22204e7ea81dSJan Kara * longer corresponds to inode we are writing (which 22214e7ea81dSJan Kara * means it has been truncated or invalidated), or the 22224e7ea81dSJan Kara * page is already under writeback and we are not doing 22234e7ea81dSJan Kara * a data integrity writeback, skip the page 22248e48dcfbSTheodore Ts'o */ 22254f01b02cSTheodore Ts'o if (!PageDirty(page) || 22264f01b02cSTheodore Ts'o (PageWriteback(page) && 22274e7ea81dSJan Kara (mpd->wbc->sync_mode == WB_SYNC_NONE)) || 22284f01b02cSTheodore Ts'o unlikely(page->mapping != mapping)) { 22298e48dcfbSTheodore Ts'o unlock_page(page); 22308e48dcfbSTheodore Ts'o continue; 22318e48dcfbSTheodore Ts'o } 22328e48dcfbSTheodore Ts'o 22338e48dcfbSTheodore Ts'o wait_on_page_writeback(page); 22348e48dcfbSTheodore Ts'o BUG_ON(PageWriteback(page)); 22358e48dcfbSTheodore Ts'o 22364e7ea81dSJan Kara if (mpd->map.m_len == 0) 22378eb9e5ceSTheodore Ts'o mpd->first_page = page->index; 22388eb9e5ceSTheodore Ts'o mpd->next_page = page->index + 1; 2239f8bec370SJan Kara /* Add all dirty buffers to mpd */ 22404e7ea81dSJan Kara lblk = ((ext4_lblk_t)page->index) << 22414e7ea81dSJan Kara (PAGE_CACHE_SHIFT - blkbits); 22428eb9e5ceSTheodore Ts'o head = page_buffers(page); 22435f1132b2SJan Kara err = mpage_process_page_bufs(mpd, head, head, lblk); 22445f1132b2SJan Kara if (err <= 0) 22454e7ea81dSJan Kara goto out; 22465f1132b2SJan Kara err = 0; 2247aeac589aSMing Lei left--; 22488e48dcfbSTheodore Ts'o } 22498e48dcfbSTheodore Ts'o pagevec_release(&pvec); 22508e48dcfbSTheodore Ts'o cond_resched(); 22518e48dcfbSTheodore Ts'o } 22524f01b02cSTheodore Ts'o return 0; 22538eb9e5ceSTheodore Ts'o out: 22548eb9e5ceSTheodore Ts'o pagevec_release(&pvec); 22554e7ea81dSJan Kara return err; 22568e48dcfbSTheodore Ts'o } 22578e48dcfbSTheodore Ts'o 225820970ba6STheodore Ts'o static int __writepage(struct page *page, struct writeback_control *wbc, 225920970ba6STheodore Ts'o void *data) 226020970ba6STheodore Ts'o { 226120970ba6STheodore Ts'o struct address_space *mapping = data; 226220970ba6STheodore Ts'o int ret = ext4_writepage(page, wbc); 226320970ba6STheodore Ts'o mapping_set_error(mapping, ret); 226420970ba6STheodore Ts'o return ret; 226520970ba6STheodore Ts'o } 226620970ba6STheodore Ts'o 226720970ba6STheodore Ts'o static int ext4_writepages(struct address_space *mapping, 226864769240SAlex Tomas struct writeback_control *wbc) 226964769240SAlex Tomas { 22704e7ea81dSJan Kara pgoff_t writeback_index = 0; 22714e7ea81dSJan Kara long nr_to_write = wbc->nr_to_write; 227222208dedSAneesh Kumar K.V int range_whole = 0; 22734e7ea81dSJan Kara int cycled = 1; 227461628a3fSMingming Cao handle_t *handle = NULL; 2275df22291fSAneesh Kumar K.V struct mpage_da_data mpd; 22765e745b04SAneesh Kumar K.V struct inode *inode = mapping->host; 22776b523df4SJan Kara int needed_blocks, rsv_blocks = 0, ret = 0; 22785e745b04SAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb); 22794e7ea81dSJan Kara bool done; 22801bce63d1SShaohua Li struct blk_plug plug; 2281cb530541STheodore Ts'o bool give_up_on_write = false; 228261628a3fSMingming Cao 228320970ba6STheodore Ts'o trace_ext4_writepages(inode, wbc); 2284ba80b101STheodore Ts'o 228561628a3fSMingming Cao /* 228661628a3fSMingming Cao * No pages to write? This is mainly a kludge to avoid starting 228761628a3fSMingming Cao * a transaction for special inodes like journal inode on last iput() 228861628a3fSMingming Cao * because that could violate lock ordering on umount 228961628a3fSMingming Cao */ 2290a1d6cc56SAneesh Kumar K.V if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) 2291bbf023c7SMing Lei goto out_writepages; 22922a21e37eSTheodore Ts'o 229320970ba6STheodore Ts'o if (ext4_should_journal_data(inode)) { 229420970ba6STheodore Ts'o struct blk_plug plug; 229520970ba6STheodore Ts'o 229620970ba6STheodore Ts'o blk_start_plug(&plug); 229720970ba6STheodore Ts'o ret = write_cache_pages(mapping, wbc, __writepage, mapping); 229820970ba6STheodore Ts'o blk_finish_plug(&plug); 2299bbf023c7SMing Lei goto out_writepages; 230020970ba6STheodore Ts'o } 230120970ba6STheodore Ts'o 23022a21e37eSTheodore Ts'o /* 23032a21e37eSTheodore Ts'o * If the filesystem has aborted, it is read-only, so return 23042a21e37eSTheodore Ts'o * right away instead of dumping stack traces later on that 23052a21e37eSTheodore Ts'o * will obscure the real source of the problem. We test 23064ab2f15bSTheodore Ts'o * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because 23072a21e37eSTheodore Ts'o * the latter could be true if the filesystem is mounted 230820970ba6STheodore Ts'o * read-only, and in that case, ext4_writepages should 23092a21e37eSTheodore Ts'o * *never* be called, so if that ever happens, we would want 23102a21e37eSTheodore Ts'o * the stack trace. 23112a21e37eSTheodore Ts'o */ 2312bbf023c7SMing Lei if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) { 2313bbf023c7SMing Lei ret = -EROFS; 2314bbf023c7SMing Lei goto out_writepages; 2315bbf023c7SMing Lei } 23162a21e37eSTheodore Ts'o 23176b523df4SJan Kara if (ext4_should_dioread_nolock(inode)) { 23186b523df4SJan Kara /* 23196b523df4SJan Kara * We may need to convert up to one extent per block in 23206b523df4SJan Kara * the page and we may dirty the inode. 23216b523df4SJan Kara */ 23226b523df4SJan Kara rsv_blocks = 1 + (PAGE_CACHE_SIZE >> inode->i_blkbits); 23236b523df4SJan Kara } 23246b523df4SJan Kara 23254e7ea81dSJan Kara /* 23264e7ea81dSJan Kara * If we have inline data and arrive here, it means that 23274e7ea81dSJan Kara * we will soon create the block for the 1st page, so 23284e7ea81dSJan Kara * we'd better clear the inline data here. 23294e7ea81dSJan Kara */ 23304e7ea81dSJan Kara if (ext4_has_inline_data(inode)) { 23314e7ea81dSJan Kara /* Just inode will be modified... */ 23324e7ea81dSJan Kara handle = ext4_journal_start(inode, EXT4_HT_INODE, 1); 23334e7ea81dSJan Kara if (IS_ERR(handle)) { 23344e7ea81dSJan Kara ret = PTR_ERR(handle); 23354e7ea81dSJan Kara goto out_writepages; 23364e7ea81dSJan Kara } 23374e7ea81dSJan Kara BUG_ON(ext4_test_inode_state(inode, 23384e7ea81dSJan Kara EXT4_STATE_MAY_INLINE_DATA)); 23394e7ea81dSJan Kara ext4_destroy_inline_data(handle, inode); 23404e7ea81dSJan Kara ext4_journal_stop(handle); 23414e7ea81dSJan Kara } 23424e7ea81dSJan Kara 234322208dedSAneesh Kumar K.V if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX) 234422208dedSAneesh Kumar K.V range_whole = 1; 234561628a3fSMingming Cao 23462acf2c26SAneesh Kumar K.V if (wbc->range_cyclic) { 23474e7ea81dSJan Kara writeback_index = mapping->writeback_index; 23484e7ea81dSJan Kara if (writeback_index) 23492acf2c26SAneesh Kumar K.V cycled = 0; 23504e7ea81dSJan Kara mpd.first_page = writeback_index; 23514e7ea81dSJan Kara mpd.last_page = -1; 23525b41d924SEric Sandeen } else { 23534e7ea81dSJan Kara mpd.first_page = wbc->range_start >> PAGE_CACHE_SHIFT; 23544e7ea81dSJan Kara mpd.last_page = wbc->range_end >> PAGE_CACHE_SHIFT; 23555b41d924SEric Sandeen } 2356a1d6cc56SAneesh Kumar K.V 23574e7ea81dSJan Kara mpd.inode = inode; 23584e7ea81dSJan Kara mpd.wbc = wbc; 23594e7ea81dSJan Kara ext4_io_submit_init(&mpd.io_submit, wbc); 23602acf2c26SAneesh Kumar K.V retry: 23616e6938b6SWu Fengguang if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages) 23624e7ea81dSJan Kara tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page); 23634e7ea81dSJan Kara done = false; 23641bce63d1SShaohua Li blk_start_plug(&plug); 23654e7ea81dSJan Kara while (!done && mpd.first_page <= mpd.last_page) { 23664e7ea81dSJan Kara /* For each extent of pages we use new io_end */ 23674e7ea81dSJan Kara mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL); 23684e7ea81dSJan Kara if (!mpd.io_submit.io_end) { 23694e7ea81dSJan Kara ret = -ENOMEM; 23704e7ea81dSJan Kara break; 23714e7ea81dSJan Kara } 2372a1d6cc56SAneesh Kumar K.V 2373a1d6cc56SAneesh Kumar K.V /* 23744e7ea81dSJan Kara * We have two constraints: We find one extent to map and we 23754e7ea81dSJan Kara * must always write out whole page (makes a difference when 23764e7ea81dSJan Kara * blocksize < pagesize) so that we don't block on IO when we 23774e7ea81dSJan Kara * try to write out the rest of the page. Journalled mode is 23784e7ea81dSJan Kara * not supported by delalloc. 2379a1d6cc56SAneesh Kumar K.V */ 2380a1d6cc56SAneesh Kumar K.V BUG_ON(ext4_should_journal_data(inode)); 2381525f4ed8SMingming Cao needed_blocks = ext4_da_writepages_trans_blocks(inode); 2382a1d6cc56SAneesh Kumar K.V 238361628a3fSMingming Cao /* start a new transaction */ 23846b523df4SJan Kara handle = ext4_journal_start_with_reserve(inode, 23856b523df4SJan Kara EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks); 238661628a3fSMingming Cao if (IS_ERR(handle)) { 238761628a3fSMingming Cao ret = PTR_ERR(handle); 23881693918eSTheodore Ts'o ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: " 2389fbe845ddSCurt Wohlgemuth "%ld pages, ino %lu; err %d", __func__, 2390a1d6cc56SAneesh Kumar K.V wbc->nr_to_write, inode->i_ino, ret); 23914e7ea81dSJan Kara /* Release allocated io_end */ 23924e7ea81dSJan Kara ext4_put_io_end(mpd.io_submit.io_end); 23934e7ea81dSJan Kara break; 239461628a3fSMingming Cao } 2395f63e6005STheodore Ts'o 23964e7ea81dSJan Kara trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc); 23974e7ea81dSJan Kara ret = mpage_prepare_extent_to_map(&mpd); 23984e7ea81dSJan Kara if (!ret) { 23994e7ea81dSJan Kara if (mpd.map.m_len) 2400cb530541STheodore Ts'o ret = mpage_map_and_submit_extent(handle, &mpd, 2401cb530541STheodore Ts'o &give_up_on_write); 24024e7ea81dSJan Kara else { 2403f63e6005STheodore Ts'o /* 24044e7ea81dSJan Kara * We scanned the whole range (or exhausted 24054e7ea81dSJan Kara * nr_to_write), submitted what was mapped and 24064e7ea81dSJan Kara * didn't find anything needing mapping. We are 24074e7ea81dSJan Kara * done. 2408f63e6005STheodore Ts'o */ 24094e7ea81dSJan Kara done = true; 2410f63e6005STheodore Ts'o } 24114e7ea81dSJan Kara } 241261628a3fSMingming Cao ext4_journal_stop(handle); 24134e7ea81dSJan Kara /* Submit prepared bio */ 24144e7ea81dSJan Kara ext4_io_submit(&mpd.io_submit); 24154e7ea81dSJan Kara /* Unlock pages we didn't use */ 2416cb530541STheodore Ts'o mpage_release_unused_pages(&mpd, give_up_on_write); 24174e7ea81dSJan Kara /* Drop our io_end reference we got from init */ 24184e7ea81dSJan Kara ext4_put_io_end(mpd.io_submit.io_end); 2419df22291fSAneesh Kumar K.V 24204e7ea81dSJan Kara if (ret == -ENOSPC && sbi->s_journal) { 24214e7ea81dSJan Kara /* 24224e7ea81dSJan Kara * Commit the transaction which would 242322208dedSAneesh Kumar K.V * free blocks released in the transaction 242422208dedSAneesh Kumar K.V * and try again 242522208dedSAneesh Kumar K.V */ 2426df22291fSAneesh Kumar K.V jbd2_journal_force_commit_nested(sbi->s_journal); 242722208dedSAneesh Kumar K.V ret = 0; 24284e7ea81dSJan Kara continue; 24294e7ea81dSJan Kara } 24304e7ea81dSJan Kara /* Fatal error - ENOMEM, EIO... */ 24314e7ea81dSJan Kara if (ret) 243261628a3fSMingming Cao break; 243361628a3fSMingming Cao } 24341bce63d1SShaohua Li blk_finish_plug(&plug); 24359c12a831SJan Kara if (!ret && !cycled && wbc->nr_to_write > 0) { 24362acf2c26SAneesh Kumar K.V cycled = 1; 24374e7ea81dSJan Kara mpd.last_page = writeback_index - 1; 24384e7ea81dSJan Kara mpd.first_page = 0; 24392acf2c26SAneesh Kumar K.V goto retry; 24402acf2c26SAneesh Kumar K.V } 244161628a3fSMingming Cao 244222208dedSAneesh Kumar K.V /* Update index */ 244322208dedSAneesh Kumar K.V if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0)) 244422208dedSAneesh Kumar K.V /* 24454e7ea81dSJan Kara * Set the writeback_index so that range_cyclic 244622208dedSAneesh Kumar K.V * mode will write it back later 244722208dedSAneesh Kumar K.V */ 24484e7ea81dSJan Kara mapping->writeback_index = mpd.first_page; 2449a1d6cc56SAneesh Kumar K.V 245061628a3fSMingming Cao out_writepages: 245120970ba6STheodore Ts'o trace_ext4_writepages_result(inode, wbc, ret, 24524e7ea81dSJan Kara nr_to_write - wbc->nr_to_write); 245361628a3fSMingming Cao return ret; 245464769240SAlex Tomas } 245564769240SAlex Tomas 245679f0be8dSAneesh Kumar K.V static int ext4_nonda_switch(struct super_block *sb) 245779f0be8dSAneesh Kumar K.V { 24585c1ff336SEric Whitney s64 free_clusters, dirty_clusters; 245979f0be8dSAneesh Kumar K.V struct ext4_sb_info *sbi = EXT4_SB(sb); 246079f0be8dSAneesh Kumar K.V 246179f0be8dSAneesh Kumar K.V /* 246279f0be8dSAneesh Kumar K.V * switch to non delalloc mode if we are running low 246379f0be8dSAneesh Kumar K.V * on free block. The free block accounting via percpu 2464179f7ebfSEric Dumazet * counters can get slightly wrong with percpu_counter_batch getting 246579f0be8dSAneesh Kumar K.V * accumulated on each CPU without updating global counters 246679f0be8dSAneesh Kumar K.V * Delalloc need an accurate free block accounting. So switch 246779f0be8dSAneesh Kumar K.V * to non delalloc when we are near to error range. 246879f0be8dSAneesh Kumar K.V */ 24695c1ff336SEric Whitney free_clusters = 24705c1ff336SEric Whitney percpu_counter_read_positive(&sbi->s_freeclusters_counter); 24715c1ff336SEric Whitney dirty_clusters = 24725c1ff336SEric Whitney percpu_counter_read_positive(&sbi->s_dirtyclusters_counter); 247300d4e736STheodore Ts'o /* 247400d4e736STheodore Ts'o * Start pushing delalloc when 1/2 of free blocks are dirty. 247500d4e736STheodore Ts'o */ 24765c1ff336SEric Whitney if (dirty_clusters && (free_clusters < 2 * dirty_clusters)) 247710ee27a0SMiao Xie try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE); 247800d4e736STheodore Ts'o 24795c1ff336SEric Whitney if (2 * free_clusters < 3 * dirty_clusters || 24805c1ff336SEric Whitney free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) { 248179f0be8dSAneesh Kumar K.V /* 2482c8afb446SEric Sandeen * free block count is less than 150% of dirty blocks 2483c8afb446SEric Sandeen * or free blocks is less than watermark 248479f0be8dSAneesh Kumar K.V */ 248579f0be8dSAneesh Kumar K.V return 1; 248679f0be8dSAneesh Kumar K.V } 248779f0be8dSAneesh Kumar K.V return 0; 248879f0be8dSAneesh Kumar K.V } 248979f0be8dSAneesh Kumar K.V 24900ff8947fSEric Sandeen /* We always reserve for an inode update; the superblock could be there too */ 24910ff8947fSEric Sandeen static int ext4_da_write_credits(struct inode *inode, loff_t pos, unsigned len) 24920ff8947fSEric Sandeen { 24930ff8947fSEric Sandeen if (likely(EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, 24940ff8947fSEric Sandeen EXT4_FEATURE_RO_COMPAT_LARGE_FILE))) 24950ff8947fSEric Sandeen return 1; 24960ff8947fSEric Sandeen 24970ff8947fSEric Sandeen if (pos + len <= 0x7fffffffULL) 24980ff8947fSEric Sandeen return 1; 24990ff8947fSEric Sandeen 25000ff8947fSEric Sandeen /* We might need to update the superblock to set LARGE_FILE */ 25010ff8947fSEric Sandeen return 2; 25020ff8947fSEric Sandeen } 25030ff8947fSEric Sandeen 250464769240SAlex Tomas static int ext4_da_write_begin(struct file *file, struct address_space *mapping, 250564769240SAlex Tomas loff_t pos, unsigned len, unsigned flags, 250664769240SAlex Tomas struct page **pagep, void **fsdata) 250764769240SAlex Tomas { 250872b8ab9dSEric Sandeen int ret, retries = 0; 250964769240SAlex Tomas struct page *page; 251064769240SAlex Tomas pgoff_t index; 251164769240SAlex Tomas struct inode *inode = mapping->host; 251264769240SAlex Tomas handle_t *handle; 251364769240SAlex Tomas 251464769240SAlex Tomas index = pos >> PAGE_CACHE_SHIFT; 251579f0be8dSAneesh Kumar K.V 251679f0be8dSAneesh Kumar K.V if (ext4_nonda_switch(inode->i_sb)) { 251779f0be8dSAneesh Kumar K.V *fsdata = (void *)FALL_BACK_TO_NONDELALLOC; 251879f0be8dSAneesh Kumar K.V return ext4_write_begin(file, mapping, pos, 251979f0be8dSAneesh Kumar K.V len, flags, pagep, fsdata); 252079f0be8dSAneesh Kumar K.V } 252179f0be8dSAneesh Kumar K.V *fsdata = (void *)0; 25229bffad1eSTheodore Ts'o trace_ext4_da_write_begin(inode, pos, len, flags); 25239c3569b5STao Ma 25249c3569b5STao Ma if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) { 25259c3569b5STao Ma ret = ext4_da_write_inline_data_begin(mapping, inode, 25269c3569b5STao Ma pos, len, flags, 25279c3569b5STao Ma pagep, fsdata); 25289c3569b5STao Ma if (ret < 0) 252947564bfbSTheodore Ts'o return ret; 253047564bfbSTheodore Ts'o if (ret == 1) 253147564bfbSTheodore Ts'o return 0; 25329c3569b5STao Ma } 25339c3569b5STao Ma 253447564bfbSTheodore Ts'o /* 253547564bfbSTheodore Ts'o * grab_cache_page_write_begin() can take a long time if the 253647564bfbSTheodore Ts'o * system is thrashing due to memory pressure, or if the page 253747564bfbSTheodore Ts'o * is being written back. So grab it first before we start 253847564bfbSTheodore Ts'o * the transaction handle. This also allows us to allocate 253947564bfbSTheodore Ts'o * the page (if needed) without using GFP_NOFS. 254047564bfbSTheodore Ts'o */ 254147564bfbSTheodore Ts'o retry_grab: 254247564bfbSTheodore Ts'o page = grab_cache_page_write_begin(mapping, index, flags); 254347564bfbSTheodore Ts'o if (!page) 254447564bfbSTheodore Ts'o return -ENOMEM; 254547564bfbSTheodore Ts'o unlock_page(page); 254647564bfbSTheodore Ts'o 254764769240SAlex Tomas /* 254864769240SAlex Tomas * With delayed allocation, we don't log the i_disksize update 254964769240SAlex Tomas * if there is delayed block allocation. But we still need 255064769240SAlex Tomas * to journalling the i_disksize update if writes to the end 255164769240SAlex Tomas * of file which has an already mapped buffer. 255264769240SAlex Tomas */ 255347564bfbSTheodore Ts'o retry_journal: 25540ff8947fSEric Sandeen handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 25550ff8947fSEric Sandeen ext4_da_write_credits(inode, pos, len)); 255664769240SAlex Tomas if (IS_ERR(handle)) { 255747564bfbSTheodore Ts'o page_cache_release(page); 255847564bfbSTheodore Ts'o return PTR_ERR(handle); 255964769240SAlex Tomas } 256064769240SAlex Tomas 256147564bfbSTheodore Ts'o lock_page(page); 256247564bfbSTheodore Ts'o if (page->mapping != mapping) { 256347564bfbSTheodore Ts'o /* The page got truncated from under us */ 256447564bfbSTheodore Ts'o unlock_page(page); 256547564bfbSTheodore Ts'o page_cache_release(page); 2566d5a0d4f7SEric Sandeen ext4_journal_stop(handle); 256747564bfbSTheodore Ts'o goto retry_grab; 2568d5a0d4f7SEric Sandeen } 256947564bfbSTheodore Ts'o /* In case writeback began while the page was unlocked */ 25707afe5aa5SDmitry Monakhov wait_for_stable_page(page); 257164769240SAlex Tomas 25726e1db88dSChristoph Hellwig ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep); 257364769240SAlex Tomas if (ret < 0) { 257464769240SAlex Tomas unlock_page(page); 257564769240SAlex Tomas ext4_journal_stop(handle); 2576ae4d5372SAneesh Kumar K.V /* 2577ae4d5372SAneesh Kumar K.V * block_write_begin may have instantiated a few blocks 2578ae4d5372SAneesh Kumar K.V * outside i_size. Trim these off again. Don't need 2579ae4d5372SAneesh Kumar K.V * i_size_read because we hold i_mutex. 2580ae4d5372SAneesh Kumar K.V */ 2581ae4d5372SAneesh Kumar K.V if (pos + len > inode->i_size) 2582b9a4207dSJan Kara ext4_truncate_failed_write(inode); 258347564bfbSTheodore Ts'o 258447564bfbSTheodore Ts'o if (ret == -ENOSPC && 258547564bfbSTheodore Ts'o ext4_should_retry_alloc(inode->i_sb, &retries)) 258647564bfbSTheodore Ts'o goto retry_journal; 258747564bfbSTheodore Ts'o 258847564bfbSTheodore Ts'o page_cache_release(page); 258947564bfbSTheodore Ts'o return ret; 259064769240SAlex Tomas } 259164769240SAlex Tomas 259247564bfbSTheodore Ts'o *pagep = page; 259364769240SAlex Tomas return ret; 259464769240SAlex Tomas } 259564769240SAlex Tomas 2596632eaeabSMingming Cao /* 2597632eaeabSMingming Cao * Check if we should update i_disksize 2598632eaeabSMingming Cao * when write to the end of file but not require block allocation 2599632eaeabSMingming Cao */ 2600632eaeabSMingming Cao static int ext4_da_should_update_i_disksize(struct page *page, 2601632eaeabSMingming Cao unsigned long offset) 2602632eaeabSMingming Cao { 2603632eaeabSMingming Cao struct buffer_head *bh; 2604632eaeabSMingming Cao struct inode *inode = page->mapping->host; 2605632eaeabSMingming Cao unsigned int idx; 2606632eaeabSMingming Cao int i; 2607632eaeabSMingming Cao 2608632eaeabSMingming Cao bh = page_buffers(page); 2609632eaeabSMingming Cao idx = offset >> inode->i_blkbits; 2610632eaeabSMingming Cao 2611632eaeabSMingming Cao for (i = 0; i < idx; i++) 2612632eaeabSMingming Cao bh = bh->b_this_page; 2613632eaeabSMingming Cao 261429fa89d0SAneesh Kumar K.V if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh)) 2615632eaeabSMingming Cao return 0; 2616632eaeabSMingming Cao return 1; 2617632eaeabSMingming Cao } 2618632eaeabSMingming Cao 261964769240SAlex Tomas static int ext4_da_write_end(struct file *file, 262064769240SAlex Tomas struct address_space *mapping, 262164769240SAlex Tomas loff_t pos, unsigned len, unsigned copied, 262264769240SAlex Tomas struct page *page, void *fsdata) 262364769240SAlex Tomas { 262464769240SAlex Tomas struct inode *inode = mapping->host; 262564769240SAlex Tomas int ret = 0, ret2; 262664769240SAlex Tomas handle_t *handle = ext4_journal_current_handle(); 262764769240SAlex Tomas loff_t new_i_size; 2628632eaeabSMingming Cao unsigned long start, end; 262979f0be8dSAneesh Kumar K.V int write_mode = (int)(unsigned long)fsdata; 263079f0be8dSAneesh Kumar K.V 263174d553aaSTheodore Ts'o if (write_mode == FALL_BACK_TO_NONDELALLOC) 263274d553aaSTheodore Ts'o return ext4_write_end(file, mapping, pos, 263379f0be8dSAneesh Kumar K.V len, copied, page, fsdata); 2634632eaeabSMingming Cao 26359bffad1eSTheodore Ts'o trace_ext4_da_write_end(inode, pos, len, copied); 2636632eaeabSMingming Cao start = pos & (PAGE_CACHE_SIZE - 1); 2637632eaeabSMingming Cao end = start + copied - 1; 263864769240SAlex Tomas 263964769240SAlex Tomas /* 264064769240SAlex Tomas * generic_write_end() will run mark_inode_dirty() if i_size 264164769240SAlex Tomas * changes. So let's piggyback the i_disksize mark_inode_dirty 264264769240SAlex Tomas * into that. 264364769240SAlex Tomas */ 264464769240SAlex Tomas new_i_size = pos + copied; 2645ea51d132SAndrea Arcangeli if (copied && new_i_size > EXT4_I(inode)->i_disksize) { 26469c3569b5STao Ma if (ext4_has_inline_data(inode) || 26479c3569b5STao Ma ext4_da_should_update_i_disksize(page, end)) { 2648ee124d27SDmitry Monakhov ext4_update_i_disksize(inode, new_i_size); 2649cf17fea6SAneesh Kumar K.V /* We need to mark inode dirty even if 2650cf17fea6SAneesh Kumar K.V * new_i_size is less that inode->i_size 2651cf17fea6SAneesh Kumar K.V * bu greater than i_disksize.(hint delalloc) 2652cf17fea6SAneesh Kumar K.V */ 2653cf17fea6SAneesh Kumar K.V ext4_mark_inode_dirty(handle, inode); 2654632eaeabSMingming Cao } 2655632eaeabSMingming Cao } 26569c3569b5STao Ma 26579c3569b5STao Ma if (write_mode != CONVERT_INLINE_DATA && 26589c3569b5STao Ma ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) && 26599c3569b5STao Ma ext4_has_inline_data(inode)) 26609c3569b5STao Ma ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied, 26619c3569b5STao Ma page); 26629c3569b5STao Ma else 266364769240SAlex Tomas ret2 = generic_write_end(file, mapping, pos, len, copied, 266464769240SAlex Tomas page, fsdata); 26659c3569b5STao Ma 266664769240SAlex Tomas copied = ret2; 266764769240SAlex Tomas if (ret2 < 0) 266864769240SAlex Tomas ret = ret2; 266964769240SAlex Tomas ret2 = ext4_journal_stop(handle); 267064769240SAlex Tomas if (!ret) 267164769240SAlex Tomas ret = ret2; 267264769240SAlex Tomas 267364769240SAlex Tomas return ret ? ret : copied; 267464769240SAlex Tomas } 267564769240SAlex Tomas 2676d47992f8SLukas Czerner static void ext4_da_invalidatepage(struct page *page, unsigned int offset, 2677d47992f8SLukas Czerner unsigned int length) 267864769240SAlex Tomas { 267964769240SAlex Tomas /* 268064769240SAlex Tomas * Drop reserved blocks 268164769240SAlex Tomas */ 268264769240SAlex Tomas BUG_ON(!PageLocked(page)); 268364769240SAlex Tomas if (!page_has_buffers(page)) 268464769240SAlex Tomas goto out; 268564769240SAlex Tomas 2686ca99fdd2SLukas Czerner ext4_da_page_release_reservation(page, offset, length); 268764769240SAlex Tomas 268864769240SAlex Tomas out: 2689d47992f8SLukas Czerner ext4_invalidatepage(page, offset, length); 269064769240SAlex Tomas 269164769240SAlex Tomas return; 269264769240SAlex Tomas } 269364769240SAlex Tomas 2694ccd2506bSTheodore Ts'o /* 2695ccd2506bSTheodore Ts'o * Force all delayed allocation blocks to be allocated for a given inode. 2696ccd2506bSTheodore Ts'o */ 2697ccd2506bSTheodore Ts'o int ext4_alloc_da_blocks(struct inode *inode) 2698ccd2506bSTheodore Ts'o { 2699fb40ba0dSTheodore Ts'o trace_ext4_alloc_da_blocks(inode); 2700fb40ba0dSTheodore Ts'o 270171d4f7d0STheodore Ts'o if (!EXT4_I(inode)->i_reserved_data_blocks) 2702ccd2506bSTheodore Ts'o return 0; 2703ccd2506bSTheodore Ts'o 2704ccd2506bSTheodore Ts'o /* 2705ccd2506bSTheodore Ts'o * We do something simple for now. The filemap_flush() will 2706ccd2506bSTheodore Ts'o * also start triggering a write of the data blocks, which is 2707ccd2506bSTheodore Ts'o * not strictly speaking necessary (and for users of 2708ccd2506bSTheodore Ts'o * laptop_mode, not even desirable). However, to do otherwise 2709ccd2506bSTheodore Ts'o * would require replicating code paths in: 2710ccd2506bSTheodore Ts'o * 271120970ba6STheodore Ts'o * ext4_writepages() -> 2712ccd2506bSTheodore Ts'o * write_cache_pages() ---> (via passed in callback function) 2713ccd2506bSTheodore Ts'o * __mpage_da_writepage() --> 2714ccd2506bSTheodore Ts'o * mpage_add_bh_to_extent() 2715ccd2506bSTheodore Ts'o * mpage_da_map_blocks() 2716ccd2506bSTheodore Ts'o * 2717ccd2506bSTheodore Ts'o * The problem is that write_cache_pages(), located in 2718ccd2506bSTheodore Ts'o * mm/page-writeback.c, marks pages clean in preparation for 2719ccd2506bSTheodore Ts'o * doing I/O, which is not desirable if we're not planning on 2720ccd2506bSTheodore Ts'o * doing I/O at all. 2721ccd2506bSTheodore Ts'o * 2722ccd2506bSTheodore Ts'o * We could call write_cache_pages(), and then redirty all of 2723380cf090SWu Fengguang * the pages by calling redirty_page_for_writepage() but that 2724ccd2506bSTheodore Ts'o * would be ugly in the extreme. So instead we would need to 2725ccd2506bSTheodore Ts'o * replicate parts of the code in the above functions, 272625985edcSLucas De Marchi * simplifying them because we wouldn't actually intend to 2727ccd2506bSTheodore Ts'o * write out the pages, but rather only collect contiguous 2728ccd2506bSTheodore Ts'o * logical block extents, call the multi-block allocator, and 2729ccd2506bSTheodore Ts'o * then update the buffer heads with the block allocations. 2730ccd2506bSTheodore Ts'o * 2731ccd2506bSTheodore Ts'o * For now, though, we'll cheat by calling filemap_flush(), 2732ccd2506bSTheodore Ts'o * which will map the blocks, and start the I/O, but not 2733ccd2506bSTheodore Ts'o * actually wait for the I/O to complete. 2734ccd2506bSTheodore Ts'o */ 2735ccd2506bSTheodore Ts'o return filemap_flush(inode->i_mapping); 2736ccd2506bSTheodore Ts'o } 273764769240SAlex Tomas 273864769240SAlex Tomas /* 2739ac27a0ecSDave Kleikamp * bmap() is special. It gets used by applications such as lilo and by 2740ac27a0ecSDave Kleikamp * the swapper to find the on-disk block of a specific piece of data. 2741ac27a0ecSDave Kleikamp * 2742ac27a0ecSDave Kleikamp * Naturally, this is dangerous if the block concerned is still in the 2743617ba13bSMingming Cao * journal. If somebody makes a swapfile on an ext4 data-journaling 2744ac27a0ecSDave Kleikamp * filesystem and enables swap, then they may get a nasty shock when the 2745ac27a0ecSDave Kleikamp * data getting swapped to that swapfile suddenly gets overwritten by 2746ac27a0ecSDave Kleikamp * the original zero's written out previously to the journal and 2747ac27a0ecSDave Kleikamp * awaiting writeback in the kernel's buffer cache. 2748ac27a0ecSDave Kleikamp * 2749ac27a0ecSDave Kleikamp * So, if we see any bmap calls here on a modified, data-journaled file, 2750ac27a0ecSDave Kleikamp * take extra steps to flush any blocks which might be in the cache. 2751ac27a0ecSDave Kleikamp */ 2752617ba13bSMingming Cao static sector_t ext4_bmap(struct address_space *mapping, sector_t block) 2753ac27a0ecSDave Kleikamp { 2754ac27a0ecSDave Kleikamp struct inode *inode = mapping->host; 2755ac27a0ecSDave Kleikamp journal_t *journal; 2756ac27a0ecSDave Kleikamp int err; 2757ac27a0ecSDave Kleikamp 275846c7f254STao Ma /* 275946c7f254STao Ma * We can get here for an inline file via the FIBMAP ioctl 276046c7f254STao Ma */ 276146c7f254STao Ma if (ext4_has_inline_data(inode)) 276246c7f254STao Ma return 0; 276346c7f254STao Ma 276464769240SAlex Tomas if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) && 276564769240SAlex Tomas test_opt(inode->i_sb, DELALLOC)) { 276664769240SAlex Tomas /* 276764769240SAlex Tomas * With delalloc we want to sync the file 276864769240SAlex Tomas * so that we can make sure we allocate 276964769240SAlex Tomas * blocks for file 277064769240SAlex Tomas */ 277164769240SAlex Tomas filemap_write_and_wait(mapping); 277264769240SAlex Tomas } 277364769240SAlex Tomas 277419f5fb7aSTheodore Ts'o if (EXT4_JOURNAL(inode) && 277519f5fb7aSTheodore Ts'o ext4_test_inode_state(inode, EXT4_STATE_JDATA)) { 2776ac27a0ecSDave Kleikamp /* 2777ac27a0ecSDave Kleikamp * This is a REALLY heavyweight approach, but the use of 2778ac27a0ecSDave Kleikamp * bmap on dirty files is expected to be extremely rare: 2779ac27a0ecSDave Kleikamp * only if we run lilo or swapon on a freshly made file 2780ac27a0ecSDave Kleikamp * do we expect this to happen. 2781ac27a0ecSDave Kleikamp * 2782ac27a0ecSDave Kleikamp * (bmap requires CAP_SYS_RAWIO so this does not 2783ac27a0ecSDave Kleikamp * represent an unprivileged user DOS attack --- we'd be 2784ac27a0ecSDave Kleikamp * in trouble if mortal users could trigger this path at 2785ac27a0ecSDave Kleikamp * will.) 2786ac27a0ecSDave Kleikamp * 2787617ba13bSMingming Cao * NB. EXT4_STATE_JDATA is not set on files other than 2788ac27a0ecSDave Kleikamp * regular files. If somebody wants to bmap a directory 2789ac27a0ecSDave Kleikamp * or symlink and gets confused because the buffer 2790ac27a0ecSDave Kleikamp * hasn't yet been flushed to disk, they deserve 2791ac27a0ecSDave Kleikamp * everything they get. 2792ac27a0ecSDave Kleikamp */ 2793ac27a0ecSDave Kleikamp 279419f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_JDATA); 2795617ba13bSMingming Cao journal = EXT4_JOURNAL(inode); 2796dab291afSMingming Cao jbd2_journal_lock_updates(journal); 2797dab291afSMingming Cao err = jbd2_journal_flush(journal); 2798dab291afSMingming Cao jbd2_journal_unlock_updates(journal); 2799ac27a0ecSDave Kleikamp 2800ac27a0ecSDave Kleikamp if (err) 2801ac27a0ecSDave Kleikamp return 0; 2802ac27a0ecSDave Kleikamp } 2803ac27a0ecSDave Kleikamp 2804617ba13bSMingming Cao return generic_block_bmap(mapping, block, ext4_get_block); 2805ac27a0ecSDave Kleikamp } 2806ac27a0ecSDave Kleikamp 2807617ba13bSMingming Cao static int ext4_readpage(struct file *file, struct page *page) 2808ac27a0ecSDave Kleikamp { 280946c7f254STao Ma int ret = -EAGAIN; 281046c7f254STao Ma struct inode *inode = page->mapping->host; 281146c7f254STao Ma 28120562e0baSJiaying Zhang trace_ext4_readpage(page); 281346c7f254STao Ma 281446c7f254STao Ma if (ext4_has_inline_data(inode)) 281546c7f254STao Ma ret = ext4_readpage_inline(inode, page); 281646c7f254STao Ma 281746c7f254STao Ma if (ret == -EAGAIN) 2818617ba13bSMingming Cao return mpage_readpage(page, ext4_get_block); 281946c7f254STao Ma 282046c7f254STao Ma return ret; 2821ac27a0ecSDave Kleikamp } 2822ac27a0ecSDave Kleikamp 2823ac27a0ecSDave Kleikamp static int 2824617ba13bSMingming Cao ext4_readpages(struct file *file, struct address_space *mapping, 2825ac27a0ecSDave Kleikamp struct list_head *pages, unsigned nr_pages) 2826ac27a0ecSDave Kleikamp { 282746c7f254STao Ma struct inode *inode = mapping->host; 282846c7f254STao Ma 282946c7f254STao Ma /* If the file has inline data, no need to do readpages. */ 283046c7f254STao Ma if (ext4_has_inline_data(inode)) 283146c7f254STao Ma return 0; 283246c7f254STao Ma 2833617ba13bSMingming Cao return mpage_readpages(mapping, pages, nr_pages, ext4_get_block); 2834ac27a0ecSDave Kleikamp } 2835ac27a0ecSDave Kleikamp 2836d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset, 2837d47992f8SLukas Czerner unsigned int length) 2838ac27a0ecSDave Kleikamp { 2839ca99fdd2SLukas Czerner trace_ext4_invalidatepage(page, offset, length); 28400562e0baSJiaying Zhang 28414520fb3cSJan Kara /* No journalling happens on data buffers when this function is used */ 28424520fb3cSJan Kara WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page))); 28434520fb3cSJan Kara 2844ca99fdd2SLukas Czerner block_invalidatepage(page, offset, length); 28454520fb3cSJan Kara } 28464520fb3cSJan Kara 284753e87268SJan Kara static int __ext4_journalled_invalidatepage(struct page *page, 2848ca99fdd2SLukas Czerner unsigned int offset, 2849ca99fdd2SLukas Czerner unsigned int length) 28504520fb3cSJan Kara { 28514520fb3cSJan Kara journal_t *journal = EXT4_JOURNAL(page->mapping->host); 28524520fb3cSJan Kara 2853ca99fdd2SLukas Czerner trace_ext4_journalled_invalidatepage(page, offset, length); 28544520fb3cSJan Kara 2855744692dcSJiaying Zhang /* 2856ac27a0ecSDave Kleikamp * If it's a full truncate we just forget about the pending dirtying 2857ac27a0ecSDave Kleikamp */ 2858ca99fdd2SLukas Czerner if (offset == 0 && length == PAGE_CACHE_SIZE) 2859ac27a0ecSDave Kleikamp ClearPageChecked(page); 2860ac27a0ecSDave Kleikamp 2861ca99fdd2SLukas Czerner return jbd2_journal_invalidatepage(journal, page, offset, length); 286253e87268SJan Kara } 286353e87268SJan Kara 286453e87268SJan Kara /* Wrapper for aops... */ 286553e87268SJan Kara static void ext4_journalled_invalidatepage(struct page *page, 2866d47992f8SLukas Czerner unsigned int offset, 2867d47992f8SLukas Czerner unsigned int length) 286853e87268SJan Kara { 2869ca99fdd2SLukas Czerner WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0); 2870ac27a0ecSDave Kleikamp } 2871ac27a0ecSDave Kleikamp 2872617ba13bSMingming Cao static int ext4_releasepage(struct page *page, gfp_t wait) 2873ac27a0ecSDave Kleikamp { 2874617ba13bSMingming Cao journal_t *journal = EXT4_JOURNAL(page->mapping->host); 2875ac27a0ecSDave Kleikamp 28760562e0baSJiaying Zhang trace_ext4_releasepage(page); 28770562e0baSJiaying Zhang 2878e1c36595SJan Kara /* Page has dirty journalled data -> cannot release */ 2879e1c36595SJan Kara if (PageChecked(page)) 2880ac27a0ecSDave Kleikamp return 0; 28810390131bSFrank Mayhar if (journal) 2882dab291afSMingming Cao return jbd2_journal_try_to_free_buffers(journal, page, wait); 28830390131bSFrank Mayhar else 28840390131bSFrank Mayhar return try_to_free_buffers(page); 2885ac27a0ecSDave Kleikamp } 2886ac27a0ecSDave Kleikamp 2887ac27a0ecSDave Kleikamp /* 28882ed88685STheodore Ts'o * ext4_get_block used when preparing for a DIO write or buffer write. 28892ed88685STheodore Ts'o * We allocate an uinitialized extent if blocks haven't been allocated. 28902ed88685STheodore Ts'o * The extent will be converted to initialized after the IO is complete. 28912ed88685STheodore Ts'o */ 2892f19d5870STao Ma int ext4_get_block_write(struct inode *inode, sector_t iblock, 28934c0425ffSMingming Cao struct buffer_head *bh_result, int create) 28944c0425ffSMingming Cao { 2895c7064ef1SJiaying Zhang ext4_debug("ext4_get_block_write: inode %lu, create flag %d\n", 28968d5d02e6SMingming Cao inode->i_ino, create); 28972ed88685STheodore Ts'o return _ext4_get_block(inode, iblock, bh_result, 28982ed88685STheodore Ts'o EXT4_GET_BLOCKS_IO_CREATE_EXT); 28994c0425ffSMingming Cao } 29004c0425ffSMingming Cao 2901729f52c6SZheng Liu static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock, 29028b0f165fSAnatol Pomozov struct buffer_head *bh_result, int create) 2903729f52c6SZheng Liu { 29048b0f165fSAnatol Pomozov ext4_debug("ext4_get_block_write_nolock: inode %lu, create flag %d\n", 29058b0f165fSAnatol Pomozov inode->i_ino, create); 29068b0f165fSAnatol Pomozov return _ext4_get_block(inode, iblock, bh_result, 29078b0f165fSAnatol Pomozov EXT4_GET_BLOCKS_NO_LOCK); 2908729f52c6SZheng Liu } 2909729f52c6SZheng Liu 29104c0425ffSMingming Cao static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset, 29117b7a8665SChristoph Hellwig ssize_t size, void *private) 29124c0425ffSMingming Cao { 29134c0425ffSMingming Cao ext4_io_end_t *io_end = iocb->private; 29144c0425ffSMingming Cao 291597a851edSJan Kara /* if not async direct IO just return */ 29167b7a8665SChristoph Hellwig if (!io_end) 291797a851edSJan Kara return; 29184b70df18SMingming 29198d5d02e6SMingming Cao ext_debug("ext4_end_io_dio(): io_end 0x%p " 2920ace36ad4SJoe Perches "for inode %lu, iocb 0x%p, offset %llu, size %zd\n", 29218d5d02e6SMingming Cao iocb->private, io_end->inode->i_ino, iocb, offset, 29228d5d02e6SMingming Cao size); 29238d5d02e6SMingming Cao 2924b5a7e970STheodore Ts'o iocb->private = NULL; 29254c0425ffSMingming Cao io_end->offset = offset; 29264c0425ffSMingming Cao io_end->size = size; 29277b7a8665SChristoph Hellwig ext4_put_io_end(io_end); 29284c0425ffSMingming Cao } 2929c7064ef1SJiaying Zhang 29304c0425ffSMingming Cao /* 29314c0425ffSMingming Cao * For ext4 extent files, ext4 will do direct-io write to holes, 29324c0425ffSMingming Cao * preallocated extents, and those write extend the file, no need to 29334c0425ffSMingming Cao * fall back to buffered IO. 29344c0425ffSMingming Cao * 2935556615dcSLukas Czerner * For holes, we fallocate those blocks, mark them as unwritten 293669c499d1STheodore Ts'o * If those blocks were preallocated, we mark sure they are split, but 2937556615dcSLukas Czerner * still keep the range to write as unwritten. 29384c0425ffSMingming Cao * 293969c499d1STheodore Ts'o * The unwritten extents will be converted to written when DIO is completed. 29408d5d02e6SMingming Cao * For async direct IO, since the IO may still pending when return, we 294125985edcSLucas De Marchi * set up an end_io call back function, which will do the conversion 29428d5d02e6SMingming Cao * when async direct IO completed. 29434c0425ffSMingming Cao * 29444c0425ffSMingming Cao * If the O_DIRECT write will extend the file then add this inode to the 29454c0425ffSMingming Cao * orphan list. So recovery will truncate it back to the original size 29464c0425ffSMingming Cao * if the machine crashes during the write. 29474c0425ffSMingming Cao * 29484c0425ffSMingming Cao */ 29494c0425ffSMingming Cao static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb, 295016b1f05dSAl Viro struct iov_iter *iter, loff_t offset) 29514c0425ffSMingming Cao { 29524c0425ffSMingming Cao struct file *file = iocb->ki_filp; 29534c0425ffSMingming Cao struct inode *inode = file->f_mapping->host; 29544c0425ffSMingming Cao ssize_t ret; 2955a6cbcd4aSAl Viro size_t count = iov_iter_count(iter); 2956729f52c6SZheng Liu int overwrite = 0; 29578b0f165fSAnatol Pomozov get_block_t *get_block_func = NULL; 29588b0f165fSAnatol Pomozov int dio_flags = 0; 295969c499d1STheodore Ts'o loff_t final_size = offset + count; 296097a851edSJan Kara ext4_io_end_t *io_end = NULL; 296169c499d1STheodore Ts'o 296269c499d1STheodore Ts'o /* Use the old path for reads and writes beyond i_size. */ 296369c499d1STheodore Ts'o if (rw != WRITE || final_size > inode->i_size) 296416b1f05dSAl Viro return ext4_ind_direct_IO(rw, iocb, iter, offset); 2965729f52c6SZheng Liu 29664bd809dbSZheng Liu BUG_ON(iocb->private == NULL); 29674bd809dbSZheng Liu 2968e8340395SJan Kara /* 2969e8340395SJan Kara * Make all waiters for direct IO properly wait also for extent 2970e8340395SJan Kara * conversion. This also disallows race between truncate() and 2971e8340395SJan Kara * overwrite DIO as i_dio_count needs to be incremented under i_mutex. 2972e8340395SJan Kara */ 2973e8340395SJan Kara if (rw == WRITE) 2974e8340395SJan Kara atomic_inc(&inode->i_dio_count); 2975e8340395SJan Kara 29764bd809dbSZheng Liu /* If we do a overwrite dio, i_mutex locking can be released */ 29774bd809dbSZheng Liu overwrite = *((int *)iocb->private); 29784bd809dbSZheng Liu 29794bd809dbSZheng Liu if (overwrite) { 29804bd809dbSZheng Liu down_read(&EXT4_I(inode)->i_data_sem); 29814bd809dbSZheng Liu mutex_unlock(&inode->i_mutex); 29824bd809dbSZheng Liu } 29834bd809dbSZheng Liu 29844c0425ffSMingming Cao /* 29858d5d02e6SMingming Cao * We could direct write to holes and fallocate. 29868d5d02e6SMingming Cao * 298769c499d1STheodore Ts'o * Allocated blocks to fill the hole are marked as 2988556615dcSLukas Czerner * unwritten to prevent parallel buffered read to expose 298969c499d1STheodore Ts'o * the stale data before DIO complete the data IO. 29908d5d02e6SMingming Cao * 299169c499d1STheodore Ts'o * As to previously fallocated extents, ext4 get_block will 299269c499d1STheodore Ts'o * just simply mark the buffer mapped but still keep the 2993556615dcSLukas Czerner * extents unwritten. 29944c0425ffSMingming Cao * 299569c499d1STheodore Ts'o * For non AIO case, we will convert those unwritten extents 29968d5d02e6SMingming Cao * to written after return back from blockdev_direct_IO. 29974c0425ffSMingming Cao * 299869c499d1STheodore Ts'o * For async DIO, the conversion needs to be deferred when the 299969c499d1STheodore Ts'o * IO is completed. The ext4 end_io callback function will be 300069c499d1STheodore Ts'o * called to take care of the conversion work. Here for async 300169c499d1STheodore Ts'o * case, we allocate an io_end structure to hook to the iocb. 30024c0425ffSMingming Cao */ 30038d5d02e6SMingming Cao iocb->private = NULL; 3004f45ee3a1SDmitry Monakhov ext4_inode_aio_set(inode, NULL); 30058d5d02e6SMingming Cao if (!is_sync_kiocb(iocb)) { 300697a851edSJan Kara io_end = ext4_init_io_end(inode, GFP_NOFS); 30074bd809dbSZheng Liu if (!io_end) { 30084bd809dbSZheng Liu ret = -ENOMEM; 30094bd809dbSZheng Liu goto retake_lock; 30104bd809dbSZheng Liu } 301197a851edSJan Kara /* 301297a851edSJan Kara * Grab reference for DIO. Will be dropped in ext4_end_io_dio() 301397a851edSJan Kara */ 301497a851edSJan Kara iocb->private = ext4_get_io_end(io_end); 30158d5d02e6SMingming Cao /* 301669c499d1STheodore Ts'o * we save the io structure for current async direct 301769c499d1STheodore Ts'o * IO, so that later ext4_map_blocks() could flag the 301869c499d1STheodore Ts'o * io structure whether there is a unwritten extents 301969c499d1STheodore Ts'o * needs to be converted when IO is completed. 30208d5d02e6SMingming Cao */ 3021f45ee3a1SDmitry Monakhov ext4_inode_aio_set(inode, io_end); 30228d5d02e6SMingming Cao } 30238d5d02e6SMingming Cao 30248b0f165fSAnatol Pomozov if (overwrite) { 30258b0f165fSAnatol Pomozov get_block_func = ext4_get_block_write_nolock; 30268b0f165fSAnatol Pomozov } else { 30278b0f165fSAnatol Pomozov get_block_func = ext4_get_block_write; 30288b0f165fSAnatol Pomozov dio_flags = DIO_LOCKING; 30298b0f165fSAnatol Pomozov } 3030*923ae0ffSRoss Zwisler if (IS_DAX(inode)) 3031*923ae0ffSRoss Zwisler ret = dax_do_io(rw, iocb, inode, iter, offset, get_block_func, 3032*923ae0ffSRoss Zwisler ext4_end_io_dio, dio_flags); 3033*923ae0ffSRoss Zwisler else 3034729f52c6SZheng Liu ret = __blockdev_direct_IO(rw, iocb, inode, 3035*923ae0ffSRoss Zwisler inode->i_sb->s_bdev, iter, offset, 30368b0f165fSAnatol Pomozov get_block_func, 3037*923ae0ffSRoss Zwisler ext4_end_io_dio, NULL, dio_flags); 30388b0f165fSAnatol Pomozov 30394eec708dSJan Kara /* 304097a851edSJan Kara * Put our reference to io_end. This can free the io_end structure e.g. 304197a851edSJan Kara * in sync IO case or in case of error. It can even perform extent 304297a851edSJan Kara * conversion if all bios we submitted finished before we got here. 304397a851edSJan Kara * Note that in that case iocb->private can be already set to NULL 304497a851edSJan Kara * here. 30454eec708dSJan Kara */ 304697a851edSJan Kara if (io_end) { 304797a851edSJan Kara ext4_inode_aio_set(inode, NULL); 304897a851edSJan Kara ext4_put_io_end(io_end); 304997a851edSJan Kara /* 305097a851edSJan Kara * When no IO was submitted ext4_end_io_dio() was not 305197a851edSJan Kara * called so we have to put iocb's reference. 305297a851edSJan Kara */ 305397a851edSJan Kara if (ret <= 0 && ret != -EIOCBQUEUED && iocb->private) { 305497a851edSJan Kara WARN_ON(iocb->private != io_end); 305597a851edSJan Kara WARN_ON(io_end->flag & EXT4_IO_END_UNWRITTEN); 305697a851edSJan Kara ext4_put_io_end(io_end); 30578d5d02e6SMingming Cao iocb->private = NULL; 305897a851edSJan Kara } 305997a851edSJan Kara } 306097a851edSJan Kara if (ret > 0 && !overwrite && ext4_test_inode_state(inode, 30615f524950SMingming EXT4_STATE_DIO_UNWRITTEN)) { 3062109f5565SMingming int err; 30638d5d02e6SMingming Cao /* 30648d5d02e6SMingming Cao * for non AIO case, since the IO is already 306525985edcSLucas De Marchi * completed, we could do the conversion right here 30668d5d02e6SMingming Cao */ 30676b523df4SJan Kara err = ext4_convert_unwritten_extents(NULL, inode, 30688d5d02e6SMingming Cao offset, ret); 3069109f5565SMingming if (err < 0) 3070109f5565SMingming ret = err; 307119f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN); 3072109f5565SMingming } 30734bd809dbSZheng Liu 30744bd809dbSZheng Liu retake_lock: 3075e8340395SJan Kara if (rw == WRITE) 3076e8340395SJan Kara inode_dio_done(inode); 30774bd809dbSZheng Liu /* take i_mutex locking again if we do a ovewrite dio */ 30784bd809dbSZheng Liu if (overwrite) { 30794bd809dbSZheng Liu up_read(&EXT4_I(inode)->i_data_sem); 30804bd809dbSZheng Liu mutex_lock(&inode->i_mutex); 30814bd809dbSZheng Liu } 30824bd809dbSZheng Liu 30834c0425ffSMingming Cao return ret; 30844c0425ffSMingming Cao } 30858d5d02e6SMingming Cao 30864c0425ffSMingming Cao static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb, 3087d8d3d94bSAl Viro struct iov_iter *iter, loff_t offset) 30884c0425ffSMingming Cao { 30894c0425ffSMingming Cao struct file *file = iocb->ki_filp; 30904c0425ffSMingming Cao struct inode *inode = file->f_mapping->host; 3091a6cbcd4aSAl Viro size_t count = iov_iter_count(iter); 30920562e0baSJiaying Zhang ssize_t ret; 30934c0425ffSMingming Cao 309484ebd795STheodore Ts'o /* 309584ebd795STheodore Ts'o * If we are doing data journalling we don't support O_DIRECT 309684ebd795STheodore Ts'o */ 309784ebd795STheodore Ts'o if (ext4_should_journal_data(inode)) 309884ebd795STheodore Ts'o return 0; 309984ebd795STheodore Ts'o 310046c7f254STao Ma /* Let buffer I/O handle the inline data case. */ 310146c7f254STao Ma if (ext4_has_inline_data(inode)) 310246c7f254STao Ma return 0; 310346c7f254STao Ma 3104a6cbcd4aSAl Viro trace_ext4_direct_IO_enter(inode, offset, count, rw); 310512e9b892SDmitry Monakhov if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 310616b1f05dSAl Viro ret = ext4_ext_direct_IO(rw, iocb, iter, offset); 31070562e0baSJiaying Zhang else 310816b1f05dSAl Viro ret = ext4_ind_direct_IO(rw, iocb, iter, offset); 3109a6cbcd4aSAl Viro trace_ext4_direct_IO_exit(inode, offset, count, rw, ret); 31100562e0baSJiaying Zhang return ret; 31114c0425ffSMingming Cao } 31124c0425ffSMingming Cao 3113ac27a0ecSDave Kleikamp /* 3114617ba13bSMingming Cao * Pages can be marked dirty completely asynchronously from ext4's journalling 3115ac27a0ecSDave Kleikamp * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do 3116ac27a0ecSDave Kleikamp * much here because ->set_page_dirty is called under VFS locks. The page is 3117ac27a0ecSDave Kleikamp * not necessarily locked. 3118ac27a0ecSDave Kleikamp * 3119ac27a0ecSDave Kleikamp * We cannot just dirty the page and leave attached buffers clean, because the 3120ac27a0ecSDave Kleikamp * buffers' dirty state is "definitive". We cannot just set the buffers dirty 3121ac27a0ecSDave Kleikamp * or jbddirty because all the journalling code will explode. 3122ac27a0ecSDave Kleikamp * 3123ac27a0ecSDave Kleikamp * So what we do is to mark the page "pending dirty" and next time writepage 3124ac27a0ecSDave Kleikamp * is called, propagate that into the buffers appropriately. 3125ac27a0ecSDave Kleikamp */ 3126617ba13bSMingming Cao static int ext4_journalled_set_page_dirty(struct page *page) 3127ac27a0ecSDave Kleikamp { 3128ac27a0ecSDave Kleikamp SetPageChecked(page); 3129ac27a0ecSDave Kleikamp return __set_page_dirty_nobuffers(page); 3130ac27a0ecSDave Kleikamp } 3131ac27a0ecSDave Kleikamp 313274d553aaSTheodore Ts'o static const struct address_space_operations ext4_aops = { 3133617ba13bSMingming Cao .readpage = ext4_readpage, 3134617ba13bSMingming Cao .readpages = ext4_readpages, 313543ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 313620970ba6STheodore Ts'o .writepages = ext4_writepages, 3137bfc1af65SNick Piggin .write_begin = ext4_write_begin, 313874d553aaSTheodore Ts'o .write_end = ext4_write_end, 3139617ba13bSMingming Cao .bmap = ext4_bmap, 3140617ba13bSMingming Cao .invalidatepage = ext4_invalidatepage, 3141617ba13bSMingming Cao .releasepage = ext4_releasepage, 3142617ba13bSMingming Cao .direct_IO = ext4_direct_IO, 3143ac27a0ecSDave Kleikamp .migratepage = buffer_migrate_page, 31448ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3145aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 3146ac27a0ecSDave Kleikamp }; 3147ac27a0ecSDave Kleikamp 3148617ba13bSMingming Cao static const struct address_space_operations ext4_journalled_aops = { 3149617ba13bSMingming Cao .readpage = ext4_readpage, 3150617ba13bSMingming Cao .readpages = ext4_readpages, 315143ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 315220970ba6STheodore Ts'o .writepages = ext4_writepages, 3153bfc1af65SNick Piggin .write_begin = ext4_write_begin, 3154bfc1af65SNick Piggin .write_end = ext4_journalled_write_end, 3155617ba13bSMingming Cao .set_page_dirty = ext4_journalled_set_page_dirty, 3156617ba13bSMingming Cao .bmap = ext4_bmap, 31574520fb3cSJan Kara .invalidatepage = ext4_journalled_invalidatepage, 3158617ba13bSMingming Cao .releasepage = ext4_releasepage, 315984ebd795STheodore Ts'o .direct_IO = ext4_direct_IO, 31608ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3161aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 3162ac27a0ecSDave Kleikamp }; 3163ac27a0ecSDave Kleikamp 316464769240SAlex Tomas static const struct address_space_operations ext4_da_aops = { 316564769240SAlex Tomas .readpage = ext4_readpage, 316664769240SAlex Tomas .readpages = ext4_readpages, 316743ce1d23SAneesh Kumar K.V .writepage = ext4_writepage, 316820970ba6STheodore Ts'o .writepages = ext4_writepages, 316964769240SAlex Tomas .write_begin = ext4_da_write_begin, 317064769240SAlex Tomas .write_end = ext4_da_write_end, 317164769240SAlex Tomas .bmap = ext4_bmap, 317264769240SAlex Tomas .invalidatepage = ext4_da_invalidatepage, 317364769240SAlex Tomas .releasepage = ext4_releasepage, 317464769240SAlex Tomas .direct_IO = ext4_direct_IO, 317564769240SAlex Tomas .migratepage = buffer_migrate_page, 31768ab22b9aSHisashi Hifumi .is_partially_uptodate = block_is_partially_uptodate, 3177aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 317864769240SAlex Tomas }; 317964769240SAlex Tomas 3180617ba13bSMingming Cao void ext4_set_aops(struct inode *inode) 3181ac27a0ecSDave Kleikamp { 31823d2b1582SLukas Czerner switch (ext4_inode_journal_mode(inode)) { 31833d2b1582SLukas Czerner case EXT4_INODE_ORDERED_DATA_MODE: 318474d553aaSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_ORDERED_MODE); 31853d2b1582SLukas Czerner break; 31863d2b1582SLukas Czerner case EXT4_INODE_WRITEBACK_DATA_MODE: 318774d553aaSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_ORDERED_MODE); 31883d2b1582SLukas Czerner break; 31893d2b1582SLukas Czerner case EXT4_INODE_JOURNAL_DATA_MODE: 3190617ba13bSMingming Cao inode->i_mapping->a_ops = &ext4_journalled_aops; 319174d553aaSTheodore Ts'o return; 31923d2b1582SLukas Czerner default: 31933d2b1582SLukas Czerner BUG(); 31943d2b1582SLukas Czerner } 319574d553aaSTheodore Ts'o if (test_opt(inode->i_sb, DELALLOC)) 319674d553aaSTheodore Ts'o inode->i_mapping->a_ops = &ext4_da_aops; 319774d553aaSTheodore Ts'o else 319874d553aaSTheodore Ts'o inode->i_mapping->a_ops = &ext4_aops; 3199ac27a0ecSDave Kleikamp } 3200ac27a0ecSDave Kleikamp 3201*923ae0ffSRoss Zwisler static int __ext4_block_zero_page_range(handle_t *handle, 3202d863dc36SLukas Czerner struct address_space *mapping, loff_t from, loff_t length) 3203d863dc36SLukas Czerner { 3204d863dc36SLukas Czerner ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT; 3205d863dc36SLukas Czerner unsigned offset = from & (PAGE_CACHE_SIZE-1); 3206*923ae0ffSRoss Zwisler unsigned blocksize, pos; 3207d863dc36SLukas Czerner ext4_lblk_t iblock; 3208d863dc36SLukas Czerner struct inode *inode = mapping->host; 3209d863dc36SLukas Czerner struct buffer_head *bh; 3210d863dc36SLukas Czerner struct page *page; 3211d863dc36SLukas Czerner int err = 0; 3212d863dc36SLukas Czerner 3213d863dc36SLukas Czerner page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT, 3214d863dc36SLukas Czerner mapping_gfp_mask(mapping) & ~__GFP_FS); 3215d863dc36SLukas Czerner if (!page) 3216d863dc36SLukas Czerner return -ENOMEM; 3217d863dc36SLukas Czerner 3218d863dc36SLukas Czerner blocksize = inode->i_sb->s_blocksize; 3219d863dc36SLukas Czerner 3220d863dc36SLukas Czerner iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits); 3221d863dc36SLukas Czerner 3222d863dc36SLukas Czerner if (!page_has_buffers(page)) 3223d863dc36SLukas Czerner create_empty_buffers(page, blocksize, 0); 3224d863dc36SLukas Czerner 3225d863dc36SLukas Czerner /* Find the buffer that contains "offset" */ 3226d863dc36SLukas Czerner bh = page_buffers(page); 3227d863dc36SLukas Czerner pos = blocksize; 3228d863dc36SLukas Czerner while (offset >= pos) { 3229d863dc36SLukas Czerner bh = bh->b_this_page; 3230d863dc36SLukas Czerner iblock++; 3231d863dc36SLukas Czerner pos += blocksize; 3232d863dc36SLukas Czerner } 3233d863dc36SLukas Czerner if (buffer_freed(bh)) { 3234d863dc36SLukas Czerner BUFFER_TRACE(bh, "freed: skip"); 3235d863dc36SLukas Czerner goto unlock; 3236d863dc36SLukas Czerner } 3237d863dc36SLukas Czerner if (!buffer_mapped(bh)) { 3238d863dc36SLukas Czerner BUFFER_TRACE(bh, "unmapped"); 3239d863dc36SLukas Czerner ext4_get_block(inode, iblock, bh, 0); 3240d863dc36SLukas Czerner /* unmapped? It's a hole - nothing to do */ 3241d863dc36SLukas Czerner if (!buffer_mapped(bh)) { 3242d863dc36SLukas Czerner BUFFER_TRACE(bh, "still unmapped"); 3243d863dc36SLukas Czerner goto unlock; 3244d863dc36SLukas Czerner } 3245d863dc36SLukas Czerner } 3246d863dc36SLukas Czerner 3247d863dc36SLukas Czerner /* Ok, it's mapped. Make sure it's up-to-date */ 3248d863dc36SLukas Czerner if (PageUptodate(page)) 3249d863dc36SLukas Czerner set_buffer_uptodate(bh); 3250d863dc36SLukas Czerner 3251d863dc36SLukas Czerner if (!buffer_uptodate(bh)) { 3252d863dc36SLukas Czerner err = -EIO; 3253d863dc36SLukas Czerner ll_rw_block(READ, 1, &bh); 3254d863dc36SLukas Czerner wait_on_buffer(bh); 3255d863dc36SLukas Czerner /* Uhhuh. Read error. Complain and punt. */ 3256d863dc36SLukas Czerner if (!buffer_uptodate(bh)) 3257d863dc36SLukas Czerner goto unlock; 3258d863dc36SLukas Czerner } 3259d863dc36SLukas Czerner if (ext4_should_journal_data(inode)) { 3260d863dc36SLukas Czerner BUFFER_TRACE(bh, "get write access"); 3261d863dc36SLukas Czerner err = ext4_journal_get_write_access(handle, bh); 3262d863dc36SLukas Czerner if (err) 3263d863dc36SLukas Czerner goto unlock; 3264d863dc36SLukas Czerner } 3265d863dc36SLukas Czerner zero_user(page, offset, length); 3266d863dc36SLukas Czerner BUFFER_TRACE(bh, "zeroed end of block"); 3267d863dc36SLukas Czerner 3268d863dc36SLukas Czerner if (ext4_should_journal_data(inode)) { 3269d863dc36SLukas Czerner err = ext4_handle_dirty_metadata(handle, inode, bh); 32700713ed0cSLukas Czerner } else { 3271353eefd3Sjon ernst err = 0; 3272d863dc36SLukas Czerner mark_buffer_dirty(bh); 32730713ed0cSLukas Czerner if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) 32740713ed0cSLukas Czerner err = ext4_jbd2_file_inode(handle, inode); 32750713ed0cSLukas Czerner } 3276d863dc36SLukas Czerner 3277d863dc36SLukas Czerner unlock: 3278d863dc36SLukas Czerner unlock_page(page); 3279d863dc36SLukas Czerner page_cache_release(page); 3280d863dc36SLukas Czerner return err; 3281d863dc36SLukas Czerner } 3282d863dc36SLukas Czerner 328394350ab5SMatthew Wilcox /* 3284*923ae0ffSRoss Zwisler * ext4_block_zero_page_range() zeros out a mapping of length 'length' 3285*923ae0ffSRoss Zwisler * starting from file offset 'from'. The range to be zero'd must 3286*923ae0ffSRoss Zwisler * be contained with in one block. If the specified range exceeds 3287*923ae0ffSRoss Zwisler * the end of the block it will be shortened to end of the block 3288*923ae0ffSRoss Zwisler * that cooresponds to 'from' 3289*923ae0ffSRoss Zwisler */ 3290*923ae0ffSRoss Zwisler static int ext4_block_zero_page_range(handle_t *handle, 3291*923ae0ffSRoss Zwisler struct address_space *mapping, loff_t from, loff_t length) 3292*923ae0ffSRoss Zwisler { 3293*923ae0ffSRoss Zwisler struct inode *inode = mapping->host; 3294*923ae0ffSRoss Zwisler unsigned offset = from & (PAGE_CACHE_SIZE-1); 3295*923ae0ffSRoss Zwisler unsigned blocksize = inode->i_sb->s_blocksize; 3296*923ae0ffSRoss Zwisler unsigned max = blocksize - (offset & (blocksize - 1)); 3297*923ae0ffSRoss Zwisler 3298*923ae0ffSRoss Zwisler /* 3299*923ae0ffSRoss Zwisler * correct length if it does not fall between 3300*923ae0ffSRoss Zwisler * 'from' and the end of the block 3301*923ae0ffSRoss Zwisler */ 3302*923ae0ffSRoss Zwisler if (length > max || length < 0) 3303*923ae0ffSRoss Zwisler length = max; 3304*923ae0ffSRoss Zwisler 3305*923ae0ffSRoss Zwisler if (IS_DAX(inode)) 3306*923ae0ffSRoss Zwisler return dax_zero_page_range(inode, from, length, ext4_get_block); 3307*923ae0ffSRoss Zwisler return __ext4_block_zero_page_range(handle, mapping, from, length); 3308*923ae0ffSRoss Zwisler } 3309*923ae0ffSRoss Zwisler 3310*923ae0ffSRoss Zwisler /* 331194350ab5SMatthew Wilcox * ext4_block_truncate_page() zeroes out a mapping from file offset `from' 331294350ab5SMatthew Wilcox * up to the end of the block which corresponds to `from'. 331394350ab5SMatthew Wilcox * This required during truncate. We need to physically zero the tail end 331494350ab5SMatthew Wilcox * of that block so it doesn't yield old data if the file is later grown. 331594350ab5SMatthew Wilcox */ 3316c197855eSStephen Hemminger static int ext4_block_truncate_page(handle_t *handle, 331794350ab5SMatthew Wilcox struct address_space *mapping, loff_t from) 331894350ab5SMatthew Wilcox { 331994350ab5SMatthew Wilcox unsigned offset = from & (PAGE_CACHE_SIZE-1); 332094350ab5SMatthew Wilcox unsigned length; 332194350ab5SMatthew Wilcox unsigned blocksize; 332294350ab5SMatthew Wilcox struct inode *inode = mapping->host; 332394350ab5SMatthew Wilcox 332494350ab5SMatthew Wilcox blocksize = inode->i_sb->s_blocksize; 332594350ab5SMatthew Wilcox length = blocksize - (offset & (blocksize - 1)); 332694350ab5SMatthew Wilcox 332794350ab5SMatthew Wilcox return ext4_block_zero_page_range(handle, mapping, from, length); 332894350ab5SMatthew Wilcox } 332994350ab5SMatthew Wilcox 3330a87dd18cSLukas Czerner int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode, 3331a87dd18cSLukas Czerner loff_t lstart, loff_t length) 3332a87dd18cSLukas Czerner { 3333a87dd18cSLukas Czerner struct super_block *sb = inode->i_sb; 3334a87dd18cSLukas Czerner struct address_space *mapping = inode->i_mapping; 3335e1be3a92SLukas Czerner unsigned partial_start, partial_end; 3336a87dd18cSLukas Czerner ext4_fsblk_t start, end; 3337a87dd18cSLukas Czerner loff_t byte_end = (lstart + length - 1); 3338a87dd18cSLukas Czerner int err = 0; 3339a87dd18cSLukas Czerner 3340e1be3a92SLukas Czerner partial_start = lstart & (sb->s_blocksize - 1); 3341e1be3a92SLukas Czerner partial_end = byte_end & (sb->s_blocksize - 1); 3342e1be3a92SLukas Czerner 3343a87dd18cSLukas Czerner start = lstart >> sb->s_blocksize_bits; 3344a87dd18cSLukas Czerner end = byte_end >> sb->s_blocksize_bits; 3345a87dd18cSLukas Czerner 3346a87dd18cSLukas Czerner /* Handle partial zero within the single block */ 3347e1be3a92SLukas Czerner if (start == end && 3348e1be3a92SLukas Czerner (partial_start || (partial_end != sb->s_blocksize - 1))) { 3349a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3350a87dd18cSLukas Czerner lstart, length); 3351a87dd18cSLukas Czerner return err; 3352a87dd18cSLukas Czerner } 3353a87dd18cSLukas Czerner /* Handle partial zero out on the start of the range */ 3354e1be3a92SLukas Czerner if (partial_start) { 3355a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3356a87dd18cSLukas Czerner lstart, sb->s_blocksize); 3357a87dd18cSLukas Czerner if (err) 3358a87dd18cSLukas Czerner return err; 3359a87dd18cSLukas Czerner } 3360a87dd18cSLukas Czerner /* Handle partial zero out on the end of the range */ 3361e1be3a92SLukas Czerner if (partial_end != sb->s_blocksize - 1) 3362a87dd18cSLukas Czerner err = ext4_block_zero_page_range(handle, mapping, 3363e1be3a92SLukas Czerner byte_end - partial_end, 3364e1be3a92SLukas Czerner partial_end + 1); 3365a87dd18cSLukas Czerner return err; 3366a87dd18cSLukas Czerner } 3367a87dd18cSLukas Czerner 336891ef4cafSDuane Griffin int ext4_can_truncate(struct inode *inode) 336991ef4cafSDuane Griffin { 337091ef4cafSDuane Griffin if (S_ISREG(inode->i_mode)) 337191ef4cafSDuane Griffin return 1; 337291ef4cafSDuane Griffin if (S_ISDIR(inode->i_mode)) 337391ef4cafSDuane Griffin return 1; 337491ef4cafSDuane Griffin if (S_ISLNK(inode->i_mode)) 337591ef4cafSDuane Griffin return !ext4_inode_is_fast_symlink(inode); 337691ef4cafSDuane Griffin return 0; 337791ef4cafSDuane Griffin } 337891ef4cafSDuane Griffin 3379ac27a0ecSDave Kleikamp /* 3380a4bb6b64SAllison Henderson * ext4_punch_hole: punches a hole in a file by releaseing the blocks 3381a4bb6b64SAllison Henderson * associated with the given offset and length 3382a4bb6b64SAllison Henderson * 3383a4bb6b64SAllison Henderson * @inode: File inode 3384a4bb6b64SAllison Henderson * @offset: The offset where the hole will begin 3385a4bb6b64SAllison Henderson * @len: The length of the hole 3386a4bb6b64SAllison Henderson * 33874907cb7bSAnatol Pomozov * Returns: 0 on success or negative on failure 3388a4bb6b64SAllison Henderson */ 3389a4bb6b64SAllison Henderson 3390aeb2817aSAshish Sangwan int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length) 3391a4bb6b64SAllison Henderson { 339226a4c0c6STheodore Ts'o struct super_block *sb = inode->i_sb; 339326a4c0c6STheodore Ts'o ext4_lblk_t first_block, stop_block; 339426a4c0c6STheodore Ts'o struct address_space *mapping = inode->i_mapping; 3395a87dd18cSLukas Czerner loff_t first_block_offset, last_block_offset; 339626a4c0c6STheodore Ts'o handle_t *handle; 339726a4c0c6STheodore Ts'o unsigned int credits; 339826a4c0c6STheodore Ts'o int ret = 0; 339926a4c0c6STheodore Ts'o 3400a4bb6b64SAllison Henderson if (!S_ISREG(inode->i_mode)) 340173355192SAllison Henderson return -EOPNOTSUPP; 3402a4bb6b64SAllison Henderson 3403b8a86845SLukas Czerner trace_ext4_punch_hole(inode, offset, length, 0); 3404aaddea81SZheng Liu 340526a4c0c6STheodore Ts'o /* 340626a4c0c6STheodore Ts'o * Write out all dirty pages to avoid race conditions 340726a4c0c6STheodore Ts'o * Then release them. 340826a4c0c6STheodore Ts'o */ 340926a4c0c6STheodore Ts'o if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) { 341026a4c0c6STheodore Ts'o ret = filemap_write_and_wait_range(mapping, offset, 341126a4c0c6STheodore Ts'o offset + length - 1); 341226a4c0c6STheodore Ts'o if (ret) 341326a4c0c6STheodore Ts'o return ret; 341426a4c0c6STheodore Ts'o } 341526a4c0c6STheodore Ts'o 341626a4c0c6STheodore Ts'o mutex_lock(&inode->i_mutex); 34179ef06cecSLukas Czerner 341826a4c0c6STheodore Ts'o /* No need to punch hole beyond i_size */ 341926a4c0c6STheodore Ts'o if (offset >= inode->i_size) 342026a4c0c6STheodore Ts'o goto out_mutex; 342126a4c0c6STheodore Ts'o 342226a4c0c6STheodore Ts'o /* 342326a4c0c6STheodore Ts'o * If the hole extends beyond i_size, set the hole 342426a4c0c6STheodore Ts'o * to end after the page that contains i_size 342526a4c0c6STheodore Ts'o */ 342626a4c0c6STheodore Ts'o if (offset + length > inode->i_size) { 342726a4c0c6STheodore Ts'o length = inode->i_size + 342826a4c0c6STheodore Ts'o PAGE_CACHE_SIZE - (inode->i_size & (PAGE_CACHE_SIZE - 1)) - 342926a4c0c6STheodore Ts'o offset; 343026a4c0c6STheodore Ts'o } 343126a4c0c6STheodore Ts'o 3432a361293fSJan Kara if (offset & (sb->s_blocksize - 1) || 3433a361293fSJan Kara (offset + length) & (sb->s_blocksize - 1)) { 3434a361293fSJan Kara /* 3435a361293fSJan Kara * Attach jinode to inode for jbd2 if we do any zeroing of 3436a361293fSJan Kara * partial block 3437a361293fSJan Kara */ 3438a361293fSJan Kara ret = ext4_inode_attach_jinode(inode); 3439a361293fSJan Kara if (ret < 0) 3440a361293fSJan Kara goto out_mutex; 3441a361293fSJan Kara 3442a361293fSJan Kara } 3443a361293fSJan Kara 3444a87dd18cSLukas Czerner first_block_offset = round_up(offset, sb->s_blocksize); 3445a87dd18cSLukas Czerner last_block_offset = round_down((offset + length), sb->s_blocksize) - 1; 344626a4c0c6STheodore Ts'o 3447a87dd18cSLukas Czerner /* Now release the pages and zero block aligned part of pages*/ 3448a87dd18cSLukas Czerner if (last_block_offset > first_block_offset) 3449a87dd18cSLukas Czerner truncate_pagecache_range(inode, first_block_offset, 3450a87dd18cSLukas Czerner last_block_offset); 345126a4c0c6STheodore Ts'o 345226a4c0c6STheodore Ts'o /* Wait all existing dio workers, newcomers will block on i_mutex */ 345326a4c0c6STheodore Ts'o ext4_inode_block_unlocked_dio(inode); 345426a4c0c6STheodore Ts'o inode_dio_wait(inode); 345526a4c0c6STheodore Ts'o 345626a4c0c6STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 345726a4c0c6STheodore Ts'o credits = ext4_writepage_trans_blocks(inode); 345826a4c0c6STheodore Ts'o else 345926a4c0c6STheodore Ts'o credits = ext4_blocks_for_truncate(inode); 346026a4c0c6STheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits); 346126a4c0c6STheodore Ts'o if (IS_ERR(handle)) { 346226a4c0c6STheodore Ts'o ret = PTR_ERR(handle); 346326a4c0c6STheodore Ts'o ext4_std_error(sb, ret); 346426a4c0c6STheodore Ts'o goto out_dio; 346526a4c0c6STheodore Ts'o } 346626a4c0c6STheodore Ts'o 3467a87dd18cSLukas Czerner ret = ext4_zero_partial_blocks(handle, inode, offset, 3468a87dd18cSLukas Czerner length); 346926a4c0c6STheodore Ts'o if (ret) 347026a4c0c6STheodore Ts'o goto out_stop; 347126a4c0c6STheodore Ts'o 347226a4c0c6STheodore Ts'o first_block = (offset + sb->s_blocksize - 1) >> 347326a4c0c6STheodore Ts'o EXT4_BLOCK_SIZE_BITS(sb); 347426a4c0c6STheodore Ts'o stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb); 347526a4c0c6STheodore Ts'o 347626a4c0c6STheodore Ts'o /* If there are no blocks to remove, return now */ 347726a4c0c6STheodore Ts'o if (first_block >= stop_block) 347826a4c0c6STheodore Ts'o goto out_stop; 347926a4c0c6STheodore Ts'o 348026a4c0c6STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 348126a4c0c6STheodore Ts'o ext4_discard_preallocations(inode); 348226a4c0c6STheodore Ts'o 348326a4c0c6STheodore Ts'o ret = ext4_es_remove_extent(inode, first_block, 348426a4c0c6STheodore Ts'o stop_block - first_block); 348526a4c0c6STheodore Ts'o if (ret) { 348626a4c0c6STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 348726a4c0c6STheodore Ts'o goto out_stop; 348826a4c0c6STheodore Ts'o } 348926a4c0c6STheodore Ts'o 349026a4c0c6STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 349126a4c0c6STheodore Ts'o ret = ext4_ext_remove_space(inode, first_block, 349226a4c0c6STheodore Ts'o stop_block - 1); 349326a4c0c6STheodore Ts'o else 34944f579ae7SLukas Czerner ret = ext4_ind_remove_space(handle, inode, first_block, 349526a4c0c6STheodore Ts'o stop_block); 349626a4c0c6STheodore Ts'o 3497819c4920STheodore Ts'o up_write(&EXT4_I(inode)->i_data_sem); 349826a4c0c6STheodore Ts'o if (IS_SYNC(inode)) 349926a4c0c6STheodore Ts'o ext4_handle_sync(handle); 3500e251f9bcSMaxim Patlasov 3501e251f9bcSMaxim Patlasov /* Now release the pages again to reduce race window */ 3502e251f9bcSMaxim Patlasov if (last_block_offset > first_block_offset) 3503e251f9bcSMaxim Patlasov truncate_pagecache_range(inode, first_block_offset, 3504e251f9bcSMaxim Patlasov last_block_offset); 3505e251f9bcSMaxim Patlasov 350626a4c0c6STheodore Ts'o inode->i_mtime = inode->i_ctime = ext4_current_time(inode); 350726a4c0c6STheodore Ts'o ext4_mark_inode_dirty(handle, inode); 350826a4c0c6STheodore Ts'o out_stop: 350926a4c0c6STheodore Ts'o ext4_journal_stop(handle); 351026a4c0c6STheodore Ts'o out_dio: 351126a4c0c6STheodore Ts'o ext4_inode_resume_unlocked_dio(inode); 351226a4c0c6STheodore Ts'o out_mutex: 351326a4c0c6STheodore Ts'o mutex_unlock(&inode->i_mutex); 351426a4c0c6STheodore Ts'o return ret; 3515a4bb6b64SAllison Henderson } 3516a4bb6b64SAllison Henderson 3517a361293fSJan Kara int ext4_inode_attach_jinode(struct inode *inode) 3518a361293fSJan Kara { 3519a361293fSJan Kara struct ext4_inode_info *ei = EXT4_I(inode); 3520a361293fSJan Kara struct jbd2_inode *jinode; 3521a361293fSJan Kara 3522a361293fSJan Kara if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal) 3523a361293fSJan Kara return 0; 3524a361293fSJan Kara 3525a361293fSJan Kara jinode = jbd2_alloc_inode(GFP_KERNEL); 3526a361293fSJan Kara spin_lock(&inode->i_lock); 3527a361293fSJan Kara if (!ei->jinode) { 3528a361293fSJan Kara if (!jinode) { 3529a361293fSJan Kara spin_unlock(&inode->i_lock); 3530a361293fSJan Kara return -ENOMEM; 3531a361293fSJan Kara } 3532a361293fSJan Kara ei->jinode = jinode; 3533a361293fSJan Kara jbd2_journal_init_jbd_inode(ei->jinode, inode); 3534a361293fSJan Kara jinode = NULL; 3535a361293fSJan Kara } 3536a361293fSJan Kara spin_unlock(&inode->i_lock); 3537a361293fSJan Kara if (unlikely(jinode != NULL)) 3538a361293fSJan Kara jbd2_free_inode(jinode); 3539a361293fSJan Kara return 0; 3540a361293fSJan Kara } 3541a361293fSJan Kara 3542a4bb6b64SAllison Henderson /* 3543617ba13bSMingming Cao * ext4_truncate() 3544ac27a0ecSDave Kleikamp * 3545617ba13bSMingming Cao * We block out ext4_get_block() block instantiations across the entire 3546617ba13bSMingming Cao * transaction, and VFS/VM ensures that ext4_truncate() cannot run 3547ac27a0ecSDave Kleikamp * simultaneously on behalf of the same inode. 3548ac27a0ecSDave Kleikamp * 354942b2aa86SJustin P. Mattock * As we work through the truncate and commit bits of it to the journal there 3550ac27a0ecSDave Kleikamp * is one core, guiding principle: the file's tree must always be consistent on 3551ac27a0ecSDave Kleikamp * disk. We must be able to restart the truncate after a crash. 3552ac27a0ecSDave Kleikamp * 3553ac27a0ecSDave Kleikamp * The file's tree may be transiently inconsistent in memory (although it 3554ac27a0ecSDave Kleikamp * probably isn't), but whenever we close off and commit a journal transaction, 3555ac27a0ecSDave Kleikamp * the contents of (the filesystem + the journal) must be consistent and 3556ac27a0ecSDave Kleikamp * restartable. It's pretty simple, really: bottom up, right to left (although 3557ac27a0ecSDave Kleikamp * left-to-right works OK too). 3558ac27a0ecSDave Kleikamp * 3559ac27a0ecSDave Kleikamp * Note that at recovery time, journal replay occurs *before* the restart of 3560ac27a0ecSDave Kleikamp * truncate against the orphan inode list. 3561ac27a0ecSDave Kleikamp * 3562ac27a0ecSDave Kleikamp * The committed inode has the new, desired i_size (which is the same as 3563617ba13bSMingming Cao * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see 3564ac27a0ecSDave Kleikamp * that this inode's truncate did not complete and it will again call 3565617ba13bSMingming Cao * ext4_truncate() to have another go. So there will be instantiated blocks 3566617ba13bSMingming Cao * to the right of the truncation point in a crashed ext4 filesystem. But 3567ac27a0ecSDave Kleikamp * that's fine - as long as they are linked from the inode, the post-crash 3568617ba13bSMingming Cao * ext4_truncate() run will find them and release them. 3569ac27a0ecSDave Kleikamp */ 3570617ba13bSMingming Cao void ext4_truncate(struct inode *inode) 3571ac27a0ecSDave Kleikamp { 3572819c4920STheodore Ts'o struct ext4_inode_info *ei = EXT4_I(inode); 3573819c4920STheodore Ts'o unsigned int credits; 3574819c4920STheodore Ts'o handle_t *handle; 3575819c4920STheodore Ts'o struct address_space *mapping = inode->i_mapping; 3576819c4920STheodore Ts'o 357719b5ef61STheodore Ts'o /* 357819b5ef61STheodore Ts'o * There is a possibility that we're either freeing the inode 3579e04027e8SMatthew Wilcox * or it's a completely new inode. In those cases we might not 358019b5ef61STheodore Ts'o * have i_mutex locked because it's not necessary. 358119b5ef61STheodore Ts'o */ 358219b5ef61STheodore Ts'o if (!(inode->i_state & (I_NEW|I_FREEING))) 358319b5ef61STheodore Ts'o WARN_ON(!mutex_is_locked(&inode->i_mutex)); 35840562e0baSJiaying Zhang trace_ext4_truncate_enter(inode); 35850562e0baSJiaying Zhang 358691ef4cafSDuane Griffin if (!ext4_can_truncate(inode)) 3587ac27a0ecSDave Kleikamp return; 3588ac27a0ecSDave Kleikamp 358912e9b892SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS); 3590c8d46e41SJiaying Zhang 35915534fb5bSTheodore Ts'o if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC)) 359219f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE); 35937d8f9f7dSTheodore Ts'o 3594aef1c851STao Ma if (ext4_has_inline_data(inode)) { 3595aef1c851STao Ma int has_inline = 1; 3596aef1c851STao Ma 3597aef1c851STao Ma ext4_inline_data_truncate(inode, &has_inline); 3598aef1c851STao Ma if (has_inline) 3599aef1c851STao Ma return; 3600aef1c851STao Ma } 3601aef1c851STao Ma 3602a361293fSJan Kara /* If we zero-out tail of the page, we have to create jinode for jbd2 */ 3603a361293fSJan Kara if (inode->i_size & (inode->i_sb->s_blocksize - 1)) { 3604a361293fSJan Kara if (ext4_inode_attach_jinode(inode) < 0) 3605a361293fSJan Kara return; 3606a361293fSJan Kara } 3607a361293fSJan Kara 3608ff9893dcSAmir Goldstein if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 3609819c4920STheodore Ts'o credits = ext4_writepage_trans_blocks(inode); 3610ff9893dcSAmir Goldstein else 3611819c4920STheodore Ts'o credits = ext4_blocks_for_truncate(inode); 3612819c4920STheodore Ts'o 3613819c4920STheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits); 3614819c4920STheodore Ts'o if (IS_ERR(handle)) { 3615819c4920STheodore Ts'o ext4_std_error(inode->i_sb, PTR_ERR(handle)); 3616819c4920STheodore Ts'o return; 3617819c4920STheodore Ts'o } 3618819c4920STheodore Ts'o 3619eb3544c6SLukas Czerner if (inode->i_size & (inode->i_sb->s_blocksize - 1)) 3620eb3544c6SLukas Czerner ext4_block_truncate_page(handle, mapping, inode->i_size); 3621819c4920STheodore Ts'o 3622819c4920STheodore Ts'o /* 3623819c4920STheodore Ts'o * We add the inode to the orphan list, so that if this 3624819c4920STheodore Ts'o * truncate spans multiple transactions, and we crash, we will 3625819c4920STheodore Ts'o * resume the truncate when the filesystem recovers. It also 3626819c4920STheodore Ts'o * marks the inode dirty, to catch the new size. 3627819c4920STheodore Ts'o * 3628819c4920STheodore Ts'o * Implication: the file must always be in a sane, consistent 3629819c4920STheodore Ts'o * truncatable state while each transaction commits. 3630819c4920STheodore Ts'o */ 3631819c4920STheodore Ts'o if (ext4_orphan_add(handle, inode)) 3632819c4920STheodore Ts'o goto out_stop; 3633819c4920STheodore Ts'o 3634819c4920STheodore Ts'o down_write(&EXT4_I(inode)->i_data_sem); 3635819c4920STheodore Ts'o 3636819c4920STheodore Ts'o ext4_discard_preallocations(inode); 3637819c4920STheodore Ts'o 3638819c4920STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) 3639819c4920STheodore Ts'o ext4_ext_truncate(handle, inode); 3640819c4920STheodore Ts'o else 3641819c4920STheodore Ts'o ext4_ind_truncate(handle, inode); 3642819c4920STheodore Ts'o 3643819c4920STheodore Ts'o up_write(&ei->i_data_sem); 3644819c4920STheodore Ts'o 3645819c4920STheodore Ts'o if (IS_SYNC(inode)) 3646819c4920STheodore Ts'o ext4_handle_sync(handle); 3647819c4920STheodore Ts'o 3648819c4920STheodore Ts'o out_stop: 3649819c4920STheodore Ts'o /* 3650819c4920STheodore Ts'o * If this was a simple ftruncate() and the file will remain alive, 3651819c4920STheodore Ts'o * then we need to clear up the orphan record which we created above. 3652819c4920STheodore Ts'o * However, if this was a real unlink then we were called by 365358d86a50SWang Shilong * ext4_evict_inode(), and we allow that function to clean up the 3654819c4920STheodore Ts'o * orphan info for us. 3655819c4920STheodore Ts'o */ 3656819c4920STheodore Ts'o if (inode->i_nlink) 3657819c4920STheodore Ts'o ext4_orphan_del(handle, inode); 3658819c4920STheodore Ts'o 3659819c4920STheodore Ts'o inode->i_mtime = inode->i_ctime = ext4_current_time(inode); 3660819c4920STheodore Ts'o ext4_mark_inode_dirty(handle, inode); 3661819c4920STheodore Ts'o ext4_journal_stop(handle); 3662a86c6181SAlex Tomas 36630562e0baSJiaying Zhang trace_ext4_truncate_exit(inode); 3664ac27a0ecSDave Kleikamp } 3665ac27a0ecSDave Kleikamp 3666ac27a0ecSDave Kleikamp /* 3667617ba13bSMingming Cao * ext4_get_inode_loc returns with an extra refcount against the inode's 3668ac27a0ecSDave Kleikamp * underlying buffer_head on success. If 'in_mem' is true, we have all 3669ac27a0ecSDave Kleikamp * data in memory that is needed to recreate the on-disk version of this 3670ac27a0ecSDave Kleikamp * inode. 3671ac27a0ecSDave Kleikamp */ 3672617ba13bSMingming Cao static int __ext4_get_inode_loc(struct inode *inode, 3673617ba13bSMingming Cao struct ext4_iloc *iloc, int in_mem) 3674ac27a0ecSDave Kleikamp { 3675240799cdSTheodore Ts'o struct ext4_group_desc *gdp; 3676ac27a0ecSDave Kleikamp struct buffer_head *bh; 3677240799cdSTheodore Ts'o struct super_block *sb = inode->i_sb; 3678240799cdSTheodore Ts'o ext4_fsblk_t block; 3679240799cdSTheodore Ts'o int inodes_per_block, inode_offset; 3680ac27a0ecSDave Kleikamp 36813a06d778SAneesh Kumar K.V iloc->bh = NULL; 3682240799cdSTheodore Ts'o if (!ext4_valid_inum(sb, inode->i_ino)) 3683ac27a0ecSDave Kleikamp return -EIO; 3684ac27a0ecSDave Kleikamp 3685240799cdSTheodore Ts'o iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb); 3686240799cdSTheodore Ts'o gdp = ext4_get_group_desc(sb, iloc->block_group, NULL); 3687240799cdSTheodore Ts'o if (!gdp) 3688240799cdSTheodore Ts'o return -EIO; 3689240799cdSTheodore Ts'o 3690240799cdSTheodore Ts'o /* 3691240799cdSTheodore Ts'o * Figure out the offset within the block group inode table 3692240799cdSTheodore Ts'o */ 369300d09882STao Ma inodes_per_block = EXT4_SB(sb)->s_inodes_per_block; 3694240799cdSTheodore Ts'o inode_offset = ((inode->i_ino - 1) % 3695240799cdSTheodore Ts'o EXT4_INODES_PER_GROUP(sb)); 3696240799cdSTheodore Ts'o block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block); 3697240799cdSTheodore Ts'o iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb); 3698240799cdSTheodore Ts'o 3699240799cdSTheodore Ts'o bh = sb_getblk(sb, block); 3700aebf0243SWang Shilong if (unlikely(!bh)) 3701860d21e2STheodore Ts'o return -ENOMEM; 3702ac27a0ecSDave Kleikamp if (!buffer_uptodate(bh)) { 3703ac27a0ecSDave Kleikamp lock_buffer(bh); 37049c83a923SHidehiro Kawai 37059c83a923SHidehiro Kawai /* 37069c83a923SHidehiro Kawai * If the buffer has the write error flag, we have failed 37079c83a923SHidehiro Kawai * to write out another inode in the same block. In this 37089c83a923SHidehiro Kawai * case, we don't have to read the block because we may 37099c83a923SHidehiro Kawai * read the old inode data successfully. 37109c83a923SHidehiro Kawai */ 37119c83a923SHidehiro Kawai if (buffer_write_io_error(bh) && !buffer_uptodate(bh)) 37129c83a923SHidehiro Kawai set_buffer_uptodate(bh); 37139c83a923SHidehiro Kawai 3714ac27a0ecSDave Kleikamp if (buffer_uptodate(bh)) { 3715ac27a0ecSDave Kleikamp /* someone brought it uptodate while we waited */ 3716ac27a0ecSDave Kleikamp unlock_buffer(bh); 3717ac27a0ecSDave Kleikamp goto has_buffer; 3718ac27a0ecSDave Kleikamp } 3719ac27a0ecSDave Kleikamp 3720ac27a0ecSDave Kleikamp /* 3721ac27a0ecSDave Kleikamp * If we have all information of the inode in memory and this 3722ac27a0ecSDave Kleikamp * is the only valid inode in the block, we need not read the 3723ac27a0ecSDave Kleikamp * block. 3724ac27a0ecSDave Kleikamp */ 3725ac27a0ecSDave Kleikamp if (in_mem) { 3726ac27a0ecSDave Kleikamp struct buffer_head *bitmap_bh; 3727240799cdSTheodore Ts'o int i, start; 3728ac27a0ecSDave Kleikamp 3729240799cdSTheodore Ts'o start = inode_offset & ~(inodes_per_block - 1); 3730ac27a0ecSDave Kleikamp 3731ac27a0ecSDave Kleikamp /* Is the inode bitmap in cache? */ 3732240799cdSTheodore Ts'o bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp)); 3733aebf0243SWang Shilong if (unlikely(!bitmap_bh)) 3734ac27a0ecSDave Kleikamp goto make_io; 3735ac27a0ecSDave Kleikamp 3736ac27a0ecSDave Kleikamp /* 3737ac27a0ecSDave Kleikamp * If the inode bitmap isn't in cache then the 3738ac27a0ecSDave Kleikamp * optimisation may end up performing two reads instead 3739ac27a0ecSDave Kleikamp * of one, so skip it. 3740ac27a0ecSDave Kleikamp */ 3741ac27a0ecSDave Kleikamp if (!buffer_uptodate(bitmap_bh)) { 3742ac27a0ecSDave Kleikamp brelse(bitmap_bh); 3743ac27a0ecSDave Kleikamp goto make_io; 3744ac27a0ecSDave Kleikamp } 3745240799cdSTheodore Ts'o for (i = start; i < start + inodes_per_block; i++) { 3746ac27a0ecSDave Kleikamp if (i == inode_offset) 3747ac27a0ecSDave Kleikamp continue; 3748617ba13bSMingming Cao if (ext4_test_bit(i, bitmap_bh->b_data)) 3749ac27a0ecSDave Kleikamp break; 3750ac27a0ecSDave Kleikamp } 3751ac27a0ecSDave Kleikamp brelse(bitmap_bh); 3752240799cdSTheodore Ts'o if (i == start + inodes_per_block) { 3753ac27a0ecSDave Kleikamp /* all other inodes are free, so skip I/O */ 3754ac27a0ecSDave Kleikamp memset(bh->b_data, 0, bh->b_size); 3755ac27a0ecSDave Kleikamp set_buffer_uptodate(bh); 3756ac27a0ecSDave Kleikamp unlock_buffer(bh); 3757ac27a0ecSDave Kleikamp goto has_buffer; 3758ac27a0ecSDave Kleikamp } 3759ac27a0ecSDave Kleikamp } 3760ac27a0ecSDave Kleikamp 3761ac27a0ecSDave Kleikamp make_io: 3762ac27a0ecSDave Kleikamp /* 3763240799cdSTheodore Ts'o * If we need to do any I/O, try to pre-readahead extra 3764240799cdSTheodore Ts'o * blocks from the inode table. 3765240799cdSTheodore Ts'o */ 3766240799cdSTheodore Ts'o if (EXT4_SB(sb)->s_inode_readahead_blks) { 3767240799cdSTheodore Ts'o ext4_fsblk_t b, end, table; 3768240799cdSTheodore Ts'o unsigned num; 37690d606e2cSTheodore Ts'o __u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks; 3770240799cdSTheodore Ts'o 3771240799cdSTheodore Ts'o table = ext4_inode_table(sb, gdp); 3772b713a5ecSTheodore Ts'o /* s_inode_readahead_blks is always a power of 2 */ 37730d606e2cSTheodore Ts'o b = block & ~((ext4_fsblk_t) ra_blks - 1); 3774240799cdSTheodore Ts'o if (table > b) 3775240799cdSTheodore Ts'o b = table; 37760d606e2cSTheodore Ts'o end = b + ra_blks; 3777240799cdSTheodore Ts'o num = EXT4_INODES_PER_GROUP(sb); 3778feb0ab32SDarrick J. Wong if (ext4_has_group_desc_csum(sb)) 3779560671a0SAneesh Kumar K.V num -= ext4_itable_unused_count(sb, gdp); 3780240799cdSTheodore Ts'o table += num / inodes_per_block; 3781240799cdSTheodore Ts'o if (end > table) 3782240799cdSTheodore Ts'o end = table; 3783240799cdSTheodore Ts'o while (b <= end) 3784240799cdSTheodore Ts'o sb_breadahead(sb, b++); 3785240799cdSTheodore Ts'o } 3786240799cdSTheodore Ts'o 3787240799cdSTheodore Ts'o /* 3788ac27a0ecSDave Kleikamp * There are other valid inodes in the buffer, this inode 3789ac27a0ecSDave Kleikamp * has in-inode xattrs, or we don't have this inode in memory. 3790ac27a0ecSDave Kleikamp * Read the block from disk. 3791ac27a0ecSDave Kleikamp */ 37920562e0baSJiaying Zhang trace_ext4_load_inode(inode); 3793ac27a0ecSDave Kleikamp get_bh(bh); 3794ac27a0ecSDave Kleikamp bh->b_end_io = end_buffer_read_sync; 379565299a3bSChristoph Hellwig submit_bh(READ | REQ_META | REQ_PRIO, bh); 3796ac27a0ecSDave Kleikamp wait_on_buffer(bh); 3797ac27a0ecSDave Kleikamp if (!buffer_uptodate(bh)) { 3798c398eda0STheodore Ts'o EXT4_ERROR_INODE_BLOCK(inode, block, 3799c398eda0STheodore Ts'o "unable to read itable block"); 3800ac27a0ecSDave Kleikamp brelse(bh); 3801ac27a0ecSDave Kleikamp return -EIO; 3802ac27a0ecSDave Kleikamp } 3803ac27a0ecSDave Kleikamp } 3804ac27a0ecSDave Kleikamp has_buffer: 3805ac27a0ecSDave Kleikamp iloc->bh = bh; 3806ac27a0ecSDave Kleikamp return 0; 3807ac27a0ecSDave Kleikamp } 3808ac27a0ecSDave Kleikamp 3809617ba13bSMingming Cao int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc) 3810ac27a0ecSDave Kleikamp { 3811ac27a0ecSDave Kleikamp /* We have all inode data except xattrs in memory here. */ 3812617ba13bSMingming Cao return __ext4_get_inode_loc(inode, iloc, 381319f5fb7aSTheodore Ts'o !ext4_test_inode_state(inode, EXT4_STATE_XATTR)); 3814ac27a0ecSDave Kleikamp } 3815ac27a0ecSDave Kleikamp 3816617ba13bSMingming Cao void ext4_set_inode_flags(struct inode *inode) 3817ac27a0ecSDave Kleikamp { 3818617ba13bSMingming Cao unsigned int flags = EXT4_I(inode)->i_flags; 381900a1a053STheodore Ts'o unsigned int new_fl = 0; 3820ac27a0ecSDave Kleikamp 3821617ba13bSMingming Cao if (flags & EXT4_SYNC_FL) 382200a1a053STheodore Ts'o new_fl |= S_SYNC; 3823617ba13bSMingming Cao if (flags & EXT4_APPEND_FL) 382400a1a053STheodore Ts'o new_fl |= S_APPEND; 3825617ba13bSMingming Cao if (flags & EXT4_IMMUTABLE_FL) 382600a1a053STheodore Ts'o new_fl |= S_IMMUTABLE; 3827617ba13bSMingming Cao if (flags & EXT4_NOATIME_FL) 382800a1a053STheodore Ts'o new_fl |= S_NOATIME; 3829617ba13bSMingming Cao if (flags & EXT4_DIRSYNC_FL) 383000a1a053STheodore Ts'o new_fl |= S_DIRSYNC; 3831*923ae0ffSRoss Zwisler if (test_opt(inode->i_sb, DAX)) 3832*923ae0ffSRoss Zwisler new_fl |= S_DAX; 38335f16f322STheodore Ts'o inode_set_flags(inode, new_fl, 3834*923ae0ffSRoss Zwisler S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX); 3835ac27a0ecSDave Kleikamp } 3836ac27a0ecSDave Kleikamp 3837ff9ddf7eSJan Kara /* Propagate flags from i_flags to EXT4_I(inode)->i_flags */ 3838ff9ddf7eSJan Kara void ext4_get_inode_flags(struct ext4_inode_info *ei) 3839ff9ddf7eSJan Kara { 384084a8dce2SDmitry Monakhov unsigned int vfs_fl; 384184a8dce2SDmitry Monakhov unsigned long old_fl, new_fl; 3842ff9ddf7eSJan Kara 384384a8dce2SDmitry Monakhov do { 384484a8dce2SDmitry Monakhov vfs_fl = ei->vfs_inode.i_flags; 384584a8dce2SDmitry Monakhov old_fl = ei->i_flags; 384684a8dce2SDmitry Monakhov new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL| 384784a8dce2SDmitry Monakhov EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL| 384884a8dce2SDmitry Monakhov EXT4_DIRSYNC_FL); 384984a8dce2SDmitry Monakhov if (vfs_fl & S_SYNC) 385084a8dce2SDmitry Monakhov new_fl |= EXT4_SYNC_FL; 385184a8dce2SDmitry Monakhov if (vfs_fl & S_APPEND) 385284a8dce2SDmitry Monakhov new_fl |= EXT4_APPEND_FL; 385384a8dce2SDmitry Monakhov if (vfs_fl & S_IMMUTABLE) 385484a8dce2SDmitry Monakhov new_fl |= EXT4_IMMUTABLE_FL; 385584a8dce2SDmitry Monakhov if (vfs_fl & S_NOATIME) 385684a8dce2SDmitry Monakhov new_fl |= EXT4_NOATIME_FL; 385784a8dce2SDmitry Monakhov if (vfs_fl & S_DIRSYNC) 385884a8dce2SDmitry Monakhov new_fl |= EXT4_DIRSYNC_FL; 385984a8dce2SDmitry Monakhov } while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl); 3860ff9ddf7eSJan Kara } 3861de9a55b8STheodore Ts'o 38620fc1b451SAneesh Kumar K.V static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode, 38630fc1b451SAneesh Kumar K.V struct ext4_inode_info *ei) 38640fc1b451SAneesh Kumar K.V { 38650fc1b451SAneesh Kumar K.V blkcnt_t i_blocks ; 38668180a562SAneesh Kumar K.V struct inode *inode = &(ei->vfs_inode); 38678180a562SAneesh Kumar K.V struct super_block *sb = inode->i_sb; 38680fc1b451SAneesh Kumar K.V 38690fc1b451SAneesh Kumar K.V if (EXT4_HAS_RO_COMPAT_FEATURE(sb, 38700fc1b451SAneesh Kumar K.V EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) { 38710fc1b451SAneesh Kumar K.V /* we are using combined 48 bit field */ 38720fc1b451SAneesh Kumar K.V i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 | 38730fc1b451SAneesh Kumar K.V le32_to_cpu(raw_inode->i_blocks_lo); 387407a03824STheodore Ts'o if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) { 38758180a562SAneesh Kumar K.V /* i_blocks represent file system block size */ 38768180a562SAneesh Kumar K.V return i_blocks << (inode->i_blkbits - 9); 38778180a562SAneesh Kumar K.V } else { 38780fc1b451SAneesh Kumar K.V return i_blocks; 38798180a562SAneesh Kumar K.V } 38800fc1b451SAneesh Kumar K.V } else { 38810fc1b451SAneesh Kumar K.V return le32_to_cpu(raw_inode->i_blocks_lo); 38820fc1b451SAneesh Kumar K.V } 38830fc1b451SAneesh Kumar K.V } 3884ff9ddf7eSJan Kara 3885152a7b0aSTao Ma static inline void ext4_iget_extra_inode(struct inode *inode, 3886152a7b0aSTao Ma struct ext4_inode *raw_inode, 3887152a7b0aSTao Ma struct ext4_inode_info *ei) 3888152a7b0aSTao Ma { 3889152a7b0aSTao Ma __le32 *magic = (void *)raw_inode + 3890152a7b0aSTao Ma EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize; 389167cf5b09STao Ma if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) { 3892152a7b0aSTao Ma ext4_set_inode_state(inode, EXT4_STATE_XATTR); 389367cf5b09STao Ma ext4_find_inline_data_nolock(inode); 3894f19d5870STao Ma } else 3895f19d5870STao Ma EXT4_I(inode)->i_inline_off = 0; 3896152a7b0aSTao Ma } 3897152a7b0aSTao Ma 38981d1fe1eeSDavid Howells struct inode *ext4_iget(struct super_block *sb, unsigned long ino) 3899ac27a0ecSDave Kleikamp { 3900617ba13bSMingming Cao struct ext4_iloc iloc; 3901617ba13bSMingming Cao struct ext4_inode *raw_inode; 39021d1fe1eeSDavid Howells struct ext4_inode_info *ei; 39031d1fe1eeSDavid Howells struct inode *inode; 3904b436b9beSJan Kara journal_t *journal = EXT4_SB(sb)->s_journal; 39051d1fe1eeSDavid Howells long ret; 3906ac27a0ecSDave Kleikamp int block; 390708cefc7aSEric W. Biederman uid_t i_uid; 390808cefc7aSEric W. Biederman gid_t i_gid; 3909ac27a0ecSDave Kleikamp 39101d1fe1eeSDavid Howells inode = iget_locked(sb, ino); 39111d1fe1eeSDavid Howells if (!inode) 39121d1fe1eeSDavid Howells return ERR_PTR(-ENOMEM); 39131d1fe1eeSDavid Howells if (!(inode->i_state & I_NEW)) 39141d1fe1eeSDavid Howells return inode; 39151d1fe1eeSDavid Howells 39161d1fe1eeSDavid Howells ei = EXT4_I(inode); 39177dc57615SPeter Huewe iloc.bh = NULL; 3918ac27a0ecSDave Kleikamp 39191d1fe1eeSDavid Howells ret = __ext4_get_inode_loc(inode, &iloc, 0); 39201d1fe1eeSDavid Howells if (ret < 0) 3921ac27a0ecSDave Kleikamp goto bad_inode; 3922617ba13bSMingming Cao raw_inode = ext4_raw_inode(&iloc); 3923814525f4SDarrick J. Wong 3924814525f4SDarrick J. Wong if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 3925814525f4SDarrick J. Wong ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize); 3926814525f4SDarrick J. Wong if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize > 3927814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)) { 3928814525f4SDarrick J. Wong EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)", 3929814525f4SDarrick J. Wong EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize, 3930814525f4SDarrick J. Wong EXT4_INODE_SIZE(inode->i_sb)); 3931814525f4SDarrick J. Wong ret = -EIO; 3932814525f4SDarrick J. Wong goto bad_inode; 3933814525f4SDarrick J. Wong } 3934814525f4SDarrick J. Wong } else 3935814525f4SDarrick J. Wong ei->i_extra_isize = 0; 3936814525f4SDarrick J. Wong 3937814525f4SDarrick J. Wong /* Precompute checksum seed for inode metadata */ 39389aa5d32bSDmitry Monakhov if (ext4_has_metadata_csum(sb)) { 3939814525f4SDarrick J. Wong struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 3940814525f4SDarrick J. Wong __u32 csum; 3941814525f4SDarrick J. Wong __le32 inum = cpu_to_le32(inode->i_ino); 3942814525f4SDarrick J. Wong __le32 gen = raw_inode->i_generation; 3943814525f4SDarrick J. Wong csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum, 3944814525f4SDarrick J. Wong sizeof(inum)); 3945814525f4SDarrick J. Wong ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen, 3946814525f4SDarrick J. Wong sizeof(gen)); 3947814525f4SDarrick J. Wong } 3948814525f4SDarrick J. Wong 3949814525f4SDarrick J. Wong if (!ext4_inode_csum_verify(inode, raw_inode, ei)) { 3950814525f4SDarrick J. Wong EXT4_ERROR_INODE(inode, "checksum invalid"); 3951814525f4SDarrick J. Wong ret = -EIO; 3952814525f4SDarrick J. Wong goto bad_inode; 3953814525f4SDarrick J. Wong } 3954814525f4SDarrick J. Wong 3955ac27a0ecSDave Kleikamp inode->i_mode = le16_to_cpu(raw_inode->i_mode); 395608cefc7aSEric W. Biederman i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low); 395708cefc7aSEric W. Biederman i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low); 3958ac27a0ecSDave Kleikamp if (!(test_opt(inode->i_sb, NO_UID32))) { 395908cefc7aSEric W. Biederman i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16; 396008cefc7aSEric W. Biederman i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16; 3961ac27a0ecSDave Kleikamp } 396208cefc7aSEric W. Biederman i_uid_write(inode, i_uid); 396308cefc7aSEric W. Biederman i_gid_write(inode, i_gid); 3964bfe86848SMiklos Szeredi set_nlink(inode, le16_to_cpu(raw_inode->i_links_count)); 3965ac27a0ecSDave Kleikamp 3966353eb83cSTheodore Ts'o ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */ 396767cf5b09STao Ma ei->i_inline_off = 0; 3968ac27a0ecSDave Kleikamp ei->i_dir_start_lookup = 0; 3969ac27a0ecSDave Kleikamp ei->i_dtime = le32_to_cpu(raw_inode->i_dtime); 3970ac27a0ecSDave Kleikamp /* We now have enough fields to check if the inode was active or not. 3971ac27a0ecSDave Kleikamp * This is needed because nfsd might try to access dead inodes 3972ac27a0ecSDave Kleikamp * the test is that same one that e2fsck uses 3973ac27a0ecSDave Kleikamp * NeilBrown 1999oct15 3974ac27a0ecSDave Kleikamp */ 3975ac27a0ecSDave Kleikamp if (inode->i_nlink == 0) { 3976393d1d1dSDr. Tilmann Bubeck if ((inode->i_mode == 0 || 3977393d1d1dSDr. Tilmann Bubeck !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) && 3978393d1d1dSDr. Tilmann Bubeck ino != EXT4_BOOT_LOADER_INO) { 3979ac27a0ecSDave Kleikamp /* this inode is deleted */ 39801d1fe1eeSDavid Howells ret = -ESTALE; 3981ac27a0ecSDave Kleikamp goto bad_inode; 3982ac27a0ecSDave Kleikamp } 3983ac27a0ecSDave Kleikamp /* The only unlinked inodes we let through here have 3984ac27a0ecSDave Kleikamp * valid i_mode and are being read by the orphan 3985ac27a0ecSDave Kleikamp * recovery code: that's fine, we're about to complete 3986393d1d1dSDr. Tilmann Bubeck * the process of deleting those. 3987393d1d1dSDr. Tilmann Bubeck * OR it is the EXT4_BOOT_LOADER_INO which is 3988393d1d1dSDr. Tilmann Bubeck * not initialized on a new filesystem. */ 3989ac27a0ecSDave Kleikamp } 3990ac27a0ecSDave Kleikamp ei->i_flags = le32_to_cpu(raw_inode->i_flags); 39910fc1b451SAneesh Kumar K.V inode->i_blocks = ext4_inode_blocks(raw_inode, ei); 39927973c0c1SAneesh Kumar K.V ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo); 3993a9e81742STheodore Ts'o if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) 3994a1ddeb7eSBadari Pulavarty ei->i_file_acl |= 3995a1ddeb7eSBadari Pulavarty ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32; 3996a48380f7SAneesh Kumar K.V inode->i_size = ext4_isize(raw_inode); 3997ac27a0ecSDave Kleikamp ei->i_disksize = inode->i_size; 3998a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA 3999a9e7f447SDmitry Monakhov ei->i_reserved_quota = 0; 4000a9e7f447SDmitry Monakhov #endif 4001ac27a0ecSDave Kleikamp inode->i_generation = le32_to_cpu(raw_inode->i_generation); 4002ac27a0ecSDave Kleikamp ei->i_block_group = iloc.block_group; 4003a4912123STheodore Ts'o ei->i_last_alloc_group = ~0; 4004ac27a0ecSDave Kleikamp /* 4005ac27a0ecSDave Kleikamp * NOTE! The in-memory inode i_data array is in little-endian order 4006ac27a0ecSDave Kleikamp * even on big-endian machines: we do NOT byteswap the block numbers! 4007ac27a0ecSDave Kleikamp */ 4008617ba13bSMingming Cao for (block = 0; block < EXT4_N_BLOCKS; block++) 4009ac27a0ecSDave Kleikamp ei->i_data[block] = raw_inode->i_block[block]; 4010ac27a0ecSDave Kleikamp INIT_LIST_HEAD(&ei->i_orphan); 4011ac27a0ecSDave Kleikamp 4012b436b9beSJan Kara /* 4013b436b9beSJan Kara * Set transaction id's of transactions that have to be committed 4014b436b9beSJan Kara * to finish f[data]sync. We set them to currently running transaction 4015b436b9beSJan Kara * as we cannot be sure that the inode or some of its metadata isn't 4016b436b9beSJan Kara * part of the transaction - the inode could have been reclaimed and 4017b436b9beSJan Kara * now it is reread from disk. 4018b436b9beSJan Kara */ 4019b436b9beSJan Kara if (journal) { 4020b436b9beSJan Kara transaction_t *transaction; 4021b436b9beSJan Kara tid_t tid; 4022b436b9beSJan Kara 4023a931da6aSTheodore Ts'o read_lock(&journal->j_state_lock); 4024b436b9beSJan Kara if (journal->j_running_transaction) 4025b436b9beSJan Kara transaction = journal->j_running_transaction; 4026b436b9beSJan Kara else 4027b436b9beSJan Kara transaction = journal->j_committing_transaction; 4028b436b9beSJan Kara if (transaction) 4029b436b9beSJan Kara tid = transaction->t_tid; 4030b436b9beSJan Kara else 4031b436b9beSJan Kara tid = journal->j_commit_sequence; 4032a931da6aSTheodore Ts'o read_unlock(&journal->j_state_lock); 4033b436b9beSJan Kara ei->i_sync_tid = tid; 4034b436b9beSJan Kara ei->i_datasync_tid = tid; 4035b436b9beSJan Kara } 4036b436b9beSJan Kara 40370040d987SEric Sandeen if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 4038ac27a0ecSDave Kleikamp if (ei->i_extra_isize == 0) { 4039ac27a0ecSDave Kleikamp /* The extra space is currently unused. Use it. */ 4040617ba13bSMingming Cao ei->i_extra_isize = sizeof(struct ext4_inode) - 4041617ba13bSMingming Cao EXT4_GOOD_OLD_INODE_SIZE; 4042ac27a0ecSDave Kleikamp } else { 4043152a7b0aSTao Ma ext4_iget_extra_inode(inode, raw_inode, ei); 4044ac27a0ecSDave Kleikamp } 4045814525f4SDarrick J. Wong } 4046ac27a0ecSDave Kleikamp 4047ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode); 4048ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode); 4049ef7f3835SKalpak Shah EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode); 4050ef7f3835SKalpak Shah EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode); 4051ef7f3835SKalpak Shah 4052ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) { 405325ec56b5SJean Noel Cordenner inode->i_version = le32_to_cpu(raw_inode->i_disk_version); 405425ec56b5SJean Noel Cordenner if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { 405525ec56b5SJean Noel Cordenner if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi)) 405625ec56b5SJean Noel Cordenner inode->i_version |= 405725ec56b5SJean Noel Cordenner (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32; 405825ec56b5SJean Noel Cordenner } 4059c4f65706STheodore Ts'o } 406025ec56b5SJean Noel Cordenner 4061c4b5a614STheodore Ts'o ret = 0; 4062485c26ecSTheodore Ts'o if (ei->i_file_acl && 40631032988cSTheodore Ts'o !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) { 406424676da4STheodore Ts'o EXT4_ERROR_INODE(inode, "bad extended attribute block %llu", 406524676da4STheodore Ts'o ei->i_file_acl); 4066485c26ecSTheodore Ts'o ret = -EIO; 4067485c26ecSTheodore Ts'o goto bad_inode; 4068f19d5870STao Ma } else if (!ext4_has_inline_data(inode)) { 4069f19d5870STao Ma if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { 4070f19d5870STao Ma if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || 4071c4b5a614STheodore Ts'o (S_ISLNK(inode->i_mode) && 4072f19d5870STao Ma !ext4_inode_is_fast_symlink(inode)))) 40737a262f7cSAneesh Kumar K.V /* Validate extent which is part of inode */ 40747a262f7cSAneesh Kumar K.V ret = ext4_ext_check_inode(inode); 4075fe2c8191SThiemo Nagel } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || 4076fe2c8191SThiemo Nagel (S_ISLNK(inode->i_mode) && 4077fe2c8191SThiemo Nagel !ext4_inode_is_fast_symlink(inode))) { 4078fe2c8191SThiemo Nagel /* Validate block references which are part of inode */ 40791f7d1e77STheodore Ts'o ret = ext4_ind_check_inode(inode); 4080fe2c8191SThiemo Nagel } 4081f19d5870STao Ma } 4082567f3e9aSTheodore Ts'o if (ret) 40837a262f7cSAneesh Kumar K.V goto bad_inode; 40847a262f7cSAneesh Kumar K.V 4085ac27a0ecSDave Kleikamp if (S_ISREG(inode->i_mode)) { 4086617ba13bSMingming Cao inode->i_op = &ext4_file_inode_operations; 4087*923ae0ffSRoss Zwisler if (test_opt(inode->i_sb, DAX)) 4088*923ae0ffSRoss Zwisler inode->i_fop = &ext4_dax_file_operations; 4089*923ae0ffSRoss Zwisler else 4090617ba13bSMingming Cao inode->i_fop = &ext4_file_operations; 4091617ba13bSMingming Cao ext4_set_aops(inode); 4092ac27a0ecSDave Kleikamp } else if (S_ISDIR(inode->i_mode)) { 4093617ba13bSMingming Cao inode->i_op = &ext4_dir_inode_operations; 4094617ba13bSMingming Cao inode->i_fop = &ext4_dir_operations; 4095ac27a0ecSDave Kleikamp } else if (S_ISLNK(inode->i_mode)) { 4096e83c1397SDuane Griffin if (ext4_inode_is_fast_symlink(inode)) { 4097617ba13bSMingming Cao inode->i_op = &ext4_fast_symlink_inode_operations; 4098e83c1397SDuane Griffin nd_terminate_link(ei->i_data, inode->i_size, 4099e83c1397SDuane Griffin sizeof(ei->i_data) - 1); 4100e83c1397SDuane Griffin } else { 4101617ba13bSMingming Cao inode->i_op = &ext4_symlink_inode_operations; 4102617ba13bSMingming Cao ext4_set_aops(inode); 4103ac27a0ecSDave Kleikamp } 4104563bdd61STheodore Ts'o } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) || 4105563bdd61STheodore Ts'o S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) { 4106617ba13bSMingming Cao inode->i_op = &ext4_special_inode_operations; 4107ac27a0ecSDave Kleikamp if (raw_inode->i_block[0]) 4108ac27a0ecSDave Kleikamp init_special_inode(inode, inode->i_mode, 4109ac27a0ecSDave Kleikamp old_decode_dev(le32_to_cpu(raw_inode->i_block[0]))); 4110ac27a0ecSDave Kleikamp else 4111ac27a0ecSDave Kleikamp init_special_inode(inode, inode->i_mode, 4112ac27a0ecSDave Kleikamp new_decode_dev(le32_to_cpu(raw_inode->i_block[1]))); 4113393d1d1dSDr. Tilmann Bubeck } else if (ino == EXT4_BOOT_LOADER_INO) { 4114393d1d1dSDr. Tilmann Bubeck make_bad_inode(inode); 4115563bdd61STheodore Ts'o } else { 4116563bdd61STheodore Ts'o ret = -EIO; 411724676da4STheodore Ts'o EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode); 4118563bdd61STheodore Ts'o goto bad_inode; 4119ac27a0ecSDave Kleikamp } 4120ac27a0ecSDave Kleikamp brelse(iloc.bh); 4121617ba13bSMingming Cao ext4_set_inode_flags(inode); 41221d1fe1eeSDavid Howells unlock_new_inode(inode); 41231d1fe1eeSDavid Howells return inode; 4124ac27a0ecSDave Kleikamp 4125ac27a0ecSDave Kleikamp bad_inode: 4126567f3e9aSTheodore Ts'o brelse(iloc.bh); 41271d1fe1eeSDavid Howells iget_failed(inode); 41281d1fe1eeSDavid Howells return ERR_PTR(ret); 4129ac27a0ecSDave Kleikamp } 4130ac27a0ecSDave Kleikamp 4131f4bb2981STheodore Ts'o struct inode *ext4_iget_normal(struct super_block *sb, unsigned long ino) 4132f4bb2981STheodore Ts'o { 4133f4bb2981STheodore Ts'o if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO) 4134f4bb2981STheodore Ts'o return ERR_PTR(-EIO); 4135f4bb2981STheodore Ts'o return ext4_iget(sb, ino); 4136f4bb2981STheodore Ts'o } 4137f4bb2981STheodore Ts'o 41380fc1b451SAneesh Kumar K.V static int ext4_inode_blocks_set(handle_t *handle, 41390fc1b451SAneesh Kumar K.V struct ext4_inode *raw_inode, 41400fc1b451SAneesh Kumar K.V struct ext4_inode_info *ei) 41410fc1b451SAneesh Kumar K.V { 41420fc1b451SAneesh Kumar K.V struct inode *inode = &(ei->vfs_inode); 41430fc1b451SAneesh Kumar K.V u64 i_blocks = inode->i_blocks; 41440fc1b451SAneesh Kumar K.V struct super_block *sb = inode->i_sb; 41450fc1b451SAneesh Kumar K.V 41460fc1b451SAneesh Kumar K.V if (i_blocks <= ~0U) { 41470fc1b451SAneesh Kumar K.V /* 41484907cb7bSAnatol Pomozov * i_blocks can be represented in a 32 bit variable 41490fc1b451SAneesh Kumar K.V * as multiple of 512 bytes 41500fc1b451SAneesh Kumar K.V */ 41518180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 41520fc1b451SAneesh Kumar K.V raw_inode->i_blocks_high = 0; 415384a8dce2SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE); 4154f287a1a5STheodore Ts'o return 0; 4155f287a1a5STheodore Ts'o } 4156f287a1a5STheodore Ts'o if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) 4157f287a1a5STheodore Ts'o return -EFBIG; 4158f287a1a5STheodore Ts'o 4159f287a1a5STheodore Ts'o if (i_blocks <= 0xffffffffffffULL) { 41600fc1b451SAneesh Kumar K.V /* 41610fc1b451SAneesh Kumar K.V * i_blocks can be represented in a 48 bit variable 41620fc1b451SAneesh Kumar K.V * as multiple of 512 bytes 41630fc1b451SAneesh Kumar K.V */ 41648180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 41650fc1b451SAneesh Kumar K.V raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32); 416684a8dce2SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE); 41670fc1b451SAneesh Kumar K.V } else { 416884a8dce2SDmitry Monakhov ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE); 41698180a562SAneesh Kumar K.V /* i_block is stored in file system block size */ 41708180a562SAneesh Kumar K.V i_blocks = i_blocks >> (inode->i_blkbits - 9); 41718180a562SAneesh Kumar K.V raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); 41728180a562SAneesh Kumar K.V raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32); 41730fc1b451SAneesh Kumar K.V } 4174f287a1a5STheodore Ts'o return 0; 41750fc1b451SAneesh Kumar K.V } 41760fc1b451SAneesh Kumar K.V 4177ac27a0ecSDave Kleikamp /* 4178ac27a0ecSDave Kleikamp * Post the struct inode info into an on-disk inode location in the 4179ac27a0ecSDave Kleikamp * buffer-cache. This gobbles the caller's reference to the 4180ac27a0ecSDave Kleikamp * buffer_head in the inode location struct. 4181ac27a0ecSDave Kleikamp * 4182ac27a0ecSDave Kleikamp * The caller must have write access to iloc->bh. 4183ac27a0ecSDave Kleikamp */ 4184617ba13bSMingming Cao static int ext4_do_update_inode(handle_t *handle, 4185ac27a0ecSDave Kleikamp struct inode *inode, 4186830156c7SFrank Mayhar struct ext4_iloc *iloc) 4187ac27a0ecSDave Kleikamp { 4188617ba13bSMingming Cao struct ext4_inode *raw_inode = ext4_raw_inode(iloc); 4189617ba13bSMingming Cao struct ext4_inode_info *ei = EXT4_I(inode); 4190ac27a0ecSDave Kleikamp struct buffer_head *bh = iloc->bh; 4191202ee5dfSTheodore Ts'o struct super_block *sb = inode->i_sb; 4192ac27a0ecSDave Kleikamp int err = 0, rc, block; 4193202ee5dfSTheodore Ts'o int need_datasync = 0, set_large_file = 0; 419408cefc7aSEric W. Biederman uid_t i_uid; 419508cefc7aSEric W. Biederman gid_t i_gid; 4196ac27a0ecSDave Kleikamp 4197202ee5dfSTheodore Ts'o spin_lock(&ei->i_raw_lock); 4198202ee5dfSTheodore Ts'o 4199202ee5dfSTheodore Ts'o /* For fields not tracked in the in-memory inode, 4200ac27a0ecSDave Kleikamp * initialise them to zero for new inodes. */ 420119f5fb7aSTheodore Ts'o if (ext4_test_inode_state(inode, EXT4_STATE_NEW)) 4202617ba13bSMingming Cao memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size); 4203ac27a0ecSDave Kleikamp 4204ff9ddf7eSJan Kara ext4_get_inode_flags(ei); 4205ac27a0ecSDave Kleikamp raw_inode->i_mode = cpu_to_le16(inode->i_mode); 420608cefc7aSEric W. Biederman i_uid = i_uid_read(inode); 420708cefc7aSEric W. Biederman i_gid = i_gid_read(inode); 4208ac27a0ecSDave Kleikamp if (!(test_opt(inode->i_sb, NO_UID32))) { 420908cefc7aSEric W. Biederman raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid)); 421008cefc7aSEric W. Biederman raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid)); 4211ac27a0ecSDave Kleikamp /* 4212ac27a0ecSDave Kleikamp * Fix up interoperability with old kernels. Otherwise, old inodes get 4213ac27a0ecSDave Kleikamp * re-used with the upper 16 bits of the uid/gid intact 4214ac27a0ecSDave Kleikamp */ 4215ac27a0ecSDave Kleikamp if (!ei->i_dtime) { 4216ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 421708cefc7aSEric W. Biederman cpu_to_le16(high_16_bits(i_uid)); 4218ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 421908cefc7aSEric W. Biederman cpu_to_le16(high_16_bits(i_gid)); 4220ac27a0ecSDave Kleikamp } else { 4221ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 0; 4222ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 0; 4223ac27a0ecSDave Kleikamp } 4224ac27a0ecSDave Kleikamp } else { 422508cefc7aSEric W. Biederman raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid)); 422608cefc7aSEric W. Biederman raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid)); 4227ac27a0ecSDave Kleikamp raw_inode->i_uid_high = 0; 4228ac27a0ecSDave Kleikamp raw_inode->i_gid_high = 0; 4229ac27a0ecSDave Kleikamp } 4230ac27a0ecSDave Kleikamp raw_inode->i_links_count = cpu_to_le16(inode->i_nlink); 4231ef7f3835SKalpak Shah 4232ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode); 4233ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode); 4234ef7f3835SKalpak Shah EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode); 4235ef7f3835SKalpak Shah EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode); 4236ef7f3835SKalpak Shah 4237bce92d56SLi Xi err = ext4_inode_blocks_set(handle, raw_inode, ei); 4238bce92d56SLi Xi if (err) { 4239202ee5dfSTheodore Ts'o spin_unlock(&ei->i_raw_lock); 42400fc1b451SAneesh Kumar K.V goto out_brelse; 4241202ee5dfSTheodore Ts'o } 4242ac27a0ecSDave Kleikamp raw_inode->i_dtime = cpu_to_le32(ei->i_dtime); 4243353eb83cSTheodore Ts'o raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF); 4244ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) 4245a1ddeb7eSBadari Pulavarty raw_inode->i_file_acl_high = 4246a1ddeb7eSBadari Pulavarty cpu_to_le16(ei->i_file_acl >> 32); 42477973c0c1SAneesh Kumar K.V raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl); 4248b71fc079SJan Kara if (ei->i_disksize != ext4_isize(raw_inode)) { 4249a48380f7SAneesh Kumar K.V ext4_isize_set(raw_inode, ei->i_disksize); 4250b71fc079SJan Kara need_datasync = 1; 4251b71fc079SJan Kara } 4252ac27a0ecSDave Kleikamp if (ei->i_disksize > 0x7fffffffULL) { 4253617ba13bSMingming Cao if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, 4254617ba13bSMingming Cao EXT4_FEATURE_RO_COMPAT_LARGE_FILE) || 4255617ba13bSMingming Cao EXT4_SB(sb)->s_es->s_rev_level == 4256202ee5dfSTheodore Ts'o cpu_to_le32(EXT4_GOOD_OLD_REV)) 4257202ee5dfSTheodore Ts'o set_large_file = 1; 4258ac27a0ecSDave Kleikamp } 4259ac27a0ecSDave Kleikamp raw_inode->i_generation = cpu_to_le32(inode->i_generation); 4260ac27a0ecSDave Kleikamp if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) { 4261ac27a0ecSDave Kleikamp if (old_valid_dev(inode->i_rdev)) { 4262ac27a0ecSDave Kleikamp raw_inode->i_block[0] = 4263ac27a0ecSDave Kleikamp cpu_to_le32(old_encode_dev(inode->i_rdev)); 4264ac27a0ecSDave Kleikamp raw_inode->i_block[1] = 0; 4265ac27a0ecSDave Kleikamp } else { 4266ac27a0ecSDave Kleikamp raw_inode->i_block[0] = 0; 4267ac27a0ecSDave Kleikamp raw_inode->i_block[1] = 4268ac27a0ecSDave Kleikamp cpu_to_le32(new_encode_dev(inode->i_rdev)); 4269ac27a0ecSDave Kleikamp raw_inode->i_block[2] = 0; 4270ac27a0ecSDave Kleikamp } 4271f19d5870STao Ma } else if (!ext4_has_inline_data(inode)) { 4272de9a55b8STheodore Ts'o for (block = 0; block < EXT4_N_BLOCKS; block++) 4273ac27a0ecSDave Kleikamp raw_inode->i_block[block] = ei->i_data[block]; 4274f19d5870STao Ma } 4275ac27a0ecSDave Kleikamp 4276ed3654ebSTheodore Ts'o if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) { 427725ec56b5SJean Noel Cordenner raw_inode->i_disk_version = cpu_to_le32(inode->i_version); 427825ec56b5SJean Noel Cordenner if (ei->i_extra_isize) { 427925ec56b5SJean Noel Cordenner if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi)) 428025ec56b5SJean Noel Cordenner raw_inode->i_version_hi = 428125ec56b5SJean Noel Cordenner cpu_to_le32(inode->i_version >> 32); 4282c4f65706STheodore Ts'o raw_inode->i_extra_isize = 4283c4f65706STheodore Ts'o cpu_to_le16(ei->i_extra_isize); 4284c4f65706STheodore Ts'o } 428525ec56b5SJean Noel Cordenner } 428625ec56b5SJean Noel Cordenner 4287814525f4SDarrick J. Wong ext4_inode_csum_set(inode, raw_inode, ei); 4288814525f4SDarrick J. Wong 4289202ee5dfSTheodore Ts'o spin_unlock(&ei->i_raw_lock); 4290202ee5dfSTheodore Ts'o 42910390131bSFrank Mayhar BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); 429273b50c1cSCurt Wohlgemuth rc = ext4_handle_dirty_metadata(handle, NULL, bh); 4293ac27a0ecSDave Kleikamp if (!err) 4294ac27a0ecSDave Kleikamp err = rc; 429519f5fb7aSTheodore Ts'o ext4_clear_inode_state(inode, EXT4_STATE_NEW); 4296202ee5dfSTheodore Ts'o if (set_large_file) { 42975d601255Sliang xie BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access"); 4298202ee5dfSTheodore Ts'o err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh); 4299202ee5dfSTheodore Ts'o if (err) 4300202ee5dfSTheodore Ts'o goto out_brelse; 4301202ee5dfSTheodore Ts'o ext4_update_dynamic_rev(sb); 4302202ee5dfSTheodore Ts'o EXT4_SET_RO_COMPAT_FEATURE(sb, 4303202ee5dfSTheodore Ts'o EXT4_FEATURE_RO_COMPAT_LARGE_FILE); 4304202ee5dfSTheodore Ts'o ext4_handle_sync(handle); 4305202ee5dfSTheodore Ts'o err = ext4_handle_dirty_super(handle, sb); 4306202ee5dfSTheodore Ts'o } 4307b71fc079SJan Kara ext4_update_inode_fsync_trans(handle, inode, need_datasync); 4308ac27a0ecSDave Kleikamp out_brelse: 4309ac27a0ecSDave Kleikamp brelse(bh); 4310617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 4311ac27a0ecSDave Kleikamp return err; 4312ac27a0ecSDave Kleikamp } 4313ac27a0ecSDave Kleikamp 4314ac27a0ecSDave Kleikamp /* 4315617ba13bSMingming Cao * ext4_write_inode() 4316ac27a0ecSDave Kleikamp * 4317ac27a0ecSDave Kleikamp * We are called from a few places: 4318ac27a0ecSDave Kleikamp * 431987f7e416STheodore Ts'o * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files. 4320ac27a0ecSDave Kleikamp * Here, there will be no transaction running. We wait for any running 43214907cb7bSAnatol Pomozov * transaction to commit. 4322ac27a0ecSDave Kleikamp * 432387f7e416STheodore Ts'o * - Within flush work (sys_sync(), kupdate and such). 432487f7e416STheodore Ts'o * We wait on commit, if told to. 4325ac27a0ecSDave Kleikamp * 432687f7e416STheodore Ts'o * - Within iput_final() -> write_inode_now() 432787f7e416STheodore Ts'o * We wait on commit, if told to. 4328ac27a0ecSDave Kleikamp * 4329ac27a0ecSDave Kleikamp * In all cases it is actually safe for us to return without doing anything, 4330ac27a0ecSDave Kleikamp * because the inode has been copied into a raw inode buffer in 433187f7e416STheodore Ts'o * ext4_mark_inode_dirty(). This is a correctness thing for WB_SYNC_ALL 433287f7e416STheodore Ts'o * writeback. 4333ac27a0ecSDave Kleikamp * 4334ac27a0ecSDave Kleikamp * Note that we are absolutely dependent upon all inode dirtiers doing the 4335ac27a0ecSDave Kleikamp * right thing: they *must* call mark_inode_dirty() after dirtying info in 4336ac27a0ecSDave Kleikamp * which we are interested. 4337ac27a0ecSDave Kleikamp * 4338ac27a0ecSDave Kleikamp * It would be a bug for them to not do this. The code: 4339ac27a0ecSDave Kleikamp * 4340ac27a0ecSDave Kleikamp * mark_inode_dirty(inode) 4341ac27a0ecSDave Kleikamp * stuff(); 4342ac27a0ecSDave Kleikamp * inode->i_size = expr; 4343ac27a0ecSDave Kleikamp * 434487f7e416STheodore Ts'o * is in error because write_inode() could occur while `stuff()' is running, 434587f7e416STheodore Ts'o * and the new i_size will be lost. Plus the inode will no longer be on the 434687f7e416STheodore Ts'o * superblock's dirty inode list. 4347ac27a0ecSDave Kleikamp */ 4348a9185b41SChristoph Hellwig int ext4_write_inode(struct inode *inode, struct writeback_control *wbc) 4349ac27a0ecSDave Kleikamp { 435091ac6f43SFrank Mayhar int err; 435191ac6f43SFrank Mayhar 435287f7e416STheodore Ts'o if (WARN_ON_ONCE(current->flags & PF_MEMALLOC)) 4353ac27a0ecSDave Kleikamp return 0; 4354ac27a0ecSDave Kleikamp 435591ac6f43SFrank Mayhar if (EXT4_SB(inode->i_sb)->s_journal) { 4356617ba13bSMingming Cao if (ext4_journal_current_handle()) { 4357b38bd33aSMingming Cao jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n"); 4358ac27a0ecSDave Kleikamp dump_stack(); 4359ac27a0ecSDave Kleikamp return -EIO; 4360ac27a0ecSDave Kleikamp } 4361ac27a0ecSDave Kleikamp 436210542c22SJan Kara /* 436310542c22SJan Kara * No need to force transaction in WB_SYNC_NONE mode. Also 436410542c22SJan Kara * ext4_sync_fs() will force the commit after everything is 436510542c22SJan Kara * written. 436610542c22SJan Kara */ 436710542c22SJan Kara if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync) 4368ac27a0ecSDave Kleikamp return 0; 4369ac27a0ecSDave Kleikamp 437091ac6f43SFrank Mayhar err = ext4_force_commit(inode->i_sb); 437191ac6f43SFrank Mayhar } else { 437291ac6f43SFrank Mayhar struct ext4_iloc iloc; 437391ac6f43SFrank Mayhar 43748b472d73SCurt Wohlgemuth err = __ext4_get_inode_loc(inode, &iloc, 0); 437591ac6f43SFrank Mayhar if (err) 437691ac6f43SFrank Mayhar return err; 437710542c22SJan Kara /* 437810542c22SJan Kara * sync(2) will flush the whole buffer cache. No need to do 437910542c22SJan Kara * it here separately for each inode. 438010542c22SJan Kara */ 438110542c22SJan Kara if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync) 4382830156c7SFrank Mayhar sync_dirty_buffer(iloc.bh); 4383830156c7SFrank Mayhar if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) { 4384c398eda0STheodore Ts'o EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr, 4385c398eda0STheodore Ts'o "IO error syncing inode"); 4386830156c7SFrank Mayhar err = -EIO; 4387830156c7SFrank Mayhar } 4388fd2dd9fbSCurt Wohlgemuth brelse(iloc.bh); 438991ac6f43SFrank Mayhar } 439091ac6f43SFrank Mayhar return err; 4391ac27a0ecSDave Kleikamp } 4392ac27a0ecSDave Kleikamp 4393ac27a0ecSDave Kleikamp /* 439453e87268SJan Kara * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate 439553e87268SJan Kara * buffers that are attached to a page stradding i_size and are undergoing 439653e87268SJan Kara * commit. In that case we have to wait for commit to finish and try again. 439753e87268SJan Kara */ 439853e87268SJan Kara static void ext4_wait_for_tail_page_commit(struct inode *inode) 439953e87268SJan Kara { 440053e87268SJan Kara struct page *page; 440153e87268SJan Kara unsigned offset; 440253e87268SJan Kara journal_t *journal = EXT4_SB(inode->i_sb)->s_journal; 440353e87268SJan Kara tid_t commit_tid = 0; 440453e87268SJan Kara int ret; 440553e87268SJan Kara 440653e87268SJan Kara offset = inode->i_size & (PAGE_CACHE_SIZE - 1); 440753e87268SJan Kara /* 440853e87268SJan Kara * All buffers in the last page remain valid? Then there's nothing to 440953e87268SJan Kara * do. We do the check mainly to optimize the common PAGE_CACHE_SIZE == 441053e87268SJan Kara * blocksize case 441153e87268SJan Kara */ 441253e87268SJan Kara if (offset > PAGE_CACHE_SIZE - (1 << inode->i_blkbits)) 441353e87268SJan Kara return; 441453e87268SJan Kara while (1) { 441553e87268SJan Kara page = find_lock_page(inode->i_mapping, 441653e87268SJan Kara inode->i_size >> PAGE_CACHE_SHIFT); 441753e87268SJan Kara if (!page) 441853e87268SJan Kara return; 4419ca99fdd2SLukas Czerner ret = __ext4_journalled_invalidatepage(page, offset, 4420ca99fdd2SLukas Czerner PAGE_CACHE_SIZE - offset); 442153e87268SJan Kara unlock_page(page); 442253e87268SJan Kara page_cache_release(page); 442353e87268SJan Kara if (ret != -EBUSY) 442453e87268SJan Kara return; 442553e87268SJan Kara commit_tid = 0; 442653e87268SJan Kara read_lock(&journal->j_state_lock); 442753e87268SJan Kara if (journal->j_committing_transaction) 442853e87268SJan Kara commit_tid = journal->j_committing_transaction->t_tid; 442953e87268SJan Kara read_unlock(&journal->j_state_lock); 443053e87268SJan Kara if (commit_tid) 443153e87268SJan Kara jbd2_log_wait_commit(journal, commit_tid); 443253e87268SJan Kara } 443353e87268SJan Kara } 443453e87268SJan Kara 443553e87268SJan Kara /* 4436617ba13bSMingming Cao * ext4_setattr() 4437ac27a0ecSDave Kleikamp * 4438ac27a0ecSDave Kleikamp * Called from notify_change. 4439ac27a0ecSDave Kleikamp * 4440ac27a0ecSDave Kleikamp * We want to trap VFS attempts to truncate the file as soon as 4441ac27a0ecSDave Kleikamp * possible. In particular, we want to make sure that when the VFS 4442ac27a0ecSDave Kleikamp * shrinks i_size, we put the inode on the orphan list and modify 4443ac27a0ecSDave Kleikamp * i_disksize immediately, so that during the subsequent flushing of 4444ac27a0ecSDave Kleikamp * dirty pages and freeing of disk blocks, we can guarantee that any 4445ac27a0ecSDave Kleikamp * commit will leave the blocks being flushed in an unused state on 4446ac27a0ecSDave Kleikamp * disk. (On recovery, the inode will get truncated and the blocks will 4447ac27a0ecSDave Kleikamp * be freed, so we have a strong guarantee that no future commit will 4448ac27a0ecSDave Kleikamp * leave these blocks visible to the user.) 4449ac27a0ecSDave Kleikamp * 4450678aaf48SJan Kara * Another thing we have to assure is that if we are in ordered mode 4451678aaf48SJan Kara * and inode is still attached to the committing transaction, we must 4452678aaf48SJan Kara * we start writeout of all the dirty pages which are being truncated. 4453678aaf48SJan Kara * This way we are sure that all the data written in the previous 4454678aaf48SJan Kara * transaction are already on disk (truncate waits for pages under 4455678aaf48SJan Kara * writeback). 4456678aaf48SJan Kara * 4457678aaf48SJan Kara * Called with inode->i_mutex down. 4458ac27a0ecSDave Kleikamp */ 4459617ba13bSMingming Cao int ext4_setattr(struct dentry *dentry, struct iattr *attr) 4460ac27a0ecSDave Kleikamp { 4461ac27a0ecSDave Kleikamp struct inode *inode = dentry->d_inode; 4462ac27a0ecSDave Kleikamp int error, rc = 0; 44633d287de3SDmitry Monakhov int orphan = 0; 4464ac27a0ecSDave Kleikamp const unsigned int ia_valid = attr->ia_valid; 4465ac27a0ecSDave Kleikamp 4466ac27a0ecSDave Kleikamp error = inode_change_ok(inode, attr); 4467ac27a0ecSDave Kleikamp if (error) 4468ac27a0ecSDave Kleikamp return error; 4469ac27a0ecSDave Kleikamp 447012755627SDmitry Monakhov if (is_quota_modification(inode, attr)) 4471871a2931SChristoph Hellwig dquot_initialize(inode); 447208cefc7aSEric W. Biederman if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) || 447308cefc7aSEric W. Biederman (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) { 4474ac27a0ecSDave Kleikamp handle_t *handle; 4475ac27a0ecSDave Kleikamp 4476ac27a0ecSDave Kleikamp /* (user+group)*(old+new) structure, inode write (sb, 4477ac27a0ecSDave Kleikamp * inode block, ? - but truncate inode update has it) */ 44789924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_QUOTA, 44799924a92aSTheodore Ts'o (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) + 4480194074acSDmitry Monakhov EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3); 4481ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 4482ac27a0ecSDave Kleikamp error = PTR_ERR(handle); 4483ac27a0ecSDave Kleikamp goto err_out; 4484ac27a0ecSDave Kleikamp } 4485b43fa828SChristoph Hellwig error = dquot_transfer(inode, attr); 4486ac27a0ecSDave Kleikamp if (error) { 4487617ba13bSMingming Cao ext4_journal_stop(handle); 4488ac27a0ecSDave Kleikamp return error; 4489ac27a0ecSDave Kleikamp } 4490ac27a0ecSDave Kleikamp /* Update corresponding info in inode so that everything is in 4491ac27a0ecSDave Kleikamp * one transaction */ 4492ac27a0ecSDave Kleikamp if (attr->ia_valid & ATTR_UID) 4493ac27a0ecSDave Kleikamp inode->i_uid = attr->ia_uid; 4494ac27a0ecSDave Kleikamp if (attr->ia_valid & ATTR_GID) 4495ac27a0ecSDave Kleikamp inode->i_gid = attr->ia_gid; 4496617ba13bSMingming Cao error = ext4_mark_inode_dirty(handle, inode); 4497617ba13bSMingming Cao ext4_journal_stop(handle); 4498ac27a0ecSDave Kleikamp } 4499ac27a0ecSDave Kleikamp 45005208386cSJan Kara if (attr->ia_valid & ATTR_SIZE && attr->ia_size != inode->i_size) { 45015208386cSJan Kara handle_t *handle; 4502562c72aaSChristoph Hellwig 450312e9b892SDmitry Monakhov if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) { 4504e2b46574SEric Sandeen struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 4505e2b46574SEric Sandeen 45060c095c7fSTheodore Ts'o if (attr->ia_size > sbi->s_bitmap_maxbytes) 45070c095c7fSTheodore Ts'o return -EFBIG; 4508e2b46574SEric Sandeen } 4509dff6efc3SChristoph Hellwig 4510dff6efc3SChristoph Hellwig if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size) 4511dff6efc3SChristoph Hellwig inode_inc_iversion(inode); 4512dff6efc3SChristoph Hellwig 4513ac27a0ecSDave Kleikamp if (S_ISREG(inode->i_mode) && 4514072bd7eaSTheodore Ts'o (attr->ia_size < inode->i_size)) { 45155208386cSJan Kara if (ext4_should_order_data(inode)) { 45165208386cSJan Kara error = ext4_begin_ordered_truncate(inode, 45175208386cSJan Kara attr->ia_size); 45185208386cSJan Kara if (error) 45195208386cSJan Kara goto err_out; 45205208386cSJan Kara } 45219924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 3); 4522ac27a0ecSDave Kleikamp if (IS_ERR(handle)) { 4523ac27a0ecSDave Kleikamp error = PTR_ERR(handle); 4524ac27a0ecSDave Kleikamp goto err_out; 4525ac27a0ecSDave Kleikamp } 45263d287de3SDmitry Monakhov if (ext4_handle_valid(handle)) { 4527617ba13bSMingming Cao error = ext4_orphan_add(handle, inode); 45283d287de3SDmitry Monakhov orphan = 1; 45293d287de3SDmitry Monakhov } 453090e775b7SJan Kara down_write(&EXT4_I(inode)->i_data_sem); 4531617ba13bSMingming Cao EXT4_I(inode)->i_disksize = attr->ia_size; 4532617ba13bSMingming Cao rc = ext4_mark_inode_dirty(handle, inode); 4533ac27a0ecSDave Kleikamp if (!error) 4534ac27a0ecSDave Kleikamp error = rc; 453590e775b7SJan Kara /* 453690e775b7SJan Kara * We have to update i_size under i_data_sem together 453790e775b7SJan Kara * with i_disksize to avoid races with writeback code 453890e775b7SJan Kara * running ext4_wb_update_i_disksize(). 453990e775b7SJan Kara */ 454090e775b7SJan Kara if (!error) 454190e775b7SJan Kara i_size_write(inode, attr->ia_size); 454290e775b7SJan Kara up_write(&EXT4_I(inode)->i_data_sem); 4543617ba13bSMingming Cao ext4_journal_stop(handle); 4544678aaf48SJan Kara if (error) { 4545678aaf48SJan Kara ext4_orphan_del(NULL, inode); 4546678aaf48SJan Kara goto err_out; 4547678aaf48SJan Kara } 4548d6320cbfSJan Kara } else { 4549d6320cbfSJan Kara loff_t oldsize = inode->i_size; 4550d6320cbfSJan Kara 455153e87268SJan Kara i_size_write(inode, attr->ia_size); 4552d6320cbfSJan Kara pagecache_isize_extended(inode, oldsize, inode->i_size); 4553d6320cbfSJan Kara } 455490e775b7SJan Kara 455553e87268SJan Kara /* 455653e87268SJan Kara * Blocks are going to be removed from the inode. Wait 455753e87268SJan Kara * for dio in flight. Temporarily disable 455853e87268SJan Kara * dioread_nolock to prevent livelock. 455953e87268SJan Kara */ 45601b65007eSDmitry Monakhov if (orphan) { 456153e87268SJan Kara if (!ext4_should_journal_data(inode)) { 45621b65007eSDmitry Monakhov ext4_inode_block_unlocked_dio(inode); 45631c9114f9SDmitry Monakhov inode_dio_wait(inode); 45641b65007eSDmitry Monakhov ext4_inode_resume_unlocked_dio(inode); 456553e87268SJan Kara } else 456653e87268SJan Kara ext4_wait_for_tail_page_commit(inode); 45671b65007eSDmitry Monakhov } 456853e87268SJan Kara /* 456953e87268SJan Kara * Truncate pagecache after we've waited for commit 457053e87268SJan Kara * in data=journal mode to make pages freeable. 457153e87268SJan Kara */ 45727caef267SKirill A. Shutemov truncate_pagecache(inode, inode->i_size); 45731c9114f9SDmitry Monakhov } 45745208386cSJan Kara /* 45755208386cSJan Kara * We want to call ext4_truncate() even if attr->ia_size == 45765208386cSJan Kara * inode->i_size for cases like truncation of fallocated space 45775208386cSJan Kara */ 45785208386cSJan Kara if (attr->ia_valid & ATTR_SIZE) 4579072bd7eaSTheodore Ts'o ext4_truncate(inode); 4580ac27a0ecSDave Kleikamp 45811025774cSChristoph Hellwig if (!rc) { 45821025774cSChristoph Hellwig setattr_copy(inode, attr); 45831025774cSChristoph Hellwig mark_inode_dirty(inode); 45841025774cSChristoph Hellwig } 45851025774cSChristoph Hellwig 45861025774cSChristoph Hellwig /* 45871025774cSChristoph Hellwig * If the call to ext4_truncate failed to get a transaction handle at 45881025774cSChristoph Hellwig * all, we need to clean up the in-core orphan list manually. 45891025774cSChristoph Hellwig */ 45903d287de3SDmitry Monakhov if (orphan && inode->i_nlink) 4591617ba13bSMingming Cao ext4_orphan_del(NULL, inode); 4592ac27a0ecSDave Kleikamp 4593ac27a0ecSDave Kleikamp if (!rc && (ia_valid & ATTR_MODE)) 459464e178a7SChristoph Hellwig rc = posix_acl_chmod(inode, inode->i_mode); 4595ac27a0ecSDave Kleikamp 4596ac27a0ecSDave Kleikamp err_out: 4597617ba13bSMingming Cao ext4_std_error(inode->i_sb, error); 4598ac27a0ecSDave Kleikamp if (!error) 4599ac27a0ecSDave Kleikamp error = rc; 4600ac27a0ecSDave Kleikamp return error; 4601ac27a0ecSDave Kleikamp } 4602ac27a0ecSDave Kleikamp 46033e3398a0SMingming Cao int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry, 46043e3398a0SMingming Cao struct kstat *stat) 46053e3398a0SMingming Cao { 46063e3398a0SMingming Cao struct inode *inode; 46078af8eeccSJan Kara unsigned long long delalloc_blocks; 46083e3398a0SMingming Cao 46093e3398a0SMingming Cao inode = dentry->d_inode; 46103e3398a0SMingming Cao generic_fillattr(inode, stat); 46113e3398a0SMingming Cao 46123e3398a0SMingming Cao /* 46139206c561SAndreas Dilger * If there is inline data in the inode, the inode will normally not 46149206c561SAndreas Dilger * have data blocks allocated (it may have an external xattr block). 46159206c561SAndreas Dilger * Report at least one sector for such files, so tools like tar, rsync, 46169206c561SAndreas Dilger * others doen't incorrectly think the file is completely sparse. 46179206c561SAndreas Dilger */ 46189206c561SAndreas Dilger if (unlikely(ext4_has_inline_data(inode))) 46199206c561SAndreas Dilger stat->blocks += (stat->size + 511) >> 9; 46209206c561SAndreas Dilger 46219206c561SAndreas Dilger /* 46223e3398a0SMingming Cao * We can't update i_blocks if the block allocation is delayed 46233e3398a0SMingming Cao * otherwise in the case of system crash before the real block 46243e3398a0SMingming Cao * allocation is done, we will have i_blocks inconsistent with 46253e3398a0SMingming Cao * on-disk file blocks. 46263e3398a0SMingming Cao * We always keep i_blocks updated together with real 46273e3398a0SMingming Cao * allocation. But to not confuse with user, stat 46283e3398a0SMingming Cao * will return the blocks that include the delayed allocation 46293e3398a0SMingming Cao * blocks for this file. 46303e3398a0SMingming Cao */ 463196607551STao Ma delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb), 463296607551STao Ma EXT4_I(inode)->i_reserved_data_blocks); 46338af8eeccSJan Kara stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9); 46343e3398a0SMingming Cao return 0; 46353e3398a0SMingming Cao } 4636ac27a0ecSDave Kleikamp 4637fffb2739SJan Kara static int ext4_index_trans_blocks(struct inode *inode, int lblocks, 4638fffb2739SJan Kara int pextents) 4639a02908f1SMingming Cao { 464012e9b892SDmitry Monakhov if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) 4641fffb2739SJan Kara return ext4_ind_trans_blocks(inode, lblocks); 4642fffb2739SJan Kara return ext4_ext_index_trans_blocks(inode, pextents); 4643a02908f1SMingming Cao } 4644ac51d837STheodore Ts'o 4645a02908f1SMingming Cao /* 4646a02908f1SMingming Cao * Account for index blocks, block groups bitmaps and block group 4647a02908f1SMingming Cao * descriptor blocks if modify datablocks and index blocks 4648a02908f1SMingming Cao * worse case, the indexs blocks spread over different block groups 4649a02908f1SMingming Cao * 4650a02908f1SMingming Cao * If datablocks are discontiguous, they are possible to spread over 46514907cb7bSAnatol Pomozov * different block groups too. If they are contiguous, with flexbg, 4652a02908f1SMingming Cao * they could still across block group boundary. 4653a02908f1SMingming Cao * 4654a02908f1SMingming Cao * Also account for superblock, inode, quota and xattr blocks 4655a02908f1SMingming Cao */ 4656fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks, 4657fffb2739SJan Kara int pextents) 4658a02908f1SMingming Cao { 46598df9675fSTheodore Ts'o ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb); 46608df9675fSTheodore Ts'o int gdpblocks; 4661a02908f1SMingming Cao int idxblocks; 4662a02908f1SMingming Cao int ret = 0; 4663a02908f1SMingming Cao 4664a02908f1SMingming Cao /* 4665fffb2739SJan Kara * How many index blocks need to touch to map @lblocks logical blocks 4666fffb2739SJan Kara * to @pextents physical extents? 4667a02908f1SMingming Cao */ 4668fffb2739SJan Kara idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents); 4669a02908f1SMingming Cao 4670a02908f1SMingming Cao ret = idxblocks; 4671a02908f1SMingming Cao 4672a02908f1SMingming Cao /* 4673a02908f1SMingming Cao * Now let's see how many group bitmaps and group descriptors need 4674a02908f1SMingming Cao * to account 4675a02908f1SMingming Cao */ 4676fffb2739SJan Kara groups = idxblocks + pextents; 4677a02908f1SMingming Cao gdpblocks = groups; 46788df9675fSTheodore Ts'o if (groups > ngroups) 46798df9675fSTheodore Ts'o groups = ngroups; 4680a02908f1SMingming Cao if (groups > EXT4_SB(inode->i_sb)->s_gdb_count) 4681a02908f1SMingming Cao gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count; 4682a02908f1SMingming Cao 4683a02908f1SMingming Cao /* bitmaps and block group descriptor blocks */ 4684a02908f1SMingming Cao ret += groups + gdpblocks; 4685a02908f1SMingming Cao 4686a02908f1SMingming Cao /* Blocks for super block, inode, quota and xattr blocks */ 4687a02908f1SMingming Cao ret += EXT4_META_TRANS_BLOCKS(inode->i_sb); 4688ac27a0ecSDave Kleikamp 4689ac27a0ecSDave Kleikamp return ret; 4690ac27a0ecSDave Kleikamp } 4691ac27a0ecSDave Kleikamp 4692ac27a0ecSDave Kleikamp /* 469325985edcSLucas De Marchi * Calculate the total number of credits to reserve to fit 4694f3bd1f3fSMingming Cao * the modification of a single pages into a single transaction, 4695f3bd1f3fSMingming Cao * which may include multiple chunks of block allocations. 4696a02908f1SMingming Cao * 4697525f4ed8SMingming Cao * This could be called via ext4_write_begin() 4698a02908f1SMingming Cao * 4699525f4ed8SMingming Cao * We need to consider the worse case, when 4700a02908f1SMingming Cao * one new block per extent. 4701a02908f1SMingming Cao */ 4702a02908f1SMingming Cao int ext4_writepage_trans_blocks(struct inode *inode) 4703a02908f1SMingming Cao { 4704a02908f1SMingming Cao int bpp = ext4_journal_blocks_per_page(inode); 4705a02908f1SMingming Cao int ret; 4706a02908f1SMingming Cao 4707fffb2739SJan Kara ret = ext4_meta_trans_blocks(inode, bpp, bpp); 4708a02908f1SMingming Cao 4709a02908f1SMingming Cao /* Account for data blocks for journalled mode */ 4710a02908f1SMingming Cao if (ext4_should_journal_data(inode)) 4711a02908f1SMingming Cao ret += bpp; 4712a02908f1SMingming Cao return ret; 4713a02908f1SMingming Cao } 4714f3bd1f3fSMingming Cao 4715f3bd1f3fSMingming Cao /* 4716f3bd1f3fSMingming Cao * Calculate the journal credits for a chunk of data modification. 4717f3bd1f3fSMingming Cao * 4718f3bd1f3fSMingming Cao * This is called from DIO, fallocate or whoever calling 471979e83036SEric Sandeen * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks. 4720f3bd1f3fSMingming Cao * 4721f3bd1f3fSMingming Cao * journal buffers for data blocks are not included here, as DIO 4722f3bd1f3fSMingming Cao * and fallocate do no need to journal data buffers. 4723f3bd1f3fSMingming Cao */ 4724f3bd1f3fSMingming Cao int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks) 4725f3bd1f3fSMingming Cao { 4726f3bd1f3fSMingming Cao return ext4_meta_trans_blocks(inode, nrblocks, 1); 4727f3bd1f3fSMingming Cao } 4728f3bd1f3fSMingming Cao 4729a02908f1SMingming Cao /* 4730617ba13bSMingming Cao * The caller must have previously called ext4_reserve_inode_write(). 4731ac27a0ecSDave Kleikamp * Give this, we know that the caller already has write access to iloc->bh. 4732ac27a0ecSDave Kleikamp */ 4733617ba13bSMingming Cao int ext4_mark_iloc_dirty(handle_t *handle, 4734617ba13bSMingming Cao struct inode *inode, struct ext4_iloc *iloc) 4735ac27a0ecSDave Kleikamp { 4736ac27a0ecSDave Kleikamp int err = 0; 4737ac27a0ecSDave Kleikamp 4738c64db50eSTheodore Ts'o if (IS_I_VERSION(inode)) 473925ec56b5SJean Noel Cordenner inode_inc_iversion(inode); 474025ec56b5SJean Noel Cordenner 4741ac27a0ecSDave Kleikamp /* the do_update_inode consumes one bh->b_count */ 4742ac27a0ecSDave Kleikamp get_bh(iloc->bh); 4743ac27a0ecSDave Kleikamp 4744dab291afSMingming Cao /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */ 4745830156c7SFrank Mayhar err = ext4_do_update_inode(handle, inode, iloc); 4746ac27a0ecSDave Kleikamp put_bh(iloc->bh); 4747ac27a0ecSDave Kleikamp return err; 4748ac27a0ecSDave Kleikamp } 4749ac27a0ecSDave Kleikamp 4750ac27a0ecSDave Kleikamp /* 4751ac27a0ecSDave Kleikamp * On success, We end up with an outstanding reference count against 4752ac27a0ecSDave Kleikamp * iloc->bh. This _must_ be cleaned up later. 4753ac27a0ecSDave Kleikamp */ 4754ac27a0ecSDave Kleikamp 4755ac27a0ecSDave Kleikamp int 4756617ba13bSMingming Cao ext4_reserve_inode_write(handle_t *handle, struct inode *inode, 4757617ba13bSMingming Cao struct ext4_iloc *iloc) 4758ac27a0ecSDave Kleikamp { 47590390131bSFrank Mayhar int err; 47600390131bSFrank Mayhar 4761617ba13bSMingming Cao err = ext4_get_inode_loc(inode, iloc); 4762ac27a0ecSDave Kleikamp if (!err) { 4763ac27a0ecSDave Kleikamp BUFFER_TRACE(iloc->bh, "get_write_access"); 4764617ba13bSMingming Cao err = ext4_journal_get_write_access(handle, iloc->bh); 4765ac27a0ecSDave Kleikamp if (err) { 4766ac27a0ecSDave Kleikamp brelse(iloc->bh); 4767ac27a0ecSDave Kleikamp iloc->bh = NULL; 4768ac27a0ecSDave Kleikamp } 4769ac27a0ecSDave Kleikamp } 4770617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 4771ac27a0ecSDave Kleikamp return err; 4772ac27a0ecSDave Kleikamp } 4773ac27a0ecSDave Kleikamp 4774ac27a0ecSDave Kleikamp /* 47756dd4ee7cSKalpak Shah * Expand an inode by new_extra_isize bytes. 47766dd4ee7cSKalpak Shah * Returns 0 on success or negative error number on failure. 47776dd4ee7cSKalpak Shah */ 47781d03ec98SAneesh Kumar K.V static int ext4_expand_extra_isize(struct inode *inode, 47791d03ec98SAneesh Kumar K.V unsigned int new_extra_isize, 47801d03ec98SAneesh Kumar K.V struct ext4_iloc iloc, 47811d03ec98SAneesh Kumar K.V handle_t *handle) 47826dd4ee7cSKalpak Shah { 47836dd4ee7cSKalpak Shah struct ext4_inode *raw_inode; 47846dd4ee7cSKalpak Shah struct ext4_xattr_ibody_header *header; 47856dd4ee7cSKalpak Shah 47866dd4ee7cSKalpak Shah if (EXT4_I(inode)->i_extra_isize >= new_extra_isize) 47876dd4ee7cSKalpak Shah return 0; 47886dd4ee7cSKalpak Shah 47896dd4ee7cSKalpak Shah raw_inode = ext4_raw_inode(&iloc); 47906dd4ee7cSKalpak Shah 47916dd4ee7cSKalpak Shah header = IHDR(inode, raw_inode); 47926dd4ee7cSKalpak Shah 47936dd4ee7cSKalpak Shah /* No extended attributes present */ 479419f5fb7aSTheodore Ts'o if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) || 47956dd4ee7cSKalpak Shah header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) { 47966dd4ee7cSKalpak Shah memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0, 47976dd4ee7cSKalpak Shah new_extra_isize); 47986dd4ee7cSKalpak Shah EXT4_I(inode)->i_extra_isize = new_extra_isize; 47996dd4ee7cSKalpak Shah return 0; 48006dd4ee7cSKalpak Shah } 48016dd4ee7cSKalpak Shah 48026dd4ee7cSKalpak Shah /* try to expand with EAs present */ 48036dd4ee7cSKalpak Shah return ext4_expand_extra_isize_ea(inode, new_extra_isize, 48046dd4ee7cSKalpak Shah raw_inode, handle); 48056dd4ee7cSKalpak Shah } 48066dd4ee7cSKalpak Shah 48076dd4ee7cSKalpak Shah /* 4808ac27a0ecSDave Kleikamp * What we do here is to mark the in-core inode as clean with respect to inode 4809ac27a0ecSDave Kleikamp * dirtiness (it may still be data-dirty). 4810ac27a0ecSDave Kleikamp * This means that the in-core inode may be reaped by prune_icache 4811ac27a0ecSDave Kleikamp * without having to perform any I/O. This is a very good thing, 4812ac27a0ecSDave Kleikamp * because *any* task may call prune_icache - even ones which 4813ac27a0ecSDave Kleikamp * have a transaction open against a different journal. 4814ac27a0ecSDave Kleikamp * 4815ac27a0ecSDave Kleikamp * Is this cheating? Not really. Sure, we haven't written the 4816ac27a0ecSDave Kleikamp * inode out, but prune_icache isn't a user-visible syncing function. 4817ac27a0ecSDave Kleikamp * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync) 4818ac27a0ecSDave Kleikamp * we start and wait on commits. 4819ac27a0ecSDave Kleikamp */ 4820617ba13bSMingming Cao int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode) 4821ac27a0ecSDave Kleikamp { 4822617ba13bSMingming Cao struct ext4_iloc iloc; 48236dd4ee7cSKalpak Shah struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); 48246dd4ee7cSKalpak Shah static unsigned int mnt_count; 48256dd4ee7cSKalpak Shah int err, ret; 4826ac27a0ecSDave Kleikamp 4827ac27a0ecSDave Kleikamp might_sleep(); 48287ff9c073STheodore Ts'o trace_ext4_mark_inode_dirty(inode, _RET_IP_); 4829617ba13bSMingming Cao err = ext4_reserve_inode_write(handle, inode, &iloc); 48300390131bSFrank Mayhar if (ext4_handle_valid(handle) && 48310390131bSFrank Mayhar EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize && 483219f5fb7aSTheodore Ts'o !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) { 48336dd4ee7cSKalpak Shah /* 48346dd4ee7cSKalpak Shah * We need extra buffer credits since we may write into EA block 48356dd4ee7cSKalpak Shah * with this same handle. If journal_extend fails, then it will 48366dd4ee7cSKalpak Shah * only result in a minor loss of functionality for that inode. 48376dd4ee7cSKalpak Shah * If this is felt to be critical, then e2fsck should be run to 48386dd4ee7cSKalpak Shah * force a large enough s_min_extra_isize. 48396dd4ee7cSKalpak Shah */ 48406dd4ee7cSKalpak Shah if ((jbd2_journal_extend(handle, 48416dd4ee7cSKalpak Shah EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) { 48426dd4ee7cSKalpak Shah ret = ext4_expand_extra_isize(inode, 48436dd4ee7cSKalpak Shah sbi->s_want_extra_isize, 48446dd4ee7cSKalpak Shah iloc, handle); 48456dd4ee7cSKalpak Shah if (ret) { 484619f5fb7aSTheodore Ts'o ext4_set_inode_state(inode, 484719f5fb7aSTheodore Ts'o EXT4_STATE_NO_EXPAND); 4848c1bddad9SAneesh Kumar K.V if (mnt_count != 4849c1bddad9SAneesh Kumar K.V le16_to_cpu(sbi->s_es->s_mnt_count)) { 485012062dddSEric Sandeen ext4_warning(inode->i_sb, 48516dd4ee7cSKalpak Shah "Unable to expand inode %lu. Delete" 48526dd4ee7cSKalpak Shah " some EAs or run e2fsck.", 48536dd4ee7cSKalpak Shah inode->i_ino); 4854c1bddad9SAneesh Kumar K.V mnt_count = 4855c1bddad9SAneesh Kumar K.V le16_to_cpu(sbi->s_es->s_mnt_count); 48566dd4ee7cSKalpak Shah } 48576dd4ee7cSKalpak Shah } 48586dd4ee7cSKalpak Shah } 48596dd4ee7cSKalpak Shah } 4860ac27a0ecSDave Kleikamp if (!err) 4861617ba13bSMingming Cao err = ext4_mark_iloc_dirty(handle, inode, &iloc); 4862ac27a0ecSDave Kleikamp return err; 4863ac27a0ecSDave Kleikamp } 4864ac27a0ecSDave Kleikamp 4865ac27a0ecSDave Kleikamp /* 4866617ba13bSMingming Cao * ext4_dirty_inode() is called from __mark_inode_dirty() 4867ac27a0ecSDave Kleikamp * 4868ac27a0ecSDave Kleikamp * We're really interested in the case where a file is being extended. 4869ac27a0ecSDave Kleikamp * i_size has been changed by generic_commit_write() and we thus need 4870ac27a0ecSDave Kleikamp * to include the updated inode in the current transaction. 4871ac27a0ecSDave Kleikamp * 48725dd4056dSChristoph Hellwig * Also, dquot_alloc_block() will always dirty the inode when blocks 4873ac27a0ecSDave Kleikamp * are allocated to the file. 4874ac27a0ecSDave Kleikamp * 4875ac27a0ecSDave Kleikamp * If the inode is marked synchronous, we don't honour that here - doing 4876ac27a0ecSDave Kleikamp * so would cause a commit on atime updates, which we don't bother doing. 4877ac27a0ecSDave Kleikamp * We handle synchronous inodes at the highest possible level. 4878ac27a0ecSDave Kleikamp */ 4879aa385729SChristoph Hellwig void ext4_dirty_inode(struct inode *inode, int flags) 4880ac27a0ecSDave Kleikamp { 4881ac27a0ecSDave Kleikamp handle_t *handle; 4882ac27a0ecSDave Kleikamp 48839924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 2); 4884ac27a0ecSDave Kleikamp if (IS_ERR(handle)) 4885ac27a0ecSDave Kleikamp goto out; 4886f3dc272fSCurt Wohlgemuth 4887617ba13bSMingming Cao ext4_mark_inode_dirty(handle, inode); 4888f3dc272fSCurt Wohlgemuth 4889617ba13bSMingming Cao ext4_journal_stop(handle); 4890ac27a0ecSDave Kleikamp out: 4891ac27a0ecSDave Kleikamp return; 4892ac27a0ecSDave Kleikamp } 4893ac27a0ecSDave Kleikamp 4894ac27a0ecSDave Kleikamp #if 0 4895ac27a0ecSDave Kleikamp /* 4896ac27a0ecSDave Kleikamp * Bind an inode's backing buffer_head into this transaction, to prevent 4897ac27a0ecSDave Kleikamp * it from being flushed to disk early. Unlike 4898617ba13bSMingming Cao * ext4_reserve_inode_write, this leaves behind no bh reference and 4899ac27a0ecSDave Kleikamp * returns no iloc structure, so the caller needs to repeat the iloc 4900ac27a0ecSDave Kleikamp * lookup to mark the inode dirty later. 4901ac27a0ecSDave Kleikamp */ 4902617ba13bSMingming Cao static int ext4_pin_inode(handle_t *handle, struct inode *inode) 4903ac27a0ecSDave Kleikamp { 4904617ba13bSMingming Cao struct ext4_iloc iloc; 4905ac27a0ecSDave Kleikamp 4906ac27a0ecSDave Kleikamp int err = 0; 4907ac27a0ecSDave Kleikamp if (handle) { 4908617ba13bSMingming Cao err = ext4_get_inode_loc(inode, &iloc); 4909ac27a0ecSDave Kleikamp if (!err) { 4910ac27a0ecSDave Kleikamp BUFFER_TRACE(iloc.bh, "get_write_access"); 4911dab291afSMingming Cao err = jbd2_journal_get_write_access(handle, iloc.bh); 4912ac27a0ecSDave Kleikamp if (!err) 49130390131bSFrank Mayhar err = ext4_handle_dirty_metadata(handle, 491473b50c1cSCurt Wohlgemuth NULL, 4915ac27a0ecSDave Kleikamp iloc.bh); 4916ac27a0ecSDave Kleikamp brelse(iloc.bh); 4917ac27a0ecSDave Kleikamp } 4918ac27a0ecSDave Kleikamp } 4919617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 4920ac27a0ecSDave Kleikamp return err; 4921ac27a0ecSDave Kleikamp } 4922ac27a0ecSDave Kleikamp #endif 4923ac27a0ecSDave Kleikamp 4924617ba13bSMingming Cao int ext4_change_inode_journal_flag(struct inode *inode, int val) 4925ac27a0ecSDave Kleikamp { 4926ac27a0ecSDave Kleikamp journal_t *journal; 4927ac27a0ecSDave Kleikamp handle_t *handle; 4928ac27a0ecSDave Kleikamp int err; 4929ac27a0ecSDave Kleikamp 4930ac27a0ecSDave Kleikamp /* 4931ac27a0ecSDave Kleikamp * We have to be very careful here: changing a data block's 4932ac27a0ecSDave Kleikamp * journaling status dynamically is dangerous. If we write a 4933ac27a0ecSDave Kleikamp * data block to the journal, change the status and then delete 4934ac27a0ecSDave Kleikamp * that block, we risk forgetting to revoke the old log record 4935ac27a0ecSDave Kleikamp * from the journal and so a subsequent replay can corrupt data. 4936ac27a0ecSDave Kleikamp * So, first we make sure that the journal is empty and that 4937ac27a0ecSDave Kleikamp * nobody is changing anything. 4938ac27a0ecSDave Kleikamp */ 4939ac27a0ecSDave Kleikamp 4940617ba13bSMingming Cao journal = EXT4_JOURNAL(inode); 49410390131bSFrank Mayhar if (!journal) 49420390131bSFrank Mayhar return 0; 4943d699594dSDave Hansen if (is_journal_aborted(journal)) 4944ac27a0ecSDave Kleikamp return -EROFS; 49452aff57b0SYongqiang Yang /* We have to allocate physical blocks for delalloc blocks 49462aff57b0SYongqiang Yang * before flushing journal. otherwise delalloc blocks can not 49472aff57b0SYongqiang Yang * be allocated any more. even more truncate on delalloc blocks 49482aff57b0SYongqiang Yang * could trigger BUG by flushing delalloc blocks in journal. 49492aff57b0SYongqiang Yang * There is no delalloc block in non-journal data mode. 49502aff57b0SYongqiang Yang */ 49512aff57b0SYongqiang Yang if (val && test_opt(inode->i_sb, DELALLOC)) { 49522aff57b0SYongqiang Yang err = ext4_alloc_da_blocks(inode); 49532aff57b0SYongqiang Yang if (err < 0) 49542aff57b0SYongqiang Yang return err; 49552aff57b0SYongqiang Yang } 4956ac27a0ecSDave Kleikamp 495717335dccSDmitry Monakhov /* Wait for all existing dio workers */ 495817335dccSDmitry Monakhov ext4_inode_block_unlocked_dio(inode); 495917335dccSDmitry Monakhov inode_dio_wait(inode); 496017335dccSDmitry Monakhov 4961dab291afSMingming Cao jbd2_journal_lock_updates(journal); 4962ac27a0ecSDave Kleikamp 4963ac27a0ecSDave Kleikamp /* 4964ac27a0ecSDave Kleikamp * OK, there are no updates running now, and all cached data is 4965ac27a0ecSDave Kleikamp * synced to disk. We are now in a completely consistent state 4966ac27a0ecSDave Kleikamp * which doesn't have anything in the journal, and we know that 4967ac27a0ecSDave Kleikamp * no filesystem updates are running, so it is safe to modify 4968ac27a0ecSDave Kleikamp * the inode's in-core data-journaling state flag now. 4969ac27a0ecSDave Kleikamp */ 4970ac27a0ecSDave Kleikamp 4971ac27a0ecSDave Kleikamp if (val) 497212e9b892SDmitry Monakhov ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA); 49735872ddaaSYongqiang Yang else { 49744f879ca6SJan Kara err = jbd2_journal_flush(journal); 49754f879ca6SJan Kara if (err < 0) { 49764f879ca6SJan Kara jbd2_journal_unlock_updates(journal); 49774f879ca6SJan Kara ext4_inode_resume_unlocked_dio(inode); 49784f879ca6SJan Kara return err; 49794f879ca6SJan Kara } 498012e9b892SDmitry Monakhov ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA); 49815872ddaaSYongqiang Yang } 4982617ba13bSMingming Cao ext4_set_aops(inode); 4983ac27a0ecSDave Kleikamp 4984dab291afSMingming Cao jbd2_journal_unlock_updates(journal); 498517335dccSDmitry Monakhov ext4_inode_resume_unlocked_dio(inode); 4986ac27a0ecSDave Kleikamp 4987ac27a0ecSDave Kleikamp /* Finally we can mark the inode as dirty. */ 4988ac27a0ecSDave Kleikamp 49899924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 1); 4990ac27a0ecSDave Kleikamp if (IS_ERR(handle)) 4991ac27a0ecSDave Kleikamp return PTR_ERR(handle); 4992ac27a0ecSDave Kleikamp 4993617ba13bSMingming Cao err = ext4_mark_inode_dirty(handle, inode); 49940390131bSFrank Mayhar ext4_handle_sync(handle); 4995617ba13bSMingming Cao ext4_journal_stop(handle); 4996617ba13bSMingming Cao ext4_std_error(inode->i_sb, err); 4997ac27a0ecSDave Kleikamp 4998ac27a0ecSDave Kleikamp return err; 4999ac27a0ecSDave Kleikamp } 50002e9ee850SAneesh Kumar K.V 50012e9ee850SAneesh Kumar K.V static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh) 50022e9ee850SAneesh Kumar K.V { 50032e9ee850SAneesh Kumar K.V return !buffer_mapped(bh); 50042e9ee850SAneesh Kumar K.V } 50052e9ee850SAneesh Kumar K.V 5006c2ec175cSNick Piggin int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf) 50072e9ee850SAneesh Kumar K.V { 5008c2ec175cSNick Piggin struct page *page = vmf->page; 50092e9ee850SAneesh Kumar K.V loff_t size; 50102e9ee850SAneesh Kumar K.V unsigned long len; 50119ea7df53SJan Kara int ret; 50122e9ee850SAneesh Kumar K.V struct file *file = vma->vm_file; 5013496ad9aaSAl Viro struct inode *inode = file_inode(file); 50142e9ee850SAneesh Kumar K.V struct address_space *mapping = inode->i_mapping; 50159ea7df53SJan Kara handle_t *handle; 50169ea7df53SJan Kara get_block_t *get_block; 50179ea7df53SJan Kara int retries = 0; 50182e9ee850SAneesh Kumar K.V 50198e8ad8a5SJan Kara sb_start_pagefault(inode->i_sb); 5020041bbb6dSTheodore Ts'o file_update_time(vma->vm_file); 50219ea7df53SJan Kara /* Delalloc case is easy... */ 50229ea7df53SJan Kara if (test_opt(inode->i_sb, DELALLOC) && 50239ea7df53SJan Kara !ext4_should_journal_data(inode) && 50249ea7df53SJan Kara !ext4_nonda_switch(inode->i_sb)) { 50259ea7df53SJan Kara do { 50269ea7df53SJan Kara ret = __block_page_mkwrite(vma, vmf, 50279ea7df53SJan Kara ext4_da_get_block_prep); 50289ea7df53SJan Kara } while (ret == -ENOSPC && 50299ea7df53SJan Kara ext4_should_retry_alloc(inode->i_sb, &retries)); 50309ea7df53SJan Kara goto out_ret; 50312e9ee850SAneesh Kumar K.V } 50320e499890SDarrick J. Wong 50330e499890SDarrick J. Wong lock_page(page); 50349ea7df53SJan Kara size = i_size_read(inode); 50359ea7df53SJan Kara /* Page got truncated from under us? */ 50369ea7df53SJan Kara if (page->mapping != mapping || page_offset(page) > size) { 50379ea7df53SJan Kara unlock_page(page); 50389ea7df53SJan Kara ret = VM_FAULT_NOPAGE; 50399ea7df53SJan Kara goto out; 50400e499890SDarrick J. Wong } 50412e9ee850SAneesh Kumar K.V 50422e9ee850SAneesh Kumar K.V if (page->index == size >> PAGE_CACHE_SHIFT) 50432e9ee850SAneesh Kumar K.V len = size & ~PAGE_CACHE_MASK; 50442e9ee850SAneesh Kumar K.V else 50452e9ee850SAneesh Kumar K.V len = PAGE_CACHE_SIZE; 5046a827eaffSAneesh Kumar K.V /* 50479ea7df53SJan Kara * Return if we have all the buffers mapped. This avoids the need to do 50489ea7df53SJan Kara * journal_start/journal_stop which can block and take a long time 5049a827eaffSAneesh Kumar K.V */ 50502e9ee850SAneesh Kumar K.V if (page_has_buffers(page)) { 5051f19d5870STao Ma if (!ext4_walk_page_buffers(NULL, page_buffers(page), 5052f19d5870STao Ma 0, len, NULL, 5053a827eaffSAneesh Kumar K.V ext4_bh_unmapped)) { 50549ea7df53SJan Kara /* Wait so that we don't change page under IO */ 50551d1d1a76SDarrick J. Wong wait_for_stable_page(page); 50569ea7df53SJan Kara ret = VM_FAULT_LOCKED; 50579ea7df53SJan Kara goto out; 50582e9ee850SAneesh Kumar K.V } 5059a827eaffSAneesh Kumar K.V } 5060a827eaffSAneesh Kumar K.V unlock_page(page); 50619ea7df53SJan Kara /* OK, we need to fill the hole... */ 50629ea7df53SJan Kara if (ext4_should_dioread_nolock(inode)) 50639ea7df53SJan Kara get_block = ext4_get_block_write; 50649ea7df53SJan Kara else 50659ea7df53SJan Kara get_block = ext4_get_block; 50669ea7df53SJan Kara retry_alloc: 50679924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 50689924a92aSTheodore Ts'o ext4_writepage_trans_blocks(inode)); 50699ea7df53SJan Kara if (IS_ERR(handle)) { 5070c2ec175cSNick Piggin ret = VM_FAULT_SIGBUS; 50719ea7df53SJan Kara goto out; 50729ea7df53SJan Kara } 50739ea7df53SJan Kara ret = __block_page_mkwrite(vma, vmf, get_block); 50749ea7df53SJan Kara if (!ret && ext4_should_journal_data(inode)) { 5075f19d5870STao Ma if (ext4_walk_page_buffers(handle, page_buffers(page), 0, 50769ea7df53SJan Kara PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) { 50779ea7df53SJan Kara unlock_page(page); 50789ea7df53SJan Kara ret = VM_FAULT_SIGBUS; 5079fcbb5515SYongqiang Yang ext4_journal_stop(handle); 50809ea7df53SJan Kara goto out; 50819ea7df53SJan Kara } 50829ea7df53SJan Kara ext4_set_inode_state(inode, EXT4_STATE_JDATA); 50839ea7df53SJan Kara } 50849ea7df53SJan Kara ext4_journal_stop(handle); 50859ea7df53SJan Kara if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries)) 50869ea7df53SJan Kara goto retry_alloc; 50879ea7df53SJan Kara out_ret: 50889ea7df53SJan Kara ret = block_page_mkwrite_return(ret); 50899ea7df53SJan Kara out: 50908e8ad8a5SJan Kara sb_end_pagefault(inode->i_sb); 50912e9ee850SAneesh Kumar K.V return ret; 50922e9ee850SAneesh Kumar K.V } 5093