Dave Chinner | 0b61f8a | 2018-06-05 19:42:14 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Darrick J. Wong | 3993bae | 2016-10-03 09:11:32 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2016 Oracle. All Rights Reserved. |
Darrick J. Wong | 3993bae | 2016-10-03 09:11:32 -0700 | [diff] [blame] | 4 | * Author: Darrick J. Wong <darrick.wong@oracle.com> |
Darrick J. Wong | 3993bae | 2016-10-03 09:11:32 -0700 | [diff] [blame] | 5 | */ |
| 6 | #include "xfs.h" |
| 7 | #include "xfs_fs.h" |
| 8 | #include "xfs_shared.h" |
| 9 | #include "xfs_format.h" |
| 10 | #include "xfs_log_format.h" |
| 11 | #include "xfs_trans_resv.h" |
| 12 | #include "xfs_mount.h" |
| 13 | #include "xfs_defer.h" |
| 14 | #include "xfs_da_format.h" |
| 15 | #include "xfs_da_btree.h" |
| 16 | #include "xfs_inode.h" |
| 17 | #include "xfs_trans.h" |
| 18 | #include "xfs_inode_item.h" |
| 19 | #include "xfs_bmap.h" |
| 20 | #include "xfs_bmap_util.h" |
| 21 | #include "xfs_error.h" |
| 22 | #include "xfs_dir2.h" |
| 23 | #include "xfs_dir2_priv.h" |
| 24 | #include "xfs_ioctl.h" |
| 25 | #include "xfs_trace.h" |
| 26 | #include "xfs_log.h" |
| 27 | #include "xfs_icache.h" |
| 28 | #include "xfs_pnfs.h" |
Darrick J. Wong | 174edb0 | 2016-10-03 09:11:39 -0700 | [diff] [blame] | 29 | #include "xfs_btree.h" |
Darrick J. Wong | 3993bae | 2016-10-03 09:11:32 -0700 | [diff] [blame] | 30 | #include "xfs_refcount_btree.h" |
| 31 | #include "xfs_refcount.h" |
| 32 | #include "xfs_bmap_btree.h" |
| 33 | #include "xfs_trans_space.h" |
| 34 | #include "xfs_bit.h" |
| 35 | #include "xfs_alloc.h" |
| 36 | #include "xfs_quota_defs.h" |
| 37 | #include "xfs_quota.h" |
Darrick J. Wong | 3993bae | 2016-10-03 09:11:32 -0700 | [diff] [blame] | 38 | #include "xfs_reflink.h" |
Darrick J. Wong | 2a06705 | 2016-10-03 09:11:33 -0700 | [diff] [blame] | 39 | #include "xfs_iomap.h" |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 40 | #include "xfs_rmap_btree.h" |
Darrick J. Wong | 6fa164b | 2016-10-03 09:11:45 -0700 | [diff] [blame] | 41 | #include "xfs_sb.h" |
| 42 | #include "xfs_ag_resv.h" |
Darrick J. Wong | 3993bae | 2016-10-03 09:11:32 -0700 | [diff] [blame] | 43 | |
| 44 | /* |
| 45 | * Copy on Write of Shared Blocks |
| 46 | * |
| 47 | * XFS must preserve "the usual" file semantics even when two files share |
| 48 | * the same physical blocks. This means that a write to one file must not |
| 49 | * alter the blocks in a different file; the way that we'll do that is |
| 50 | * through the use of a copy-on-write mechanism. At a high level, that |
| 51 | * means that when we want to write to a shared block, we allocate a new |
| 52 | * block, write the data to the new block, and if that succeeds we map the |
| 53 | * new block into the file. |
| 54 | * |
| 55 | * XFS provides a "delayed allocation" mechanism that defers the allocation |
| 56 | * of disk blocks to dirty-but-not-yet-mapped file blocks as long as |
| 57 | * possible. This reduces fragmentation by enabling the filesystem to ask |
| 58 | * for bigger chunks less often, which is exactly what we want for CoW. |
| 59 | * |
| 60 | * The delalloc mechanism begins when the kernel wants to make a block |
| 61 | * writable (write_begin or page_mkwrite). If the offset is not mapped, we |
| 62 | * create a delalloc mapping, which is a regular in-core extent, but without |
| 63 | * a real startblock. (For delalloc mappings, the startblock encodes both |
| 64 | * a flag that this is a delalloc mapping, and a worst-case estimate of how |
| 65 | * many blocks might be required to put the mapping into the BMBT.) delalloc |
| 66 | * mappings are a reservation against the free space in the filesystem; |
| 67 | * adjacent mappings can also be combined into fewer larger mappings. |
| 68 | * |
Darrick J. Wong | 5eda430 | 2017-02-02 15:14:02 -0800 | [diff] [blame] | 69 | * As an optimization, the CoW extent size hint (cowextsz) creates |
| 70 | * outsized aligned delalloc reservations in the hope of landing out of |
| 71 | * order nearby CoW writes in a single extent on disk, thereby reducing |
| 72 | * fragmentation and improving future performance. |
| 73 | * |
| 74 | * D: --RRRRRRSSSRRRRRRRR--- (data fork) |
| 75 | * C: ------DDDDDDD--------- (CoW fork) |
| 76 | * |
Darrick J. Wong | 3993bae | 2016-10-03 09:11:32 -0700 | [diff] [blame] | 77 | * When dirty pages are being written out (typically in writepage), the |
Darrick J. Wong | 5eda430 | 2017-02-02 15:14:02 -0800 | [diff] [blame] | 78 | * delalloc reservations are converted into unwritten mappings by |
| 79 | * allocating blocks and replacing the delalloc mapping with real ones. |
| 80 | * A delalloc mapping can be replaced by several unwritten ones if the |
| 81 | * free space is fragmented. |
| 82 | * |
| 83 | * D: --RRRRRRSSSRRRRRRRR--- |
| 84 | * C: ------UUUUUUU--------- |
Darrick J. Wong | 3993bae | 2016-10-03 09:11:32 -0700 | [diff] [blame] | 85 | * |
| 86 | * We want to adapt the delalloc mechanism for copy-on-write, since the |
| 87 | * write paths are similar. The first two steps (creating the reservation |
| 88 | * and allocating the blocks) are exactly the same as delalloc except that |
| 89 | * the mappings must be stored in a separate CoW fork because we do not want |
| 90 | * to disturb the mapping in the data fork until we're sure that the write |
| 91 | * succeeded. IO completion in this case is the process of removing the old |
| 92 | * mapping from the data fork and moving the new mapping from the CoW fork to |
| 93 | * the data fork. This will be discussed shortly. |
| 94 | * |
| 95 | * For now, unaligned directio writes will be bounced back to the page cache. |
| 96 | * Block-aligned directio writes will use the same mechanism as buffered |
| 97 | * writes. |
| 98 | * |
Darrick J. Wong | 5eda430 | 2017-02-02 15:14:02 -0800 | [diff] [blame] | 99 | * Just prior to submitting the actual disk write requests, we convert |
| 100 | * the extents representing the range of the file actually being written |
| 101 | * (as opposed to extra pieces created for the cowextsize hint) to real |
| 102 | * extents. This will become important in the next step: |
| 103 | * |
| 104 | * D: --RRRRRRSSSRRRRRRRR--- |
| 105 | * C: ------UUrrUUU--------- |
| 106 | * |
Darrick J. Wong | 3993bae | 2016-10-03 09:11:32 -0700 | [diff] [blame] | 107 | * CoW remapping must be done after the data block write completes, |
| 108 | * because we don't want to destroy the old data fork map until we're sure |
| 109 | * the new block has been written. Since the new mappings are kept in a |
| 110 | * separate fork, we can simply iterate these mappings to find the ones |
| 111 | * that cover the file blocks that we just CoW'd. For each extent, simply |
| 112 | * unmap the corresponding range in the data fork, map the new range into |
Darrick J. Wong | 5eda430 | 2017-02-02 15:14:02 -0800 | [diff] [blame] | 113 | * the data fork, and remove the extent from the CoW fork. Because of |
| 114 | * the presence of the cowextsize hint, however, we must be careful |
| 115 | * only to remap the blocks that we've actually written out -- we must |
| 116 | * never remap delalloc reservations nor CoW staging blocks that have |
| 117 | * yet to be written. This corresponds exactly to the real extents in |
| 118 | * the CoW fork: |
| 119 | * |
| 120 | * D: --RRRRRRrrSRRRRRRRR--- |
| 121 | * C: ------UU--UUU--------- |
Darrick J. Wong | 3993bae | 2016-10-03 09:11:32 -0700 | [diff] [blame] | 122 | * |
| 123 | * Since the remapping operation can be applied to an arbitrary file |
| 124 | * range, we record the need for the remap step as a flag in the ioend |
| 125 | * instead of declaring a new IO type. This is required for direct io |
| 126 | * because we only have ioend for the whole dio, and we have to be able to |
| 127 | * remember the presence of unwritten blocks and CoW blocks with a single |
| 128 | * ioend structure. Better yet, the more ground we can cover with one |
| 129 | * ioend, the better. |
| 130 | */ |
Darrick J. Wong | 2a06705 | 2016-10-03 09:11:33 -0700 | [diff] [blame] | 131 | |
| 132 | /* |
| 133 | * Given an AG extent, find the lowest-numbered run of shared blocks |
| 134 | * within that range and return the range in fbno/flen. If |
| 135 | * find_end_of_shared is true, return the longest contiguous extent of |
| 136 | * shared blocks. If there are no shared extents, fbno and flen will |
| 137 | * be set to NULLAGBLOCK and 0, respectively. |
| 138 | */ |
| 139 | int |
| 140 | xfs_reflink_find_shared( |
| 141 | struct xfs_mount *mp, |
Darrick J. Wong | 92ff728 | 2017-06-16 11:00:10 -0700 | [diff] [blame] | 142 | struct xfs_trans *tp, |
Darrick J. Wong | 2a06705 | 2016-10-03 09:11:33 -0700 | [diff] [blame] | 143 | xfs_agnumber_t agno, |
| 144 | xfs_agblock_t agbno, |
| 145 | xfs_extlen_t aglen, |
| 146 | xfs_agblock_t *fbno, |
| 147 | xfs_extlen_t *flen, |
| 148 | bool find_end_of_shared) |
| 149 | { |
| 150 | struct xfs_buf *agbp; |
| 151 | struct xfs_btree_cur *cur; |
| 152 | int error; |
| 153 | |
Darrick J. Wong | 92ff728 | 2017-06-16 11:00:10 -0700 | [diff] [blame] | 154 | error = xfs_alloc_read_agf(mp, tp, agno, 0, &agbp); |
Darrick J. Wong | 2a06705 | 2016-10-03 09:11:33 -0700 | [diff] [blame] | 155 | if (error) |
| 156 | return error; |
Darrick J. Wong | 10479e2 | 2017-07-17 14:30:57 -0700 | [diff] [blame] | 157 | if (!agbp) |
| 158 | return -ENOMEM; |
Darrick J. Wong | 2a06705 | 2016-10-03 09:11:33 -0700 | [diff] [blame] | 159 | |
Brian Foster | ed7ef8e | 2018-07-11 22:26:17 -0700 | [diff] [blame] | 160 | cur = xfs_refcountbt_init_cursor(mp, tp, agbp, agno); |
Darrick J. Wong | 2a06705 | 2016-10-03 09:11:33 -0700 | [diff] [blame] | 161 | |
| 162 | error = xfs_refcount_find_shared(cur, agbno, aglen, fbno, flen, |
| 163 | find_end_of_shared); |
| 164 | |
Darrick J. Wong | 0b04b6b8 | 2018-07-19 12:26:31 -0700 | [diff] [blame] | 165 | xfs_btree_del_cursor(cur, error); |
Darrick J. Wong | 2a06705 | 2016-10-03 09:11:33 -0700 | [diff] [blame] | 166 | |
Darrick J. Wong | 92ff728 | 2017-06-16 11:00:10 -0700 | [diff] [blame] | 167 | xfs_trans_brelse(tp, agbp); |
Darrick J. Wong | 2a06705 | 2016-10-03 09:11:33 -0700 | [diff] [blame] | 168 | return error; |
| 169 | } |
| 170 | |
| 171 | /* |
| 172 | * Trim the mapping to the next block where there's a change in the |
| 173 | * shared/unshared status. More specifically, this means that we |
| 174 | * find the lowest-numbered extent of shared blocks that coincides with |
| 175 | * the given block mapping. If the shared extent overlaps the start of |
| 176 | * the mapping, trim the mapping to the end of the shared extent. If |
| 177 | * the shared region intersects the mapping, trim the mapping to the |
| 178 | * start of the shared extent. If there are no shared regions that |
| 179 | * overlap, just return the original extent. |
| 180 | */ |
| 181 | int |
| 182 | xfs_reflink_trim_around_shared( |
| 183 | struct xfs_inode *ip, |
| 184 | struct xfs_bmbt_irec *irec, |
Christoph Hellwig | d392bc8 | 2018-10-18 17:19:48 +1100 | [diff] [blame] | 185 | bool *shared) |
Darrick J. Wong | 2a06705 | 2016-10-03 09:11:33 -0700 | [diff] [blame] | 186 | { |
| 187 | xfs_agnumber_t agno; |
| 188 | xfs_agblock_t agbno; |
| 189 | xfs_extlen_t aglen; |
| 190 | xfs_agblock_t fbno; |
| 191 | xfs_extlen_t flen; |
| 192 | int error = 0; |
| 193 | |
| 194 | /* Holes, unwritten, and delalloc extents cannot be shared */ |
Christoph Hellwig | 9c4f29d | 2017-03-28 14:53:35 -0700 | [diff] [blame] | 195 | if (!xfs_is_reflink_inode(ip) || !xfs_bmap_is_real_extent(irec)) { |
Darrick J. Wong | 2a06705 | 2016-10-03 09:11:33 -0700 | [diff] [blame] | 196 | *shared = false; |
| 197 | return 0; |
| 198 | } |
| 199 | |
| 200 | trace_xfs_reflink_trim_around_shared(ip, irec); |
| 201 | |
| 202 | agno = XFS_FSB_TO_AGNO(ip->i_mount, irec->br_startblock); |
| 203 | agbno = XFS_FSB_TO_AGBNO(ip->i_mount, irec->br_startblock); |
| 204 | aglen = irec->br_blockcount; |
| 205 | |
Darrick J. Wong | 92ff728 | 2017-06-16 11:00:10 -0700 | [diff] [blame] | 206 | error = xfs_reflink_find_shared(ip->i_mount, NULL, agno, agbno, |
Darrick J. Wong | 2a06705 | 2016-10-03 09:11:33 -0700 | [diff] [blame] | 207 | aglen, &fbno, &flen, true); |
| 208 | if (error) |
| 209 | return error; |
| 210 | |
Christoph Hellwig | d392bc8 | 2018-10-18 17:19:48 +1100 | [diff] [blame] | 211 | *shared = false; |
Darrick J. Wong | 2a06705 | 2016-10-03 09:11:33 -0700 | [diff] [blame] | 212 | if (fbno == NULLAGBLOCK) { |
| 213 | /* No shared blocks at all. */ |
| 214 | return 0; |
| 215 | } else if (fbno == agbno) { |
| 216 | /* |
| 217 | * The start of this extent is shared. Truncate the |
| 218 | * mapping at the end of the shared region so that a |
| 219 | * subsequent iteration starts at the start of the |
| 220 | * unshared region. |
| 221 | */ |
| 222 | irec->br_blockcount = flen; |
| 223 | *shared = true; |
Darrick J. Wong | 2a06705 | 2016-10-03 09:11:33 -0700 | [diff] [blame] | 224 | return 0; |
| 225 | } else { |
| 226 | /* |
| 227 | * There's a shared extent midway through this extent. |
| 228 | * Truncate the mapping at the start of the shared |
| 229 | * extent so that a subsequent iteration starts at the |
| 230 | * start of the shared region. |
| 231 | */ |
| 232 | irec->br_blockcount = fbno - agbno; |
Darrick J. Wong | 2a06705 | 2016-10-03 09:11:33 -0700 | [diff] [blame] | 233 | return 0; |
| 234 | } |
| 235 | } |
| 236 | |
Christoph Hellwig | 26b91c7 | 2019-02-18 09:38:48 -0800 | [diff] [blame^] | 237 | static int |
| 238 | xfs_reflink_convert_cow_locked( |
| 239 | struct xfs_inode *ip, |
| 240 | xfs_fileoff_t offset_fsb, |
| 241 | xfs_filblks_t count_fsb) |
Darrick J. Wong | 5eda430 | 2017-02-02 15:14:02 -0800 | [diff] [blame] | 242 | { |
Christoph Hellwig | 26b91c7 | 2019-02-18 09:38:48 -0800 | [diff] [blame^] | 243 | struct xfs_iext_cursor icur; |
| 244 | struct xfs_bmbt_irec got; |
| 245 | struct xfs_btree_cur *dummy_cur = NULL; |
| 246 | int dummy_logflags; |
| 247 | int error; |
Darrick J. Wong | 5eda430 | 2017-02-02 15:14:02 -0800 | [diff] [blame] | 248 | |
Christoph Hellwig | 26b91c7 | 2019-02-18 09:38:48 -0800 | [diff] [blame^] | 249 | if (!xfs_iext_lookup_extent(ip, ip->i_cowfp, offset_fsb, &icur, &got)) |
Darrick J. Wong | 5eda430 | 2017-02-02 15:14:02 -0800 | [diff] [blame] | 250 | return 0; |
| 251 | |
Christoph Hellwig | 26b91c7 | 2019-02-18 09:38:48 -0800 | [diff] [blame^] | 252 | do { |
| 253 | if (got.br_startoff >= offset_fsb + count_fsb) |
| 254 | break; |
| 255 | if (got.br_state == XFS_EXT_NORM) |
| 256 | continue; |
| 257 | if (WARN_ON_ONCE(isnullstartblock(got.br_startblock))) |
| 258 | return -EIO; |
| 259 | |
| 260 | xfs_trim_extent(&got, offset_fsb, count_fsb); |
| 261 | if (!got.br_blockcount) |
| 262 | continue; |
| 263 | |
| 264 | got.br_state = XFS_EXT_NORM; |
| 265 | error = xfs_bmap_add_extent_unwritten_real(NULL, ip, |
| 266 | XFS_COW_FORK, &icur, &dummy_cur, &got, |
| 267 | &dummy_logflags); |
| 268 | if (error) |
| 269 | return error; |
| 270 | } while (xfs_iext_next_extent(ip->i_cowfp, &icur, &got)); |
| 271 | |
| 272 | return error; |
Darrick J. Wong | 5eda430 | 2017-02-02 15:14:02 -0800 | [diff] [blame] | 273 | } |
| 274 | |
| 275 | /* Convert all of the unwritten CoW extents in a file's range to real ones. */ |
| 276 | int |
| 277 | xfs_reflink_convert_cow( |
| 278 | struct xfs_inode *ip, |
| 279 | xfs_off_t offset, |
| 280 | xfs_off_t count) |
| 281 | { |
Darrick J. Wong | 5eda430 | 2017-02-02 15:14:02 -0800 | [diff] [blame] | 282 | struct xfs_mount *mp = ip->i_mount; |
Darrick J. Wong | 5eda430 | 2017-02-02 15:14:02 -0800 | [diff] [blame] | 283 | xfs_fileoff_t offset_fsb = XFS_B_TO_FSBT(mp, offset); |
| 284 | xfs_fileoff_t end_fsb = XFS_B_TO_FSB(mp, offset + count); |
Christoph Hellwig | b121459 | 2017-11-03 10:34:44 -0700 | [diff] [blame] | 285 | xfs_filblks_t count_fsb = end_fsb - offset_fsb; |
Christoph Hellwig | 26b91c7 | 2019-02-18 09:38:48 -0800 | [diff] [blame^] | 286 | int error; |
Christoph Hellwig | b121459 | 2017-11-03 10:34:44 -0700 | [diff] [blame] | 287 | |
| 288 | ASSERT(count != 0); |
Darrick J. Wong | 5eda430 | 2017-02-02 15:14:02 -0800 | [diff] [blame] | 289 | |
| 290 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
Christoph Hellwig | 26b91c7 | 2019-02-18 09:38:48 -0800 | [diff] [blame^] | 291 | error = xfs_reflink_convert_cow_locked(ip, offset_fsb, count_fsb); |
Darrick J. Wong | 5eda430 | 2017-02-02 15:14:02 -0800 | [diff] [blame] | 292 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 293 | return error; |
| 294 | } |
| 295 | |
Dave Chinner | df30707 | 2018-09-29 13:47:15 +1000 | [diff] [blame] | 296 | /* |
| 297 | * Find the extent that maps the given range in the COW fork. Even if the extent |
| 298 | * is not shared we might have a preallocation for it in the COW fork. If so we |
| 299 | * use it that rather than trigger a new allocation. |
| 300 | */ |
| 301 | static int |
| 302 | xfs_find_trim_cow_extent( |
| 303 | struct xfs_inode *ip, |
| 304 | struct xfs_bmbt_irec *imap, |
| 305 | bool *shared, |
| 306 | bool *found) |
| 307 | { |
| 308 | xfs_fileoff_t offset_fsb = imap->br_startoff; |
| 309 | xfs_filblks_t count_fsb = imap->br_blockcount; |
| 310 | struct xfs_iext_cursor icur; |
| 311 | struct xfs_bmbt_irec got; |
Dave Chinner | df30707 | 2018-09-29 13:47:15 +1000 | [diff] [blame] | 312 | |
| 313 | *found = false; |
| 314 | |
| 315 | /* |
| 316 | * If we don't find an overlapping extent, trim the range we need to |
| 317 | * allocate to fit the hole we found. |
| 318 | */ |
Christoph Hellwig | 032dc92 | 2018-10-18 17:19:58 +1100 | [diff] [blame] | 319 | if (!xfs_iext_lookup_extent(ip, ip->i_cowfp, offset_fsb, &icur, &got)) |
| 320 | got.br_startoff = offset_fsb + count_fsb; |
| 321 | if (got.br_startoff > offset_fsb) { |
| 322 | xfs_trim_extent(imap, imap->br_startoff, |
| 323 | got.br_startoff - imap->br_startoff); |
Christoph Hellwig | d392bc8 | 2018-10-18 17:19:48 +1100 | [diff] [blame] | 324 | return xfs_reflink_trim_around_shared(ip, imap, shared); |
Christoph Hellwig | 032dc92 | 2018-10-18 17:19:58 +1100 | [diff] [blame] | 325 | } |
Dave Chinner | df30707 | 2018-09-29 13:47:15 +1000 | [diff] [blame] | 326 | |
| 327 | *shared = true; |
| 328 | if (isnullstartblock(got.br_startblock)) { |
| 329 | xfs_trim_extent(imap, got.br_startoff, got.br_blockcount); |
| 330 | return 0; |
| 331 | } |
| 332 | |
| 333 | /* real extent found - no need to allocate */ |
| 334 | xfs_trim_extent(&got, offset_fsb, count_fsb); |
| 335 | *imap = got; |
| 336 | *found = true; |
| 337 | return 0; |
| 338 | } |
| 339 | |
Darrick J. Wong | 0613f16 | 2016-10-03 09:11:37 -0700 | [diff] [blame] | 340 | /* Allocate all CoW reservations covering a range of blocks in a file. */ |
Christoph Hellwig | 3c68d44 | 2017-02-06 10:51:03 -0800 | [diff] [blame] | 341 | int |
| 342 | xfs_reflink_allocate_cow( |
Darrick J. Wong | 0613f16 | 2016-10-03 09:11:37 -0700 | [diff] [blame] | 343 | struct xfs_inode *ip, |
Christoph Hellwig | 3c68d44 | 2017-02-06 10:51:03 -0800 | [diff] [blame] | 344 | struct xfs_bmbt_irec *imap, |
| 345 | bool *shared, |
Christoph Hellwig | 78f0cc9 | 2019-02-18 09:38:46 -0800 | [diff] [blame] | 346 | uint *lockmode, |
| 347 | unsigned iomap_flags) |
Darrick J. Wong | 0613f16 | 2016-10-03 09:11:37 -0700 | [diff] [blame] | 348 | { |
| 349 | struct xfs_mount *mp = ip->i_mount; |
Christoph Hellwig | 3c68d44 | 2017-02-06 10:51:03 -0800 | [diff] [blame] | 350 | xfs_fileoff_t offset_fsb = imap->br_startoff; |
| 351 | xfs_filblks_t count_fsb = imap->br_blockcount; |
Dave Chinner | df30707 | 2018-09-29 13:47:15 +1000 | [diff] [blame] | 352 | struct xfs_trans *tp; |
Christoph Hellwig | 3c68d44 | 2017-02-06 10:51:03 -0800 | [diff] [blame] | 353 | int nimaps, error = 0; |
Dave Chinner | df30707 | 2018-09-29 13:47:15 +1000 | [diff] [blame] | 354 | bool found; |
Christoph Hellwig | a14234c | 2017-02-06 10:50:49 -0800 | [diff] [blame] | 355 | xfs_filblks_t resaligned; |
Christoph Hellwig | 3c68d44 | 2017-02-06 10:51:03 -0800 | [diff] [blame] | 356 | xfs_extlen_t resblks = 0; |
Darrick J. Wong | 0613f16 | 2016-10-03 09:11:37 -0700 | [diff] [blame] | 357 | |
Christoph Hellwig | c7dbe3f | 2018-03-13 23:15:31 -0700 | [diff] [blame] | 358 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL)); |
Dave Chinner | df30707 | 2018-09-29 13:47:15 +1000 | [diff] [blame] | 359 | ASSERT(xfs_is_reflink_inode(ip)); |
| 360 | |
| 361 | error = xfs_find_trim_cow_extent(ip, imap, shared, &found); |
| 362 | if (error || !*shared) |
| 363 | return error; |
| 364 | if (found) |
| 365 | goto convert; |
| 366 | |
| 367 | resaligned = xfs_aligned_fsb_count(imap->br_startoff, |
| 368 | imap->br_blockcount, xfs_get_cowextsz_hint(ip)); |
| 369 | resblks = XFS_DIOSTRAT_SPACE_RES(mp, resaligned); |
| 370 | |
| 371 | xfs_iunlock(ip, *lockmode); |
| 372 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks, 0, 0, &tp); |
| 373 | *lockmode = XFS_ILOCK_EXCL; |
| 374 | xfs_ilock(ip, *lockmode); |
| 375 | |
| 376 | if (error) |
| 377 | return error; |
| 378 | |
| 379 | error = xfs_qm_dqattach_locked(ip, false); |
| 380 | if (error) |
| 381 | goto out_trans_cancel; |
Darrick J. Wong | 0613f16 | 2016-10-03 09:11:37 -0700 | [diff] [blame] | 382 | |
Christoph Hellwig | a14234c | 2017-02-06 10:50:49 -0800 | [diff] [blame] | 383 | /* |
Dave Chinner | df30707 | 2018-09-29 13:47:15 +1000 | [diff] [blame] | 384 | * Check for an overlapping extent again now that we dropped the ilock. |
Christoph Hellwig | a14234c | 2017-02-06 10:50:49 -0800 | [diff] [blame] | 385 | */ |
Dave Chinner | df30707 | 2018-09-29 13:47:15 +1000 | [diff] [blame] | 386 | error = xfs_find_trim_cow_extent(ip, imap, shared, &found); |
| 387 | if (error || !*shared) |
| 388 | goto out_trans_cancel; |
| 389 | if (found) { |
| 390 | xfs_trans_cancel(tp); |
| 391 | goto convert; |
Darrick J. Wong | 0613f16 | 2016-10-03 09:11:37 -0700 | [diff] [blame] | 392 | } |
| 393 | |
Christoph Hellwig | a14234c | 2017-02-06 10:50:49 -0800 | [diff] [blame] | 394 | error = xfs_trans_reserve_quota_nblks(tp, ip, resblks, 0, |
| 395 | XFS_QMOPT_RES_REGBLKS); |
Darrick J. Wong | 0613f16 | 2016-10-03 09:11:37 -0700 | [diff] [blame] | 396 | if (error) |
Dave Chinner | df30707 | 2018-09-29 13:47:15 +1000 | [diff] [blame] | 397 | goto out_trans_cancel; |
Darrick J. Wong | 0613f16 | 2016-10-03 09:11:37 -0700 | [diff] [blame] | 398 | |
Christoph Hellwig | a14234c | 2017-02-06 10:50:49 -0800 | [diff] [blame] | 399 | xfs_trans_ijoin(tp, ip, 0); |
| 400 | |
Christoph Hellwig | a14234c | 2017-02-06 10:50:49 -0800 | [diff] [blame] | 401 | /* Allocate the entire reservation as unwritten blocks. */ |
Dave Chinner | df30707 | 2018-09-29 13:47:15 +1000 | [diff] [blame] | 402 | nimaps = 1; |
Christoph Hellwig | 3c68d44 | 2017-02-06 10:51:03 -0800 | [diff] [blame] | 403 | error = xfs_bmapi_write(tp, ip, imap->br_startoff, imap->br_blockcount, |
Brian Foster | 650919f | 2018-07-11 22:26:23 -0700 | [diff] [blame] | 404 | XFS_BMAPI_COWFORK | XFS_BMAPI_PREALLOC, |
Brian Foster | a7beabe | 2018-07-11 22:26:25 -0700 | [diff] [blame] | 405 | resblks, imap, &nimaps); |
Christoph Hellwig | a14234c | 2017-02-06 10:50:49 -0800 | [diff] [blame] | 406 | if (error) |
Dave Chinner | df30707 | 2018-09-29 13:47:15 +1000 | [diff] [blame] | 407 | goto out_unreserve; |
Christoph Hellwig | a14234c | 2017-02-06 10:50:49 -0800 | [diff] [blame] | 408 | |
Darrick J. Wong | 86d692b | 2017-12-14 15:46:06 -0800 | [diff] [blame] | 409 | xfs_inode_set_cowblocks_tag(ip); |
Darrick J. Wong | 0613f16 | 2016-10-03 09:11:37 -0700 | [diff] [blame] | 410 | error = xfs_trans_commit(tp); |
Christoph Hellwig | a14234c | 2017-02-06 10:50:49 -0800 | [diff] [blame] | 411 | if (error) |
Christoph Hellwig | 3c68d44 | 2017-02-06 10:51:03 -0800 | [diff] [blame] | 412 | return error; |
Darrick J. Wong | 9f37bd1 | 2018-01-26 11:37:44 -0800 | [diff] [blame] | 413 | |
| 414 | /* |
| 415 | * Allocation succeeded but the requested range was not even partially |
| 416 | * satisfied? Bail out! |
| 417 | */ |
| 418 | if (nimaps == 0) |
| 419 | return -ENOSPC; |
Christoph Hellwig | 3c68d44 | 2017-02-06 10:51:03 -0800 | [diff] [blame] | 420 | convert: |
Christoph Hellwig | 26b91c7 | 2019-02-18 09:38:48 -0800 | [diff] [blame^] | 421 | xfs_trim_extent(imap, offset_fsb, count_fsb); |
Christoph Hellwig | 78f0cc9 | 2019-02-18 09:38:46 -0800 | [diff] [blame] | 422 | /* |
| 423 | * COW fork extents are supposed to remain unwritten until we're ready |
| 424 | * to initiate a disk write. For direct I/O we are going to write the |
| 425 | * data and need the conversion, but for buffered writes we're done. |
| 426 | */ |
Christoph Hellwig | 26b91c7 | 2019-02-18 09:38:48 -0800 | [diff] [blame^] | 427 | if (!(iomap_flags & IOMAP_DIRECT) || imap->br_state == XFS_EXT_NORM) |
Christoph Hellwig | 78f0cc9 | 2019-02-18 09:38:46 -0800 | [diff] [blame] | 428 | return 0; |
Christoph Hellwig | 26b91c7 | 2019-02-18 09:38:48 -0800 | [diff] [blame^] | 429 | trace_xfs_reflink_convert_cow(ip, imap); |
| 430 | return xfs_reflink_convert_cow_locked(ip, offset_fsb, count_fsb); |
Dave Chinner | df30707 | 2018-09-29 13:47:15 +1000 | [diff] [blame] | 431 | |
| 432 | out_unreserve: |
Christoph Hellwig | a14234c | 2017-02-06 10:50:49 -0800 | [diff] [blame] | 433 | xfs_trans_unreserve_quota_nblks(tp, ip, (long)resblks, 0, |
| 434 | XFS_QMOPT_RES_REGBLKS); |
Dave Chinner | df30707 | 2018-09-29 13:47:15 +1000 | [diff] [blame] | 435 | out_trans_cancel: |
| 436 | xfs_trans_cancel(tp); |
Christoph Hellwig | 3c68d44 | 2017-02-06 10:51:03 -0800 | [diff] [blame] | 437 | return error; |
Darrick J. Wong | 0613f16 | 2016-10-03 09:11:37 -0700 | [diff] [blame] | 438 | } |
| 439 | |
Darrick J. Wong | ef47366 | 2016-10-03 09:11:34 -0700 | [diff] [blame] | 440 | /* |
Christoph Hellwig | 3802a34 | 2017-03-07 16:45:58 -0800 | [diff] [blame] | 441 | * Cancel CoW reservations for some block range of an inode. |
| 442 | * |
| 443 | * If cancel_real is true this function cancels all COW fork extents for the |
| 444 | * inode; if cancel_real is false, real extents are not cleared. |
Dave Chinner | c5295c6 | 2018-05-09 07:49:09 -0700 | [diff] [blame] | 445 | * |
| 446 | * Caller must have already joined the inode to the current transaction. The |
| 447 | * inode will be joined to the transaction returned to the caller. |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 448 | */ |
| 449 | int |
| 450 | xfs_reflink_cancel_cow_blocks( |
| 451 | struct xfs_inode *ip, |
| 452 | struct xfs_trans **tpp, |
| 453 | xfs_fileoff_t offset_fsb, |
Christoph Hellwig | 3802a34 | 2017-03-07 16:45:58 -0800 | [diff] [blame] | 454 | xfs_fileoff_t end_fsb, |
| 455 | bool cancel_real) |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 456 | { |
Christoph Hellwig | 3e0ee78 | 2016-10-20 15:54:31 +1100 | [diff] [blame] | 457 | struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK); |
Christoph Hellwig | df5ab1b | 2016-11-24 11:39:50 +1100 | [diff] [blame] | 458 | struct xfs_bmbt_irec got, del; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 459 | struct xfs_iext_cursor icur; |
Christoph Hellwig | df5ab1b | 2016-11-24 11:39:50 +1100 | [diff] [blame] | 460 | int error = 0; |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 461 | |
Christoph Hellwig | 51d6269 | 2018-07-17 16:51:51 -0700 | [diff] [blame] | 462 | if (!xfs_inode_has_cow_data(ip)) |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 463 | return 0; |
Christoph Hellwig | 41caabd | 2017-11-03 10:34:44 -0700 | [diff] [blame] | 464 | if (!xfs_iext_lookup_extent_before(ip, ifp, &end_fsb, &icur, &got)) |
Christoph Hellwig | 3e0ee78 | 2016-10-20 15:54:31 +1100 | [diff] [blame] | 465 | return 0; |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 466 | |
Christoph Hellwig | 41caabd | 2017-11-03 10:34:44 -0700 | [diff] [blame] | 467 | /* Walk backwards until we're out of the I/O range... */ |
| 468 | while (got.br_startoff + got.br_blockcount > offset_fsb) { |
Christoph Hellwig | 3e0ee78 | 2016-10-20 15:54:31 +1100 | [diff] [blame] | 469 | del = got; |
| 470 | xfs_trim_extent(&del, offset_fsb, end_fsb - offset_fsb); |
Christoph Hellwig | 41caabd | 2017-11-03 10:34:44 -0700 | [diff] [blame] | 471 | |
| 472 | /* Extent delete may have bumped ext forward */ |
| 473 | if (!del.br_blockcount) { |
| 474 | xfs_iext_prev(ifp, &icur); |
| 475 | goto next_extent; |
| 476 | } |
| 477 | |
Christoph Hellwig | 3e0ee78 | 2016-10-20 15:54:31 +1100 | [diff] [blame] | 478 | trace_xfs_reflink_cancel_cow(ip, &del); |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 479 | |
Christoph Hellwig | 3e0ee78 | 2016-10-20 15:54:31 +1100 | [diff] [blame] | 480 | if (isnullstartblock(del.br_startblock)) { |
| 481 | error = xfs_bmap_del_extent_delay(ip, XFS_COW_FORK, |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 482 | &icur, &got, &del); |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 483 | if (error) |
| 484 | break; |
Christoph Hellwig | 3802a34 | 2017-03-07 16:45:58 -0800 | [diff] [blame] | 485 | } else if (del.br_state == XFS_EXT_UNWRITTEN || cancel_real) { |
Brian Foster | 1e5ae19 | 2018-07-24 13:43:12 -0700 | [diff] [blame] | 486 | ASSERT((*tpp)->t_firstblock == NULLFSBLOCK); |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 487 | |
Darrick J. Wong | 174edb0 | 2016-10-03 09:11:39 -0700 | [diff] [blame] | 488 | /* Free the CoW orphan record. */ |
Brian Foster | 0f37d17 | 2018-08-01 07:20:34 -0700 | [diff] [blame] | 489 | error = xfs_refcount_free_cow_extent(*tpp, |
| 490 | del.br_startblock, del.br_blockcount); |
Darrick J. Wong | 174edb0 | 2016-10-03 09:11:39 -0700 | [diff] [blame] | 491 | if (error) |
| 492 | break; |
| 493 | |
Brian Foster | 0f37d17 | 2018-08-01 07:20:34 -0700 | [diff] [blame] | 494 | xfs_bmap_add_free(*tpp, del.br_startblock, |
| 495 | del.br_blockcount, NULL); |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 496 | |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 497 | /* Roll the transaction */ |
Brian Foster | 9e28a24 | 2018-07-24 13:43:15 -0700 | [diff] [blame] | 498 | error = xfs_defer_finish(tpp); |
Brian Foster | 9b1f4e9 | 2018-08-01 07:20:33 -0700 | [diff] [blame] | 499 | if (error) |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 500 | break; |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 501 | |
| 502 | /* Remove the mapping from the CoW fork. */ |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 503 | xfs_bmap_del_extent_cow(ip, &icur, &got, &del); |
Darrick J. Wong | 4b4c132 | 2018-01-19 09:05:48 -0800 | [diff] [blame] | 504 | |
| 505 | /* Remove the quota reservation */ |
| 506 | error = xfs_trans_reserve_quota_nblks(NULL, ip, |
| 507 | -(long)del.br_blockcount, 0, |
| 508 | XFS_QMOPT_RES_REGBLKS); |
| 509 | if (error) |
| 510 | break; |
Darrick J. Wong | 9d40fba | 2017-12-10 18:03:55 -0800 | [diff] [blame] | 511 | } else { |
| 512 | /* Didn't do anything, push cursor back. */ |
| 513 | xfs_iext_prev(ifp, &icur); |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 514 | } |
Christoph Hellwig | 41caabd | 2017-11-03 10:34:44 -0700 | [diff] [blame] | 515 | next_extent: |
| 516 | if (!xfs_iext_get_extent(ifp, &icur, &got)) |
Brian Foster | c17a8ef | 2016-10-24 14:21:08 +1100 | [diff] [blame] | 517 | break; |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 518 | } |
| 519 | |
Brian Foster | c17a8ef | 2016-10-24 14:21:08 +1100 | [diff] [blame] | 520 | /* clear tag if cow fork is emptied */ |
| 521 | if (!ifp->if_bytes) |
| 522 | xfs_inode_clear_cowblocks_tag(ip); |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 523 | return error; |
| 524 | } |
| 525 | |
| 526 | /* |
Christoph Hellwig | 3802a34 | 2017-03-07 16:45:58 -0800 | [diff] [blame] | 527 | * Cancel CoW reservations for some byte range of an inode. |
| 528 | * |
| 529 | * If cancel_real is true this function cancels all COW fork extents for the |
| 530 | * inode; if cancel_real is false, real extents are not cleared. |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 531 | */ |
| 532 | int |
| 533 | xfs_reflink_cancel_cow_range( |
| 534 | struct xfs_inode *ip, |
| 535 | xfs_off_t offset, |
Christoph Hellwig | 3802a34 | 2017-03-07 16:45:58 -0800 | [diff] [blame] | 536 | xfs_off_t count, |
| 537 | bool cancel_real) |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 538 | { |
| 539 | struct xfs_trans *tp; |
| 540 | xfs_fileoff_t offset_fsb; |
| 541 | xfs_fileoff_t end_fsb; |
| 542 | int error; |
| 543 | |
| 544 | trace_xfs_reflink_cancel_cow_range(ip, offset, count); |
Darrick J. Wong | 63646fc | 2016-10-10 16:47:32 +1100 | [diff] [blame] | 545 | ASSERT(xfs_is_reflink_inode(ip)); |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 546 | |
| 547 | offset_fsb = XFS_B_TO_FSBT(ip->i_mount, offset); |
| 548 | if (count == NULLFILEOFF) |
| 549 | end_fsb = NULLFILEOFF; |
| 550 | else |
| 551 | end_fsb = XFS_B_TO_FSB(ip->i_mount, offset + count); |
| 552 | |
| 553 | /* Start a rolling transaction to remove the mappings */ |
| 554 | error = xfs_trans_alloc(ip->i_mount, &M_RES(ip->i_mount)->tr_write, |
Dave Chinner | 4df0f7f | 2018-03-06 17:07:22 -0800 | [diff] [blame] | 555 | 0, 0, XFS_TRANS_NOFS, &tp); |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 556 | if (error) |
| 557 | goto out; |
| 558 | |
| 559 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
| 560 | xfs_trans_ijoin(tp, ip, 0); |
| 561 | |
| 562 | /* Scrape out the old CoW reservations */ |
Christoph Hellwig | 3802a34 | 2017-03-07 16:45:58 -0800 | [diff] [blame] | 563 | error = xfs_reflink_cancel_cow_blocks(ip, &tp, offset_fsb, end_fsb, |
| 564 | cancel_real); |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 565 | if (error) |
| 566 | goto out_cancel; |
| 567 | |
| 568 | error = xfs_trans_commit(tp); |
| 569 | |
| 570 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 571 | return error; |
| 572 | |
| 573 | out_cancel: |
| 574 | xfs_trans_cancel(tp); |
| 575 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 576 | out: |
| 577 | trace_xfs_reflink_cancel_cow_range_error(ip, error, _RET_IP_); |
| 578 | return error; |
| 579 | } |
| 580 | |
| 581 | /* |
Darrick J. Wong | d6f215f | 2018-12-12 08:46:19 -0800 | [diff] [blame] | 582 | * Remap part of the CoW fork into the data fork. |
| 583 | * |
| 584 | * We aim to remap the range starting at @offset_fsb and ending at @end_fsb |
| 585 | * into the data fork; this function will remap what it can (at the end of the |
| 586 | * range) and update @end_fsb appropriately. Each remap gets its own |
| 587 | * transaction because we can end up merging and splitting bmbt blocks for |
| 588 | * every remap operation and we'd like to keep the block reservation |
| 589 | * requirements as low as possible. |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 590 | */ |
Darrick J. Wong | d6f215f | 2018-12-12 08:46:19 -0800 | [diff] [blame] | 591 | STATIC int |
| 592 | xfs_reflink_end_cow_extent( |
| 593 | struct xfs_inode *ip, |
| 594 | xfs_fileoff_t offset_fsb, |
| 595 | xfs_fileoff_t *end_fsb) |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 596 | { |
Darrick J. Wong | d6f215f | 2018-12-12 08:46:19 -0800 | [diff] [blame] | 597 | struct xfs_bmbt_irec got, del; |
| 598 | struct xfs_iext_cursor icur; |
| 599 | struct xfs_mount *mp = ip->i_mount; |
| 600 | struct xfs_trans *tp; |
| 601 | struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK); |
| 602 | xfs_filblks_t rlen; |
| 603 | unsigned int resblks; |
| 604 | int error; |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 605 | |
Christoph Hellwig | c1112b6 | 2016-10-20 15:54:45 +1100 | [diff] [blame] | 606 | /* No COW extents? That's easy! */ |
Darrick J. Wong | d6f215f | 2018-12-12 08:46:19 -0800 | [diff] [blame] | 607 | if (ifp->if_bytes == 0) { |
| 608 | *end_fsb = offset_fsb; |
Christoph Hellwig | c1112b6 | 2016-10-20 15:54:45 +1100 | [diff] [blame] | 609 | return 0; |
Darrick J. Wong | d6f215f | 2018-12-12 08:46:19 -0800 | [diff] [blame] | 610 | } |
Christoph Hellwig | c1112b6 | 2016-10-20 15:54:45 +1100 | [diff] [blame] | 611 | |
Darrick J. Wong | d6f215f | 2018-12-12 08:46:19 -0800 | [diff] [blame] | 612 | resblks = XFS_EXTENTADD_SPACE_RES(mp, XFS_DATA_FORK); |
| 613 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks, 0, |
| 614 | XFS_TRANS_RESERVE | XFS_TRANS_NOFS, &tp); |
| 615 | if (error) |
| 616 | return error; |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 617 | |
Darrick J. Wong | fe0be23 | 2017-04-12 12:26:07 -0700 | [diff] [blame] | 618 | /* |
Darrick J. Wong | d6f215f | 2018-12-12 08:46:19 -0800 | [diff] [blame] | 619 | * Lock the inode. We have to ijoin without automatic unlock because |
| 620 | * the lead transaction is the refcountbt record deletion; the data |
| 621 | * fork update follows as a deferred log item. |
Darrick J. Wong | fe0be23 | 2017-04-12 12:26:07 -0700 | [diff] [blame] | 622 | */ |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 623 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
| 624 | xfs_trans_ijoin(tp, ip, 0); |
| 625 | |
Christoph Hellwig | dc56015 | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 626 | /* |
| 627 | * In case of racing, overlapping AIO writes no COW extents might be |
| 628 | * left by the time I/O completes for the loser of the race. In that |
| 629 | * case we are done. |
| 630 | */ |
Darrick J. Wong | d6f215f | 2018-12-12 08:46:19 -0800 | [diff] [blame] | 631 | if (!xfs_iext_lookup_extent_before(ip, ifp, end_fsb, &icur, &got) || |
| 632 | got.br_startoff + got.br_blockcount <= offset_fsb) { |
| 633 | *end_fsb = offset_fsb; |
| 634 | goto out_cancel; |
| 635 | } |
| 636 | |
| 637 | /* |
| 638 | * Structure copy @got into @del, then trim @del to the range that we |
| 639 | * were asked to remap. We preserve @got for the eventual CoW fork |
| 640 | * deletion; from now on @del represents the mapping that we're |
| 641 | * actually remapping. |
| 642 | */ |
| 643 | del = got; |
| 644 | xfs_trim_extent(&del, offset_fsb, *end_fsb - offset_fsb); |
| 645 | |
| 646 | ASSERT(del.br_blockcount > 0); |
| 647 | |
| 648 | /* |
| 649 | * Only remap real extents that contain data. With AIO, speculative |
| 650 | * preallocations can leak into the range we are called upon, and we |
| 651 | * need to skip them. |
| 652 | */ |
| 653 | if (!xfs_bmap_is_real_extent(&got)) { |
| 654 | *end_fsb = del.br_startoff; |
| 655 | goto out_cancel; |
| 656 | } |
| 657 | |
| 658 | /* Unmap the old blocks in the data fork. */ |
| 659 | rlen = del.br_blockcount; |
| 660 | error = __xfs_bunmapi(tp, ip, del.br_startoff, &rlen, 0, 1); |
| 661 | if (error) |
Christoph Hellwig | dc56015 | 2017-10-23 16:32:39 -0700 | [diff] [blame] | 662 | goto out_cancel; |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 663 | |
Darrick J. Wong | d6f215f | 2018-12-12 08:46:19 -0800 | [diff] [blame] | 664 | /* Trim the extent to whatever got unmapped. */ |
| 665 | xfs_trim_extent(&del, del.br_startoff + rlen, del.br_blockcount - rlen); |
| 666 | trace_xfs_reflink_cow_remap(ip, &del); |
Christoph Hellwig | c1112b6 | 2016-10-20 15:54:45 +1100 | [diff] [blame] | 667 | |
Darrick J. Wong | d6f215f | 2018-12-12 08:46:19 -0800 | [diff] [blame] | 668 | /* Free the CoW orphan record. */ |
| 669 | error = xfs_refcount_free_cow_extent(tp, del.br_startblock, |
| 670 | del.br_blockcount); |
| 671 | if (error) |
| 672 | goto out_cancel; |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 673 | |
Darrick J. Wong | d6f215f | 2018-12-12 08:46:19 -0800 | [diff] [blame] | 674 | /* Map the new blocks into the data fork. */ |
| 675 | error = xfs_bmap_map_extent(tp, ip, &del); |
| 676 | if (error) |
| 677 | goto out_cancel; |
Darrick J. Wong | 5eda430 | 2017-02-02 15:14:02 -0800 | [diff] [blame] | 678 | |
Darrick J. Wong | d6f215f | 2018-12-12 08:46:19 -0800 | [diff] [blame] | 679 | /* Charge this new data fork mapping to the on-disk quota. */ |
| 680 | xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_DELBCOUNT, |
| 681 | (long)del.br_blockcount); |
Christoph Hellwig | c1112b6 | 2016-10-20 15:54:45 +1100 | [diff] [blame] | 682 | |
Darrick J. Wong | d6f215f | 2018-12-12 08:46:19 -0800 | [diff] [blame] | 683 | /* Remove the mapping from the CoW fork. */ |
| 684 | xfs_bmap_del_extent_cow(ip, &icur, &got, &del); |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 685 | |
| 686 | error = xfs_trans_commit(tp); |
| 687 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 688 | if (error) |
Darrick J. Wong | d6f215f | 2018-12-12 08:46:19 -0800 | [diff] [blame] | 689 | return error; |
| 690 | |
| 691 | /* Update the caller about how much progress we made. */ |
| 692 | *end_fsb = del.br_startoff; |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 693 | return 0; |
| 694 | |
Christoph Hellwig | e12199f | 2017-10-03 08:58:33 -0700 | [diff] [blame] | 695 | out_cancel: |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 696 | xfs_trans_cancel(tp); |
| 697 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
Darrick J. Wong | d6f215f | 2018-12-12 08:46:19 -0800 | [diff] [blame] | 698 | return error; |
| 699 | } |
| 700 | |
| 701 | /* |
| 702 | * Remap parts of a file's data fork after a successful CoW. |
| 703 | */ |
| 704 | int |
| 705 | xfs_reflink_end_cow( |
| 706 | struct xfs_inode *ip, |
| 707 | xfs_off_t offset, |
| 708 | xfs_off_t count) |
| 709 | { |
| 710 | xfs_fileoff_t offset_fsb; |
| 711 | xfs_fileoff_t end_fsb; |
| 712 | int error = 0; |
| 713 | |
| 714 | trace_xfs_reflink_end_cow(ip, offset, count); |
| 715 | |
| 716 | offset_fsb = XFS_B_TO_FSBT(ip->i_mount, offset); |
| 717 | end_fsb = XFS_B_TO_FSB(ip->i_mount, offset + count); |
| 718 | |
| 719 | /* |
| 720 | * Walk backwards until we're out of the I/O range. The loop function |
| 721 | * repeatedly cycles the ILOCK to allocate one transaction per remapped |
| 722 | * extent. |
| 723 | * |
| 724 | * If we're being called by writeback then the the pages will still |
| 725 | * have PageWriteback set, which prevents races with reflink remapping |
| 726 | * and truncate. Reflink remapping prevents races with writeback by |
| 727 | * taking the iolock and mmaplock before flushing the pages and |
| 728 | * remapping, which means there won't be any further writeback or page |
| 729 | * cache dirtying until the reflink completes. |
| 730 | * |
| 731 | * We should never have two threads issuing writeback for the same file |
| 732 | * region. There are also have post-eof checks in the writeback |
| 733 | * preparation code so that we don't bother writing out pages that are |
| 734 | * about to be truncated. |
| 735 | * |
| 736 | * If we're being called as part of directio write completion, the dio |
| 737 | * count is still elevated, which reflink and truncate will wait for. |
| 738 | * Reflink remapping takes the iolock and mmaplock and waits for |
| 739 | * pending dio to finish, which should prevent any directio until the |
| 740 | * remap completes. Multiple concurrent directio writes to the same |
| 741 | * region are handled by end_cow processing only occurring for the |
| 742 | * threads which succeed; the outcome of multiple overlapping direct |
| 743 | * writes is not well defined anyway. |
| 744 | * |
| 745 | * It's possible that a buffered write and a direct write could collide |
| 746 | * here (the buffered write stumbles in after the dio flushes and |
| 747 | * invalidates the page cache and immediately queues writeback), but we |
| 748 | * have never supported this 100%. If either disk write succeeds the |
| 749 | * blocks will be remapped. |
| 750 | */ |
| 751 | while (end_fsb > offset_fsb && !error) |
| 752 | error = xfs_reflink_end_cow_extent(ip, offset_fsb, &end_fsb); |
| 753 | |
| 754 | if (error) |
| 755 | trace_xfs_reflink_end_cow_error(ip, error, _RET_IP_); |
Darrick J. Wong | 43caeb1 | 2016-10-03 09:11:35 -0700 | [diff] [blame] | 756 | return error; |
| 757 | } |
Darrick J. Wong | 174edb0 | 2016-10-03 09:11:39 -0700 | [diff] [blame] | 758 | |
| 759 | /* |
| 760 | * Free leftover CoW reservations that didn't get cleaned out. |
| 761 | */ |
| 762 | int |
| 763 | xfs_reflink_recover_cow( |
| 764 | struct xfs_mount *mp) |
| 765 | { |
| 766 | xfs_agnumber_t agno; |
| 767 | int error = 0; |
| 768 | |
| 769 | if (!xfs_sb_version_hasreflink(&mp->m_sb)) |
| 770 | return 0; |
| 771 | |
| 772 | for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) { |
| 773 | error = xfs_refcount_recover_cow_leftovers(mp, agno); |
| 774 | if (error) |
| 775 | break; |
| 776 | } |
| 777 | |
| 778 | return error; |
| 779 | } |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 780 | |
| 781 | /* |
| 782 | * Reflinking (Block) Ranges of Two Files Together |
| 783 | * |
| 784 | * First, ensure that the reflink flag is set on both inodes. The flag is an |
| 785 | * optimization to avoid unnecessary refcount btree lookups in the write path. |
| 786 | * |
| 787 | * Now we can iteratively remap the range of extents (and holes) in src to the |
| 788 | * corresponding ranges in dest. Let drange and srange denote the ranges of |
| 789 | * logical blocks in dest and src touched by the reflink operation. |
| 790 | * |
| 791 | * While the length of drange is greater than zero, |
| 792 | * - Read src's bmbt at the start of srange ("imap") |
| 793 | * - If imap doesn't exist, make imap appear to start at the end of srange |
| 794 | * with zero length. |
| 795 | * - If imap starts before srange, advance imap to start at srange. |
| 796 | * - If imap goes beyond srange, truncate imap to end at the end of srange. |
| 797 | * - Punch (imap start - srange start + imap len) blocks from dest at |
| 798 | * offset (drange start). |
| 799 | * - If imap points to a real range of pblks, |
| 800 | * > Increase the refcount of the imap's pblks |
| 801 | * > Map imap's pblks into dest at the offset |
| 802 | * (drange start + imap start - srange start) |
| 803 | * - Advance drange and srange by (imap start - srange start + imap len) |
| 804 | * |
| 805 | * Finally, if the reflink made dest longer, update both the in-core and |
| 806 | * on-disk file sizes. |
| 807 | * |
| 808 | * ASCII Art Demonstration: |
| 809 | * |
| 810 | * Let's say we want to reflink this source file: |
| 811 | * |
| 812 | * ----SSSSSSS-SSSSS----SSSSSS (src file) |
| 813 | * <--------------------> |
| 814 | * |
| 815 | * into this destination file: |
| 816 | * |
| 817 | * --DDDDDDDDDDDDDDDDDDD--DDD (dest file) |
| 818 | * <--------------------> |
| 819 | * '-' means a hole, and 'S' and 'D' are written blocks in the src and dest. |
| 820 | * Observe that the range has different logical offsets in either file. |
| 821 | * |
| 822 | * Consider that the first extent in the source file doesn't line up with our |
| 823 | * reflink range. Unmapping and remapping are separate operations, so we can |
| 824 | * unmap more blocks from the destination file than we remap. |
| 825 | * |
| 826 | * ----SSSSSSS-SSSSS----SSSSSS |
| 827 | * <-------> |
| 828 | * --DDDDD---------DDDDD--DDD |
| 829 | * <-------> |
| 830 | * |
| 831 | * Now remap the source extent into the destination file: |
| 832 | * |
| 833 | * ----SSSSSSS-SSSSS----SSSSSS |
| 834 | * <-------> |
| 835 | * --DDDDD--SSSSSSSDDDDD--DDD |
| 836 | * <-------> |
| 837 | * |
| 838 | * Do likewise with the second hole and extent in our range. Holes in the |
| 839 | * unmap range don't affect our operation. |
| 840 | * |
| 841 | * ----SSSSSSS-SSSSS----SSSSSS |
| 842 | * <----> |
| 843 | * --DDDDD--SSSSSSS-SSSSS-DDD |
| 844 | * <----> |
| 845 | * |
| 846 | * Finally, unmap and remap part of the third extent. This will increase the |
| 847 | * size of the destination file. |
| 848 | * |
| 849 | * ----SSSSSSS-SSSSS----SSSSSS |
| 850 | * <-----> |
| 851 | * --DDDDD--SSSSSSS-SSSSS----SSS |
| 852 | * <-----> |
| 853 | * |
| 854 | * Once we update the destination file's i_size, we're done. |
| 855 | */ |
| 856 | |
| 857 | /* |
| 858 | * Ensure the reflink bit is set in both inodes. |
| 859 | */ |
| 860 | STATIC int |
| 861 | xfs_reflink_set_inode_flag( |
| 862 | struct xfs_inode *src, |
| 863 | struct xfs_inode *dest) |
| 864 | { |
| 865 | struct xfs_mount *mp = src->i_mount; |
| 866 | int error; |
| 867 | struct xfs_trans *tp; |
| 868 | |
| 869 | if (xfs_is_reflink_inode(src) && xfs_is_reflink_inode(dest)) |
| 870 | return 0; |
| 871 | |
| 872 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp); |
| 873 | if (error) |
| 874 | goto out_error; |
| 875 | |
| 876 | /* Lock both files against IO */ |
| 877 | if (src->i_ino == dest->i_ino) |
| 878 | xfs_ilock(src, XFS_ILOCK_EXCL); |
| 879 | else |
Darrick J. Wong | 7c2d238 | 2018-01-26 15:27:33 -0800 | [diff] [blame] | 880 | xfs_lock_two_inodes(src, XFS_ILOCK_EXCL, dest, XFS_ILOCK_EXCL); |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 881 | |
| 882 | if (!xfs_is_reflink_inode(src)) { |
| 883 | trace_xfs_reflink_set_inode_flag(src); |
| 884 | xfs_trans_ijoin(tp, src, XFS_ILOCK_EXCL); |
| 885 | src->i_d.di_flags2 |= XFS_DIFLAG2_REFLINK; |
| 886 | xfs_trans_log_inode(tp, src, XFS_ILOG_CORE); |
| 887 | xfs_ifork_init_cow(src); |
| 888 | } else |
| 889 | xfs_iunlock(src, XFS_ILOCK_EXCL); |
| 890 | |
| 891 | if (src->i_ino == dest->i_ino) |
| 892 | goto commit_flags; |
| 893 | |
| 894 | if (!xfs_is_reflink_inode(dest)) { |
| 895 | trace_xfs_reflink_set_inode_flag(dest); |
| 896 | xfs_trans_ijoin(tp, dest, XFS_ILOCK_EXCL); |
| 897 | dest->i_d.di_flags2 |= XFS_DIFLAG2_REFLINK; |
| 898 | xfs_trans_log_inode(tp, dest, XFS_ILOG_CORE); |
| 899 | xfs_ifork_init_cow(dest); |
| 900 | } else |
| 901 | xfs_iunlock(dest, XFS_ILOCK_EXCL); |
| 902 | |
| 903 | commit_flags: |
| 904 | error = xfs_trans_commit(tp); |
| 905 | if (error) |
| 906 | goto out_error; |
| 907 | return error; |
| 908 | |
| 909 | out_error: |
| 910 | trace_xfs_reflink_set_inode_flag_error(dest, error, _RET_IP_); |
| 911 | return error; |
| 912 | } |
| 913 | |
| 914 | /* |
Darrick J. Wong | f7ca352 | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 915 | * Update destination inode size & cowextsize hint, if necessary. |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 916 | */ |
Darrick J. Wong | 3fc9f5e | 2018-10-30 10:47:26 +1100 | [diff] [blame] | 917 | int |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 918 | xfs_reflink_update_dest( |
| 919 | struct xfs_inode *dest, |
Darrick J. Wong | f7ca352 | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 920 | xfs_off_t newlen, |
Christoph Hellwig | c5ecb42 | 2017-02-06 17:45:51 -0800 | [diff] [blame] | 921 | xfs_extlen_t cowextsize, |
Darrick J. Wong | a91ae49b | 2018-10-30 10:41:28 +1100 | [diff] [blame] | 922 | unsigned int remap_flags) |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 923 | { |
| 924 | struct xfs_mount *mp = dest->i_mount; |
| 925 | struct xfs_trans *tp; |
| 926 | int error; |
| 927 | |
Darrick J. Wong | bf4a1fc | 2018-10-30 10:47:48 +1100 | [diff] [blame] | 928 | if (newlen <= i_size_read(VFS_I(dest)) && cowextsize == 0) |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 929 | return 0; |
| 930 | |
| 931 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp); |
| 932 | if (error) |
| 933 | goto out_error; |
| 934 | |
| 935 | xfs_ilock(dest, XFS_ILOCK_EXCL); |
| 936 | xfs_trans_ijoin(tp, dest, XFS_ILOCK_EXCL); |
| 937 | |
Darrick J. Wong | f7ca352 | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 938 | if (newlen > i_size_read(VFS_I(dest))) { |
| 939 | trace_xfs_reflink_update_inode_size(dest, newlen); |
| 940 | i_size_write(VFS_I(dest), newlen); |
| 941 | dest->i_d.di_size = newlen; |
| 942 | } |
| 943 | |
| 944 | if (cowextsize) { |
| 945 | dest->i_d.di_cowextsize = cowextsize; |
| 946 | dest->i_d.di_flags2 |= XFS_DIFLAG2_COWEXTSIZE; |
| 947 | } |
| 948 | |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 949 | xfs_trans_log_inode(tp, dest, XFS_ILOG_CORE); |
| 950 | |
| 951 | error = xfs_trans_commit(tp); |
| 952 | if (error) |
| 953 | goto out_error; |
| 954 | return error; |
| 955 | |
| 956 | out_error: |
| 957 | trace_xfs_reflink_update_inode_size_error(dest, error, _RET_IP_); |
| 958 | return error; |
| 959 | } |
| 960 | |
| 961 | /* |
Darrick J. Wong | 6fa164b | 2016-10-03 09:11:45 -0700 | [diff] [blame] | 962 | * Do we have enough reserve in this AG to handle a reflink? The refcount |
| 963 | * btree already reserved all the space it needs, but the rmap btree can grow |
| 964 | * infinitely, so we won't allow more reflinks when the AG is down to the |
| 965 | * btree reserves. |
| 966 | */ |
| 967 | static int |
| 968 | xfs_reflink_ag_has_free_space( |
| 969 | struct xfs_mount *mp, |
| 970 | xfs_agnumber_t agno) |
| 971 | { |
| 972 | struct xfs_perag *pag; |
| 973 | int error = 0; |
| 974 | |
| 975 | if (!xfs_sb_version_hasrmapbt(&mp->m_sb)) |
| 976 | return 0; |
| 977 | |
| 978 | pag = xfs_perag_get(mp, agno); |
Brian Foster | 2159286 | 2018-03-09 14:01:59 -0800 | [diff] [blame] | 979 | if (xfs_ag_resv_critical(pag, XFS_AG_RESV_RMAPBT) || |
Darrick J. Wong | 6fa164b | 2016-10-03 09:11:45 -0700 | [diff] [blame] | 980 | xfs_ag_resv_critical(pag, XFS_AG_RESV_METADATA)) |
| 981 | error = -ENOSPC; |
| 982 | xfs_perag_put(pag); |
| 983 | return error; |
| 984 | } |
| 985 | |
| 986 | /* |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 987 | * Unmap a range of blocks from a file, then map other blocks into the hole. |
| 988 | * The range to unmap is (destoff : destoff + srcioff + irec->br_blockcount). |
| 989 | * The extent irec is mapped into dest at irec->br_startoff. |
| 990 | */ |
| 991 | STATIC int |
| 992 | xfs_reflink_remap_extent( |
| 993 | struct xfs_inode *ip, |
| 994 | struct xfs_bmbt_irec *irec, |
| 995 | xfs_fileoff_t destoff, |
| 996 | xfs_off_t new_isize) |
| 997 | { |
| 998 | struct xfs_mount *mp = ip->i_mount; |
Christoph Hellwig | 9c4f29d | 2017-03-28 14:53:35 -0700 | [diff] [blame] | 999 | bool real_extent = xfs_bmap_is_real_extent(irec); |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1000 | struct xfs_trans *tp; |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1001 | unsigned int resblks; |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1002 | struct xfs_bmbt_irec uirec; |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1003 | xfs_filblks_t rlen; |
| 1004 | xfs_filblks_t unmap_len; |
| 1005 | xfs_off_t newlen; |
| 1006 | int error; |
| 1007 | |
| 1008 | unmap_len = irec->br_startoff + irec->br_blockcount - destoff; |
| 1009 | trace_xfs_reflink_punch_range(ip, destoff, unmap_len); |
| 1010 | |
Darrick J. Wong | 6fa164b | 2016-10-03 09:11:45 -0700 | [diff] [blame] | 1011 | /* No reflinking if we're low on space */ |
| 1012 | if (real_extent) { |
| 1013 | error = xfs_reflink_ag_has_free_space(mp, |
| 1014 | XFS_FSB_TO_AGNO(mp, irec->br_startblock)); |
| 1015 | if (error) |
| 1016 | goto out; |
| 1017 | } |
| 1018 | |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1019 | /* Start a rolling transaction to switch the mappings */ |
| 1020 | resblks = XFS_EXTENTADD_SPACE_RES(ip->i_mount, XFS_DATA_FORK); |
| 1021 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks, 0, 0, &tp); |
| 1022 | if (error) |
| 1023 | goto out; |
| 1024 | |
| 1025 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
| 1026 | xfs_trans_ijoin(tp, ip, 0); |
| 1027 | |
| 1028 | /* If we're not just clearing space, then do we have enough quota? */ |
| 1029 | if (real_extent) { |
| 1030 | error = xfs_trans_reserve_quota_nblks(tp, ip, |
| 1031 | irec->br_blockcount, 0, XFS_QMOPT_RES_REGBLKS); |
| 1032 | if (error) |
| 1033 | goto out_cancel; |
| 1034 | } |
| 1035 | |
| 1036 | trace_xfs_reflink_remap(ip, irec->br_startoff, |
| 1037 | irec->br_blockcount, irec->br_startblock); |
| 1038 | |
| 1039 | /* Unmap the old blocks in the data fork. */ |
| 1040 | rlen = unmap_len; |
| 1041 | while (rlen) { |
Brian Foster | 9d9e623 | 2018-08-01 07:20:35 -0700 | [diff] [blame] | 1042 | ASSERT(tp->t_firstblock == NULLFSBLOCK); |
Brian Foster | 2af5284 | 2018-07-11 22:26:25 -0700 | [diff] [blame] | 1043 | error = __xfs_bunmapi(tp, ip, destoff, &rlen, 0, 1); |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1044 | if (error) |
Brian Foster | c8eac49 | 2018-07-24 13:43:13 -0700 | [diff] [blame] | 1045 | goto out_cancel; |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1046 | |
| 1047 | /* |
| 1048 | * Trim the extent to whatever got unmapped. |
| 1049 | * Remember, bunmapi works backwards. |
| 1050 | */ |
| 1051 | uirec.br_startblock = irec->br_startblock + rlen; |
| 1052 | uirec.br_startoff = irec->br_startoff + rlen; |
| 1053 | uirec.br_blockcount = unmap_len - rlen; |
| 1054 | unmap_len = rlen; |
| 1055 | |
| 1056 | /* If this isn't a real mapping, we're done. */ |
| 1057 | if (!real_extent || uirec.br_blockcount == 0) |
| 1058 | goto next_extent; |
| 1059 | |
| 1060 | trace_xfs_reflink_remap(ip, uirec.br_startoff, |
| 1061 | uirec.br_blockcount, uirec.br_startblock); |
| 1062 | |
| 1063 | /* Update the refcount tree */ |
Brian Foster | 0f37d17 | 2018-08-01 07:20:34 -0700 | [diff] [blame] | 1064 | error = xfs_refcount_increase_extent(tp, &uirec); |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1065 | if (error) |
Brian Foster | c8eac49 | 2018-07-24 13:43:13 -0700 | [diff] [blame] | 1066 | goto out_cancel; |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1067 | |
| 1068 | /* Map the new blocks into the data fork. */ |
Brian Foster | 0f37d17 | 2018-08-01 07:20:34 -0700 | [diff] [blame] | 1069 | error = xfs_bmap_map_extent(tp, ip, &uirec); |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1070 | if (error) |
Brian Foster | c8eac49 | 2018-07-24 13:43:13 -0700 | [diff] [blame] | 1071 | goto out_cancel; |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1072 | |
| 1073 | /* Update quota accounting. */ |
| 1074 | xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, |
| 1075 | uirec.br_blockcount); |
| 1076 | |
| 1077 | /* Update dest isize if needed. */ |
| 1078 | newlen = XFS_FSB_TO_B(mp, |
| 1079 | uirec.br_startoff + uirec.br_blockcount); |
| 1080 | newlen = min_t(xfs_off_t, newlen, new_isize); |
| 1081 | if (newlen > i_size_read(VFS_I(ip))) { |
| 1082 | trace_xfs_reflink_update_inode_size(ip, newlen); |
| 1083 | i_size_write(VFS_I(ip), newlen); |
| 1084 | ip->i_d.di_size = newlen; |
| 1085 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
| 1086 | } |
| 1087 | |
| 1088 | next_extent: |
| 1089 | /* Process all the deferred stuff. */ |
Brian Foster | 9e28a24 | 2018-07-24 13:43:15 -0700 | [diff] [blame] | 1090 | error = xfs_defer_finish(&tp); |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1091 | if (error) |
Brian Foster | c8eac49 | 2018-07-24 13:43:13 -0700 | [diff] [blame] | 1092 | goto out_cancel; |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1093 | } |
| 1094 | |
| 1095 | error = xfs_trans_commit(tp); |
| 1096 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 1097 | if (error) |
| 1098 | goto out; |
| 1099 | return 0; |
| 1100 | |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1101 | out_cancel: |
| 1102 | xfs_trans_cancel(tp); |
| 1103 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 1104 | out: |
| 1105 | trace_xfs_reflink_remap_extent_error(ip, error, _RET_IP_); |
| 1106 | return error; |
| 1107 | } |
| 1108 | |
| 1109 | /* |
| 1110 | * Iteratively remap one file's extents (and holes) to another's. |
| 1111 | */ |
Darrick J. Wong | 3fc9f5e | 2018-10-30 10:47:26 +1100 | [diff] [blame] | 1112 | int |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1113 | xfs_reflink_remap_blocks( |
| 1114 | struct xfs_inode *src, |
Darrick J. Wong | 9f04aaf | 2018-10-30 10:46:50 +1100 | [diff] [blame] | 1115 | loff_t pos_in, |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1116 | struct xfs_inode *dest, |
Darrick J. Wong | 9f04aaf | 2018-10-30 10:46:50 +1100 | [diff] [blame] | 1117 | loff_t pos_out, |
Darrick J. Wong | 3f68c1f | 2018-10-30 10:47:06 +1100 | [diff] [blame] | 1118 | loff_t remap_len, |
| 1119 | loff_t *remapped) |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1120 | { |
| 1121 | struct xfs_bmbt_irec imap; |
Darrick J. Wong | 9f04aaf | 2018-10-30 10:46:50 +1100 | [diff] [blame] | 1122 | xfs_fileoff_t srcoff; |
| 1123 | xfs_fileoff_t destoff; |
| 1124 | xfs_filblks_t len; |
| 1125 | xfs_filblks_t range_len; |
Darrick J. Wong | 3f68c1f | 2018-10-30 10:47:06 +1100 | [diff] [blame] | 1126 | xfs_filblks_t remapped_len = 0; |
Darrick J. Wong | 9f04aaf | 2018-10-30 10:46:50 +1100 | [diff] [blame] | 1127 | xfs_off_t new_isize = pos_out + remap_len; |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1128 | int nimaps; |
| 1129 | int error = 0; |
Darrick J. Wong | 9f04aaf | 2018-10-30 10:46:50 +1100 | [diff] [blame] | 1130 | |
| 1131 | destoff = XFS_B_TO_FSBT(src->i_mount, pos_out); |
| 1132 | srcoff = XFS_B_TO_FSBT(src->i_mount, pos_in); |
| 1133 | len = XFS_B_TO_FSB(src->i_mount, remap_len); |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1134 | |
| 1135 | /* drange = (destoff, destoff + len); srange = (srcoff, srcoff + len) */ |
| 1136 | while (len) { |
Darrick J. Wong | 01c2e13 | 2018-01-18 14:07:53 -0800 | [diff] [blame] | 1137 | uint lock_mode; |
| 1138 | |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1139 | trace_xfs_reflink_remap_blocks_loop(src, srcoff, len, |
| 1140 | dest, destoff); |
Darrick J. Wong | 01c2e13 | 2018-01-18 14:07:53 -0800 | [diff] [blame] | 1141 | |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1142 | /* Read extent from the source file */ |
| 1143 | nimaps = 1; |
Darrick J. Wong | 01c2e13 | 2018-01-18 14:07:53 -0800 | [diff] [blame] | 1144 | lock_mode = xfs_ilock_data_map_shared(src); |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1145 | error = xfs_bmapi_read(src, srcoff, len, &imap, &nimaps, 0); |
Darrick J. Wong | 01c2e13 | 2018-01-18 14:07:53 -0800 | [diff] [blame] | 1146 | xfs_iunlock(src, lock_mode); |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1147 | if (error) |
Darrick J. Wong | 9f04aaf | 2018-10-30 10:46:50 +1100 | [diff] [blame] | 1148 | break; |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1149 | ASSERT(nimaps == 1); |
| 1150 | |
Christoph Hellwig | be225fe | 2019-02-15 08:02:46 -0800 | [diff] [blame] | 1151 | trace_xfs_reflink_remap_imap(src, srcoff, len, XFS_DATA_FORK, |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1152 | &imap); |
| 1153 | |
| 1154 | /* Translate imap into the destination file. */ |
| 1155 | range_len = imap.br_startoff + imap.br_blockcount - srcoff; |
| 1156 | imap.br_startoff += destoff - srcoff; |
| 1157 | |
| 1158 | /* Clear dest from destoff to the end of imap and map it in. */ |
| 1159 | error = xfs_reflink_remap_extent(dest, &imap, destoff, |
| 1160 | new_isize); |
| 1161 | if (error) |
Darrick J. Wong | 9f04aaf | 2018-10-30 10:46:50 +1100 | [diff] [blame] | 1162 | break; |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1163 | |
| 1164 | if (fatal_signal_pending(current)) { |
| 1165 | error = -EINTR; |
Darrick J. Wong | 9f04aaf | 2018-10-30 10:46:50 +1100 | [diff] [blame] | 1166 | break; |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1167 | } |
| 1168 | |
| 1169 | /* Advance drange/srange */ |
| 1170 | srcoff += range_len; |
| 1171 | destoff += range_len; |
| 1172 | len -= range_len; |
Darrick J. Wong | 3f68c1f | 2018-10-30 10:47:06 +1100 | [diff] [blame] | 1173 | remapped_len += range_len; |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1174 | } |
| 1175 | |
Darrick J. Wong | 9f04aaf | 2018-10-30 10:46:50 +1100 | [diff] [blame] | 1176 | if (error) |
| 1177 | trace_xfs_reflink_remap_blocks_error(dest, error, _RET_IP_); |
Darrick J. Wong | 3f68c1f | 2018-10-30 10:47:06 +1100 | [diff] [blame] | 1178 | *remapped = min_t(loff_t, remap_len, |
| 1179 | XFS_FSB_TO_B(src->i_mount, remapped_len)); |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1180 | return error; |
| 1181 | } |
| 1182 | |
| 1183 | /* |
Darrick J. Wong | 1364b1d4 | 2018-01-18 13:55:20 -0800 | [diff] [blame] | 1184 | * Grab the exclusive iolock for a data copy from src to dest, making |
| 1185 | * sure to abide vfs locking order (lowest pointer value goes first) and |
| 1186 | * breaking the pnfs layout leases on dest before proceeding. The loop |
| 1187 | * is needed because we cannot call the blocking break_layout() with the |
| 1188 | * src iolock held, and therefore have to back out both locks. |
| 1189 | */ |
| 1190 | static int |
| 1191 | xfs_iolock_two_inodes_and_break_layout( |
| 1192 | struct inode *src, |
| 1193 | struct inode *dest) |
| 1194 | { |
| 1195 | int error; |
| 1196 | |
| 1197 | retry: |
| 1198 | if (src < dest) { |
Darrick J. Wong | 01c2e13 | 2018-01-18 14:07:53 -0800 | [diff] [blame] | 1199 | inode_lock_shared(src); |
Darrick J. Wong | 1364b1d4 | 2018-01-18 13:55:20 -0800 | [diff] [blame] | 1200 | inode_lock_nested(dest, I_MUTEX_NONDIR2); |
| 1201 | } else { |
| 1202 | /* src >= dest */ |
| 1203 | inode_lock(dest); |
| 1204 | } |
| 1205 | |
| 1206 | error = break_layout(dest, false); |
| 1207 | if (error == -EWOULDBLOCK) { |
| 1208 | inode_unlock(dest); |
| 1209 | if (src < dest) |
Darrick J. Wong | 01c2e13 | 2018-01-18 14:07:53 -0800 | [diff] [blame] | 1210 | inode_unlock_shared(src); |
Darrick J. Wong | 1364b1d4 | 2018-01-18 13:55:20 -0800 | [diff] [blame] | 1211 | error = break_layout(dest, true); |
| 1212 | if (error) |
| 1213 | return error; |
| 1214 | goto retry; |
| 1215 | } |
| 1216 | if (error) { |
| 1217 | inode_unlock(dest); |
| 1218 | if (src < dest) |
Darrick J. Wong | 01c2e13 | 2018-01-18 14:07:53 -0800 | [diff] [blame] | 1219 | inode_unlock_shared(src); |
Darrick J. Wong | 1364b1d4 | 2018-01-18 13:55:20 -0800 | [diff] [blame] | 1220 | return error; |
| 1221 | } |
| 1222 | if (src > dest) |
Darrick J. Wong | 01c2e13 | 2018-01-18 14:07:53 -0800 | [diff] [blame] | 1223 | inode_lock_shared_nested(src, I_MUTEX_NONDIR2); |
Darrick J. Wong | 1364b1d4 | 2018-01-18 13:55:20 -0800 | [diff] [blame] | 1224 | return 0; |
| 1225 | } |
| 1226 | |
Darrick J. Wong | 0d41e1d | 2018-10-05 19:04:22 +1000 | [diff] [blame] | 1227 | /* Unlock both inodes after they've been prepped for a range clone. */ |
Darrick J. Wong | 3fc9f5e | 2018-10-30 10:47:26 +1100 | [diff] [blame] | 1228 | void |
Darrick J. Wong | 0d41e1d | 2018-10-05 19:04:22 +1000 | [diff] [blame] | 1229 | xfs_reflink_remap_unlock( |
| 1230 | struct file *file_in, |
| 1231 | struct file *file_out) |
| 1232 | { |
| 1233 | struct inode *inode_in = file_inode(file_in); |
| 1234 | struct xfs_inode *src = XFS_I(inode_in); |
| 1235 | struct inode *inode_out = file_inode(file_out); |
| 1236 | struct xfs_inode *dest = XFS_I(inode_out); |
| 1237 | bool same_inode = (inode_in == inode_out); |
| 1238 | |
| 1239 | xfs_iunlock(dest, XFS_MMAPLOCK_EXCL); |
| 1240 | if (!same_inode) |
| 1241 | xfs_iunlock(src, XFS_MMAPLOCK_SHARED); |
| 1242 | inode_unlock(inode_out); |
| 1243 | if (!same_inode) |
| 1244 | inode_unlock_shared(inode_in); |
| 1245 | } |
| 1246 | |
Darrick J. Wong | 1364b1d4 | 2018-01-18 13:55:20 -0800 | [diff] [blame] | 1247 | /* |
Darrick J. Wong | 410fdc7 | 2018-10-05 19:04:27 +1000 | [diff] [blame] | 1248 | * If we're reflinking to a point past the destination file's EOF, we must |
| 1249 | * zero any speculative post-EOF preallocations that sit between the old EOF |
| 1250 | * and the destination file offset. |
| 1251 | */ |
| 1252 | static int |
| 1253 | xfs_reflink_zero_posteof( |
| 1254 | struct xfs_inode *ip, |
| 1255 | loff_t pos) |
| 1256 | { |
| 1257 | loff_t isize = i_size_read(VFS_I(ip)); |
| 1258 | |
| 1259 | if (pos <= isize) |
| 1260 | return 0; |
| 1261 | |
| 1262 | trace_xfs_zero_eof(ip, isize, pos - isize); |
| 1263 | return iomap_zero_range(VFS_I(ip), isize, pos - isize, NULL, |
| 1264 | &xfs_iomap_ops); |
| 1265 | } |
| 1266 | |
| 1267 | /* |
Darrick J. Wong | 0d41e1d | 2018-10-05 19:04:22 +1000 | [diff] [blame] | 1268 | * Prepare two files for range cloning. Upon a successful return both inodes |
Dave Chinner | b399890 | 2018-10-06 11:44:39 +1000 | [diff] [blame] | 1269 | * will have the iolock and mmaplock held, the page cache of the out file will |
| 1270 | * be truncated, and any leases on the out file will have been broken. This |
| 1271 | * function borrows heavily from xfs_file_aio_write_checks. |
Dave Chinner | dceeb47 | 2018-10-06 11:44:19 +1000 | [diff] [blame] | 1272 | * |
| 1273 | * The VFS allows partial EOF blocks to "match" for dedupe even though it hasn't |
| 1274 | * checked that the bytes beyond EOF physically match. Hence we cannot use the |
| 1275 | * EOF block in the source dedupe range because it's not a complete block match, |
Dave Chinner | b399890 | 2018-10-06 11:44:39 +1000 | [diff] [blame] | 1276 | * hence can introduce a corruption into the file that has it's block replaced. |
Dave Chinner | dceeb47 | 2018-10-06 11:44:19 +1000 | [diff] [blame] | 1277 | * |
Dave Chinner | b399890 | 2018-10-06 11:44:39 +1000 | [diff] [blame] | 1278 | * In similar fashion, the VFS file cloning also allows partial EOF blocks to be |
| 1279 | * "block aligned" for the purposes of cloning entire files. However, if the |
| 1280 | * source file range includes the EOF block and it lands within the existing EOF |
| 1281 | * of the destination file, then we can expose stale data from beyond the source |
| 1282 | * file EOF in the destination file. |
| 1283 | * |
| 1284 | * XFS doesn't support partial block sharing, so in both cases we have check |
| 1285 | * these cases ourselves. For dedupe, we can simply round the length to dedupe |
| 1286 | * down to the previous whole block and ignore the partial EOF block. While this |
| 1287 | * means we can't dedupe the last block of a file, this is an acceptible |
| 1288 | * tradeoff for simplicity on implementation. |
| 1289 | * |
| 1290 | * For cloning, we want to share the partial EOF block if it is also the new EOF |
| 1291 | * block of the destination file. If the partial EOF block lies inside the |
| 1292 | * existing destination EOF, then we have to abort the clone to avoid exposing |
| 1293 | * stale data in the destination file. Hence we reject these clone attempts with |
| 1294 | * -EINVAL in this case. |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1295 | */ |
Darrick J. Wong | 3fc9f5e | 2018-10-30 10:47:26 +1100 | [diff] [blame] | 1296 | int |
Darrick J. Wong | 0d41e1d | 2018-10-05 19:04:22 +1000 | [diff] [blame] | 1297 | xfs_reflink_remap_prep( |
Christoph Hellwig | 5faaf4f | 2016-10-20 15:50:07 +1100 | [diff] [blame] | 1298 | struct file *file_in, |
| 1299 | loff_t pos_in, |
| 1300 | struct file *file_out, |
| 1301 | loff_t pos_out, |
Darrick J. Wong | 42ec3d4 | 2018-10-30 10:41:49 +1100 | [diff] [blame] | 1302 | loff_t *len, |
Darrick J. Wong | a91ae49b | 2018-10-30 10:41:28 +1100 | [diff] [blame] | 1303 | unsigned int remap_flags) |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1304 | { |
Christoph Hellwig | 5faaf4f | 2016-10-20 15:50:07 +1100 | [diff] [blame] | 1305 | struct inode *inode_in = file_inode(file_in); |
| 1306 | struct xfs_inode *src = XFS_I(inode_in); |
| 1307 | struct inode *inode_out = file_inode(file_out); |
| 1308 | struct xfs_inode *dest = XFS_I(inode_out); |
Christoph Hellwig | 5faaf4f | 2016-10-20 15:50:07 +1100 | [diff] [blame] | 1309 | bool same_inode = (inode_in == inode_out); |
Christoph Hellwig | 5faaf4f | 2016-10-20 15:50:07 +1100 | [diff] [blame] | 1310 | ssize_t ret; |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1311 | |
Christoph Hellwig | 5faaf4f | 2016-10-20 15:50:07 +1100 | [diff] [blame] | 1312 | /* Lock both files against IO */ |
Darrick J. Wong | 1364b1d4 | 2018-01-18 13:55:20 -0800 | [diff] [blame] | 1313 | ret = xfs_iolock_two_inodes_and_break_layout(inode_in, inode_out); |
| 1314 | if (ret) |
| 1315 | return ret; |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 1316 | if (same_inode) |
Christoph Hellwig | 5faaf4f | 2016-10-20 15:50:07 +1100 | [diff] [blame] | 1317 | xfs_ilock(src, XFS_MMAPLOCK_EXCL); |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 1318 | else |
Darrick J. Wong | 01c2e13 | 2018-01-18 14:07:53 -0800 | [diff] [blame] | 1319 | xfs_lock_two_inodes(src, XFS_MMAPLOCK_SHARED, dest, |
Darrick J. Wong | 7c2d238 | 2018-01-26 15:27:33 -0800 | [diff] [blame] | 1320 | XFS_MMAPLOCK_EXCL); |
Christoph Hellwig | 5faaf4f | 2016-10-20 15:50:07 +1100 | [diff] [blame] | 1321 | |
Darrick J. Wong | 876bec6f | 2016-12-09 16:18:30 -0800 | [diff] [blame] | 1322 | /* Check file eligibility and prepare for block sharing. */ |
Christoph Hellwig | 5faaf4f | 2016-10-20 15:50:07 +1100 | [diff] [blame] | 1323 | ret = -EINVAL; |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1324 | /* Don't reflink realtime inodes */ |
| 1325 | if (XFS_IS_REALTIME_INODE(src) || XFS_IS_REALTIME_INODE(dest)) |
Christoph Hellwig | 5faaf4f | 2016-10-20 15:50:07 +1100 | [diff] [blame] | 1326 | goto out_unlock; |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1327 | |
Christoph Hellwig | 5faaf4f | 2016-10-20 15:50:07 +1100 | [diff] [blame] | 1328 | /* Don't share DAX file data for now. */ |
| 1329 | if (IS_DAX(inode_in) || IS_DAX(inode_out)) |
| 1330 | goto out_unlock; |
Darrick J. Wong | cc71466 | 2016-10-03 09:11:41 -0700 | [diff] [blame] | 1331 | |
Darrick J. Wong | a83ab01 | 2018-10-30 10:41:08 +1100 | [diff] [blame] | 1332 | ret = generic_remap_file_range_prep(file_in, pos_in, file_out, pos_out, |
Darrick J. Wong | a91ae49b | 2018-10-30 10:41:28 +1100 | [diff] [blame] | 1333 | len, remap_flags); |
Darrick J. Wong | 8c5c836 | 2018-10-30 10:42:24 +1100 | [diff] [blame] | 1334 | if (ret < 0 || *len == 0) |
Christoph Hellwig | 5faaf4f | 2016-10-20 15:50:07 +1100 | [diff] [blame] | 1335 | goto out_unlock; |
| 1336 | |
Darrick J. Wong | 09ac862 | 2018-01-19 08:56:04 -0800 | [diff] [blame] | 1337 | /* Attach dquots to dest inode before changing block map */ |
Darrick J. Wong | c14cfcc | 2018-05-04 15:30:21 -0700 | [diff] [blame] | 1338 | ret = xfs_qm_dqattach(dest); |
Darrick J. Wong | 09ac862 | 2018-01-19 08:56:04 -0800 | [diff] [blame] | 1339 | if (ret) |
| 1340 | goto out_unlock; |
| 1341 | |
Darrick J. Wong | 5c989a0 | 2017-12-10 18:03:54 -0800 | [diff] [blame] | 1342 | /* |
Darrick J. Wong | 410fdc7 | 2018-10-05 19:04:27 +1000 | [diff] [blame] | 1343 | * Zero existing post-eof speculative preallocations in the destination |
| 1344 | * file. |
Darrick J. Wong | 5c989a0 | 2017-12-10 18:03:54 -0800 | [diff] [blame] | 1345 | */ |
Darrick J. Wong | 410fdc7 | 2018-10-05 19:04:27 +1000 | [diff] [blame] | 1346 | ret = xfs_reflink_zero_posteof(dest, pos_out); |
| 1347 | if (ret) |
| 1348 | goto out_unlock; |
Darrick J. Wong | 5c989a0 | 2017-12-10 18:03:54 -0800 | [diff] [blame] | 1349 | |
Darrick J. Wong | 876bec6f | 2016-12-09 16:18:30 -0800 | [diff] [blame] | 1350 | /* Set flags and remap blocks. */ |
Christoph Hellwig | 5faaf4f | 2016-10-20 15:50:07 +1100 | [diff] [blame] | 1351 | ret = xfs_reflink_set_inode_flag(src, dest); |
| 1352 | if (ret) |
| 1353 | goto out_unlock; |
Darrick J. Wong | 862bb36 | 2016-10-03 09:11:40 -0700 | [diff] [blame] | 1354 | |
Dave Chinner | 2c30717 | 2018-11-19 13:31:10 -0800 | [diff] [blame] | 1355 | /* |
| 1356 | * If pos_out > EOF, we may have dirtied blocks between EOF and |
| 1357 | * pos_out. In that case, we need to extend the flush and unmap to cover |
| 1358 | * from EOF to the end of the copy length. |
| 1359 | */ |
| 1360 | if (pos_out > XFS_ISIZE(dest)) { |
| 1361 | loff_t flen = *len + (pos_out - XFS_ISIZE(dest)); |
| 1362 | ret = xfs_flush_unmap_range(dest, XFS_ISIZE(dest), flen); |
| 1363 | } else { |
| 1364 | ret = xfs_flush_unmap_range(dest, pos_out, *len); |
| 1365 | } |
| 1366 | if (ret) |
| 1367 | goto out_unlock; |
Darrick J. Wong | 7debbf0 | 2018-10-05 19:05:41 +1000 | [diff] [blame] | 1368 | |
Darrick J. Wong | 0d41e1d | 2018-10-05 19:04:22 +1000 | [diff] [blame] | 1369 | return 1; |
| 1370 | out_unlock: |
| 1371 | xfs_reflink_remap_unlock(file_in, file_out); |
| 1372 | return ret; |
| 1373 | } |
| 1374 | |
| 1375 | /* |
Darrick J. Wong | 98cc2db | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 1376 | * The user wants to preemptively CoW all shared blocks in this file, |
| 1377 | * which enables us to turn off the reflink flag. Iterate all |
| 1378 | * extents which are not prealloc/delalloc to see which ranges are |
| 1379 | * mentioned in the refcount tree, then read those blocks into the |
| 1380 | * pagecache, dirty them, fsync them back out, and then we can update |
| 1381 | * the inode flag. What happens if we run out of memory? :) |
| 1382 | */ |
| 1383 | STATIC int |
| 1384 | xfs_reflink_dirty_extents( |
| 1385 | struct xfs_inode *ip, |
| 1386 | xfs_fileoff_t fbno, |
| 1387 | xfs_filblks_t end, |
| 1388 | xfs_off_t isize) |
| 1389 | { |
| 1390 | struct xfs_mount *mp = ip->i_mount; |
| 1391 | xfs_agnumber_t agno; |
| 1392 | xfs_agblock_t agbno; |
| 1393 | xfs_extlen_t aglen; |
| 1394 | xfs_agblock_t rbno; |
| 1395 | xfs_extlen_t rlen; |
| 1396 | xfs_off_t fpos; |
| 1397 | xfs_off_t flen; |
| 1398 | struct xfs_bmbt_irec map[2]; |
| 1399 | int nmaps; |
Darrick J. Wong | 9780643c | 2016-10-10 16:49:18 +1100 | [diff] [blame] | 1400 | int error = 0; |
Darrick J. Wong | 98cc2db | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 1401 | |
| 1402 | while (end - fbno > 0) { |
| 1403 | nmaps = 1; |
| 1404 | /* |
| 1405 | * Look for extents in the file. Skip holes, delalloc, or |
| 1406 | * unwritten extents; they can't be reflinked. |
| 1407 | */ |
| 1408 | error = xfs_bmapi_read(ip, fbno, end - fbno, map, &nmaps, 0); |
| 1409 | if (error) |
| 1410 | goto out; |
| 1411 | if (nmaps == 0) |
| 1412 | break; |
Christoph Hellwig | 9c4f29d | 2017-03-28 14:53:35 -0700 | [diff] [blame] | 1413 | if (!xfs_bmap_is_real_extent(&map[0])) |
Darrick J. Wong | 98cc2db | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 1414 | goto next; |
| 1415 | |
| 1416 | map[1] = map[0]; |
| 1417 | while (map[1].br_blockcount) { |
| 1418 | agno = XFS_FSB_TO_AGNO(mp, map[1].br_startblock); |
| 1419 | agbno = XFS_FSB_TO_AGBNO(mp, map[1].br_startblock); |
| 1420 | aglen = map[1].br_blockcount; |
| 1421 | |
Darrick J. Wong | 92ff728 | 2017-06-16 11:00:10 -0700 | [diff] [blame] | 1422 | error = xfs_reflink_find_shared(mp, NULL, agno, agbno, |
| 1423 | aglen, &rbno, &rlen, true); |
Darrick J. Wong | 98cc2db | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 1424 | if (error) |
| 1425 | goto out; |
| 1426 | if (rbno == NULLAGBLOCK) |
| 1427 | break; |
| 1428 | |
| 1429 | /* Dirty the pages */ |
| 1430 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 1431 | fpos = XFS_FSB_TO_B(mp, map[1].br_startoff + |
| 1432 | (rbno - agbno)); |
| 1433 | flen = XFS_FSB_TO_B(mp, rlen); |
| 1434 | if (fpos + flen > isize) |
| 1435 | flen = isize - fpos; |
| 1436 | error = iomap_file_dirty(VFS_I(ip), fpos, flen, |
| 1437 | &xfs_iomap_ops); |
| 1438 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
| 1439 | if (error) |
| 1440 | goto out; |
| 1441 | |
| 1442 | map[1].br_blockcount -= (rbno - agbno + rlen); |
| 1443 | map[1].br_startoff += (rbno - agbno + rlen); |
| 1444 | map[1].br_startblock += (rbno - agbno + rlen); |
| 1445 | } |
| 1446 | |
| 1447 | next: |
| 1448 | fbno = map[0].br_startoff + map[0].br_blockcount; |
| 1449 | } |
| 1450 | out: |
| 1451 | return error; |
| 1452 | } |
| 1453 | |
Darrick J. Wong | ea7cdd7 | 2017-06-16 11:00:11 -0700 | [diff] [blame] | 1454 | /* Does this inode need the reflink flag? */ |
| 1455 | int |
| 1456 | xfs_reflink_inode_has_shared_extents( |
| 1457 | struct xfs_trans *tp, |
| 1458 | struct xfs_inode *ip, |
| 1459 | bool *has_shared) |
| 1460 | { |
| 1461 | struct xfs_bmbt_irec got; |
| 1462 | struct xfs_mount *mp = ip->i_mount; |
| 1463 | struct xfs_ifork *ifp; |
| 1464 | xfs_agnumber_t agno; |
| 1465 | xfs_agblock_t agbno; |
| 1466 | xfs_extlen_t aglen; |
| 1467 | xfs_agblock_t rbno; |
| 1468 | xfs_extlen_t rlen; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1469 | struct xfs_iext_cursor icur; |
Darrick J. Wong | ea7cdd7 | 2017-06-16 11:00:11 -0700 | [diff] [blame] | 1470 | bool found; |
| 1471 | int error; |
| 1472 | |
| 1473 | ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK); |
| 1474 | if (!(ifp->if_flags & XFS_IFEXTENTS)) { |
| 1475 | error = xfs_iread_extents(tp, ip, XFS_DATA_FORK); |
| 1476 | if (error) |
| 1477 | return error; |
| 1478 | } |
| 1479 | |
| 1480 | *has_shared = false; |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1481 | found = xfs_iext_lookup_extent(ip, ifp, 0, &icur, &got); |
Darrick J. Wong | ea7cdd7 | 2017-06-16 11:00:11 -0700 | [diff] [blame] | 1482 | while (found) { |
| 1483 | if (isnullstartblock(got.br_startblock) || |
| 1484 | got.br_state != XFS_EXT_NORM) |
| 1485 | goto next; |
| 1486 | agno = XFS_FSB_TO_AGNO(mp, got.br_startblock); |
| 1487 | agbno = XFS_FSB_TO_AGBNO(mp, got.br_startblock); |
| 1488 | aglen = got.br_blockcount; |
| 1489 | |
| 1490 | error = xfs_reflink_find_shared(mp, tp, agno, agbno, aglen, |
| 1491 | &rbno, &rlen, false); |
| 1492 | if (error) |
| 1493 | return error; |
| 1494 | /* Is there still a shared block here? */ |
| 1495 | if (rbno != NULLAGBLOCK) { |
| 1496 | *has_shared = true; |
| 1497 | return 0; |
| 1498 | } |
| 1499 | next: |
Christoph Hellwig | b2b1712 | 2017-11-03 10:34:43 -0700 | [diff] [blame] | 1500 | found = xfs_iext_next_extent(ifp, &icur, &got); |
Darrick J. Wong | ea7cdd7 | 2017-06-16 11:00:11 -0700 | [diff] [blame] | 1501 | } |
| 1502 | |
| 1503 | return 0; |
| 1504 | } |
| 1505 | |
Dave Chinner | 844e5e7 | 2018-05-09 07:49:10 -0700 | [diff] [blame] | 1506 | /* |
| 1507 | * Clear the inode reflink flag if there are no shared extents. |
| 1508 | * |
| 1509 | * The caller is responsible for joining the inode to the transaction passed in. |
| 1510 | * The inode will be joined to the transaction that is returned to the caller. |
| 1511 | */ |
Darrick J. Wong | 98cc2db | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 1512 | int |
| 1513 | xfs_reflink_clear_inode_flag( |
| 1514 | struct xfs_inode *ip, |
| 1515 | struct xfs_trans **tpp) |
| 1516 | { |
Darrick J. Wong | ea7cdd7 | 2017-06-16 11:00:11 -0700 | [diff] [blame] | 1517 | bool needs_flag; |
Darrick J. Wong | 98cc2db | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 1518 | int error = 0; |
| 1519 | |
Darrick J. Wong | 63646fc | 2016-10-10 16:47:32 +1100 | [diff] [blame] | 1520 | ASSERT(xfs_is_reflink_inode(ip)); |
Darrick J. Wong | 98cc2db | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 1521 | |
Darrick J. Wong | ea7cdd7 | 2017-06-16 11:00:11 -0700 | [diff] [blame] | 1522 | error = xfs_reflink_inode_has_shared_extents(*tpp, ip, &needs_flag); |
| 1523 | if (error || needs_flag) |
| 1524 | return error; |
Darrick J. Wong | 98cc2db | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 1525 | |
| 1526 | /* |
| 1527 | * We didn't find any shared blocks so turn off the reflink flag. |
| 1528 | * First, get rid of any leftover CoW mappings. |
| 1529 | */ |
Christoph Hellwig | 3802a34 | 2017-03-07 16:45:58 -0800 | [diff] [blame] | 1530 | error = xfs_reflink_cancel_cow_blocks(ip, tpp, 0, NULLFILEOFF, true); |
Darrick J. Wong | 98cc2db | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 1531 | if (error) |
| 1532 | return error; |
| 1533 | |
| 1534 | /* Clear the inode flag. */ |
| 1535 | trace_xfs_reflink_unset_inode_flag(ip); |
| 1536 | ip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK; |
Darrick J. Wong | 83104d4 | 2016-10-03 09:11:46 -0700 | [diff] [blame] | 1537 | xfs_inode_clear_cowblocks_tag(ip); |
Darrick J. Wong | 98cc2db | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 1538 | xfs_trans_log_inode(*tpp, ip, XFS_ILOG_CORE); |
| 1539 | |
| 1540 | return error; |
| 1541 | } |
| 1542 | |
| 1543 | /* |
| 1544 | * Clear the inode reflink flag if there are no shared extents and the size |
| 1545 | * hasn't changed. |
| 1546 | */ |
| 1547 | STATIC int |
| 1548 | xfs_reflink_try_clear_inode_flag( |
Darrick J. Wong | 97a1b87 | 2016-10-10 16:49:01 +1100 | [diff] [blame] | 1549 | struct xfs_inode *ip) |
Darrick J. Wong | 98cc2db | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 1550 | { |
| 1551 | struct xfs_mount *mp = ip->i_mount; |
| 1552 | struct xfs_trans *tp; |
| 1553 | int error = 0; |
| 1554 | |
| 1555 | /* Start a rolling transaction to remove the mappings */ |
| 1556 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, 0, 0, 0, &tp); |
| 1557 | if (error) |
| 1558 | return error; |
| 1559 | |
| 1560 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
| 1561 | xfs_trans_ijoin(tp, ip, 0); |
| 1562 | |
Darrick J. Wong | 98cc2db | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 1563 | error = xfs_reflink_clear_inode_flag(ip, &tp); |
| 1564 | if (error) |
| 1565 | goto cancel; |
| 1566 | |
| 1567 | error = xfs_trans_commit(tp); |
| 1568 | if (error) |
| 1569 | goto out; |
| 1570 | |
| 1571 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 1572 | return 0; |
| 1573 | cancel: |
| 1574 | xfs_trans_cancel(tp); |
| 1575 | out: |
| 1576 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 1577 | return error; |
| 1578 | } |
| 1579 | |
| 1580 | /* |
| 1581 | * Pre-COW all shared blocks within a given byte range of a file and turn off |
| 1582 | * the reflink flag if we unshare all of the file's blocks. |
| 1583 | */ |
| 1584 | int |
| 1585 | xfs_reflink_unshare( |
| 1586 | struct xfs_inode *ip, |
| 1587 | xfs_off_t offset, |
| 1588 | xfs_off_t len) |
| 1589 | { |
| 1590 | struct xfs_mount *mp = ip->i_mount; |
| 1591 | xfs_fileoff_t fbno; |
| 1592 | xfs_filblks_t end; |
| 1593 | xfs_off_t isize; |
| 1594 | int error; |
| 1595 | |
| 1596 | if (!xfs_is_reflink_inode(ip)) |
| 1597 | return 0; |
| 1598 | |
| 1599 | trace_xfs_reflink_unshare(ip, offset, len); |
| 1600 | |
| 1601 | inode_dio_wait(VFS_I(ip)); |
| 1602 | |
| 1603 | /* Try to CoW the selected ranges */ |
| 1604 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
Darrick J. Wong | 97a1b87 | 2016-10-10 16:49:01 +1100 | [diff] [blame] | 1605 | fbno = XFS_B_TO_FSBT(mp, offset); |
Darrick J. Wong | 98cc2db | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 1606 | isize = i_size_read(VFS_I(ip)); |
| 1607 | end = XFS_B_TO_FSB(mp, offset + len); |
| 1608 | error = xfs_reflink_dirty_extents(ip, fbno, end, isize); |
| 1609 | if (error) |
| 1610 | goto out_unlock; |
| 1611 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 1612 | |
| 1613 | /* Wait for the IO to finish */ |
| 1614 | error = filemap_write_and_wait(VFS_I(ip)->i_mapping); |
| 1615 | if (error) |
| 1616 | goto out; |
| 1617 | |
Darrick J. Wong | 97a1b87 | 2016-10-10 16:49:01 +1100 | [diff] [blame] | 1618 | /* Turn off the reflink flag if possible. */ |
| 1619 | error = xfs_reflink_try_clear_inode_flag(ip); |
| 1620 | if (error) |
| 1621 | goto out; |
Darrick J. Wong | 98cc2db | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 1622 | |
| 1623 | return 0; |
| 1624 | |
| 1625 | out_unlock: |
| 1626 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 1627 | out: |
| 1628 | trace_xfs_reflink_unshare_error(ip, error, _RET_IP_); |
| 1629 | return error; |
| 1630 | } |