Dave Chinner | 0b61f8a | 2018-06-05 19:42:14 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 3 | * Copyright (c) 2000-2006 Silicon Graphics, Inc. |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 4 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | #include "xfs.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 7 | #include "xfs_fs.h" |
Dave Chinner | 70a9883 | 2013-10-23 10:36:05 +1100 | [diff] [blame] | 8 | #include "xfs_shared.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 9 | #include "xfs_format.h" |
| 10 | #include "xfs_log_format.h" |
| 11 | #include "xfs_trans_resv.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 12 | #include "xfs_bit.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include "xfs_sb.h" |
Dave Chinner | f5ea110 | 2013-04-24 18:58:02 +1000 | [diff] [blame] | 14 | #include "xfs_mount.h" |
Darrick J. Wong | 3ab78df | 2016-08-03 11:15:38 +1000 | [diff] [blame] | 15 | #include "xfs_defer.h" |
Dave Chinner | 5706278 | 2013-10-15 09:17:51 +1100 | [diff] [blame] | 16 | #include "xfs_da_format.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 17 | #include "xfs_da_btree.h" |
Dave Chinner | 2b9ab5a | 2013-08-12 20:49:37 +1000 | [diff] [blame] | 18 | #include "xfs_dir2.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include "xfs_inode.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 20 | #include "xfs_btree.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 21 | #include "xfs_trans.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 22 | #include "xfs_inode_item.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include "xfs_extfree_item.h" |
| 24 | #include "xfs_alloc.h" |
| 25 | #include "xfs_bmap.h" |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 26 | #include "xfs_bmap_util.h" |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 27 | #include "xfs_bmap_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include "xfs_rtalloc.h" |
Darrick J. Wong | e9e899a | 2017-10-31 12:04:49 -0700 | [diff] [blame] | 29 | #include "xfs_errortag.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include "xfs_error.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include "xfs_quota.h" |
| 32 | #include "xfs_trans_space.h" |
| 33 | #include "xfs_buf_item.h" |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 34 | #include "xfs_trace.h" |
Dave Chinner | 19de735 | 2013-04-03 16:11:18 +1100 | [diff] [blame] | 35 | #include "xfs_symlink.h" |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 36 | #include "xfs_attr_leaf.h" |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 37 | #include "xfs_filestream.h" |
Darrick J. Wong | 340785c | 2016-08-03 11:33:42 +1000 | [diff] [blame] | 38 | #include "xfs_rmap.h" |
Darrick J. Wong | 3fd129b | 2016-09-19 10:30:52 +1000 | [diff] [blame] | 39 | #include "xfs_ag_resv.h" |
Darrick J. Wong | 62aab20 | 2016-10-03 09:11:23 -0700 | [diff] [blame] | 40 | #include "xfs_refcount.h" |
Brian Foster | 974ae92 | 2016-11-28 14:57:42 +1100 | [diff] [blame] | 41 | #include "xfs_icache.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | kmem_zone_t *xfs_bmap_free_item_zone; |
| 45 | |
| 46 | /* |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 47 | * Miscellaneous helper functions |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | */ |
| 49 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | /* |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 51 | * Compute and fill in the value of the maximum depth of a bmap btree |
| 52 | * in this filesystem. Done once, during mount. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | */ |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 54 | void |
| 55 | xfs_bmap_compute_maxlevels( |
| 56 | xfs_mount_t *mp, /* file system mount structure */ |
| 57 | int whichfork) /* data or attr fork */ |
| 58 | { |
| 59 | int level; /* btree level */ |
| 60 | uint maxblocks; /* max blocks at this level */ |
| 61 | uint maxleafents; /* max leaf entries possible */ |
| 62 | int maxrootrecs; /* max records in root block */ |
| 63 | int minleafrecs; /* min records in leaf block */ |
| 64 | int minnoderecs; /* min records in node block */ |
| 65 | int sz; /* root block size */ |
| 66 | |
| 67 | /* |
| 68 | * The maximum number of extents in a file, hence the maximum |
| 69 | * number of leaf entries, is controlled by the type of di_nextents |
| 70 | * (a signed 32-bit number, xfs_extnum_t), or by di_anextents |
| 71 | * (a signed 16-bit number, xfs_aextnum_t). |
| 72 | * |
| 73 | * Note that we can no longer assume that if we are in ATTR1 that |
| 74 | * the fork offset of all the inodes will be |
| 75 | * (xfs_default_attroffset(ip) >> 3) because we could have mounted |
| 76 | * with ATTR2 and then mounted back with ATTR1, keeping the |
| 77 | * di_forkoff's fixed but probably at various positions. Therefore, |
| 78 | * for both ATTR1 and ATTR2 we have to assume the worst case scenario |
| 79 | * of a minimum size available. |
| 80 | */ |
| 81 | if (whichfork == XFS_DATA_FORK) { |
| 82 | maxleafents = MAXEXTNUM; |
| 83 | sz = XFS_BMDR_SPACE_CALC(MINDBTPTRS); |
| 84 | } else { |
| 85 | maxleafents = MAXAEXTNUM; |
| 86 | sz = XFS_BMDR_SPACE_CALC(MINABTPTRS); |
| 87 | } |
Eric Sandeen | 152d93b | 2014-04-14 18:58:51 +1000 | [diff] [blame] | 88 | maxrootrecs = xfs_bmdr_maxrecs(sz, 0); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 89 | minleafrecs = mp->m_bmap_dmnr[0]; |
| 90 | minnoderecs = mp->m_bmap_dmnr[1]; |
| 91 | maxblocks = (maxleafents + minleafrecs - 1) / minleafrecs; |
| 92 | for (level = 1; maxblocks > 1; level++) { |
| 93 | if (maxblocks <= maxrootrecs) |
| 94 | maxblocks = 1; |
| 95 | else |
| 96 | maxblocks = (maxblocks + minnoderecs - 1) / minnoderecs; |
| 97 | } |
| 98 | mp->m_bm_maxlevels[whichfork] = level; |
| 99 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
Christoph Hellwig | fe033cc | 2008-10-30 16:56:09 +1100 | [diff] [blame] | 101 | STATIC int /* error */ |
| 102 | xfs_bmbt_lookup_eq( |
| 103 | struct xfs_btree_cur *cur, |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 104 | struct xfs_bmbt_irec *irec, |
Christoph Hellwig | fe033cc | 2008-10-30 16:56:09 +1100 | [diff] [blame] | 105 | int *stat) /* success/failure */ |
| 106 | { |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 107 | cur->bc_rec.b = *irec; |
Christoph Hellwig | fe033cc | 2008-10-30 16:56:09 +1100 | [diff] [blame] | 108 | return xfs_btree_lookup(cur, XFS_LOOKUP_EQ, stat); |
| 109 | } |
| 110 | |
| 111 | STATIC int /* error */ |
Christoph Hellwig | b5cfbc2 | 2017-10-17 14:16:27 -0700 | [diff] [blame] | 112 | xfs_bmbt_lookup_first( |
Christoph Hellwig | fe033cc | 2008-10-30 16:56:09 +1100 | [diff] [blame] | 113 | struct xfs_btree_cur *cur, |
Christoph Hellwig | fe033cc | 2008-10-30 16:56:09 +1100 | [diff] [blame] | 114 | int *stat) /* success/failure */ |
| 115 | { |
Christoph Hellwig | b5cfbc2 | 2017-10-17 14:16:27 -0700 | [diff] [blame] | 116 | cur->bc_rec.b.br_startoff = 0; |
| 117 | cur->bc_rec.b.br_startblock = 0; |
| 118 | cur->bc_rec.b.br_blockcount = 0; |
Christoph Hellwig | fe033cc | 2008-10-30 16:56:09 +1100 | [diff] [blame] | 119 | return xfs_btree_lookup(cur, XFS_LOOKUP_GE, stat); |
| 120 | } |
| 121 | |
Christoph Hellwig | 278d0ca | 2008-10-30 16:56:32 +1100 | [diff] [blame] | 122 | /* |
Christoph Hellwig | 8096b1e | 2011-12-18 20:00:07 +0000 | [diff] [blame] | 123 | * Check if the inode needs to be converted to btree format. |
| 124 | */ |
| 125 | static inline bool xfs_bmap_needs_btree(struct xfs_inode *ip, int whichfork) |
| 126 | { |
Darrick J. Wong | 60b4984 | 2016-10-03 09:11:34 -0700 | [diff] [blame] | 127 | return whichfork != XFS_COW_FORK && |
| 128 | XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS && |
Christoph Hellwig | 8096b1e | 2011-12-18 20:00:07 +0000 | [diff] [blame] | 129 | XFS_IFORK_NEXTENTS(ip, whichfork) > |
| 130 | XFS_IFORK_MAXEXT(ip, whichfork); |
| 131 | } |
| 132 | |
| 133 | /* |
| 134 | * Check if the inode should be converted to extent format. |
| 135 | */ |
| 136 | static inline bool xfs_bmap_wants_extents(struct xfs_inode *ip, int whichfork) |
| 137 | { |
Darrick J. Wong | 60b4984 | 2016-10-03 09:11:34 -0700 | [diff] [blame] | 138 | return whichfork != XFS_COW_FORK && |
| 139 | XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE && |
Christoph Hellwig | 8096b1e | 2011-12-18 20:00:07 +0000 | [diff] [blame] | 140 | XFS_IFORK_NEXTENTS(ip, whichfork) <= |
| 141 | XFS_IFORK_MAXEXT(ip, whichfork); |
| 142 | } |
| 143 | |
| 144 | /* |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 145 | * Update the record referred to by cur to the value given by irec |
Christoph Hellwig | 278d0ca | 2008-10-30 16:56:32 +1100 | [diff] [blame] | 146 | * This either works (return 0) or gets an EFSCORRUPTED error. |
| 147 | */ |
| 148 | STATIC int |
| 149 | xfs_bmbt_update( |
| 150 | struct xfs_btree_cur *cur, |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 151 | struct xfs_bmbt_irec *irec) |
Christoph Hellwig | 278d0ca | 2008-10-30 16:56:32 +1100 | [diff] [blame] | 152 | { |
| 153 | union xfs_btree_rec rec; |
| 154 | |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 155 | xfs_bmbt_disk_set_all(&rec.bmbt, irec); |
Christoph Hellwig | 278d0ca | 2008-10-30 16:56:32 +1100 | [diff] [blame] | 156 | return xfs_btree_update(cur, &rec); |
| 157 | } |
Christoph Hellwig | fe033cc | 2008-10-30 16:56:09 +1100 | [diff] [blame] | 158 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | /* |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 160 | * Compute the worst-case number of indirect blocks that will be used |
| 161 | * for ip's delayed extent of length "len". |
| 162 | */ |
| 163 | STATIC xfs_filblks_t |
| 164 | xfs_bmap_worst_indlen( |
| 165 | xfs_inode_t *ip, /* incore inode pointer */ |
| 166 | xfs_filblks_t len) /* delayed extent length */ |
| 167 | { |
| 168 | int level; /* btree level number */ |
| 169 | int maxrecs; /* maximum record count at this level */ |
| 170 | xfs_mount_t *mp; /* mount structure */ |
| 171 | xfs_filblks_t rval; /* return value */ |
| 172 | |
| 173 | mp = ip->i_mount; |
| 174 | maxrecs = mp->m_bmap_dmxr[0]; |
| 175 | for (level = 0, rval = 0; |
| 176 | level < XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK); |
| 177 | level++) { |
| 178 | len += maxrecs - 1; |
| 179 | do_div(len, maxrecs); |
| 180 | rval += len; |
Darrick J. Wong | 5e5c943 | 2017-09-18 09:41:17 -0700 | [diff] [blame] | 181 | if (len == 1) |
| 182 | return rval + XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK) - |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 183 | level - 1; |
| 184 | if (level == 0) |
| 185 | maxrecs = mp->m_bmap_dmxr[1]; |
| 186 | } |
| 187 | return rval; |
| 188 | } |
| 189 | |
| 190 | /* |
| 191 | * Calculate the default attribute fork offset for newly created inodes. |
| 192 | */ |
| 193 | uint |
| 194 | xfs_default_attroffset( |
| 195 | struct xfs_inode *ip) |
| 196 | { |
| 197 | struct xfs_mount *mp = ip->i_mount; |
| 198 | uint offset; |
| 199 | |
| 200 | if (mp->m_sb.sb_inodesize == 256) { |
Christoph Hellwig | 56cea2d | 2013-03-12 23:30:36 +1100 | [diff] [blame] | 201 | offset = XFS_LITINO(mp, ip->i_d.di_version) - |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 202 | XFS_BMDR_SPACE_CALC(MINABTPTRS); |
| 203 | } else { |
| 204 | offset = XFS_BMDR_SPACE_CALC(6 * MINABTPTRS); |
| 205 | } |
| 206 | |
Christoph Hellwig | 56cea2d | 2013-03-12 23:30:36 +1100 | [diff] [blame] | 207 | ASSERT(offset < XFS_LITINO(mp, ip->i_d.di_version)); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 208 | return offset; |
| 209 | } |
| 210 | |
| 211 | /* |
| 212 | * Helper routine to reset inode di_forkoff field when switching |
| 213 | * attribute fork from local to extent format - we reset it where |
| 214 | * possible to make space available for inline data fork extents. |
| 215 | */ |
| 216 | STATIC void |
| 217 | xfs_bmap_forkoff_reset( |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 218 | xfs_inode_t *ip, |
| 219 | int whichfork) |
| 220 | { |
| 221 | if (whichfork == XFS_ATTR_FORK && |
| 222 | ip->i_d.di_format != XFS_DINODE_FMT_DEV && |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 223 | ip->i_d.di_format != XFS_DINODE_FMT_BTREE) { |
| 224 | uint dfl_forkoff = xfs_default_attroffset(ip) >> 3; |
| 225 | |
| 226 | if (dfl_forkoff > ip->i_d.di_forkoff) |
| 227 | ip->i_d.di_forkoff = dfl_forkoff; |
| 228 | } |
| 229 | } |
| 230 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 231 | #ifdef DEBUG |
| 232 | STATIC struct xfs_buf * |
| 233 | xfs_bmap_get_bp( |
| 234 | struct xfs_btree_cur *cur, |
| 235 | xfs_fsblock_t bno) |
| 236 | { |
Dave Chinner | e6631f8 | 2018-05-09 07:49:37 -0700 | [diff] [blame] | 237 | struct xfs_log_item *lip; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 238 | int i; |
| 239 | |
| 240 | if (!cur) |
| 241 | return NULL; |
| 242 | |
| 243 | for (i = 0; i < XFS_BTREE_MAXLEVELS; i++) { |
| 244 | if (!cur->bc_bufs[i]) |
| 245 | break; |
| 246 | if (XFS_BUF_ADDR(cur->bc_bufs[i]) == bno) |
| 247 | return cur->bc_bufs[i]; |
| 248 | } |
| 249 | |
| 250 | /* Chase down all the log items to see if the bp is there */ |
Dave Chinner | e6631f8 | 2018-05-09 07:49:37 -0700 | [diff] [blame] | 251 | list_for_each_entry(lip, &cur->bc_tp->t_items, li_trans) { |
| 252 | struct xfs_buf_log_item *bip = (struct xfs_buf_log_item *)lip; |
| 253 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 254 | if (bip->bli_item.li_type == XFS_LI_BUF && |
| 255 | XFS_BUF_ADDR(bip->bli_buf) == bno) |
| 256 | return bip->bli_buf; |
| 257 | } |
| 258 | |
| 259 | return NULL; |
| 260 | } |
| 261 | |
| 262 | STATIC void |
| 263 | xfs_check_block( |
| 264 | struct xfs_btree_block *block, |
| 265 | xfs_mount_t *mp, |
| 266 | int root, |
| 267 | short sz) |
| 268 | { |
| 269 | int i, j, dmxr; |
| 270 | __be64 *pp, *thispa; /* pointer to block address */ |
| 271 | xfs_bmbt_key_t *prevp, *keyp; |
| 272 | |
| 273 | ASSERT(be16_to_cpu(block->bb_level) > 0); |
| 274 | |
| 275 | prevp = NULL; |
| 276 | for( i = 1; i <= xfs_btree_get_numrecs(block); i++) { |
| 277 | dmxr = mp->m_bmap_dmxr[0]; |
| 278 | keyp = XFS_BMBT_KEY_ADDR(mp, block, i); |
| 279 | |
| 280 | if (prevp) { |
| 281 | ASSERT(be64_to_cpu(prevp->br_startoff) < |
| 282 | be64_to_cpu(keyp->br_startoff)); |
| 283 | } |
| 284 | prevp = keyp; |
| 285 | |
| 286 | /* |
| 287 | * Compare the block numbers to see if there are dups. |
| 288 | */ |
| 289 | if (root) |
| 290 | pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, i, sz); |
| 291 | else |
| 292 | pp = XFS_BMBT_PTR_ADDR(mp, block, i, dmxr); |
| 293 | |
| 294 | for (j = i+1; j <= be16_to_cpu(block->bb_numrecs); j++) { |
| 295 | if (root) |
| 296 | thispa = XFS_BMAP_BROOT_PTR_ADDR(mp, block, j, sz); |
| 297 | else |
| 298 | thispa = XFS_BMBT_PTR_ADDR(mp, block, j, dmxr); |
| 299 | if (*thispa == *pp) { |
| 300 | xfs_warn(mp, "%s: thispa(%d) == pp(%d) %Ld", |
| 301 | __func__, j, i, |
| 302 | (unsigned long long)be64_to_cpu(*thispa)); |
Darrick J. Wong | cec5725 | 2018-05-04 15:31:21 -0700 | [diff] [blame] | 303 | xfs_err(mp, "%s: ptrs are equal in node\n", |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 304 | __func__); |
Darrick J. Wong | cec5725 | 2018-05-04 15:31:21 -0700 | [diff] [blame] | 305 | xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 306 | } |
| 307 | } |
| 308 | } |
| 309 | } |
| 310 | |
| 311 | /* |
| 312 | * Check that the extents for the inode ip are in the right order in all |
Dave Chinner | e354381 | 2016-01-08 11:28:49 +1100 | [diff] [blame] | 313 | * btree leaves. THis becomes prohibitively expensive for large extent count |
| 314 | * files, so don't bother with inodes that have more than 10,000 extents in |
| 315 | * them. The btree record ordering checks will still be done, so for such large |
| 316 | * bmapbt constructs that is going to catch most corruptions. |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 317 | */ |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 318 | STATIC void |
| 319 | xfs_bmap_check_leaf_extents( |
| 320 | xfs_btree_cur_t *cur, /* btree cursor or null */ |
| 321 | xfs_inode_t *ip, /* incore inode pointer */ |
| 322 | int whichfork) /* data or attr fork */ |
| 323 | { |
| 324 | struct xfs_btree_block *block; /* current btree block */ |
| 325 | xfs_fsblock_t bno; /* block # of "block" */ |
| 326 | xfs_buf_t *bp; /* buffer for "block" */ |
| 327 | int error; /* error return value */ |
| 328 | xfs_extnum_t i=0, j; /* index into the extents list */ |
| 329 | xfs_ifork_t *ifp; /* fork structure */ |
| 330 | int level; /* btree level, for checking */ |
| 331 | xfs_mount_t *mp; /* file system mount structure */ |
| 332 | __be64 *pp; /* pointer to block address */ |
| 333 | xfs_bmbt_rec_t *ep; /* pointer to current extent */ |
| 334 | xfs_bmbt_rec_t last = {0, 0}; /* last extent in prev block */ |
| 335 | xfs_bmbt_rec_t *nextp; /* pointer to next extent */ |
| 336 | int bp_release = 0; |
| 337 | |
| 338 | if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE) { |
| 339 | return; |
| 340 | } |
| 341 | |
Dave Chinner | e354381 | 2016-01-08 11:28:49 +1100 | [diff] [blame] | 342 | /* skip large extent count inodes */ |
| 343 | if (ip->i_d.di_nextents > 10000) |
| 344 | return; |
| 345 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 346 | bno = NULLFSBLOCK; |
| 347 | mp = ip->i_mount; |
| 348 | ifp = XFS_IFORK_PTR(ip, whichfork); |
| 349 | block = ifp->if_broot; |
| 350 | /* |
| 351 | * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out. |
| 352 | */ |
| 353 | level = be16_to_cpu(block->bb_level); |
| 354 | ASSERT(level > 0); |
| 355 | xfs_check_block(block, mp, 1, ifp->if_broot_bytes); |
| 356 | pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes); |
| 357 | bno = be64_to_cpu(*pp); |
| 358 | |
Christoph Hellwig | d5cf09b | 2014-07-30 09:12:05 +1000 | [diff] [blame] | 359 | ASSERT(bno != NULLFSBLOCK); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 360 | ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount); |
| 361 | ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks); |
| 362 | |
| 363 | /* |
| 364 | * Go down the tree until leaf level is reached, following the first |
| 365 | * pointer (leftmost) at each level. |
| 366 | */ |
| 367 | while (level-- > 0) { |
| 368 | /* See if buf is in cur first */ |
| 369 | bp_release = 0; |
| 370 | bp = xfs_bmap_get_bp(cur, XFS_FSB_TO_DADDR(mp, bno)); |
| 371 | if (!bp) { |
| 372 | bp_release = 1; |
| 373 | error = xfs_btree_read_bufl(mp, NULL, bno, 0, &bp, |
| 374 | XFS_BMAP_BTREE_REF, |
| 375 | &xfs_bmbt_buf_ops); |
| 376 | if (error) |
| 377 | goto error_norelse; |
| 378 | } |
| 379 | block = XFS_BUF_TO_BLOCK(bp); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 380 | if (level == 0) |
| 381 | break; |
| 382 | |
| 383 | /* |
| 384 | * Check this block for basic sanity (increasing keys and |
| 385 | * no duplicate blocks). |
| 386 | */ |
| 387 | |
| 388 | xfs_check_block(block, mp, 0, 0); |
| 389 | pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]); |
| 390 | bno = be64_to_cpu(*pp); |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 391 | XFS_WANT_CORRUPTED_GOTO(mp, |
Darrick J. Wong | 59f6fec | 2018-01-08 10:51:00 -0800 | [diff] [blame] | 392 | xfs_verify_fsbno(mp, bno), error0); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 393 | if (bp_release) { |
| 394 | bp_release = 0; |
| 395 | xfs_trans_brelse(NULL, bp); |
| 396 | } |
| 397 | } |
| 398 | |
| 399 | /* |
| 400 | * Here with bp and block set to the leftmost leaf node in the tree. |
| 401 | */ |
| 402 | i = 0; |
| 403 | |
| 404 | /* |
| 405 | * Loop over all leaf nodes checking that all extents are in the right order. |
| 406 | */ |
| 407 | for (;;) { |
| 408 | xfs_fsblock_t nextbno; |
| 409 | xfs_extnum_t num_recs; |
| 410 | |
| 411 | |
| 412 | num_recs = xfs_btree_get_numrecs(block); |
| 413 | |
| 414 | /* |
| 415 | * Read-ahead the next leaf block, if any. |
| 416 | */ |
| 417 | |
| 418 | nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib); |
| 419 | |
| 420 | /* |
| 421 | * Check all the extents to make sure they are OK. |
| 422 | * If we had a previous block, the last entry should |
| 423 | * conform with the first entry in this one. |
| 424 | */ |
| 425 | |
| 426 | ep = XFS_BMBT_REC_ADDR(mp, block, 1); |
| 427 | if (i) { |
| 428 | ASSERT(xfs_bmbt_disk_get_startoff(&last) + |
| 429 | xfs_bmbt_disk_get_blockcount(&last) <= |
| 430 | xfs_bmbt_disk_get_startoff(ep)); |
| 431 | } |
| 432 | for (j = 1; j < num_recs; j++) { |
| 433 | nextp = XFS_BMBT_REC_ADDR(mp, block, j + 1); |
| 434 | ASSERT(xfs_bmbt_disk_get_startoff(ep) + |
| 435 | xfs_bmbt_disk_get_blockcount(ep) <= |
| 436 | xfs_bmbt_disk_get_startoff(nextp)); |
| 437 | ep = nextp; |
| 438 | } |
| 439 | |
| 440 | last = *ep; |
| 441 | i += num_recs; |
| 442 | if (bp_release) { |
| 443 | bp_release = 0; |
| 444 | xfs_trans_brelse(NULL, bp); |
| 445 | } |
| 446 | bno = nextbno; |
| 447 | /* |
| 448 | * If we've reached the end, stop. |
| 449 | */ |
| 450 | if (bno == NULLFSBLOCK) |
| 451 | break; |
| 452 | |
| 453 | bp_release = 0; |
| 454 | bp = xfs_bmap_get_bp(cur, XFS_FSB_TO_DADDR(mp, bno)); |
| 455 | if (!bp) { |
| 456 | bp_release = 1; |
| 457 | error = xfs_btree_read_bufl(mp, NULL, bno, 0, &bp, |
| 458 | XFS_BMAP_BTREE_REF, |
| 459 | &xfs_bmbt_buf_ops); |
| 460 | if (error) |
| 461 | goto error_norelse; |
| 462 | } |
| 463 | block = XFS_BUF_TO_BLOCK(bp); |
| 464 | } |
Luis de Bethencourt | a5fd276 | 2016-03-09 08:17:56 +1100 | [diff] [blame] | 465 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 466 | return; |
| 467 | |
| 468 | error0: |
| 469 | xfs_warn(mp, "%s: at error0", __func__); |
| 470 | if (bp_release) |
| 471 | xfs_trans_brelse(NULL, bp); |
| 472 | error_norelse: |
| 473 | xfs_warn(mp, "%s: BAD after btree leaves for %d extents", |
| 474 | __func__, i); |
Darrick J. Wong | cec5725 | 2018-05-04 15:31:21 -0700 | [diff] [blame] | 475 | xfs_err(mp, "%s: CORRUPTED BTREE OR SOMETHING", __func__); |
| 476 | xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 477 | return; |
| 478 | } |
| 479 | |
| 480 | /* |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 481 | * Validate that the bmbt_irecs being returned from bmapi are valid |
Zhi Yong Wu | a97f4df | 2013-08-12 03:14:53 +0000 | [diff] [blame] | 482 | * given the caller's original parameters. Specifically check the |
| 483 | * ranges of the returned irecs to ensure that they only extend beyond |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 484 | * the given parameters if the XFS_BMAPI_ENTIRE flag was set. |
| 485 | */ |
| 486 | STATIC void |
| 487 | xfs_bmap_validate_ret( |
| 488 | xfs_fileoff_t bno, |
| 489 | xfs_filblks_t len, |
| 490 | int flags, |
| 491 | xfs_bmbt_irec_t *mval, |
| 492 | int nmap, |
| 493 | int ret_nmap) |
| 494 | { |
| 495 | int i; /* index to map values */ |
| 496 | |
| 497 | ASSERT(ret_nmap <= nmap); |
| 498 | |
| 499 | for (i = 0; i < ret_nmap; i++) { |
| 500 | ASSERT(mval[i].br_blockcount > 0); |
| 501 | if (!(flags & XFS_BMAPI_ENTIRE)) { |
| 502 | ASSERT(mval[i].br_startoff >= bno); |
| 503 | ASSERT(mval[i].br_blockcount <= len); |
| 504 | ASSERT(mval[i].br_startoff + mval[i].br_blockcount <= |
| 505 | bno + len); |
| 506 | } else { |
| 507 | ASSERT(mval[i].br_startoff < bno + len); |
| 508 | ASSERT(mval[i].br_startoff + mval[i].br_blockcount > |
| 509 | bno); |
| 510 | } |
| 511 | ASSERT(i == 0 || |
| 512 | mval[i - 1].br_startoff + mval[i - 1].br_blockcount == |
| 513 | mval[i].br_startoff); |
| 514 | ASSERT(mval[i].br_startblock != DELAYSTARTBLOCK && |
| 515 | mval[i].br_startblock != HOLESTARTBLOCK); |
| 516 | ASSERT(mval[i].br_state == XFS_EXT_NORM || |
| 517 | mval[i].br_state == XFS_EXT_UNWRITTEN); |
| 518 | } |
| 519 | } |
| 520 | |
| 521 | #else |
| 522 | #define xfs_bmap_check_leaf_extents(cur, ip, whichfork) do { } while (0) |
Darrick J. Wong | 7bf7a19 | 2017-08-31 15:11:06 -0700 | [diff] [blame] | 523 | #define xfs_bmap_validate_ret(bno,len,flags,mval,onmap,nmap) do { } while (0) |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 524 | #endif /* DEBUG */ |
| 525 | |
| 526 | /* |
| 527 | * bmap free list manipulation functions |
| 528 | */ |
| 529 | |
| 530 | /* |
| 531 | * Add the extent to the list of extents to be free at transaction end. |
| 532 | * The list is maintained sorted (by block number). |
| 533 | */ |
| 534 | void |
Brian Foster | fcb762f | 2018-05-09 08:45:04 -0700 | [diff] [blame] | 535 | __xfs_bmap_add_free( |
Darrick J. Wong | 340785c | 2016-08-03 11:33:42 +1000 | [diff] [blame] | 536 | struct xfs_mount *mp, |
| 537 | struct xfs_defer_ops *dfops, |
| 538 | xfs_fsblock_t bno, |
| 539 | xfs_filblks_t len, |
Brian Foster | fcb762f | 2018-05-09 08:45:04 -0700 | [diff] [blame] | 540 | struct xfs_owner_info *oinfo, |
| 541 | bool skip_discard) |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 542 | { |
Darrick J. Wong | 310a75a | 2016-08-03 11:18:10 +1000 | [diff] [blame] | 543 | struct xfs_extent_free_item *new; /* new element */ |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 544 | #ifdef DEBUG |
| 545 | xfs_agnumber_t agno; |
| 546 | xfs_agblock_t agbno; |
| 547 | |
| 548 | ASSERT(bno != NULLFSBLOCK); |
| 549 | ASSERT(len > 0); |
| 550 | ASSERT(len <= MAXEXTLEN); |
| 551 | ASSERT(!isnullstartblock(bno)); |
| 552 | agno = XFS_FSB_TO_AGNO(mp, bno); |
| 553 | agbno = XFS_FSB_TO_AGBNO(mp, bno); |
| 554 | ASSERT(agno < mp->m_sb.sb_agcount); |
| 555 | ASSERT(agbno < mp->m_sb.sb_agblocks); |
| 556 | ASSERT(len < mp->m_sb.sb_agblocks); |
| 557 | ASSERT(agbno + len <= mp->m_sb.sb_agblocks); |
| 558 | #endif |
| 559 | ASSERT(xfs_bmap_free_item_zone != NULL); |
Darrick J. Wong | 340785c | 2016-08-03 11:33:42 +1000 | [diff] [blame] | 560 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 561 | new = kmem_zone_alloc(xfs_bmap_free_item_zone, KM_SLEEP); |
Darrick J. Wong | 310a75a | 2016-08-03 11:18:10 +1000 | [diff] [blame] | 562 | new->xefi_startblock = bno; |
| 563 | new->xefi_blockcount = (xfs_extlen_t)len; |
Darrick J. Wong | 340785c | 2016-08-03 11:33:42 +1000 | [diff] [blame] | 564 | if (oinfo) |
| 565 | new->xefi_oinfo = *oinfo; |
| 566 | else |
| 567 | xfs_rmap_skip_owner_update(&new->xefi_oinfo); |
Brian Foster | fcb762f | 2018-05-09 08:45:04 -0700 | [diff] [blame] | 568 | new->xefi_skip_discard = skip_discard; |
Darrick J. Wong | ba9e780 | 2016-08-03 11:26:33 +1000 | [diff] [blame] | 569 | trace_xfs_bmap_free_defer(mp, XFS_FSB_TO_AGNO(mp, bno), 0, |
| 570 | XFS_FSB_TO_AGBNO(mp, bno), len); |
Darrick J. Wong | 2c3234d | 2016-08-03 11:19:29 +1000 | [diff] [blame] | 571 | xfs_defer_add(dfops, XFS_DEFER_OPS_TYPE_FREE, &new->xefi_list); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 572 | } |
| 573 | |
| 574 | /* |
| 575 | * Inode fork format manipulation functions |
| 576 | */ |
| 577 | |
| 578 | /* |
| 579 | * Transform a btree format file with only one leaf node, where the |
| 580 | * extents list will fit in the inode, into an extents format file. |
| 581 | * Since the file extents are already in-core, all we have to do is |
| 582 | * give up the space for the btree root and pitch the leaf block. |
| 583 | */ |
| 584 | STATIC int /* error */ |
| 585 | xfs_bmap_btree_to_extents( |
| 586 | xfs_trans_t *tp, /* transaction pointer */ |
| 587 | xfs_inode_t *ip, /* incore inode pointer */ |
| 588 | xfs_btree_cur_t *cur, /* btree cursor */ |
| 589 | int *logflagsp, /* inode logging flags */ |
| 590 | int whichfork) /* data or attr fork */ |
| 591 | { |
| 592 | /* REFERENCED */ |
| 593 | struct xfs_btree_block *cblock;/* child btree block */ |
| 594 | xfs_fsblock_t cbno; /* child block number */ |
| 595 | xfs_buf_t *cbp; /* child block's buffer */ |
| 596 | int error; /* error return value */ |
| 597 | xfs_ifork_t *ifp; /* inode fork data */ |
| 598 | xfs_mount_t *mp; /* mount point structure */ |
| 599 | __be64 *pp; /* ptr to block address */ |
| 600 | struct xfs_btree_block *rblock;/* root btree block */ |
Darrick J. Wong | 340785c | 2016-08-03 11:33:42 +1000 | [diff] [blame] | 601 | struct xfs_owner_info oinfo; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 602 | |
| 603 | mp = ip->i_mount; |
| 604 | ifp = XFS_IFORK_PTR(ip, whichfork); |
Darrick J. Wong | 60b4984 | 2016-10-03 09:11:34 -0700 | [diff] [blame] | 605 | ASSERT(whichfork != XFS_COW_FORK); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 606 | ASSERT(ifp->if_flags & XFS_IFEXTENTS); |
| 607 | ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE); |
| 608 | rblock = ifp->if_broot; |
| 609 | ASSERT(be16_to_cpu(rblock->bb_level) == 1); |
| 610 | ASSERT(be16_to_cpu(rblock->bb_numrecs) == 1); |
| 611 | ASSERT(xfs_bmbt_maxrecs(mp, ifp->if_broot_bytes, 0) == 1); |
| 612 | pp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, ifp->if_broot_bytes); |
| 613 | cbno = be64_to_cpu(*pp); |
| 614 | *logflagsp = 0; |
| 615 | #ifdef DEBUG |
Darrick J. Wong | f135761 | 2017-10-17 21:37:33 -0700 | [diff] [blame] | 616 | XFS_WANT_CORRUPTED_RETURN(cur->bc_mp, |
| 617 | xfs_btree_check_lptr(cur, cbno, 1)); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 618 | #endif |
| 619 | error = xfs_btree_read_bufl(mp, tp, cbno, 0, &cbp, XFS_BMAP_BTREE_REF, |
| 620 | &xfs_bmbt_buf_ops); |
| 621 | if (error) |
| 622 | return error; |
| 623 | cblock = XFS_BUF_TO_BLOCK(cbp); |
| 624 | if ((error = xfs_btree_check_block(cur, cblock, 0, cbp))) |
| 625 | return error; |
Darrick J. Wong | 340785c | 2016-08-03 11:33:42 +1000 | [diff] [blame] | 626 | xfs_rmap_ino_bmbt_owner(&oinfo, ip->i_ino, whichfork); |
| 627 | xfs_bmap_add_free(mp, cur->bc_private.b.dfops, cbno, 1, &oinfo); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 628 | ip->i_d.di_nblocks--; |
| 629 | xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, -1L); |
| 630 | xfs_trans_binval(tp, cbp); |
| 631 | if (cur->bc_bufs[0] == cbp) |
| 632 | cur->bc_bufs[0] = NULL; |
| 633 | xfs_iroot_realloc(ip, -1, whichfork); |
| 634 | ASSERT(ifp->if_broot == NULL); |
| 635 | ASSERT((ifp->if_flags & XFS_IFBROOT) == 0); |
| 636 | XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS); |
| 637 | *logflagsp = XFS_ILOG_CORE | xfs_ilog_fext(whichfork); |
| 638 | return 0; |
| 639 | } |
| 640 | |
| 641 | /* |
| 642 | * Convert an extents-format file into a btree-format file. |
| 643 | * The new file will have a root block (in the inode) and a single child block. |
| 644 | */ |
| 645 | STATIC int /* error */ |
| 646 | xfs_bmap_extents_to_btree( |
| 647 | xfs_trans_t *tp, /* transaction pointer */ |
| 648 | xfs_inode_t *ip, /* incore inode pointer */ |
| 649 | xfs_fsblock_t *firstblock, /* first-block-allocated */ |
Darrick J. Wong | 2c3234d | 2016-08-03 11:19:29 +1000 | [diff] [blame] | 650 | struct xfs_defer_ops *dfops, /* blocks freed in xaction */ |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 651 | xfs_btree_cur_t **curp, /* cursor returned to caller */ |
| 652 | int wasdel, /* converting a delayed alloc */ |
| 653 | int *logflagsp, /* inode logging flags */ |
| 654 | int whichfork) /* data or attr fork */ |
| 655 | { |
| 656 | struct xfs_btree_block *ablock; /* allocated (child) bt block */ |
| 657 | xfs_buf_t *abp; /* buffer for ablock */ |
| 658 | xfs_alloc_arg_t args; /* allocation arguments */ |
| 659 | xfs_bmbt_rec_t *arp; /* child record pointer */ |
| 660 | struct xfs_btree_block *block; /* btree root block */ |
| 661 | xfs_btree_cur_t *cur; /* bmap btree cursor */ |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 662 | int error; /* error return value */ |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 663 | xfs_ifork_t *ifp; /* inode fork pointer */ |
| 664 | xfs_bmbt_key_t *kp; /* root block key pointer */ |
| 665 | xfs_mount_t *mp; /* mount structure */ |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 666 | xfs_bmbt_ptr_t *pp; /* root block address pointer */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 667 | struct xfs_iext_cursor icur; |
Christoph Hellwig | 906abed | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 668 | struct xfs_bmbt_irec rec; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 669 | xfs_extnum_t cnt = 0; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 670 | |
Christoph Hellwig | ee1a47a | 2013-04-21 14:53:46 -0500 | [diff] [blame] | 671 | mp = ip->i_mount; |
Darrick J. Wong | 60b4984 | 2016-10-03 09:11:34 -0700 | [diff] [blame] | 672 | ASSERT(whichfork != XFS_COW_FORK); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 673 | ifp = XFS_IFORK_PTR(ip, whichfork); |
| 674 | ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS); |
| 675 | |
| 676 | /* |
| 677 | * Make space in the inode incore. |
| 678 | */ |
| 679 | xfs_iroot_realloc(ip, 1, whichfork); |
| 680 | ifp->if_flags |= XFS_IFBROOT; |
| 681 | |
| 682 | /* |
| 683 | * Fill in the root. |
| 684 | */ |
| 685 | block = ifp->if_broot; |
Eric Sandeen | b6f41e4 | 2017-01-27 23:16:39 -0800 | [diff] [blame] | 686 | xfs_btree_init_block_int(mp, block, XFS_BUF_DADDR_NULL, |
| 687 | XFS_BTNUM_BMAP, 1, 1, ip->i_ino, |
Eric Sandeen | f88ae46 | 2017-01-27 23:16:37 -0800 | [diff] [blame] | 688 | XFS_BTREE_LONG_PTRS); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 689 | /* |
| 690 | * Need a cursor. Can't allocate until bb_level is filled in. |
| 691 | */ |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 692 | cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork); |
| 693 | cur->bc_private.b.firstblock = *firstblock; |
Darrick J. Wong | 2c3234d | 2016-08-03 11:19:29 +1000 | [diff] [blame] | 694 | cur->bc_private.b.dfops = dfops; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 695 | cur->bc_private.b.flags = wasdel ? XFS_BTCUR_BPRV_WASDEL : 0; |
| 696 | /* |
| 697 | * Convert to a btree with two levels, one record in root. |
| 698 | */ |
| 699 | XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_BTREE); |
| 700 | memset(&args, 0, sizeof(args)); |
| 701 | args.tp = tp; |
| 702 | args.mp = mp; |
Darrick J. Wong | 340785c | 2016-08-03 11:33:42 +1000 | [diff] [blame] | 703 | xfs_rmap_ino_bmbt_owner(&args.oinfo, ip->i_ino, whichfork); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 704 | args.firstblock = *firstblock; |
| 705 | if (*firstblock == NULLFSBLOCK) { |
| 706 | args.type = XFS_ALLOCTYPE_START_BNO; |
| 707 | args.fsbno = XFS_INO_TO_FSB(mp, ip->i_ino); |
Darrick J. Wong | 2c3234d | 2016-08-03 11:19:29 +1000 | [diff] [blame] | 708 | } else if (dfops->dop_low) { |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 709 | args.type = XFS_ALLOCTYPE_START_BNO; |
| 710 | args.fsbno = *firstblock; |
| 711 | } else { |
| 712 | args.type = XFS_ALLOCTYPE_NEAR_BNO; |
| 713 | args.fsbno = *firstblock; |
| 714 | } |
| 715 | args.minlen = args.maxlen = args.prod = 1; |
| 716 | args.wasdel = wasdel; |
| 717 | *logflagsp = 0; |
| 718 | if ((error = xfs_alloc_vextent(&args))) { |
| 719 | xfs_iroot_realloc(ip, -1, whichfork); |
Eric Sandeen | 2c4306f | 2018-04-16 23:07:27 -0700 | [diff] [blame] | 720 | ASSERT(ifp->if_broot == NULL); |
| 721 | XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 722 | xfs_btree_del_cursor(cur, XFS_BTREE_ERROR); |
| 723 | return error; |
| 724 | } |
Darrick J. Wong | 90e2056 | 2016-10-03 09:11:45 -0700 | [diff] [blame] | 725 | |
Christoph Hellwig | 2fcc319 | 2017-03-08 10:38:53 -0800 | [diff] [blame] | 726 | if (WARN_ON_ONCE(args.fsbno == NULLFSBLOCK)) { |
| 727 | xfs_iroot_realloc(ip, -1, whichfork); |
Eric Sandeen | 2c4306f | 2018-04-16 23:07:27 -0700 | [diff] [blame] | 728 | ASSERT(ifp->if_broot == NULL); |
| 729 | XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS); |
Christoph Hellwig | 2fcc319 | 2017-03-08 10:38:53 -0800 | [diff] [blame] | 730 | xfs_btree_del_cursor(cur, XFS_BTREE_ERROR); |
| 731 | return -ENOSPC; |
| 732 | } |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 733 | /* |
| 734 | * Allocation can't fail, the space was reserved. |
| 735 | */ |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 736 | ASSERT(*firstblock == NULLFSBLOCK || |
Christoph Hellwig | 410d17f | 2017-02-16 17:12:51 -0800 | [diff] [blame] | 737 | args.agno >= XFS_FSB_TO_AGNO(mp, *firstblock)); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 738 | *firstblock = cur->bc_private.b.firstblock = args.fsbno; |
| 739 | cur->bc_private.b.allocated++; |
| 740 | ip->i_d.di_nblocks++; |
| 741 | xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, 1L); |
| 742 | abp = xfs_btree_get_bufl(mp, tp, args.fsbno, 0); |
| 743 | /* |
| 744 | * Fill in the child block. |
| 745 | */ |
| 746 | abp->b_ops = &xfs_bmbt_buf_ops; |
| 747 | ablock = XFS_BUF_TO_BLOCK(abp); |
Eric Sandeen | b6f41e4 | 2017-01-27 23:16:39 -0800 | [diff] [blame] | 748 | xfs_btree_init_block_int(mp, ablock, abp->b_bn, |
| 749 | XFS_BTNUM_BMAP, 0, 0, ip->i_ino, |
Christoph Hellwig | ee1a47a | 2013-04-21 14:53:46 -0500 | [diff] [blame] | 750 | XFS_BTREE_LONG_PTRS); |
| 751 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 752 | for_each_xfs_iext(ifp, &icur, &rec) { |
Christoph Hellwig | 906abed | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 753 | if (isnullstartblock(rec.br_startblock)) |
| 754 | continue; |
| 755 | arp = XFS_BMBT_REC_ADDR(mp, ablock, 1 + cnt); |
| 756 | xfs_bmbt_disk_set_all(arp, &rec); |
| 757 | cnt++; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 758 | } |
| 759 | ASSERT(cnt == XFS_IFORK_NEXTENTS(ip, whichfork)); |
| 760 | xfs_btree_set_numrecs(ablock, cnt); |
| 761 | |
| 762 | /* |
| 763 | * Fill in the root key and pointer. |
| 764 | */ |
| 765 | kp = XFS_BMBT_KEY_ADDR(mp, block, 1); |
| 766 | arp = XFS_BMBT_REC_ADDR(mp, ablock, 1); |
| 767 | kp->br_startoff = cpu_to_be64(xfs_bmbt_disk_get_startoff(arp)); |
| 768 | pp = XFS_BMBT_PTR_ADDR(mp, block, 1, xfs_bmbt_get_maxrecs(cur, |
| 769 | be16_to_cpu(block->bb_level))); |
| 770 | *pp = cpu_to_be64(args.fsbno); |
| 771 | |
| 772 | /* |
| 773 | * Do all this logging at the end so that |
| 774 | * the root is at the right level. |
| 775 | */ |
| 776 | xfs_btree_log_block(cur, abp, XFS_BB_ALL_BITS); |
| 777 | xfs_btree_log_recs(cur, abp, 1, be16_to_cpu(ablock->bb_numrecs)); |
| 778 | ASSERT(*curp == NULL); |
| 779 | *curp = cur; |
| 780 | *logflagsp = XFS_ILOG_CORE | xfs_ilog_fbroot(whichfork); |
| 781 | return 0; |
| 782 | } |
| 783 | |
| 784 | /* |
| 785 | * Convert a local file to an extents file. |
| 786 | * This code is out of bounds for data forks of regular files, |
| 787 | * since the file data needs to get logged so things will stay consistent. |
| 788 | * (The bmap-level manipulations are ok, though). |
| 789 | */ |
Dave Chinner | f3508bc | 2013-07-10 07:04:00 +1000 | [diff] [blame] | 790 | void |
| 791 | xfs_bmap_local_to_extents_empty( |
| 792 | struct xfs_inode *ip, |
| 793 | int whichfork) |
| 794 | { |
| 795 | struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork); |
| 796 | |
Darrick J. Wong | 60b4984 | 2016-10-03 09:11:34 -0700 | [diff] [blame] | 797 | ASSERT(whichfork != XFS_COW_FORK); |
Dave Chinner | f3508bc | 2013-07-10 07:04:00 +1000 | [diff] [blame] | 798 | ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL); |
| 799 | ASSERT(ifp->if_bytes == 0); |
| 800 | ASSERT(XFS_IFORK_NEXTENTS(ip, whichfork) == 0); |
| 801 | |
Eric Sandeen | 6a9edd3 | 2014-04-14 18:59:26 +1000 | [diff] [blame] | 802 | xfs_bmap_forkoff_reset(ip, whichfork); |
Dave Chinner | f3508bc | 2013-07-10 07:04:00 +1000 | [diff] [blame] | 803 | ifp->if_flags &= ~XFS_IFINLINE; |
| 804 | ifp->if_flags |= XFS_IFEXTENTS; |
Christoph Hellwig | 6bdcf26 | 2017-11-03 10:34:46 -0700 | [diff] [blame] | 805 | ifp->if_u1.if_root = NULL; |
| 806 | ifp->if_height = 0; |
Dave Chinner | f3508bc | 2013-07-10 07:04:00 +1000 | [diff] [blame] | 807 | XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS); |
| 808 | } |
| 809 | |
| 810 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 811 | STATIC int /* error */ |
| 812 | xfs_bmap_local_to_extents( |
| 813 | xfs_trans_t *tp, /* transaction pointer */ |
| 814 | xfs_inode_t *ip, /* incore inode pointer */ |
| 815 | xfs_fsblock_t *firstblock, /* first block allocated in xaction */ |
| 816 | xfs_extlen_t total, /* total blocks needed by transaction */ |
| 817 | int *logflagsp, /* inode logging flags */ |
| 818 | int whichfork, |
Christoph Hellwig | ee1a47a | 2013-04-21 14:53:46 -0500 | [diff] [blame] | 819 | void (*init_fn)(struct xfs_trans *tp, |
| 820 | struct xfs_buf *bp, |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 821 | struct xfs_inode *ip, |
| 822 | struct xfs_ifork *ifp)) |
| 823 | { |
Dave Chinner | f3508bc | 2013-07-10 07:04:00 +1000 | [diff] [blame] | 824 | int error = 0; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 825 | int flags; /* logging flags returned */ |
| 826 | xfs_ifork_t *ifp; /* inode fork pointer */ |
Dave Chinner | f3508bc | 2013-07-10 07:04:00 +1000 | [diff] [blame] | 827 | xfs_alloc_arg_t args; /* allocation arguments */ |
| 828 | xfs_buf_t *bp; /* buffer for extent block */ |
Christoph Hellwig | 50bb44c | 2017-08-29 15:44:11 -0700 | [diff] [blame] | 829 | struct xfs_bmbt_irec rec; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 830 | struct xfs_iext_cursor icur; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 831 | |
| 832 | /* |
| 833 | * We don't want to deal with the case of keeping inode data inline yet. |
| 834 | * So sending the data fork of a regular inode is invalid. |
| 835 | */ |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 836 | ASSERT(!(S_ISREG(VFS_I(ip)->i_mode) && whichfork == XFS_DATA_FORK)); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 837 | ifp = XFS_IFORK_PTR(ip, whichfork); |
| 838 | ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL); |
Dave Chinner | f3508bc | 2013-07-10 07:04:00 +1000 | [diff] [blame] | 839 | |
| 840 | if (!ifp->if_bytes) { |
| 841 | xfs_bmap_local_to_extents_empty(ip, whichfork); |
| 842 | flags = XFS_ILOG_CORE; |
| 843 | goto done; |
| 844 | } |
| 845 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 846 | flags = 0; |
| 847 | error = 0; |
Christoph Hellwig | 6bdcf26 | 2017-11-03 10:34:46 -0700 | [diff] [blame] | 848 | ASSERT((ifp->if_flags & (XFS_IFINLINE|XFS_IFEXTENTS)) == XFS_IFINLINE); |
Dave Chinner | f3508bc | 2013-07-10 07:04:00 +1000 | [diff] [blame] | 849 | memset(&args, 0, sizeof(args)); |
| 850 | args.tp = tp; |
| 851 | args.mp = ip->i_mount; |
Darrick J. Wong | 340785c | 2016-08-03 11:33:42 +1000 | [diff] [blame] | 852 | xfs_rmap_ino_owner(&args.oinfo, ip->i_ino, whichfork, 0); |
Dave Chinner | f3508bc | 2013-07-10 07:04:00 +1000 | [diff] [blame] | 853 | args.firstblock = *firstblock; |
| 854 | /* |
| 855 | * Allocate a block. We know we need only one, since the |
| 856 | * file currently fits in an inode. |
| 857 | */ |
| 858 | if (*firstblock == NULLFSBLOCK) { |
| 859 | args.fsbno = XFS_INO_TO_FSB(args.mp, ip->i_ino); |
| 860 | args.type = XFS_ALLOCTYPE_START_BNO; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 861 | } else { |
Dave Chinner | f3508bc | 2013-07-10 07:04:00 +1000 | [diff] [blame] | 862 | args.fsbno = *firstblock; |
| 863 | args.type = XFS_ALLOCTYPE_NEAR_BNO; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 864 | } |
Dave Chinner | f3508bc | 2013-07-10 07:04:00 +1000 | [diff] [blame] | 865 | args.total = total; |
| 866 | args.minlen = args.maxlen = args.prod = 1; |
| 867 | error = xfs_alloc_vextent(&args); |
| 868 | if (error) |
| 869 | goto done; |
| 870 | |
| 871 | /* Can't fail, the space was reserved. */ |
| 872 | ASSERT(args.fsbno != NULLFSBLOCK); |
| 873 | ASSERT(args.len == 1); |
| 874 | *firstblock = args.fsbno; |
| 875 | bp = xfs_btree_get_bufl(args.mp, tp, args.fsbno, 0); |
| 876 | |
Dave Chinner | fe22d55 | 2015-01-22 09:30:06 +1100 | [diff] [blame] | 877 | /* |
Brian Foster | b7cdc66 | 2015-10-12 15:40:24 +1100 | [diff] [blame] | 878 | * Initialize the block, copy the data and log the remote buffer. |
Dave Chinner | fe22d55 | 2015-01-22 09:30:06 +1100 | [diff] [blame] | 879 | * |
Brian Foster | b7cdc66 | 2015-10-12 15:40:24 +1100 | [diff] [blame] | 880 | * The callout is responsible for logging because the remote format |
| 881 | * might differ from the local format and thus we don't know how much to |
| 882 | * log here. Note that init_fn must also set the buffer log item type |
| 883 | * correctly. |
Dave Chinner | fe22d55 | 2015-01-22 09:30:06 +1100 | [diff] [blame] | 884 | */ |
Dave Chinner | f3508bc | 2013-07-10 07:04:00 +1000 | [diff] [blame] | 885 | init_fn(tp, bp, ip, ifp); |
| 886 | |
Brian Foster | b7cdc66 | 2015-10-12 15:40:24 +1100 | [diff] [blame] | 887 | /* account for the change in fork size */ |
Dave Chinner | f3508bc | 2013-07-10 07:04:00 +1000 | [diff] [blame] | 888 | xfs_idata_realloc(ip, -ifp->if_bytes, whichfork); |
| 889 | xfs_bmap_local_to_extents_empty(ip, whichfork); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 890 | flags |= XFS_ILOG_CORE; |
Dave Chinner | f3508bc | 2013-07-10 07:04:00 +1000 | [diff] [blame] | 891 | |
Christoph Hellwig | 6bdcf26 | 2017-11-03 10:34:46 -0700 | [diff] [blame] | 892 | ifp->if_u1.if_root = NULL; |
| 893 | ifp->if_height = 0; |
| 894 | |
Christoph Hellwig | 50bb44c | 2017-08-29 15:44:11 -0700 | [diff] [blame] | 895 | rec.br_startoff = 0; |
| 896 | rec.br_startblock = args.fsbno; |
| 897 | rec.br_blockcount = 1; |
| 898 | rec.br_state = XFS_EXT_NORM; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 899 | xfs_iext_first(ifp, &icur); |
Christoph Hellwig | 0254c2f | 2017-11-03 10:34:46 -0700 | [diff] [blame] | 900 | xfs_iext_insert(ip, &icur, &rec, 0); |
Christoph Hellwig | 50bb44c | 2017-08-29 15:44:11 -0700 | [diff] [blame] | 901 | |
Dave Chinner | f3508bc | 2013-07-10 07:04:00 +1000 | [diff] [blame] | 902 | XFS_IFORK_NEXT_SET(ip, whichfork, 1); |
| 903 | ip->i_d.di_nblocks = 1; |
| 904 | xfs_trans_mod_dquot_byino(tp, ip, |
| 905 | XFS_TRANS_DQ_BCOUNT, 1L); |
| 906 | flags |= xfs_ilog_fext(whichfork); |
| 907 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 908 | done: |
| 909 | *logflagsp = flags; |
| 910 | return error; |
| 911 | } |
| 912 | |
| 913 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | * Called from xfs_bmap_add_attrfork to handle btree format files. |
| 915 | */ |
| 916 | STATIC int /* error */ |
| 917 | xfs_bmap_add_attrfork_btree( |
| 918 | xfs_trans_t *tp, /* transaction pointer */ |
| 919 | xfs_inode_t *ip, /* incore inode pointer */ |
| 920 | xfs_fsblock_t *firstblock, /* first block allocated */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | int *flags) /* inode logging flags */ |
| 922 | { |
| 923 | xfs_btree_cur_t *cur; /* btree cursor */ |
| 924 | int error; /* error return value */ |
| 925 | xfs_mount_t *mp; /* file system mount struct */ |
| 926 | int stat; /* newroot status */ |
| 927 | |
| 928 | mp = ip->i_mount; |
| 929 | if (ip->i_df.if_broot_bytes <= XFS_IFORK_DSIZE(ip)) |
| 930 | *flags |= XFS_ILOG_DBROOT; |
| 931 | else { |
Christoph Hellwig | 561f7d1 | 2008-10-30 16:53:59 +1100 | [diff] [blame] | 932 | cur = xfs_bmbt_init_cursor(mp, tp, ip, XFS_DATA_FORK); |
Brian Foster | 0bd6207 | 2018-07-11 22:26:10 -0700 | [diff] [blame] | 933 | cur->bc_private.b.dfops = tp->t_dfops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | cur->bc_private.b.firstblock = *firstblock; |
Christoph Hellwig | b5cfbc2 | 2017-10-17 14:16:27 -0700 | [diff] [blame] | 935 | error = xfs_bmbt_lookup_first(cur, &stat); |
| 936 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | goto error0; |
Lachlan McIlroy | 6bd8fc8 | 2008-06-23 13:25:46 +1000 | [diff] [blame] | 938 | /* must be at least one entry */ |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 939 | XFS_WANT_CORRUPTED_GOTO(mp, stat == 1, error0); |
Christoph Hellwig | ea77b0a | 2008-10-30 16:57:28 +1100 | [diff] [blame] | 940 | if ((error = xfs_btree_new_iroot(cur, flags, &stat))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | goto error0; |
| 942 | if (stat == 0) { |
| 943 | xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 944 | return -ENOSPC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | } |
| 946 | *firstblock = cur->bc_private.b.firstblock; |
| 947 | cur->bc_private.b.allocated = 0; |
| 948 | xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR); |
| 949 | } |
| 950 | return 0; |
| 951 | error0: |
| 952 | xfs_btree_del_cursor(cur, XFS_BTREE_ERROR); |
| 953 | return error; |
| 954 | } |
| 955 | |
| 956 | /* |
| 957 | * Called from xfs_bmap_add_attrfork to handle extents format files. |
| 958 | */ |
| 959 | STATIC int /* error */ |
| 960 | xfs_bmap_add_attrfork_extents( |
| 961 | xfs_trans_t *tp, /* transaction pointer */ |
| 962 | xfs_inode_t *ip, /* incore inode pointer */ |
| 963 | xfs_fsblock_t *firstblock, /* first block allocated */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | int *flags) /* inode logging flags */ |
| 965 | { |
| 966 | xfs_btree_cur_t *cur; /* bmap btree cursor */ |
| 967 | int error; /* error return value */ |
| 968 | |
| 969 | if (ip->i_d.di_nextents * sizeof(xfs_bmbt_rec_t) <= XFS_IFORK_DSIZE(ip)) |
| 970 | return 0; |
| 971 | cur = NULL; |
Brian Foster | 0bd6207 | 2018-07-11 22:26:10 -0700 | [diff] [blame] | 972 | error = xfs_bmap_extents_to_btree(tp, ip, firstblock, tp->t_dfops, &cur, 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | flags, XFS_DATA_FORK); |
| 974 | if (cur) { |
| 975 | cur->bc_private.b.allocated = 0; |
| 976 | xfs_btree_del_cursor(cur, |
| 977 | error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR); |
| 978 | } |
| 979 | return error; |
| 980 | } |
| 981 | |
| 982 | /* |
Dave Chinner | 1e82379 | 2013-02-11 15:58:13 +1100 | [diff] [blame] | 983 | * Called from xfs_bmap_add_attrfork to handle local format files. Each |
| 984 | * different data fork content type needs a different callout to do the |
| 985 | * conversion. Some are basic and only require special block initialisation |
| 986 | * callouts for the data formating, others (directories) are so specialised they |
| 987 | * handle everything themselves. |
| 988 | * |
| 989 | * XXX (dgc): investigate whether directory conversion can use the generic |
| 990 | * formatting callout. It should be possible - it's just a very complex |
Christoph Hellwig | ee1a47a | 2013-04-21 14:53:46 -0500 | [diff] [blame] | 991 | * formatter. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | */ |
| 993 | STATIC int /* error */ |
| 994 | xfs_bmap_add_attrfork_local( |
| 995 | xfs_trans_t *tp, /* transaction pointer */ |
| 996 | xfs_inode_t *ip, /* incore inode pointer */ |
| 997 | xfs_fsblock_t *firstblock, /* first block allocated */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | int *flags) /* inode logging flags */ |
| 999 | { |
| 1000 | xfs_da_args_t dargs; /* args for dir/attr code */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | |
| 1002 | if (ip->i_df.if_bytes <= XFS_IFORK_DSIZE(ip)) |
| 1003 | return 0; |
Dave Chinner | 1e82379 | 2013-02-11 15:58:13 +1100 | [diff] [blame] | 1004 | |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 1005 | if (S_ISDIR(VFS_I(ip)->i_mode)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | memset(&dargs, 0, sizeof(dargs)); |
Dave Chinner | d6cf130 | 2014-06-06 15:14:11 +1000 | [diff] [blame] | 1007 | dargs.geo = ip->i_mount->m_dir_geo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | dargs.dp = ip; |
| 1009 | dargs.firstblock = firstblock; |
Dave Chinner | d6cf130 | 2014-06-06 15:14:11 +1000 | [diff] [blame] | 1010 | dargs.total = dargs.geo->fsbcount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | dargs.whichfork = XFS_DATA_FORK; |
| 1012 | dargs.trans = tp; |
Dave Chinner | 1e82379 | 2013-02-11 15:58:13 +1100 | [diff] [blame] | 1013 | return xfs_dir2_sf_to_block(&dargs); |
| 1014 | } |
| 1015 | |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 1016 | if (S_ISLNK(VFS_I(ip)->i_mode)) |
Dave Chinner | 1e82379 | 2013-02-11 15:58:13 +1100 | [diff] [blame] | 1017 | return xfs_bmap_local_to_extents(tp, ip, firstblock, 1, |
| 1018 | flags, XFS_DATA_FORK, |
| 1019 | xfs_symlink_local_to_remote); |
| 1020 | |
Dave Chinner | f3508bc | 2013-07-10 07:04:00 +1000 | [diff] [blame] | 1021 | /* should only be called for types that support local format data */ |
| 1022 | ASSERT(0); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1023 | return -EFSCORRUPTED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | } |
| 1025 | |
| 1026 | /* |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1027 | * Convert inode from non-attributed to attributed. |
| 1028 | * Must not be in a transaction, ip must not be locked. |
| 1029 | */ |
| 1030 | int /* error code */ |
| 1031 | xfs_bmap_add_attrfork( |
| 1032 | xfs_inode_t *ip, /* incore inode pointer */ |
| 1033 | int size, /* space new attribute needs */ |
| 1034 | int rsvd) /* xact may use reserved blks */ |
| 1035 | { |
| 1036 | xfs_fsblock_t firstblock; /* 1st block/ag allocated */ |
Darrick J. Wong | 2c3234d | 2016-08-03 11:19:29 +1000 | [diff] [blame] | 1037 | struct xfs_defer_ops dfops; /* freed extent records */ |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1038 | xfs_mount_t *mp; /* mount structure */ |
| 1039 | xfs_trans_t *tp; /* transaction pointer */ |
| 1040 | int blks; /* space reservation */ |
| 1041 | int version = 1; /* superblock attr version */ |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1042 | int logflags; /* logging flags */ |
| 1043 | int error; /* error return value */ |
| 1044 | |
| 1045 | ASSERT(XFS_IFORK_Q(ip) == 0); |
| 1046 | |
| 1047 | mp = ip->i_mount; |
| 1048 | ASSERT(!XFS_NOT_DQATTACHED(mp, ip)); |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 1049 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1050 | blks = XFS_ADDAFORK_SPACE_RES(mp); |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 1051 | |
| 1052 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_addafork, blks, 0, |
| 1053 | rsvd ? XFS_TRANS_RESERVE : 0, &tp); |
| 1054 | if (error) |
Mark Tinguely | 9e3908e | 2013-11-07 15:43:28 -0600 | [diff] [blame] | 1055 | return error; |
Brian Foster | 40d03ac | 2018-07-11 22:26:09 -0700 | [diff] [blame] | 1056 | xfs_defer_init(&dfops, &firstblock); |
| 1057 | tp->t_dfops = &dfops; |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 1058 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1059 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
| 1060 | error = xfs_trans_reserve_quota_nblks(tp, ip, blks, 0, rsvd ? |
| 1061 | XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES : |
| 1062 | XFS_QMOPT_RES_REGBLKS); |
Mark Tinguely | 9e3908e | 2013-11-07 15:43:28 -0600 | [diff] [blame] | 1063 | if (error) |
| 1064 | goto trans_cancel; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1065 | if (XFS_IFORK_Q(ip)) |
Mark Tinguely | 9e3908e | 2013-11-07 15:43:28 -0600 | [diff] [blame] | 1066 | goto trans_cancel; |
Darrick J. Wong | 0f352f8 | 2016-12-05 12:38:11 +1100 | [diff] [blame] | 1067 | if (ip->i_d.di_anextents != 0) { |
| 1068 | error = -EFSCORRUPTED; |
| 1069 | goto trans_cancel; |
| 1070 | } |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1071 | if (ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS) { |
| 1072 | /* |
| 1073 | * For inodes coming from pre-6.2 filesystems. |
| 1074 | */ |
| 1075 | ASSERT(ip->i_d.di_aformat == 0); |
| 1076 | ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS; |
| 1077 | } |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1078 | |
Mark Tinguely | 9e3908e | 2013-11-07 15:43:28 -0600 | [diff] [blame] | 1079 | xfs_trans_ijoin(tp, ip, 0); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1080 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
| 1081 | |
| 1082 | switch (ip->i_d.di_format) { |
| 1083 | case XFS_DINODE_FMT_DEV: |
| 1084 | ip->i_d.di_forkoff = roundup(sizeof(xfs_dev_t), 8) >> 3; |
| 1085 | break; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1086 | case XFS_DINODE_FMT_LOCAL: |
| 1087 | case XFS_DINODE_FMT_EXTENTS: |
| 1088 | case XFS_DINODE_FMT_BTREE: |
| 1089 | ip->i_d.di_forkoff = xfs_attr_shortform_bytesfit(ip, size); |
| 1090 | if (!ip->i_d.di_forkoff) |
| 1091 | ip->i_d.di_forkoff = xfs_default_attroffset(ip) >> 3; |
| 1092 | else if (mp->m_flags & XFS_MOUNT_ATTR2) |
| 1093 | version = 2; |
| 1094 | break; |
| 1095 | default: |
| 1096 | ASSERT(0); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1097 | error = -EINVAL; |
Mark Tinguely | 9e3908e | 2013-11-07 15:43:28 -0600 | [diff] [blame] | 1098 | goto trans_cancel; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1099 | } |
| 1100 | |
| 1101 | ASSERT(ip->i_afp == NULL); |
| 1102 | ip->i_afp = kmem_zone_zalloc(xfs_ifork_zone, KM_SLEEP); |
| 1103 | ip->i_afp->if_flags = XFS_IFEXTENTS; |
| 1104 | logflags = 0; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1105 | switch (ip->i_d.di_format) { |
| 1106 | case XFS_DINODE_FMT_LOCAL: |
Brian Foster | 0bd6207 | 2018-07-11 22:26:10 -0700 | [diff] [blame] | 1107 | error = xfs_bmap_add_attrfork_local(tp, ip, &firstblock, |
| 1108 | &logflags); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1109 | break; |
| 1110 | case XFS_DINODE_FMT_EXTENTS: |
| 1111 | error = xfs_bmap_add_attrfork_extents(tp, ip, &firstblock, |
Brian Foster | 0bd6207 | 2018-07-11 22:26:10 -0700 | [diff] [blame] | 1112 | &logflags); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1113 | break; |
| 1114 | case XFS_DINODE_FMT_BTREE: |
Brian Foster | 0bd6207 | 2018-07-11 22:26:10 -0700 | [diff] [blame] | 1115 | error = xfs_bmap_add_attrfork_btree(tp, ip, &firstblock, |
| 1116 | &logflags); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1117 | break; |
| 1118 | default: |
| 1119 | error = 0; |
| 1120 | break; |
| 1121 | } |
| 1122 | if (logflags) |
| 1123 | xfs_trans_log_inode(tp, ip, logflags); |
| 1124 | if (error) |
Mark Tinguely | 9e3908e | 2013-11-07 15:43:28 -0600 | [diff] [blame] | 1125 | goto bmap_cancel; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1126 | if (!xfs_sb_version_hasattr(&mp->m_sb) || |
| 1127 | (!xfs_sb_version_hasattr2(&mp->m_sb) && version == 2)) { |
Dave Chinner | 61e63ec | 2015-01-22 09:10:31 +1100 | [diff] [blame] | 1128 | bool log_sb = false; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1129 | |
| 1130 | spin_lock(&mp->m_sb_lock); |
| 1131 | if (!xfs_sb_version_hasattr(&mp->m_sb)) { |
| 1132 | xfs_sb_version_addattr(&mp->m_sb); |
Dave Chinner | 61e63ec | 2015-01-22 09:10:31 +1100 | [diff] [blame] | 1133 | log_sb = true; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1134 | } |
| 1135 | if (!xfs_sb_version_hasattr2(&mp->m_sb) && version == 2) { |
| 1136 | xfs_sb_version_addattr2(&mp->m_sb); |
Dave Chinner | 61e63ec | 2015-01-22 09:10:31 +1100 | [diff] [blame] | 1137 | log_sb = true; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1138 | } |
Dave Chinner | 4d11a40 | 2015-01-22 09:10:26 +1100 | [diff] [blame] | 1139 | spin_unlock(&mp->m_sb_lock); |
Dave Chinner | 61e63ec | 2015-01-22 09:10:31 +1100 | [diff] [blame] | 1140 | if (log_sb) |
| 1141 | xfs_log_sb(tp); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1142 | } |
| 1143 | |
Christoph Hellwig | 8ad7c629 | 2017-08-28 10:21:04 -0700 | [diff] [blame] | 1144 | error = xfs_defer_finish(&tp, &dfops); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1145 | if (error) |
Mark Tinguely | 9e3908e | 2013-11-07 15:43:28 -0600 | [diff] [blame] | 1146 | goto bmap_cancel; |
Christoph Hellwig | 7039331 | 2015-06-04 13:48:08 +1000 | [diff] [blame] | 1147 | error = xfs_trans_commit(tp); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1148 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
Mark Tinguely | 9e3908e | 2013-11-07 15:43:28 -0600 | [diff] [blame] | 1149 | return error; |
| 1150 | |
| 1151 | bmap_cancel: |
Darrick J. Wong | 2c3234d | 2016-08-03 11:19:29 +1000 | [diff] [blame] | 1152 | xfs_defer_cancel(&dfops); |
Mark Tinguely | 9e3908e | 2013-11-07 15:43:28 -0600 | [diff] [blame] | 1153 | trans_cancel: |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 1154 | xfs_trans_cancel(tp); |
Mark Tinguely | 9e3908e | 2013-11-07 15:43:28 -0600 | [diff] [blame] | 1155 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1156 | return error; |
| 1157 | } |
| 1158 | |
| 1159 | /* |
| 1160 | * Internal and external extent tree search functions. |
| 1161 | */ |
| 1162 | |
| 1163 | /* |
Christoph Hellwig | 211e95b | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 1164 | * Read in extents from a btree-format inode. |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1165 | */ |
Christoph Hellwig | 211e95b | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 1166 | int |
| 1167 | xfs_iread_extents( |
| 1168 | struct xfs_trans *tp, |
| 1169 | struct xfs_inode *ip, |
| 1170 | int whichfork) |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1171 | { |
Christoph Hellwig | 211e95b | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 1172 | struct xfs_mount *mp = ip->i_mount; |
Christoph Hellwig | e8e0e17 | 2017-10-19 11:06:29 -0700 | [diff] [blame] | 1173 | int state = xfs_bmap_fork_to_state(whichfork); |
Christoph Hellwig | 211e95b | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 1174 | struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork); |
| 1175 | xfs_extnum_t nextents = XFS_IFORK_NEXTENTS(ip, whichfork); |
| 1176 | struct xfs_btree_block *block = ifp->if_broot; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1177 | struct xfs_iext_cursor icur; |
Christoph Hellwig | 6bdcf26 | 2017-11-03 10:34:46 -0700 | [diff] [blame] | 1178 | struct xfs_bmbt_irec new; |
Christoph Hellwig | 211e95b | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 1179 | xfs_fsblock_t bno; |
| 1180 | struct xfs_buf *bp; |
| 1181 | xfs_extnum_t i, j; |
| 1182 | int level; |
| 1183 | __be64 *pp; |
| 1184 | int error; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1185 | |
Christoph Hellwig | 211e95b | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 1186 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL)); |
| 1187 | |
| 1188 | if (unlikely(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)) { |
| 1189 | XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW, mp); |
| 1190 | return -EFSCORRUPTED; |
| 1191 | } |
| 1192 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1193 | /* |
| 1194 | * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out. |
| 1195 | */ |
| 1196 | level = be16_to_cpu(block->bb_level); |
| 1197 | ASSERT(level > 0); |
| 1198 | pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes); |
| 1199 | bno = be64_to_cpu(*pp); |
Darrick J. Wong | d5a91ba | 2017-02-02 15:13:58 -0800 | [diff] [blame] | 1200 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1201 | /* |
| 1202 | * Go down the tree until leaf level is reached, following the first |
| 1203 | * pointer (leftmost) at each level. |
| 1204 | */ |
| 1205 | while (level-- > 0) { |
| 1206 | error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp, |
| 1207 | XFS_BMAP_BTREE_REF, &xfs_bmbt_buf_ops); |
| 1208 | if (error) |
Christoph Hellwig | 211e95b | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 1209 | goto out; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1210 | block = XFS_BUF_TO_BLOCK(bp); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1211 | if (level == 0) |
| 1212 | break; |
| 1213 | pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]); |
| 1214 | bno = be64_to_cpu(*pp); |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1215 | XFS_WANT_CORRUPTED_GOTO(mp, |
Darrick J. Wong | 59f6fec | 2018-01-08 10:51:00 -0800 | [diff] [blame] | 1216 | xfs_verify_fsbno(mp, bno), out_brelse); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1217 | xfs_trans_brelse(tp, bp); |
| 1218 | } |
Christoph Hellwig | 211e95b | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 1219 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1220 | /* |
| 1221 | * Here with bp and block set to the leftmost leaf node in the tree. |
| 1222 | */ |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1223 | i = 0; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1224 | xfs_iext_first(ifp, &icur); |
Christoph Hellwig | 211e95b | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 1225 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1226 | /* |
| 1227 | * Loop over all leaf nodes. Copy information to the extent records. |
| 1228 | */ |
| 1229 | for (;;) { |
| 1230 | xfs_bmbt_rec_t *frp; |
| 1231 | xfs_fsblock_t nextbno; |
| 1232 | xfs_extnum_t num_recs; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1233 | |
| 1234 | num_recs = xfs_btree_get_numrecs(block); |
Christoph Hellwig | 211e95b | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 1235 | if (unlikely(i + num_recs > nextents)) { |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1236 | xfs_warn(ip->i_mount, |
| 1237 | "corrupt dinode %Lu, (btree extents).", |
| 1238 | (unsigned long long) ip->i_ino); |
Darrick J. Wong | 90a58f9 | 2018-03-23 10:06:52 -0700 | [diff] [blame] | 1239 | xfs_inode_verifier_error(ip, -EFSCORRUPTED, |
| 1240 | __func__, block, sizeof(*block), |
| 1241 | __this_address); |
Christoph Hellwig | 211e95b | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 1242 | error = -EFSCORRUPTED; |
| 1243 | goto out_brelse; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1244 | } |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1245 | /* |
| 1246 | * Read-ahead the next leaf block, if any. |
| 1247 | */ |
| 1248 | nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib); |
| 1249 | if (nextbno != NULLFSBLOCK) |
| 1250 | xfs_btree_reada_bufl(mp, nextbno, 1, |
| 1251 | &xfs_bmbt_buf_ops); |
| 1252 | /* |
| 1253 | * Copy records into the extent records. |
| 1254 | */ |
| 1255 | frp = XFS_BMBT_REC_ADDR(mp, block, 1); |
Christoph Hellwig | 6bdcf26 | 2017-11-03 10:34:46 -0700 | [diff] [blame] | 1256 | for (j = 0; j < num_recs; j++, frp++, i++) { |
Darrick J. Wong | 30b0984 | 2018-03-23 10:06:52 -0700 | [diff] [blame] | 1257 | xfs_failaddr_t fa; |
| 1258 | |
Christoph Hellwig | dac9c9b | 2017-11-03 10:34:47 -0700 | [diff] [blame] | 1259 | xfs_bmbt_disk_get_all(frp, &new); |
Darrick J. Wong | 30b0984 | 2018-03-23 10:06:52 -0700 | [diff] [blame] | 1260 | fa = xfs_bmap_validate_extent(ip, whichfork, &new); |
| 1261 | if (fa) { |
Christoph Hellwig | 211e95b | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 1262 | error = -EFSCORRUPTED; |
Darrick J. Wong | 30b0984 | 2018-03-23 10:06:52 -0700 | [diff] [blame] | 1263 | xfs_inode_verifier_error(ip, error, |
| 1264 | "xfs_iread_extents(2)", |
| 1265 | frp, sizeof(*frp), fa); |
Christoph Hellwig | 211e95b | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 1266 | goto out_brelse; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1267 | } |
Christoph Hellwig | 0254c2f | 2017-11-03 10:34:46 -0700 | [diff] [blame] | 1268 | xfs_iext_insert(ip, &icur, &new, state); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1269 | trace_xfs_read_extent(ip, &icur, state, _THIS_IP_); |
| 1270 | xfs_iext_next(ifp, &icur); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1271 | } |
| 1272 | xfs_trans_brelse(tp, bp); |
| 1273 | bno = nextbno; |
| 1274 | /* |
| 1275 | * If we've reached the end, stop. |
| 1276 | */ |
| 1277 | if (bno == NULLFSBLOCK) |
| 1278 | break; |
| 1279 | error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp, |
| 1280 | XFS_BMAP_BTREE_REF, &xfs_bmbt_buf_ops); |
| 1281 | if (error) |
Christoph Hellwig | 211e95b | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 1282 | goto out; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1283 | block = XFS_BUF_TO_BLOCK(bp); |
| 1284 | } |
Christoph Hellwig | 211e95b | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 1285 | |
| 1286 | if (i != XFS_IFORK_NEXTENTS(ip, whichfork)) { |
| 1287 | error = -EFSCORRUPTED; |
| 1288 | goto out; |
| 1289 | } |
Eric Sandeen | 5d82930 | 2016-11-08 12:59:42 +1100 | [diff] [blame] | 1290 | ASSERT(i == xfs_iext_count(ifp)); |
Christoph Hellwig | 211e95b | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 1291 | |
| 1292 | ifp->if_flags |= XFS_IFEXTENTS; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1293 | return 0; |
Christoph Hellwig | 211e95b | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 1294 | |
| 1295 | out_brelse: |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1296 | xfs_trans_brelse(tp, bp); |
Christoph Hellwig | 211e95b | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 1297 | out: |
| 1298 | xfs_iext_destroy(ifp); |
| 1299 | return error; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1300 | } |
| 1301 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1302 | /* |
Christoph Hellwig | 29b3e94 | 2017-10-19 11:08:52 -0700 | [diff] [blame] | 1303 | * Returns the relative block number of the first unused block(s) in the given |
| 1304 | * fork with at least "len" logically contiguous blocks free. This is the |
| 1305 | * lowest-address hole if the fork has holes, else the first block past the end |
| 1306 | * of fork. Return 0 if the fork is currently local (in-inode). |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1307 | */ |
| 1308 | int /* error */ |
| 1309 | xfs_bmap_first_unused( |
Christoph Hellwig | 29b3e94 | 2017-10-19 11:08:52 -0700 | [diff] [blame] | 1310 | struct xfs_trans *tp, /* transaction pointer */ |
| 1311 | struct xfs_inode *ip, /* incore inode */ |
| 1312 | xfs_extlen_t len, /* size of hole to find */ |
| 1313 | xfs_fileoff_t *first_unused, /* unused block */ |
| 1314 | int whichfork) /* data or attr fork */ |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1315 | { |
Christoph Hellwig | 29b3e94 | 2017-10-19 11:08:52 -0700 | [diff] [blame] | 1316 | struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork); |
| 1317 | struct xfs_bmbt_irec got; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1318 | struct xfs_iext_cursor icur; |
Christoph Hellwig | 29b3e94 | 2017-10-19 11:08:52 -0700 | [diff] [blame] | 1319 | xfs_fileoff_t lastaddr = 0; |
| 1320 | xfs_fileoff_t lowest, max; |
| 1321 | int error; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1322 | |
| 1323 | ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE || |
| 1324 | XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS || |
| 1325 | XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL); |
Christoph Hellwig | 29b3e94 | 2017-10-19 11:08:52 -0700 | [diff] [blame] | 1326 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1327 | if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) { |
| 1328 | *first_unused = 0; |
| 1329 | return 0; |
| 1330 | } |
Christoph Hellwig | f2285c1 | 2017-08-29 15:44:12 -0700 | [diff] [blame] | 1331 | |
Christoph Hellwig | 29b3e94 | 2017-10-19 11:08:52 -0700 | [diff] [blame] | 1332 | if (!(ifp->if_flags & XFS_IFEXTENTS)) { |
| 1333 | error = xfs_iread_extents(tp, ip, whichfork); |
| 1334 | if (error) |
| 1335 | return error; |
| 1336 | } |
Christoph Hellwig | f2285c1 | 2017-08-29 15:44:12 -0700 | [diff] [blame] | 1337 | |
Christoph Hellwig | 29b3e94 | 2017-10-19 11:08:52 -0700 | [diff] [blame] | 1338 | lowest = max = *first_unused; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1339 | for_each_xfs_iext(ifp, &icur, &got) { |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1340 | /* |
| 1341 | * See if the hole before this extent will work. |
| 1342 | */ |
Christoph Hellwig | f2285c1 | 2017-08-29 15:44:12 -0700 | [diff] [blame] | 1343 | if (got.br_startoff >= lowest + len && |
Christoph Hellwig | 29b3e94 | 2017-10-19 11:08:52 -0700 | [diff] [blame] | 1344 | got.br_startoff - max >= len) |
| 1345 | break; |
Christoph Hellwig | f2285c1 | 2017-08-29 15:44:12 -0700 | [diff] [blame] | 1346 | lastaddr = got.br_startoff + got.br_blockcount; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1347 | max = XFS_FILEOFF_MAX(lastaddr, lowest); |
| 1348 | } |
Christoph Hellwig | 29b3e94 | 2017-10-19 11:08:52 -0700 | [diff] [blame] | 1349 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1350 | *first_unused = max; |
| 1351 | return 0; |
| 1352 | } |
| 1353 | |
| 1354 | /* |
Zhi Yong Wu | 02bb487 | 2013-08-12 03:14:54 +0000 | [diff] [blame] | 1355 | * Returns the file-relative block number of the last block - 1 before |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1356 | * last_block (input value) in the file. |
| 1357 | * This is not based on i_size, it is based on the extent records. |
| 1358 | * Returns 0 for local files, as they do not have extent records. |
| 1359 | */ |
| 1360 | int /* error */ |
| 1361 | xfs_bmap_last_before( |
Christoph Hellwig | 86685f7 | 2016-11-24 11:39:38 +1100 | [diff] [blame] | 1362 | struct xfs_trans *tp, /* transaction pointer */ |
| 1363 | struct xfs_inode *ip, /* incore inode */ |
| 1364 | xfs_fileoff_t *last_block, /* last block */ |
| 1365 | int whichfork) /* data or attr fork */ |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1366 | { |
Christoph Hellwig | 86685f7 | 2016-11-24 11:39:38 +1100 | [diff] [blame] | 1367 | struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork); |
| 1368 | struct xfs_bmbt_irec got; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1369 | struct xfs_iext_cursor icur; |
Christoph Hellwig | 86685f7 | 2016-11-24 11:39:38 +1100 | [diff] [blame] | 1370 | int error; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1371 | |
Christoph Hellwig | 86685f7 | 2016-11-24 11:39:38 +1100 | [diff] [blame] | 1372 | switch (XFS_IFORK_FORMAT(ip, whichfork)) { |
| 1373 | case XFS_DINODE_FMT_LOCAL: |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1374 | *last_block = 0; |
| 1375 | return 0; |
Christoph Hellwig | 86685f7 | 2016-11-24 11:39:38 +1100 | [diff] [blame] | 1376 | case XFS_DINODE_FMT_BTREE: |
| 1377 | case XFS_DINODE_FMT_EXTENTS: |
| 1378 | break; |
| 1379 | default: |
| 1380 | return -EIO; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1381 | } |
Christoph Hellwig | 86685f7 | 2016-11-24 11:39:38 +1100 | [diff] [blame] | 1382 | |
| 1383 | if (!(ifp->if_flags & XFS_IFEXTENTS)) { |
| 1384 | error = xfs_iread_extents(tp, ip, whichfork); |
| 1385 | if (error) |
| 1386 | return error; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1387 | } |
Christoph Hellwig | 86685f7 | 2016-11-24 11:39:38 +1100 | [diff] [blame] | 1388 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1389 | if (!xfs_iext_lookup_extent_before(ip, ifp, last_block, &icur, &got)) |
Christoph Hellwig | dc56015 | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 1390 | *last_block = 0; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1391 | return 0; |
| 1392 | } |
| 1393 | |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 1394 | int |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1395 | xfs_bmap_last_extent( |
| 1396 | struct xfs_trans *tp, |
| 1397 | struct xfs_inode *ip, |
| 1398 | int whichfork, |
| 1399 | struct xfs_bmbt_irec *rec, |
| 1400 | int *is_empty) |
| 1401 | { |
| 1402 | struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1403 | struct xfs_iext_cursor icur; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1404 | int error; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1405 | |
| 1406 | if (!(ifp->if_flags & XFS_IFEXTENTS)) { |
| 1407 | error = xfs_iread_extents(tp, ip, whichfork); |
| 1408 | if (error) |
| 1409 | return error; |
| 1410 | } |
| 1411 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1412 | xfs_iext_last(ifp, &icur); |
| 1413 | if (!xfs_iext_get_extent(ifp, &icur, rec)) |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1414 | *is_empty = 1; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1415 | else |
| 1416 | *is_empty = 0; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1417 | return 0; |
| 1418 | } |
| 1419 | |
| 1420 | /* |
| 1421 | * Check the last inode extent to determine whether this allocation will result |
| 1422 | * in blocks being allocated at the end of the file. When we allocate new data |
| 1423 | * blocks at the end of the file which do not start at the previous data block, |
| 1424 | * we will try to align the new blocks at stripe unit boundaries. |
| 1425 | * |
Dave Chinner | 6e708bc | 2013-11-22 10:41:16 +1100 | [diff] [blame] | 1426 | * Returns 1 in bma->aeof if the file (fork) is empty as any new write will be |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1427 | * at, or past the EOF. |
| 1428 | */ |
| 1429 | STATIC int |
| 1430 | xfs_bmap_isaeof( |
| 1431 | struct xfs_bmalloca *bma, |
| 1432 | int whichfork) |
| 1433 | { |
| 1434 | struct xfs_bmbt_irec rec; |
| 1435 | int is_empty; |
| 1436 | int error; |
| 1437 | |
Thomas Meyer | 749f24f | 2017-10-09 11:38:54 -0700 | [diff] [blame] | 1438 | bma->aeof = false; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1439 | error = xfs_bmap_last_extent(NULL, bma->ip, whichfork, &rec, |
| 1440 | &is_empty); |
Dave Chinner | 6e708bc | 2013-11-22 10:41:16 +1100 | [diff] [blame] | 1441 | if (error) |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1442 | return error; |
| 1443 | |
Dave Chinner | 6e708bc | 2013-11-22 10:41:16 +1100 | [diff] [blame] | 1444 | if (is_empty) { |
Thomas Meyer | 749f24f | 2017-10-09 11:38:54 -0700 | [diff] [blame] | 1445 | bma->aeof = true; |
Dave Chinner | 6e708bc | 2013-11-22 10:41:16 +1100 | [diff] [blame] | 1446 | return 0; |
| 1447 | } |
| 1448 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1449 | /* |
| 1450 | * Check if we are allocation or past the last extent, or at least into |
| 1451 | * the last delayed allocated extent. |
| 1452 | */ |
| 1453 | bma->aeof = bma->offset >= rec.br_startoff + rec.br_blockcount || |
| 1454 | (bma->offset >= rec.br_startoff && |
| 1455 | isnullstartblock(rec.br_startblock)); |
| 1456 | return 0; |
| 1457 | } |
| 1458 | |
| 1459 | /* |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1460 | * Returns the file-relative block number of the first block past eof in |
| 1461 | * the file. This is not based on i_size, it is based on the extent records. |
| 1462 | * Returns 0 for local files, as they do not have extent records. |
| 1463 | */ |
| 1464 | int |
| 1465 | xfs_bmap_last_offset( |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1466 | struct xfs_inode *ip, |
| 1467 | xfs_fileoff_t *last_block, |
| 1468 | int whichfork) |
| 1469 | { |
| 1470 | struct xfs_bmbt_irec rec; |
| 1471 | int is_empty; |
| 1472 | int error; |
| 1473 | |
| 1474 | *last_block = 0; |
| 1475 | |
| 1476 | if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) |
| 1477 | return 0; |
| 1478 | |
| 1479 | if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE && |
| 1480 | XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1481 | return -EIO; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1482 | |
| 1483 | error = xfs_bmap_last_extent(NULL, ip, whichfork, &rec, &is_empty); |
| 1484 | if (error || is_empty) |
| 1485 | return error; |
| 1486 | |
| 1487 | *last_block = rec.br_startoff + rec.br_blockcount; |
| 1488 | return 0; |
| 1489 | } |
| 1490 | |
| 1491 | /* |
| 1492 | * Returns whether the selected fork of the inode has exactly one |
| 1493 | * block or not. For the data fork we check this matches di_size, |
| 1494 | * implying the file's range is 0..bsize-1. |
| 1495 | */ |
| 1496 | int /* 1=>1 block, 0=>otherwise */ |
| 1497 | xfs_bmap_one_block( |
| 1498 | xfs_inode_t *ip, /* incore inode */ |
| 1499 | int whichfork) /* data or attr fork */ |
| 1500 | { |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1501 | xfs_ifork_t *ifp; /* inode fork pointer */ |
| 1502 | int rval; /* return value */ |
| 1503 | xfs_bmbt_irec_t s; /* internal version of extent */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1504 | struct xfs_iext_cursor icur; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1505 | |
| 1506 | #ifndef DEBUG |
| 1507 | if (whichfork == XFS_DATA_FORK) |
| 1508 | return XFS_ISIZE(ip) == ip->i_mount->m_sb.sb_blocksize; |
| 1509 | #endif /* !DEBUG */ |
| 1510 | if (XFS_IFORK_NEXTENTS(ip, whichfork) != 1) |
| 1511 | return 0; |
| 1512 | if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS) |
| 1513 | return 0; |
| 1514 | ifp = XFS_IFORK_PTR(ip, whichfork); |
| 1515 | ASSERT(ifp->if_flags & XFS_IFEXTENTS); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1516 | xfs_iext_first(ifp, &icur); |
| 1517 | xfs_iext_get_extent(ifp, &icur, &s); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 1518 | rval = s.br_startoff == 0 && s.br_blockcount == 1; |
| 1519 | if (rval && whichfork == XFS_DATA_FORK) |
| 1520 | ASSERT(XFS_ISIZE(ip) == ip->i_mount->m_sb.sb_blocksize); |
| 1521 | return rval; |
| 1522 | } |
| 1523 | |
| 1524 | /* |
| 1525 | * Extent tree manipulation functions used during allocation. |
| 1526 | */ |
| 1527 | |
| 1528 | /* |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 1529 | * Convert a delayed allocation to a real allocation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1530 | */ |
| 1531 | STATIC int /* error */ |
| 1532 | xfs_bmap_add_extent_delay_real( |
Darrick J. Wong | 60b4984 | 2016-10-03 09:11:34 -0700 | [diff] [blame] | 1533 | struct xfs_bmalloca *bma, |
| 1534 | int whichfork) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1535 | { |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1536 | struct xfs_bmbt_irec *new = &bma->got; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1537 | int error; /* error return value */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | int i; /* temp state */ |
Mandy Kirkconnell | 4eea22f | 2006-03-14 13:29:52 +1100 | [diff] [blame] | 1539 | xfs_ifork_t *ifp; /* inode fork pointer */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | xfs_fileoff_t new_endoff; /* end offset of new entry */ |
| 1541 | xfs_bmbt_irec_t r[3]; /* neighbor extent entries */ |
| 1542 | /* left is 0, right is 1, prev is 2 */ |
| 1543 | int rval=0; /* return value (logging flags) */ |
Christoph Hellwig | 060ea65 | 2017-10-19 11:02:29 -0700 | [diff] [blame] | 1544 | int state = xfs_bmap_fork_to_state(whichfork); |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 1545 | xfs_filblks_t da_new; /* new count del alloc blocks used */ |
| 1546 | xfs_filblks_t da_old; /* old count del alloc blocks used */ |
| 1547 | xfs_filblks_t temp=0; /* value for da_new calculations */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1548 | int tmp_rval; /* partial logging flags */ |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1549 | struct xfs_mount *mp; |
Darrick J. Wong | 60b4984 | 2016-10-03 09:11:34 -0700 | [diff] [blame] | 1550 | xfs_extnum_t *nextents; |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1551 | struct xfs_bmbt_irec old; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | |
Eric Sandeen | f1f96c4 | 2016-01-04 16:10:42 +1100 | [diff] [blame] | 1553 | mp = bma->ip->i_mount; |
Darrick J. Wong | 6d3eb1e | 2016-01-04 16:12:42 +1100 | [diff] [blame] | 1554 | ifp = XFS_IFORK_PTR(bma->ip, whichfork); |
Darrick J. Wong | 60b4984 | 2016-10-03 09:11:34 -0700 | [diff] [blame] | 1555 | ASSERT(whichfork != XFS_ATTR_FORK); |
| 1556 | nextents = (whichfork == XFS_COW_FORK ? &bma->ip->i_cnextents : |
| 1557 | &bma->ip->i_d.di_nextents); |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 1558 | |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 1559 | ASSERT(!isnullstartblock(new->br_startblock)); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1560 | ASSERT(!bma->cur || |
| 1561 | (bma->cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL)); |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 1562 | |
Bill O'Donnell | ff6d6af | 2015-10-12 18:21:22 +1100 | [diff] [blame] | 1563 | XFS_STATS_INC(mp, xs_add_exlist); |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 1564 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1565 | #define LEFT r[0] |
| 1566 | #define RIGHT r[1] |
| 1567 | #define PREV r[2] |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1568 | |
| 1569 | /* |
| 1570 | * Set up a bunch of variables to make the tests simpler. |
| 1571 | */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1572 | xfs_iext_get_extent(ifp, &bma->icur, &PREV); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1573 | new_endoff = new->br_startoff + new->br_blockcount; |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1574 | ASSERT(isnullstartblock(PREV.br_startblock)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | ASSERT(PREV.br_startoff <= new->br_startoff); |
| 1576 | ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff); |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 1577 | |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 1578 | da_old = startblockval(PREV.br_startblock); |
| 1579 | da_new = 0; |
| 1580 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1581 | /* |
| 1582 | * Set flags determining what part of the previous delayed allocation |
| 1583 | * extent is being replaced by a real allocation. |
| 1584 | */ |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 1585 | if (PREV.br_startoff == new->br_startoff) |
| 1586 | state |= BMAP_LEFT_FILLING; |
| 1587 | if (PREV.br_startoff + PREV.br_blockcount == new_endoff) |
| 1588 | state |= BMAP_RIGHT_FILLING; |
| 1589 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1590 | /* |
| 1591 | * Check and set flags if this segment has a left neighbor. |
| 1592 | * Don't set contiguous if the combined extent would be too large. |
| 1593 | */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1594 | if (xfs_iext_peek_prev_extent(ifp, &bma->icur, &LEFT)) { |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 1595 | state |= BMAP_LEFT_VALID; |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 1596 | if (isnullstartblock(LEFT.br_startblock)) |
| 1597 | state |= BMAP_LEFT_DELAY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1598 | } |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 1599 | |
| 1600 | if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) && |
| 1601 | LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff && |
| 1602 | LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock && |
| 1603 | LEFT.br_state == new->br_state && |
| 1604 | LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN) |
| 1605 | state |= BMAP_LEFT_CONTIG; |
| 1606 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | /* |
| 1608 | * Check and set flags if this segment has a right neighbor. |
| 1609 | * Don't set contiguous if the combined extent would be too large. |
| 1610 | * Also check for all-three-contiguous being too large. |
| 1611 | */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1612 | if (xfs_iext_peek_next_extent(ifp, &bma->icur, &RIGHT)) { |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 1613 | state |= BMAP_RIGHT_VALID; |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 1614 | if (isnullstartblock(RIGHT.br_startblock)) |
| 1615 | state |= BMAP_RIGHT_DELAY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1616 | } |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 1617 | |
| 1618 | if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) && |
| 1619 | new_endoff == RIGHT.br_startoff && |
| 1620 | new->br_startblock + new->br_blockcount == RIGHT.br_startblock && |
| 1621 | new->br_state == RIGHT.br_state && |
| 1622 | new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN && |
| 1623 | ((state & (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING | |
| 1624 | BMAP_RIGHT_FILLING)) != |
| 1625 | (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING | |
| 1626 | BMAP_RIGHT_FILLING) || |
| 1627 | LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount |
| 1628 | <= MAXEXTLEN)) |
| 1629 | state |= BMAP_RIGHT_CONTIG; |
| 1630 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1631 | error = 0; |
| 1632 | /* |
| 1633 | * Switch out based on the FILLING and CONTIG state bits. |
| 1634 | */ |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 1635 | switch (state & (BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | |
| 1636 | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG)) { |
| 1637 | case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | |
| 1638 | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1639 | /* |
| 1640 | * Filling in all of a previously delayed allocation extent. |
| 1641 | * The left and right neighbors are both contiguous with new. |
| 1642 | */ |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1643 | LEFT.br_blockcount += PREV.br_blockcount + RIGHT.br_blockcount; |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1644 | |
Christoph Hellwig | c38ccf5 | 2017-11-03 10:34:47 -0700 | [diff] [blame] | 1645 | xfs_iext_remove(bma->ip, &bma->icur, state); |
| 1646 | xfs_iext_remove(bma->ip, &bma->icur, state); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1647 | xfs_iext_prev(ifp, &bma->icur); |
| 1648 | xfs_iext_update_extent(bma->ip, state, &bma->icur, &LEFT); |
Darrick J. Wong | 60b4984 | 2016-10-03 09:11:34 -0700 | [diff] [blame] | 1649 | (*nextents)--; |
Christoph Hellwig | 0d04554 | 2017-11-03 10:34:39 -0700 | [diff] [blame] | 1650 | |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1651 | if (bma->cur == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | rval = XFS_ILOG_CORE | XFS_ILOG_DEXT; |
| 1653 | else { |
| 1654 | rval = XFS_ILOG_CORE; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 1655 | error = xfs_bmbt_lookup_eq(bma->cur, &RIGHT, &i); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1656 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1657 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1658 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1659 | error = xfs_btree_delete(bma->cur, &i); |
| 1660 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1662 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1663 | error = xfs_btree_decrement(bma->cur, 0, &i); |
| 1664 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1666 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 1667 | error = xfs_bmbt_update(bma->cur, &LEFT); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1668 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | goto done; |
| 1670 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1671 | break; |
| 1672 | |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 1673 | case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1674 | /* |
| 1675 | * Filling in all of a previously delayed allocation extent. |
| 1676 | * The left neighbor is contiguous, the right is not. |
| 1677 | */ |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1678 | old = LEFT; |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1679 | LEFT.br_blockcount += PREV.br_blockcount; |
Christoph Hellwig | 0d04554 | 2017-11-03 10:34:39 -0700 | [diff] [blame] | 1680 | |
Christoph Hellwig | c38ccf5 | 2017-11-03 10:34:47 -0700 | [diff] [blame] | 1681 | xfs_iext_remove(bma->ip, &bma->icur, state); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1682 | xfs_iext_prev(ifp, &bma->icur); |
| 1683 | xfs_iext_update_extent(bma->ip, state, &bma->icur, &LEFT); |
Christoph Hellwig | ec90c55 | 2011-05-23 08:52:53 +0000 | [diff] [blame] | 1684 | |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1685 | if (bma->cur == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1686 | rval = XFS_ILOG_DEXT; |
| 1687 | else { |
| 1688 | rval = 0; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 1689 | error = xfs_bmbt_lookup_eq(bma->cur, &old, &i); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1690 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1691 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1692 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 1693 | error = xfs_bmbt_update(bma->cur, &LEFT); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1694 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1695 | goto done; |
| 1696 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1697 | break; |
| 1698 | |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 1699 | case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1700 | /* |
| 1701 | * Filling in all of a previously delayed allocation extent. |
| 1702 | * The right neighbor is contiguous, the left is not. |
| 1703 | */ |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1704 | PREV.br_startblock = new->br_startblock; |
| 1705 | PREV.br_blockcount += RIGHT.br_blockcount; |
Christoph Hellwig | 0d04554 | 2017-11-03 10:34:39 -0700 | [diff] [blame] | 1706 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1707 | xfs_iext_next(ifp, &bma->icur); |
Christoph Hellwig | c38ccf5 | 2017-11-03 10:34:47 -0700 | [diff] [blame] | 1708 | xfs_iext_remove(bma->ip, &bma->icur, state); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1709 | xfs_iext_prev(ifp, &bma->icur); |
| 1710 | xfs_iext_update_extent(bma->ip, state, &bma->icur, &PREV); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1711 | |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1712 | if (bma->cur == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1713 | rval = XFS_ILOG_DEXT; |
| 1714 | else { |
| 1715 | rval = 0; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 1716 | error = xfs_bmbt_lookup_eq(bma->cur, &RIGHT, &i); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1717 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1718 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1719 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 1720 | error = xfs_bmbt_update(bma->cur, &PREV); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1721 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1722 | goto done; |
| 1723 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1724 | break; |
| 1725 | |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 1726 | case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | /* |
| 1728 | * Filling in all of a previously delayed allocation extent. |
| 1729 | * Neither the left nor right neighbors are contiguous with |
| 1730 | * the new one. |
| 1731 | */ |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1732 | PREV.br_startblock = new->br_startblock; |
| 1733 | PREV.br_state = new->br_state; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1734 | xfs_iext_update_extent(bma->ip, state, &bma->icur, &PREV); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1735 | |
Darrick J. Wong | 60b4984 | 2016-10-03 09:11:34 -0700 | [diff] [blame] | 1736 | (*nextents)++; |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1737 | if (bma->cur == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1738 | rval = XFS_ILOG_CORE | XFS_ILOG_DEXT; |
| 1739 | else { |
| 1740 | rval = XFS_ILOG_CORE; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 1741 | error = xfs_bmbt_lookup_eq(bma->cur, new, &i); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1742 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1743 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1744 | XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1745 | error = xfs_btree_insert(bma->cur, &i); |
| 1746 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1747 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1748 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1749 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1750 | break; |
| 1751 | |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 1752 | case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | /* |
| 1754 | * Filling in the first part of a previous delayed allocation. |
| 1755 | * The left neighbor is contiguous. |
| 1756 | */ |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1757 | old = LEFT; |
| 1758 | temp = PREV.br_blockcount - new->br_blockcount; |
| 1759 | da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp), |
| 1760 | startblockval(PREV.br_startblock)); |
| 1761 | |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1762 | LEFT.br_blockcount += new->br_blockcount; |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1763 | |
Christoph Hellwig | bf99971 | 2017-11-03 10:34:38 -0700 | [diff] [blame] | 1764 | PREV.br_blockcount = temp; |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1765 | PREV.br_startoff += new->br_blockcount; |
| 1766 | PREV.br_startblock = nullstartblock(da_new); |
Christoph Hellwig | 0d04554 | 2017-11-03 10:34:39 -0700 | [diff] [blame] | 1767 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1768 | xfs_iext_update_extent(bma->ip, state, &bma->icur, &PREV); |
| 1769 | xfs_iext_prev(ifp, &bma->icur); |
| 1770 | xfs_iext_update_extent(bma->ip, state, &bma->icur, &LEFT); |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1771 | |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1772 | if (bma->cur == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1773 | rval = XFS_ILOG_DEXT; |
| 1774 | else { |
| 1775 | rval = 0; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 1776 | error = xfs_bmbt_lookup_eq(bma->cur, &old, &i); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1777 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1778 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1779 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 1780 | error = xfs_bmbt_update(bma->cur, &LEFT); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1781 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1782 | goto done; |
| 1783 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1784 | break; |
| 1785 | |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 1786 | case BMAP_LEFT_FILLING: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1787 | /* |
| 1788 | * Filling in the first part of a previous delayed allocation. |
| 1789 | * The left neighbor is not contiguous. |
| 1790 | */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1791 | xfs_iext_update_extent(bma->ip, state, &bma->icur, new); |
Darrick J. Wong | 60b4984 | 2016-10-03 09:11:34 -0700 | [diff] [blame] | 1792 | (*nextents)++; |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1793 | if (bma->cur == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1794 | rval = XFS_ILOG_CORE | XFS_ILOG_DEXT; |
| 1795 | else { |
| 1796 | rval = XFS_ILOG_CORE; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 1797 | error = xfs_bmbt_lookup_eq(bma->cur, new, &i); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1798 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1799 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1800 | XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1801 | error = xfs_btree_insert(bma->cur, &i); |
| 1802 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1803 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1804 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1805 | } |
Christoph Hellwig | 8096b1e | 2011-12-18 20:00:07 +0000 | [diff] [blame] | 1806 | |
Darrick J. Wong | 6d3eb1e | 2016-01-04 16:12:42 +1100 | [diff] [blame] | 1807 | if (xfs_bmap_needs_btree(bma->ip, whichfork)) { |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1808 | error = xfs_bmap_extents_to_btree(bma->tp, bma->ip, |
Brian Foster | 3e3673e | 2018-07-11 22:26:14 -0700 | [diff] [blame^] | 1809 | bma->firstblock, bma->tp->t_dfops, |
Darrick J. Wong | 6d3eb1e | 2016-01-04 16:12:42 +1100 | [diff] [blame] | 1810 | &bma->cur, 1, &tmp_rval, whichfork); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | rval |= tmp_rval; |
| 1812 | if (error) |
| 1813 | goto done; |
| 1814 | } |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1815 | |
| 1816 | temp = PREV.br_blockcount - new->br_blockcount; |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1817 | da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp), |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 1818 | startblockval(PREV.br_startblock) - |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1819 | (bma->cur ? bma->cur->bc_private.b.allocated : 0)); |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1820 | |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1821 | PREV.br_startoff = new_endoff; |
| 1822 | PREV.br_blockcount = temp; |
| 1823 | PREV.br_startblock = nullstartblock(da_new); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1824 | xfs_iext_next(ifp, &bma->icur); |
Christoph Hellwig | 0254c2f | 2017-11-03 10:34:46 -0700 | [diff] [blame] | 1825 | xfs_iext_insert(bma->ip, &bma->icur, &PREV, state); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1826 | xfs_iext_prev(ifp, &bma->icur); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1827 | break; |
| 1828 | |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 1829 | case BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1830 | /* |
| 1831 | * Filling in the last part of a previous delayed allocation. |
| 1832 | * The right neighbor is contiguous with the new allocation. |
| 1833 | */ |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1834 | old = RIGHT; |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1835 | RIGHT.br_startoff = new->br_startoff; |
| 1836 | RIGHT.br_startblock = new->br_startblock; |
| 1837 | RIGHT.br_blockcount += new->br_blockcount; |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1838 | |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1839 | if (bma->cur == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1840 | rval = XFS_ILOG_DEXT; |
| 1841 | else { |
| 1842 | rval = 0; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 1843 | error = xfs_bmbt_lookup_eq(bma->cur, &old, &i); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1844 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1845 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1846 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 1847 | error = xfs_bmbt_update(bma->cur, &RIGHT); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1848 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1849 | goto done; |
| 1850 | } |
Christoph Hellwig | ec90c55 | 2011-05-23 08:52:53 +0000 | [diff] [blame] | 1851 | |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1852 | temp = PREV.br_blockcount - new->br_blockcount; |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1853 | da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp), |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 1854 | startblockval(PREV.br_startblock)); |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1855 | |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1856 | PREV.br_blockcount = temp; |
| 1857 | PREV.br_startblock = nullstartblock(da_new); |
Christoph Hellwig | ec90c55 | 2011-05-23 08:52:53 +0000 | [diff] [blame] | 1858 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1859 | xfs_iext_update_extent(bma->ip, state, &bma->icur, &PREV); |
| 1860 | xfs_iext_next(ifp, &bma->icur); |
| 1861 | xfs_iext_update_extent(bma->ip, state, &bma->icur, &RIGHT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1862 | break; |
| 1863 | |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 1864 | case BMAP_RIGHT_FILLING: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1865 | /* |
| 1866 | * Filling in the last part of a previous delayed allocation. |
| 1867 | * The right neighbor is not contiguous. |
| 1868 | */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1869 | xfs_iext_update_extent(bma->ip, state, &bma->icur, new); |
Darrick J. Wong | 60b4984 | 2016-10-03 09:11:34 -0700 | [diff] [blame] | 1870 | (*nextents)++; |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1871 | if (bma->cur == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1872 | rval = XFS_ILOG_CORE | XFS_ILOG_DEXT; |
| 1873 | else { |
| 1874 | rval = XFS_ILOG_CORE; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 1875 | error = xfs_bmbt_lookup_eq(bma->cur, new, &i); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1876 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1877 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1878 | XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1879 | error = xfs_btree_insert(bma->cur, &i); |
| 1880 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1882 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1883 | } |
Christoph Hellwig | 8096b1e | 2011-12-18 20:00:07 +0000 | [diff] [blame] | 1884 | |
Darrick J. Wong | 6d3eb1e | 2016-01-04 16:12:42 +1100 | [diff] [blame] | 1885 | if (xfs_bmap_needs_btree(bma->ip, whichfork)) { |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1886 | error = xfs_bmap_extents_to_btree(bma->tp, bma->ip, |
Brian Foster | 3e3673e | 2018-07-11 22:26:14 -0700 | [diff] [blame^] | 1887 | bma->firstblock, bma->tp->t_dfops, &bma->cur, 1, |
Darrick J. Wong | 6d3eb1e | 2016-01-04 16:12:42 +1100 | [diff] [blame] | 1888 | &tmp_rval, whichfork); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1889 | rval |= tmp_rval; |
| 1890 | if (error) |
| 1891 | goto done; |
| 1892 | } |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1893 | |
| 1894 | temp = PREV.br_blockcount - new->br_blockcount; |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1895 | da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp), |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 1896 | startblockval(PREV.br_startblock) - |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1897 | (bma->cur ? bma->cur->bc_private.b.allocated : 0)); |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1898 | |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1899 | PREV.br_startblock = nullstartblock(da_new); |
| 1900 | PREV.br_blockcount = temp; |
Christoph Hellwig | 0254c2f | 2017-11-03 10:34:46 -0700 | [diff] [blame] | 1901 | xfs_iext_insert(bma->ip, &bma->icur, &PREV, state); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1902 | xfs_iext_next(ifp, &bma->icur); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1903 | break; |
| 1904 | |
| 1905 | case 0: |
| 1906 | /* |
| 1907 | * Filling in the middle part of a previous delayed allocation. |
| 1908 | * Contiguity is impossible here. |
| 1909 | * This case is avoided almost all the time. |
bpm@sgi.com | 24446fc | 2011-01-19 17:41:58 +0000 | [diff] [blame] | 1910 | * |
| 1911 | * We start with a delayed allocation: |
| 1912 | * |
| 1913 | * +ddddddddddddddddddddddddddddddddddddddddddddddddddddddd+ |
| 1914 | * PREV @ idx |
| 1915 | * |
| 1916 | * and we are allocating: |
| 1917 | * +rrrrrrrrrrrrrrrrr+ |
| 1918 | * new |
| 1919 | * |
| 1920 | * and we set it up for insertion as: |
| 1921 | * +ddddddddddddddddddd+rrrrrrrrrrrrrrrrr+ddddddddddddddddd+ |
| 1922 | * new |
| 1923 | * PREV @ idx LEFT RIGHT |
| 1924 | * inserted at idx + 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1925 | */ |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1926 | old = PREV; |
| 1927 | |
| 1928 | /* LEFT is the new middle */ |
bpm@sgi.com | 24446fc | 2011-01-19 17:41:58 +0000 | [diff] [blame] | 1929 | LEFT = *new; |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1930 | |
| 1931 | /* RIGHT is the new right */ |
bpm@sgi.com | 24446fc | 2011-01-19 17:41:58 +0000 | [diff] [blame] | 1932 | RIGHT.br_state = PREV.br_state; |
bpm@sgi.com | 24446fc | 2011-01-19 17:41:58 +0000 | [diff] [blame] | 1933 | RIGHT.br_startoff = new_endoff; |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1934 | RIGHT.br_blockcount = |
| 1935 | PREV.br_startoff + PREV.br_blockcount - new_endoff; |
| 1936 | RIGHT.br_startblock = |
| 1937 | nullstartblock(xfs_bmap_worst_indlen(bma->ip, |
| 1938 | RIGHT.br_blockcount)); |
| 1939 | |
| 1940 | /* truncate PREV */ |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1941 | PREV.br_blockcount = new->br_startoff - PREV.br_startoff; |
| 1942 | PREV.br_startblock = |
| 1943 | nullstartblock(xfs_bmap_worst_indlen(bma->ip, |
| 1944 | PREV.br_blockcount)); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1945 | xfs_iext_update_extent(bma->ip, state, &bma->icur, &PREV); |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1946 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1947 | xfs_iext_next(ifp, &bma->icur); |
Christoph Hellwig | 0254c2f | 2017-11-03 10:34:46 -0700 | [diff] [blame] | 1948 | xfs_iext_insert(bma->ip, &bma->icur, &RIGHT, state); |
| 1949 | xfs_iext_insert(bma->ip, &bma->icur, &LEFT, state); |
Darrick J. Wong | 60b4984 | 2016-10-03 09:11:34 -0700 | [diff] [blame] | 1950 | (*nextents)++; |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1951 | |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1952 | if (bma->cur == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1953 | rval = XFS_ILOG_CORE | XFS_ILOG_DEXT; |
| 1954 | else { |
| 1955 | rval = XFS_ILOG_CORE; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 1956 | error = xfs_bmbt_lookup_eq(bma->cur, new, &i); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1957 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1958 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1959 | XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1960 | error = xfs_btree_insert(bma->cur, &i); |
| 1961 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1962 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1963 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1964 | } |
Christoph Hellwig | 8096b1e | 2011-12-18 20:00:07 +0000 | [diff] [blame] | 1965 | |
Darrick J. Wong | 6d3eb1e | 2016-01-04 16:12:42 +1100 | [diff] [blame] | 1966 | if (xfs_bmap_needs_btree(bma->ip, whichfork)) { |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 1967 | error = xfs_bmap_extents_to_btree(bma->tp, bma->ip, |
Brian Foster | 3e3673e | 2018-07-11 22:26:14 -0700 | [diff] [blame^] | 1968 | bma->firstblock, bma->tp->t_dfops, |
| 1969 | &bma->cur, 1, &tmp_rval, whichfork); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1970 | rval |= tmp_rval; |
| 1971 | if (error) |
| 1972 | goto done; |
| 1973 | } |
Christoph Hellwig | 4dcb8869 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 1974 | |
| 1975 | da_new = startblockval(PREV.br_startblock) + |
| 1976 | startblockval(RIGHT.br_startblock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1977 | break; |
| 1978 | |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 1979 | case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG: |
| 1980 | case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG: |
| 1981 | case BMAP_LEFT_FILLING | BMAP_RIGHT_CONTIG: |
| 1982 | case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG: |
| 1983 | case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG: |
| 1984 | case BMAP_LEFT_CONTIG: |
| 1985 | case BMAP_RIGHT_CONTIG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1986 | /* |
| 1987 | * These cases are all impossible. |
| 1988 | */ |
| 1989 | ASSERT(0); |
| 1990 | } |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 1991 | |
Darrick J. Wong | 95eb308 | 2018-05-09 10:02:32 -0700 | [diff] [blame] | 1992 | /* add reverse mapping unless caller opted out */ |
| 1993 | if (!(bma->flags & XFS_BMAPI_NORMAP)) { |
Brian Foster | 3e3673e | 2018-07-11 22:26:14 -0700 | [diff] [blame^] | 1994 | error = xfs_rmap_map_extent(mp, bma->tp->t_dfops, bma->ip, |
Darrick J. Wong | 95eb308 | 2018-05-09 10:02:32 -0700 | [diff] [blame] | 1995 | whichfork, new); |
| 1996 | if (error) |
| 1997 | goto done; |
| 1998 | } |
Darrick J. Wong | 9c19464 | 2016-08-03 12:16:05 +1000 | [diff] [blame] | 1999 | |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2000 | /* convert to a btree if necessary */ |
Darrick J. Wong | 6d3eb1e | 2016-01-04 16:12:42 +1100 | [diff] [blame] | 2001 | if (xfs_bmap_needs_btree(bma->ip, whichfork)) { |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2002 | int tmp_logflags; /* partial log flag return val */ |
| 2003 | |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 2004 | ASSERT(bma->cur == NULL); |
| 2005 | error = xfs_bmap_extents_to_btree(bma->tp, bma->ip, |
Brian Foster | 3e3673e | 2018-07-11 22:26:14 -0700 | [diff] [blame^] | 2006 | bma->firstblock, bma->tp->t_dfops, &bma->cur, |
Darrick J. Wong | 6d3eb1e | 2016-01-04 16:12:42 +1100 | [diff] [blame] | 2007 | da_old > 0, &tmp_logflags, whichfork); |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 2008 | bma->logflags |= tmp_logflags; |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2009 | if (error) |
| 2010 | goto done; |
| 2011 | } |
| 2012 | |
Christoph Hellwig | ca1862b | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2013 | if (bma->cur) { |
| 2014 | da_new += bma->cur->bc_private.b.allocated; |
| 2015 | bma->cur->bc_private.b.allocated = 0; |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2016 | } |
| 2017 | |
Christoph Hellwig | ca1862b | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2018 | /* adjust for changes in reserved delayed indirect blocks */ |
| 2019 | if (da_new != da_old) { |
| 2020 | ASSERT(state == 0 || da_new < da_old); |
| 2021 | error = xfs_mod_fdblocks(mp, (int64_t)(da_old - da_new), |
| 2022 | false); |
| 2023 | } |
Christoph Hellwig | 572a4cf | 2011-09-18 20:41:04 +0000 | [diff] [blame] | 2024 | |
Darrick J. Wong | 6d3eb1e | 2016-01-04 16:12:42 +1100 | [diff] [blame] | 2025 | xfs_bmap_check_leaf_extents(bma->cur, bma->ip, whichfork); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2026 | done: |
Darrick J. Wong | 60b4984 | 2016-10-03 09:11:34 -0700 | [diff] [blame] | 2027 | if (whichfork != XFS_COW_FORK) |
| 2028 | bma->logflags |= rval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2029 | return error; |
| 2030 | #undef LEFT |
| 2031 | #undef RIGHT |
| 2032 | #undef PREV |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2033 | } |
| 2034 | |
| 2035 | /* |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2036 | * Convert an unwritten allocation to a real allocation or vice versa. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2037 | */ |
| 2038 | STATIC int /* error */ |
| 2039 | xfs_bmap_add_extent_unwritten_real( |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2040 | struct xfs_trans *tp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2041 | xfs_inode_t *ip, /* incore inode pointer */ |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 2042 | int whichfork, |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2043 | struct xfs_iext_cursor *icur, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2044 | xfs_btree_cur_t **curp, /* if *curp is null, not a btree */ |
Mandy Kirkconnell | 4eea22f | 2006-03-14 13:29:52 +1100 | [diff] [blame] | 2045 | xfs_bmbt_irec_t *new, /* new data to add to file extents */ |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2046 | xfs_fsblock_t *first, /* pointer to firstblock variable */ |
Darrick J. Wong | 2c3234d | 2016-08-03 11:19:29 +1000 | [diff] [blame] | 2047 | struct xfs_defer_ops *dfops, /* list of extents to be freed */ |
Christoph Hellwig | b4e9181 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 2048 | int *logflagsp) /* inode logging flags */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2049 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2050 | xfs_btree_cur_t *cur; /* btree cursor */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2051 | int error; /* error return value */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2052 | int i; /* temp state */ |
Mandy Kirkconnell | 4eea22f | 2006-03-14 13:29:52 +1100 | [diff] [blame] | 2053 | xfs_ifork_t *ifp; /* inode fork pointer */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2054 | xfs_fileoff_t new_endoff; /* end offset of new entry */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2055 | xfs_bmbt_irec_t r[3]; /* neighbor extent entries */ |
| 2056 | /* left is 0, right is 1, prev is 2 */ |
| 2057 | int rval=0; /* return value (logging flags) */ |
Christoph Hellwig | 060ea65 | 2017-10-19 11:02:29 -0700 | [diff] [blame] | 2058 | int state = xfs_bmap_fork_to_state(whichfork); |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 2059 | struct xfs_mount *mp = ip->i_mount; |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2060 | struct xfs_bmbt_irec old; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2061 | |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2062 | *logflagsp = 0; |
| 2063 | |
| 2064 | cur = *curp; |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 2065 | ifp = XFS_IFORK_PTR(ip, whichfork); |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2066 | |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2067 | ASSERT(!isnullstartblock(new->br_startblock)); |
| 2068 | |
Bill O'Donnell | ff6d6af | 2015-10-12 18:21:22 +1100 | [diff] [blame] | 2069 | XFS_STATS_INC(mp, xs_add_exlist); |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2070 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | #define LEFT r[0] |
| 2072 | #define RIGHT r[1] |
| 2073 | #define PREV r[2] |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2074 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2075 | /* |
| 2076 | * Set up a bunch of variables to make the tests simpler. |
| 2077 | */ |
| 2078 | error = 0; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2079 | xfs_iext_get_extent(ifp, icur, &PREV); |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2080 | ASSERT(new->br_state != PREV.br_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2081 | new_endoff = new->br_startoff + new->br_blockcount; |
| 2082 | ASSERT(PREV.br_startoff <= new->br_startoff); |
| 2083 | ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff); |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2084 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2085 | /* |
| 2086 | * Set flags determining what part of the previous oldext allocation |
| 2087 | * extent is being replaced by a newext allocation. |
| 2088 | */ |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2089 | if (PREV.br_startoff == new->br_startoff) |
| 2090 | state |= BMAP_LEFT_FILLING; |
| 2091 | if (PREV.br_startoff + PREV.br_blockcount == new_endoff) |
| 2092 | state |= BMAP_RIGHT_FILLING; |
| 2093 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2094 | /* |
| 2095 | * Check and set flags if this segment has a left neighbor. |
| 2096 | * Don't set contiguous if the combined extent would be too large. |
| 2097 | */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2098 | if (xfs_iext_peek_prev_extent(ifp, icur, &LEFT)) { |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2099 | state |= BMAP_LEFT_VALID; |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2100 | if (isnullstartblock(LEFT.br_startblock)) |
| 2101 | state |= BMAP_LEFT_DELAY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2102 | } |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2103 | |
| 2104 | if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) && |
| 2105 | LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff && |
| 2106 | LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock && |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2107 | LEFT.br_state == new->br_state && |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2108 | LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN) |
| 2109 | state |= BMAP_LEFT_CONTIG; |
| 2110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2111 | /* |
| 2112 | * Check and set flags if this segment has a right neighbor. |
| 2113 | * Don't set contiguous if the combined extent would be too large. |
| 2114 | * Also check for all-three-contiguous being too large. |
| 2115 | */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2116 | if (xfs_iext_peek_next_extent(ifp, icur, &RIGHT)) { |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2117 | state |= BMAP_RIGHT_VALID; |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2118 | if (isnullstartblock(RIGHT.br_startblock)) |
| 2119 | state |= BMAP_RIGHT_DELAY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2120 | } |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2121 | |
| 2122 | if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) && |
| 2123 | new_endoff == RIGHT.br_startoff && |
| 2124 | new->br_startblock + new->br_blockcount == RIGHT.br_startblock && |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2125 | new->br_state == RIGHT.br_state && |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2126 | new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN && |
| 2127 | ((state & (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING | |
| 2128 | BMAP_RIGHT_FILLING)) != |
| 2129 | (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING | |
| 2130 | BMAP_RIGHT_FILLING) || |
| 2131 | LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount |
| 2132 | <= MAXEXTLEN)) |
| 2133 | state |= BMAP_RIGHT_CONTIG; |
| 2134 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2135 | /* |
| 2136 | * Switch out based on the FILLING and CONTIG state bits. |
| 2137 | */ |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2138 | switch (state & (BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | |
| 2139 | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG)) { |
| 2140 | case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | |
| 2141 | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2142 | /* |
| 2143 | * Setting all of a previous oldext extent to newext. |
| 2144 | * The left and right neighbors are both contiguous with new. |
| 2145 | */ |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2146 | LEFT.br_blockcount += PREV.br_blockcount + RIGHT.br_blockcount; |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2147 | |
Christoph Hellwig | c38ccf5 | 2017-11-03 10:34:47 -0700 | [diff] [blame] | 2148 | xfs_iext_remove(ip, icur, state); |
| 2149 | xfs_iext_remove(ip, icur, state); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2150 | xfs_iext_prev(ifp, icur); |
| 2151 | xfs_iext_update_extent(ip, state, icur, &LEFT); |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 2152 | XFS_IFORK_NEXT_SET(ip, whichfork, |
| 2153 | XFS_IFORK_NEXTENTS(ip, whichfork) - 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2154 | if (cur == NULL) |
| 2155 | rval = XFS_ILOG_CORE | XFS_ILOG_DEXT; |
| 2156 | else { |
| 2157 | rval = XFS_ILOG_CORE; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2158 | error = xfs_bmbt_lookup_eq(cur, &RIGHT, &i); |
| 2159 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2160 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2161 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | 91cca5df | 2008-10-30 16:58:01 +1100 | [diff] [blame] | 2162 | if ((error = xfs_btree_delete(cur, &i))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2163 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2164 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | 8df4da4 | 2008-10-30 16:55:58 +1100 | [diff] [blame] | 2165 | if ((error = xfs_btree_decrement(cur, 0, &i))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2166 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2167 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | 91cca5df | 2008-10-30 16:58:01 +1100 | [diff] [blame] | 2168 | if ((error = xfs_btree_delete(cur, &i))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2169 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2170 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | 8df4da4 | 2008-10-30 16:55:58 +1100 | [diff] [blame] | 2171 | if ((error = xfs_btree_decrement(cur, 0, &i))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2172 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2173 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2174 | error = xfs_bmbt_update(cur, &LEFT); |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2175 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2176 | goto done; |
| 2177 | } |
| 2178 | break; |
| 2179 | |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2180 | case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2181 | /* |
| 2182 | * Setting all of a previous oldext extent to newext. |
| 2183 | * The left neighbor is contiguous, the right is not. |
| 2184 | */ |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2185 | LEFT.br_blockcount += PREV.br_blockcount; |
Christoph Hellwig | ec90c55 | 2011-05-23 08:52:53 +0000 | [diff] [blame] | 2186 | |
Christoph Hellwig | c38ccf5 | 2017-11-03 10:34:47 -0700 | [diff] [blame] | 2187 | xfs_iext_remove(ip, icur, state); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2188 | xfs_iext_prev(ifp, icur); |
| 2189 | xfs_iext_update_extent(ip, state, icur, &LEFT); |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 2190 | XFS_IFORK_NEXT_SET(ip, whichfork, |
| 2191 | XFS_IFORK_NEXTENTS(ip, whichfork) - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2192 | if (cur == NULL) |
| 2193 | rval = XFS_ILOG_CORE | XFS_ILOG_DEXT; |
| 2194 | else { |
| 2195 | rval = XFS_ILOG_CORE; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2196 | error = xfs_bmbt_lookup_eq(cur, &PREV, &i); |
| 2197 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2198 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2199 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | 91cca5df | 2008-10-30 16:58:01 +1100 | [diff] [blame] | 2200 | if ((error = xfs_btree_delete(cur, &i))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2201 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2202 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | 8df4da4 | 2008-10-30 16:55:58 +1100 | [diff] [blame] | 2203 | if ((error = xfs_btree_decrement(cur, 0, &i))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2204 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2205 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2206 | error = xfs_bmbt_update(cur, &LEFT); |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2207 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2208 | goto done; |
| 2209 | } |
| 2210 | break; |
| 2211 | |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2212 | case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | /* |
| 2214 | * Setting all of a previous oldext extent to newext. |
| 2215 | * The right neighbor is contiguous, the left is not. |
| 2216 | */ |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2217 | PREV.br_blockcount += RIGHT.br_blockcount; |
| 2218 | PREV.br_state = new->br_state; |
Christoph Hellwig | a681847 | 2017-11-03 10:34:40 -0700 | [diff] [blame] | 2219 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2220 | xfs_iext_next(ifp, icur); |
Christoph Hellwig | c38ccf5 | 2017-11-03 10:34:47 -0700 | [diff] [blame] | 2221 | xfs_iext_remove(ip, icur, state); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2222 | xfs_iext_prev(ifp, icur); |
| 2223 | xfs_iext_update_extent(ip, state, icur, &PREV); |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2224 | |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 2225 | XFS_IFORK_NEXT_SET(ip, whichfork, |
| 2226 | XFS_IFORK_NEXTENTS(ip, whichfork) - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2227 | if (cur == NULL) |
| 2228 | rval = XFS_ILOG_CORE | XFS_ILOG_DEXT; |
| 2229 | else { |
| 2230 | rval = XFS_ILOG_CORE; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2231 | error = xfs_bmbt_lookup_eq(cur, &RIGHT, &i); |
| 2232 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2233 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2234 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | 91cca5df | 2008-10-30 16:58:01 +1100 | [diff] [blame] | 2235 | if ((error = xfs_btree_delete(cur, &i))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2236 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2237 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | 8df4da4 | 2008-10-30 16:55:58 +1100 | [diff] [blame] | 2238 | if ((error = xfs_btree_decrement(cur, 0, &i))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2239 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2240 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2241 | error = xfs_bmbt_update(cur, &PREV); |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2242 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2243 | goto done; |
| 2244 | } |
| 2245 | break; |
| 2246 | |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2247 | case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2248 | /* |
| 2249 | * Setting all of a previous oldext extent to newext. |
| 2250 | * Neither the left nor right neighbors are contiguous with |
| 2251 | * the new one. |
| 2252 | */ |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2253 | PREV.br_state = new->br_state; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2254 | xfs_iext_update_extent(ip, state, icur, &PREV); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2255 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2256 | if (cur == NULL) |
| 2257 | rval = XFS_ILOG_DEXT; |
| 2258 | else { |
| 2259 | rval = 0; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2260 | error = xfs_bmbt_lookup_eq(cur, new, &i); |
| 2261 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2262 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2263 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2264 | error = xfs_bmbt_update(cur, &PREV); |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2265 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2266 | goto done; |
| 2267 | } |
| 2268 | break; |
| 2269 | |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2270 | case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2271 | /* |
| 2272 | * Setting the first part of a previous oldext extent to newext. |
| 2273 | * The left neighbor is contiguous. |
| 2274 | */ |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2275 | LEFT.br_blockcount += new->br_blockcount; |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2276 | |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2277 | old = PREV; |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2278 | PREV.br_startoff += new->br_blockcount; |
| 2279 | PREV.br_startblock += new->br_blockcount; |
| 2280 | PREV.br_blockcount -= new->br_blockcount; |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2281 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2282 | xfs_iext_update_extent(ip, state, icur, &PREV); |
| 2283 | xfs_iext_prev(ifp, icur); |
| 2284 | xfs_iext_update_extent(ip, state, icur, &LEFT); |
Christoph Hellwig | ec90c55 | 2011-05-23 08:52:53 +0000 | [diff] [blame] | 2285 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2286 | if (cur == NULL) |
| 2287 | rval = XFS_ILOG_DEXT; |
| 2288 | else { |
| 2289 | rval = 0; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2290 | error = xfs_bmbt_lookup_eq(cur, &old, &i); |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2291 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2292 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2293 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2294 | error = xfs_bmbt_update(cur, &PREV); |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2295 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2296 | goto done; |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2297 | error = xfs_btree_decrement(cur, 0, &i); |
| 2298 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2299 | goto done; |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2300 | error = xfs_bmbt_update(cur, &LEFT); |
Christoph Hellwig | b0eab14 | 2011-09-18 20:41:06 +0000 | [diff] [blame] | 2301 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2302 | goto done; |
| 2303 | } |
| 2304 | break; |
| 2305 | |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2306 | case BMAP_LEFT_FILLING: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2307 | /* |
| 2308 | * Setting the first part of a previous oldext extent to newext. |
| 2309 | * The left neighbor is not contiguous. |
| 2310 | */ |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2311 | old = PREV; |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2312 | PREV.br_startoff += new->br_blockcount; |
| 2313 | PREV.br_startblock += new->br_blockcount; |
| 2314 | PREV.br_blockcount -= new->br_blockcount; |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2315 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2316 | xfs_iext_update_extent(ip, state, icur, &PREV); |
Christoph Hellwig | 0254c2f | 2017-11-03 10:34:46 -0700 | [diff] [blame] | 2317 | xfs_iext_insert(ip, icur, new, state); |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 2318 | XFS_IFORK_NEXT_SET(ip, whichfork, |
| 2319 | XFS_IFORK_NEXTENTS(ip, whichfork) + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2320 | if (cur == NULL) |
| 2321 | rval = XFS_ILOG_CORE | XFS_ILOG_DEXT; |
| 2322 | else { |
| 2323 | rval = XFS_ILOG_CORE; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2324 | error = xfs_bmbt_lookup_eq(cur, &old, &i); |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2325 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2326 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2327 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2328 | error = xfs_bmbt_update(cur, &PREV); |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2329 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2330 | goto done; |
| 2331 | cur->bc_rec.b = *new; |
Christoph Hellwig | 4b22a57 | 2008-10-30 16:57:40 +1100 | [diff] [blame] | 2332 | if ((error = xfs_btree_insert(cur, &i))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2333 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2334 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2335 | } |
| 2336 | break; |
| 2337 | |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2338 | case BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2339 | /* |
| 2340 | * Setting the last part of a previous oldext extent to newext. |
| 2341 | * The right neighbor is contiguous with the new allocation. |
| 2342 | */ |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2343 | old = PREV; |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2344 | PREV.br_blockcount -= new->br_blockcount; |
Christoph Hellwig | ec90c55 | 2011-05-23 08:52:53 +0000 | [diff] [blame] | 2345 | |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2346 | RIGHT.br_startoff = new->br_startoff; |
| 2347 | RIGHT.br_startblock = new->br_startblock; |
| 2348 | RIGHT.br_blockcount += new->br_blockcount; |
Christoph Hellwig | a681847 | 2017-11-03 10:34:40 -0700 | [diff] [blame] | 2349 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2350 | xfs_iext_update_extent(ip, state, icur, &PREV); |
| 2351 | xfs_iext_next(ifp, icur); |
| 2352 | xfs_iext_update_extent(ip, state, icur, &RIGHT); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2353 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2354 | if (cur == NULL) |
| 2355 | rval = XFS_ILOG_DEXT; |
| 2356 | else { |
| 2357 | rval = 0; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2358 | error = xfs_bmbt_lookup_eq(cur, &old, &i); |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2359 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2360 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2361 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2362 | error = xfs_bmbt_update(cur, &PREV); |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2363 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2364 | goto done; |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2365 | error = xfs_btree_increment(cur, 0, &i); |
| 2366 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2367 | goto done; |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2368 | error = xfs_bmbt_update(cur, &RIGHT); |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2369 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2370 | goto done; |
| 2371 | } |
| 2372 | break; |
| 2373 | |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2374 | case BMAP_RIGHT_FILLING: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2375 | /* |
| 2376 | * Setting the last part of a previous oldext extent to newext. |
| 2377 | * The right neighbor is not contiguous. |
| 2378 | */ |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2379 | old = PREV; |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2380 | PREV.br_blockcount -= new->br_blockcount; |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2381 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2382 | xfs_iext_update_extent(ip, state, icur, &PREV); |
| 2383 | xfs_iext_next(ifp, icur); |
Christoph Hellwig | 0254c2f | 2017-11-03 10:34:46 -0700 | [diff] [blame] | 2384 | xfs_iext_insert(ip, icur, new, state); |
Christoph Hellwig | ec90c55 | 2011-05-23 08:52:53 +0000 | [diff] [blame] | 2385 | |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 2386 | XFS_IFORK_NEXT_SET(ip, whichfork, |
| 2387 | XFS_IFORK_NEXTENTS(ip, whichfork) + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2388 | if (cur == NULL) |
| 2389 | rval = XFS_ILOG_CORE | XFS_ILOG_DEXT; |
| 2390 | else { |
| 2391 | rval = XFS_ILOG_CORE; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2392 | error = xfs_bmbt_lookup_eq(cur, &old, &i); |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2393 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2394 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2395 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2396 | error = xfs_bmbt_update(cur, &PREV); |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2397 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2398 | goto done; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2399 | error = xfs_bmbt_lookup_eq(cur, new, &i); |
| 2400 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2401 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2402 | XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done); |
Christoph Hellwig | 4b22a57 | 2008-10-30 16:57:40 +1100 | [diff] [blame] | 2403 | if ((error = xfs_btree_insert(cur, &i))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2404 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2405 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2406 | } |
| 2407 | break; |
| 2408 | |
| 2409 | case 0: |
| 2410 | /* |
| 2411 | * Setting the middle part of a previous oldext extent to |
| 2412 | * newext. Contiguity is impossible here. |
| 2413 | * One extent becomes three extents. |
| 2414 | */ |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2415 | old = PREV; |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2416 | PREV.br_blockcount = new->br_startoff - PREV.br_startoff; |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2417 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2418 | r[0] = *new; |
| 2419 | r[1].br_startoff = new_endoff; |
| 2420 | r[1].br_blockcount = |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2421 | old.br_startoff + old.br_blockcount - new_endoff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2422 | r[1].br_startblock = new->br_startblock + new->br_blockcount; |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2423 | r[1].br_state = PREV.br_state; |
Christoph Hellwig | ec90c55 | 2011-05-23 08:52:53 +0000 | [diff] [blame] | 2424 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2425 | xfs_iext_update_extent(ip, state, icur, &PREV); |
| 2426 | xfs_iext_next(ifp, icur); |
Christoph Hellwig | 0254c2f | 2017-11-03 10:34:46 -0700 | [diff] [blame] | 2427 | xfs_iext_insert(ip, icur, &r[1], state); |
| 2428 | xfs_iext_insert(ip, icur, &r[0], state); |
Christoph Hellwig | ec90c55 | 2011-05-23 08:52:53 +0000 | [diff] [blame] | 2429 | |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 2430 | XFS_IFORK_NEXT_SET(ip, whichfork, |
| 2431 | XFS_IFORK_NEXTENTS(ip, whichfork) + 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2432 | if (cur == NULL) |
| 2433 | rval = XFS_ILOG_CORE | XFS_ILOG_DEXT; |
| 2434 | else { |
| 2435 | rval = XFS_ILOG_CORE; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2436 | error = xfs_bmbt_lookup_eq(cur, &old, &i); |
Christoph Hellwig | 79fa614 | 2017-10-17 14:16:25 -0700 | [diff] [blame] | 2437 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2438 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2439 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2440 | /* new right extent - oldext */ |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2441 | error = xfs_bmbt_update(cur, &r[1]); |
| 2442 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2443 | goto done; |
| 2444 | /* new left extent - oldext */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2445 | cur->bc_rec.b = PREV; |
Christoph Hellwig | 4b22a57 | 2008-10-30 16:57:40 +1100 | [diff] [blame] | 2446 | if ((error = xfs_btree_insert(cur, &i))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2447 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2448 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Lachlan McIlroy | ddea2d5 | 2008-06-23 13:25:53 +1000 | [diff] [blame] | 2449 | /* |
| 2450 | * Reset the cursor to the position of the new extent |
| 2451 | * we are about to insert as we can't trust it after |
| 2452 | * the previous insert. |
| 2453 | */ |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2454 | error = xfs_bmbt_lookup_eq(cur, new, &i); |
| 2455 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2456 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2457 | XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2458 | /* new middle extent - newext */ |
Christoph Hellwig | 4b22a57 | 2008-10-30 16:57:40 +1100 | [diff] [blame] | 2459 | if ((error = xfs_btree_insert(cur, &i))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2460 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2461 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2462 | } |
| 2463 | break; |
| 2464 | |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2465 | case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG: |
| 2466 | case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG: |
| 2467 | case BMAP_LEFT_FILLING | BMAP_RIGHT_CONTIG: |
| 2468 | case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG: |
| 2469 | case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG: |
| 2470 | case BMAP_LEFT_CONTIG: |
| 2471 | case BMAP_RIGHT_CONTIG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2472 | /* |
| 2473 | * These cases are all impossible. |
| 2474 | */ |
| 2475 | ASSERT(0); |
| 2476 | } |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2477 | |
Darrick J. Wong | 9c19464 | 2016-08-03 12:16:05 +1000 | [diff] [blame] | 2478 | /* update reverse mappings */ |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 2479 | error = xfs_rmap_convert_extent(mp, dfops, ip, whichfork, new); |
Darrick J. Wong | 9c19464 | 2016-08-03 12:16:05 +1000 | [diff] [blame] | 2480 | if (error) |
| 2481 | goto done; |
| 2482 | |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2483 | /* convert to a btree if necessary */ |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 2484 | if (xfs_bmap_needs_btree(ip, whichfork)) { |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2485 | int tmp_logflags; /* partial log flag return val */ |
| 2486 | |
| 2487 | ASSERT(cur == NULL); |
Darrick J. Wong | 2c3234d | 2016-08-03 11:19:29 +1000 | [diff] [blame] | 2488 | error = xfs_bmap_extents_to_btree(tp, ip, first, dfops, &cur, |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 2489 | 0, &tmp_logflags, whichfork); |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2490 | *logflagsp |= tmp_logflags; |
| 2491 | if (error) |
| 2492 | goto done; |
| 2493 | } |
| 2494 | |
| 2495 | /* clear out the allocated field, done with it now in any case. */ |
| 2496 | if (cur) { |
| 2497 | cur->bc_private.b.allocated = 0; |
| 2498 | *curp = cur; |
| 2499 | } |
| 2500 | |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 2501 | xfs_bmap_check_leaf_extents(*curp, ip, whichfork); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2502 | done: |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2503 | *logflagsp |= rval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2504 | return error; |
| 2505 | #undef LEFT |
| 2506 | #undef RIGHT |
| 2507 | #undef PREV |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2508 | } |
| 2509 | |
| 2510 | /* |
Christoph Hellwig | 1fd044d | 2011-09-18 20:40:49 +0000 | [diff] [blame] | 2511 | * Convert a hole to a delayed allocation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2512 | */ |
Christoph Hellwig | 1fd044d | 2011-09-18 20:40:49 +0000 | [diff] [blame] | 2513 | STATIC void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2514 | xfs_bmap_add_extent_hole_delay( |
| 2515 | xfs_inode_t *ip, /* incore inode pointer */ |
Darrick J. Wong | be51f81 | 2016-10-03 09:11:32 -0700 | [diff] [blame] | 2516 | int whichfork, |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2517 | struct xfs_iext_cursor *icur, |
Christoph Hellwig | 1fd044d | 2011-09-18 20:40:49 +0000 | [diff] [blame] | 2518 | xfs_bmbt_irec_t *new) /* new data to add to file extents */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2519 | { |
Mandy Kirkconnell | 4eea22f | 2006-03-14 13:29:52 +1100 | [diff] [blame] | 2520 | xfs_ifork_t *ifp; /* inode fork pointer */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2521 | xfs_bmbt_irec_t left; /* left neighbor extent entry */ |
| 2522 | xfs_filblks_t newlen=0; /* new indirect size */ |
| 2523 | xfs_filblks_t oldlen=0; /* old indirect size */ |
| 2524 | xfs_bmbt_irec_t right; /* right neighbor extent entry */ |
Christoph Hellwig | 060ea65 | 2017-10-19 11:02:29 -0700 | [diff] [blame] | 2525 | int state = xfs_bmap_fork_to_state(whichfork); |
Christoph Hellwig | 3ffc18e | 2017-10-17 14:16:23 -0700 | [diff] [blame] | 2526 | xfs_filblks_t temp; /* temp for indirect calculations */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2527 | |
Darrick J. Wong | be51f81 | 2016-10-03 09:11:32 -0700 | [diff] [blame] | 2528 | ifp = XFS_IFORK_PTR(ip, whichfork); |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 2529 | ASSERT(isnullstartblock(new->br_startblock)); |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2530 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2531 | /* |
| 2532 | * Check and set flags if this segment has a left neighbor |
| 2533 | */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2534 | if (xfs_iext_peek_prev_extent(ifp, icur, &left)) { |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2535 | state |= BMAP_LEFT_VALID; |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2536 | if (isnullstartblock(left.br_startblock)) |
| 2537 | state |= BMAP_LEFT_DELAY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2538 | } |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2539 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2540 | /* |
| 2541 | * Check and set flags if the current (right) segment exists. |
| 2542 | * If it doesn't exist, we're converting the hole at end-of-file. |
| 2543 | */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2544 | if (xfs_iext_get_extent(ifp, icur, &right)) { |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2545 | state |= BMAP_RIGHT_VALID; |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2546 | if (isnullstartblock(right.br_startblock)) |
| 2547 | state |= BMAP_RIGHT_DELAY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2548 | } |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2549 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2550 | /* |
| 2551 | * Set contiguity flags on the left and right neighbors. |
| 2552 | * Don't let extents get too large, even if the pieces are contiguous. |
| 2553 | */ |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2554 | if ((state & BMAP_LEFT_VALID) && (state & BMAP_LEFT_DELAY) && |
| 2555 | left.br_startoff + left.br_blockcount == new->br_startoff && |
| 2556 | left.br_blockcount + new->br_blockcount <= MAXEXTLEN) |
| 2557 | state |= BMAP_LEFT_CONTIG; |
| 2558 | |
| 2559 | if ((state & BMAP_RIGHT_VALID) && (state & BMAP_RIGHT_DELAY) && |
| 2560 | new->br_startoff + new->br_blockcount == right.br_startoff && |
| 2561 | new->br_blockcount + right.br_blockcount <= MAXEXTLEN && |
| 2562 | (!(state & BMAP_LEFT_CONTIG) || |
| 2563 | (left.br_blockcount + new->br_blockcount + |
| 2564 | right.br_blockcount <= MAXEXTLEN))) |
| 2565 | state |= BMAP_RIGHT_CONTIG; |
| 2566 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2567 | /* |
| 2568 | * Switch out based on the contiguity flags. |
| 2569 | */ |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2570 | switch (state & (BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG)) { |
| 2571 | case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2572 | /* |
| 2573 | * New allocation is contiguous with delayed allocations |
| 2574 | * on the left and on the right. |
Mandy Kirkconnell | 4eea22f | 2006-03-14 13:29:52 +1100 | [diff] [blame] | 2575 | * Merge all three into a single extent record. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2576 | */ |
| 2577 | temp = left.br_blockcount + new->br_blockcount + |
| 2578 | right.br_blockcount; |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2579 | |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 2580 | oldlen = startblockval(left.br_startblock) + |
| 2581 | startblockval(new->br_startblock) + |
| 2582 | startblockval(right.br_startblock); |
Brian Foster | 0e339ef | 2017-02-13 22:48:18 -0800 | [diff] [blame] | 2583 | newlen = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp), |
| 2584 | oldlen); |
Christoph Hellwig | 3ffc18e | 2017-10-17 14:16:23 -0700 | [diff] [blame] | 2585 | left.br_startblock = nullstartblock(newlen); |
| 2586 | left.br_blockcount = temp; |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2587 | |
Christoph Hellwig | c38ccf5 | 2017-11-03 10:34:47 -0700 | [diff] [blame] | 2588 | xfs_iext_remove(ip, icur, state); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2589 | xfs_iext_prev(ifp, icur); |
| 2590 | xfs_iext_update_extent(ip, state, icur, &left); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2591 | break; |
| 2592 | |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2593 | case BMAP_LEFT_CONTIG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2594 | /* |
| 2595 | * New allocation is contiguous with a delayed allocation |
| 2596 | * on the left. |
| 2597 | * Merge the new allocation with the left neighbor. |
| 2598 | */ |
| 2599 | temp = left.br_blockcount + new->br_blockcount; |
Christoph Hellwig | ec90c55 | 2011-05-23 08:52:53 +0000 | [diff] [blame] | 2600 | |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 2601 | oldlen = startblockval(left.br_startblock) + |
| 2602 | startblockval(new->br_startblock); |
Brian Foster | 0e339ef | 2017-02-13 22:48:18 -0800 | [diff] [blame] | 2603 | newlen = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp), |
| 2604 | oldlen); |
Christoph Hellwig | 3ffc18e | 2017-10-17 14:16:23 -0700 | [diff] [blame] | 2605 | left.br_blockcount = temp; |
| 2606 | left.br_startblock = nullstartblock(newlen); |
Christoph Hellwig | 41d196f | 2017-11-03 10:34:39 -0700 | [diff] [blame] | 2607 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2608 | xfs_iext_prev(ifp, icur); |
| 2609 | xfs_iext_update_extent(ip, state, icur, &left); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2610 | break; |
| 2611 | |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2612 | case BMAP_RIGHT_CONTIG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2613 | /* |
| 2614 | * New allocation is contiguous with a delayed allocation |
| 2615 | * on the right. |
| 2616 | * Merge the new allocation with the right neighbor. |
| 2617 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2618 | temp = new->br_blockcount + right.br_blockcount; |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 2619 | oldlen = startblockval(new->br_startblock) + |
| 2620 | startblockval(right.br_startblock); |
Brian Foster | 0e339ef | 2017-02-13 22:48:18 -0800 | [diff] [blame] | 2621 | newlen = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp), |
| 2622 | oldlen); |
Christoph Hellwig | 3ffc18e | 2017-10-17 14:16:23 -0700 | [diff] [blame] | 2623 | right.br_startoff = new->br_startoff; |
| 2624 | right.br_startblock = nullstartblock(newlen); |
| 2625 | right.br_blockcount = temp; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2626 | xfs_iext_update_extent(ip, state, icur, &right); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2627 | break; |
| 2628 | |
| 2629 | case 0: |
| 2630 | /* |
| 2631 | * New allocation is not contiguous with another |
| 2632 | * delayed allocation. |
| 2633 | * Insert a new entry. |
| 2634 | */ |
| 2635 | oldlen = newlen = 0; |
Christoph Hellwig | 0254c2f | 2017-11-03 10:34:46 -0700 | [diff] [blame] | 2636 | xfs_iext_insert(ip, icur, new, state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2637 | break; |
| 2638 | } |
| 2639 | if (oldlen != newlen) { |
| 2640 | ASSERT(oldlen > newlen); |
Dave Chinner | 0d485ad | 2015-02-23 21:22:03 +1100 | [diff] [blame] | 2641 | xfs_mod_fdblocks(ip->i_mount, (int64_t)(oldlen - newlen), |
| 2642 | false); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2643 | /* |
| 2644 | * Nothing to do for disk quota accounting here. |
| 2645 | */ |
| 2646 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2647 | } |
| 2648 | |
| 2649 | /* |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2650 | * Convert a hole to a real allocation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2651 | */ |
| 2652 | STATIC int /* error */ |
| 2653 | xfs_bmap_add_extent_hole_real( |
Christoph Hellwig | 6d04558 | 2017-04-11 16:45:54 -0700 | [diff] [blame] | 2654 | struct xfs_trans *tp, |
| 2655 | struct xfs_inode *ip, |
| 2656 | int whichfork, |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2657 | struct xfs_iext_cursor *icur, |
Christoph Hellwig | 6d04558 | 2017-04-11 16:45:54 -0700 | [diff] [blame] | 2658 | struct xfs_btree_cur **curp, |
| 2659 | struct xfs_bmbt_irec *new, |
| 2660 | xfs_fsblock_t *first, |
| 2661 | struct xfs_defer_ops *dfops, |
Darrick J. Wong | 95eb308 | 2018-05-09 10:02:32 -0700 | [diff] [blame] | 2662 | int *logflagsp, |
| 2663 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2664 | { |
Christoph Hellwig | 6d04558 | 2017-04-11 16:45:54 -0700 | [diff] [blame] | 2665 | struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork); |
| 2666 | struct xfs_mount *mp = ip->i_mount; |
| 2667 | struct xfs_btree_cur *cur = *curp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2668 | int error; /* error return value */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2669 | int i; /* temp state */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2670 | xfs_bmbt_irec_t left; /* left neighbor extent entry */ |
| 2671 | xfs_bmbt_irec_t right; /* right neighbor extent entry */ |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2672 | int rval=0; /* return value (logging flags) */ |
Christoph Hellwig | 060ea65 | 2017-10-19 11:02:29 -0700 | [diff] [blame] | 2673 | int state = xfs_bmap_fork_to_state(whichfork); |
Christoph Hellwig | 1abb9e5 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 2674 | struct xfs_bmbt_irec old; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2675 | |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2676 | ASSERT(!isnullstartblock(new->br_startblock)); |
Christoph Hellwig | 6d04558 | 2017-04-11 16:45:54 -0700 | [diff] [blame] | 2677 | ASSERT(!cur || !(cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL)); |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2678 | |
Bill O'Donnell | ff6d6af | 2015-10-12 18:21:22 +1100 | [diff] [blame] | 2679 | XFS_STATS_INC(mp, xs_add_exlist); |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2680 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2681 | /* |
| 2682 | * Check and set flags if this segment has a left neighbor. |
| 2683 | */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2684 | if (xfs_iext_peek_prev_extent(ifp, icur, &left)) { |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2685 | state |= BMAP_LEFT_VALID; |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2686 | if (isnullstartblock(left.br_startblock)) |
| 2687 | state |= BMAP_LEFT_DELAY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2688 | } |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2689 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2690 | /* |
| 2691 | * Check and set flags if this segment has a current value. |
| 2692 | * Not true if we're inserting into the "hole" at eof. |
| 2693 | */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2694 | if (xfs_iext_get_extent(ifp, icur, &right)) { |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2695 | state |= BMAP_RIGHT_VALID; |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2696 | if (isnullstartblock(right.br_startblock)) |
| 2697 | state |= BMAP_RIGHT_DELAY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2698 | } |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2699 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2700 | /* |
| 2701 | * We're inserting a real allocation between "left" and "right". |
| 2702 | * Set the contiguity flags. Don't let extents get too large. |
| 2703 | */ |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2704 | if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) && |
| 2705 | left.br_startoff + left.br_blockcount == new->br_startoff && |
| 2706 | left.br_startblock + left.br_blockcount == new->br_startblock && |
| 2707 | left.br_state == new->br_state && |
| 2708 | left.br_blockcount + new->br_blockcount <= MAXEXTLEN) |
| 2709 | state |= BMAP_LEFT_CONTIG; |
| 2710 | |
| 2711 | if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) && |
| 2712 | new->br_startoff + new->br_blockcount == right.br_startoff && |
| 2713 | new->br_startblock + new->br_blockcount == right.br_startblock && |
| 2714 | new->br_state == right.br_state && |
| 2715 | new->br_blockcount + right.br_blockcount <= MAXEXTLEN && |
| 2716 | (!(state & BMAP_LEFT_CONTIG) || |
| 2717 | left.br_blockcount + new->br_blockcount + |
| 2718 | right.br_blockcount <= MAXEXTLEN)) |
| 2719 | state |= BMAP_RIGHT_CONTIG; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2720 | |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2721 | error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2722 | /* |
| 2723 | * Select which case we're in here, and implement it. |
| 2724 | */ |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2725 | switch (state & (BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG)) { |
| 2726 | case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2727 | /* |
| 2728 | * New allocation is contiguous with real allocations on the |
| 2729 | * left and on the right. |
Mandy Kirkconnell | 4eea22f | 2006-03-14 13:29:52 +1100 | [diff] [blame] | 2730 | * Merge all three into a single extent record. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2731 | */ |
Christoph Hellwig | 1abb9e5 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 2732 | left.br_blockcount += new->br_blockcount + right.br_blockcount; |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2733 | |
Christoph Hellwig | c38ccf5 | 2017-11-03 10:34:47 -0700 | [diff] [blame] | 2734 | xfs_iext_remove(ip, icur, state); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2735 | xfs_iext_prev(ifp, icur); |
| 2736 | xfs_iext_update_extent(ip, state, icur, &left); |
Christoph Hellwig | ec90c55 | 2011-05-23 08:52:53 +0000 | [diff] [blame] | 2737 | |
Christoph Hellwig | 6d04558 | 2017-04-11 16:45:54 -0700 | [diff] [blame] | 2738 | XFS_IFORK_NEXT_SET(ip, whichfork, |
| 2739 | XFS_IFORK_NEXTENTS(ip, whichfork) - 1); |
| 2740 | if (cur == NULL) { |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 2741 | rval = XFS_ILOG_CORE | xfs_ilog_fext(whichfork); |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2742 | } else { |
| 2743 | rval = XFS_ILOG_CORE; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2744 | error = xfs_bmbt_lookup_eq(cur, &right, &i); |
Christoph Hellwig | c653424 | 2011-09-18 20:41:05 +0000 | [diff] [blame] | 2745 | if (error) |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2746 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2747 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | 6d04558 | 2017-04-11 16:45:54 -0700 | [diff] [blame] | 2748 | error = xfs_btree_delete(cur, &i); |
Christoph Hellwig | c653424 | 2011-09-18 20:41:05 +0000 | [diff] [blame] | 2749 | if (error) |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2750 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2751 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | 6d04558 | 2017-04-11 16:45:54 -0700 | [diff] [blame] | 2752 | error = xfs_btree_decrement(cur, 0, &i); |
Christoph Hellwig | c653424 | 2011-09-18 20:41:05 +0000 | [diff] [blame] | 2753 | if (error) |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2754 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2755 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2756 | error = xfs_bmbt_update(cur, &left); |
Christoph Hellwig | c653424 | 2011-09-18 20:41:05 +0000 | [diff] [blame] | 2757 | if (error) |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2758 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2759 | } |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2760 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2761 | |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2762 | case BMAP_LEFT_CONTIG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2763 | /* |
| 2764 | * New allocation is contiguous with a real allocation |
| 2765 | * on the left. |
| 2766 | * Merge the new allocation with the left neighbor. |
| 2767 | */ |
Christoph Hellwig | 1abb9e5 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 2768 | old = left; |
Christoph Hellwig | 1abb9e5 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 2769 | left.br_blockcount += new->br_blockcount; |
Christoph Hellwig | 1d2e008 | 2017-11-03 10:34:40 -0700 | [diff] [blame] | 2770 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2771 | xfs_iext_prev(ifp, icur); |
| 2772 | xfs_iext_update_extent(ip, state, icur, &left); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2773 | |
Christoph Hellwig | 6d04558 | 2017-04-11 16:45:54 -0700 | [diff] [blame] | 2774 | if (cur == NULL) { |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 2775 | rval = xfs_ilog_fext(whichfork); |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2776 | } else { |
| 2777 | rval = 0; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2778 | error = xfs_bmbt_lookup_eq(cur, &old, &i); |
Christoph Hellwig | c653424 | 2011-09-18 20:41:05 +0000 | [diff] [blame] | 2779 | if (error) |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2780 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2781 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2782 | error = xfs_bmbt_update(cur, &left); |
Christoph Hellwig | c653424 | 2011-09-18 20:41:05 +0000 | [diff] [blame] | 2783 | if (error) |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2784 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2785 | } |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2786 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2787 | |
Christoph Hellwig | 7574aa9 | 2009-11-25 00:00:19 +0000 | [diff] [blame] | 2788 | case BMAP_RIGHT_CONTIG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2789 | /* |
| 2790 | * New allocation is contiguous with a real allocation |
| 2791 | * on the right. |
| 2792 | * Merge the new allocation with the right neighbor. |
| 2793 | */ |
Christoph Hellwig | 1abb9e5 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 2794 | old = right; |
Christoph Hellwig | ca5d8e5b | 2017-10-19 11:04:44 -0700 | [diff] [blame] | 2795 | |
Christoph Hellwig | 1abb9e5 | 2017-10-17 14:16:24 -0700 | [diff] [blame] | 2796 | right.br_startoff = new->br_startoff; |
| 2797 | right.br_startblock = new->br_startblock; |
| 2798 | right.br_blockcount += new->br_blockcount; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 2799 | xfs_iext_update_extent(ip, state, icur, &right); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2800 | |
Christoph Hellwig | 6d04558 | 2017-04-11 16:45:54 -0700 | [diff] [blame] | 2801 | if (cur == NULL) { |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 2802 | rval = xfs_ilog_fext(whichfork); |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2803 | } else { |
| 2804 | rval = 0; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2805 | error = xfs_bmbt_lookup_eq(cur, &old, &i); |
Christoph Hellwig | c653424 | 2011-09-18 20:41:05 +0000 | [diff] [blame] | 2806 | if (error) |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2807 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2808 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2809 | error = xfs_bmbt_update(cur, &right); |
Christoph Hellwig | c653424 | 2011-09-18 20:41:05 +0000 | [diff] [blame] | 2810 | if (error) |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2811 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2812 | } |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2813 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2814 | |
| 2815 | case 0: |
| 2816 | /* |
| 2817 | * New allocation is not contiguous with another |
| 2818 | * real allocation. |
| 2819 | * Insert a new entry. |
| 2820 | */ |
Christoph Hellwig | 0254c2f | 2017-11-03 10:34:46 -0700 | [diff] [blame] | 2821 | xfs_iext_insert(ip, icur, new, state); |
Christoph Hellwig | 6d04558 | 2017-04-11 16:45:54 -0700 | [diff] [blame] | 2822 | XFS_IFORK_NEXT_SET(ip, whichfork, |
| 2823 | XFS_IFORK_NEXTENTS(ip, whichfork) + 1); |
| 2824 | if (cur == NULL) { |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 2825 | rval = XFS_ILOG_CORE | xfs_ilog_fext(whichfork); |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2826 | } else { |
| 2827 | rval = XFS_ILOG_CORE; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 2828 | error = xfs_bmbt_lookup_eq(cur, new, &i); |
Christoph Hellwig | c653424 | 2011-09-18 20:41:05 +0000 | [diff] [blame] | 2829 | if (error) |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2830 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2831 | XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done); |
Christoph Hellwig | 6d04558 | 2017-04-11 16:45:54 -0700 | [diff] [blame] | 2832 | error = xfs_btree_insert(cur, &i); |
Christoph Hellwig | c653424 | 2011-09-18 20:41:05 +0000 | [diff] [blame] | 2833 | if (error) |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2834 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2835 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2836 | } |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2837 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2838 | } |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2839 | |
Darrick J. Wong | 95eb308 | 2018-05-09 10:02:32 -0700 | [diff] [blame] | 2840 | /* add reverse mapping unless caller opted out */ |
| 2841 | if (!(flags & XFS_BMAPI_NORMAP)) { |
| 2842 | error = xfs_rmap_map_extent(mp, dfops, ip, whichfork, new); |
| 2843 | if (error) |
| 2844 | goto done; |
| 2845 | } |
Darrick J. Wong | 9c19464 | 2016-08-03 12:16:05 +1000 | [diff] [blame] | 2846 | |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2847 | /* convert to a btree if necessary */ |
Christoph Hellwig | 6d04558 | 2017-04-11 16:45:54 -0700 | [diff] [blame] | 2848 | if (xfs_bmap_needs_btree(ip, whichfork)) { |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2849 | int tmp_logflags; /* partial log flag return val */ |
| 2850 | |
Christoph Hellwig | 6d04558 | 2017-04-11 16:45:54 -0700 | [diff] [blame] | 2851 | ASSERT(cur == NULL); |
| 2852 | error = xfs_bmap_extents_to_btree(tp, ip, first, dfops, curp, |
Christoph Hellwig | c653424 | 2011-09-18 20:41:05 +0000 | [diff] [blame] | 2853 | 0, &tmp_logflags, whichfork); |
Christoph Hellwig | 6d04558 | 2017-04-11 16:45:54 -0700 | [diff] [blame] | 2854 | *logflagsp |= tmp_logflags; |
| 2855 | cur = *curp; |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 2856 | if (error) |
| 2857 | goto done; |
| 2858 | } |
| 2859 | |
| 2860 | /* clear out the allocated field, done with it now in any case. */ |
Christoph Hellwig | 6d04558 | 2017-04-11 16:45:54 -0700 | [diff] [blame] | 2861 | if (cur) |
| 2862 | cur->bc_private.b.allocated = 0; |
Christoph Hellwig | c653424 | 2011-09-18 20:41:05 +0000 | [diff] [blame] | 2863 | |
Christoph Hellwig | 6d04558 | 2017-04-11 16:45:54 -0700 | [diff] [blame] | 2864 | xfs_bmap_check_leaf_extents(cur, ip, whichfork); |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2865 | done: |
Christoph Hellwig | 6d04558 | 2017-04-11 16:45:54 -0700 | [diff] [blame] | 2866 | *logflagsp |= rval; |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2867 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2868 | } |
| 2869 | |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 2870 | /* |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 2871 | * Functions used in the extent read, allocate and remove paths |
| 2872 | */ |
| 2873 | |
| 2874 | /* |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 2875 | * Adjust the size of the new extent based on di_extsize and rt extsize. |
| 2876 | */ |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 2877 | int |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 2878 | xfs_bmap_extsize_align( |
| 2879 | xfs_mount_t *mp, |
| 2880 | xfs_bmbt_irec_t *gotp, /* next extent pointer */ |
| 2881 | xfs_bmbt_irec_t *prevp, /* previous extent pointer */ |
| 2882 | xfs_extlen_t extsz, /* align to this extent size */ |
| 2883 | int rt, /* is this a realtime inode? */ |
| 2884 | int eof, /* is extent at end-of-file? */ |
| 2885 | int delay, /* creating delalloc extent? */ |
| 2886 | int convert, /* overwriting unwritten extent? */ |
| 2887 | xfs_fileoff_t *offp, /* in/out: aligned offset */ |
| 2888 | xfs_extlen_t *lenp) /* in/out: aligned length */ |
| 2889 | { |
| 2890 | xfs_fileoff_t orig_off; /* original offset */ |
| 2891 | xfs_extlen_t orig_alen; /* original length */ |
| 2892 | xfs_fileoff_t orig_end; /* original off+len */ |
| 2893 | xfs_fileoff_t nexto; /* next file offset */ |
| 2894 | xfs_fileoff_t prevo; /* previous file offset */ |
| 2895 | xfs_fileoff_t align_off; /* temp for offset */ |
| 2896 | xfs_extlen_t align_alen; /* temp for length */ |
| 2897 | xfs_extlen_t temp; /* temp for calculations */ |
| 2898 | |
| 2899 | if (convert) |
| 2900 | return 0; |
| 2901 | |
| 2902 | orig_off = align_off = *offp; |
| 2903 | orig_alen = align_alen = *lenp; |
| 2904 | orig_end = orig_off + orig_alen; |
| 2905 | |
| 2906 | /* |
| 2907 | * If this request overlaps an existing extent, then don't |
| 2908 | * attempt to perform any additional alignment. |
| 2909 | */ |
| 2910 | if (!delay && !eof && |
| 2911 | (orig_off >= gotp->br_startoff) && |
| 2912 | (orig_end <= gotp->br_startoff + gotp->br_blockcount)) { |
| 2913 | return 0; |
| 2914 | } |
| 2915 | |
| 2916 | /* |
| 2917 | * If the file offset is unaligned vs. the extent size |
| 2918 | * we need to align it. This will be possible unless |
| 2919 | * the file was previously written with a kernel that didn't |
| 2920 | * perform this alignment, or if a truncate shot us in the |
| 2921 | * foot. |
| 2922 | */ |
Dave Chinner | 0703a8e | 2018-06-08 09:54:22 -0700 | [diff] [blame] | 2923 | div_u64_rem(orig_off, extsz, &temp); |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 2924 | if (temp) { |
| 2925 | align_alen += temp; |
| 2926 | align_off -= temp; |
| 2927 | } |
Dave Chinner | 6dea405e | 2015-05-29 07:40:06 +1000 | [diff] [blame] | 2928 | |
| 2929 | /* Same adjustment for the end of the requested area. */ |
| 2930 | temp = (align_alen % extsz); |
| 2931 | if (temp) |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 2932 | align_alen += extsz - temp; |
Dave Chinner | 6dea405e | 2015-05-29 07:40:06 +1000 | [diff] [blame] | 2933 | |
| 2934 | /* |
| 2935 | * For large extent hint sizes, the aligned extent might be larger than |
| 2936 | * MAXEXTLEN. In that case, reduce the size by an extsz so that it pulls |
| 2937 | * the length back under MAXEXTLEN. The outer allocation loops handle |
| 2938 | * short allocation just fine, so it is safe to do this. We only want to |
| 2939 | * do it when we are forced to, though, because it means more allocation |
| 2940 | * operations are required. |
| 2941 | */ |
| 2942 | while (align_alen > MAXEXTLEN) |
| 2943 | align_alen -= extsz; |
| 2944 | ASSERT(align_alen <= MAXEXTLEN); |
| 2945 | |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 2946 | /* |
| 2947 | * If the previous block overlaps with this proposed allocation |
| 2948 | * then move the start forward without adjusting the length. |
| 2949 | */ |
| 2950 | if (prevp->br_startoff != NULLFILEOFF) { |
| 2951 | if (prevp->br_startblock == HOLESTARTBLOCK) |
| 2952 | prevo = prevp->br_startoff; |
| 2953 | else |
| 2954 | prevo = prevp->br_startoff + prevp->br_blockcount; |
| 2955 | } else |
| 2956 | prevo = 0; |
| 2957 | if (align_off != orig_off && align_off < prevo) |
| 2958 | align_off = prevo; |
| 2959 | /* |
| 2960 | * If the next block overlaps with this proposed allocation |
| 2961 | * then move the start back without adjusting the length, |
| 2962 | * but not before offset 0. |
| 2963 | * This may of course make the start overlap previous block, |
| 2964 | * and if we hit the offset 0 limit then the next block |
| 2965 | * can still overlap too. |
| 2966 | */ |
| 2967 | if (!eof && gotp->br_startoff != NULLFILEOFF) { |
| 2968 | if ((delay && gotp->br_startblock == HOLESTARTBLOCK) || |
| 2969 | (!delay && gotp->br_startblock == DELAYSTARTBLOCK)) |
| 2970 | nexto = gotp->br_startoff + gotp->br_blockcount; |
| 2971 | else |
| 2972 | nexto = gotp->br_startoff; |
| 2973 | } else |
| 2974 | nexto = NULLFILEOFF; |
| 2975 | if (!eof && |
| 2976 | align_off + align_alen != orig_end && |
| 2977 | align_off + align_alen > nexto) |
| 2978 | align_off = nexto > align_alen ? nexto - align_alen : 0; |
| 2979 | /* |
| 2980 | * If we're now overlapping the next or previous extent that |
| 2981 | * means we can't fit an extsz piece in this hole. Just move |
| 2982 | * the start forward to the first valid spot and set |
| 2983 | * the length so we hit the end. |
| 2984 | */ |
| 2985 | if (align_off != orig_off && align_off < prevo) |
| 2986 | align_off = prevo; |
| 2987 | if (align_off + align_alen != orig_end && |
| 2988 | align_off + align_alen > nexto && |
| 2989 | nexto != NULLFILEOFF) { |
| 2990 | ASSERT(nexto > prevo); |
| 2991 | align_alen = nexto - align_off; |
| 2992 | } |
| 2993 | |
| 2994 | /* |
| 2995 | * If realtime, and the result isn't a multiple of the realtime |
| 2996 | * extent size we need to remove blocks until it is. |
| 2997 | */ |
| 2998 | if (rt && (temp = (align_alen % mp->m_sb.sb_rextsize))) { |
| 2999 | /* |
| 3000 | * We're not covering the original request, or |
| 3001 | * we won't be able to once we fix the length. |
| 3002 | */ |
| 3003 | if (orig_off < align_off || |
| 3004 | orig_end > align_off + align_alen || |
| 3005 | align_alen - temp < orig_alen) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 3006 | return -EINVAL; |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 3007 | /* |
| 3008 | * Try to fix it by moving the start up. |
| 3009 | */ |
| 3010 | if (align_off + temp <= orig_off) { |
| 3011 | align_alen -= temp; |
| 3012 | align_off += temp; |
| 3013 | } |
| 3014 | /* |
| 3015 | * Try to fix it by moving the end in. |
| 3016 | */ |
| 3017 | else if (align_off + align_alen - temp >= orig_end) |
| 3018 | align_alen -= temp; |
| 3019 | /* |
| 3020 | * Set the start to the minimum then trim the length. |
| 3021 | */ |
| 3022 | else { |
| 3023 | align_alen -= orig_off - align_off; |
| 3024 | align_off = orig_off; |
| 3025 | align_alen -= align_alen % mp->m_sb.sb_rextsize; |
| 3026 | } |
| 3027 | /* |
| 3028 | * Result doesn't cover the request, fail it. |
| 3029 | */ |
| 3030 | if (orig_off < align_off || orig_end > align_off + align_alen) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 3031 | return -EINVAL; |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 3032 | } else { |
| 3033 | ASSERT(orig_off >= align_off); |
Dave Chinner | 6dea405e | 2015-05-29 07:40:06 +1000 | [diff] [blame] | 3034 | /* see MAXEXTLEN handling above */ |
| 3035 | ASSERT(orig_end <= align_off + align_alen || |
| 3036 | align_alen + extsz > MAXEXTLEN); |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 3037 | } |
| 3038 | |
| 3039 | #ifdef DEBUG |
| 3040 | if (!eof && gotp->br_startoff != NULLFILEOFF) |
| 3041 | ASSERT(align_off + align_alen <= gotp->br_startoff); |
| 3042 | if (prevp->br_startoff != NULLFILEOFF) |
| 3043 | ASSERT(align_off >= prevp->br_startoff + prevp->br_blockcount); |
| 3044 | #endif |
| 3045 | |
| 3046 | *lenp = align_alen; |
| 3047 | *offp = align_off; |
| 3048 | return 0; |
| 3049 | } |
| 3050 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3051 | #define XFS_ALLOC_GAP_UNITS 4 |
| 3052 | |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 3053 | void |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3054 | xfs_bmap_adjacent( |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 3055 | struct xfs_bmalloca *ap) /* bmap alloc argument struct */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3056 | { |
| 3057 | xfs_fsblock_t adjust; /* adjustment to block numbers */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3058 | xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */ |
| 3059 | xfs_mount_t *mp; /* mount point structure */ |
| 3060 | int nullfb; /* true if ap->firstblock isn't set */ |
| 3061 | int rt; /* true if inode is realtime */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3062 | |
| 3063 | #define ISVALID(x,y) \ |
| 3064 | (rt ? \ |
| 3065 | (x) < mp->m_sb.sb_rblocks : \ |
| 3066 | XFS_FSB_TO_AGNO(mp, x) == XFS_FSB_TO_AGNO(mp, y) && \ |
| 3067 | XFS_FSB_TO_AGNO(mp, x) < mp->m_sb.sb_agcount && \ |
| 3068 | XFS_FSB_TO_AGBNO(mp, x) < mp->m_sb.sb_agblocks) |
| 3069 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3070 | mp = ap->ip->i_mount; |
Dave Chinner | 0937e0f | 2011-09-18 20:40:57 +0000 | [diff] [blame] | 3071 | nullfb = *ap->firstblock == NULLFSBLOCK; |
Dave Chinner | 292378e | 2016-09-26 08:21:28 +1000 | [diff] [blame] | 3072 | rt = XFS_IS_REALTIME_INODE(ap->ip) && |
| 3073 | xfs_alloc_is_userdata(ap->datatype); |
Dave Chinner | 0937e0f | 2011-09-18 20:40:57 +0000 | [diff] [blame] | 3074 | fb_agno = nullfb ? NULLAGNUMBER : XFS_FSB_TO_AGNO(mp, *ap->firstblock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3075 | /* |
| 3076 | * If allocating at eof, and there's a previous real block, |
Malcolm Parsons | 9da096f | 2009-03-29 09:55:42 +0200 | [diff] [blame] | 3077 | * try to use its last block as our starting point. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3078 | */ |
Dave Chinner | baf41a5 | 2011-09-18 20:40:56 +0000 | [diff] [blame] | 3079 | if (ap->eof && ap->prev.br_startoff != NULLFILEOFF && |
| 3080 | !isnullstartblock(ap->prev.br_startblock) && |
| 3081 | ISVALID(ap->prev.br_startblock + ap->prev.br_blockcount, |
| 3082 | ap->prev.br_startblock)) { |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3083 | ap->blkno = ap->prev.br_startblock + ap->prev.br_blockcount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3084 | /* |
| 3085 | * Adjust for the gap between prevp and us. |
| 3086 | */ |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3087 | adjust = ap->offset - |
Dave Chinner | baf41a5 | 2011-09-18 20:40:56 +0000 | [diff] [blame] | 3088 | (ap->prev.br_startoff + ap->prev.br_blockcount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3089 | if (adjust && |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3090 | ISVALID(ap->blkno + adjust, ap->prev.br_startblock)) |
| 3091 | ap->blkno += adjust; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3092 | } |
| 3093 | /* |
| 3094 | * If not at eof, then compare the two neighbor blocks. |
| 3095 | * Figure out whether either one gives us a good starting point, |
| 3096 | * and pick the better one. |
| 3097 | */ |
| 3098 | else if (!ap->eof) { |
| 3099 | xfs_fsblock_t gotbno; /* right side block number */ |
| 3100 | xfs_fsblock_t gotdiff=0; /* right side difference */ |
| 3101 | xfs_fsblock_t prevbno; /* left side block number */ |
| 3102 | xfs_fsblock_t prevdiff=0; /* left side difference */ |
| 3103 | |
| 3104 | /* |
| 3105 | * If there's a previous (left) block, select a requested |
| 3106 | * start block based on it. |
| 3107 | */ |
Dave Chinner | baf41a5 | 2011-09-18 20:40:56 +0000 | [diff] [blame] | 3108 | if (ap->prev.br_startoff != NULLFILEOFF && |
| 3109 | !isnullstartblock(ap->prev.br_startblock) && |
| 3110 | (prevbno = ap->prev.br_startblock + |
| 3111 | ap->prev.br_blockcount) && |
| 3112 | ISVALID(prevbno, ap->prev.br_startblock)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3113 | /* |
| 3114 | * Calculate gap to end of previous block. |
| 3115 | */ |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3116 | adjust = prevdiff = ap->offset - |
Dave Chinner | baf41a5 | 2011-09-18 20:40:56 +0000 | [diff] [blame] | 3117 | (ap->prev.br_startoff + |
| 3118 | ap->prev.br_blockcount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3119 | /* |
| 3120 | * Figure the startblock based on the previous block's |
| 3121 | * end and the gap size. |
| 3122 | * Heuristic! |
| 3123 | * If the gap is large relative to the piece we're |
| 3124 | * allocating, or using it gives us an invalid block |
| 3125 | * number, then just use the end of the previous block. |
| 3126 | */ |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3127 | if (prevdiff <= XFS_ALLOC_GAP_UNITS * ap->length && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3128 | ISVALID(prevbno + prevdiff, |
Dave Chinner | baf41a5 | 2011-09-18 20:40:56 +0000 | [diff] [blame] | 3129 | ap->prev.br_startblock)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3130 | prevbno += adjust; |
| 3131 | else |
| 3132 | prevdiff += adjust; |
| 3133 | /* |
| 3134 | * If the firstblock forbids it, can't use it, |
| 3135 | * must use default. |
| 3136 | */ |
| 3137 | if (!rt && !nullfb && |
| 3138 | XFS_FSB_TO_AGNO(mp, prevbno) != fb_agno) |
| 3139 | prevbno = NULLFSBLOCK; |
| 3140 | } |
| 3141 | /* |
| 3142 | * No previous block or can't follow it, just default. |
| 3143 | */ |
| 3144 | else |
| 3145 | prevbno = NULLFSBLOCK; |
| 3146 | /* |
| 3147 | * If there's a following (right) block, select a requested |
| 3148 | * start block based on it. |
| 3149 | */ |
Dave Chinner | baf41a5 | 2011-09-18 20:40:56 +0000 | [diff] [blame] | 3150 | if (!isnullstartblock(ap->got.br_startblock)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3151 | /* |
| 3152 | * Calculate gap to start of next block. |
| 3153 | */ |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3154 | adjust = gotdiff = ap->got.br_startoff - ap->offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3155 | /* |
| 3156 | * Figure the startblock based on the next block's |
| 3157 | * start and the gap size. |
| 3158 | */ |
Dave Chinner | baf41a5 | 2011-09-18 20:40:56 +0000 | [diff] [blame] | 3159 | gotbno = ap->got.br_startblock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3160 | /* |
| 3161 | * Heuristic! |
| 3162 | * If the gap is large relative to the piece we're |
| 3163 | * allocating, or using it gives us an invalid block |
| 3164 | * number, then just use the start of the next block |
| 3165 | * offset by our length. |
| 3166 | */ |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3167 | if (gotdiff <= XFS_ALLOC_GAP_UNITS * ap->length && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3168 | ISVALID(gotbno - gotdiff, gotbno)) |
| 3169 | gotbno -= adjust; |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3170 | else if (ISVALID(gotbno - ap->length, gotbno)) { |
| 3171 | gotbno -= ap->length; |
| 3172 | gotdiff += adjust - ap->length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3173 | } else |
| 3174 | gotdiff += adjust; |
| 3175 | /* |
| 3176 | * If the firstblock forbids it, can't use it, |
| 3177 | * must use default. |
| 3178 | */ |
| 3179 | if (!rt && !nullfb && |
| 3180 | XFS_FSB_TO_AGNO(mp, gotbno) != fb_agno) |
| 3181 | gotbno = NULLFSBLOCK; |
| 3182 | } |
| 3183 | /* |
| 3184 | * No next block, just default. |
| 3185 | */ |
| 3186 | else |
| 3187 | gotbno = NULLFSBLOCK; |
| 3188 | /* |
| 3189 | * If both valid, pick the better one, else the only good |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3190 | * one, else ap->blkno is already set (to 0 or the inode block). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3191 | */ |
| 3192 | if (prevbno != NULLFSBLOCK && gotbno != NULLFSBLOCK) |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3193 | ap->blkno = prevdiff <= gotdiff ? prevbno : gotbno; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3194 | else if (prevbno != NULLFSBLOCK) |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3195 | ap->blkno = prevbno; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3196 | else if (gotbno != NULLFSBLOCK) |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3197 | ap->blkno = gotbno; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3198 | } |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3199 | #undef ISVALID |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3200 | } |
| 3201 | |
Christoph Hellwig | c977eb1 | 2014-04-23 07:11:41 +1000 | [diff] [blame] | 3202 | static int |
| 3203 | xfs_bmap_longest_free_extent( |
| 3204 | struct xfs_trans *tp, |
| 3205 | xfs_agnumber_t ag, |
| 3206 | xfs_extlen_t *blen, |
| 3207 | int *notinit) |
| 3208 | { |
| 3209 | struct xfs_mount *mp = tp->t_mountp; |
| 3210 | struct xfs_perag *pag; |
| 3211 | xfs_extlen_t longest; |
| 3212 | int error = 0; |
| 3213 | |
| 3214 | pag = xfs_perag_get(mp, ag); |
| 3215 | if (!pag->pagf_init) { |
| 3216 | error = xfs_alloc_pagf_init(mp, tp, ag, XFS_ALLOC_FLAG_TRYLOCK); |
| 3217 | if (error) |
| 3218 | goto out; |
| 3219 | |
| 3220 | if (!pag->pagf_init) { |
| 3221 | *notinit = 1; |
| 3222 | goto out; |
| 3223 | } |
| 3224 | } |
| 3225 | |
Eric Sandeen | a1f6941 | 2018-04-06 10:09:42 -0700 | [diff] [blame] | 3226 | longest = xfs_alloc_longest_free_extent(pag, |
Darrick J. Wong | 3fd129b | 2016-09-19 10:30:52 +1000 | [diff] [blame] | 3227 | xfs_alloc_min_freelist(mp, pag), |
| 3228 | xfs_ag_resv_needed(pag, XFS_AG_RESV_NONE)); |
Christoph Hellwig | c977eb1 | 2014-04-23 07:11:41 +1000 | [diff] [blame] | 3229 | if (*blen < longest) |
| 3230 | *blen = longest; |
| 3231 | |
| 3232 | out: |
| 3233 | xfs_perag_put(pag); |
| 3234 | return error; |
| 3235 | } |
| 3236 | |
| 3237 | static void |
| 3238 | xfs_bmap_select_minlen( |
| 3239 | struct xfs_bmalloca *ap, |
| 3240 | struct xfs_alloc_arg *args, |
| 3241 | xfs_extlen_t *blen, |
| 3242 | int notinit) |
| 3243 | { |
| 3244 | if (notinit || *blen < ap->minlen) { |
| 3245 | /* |
| 3246 | * Since we did a BUF_TRYLOCK above, it is possible that |
| 3247 | * there is space for this request. |
| 3248 | */ |
| 3249 | args->minlen = ap->minlen; |
| 3250 | } else if (*blen < args->maxlen) { |
| 3251 | /* |
| 3252 | * If the best seen length is less than the request length, |
| 3253 | * use the best as the minimum. |
| 3254 | */ |
| 3255 | args->minlen = *blen; |
| 3256 | } else { |
| 3257 | /* |
| 3258 | * Otherwise we've seen an extent as big as maxlen, use that |
| 3259 | * as the minimum. |
| 3260 | */ |
| 3261 | args->minlen = args->maxlen; |
| 3262 | } |
| 3263 | } |
| 3264 | |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3265 | STATIC int |
Christoph Hellwig | c467c04 | 2010-02-15 23:34:42 +0000 | [diff] [blame] | 3266 | xfs_bmap_btalloc_nullfb( |
| 3267 | struct xfs_bmalloca *ap, |
| 3268 | struct xfs_alloc_arg *args, |
| 3269 | xfs_extlen_t *blen) |
| 3270 | { |
| 3271 | struct xfs_mount *mp = ap->ip->i_mount; |
Christoph Hellwig | c467c04 | 2010-02-15 23:34:42 +0000 | [diff] [blame] | 3272 | xfs_agnumber_t ag, startag; |
| 3273 | int notinit = 0; |
| 3274 | int error; |
| 3275 | |
Christoph Hellwig | c977eb1 | 2014-04-23 07:11:41 +1000 | [diff] [blame] | 3276 | args->type = XFS_ALLOCTYPE_START_BNO; |
Christoph Hellwig | c467c04 | 2010-02-15 23:34:42 +0000 | [diff] [blame] | 3277 | args->total = ap->total; |
| 3278 | |
Christoph Hellwig | c467c04 | 2010-02-15 23:34:42 +0000 | [diff] [blame] | 3279 | startag = ag = XFS_FSB_TO_AGNO(mp, args->fsbno); |
| 3280 | if (startag == NULLAGNUMBER) |
| 3281 | startag = ag = 0; |
| 3282 | |
Dave Chinner | 14b064c | 2011-01-27 12:16:28 +1100 | [diff] [blame] | 3283 | while (*blen < args->maxlen) { |
Christoph Hellwig | c977eb1 | 2014-04-23 07:11:41 +1000 | [diff] [blame] | 3284 | error = xfs_bmap_longest_free_extent(args->tp, ag, blen, |
| 3285 | ¬init); |
| 3286 | if (error) |
| 3287 | return error; |
Christoph Hellwig | c467c04 | 2010-02-15 23:34:42 +0000 | [diff] [blame] | 3288 | |
Christoph Hellwig | c467c04 | 2010-02-15 23:34:42 +0000 | [diff] [blame] | 3289 | if (++ag == mp->m_sb.sb_agcount) |
| 3290 | ag = 0; |
| 3291 | if (ag == startag) |
| 3292 | break; |
Christoph Hellwig | c467c04 | 2010-02-15 23:34:42 +0000 | [diff] [blame] | 3293 | } |
Christoph Hellwig | c977eb1 | 2014-04-23 07:11:41 +1000 | [diff] [blame] | 3294 | |
| 3295 | xfs_bmap_select_minlen(ap, args, blen, notinit); |
| 3296 | return 0; |
| 3297 | } |
| 3298 | |
| 3299 | STATIC int |
| 3300 | xfs_bmap_btalloc_filestreams( |
| 3301 | struct xfs_bmalloca *ap, |
| 3302 | struct xfs_alloc_arg *args, |
| 3303 | xfs_extlen_t *blen) |
| 3304 | { |
| 3305 | struct xfs_mount *mp = ap->ip->i_mount; |
| 3306 | xfs_agnumber_t ag; |
| 3307 | int notinit = 0; |
| 3308 | int error; |
| 3309 | |
| 3310 | args->type = XFS_ALLOCTYPE_NEAR_BNO; |
| 3311 | args->total = ap->total; |
| 3312 | |
| 3313 | ag = XFS_FSB_TO_AGNO(mp, args->fsbno); |
| 3314 | if (ag == NULLAGNUMBER) |
| 3315 | ag = 0; |
| 3316 | |
| 3317 | error = xfs_bmap_longest_free_extent(args->tp, ag, blen, ¬init); |
| 3318 | if (error) |
| 3319 | return error; |
| 3320 | |
| 3321 | if (*blen < args->maxlen) { |
| 3322 | error = xfs_filestream_new_ag(ap, &ag); |
| 3323 | if (error) |
| 3324 | return error; |
| 3325 | |
| 3326 | error = xfs_bmap_longest_free_extent(args->tp, ag, blen, |
| 3327 | ¬init); |
| 3328 | if (error) |
| 3329 | return error; |
| 3330 | |
| 3331 | } |
| 3332 | |
| 3333 | xfs_bmap_select_minlen(ap, args, blen, notinit); |
Christoph Hellwig | c467c04 | 2010-02-15 23:34:42 +0000 | [diff] [blame] | 3334 | |
| 3335 | /* |
Christoph Hellwig | c977eb1 | 2014-04-23 07:11:41 +1000 | [diff] [blame] | 3336 | * Set the failure fallback case to look in the selected AG as stream |
| 3337 | * may have moved. |
Christoph Hellwig | c467c04 | 2010-02-15 23:34:42 +0000 | [diff] [blame] | 3338 | */ |
Christoph Hellwig | c977eb1 | 2014-04-23 07:11:41 +1000 | [diff] [blame] | 3339 | ap->blkno = args->fsbno = XFS_AGB_TO_FSB(mp, ag, 0); |
Christoph Hellwig | c467c04 | 2010-02-15 23:34:42 +0000 | [diff] [blame] | 3340 | return 0; |
| 3341 | } |
| 3342 | |
Darrick J. Wong | 751f376 | 2018-01-25 13:58:13 -0800 | [diff] [blame] | 3343 | /* Update all inode and quota accounting for the allocation we just did. */ |
| 3344 | static void |
| 3345 | xfs_bmap_btalloc_accounting( |
| 3346 | struct xfs_bmalloca *ap, |
| 3347 | struct xfs_alloc_arg *args) |
| 3348 | { |
Darrick J. Wong | 4b4c132 | 2018-01-19 09:05:48 -0800 | [diff] [blame] | 3349 | if (ap->flags & XFS_BMAPI_COWFORK) { |
| 3350 | /* |
| 3351 | * COW fork blocks are in-core only and thus are treated as |
| 3352 | * in-core quota reservation (like delalloc blocks) even when |
| 3353 | * converted to real blocks. The quota reservation is not |
| 3354 | * accounted to disk until blocks are remapped to the data |
| 3355 | * fork. So if these blocks were previously delalloc, we |
| 3356 | * already have quota reservation and there's nothing to do |
| 3357 | * yet. |
| 3358 | */ |
| 3359 | if (ap->wasdel) |
| 3360 | return; |
| 3361 | |
| 3362 | /* |
| 3363 | * Otherwise, we've allocated blocks in a hole. The transaction |
| 3364 | * has acquired in-core quota reservation for this extent. |
| 3365 | * Rather than account these as real blocks, however, we reduce |
| 3366 | * the transaction quota reservation based on the allocation. |
| 3367 | * This essentially transfers the transaction quota reservation |
| 3368 | * to that of a delalloc extent. |
| 3369 | */ |
| 3370 | ap->ip->i_delayed_blks += args->len; |
| 3371 | xfs_trans_mod_dquot_byino(ap->tp, ap->ip, XFS_TRANS_DQ_RES_BLKS, |
| 3372 | -(long)args->len); |
| 3373 | return; |
| 3374 | } |
| 3375 | |
| 3376 | /* data/attr fork only */ |
| 3377 | ap->ip->i_d.di_nblocks += args->len; |
Darrick J. Wong | 751f376 | 2018-01-25 13:58:13 -0800 | [diff] [blame] | 3378 | xfs_trans_log_inode(ap->tp, ap->ip, XFS_ILOG_CORE); |
| 3379 | if (ap->wasdel) |
| 3380 | ap->ip->i_delayed_blks -= args->len; |
| 3381 | xfs_trans_mod_dquot_byino(ap->tp, ap->ip, |
| 3382 | ap->wasdel ? XFS_TRANS_DQ_DELBCOUNT : XFS_TRANS_DQ_BCOUNT, |
| 3383 | args->len); |
| 3384 | } |
| 3385 | |
Christoph Hellwig | c467c04 | 2010-02-15 23:34:42 +0000 | [diff] [blame] | 3386 | STATIC int |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3387 | xfs_bmap_btalloc( |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 3388 | struct xfs_bmalloca *ap) /* bmap alloc argument struct */ |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3389 | { |
| 3390 | xfs_mount_t *mp; /* mount point structure */ |
| 3391 | xfs_alloctype_t atype = 0; /* type for allocation routines */ |
Dave Chinner | 292378e | 2016-09-26 08:21:28 +1000 | [diff] [blame] | 3392 | xfs_extlen_t align = 0; /* minimum allocation alignment */ |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3393 | xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */ |
Christoph Hellwig | c467c04 | 2010-02-15 23:34:42 +0000 | [diff] [blame] | 3394 | xfs_agnumber_t ag; |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3395 | xfs_alloc_arg_t args; |
Darrick J. Wong | 6d8a45c | 2018-01-19 17:47:36 -0800 | [diff] [blame] | 3396 | xfs_fileoff_t orig_offset; |
| 3397 | xfs_extlen_t orig_length; |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3398 | xfs_extlen_t blen; |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3399 | xfs_extlen_t nextminlen = 0; |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3400 | int nullfb; /* true if ap->firstblock isn't set */ |
| 3401 | int isaligned; |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3402 | int tryagain; |
| 3403 | int error; |
Dave Chinner | 33177f05 | 2013-12-12 16:34:36 +1100 | [diff] [blame] | 3404 | int stripe_align; |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3405 | |
Dave Chinner | a99ebf4 | 2011-12-01 11:24:20 +0000 | [diff] [blame] | 3406 | ASSERT(ap->length); |
Darrick J. Wong | 6d8a45c | 2018-01-19 17:47:36 -0800 | [diff] [blame] | 3407 | orig_offset = ap->offset; |
| 3408 | orig_length = ap->length; |
Dave Chinner | a99ebf4 | 2011-12-01 11:24:20 +0000 | [diff] [blame] | 3409 | |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3410 | mp = ap->ip->i_mount; |
Dave Chinner | 33177f05 | 2013-12-12 16:34:36 +1100 | [diff] [blame] | 3411 | |
| 3412 | /* stripe alignment for allocation is determined by mount parameters */ |
| 3413 | stripe_align = 0; |
| 3414 | if (mp->m_swidth && (mp->m_flags & XFS_MOUNT_SWALLOC)) |
| 3415 | stripe_align = mp->m_swidth; |
| 3416 | else if (mp->m_dalign) |
| 3417 | stripe_align = mp->m_dalign; |
| 3418 | |
Darrick J. Wong | f7ca352 | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 3419 | if (ap->flags & XFS_BMAPI_COWFORK) |
| 3420 | align = xfs_get_cowextsz_hint(ap->ip); |
| 3421 | else if (xfs_alloc_is_userdata(ap->datatype)) |
Dave Chinner | 292378e | 2016-09-26 08:21:28 +1000 | [diff] [blame] | 3422 | align = xfs_get_extsz_hint(ap->ip); |
Christoph Hellwig | 493611e | 2017-01-25 08:59:43 -0800 | [diff] [blame] | 3423 | if (align) { |
Dave Chinner | baf41a5 | 2011-09-18 20:40:56 +0000 | [diff] [blame] | 3424 | error = xfs_bmap_extsize_align(mp, &ap->got, &ap->prev, |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3425 | align, 0, ap->eof, 0, ap->conv, |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3426 | &ap->offset, &ap->length); |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3427 | ASSERT(!error); |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3428 | ASSERT(ap->length); |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3429 | } |
Dave Chinner | 33177f05 | 2013-12-12 16:34:36 +1100 | [diff] [blame] | 3430 | |
| 3431 | |
Dave Chinner | 0937e0f | 2011-09-18 20:40:57 +0000 | [diff] [blame] | 3432 | nullfb = *ap->firstblock == NULLFSBLOCK; |
| 3433 | fb_agno = nullfb ? NULLAGNUMBER : XFS_FSB_TO_AGNO(mp, *ap->firstblock); |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 3434 | if (nullfb) { |
Dave Chinner | 292378e | 2016-09-26 08:21:28 +1000 | [diff] [blame] | 3435 | if (xfs_alloc_is_userdata(ap->datatype) && |
| 3436 | xfs_inode_is_filestream(ap->ip)) { |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 3437 | ag = xfs_filestream_lookup_ag(ap->ip); |
| 3438 | ag = (ag != NULLAGNUMBER) ? ag : 0; |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3439 | ap->blkno = XFS_AGB_TO_FSB(mp, ag, 0); |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 3440 | } else { |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3441 | ap->blkno = XFS_INO_TO_FSB(mp, ap->ip->i_ino); |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 3442 | } |
| 3443 | } else |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3444 | ap->blkno = *ap->firstblock; |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3445 | |
| 3446 | xfs_bmap_adjacent(ap); |
| 3447 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3448 | /* |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3449 | * If allowed, use ap->blkno; otherwise must use firstblock since |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3450 | * it's in the right allocation group. |
| 3451 | */ |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3452 | if (nullfb || XFS_FSB_TO_AGNO(mp, ap->blkno) == fb_agno) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3453 | ; |
| 3454 | else |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3455 | ap->blkno = *ap->firstblock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3456 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3457 | * Normal allocation, done through xfs_alloc_vextent. |
| 3458 | */ |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3459 | tryagain = isaligned = 0; |
Mark Tinguely | a004168 | 2012-09-20 13:16:45 -0500 | [diff] [blame] | 3460 | memset(&args, 0, sizeof(args)); |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3461 | args.tp = ap->tp; |
| 3462 | args.mp = mp; |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3463 | args.fsbno = ap->blkno; |
Darrick J. Wong | 340785c | 2016-08-03 11:33:42 +1000 | [diff] [blame] | 3464 | xfs_rmap_skip_owner_update(&args.oinfo); |
Dave Chinner | 14b064c | 2011-01-27 12:16:28 +1100 | [diff] [blame] | 3465 | |
| 3466 | /* Trim the allocation back to the maximum an AG can fit. */ |
Dave Chinner | 9bb54cb | 2018-06-07 07:54:02 -0700 | [diff] [blame] | 3467 | args.maxlen = min(ap->length, mp->m_ag_max_usable); |
Dave Chinner | 0937e0f | 2011-09-18 20:40:57 +0000 | [diff] [blame] | 3468 | args.firstblock = *ap->firstblock; |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3469 | blen = 0; |
| 3470 | if (nullfb) { |
Christoph Hellwig | c977eb1 | 2014-04-23 07:11:41 +1000 | [diff] [blame] | 3471 | /* |
| 3472 | * Search for an allocation group with a single extent large |
| 3473 | * enough for the request. If one isn't found, then adjust |
| 3474 | * the minimum allocation size to the largest space found. |
| 3475 | */ |
Dave Chinner | 292378e | 2016-09-26 08:21:28 +1000 | [diff] [blame] | 3476 | if (xfs_alloc_is_userdata(ap->datatype) && |
| 3477 | xfs_inode_is_filestream(ap->ip)) |
Christoph Hellwig | c977eb1 | 2014-04-23 07:11:41 +1000 | [diff] [blame] | 3478 | error = xfs_bmap_btalloc_filestreams(ap, &args, &blen); |
| 3479 | else |
| 3480 | error = xfs_bmap_btalloc_nullfb(ap, &args, &blen); |
Christoph Hellwig | c467c04 | 2010-02-15 23:34:42 +0000 | [diff] [blame] | 3481 | if (error) |
| 3482 | return error; |
Brian Foster | 3e3673e | 2018-07-11 22:26:14 -0700 | [diff] [blame^] | 3483 | } else if (ap->tp->t_dfops->dop_low) { |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 3484 | if (xfs_inode_is_filestream(ap->ip)) |
| 3485 | args.type = XFS_ALLOCTYPE_FIRST_AG; |
| 3486 | else |
| 3487 | args.type = XFS_ALLOCTYPE_START_BNO; |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3488 | args.total = args.minlen = ap->minlen; |
| 3489 | } else { |
| 3490 | args.type = XFS_ALLOCTYPE_NEAR_BNO; |
| 3491 | args.total = ap->total; |
| 3492 | args.minlen = ap->minlen; |
| 3493 | } |
David Chinner | 957d0eb | 2007-06-18 16:50:37 +1000 | [diff] [blame] | 3494 | /* apply extent size hints if obtained earlier */ |
Christoph Hellwig | 493611e | 2017-01-25 08:59:43 -0800 | [diff] [blame] | 3495 | if (align) { |
David Chinner | 957d0eb | 2007-06-18 16:50:37 +1000 | [diff] [blame] | 3496 | args.prod = align; |
Dave Chinner | 0703a8e | 2018-06-08 09:54:22 -0700 | [diff] [blame] | 3497 | div_u64_rem(ap->offset, args.prod, &args.mod); |
| 3498 | if (args.mod) |
| 3499 | args.mod = args.prod - args.mod; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3500 | } else if (mp->m_sb.sb_blocksize >= PAGE_SIZE) { |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3501 | args.prod = 1; |
| 3502 | args.mod = 0; |
| 3503 | } else { |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3504 | args.prod = PAGE_SIZE >> mp->m_sb.sb_blocklog; |
Dave Chinner | 0703a8e | 2018-06-08 09:54:22 -0700 | [diff] [blame] | 3505 | div_u64_rem(ap->offset, args.prod, &args.mod); |
| 3506 | if (args.mod) |
| 3507 | args.mod = args.prod - args.mod; |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3508 | } |
| 3509 | /* |
| 3510 | * If we are not low on available data blocks, and the |
| 3511 | * underlying logical volume manager is a stripe, and |
| 3512 | * the file offset is zero then try to allocate data |
| 3513 | * blocks on stripe unit boundary. |
| 3514 | * NOTE: ap->aeof is only set if the allocation length |
| 3515 | * is >= the stripe unit and the allocation offset is |
| 3516 | * at the end of file. |
| 3517 | */ |
Brian Foster | 3e3673e | 2018-07-11 22:26:14 -0700 | [diff] [blame^] | 3518 | if (!ap->tp->t_dfops->dop_low && ap->aeof) { |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3519 | if (!ap->offset) { |
Dave Chinner | 33177f05 | 2013-12-12 16:34:36 +1100 | [diff] [blame] | 3520 | args.alignment = stripe_align; |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3521 | atype = args.type; |
| 3522 | isaligned = 1; |
| 3523 | /* |
| 3524 | * Adjust for alignment |
| 3525 | */ |
Dave Chinner | 14b064c | 2011-01-27 12:16:28 +1100 | [diff] [blame] | 3526 | if (blen > args.alignment && blen <= args.maxlen) |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3527 | args.minlen = blen - args.alignment; |
| 3528 | args.minalignslop = 0; |
| 3529 | } else { |
| 3530 | /* |
| 3531 | * First try an exact bno allocation. |
| 3532 | * If it fails then do a near or start bno |
| 3533 | * allocation with alignment turned on. |
| 3534 | */ |
| 3535 | atype = args.type; |
| 3536 | tryagain = 1; |
| 3537 | args.type = XFS_ALLOCTYPE_THIS_BNO; |
| 3538 | args.alignment = 1; |
| 3539 | /* |
| 3540 | * Compute the minlen+alignment for the |
| 3541 | * next case. Set slop so that the value |
| 3542 | * of minlen+alignment+slop doesn't go up |
| 3543 | * between the calls. |
| 3544 | */ |
Dave Chinner | 33177f05 | 2013-12-12 16:34:36 +1100 | [diff] [blame] | 3545 | if (blen > stripe_align && blen <= args.maxlen) |
| 3546 | nextminlen = blen - stripe_align; |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3547 | else |
| 3548 | nextminlen = args.minlen; |
Dave Chinner | 33177f05 | 2013-12-12 16:34:36 +1100 | [diff] [blame] | 3549 | if (nextminlen + stripe_align > args.minlen + 1) |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3550 | args.minalignslop = |
Dave Chinner | 33177f05 | 2013-12-12 16:34:36 +1100 | [diff] [blame] | 3551 | nextminlen + stripe_align - |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3552 | args.minlen - 1; |
| 3553 | else |
| 3554 | args.minalignslop = 0; |
| 3555 | } |
| 3556 | } else { |
| 3557 | args.alignment = 1; |
| 3558 | args.minalignslop = 0; |
| 3559 | } |
| 3560 | args.minleft = ap->minleft; |
| 3561 | args.wasdel = ap->wasdel; |
Darrick J. Wong | 3fd129b | 2016-09-19 10:30:52 +1000 | [diff] [blame] | 3562 | args.resv = XFS_AG_RESV_NONE; |
Dave Chinner | 292378e | 2016-09-26 08:21:28 +1000 | [diff] [blame] | 3563 | args.datatype = ap->datatype; |
| 3564 | if (ap->datatype & XFS_ALLOC_USERDATA_ZERO) |
Dave Chinner | 3fbbbea | 2015-11-03 12:27:22 +1100 | [diff] [blame] | 3565 | args.ip = ap->ip; |
| 3566 | |
| 3567 | error = xfs_alloc_vextent(&args); |
| 3568 | if (error) |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3569 | return error; |
Dave Chinner | 3fbbbea | 2015-11-03 12:27:22 +1100 | [diff] [blame] | 3570 | |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3571 | if (tryagain && args.fsbno == NULLFSBLOCK) { |
| 3572 | /* |
| 3573 | * Exact allocation failed. Now try with alignment |
| 3574 | * turned on. |
| 3575 | */ |
| 3576 | args.type = atype; |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3577 | args.fsbno = ap->blkno; |
Dave Chinner | 33177f05 | 2013-12-12 16:34:36 +1100 | [diff] [blame] | 3578 | args.alignment = stripe_align; |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3579 | args.minlen = nextminlen; |
| 3580 | args.minalignslop = 0; |
| 3581 | isaligned = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3582 | if ((error = xfs_alloc_vextent(&args))) |
| 3583 | return error; |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3584 | } |
| 3585 | if (isaligned && args.fsbno == NULLFSBLOCK) { |
| 3586 | /* |
| 3587 | * allocation failed, so turn off alignment and |
| 3588 | * try again. |
| 3589 | */ |
| 3590 | args.type = atype; |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3591 | args.fsbno = ap->blkno; |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3592 | args.alignment = 0; |
| 3593 | if ((error = xfs_alloc_vextent(&args))) |
| 3594 | return error; |
| 3595 | } |
| 3596 | if (args.fsbno == NULLFSBLOCK && nullfb && |
| 3597 | args.minlen > ap->minlen) { |
| 3598 | args.minlen = ap->minlen; |
| 3599 | args.type = XFS_ALLOCTYPE_START_BNO; |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3600 | args.fsbno = ap->blkno; |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3601 | if ((error = xfs_alloc_vextent(&args))) |
| 3602 | return error; |
| 3603 | } |
| 3604 | if (args.fsbno == NULLFSBLOCK && nullfb) { |
| 3605 | args.fsbno = 0; |
| 3606 | args.type = XFS_ALLOCTYPE_FIRST_AG; |
| 3607 | args.total = ap->minlen; |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3608 | if ((error = xfs_alloc_vextent(&args))) |
| 3609 | return error; |
Brian Foster | 3e3673e | 2018-07-11 22:26:14 -0700 | [diff] [blame^] | 3610 | ap->tp->t_dfops->dop_low = true; |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3611 | } |
| 3612 | if (args.fsbno != NULLFSBLOCK) { |
Dave Chinner | 0937e0f | 2011-09-18 20:40:57 +0000 | [diff] [blame] | 3613 | /* |
| 3614 | * check the allocation happened at the same or higher AG than |
| 3615 | * the first block that was allocated. |
| 3616 | */ |
| 3617 | ASSERT(*ap->firstblock == NULLFSBLOCK || |
Christoph Hellwig | 410d17f | 2017-02-16 17:12:51 -0800 | [diff] [blame] | 3618 | XFS_FSB_TO_AGNO(mp, *ap->firstblock) <= |
| 3619 | XFS_FSB_TO_AGNO(mp, args.fsbno)); |
Dave Chinner | 0937e0f | 2011-09-18 20:40:57 +0000 | [diff] [blame] | 3620 | |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3621 | ap->blkno = args.fsbno; |
Dave Chinner | 0937e0f | 2011-09-18 20:40:57 +0000 | [diff] [blame] | 3622 | if (*ap->firstblock == NULLFSBLOCK) |
| 3623 | *ap->firstblock = args.fsbno; |
Christoph Hellwig | 410d17f | 2017-02-16 17:12:51 -0800 | [diff] [blame] | 3624 | ASSERT(nullfb || fb_agno <= args.agno); |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3625 | ap->length = args.len; |
Darrick J. Wong | 6d8a45c | 2018-01-19 17:47:36 -0800 | [diff] [blame] | 3626 | /* |
| 3627 | * If the extent size hint is active, we tried to round the |
| 3628 | * caller's allocation request offset down to extsz and the |
| 3629 | * length up to another extsz boundary. If we found a free |
| 3630 | * extent we mapped it in starting at this new offset. If the |
| 3631 | * newly mapped space isn't long enough to cover any of the |
| 3632 | * range of offsets that was originally requested, move the |
| 3633 | * mapping up so that we can fill as much of the caller's |
| 3634 | * original request as possible. Free space is apparently |
| 3635 | * very fragmented so we're unlikely to be able to satisfy the |
| 3636 | * hints anyway. |
| 3637 | */ |
| 3638 | if (ap->length <= orig_length) |
| 3639 | ap->offset = orig_offset; |
| 3640 | else if (ap->offset + ap->length < orig_offset + orig_length) |
| 3641 | ap->offset = orig_offset + orig_length - ap->length; |
Darrick J. Wong | 751f376 | 2018-01-25 13:58:13 -0800 | [diff] [blame] | 3642 | xfs_bmap_btalloc_accounting(ap, &args); |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3643 | } else { |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 3644 | ap->blkno = NULLFSBLOCK; |
| 3645 | ap->length = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3646 | } |
| 3647 | return 0; |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3648 | } |
| 3649 | |
| 3650 | /* |
| 3651 | * xfs_bmap_alloc is called by xfs_bmapi to allocate an extent for a file. |
| 3652 | * It figures out where to ask the underlying allocator to put the new extent. |
| 3653 | */ |
| 3654 | STATIC int |
| 3655 | xfs_bmap_alloc( |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 3656 | struct xfs_bmalloca *ap) /* bmap alloc argument struct */ |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3657 | { |
Dave Chinner | 292378e | 2016-09-26 08:21:28 +1000 | [diff] [blame] | 3658 | if (XFS_IS_REALTIME_INODE(ap->ip) && |
| 3659 | xfs_alloc_is_userdata(ap->datatype)) |
Nathan Scott | a365bdd | 2006-03-14 13:34:16 +1100 | [diff] [blame] | 3660 | return xfs_bmap_rtalloc(ap); |
| 3661 | return xfs_bmap_btalloc(ap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3662 | } |
| 3663 | |
Darrick J. Wong | 0a0af28 | 2016-10-20 15:51:50 +1100 | [diff] [blame] | 3664 | /* Trim extent to fit a logical block range. */ |
| 3665 | void |
| 3666 | xfs_trim_extent( |
| 3667 | struct xfs_bmbt_irec *irec, |
| 3668 | xfs_fileoff_t bno, |
| 3669 | xfs_filblks_t len) |
| 3670 | { |
| 3671 | xfs_fileoff_t distance; |
| 3672 | xfs_fileoff_t end = bno + len; |
| 3673 | |
| 3674 | if (irec->br_startoff + irec->br_blockcount <= bno || |
| 3675 | irec->br_startoff >= end) { |
| 3676 | irec->br_blockcount = 0; |
| 3677 | return; |
| 3678 | } |
| 3679 | |
| 3680 | if (irec->br_startoff < bno) { |
| 3681 | distance = bno - irec->br_startoff; |
| 3682 | if (isnullstartblock(irec->br_startblock)) |
| 3683 | irec->br_startblock = DELAYSTARTBLOCK; |
| 3684 | if (irec->br_startblock != DELAYSTARTBLOCK && |
| 3685 | irec->br_startblock != HOLESTARTBLOCK) |
| 3686 | irec->br_startblock += distance; |
| 3687 | irec->br_startoff += distance; |
| 3688 | irec->br_blockcount -= distance; |
| 3689 | } |
| 3690 | |
| 3691 | if (end < irec->br_startoff + irec->br_blockcount) { |
| 3692 | distance = irec->br_startoff + irec->br_blockcount - end; |
| 3693 | irec->br_blockcount -= distance; |
| 3694 | } |
| 3695 | } |
| 3696 | |
Brian Foster | 40214d1 | 2017-10-13 09:47:46 -0700 | [diff] [blame] | 3697 | /* trim extent to within eof */ |
| 3698 | void |
| 3699 | xfs_trim_extent_eof( |
| 3700 | struct xfs_bmbt_irec *irec, |
| 3701 | struct xfs_inode *ip) |
| 3702 | |
| 3703 | { |
| 3704 | xfs_trim_extent(irec, 0, XFS_B_TO_FSB(ip->i_mount, |
| 3705 | i_size_read(VFS_I(ip)))); |
| 3706 | } |
| 3707 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3708 | /* |
Dave Chinner | aef9a89 | 2011-09-18 20:40:44 +0000 | [diff] [blame] | 3709 | * Trim the returned map to the required bounds |
| 3710 | */ |
| 3711 | STATIC void |
| 3712 | xfs_bmapi_trim_map( |
| 3713 | struct xfs_bmbt_irec *mval, |
| 3714 | struct xfs_bmbt_irec *got, |
| 3715 | xfs_fileoff_t *bno, |
| 3716 | xfs_filblks_t len, |
| 3717 | xfs_fileoff_t obno, |
| 3718 | xfs_fileoff_t end, |
| 3719 | int n, |
| 3720 | int flags) |
| 3721 | { |
| 3722 | if ((flags & XFS_BMAPI_ENTIRE) || |
| 3723 | got->br_startoff + got->br_blockcount <= obno) { |
| 3724 | *mval = *got; |
| 3725 | if (isnullstartblock(got->br_startblock)) |
| 3726 | mval->br_startblock = DELAYSTARTBLOCK; |
| 3727 | return; |
| 3728 | } |
| 3729 | |
| 3730 | if (obno > *bno) |
| 3731 | *bno = obno; |
| 3732 | ASSERT((*bno >= obno) || (n == 0)); |
| 3733 | ASSERT(*bno < end); |
| 3734 | mval->br_startoff = *bno; |
| 3735 | if (isnullstartblock(got->br_startblock)) |
| 3736 | mval->br_startblock = DELAYSTARTBLOCK; |
| 3737 | else |
| 3738 | mval->br_startblock = got->br_startblock + |
| 3739 | (*bno - got->br_startoff); |
| 3740 | /* |
| 3741 | * Return the minimum of what we got and what we asked for for |
| 3742 | * the length. We can use the len variable here because it is |
| 3743 | * modified below and we could have been there before coming |
| 3744 | * here if the first part of the allocation didn't overlap what |
| 3745 | * was asked for. |
| 3746 | */ |
| 3747 | mval->br_blockcount = XFS_FILBLKS_MIN(end - *bno, |
| 3748 | got->br_blockcount - (*bno - got->br_startoff)); |
| 3749 | mval->br_state = got->br_state; |
| 3750 | ASSERT(mval->br_blockcount <= len); |
| 3751 | return; |
| 3752 | } |
| 3753 | |
| 3754 | /* |
| 3755 | * Update and validate the extent map to return |
| 3756 | */ |
| 3757 | STATIC void |
| 3758 | xfs_bmapi_update_map( |
| 3759 | struct xfs_bmbt_irec **map, |
| 3760 | xfs_fileoff_t *bno, |
| 3761 | xfs_filblks_t *len, |
| 3762 | xfs_fileoff_t obno, |
| 3763 | xfs_fileoff_t end, |
| 3764 | int *n, |
| 3765 | int flags) |
| 3766 | { |
| 3767 | xfs_bmbt_irec_t *mval = *map; |
| 3768 | |
| 3769 | ASSERT((flags & XFS_BMAPI_ENTIRE) || |
| 3770 | ((mval->br_startoff + mval->br_blockcount) <= end)); |
| 3771 | ASSERT((flags & XFS_BMAPI_ENTIRE) || (mval->br_blockcount <= *len) || |
| 3772 | (mval->br_startoff < obno)); |
| 3773 | |
| 3774 | *bno = mval->br_startoff + mval->br_blockcount; |
| 3775 | *len = end - *bno; |
| 3776 | if (*n > 0 && mval->br_startoff == mval[-1].br_startoff) { |
| 3777 | /* update previous map with new information */ |
| 3778 | ASSERT(mval->br_startblock == mval[-1].br_startblock); |
| 3779 | ASSERT(mval->br_blockcount > mval[-1].br_blockcount); |
| 3780 | ASSERT(mval->br_state == mval[-1].br_state); |
| 3781 | mval[-1].br_blockcount = mval->br_blockcount; |
| 3782 | mval[-1].br_state = mval->br_state; |
| 3783 | } else if (*n > 0 && mval->br_startblock != DELAYSTARTBLOCK && |
| 3784 | mval[-1].br_startblock != DELAYSTARTBLOCK && |
| 3785 | mval[-1].br_startblock != HOLESTARTBLOCK && |
| 3786 | mval->br_startblock == mval[-1].br_startblock + |
| 3787 | mval[-1].br_blockcount && |
Christoph Hellwig | c3a2f9f | 2018-07-11 22:26:01 -0700 | [diff] [blame] | 3788 | mval[-1].br_state == mval->br_state) { |
Dave Chinner | aef9a89 | 2011-09-18 20:40:44 +0000 | [diff] [blame] | 3789 | ASSERT(mval->br_startoff == |
| 3790 | mval[-1].br_startoff + mval[-1].br_blockcount); |
| 3791 | mval[-1].br_blockcount += mval->br_blockcount; |
| 3792 | } else if (*n > 0 && |
| 3793 | mval->br_startblock == DELAYSTARTBLOCK && |
| 3794 | mval[-1].br_startblock == DELAYSTARTBLOCK && |
| 3795 | mval->br_startoff == |
| 3796 | mval[-1].br_startoff + mval[-1].br_blockcount) { |
| 3797 | mval[-1].br_blockcount += mval->br_blockcount; |
| 3798 | mval[-1].br_state = mval->br_state; |
| 3799 | } else if (!((*n == 0) && |
| 3800 | ((mval->br_startoff + mval->br_blockcount) <= |
| 3801 | obno))) { |
| 3802 | mval++; |
| 3803 | (*n)++; |
| 3804 | } |
| 3805 | *map = mval; |
| 3806 | } |
| 3807 | |
| 3808 | /* |
Dave Chinner | 5c8ed20 | 2011-09-18 20:40:45 +0000 | [diff] [blame] | 3809 | * Map file blocks to filesystem blocks without allocation. |
| 3810 | */ |
| 3811 | int |
| 3812 | xfs_bmapi_read( |
| 3813 | struct xfs_inode *ip, |
| 3814 | xfs_fileoff_t bno, |
| 3815 | xfs_filblks_t len, |
| 3816 | struct xfs_bmbt_irec *mval, |
| 3817 | int *nmap, |
| 3818 | int flags) |
| 3819 | { |
| 3820 | struct xfs_mount *mp = ip->i_mount; |
| 3821 | struct xfs_ifork *ifp; |
| 3822 | struct xfs_bmbt_irec got; |
Dave Chinner | 5c8ed20 | 2011-09-18 20:40:45 +0000 | [diff] [blame] | 3823 | xfs_fileoff_t obno; |
| 3824 | xfs_fileoff_t end; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 3825 | struct xfs_iext_cursor icur; |
Dave Chinner | 5c8ed20 | 2011-09-18 20:40:45 +0000 | [diff] [blame] | 3826 | int error; |
Christoph Hellwig | 334f342 | 2016-11-24 11:39:43 +1100 | [diff] [blame] | 3827 | bool eof = false; |
Dave Chinner | 5c8ed20 | 2011-09-18 20:40:45 +0000 | [diff] [blame] | 3828 | int n = 0; |
Darrick J. Wong | 3993bae | 2016-10-03 09:11:32 -0700 | [diff] [blame] | 3829 | int whichfork = xfs_bmapi_whichfork(flags); |
Dave Chinner | 5c8ed20 | 2011-09-18 20:40:45 +0000 | [diff] [blame] | 3830 | |
| 3831 | ASSERT(*nmap >= 1); |
| 3832 | ASSERT(!(flags & ~(XFS_BMAPI_ATTRFORK|XFS_BMAPI_ENTIRE| |
Christoph Hellwig | c3a2f9f | 2018-07-11 22:26:01 -0700 | [diff] [blame] | 3833 | XFS_BMAPI_COWFORK))); |
Christoph Hellwig | eef334e | 2013-12-06 12:30:17 -0800 | [diff] [blame] | 3834 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)); |
Dave Chinner | 5c8ed20 | 2011-09-18 20:40:45 +0000 | [diff] [blame] | 3835 | |
| 3836 | if (unlikely(XFS_TEST_ERROR( |
| 3837 | (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS && |
| 3838 | XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE), |
Darrick J. Wong | 9e24cfd | 2017-06-20 17:54:47 -0700 | [diff] [blame] | 3839 | mp, XFS_ERRTAG_BMAPIFORMAT))) { |
Dave Chinner | 5c8ed20 | 2011-09-18 20:40:45 +0000 | [diff] [blame] | 3840 | XFS_ERROR_REPORT("xfs_bmapi_read", XFS_ERRLEVEL_LOW, mp); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 3841 | return -EFSCORRUPTED; |
Dave Chinner | 5c8ed20 | 2011-09-18 20:40:45 +0000 | [diff] [blame] | 3842 | } |
| 3843 | |
| 3844 | if (XFS_FORCED_SHUTDOWN(mp)) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 3845 | return -EIO; |
Dave Chinner | 5c8ed20 | 2011-09-18 20:40:45 +0000 | [diff] [blame] | 3846 | |
Bill O'Donnell | ff6d6af | 2015-10-12 18:21:22 +1100 | [diff] [blame] | 3847 | XFS_STATS_INC(mp, xs_blk_mapr); |
Dave Chinner | 5c8ed20 | 2011-09-18 20:40:45 +0000 | [diff] [blame] | 3848 | |
| 3849 | ifp = XFS_IFORK_PTR(ip, whichfork); |
Dave Chinner | 5c8ed20 | 2011-09-18 20:40:45 +0000 | [diff] [blame] | 3850 | |
Darrick J. Wong | 3993bae | 2016-10-03 09:11:32 -0700 | [diff] [blame] | 3851 | /* No CoW fork? Return a hole. */ |
| 3852 | if (whichfork == XFS_COW_FORK && !ifp) { |
| 3853 | mval->br_startoff = bno; |
| 3854 | mval->br_startblock = HOLESTARTBLOCK; |
| 3855 | mval->br_blockcount = len; |
| 3856 | mval->br_state = XFS_EXT_NORM; |
| 3857 | *nmap = 1; |
| 3858 | return 0; |
| 3859 | } |
| 3860 | |
Dave Chinner | 5c8ed20 | 2011-09-18 20:40:45 +0000 | [diff] [blame] | 3861 | if (!(ifp->if_flags & XFS_IFEXTENTS)) { |
| 3862 | error = xfs_iread_extents(NULL, ip, whichfork); |
| 3863 | if (error) |
| 3864 | return error; |
| 3865 | } |
| 3866 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 3867 | if (!xfs_iext_lookup_extent(ip, ifp, bno, &icur, &got)) |
Christoph Hellwig | 334f342 | 2016-11-24 11:39:43 +1100 | [diff] [blame] | 3868 | eof = true; |
Dave Chinner | 5c8ed20 | 2011-09-18 20:40:45 +0000 | [diff] [blame] | 3869 | end = bno + len; |
| 3870 | obno = bno; |
| 3871 | |
| 3872 | while (bno < end && n < *nmap) { |
| 3873 | /* Reading past eof, act as though there's a hole up to end. */ |
| 3874 | if (eof) |
| 3875 | got.br_startoff = end; |
| 3876 | if (got.br_startoff > bno) { |
| 3877 | /* Reading in a hole. */ |
| 3878 | mval->br_startoff = bno; |
| 3879 | mval->br_startblock = HOLESTARTBLOCK; |
| 3880 | mval->br_blockcount = |
| 3881 | XFS_FILBLKS_MIN(len, got.br_startoff - bno); |
| 3882 | mval->br_state = XFS_EXT_NORM; |
| 3883 | bno += mval->br_blockcount; |
| 3884 | len -= mval->br_blockcount; |
| 3885 | mval++; |
| 3886 | n++; |
| 3887 | continue; |
| 3888 | } |
| 3889 | |
| 3890 | /* set up the extent map to return. */ |
| 3891 | xfs_bmapi_trim_map(mval, &got, &bno, len, obno, end, n, flags); |
| 3892 | xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags); |
| 3893 | |
| 3894 | /* If we're done, stop now. */ |
| 3895 | if (bno >= end || n >= *nmap) |
| 3896 | break; |
| 3897 | |
| 3898 | /* Else go on to the next record. */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 3899 | if (!xfs_iext_next_extent(ifp, &icur, &got)) |
Christoph Hellwig | 334f342 | 2016-11-24 11:39:43 +1100 | [diff] [blame] | 3900 | eof = true; |
Dave Chinner | 5c8ed20 | 2011-09-18 20:40:45 +0000 | [diff] [blame] | 3901 | } |
| 3902 | *nmap = n; |
| 3903 | return 0; |
| 3904 | } |
| 3905 | |
Brian Foster | f65e6fa | 2017-03-08 09:58:08 -0800 | [diff] [blame] | 3906 | /* |
| 3907 | * Add a delayed allocation extent to an inode. Blocks are reserved from the |
| 3908 | * global pool and the extent inserted into the inode in-core extent tree. |
| 3909 | * |
| 3910 | * On entry, got refers to the first extent beyond the offset of the extent to |
| 3911 | * allocate or eof is specified if no such extent exists. On return, got refers |
| 3912 | * to the extent record that was inserted to the inode fork. |
| 3913 | * |
| 3914 | * Note that the allocated extent may have been merged with contiguous extents |
| 3915 | * during insertion into the inode fork. Thus, got does not reflect the current |
| 3916 | * state of the inode fork on return. If necessary, the caller can use lastx to |
| 3917 | * look up the updated record in the inode fork. |
| 3918 | */ |
Christoph Hellwig | 51446f5 | 2016-09-19 11:10:21 +1000 | [diff] [blame] | 3919 | int |
Christoph Hellwig | b64dfe4 | 2011-09-18 20:40:47 +0000 | [diff] [blame] | 3920 | xfs_bmapi_reserve_delalloc( |
| 3921 | struct xfs_inode *ip, |
Darrick J. Wong | be51f81 | 2016-10-03 09:11:32 -0700 | [diff] [blame] | 3922 | int whichfork, |
Brian Foster | 974ae92 | 2016-11-28 14:57:42 +1100 | [diff] [blame] | 3923 | xfs_fileoff_t off, |
Christoph Hellwig | b64dfe4 | 2011-09-18 20:40:47 +0000 | [diff] [blame] | 3924 | xfs_filblks_t len, |
Brian Foster | 974ae92 | 2016-11-28 14:57:42 +1100 | [diff] [blame] | 3925 | xfs_filblks_t prealloc, |
Christoph Hellwig | b64dfe4 | 2011-09-18 20:40:47 +0000 | [diff] [blame] | 3926 | struct xfs_bmbt_irec *got, |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 3927 | struct xfs_iext_cursor *icur, |
Christoph Hellwig | b64dfe4 | 2011-09-18 20:40:47 +0000 | [diff] [blame] | 3928 | int eof) |
| 3929 | { |
| 3930 | struct xfs_mount *mp = ip->i_mount; |
Darrick J. Wong | be51f81 | 2016-10-03 09:11:32 -0700 | [diff] [blame] | 3931 | struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork); |
Christoph Hellwig | b64dfe4 | 2011-09-18 20:40:47 +0000 | [diff] [blame] | 3932 | xfs_extlen_t alen; |
| 3933 | xfs_extlen_t indlen; |
Christoph Hellwig | b64dfe4 | 2011-09-18 20:40:47 +0000 | [diff] [blame] | 3934 | int error; |
Brian Foster | 974ae92 | 2016-11-28 14:57:42 +1100 | [diff] [blame] | 3935 | xfs_fileoff_t aoff = off; |
Christoph Hellwig | b64dfe4 | 2011-09-18 20:40:47 +0000 | [diff] [blame] | 3936 | |
Brian Foster | 974ae92 | 2016-11-28 14:57:42 +1100 | [diff] [blame] | 3937 | /* |
| 3938 | * Cap the alloc length. Keep track of prealloc so we know whether to |
| 3939 | * tag the inode before we return. |
| 3940 | */ |
| 3941 | alen = XFS_FILBLKS_MIN(len + prealloc, MAXEXTLEN); |
Christoph Hellwig | b64dfe4 | 2011-09-18 20:40:47 +0000 | [diff] [blame] | 3942 | if (!eof) |
| 3943 | alen = XFS_FILBLKS_MIN(alen, got->br_startoff - aoff); |
Brian Foster | 974ae92 | 2016-11-28 14:57:42 +1100 | [diff] [blame] | 3944 | if (prealloc && alen >= len) |
| 3945 | prealloc = alen - len; |
Christoph Hellwig | b64dfe4 | 2011-09-18 20:40:47 +0000 | [diff] [blame] | 3946 | |
| 3947 | /* Figure out the extent size, adjust alen */ |
Shan Hai | 6ca3072 | 2018-01-23 13:56:11 -0800 | [diff] [blame] | 3948 | if (whichfork == XFS_COW_FORK) { |
Christoph Hellwig | 65c5f41 | 2016-11-24 11:39:44 +1100 | [diff] [blame] | 3949 | struct xfs_bmbt_irec prev; |
Shan Hai | 6ca3072 | 2018-01-23 13:56:11 -0800 | [diff] [blame] | 3950 | xfs_extlen_t extsz = xfs_get_cowextsz_hint(ip); |
Christoph Hellwig | 65c5f41 | 2016-11-24 11:39:44 +1100 | [diff] [blame] | 3951 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 3952 | if (!xfs_iext_peek_prev_extent(ifp, icur, &prev)) |
Christoph Hellwig | 65c5f41 | 2016-11-24 11:39:44 +1100 | [diff] [blame] | 3953 | prev.br_startoff = NULLFILEOFF; |
| 3954 | |
Shan Hai | 6ca3072 | 2018-01-23 13:56:11 -0800 | [diff] [blame] | 3955 | error = xfs_bmap_extsize_align(mp, got, &prev, extsz, 0, eof, |
Christoph Hellwig | b64dfe4 | 2011-09-18 20:40:47 +0000 | [diff] [blame] | 3956 | 1, 0, &aoff, &alen); |
| 3957 | ASSERT(!error); |
| 3958 | } |
| 3959 | |
Christoph Hellwig | b64dfe4 | 2011-09-18 20:40:47 +0000 | [diff] [blame] | 3960 | /* |
| 3961 | * Make a transaction-less quota reservation for delayed allocation |
| 3962 | * blocks. This number gets adjusted later. We return if we haven't |
| 3963 | * allocated blocks already inside this loop. |
| 3964 | */ |
| 3965 | error = xfs_trans_reserve_quota_nblks(NULL, ip, (long)alen, 0, |
Shan Hai | 6ca3072 | 2018-01-23 13:56:11 -0800 | [diff] [blame] | 3966 | XFS_QMOPT_RES_REGBLKS); |
Christoph Hellwig | b64dfe4 | 2011-09-18 20:40:47 +0000 | [diff] [blame] | 3967 | if (error) |
| 3968 | return error; |
| 3969 | |
| 3970 | /* |
| 3971 | * Split changing sb for alen and indlen since they could be coming |
| 3972 | * from different places. |
| 3973 | */ |
| 3974 | indlen = (xfs_extlen_t)xfs_bmap_worst_indlen(ip, alen); |
| 3975 | ASSERT(indlen > 0); |
| 3976 | |
Shan Hai | 6ca3072 | 2018-01-23 13:56:11 -0800 | [diff] [blame] | 3977 | error = xfs_mod_fdblocks(mp, -((int64_t)alen), false); |
Christoph Hellwig | b64dfe4 | 2011-09-18 20:40:47 +0000 | [diff] [blame] | 3978 | if (error) |
| 3979 | goto out_unreserve_quota; |
| 3980 | |
Dave Chinner | 0d485ad | 2015-02-23 21:22:03 +1100 | [diff] [blame] | 3981 | error = xfs_mod_fdblocks(mp, -((int64_t)indlen), false); |
Christoph Hellwig | b64dfe4 | 2011-09-18 20:40:47 +0000 | [diff] [blame] | 3982 | if (error) |
| 3983 | goto out_unreserve_blocks; |
| 3984 | |
| 3985 | |
| 3986 | ip->i_delayed_blks += alen; |
| 3987 | |
| 3988 | got->br_startoff = aoff; |
| 3989 | got->br_startblock = nullstartblock(indlen); |
| 3990 | got->br_blockcount = alen; |
| 3991 | got->br_state = XFS_EXT_NORM; |
Christoph Hellwig | b64dfe4 | 2011-09-18 20:40:47 +0000 | [diff] [blame] | 3992 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 3993 | xfs_bmap_add_extent_hole_delay(ip, whichfork, icur, got); |
Christoph Hellwig | b64dfe4 | 2011-09-18 20:40:47 +0000 | [diff] [blame] | 3994 | |
Brian Foster | 974ae92 | 2016-11-28 14:57:42 +1100 | [diff] [blame] | 3995 | /* |
| 3996 | * Tag the inode if blocks were preallocated. Note that COW fork |
| 3997 | * preallocation can occur at the start or end of the extent, even when |
| 3998 | * prealloc == 0, so we must also check the aligned offset and length. |
| 3999 | */ |
| 4000 | if (whichfork == XFS_DATA_FORK && prealloc) |
| 4001 | xfs_inode_set_eofblocks_tag(ip); |
| 4002 | if (whichfork == XFS_COW_FORK && (prealloc || aoff < off || alen > len)) |
| 4003 | xfs_inode_set_cowblocks_tag(ip); |
| 4004 | |
Christoph Hellwig | b64dfe4 | 2011-09-18 20:40:47 +0000 | [diff] [blame] | 4005 | return 0; |
| 4006 | |
| 4007 | out_unreserve_blocks: |
Shan Hai | 6ca3072 | 2018-01-23 13:56:11 -0800 | [diff] [blame] | 4008 | xfs_mod_fdblocks(mp, alen, false); |
Christoph Hellwig | b64dfe4 | 2011-09-18 20:40:47 +0000 | [diff] [blame] | 4009 | out_unreserve_quota: |
| 4010 | if (XFS_IS_QUOTA_ON(mp)) |
Shan Hai | 6ca3072 | 2018-01-23 13:56:11 -0800 | [diff] [blame] | 4011 | xfs_trans_unreserve_quota_nblks(NULL, ip, (long)alen, 0, |
| 4012 | XFS_QMOPT_RES_REGBLKS); |
Christoph Hellwig | b64dfe4 | 2011-09-18 20:40:47 +0000 | [diff] [blame] | 4013 | return error; |
| 4014 | } |
| 4015 | |
Dave Chinner | cf11da9 | 2014-07-15 07:08:24 +1000 | [diff] [blame] | 4016 | static int |
| 4017 | xfs_bmapi_allocate( |
Dave Chinner | e04426b | 2012-10-05 11:06:59 +1000 | [diff] [blame] | 4018 | struct xfs_bmalloca *bma) |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4019 | { |
| 4020 | struct xfs_mount *mp = bma->ip->i_mount; |
Darrick J. Wong | 60b4984 | 2016-10-03 09:11:34 -0700 | [diff] [blame] | 4021 | int whichfork = xfs_bmapi_whichfork(bma->flags); |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4022 | struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork); |
Christoph Hellwig | c315c90 | 2011-09-18 20:41:02 +0000 | [diff] [blame] | 4023 | int tmp_logflags = 0; |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4024 | int error; |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4025 | |
Dave Chinner | a99ebf4 | 2011-12-01 11:24:20 +0000 | [diff] [blame] | 4026 | ASSERT(bma->length > 0); |
| 4027 | |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4028 | /* |
| 4029 | * For the wasdelay case, we could also just allocate the stuff asked |
| 4030 | * for in this bmap call but that wouldn't be as good. |
| 4031 | */ |
| 4032 | if (bma->wasdel) { |
Dave Chinner | 963c30c | 2011-09-18 20:40:59 +0000 | [diff] [blame] | 4033 | bma->length = (xfs_extlen_t)bma->got.br_blockcount; |
| 4034 | bma->offset = bma->got.br_startoff; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4035 | xfs_iext_peek_prev_extent(ifp, &bma->icur, &bma->prev); |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4036 | } else { |
Dave Chinner | 963c30c | 2011-09-18 20:40:59 +0000 | [diff] [blame] | 4037 | bma->length = XFS_FILBLKS_MIN(bma->length, MAXEXTLEN); |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4038 | if (!bma->eof) |
Dave Chinner | 963c30c | 2011-09-18 20:40:59 +0000 | [diff] [blame] | 4039 | bma->length = XFS_FILBLKS_MIN(bma->length, |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 4040 | bma->got.br_startoff - bma->offset); |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4041 | } |
| 4042 | |
| 4043 | /* |
Dave Chinner | 292378e | 2016-09-26 08:21:28 +1000 | [diff] [blame] | 4044 | * Set the data type being allocated. For the data fork, the first data |
| 4045 | * in the file is treated differently to all other allocations. For the |
| 4046 | * attribute fork, we only need to ensure the allocated range is not on |
| 4047 | * the busy list. |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4048 | */ |
Dave Chinner | e04426b | 2012-10-05 11:06:59 +1000 | [diff] [blame] | 4049 | if (!(bma->flags & XFS_BMAPI_METADATA)) { |
Dave Chinner | 292378e | 2016-09-26 08:21:28 +1000 | [diff] [blame] | 4050 | bma->datatype = XFS_ALLOC_NOBUSY; |
| 4051 | if (whichfork == XFS_DATA_FORK) { |
| 4052 | if (bma->offset == 0) |
| 4053 | bma->datatype |= XFS_ALLOC_INITIAL_USER_DATA; |
| 4054 | else |
| 4055 | bma->datatype |= XFS_ALLOC_USERDATA; |
| 4056 | } |
Dave Chinner | 3fbbbea | 2015-11-03 12:27:22 +1100 | [diff] [blame] | 4057 | if (bma->flags & XFS_BMAPI_ZERO) |
Dave Chinner | 292378e | 2016-09-26 08:21:28 +1000 | [diff] [blame] | 4058 | bma->datatype |= XFS_ALLOC_USERDATA_ZERO; |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4059 | } |
| 4060 | |
Dave Chinner | e04426b | 2012-10-05 11:06:59 +1000 | [diff] [blame] | 4061 | bma->minlen = (bma->flags & XFS_BMAPI_CONTIG) ? bma->length : 1; |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4062 | |
| 4063 | /* |
| 4064 | * Only want to do the alignment at the eof if it is userdata and |
| 4065 | * allocation length is larger than a stripe unit. |
| 4066 | */ |
Dave Chinner | 963c30c | 2011-09-18 20:40:59 +0000 | [diff] [blame] | 4067 | if (mp->m_dalign && bma->length >= mp->m_dalign && |
Dave Chinner | e04426b | 2012-10-05 11:06:59 +1000 | [diff] [blame] | 4068 | !(bma->flags & XFS_BMAPI_METADATA) && whichfork == XFS_DATA_FORK) { |
Dave Chinner | 1b16447 | 2011-09-18 20:40:55 +0000 | [diff] [blame] | 4069 | error = xfs_bmap_isaeof(bma, whichfork); |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4070 | if (error) |
| 4071 | return error; |
| 4072 | } |
| 4073 | |
| 4074 | error = xfs_bmap_alloc(bma); |
| 4075 | if (error) |
| 4076 | return error; |
| 4077 | |
Dave Chinner | 29c8d17 | 2011-09-18 20:41:00 +0000 | [diff] [blame] | 4078 | if (bma->cur) |
| 4079 | bma->cur->bc_private.b.firstblock = *bma->firstblock; |
Dave Chinner | 963c30c | 2011-09-18 20:40:59 +0000 | [diff] [blame] | 4080 | if (bma->blkno == NULLFSBLOCK) |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4081 | return 0; |
Dave Chinner | 29c8d17 | 2011-09-18 20:41:00 +0000 | [diff] [blame] | 4082 | if ((ifp->if_flags & XFS_IFBROOT) && !bma->cur) { |
| 4083 | bma->cur = xfs_bmbt_init_cursor(mp, bma->tp, bma->ip, whichfork); |
| 4084 | bma->cur->bc_private.b.firstblock = *bma->firstblock; |
Brian Foster | 3e3673e | 2018-07-11 22:26:14 -0700 | [diff] [blame^] | 4085 | bma->cur->bc_private.b.dfops = bma->tp->t_dfops; |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4086 | } |
| 4087 | /* |
| 4088 | * Bump the number of extents we've allocated |
| 4089 | * in this call. |
| 4090 | */ |
Dave Chinner | e0c3da5 | 2011-09-18 20:41:01 +0000 | [diff] [blame] | 4091 | bma->nallocs++; |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4092 | |
Dave Chinner | 29c8d17 | 2011-09-18 20:41:00 +0000 | [diff] [blame] | 4093 | if (bma->cur) |
| 4094 | bma->cur->bc_private.b.flags = |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4095 | bma->wasdel ? XFS_BTCUR_BPRV_WASDEL : 0; |
| 4096 | |
Dave Chinner | 963c30c | 2011-09-18 20:40:59 +0000 | [diff] [blame] | 4097 | bma->got.br_startoff = bma->offset; |
| 4098 | bma->got.br_startblock = bma->blkno; |
| 4099 | bma->got.br_blockcount = bma->length; |
Dave Chinner | baf41a5 | 2011-09-18 20:40:56 +0000 | [diff] [blame] | 4100 | bma->got.br_state = XFS_EXT_NORM; |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4101 | |
| 4102 | /* |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 4103 | * In the data fork, a wasdelay extent has been initialized, so |
| 4104 | * shouldn't be flagged as unwritten. |
| 4105 | * |
| 4106 | * For the cow fork, however, we convert delalloc reservations |
| 4107 | * (extents allocated for speculative preallocation) to |
| 4108 | * allocated unwritten extents, and only convert the unwritten |
| 4109 | * extents to real extents when we're about to write the data. |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4110 | */ |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 4111 | if ((!bma->wasdel || (bma->flags & XFS_BMAPI_COWFORK)) && |
| 4112 | (bma->flags & XFS_BMAPI_PREALLOC) && |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4113 | xfs_sb_version_hasextflgbit(&mp->m_sb)) |
Dave Chinner | baf41a5 | 2011-09-18 20:40:56 +0000 | [diff] [blame] | 4114 | bma->got.br_state = XFS_EXT_UNWRITTEN; |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4115 | |
Christoph Hellwig | c653424 | 2011-09-18 20:41:05 +0000 | [diff] [blame] | 4116 | if (bma->wasdel) |
Darrick J. Wong | 60b4984 | 2016-10-03 09:11:34 -0700 | [diff] [blame] | 4117 | error = xfs_bmap_add_extent_delay_real(bma, whichfork); |
Christoph Hellwig | c653424 | 2011-09-18 20:41:05 +0000 | [diff] [blame] | 4118 | else |
Christoph Hellwig | 6d04558 | 2017-04-11 16:45:54 -0700 | [diff] [blame] | 4119 | error = xfs_bmap_add_extent_hole_real(bma->tp, bma->ip, |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4120 | whichfork, &bma->icur, &bma->cur, &bma->got, |
Brian Foster | 3e3673e | 2018-07-11 22:26:14 -0700 | [diff] [blame^] | 4121 | bma->firstblock, bma->tp->t_dfops, |
| 4122 | &bma->logflags, bma->flags); |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 4123 | |
Christoph Hellwig | c315c90 | 2011-09-18 20:41:02 +0000 | [diff] [blame] | 4124 | bma->logflags |= tmp_logflags; |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4125 | if (error) |
| 4126 | return error; |
| 4127 | |
| 4128 | /* |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 4129 | * Update our extent pointer, given that xfs_bmap_add_extent_delay_real |
| 4130 | * or xfs_bmap_add_extent_hole_real might have merged it into one of |
| 4131 | * the neighbouring ones. |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4132 | */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4133 | xfs_iext_get_extent(ifp, &bma->icur, &bma->got); |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4134 | |
Dave Chinner | 963c30c | 2011-09-18 20:40:59 +0000 | [diff] [blame] | 4135 | ASSERT(bma->got.br_startoff <= bma->offset); |
| 4136 | ASSERT(bma->got.br_startoff + bma->got.br_blockcount >= |
| 4137 | bma->offset + bma->length); |
Dave Chinner | baf41a5 | 2011-09-18 20:40:56 +0000 | [diff] [blame] | 4138 | ASSERT(bma->got.br_state == XFS_EXT_NORM || |
| 4139 | bma->got.br_state == XFS_EXT_UNWRITTEN); |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4140 | return 0; |
| 4141 | } |
| 4142 | |
Dave Chinner | b447fe5 | 2011-09-18 20:40:51 +0000 | [diff] [blame] | 4143 | STATIC int |
| 4144 | xfs_bmapi_convert_unwritten( |
| 4145 | struct xfs_bmalloca *bma, |
| 4146 | struct xfs_bmbt_irec *mval, |
| 4147 | xfs_filblks_t len, |
Christoph Hellwig | c315c90 | 2011-09-18 20:41:02 +0000 | [diff] [blame] | 4148 | int flags) |
Dave Chinner | b447fe5 | 2011-09-18 20:40:51 +0000 | [diff] [blame] | 4149 | { |
Darrick J. Wong | 3993bae | 2016-10-03 09:11:32 -0700 | [diff] [blame] | 4150 | int whichfork = xfs_bmapi_whichfork(flags); |
Dave Chinner | b447fe5 | 2011-09-18 20:40:51 +0000 | [diff] [blame] | 4151 | struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork); |
Christoph Hellwig | c315c90 | 2011-09-18 20:41:02 +0000 | [diff] [blame] | 4152 | int tmp_logflags = 0; |
Dave Chinner | b447fe5 | 2011-09-18 20:40:51 +0000 | [diff] [blame] | 4153 | int error; |
| 4154 | |
Dave Chinner | b447fe5 | 2011-09-18 20:40:51 +0000 | [diff] [blame] | 4155 | /* check if we need to do unwritten->real conversion */ |
| 4156 | if (mval->br_state == XFS_EXT_UNWRITTEN && |
| 4157 | (flags & XFS_BMAPI_PREALLOC)) |
| 4158 | return 0; |
| 4159 | |
| 4160 | /* check if we need to do real->unwritten conversion */ |
| 4161 | if (mval->br_state == XFS_EXT_NORM && |
| 4162 | (flags & (XFS_BMAPI_PREALLOC | XFS_BMAPI_CONVERT)) != |
| 4163 | (XFS_BMAPI_PREALLOC | XFS_BMAPI_CONVERT)) |
| 4164 | return 0; |
| 4165 | |
| 4166 | /* |
| 4167 | * Modify (by adding) the state flag, if writing. |
| 4168 | */ |
| 4169 | ASSERT(mval->br_blockcount <= len); |
Dave Chinner | 29c8d17 | 2011-09-18 20:41:00 +0000 | [diff] [blame] | 4170 | if ((ifp->if_flags & XFS_IFBROOT) && !bma->cur) { |
| 4171 | bma->cur = xfs_bmbt_init_cursor(bma->ip->i_mount, bma->tp, |
Dave Chinner | b447fe5 | 2011-09-18 20:40:51 +0000 | [diff] [blame] | 4172 | bma->ip, whichfork); |
Dave Chinner | 29c8d17 | 2011-09-18 20:41:00 +0000 | [diff] [blame] | 4173 | bma->cur->bc_private.b.firstblock = *bma->firstblock; |
Brian Foster | 3e3673e | 2018-07-11 22:26:14 -0700 | [diff] [blame^] | 4174 | bma->cur->bc_private.b.dfops = bma->tp->t_dfops; |
Dave Chinner | b447fe5 | 2011-09-18 20:40:51 +0000 | [diff] [blame] | 4175 | } |
| 4176 | mval->br_state = (mval->br_state == XFS_EXT_UNWRITTEN) |
| 4177 | ? XFS_EXT_NORM : XFS_EXT_UNWRITTEN; |
| 4178 | |
Dave Chinner | 3fbbbea | 2015-11-03 12:27:22 +1100 | [diff] [blame] | 4179 | /* |
| 4180 | * Before insertion into the bmbt, zero the range being converted |
| 4181 | * if required. |
| 4182 | */ |
| 4183 | if (flags & XFS_BMAPI_ZERO) { |
| 4184 | error = xfs_zero_extent(bma->ip, mval->br_startblock, |
| 4185 | mval->br_blockcount); |
| 4186 | if (error) |
| 4187 | return error; |
| 4188 | } |
| 4189 | |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 4190 | error = xfs_bmap_add_extent_unwritten_real(bma->tp, bma->ip, whichfork, |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4191 | &bma->icur, &bma->cur, mval, bma->firstblock, |
Brian Foster | 3e3673e | 2018-07-11 22:26:14 -0700 | [diff] [blame^] | 4192 | bma->tp->t_dfops, &tmp_logflags); |
Brian Foster | 2e588a4 | 2015-06-01 07:15:23 +1000 | [diff] [blame] | 4193 | /* |
| 4194 | * Log the inode core unconditionally in the unwritten extent conversion |
| 4195 | * path because the conversion might not have done so (e.g., if the |
| 4196 | * extent count hasn't changed). We need to make sure the inode is dirty |
| 4197 | * in the transaction for the sake of fsync(), even if nothing has |
| 4198 | * changed, because fsync() will not force the log for this transaction |
| 4199 | * unless it sees the inode pinned. |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 4200 | * |
| 4201 | * Note: If we're only converting cow fork extents, there aren't |
| 4202 | * any on-disk updates to make, so we don't need to log anything. |
Brian Foster | 2e588a4 | 2015-06-01 07:15:23 +1000 | [diff] [blame] | 4203 | */ |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 4204 | if (whichfork != XFS_COW_FORK) |
| 4205 | bma->logflags |= tmp_logflags | XFS_ILOG_CORE; |
Dave Chinner | b447fe5 | 2011-09-18 20:40:51 +0000 | [diff] [blame] | 4206 | if (error) |
| 4207 | return error; |
| 4208 | |
| 4209 | /* |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 4210 | * Update our extent pointer, given that |
| 4211 | * xfs_bmap_add_extent_unwritten_real might have merged it into one |
| 4212 | * of the neighbouring ones. |
Dave Chinner | b447fe5 | 2011-09-18 20:40:51 +0000 | [diff] [blame] | 4213 | */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4214 | xfs_iext_get_extent(ifp, &bma->icur, &bma->got); |
Dave Chinner | b447fe5 | 2011-09-18 20:40:51 +0000 | [diff] [blame] | 4215 | |
| 4216 | /* |
| 4217 | * We may have combined previously unwritten space with written space, |
| 4218 | * so generate another request. |
| 4219 | */ |
| 4220 | if (mval->br_blockcount < len) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 4221 | return -EAGAIN; |
Dave Chinner | b447fe5 | 2011-09-18 20:40:51 +0000 | [diff] [blame] | 4222 | return 0; |
| 4223 | } |
| 4224 | |
Christoph Hellwig | 4403280 | 2011-09-18 20:40:48 +0000 | [diff] [blame] | 4225 | /* |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4226 | * Map file blocks to filesystem blocks, and allocate blocks or convert the |
| 4227 | * extent state if necessary. Details behaviour is controlled by the flags |
| 4228 | * parameter. Only allocates blocks from a single allocation group, to avoid |
| 4229 | * locking problems. |
| 4230 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4231 | * The returned value in "firstblock" from the first call in a transaction |
| 4232 | * must be remembered and presented to subsequent calls in "firstblock". |
| 4233 | * An upper bound for the number of blocks to be allocated is supplied to |
| 4234 | * the first call in "total"; if no allocation group has that many free |
| 4235 | * blocks then the call will fail (return NULLFSBLOCK in "firstblock"). |
| 4236 | */ |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4237 | int |
| 4238 | xfs_bmapi_write( |
| 4239 | struct xfs_trans *tp, /* transaction pointer */ |
| 4240 | struct xfs_inode *ip, /* incore inode */ |
| 4241 | xfs_fileoff_t bno, /* starting file offs. mapped */ |
| 4242 | xfs_filblks_t len, /* length to map in file */ |
| 4243 | int flags, /* XFS_BMAPI_... */ |
| 4244 | xfs_fsblock_t *firstblock, /* first allocated block |
| 4245 | controls a.g. for allocs */ |
| 4246 | xfs_extlen_t total, /* total blocks needed */ |
| 4247 | struct xfs_bmbt_irec *mval, /* output: map values */ |
Brian Foster | 6e702a5 | 2018-07-11 22:26:12 -0700 | [diff] [blame] | 4248 | int *nmap) /* i/o: mval size/count */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4249 | { |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4250 | struct xfs_mount *mp = ip->i_mount; |
| 4251 | struct xfs_ifork *ifp; |
Dave Chinner | a30b036 | 2013-09-02 20:49:36 +1000 | [diff] [blame] | 4252 | struct xfs_bmalloca bma = { NULL }; /* args for xfs_bmap_alloc */ |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4253 | xfs_fileoff_t end; /* end of mapped file region */ |
Christoph Hellwig | 2d58f6e | 2016-11-24 11:39:43 +1100 | [diff] [blame] | 4254 | bool eof = false; /* after the end of extents */ |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4255 | int error; /* error return */ |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4256 | int n; /* current extent index */ |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4257 | xfs_fileoff_t obno; /* old block number (offset) */ |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4258 | int whichfork; /* data or attr fork */ |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4259 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4260 | #ifdef DEBUG |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4261 | xfs_fileoff_t orig_bno; /* original block number value */ |
| 4262 | int orig_flags; /* original flags arg value */ |
| 4263 | xfs_filblks_t orig_len; /* original value of len arg */ |
| 4264 | struct xfs_bmbt_irec *orig_mval; /* original value of mval */ |
| 4265 | int orig_nmap; /* original value of *nmap */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4266 | |
| 4267 | orig_bno = bno; |
| 4268 | orig_len = len; |
| 4269 | orig_flags = flags; |
| 4270 | orig_mval = mval; |
| 4271 | orig_nmap = *nmap; |
| 4272 | #endif |
Darrick J. Wong | 60b4984 | 2016-10-03 09:11:34 -0700 | [diff] [blame] | 4273 | whichfork = xfs_bmapi_whichfork(flags); |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4274 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4275 | ASSERT(*nmap >= 1); |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4276 | ASSERT(*nmap <= XFS_BMAP_MAX_NMAP); |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 4277 | ASSERT(tp != NULL || |
| 4278 | (flags & (XFS_BMAPI_CONVERT | XFS_BMAPI_COWFORK)) == |
| 4279 | (XFS_BMAPI_CONVERT | XFS_BMAPI_COWFORK)); |
Dave Chinner | a99ebf4 | 2011-12-01 11:24:20 +0000 | [diff] [blame] | 4280 | ASSERT(len > 0); |
Dave Chinner | f3508bc | 2013-07-10 07:04:00 +1000 | [diff] [blame] | 4281 | ASSERT(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_LOCAL); |
Christoph Hellwig | eef334e | 2013-12-06 12:30:17 -0800 | [diff] [blame] | 4282 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL)); |
Christoph Hellwig | 6ebd5a4 | 2017-04-11 16:45:55 -0700 | [diff] [blame] | 4283 | ASSERT(!(flags & XFS_BMAPI_REMAP)); |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4284 | |
Dave Chinner | 3fbbbea | 2015-11-03 12:27:22 +1100 | [diff] [blame] | 4285 | /* zeroing is for currently only for data extents, not metadata */ |
| 4286 | ASSERT((flags & (XFS_BMAPI_METADATA | XFS_BMAPI_ZERO)) != |
| 4287 | (XFS_BMAPI_METADATA | XFS_BMAPI_ZERO)); |
| 4288 | /* |
| 4289 | * we can allocate unwritten extents or pre-zero allocated blocks, |
| 4290 | * but it makes no sense to do both at once. This would result in |
| 4291 | * zeroing the unwritten extent twice, but it still being an |
| 4292 | * unwritten extent.... |
| 4293 | */ |
| 4294 | ASSERT((flags & (XFS_BMAPI_PREALLOC | XFS_BMAPI_ZERO)) != |
| 4295 | (XFS_BMAPI_PREALLOC | XFS_BMAPI_ZERO)); |
| 4296 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4297 | if (unlikely(XFS_TEST_ERROR( |
| 4298 | (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS && |
Dave Chinner | f3508bc | 2013-07-10 07:04:00 +1000 | [diff] [blame] | 4299 | XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE), |
Darrick J. Wong | 9e24cfd | 2017-06-20 17:54:47 -0700 | [diff] [blame] | 4300 | mp, XFS_ERRTAG_BMAPIFORMAT))) { |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4301 | XFS_ERROR_REPORT("xfs_bmapi_write", XFS_ERRLEVEL_LOW, mp); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 4302 | return -EFSCORRUPTED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4303 | } |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4304 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4305 | if (XFS_FORCED_SHUTDOWN(mp)) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 4306 | return -EIO; |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4308 | ifp = XFS_IFORK_PTR(ip, whichfork); |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4309 | |
Bill O'Donnell | ff6d6af | 2015-10-12 18:21:22 +1100 | [diff] [blame] | 4310 | XFS_STATS_INC(mp, xs_blk_mapw); |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4311 | |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4312 | if (*firstblock == NULLFSBLOCK) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4313 | if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE) |
Dave Chinner | 0937e0f | 2011-09-18 20:40:57 +0000 | [diff] [blame] | 4314 | bma.minleft = be16_to_cpu(ifp->if_broot->bb_level) + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4315 | else |
Dave Chinner | 0937e0f | 2011-09-18 20:40:57 +0000 | [diff] [blame] | 4316 | bma.minleft = 1; |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4317 | } else { |
Dave Chinner | 0937e0f | 2011-09-18 20:40:57 +0000 | [diff] [blame] | 4318 | bma.minleft = 0; |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4319 | } |
| 4320 | |
| 4321 | if (!(ifp->if_flags & XFS_IFEXTENTS)) { |
| 4322 | error = xfs_iread_extents(tp, ip, whichfork); |
| 4323 | if (error) |
| 4324 | goto error0; |
| 4325 | } |
| 4326 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4327 | n = 0; |
| 4328 | end = bno + len; |
| 4329 | obno = bno; |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4330 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4331 | if (!xfs_iext_lookup_extent(ip, ifp, bno, &bma.icur, &bma.got)) |
Christoph Hellwig | 2d58f6e | 2016-11-24 11:39:43 +1100 | [diff] [blame] | 4332 | eof = true; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4333 | if (!xfs_iext_peek_prev_extent(ifp, &bma.icur, &bma.prev)) |
Christoph Hellwig | 2d58f6e | 2016-11-24 11:39:43 +1100 | [diff] [blame] | 4334 | bma.prev.br_startoff = NULLFILEOFF; |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4335 | bma.tp = tp; |
| 4336 | bma.ip = ip; |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4337 | bma.total = total; |
Dave Chinner | 292378e | 2016-09-26 08:21:28 +1000 | [diff] [blame] | 4338 | bma.datatype = 0; |
Dave Chinner | 0937e0f | 2011-09-18 20:40:57 +0000 | [diff] [blame] | 4339 | bma.firstblock = firstblock; |
Brian Foster | 3e3673e | 2018-07-11 22:26:14 -0700 | [diff] [blame^] | 4340 | ASSERT(!tp || tp->t_dfops); |
Christoph Hellwig | b4e9181 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 4341 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4342 | while (bno < end && n < *nmap) { |
Christoph Hellwig | d2b3964 | 2017-01-20 09:31:54 -0800 | [diff] [blame] | 4343 | bool need_alloc = false, wasdelay = false; |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4344 | |
Darrick J. Wong | be78ff0 | 2018-01-16 19:03:59 -0800 | [diff] [blame] | 4345 | /* in hole or beyond EOF? */ |
Christoph Hellwig | d2b3964 | 2017-01-20 09:31:54 -0800 | [diff] [blame] | 4346 | if (eof || bma.got.br_startoff > bno) { |
Darrick J. Wong | be78ff0 | 2018-01-16 19:03:59 -0800 | [diff] [blame] | 4347 | /* |
| 4348 | * CoW fork conversions should /never/ hit EOF or |
| 4349 | * holes. There should always be something for us |
| 4350 | * to work on. |
| 4351 | */ |
| 4352 | ASSERT(!((flags & XFS_BMAPI_CONVERT) && |
| 4353 | (flags & XFS_BMAPI_COWFORK))); |
| 4354 | |
Christoph Hellwig | d2b3964 | 2017-01-20 09:31:54 -0800 | [diff] [blame] | 4355 | if (flags & XFS_BMAPI_DELALLOC) { |
| 4356 | /* |
| 4357 | * For the COW fork we can reasonably get a |
| 4358 | * request for converting an extent that races |
| 4359 | * with other threads already having converted |
| 4360 | * part of it, as there converting COW to |
| 4361 | * regular blocks is not protected using the |
| 4362 | * IOLOCK. |
| 4363 | */ |
| 4364 | ASSERT(flags & XFS_BMAPI_COWFORK); |
| 4365 | if (!(flags & XFS_BMAPI_COWFORK)) { |
| 4366 | error = -EIO; |
| 4367 | goto error0; |
| 4368 | } |
| 4369 | |
| 4370 | if (eof || bno >= end) |
| 4371 | break; |
| 4372 | } else { |
| 4373 | need_alloc = true; |
| 4374 | } |
Christoph Hellwig | 6ebd5a4 | 2017-04-11 16:45:55 -0700 | [diff] [blame] | 4375 | } else if (isnullstartblock(bma.got.br_startblock)) { |
| 4376 | wasdelay = true; |
Christoph Hellwig | d2b3964 | 2017-01-20 09:31:54 -0800 | [diff] [blame] | 4377 | } |
Darrick J. Wong | f65306e | 2016-10-03 09:11:27 -0700 | [diff] [blame] | 4378 | |
| 4379 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4380 | * First, deal with the hole before the allocated space |
| 4381 | * that we found, if any. |
| 4382 | */ |
Christoph Hellwig | b121459 | 2017-11-03 10:34:44 -0700 | [diff] [blame] | 4383 | if ((need_alloc || wasdelay) && |
| 4384 | !(flags & XFS_BMAPI_CONVERT_ONLY)) { |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4385 | bma.eof = eof; |
| 4386 | bma.conv = !!(flags & XFS_BMAPI_CONVERT); |
| 4387 | bma.wasdel = wasdelay; |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 4388 | bma.offset = bno; |
Dave Chinner | e04426b | 2012-10-05 11:06:59 +1000 | [diff] [blame] | 4389 | bma.flags = flags; |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4390 | |
Dave Chinner | a99ebf4 | 2011-12-01 11:24:20 +0000 | [diff] [blame] | 4391 | /* |
| 4392 | * There's a 32/64 bit type mismatch between the |
| 4393 | * allocation length request (which can be 64 bits in |
| 4394 | * length) and the bma length request, which is |
| 4395 | * xfs_extlen_t and therefore 32 bits. Hence we have to |
| 4396 | * check for 32-bit overflows and handle them here. |
| 4397 | */ |
| 4398 | if (len > (xfs_filblks_t)MAXEXTLEN) |
| 4399 | bma.length = MAXEXTLEN; |
| 4400 | else |
| 4401 | bma.length = len; |
| 4402 | |
| 4403 | ASSERT(len > 0); |
| 4404 | ASSERT(bma.length > 0); |
Dave Chinner | e04426b | 2012-10-05 11:06:59 +1000 | [diff] [blame] | 4405 | error = xfs_bmapi_allocate(&bma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4406 | if (error) |
| 4407 | goto error0; |
Dave Chinner | 3a75667 | 2011-09-18 20:40:58 +0000 | [diff] [blame] | 4408 | if (bma.blkno == NULLFSBLOCK) |
Dave Chinner | 7e47a4e | 2011-09-18 20:40:50 +0000 | [diff] [blame] | 4409 | break; |
Darrick J. Wong | 174edb0 | 2016-10-03 09:11:39 -0700 | [diff] [blame] | 4410 | |
| 4411 | /* |
| 4412 | * If this is a CoW allocation, record the data in |
| 4413 | * the refcount btree for orphan recovery. |
| 4414 | */ |
| 4415 | if (whichfork == XFS_COW_FORK) { |
Brian Foster | 6e702a5 | 2018-07-11 22:26:12 -0700 | [diff] [blame] | 4416 | error = xfs_refcount_alloc_cow_extent(mp, |
| 4417 | tp->t_dfops, bma.blkno, |
| 4418 | bma.length); |
Darrick J. Wong | 174edb0 | 2016-10-03 09:11:39 -0700 | [diff] [blame] | 4419 | if (error) |
| 4420 | goto error0; |
| 4421 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4422 | } |
Christoph Hellwig | 4403280 | 2011-09-18 20:40:48 +0000 | [diff] [blame] | 4423 | |
Dave Chinner | aef9a89 | 2011-09-18 20:40:44 +0000 | [diff] [blame] | 4424 | /* Deal with the allocated space we found. */ |
Dave Chinner | baf41a5 | 2011-09-18 20:40:56 +0000 | [diff] [blame] | 4425 | xfs_bmapi_trim_map(mval, &bma.got, &bno, len, obno, |
| 4426 | end, n, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4427 | |
Dave Chinner | b447fe5 | 2011-09-18 20:40:51 +0000 | [diff] [blame] | 4428 | /* Execute unwritten extent conversion if necessary */ |
Christoph Hellwig | c315c90 | 2011-09-18 20:41:02 +0000 | [diff] [blame] | 4429 | error = xfs_bmapi_convert_unwritten(&bma, mval, len, flags); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 4430 | if (error == -EAGAIN) |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4431 | continue; |
| 4432 | if (error) |
| 4433 | goto error0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4434 | |
Dave Chinner | aef9a89 | 2011-09-18 20:40:44 +0000 | [diff] [blame] | 4435 | /* update the extent map to return */ |
| 4436 | xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags); |
| 4437 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4438 | /* |
| 4439 | * If we're done, stop now. Stop when we've allocated |
| 4440 | * XFS_BMAP_MAX_NMAP extents no matter what. Otherwise |
| 4441 | * the transaction may get too big. |
| 4442 | */ |
Dave Chinner | e0c3da5 | 2011-09-18 20:41:01 +0000 | [diff] [blame] | 4443 | if (bno >= end || n >= *nmap || bma.nallocs >= *nmap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4444 | break; |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4445 | |
| 4446 | /* Else go on to the next record. */ |
Dave Chinner | baf41a5 | 2011-09-18 20:40:56 +0000 | [diff] [blame] | 4447 | bma.prev = bma.got; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4448 | if (!xfs_iext_next_extent(ifp, &bma.icur, &bma.got)) |
Christoph Hellwig | 2d58f6e | 2016-11-24 11:39:43 +1100 | [diff] [blame] | 4449 | eof = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4450 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4451 | *nmap = n; |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4452 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4453 | /* |
| 4454 | * Transform from btree to extents, give it cur. |
| 4455 | */ |
Christoph Hellwig | 8096b1e | 2011-12-18 20:00:07 +0000 | [diff] [blame] | 4456 | if (xfs_bmap_wants_extents(ip, whichfork)) { |
Christoph Hellwig | c315c90 | 2011-09-18 20:41:02 +0000 | [diff] [blame] | 4457 | int tmp_logflags = 0; |
| 4458 | |
Dave Chinner | 29c8d17 | 2011-09-18 20:41:00 +0000 | [diff] [blame] | 4459 | ASSERT(bma.cur); |
| 4460 | error = xfs_bmap_btree_to_extents(tp, ip, bma.cur, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4461 | &tmp_logflags, whichfork); |
Christoph Hellwig | c315c90 | 2011-09-18 20:41:02 +0000 | [diff] [blame] | 4462 | bma.logflags |= tmp_logflags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4463 | if (error) |
| 4464 | goto error0; |
| 4465 | } |
Christoph Hellwig | 8096b1e | 2011-12-18 20:00:07 +0000 | [diff] [blame] | 4466 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4467 | ASSERT(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE || |
Christoph Hellwig | 8096b1e | 2011-12-18 20:00:07 +0000 | [diff] [blame] | 4468 | XFS_IFORK_NEXTENTS(ip, whichfork) > |
| 4469 | XFS_IFORK_MAXEXT(ip, whichfork)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4470 | error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4471 | error0: |
| 4472 | /* |
| 4473 | * Log everything. Do this after conversion, there's no point in |
Mandy Kirkconnell | 4eea22f | 2006-03-14 13:29:52 +1100 | [diff] [blame] | 4474 | * logging the extent records if we've converted to btree format. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4475 | */ |
Christoph Hellwig | c315c90 | 2011-09-18 20:41:02 +0000 | [diff] [blame] | 4476 | if ((bma.logflags & xfs_ilog_fext(whichfork)) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4477 | XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS) |
Christoph Hellwig | c315c90 | 2011-09-18 20:41:02 +0000 | [diff] [blame] | 4478 | bma.logflags &= ~xfs_ilog_fext(whichfork); |
| 4479 | else if ((bma.logflags & xfs_ilog_fbroot(whichfork)) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4480 | XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE) |
Christoph Hellwig | c315c90 | 2011-09-18 20:41:02 +0000 | [diff] [blame] | 4481 | bma.logflags &= ~xfs_ilog_fbroot(whichfork); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4482 | /* |
| 4483 | * Log whatever the flags say, even if error. Otherwise we might miss |
| 4484 | * detecting a case where the data is changed, there's an error, |
| 4485 | * and it's not logged so we don't shutdown when we should. |
| 4486 | */ |
Christoph Hellwig | c315c90 | 2011-09-18 20:41:02 +0000 | [diff] [blame] | 4487 | if (bma.logflags) |
| 4488 | xfs_trans_log_inode(tp, ip, bma.logflags); |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 4489 | |
Dave Chinner | 29c8d17 | 2011-09-18 20:41:00 +0000 | [diff] [blame] | 4490 | if (bma.cur) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4491 | if (!error) { |
| 4492 | ASSERT(*firstblock == NULLFSBLOCK || |
Christoph Hellwig | 410d17f | 2017-02-16 17:12:51 -0800 | [diff] [blame] | 4493 | XFS_FSB_TO_AGNO(mp, *firstblock) <= |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4494 | XFS_FSB_TO_AGNO(mp, |
Christoph Hellwig | 410d17f | 2017-02-16 17:12:51 -0800 | [diff] [blame] | 4495 | bma.cur->bc_private.b.firstblock)); |
Dave Chinner | 29c8d17 | 2011-09-18 20:41:00 +0000 | [diff] [blame] | 4496 | *firstblock = bma.cur->bc_private.b.firstblock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4497 | } |
Dave Chinner | 29c8d17 | 2011-09-18 20:41:00 +0000 | [diff] [blame] | 4498 | xfs_btree_del_cursor(bma.cur, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4499 | error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR); |
| 4500 | } |
| 4501 | if (!error) |
| 4502 | xfs_bmap_validate_ret(orig_bno, orig_len, orig_flags, orig_mval, |
| 4503 | orig_nmap, *nmap); |
| 4504 | return error; |
| 4505 | } |
| 4506 | |
Darrick J. Wong | 7cf199b | 2018-05-14 06:34:34 -0700 | [diff] [blame] | 4507 | int |
Christoph Hellwig | 6ebd5a4 | 2017-04-11 16:45:55 -0700 | [diff] [blame] | 4508 | xfs_bmapi_remap( |
| 4509 | struct xfs_trans *tp, |
| 4510 | struct xfs_inode *ip, |
| 4511 | xfs_fileoff_t bno, |
| 4512 | xfs_filblks_t len, |
| 4513 | xfs_fsblock_t startblock, |
Darrick J. Wong | 7cf199b | 2018-05-14 06:34:34 -0700 | [diff] [blame] | 4514 | int flags) |
Christoph Hellwig | 6ebd5a4 | 2017-04-11 16:45:55 -0700 | [diff] [blame] | 4515 | { |
| 4516 | struct xfs_mount *mp = ip->i_mount; |
Darrick J. Wong | 7cf199b | 2018-05-14 06:34:34 -0700 | [diff] [blame] | 4517 | struct xfs_ifork *ifp; |
Christoph Hellwig | 6ebd5a4 | 2017-04-11 16:45:55 -0700 | [diff] [blame] | 4518 | struct xfs_btree_cur *cur = NULL; |
| 4519 | xfs_fsblock_t firstblock = NULLFSBLOCK; |
| 4520 | struct xfs_bmbt_irec got; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4521 | struct xfs_iext_cursor icur; |
Darrick J. Wong | 7cf199b | 2018-05-14 06:34:34 -0700 | [diff] [blame] | 4522 | int whichfork = xfs_bmapi_whichfork(flags); |
Christoph Hellwig | 6ebd5a4 | 2017-04-11 16:45:55 -0700 | [diff] [blame] | 4523 | int logflags = 0, error; |
| 4524 | |
Darrick J. Wong | 7cf199b | 2018-05-14 06:34:34 -0700 | [diff] [blame] | 4525 | ifp = XFS_IFORK_PTR(ip, whichfork); |
Christoph Hellwig | 6ebd5a4 | 2017-04-11 16:45:55 -0700 | [diff] [blame] | 4526 | ASSERT(len > 0); |
| 4527 | ASSERT(len <= (xfs_filblks_t)MAXEXTLEN); |
| 4528 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL)); |
Darrick J. Wong | 7644bd9 | 2018-05-14 06:34:35 -0700 | [diff] [blame] | 4529 | ASSERT(!(flags & ~(XFS_BMAPI_ATTRFORK | XFS_BMAPI_PREALLOC | |
| 4530 | XFS_BMAPI_NORMAP))); |
| 4531 | ASSERT((flags & (XFS_BMAPI_ATTRFORK | XFS_BMAPI_PREALLOC)) != |
| 4532 | (XFS_BMAPI_ATTRFORK | XFS_BMAPI_PREALLOC)); |
Christoph Hellwig | 6ebd5a4 | 2017-04-11 16:45:55 -0700 | [diff] [blame] | 4533 | |
| 4534 | if (unlikely(XFS_TEST_ERROR( |
Darrick J. Wong | 7cf199b | 2018-05-14 06:34:34 -0700 | [diff] [blame] | 4535 | (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS && |
| 4536 | XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE), |
Darrick J. Wong | 9e24cfd | 2017-06-20 17:54:47 -0700 | [diff] [blame] | 4537 | mp, XFS_ERRTAG_BMAPIFORMAT))) { |
Christoph Hellwig | 6ebd5a4 | 2017-04-11 16:45:55 -0700 | [diff] [blame] | 4538 | XFS_ERROR_REPORT("xfs_bmapi_remap", XFS_ERRLEVEL_LOW, mp); |
| 4539 | return -EFSCORRUPTED; |
| 4540 | } |
| 4541 | |
| 4542 | if (XFS_FORCED_SHUTDOWN(mp)) |
| 4543 | return -EIO; |
| 4544 | |
| 4545 | if (!(ifp->if_flags & XFS_IFEXTENTS)) { |
Darrick J. Wong | 7cf199b | 2018-05-14 06:34:34 -0700 | [diff] [blame] | 4546 | error = xfs_iread_extents(tp, ip, whichfork); |
Christoph Hellwig | 6ebd5a4 | 2017-04-11 16:45:55 -0700 | [diff] [blame] | 4547 | if (error) |
| 4548 | return error; |
| 4549 | } |
| 4550 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4551 | if (xfs_iext_lookup_extent(ip, ifp, bno, &icur, &got)) { |
Christoph Hellwig | 6ebd5a4 | 2017-04-11 16:45:55 -0700 | [diff] [blame] | 4552 | /* make sure we only reflink into a hole. */ |
| 4553 | ASSERT(got.br_startoff > bno); |
| 4554 | ASSERT(got.br_startoff - bno >= len); |
| 4555 | } |
| 4556 | |
Christoph Hellwig | bf8eadb | 2017-04-11 16:45:56 -0700 | [diff] [blame] | 4557 | ip->i_d.di_nblocks += len; |
| 4558 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
Christoph Hellwig | 6ebd5a4 | 2017-04-11 16:45:55 -0700 | [diff] [blame] | 4559 | |
| 4560 | if (ifp->if_flags & XFS_IFBROOT) { |
Darrick J. Wong | 7cf199b | 2018-05-14 06:34:34 -0700 | [diff] [blame] | 4561 | cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork); |
Christoph Hellwig | 6ebd5a4 | 2017-04-11 16:45:55 -0700 | [diff] [blame] | 4562 | cur->bc_private.b.firstblock = firstblock; |
Brian Foster | ff3edf2 | 2018-07-11 22:26:14 -0700 | [diff] [blame] | 4563 | cur->bc_private.b.dfops = tp->t_dfops; |
Christoph Hellwig | 6ebd5a4 | 2017-04-11 16:45:55 -0700 | [diff] [blame] | 4564 | cur->bc_private.b.flags = 0; |
| 4565 | } |
| 4566 | |
| 4567 | got.br_startoff = bno; |
| 4568 | got.br_startblock = startblock; |
| 4569 | got.br_blockcount = len; |
Darrick J. Wong | 7644bd9 | 2018-05-14 06:34:35 -0700 | [diff] [blame] | 4570 | if (flags & XFS_BMAPI_PREALLOC) |
| 4571 | got.br_state = XFS_EXT_UNWRITTEN; |
| 4572 | else |
| 4573 | got.br_state = XFS_EXT_NORM; |
Christoph Hellwig | 6ebd5a4 | 2017-04-11 16:45:55 -0700 | [diff] [blame] | 4574 | |
Darrick J. Wong | 7cf199b | 2018-05-14 06:34:34 -0700 | [diff] [blame] | 4575 | error = xfs_bmap_add_extent_hole_real(tp, ip, whichfork, &icur, |
Brian Foster | ff3edf2 | 2018-07-11 22:26:14 -0700 | [diff] [blame] | 4576 | &cur, &got, &firstblock, tp->t_dfops, &logflags, flags); |
Christoph Hellwig | 6ebd5a4 | 2017-04-11 16:45:55 -0700 | [diff] [blame] | 4577 | if (error) |
| 4578 | goto error0; |
| 4579 | |
Darrick J. Wong | 7cf199b | 2018-05-14 06:34:34 -0700 | [diff] [blame] | 4580 | if (xfs_bmap_wants_extents(ip, whichfork)) { |
Christoph Hellwig | 6ebd5a4 | 2017-04-11 16:45:55 -0700 | [diff] [blame] | 4581 | int tmp_logflags = 0; |
| 4582 | |
| 4583 | error = xfs_bmap_btree_to_extents(tp, ip, cur, |
Darrick J. Wong | 7cf199b | 2018-05-14 06:34:34 -0700 | [diff] [blame] | 4584 | &tmp_logflags, whichfork); |
Christoph Hellwig | 6ebd5a4 | 2017-04-11 16:45:55 -0700 | [diff] [blame] | 4585 | logflags |= tmp_logflags; |
| 4586 | } |
| 4587 | |
| 4588 | error0: |
| 4589 | if (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) |
| 4590 | logflags &= ~XFS_ILOG_DEXT; |
| 4591 | else if (ip->i_d.di_format != XFS_DINODE_FMT_BTREE) |
| 4592 | logflags &= ~XFS_ILOG_DBROOT; |
| 4593 | |
| 4594 | if (logflags) |
| 4595 | xfs_trans_log_inode(tp, ip, logflags); |
| 4596 | if (cur) { |
| 4597 | xfs_btree_del_cursor(cur, |
| 4598 | error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR); |
| 4599 | } |
| 4600 | return error; |
| 4601 | } |
| 4602 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4603 | /* |
Brian Foster | a9bd24a | 2016-03-15 11:42:46 +1100 | [diff] [blame] | 4604 | * When a delalloc extent is split (e.g., due to a hole punch), the original |
| 4605 | * indlen reservation must be shared across the two new extents that are left |
| 4606 | * behind. |
| 4607 | * |
| 4608 | * Given the original reservation and the worst case indlen for the two new |
| 4609 | * extents (as calculated by xfs_bmap_worst_indlen()), split the original |
Brian Foster | d34999c | 2016-03-15 11:42:47 +1100 | [diff] [blame] | 4610 | * reservation fairly across the two new extents. If necessary, steal available |
| 4611 | * blocks from a deleted extent to make up a reservation deficiency (e.g., if |
| 4612 | * ores == 1). The number of stolen blocks is returned. The availability and |
| 4613 | * subsequent accounting of stolen blocks is the responsibility of the caller. |
Brian Foster | a9bd24a | 2016-03-15 11:42:46 +1100 | [diff] [blame] | 4614 | */ |
Brian Foster | d34999c | 2016-03-15 11:42:47 +1100 | [diff] [blame] | 4615 | static xfs_filblks_t |
Brian Foster | a9bd24a | 2016-03-15 11:42:46 +1100 | [diff] [blame] | 4616 | xfs_bmap_split_indlen( |
| 4617 | xfs_filblks_t ores, /* original res. */ |
| 4618 | xfs_filblks_t *indlen1, /* ext1 worst indlen */ |
Brian Foster | d34999c | 2016-03-15 11:42:47 +1100 | [diff] [blame] | 4619 | xfs_filblks_t *indlen2, /* ext2 worst indlen */ |
| 4620 | xfs_filblks_t avail) /* stealable blocks */ |
Brian Foster | a9bd24a | 2016-03-15 11:42:46 +1100 | [diff] [blame] | 4621 | { |
| 4622 | xfs_filblks_t len1 = *indlen1; |
| 4623 | xfs_filblks_t len2 = *indlen2; |
| 4624 | xfs_filblks_t nres = len1 + len2; /* new total res. */ |
Brian Foster | d34999c | 2016-03-15 11:42:47 +1100 | [diff] [blame] | 4625 | xfs_filblks_t stolen = 0; |
Brian Foster | 75d6536 | 2017-02-13 22:48:30 -0800 | [diff] [blame] | 4626 | xfs_filblks_t resfactor; |
Brian Foster | a9bd24a | 2016-03-15 11:42:46 +1100 | [diff] [blame] | 4627 | |
| 4628 | /* |
Brian Foster | d34999c | 2016-03-15 11:42:47 +1100 | [diff] [blame] | 4629 | * Steal as many blocks as we can to try and satisfy the worst case |
| 4630 | * indlen for both new extents. |
| 4631 | */ |
Brian Foster | 75d6536 | 2017-02-13 22:48:30 -0800 | [diff] [blame] | 4632 | if (ores < nres && avail) |
| 4633 | stolen = XFS_FILBLKS_MIN(nres - ores, avail); |
| 4634 | ores += stolen; |
| 4635 | |
| 4636 | /* nothing else to do if we've satisfied the new reservation */ |
| 4637 | if (ores >= nres) |
| 4638 | return stolen; |
Brian Foster | d34999c | 2016-03-15 11:42:47 +1100 | [diff] [blame] | 4639 | |
| 4640 | /* |
Brian Foster | 75d6536 | 2017-02-13 22:48:30 -0800 | [diff] [blame] | 4641 | * We can't meet the total required reservation for the two extents. |
| 4642 | * Calculate the percent of the overall shortage between both extents |
| 4643 | * and apply this percentage to each of the requested indlen values. |
| 4644 | * This distributes the shortage fairly and reduces the chances that one |
| 4645 | * of the two extents is left with nothing when extents are repeatedly |
| 4646 | * split. |
Brian Foster | a9bd24a | 2016-03-15 11:42:46 +1100 | [diff] [blame] | 4647 | */ |
Brian Foster | 75d6536 | 2017-02-13 22:48:30 -0800 | [diff] [blame] | 4648 | resfactor = (ores * 100); |
| 4649 | do_div(resfactor, nres); |
| 4650 | len1 *= resfactor; |
| 4651 | do_div(len1, 100); |
| 4652 | len2 *= resfactor; |
| 4653 | do_div(len2, 100); |
| 4654 | ASSERT(len1 + len2 <= ores); |
| 4655 | ASSERT(len1 < *indlen1 && len2 < *indlen2); |
| 4656 | |
| 4657 | /* |
| 4658 | * Hand out the remainder to each extent. If one of the two reservations |
| 4659 | * is zero, we want to make sure that one gets a block first. The loop |
| 4660 | * below starts with len1, so hand len2 a block right off the bat if it |
| 4661 | * is zero. |
| 4662 | */ |
| 4663 | ores -= (len1 + len2); |
| 4664 | ASSERT((*indlen1 - len1) + (*indlen2 - len2) >= ores); |
| 4665 | if (ores && !len2 && *indlen2) { |
| 4666 | len2++; |
| 4667 | ores--; |
| 4668 | } |
| 4669 | while (ores) { |
| 4670 | if (len1 < *indlen1) { |
| 4671 | len1++; |
| 4672 | ores--; |
Brian Foster | a9bd24a | 2016-03-15 11:42:46 +1100 | [diff] [blame] | 4673 | } |
Brian Foster | 75d6536 | 2017-02-13 22:48:30 -0800 | [diff] [blame] | 4674 | if (!ores) |
Brian Foster | a9bd24a | 2016-03-15 11:42:46 +1100 | [diff] [blame] | 4675 | break; |
Brian Foster | 75d6536 | 2017-02-13 22:48:30 -0800 | [diff] [blame] | 4676 | if (len2 < *indlen2) { |
| 4677 | len2++; |
| 4678 | ores--; |
Brian Foster | a9bd24a | 2016-03-15 11:42:46 +1100 | [diff] [blame] | 4679 | } |
| 4680 | } |
| 4681 | |
| 4682 | *indlen1 = len1; |
| 4683 | *indlen2 = len2; |
Brian Foster | d34999c | 2016-03-15 11:42:47 +1100 | [diff] [blame] | 4684 | |
| 4685 | return stolen; |
Brian Foster | a9bd24a | 2016-03-15 11:42:46 +1100 | [diff] [blame] | 4686 | } |
| 4687 | |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4688 | int |
| 4689 | xfs_bmap_del_extent_delay( |
| 4690 | struct xfs_inode *ip, |
| 4691 | int whichfork, |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4692 | struct xfs_iext_cursor *icur, |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4693 | struct xfs_bmbt_irec *got, |
| 4694 | struct xfs_bmbt_irec *del) |
| 4695 | { |
| 4696 | struct xfs_mount *mp = ip->i_mount; |
| 4697 | struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork); |
| 4698 | struct xfs_bmbt_irec new; |
| 4699 | int64_t da_old, da_new, da_diff = 0; |
| 4700 | xfs_fileoff_t del_endoff, got_endoff; |
| 4701 | xfs_filblks_t got_indlen, new_indlen, stolen; |
Christoph Hellwig | 060ea65 | 2017-10-19 11:02:29 -0700 | [diff] [blame] | 4702 | int state = xfs_bmap_fork_to_state(whichfork); |
| 4703 | int error = 0; |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4704 | bool isrt; |
| 4705 | |
| 4706 | XFS_STATS_INC(mp, xs_del_exlist); |
| 4707 | |
| 4708 | isrt = (whichfork == XFS_DATA_FORK) && XFS_IS_REALTIME_INODE(ip); |
| 4709 | del_endoff = del->br_startoff + del->br_blockcount; |
| 4710 | got_endoff = got->br_startoff + got->br_blockcount; |
| 4711 | da_old = startblockval(got->br_startblock); |
| 4712 | da_new = 0; |
| 4713 | |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4714 | ASSERT(del->br_blockcount > 0); |
| 4715 | ASSERT(got->br_startoff <= del->br_startoff); |
| 4716 | ASSERT(got_endoff >= del_endoff); |
| 4717 | |
| 4718 | if (isrt) { |
Eric Sandeen | 4f1adf3 | 2017-04-19 15:19:32 -0700 | [diff] [blame] | 4719 | uint64_t rtexts = XFS_FSB_TO_B(mp, del->br_blockcount); |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4720 | |
| 4721 | do_div(rtexts, mp->m_sb.sb_rextsize); |
| 4722 | xfs_mod_frextents(mp, rtexts); |
| 4723 | } |
| 4724 | |
| 4725 | /* |
| 4726 | * Update the inode delalloc counter now and wait to update the |
| 4727 | * sb counters as we might have to borrow some blocks for the |
| 4728 | * indirect block accounting. |
| 4729 | */ |
Darrick J. Wong | 4fd29ec4 | 2016-11-08 11:59:26 +1100 | [diff] [blame] | 4730 | error = xfs_trans_reserve_quota_nblks(NULL, ip, |
| 4731 | -((long)del->br_blockcount), 0, |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4732 | isrt ? XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS); |
Darrick J. Wong | 4fd29ec4 | 2016-11-08 11:59:26 +1100 | [diff] [blame] | 4733 | if (error) |
| 4734 | return error; |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4735 | ip->i_delayed_blks -= del->br_blockcount; |
| 4736 | |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4737 | if (got->br_startoff == del->br_startoff) |
Christoph Hellwig | 0173c68 | 2017-10-17 14:16:22 -0700 | [diff] [blame] | 4738 | state |= BMAP_LEFT_FILLING; |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4739 | if (got_endoff == del_endoff) |
Christoph Hellwig | 0173c68 | 2017-10-17 14:16:22 -0700 | [diff] [blame] | 4740 | state |= BMAP_RIGHT_FILLING; |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4741 | |
Christoph Hellwig | 0173c68 | 2017-10-17 14:16:22 -0700 | [diff] [blame] | 4742 | switch (state & (BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING)) { |
| 4743 | case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING: |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4744 | /* |
| 4745 | * Matches the whole extent. Delete the entry. |
| 4746 | */ |
Christoph Hellwig | c38ccf5 | 2017-11-03 10:34:47 -0700 | [diff] [blame] | 4747 | xfs_iext_remove(ip, icur, state); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4748 | xfs_iext_prev(ifp, icur); |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4749 | break; |
Christoph Hellwig | 0173c68 | 2017-10-17 14:16:22 -0700 | [diff] [blame] | 4750 | case BMAP_LEFT_FILLING: |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4751 | /* |
| 4752 | * Deleting the first part of the extent. |
| 4753 | */ |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4754 | got->br_startoff = del_endoff; |
| 4755 | got->br_blockcount -= del->br_blockcount; |
| 4756 | da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, |
| 4757 | got->br_blockcount), da_old); |
| 4758 | got->br_startblock = nullstartblock((int)da_new); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4759 | xfs_iext_update_extent(ip, state, icur, got); |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4760 | break; |
Christoph Hellwig | 0173c68 | 2017-10-17 14:16:22 -0700 | [diff] [blame] | 4761 | case BMAP_RIGHT_FILLING: |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4762 | /* |
| 4763 | * Deleting the last part of the extent. |
| 4764 | */ |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4765 | got->br_blockcount = got->br_blockcount - del->br_blockcount; |
| 4766 | da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, |
| 4767 | got->br_blockcount), da_old); |
| 4768 | got->br_startblock = nullstartblock((int)da_new); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4769 | xfs_iext_update_extent(ip, state, icur, got); |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4770 | break; |
| 4771 | case 0: |
| 4772 | /* |
| 4773 | * Deleting the middle of the extent. |
| 4774 | * |
| 4775 | * Distribute the original indlen reservation across the two new |
| 4776 | * extents. Steal blocks from the deleted extent if necessary. |
| 4777 | * Stealing blocks simply fudges the fdblocks accounting below. |
| 4778 | * Warn if either of the new indlen reservations is zero as this |
| 4779 | * can lead to delalloc problems. |
| 4780 | */ |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4781 | got->br_blockcount = del->br_startoff - got->br_startoff; |
| 4782 | got_indlen = xfs_bmap_worst_indlen(ip, got->br_blockcount); |
| 4783 | |
| 4784 | new.br_blockcount = got_endoff - del_endoff; |
| 4785 | new_indlen = xfs_bmap_worst_indlen(ip, new.br_blockcount); |
| 4786 | |
| 4787 | WARN_ON_ONCE(!got_indlen || !new_indlen); |
| 4788 | stolen = xfs_bmap_split_indlen(da_old, &got_indlen, &new_indlen, |
| 4789 | del->br_blockcount); |
| 4790 | |
| 4791 | got->br_startblock = nullstartblock((int)got_indlen); |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4792 | |
| 4793 | new.br_startoff = del_endoff; |
| 4794 | new.br_state = got->br_state; |
| 4795 | new.br_startblock = nullstartblock((int)new_indlen); |
| 4796 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4797 | xfs_iext_update_extent(ip, state, icur, got); |
| 4798 | xfs_iext_next(ifp, icur); |
Christoph Hellwig | 0254c2f | 2017-11-03 10:34:46 -0700 | [diff] [blame] | 4799 | xfs_iext_insert(ip, icur, &new, state); |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4800 | |
| 4801 | da_new = got_indlen + new_indlen - stolen; |
| 4802 | del->br_blockcount -= stolen; |
| 4803 | break; |
| 4804 | } |
| 4805 | |
| 4806 | ASSERT(da_old >= da_new); |
| 4807 | da_diff = da_old - da_new; |
| 4808 | if (!isrt) |
| 4809 | da_diff += del->br_blockcount; |
| 4810 | if (da_diff) |
| 4811 | xfs_mod_fdblocks(mp, da_diff, false); |
| 4812 | return error; |
| 4813 | } |
| 4814 | |
| 4815 | void |
| 4816 | xfs_bmap_del_extent_cow( |
| 4817 | struct xfs_inode *ip, |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4818 | struct xfs_iext_cursor *icur, |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4819 | struct xfs_bmbt_irec *got, |
| 4820 | struct xfs_bmbt_irec *del) |
| 4821 | { |
| 4822 | struct xfs_mount *mp = ip->i_mount; |
| 4823 | struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK); |
| 4824 | struct xfs_bmbt_irec new; |
| 4825 | xfs_fileoff_t del_endoff, got_endoff; |
| 4826 | int state = BMAP_COWFORK; |
| 4827 | |
| 4828 | XFS_STATS_INC(mp, xs_del_exlist); |
| 4829 | |
| 4830 | del_endoff = del->br_startoff + del->br_blockcount; |
| 4831 | got_endoff = got->br_startoff + got->br_blockcount; |
| 4832 | |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4833 | ASSERT(del->br_blockcount > 0); |
| 4834 | ASSERT(got->br_startoff <= del->br_startoff); |
| 4835 | ASSERT(got_endoff >= del_endoff); |
| 4836 | ASSERT(!isnullstartblock(got->br_startblock)); |
| 4837 | |
| 4838 | if (got->br_startoff == del->br_startoff) |
Christoph Hellwig | 0173c68 | 2017-10-17 14:16:22 -0700 | [diff] [blame] | 4839 | state |= BMAP_LEFT_FILLING; |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4840 | if (got_endoff == del_endoff) |
Christoph Hellwig | 0173c68 | 2017-10-17 14:16:22 -0700 | [diff] [blame] | 4841 | state |= BMAP_RIGHT_FILLING; |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4842 | |
Christoph Hellwig | 0173c68 | 2017-10-17 14:16:22 -0700 | [diff] [blame] | 4843 | switch (state & (BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING)) { |
| 4844 | case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING: |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4845 | /* |
| 4846 | * Matches the whole extent. Delete the entry. |
| 4847 | */ |
Christoph Hellwig | c38ccf5 | 2017-11-03 10:34:47 -0700 | [diff] [blame] | 4848 | xfs_iext_remove(ip, icur, state); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4849 | xfs_iext_prev(ifp, icur); |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4850 | break; |
Christoph Hellwig | 0173c68 | 2017-10-17 14:16:22 -0700 | [diff] [blame] | 4851 | case BMAP_LEFT_FILLING: |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4852 | /* |
| 4853 | * Deleting the first part of the extent. |
| 4854 | */ |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4855 | got->br_startoff = del_endoff; |
| 4856 | got->br_blockcount -= del->br_blockcount; |
| 4857 | got->br_startblock = del->br_startblock + del->br_blockcount; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4858 | xfs_iext_update_extent(ip, state, icur, got); |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4859 | break; |
Christoph Hellwig | 0173c68 | 2017-10-17 14:16:22 -0700 | [diff] [blame] | 4860 | case BMAP_RIGHT_FILLING: |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4861 | /* |
| 4862 | * Deleting the last part of the extent. |
| 4863 | */ |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4864 | got->br_blockcount -= del->br_blockcount; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4865 | xfs_iext_update_extent(ip, state, icur, got); |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4866 | break; |
| 4867 | case 0: |
| 4868 | /* |
| 4869 | * Deleting the middle of the extent. |
| 4870 | */ |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4871 | got->br_blockcount = del->br_startoff - got->br_startoff; |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4872 | |
| 4873 | new.br_startoff = del_endoff; |
| 4874 | new.br_blockcount = got_endoff - del_endoff; |
| 4875 | new.br_state = got->br_state; |
| 4876 | new.br_startblock = del->br_startblock + del->br_blockcount; |
| 4877 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4878 | xfs_iext_update_extent(ip, state, icur, got); |
| 4879 | xfs_iext_next(ifp, icur); |
Christoph Hellwig | 0254c2f | 2017-11-03 10:34:46 -0700 | [diff] [blame] | 4880 | xfs_iext_insert(ip, icur, &new, state); |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4881 | break; |
| 4882 | } |
Darrick J. Wong | 4b4c132 | 2018-01-19 09:05:48 -0800 | [diff] [blame] | 4883 | ip->i_delayed_blks -= del->br_blockcount; |
Christoph Hellwig | fa5c836 | 2016-10-20 15:54:14 +1100 | [diff] [blame] | 4884 | } |
| 4885 | |
Brian Foster | a9bd24a | 2016-03-15 11:42:46 +1100 | [diff] [blame] | 4886 | /* |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 4887 | * Called by xfs_bmapi to update file extent records and the btree |
Christoph Hellwig | e1d7553 | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 4888 | * after removing space. |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 4889 | */ |
| 4890 | STATIC int /* error */ |
Christoph Hellwig | e1d7553 | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 4891 | xfs_bmap_del_extent_real( |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 4892 | xfs_inode_t *ip, /* incore inode pointer */ |
| 4893 | xfs_trans_t *tp, /* current transaction pointer */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4894 | struct xfs_iext_cursor *icur, |
Darrick J. Wong | 2c3234d | 2016-08-03 11:19:29 +1000 | [diff] [blame] | 4895 | struct xfs_defer_ops *dfops, /* list of extents to be freed */ |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 4896 | xfs_btree_cur_t *cur, /* if null, not a btree */ |
| 4897 | xfs_bmbt_irec_t *del, /* data to remove from extents */ |
| 4898 | int *logflagsp, /* inode logging flags */ |
Darrick J. Wong | 4847acf | 2016-10-03 09:11:27 -0700 | [diff] [blame] | 4899 | int whichfork, /* data or attr fork */ |
| 4900 | int bflags) /* bmapi flags */ |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 4901 | { |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 4902 | xfs_fsblock_t del_endblock=0; /* first block past del */ |
| 4903 | xfs_fileoff_t del_endoff; /* first offset past del */ |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 4904 | int do_fx; /* free extent at end of routine */ |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 4905 | int error; /* error return value */ |
Christoph Hellwig | 1b24b63 | 2017-10-17 14:16:22 -0700 | [diff] [blame] | 4906 | int flags = 0;/* inode logging flags */ |
Christoph Hellwig | 48fd52b | 2017-10-17 14:16:23 -0700 | [diff] [blame] | 4907 | struct xfs_bmbt_irec got; /* current extent entry */ |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 4908 | xfs_fileoff_t got_endoff; /* first offset past got */ |
| 4909 | int i; /* temp state */ |
| 4910 | xfs_ifork_t *ifp; /* inode fork pointer */ |
| 4911 | xfs_mount_t *mp; /* mount structure */ |
| 4912 | xfs_filblks_t nblks; /* quota/sb block count */ |
| 4913 | xfs_bmbt_irec_t new; /* new record to be inserted */ |
| 4914 | /* REFERENCED */ |
| 4915 | uint qfield; /* quota field to update */ |
Christoph Hellwig | 060ea65 | 2017-10-19 11:02:29 -0700 | [diff] [blame] | 4916 | int state = xfs_bmap_fork_to_state(whichfork); |
Christoph Hellwig | 48fd52b | 2017-10-17 14:16:23 -0700 | [diff] [blame] | 4917 | struct xfs_bmbt_irec old; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 4918 | |
Bill O'Donnell | ff6d6af | 2015-10-12 18:21:22 +1100 | [diff] [blame] | 4919 | mp = ip->i_mount; |
| 4920 | XFS_STATS_INC(mp, xs_del_exlist); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 4921 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 4922 | ifp = XFS_IFORK_PTR(ip, whichfork); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 4923 | ASSERT(del->br_blockcount > 0); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4924 | xfs_iext_get_extent(ifp, icur, &got); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 4925 | ASSERT(got.br_startoff <= del->br_startoff); |
| 4926 | del_endoff = del->br_startoff + del->br_blockcount; |
| 4927 | got_endoff = got.br_startoff + got.br_blockcount; |
| 4928 | ASSERT(got_endoff >= del_endoff); |
Christoph Hellwig | e1d7553 | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 4929 | ASSERT(!isnullstartblock(got.br_startblock)); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 4930 | qfield = 0; |
| 4931 | error = 0; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 4932 | |
Christoph Hellwig | 1b24b63 | 2017-10-17 14:16:22 -0700 | [diff] [blame] | 4933 | /* |
| 4934 | * If it's the case where the directory code is running with no block |
| 4935 | * reservation, and the deleted block is in the middle of its extent, |
| 4936 | * and the resulting insert of an extent would cause transformation to |
| 4937 | * btree format, then reject it. The calling code will then swap blocks |
| 4938 | * around instead. We have to do this now, rather than waiting for the |
| 4939 | * conversion to btree format, since the transaction will be dirty then. |
| 4940 | */ |
| 4941 | if (tp->t_blk_res == 0 && |
| 4942 | XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS && |
| 4943 | XFS_IFORK_NEXTENTS(ip, whichfork) >= |
| 4944 | XFS_IFORK_MAXEXT(ip, whichfork) && |
| 4945 | del->br_startoff > got.br_startoff && del_endoff < got_endoff) |
| 4946 | return -ENOSPC; |
| 4947 | |
| 4948 | flags = XFS_ILOG_CORE; |
Christoph Hellwig | e1d7553 | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 4949 | if (whichfork == XFS_DATA_FORK && XFS_IS_REALTIME_INODE(ip)) { |
| 4950 | xfs_fsblock_t bno; |
| 4951 | xfs_filblks_t len; |
Dave Chinner | 0703a8e | 2018-06-08 09:54:22 -0700 | [diff] [blame] | 4952 | xfs_extlen_t mod; |
Christoph Hellwig | e1d7553 | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 4953 | |
Dave Chinner | 0703a8e | 2018-06-08 09:54:22 -0700 | [diff] [blame] | 4954 | bno = div_u64_rem(del->br_startblock, mp->m_sb.sb_rextsize, |
| 4955 | &mod); |
| 4956 | ASSERT(mod == 0); |
| 4957 | len = div_u64_rem(del->br_blockcount, mp->m_sb.sb_rextsize, |
| 4958 | &mod); |
| 4959 | ASSERT(mod == 0); |
| 4960 | |
Christoph Hellwig | e1d7553 | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 4961 | error = xfs_rtfree_extent(tp, bno, (xfs_extlen_t)len); |
| 4962 | if (error) |
| 4963 | goto done; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 4964 | do_fx = 0; |
Christoph Hellwig | e1d7553 | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 4965 | nblks = len * mp->m_sb.sb_rextsize; |
| 4966 | qfield = XFS_TRANS_DQ_RTBCOUNT; |
| 4967 | } else { |
| 4968 | do_fx = 1; |
| 4969 | nblks = del->br_blockcount; |
| 4970 | qfield = XFS_TRANS_DQ_BCOUNT; |
| 4971 | } |
| 4972 | |
| 4973 | del_endblock = del->br_startblock + del->br_blockcount; |
| 4974 | if (cur) { |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 4975 | error = xfs_bmbt_lookup_eq(cur, &got, &i); |
Christoph Hellwig | e1d7553 | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 4976 | if (error) |
| 4977 | goto done; |
| 4978 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 4979 | } |
Darrick J. Wong | 340785c | 2016-08-03 11:33:42 +1000 | [diff] [blame] | 4980 | |
Christoph Hellwig | 491f6f8a | 2017-10-17 14:16:23 -0700 | [diff] [blame] | 4981 | if (got.br_startoff == del->br_startoff) |
| 4982 | state |= BMAP_LEFT_FILLING; |
| 4983 | if (got_endoff == del_endoff) |
| 4984 | state |= BMAP_RIGHT_FILLING; |
| 4985 | |
| 4986 | switch (state & (BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING)) { |
| 4987 | case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING: |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 4988 | /* |
| 4989 | * Matches the whole extent. Delete the entry. |
| 4990 | */ |
Christoph Hellwig | c38ccf5 | 2017-11-03 10:34:47 -0700 | [diff] [blame] | 4991 | xfs_iext_remove(ip, icur, state); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 4992 | xfs_iext_prev(ifp, icur); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 4993 | XFS_IFORK_NEXT_SET(ip, whichfork, |
| 4994 | XFS_IFORK_NEXTENTS(ip, whichfork) - 1); |
| 4995 | flags |= XFS_ILOG_CORE; |
| 4996 | if (!cur) { |
| 4997 | flags |= xfs_ilog_fext(whichfork); |
| 4998 | break; |
| 4999 | } |
| 5000 | if ((error = xfs_btree_delete(cur, &i))) |
| 5001 | goto done; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 5002 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 5003 | break; |
Christoph Hellwig | 491f6f8a | 2017-10-17 14:16:23 -0700 | [diff] [blame] | 5004 | case BMAP_LEFT_FILLING: |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 5005 | /* |
| 5006 | * Deleting the first part of the extent. |
| 5007 | */ |
Christoph Hellwig | 48fd52b | 2017-10-17 14:16:23 -0700 | [diff] [blame] | 5008 | got.br_startoff = del_endoff; |
| 5009 | got.br_startblock = del_endblock; |
| 5010 | got.br_blockcount -= del->br_blockcount; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5011 | xfs_iext_update_extent(ip, state, icur, &got); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 5012 | if (!cur) { |
| 5013 | flags |= xfs_ilog_fext(whichfork); |
| 5014 | break; |
| 5015 | } |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 5016 | error = xfs_bmbt_update(cur, &got); |
Christoph Hellwig | 48fd52b | 2017-10-17 14:16:23 -0700 | [diff] [blame] | 5017 | if (error) |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 5018 | goto done; |
| 5019 | break; |
Christoph Hellwig | 491f6f8a | 2017-10-17 14:16:23 -0700 | [diff] [blame] | 5020 | case BMAP_RIGHT_FILLING: |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 5021 | /* |
| 5022 | * Deleting the last part of the extent. |
| 5023 | */ |
Christoph Hellwig | 48fd52b | 2017-10-17 14:16:23 -0700 | [diff] [blame] | 5024 | got.br_blockcount -= del->br_blockcount; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5025 | xfs_iext_update_extent(ip, state, icur, &got); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 5026 | if (!cur) { |
| 5027 | flags |= xfs_ilog_fext(whichfork); |
| 5028 | break; |
| 5029 | } |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 5030 | error = xfs_bmbt_update(cur, &got); |
Christoph Hellwig | 48fd52b | 2017-10-17 14:16:23 -0700 | [diff] [blame] | 5031 | if (error) |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 5032 | goto done; |
| 5033 | break; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 5034 | case 0: |
| 5035 | /* |
| 5036 | * Deleting the middle of the extent. |
| 5037 | */ |
Christoph Hellwig | 48fd52b | 2017-10-17 14:16:23 -0700 | [diff] [blame] | 5038 | old = got; |
Christoph Hellwig | ca5d8e5b | 2017-10-19 11:04:44 -0700 | [diff] [blame] | 5039 | |
Christoph Hellwig | 48fd52b | 2017-10-17 14:16:23 -0700 | [diff] [blame] | 5040 | got.br_blockcount = del->br_startoff - got.br_startoff; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5041 | xfs_iext_update_extent(ip, state, icur, &got); |
Christoph Hellwig | 48fd52b | 2017-10-17 14:16:23 -0700 | [diff] [blame] | 5042 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 5043 | new.br_startoff = del_endoff; |
Christoph Hellwig | 48fd52b | 2017-10-17 14:16:23 -0700 | [diff] [blame] | 5044 | new.br_blockcount = got_endoff - del_endoff; |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 5045 | new.br_state = got.br_state; |
Christoph Hellwig | e1d7553 | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5046 | new.br_startblock = del_endblock; |
Christoph Hellwig | 48fd52b | 2017-10-17 14:16:23 -0700 | [diff] [blame] | 5047 | |
Christoph Hellwig | e1d7553 | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5048 | flags |= XFS_ILOG_CORE; |
| 5049 | if (cur) { |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 5050 | error = xfs_bmbt_update(cur, &got); |
Christoph Hellwig | e1d7553 | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5051 | if (error) |
| 5052 | goto done; |
| 5053 | error = xfs_btree_increment(cur, 0, &i); |
| 5054 | if (error) |
| 5055 | goto done; |
| 5056 | cur->bc_rec.b = new; |
| 5057 | error = xfs_btree_insert(cur, &i); |
| 5058 | if (error && error != -ENOSPC) |
| 5059 | goto done; |
| 5060 | /* |
| 5061 | * If get no-space back from btree insert, it tried a |
| 5062 | * split, and we have a zero block reservation. Fix up |
| 5063 | * our state and return the error. |
| 5064 | */ |
| 5065 | if (error == -ENOSPC) { |
| 5066 | /* |
| 5067 | * Reset the cursor, don't trust it after any |
| 5068 | * insert operation. |
| 5069 | */ |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 5070 | error = xfs_bmbt_lookup_eq(cur, &got, &i); |
Christoph Hellwig | e1d7553 | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5071 | if (error) |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 5072 | goto done; |
Christoph Hellwig | e1d7553 | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5073 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
| 5074 | /* |
| 5075 | * Update the btree record back |
| 5076 | * to the original value. |
| 5077 | */ |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 5078 | error = xfs_bmbt_update(cur, &old); |
Christoph Hellwig | e1d7553 | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5079 | if (error) |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 5080 | goto done; |
| 5081 | /* |
Christoph Hellwig | e1d7553 | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5082 | * Reset the extent record back |
| 5083 | * to the original value. |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 5084 | */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5085 | xfs_iext_update_extent(ip, state, icur, &old); |
Christoph Hellwig | e1d7553 | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5086 | flags = 0; |
| 5087 | error = -ENOSPC; |
| 5088 | goto done; |
| 5089 | } |
| 5090 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); |
| 5091 | } else |
| 5092 | flags |= xfs_ilog_fext(whichfork); |
| 5093 | XFS_IFORK_NEXT_SET(ip, whichfork, |
| 5094 | XFS_IFORK_NEXTENTS(ip, whichfork) + 1); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5095 | xfs_iext_next(ifp, icur); |
Christoph Hellwig | 0254c2f | 2017-11-03 10:34:46 -0700 | [diff] [blame] | 5096 | xfs_iext_insert(ip, icur, &new, state); |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 5097 | break; |
| 5098 | } |
Darrick J. Wong | 9c19464 | 2016-08-03 12:16:05 +1000 | [diff] [blame] | 5099 | |
| 5100 | /* remove reverse mapping */ |
Christoph Hellwig | e1d7553 | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5101 | error = xfs_rmap_unmap_extent(mp, dfops, ip, whichfork, del); |
| 5102 | if (error) |
| 5103 | goto done; |
Darrick J. Wong | 9c19464 | 2016-08-03 12:16:05 +1000 | [diff] [blame] | 5104 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 5105 | /* |
| 5106 | * If we need to, add to list of extents to delete. |
| 5107 | */ |
Darrick J. Wong | 4847acf | 2016-10-03 09:11:27 -0700 | [diff] [blame] | 5108 | if (do_fx && !(bflags & XFS_BMAPI_REMAP)) { |
Darrick J. Wong | 62aab20 | 2016-10-03 09:11:23 -0700 | [diff] [blame] | 5109 | if (xfs_is_reflink_inode(ip) && whichfork == XFS_DATA_FORK) { |
| 5110 | error = xfs_refcount_decrease_extent(mp, dfops, del); |
| 5111 | if (error) |
| 5112 | goto done; |
Brian Foster | fcb762f | 2018-05-09 08:45:04 -0700 | [diff] [blame] | 5113 | } else { |
Brian Foster | 4e52933 | 2018-05-10 09:35:42 -0700 | [diff] [blame] | 5114 | __xfs_bmap_add_free(mp, dfops, del->br_startblock, |
| 5115 | del->br_blockcount, NULL, |
| 5116 | (bflags & XFS_BMAPI_NODISCARD) || |
| 5117 | del->br_state == XFS_EXT_UNWRITTEN); |
Brian Foster | fcb762f | 2018-05-09 08:45:04 -0700 | [diff] [blame] | 5118 | } |
Darrick J. Wong | 62aab20 | 2016-10-03 09:11:23 -0700 | [diff] [blame] | 5119 | } |
| 5120 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 5121 | /* |
| 5122 | * Adjust inode # blocks in the file. |
| 5123 | */ |
| 5124 | if (nblks) |
| 5125 | ip->i_d.di_nblocks -= nblks; |
| 5126 | /* |
| 5127 | * Adjust quota data. |
| 5128 | */ |
Darrick J. Wong | 4847acf | 2016-10-03 09:11:27 -0700 | [diff] [blame] | 5129 | if (qfield && !(bflags & XFS_BMAPI_REMAP)) |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 5130 | xfs_trans_mod_dquot_byino(tp, ip, qfield, (long)-nblks); |
| 5131 | |
Dave Chinner | 9e5987a7 | 2013-02-25 12:31:26 +1100 | [diff] [blame] | 5132 | done: |
| 5133 | *logflagsp = flags; |
| 5134 | return error; |
| 5135 | } |
| 5136 | |
| 5137 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5138 | * Unmap (remove) blocks from a file. |
| 5139 | * If nexts is nonzero then the number of extents to remove is limited to |
| 5140 | * that value. If not all extents in the block range can be removed then |
| 5141 | * *done is set. |
| 5142 | */ |
| 5143 | int /* error */ |
Darrick J. Wong | 4453593 | 2016-10-03 09:11:29 -0700 | [diff] [blame] | 5144 | __xfs_bunmapi( |
Brian Foster | ccd9d91 | 2018-07-11 22:26:13 -0700 | [diff] [blame] | 5145 | struct xfs_trans *tp, /* transaction pointer */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5146 | struct xfs_inode *ip, /* incore inode */ |
Christoph Hellwig | 8280f6e | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5147 | xfs_fileoff_t start, /* first file offset deleted */ |
Darrick J. Wong | 4453593 | 2016-10-03 09:11:29 -0700 | [diff] [blame] | 5148 | xfs_filblks_t *rlen, /* i/o: amount remaining */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5149 | int flags, /* misc flags */ |
| 5150 | xfs_extnum_t nexts, /* number of extents max */ |
Brian Foster | ccd9d91 | 2018-07-11 22:26:13 -0700 | [diff] [blame] | 5151 | xfs_fsblock_t *firstblock) /* first allocated block |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5152 | controls a.g. for allocs */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5153 | { |
Brian Foster | ccd9d91 | 2018-07-11 22:26:13 -0700 | [diff] [blame] | 5154 | struct xfs_defer_ops *dfops = tp ? tp->t_dfops : NULL; |
| 5155 | struct xfs_btree_cur *cur; /* bmap btree cursor */ |
| 5156 | struct xfs_bmbt_irec del; /* extent being deleted */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5157 | int error; /* error return value */ |
| 5158 | xfs_extnum_t extno; /* extent number in list */ |
Brian Foster | ccd9d91 | 2018-07-11 22:26:13 -0700 | [diff] [blame] | 5159 | struct xfs_bmbt_irec got; /* current extent record */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5160 | xfs_ifork_t *ifp; /* inode fork pointer */ |
| 5161 | int isrt; /* freeing in rt area */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5162 | int logflags; /* transaction logging flags */ |
| 5163 | xfs_extlen_t mod; /* rt extent offset */ |
Brian Foster | ccd9d91 | 2018-07-11 22:26:13 -0700 | [diff] [blame] | 5164 | struct xfs_mount *mp; /* mount structure */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5165 | int tmp_logflags; /* partial logging flags */ |
| 5166 | int wasdel; /* was a delayed alloc extent */ |
| 5167 | int whichfork; /* data or attribute fork */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5168 | xfs_fsblock_t sum; |
Darrick J. Wong | 4453593 | 2016-10-03 09:11:29 -0700 | [diff] [blame] | 5169 | xfs_filblks_t len = *rlen; /* length to unmap in file */ |
Darrick J. Wong | e1a4e37 | 2017-06-14 21:25:57 -0700 | [diff] [blame] | 5170 | xfs_fileoff_t max_len; |
Christoph Hellwig | 5b094d6 | 2017-07-18 11:16:51 -0700 | [diff] [blame] | 5171 | xfs_agnumber_t prev_agno = NULLAGNUMBER, agno; |
Christoph Hellwig | 8280f6e | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5172 | xfs_fileoff_t end; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5173 | struct xfs_iext_cursor icur; |
| 5174 | bool done = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5175 | |
Christoph Hellwig | 8280f6e | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5176 | trace_xfs_bunmap(ip, start, len, flags, _RET_IP_); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 5177 | |
Darrick J. Wong | 3993bae | 2016-10-03 09:11:32 -0700 | [diff] [blame] | 5178 | whichfork = xfs_bmapi_whichfork(flags); |
| 5179 | ASSERT(whichfork != XFS_COW_FORK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5180 | ifp = XFS_IFORK_PTR(ip, whichfork); |
| 5181 | if (unlikely( |
| 5182 | XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS && |
| 5183 | XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)) { |
| 5184 | XFS_ERROR_REPORT("xfs_bunmapi", XFS_ERRLEVEL_LOW, |
| 5185 | ip->i_mount); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 5186 | return -EFSCORRUPTED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5187 | } |
| 5188 | mp = ip->i_mount; |
| 5189 | if (XFS_FORCED_SHUTDOWN(mp)) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 5190 | return -EIO; |
Christoph Hellwig | 5489327 | 2011-05-11 15:04:03 +0000 | [diff] [blame] | 5191 | |
Christoph Hellwig | eef334e | 2013-12-06 12:30:17 -0800 | [diff] [blame] | 5192 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5193 | ASSERT(len > 0); |
| 5194 | ASSERT(nexts >= 0); |
Christoph Hellwig | 8096b1e | 2011-12-18 20:00:07 +0000 | [diff] [blame] | 5195 | |
Darrick J. Wong | e1a4e37 | 2017-06-14 21:25:57 -0700 | [diff] [blame] | 5196 | /* |
| 5197 | * Guesstimate how many blocks we can unmap without running the risk of |
| 5198 | * blowing out the transaction with a mix of EFIs and reflink |
| 5199 | * adjustments. |
| 5200 | */ |
Darrick J. Wong | 8c57b88 | 2017-12-10 18:03:53 -0800 | [diff] [blame] | 5201 | if (tp && xfs_is_reflink_inode(ip) && whichfork == XFS_DATA_FORK) |
Darrick J. Wong | e1a4e37 | 2017-06-14 21:25:57 -0700 | [diff] [blame] | 5202 | max_len = min(len, xfs_refcount_max_unmap(tp->t_log_res)); |
| 5203 | else |
| 5204 | max_len = len; |
| 5205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5206 | if (!(ifp->if_flags & XFS_IFEXTENTS) && |
| 5207 | (error = xfs_iread_extents(tp, ip, whichfork))) |
| 5208 | return error; |
Eric Sandeen | 5d82930 | 2016-11-08 12:59:42 +1100 | [diff] [blame] | 5209 | if (xfs_iext_count(ifp) == 0) { |
Darrick J. Wong | 4453593 | 2016-10-03 09:11:29 -0700 | [diff] [blame] | 5210 | *rlen = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5211 | return 0; |
| 5212 | } |
Bill O'Donnell | ff6d6af | 2015-10-12 18:21:22 +1100 | [diff] [blame] | 5213 | XFS_STATS_INC(mp, xs_blk_unmap); |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 5214 | isrt = (whichfork == XFS_DATA_FORK) && XFS_IS_REALTIME_INODE(ip); |
Christoph Hellwig | dc56015 | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 5215 | end = start + len; |
Christoph Hellwig | b4e9181 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 5216 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5217 | if (!xfs_iext_lookup_extent_before(ip, ifp, &end, &icur, &got)) { |
Christoph Hellwig | dc56015 | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 5218 | *rlen = 0; |
| 5219 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5220 | } |
Christoph Hellwig | dc56015 | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 5221 | end--; |
Christoph Hellwig | 7efc794 | 2016-11-24 11:39:44 +1100 | [diff] [blame] | 5222 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5223 | logflags = 0; |
| 5224 | if (ifp->if_flags & XFS_IFBROOT) { |
| 5225 | ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE); |
Christoph Hellwig | 561f7d1 | 2008-10-30 16:53:59 +1100 | [diff] [blame] | 5226 | cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5227 | cur->bc_private.b.firstblock = *firstblock; |
Darrick J. Wong | 2c3234d | 2016-08-03 11:19:29 +1000 | [diff] [blame] | 5228 | cur->bc_private.b.dfops = dfops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5229 | cur->bc_private.b.flags = 0; |
| 5230 | } else |
| 5231 | cur = NULL; |
Kamal Dasu | 5575acc | 2012-02-23 00:41:39 +0000 | [diff] [blame] | 5232 | |
| 5233 | if (isrt) { |
| 5234 | /* |
| 5235 | * Synchronize by locking the bitmap inode. |
| 5236 | */ |
Darrick J. Wong | f4a0660 | 2016-08-03 11:00:42 +1000 | [diff] [blame] | 5237 | xfs_ilock(mp->m_rbmip, XFS_ILOCK_EXCL|XFS_ILOCK_RTBITMAP); |
Kamal Dasu | 5575acc | 2012-02-23 00:41:39 +0000 | [diff] [blame] | 5238 | xfs_trans_ijoin(tp, mp->m_rbmip, XFS_ILOCK_EXCL); |
Darrick J. Wong | f4a0660 | 2016-08-03 11:00:42 +1000 | [diff] [blame] | 5239 | xfs_ilock(mp->m_rsumip, XFS_ILOCK_EXCL|XFS_ILOCK_RTSUM); |
| 5240 | xfs_trans_ijoin(tp, mp->m_rsumip, XFS_ILOCK_EXCL); |
Kamal Dasu | 5575acc | 2012-02-23 00:41:39 +0000 | [diff] [blame] | 5241 | } |
| 5242 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5243 | extno = 0; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5244 | while (end != (xfs_fileoff_t)-1 && end >= start && |
Darrick J. Wong | e1a4e37 | 2017-06-14 21:25:57 -0700 | [diff] [blame] | 5245 | (nexts == 0 || extno < nexts) && max_len > 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5246 | /* |
Christoph Hellwig | 8280f6e | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5247 | * Is the found extent after a hole in which end lives? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5248 | * Just back up to the previous extent, if so. |
| 5249 | */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5250 | if (got.br_startoff > end && |
| 5251 | !xfs_iext_prev_extent(ifp, &icur, &got)) { |
| 5252 | done = true; |
| 5253 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5254 | } |
| 5255 | /* |
| 5256 | * Is the last block of this extent before the range |
| 5257 | * we're supposed to delete? If so, we're done. |
| 5258 | */ |
Christoph Hellwig | 8280f6e | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5259 | end = XFS_FILEOFF_MIN(end, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5260 | got.br_startoff + got.br_blockcount - 1); |
Christoph Hellwig | 8280f6e | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5261 | if (end < start) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5262 | break; |
| 5263 | /* |
| 5264 | * Then deal with the (possibly delayed) allocated space |
| 5265 | * we found. |
| 5266 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5267 | del = got; |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 5268 | wasdel = isnullstartblock(del.br_startblock); |
Christoph Hellwig | 5b094d6 | 2017-07-18 11:16:51 -0700 | [diff] [blame] | 5269 | |
| 5270 | /* |
| 5271 | * Make sure we don't touch multiple AGF headers out of order |
| 5272 | * in a single transaction, as that could cause AB-BA deadlocks. |
| 5273 | */ |
| 5274 | if (!wasdel) { |
| 5275 | agno = XFS_FSB_TO_AGNO(mp, del.br_startblock); |
| 5276 | if (prev_agno != NULLAGNUMBER && prev_agno > agno) |
| 5277 | break; |
| 5278 | prev_agno = agno; |
| 5279 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5280 | if (got.br_startoff < start) { |
| 5281 | del.br_startoff = start; |
| 5282 | del.br_blockcount -= start - got.br_startoff; |
| 5283 | if (!wasdel) |
| 5284 | del.br_startblock += start - got.br_startoff; |
| 5285 | } |
Christoph Hellwig | 8280f6e | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5286 | if (del.br_startoff + del.br_blockcount > end + 1) |
| 5287 | del.br_blockcount = end + 1 - del.br_startoff; |
Darrick J. Wong | e1a4e37 | 2017-06-14 21:25:57 -0700 | [diff] [blame] | 5288 | |
| 5289 | /* How much can we safely unmap? */ |
| 5290 | if (max_len < del.br_blockcount) { |
| 5291 | del.br_startoff += del.br_blockcount - max_len; |
| 5292 | if (!wasdel) |
| 5293 | del.br_startblock += del.br_blockcount - max_len; |
| 5294 | del.br_blockcount = max_len; |
| 5295 | } |
| 5296 | |
Dave Chinner | 0703a8e | 2018-06-08 09:54:22 -0700 | [diff] [blame] | 5297 | if (!isrt) |
| 5298 | goto delete; |
| 5299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5300 | sum = del.br_startblock + del.br_blockcount; |
Dave Chinner | 0703a8e | 2018-06-08 09:54:22 -0700 | [diff] [blame] | 5301 | div_u64_rem(sum, mp->m_sb.sb_rextsize, &mod); |
| 5302 | if (mod) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5303 | /* |
| 5304 | * Realtime extent not lined up at the end. |
| 5305 | * The extent could have been split into written |
| 5306 | * and unwritten pieces, or we could just be |
| 5307 | * unmapping part of it. But we can't really |
| 5308 | * get rid of part of a realtime extent. |
| 5309 | */ |
| 5310 | if (del.br_state == XFS_EXT_UNWRITTEN || |
Eric Sandeen | 6211870 | 2008-03-06 13:44:28 +1100 | [diff] [blame] | 5311 | !xfs_sb_version_hasextflgbit(&mp->m_sb)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5312 | /* |
| 5313 | * This piece is unwritten, or we're not |
| 5314 | * using unwritten extents. Skip over it. |
| 5315 | */ |
Christoph Hellwig | 8280f6e | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5316 | ASSERT(end >= mod); |
| 5317 | end -= mod > del.br_blockcount ? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5318 | del.br_blockcount : mod; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5319 | if (end < got.br_startoff && |
| 5320 | !xfs_iext_prev_extent(ifp, &icur, &got)) { |
| 5321 | done = true; |
| 5322 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5323 | } |
| 5324 | continue; |
| 5325 | } |
| 5326 | /* |
| 5327 | * It's written, turn it unwritten. |
| 5328 | * This is better than zeroing it. |
| 5329 | */ |
| 5330 | ASSERT(del.br_state == XFS_EXT_NORM); |
Christoph Hellwig | a7e5d03 | 2016-03-02 09:58:21 +1100 | [diff] [blame] | 5331 | ASSERT(tp->t_blk_res > 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5332 | /* |
| 5333 | * If this spans a realtime extent boundary, |
| 5334 | * chop it back to the start of the one we end at. |
| 5335 | */ |
| 5336 | if (del.br_blockcount > mod) { |
| 5337 | del.br_startoff += del.br_blockcount - mod; |
| 5338 | del.br_startblock += del.br_blockcount - mod; |
| 5339 | del.br_blockcount = mod; |
| 5340 | } |
| 5341 | del.br_state = XFS_EXT_UNWRITTEN; |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 5342 | error = xfs_bmap_add_extent_unwritten_real(tp, ip, |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5343 | whichfork, &icur, &cur, &del, |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 5344 | firstblock, dfops, &logflags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5345 | if (error) |
| 5346 | goto error0; |
| 5347 | goto nodelete; |
| 5348 | } |
Dave Chinner | 0703a8e | 2018-06-08 09:54:22 -0700 | [diff] [blame] | 5349 | div_u64_rem(del.br_startblock, mp->m_sb.sb_rextsize, &mod); |
| 5350 | if (mod) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5351 | /* |
| 5352 | * Realtime extent is lined up at the end but not |
| 5353 | * at the front. We'll get rid of full extents if |
| 5354 | * we can. |
| 5355 | */ |
| 5356 | mod = mp->m_sb.sb_rextsize - mod; |
| 5357 | if (del.br_blockcount > mod) { |
| 5358 | del.br_blockcount -= mod; |
| 5359 | del.br_startoff += mod; |
| 5360 | del.br_startblock += mod; |
| 5361 | } else if ((del.br_startoff == start && |
| 5362 | (del.br_state == XFS_EXT_UNWRITTEN || |
Christoph Hellwig | a7e5d03 | 2016-03-02 09:58:21 +1100 | [diff] [blame] | 5363 | tp->t_blk_res == 0)) || |
Eric Sandeen | 6211870 | 2008-03-06 13:44:28 +1100 | [diff] [blame] | 5364 | !xfs_sb_version_hasextflgbit(&mp->m_sb)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5365 | /* |
| 5366 | * Can't make it unwritten. There isn't |
| 5367 | * a full extent here so just skip it. |
| 5368 | */ |
Christoph Hellwig | 8280f6e | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5369 | ASSERT(end >= del.br_blockcount); |
| 5370 | end -= del.br_blockcount; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5371 | if (got.br_startoff > end && |
| 5372 | !xfs_iext_prev_extent(ifp, &icur, &got)) { |
| 5373 | done = true; |
| 5374 | break; |
| 5375 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5376 | continue; |
| 5377 | } else if (del.br_state == XFS_EXT_UNWRITTEN) { |
Christoph Hellwig | 7efc794 | 2016-11-24 11:39:44 +1100 | [diff] [blame] | 5378 | struct xfs_bmbt_irec prev; |
| 5379 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5380 | /* |
| 5381 | * This one is already unwritten. |
| 5382 | * It must have a written left neighbor. |
| 5383 | * Unwrite the killed part of that one and |
| 5384 | * try again. |
| 5385 | */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5386 | if (!xfs_iext_prev_extent(ifp, &icur, &prev)) |
| 5387 | ASSERT(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5388 | ASSERT(prev.br_state == XFS_EXT_NORM); |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 5389 | ASSERT(!isnullstartblock(prev.br_startblock)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5390 | ASSERT(del.br_startblock == |
| 5391 | prev.br_startblock + prev.br_blockcount); |
| 5392 | if (prev.br_startoff < start) { |
| 5393 | mod = start - prev.br_startoff; |
| 5394 | prev.br_blockcount -= mod; |
| 5395 | prev.br_startblock += mod; |
| 5396 | prev.br_startoff = start; |
| 5397 | } |
| 5398 | prev.br_state = XFS_EXT_UNWRITTEN; |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 5399 | error = xfs_bmap_add_extent_unwritten_real(tp, |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5400 | ip, whichfork, &icur, &cur, |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 5401 | &prev, firstblock, dfops, |
| 5402 | &logflags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5403 | if (error) |
| 5404 | goto error0; |
| 5405 | goto nodelete; |
| 5406 | } else { |
| 5407 | ASSERT(del.br_state == XFS_EXT_NORM); |
| 5408 | del.br_state = XFS_EXT_UNWRITTEN; |
Christoph Hellwig | a5bd606b | 2011-09-18 20:40:54 +0000 | [diff] [blame] | 5409 | error = xfs_bmap_add_extent_unwritten_real(tp, |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5410 | ip, whichfork, &icur, &cur, |
Darrick J. Wong | 05a630d | 2017-02-02 15:14:01 -0800 | [diff] [blame] | 5411 | &del, firstblock, dfops, |
| 5412 | &logflags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5413 | if (error) |
| 5414 | goto error0; |
| 5415 | goto nodelete; |
| 5416 | } |
| 5417 | } |
Nathan Scott | 06d10dd | 2005-06-21 15:48:47 +1000 | [diff] [blame] | 5418 | |
Dave Chinner | 0703a8e | 2018-06-08 09:54:22 -0700 | [diff] [blame] | 5419 | delete: |
Brian Foster | b2706a0 | 2016-03-15 11:42:46 +1100 | [diff] [blame] | 5420 | if (wasdel) { |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5421 | error = xfs_bmap_del_extent_delay(ip, whichfork, &icur, |
Christoph Hellwig | e1d7553 | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5422 | &got, &del); |
| 5423 | } else { |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5424 | error = xfs_bmap_del_extent_real(ip, tp, &icur, dfops, |
Christoph Hellwig | e1d7553 | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5425 | cur, &del, &tmp_logflags, whichfork, |
| 5426 | flags); |
| 5427 | logflags |= tmp_logflags; |
Christoph Hellwig | b213d69 | 2017-10-17 14:16:20 -0700 | [diff] [blame] | 5428 | } |
Brian Foster | b2706a0 | 2016-03-15 11:42:46 +1100 | [diff] [blame] | 5429 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5430 | if (error) |
| 5431 | goto error0; |
Brian Foster | b2706a0 | 2016-03-15 11:42:46 +1100 | [diff] [blame] | 5432 | |
Darrick J. Wong | e1a4e37 | 2017-06-14 21:25:57 -0700 | [diff] [blame] | 5433 | max_len -= del.br_blockcount; |
Christoph Hellwig | 8280f6e | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5434 | end = del.br_startoff - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5435 | nodelete: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5436 | /* |
| 5437 | * If not done go on to the next (previous) record. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5438 | */ |
Christoph Hellwig | 8280f6e | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5439 | if (end != (xfs_fileoff_t)-1 && end >= start) { |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5440 | if (!xfs_iext_get_extent(ifp, &icur, &got) || |
| 5441 | (got.br_startoff > end && |
| 5442 | !xfs_iext_prev_extent(ifp, &icur, &got))) { |
| 5443 | done = true; |
| 5444 | break; |
Christoph Hellwig | 00239ac | 2011-05-11 15:04:08 +0000 | [diff] [blame] | 5445 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5446 | extno++; |
| 5447 | } |
| 5448 | } |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5449 | if (done || end == (xfs_fileoff_t)-1 || end < start) |
Darrick J. Wong | 4453593 | 2016-10-03 09:11:29 -0700 | [diff] [blame] | 5450 | *rlen = 0; |
| 5451 | else |
Christoph Hellwig | 8280f6e | 2017-10-17 14:16:21 -0700 | [diff] [blame] | 5452 | *rlen = end - start + 1; |
Christoph Hellwig | 8096b1e | 2011-12-18 20:00:07 +0000 | [diff] [blame] | 5453 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5454 | /* |
| 5455 | * Convert to a btree if necessary. |
| 5456 | */ |
Christoph Hellwig | 8096b1e | 2011-12-18 20:00:07 +0000 | [diff] [blame] | 5457 | if (xfs_bmap_needs_btree(ip, whichfork)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5458 | ASSERT(cur == NULL); |
Darrick J. Wong | 2c3234d | 2016-08-03 11:19:29 +1000 | [diff] [blame] | 5459 | error = xfs_bmap_extents_to_btree(tp, ip, firstblock, dfops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5460 | &cur, 0, &tmp_logflags, whichfork); |
| 5461 | logflags |= tmp_logflags; |
| 5462 | if (error) |
| 5463 | goto error0; |
| 5464 | } |
| 5465 | /* |
| 5466 | * transform from btree to extents, give it cur |
| 5467 | */ |
Christoph Hellwig | 8096b1e | 2011-12-18 20:00:07 +0000 | [diff] [blame] | 5468 | else if (xfs_bmap_wants_extents(ip, whichfork)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5469 | ASSERT(cur != NULL); |
| 5470 | error = xfs_bmap_btree_to_extents(tp, ip, cur, &tmp_logflags, |
| 5471 | whichfork); |
| 5472 | logflags |= tmp_logflags; |
| 5473 | if (error) |
| 5474 | goto error0; |
| 5475 | } |
| 5476 | /* |
| 5477 | * transform from extents to local? |
| 5478 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5479 | error = 0; |
| 5480 | error0: |
| 5481 | /* |
| 5482 | * Log everything. Do this after conversion, there's no point in |
Mandy Kirkconnell | 4eea22f | 2006-03-14 13:29:52 +1100 | [diff] [blame] | 5483 | * logging the extent records if we've converted to btree format. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5484 | */ |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 5485 | if ((logflags & xfs_ilog_fext(whichfork)) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5486 | XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS) |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 5487 | logflags &= ~xfs_ilog_fext(whichfork); |
| 5488 | else if ((logflags & xfs_ilog_fbroot(whichfork)) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5489 | XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE) |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 5490 | logflags &= ~xfs_ilog_fbroot(whichfork); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5491 | /* |
| 5492 | * Log inode even in the error case, if the transaction |
| 5493 | * is dirty we'll need to shut down the filesystem. |
| 5494 | */ |
| 5495 | if (logflags) |
| 5496 | xfs_trans_log_inode(tp, ip, logflags); |
| 5497 | if (cur) { |
| 5498 | if (!error) { |
| 5499 | *firstblock = cur->bc_private.b.firstblock; |
| 5500 | cur->bc_private.b.allocated = 0; |
| 5501 | } |
| 5502 | xfs_btree_del_cursor(cur, |
| 5503 | error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR); |
| 5504 | } |
| 5505 | return error; |
| 5506 | } |
Namjae Jeon | e1d8fb8 | 2014-02-24 10:58:19 +1100 | [diff] [blame] | 5507 | |
Darrick J. Wong | 4453593 | 2016-10-03 09:11:29 -0700 | [diff] [blame] | 5508 | /* Unmap a range of a file. */ |
| 5509 | int |
| 5510 | xfs_bunmapi( |
| 5511 | xfs_trans_t *tp, |
| 5512 | struct xfs_inode *ip, |
| 5513 | xfs_fileoff_t bno, |
| 5514 | xfs_filblks_t len, |
| 5515 | int flags, |
| 5516 | xfs_extnum_t nexts, |
| 5517 | xfs_fsblock_t *firstblock, |
Darrick J. Wong | 4453593 | 2016-10-03 09:11:29 -0700 | [diff] [blame] | 5518 | int *done) |
| 5519 | { |
| 5520 | int error; |
| 5521 | |
Brian Foster | ccd9d91 | 2018-07-11 22:26:13 -0700 | [diff] [blame] | 5522 | error = __xfs_bunmapi(tp, ip, bno, &len, flags, nexts, firstblock); |
Darrick J. Wong | 4453593 | 2016-10-03 09:11:29 -0700 | [diff] [blame] | 5523 | *done = (len == 0); |
| 5524 | return error; |
| 5525 | } |
| 5526 | |
Namjae Jeon | e1d8fb8 | 2014-02-24 10:58:19 +1100 | [diff] [blame] | 5527 | /* |
Brian Foster | ddb19e3 | 2014-09-23 15:38:09 +1000 | [diff] [blame] | 5528 | * Determine whether an extent shift can be accomplished by a merge with the |
| 5529 | * extent that precedes the target hole of the shift. |
| 5530 | */ |
| 5531 | STATIC bool |
| 5532 | xfs_bmse_can_merge( |
| 5533 | struct xfs_bmbt_irec *left, /* preceding extent */ |
| 5534 | struct xfs_bmbt_irec *got, /* current extent to shift */ |
| 5535 | xfs_fileoff_t shift) /* shift fsb */ |
| 5536 | { |
| 5537 | xfs_fileoff_t startoff; |
| 5538 | |
| 5539 | startoff = got->br_startoff - shift; |
| 5540 | |
| 5541 | /* |
| 5542 | * The extent, once shifted, must be adjacent in-file and on-disk with |
| 5543 | * the preceding extent. |
| 5544 | */ |
| 5545 | if ((left->br_startoff + left->br_blockcount != startoff) || |
| 5546 | (left->br_startblock + left->br_blockcount != got->br_startblock) || |
| 5547 | (left->br_state != got->br_state) || |
| 5548 | (left->br_blockcount + got->br_blockcount > MAXEXTLEN)) |
| 5549 | return false; |
| 5550 | |
| 5551 | return true; |
| 5552 | } |
| 5553 | |
| 5554 | /* |
| 5555 | * A bmap extent shift adjusts the file offset of an extent to fill a preceding |
| 5556 | * hole in the file. If an extent shift would result in the extent being fully |
| 5557 | * adjacent to the extent that currently precedes the hole, we can merge with |
| 5558 | * the preceding extent rather than do the shift. |
| 5559 | * |
| 5560 | * This function assumes the caller has verified a shift-by-merge is possible |
| 5561 | * with the provided extents via xfs_bmse_can_merge(). |
| 5562 | */ |
| 5563 | STATIC int |
| 5564 | xfs_bmse_merge( |
| 5565 | struct xfs_inode *ip, |
| 5566 | int whichfork, |
| 5567 | xfs_fileoff_t shift, /* shift fsb */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5568 | struct xfs_iext_cursor *icur, |
Christoph Hellwig | 4da6b51 | 2017-08-29 15:44:13 -0700 | [diff] [blame] | 5569 | struct xfs_bmbt_irec *got, /* extent to shift */ |
| 5570 | struct xfs_bmbt_irec *left, /* preceding extent */ |
Brian Foster | ddb19e3 | 2014-09-23 15:38:09 +1000 | [diff] [blame] | 5571 | struct xfs_btree_cur *cur, |
Christoph Hellwig | 4da6b51 | 2017-08-29 15:44:13 -0700 | [diff] [blame] | 5572 | int *logflags, /* output */ |
| 5573 | struct xfs_defer_ops *dfops) |
Brian Foster | ddb19e3 | 2014-09-23 15:38:09 +1000 | [diff] [blame] | 5574 | { |
Christoph Hellwig | 4da6b51 | 2017-08-29 15:44:13 -0700 | [diff] [blame] | 5575 | struct xfs_bmbt_irec new; |
Brian Foster | ddb19e3 | 2014-09-23 15:38:09 +1000 | [diff] [blame] | 5576 | xfs_filblks_t blockcount; |
| 5577 | int error, i; |
Eric Sandeen | 5fb5aee | 2015-02-23 22:39:13 +1100 | [diff] [blame] | 5578 | struct xfs_mount *mp = ip->i_mount; |
Brian Foster | ddb19e3 | 2014-09-23 15:38:09 +1000 | [diff] [blame] | 5579 | |
Christoph Hellwig | 4da6b51 | 2017-08-29 15:44:13 -0700 | [diff] [blame] | 5580 | blockcount = left->br_blockcount + got->br_blockcount; |
Brian Foster | ddb19e3 | 2014-09-23 15:38:09 +1000 | [diff] [blame] | 5581 | |
| 5582 | ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL)); |
| 5583 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL)); |
Christoph Hellwig | 4da6b51 | 2017-08-29 15:44:13 -0700 | [diff] [blame] | 5584 | ASSERT(xfs_bmse_can_merge(left, got, shift)); |
Brian Foster | ddb19e3 | 2014-09-23 15:38:09 +1000 | [diff] [blame] | 5585 | |
Christoph Hellwig | 4da6b51 | 2017-08-29 15:44:13 -0700 | [diff] [blame] | 5586 | new = *left; |
| 5587 | new.br_blockcount = blockcount; |
Brian Foster | ddb19e3 | 2014-09-23 15:38:09 +1000 | [diff] [blame] | 5588 | |
| 5589 | /* |
| 5590 | * Update the on-disk extent count, the btree if necessary and log the |
| 5591 | * inode. |
| 5592 | */ |
| 5593 | XFS_IFORK_NEXT_SET(ip, whichfork, |
| 5594 | XFS_IFORK_NEXTENTS(ip, whichfork) - 1); |
| 5595 | *logflags |= XFS_ILOG_CORE; |
| 5596 | if (!cur) { |
| 5597 | *logflags |= XFS_ILOG_DEXT; |
Christoph Hellwig | 4da6b51 | 2017-08-29 15:44:13 -0700 | [diff] [blame] | 5598 | goto done; |
Brian Foster | ddb19e3 | 2014-09-23 15:38:09 +1000 | [diff] [blame] | 5599 | } |
| 5600 | |
| 5601 | /* lookup and remove the extent to merge */ |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 5602 | error = xfs_bmbt_lookup_eq(cur, got, &i); |
Brian Foster | ddb19e3 | 2014-09-23 15:38:09 +1000 | [diff] [blame] | 5603 | if (error) |
Dave Chinner | 4db431f | 2014-12-04 09:42:40 +1100 | [diff] [blame] | 5604 | return error; |
Eric Sandeen | 5fb5aee | 2015-02-23 22:39:13 +1100 | [diff] [blame] | 5605 | XFS_WANT_CORRUPTED_RETURN(mp, i == 1); |
Brian Foster | ddb19e3 | 2014-09-23 15:38:09 +1000 | [diff] [blame] | 5606 | |
| 5607 | error = xfs_btree_delete(cur, &i); |
| 5608 | if (error) |
Dave Chinner | 4db431f | 2014-12-04 09:42:40 +1100 | [diff] [blame] | 5609 | return error; |
Eric Sandeen | 5fb5aee | 2015-02-23 22:39:13 +1100 | [diff] [blame] | 5610 | XFS_WANT_CORRUPTED_RETURN(mp, i == 1); |
Brian Foster | ddb19e3 | 2014-09-23 15:38:09 +1000 | [diff] [blame] | 5611 | |
| 5612 | /* lookup and update size of the previous extent */ |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 5613 | error = xfs_bmbt_lookup_eq(cur, left, &i); |
Brian Foster | ddb19e3 | 2014-09-23 15:38:09 +1000 | [diff] [blame] | 5614 | if (error) |
Dave Chinner | 4db431f | 2014-12-04 09:42:40 +1100 | [diff] [blame] | 5615 | return error; |
Eric Sandeen | 5fb5aee | 2015-02-23 22:39:13 +1100 | [diff] [blame] | 5616 | XFS_WANT_CORRUPTED_RETURN(mp, i == 1); |
Brian Foster | ddb19e3 | 2014-09-23 15:38:09 +1000 | [diff] [blame] | 5617 | |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 5618 | error = xfs_bmbt_update(cur, &new); |
Christoph Hellwig | 4da6b51 | 2017-08-29 15:44:13 -0700 | [diff] [blame] | 5619 | if (error) |
| 5620 | return error; |
Brian Foster | ddb19e3 | 2014-09-23 15:38:09 +1000 | [diff] [blame] | 5621 | |
Christoph Hellwig | 4da6b51 | 2017-08-29 15:44:13 -0700 | [diff] [blame] | 5622 | done: |
Christoph Hellwig | c38ccf5 | 2017-11-03 10:34:47 -0700 | [diff] [blame] | 5623 | xfs_iext_remove(ip, icur, 0); |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5624 | xfs_iext_prev(XFS_IFORK_PTR(ip, whichfork), icur); |
| 5625 | xfs_iext_update_extent(ip, xfs_bmap_fork_to_state(whichfork), icur, |
| 5626 | &new); |
Christoph Hellwig | 4da6b51 | 2017-08-29 15:44:13 -0700 | [diff] [blame] | 5627 | |
Darrick J. Wong | 4cc1ee5 | 2017-08-30 16:06:36 -0700 | [diff] [blame] | 5628 | /* update reverse mapping. rmap functions merge the rmaps for us */ |
Christoph Hellwig | 4da6b51 | 2017-08-29 15:44:13 -0700 | [diff] [blame] | 5629 | error = xfs_rmap_unmap_extent(mp, dfops, ip, whichfork, got); |
| 5630 | if (error) |
| 5631 | return error; |
Darrick J. Wong | 4cc1ee5 | 2017-08-30 16:06:36 -0700 | [diff] [blame] | 5632 | memcpy(&new, got, sizeof(new)); |
| 5633 | new.br_startoff = left->br_startoff + left->br_blockcount; |
Christoph Hellwig | 4da6b51 | 2017-08-29 15:44:13 -0700 | [diff] [blame] | 5634 | return xfs_rmap_map_extent(mp, dfops, ip, whichfork, &new); |
Brian Foster | ddb19e3 | 2014-09-23 15:38:09 +1000 | [diff] [blame] | 5635 | } |
| 5636 | |
Christoph Hellwig | bf80628 | 2017-10-19 11:07:34 -0700 | [diff] [blame] | 5637 | static int |
| 5638 | xfs_bmap_shift_update_extent( |
| 5639 | struct xfs_inode *ip, |
| 5640 | int whichfork, |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5641 | struct xfs_iext_cursor *icur, |
Christoph Hellwig | bf80628 | 2017-10-19 11:07:34 -0700 | [diff] [blame] | 5642 | struct xfs_bmbt_irec *got, |
| 5643 | struct xfs_btree_cur *cur, |
| 5644 | int *logflags, |
| 5645 | struct xfs_defer_ops *dfops, |
| 5646 | xfs_fileoff_t startoff) |
Brian Foster | a979bdf | 2014-09-23 15:39:04 +1000 | [diff] [blame] | 5647 | { |
Christoph Hellwig | bf80628 | 2017-10-19 11:07:34 -0700 | [diff] [blame] | 5648 | struct xfs_mount *mp = ip->i_mount; |
Christoph Hellwig | 11f75b3 | 2017-10-19 11:08:51 -0700 | [diff] [blame] | 5649 | struct xfs_bmbt_irec prev = *got; |
Christoph Hellwig | bf80628 | 2017-10-19 11:07:34 -0700 | [diff] [blame] | 5650 | int error, i; |
Brian Foster | a979bdf | 2014-09-23 15:39:04 +1000 | [diff] [blame] | 5651 | |
Christoph Hellwig | 4da6b51 | 2017-08-29 15:44:13 -0700 | [diff] [blame] | 5652 | *logflags |= XFS_ILOG_CORE; |
| 5653 | |
Christoph Hellwig | 11f75b3 | 2017-10-19 11:08:51 -0700 | [diff] [blame] | 5654 | got->br_startoff = startoff; |
Christoph Hellwig | 4da6b51 | 2017-08-29 15:44:13 -0700 | [diff] [blame] | 5655 | |
| 5656 | if (cur) { |
Christoph Hellwig | 11f75b3 | 2017-10-19 11:08:51 -0700 | [diff] [blame] | 5657 | error = xfs_bmbt_lookup_eq(cur, &prev, &i); |
Christoph Hellwig | 4da6b51 | 2017-08-29 15:44:13 -0700 | [diff] [blame] | 5658 | if (error) |
| 5659 | return error; |
| 5660 | XFS_WANT_CORRUPTED_RETURN(mp, i == 1); |
| 5661 | |
Christoph Hellwig | 11f75b3 | 2017-10-19 11:08:51 -0700 | [diff] [blame] | 5662 | error = xfs_bmbt_update(cur, got); |
Christoph Hellwig | 4da6b51 | 2017-08-29 15:44:13 -0700 | [diff] [blame] | 5663 | if (error) |
| 5664 | return error; |
| 5665 | } else { |
| 5666 | *logflags |= XFS_ILOG_DEXT; |
| 5667 | } |
| 5668 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5669 | xfs_iext_update_extent(ip, xfs_bmap_fork_to_state(whichfork), icur, |
| 5670 | got); |
Brian Foster | a979bdf | 2014-09-23 15:39:04 +1000 | [diff] [blame] | 5671 | |
Darrick J. Wong | 9c19464 | 2016-08-03 12:16:05 +1000 | [diff] [blame] | 5672 | /* update reverse mapping */ |
Christoph Hellwig | 11f75b3 | 2017-10-19 11:08:51 -0700 | [diff] [blame] | 5673 | error = xfs_rmap_unmap_extent(mp, dfops, ip, whichfork, &prev); |
Darrick J. Wong | 9c19464 | 2016-08-03 12:16:05 +1000 | [diff] [blame] | 5674 | if (error) |
| 5675 | return error; |
Christoph Hellwig | 11f75b3 | 2017-10-19 11:08:51 -0700 | [diff] [blame] | 5676 | return xfs_rmap_map_extent(mp, dfops, ip, whichfork, got); |
Brian Foster | a979bdf | 2014-09-23 15:39:04 +1000 | [diff] [blame] | 5677 | } |
| 5678 | |
Namjae Jeon | e1d8fb8 | 2014-02-24 10:58:19 +1100 | [diff] [blame] | 5679 | int |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 5680 | xfs_bmap_collapse_extents( |
Namjae Jeon | e1d8fb8 | 2014-02-24 10:58:19 +1100 | [diff] [blame] | 5681 | struct xfs_trans *tp, |
| 5682 | struct xfs_inode *ip, |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5683 | xfs_fileoff_t *next_fsb, |
Namjae Jeon | e1d8fb8 | 2014-02-24 10:58:19 +1100 | [diff] [blame] | 5684 | xfs_fileoff_t offset_shift_fsb, |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 5685 | bool *done, |
Namjae Jeon | e1d8fb8 | 2014-02-24 10:58:19 +1100 | [diff] [blame] | 5686 | xfs_fsblock_t *firstblock, |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 5687 | struct xfs_defer_ops *dfops) |
Namjae Jeon | e1d8fb8 | 2014-02-24 10:58:19 +1100 | [diff] [blame] | 5688 | { |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 5689 | int whichfork = XFS_DATA_FORK; |
| 5690 | struct xfs_mount *mp = ip->i_mount; |
| 5691 | struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork); |
| 5692 | struct xfs_btree_cur *cur = NULL; |
Christoph Hellwig | bf80628 | 2017-10-19 11:07:34 -0700 | [diff] [blame] | 5693 | struct xfs_bmbt_irec got, prev; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5694 | struct xfs_iext_cursor icur; |
Christoph Hellwig | bf80628 | 2017-10-19 11:07:34 -0700 | [diff] [blame] | 5695 | xfs_fileoff_t new_startoff; |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 5696 | int error = 0; |
| 5697 | int logflags = 0; |
Namjae Jeon | e1d8fb8 | 2014-02-24 10:58:19 +1100 | [diff] [blame] | 5698 | |
| 5699 | if (unlikely(XFS_TEST_ERROR( |
| 5700 | (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS && |
| 5701 | XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE), |
Darrick J. Wong | 9e24cfd | 2017-06-20 17:54:47 -0700 | [diff] [blame] | 5702 | mp, XFS_ERRTAG_BMAPIFORMAT))) { |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 5703 | XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW, mp); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 5704 | return -EFSCORRUPTED; |
Namjae Jeon | e1d8fb8 | 2014-02-24 10:58:19 +1100 | [diff] [blame] | 5705 | } |
| 5706 | |
| 5707 | if (XFS_FORCED_SHUTDOWN(mp)) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 5708 | return -EIO; |
Namjae Jeon | e1d8fb8 | 2014-02-24 10:58:19 +1100 | [diff] [blame] | 5709 | |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 5710 | ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL)); |
Namjae Jeon | e1d8fb8 | 2014-02-24 10:58:19 +1100 | [diff] [blame] | 5711 | |
Namjae Jeon | e1d8fb8 | 2014-02-24 10:58:19 +1100 | [diff] [blame] | 5712 | if (!(ifp->if_flags & XFS_IFEXTENTS)) { |
Namjae Jeon | e1d8fb8 | 2014-02-24 10:58:19 +1100 | [diff] [blame] | 5713 | error = xfs_iread_extents(tp, ip, whichfork); |
| 5714 | if (error) |
| 5715 | return error; |
| 5716 | } |
| 5717 | |
Brian Foster | ddb19e3 | 2014-09-23 15:38:09 +1000 | [diff] [blame] | 5718 | if (ifp->if_flags & XFS_IFBROOT) { |
| 5719 | cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork); |
| 5720 | cur->bc_private.b.firstblock = *firstblock; |
Darrick J. Wong | 2c3234d | 2016-08-03 11:19:29 +1000 | [diff] [blame] | 5721 | cur->bc_private.b.dfops = dfops; |
Brian Foster | ddb19e3 | 2014-09-23 15:38:09 +1000 | [diff] [blame] | 5722 | cur->bc_private.b.flags = 0; |
| 5723 | } |
| 5724 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5725 | if (!xfs_iext_lookup_extent(ip, ifp, *next_fsb, &icur, &got)) { |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 5726 | *done = true; |
| 5727 | goto del_cursor; |
| 5728 | } |
Eric Sandeen | d41c617 | 2017-11-27 18:23:32 -0800 | [diff] [blame] | 5729 | XFS_WANT_CORRUPTED_GOTO(mp, !isnullstartblock(got.br_startblock), |
| 5730 | del_cursor); |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 5731 | |
Christoph Hellwig | bf80628 | 2017-10-19 11:07:34 -0700 | [diff] [blame] | 5732 | new_startoff = got.br_startoff - offset_shift_fsb; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5733 | if (xfs_iext_peek_prev_extent(ifp, &icur, &prev)) { |
Christoph Hellwig | bf80628 | 2017-10-19 11:07:34 -0700 | [diff] [blame] | 5734 | if (new_startoff < prev.br_startoff + prev.br_blockcount) { |
| 5735 | error = -EINVAL; |
| 5736 | goto del_cursor; |
| 5737 | } |
| 5738 | |
Christoph Hellwig | bf80628 | 2017-10-19 11:07:34 -0700 | [diff] [blame] | 5739 | if (xfs_bmse_can_merge(&prev, &got, offset_shift_fsb)) { |
| 5740 | error = xfs_bmse_merge(ip, whichfork, offset_shift_fsb, |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5741 | &icur, &got, &prev, cur, &logflags, |
| 5742 | dfops); |
Christoph Hellwig | bf80628 | 2017-10-19 11:07:34 -0700 | [diff] [blame] | 5743 | if (error) |
| 5744 | goto del_cursor; |
| 5745 | goto done; |
| 5746 | } |
| 5747 | } else { |
| 5748 | if (got.br_startoff < offset_shift_fsb) { |
| 5749 | error = -EINVAL; |
| 5750 | goto del_cursor; |
| 5751 | } |
| 5752 | } |
| 5753 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5754 | error = xfs_bmap_shift_update_extent(ip, whichfork, &icur, &got, cur, |
| 5755 | &logflags, dfops, new_startoff); |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 5756 | if (error) |
| 5757 | goto del_cursor; |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 5758 | |
Christoph Hellwig | 4263036 | 2017-11-03 10:34:41 -0700 | [diff] [blame] | 5759 | done: |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5760 | if (!xfs_iext_next_extent(ifp, &icur, &got)) { |
| 5761 | *done = true; |
| 5762 | goto del_cursor; |
Christoph Hellwig | 40591bd | 2017-10-19 11:08:51 -0700 | [diff] [blame] | 5763 | } |
| 5764 | |
Christoph Hellwig | bf80628 | 2017-10-19 11:07:34 -0700 | [diff] [blame] | 5765 | *next_fsb = got.br_startoff; |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 5766 | del_cursor: |
| 5767 | if (cur) |
| 5768 | xfs_btree_del_cursor(cur, |
| 5769 | error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR); |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 5770 | if (logflags) |
| 5771 | xfs_trans_log_inode(tp, ip, logflags); |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 5772 | return error; |
| 5773 | } |
| 5774 | |
Darrick J. Wong | f62cb48 | 2018-06-21 23:26:57 -0700 | [diff] [blame] | 5775 | /* Make sure we won't be right-shifting an extent past the maximum bound. */ |
| 5776 | int |
| 5777 | xfs_bmap_can_insert_extents( |
| 5778 | struct xfs_inode *ip, |
| 5779 | xfs_fileoff_t off, |
| 5780 | xfs_fileoff_t shift) |
| 5781 | { |
| 5782 | struct xfs_bmbt_irec got; |
| 5783 | int is_empty; |
| 5784 | int error = 0; |
| 5785 | |
| 5786 | ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL)); |
| 5787 | |
| 5788 | if (XFS_FORCED_SHUTDOWN(ip->i_mount)) |
| 5789 | return -EIO; |
| 5790 | |
| 5791 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
| 5792 | error = xfs_bmap_last_extent(NULL, ip, XFS_DATA_FORK, &got, &is_empty); |
| 5793 | if (!error && !is_empty && got.br_startoff >= off && |
| 5794 | ((got.br_startoff + shift) & BMBT_STARTOFF_MASK) < got.br_startoff) |
| 5795 | error = -EINVAL; |
| 5796 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 5797 | |
| 5798 | return error; |
| 5799 | } |
| 5800 | |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 5801 | int |
| 5802 | xfs_bmap_insert_extents( |
| 5803 | struct xfs_trans *tp, |
| 5804 | struct xfs_inode *ip, |
| 5805 | xfs_fileoff_t *next_fsb, |
| 5806 | xfs_fileoff_t offset_shift_fsb, |
| 5807 | bool *done, |
| 5808 | xfs_fileoff_t stop_fsb, |
| 5809 | xfs_fsblock_t *firstblock, |
| 5810 | struct xfs_defer_ops *dfops) |
| 5811 | { |
| 5812 | int whichfork = XFS_DATA_FORK; |
| 5813 | struct xfs_mount *mp = ip->i_mount; |
| 5814 | struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork); |
| 5815 | struct xfs_btree_cur *cur = NULL; |
Christoph Hellwig | 5936dc5 | 2017-10-19 11:08:52 -0700 | [diff] [blame] | 5816 | struct xfs_bmbt_irec got, next; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5817 | struct xfs_iext_cursor icur; |
Christoph Hellwig | bf80628 | 2017-10-19 11:07:34 -0700 | [diff] [blame] | 5818 | xfs_fileoff_t new_startoff; |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 5819 | int error = 0; |
| 5820 | int logflags = 0; |
| 5821 | |
| 5822 | if (unlikely(XFS_TEST_ERROR( |
| 5823 | (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS && |
| 5824 | XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE), |
| 5825 | mp, XFS_ERRTAG_BMAPIFORMAT))) { |
| 5826 | XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW, mp); |
| 5827 | return -EFSCORRUPTED; |
| 5828 | } |
| 5829 | |
| 5830 | if (XFS_FORCED_SHUTDOWN(mp)) |
| 5831 | return -EIO; |
| 5832 | |
| 5833 | ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL)); |
| 5834 | |
| 5835 | if (!(ifp->if_flags & XFS_IFEXTENTS)) { |
| 5836 | error = xfs_iread_extents(tp, ip, whichfork); |
| 5837 | if (error) |
| 5838 | return error; |
| 5839 | } |
| 5840 | |
| 5841 | if (ifp->if_flags & XFS_IFBROOT) { |
| 5842 | cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork); |
| 5843 | cur->bc_private.b.firstblock = *firstblock; |
| 5844 | cur->bc_private.b.dfops = dfops; |
| 5845 | cur->bc_private.b.flags = 0; |
| 5846 | } |
| 5847 | |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5848 | if (*next_fsb == NULLFSBLOCK) { |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5849 | xfs_iext_last(ifp, &icur); |
| 5850 | if (!xfs_iext_get_extent(ifp, &icur, &got) || |
Christoph Hellwig | 5936dc5 | 2017-10-19 11:08:52 -0700 | [diff] [blame] | 5851 | stop_fsb > got.br_startoff) { |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 5852 | *done = true; |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5853 | goto del_cursor; |
| 5854 | } |
Christoph Hellwig | 05b7c8a | 2017-08-29 15:44:12 -0700 | [diff] [blame] | 5855 | } else { |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5856 | if (!xfs_iext_lookup_extent(ip, ifp, *next_fsb, &icur, &got)) { |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 5857 | *done = true; |
Christoph Hellwig | 05b7c8a | 2017-08-29 15:44:12 -0700 | [diff] [blame] | 5858 | goto del_cursor; |
| 5859 | } |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5860 | } |
Eric Sandeen | d41c617 | 2017-11-27 18:23:32 -0800 | [diff] [blame] | 5861 | XFS_WANT_CORRUPTED_GOTO(mp, !isnullstartblock(got.br_startblock), |
| 5862 | del_cursor); |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5863 | |
Christoph Hellwig | 5936dc5 | 2017-10-19 11:08:52 -0700 | [diff] [blame] | 5864 | if (stop_fsb >= got.br_startoff + got.br_blockcount) { |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 5865 | error = -EIO; |
| 5866 | goto del_cursor; |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5867 | } |
| 5868 | |
Christoph Hellwig | bf80628 | 2017-10-19 11:07:34 -0700 | [diff] [blame] | 5869 | new_startoff = got.br_startoff + offset_shift_fsb; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5870 | if (xfs_iext_peek_next_extent(ifp, &icur, &next)) { |
Christoph Hellwig | bf80628 | 2017-10-19 11:07:34 -0700 | [diff] [blame] | 5871 | if (new_startoff + got.br_blockcount > next.br_startoff) { |
| 5872 | error = -EINVAL; |
| 5873 | goto del_cursor; |
| 5874 | } |
| 5875 | |
| 5876 | /* |
| 5877 | * Unlike a left shift (which involves a hole punch), a right |
| 5878 | * shift does not modify extent neighbors in any way. We should |
| 5879 | * never find mergeable extents in this scenario. Check anyways |
| 5880 | * and warn if we encounter two extents that could be one. |
| 5881 | */ |
| 5882 | if (xfs_bmse_can_merge(&got, &next, offset_shift_fsb)) |
| 5883 | WARN_ON_ONCE(1); |
| 5884 | } |
| 5885 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5886 | error = xfs_bmap_shift_update_extent(ip, whichfork, &icur, &got, cur, |
| 5887 | &logflags, dfops, new_startoff); |
Christoph Hellwig | 6b18af0 | 2017-10-19 11:07:10 -0700 | [diff] [blame] | 5888 | if (error) |
| 5889 | goto del_cursor; |
Christoph Hellwig | 5936dc5 | 2017-10-19 11:08:52 -0700 | [diff] [blame] | 5890 | |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5891 | if (!xfs_iext_prev_extent(ifp, &icur, &got) || |
Christoph Hellwig | 5936dc5 | 2017-10-19 11:08:52 -0700 | [diff] [blame] | 5892 | stop_fsb >= got.br_startoff + got.br_blockcount) { |
Christoph Hellwig | ecfea3f | 2017-10-19 11:07:11 -0700 | [diff] [blame] | 5893 | *done = true; |
Christoph Hellwig | 6b18af0 | 2017-10-19 11:07:10 -0700 | [diff] [blame] | 5894 | goto del_cursor; |
| 5895 | } |
Christoph Hellwig | 6b18af0 | 2017-10-19 11:07:10 -0700 | [diff] [blame] | 5896 | |
| 5897 | *next_fsb = got.br_startoff; |
Namjae Jeon | e1d8fb8 | 2014-02-24 10:58:19 +1100 | [diff] [blame] | 5898 | del_cursor: |
| 5899 | if (cur) |
| 5900 | xfs_btree_del_cursor(cur, |
| 5901 | error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR); |
Brian Foster | ca446d8 | 2014-09-02 12:12:53 +1000 | [diff] [blame] | 5902 | if (logflags) |
| 5903 | xfs_trans_log_inode(tp, ip, logflags); |
Namjae Jeon | e1d8fb8 | 2014-02-24 10:58:19 +1100 | [diff] [blame] | 5904 | return error; |
| 5905 | } |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5906 | |
| 5907 | /* |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5908 | * Splits an extent into two extents at split_fsb block such that it is the |
| 5909 | * first block of the current_ext. @ext is a target extent to be split. |
| 5910 | * @split_fsb is a block where the extents is split. If split_fsb lies in a |
| 5911 | * hole or the first block of extents, just return 0. |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5912 | */ |
| 5913 | STATIC int |
| 5914 | xfs_bmap_split_extent_at( |
| 5915 | struct xfs_trans *tp, |
| 5916 | struct xfs_inode *ip, |
| 5917 | xfs_fileoff_t split_fsb, |
Brian Foster | d76e6ce | 2018-07-11 22:26:10 -0700 | [diff] [blame] | 5918 | xfs_fsblock_t *firstfsb) |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5919 | { |
| 5920 | int whichfork = XFS_DATA_FORK; |
| 5921 | struct xfs_btree_cur *cur = NULL; |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5922 | struct xfs_bmbt_irec got; |
| 5923 | struct xfs_bmbt_irec new; /* split extent */ |
| 5924 | struct xfs_mount *mp = ip->i_mount; |
| 5925 | struct xfs_ifork *ifp; |
| 5926 | xfs_fsblock_t gotblkcnt; /* new block count for got */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5927 | struct xfs_iext_cursor icur; |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5928 | int error = 0; |
| 5929 | int logflags = 0; |
| 5930 | int i = 0; |
| 5931 | |
| 5932 | if (unlikely(XFS_TEST_ERROR( |
| 5933 | (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS && |
| 5934 | XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE), |
Darrick J. Wong | 9e24cfd | 2017-06-20 17:54:47 -0700 | [diff] [blame] | 5935 | mp, XFS_ERRTAG_BMAPIFORMAT))) { |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5936 | XFS_ERROR_REPORT("xfs_bmap_split_extent_at", |
| 5937 | XFS_ERRLEVEL_LOW, mp); |
| 5938 | return -EFSCORRUPTED; |
| 5939 | } |
| 5940 | |
| 5941 | if (XFS_FORCED_SHUTDOWN(mp)) |
| 5942 | return -EIO; |
| 5943 | |
| 5944 | ifp = XFS_IFORK_PTR(ip, whichfork); |
| 5945 | if (!(ifp->if_flags & XFS_IFEXTENTS)) { |
| 5946 | /* Read in all the extents */ |
| 5947 | error = xfs_iread_extents(tp, ip, whichfork); |
| 5948 | if (error) |
| 5949 | return error; |
| 5950 | } |
| 5951 | |
| 5952 | /* |
Christoph Hellwig | 4c35445b | 2017-08-29 15:44:13 -0700 | [diff] [blame] | 5953 | * If there are not extents, or split_fsb lies in a hole we are done. |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5954 | */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5955 | if (!xfs_iext_lookup_extent(ip, ifp, split_fsb, &icur, &got) || |
Christoph Hellwig | 4c35445b | 2017-08-29 15:44:13 -0700 | [diff] [blame] | 5956 | got.br_startoff >= split_fsb) |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5957 | return 0; |
| 5958 | |
| 5959 | gotblkcnt = split_fsb - got.br_startoff; |
| 5960 | new.br_startoff = split_fsb; |
| 5961 | new.br_startblock = got.br_startblock + gotblkcnt; |
| 5962 | new.br_blockcount = got.br_blockcount - gotblkcnt; |
| 5963 | new.br_state = got.br_state; |
| 5964 | |
| 5965 | if (ifp->if_flags & XFS_IFBROOT) { |
| 5966 | cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork); |
| 5967 | cur->bc_private.b.firstblock = *firstfsb; |
Brian Foster | d76e6ce | 2018-07-11 22:26:10 -0700 | [diff] [blame] | 5968 | cur->bc_private.b.dfops = tp->t_dfops; |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5969 | cur->bc_private.b.flags = 0; |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 5970 | error = xfs_bmbt_lookup_eq(cur, &got, &i); |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5971 | if (error) |
| 5972 | goto del_cursor; |
| 5973 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, del_cursor); |
| 5974 | } |
| 5975 | |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5976 | got.br_blockcount = gotblkcnt; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5977 | xfs_iext_update_extent(ip, xfs_bmap_fork_to_state(whichfork), &icur, |
| 5978 | &got); |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5979 | |
| 5980 | logflags = XFS_ILOG_CORE; |
| 5981 | if (cur) { |
Christoph Hellwig | a67d00a | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 5982 | error = xfs_bmbt_update(cur, &got); |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5983 | if (error) |
| 5984 | goto del_cursor; |
| 5985 | } else |
| 5986 | logflags |= XFS_ILOG_DEXT; |
| 5987 | |
| 5988 | /* Add new extent */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 5989 | xfs_iext_next(ifp, &icur); |
Christoph Hellwig | 0254c2f | 2017-11-03 10:34:46 -0700 | [diff] [blame] | 5990 | xfs_iext_insert(ip, &icur, &new, 0); |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5991 | XFS_IFORK_NEXT_SET(ip, whichfork, |
| 5992 | XFS_IFORK_NEXTENTS(ip, whichfork) + 1); |
| 5993 | |
| 5994 | if (cur) { |
Christoph Hellwig | e16cf9b | 2017-10-17 14:16:26 -0700 | [diff] [blame] | 5995 | error = xfs_bmbt_lookup_eq(cur, &new, &i); |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5996 | if (error) |
| 5997 | goto del_cursor; |
| 5998 | XFS_WANT_CORRUPTED_GOTO(mp, i == 0, del_cursor); |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 5999 | error = xfs_btree_insert(cur, &i); |
| 6000 | if (error) |
| 6001 | goto del_cursor; |
| 6002 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, del_cursor); |
| 6003 | } |
| 6004 | |
| 6005 | /* |
| 6006 | * Convert to a btree if necessary. |
| 6007 | */ |
| 6008 | if (xfs_bmap_needs_btree(ip, whichfork)) { |
| 6009 | int tmp_logflags; /* partial log flag return val */ |
| 6010 | |
| 6011 | ASSERT(cur == NULL); |
Brian Foster | d76e6ce | 2018-07-11 22:26:10 -0700 | [diff] [blame] | 6012 | error = xfs_bmap_extents_to_btree(tp, ip, firstfsb, tp->t_dfops, |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 6013 | &cur, 0, &tmp_logflags, whichfork); |
| 6014 | logflags |= tmp_logflags; |
| 6015 | } |
| 6016 | |
| 6017 | del_cursor: |
| 6018 | if (cur) { |
| 6019 | cur->bc_private.b.allocated = 0; |
| 6020 | xfs_btree_del_cursor(cur, |
| 6021 | error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR); |
| 6022 | } |
| 6023 | |
| 6024 | if (logflags) |
| 6025 | xfs_trans_log_inode(tp, ip, logflags); |
| 6026 | return error; |
| 6027 | } |
| 6028 | |
| 6029 | int |
| 6030 | xfs_bmap_split_extent( |
| 6031 | struct xfs_inode *ip, |
| 6032 | xfs_fileoff_t split_fsb) |
| 6033 | { |
| 6034 | struct xfs_mount *mp = ip->i_mount; |
| 6035 | struct xfs_trans *tp; |
Darrick J. Wong | 2c3234d | 2016-08-03 11:19:29 +1000 | [diff] [blame] | 6036 | struct xfs_defer_ops dfops; |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 6037 | xfs_fsblock_t firstfsb; |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 6038 | int error; |
| 6039 | |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 6040 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, |
| 6041 | XFS_DIOSTRAT_SPACE_RES(mp, 0), 0, 0, &tp); |
| 6042 | if (error) |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 6043 | return error; |
Brian Foster | d76e6ce | 2018-07-11 22:26:10 -0700 | [diff] [blame] | 6044 | xfs_defer_init(&dfops, &firstfsb); |
| 6045 | tp->t_dfops = &dfops; |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 6046 | |
| 6047 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
| 6048 | xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL); |
| 6049 | |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 6050 | error = xfs_bmap_split_extent_at(tp, ip, split_fsb, |
Brian Foster | d76e6ce | 2018-07-11 22:26:10 -0700 | [diff] [blame] | 6051 | &firstfsb); |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 6052 | if (error) |
| 6053 | goto out; |
| 6054 | |
Christoph Hellwig | 8ad7c629 | 2017-08-28 10:21:04 -0700 | [diff] [blame] | 6055 | error = xfs_defer_finish(&tp, &dfops); |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 6056 | if (error) |
| 6057 | goto out; |
| 6058 | |
Christoph Hellwig | 7039331 | 2015-06-04 13:48:08 +1000 | [diff] [blame] | 6059 | return xfs_trans_commit(tp); |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 6060 | |
| 6061 | out: |
Darrick J. Wong | 2c3234d | 2016-08-03 11:19:29 +1000 | [diff] [blame] | 6062 | xfs_defer_cancel(&dfops); |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 6063 | xfs_trans_cancel(tp); |
Namjae Jeon | a904b1c | 2015-03-25 15:08:56 +1100 | [diff] [blame] | 6064 | return error; |
| 6065 | } |
Darrick J. Wong | 9f3afb5 | 2016-10-03 09:11:28 -0700 | [diff] [blame] | 6066 | |
| 6067 | /* Deferred mapping is only for real extents in the data fork. */ |
| 6068 | static bool |
| 6069 | xfs_bmap_is_update_needed( |
| 6070 | struct xfs_bmbt_irec *bmap) |
| 6071 | { |
| 6072 | return bmap->br_startblock != HOLESTARTBLOCK && |
| 6073 | bmap->br_startblock != DELAYSTARTBLOCK; |
| 6074 | } |
| 6075 | |
| 6076 | /* Record a bmap intent. */ |
| 6077 | static int |
| 6078 | __xfs_bmap_add( |
| 6079 | struct xfs_mount *mp, |
| 6080 | struct xfs_defer_ops *dfops, |
| 6081 | enum xfs_bmap_intent_type type, |
| 6082 | struct xfs_inode *ip, |
| 6083 | int whichfork, |
| 6084 | struct xfs_bmbt_irec *bmap) |
| 6085 | { |
| 6086 | int error; |
| 6087 | struct xfs_bmap_intent *bi; |
| 6088 | |
| 6089 | trace_xfs_bmap_defer(mp, |
| 6090 | XFS_FSB_TO_AGNO(mp, bmap->br_startblock), |
| 6091 | type, |
| 6092 | XFS_FSB_TO_AGBNO(mp, bmap->br_startblock), |
| 6093 | ip->i_ino, whichfork, |
| 6094 | bmap->br_startoff, |
| 6095 | bmap->br_blockcount, |
| 6096 | bmap->br_state); |
| 6097 | |
| 6098 | bi = kmem_alloc(sizeof(struct xfs_bmap_intent), KM_SLEEP | KM_NOFS); |
| 6099 | INIT_LIST_HEAD(&bi->bi_list); |
| 6100 | bi->bi_type = type; |
| 6101 | bi->bi_owner = ip; |
| 6102 | bi->bi_whichfork = whichfork; |
| 6103 | bi->bi_bmap = *bmap; |
| 6104 | |
Christoph Hellwig | 882d878 | 2017-08-28 10:21:03 -0700 | [diff] [blame] | 6105 | error = xfs_defer_ijoin(dfops, bi->bi_owner); |
Darrick J. Wong | 9f3afb5 | 2016-10-03 09:11:28 -0700 | [diff] [blame] | 6106 | if (error) { |
| 6107 | kmem_free(bi); |
| 6108 | return error; |
| 6109 | } |
| 6110 | |
| 6111 | xfs_defer_add(dfops, XFS_DEFER_OPS_TYPE_BMAP, &bi->bi_list); |
| 6112 | return 0; |
| 6113 | } |
| 6114 | |
| 6115 | /* Map an extent into a file. */ |
| 6116 | int |
| 6117 | xfs_bmap_map_extent( |
| 6118 | struct xfs_mount *mp, |
| 6119 | struct xfs_defer_ops *dfops, |
| 6120 | struct xfs_inode *ip, |
| 6121 | struct xfs_bmbt_irec *PREV) |
| 6122 | { |
| 6123 | if (!xfs_bmap_is_update_needed(PREV)) |
| 6124 | return 0; |
| 6125 | |
| 6126 | return __xfs_bmap_add(mp, dfops, XFS_BMAP_MAP, ip, |
| 6127 | XFS_DATA_FORK, PREV); |
| 6128 | } |
| 6129 | |
| 6130 | /* Unmap an extent out of a file. */ |
| 6131 | int |
| 6132 | xfs_bmap_unmap_extent( |
| 6133 | struct xfs_mount *mp, |
| 6134 | struct xfs_defer_ops *dfops, |
| 6135 | struct xfs_inode *ip, |
| 6136 | struct xfs_bmbt_irec *PREV) |
| 6137 | { |
| 6138 | if (!xfs_bmap_is_update_needed(PREV)) |
| 6139 | return 0; |
| 6140 | |
| 6141 | return __xfs_bmap_add(mp, dfops, XFS_BMAP_UNMAP, ip, |
| 6142 | XFS_DATA_FORK, PREV); |
| 6143 | } |
| 6144 | |
| 6145 | /* |
| 6146 | * Process one of the deferred bmap operations. We pass back the |
| 6147 | * btree cursor to maintain our lock on the bmapbt between calls. |
| 6148 | */ |
| 6149 | int |
| 6150 | xfs_bmap_finish_one( |
| 6151 | struct xfs_trans *tp, |
| 6152 | struct xfs_defer_ops *dfops, |
| 6153 | struct xfs_inode *ip, |
| 6154 | enum xfs_bmap_intent_type type, |
| 6155 | int whichfork, |
| 6156 | xfs_fileoff_t startoff, |
| 6157 | xfs_fsblock_t startblock, |
Darrick J. Wong | e1a4e37 | 2017-06-14 21:25:57 -0700 | [diff] [blame] | 6158 | xfs_filblks_t *blockcount, |
Darrick J. Wong | 9f3afb5 | 2016-10-03 09:11:28 -0700 | [diff] [blame] | 6159 | xfs_exntst_t state) |
| 6160 | { |
Darrick J. Wong | e1a4e37 | 2017-06-14 21:25:57 -0700 | [diff] [blame] | 6161 | xfs_fsblock_t firstfsb; |
| 6162 | int error = 0; |
Darrick J. Wong | 9f3afb5 | 2016-10-03 09:11:28 -0700 | [diff] [blame] | 6163 | |
Darrick J. Wong | 4c1a67b | 2017-07-17 14:30:51 -0700 | [diff] [blame] | 6164 | /* |
| 6165 | * firstfsb is tied to the transaction lifetime and is used to |
| 6166 | * ensure correct AG locking order and schedule work item |
| 6167 | * continuations. XFS_BUI_MAX_FAST_EXTENTS (== 1) restricts us |
| 6168 | * to only making one bmap call per transaction, so it should |
| 6169 | * be safe to have it as a local variable here. |
| 6170 | */ |
| 6171 | firstfsb = NULLFSBLOCK; |
| 6172 | |
Darrick J. Wong | 9f3afb5 | 2016-10-03 09:11:28 -0700 | [diff] [blame] | 6173 | trace_xfs_bmap_deferred(tp->t_mountp, |
| 6174 | XFS_FSB_TO_AGNO(tp->t_mountp, startblock), type, |
| 6175 | XFS_FSB_TO_AGBNO(tp->t_mountp, startblock), |
Darrick J. Wong | e1a4e37 | 2017-06-14 21:25:57 -0700 | [diff] [blame] | 6176 | ip->i_ino, whichfork, startoff, *blockcount, state); |
Darrick J. Wong | 9f3afb5 | 2016-10-03 09:11:28 -0700 | [diff] [blame] | 6177 | |
Christoph Hellwig | 39e07da | 2017-04-11 16:45:53 -0700 | [diff] [blame] | 6178 | if (WARN_ON_ONCE(whichfork != XFS_DATA_FORK)) |
Darrick J. Wong | 9f3afb5 | 2016-10-03 09:11:28 -0700 | [diff] [blame] | 6179 | return -EFSCORRUPTED; |
Darrick J. Wong | 9f3afb5 | 2016-10-03 09:11:28 -0700 | [diff] [blame] | 6180 | |
| 6181 | if (XFS_TEST_ERROR(false, tp->t_mountp, |
Darrick J. Wong | 9e24cfd | 2017-06-20 17:54:47 -0700 | [diff] [blame] | 6182 | XFS_ERRTAG_BMAP_FINISH_ONE)) |
Darrick J. Wong | 9f3afb5 | 2016-10-03 09:11:28 -0700 | [diff] [blame] | 6183 | return -EIO; |
| 6184 | |
| 6185 | switch (type) { |
| 6186 | case XFS_BMAP_MAP: |
Brian Foster | ff3edf2 | 2018-07-11 22:26:14 -0700 | [diff] [blame] | 6187 | ASSERT(dfops == tp->t_dfops); |
Darrick J. Wong | e1a4e37 | 2017-06-14 21:25:57 -0700 | [diff] [blame] | 6188 | error = xfs_bmapi_remap(tp, ip, startoff, *blockcount, |
Brian Foster | ff3edf2 | 2018-07-11 22:26:14 -0700 | [diff] [blame] | 6189 | startblock, 0); |
Darrick J. Wong | e1a4e37 | 2017-06-14 21:25:57 -0700 | [diff] [blame] | 6190 | *blockcount = 0; |
Darrick J. Wong | 9f3afb5 | 2016-10-03 09:11:28 -0700 | [diff] [blame] | 6191 | break; |
| 6192 | case XFS_BMAP_UNMAP: |
Darrick J. Wong | e1a4e37 | 2017-06-14 21:25:57 -0700 | [diff] [blame] | 6193 | error = __xfs_bunmapi(tp, ip, startoff, blockcount, |
Brian Foster | ccd9d91 | 2018-07-11 22:26:13 -0700 | [diff] [blame] | 6194 | XFS_BMAPI_REMAP, 1, &firstfsb); |
Darrick J. Wong | 9f3afb5 | 2016-10-03 09:11:28 -0700 | [diff] [blame] | 6195 | break; |
| 6196 | default: |
| 6197 | ASSERT(0); |
| 6198 | error = -EFSCORRUPTED; |
| 6199 | } |
| 6200 | |
| 6201 | return error; |
| 6202 | } |
Darrick J. Wong | 30b0984 | 2018-03-23 10:06:52 -0700 | [diff] [blame] | 6203 | |
| 6204 | /* Check that an inode's extent does not have invalid flags or bad ranges. */ |
| 6205 | xfs_failaddr_t |
| 6206 | xfs_bmap_validate_extent( |
| 6207 | struct xfs_inode *ip, |
| 6208 | int whichfork, |
| 6209 | struct xfs_bmbt_irec *irec) |
| 6210 | { |
| 6211 | struct xfs_mount *mp = ip->i_mount; |
| 6212 | xfs_fsblock_t endfsb; |
| 6213 | bool isrt; |
| 6214 | |
| 6215 | isrt = XFS_IS_REALTIME_INODE(ip); |
| 6216 | endfsb = irec->br_startblock + irec->br_blockcount - 1; |
| 6217 | if (isrt) { |
| 6218 | if (!xfs_verify_rtbno(mp, irec->br_startblock)) |
| 6219 | return __this_address; |
| 6220 | if (!xfs_verify_rtbno(mp, endfsb)) |
| 6221 | return __this_address; |
| 6222 | } else { |
| 6223 | if (!xfs_verify_fsbno(mp, irec->br_startblock)) |
| 6224 | return __this_address; |
| 6225 | if (!xfs_verify_fsbno(mp, endfsb)) |
| 6226 | return __this_address; |
| 6227 | if (XFS_FSB_TO_AGNO(mp, irec->br_startblock) != |
| 6228 | XFS_FSB_TO_AGNO(mp, endfsb)) |
| 6229 | return __this_address; |
| 6230 | } |
| 6231 | if (irec->br_state != XFS_EXT_NORM) { |
| 6232 | if (whichfork != XFS_DATA_FORK) |
| 6233 | return __this_address; |
| 6234 | if (!xfs_sb_version_hasextflgbit(&mp->m_sb)) |
| 6235 | return __this_address; |
| 6236 | } |
| 6237 | return NULL; |
| 6238 | } |