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