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