Dave Chinner | 0b61f8a | 2018-06-05 19:42:14 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2000-2006 Silicon Graphics, Inc. |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 4 | * Copyright (c) 2012 Red Hat, Inc. |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 5 | * All Rights Reserved. |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 6 | */ |
| 7 | #include "xfs.h" |
| 8 | #include "xfs_fs.h" |
Dave Chinner | 70a9883 | 2013-10-23 10:36:05 +1100 | [diff] [blame] | 9 | #include "xfs_shared.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 10 | #include "xfs_format.h" |
| 11 | #include "xfs_log_format.h" |
| 12 | #include "xfs_trans_resv.h" |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 13 | #include "xfs_bit.h" |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 14 | #include "xfs_mount.h" |
Dave Chinner | 5706278 | 2013-10-15 09:17:51 +1100 | [diff] [blame] | 15 | #include "xfs_da_format.h" |
Darrick J. Wong | 3ab78df | 2016-08-03 11:15:38 +1000 | [diff] [blame] | 16 | #include "xfs_defer.h" |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 17 | #include "xfs_inode.h" |
| 18 | #include "xfs_btree.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 19 | #include "xfs_trans.h" |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 20 | #include "xfs_extfree_item.h" |
| 21 | #include "xfs_alloc.h" |
| 22 | #include "xfs_bmap.h" |
| 23 | #include "xfs_bmap_util.h" |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 24 | #include "xfs_bmap_btree.h" |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 25 | #include "xfs_rtalloc.h" |
| 26 | #include "xfs_error.h" |
| 27 | #include "xfs_quota.h" |
| 28 | #include "xfs_trans_space.h" |
| 29 | #include "xfs_trace.h" |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 30 | #include "xfs_icache.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 31 | #include "xfs_log.h" |
Darrick J. Wong | 9c19464 | 2016-08-03 12:16:05 +1000 | [diff] [blame] | 32 | #include "xfs_rmap_btree.h" |
Darrick J. Wong | f86f403 | 2016-10-03 09:11:41 -0700 | [diff] [blame] | 33 | #include "xfs_iomap.h" |
| 34 | #include "xfs_reflink.h" |
| 35 | #include "xfs_refcount.h" |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 36 | |
| 37 | /* Kernel only BMAP related definitions and functions */ |
| 38 | |
| 39 | /* |
| 40 | * Convert the given file system block to a disk block. We have to treat it |
| 41 | * differently based on whether the file is a real time file or not, because the |
| 42 | * bmap code does. |
| 43 | */ |
| 44 | xfs_daddr_t |
| 45 | xfs_fsb_to_db(struct xfs_inode *ip, xfs_fsblock_t fsb) |
| 46 | { |
| 47 | return (XFS_IS_REALTIME_INODE(ip) ? \ |
| 48 | (xfs_daddr_t)XFS_FSB_TO_BB((ip)->i_mount, (fsb)) : \ |
| 49 | XFS_FSB_TO_DADDR((ip)->i_mount, (fsb))); |
| 50 | } |
| 51 | |
| 52 | /* |
Dave Chinner | 3fbbbea | 2015-11-03 12:27:22 +1100 | [diff] [blame] | 53 | * Routine to zero an extent on disk allocated to the specific inode. |
| 54 | * |
| 55 | * The VFS functions take a linearised filesystem block offset, so we have to |
| 56 | * convert the sparse xfs fsb to the right format first. |
| 57 | * VFS types are real funky, too. |
| 58 | */ |
| 59 | int |
| 60 | xfs_zero_extent( |
| 61 | struct xfs_inode *ip, |
| 62 | xfs_fsblock_t start_fsb, |
| 63 | xfs_off_t count_fsb) |
| 64 | { |
| 65 | struct xfs_mount *mp = ip->i_mount; |
| 66 | xfs_daddr_t sector = xfs_fsb_to_db(ip, start_fsb); |
| 67 | sector_t block = XFS_BB_TO_FSBT(mp, sector); |
Dave Chinner | 3fbbbea | 2015-11-03 12:27:22 +1100 | [diff] [blame] | 68 | |
Matthew Wilcox | 3dc2916 | 2016-03-15 11:20:41 -0600 | [diff] [blame] | 69 | return blkdev_issue_zeroout(xfs_find_bdev_for_inode(VFS_I(ip)), |
| 70 | block << (mp->m_super->s_blocksize_bits - 9), |
| 71 | count_fsb << (mp->m_super->s_blocksize_bits - 9), |
Christoph Hellwig | ee472d8 | 2017-04-05 19:21:08 +0200 | [diff] [blame] | 72 | GFP_NOFS, 0); |
Dave Chinner | 3fbbbea | 2015-11-03 12:27:22 +1100 | [diff] [blame] | 73 | } |
| 74 | |
Dave Chinner | bb9c2e5 | 2017-10-09 11:37:22 -0700 | [diff] [blame] | 75 | #ifdef CONFIG_XFS_RT |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 76 | int |
| 77 | xfs_bmap_rtalloc( |
| 78 | struct xfs_bmalloca *ap) /* bmap alloc argument struct */ |
| 79 | { |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 80 | int error; /* error return value */ |
| 81 | xfs_mount_t *mp; /* mount point structure */ |
| 82 | xfs_extlen_t prod = 0; /* product factor for allocators */ |
Dave Chinner | 0703a8e | 2018-06-08 09:54:22 -0700 | [diff] [blame] | 83 | xfs_extlen_t mod = 0; /* product factor for allocators */ |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 84 | xfs_extlen_t ralen = 0; /* realtime allocation length */ |
| 85 | xfs_extlen_t align; /* minimum allocation alignment */ |
| 86 | xfs_rtblock_t rtb; |
| 87 | |
| 88 | mp = ap->ip->i_mount; |
| 89 | align = xfs_get_extsz_hint(ap->ip); |
| 90 | prod = align / mp->m_sb.sb_rextsize; |
| 91 | error = xfs_bmap_extsize_align(mp, &ap->got, &ap->prev, |
| 92 | align, 1, ap->eof, 0, |
| 93 | ap->conv, &ap->offset, &ap->length); |
| 94 | if (error) |
| 95 | return error; |
| 96 | ASSERT(ap->length); |
| 97 | ASSERT(ap->length % mp->m_sb.sb_rextsize == 0); |
| 98 | |
| 99 | /* |
| 100 | * If the offset & length are not perfectly aligned |
| 101 | * then kill prod, it will just get us in trouble. |
| 102 | */ |
Dave Chinner | 0703a8e | 2018-06-08 09:54:22 -0700 | [diff] [blame] | 103 | div_u64_rem(ap->offset, align, &mod); |
| 104 | if (mod || ap->length % align) |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 105 | prod = 1; |
| 106 | /* |
| 107 | * Set ralen to be the actual requested length in rtextents. |
| 108 | */ |
| 109 | ralen = ap->length / mp->m_sb.sb_rextsize; |
| 110 | /* |
| 111 | * If the old value was close enough to MAXEXTLEN that |
| 112 | * we rounded up to it, cut it back so it's valid again. |
| 113 | * Note that if it's a really large request (bigger than |
| 114 | * MAXEXTLEN), we don't hear about that number, and can't |
| 115 | * adjust the starting point to match it. |
| 116 | */ |
| 117 | if (ralen * mp->m_sb.sb_rextsize >= MAXEXTLEN) |
| 118 | ralen = MAXEXTLEN / mp->m_sb.sb_rextsize; |
| 119 | |
| 120 | /* |
Dave Chinner | 4b680af | 2016-02-08 10:46:51 +1100 | [diff] [blame] | 121 | * Lock out modifications to both the RT bitmap and summary inodes |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 122 | */ |
Darrick J. Wong | f4a0660 | 2016-08-03 11:00:42 +1000 | [diff] [blame] | 123 | xfs_ilock(mp->m_rbmip, XFS_ILOCK_EXCL|XFS_ILOCK_RTBITMAP); |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 124 | xfs_trans_ijoin(ap->tp, mp->m_rbmip, XFS_ILOCK_EXCL); |
Darrick J. Wong | f4a0660 | 2016-08-03 11:00:42 +1000 | [diff] [blame] | 125 | xfs_ilock(mp->m_rsumip, XFS_ILOCK_EXCL|XFS_ILOCK_RTSUM); |
Dave Chinner | 4b680af | 2016-02-08 10:46:51 +1100 | [diff] [blame] | 126 | xfs_trans_ijoin(ap->tp, mp->m_rsumip, XFS_ILOCK_EXCL); |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 127 | |
| 128 | /* |
| 129 | * If it's an allocation to an empty file at offset 0, |
| 130 | * pick an extent that will space things out in the rt area. |
| 131 | */ |
| 132 | if (ap->eof && ap->offset == 0) { |
| 133 | xfs_rtblock_t uninitialized_var(rtx); /* realtime extent no */ |
| 134 | |
| 135 | error = xfs_rtpick_extent(mp, ap->tp, ralen, &rtx); |
| 136 | if (error) |
| 137 | return error; |
| 138 | ap->blkno = rtx * mp->m_sb.sb_rextsize; |
| 139 | } else { |
| 140 | ap->blkno = 0; |
| 141 | } |
| 142 | |
| 143 | xfs_bmap_adjacent(ap); |
| 144 | |
| 145 | /* |
| 146 | * Realtime allocation, done through xfs_rtallocate_extent. |
| 147 | */ |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 148 | do_div(ap->blkno, mp->m_sb.sb_rextsize); |
| 149 | rtb = ap->blkno; |
| 150 | ap->length = ralen; |
Christoph Hellwig | 089ec2f | 2017-02-17 08:21:06 -0800 | [diff] [blame] | 151 | error = xfs_rtallocate_extent(ap->tp, ap->blkno, 1, ap->length, |
| 152 | &ralen, ap->wasdel, prod, &rtb); |
| 153 | if (error) |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 154 | return error; |
Christoph Hellwig | 089ec2f | 2017-02-17 08:21:06 -0800 | [diff] [blame] | 155 | |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 156 | ap->blkno = rtb; |
| 157 | if (ap->blkno != NULLFSBLOCK) { |
| 158 | ap->blkno *= mp->m_sb.sb_rextsize; |
| 159 | ralen *= mp->m_sb.sb_rextsize; |
| 160 | ap->length = ralen; |
| 161 | ap->ip->i_d.di_nblocks += ralen; |
| 162 | xfs_trans_log_inode(ap->tp, ap->ip, XFS_ILOG_CORE); |
| 163 | if (ap->wasdel) |
| 164 | ap->ip->i_delayed_blks -= ralen; |
| 165 | /* |
| 166 | * Adjust the disk quota also. This was reserved |
| 167 | * earlier. |
| 168 | */ |
| 169 | xfs_trans_mod_dquot_byino(ap->tp, ap->ip, |
| 170 | ap->wasdel ? XFS_TRANS_DQ_DELRTBCOUNT : |
| 171 | XFS_TRANS_DQ_RTBCOUNT, (long) ralen); |
Dave Chinner | 3fbbbea | 2015-11-03 12:27:22 +1100 | [diff] [blame] | 172 | |
| 173 | /* Zero the extent if we were asked to do so */ |
Dave Chinner | 292378e | 2016-09-26 08:21:28 +1000 | [diff] [blame] | 174 | if (ap->datatype & XFS_ALLOC_USERDATA_ZERO) { |
Dave Chinner | 3fbbbea | 2015-11-03 12:27:22 +1100 | [diff] [blame] | 175 | error = xfs_zero_extent(ap->ip, ap->blkno, ap->length); |
| 176 | if (error) |
| 177 | return error; |
| 178 | } |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 179 | } else { |
| 180 | ap->length = 0; |
| 181 | } |
| 182 | return 0; |
| 183 | } |
Dave Chinner | bb9c2e5 | 2017-10-09 11:37:22 -0700 | [diff] [blame] | 184 | #endif /* CONFIG_XFS_RT */ |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 185 | |
| 186 | /* |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 187 | * Check if the endoff is outside the last extent. If so the caller will grow |
| 188 | * the allocation to a stripe unit boundary. All offsets are considered outside |
| 189 | * the end of file for an empty fork, so 1 is returned in *eof in that case. |
| 190 | */ |
| 191 | int |
| 192 | xfs_bmap_eof( |
| 193 | struct xfs_inode *ip, |
| 194 | xfs_fileoff_t endoff, |
| 195 | int whichfork, |
| 196 | int *eof) |
| 197 | { |
| 198 | struct xfs_bmbt_irec rec; |
| 199 | int error; |
| 200 | |
| 201 | error = xfs_bmap_last_extent(NULL, ip, whichfork, &rec, eof); |
| 202 | if (error || *eof) |
| 203 | return error; |
| 204 | |
| 205 | *eof = endoff >= rec.br_startoff + rec.br_blockcount; |
| 206 | return 0; |
| 207 | } |
| 208 | |
| 209 | /* |
| 210 | * Extent tree block counting routines. |
| 211 | */ |
| 212 | |
| 213 | /* |
Darrick J. Wong | d29cb3e | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 214 | * Count leaf blocks given a range of extent records. Delayed allocation |
| 215 | * extents are not counted towards the totals. |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 216 | */ |
Christoph Hellwig | e17a5c6 | 2017-08-29 15:44:14 -0700 | [diff] [blame] | 217 | xfs_extnum_t |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 218 | xfs_bmap_count_leaves( |
Darrick J. Wong | d29cb3e | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 219 | struct xfs_ifork *ifp, |
Darrick J. Wong | e7f5d5c | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 220 | xfs_filblks_t *count) |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 221 | { |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 222 | struct xfs_iext_cursor icur; |
Christoph Hellwig | e17a5c6 | 2017-08-29 15:44:14 -0700 | [diff] [blame] | 223 | struct xfs_bmbt_irec got; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 224 | xfs_extnum_t numrecs = 0; |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 225 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 226 | for_each_xfs_iext(ifp, &icur, &got) { |
Christoph Hellwig | e17a5c6 | 2017-08-29 15:44:14 -0700 | [diff] [blame] | 227 | if (!isnullstartblock(got.br_startblock)) { |
| 228 | *count += got.br_blockcount; |
| 229 | numrecs++; |
Darrick J. Wong | d29cb3e | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 230 | } |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 231 | } |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 232 | |
Christoph Hellwig | e17a5c6 | 2017-08-29 15:44:14 -0700 | [diff] [blame] | 233 | return numrecs; |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | /* |
| 237 | * Count leaf blocks given a range of extent records originally |
| 238 | * in btree format. |
| 239 | */ |
| 240 | STATIC void |
| 241 | xfs_bmap_disk_count_leaves( |
| 242 | struct xfs_mount *mp, |
| 243 | struct xfs_btree_block *block, |
| 244 | int numrecs, |
Darrick J. Wong | e7f5d5c | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 245 | xfs_filblks_t *count) |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 246 | { |
| 247 | int b; |
| 248 | xfs_bmbt_rec_t *frp; |
| 249 | |
| 250 | for (b = 1; b <= numrecs; b++) { |
| 251 | frp = XFS_BMBT_REC_ADDR(mp, block, b); |
| 252 | *count += xfs_bmbt_disk_get_blockcount(frp); |
| 253 | } |
| 254 | } |
| 255 | |
| 256 | /* |
| 257 | * Recursively walks each level of a btree |
Zhi Yong Wu | 8be11e9 | 2013-08-12 03:14:52 +0000 | [diff] [blame] | 258 | * to count total fsblocks in use. |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 259 | */ |
Darrick J. Wong | e7f5d5c | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 260 | STATIC int |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 261 | xfs_bmap_count_tree( |
Darrick J. Wong | e7f5d5c | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 262 | struct xfs_mount *mp, |
| 263 | struct xfs_trans *tp, |
| 264 | struct xfs_ifork *ifp, |
| 265 | xfs_fsblock_t blockno, |
| 266 | int levelin, |
| 267 | xfs_extnum_t *nextents, |
| 268 | xfs_filblks_t *count) |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 269 | { |
| 270 | int error; |
Darrick J. Wong | e7f5d5c | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 271 | struct xfs_buf *bp, *nbp; |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 272 | int level = levelin; |
| 273 | __be64 *pp; |
| 274 | xfs_fsblock_t bno = blockno; |
| 275 | xfs_fsblock_t nextbno; |
| 276 | struct xfs_btree_block *block, *nextblock; |
| 277 | int numrecs; |
| 278 | |
| 279 | error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp, XFS_BMAP_BTREE_REF, |
| 280 | &xfs_bmbt_buf_ops); |
| 281 | if (error) |
| 282 | return error; |
| 283 | *count += 1; |
| 284 | block = XFS_BUF_TO_BLOCK(bp); |
| 285 | |
| 286 | if (--level) { |
| 287 | /* Not at node above leaves, count this level of nodes */ |
| 288 | nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib); |
| 289 | while (nextbno != NULLFSBLOCK) { |
| 290 | error = xfs_btree_read_bufl(mp, tp, nextbno, 0, &nbp, |
| 291 | XFS_BMAP_BTREE_REF, |
| 292 | &xfs_bmbt_buf_ops); |
| 293 | if (error) |
| 294 | return error; |
| 295 | *count += 1; |
| 296 | nextblock = XFS_BUF_TO_BLOCK(nbp); |
| 297 | nextbno = be64_to_cpu(nextblock->bb_u.l.bb_rightsib); |
| 298 | xfs_trans_brelse(tp, nbp); |
| 299 | } |
| 300 | |
| 301 | /* Dive to the next level */ |
| 302 | pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]); |
| 303 | bno = be64_to_cpu(*pp); |
Darrick J. Wong | e7f5d5c | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 304 | error = xfs_bmap_count_tree(mp, tp, ifp, bno, level, nextents, |
| 305 | count); |
| 306 | if (error) { |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 307 | xfs_trans_brelse(tp, bp); |
| 308 | XFS_ERROR_REPORT("xfs_bmap_count_tree(1)", |
| 309 | XFS_ERRLEVEL_LOW, mp); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 310 | return -EFSCORRUPTED; |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 311 | } |
| 312 | xfs_trans_brelse(tp, bp); |
| 313 | } else { |
| 314 | /* count all level 1 nodes and their leaves */ |
| 315 | for (;;) { |
| 316 | nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib); |
| 317 | numrecs = be16_to_cpu(block->bb_numrecs); |
Darrick J. Wong | e7f5d5c | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 318 | (*nextents) += numrecs; |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 319 | xfs_bmap_disk_count_leaves(mp, block, numrecs, count); |
| 320 | xfs_trans_brelse(tp, bp); |
| 321 | if (nextbno == NULLFSBLOCK) |
| 322 | break; |
| 323 | bno = nextbno; |
| 324 | error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp, |
| 325 | XFS_BMAP_BTREE_REF, |
| 326 | &xfs_bmbt_buf_ops); |
| 327 | if (error) |
| 328 | return error; |
| 329 | *count += 1; |
| 330 | block = XFS_BUF_TO_BLOCK(bp); |
| 331 | } |
| 332 | } |
| 333 | return 0; |
| 334 | } |
| 335 | |
| 336 | /* |
Darrick J. Wong | d29cb3e | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 337 | * Count fsblocks of the given fork. Delayed allocation extents are |
| 338 | * not counted towards the totals. |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 339 | */ |
Darrick J. Wong | e7f5d5c | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 340 | int |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 341 | xfs_bmap_count_blocks( |
Darrick J. Wong | e7f5d5c | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 342 | struct xfs_trans *tp, |
| 343 | struct xfs_inode *ip, |
| 344 | int whichfork, |
| 345 | xfs_extnum_t *nextents, |
| 346 | xfs_filblks_t *count) |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 347 | { |
Darrick J. Wong | e7f5d5c | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 348 | struct xfs_mount *mp; /* file system mount structure */ |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 349 | __be64 *pp; /* pointer to block address */ |
Darrick J. Wong | e7f5d5c | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 350 | struct xfs_btree_block *block; /* current btree block */ |
| 351 | struct xfs_ifork *ifp; /* fork structure */ |
| 352 | xfs_fsblock_t bno; /* block # of "block" */ |
| 353 | int level; /* btree level, for checking */ |
| 354 | int error; |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 355 | |
| 356 | bno = NULLFSBLOCK; |
| 357 | mp = ip->i_mount; |
Darrick J. Wong | e7f5d5c | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 358 | *nextents = 0; |
| 359 | *count = 0; |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 360 | ifp = XFS_IFORK_PTR(ip, whichfork); |
Darrick J. Wong | e7f5d5c | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 361 | if (!ifp) |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 362 | return 0; |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 363 | |
Darrick J. Wong | e7f5d5c | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 364 | switch (XFS_IFORK_FORMAT(ip, whichfork)) { |
| 365 | case XFS_DINODE_FMT_EXTENTS: |
Christoph Hellwig | e17a5c6 | 2017-08-29 15:44:14 -0700 | [diff] [blame] | 366 | *nextents = xfs_bmap_count_leaves(ifp, count); |
Darrick J. Wong | e7f5d5c | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 367 | return 0; |
| 368 | case XFS_DINODE_FMT_BTREE: |
| 369 | if (!(ifp->if_flags & XFS_IFEXTENTS)) { |
| 370 | error = xfs_iread_extents(tp, ip, whichfork); |
| 371 | if (error) |
| 372 | return error; |
| 373 | } |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 374 | |
Darrick J. Wong | e7f5d5c | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 375 | /* |
| 376 | * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out. |
| 377 | */ |
| 378 | block = ifp->if_broot; |
| 379 | level = be16_to_cpu(block->bb_level); |
| 380 | ASSERT(level > 0); |
| 381 | pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes); |
| 382 | bno = be64_to_cpu(*pp); |
| 383 | ASSERT(bno != NULLFSBLOCK); |
| 384 | ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount); |
| 385 | ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks); |
| 386 | |
| 387 | error = xfs_bmap_count_tree(mp, tp, ifp, bno, level, |
| 388 | nextents, count); |
| 389 | if (error) { |
| 390 | XFS_ERROR_REPORT("xfs_bmap_count_blocks(2)", |
| 391 | XFS_ERRLEVEL_LOW, mp); |
| 392 | return -EFSCORRUPTED; |
| 393 | } |
| 394 | return 0; |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | return 0; |
| 398 | } |
| 399 | |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 400 | static int |
| 401 | xfs_getbmap_report_one( |
| 402 | struct xfs_inode *ip, |
| 403 | struct getbmapx *bmv, |
Christoph Hellwig | 232b5194 | 2017-10-17 14:16:19 -0700 | [diff] [blame] | 404 | struct kgetbmap *out, |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 405 | int64_t bmv_end, |
| 406 | struct xfs_bmbt_irec *got) |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 407 | { |
Christoph Hellwig | 232b5194 | 2017-10-17 14:16:19 -0700 | [diff] [blame] | 408 | struct kgetbmap *p = out + bmv->bmv_entries; |
Christoph Hellwig | d392bc8 | 2018-10-18 17:19:48 +1100 | [diff] [blame] | 409 | bool shared = false; |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 410 | int error; |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 411 | |
Christoph Hellwig | d392bc8 | 2018-10-18 17:19:48 +1100 | [diff] [blame] | 412 | error = xfs_reflink_trim_around_shared(ip, got, &shared); |
Darrick J. Wong | f86f403 | 2016-10-03 09:11:41 -0700 | [diff] [blame] | 413 | if (error) |
| 414 | return error; |
| 415 | |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 416 | if (isnullstartblock(got->br_startblock) || |
| 417 | got->br_startblock == DELAYSTARTBLOCK) { |
Darrick J. Wong | f86f403 | 2016-10-03 09:11:41 -0700 | [diff] [blame] | 418 | /* |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 419 | * Delalloc extents that start beyond EOF can occur due to |
| 420 | * speculative EOF allocation when the delalloc extent is larger |
| 421 | * than the largest freespace extent at conversion time. These |
| 422 | * extents cannot be converted by data writeback, so can exist |
| 423 | * here even if we are not supposed to be finding delalloc |
| 424 | * extents. |
Darrick J. Wong | f86f403 | 2016-10-03 09:11:41 -0700 | [diff] [blame] | 425 | */ |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 426 | if (got->br_startoff < XFS_B_TO_FSB(ip->i_mount, XFS_ISIZE(ip))) |
| 427 | ASSERT((bmv->bmv_iflags & BMV_IF_DELALLOC) != 0); |
| 428 | |
| 429 | p->bmv_oflags |= BMV_OF_DELALLOC; |
| 430 | p->bmv_block = -2; |
Darrick J. Wong | f86f403 | 2016-10-03 09:11:41 -0700 | [diff] [blame] | 431 | } else { |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 432 | p->bmv_block = xfs_fsb_to_db(ip, got->br_startblock); |
Darrick J. Wong | f86f403 | 2016-10-03 09:11:41 -0700 | [diff] [blame] | 433 | } |
| 434 | |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 435 | if (got->br_state == XFS_EXT_UNWRITTEN && |
| 436 | (bmv->bmv_iflags & BMV_IF_PREALLOC)) |
| 437 | p->bmv_oflags |= BMV_OF_PREALLOC; |
| 438 | |
| 439 | if (shared) |
| 440 | p->bmv_oflags |= BMV_OF_SHARED; |
| 441 | |
| 442 | p->bmv_offset = XFS_FSB_TO_BB(ip->i_mount, got->br_startoff); |
| 443 | p->bmv_length = XFS_FSB_TO_BB(ip->i_mount, got->br_blockcount); |
| 444 | |
| 445 | bmv->bmv_offset = p->bmv_offset + p->bmv_length; |
| 446 | bmv->bmv_length = max(0LL, bmv_end - bmv->bmv_offset); |
| 447 | bmv->bmv_entries++; |
Darrick J. Wong | f86f403 | 2016-10-03 09:11:41 -0700 | [diff] [blame] | 448 | return 0; |
| 449 | } |
| 450 | |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 451 | static void |
| 452 | xfs_getbmap_report_hole( |
| 453 | struct xfs_inode *ip, |
| 454 | struct getbmapx *bmv, |
Christoph Hellwig | 232b5194 | 2017-10-17 14:16:19 -0700 | [diff] [blame] | 455 | struct kgetbmap *out, |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 456 | int64_t bmv_end, |
| 457 | xfs_fileoff_t bno, |
| 458 | xfs_fileoff_t end) |
| 459 | { |
Christoph Hellwig | 232b5194 | 2017-10-17 14:16:19 -0700 | [diff] [blame] | 460 | struct kgetbmap *p = out + bmv->bmv_entries; |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 461 | |
| 462 | if (bmv->bmv_iflags & BMV_IF_NO_HOLES) |
| 463 | return; |
| 464 | |
| 465 | p->bmv_block = -1; |
| 466 | p->bmv_offset = XFS_FSB_TO_BB(ip->i_mount, bno); |
| 467 | p->bmv_length = XFS_FSB_TO_BB(ip->i_mount, end - bno); |
| 468 | |
| 469 | bmv->bmv_offset = p->bmv_offset + p->bmv_length; |
| 470 | bmv->bmv_length = max(0LL, bmv_end - bmv->bmv_offset); |
| 471 | bmv->bmv_entries++; |
| 472 | } |
| 473 | |
| 474 | static inline bool |
| 475 | xfs_getbmap_full( |
| 476 | struct getbmapx *bmv) |
| 477 | { |
| 478 | return bmv->bmv_length == 0 || bmv->bmv_entries >= bmv->bmv_count - 1; |
| 479 | } |
| 480 | |
| 481 | static bool |
| 482 | xfs_getbmap_next_rec( |
| 483 | struct xfs_bmbt_irec *rec, |
| 484 | xfs_fileoff_t total_end) |
| 485 | { |
| 486 | xfs_fileoff_t end = rec->br_startoff + rec->br_blockcount; |
| 487 | |
| 488 | if (end == total_end) |
| 489 | return false; |
| 490 | |
| 491 | rec->br_startoff += rec->br_blockcount; |
| 492 | if (!isnullstartblock(rec->br_startblock) && |
| 493 | rec->br_startblock != DELAYSTARTBLOCK) |
| 494 | rec->br_startblock += rec->br_blockcount; |
| 495 | rec->br_blockcount = total_end - end; |
| 496 | return true; |
| 497 | } |
| 498 | |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 499 | /* |
| 500 | * Get inode's extents as described in bmv, and format for output. |
| 501 | * Calls formatter to fill the user's buffer until all extents |
| 502 | * are mapped, until the passed-in bmv->bmv_count slots have |
| 503 | * been filled, or until the formatter short-circuits the loop, |
| 504 | * if it is tracking filled-in extents on its own. |
| 505 | */ |
| 506 | int /* error code */ |
| 507 | xfs_getbmap( |
Christoph Hellwig | 232b5194 | 2017-10-17 14:16:19 -0700 | [diff] [blame] | 508 | struct xfs_inode *ip, |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 509 | struct getbmapx *bmv, /* user bmap structure */ |
Christoph Hellwig | 232b5194 | 2017-10-17 14:16:19 -0700 | [diff] [blame] | 510 | struct kgetbmap *out) |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 511 | { |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 512 | struct xfs_mount *mp = ip->i_mount; |
| 513 | int iflags = bmv->bmv_iflags; |
Christoph Hellwig | 232b5194 | 2017-10-17 14:16:19 -0700 | [diff] [blame] | 514 | int whichfork, lock, error = 0; |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 515 | int64_t bmv_end, max_len; |
| 516 | xfs_fileoff_t bno, first_bno; |
| 517 | struct xfs_ifork *ifp; |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 518 | struct xfs_bmbt_irec got, rec; |
| 519 | xfs_filblks_t len; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 520 | struct xfs_iext_cursor icur; |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 521 | |
Christoph Hellwig | 232b5194 | 2017-10-17 14:16:19 -0700 | [diff] [blame] | 522 | if (bmv->bmv_iflags & ~BMV_IF_VALID) |
| 523 | return -EINVAL; |
Darrick J. Wong | f86f403 | 2016-10-03 09:11:41 -0700 | [diff] [blame] | 524 | #ifndef DEBUG |
| 525 | /* Only allow CoW fork queries if we're debugging. */ |
| 526 | if (iflags & BMV_IF_COWFORK) |
| 527 | return -EINVAL; |
| 528 | #endif |
| 529 | if ((iflags & BMV_IF_ATTRFORK) && (iflags & BMV_IF_COWFORK)) |
| 530 | return -EINVAL; |
| 531 | |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 532 | if (bmv->bmv_length < -1) |
| 533 | return -EINVAL; |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 534 | bmv->bmv_entries = 0; |
| 535 | if (bmv->bmv_length == 0) |
| 536 | return 0; |
| 537 | |
Darrick J. Wong | f86f403 | 2016-10-03 09:11:41 -0700 | [diff] [blame] | 538 | if (iflags & BMV_IF_ATTRFORK) |
| 539 | whichfork = XFS_ATTR_FORK; |
| 540 | else if (iflags & BMV_IF_COWFORK) |
| 541 | whichfork = XFS_COW_FORK; |
| 542 | else |
| 543 | whichfork = XFS_DATA_FORK; |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 544 | ifp = XFS_IFORK_PTR(ip, whichfork); |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 545 | |
| 546 | xfs_ilock(ip, XFS_IOLOCK_SHARED); |
Darrick J. Wong | f86f403 | 2016-10-03 09:11:41 -0700 | [diff] [blame] | 547 | switch (whichfork) { |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 548 | case XFS_ATTR_FORK: |
| 549 | if (!XFS_IFORK_Q(ip)) |
| 550 | goto out_unlock_iolock; |
| 551 | |
| 552 | max_len = 1LL << 32; |
| 553 | lock = xfs_ilock_attr_map_shared(ip); |
| 554 | break; |
| 555 | case XFS_COW_FORK: |
| 556 | /* No CoW fork? Just return */ |
| 557 | if (!ifp) |
| 558 | goto out_unlock_iolock; |
| 559 | |
| 560 | if (xfs_get_cowextsz_hint(ip)) |
| 561 | max_len = mp->m_super->s_maxbytes; |
| 562 | else |
| 563 | max_len = XFS_ISIZE(ip); |
| 564 | |
| 565 | lock = XFS_ILOCK_SHARED; |
| 566 | xfs_ilock(ip, lock); |
| 567 | break; |
Darrick J. Wong | f86f403 | 2016-10-03 09:11:41 -0700 | [diff] [blame] | 568 | case XFS_DATA_FORK: |
Christoph Hellwig | efa70be | 2013-12-18 02:14:39 -0800 | [diff] [blame] | 569 | if (!(iflags & BMV_IF_DELALLOC) && |
| 570 | (ip->i_delayed_blks || XFS_ISIZE(ip) > ip->i_d.di_size)) { |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 571 | error = filemap_write_and_wait(VFS_I(ip)->i_mapping); |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 572 | if (error) |
| 573 | goto out_unlock_iolock; |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 574 | |
Christoph Hellwig | efa70be | 2013-12-18 02:14:39 -0800 | [diff] [blame] | 575 | /* |
| 576 | * Even after flushing the inode, there can still be |
| 577 | * delalloc blocks on the inode beyond EOF due to |
| 578 | * speculative preallocation. These are not removed |
| 579 | * until the release function is called or the inode |
| 580 | * is inactivated. Hence we cannot assert here that |
| 581 | * ip->i_delayed_blks == 0. |
| 582 | */ |
| 583 | } |
| 584 | |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 585 | if (xfs_get_extsz_hint(ip) || |
| 586 | (ip->i_d.di_flags & |
| 587 | (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND))) |
| 588 | max_len = mp->m_super->s_maxbytes; |
| 589 | else |
| 590 | max_len = XFS_ISIZE(ip); |
| 591 | |
Christoph Hellwig | efa70be | 2013-12-18 02:14:39 -0800 | [diff] [blame] | 592 | lock = xfs_ilock_data_map_shared(ip); |
Darrick J. Wong | f86f403 | 2016-10-03 09:11:41 -0700 | [diff] [blame] | 593 | break; |
Christoph Hellwig | efa70be | 2013-12-18 02:14:39 -0800 | [diff] [blame] | 594 | } |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 595 | |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 596 | switch (XFS_IFORK_FORMAT(ip, whichfork)) { |
| 597 | case XFS_DINODE_FMT_EXTENTS: |
| 598 | case XFS_DINODE_FMT_BTREE: |
| 599 | break; |
| 600 | case XFS_DINODE_FMT_LOCAL: |
| 601 | /* Local format inode forks report no extents. */ |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 602 | goto out_unlock_ilock; |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 603 | default: |
| 604 | error = -EINVAL; |
| 605 | goto out_unlock_ilock; |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 606 | } |
| 607 | |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 608 | if (bmv->bmv_length == -1) { |
| 609 | max_len = XFS_FSB_TO_BB(mp, XFS_B_TO_FSB(mp, max_len)); |
| 610 | bmv->bmv_length = max(0LL, max_len - bmv->bmv_offset); |
| 611 | } |
| 612 | |
| 613 | bmv_end = bmv->bmv_offset + bmv->bmv_length; |
| 614 | |
| 615 | first_bno = bno = XFS_BB_TO_FSBT(mp, bmv->bmv_offset); |
| 616 | len = XFS_BB_TO_FSB(mp, bmv->bmv_length); |
| 617 | |
| 618 | if (!(ifp->if_flags & XFS_IFEXTENTS)) { |
| 619 | error = xfs_iread_extents(NULL, ip, whichfork); |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 620 | if (error) |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 621 | goto out_unlock_ilock; |
| 622 | } |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 623 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 624 | if (!xfs_iext_lookup_extent(ip, ifp, bno, &icur, &got)) { |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 625 | /* |
| 626 | * Report a whole-file hole if the delalloc flag is set to |
| 627 | * stay compatible with the old implementation. |
| 628 | */ |
| 629 | if (iflags & BMV_IF_DELALLOC) |
| 630 | xfs_getbmap_report_hole(ip, bmv, out, bmv_end, bno, |
| 631 | XFS_B_TO_FSB(mp, XFS_ISIZE(ip))); |
| 632 | goto out_unlock_ilock; |
| 633 | } |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 634 | |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 635 | while (!xfs_getbmap_full(bmv)) { |
| 636 | xfs_trim_extent(&got, first_bno, len); |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 637 | |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 638 | /* |
| 639 | * Report an entry for a hole if this extent doesn't directly |
| 640 | * follow the previous one. |
| 641 | */ |
| 642 | if (got.br_startoff > bno) { |
| 643 | xfs_getbmap_report_hole(ip, bmv, out, bmv_end, bno, |
| 644 | got.br_startoff); |
| 645 | if (xfs_getbmap_full(bmv)) |
| 646 | break; |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 647 | } |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 648 | |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 649 | /* |
| 650 | * In order to report shared extents accurately, we report each |
| 651 | * distinct shared / unshared part of a single bmbt record with |
| 652 | * an individual getbmapx record. |
| 653 | */ |
| 654 | bno = got.br_startoff + got.br_blockcount; |
| 655 | rec = got; |
| 656 | do { |
| 657 | error = xfs_getbmap_report_one(ip, bmv, out, bmv_end, |
| 658 | &rec); |
| 659 | if (error || xfs_getbmap_full(bmv)) |
| 660 | goto out_unlock_ilock; |
| 661 | } while (xfs_getbmap_next_rec(&rec, bno)); |
| 662 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 663 | if (!xfs_iext_next_extent(ifp, &icur, &got)) { |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 664 | xfs_fileoff_t end = XFS_B_TO_FSB(mp, XFS_ISIZE(ip)); |
| 665 | |
| 666 | out[bmv->bmv_entries - 1].bmv_oflags |= BMV_OF_LAST; |
| 667 | |
| 668 | if (whichfork != XFS_ATTR_FORK && bno < end && |
| 669 | !xfs_getbmap_full(bmv)) { |
| 670 | xfs_getbmap_report_hole(ip, bmv, out, bmv_end, |
| 671 | bno, end); |
| 672 | } |
| 673 | break; |
| 674 | } |
| 675 | |
| 676 | if (bno >= first_bno + len) |
| 677 | break; |
| 678 | } |
| 679 | |
| 680 | out_unlock_ilock: |
Christoph Hellwig | 01f4f32 | 2013-12-06 12:30:08 -0800 | [diff] [blame] | 681 | xfs_iunlock(ip, lock); |
Christoph Hellwig | abbf9e8 | 2017-10-17 14:16:18 -0700 | [diff] [blame] | 682 | out_unlock_iolock: |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 683 | xfs_iunlock(ip, XFS_IOLOCK_SHARED); |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 684 | return error; |
| 685 | } |
| 686 | |
| 687 | /* |
Christoph Hellwig | e2ac836 | 2018-06-21 23:24:38 -0700 | [diff] [blame] | 688 | * Dead simple method of punching delalyed allocation blocks from a range in |
| 689 | * the inode. This will always punch out both the start and end blocks, even |
| 690 | * if the ranges only partially overlap them, so it is up to the caller to |
| 691 | * ensure that partial blocks are not passed in. |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 692 | */ |
| 693 | int |
| 694 | xfs_bmap_punch_delalloc_range( |
| 695 | struct xfs_inode *ip, |
| 696 | xfs_fileoff_t start_fsb, |
| 697 | xfs_fileoff_t length) |
| 698 | { |
Christoph Hellwig | e2ac836 | 2018-06-21 23:24:38 -0700 | [diff] [blame] | 699 | struct xfs_ifork *ifp = &ip->i_df; |
| 700 | xfs_fileoff_t end_fsb = start_fsb + length; |
| 701 | struct xfs_bmbt_irec got, del; |
| 702 | struct xfs_iext_cursor icur; |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 703 | int error = 0; |
| 704 | |
Christoph Hellwig | 0065b54 | 2018-09-29 13:47:46 +1000 | [diff] [blame] | 705 | ASSERT(ifp->if_flags & XFS_IFEXTENTS); |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 706 | |
Christoph Hellwig | 0065b54 | 2018-09-29 13:47:46 +1000 | [diff] [blame] | 707 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
Christoph Hellwig | e2ac836 | 2018-06-21 23:24:38 -0700 | [diff] [blame] | 708 | if (!xfs_iext_lookup_extent_before(ip, ifp, &end_fsb, &icur, &got)) |
Christoph Hellwig | d438017 | 2018-07-11 22:25:57 -0700 | [diff] [blame] | 709 | goto out_unlock; |
Christoph Hellwig | e2ac836 | 2018-06-21 23:24:38 -0700 | [diff] [blame] | 710 | |
| 711 | while (got.br_startoff + got.br_blockcount > start_fsb) { |
| 712 | del = got; |
| 713 | xfs_trim_extent(&del, start_fsb, length); |
| 714 | |
| 715 | /* |
| 716 | * A delete can push the cursor forward. Step back to the |
| 717 | * previous extent on non-delalloc or extents outside the |
| 718 | * target range. |
| 719 | */ |
| 720 | if (!del.br_blockcount || |
| 721 | !isnullstartblock(del.br_startblock)) { |
| 722 | if (!xfs_iext_prev_extent(ifp, &icur, &got)) |
| 723 | break; |
| 724 | continue; |
| 725 | } |
| 726 | |
| 727 | error = xfs_bmap_del_extent_delay(ip, XFS_DATA_FORK, &icur, |
| 728 | &got, &del); |
| 729 | if (error || !xfs_iext_get_extent(ifp, &icur, &got)) |
| 730 | break; |
| 731 | } |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 732 | |
Christoph Hellwig | d438017 | 2018-07-11 22:25:57 -0700 | [diff] [blame] | 733 | out_unlock: |
| 734 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 735 | return error; |
| 736 | } |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 737 | |
| 738 | /* |
| 739 | * Test whether it is appropriate to check an inode for and free post EOF |
| 740 | * blocks. The 'force' parameter determines whether we should also consider |
| 741 | * regular files that are marked preallocated or append-only. |
| 742 | */ |
| 743 | bool |
| 744 | xfs_can_free_eofblocks(struct xfs_inode *ip, bool force) |
| 745 | { |
| 746 | /* prealloc/delalloc exists only on regular files */ |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 747 | if (!S_ISREG(VFS_I(ip)->i_mode)) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 748 | return false; |
| 749 | |
| 750 | /* |
| 751 | * Zero sized files with no cached pages and delalloc blocks will not |
| 752 | * have speculative prealloc/delalloc blocks to remove. |
| 753 | */ |
| 754 | if (VFS_I(ip)->i_size == 0 && |
Dave Chinner | 2667c6f | 2014-08-04 13:23:15 +1000 | [diff] [blame] | 755 | VFS_I(ip)->i_mapping->nrpages == 0 && |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 756 | ip->i_delayed_blks == 0) |
| 757 | return false; |
| 758 | |
| 759 | /* If we haven't read in the extent list, then don't do it now. */ |
| 760 | if (!(ip->i_df.if_flags & XFS_IFEXTENTS)) |
| 761 | return false; |
| 762 | |
| 763 | /* |
| 764 | * Do not free real preallocated or append-only files unless the file |
| 765 | * has delalloc blocks and we are forced to remove them. |
| 766 | */ |
| 767 | if (ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)) |
| 768 | if (!force || ip->i_delayed_blks == 0) |
| 769 | return false; |
| 770 | |
| 771 | return true; |
| 772 | } |
| 773 | |
| 774 | /* |
Brian Foster | 3b4683c | 2017-04-11 10:50:05 -0700 | [diff] [blame] | 775 | * This is called to free any blocks beyond eof. The caller must hold |
| 776 | * IOLOCK_EXCL unless we are in the inode reclaim path and have the only |
| 777 | * reference to the inode. |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 778 | */ |
| 779 | int |
| 780 | xfs_free_eofblocks( |
Brian Foster | a36b926 | 2017-01-27 23:22:55 -0800 | [diff] [blame] | 781 | struct xfs_inode *ip) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 782 | { |
Brian Foster | a36b926 | 2017-01-27 23:22:55 -0800 | [diff] [blame] | 783 | struct xfs_trans *tp; |
| 784 | int error; |
| 785 | xfs_fileoff_t end_fsb; |
| 786 | xfs_fileoff_t last_fsb; |
| 787 | xfs_filblks_t map_len; |
| 788 | int nimaps; |
| 789 | struct xfs_bmbt_irec imap; |
| 790 | struct xfs_mount *mp = ip->i_mount; |
| 791 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 792 | /* |
| 793 | * Figure out if there are any blocks beyond the end |
| 794 | * of the file. If not, then there is nothing to do. |
| 795 | */ |
| 796 | end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_ISIZE(ip)); |
| 797 | last_fsb = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes); |
| 798 | if (last_fsb <= end_fsb) |
| 799 | return 0; |
| 800 | map_len = last_fsb - end_fsb; |
| 801 | |
| 802 | nimaps = 1; |
| 803 | xfs_ilock(ip, XFS_ILOCK_SHARED); |
| 804 | error = xfs_bmapi_read(ip, end_fsb, map_len, &imap, &nimaps, 0); |
| 805 | xfs_iunlock(ip, XFS_ILOCK_SHARED); |
| 806 | |
Brian Foster | a36b926 | 2017-01-27 23:22:55 -0800 | [diff] [blame] | 807 | /* |
| 808 | * If there are blocks after the end of file, truncate the file to its |
| 809 | * current size to free them up. |
| 810 | */ |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 811 | if (!error && (nimaps != 0) && |
| 812 | (imap.br_startblock != HOLESTARTBLOCK || |
| 813 | ip->i_delayed_blks)) { |
| 814 | /* |
| 815 | * Attach the dquots to the inode up front. |
| 816 | */ |
Darrick J. Wong | c14cfcc | 2018-05-04 15:30:21 -0700 | [diff] [blame] | 817 | error = xfs_qm_dqattach(ip); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 818 | if (error) |
| 819 | return error; |
| 820 | |
Brian Foster | e4229d6b | 2017-01-27 23:22:57 -0800 | [diff] [blame] | 821 | /* wait on dio to ensure i_size has settled */ |
| 822 | inode_dio_wait(VFS_I(ip)); |
| 823 | |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 824 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate, 0, 0, 0, |
| 825 | &tp); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 826 | if (error) { |
| 827 | ASSERT(XFS_FORCED_SHUTDOWN(mp)); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 828 | return error; |
| 829 | } |
| 830 | |
| 831 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
| 832 | xfs_trans_ijoin(tp, ip, 0); |
| 833 | |
| 834 | /* |
| 835 | * Do not update the on-disk file size. If we update the |
| 836 | * on-disk file size and then the system crashes before the |
| 837 | * contents of the file are flushed to disk then the files |
| 838 | * may be full of holes (ie NULL files bug). |
| 839 | */ |
Brian Foster | 4e52933 | 2018-05-10 09:35:42 -0700 | [diff] [blame] | 840 | error = xfs_itruncate_extents_flags(&tp, ip, XFS_DATA_FORK, |
| 841 | XFS_ISIZE(ip), XFS_BMAPI_NODISCARD); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 842 | if (error) { |
| 843 | /* |
| 844 | * If we get an error at this point we simply don't |
| 845 | * bother truncating the file. |
| 846 | */ |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 847 | xfs_trans_cancel(tp); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 848 | } else { |
Christoph Hellwig | 7039331 | 2015-06-04 13:48:08 +1000 | [diff] [blame] | 849 | error = xfs_trans_commit(tp); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 850 | if (!error) |
| 851 | xfs_inode_clear_eofblocks_tag(ip); |
| 852 | } |
| 853 | |
| 854 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 855 | } |
| 856 | return error; |
| 857 | } |
| 858 | |
Christoph Hellwig | 83aee9e | 2013-10-12 00:55:07 -0700 | [diff] [blame] | 859 | int |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 860 | xfs_alloc_file_space( |
Christoph Hellwig | 83aee9e | 2013-10-12 00:55:07 -0700 | [diff] [blame] | 861 | struct xfs_inode *ip, |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 862 | xfs_off_t offset, |
| 863 | xfs_off_t len, |
Christoph Hellwig | 5f8aca8 | 2013-10-12 00:55:06 -0700 | [diff] [blame] | 864 | int alloc_type) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 865 | { |
| 866 | xfs_mount_t *mp = ip->i_mount; |
| 867 | xfs_off_t count; |
| 868 | xfs_filblks_t allocated_fsb; |
| 869 | xfs_filblks_t allocatesize_fsb; |
| 870 | xfs_extlen_t extsz, temp; |
| 871 | xfs_fileoff_t startoffset_fsb; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 872 | int nimaps; |
| 873 | int quota_flag; |
| 874 | int rt; |
| 875 | xfs_trans_t *tp; |
| 876 | xfs_bmbt_irec_t imaps[1], *imapp; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 877 | uint qblocks, resblks, resrtextents; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 878 | int error; |
| 879 | |
| 880 | trace_xfs_alloc_file_space(ip); |
| 881 | |
| 882 | if (XFS_FORCED_SHUTDOWN(mp)) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 883 | return -EIO; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 884 | |
Darrick J. Wong | c14cfcc | 2018-05-04 15:30:21 -0700 | [diff] [blame] | 885 | error = xfs_qm_dqattach(ip); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 886 | if (error) |
| 887 | return error; |
| 888 | |
| 889 | if (len <= 0) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 890 | return -EINVAL; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 891 | |
| 892 | rt = XFS_IS_REALTIME_INODE(ip); |
| 893 | extsz = xfs_get_extsz_hint(ip); |
| 894 | |
| 895 | count = len; |
| 896 | imapp = &imaps[0]; |
| 897 | nimaps = 1; |
| 898 | startoffset_fsb = XFS_B_TO_FSBT(mp, offset); |
| 899 | allocatesize_fsb = XFS_B_TO_FSB(mp, count); |
| 900 | |
| 901 | /* |
| 902 | * Allocate file space until done or until there is an error |
| 903 | */ |
| 904 | while (allocatesize_fsb && !error) { |
| 905 | xfs_fileoff_t s, e; |
| 906 | |
| 907 | /* |
| 908 | * Determine space reservations for data/realtime. |
| 909 | */ |
| 910 | if (unlikely(extsz)) { |
| 911 | s = startoffset_fsb; |
| 912 | do_div(s, extsz); |
| 913 | s *= extsz; |
| 914 | e = startoffset_fsb + allocatesize_fsb; |
Dave Chinner | 0703a8e | 2018-06-08 09:54:22 -0700 | [diff] [blame] | 915 | div_u64_rem(startoffset_fsb, extsz, &temp); |
| 916 | if (temp) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 917 | e += temp; |
Dave Chinner | 0703a8e | 2018-06-08 09:54:22 -0700 | [diff] [blame] | 918 | div_u64_rem(e, extsz, &temp); |
| 919 | if (temp) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 920 | e += extsz - temp; |
| 921 | } else { |
| 922 | s = 0; |
| 923 | e = allocatesize_fsb; |
| 924 | } |
| 925 | |
| 926 | /* |
| 927 | * The transaction reservation is limited to a 32-bit block |
| 928 | * count, hence we need to limit the number of blocks we are |
| 929 | * trying to reserve to avoid an overflow. We can't allocate |
| 930 | * more than @nimaps extents, and an extent is limited on disk |
| 931 | * to MAXEXTLEN (21 bits), so use that to enforce the limit. |
| 932 | */ |
| 933 | resblks = min_t(xfs_fileoff_t, (e - s), (MAXEXTLEN * nimaps)); |
| 934 | if (unlikely(rt)) { |
| 935 | resrtextents = qblocks = resblks; |
| 936 | resrtextents /= mp->m_sb.sb_rextsize; |
| 937 | resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0); |
| 938 | quota_flag = XFS_QMOPT_RES_RTBLKS; |
| 939 | } else { |
| 940 | resrtextents = 0; |
| 941 | resblks = qblocks = XFS_DIOSTRAT_SPACE_RES(mp, resblks); |
| 942 | quota_flag = XFS_QMOPT_RES_REGBLKS; |
| 943 | } |
| 944 | |
| 945 | /* |
| 946 | * Allocate and setup the transaction. |
| 947 | */ |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 948 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks, |
| 949 | resrtextents, 0, &tp); |
| 950 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 951 | /* |
| 952 | * Check for running out of space |
| 953 | */ |
| 954 | if (error) { |
| 955 | /* |
| 956 | * Free the transaction structure. |
| 957 | */ |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 958 | ASSERT(error == -ENOSPC || XFS_FORCED_SHUTDOWN(mp)); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 959 | break; |
| 960 | } |
| 961 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
| 962 | error = xfs_trans_reserve_quota_nblks(tp, ip, qblocks, |
| 963 | 0, quota_flag); |
| 964 | if (error) |
| 965 | goto error1; |
| 966 | |
| 967 | xfs_trans_ijoin(tp, ip, 0); |
| 968 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 969 | error = xfs_bmapi_write(tp, ip, startoffset_fsb, |
Brian Foster | a7beabe | 2018-07-11 22:26:25 -0700 | [diff] [blame] | 970 | allocatesize_fsb, alloc_type, resblks, |
| 971 | imapp, &nimaps); |
Eric Sandeen | f6106ef | 2016-01-11 11:34:01 +1100 | [diff] [blame] | 972 | if (error) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 973 | goto error0; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 974 | |
| 975 | /* |
| 976 | * Complete the transaction |
| 977 | */ |
Christoph Hellwig | 7039331 | 2015-06-04 13:48:08 +1000 | [diff] [blame] | 978 | error = xfs_trans_commit(tp); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 979 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
Eric Sandeen | f6106ef | 2016-01-11 11:34:01 +1100 | [diff] [blame] | 980 | if (error) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 981 | break; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 982 | |
| 983 | allocated_fsb = imapp->br_blockcount; |
| 984 | |
| 985 | if (nimaps == 0) { |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 986 | error = -ENOSPC; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 987 | break; |
| 988 | } |
| 989 | |
| 990 | startoffset_fsb += allocated_fsb; |
| 991 | allocatesize_fsb -= allocated_fsb; |
| 992 | } |
| 993 | |
| 994 | return error; |
| 995 | |
Brian Foster | c8eac49 | 2018-07-24 13:43:13 -0700 | [diff] [blame] | 996 | error0: /* unlock inode, unreserve quota blocks, cancel trans */ |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 997 | xfs_trans_unreserve_quota_nblks(tp, ip, (long)qblocks, 0, quota_flag); |
| 998 | |
| 999 | error1: /* Just cancel transaction */ |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 1000 | xfs_trans_cancel(tp); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1001 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 1002 | return error; |
| 1003 | } |
| 1004 | |
Christoph Hellwig | bdb0d04 | 2016-06-21 10:00:55 +1000 | [diff] [blame] | 1005 | static int |
| 1006 | xfs_unmap_extent( |
| 1007 | struct xfs_inode *ip, |
| 1008 | xfs_fileoff_t startoffset_fsb, |
| 1009 | xfs_filblks_t len_fsb, |
| 1010 | int *done) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1011 | { |
Christoph Hellwig | bdb0d04 | 2016-06-21 10:00:55 +1000 | [diff] [blame] | 1012 | struct xfs_mount *mp = ip->i_mount; |
| 1013 | struct xfs_trans *tp; |
Christoph Hellwig | bdb0d04 | 2016-06-21 10:00:55 +1000 | [diff] [blame] | 1014 | uint resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0); |
| 1015 | int error; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1016 | |
Christoph Hellwig | bdb0d04 | 2016-06-21 10:00:55 +1000 | [diff] [blame] | 1017 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks, 0, 0, &tp); |
| 1018 | if (error) { |
| 1019 | ASSERT(error == -ENOSPC || XFS_FORCED_SHUTDOWN(mp)); |
| 1020 | return error; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1021 | } |
Christoph Hellwig | bdb0d04 | 2016-06-21 10:00:55 +1000 | [diff] [blame] | 1022 | |
| 1023 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
| 1024 | error = xfs_trans_reserve_quota(tp, mp, ip->i_udquot, ip->i_gdquot, |
| 1025 | ip->i_pdquot, resblks, 0, XFS_QMOPT_RES_REGBLKS); |
| 1026 | if (error) |
| 1027 | goto out_trans_cancel; |
| 1028 | |
| 1029 | xfs_trans_ijoin(tp, ip, 0); |
| 1030 | |
Brian Foster | 2af5284 | 2018-07-11 22:26:25 -0700 | [diff] [blame] | 1031 | error = xfs_bunmapi(tp, ip, startoffset_fsb, len_fsb, 0, 2, done); |
Christoph Hellwig | bdb0d04 | 2016-06-21 10:00:55 +1000 | [diff] [blame] | 1032 | if (error) |
Brian Foster | c8eac49 | 2018-07-24 13:43:13 -0700 | [diff] [blame] | 1033 | goto out_trans_cancel; |
Christoph Hellwig | bdb0d04 | 2016-06-21 10:00:55 +1000 | [diff] [blame] | 1034 | |
Christoph Hellwig | bdb0d04 | 2016-06-21 10:00:55 +1000 | [diff] [blame] | 1035 | error = xfs_trans_commit(tp); |
| 1036 | out_unlock: |
| 1037 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1038 | return error; |
Christoph Hellwig | bdb0d04 | 2016-06-21 10:00:55 +1000 | [diff] [blame] | 1039 | |
Christoph Hellwig | bdb0d04 | 2016-06-21 10:00:55 +1000 | [diff] [blame] | 1040 | out_trans_cancel: |
| 1041 | xfs_trans_cancel(tp); |
| 1042 | goto out_unlock; |
| 1043 | } |
| 1044 | |
Dave Chinner | 2c30717 | 2018-11-19 13:31:10 -0800 | [diff] [blame^] | 1045 | int |
Christoph Hellwig | bdb0d04 | 2016-06-21 10:00:55 +1000 | [diff] [blame] | 1046 | xfs_flush_unmap_range( |
| 1047 | struct xfs_inode *ip, |
| 1048 | xfs_off_t offset, |
| 1049 | xfs_off_t len) |
| 1050 | { |
| 1051 | struct xfs_mount *mp = ip->i_mount; |
| 1052 | struct inode *inode = VFS_I(ip); |
| 1053 | xfs_off_t rounding, start, end; |
| 1054 | int error; |
| 1055 | |
| 1056 | /* wait for the completion of any pending DIOs */ |
| 1057 | inode_dio_wait(inode); |
| 1058 | |
| 1059 | rounding = max_t(xfs_off_t, 1 << mp->m_sb.sb_blocklog, PAGE_SIZE); |
| 1060 | start = round_down(offset, rounding); |
| 1061 | end = round_up(offset + len, rounding) - 1; |
| 1062 | |
| 1063 | error = filemap_write_and_wait_range(inode->i_mapping, start, end); |
| 1064 | if (error) |
| 1065 | return error; |
| 1066 | truncate_pagecache_range(inode, start, end); |
| 1067 | return 0; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1068 | } |
| 1069 | |
Christoph Hellwig | 83aee9e | 2013-10-12 00:55:07 -0700 | [diff] [blame] | 1070 | int |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1071 | xfs_free_file_space( |
Christoph Hellwig | 83aee9e | 2013-10-12 00:55:07 -0700 | [diff] [blame] | 1072 | struct xfs_inode *ip, |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1073 | xfs_off_t offset, |
Christoph Hellwig | 5f8aca8 | 2013-10-12 00:55:06 -0700 | [diff] [blame] | 1074 | xfs_off_t len) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1075 | { |
Christoph Hellwig | bdb0d04 | 2016-06-21 10:00:55 +1000 | [diff] [blame] | 1076 | struct xfs_mount *mp = ip->i_mount; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1077 | xfs_fileoff_t startoffset_fsb; |
Christoph Hellwig | bdb0d04 | 2016-06-21 10:00:55 +1000 | [diff] [blame] | 1078 | xfs_fileoff_t endoffset_fsb; |
Christoph Hellwig | 3c2bdc9 | 2016-06-21 10:02:23 +1000 | [diff] [blame] | 1079 | int done = 0, error; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1080 | |
| 1081 | trace_xfs_free_file_space(ip); |
| 1082 | |
Darrick J. Wong | c14cfcc | 2018-05-04 15:30:21 -0700 | [diff] [blame] | 1083 | error = xfs_qm_dqattach(ip); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1084 | if (error) |
| 1085 | return error; |
| 1086 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1087 | if (len <= 0) /* if nothing being freed */ |
Christoph Hellwig | bdb0d04 | 2016-06-21 10:00:55 +1000 | [diff] [blame] | 1088 | return 0; |
| 1089 | |
| 1090 | error = xfs_flush_unmap_range(ip, offset, len); |
| 1091 | if (error) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1092 | return error; |
Christoph Hellwig | bdb0d04 | 2016-06-21 10:00:55 +1000 | [diff] [blame] | 1093 | |
| 1094 | startoffset_fsb = XFS_B_TO_FSB(mp, offset); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1095 | endoffset_fsb = XFS_B_TO_FSBT(mp, offset + len); |
| 1096 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1097 | /* |
Christoph Hellwig | daa79ba | 2018-10-18 17:18:58 +1100 | [diff] [blame] | 1098 | * Need to zero the stuff we're not freeing, on disk. |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1099 | */ |
Christoph Hellwig | 3c2bdc9 | 2016-06-21 10:02:23 +1000 | [diff] [blame] | 1100 | if (endoffset_fsb > startoffset_fsb) { |
| 1101 | while (!done) { |
| 1102 | error = xfs_unmap_extent(ip, startoffset_fsb, |
| 1103 | endoffset_fsb - startoffset_fsb, &done); |
| 1104 | if (error) |
| 1105 | return error; |
| 1106 | } |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1107 | } |
| 1108 | |
| 1109 | /* |
Christoph Hellwig | 3c2bdc9 | 2016-06-21 10:02:23 +1000 | [diff] [blame] | 1110 | * Now that we've unmap all full blocks we'll have to zero out any |
Christoph Hellwig | f5c54717 | 2018-03-13 23:15:32 -0700 | [diff] [blame] | 1111 | * partial block at the beginning and/or end. iomap_zero_range is smart |
| 1112 | * enough to skip any holes, including those we just created, but we |
| 1113 | * must take care not to zero beyond EOF and enlarge i_size. |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1114 | */ |
Calvin Owens | 3dd09d5 | 2017-04-03 12:22:29 -0700 | [diff] [blame] | 1115 | if (offset >= XFS_ISIZE(ip)) |
| 1116 | return 0; |
Calvin Owens | 3dd09d5 | 2017-04-03 12:22:29 -0700 | [diff] [blame] | 1117 | if (offset + len > XFS_ISIZE(ip)) |
| 1118 | len = XFS_ISIZE(ip) - offset; |
Darrick J. Wong | e53c4b5 | 2018-06-21 23:26:58 -0700 | [diff] [blame] | 1119 | error = iomap_zero_range(VFS_I(ip), offset, len, NULL, &xfs_iomap_ops); |
| 1120 | if (error) |
| 1121 | return error; |
| 1122 | |
| 1123 | /* |
| 1124 | * If we zeroed right up to EOF and EOF straddles a page boundary we |
| 1125 | * must make sure that the post-EOF area is also zeroed because the |
| 1126 | * page could be mmap'd and iomap_zero_range doesn't do that for us. |
| 1127 | * Writeback of the eof page will do this, albeit clumsily. |
| 1128 | */ |
| 1129 | if (offset + len >= XFS_ISIZE(ip) && ((offset + len) & PAGE_MASK)) { |
| 1130 | error = filemap_write_and_wait_range(VFS_I(ip)->i_mapping, |
| 1131 | (offset + len) & ~PAGE_MASK, LLONG_MAX); |
| 1132 | } |
| 1133 | |
| 1134 | return error; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1135 | } |
| 1136 | |
Brian Foster | 5d11fb4 | 2014-10-30 10:35:11 +1100 | [diff] [blame] | 1137 | /* |
| 1138 | * Preallocate and zero a range of a file. This mechanism has the allocation |
| 1139 | * semantics of fallocate and in addition converts data in the range to zeroes. |
| 1140 | */ |
Christoph Hellwig | 865e944 | 2013-10-12 00:55:08 -0700 | [diff] [blame] | 1141 | int |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1142 | xfs_zero_file_space( |
| 1143 | struct xfs_inode *ip, |
| 1144 | xfs_off_t offset, |
Christoph Hellwig | 5f8aca8 | 2013-10-12 00:55:06 -0700 | [diff] [blame] | 1145 | xfs_off_t len) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1146 | { |
| 1147 | struct xfs_mount *mp = ip->i_mount; |
Brian Foster | 5d11fb4 | 2014-10-30 10:35:11 +1100 | [diff] [blame] | 1148 | uint blksize; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1149 | int error; |
| 1150 | |
Dave Chinner | 897b73b | 2014-04-14 18:15:11 +1000 | [diff] [blame] | 1151 | trace_xfs_zero_file_space(ip); |
| 1152 | |
Brian Foster | 5d11fb4 | 2014-10-30 10:35:11 +1100 | [diff] [blame] | 1153 | blksize = 1 << mp->m_sb.sb_blocklog; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1154 | |
| 1155 | /* |
Brian Foster | 5d11fb4 | 2014-10-30 10:35:11 +1100 | [diff] [blame] | 1156 | * Punch a hole and prealloc the range. We use hole punch rather than |
| 1157 | * unwritten extent conversion for two reasons: |
| 1158 | * |
| 1159 | * 1.) Hole punch handles partial block zeroing for us. |
| 1160 | * |
| 1161 | * 2.) If prealloc returns ENOSPC, the file range is still zero-valued |
| 1162 | * by virtue of the hole punch. |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1163 | */ |
Brian Foster | 5d11fb4 | 2014-10-30 10:35:11 +1100 | [diff] [blame] | 1164 | error = xfs_free_file_space(ip, offset, len); |
| 1165 | if (error) |
| 1166 | goto out; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1167 | |
Brian Foster | 5d11fb4 | 2014-10-30 10:35:11 +1100 | [diff] [blame] | 1168 | error = xfs_alloc_file_space(ip, round_down(offset, blksize), |
| 1169 | round_up(offset + len, blksize) - |
| 1170 | round_down(offset, blksize), |
| 1171 | XFS_BMAPI_PREALLOC); |
Christoph Hellwig | 5f8aca8 | 2013-10-12 00:55:06 -0700 | [diff] [blame] | 1172 | out: |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1173 | return error; |
| 1174 | |
| 1175 | } |
| 1176 | |
kbuild test robot | 72c1a73 | 2015-04-13 11:25:04 +1000 | [diff] [blame] | 1177 | static int |
Christoph Hellwig | 4ed36c6 | 2017-10-19 11:07:10 -0700 | [diff] [blame] | 1178 | xfs_prepare_shift( |
| 1179 | struct xfs_inode *ip, |
| 1180 | loff_t offset) |
Namjae Jeon | e1d8fb8 | 2014-02-24 10:58:19 +1100 | [diff] [blame] | 1181 | { |
Namjae Jeon | e1d8fb8 | 2014-02-24 10:58:19 +1100 | [diff] [blame] | 1182 | int error; |
Namjae Jeon | e1d8fb8 | 2014-02-24 10:58:19 +1100 | [diff] [blame] | 1183 | |
Brian Foster | f71721d | 2014-09-23 15:39:05 +1000 | [diff] [blame] | 1184 | /* |
| 1185 | * Trim eofblocks to avoid shifting uninitialized post-eof preallocation |
| 1186 | * into the accessible region of the file. |
| 1187 | */ |
Brian Foster | 41b9d72 | 2014-09-02 12:12:53 +1000 | [diff] [blame] | 1188 | if (xfs_can_free_eofblocks(ip, true)) { |
Brian Foster | a36b926 | 2017-01-27 23:22:55 -0800 | [diff] [blame] | 1189 | error = xfs_free_eofblocks(ip); |
Brian Foster | 41b9d72 | 2014-09-02 12:12:53 +1000 | [diff] [blame] | 1190 | if (error) |
| 1191 | return error; |
| 1192 | } |
Dave Chinner | 1669a8c | 2014-09-02 12:12:53 +1000 | [diff] [blame] | 1193 | |
Brian Foster | f71721d | 2014-09-23 15:39:05 +1000 | [diff] [blame] | 1194 | /* |
| 1195 | * Writeback and invalidate cache for the remainder of the file as we're |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 1196 | * about to shift down every extent from offset to EOF. |
Brian Foster | f71721d | 2014-09-23 15:39:05 +1000 | [diff] [blame] | 1197 | */ |
Dave Chinner | 7f9f71be | 2018-11-19 13:31:09 -0800 | [diff] [blame] | 1198 | error = xfs_flush_unmap_range(ip, offset, XFS_ISIZE(ip)); |
Namjae Jeon | e1d8fb8 | 2014-02-24 10:58:19 +1100 | [diff] [blame] | 1199 | |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 1200 | /* |
Darrick J. Wong | 3af423b | 2017-09-18 09:41:17 -0700 | [diff] [blame] | 1201 | * Clean out anything hanging around in the cow fork now that |
| 1202 | * we've flushed all the dirty data out to disk to avoid having |
| 1203 | * CoW extents at the wrong offsets. |
| 1204 | */ |
Christoph Hellwig | 51d6269 | 2018-07-17 16:51:51 -0700 | [diff] [blame] | 1205 | if (xfs_inode_has_cow_data(ip)) { |
Darrick J. Wong | 3af423b | 2017-09-18 09:41:17 -0700 | [diff] [blame] | 1206 | error = xfs_reflink_cancel_cow_range(ip, offset, NULLFILEOFF, |
| 1207 | true); |
| 1208 | if (error) |
| 1209 | return error; |
| 1210 | } |
| 1211 | |
Christoph Hellwig | 4ed36c6 | 2017-10-19 11:07:10 -0700 | [diff] [blame] | 1212 | return 0; |
Namjae Jeon | e1d8fb8 | 2014-02-24 10:58:19 +1100 | [diff] [blame] | 1213 | } |
| 1214 | |
| 1215 | /* |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 1216 | * xfs_collapse_file_space() |
| 1217 | * This routine frees disk space and shift extent for the given file. |
| 1218 | * The first thing we do is to free data blocks in the specified range |
| 1219 | * by calling xfs_free_file_space(). It would also sync dirty data |
| 1220 | * and invalidate page cache over the region on which collapse range |
| 1221 | * is working. And Shift extent records to the left to cover a hole. |
| 1222 | * RETURNS: |
| 1223 | * 0 on success |
| 1224 | * errno on error |
| 1225 | * |
| 1226 | */ |
| 1227 | int |
| 1228 | xfs_collapse_file_space( |
| 1229 | struct xfs_inode *ip, |
| 1230 | xfs_off_t offset, |
| 1231 | xfs_off_t len) |
| 1232 | { |
Christoph Hellwig | 4ed36c6 | 2017-10-19 11:07:10 -0700 | [diff] [blame] | 1233 | struct xfs_mount *mp = ip->i_mount; |
| 1234 | struct xfs_trans *tp; |
| 1235 | int error; |
Christoph Hellwig | 4ed36c6 | 2017-10-19 11:07:10 -0700 | [diff] [blame] | 1236 | xfs_fileoff_t next_fsb = XFS_B_TO_FSB(mp, offset + len); |
| 1237 | xfs_fileoff_t shift_fsb = XFS_B_TO_FSB(mp, len); |
| 1238 | uint resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0); |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 1239 | bool done = false; |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 1240 | |
| 1241 | ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL)); |
Christoph Hellwig | 9ad1a23a | 2017-10-23 16:32:38 -0700 | [diff] [blame] | 1242 | ASSERT(xfs_isilocked(ip, XFS_MMAPLOCK_EXCL)); |
| 1243 | |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 1244 | trace_xfs_collapse_file_space(ip); |
| 1245 | |
| 1246 | error = xfs_free_file_space(ip, offset, len); |
| 1247 | if (error) |
| 1248 | return error; |
| 1249 | |
Christoph Hellwig | 4ed36c6 | 2017-10-19 11:07:10 -0700 | [diff] [blame] | 1250 | error = xfs_prepare_shift(ip, offset); |
| 1251 | if (error) |
| 1252 | return error; |
| 1253 | |
| 1254 | while (!error && !done) { |
| 1255 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks, 0, 0, |
| 1256 | &tp); |
| 1257 | if (error) |
| 1258 | break; |
| 1259 | |
| 1260 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
| 1261 | error = xfs_trans_reserve_quota(tp, mp, ip->i_udquot, |
| 1262 | ip->i_gdquot, ip->i_pdquot, resblks, 0, |
| 1263 | XFS_QMOPT_RES_REGBLKS); |
| 1264 | if (error) |
| 1265 | goto out_trans_cancel; |
| 1266 | xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL); |
| 1267 | |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 1268 | error = xfs_bmap_collapse_extents(tp, ip, &next_fsb, shift_fsb, |
Brian Foster | 333f950 | 2018-07-11 22:26:27 -0700 | [diff] [blame] | 1269 | &done); |
Christoph Hellwig | 4ed36c6 | 2017-10-19 11:07:10 -0700 | [diff] [blame] | 1270 | if (error) |
Brian Foster | c8eac49 | 2018-07-24 13:43:13 -0700 | [diff] [blame] | 1271 | goto out_trans_cancel; |
Christoph Hellwig | 4ed36c6 | 2017-10-19 11:07:10 -0700 | [diff] [blame] | 1272 | |
Christoph Hellwig | 4ed36c6 | 2017-10-19 11:07:10 -0700 | [diff] [blame] | 1273 | error = xfs_trans_commit(tp); |
| 1274 | } |
| 1275 | |
| 1276 | return error; |
| 1277 | |
Christoph Hellwig | 4ed36c6 | 2017-10-19 11:07:10 -0700 | [diff] [blame] | 1278 | out_trans_cancel: |
| 1279 | xfs_trans_cancel(tp); |
| 1280 | return error; |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 1281 | } |
| 1282 | |
| 1283 | /* |
| 1284 | * xfs_insert_file_space() |
| 1285 | * This routine create hole space by shifting extents for the given file. |
| 1286 | * The first thing we do is to sync dirty data and invalidate page cache |
| 1287 | * over the region on which insert range is working. And split an extent |
| 1288 | * to two extents at given offset by calling xfs_bmap_split_extent. |
| 1289 | * And shift all extent records which are laying between [offset, |
| 1290 | * last allocated extent] to the right to reserve hole range. |
| 1291 | * RETURNS: |
| 1292 | * 0 on success |
| 1293 | * errno on error |
| 1294 | */ |
| 1295 | int |
| 1296 | xfs_insert_file_space( |
| 1297 | struct xfs_inode *ip, |
| 1298 | loff_t offset, |
| 1299 | loff_t len) |
| 1300 | { |
Christoph Hellwig | 4ed36c6 | 2017-10-19 11:07:10 -0700 | [diff] [blame] | 1301 | struct xfs_mount *mp = ip->i_mount; |
| 1302 | struct xfs_trans *tp; |
| 1303 | int error; |
Christoph Hellwig | 4ed36c6 | 2017-10-19 11:07:10 -0700 | [diff] [blame] | 1304 | xfs_fileoff_t stop_fsb = XFS_B_TO_FSB(mp, offset); |
| 1305 | xfs_fileoff_t next_fsb = NULLFSBLOCK; |
| 1306 | xfs_fileoff_t shift_fsb = XFS_B_TO_FSB(mp, len); |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 1307 | bool done = false; |
Christoph Hellwig | 4ed36c6 | 2017-10-19 11:07:10 -0700 | [diff] [blame] | 1308 | |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 1309 | ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL)); |
Christoph Hellwig | 9ad1a23a | 2017-10-23 16:32:38 -0700 | [diff] [blame] | 1310 | ASSERT(xfs_isilocked(ip, XFS_MMAPLOCK_EXCL)); |
| 1311 | |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 1312 | trace_xfs_insert_file_space(ip); |
| 1313 | |
Darrick J. Wong | f62cb48 | 2018-06-21 23:26:57 -0700 | [diff] [blame] | 1314 | error = xfs_bmap_can_insert_extents(ip, stop_fsb, shift_fsb); |
| 1315 | if (error) |
| 1316 | return error; |
| 1317 | |
Christoph Hellwig | 4ed36c6 | 2017-10-19 11:07:10 -0700 | [diff] [blame] | 1318 | error = xfs_prepare_shift(ip, offset); |
| 1319 | if (error) |
| 1320 | return error; |
| 1321 | |
| 1322 | /* |
| 1323 | * The extent shifting code works on extent granularity. So, if stop_fsb |
| 1324 | * is not the starting block of extent, we need to split the extent at |
| 1325 | * stop_fsb. |
| 1326 | */ |
| 1327 | error = xfs_bmap_split_extent(ip, stop_fsb); |
| 1328 | if (error) |
| 1329 | return error; |
| 1330 | |
| 1331 | while (!error && !done) { |
| 1332 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, 0, 0, 0, |
| 1333 | &tp); |
| 1334 | if (error) |
| 1335 | break; |
| 1336 | |
| 1337 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
| 1338 | xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL); |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 1339 | error = xfs_bmap_insert_extents(tp, ip, &next_fsb, shift_fsb, |
Brian Foster | 333f950 | 2018-07-11 22:26:27 -0700 | [diff] [blame] | 1340 | &done, stop_fsb); |
Christoph Hellwig | 4ed36c6 | 2017-10-19 11:07:10 -0700 | [diff] [blame] | 1341 | if (error) |
Brian Foster | c8eac49 | 2018-07-24 13:43:13 -0700 | [diff] [blame] | 1342 | goto out_trans_cancel; |
Christoph Hellwig | 4ed36c6 | 2017-10-19 11:07:10 -0700 | [diff] [blame] | 1343 | |
Christoph Hellwig | 4ed36c6 | 2017-10-19 11:07:10 -0700 | [diff] [blame] | 1344 | error = xfs_trans_commit(tp); |
| 1345 | } |
| 1346 | |
| 1347 | return error; |
| 1348 | |
Brian Foster | c8eac49 | 2018-07-24 13:43:13 -0700 | [diff] [blame] | 1349 | out_trans_cancel: |
Christoph Hellwig | 4ed36c6 | 2017-10-19 11:07:10 -0700 | [diff] [blame] | 1350 | xfs_trans_cancel(tp); |
| 1351 | return error; |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 1352 | } |
| 1353 | |
| 1354 | /* |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1355 | * We need to check that the format of the data fork in the temporary inode is |
| 1356 | * valid for the target inode before doing the swap. This is not a problem with |
| 1357 | * attr1 because of the fixed fork offset, but attr2 has a dynamically sized |
| 1358 | * data fork depending on the space the attribute fork is taking so we can get |
| 1359 | * invalid formats on the target inode. |
| 1360 | * |
| 1361 | * E.g. target has space for 7 extents in extent format, temp inode only has |
| 1362 | * space for 6. If we defragment down to 7 extents, then the tmp format is a |
| 1363 | * btree, but when swapped it needs to be in extent format. Hence we can't just |
| 1364 | * blindly swap data forks on attr2 filesystems. |
| 1365 | * |
| 1366 | * Note that we check the swap in both directions so that we don't end up with |
| 1367 | * a corrupt temporary inode, either. |
| 1368 | * |
| 1369 | * Note that fixing the way xfs_fsr sets up the attribute fork in the source |
| 1370 | * inode will prevent this situation from occurring, so all we do here is |
| 1371 | * reject and log the attempt. basically we are putting the responsibility on |
| 1372 | * userspace to get this right. |
| 1373 | */ |
| 1374 | static int |
| 1375 | xfs_swap_extents_check_format( |
Darrick J. Wong | e06259a | 2016-10-03 09:11:52 -0700 | [diff] [blame] | 1376 | struct xfs_inode *ip, /* target inode */ |
| 1377 | struct xfs_inode *tip) /* tmp inode */ |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1378 | { |
| 1379 | |
| 1380 | /* Should never get a local format */ |
| 1381 | if (ip->i_d.di_format == XFS_DINODE_FMT_LOCAL || |
| 1382 | tip->i_d.di_format == XFS_DINODE_FMT_LOCAL) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1383 | return -EINVAL; |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1384 | |
| 1385 | /* |
| 1386 | * if the target inode has less extents that then temporary inode then |
| 1387 | * why did userspace call us? |
| 1388 | */ |
| 1389 | if (ip->i_d.di_nextents < tip->i_d.di_nextents) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1390 | return -EINVAL; |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1391 | |
| 1392 | /* |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1393 | * If we have to use the (expensive) rmap swap method, we can |
| 1394 | * handle any number of extents and any format. |
| 1395 | */ |
| 1396 | if (xfs_sb_version_hasrmapbt(&ip->i_mount->m_sb)) |
| 1397 | return 0; |
| 1398 | |
| 1399 | /* |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1400 | * if the target inode is in extent form and the temp inode is in btree |
| 1401 | * form then we will end up with the target inode in the wrong format |
| 1402 | * as we already know there are less extents in the temp inode. |
| 1403 | */ |
| 1404 | if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS && |
| 1405 | tip->i_d.di_format == XFS_DINODE_FMT_BTREE) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1406 | return -EINVAL; |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1407 | |
| 1408 | /* Check temp in extent form to max in target */ |
| 1409 | if (tip->i_d.di_format == XFS_DINODE_FMT_EXTENTS && |
| 1410 | XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) > |
| 1411 | XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK)) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1412 | return -EINVAL; |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1413 | |
| 1414 | /* Check target in extent form to max in temp */ |
| 1415 | if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS && |
| 1416 | XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) > |
| 1417 | XFS_IFORK_MAXEXT(tip, XFS_DATA_FORK)) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1418 | return -EINVAL; |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1419 | |
| 1420 | /* |
| 1421 | * If we are in a btree format, check that the temp root block will fit |
| 1422 | * in the target and that it has enough extents to be in btree format |
| 1423 | * in the target. |
| 1424 | * |
| 1425 | * Note that we have to be careful to allow btree->extent conversions |
| 1426 | * (a common defrag case) which will occur when the temp inode is in |
| 1427 | * extent format... |
| 1428 | */ |
| 1429 | if (tip->i_d.di_format == XFS_DINODE_FMT_BTREE) { |
Arnd Bergmann | 0cbe48c | 2017-06-14 21:35:34 -0700 | [diff] [blame] | 1430 | if (XFS_IFORK_Q(ip) && |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1431 | XFS_BMAP_BMDR_SPACE(tip->i_df.if_broot) > XFS_IFORK_BOFF(ip)) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1432 | return -EINVAL; |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1433 | if (XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) <= |
| 1434 | XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK)) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1435 | return -EINVAL; |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1436 | } |
| 1437 | |
| 1438 | /* Reciprocal target->temp btree format checks */ |
| 1439 | if (ip->i_d.di_format == XFS_DINODE_FMT_BTREE) { |
Arnd Bergmann | 0cbe48c | 2017-06-14 21:35:34 -0700 | [diff] [blame] | 1440 | if (XFS_IFORK_Q(tip) && |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1441 | XFS_BMAP_BMDR_SPACE(ip->i_df.if_broot) > XFS_IFORK_BOFF(tip)) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1442 | return -EINVAL; |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1443 | if (XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) <= |
| 1444 | XFS_IFORK_MAXEXT(tip, XFS_DATA_FORK)) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1445 | return -EINVAL; |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1446 | } |
| 1447 | |
| 1448 | return 0; |
| 1449 | } |
| 1450 | |
Dave Chinner | 7abbb8f | 2014-09-23 16:20:11 +1000 | [diff] [blame] | 1451 | static int |
Dave Chinner | 4ef897a | 2014-08-04 13:44:08 +1000 | [diff] [blame] | 1452 | xfs_swap_extent_flush( |
| 1453 | struct xfs_inode *ip) |
| 1454 | { |
| 1455 | int error; |
| 1456 | |
| 1457 | error = filemap_write_and_wait(VFS_I(ip)->i_mapping); |
| 1458 | if (error) |
| 1459 | return error; |
| 1460 | truncate_pagecache_range(VFS_I(ip), 0, -1); |
| 1461 | |
| 1462 | /* Verify O_DIRECT for ftmp */ |
| 1463 | if (VFS_I(ip)->i_mapping->nrpages) |
| 1464 | return -EINVAL; |
Dave Chinner | 4ef897a | 2014-08-04 13:44:08 +1000 | [diff] [blame] | 1465 | return 0; |
| 1466 | } |
| 1467 | |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1468 | /* |
| 1469 | * Move extents from one file to another, when rmap is enabled. |
| 1470 | */ |
| 1471 | STATIC int |
| 1472 | xfs_swap_extent_rmap( |
| 1473 | struct xfs_trans **tpp, |
| 1474 | struct xfs_inode *ip, |
| 1475 | struct xfs_inode *tip) |
| 1476 | { |
Brian Foster | 7a7943c | 2018-07-11 22:26:17 -0700 | [diff] [blame] | 1477 | struct xfs_trans *tp = *tpp; |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1478 | struct xfs_bmbt_irec irec; |
| 1479 | struct xfs_bmbt_irec uirec; |
| 1480 | struct xfs_bmbt_irec tirec; |
| 1481 | xfs_fileoff_t offset_fsb; |
| 1482 | xfs_fileoff_t end_fsb; |
| 1483 | xfs_filblks_t count_fsb; |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1484 | int error; |
| 1485 | xfs_filblks_t ilen; |
| 1486 | xfs_filblks_t rlen; |
| 1487 | int nimaps; |
Darrick J. Wong | c8ce540 | 2017-06-16 11:00:05 -0700 | [diff] [blame] | 1488 | uint64_t tip_flags2; |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1489 | |
| 1490 | /* |
| 1491 | * If the source file has shared blocks, we must flag the donor |
| 1492 | * file as having shared blocks so that we get the shared-block |
| 1493 | * rmap functions when we go to fix up the rmaps. The flags |
| 1494 | * will be switch for reals later. |
| 1495 | */ |
| 1496 | tip_flags2 = tip->i_d.di_flags2; |
| 1497 | if (ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK) |
| 1498 | tip->i_d.di_flags2 |= XFS_DIFLAG2_REFLINK; |
| 1499 | |
| 1500 | offset_fsb = 0; |
| 1501 | end_fsb = XFS_B_TO_FSB(ip->i_mount, i_size_read(VFS_I(ip))); |
| 1502 | count_fsb = (xfs_filblks_t)(end_fsb - offset_fsb); |
| 1503 | |
| 1504 | while (count_fsb) { |
| 1505 | /* Read extent from the donor file */ |
| 1506 | nimaps = 1; |
| 1507 | error = xfs_bmapi_read(tip, offset_fsb, count_fsb, &tirec, |
| 1508 | &nimaps, 0); |
| 1509 | if (error) |
| 1510 | goto out; |
| 1511 | ASSERT(nimaps == 1); |
| 1512 | ASSERT(tirec.br_startblock != DELAYSTARTBLOCK); |
| 1513 | |
| 1514 | trace_xfs_swap_extent_rmap_remap(tip, &tirec); |
| 1515 | ilen = tirec.br_blockcount; |
| 1516 | |
| 1517 | /* Unmap the old blocks in the source file. */ |
| 1518 | while (tirec.br_blockcount) { |
Brian Foster | c8eac49 | 2018-07-24 13:43:13 -0700 | [diff] [blame] | 1519 | ASSERT(tp->t_firstblock == NULLFSBLOCK); |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1520 | trace_xfs_swap_extent_rmap_remap_piece(tip, &tirec); |
| 1521 | |
| 1522 | /* Read extent from the source file */ |
| 1523 | nimaps = 1; |
| 1524 | error = xfs_bmapi_read(ip, tirec.br_startoff, |
| 1525 | tirec.br_blockcount, &irec, |
| 1526 | &nimaps, 0); |
| 1527 | if (error) |
Brian Foster | d5a2e28 | 2018-09-29 13:41:58 +1000 | [diff] [blame] | 1528 | goto out; |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1529 | ASSERT(nimaps == 1); |
| 1530 | ASSERT(tirec.br_startoff == irec.br_startoff); |
| 1531 | trace_xfs_swap_extent_rmap_remap_piece(ip, &irec); |
| 1532 | |
| 1533 | /* Trim the extent. */ |
| 1534 | uirec = tirec; |
| 1535 | uirec.br_blockcount = rlen = min_t(xfs_filblks_t, |
| 1536 | tirec.br_blockcount, |
| 1537 | irec.br_blockcount); |
| 1538 | trace_xfs_swap_extent_rmap_remap_piece(tip, &uirec); |
| 1539 | |
| 1540 | /* Remove the mapping from the donor file. */ |
Brian Foster | 0f37d17 | 2018-08-01 07:20:34 -0700 | [diff] [blame] | 1541 | error = xfs_bmap_unmap_extent(tp, tip, &uirec); |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1542 | if (error) |
Brian Foster | d5a2e28 | 2018-09-29 13:41:58 +1000 | [diff] [blame] | 1543 | goto out; |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1544 | |
| 1545 | /* Remove the mapping from the source file. */ |
Brian Foster | 0f37d17 | 2018-08-01 07:20:34 -0700 | [diff] [blame] | 1546 | error = xfs_bmap_unmap_extent(tp, ip, &irec); |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1547 | if (error) |
Brian Foster | d5a2e28 | 2018-09-29 13:41:58 +1000 | [diff] [blame] | 1548 | goto out; |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1549 | |
| 1550 | /* Map the donor file's blocks into the source file. */ |
Brian Foster | 0f37d17 | 2018-08-01 07:20:34 -0700 | [diff] [blame] | 1551 | error = xfs_bmap_map_extent(tp, ip, &uirec); |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1552 | if (error) |
Brian Foster | d5a2e28 | 2018-09-29 13:41:58 +1000 | [diff] [blame] | 1553 | goto out; |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1554 | |
| 1555 | /* Map the source file's blocks into the donor file. */ |
Brian Foster | 0f37d17 | 2018-08-01 07:20:34 -0700 | [diff] [blame] | 1556 | error = xfs_bmap_map_extent(tp, tip, &irec); |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1557 | if (error) |
Brian Foster | d5a2e28 | 2018-09-29 13:41:58 +1000 | [diff] [blame] | 1558 | goto out; |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1559 | |
Brian Foster | 9e28a24 | 2018-07-24 13:43:15 -0700 | [diff] [blame] | 1560 | error = xfs_defer_finish(tpp); |
Brian Foster | 7a7943c | 2018-07-11 22:26:17 -0700 | [diff] [blame] | 1561 | tp = *tpp; |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1562 | if (error) |
Brian Foster | 9b1f4e9 | 2018-08-01 07:20:33 -0700 | [diff] [blame] | 1563 | goto out; |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1564 | |
| 1565 | tirec.br_startoff += rlen; |
| 1566 | if (tirec.br_startblock != HOLESTARTBLOCK && |
| 1567 | tirec.br_startblock != DELAYSTARTBLOCK) |
| 1568 | tirec.br_startblock += rlen; |
| 1569 | tirec.br_blockcount -= rlen; |
| 1570 | } |
| 1571 | |
| 1572 | /* Roll on... */ |
| 1573 | count_fsb -= ilen; |
| 1574 | offset_fsb += ilen; |
| 1575 | } |
| 1576 | |
| 1577 | tip->i_d.di_flags2 = tip_flags2; |
| 1578 | return 0; |
| 1579 | |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1580 | out: |
| 1581 | trace_xfs_swap_extent_rmap_error(ip, error, _RET_IP_); |
| 1582 | tip->i_d.di_flags2 = tip_flags2; |
| 1583 | return error; |
| 1584 | } |
| 1585 | |
Darrick J. Wong | 39aff5f | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1586 | /* Swap the extents of two files by swapping data forks. */ |
| 1587 | STATIC int |
| 1588 | xfs_swap_extent_forks( |
| 1589 | struct xfs_trans *tp, |
| 1590 | struct xfs_inode *ip, |
| 1591 | struct xfs_inode *tip, |
| 1592 | int *src_log_flags, |
| 1593 | int *target_log_flags) |
| 1594 | { |
Darrick J. Wong | e7f5d5c | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 1595 | xfs_filblks_t aforkblks = 0; |
| 1596 | xfs_filblks_t taforkblks = 0; |
| 1597 | xfs_extnum_t junk; |
Darrick J. Wong | c8ce540 | 2017-06-16 11:00:05 -0700 | [diff] [blame] | 1598 | uint64_t tmp; |
Darrick J. Wong | 39aff5f | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1599 | int error; |
| 1600 | |
| 1601 | /* |
| 1602 | * Count the number of extended attribute blocks |
| 1603 | */ |
| 1604 | if ( ((XFS_IFORK_Q(ip) != 0) && (ip->i_d.di_anextents > 0)) && |
| 1605 | (ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) { |
Darrick J. Wong | e7f5d5c | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 1606 | error = xfs_bmap_count_blocks(tp, ip, XFS_ATTR_FORK, &junk, |
Darrick J. Wong | 39aff5f | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1607 | &aforkblks); |
| 1608 | if (error) |
| 1609 | return error; |
| 1610 | } |
| 1611 | if ( ((XFS_IFORK_Q(tip) != 0) && (tip->i_d.di_anextents > 0)) && |
| 1612 | (tip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) { |
Darrick J. Wong | e7f5d5c | 2017-06-16 11:00:12 -0700 | [diff] [blame] | 1613 | error = xfs_bmap_count_blocks(tp, tip, XFS_ATTR_FORK, &junk, |
Darrick J. Wong | 39aff5f | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1614 | &taforkblks); |
| 1615 | if (error) |
| 1616 | return error; |
| 1617 | } |
| 1618 | |
| 1619 | /* |
Brian Foster | 6fb10d6 | 2017-08-29 10:08:39 -0700 | [diff] [blame] | 1620 | * Btree format (v3) inodes have the inode number stamped in the bmbt |
| 1621 | * block headers. We can't start changing the bmbt blocks until the |
| 1622 | * inode owner change is logged so recovery does the right thing in the |
| 1623 | * event of a crash. Set the owner change log flags now and leave the |
| 1624 | * bmbt scan as the last step. |
Darrick J. Wong | 39aff5f | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1625 | */ |
| 1626 | if (ip->i_d.di_version == 3 && |
Brian Foster | 6fb10d6 | 2017-08-29 10:08:39 -0700 | [diff] [blame] | 1627 | ip->i_d.di_format == XFS_DINODE_FMT_BTREE) |
Darrick J. Wong | 39aff5f | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1628 | (*target_log_flags) |= XFS_ILOG_DOWNER; |
Darrick J. Wong | 39aff5f | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1629 | if (tip->i_d.di_version == 3 && |
Brian Foster | 6fb10d6 | 2017-08-29 10:08:39 -0700 | [diff] [blame] | 1630 | tip->i_d.di_format == XFS_DINODE_FMT_BTREE) |
Darrick J. Wong | 39aff5f | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1631 | (*src_log_flags) |= XFS_ILOG_DOWNER; |
Darrick J. Wong | 39aff5f | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1632 | |
| 1633 | /* |
| 1634 | * Swap the data forks of the inodes |
| 1635 | */ |
Gustavo A. R. Silva | 897992b | 2018-07-11 22:26:38 -0700 | [diff] [blame] | 1636 | swap(ip->i_df, tip->i_df); |
Darrick J. Wong | 39aff5f | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1637 | |
| 1638 | /* |
| 1639 | * Fix the on-disk inode values |
| 1640 | */ |
Darrick J. Wong | c8ce540 | 2017-06-16 11:00:05 -0700 | [diff] [blame] | 1641 | tmp = (uint64_t)ip->i_d.di_nblocks; |
Darrick J. Wong | 39aff5f | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1642 | ip->i_d.di_nblocks = tip->i_d.di_nblocks - taforkblks + aforkblks; |
| 1643 | tip->i_d.di_nblocks = tmp + taforkblks - aforkblks; |
| 1644 | |
Gustavo A. R. Silva | 897992b | 2018-07-11 22:26:38 -0700 | [diff] [blame] | 1645 | swap(ip->i_d.di_nextents, tip->i_d.di_nextents); |
| 1646 | swap(ip->i_d.di_format, tip->i_d.di_format); |
Darrick J. Wong | 39aff5f | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1647 | |
| 1648 | /* |
| 1649 | * The extents in the source inode could still contain speculative |
| 1650 | * preallocation beyond EOF (e.g. the file is open but not modified |
| 1651 | * while defrag is in progress). In that case, we need to copy over the |
| 1652 | * number of delalloc blocks the data fork in the source inode is |
| 1653 | * tracking beyond EOF so that when the fork is truncated away when the |
| 1654 | * temporary inode is unlinked we don't underrun the i_delayed_blks |
| 1655 | * counter on that inode. |
| 1656 | */ |
| 1657 | ASSERT(tip->i_delayed_blks == 0); |
| 1658 | tip->i_delayed_blks = ip->i_delayed_blks; |
| 1659 | ip->i_delayed_blks = 0; |
| 1660 | |
| 1661 | switch (ip->i_d.di_format) { |
| 1662 | case XFS_DINODE_FMT_EXTENTS: |
Darrick J. Wong | 39aff5f | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1663 | (*src_log_flags) |= XFS_ILOG_DEXT; |
| 1664 | break; |
| 1665 | case XFS_DINODE_FMT_BTREE: |
| 1666 | ASSERT(ip->i_d.di_version < 3 || |
| 1667 | (*src_log_flags & XFS_ILOG_DOWNER)); |
| 1668 | (*src_log_flags) |= XFS_ILOG_DBROOT; |
| 1669 | break; |
| 1670 | } |
| 1671 | |
| 1672 | switch (tip->i_d.di_format) { |
| 1673 | case XFS_DINODE_FMT_EXTENTS: |
Darrick J. Wong | 39aff5f | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1674 | (*target_log_flags) |= XFS_ILOG_DEXT; |
| 1675 | break; |
| 1676 | case XFS_DINODE_FMT_BTREE: |
| 1677 | (*target_log_flags) |= XFS_ILOG_DBROOT; |
| 1678 | ASSERT(tip->i_d.di_version < 3 || |
| 1679 | (*target_log_flags & XFS_ILOG_DOWNER)); |
| 1680 | break; |
| 1681 | } |
| 1682 | |
| 1683 | return 0; |
| 1684 | } |
| 1685 | |
Brian Foster | 2dd3d70 | 2017-08-29 10:08:40 -0700 | [diff] [blame] | 1686 | /* |
| 1687 | * Fix up the owners of the bmbt blocks to refer to the current inode. The |
| 1688 | * change owner scan attempts to order all modified buffers in the current |
| 1689 | * transaction. In the event of ordered buffer failure, the offending buffer is |
| 1690 | * physically logged as a fallback and the scan returns -EAGAIN. We must roll |
| 1691 | * the transaction in this case to replenish the fallback log reservation and |
| 1692 | * restart the scan. This process repeats until the scan completes. |
| 1693 | */ |
| 1694 | static int |
| 1695 | xfs_swap_change_owner( |
| 1696 | struct xfs_trans **tpp, |
| 1697 | struct xfs_inode *ip, |
| 1698 | struct xfs_inode *tmpip) |
| 1699 | { |
| 1700 | int error; |
| 1701 | struct xfs_trans *tp = *tpp; |
| 1702 | |
| 1703 | do { |
| 1704 | error = xfs_bmbt_change_owner(tp, ip, XFS_DATA_FORK, ip->i_ino, |
| 1705 | NULL); |
| 1706 | /* success or fatal error */ |
| 1707 | if (error != -EAGAIN) |
| 1708 | break; |
| 1709 | |
| 1710 | error = xfs_trans_roll(tpp); |
| 1711 | if (error) |
| 1712 | break; |
| 1713 | tp = *tpp; |
| 1714 | |
| 1715 | /* |
| 1716 | * Redirty both inodes so they can relog and keep the log tail |
| 1717 | * moving forward. |
| 1718 | */ |
| 1719 | xfs_trans_ijoin(tp, ip, 0); |
| 1720 | xfs_trans_ijoin(tp, tmpip, 0); |
| 1721 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
| 1722 | xfs_trans_log_inode(tp, tmpip, XFS_ILOG_CORE); |
| 1723 | } while (true); |
| 1724 | |
| 1725 | return error; |
| 1726 | } |
| 1727 | |
Dave Chinner | 4ef897a | 2014-08-04 13:44:08 +1000 | [diff] [blame] | 1728 | int |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1729 | xfs_swap_extents( |
Darrick J. Wong | e06259a | 2016-10-03 09:11:52 -0700 | [diff] [blame] | 1730 | struct xfs_inode *ip, /* target inode */ |
| 1731 | struct xfs_inode *tip, /* tmp inode */ |
| 1732 | struct xfs_swapext *sxp) |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1733 | { |
Darrick J. Wong | e06259a | 2016-10-03 09:11:52 -0700 | [diff] [blame] | 1734 | struct xfs_mount *mp = ip->i_mount; |
| 1735 | struct xfs_trans *tp; |
| 1736 | struct xfs_bstat *sbp = &sxp->sx_stat; |
Darrick J. Wong | e06259a | 2016-10-03 09:11:52 -0700 | [diff] [blame] | 1737 | int src_log_flags, target_log_flags; |
| 1738 | int error = 0; |
Darrick J. Wong | e06259a | 2016-10-03 09:11:52 -0700 | [diff] [blame] | 1739 | int lock_flags; |
Darrick J. Wong | c8ce540 | 2017-06-16 11:00:05 -0700 | [diff] [blame] | 1740 | uint64_t f; |
Brian Foster | 2dd3d70 | 2017-08-29 10:08:40 -0700 | [diff] [blame] | 1741 | int resblks = 0; |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1742 | |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1743 | /* |
Dave Chinner | 723cac4 | 2015-02-23 21:47:29 +1100 | [diff] [blame] | 1744 | * Lock the inodes against other IO, page faults and truncate to |
| 1745 | * begin with. Then we can ensure the inodes are flushed and have no |
| 1746 | * page cache safely. Once we have done this we can take the ilocks and |
| 1747 | * do the rest of the checks. |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1748 | */ |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 1749 | lock_two_nondirectories(VFS_I(ip), VFS_I(tip)); |
| 1750 | lock_flags = XFS_MMAPLOCK_EXCL; |
Darrick J. Wong | 7c2d238 | 2018-01-26 15:27:33 -0800 | [diff] [blame] | 1751 | xfs_lock_two_inodes(ip, XFS_MMAPLOCK_EXCL, tip, XFS_MMAPLOCK_EXCL); |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1752 | |
| 1753 | /* Verify that both files have the same format */ |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 1754 | if ((VFS_I(ip)->i_mode & S_IFMT) != (VFS_I(tip)->i_mode & S_IFMT)) { |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1755 | error = -EINVAL; |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1756 | goto out_unlock; |
| 1757 | } |
| 1758 | |
| 1759 | /* Verify both files are either real-time or non-realtime */ |
| 1760 | if (XFS_IS_REALTIME_INODE(ip) != XFS_IS_REALTIME_INODE(tip)) { |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1761 | error = -EINVAL; |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1762 | goto out_unlock; |
| 1763 | } |
| 1764 | |
Dave Chinner | 4ef897a | 2014-08-04 13:44:08 +1000 | [diff] [blame] | 1765 | error = xfs_swap_extent_flush(ip); |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1766 | if (error) |
| 1767 | goto out_unlock; |
Dave Chinner | 4ef897a | 2014-08-04 13:44:08 +1000 | [diff] [blame] | 1768 | error = xfs_swap_extent_flush(tip); |
| 1769 | if (error) |
| 1770 | goto out_unlock; |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1771 | |
Christoph Hellwig | 96987ee | 2018-10-18 17:21:55 +1100 | [diff] [blame] | 1772 | if (xfs_inode_has_cow_data(tip)) { |
| 1773 | error = xfs_reflink_cancel_cow_range(tip, 0, NULLFILEOFF, true); |
| 1774 | if (error) |
| 1775 | return error; |
| 1776 | } |
| 1777 | |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1778 | /* |
| 1779 | * Extent "swapping" with rmap requires a permanent reservation and |
| 1780 | * a block reservation because it's really just a remap operation |
| 1781 | * performed with log redo items! |
| 1782 | */ |
| 1783 | if (xfs_sb_version_hasrmapbt(&mp->m_sb)) { |
Brian Foster | b3fed43 | 2018-03-09 14:01:58 -0800 | [diff] [blame] | 1784 | int w = XFS_DATA_FORK; |
| 1785 | uint32_t ipnext = XFS_IFORK_NEXTENTS(ip, w); |
| 1786 | uint32_t tipnext = XFS_IFORK_NEXTENTS(tip, w); |
| 1787 | |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1788 | /* |
Brian Foster | b3fed43 | 2018-03-09 14:01:58 -0800 | [diff] [blame] | 1789 | * Conceptually this shouldn't affect the shape of either bmbt, |
| 1790 | * but since we atomically move extents one by one, we reserve |
| 1791 | * enough space to rebuild both trees. |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1792 | */ |
Brian Foster | b3fed43 | 2018-03-09 14:01:58 -0800 | [diff] [blame] | 1793 | resblks = XFS_SWAP_RMAP_SPACE_RES(mp, ipnext, w); |
| 1794 | resblks += XFS_SWAP_RMAP_SPACE_RES(mp, tipnext, w); |
| 1795 | |
| 1796 | /* |
| 1797 | * Handle the corner case where either inode might straddle the |
| 1798 | * btree format boundary. If so, the inode could bounce between |
| 1799 | * btree <-> extent format on unmap -> remap cycles, freeing and |
| 1800 | * allocating a bmapbt block each time. |
| 1801 | */ |
| 1802 | if (ipnext == (XFS_IFORK_MAXEXT(ip, w) + 1)) |
| 1803 | resblks += XFS_IFORK_MAXEXT(ip, w); |
| 1804 | if (tipnext == (XFS_IFORK_MAXEXT(tip, w) + 1)) |
| 1805 | resblks += XFS_IFORK_MAXEXT(tip, w); |
Brian Foster | 2dd3d70 | 2017-08-29 10:08:40 -0700 | [diff] [blame] | 1806 | } |
| 1807 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks, 0, 0, &tp); |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 1808 | if (error) |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1809 | goto out_unlock; |
Dave Chinner | 723cac4 | 2015-02-23 21:47:29 +1100 | [diff] [blame] | 1810 | |
| 1811 | /* |
| 1812 | * Lock and join the inodes to the tansaction so that transaction commit |
| 1813 | * or cancel will unlock the inodes from this point onwards. |
| 1814 | */ |
Darrick J. Wong | 7c2d238 | 2018-01-26 15:27:33 -0800 | [diff] [blame] | 1815 | xfs_lock_two_inodes(ip, XFS_ILOCK_EXCL, tip, XFS_ILOCK_EXCL); |
Dave Chinner | 4ef897a | 2014-08-04 13:44:08 +1000 | [diff] [blame] | 1816 | lock_flags |= XFS_ILOCK_EXCL; |
Darrick J. Wong | 39aff5f | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1817 | xfs_trans_ijoin(tp, ip, 0); |
| 1818 | xfs_trans_ijoin(tp, tip, 0); |
Dave Chinner | 723cac4 | 2015-02-23 21:47:29 +1100 | [diff] [blame] | 1819 | |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1820 | |
| 1821 | /* Verify all data are being swapped */ |
| 1822 | if (sxp->sx_offset != 0 || |
| 1823 | sxp->sx_length != ip->i_d.di_size || |
| 1824 | sxp->sx_length != tip->i_d.di_size) { |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1825 | error = -EFAULT; |
Dave Chinner | 4ef897a | 2014-08-04 13:44:08 +1000 | [diff] [blame] | 1826 | goto out_trans_cancel; |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1827 | } |
| 1828 | |
| 1829 | trace_xfs_swap_extent_before(ip, 0); |
| 1830 | trace_xfs_swap_extent_before(tip, 1); |
| 1831 | |
| 1832 | /* check inode formats now that data is flushed */ |
| 1833 | error = xfs_swap_extents_check_format(ip, tip); |
| 1834 | if (error) { |
| 1835 | xfs_notice(mp, |
| 1836 | "%s: inode 0x%llx format is incompatible for exchanging.", |
| 1837 | __func__, ip->i_ino); |
Dave Chinner | 4ef897a | 2014-08-04 13:44:08 +1000 | [diff] [blame] | 1838 | goto out_trans_cancel; |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1839 | } |
| 1840 | |
| 1841 | /* |
| 1842 | * Compare the current change & modify times with that |
| 1843 | * passed in. If they differ, we abort this swap. |
| 1844 | * This is the mechanism used to ensure the calling |
| 1845 | * process that the file was not changed out from |
| 1846 | * under it. |
| 1847 | */ |
| 1848 | if ((sbp->bs_ctime.tv_sec != VFS_I(ip)->i_ctime.tv_sec) || |
| 1849 | (sbp->bs_ctime.tv_nsec != VFS_I(ip)->i_ctime.tv_nsec) || |
| 1850 | (sbp->bs_mtime.tv_sec != VFS_I(ip)->i_mtime.tv_sec) || |
| 1851 | (sbp->bs_mtime.tv_nsec != VFS_I(ip)->i_mtime.tv_nsec)) { |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1852 | error = -EBUSY; |
Dave Chinner | 8121768 | 2014-08-04 13:29:32 +1000 | [diff] [blame] | 1853 | goto out_trans_cancel; |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1854 | } |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1855 | |
Dave Chinner | 21b5c97 | 2013-08-30 10:23:44 +1000 | [diff] [blame] | 1856 | /* |
Dave Chinner | 21b5c97 | 2013-08-30 10:23:44 +1000 | [diff] [blame] | 1857 | * Note the trickiness in setting the log flags - we set the owner log |
| 1858 | * flag on the opposite inode (i.e. the inode we are setting the new |
| 1859 | * owner to be) because once we swap the forks and log that, log |
| 1860 | * recovery is going to see the fork as owned by the swapped inode, |
| 1861 | * not the pre-swapped inodes. |
| 1862 | */ |
| 1863 | src_log_flags = XFS_ILOG_CORE; |
| 1864 | target_log_flags = XFS_ILOG_CORE; |
Dave Chinner | 21b5c97 | 2013-08-30 10:23:44 +1000 | [diff] [blame] | 1865 | |
Darrick J. Wong | 1f08af5 | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1866 | if (xfs_sb_version_hasrmapbt(&mp->m_sb)) |
| 1867 | error = xfs_swap_extent_rmap(&tp, ip, tip); |
| 1868 | else |
| 1869 | error = xfs_swap_extent_forks(tp, ip, tip, &src_log_flags, |
| 1870 | &target_log_flags); |
Darrick J. Wong | 39aff5f | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1871 | if (error) |
| 1872 | goto out_trans_cancel; |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1873 | |
Darrick J. Wong | f0bc4d1 | 2016-10-03 09:11:42 -0700 | [diff] [blame] | 1874 | /* Do we have to swap reflink flags? */ |
| 1875 | if ((ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK) ^ |
| 1876 | (tip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK)) { |
| 1877 | f = ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK; |
| 1878 | ip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK; |
| 1879 | ip->i_d.di_flags2 |= tip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK; |
| 1880 | tip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK; |
| 1881 | tip->i_d.di_flags2 |= f & XFS_DIFLAG2_REFLINK; |
Darrick J. Wong | 52bfcdd | 2017-09-18 09:41:18 -0700 | [diff] [blame] | 1882 | } |
| 1883 | |
| 1884 | /* Swap the cow forks. */ |
| 1885 | if (xfs_sb_version_hasreflink(&mp->m_sb)) { |
Darrick J. Wong | 52bfcdd | 2017-09-18 09:41:18 -0700 | [diff] [blame] | 1886 | ASSERT(ip->i_cformat == XFS_DINODE_FMT_EXTENTS); |
| 1887 | ASSERT(tip->i_cformat == XFS_DINODE_FMT_EXTENTS); |
| 1888 | |
Gustavo A. R. Silva | 897992b | 2018-07-11 22:26:38 -0700 | [diff] [blame] | 1889 | swap(ip->i_cnextents, tip->i_cnextents); |
| 1890 | swap(ip->i_cowfp, tip->i_cowfp); |
Darrick J. Wong | 52bfcdd | 2017-09-18 09:41:18 -0700 | [diff] [blame] | 1891 | |
Christoph Hellwig | 5bcffe3 | 2018-03-13 23:15:30 -0700 | [diff] [blame] | 1892 | if (ip->i_cowfp && ip->i_cowfp->if_bytes) |
Darrick J. Wong | 52bfcdd | 2017-09-18 09:41:18 -0700 | [diff] [blame] | 1893 | xfs_inode_set_cowblocks_tag(ip); |
| 1894 | else |
| 1895 | xfs_inode_clear_cowblocks_tag(ip); |
Christoph Hellwig | 5bcffe3 | 2018-03-13 23:15:30 -0700 | [diff] [blame] | 1896 | if (tip->i_cowfp && tip->i_cowfp->if_bytes) |
Darrick J. Wong | 52bfcdd | 2017-09-18 09:41:18 -0700 | [diff] [blame] | 1897 | xfs_inode_set_cowblocks_tag(tip); |
| 1898 | else |
| 1899 | xfs_inode_clear_cowblocks_tag(tip); |
Darrick J. Wong | f0bc4d1 | 2016-10-03 09:11:42 -0700 | [diff] [blame] | 1900 | } |
| 1901 | |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1902 | xfs_trans_log_inode(tp, ip, src_log_flags); |
| 1903 | xfs_trans_log_inode(tp, tip, target_log_flags); |
| 1904 | |
| 1905 | /* |
Brian Foster | 6fb10d6 | 2017-08-29 10:08:39 -0700 | [diff] [blame] | 1906 | * The extent forks have been swapped, but crc=1,rmapbt=0 filesystems |
| 1907 | * have inode number owner values in the bmbt blocks that still refer to |
| 1908 | * the old inode. Scan each bmbt to fix up the owner values with the |
| 1909 | * inode number of the current inode. |
| 1910 | */ |
| 1911 | if (src_log_flags & XFS_ILOG_DOWNER) { |
Brian Foster | 2dd3d70 | 2017-08-29 10:08:40 -0700 | [diff] [blame] | 1912 | error = xfs_swap_change_owner(&tp, ip, tip); |
Brian Foster | 6fb10d6 | 2017-08-29 10:08:39 -0700 | [diff] [blame] | 1913 | if (error) |
| 1914 | goto out_trans_cancel; |
| 1915 | } |
| 1916 | if (target_log_flags & XFS_ILOG_DOWNER) { |
Brian Foster | 2dd3d70 | 2017-08-29 10:08:40 -0700 | [diff] [blame] | 1917 | error = xfs_swap_change_owner(&tp, tip, ip); |
Brian Foster | 6fb10d6 | 2017-08-29 10:08:39 -0700 | [diff] [blame] | 1918 | if (error) |
| 1919 | goto out_trans_cancel; |
| 1920 | } |
| 1921 | |
| 1922 | /* |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1923 | * If this is a synchronous mount, make sure that the |
| 1924 | * transaction goes to disk before returning to the user. |
| 1925 | */ |
| 1926 | if (mp->m_flags & XFS_MOUNT_WSYNC) |
| 1927 | xfs_trans_set_sync(tp); |
| 1928 | |
Christoph Hellwig | 7039331 | 2015-06-04 13:48:08 +1000 | [diff] [blame] | 1929 | error = xfs_trans_commit(tp); |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1930 | |
| 1931 | trace_xfs_swap_extent_after(ip, 0); |
| 1932 | trace_xfs_swap_extent_after(tip, 1); |
Darrick J. Wong | 39aff5f | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1933 | |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 1934 | out_unlock: |
Darrick J. Wong | 39aff5f | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1935 | xfs_iunlock(ip, lock_flags); |
| 1936 | xfs_iunlock(tip, lock_flags); |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 1937 | unlock_two_nondirectories(VFS_I(ip), VFS_I(tip)); |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1938 | return error; |
| 1939 | |
Darrick J. Wong | 39aff5f | 2016-10-03 09:11:53 -0700 | [diff] [blame] | 1940 | out_trans_cancel: |
| 1941 | xfs_trans_cancel(tp); |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 1942 | goto out_unlock; |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1943 | } |