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