blob: d60d0eeed7b9387255a19121f0bd2192330d1f4c [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0+
Darrick J. Wong3993bae2016-10-03 09:11:32 -07002/*
3 * Copyright (C) 2016 Oracle. All Rights Reserved.
Darrick J. Wong3993bae2016-10-03 09:11:32 -07004 * Author: Darrick J. Wong <darrick.wong@oracle.com>
Darrick J. Wong3993bae2016-10-03 09:11:32 -07005 */
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. Wong174edb02016-10-03 09:11:39 -070029#include "xfs_btree.h"
Darrick J. Wong3993bae2016-10-03 09:11:32 -070030#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. Wong3993bae2016-10-03 09:11:32 -070038#include "xfs_reflink.h"
Darrick J. Wong2a067052016-10-03 09:11:33 -070039#include "xfs_iomap.h"
Darrick J. Wong43caeb12016-10-03 09:11:35 -070040#include "xfs_rmap_btree.h"
Darrick J. Wong6fa164b2016-10-03 09:11:45 -070041#include "xfs_sb.h"
42#include "xfs_ag_resv.h"
Darrick J. Wong3993bae2016-10-03 09:11:32 -070043
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. Wong5eda4302017-02-02 15:14:02 -080069 * 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. Wong3993bae2016-10-03 09:11:32 -070077 * When dirty pages are being written out (typically in writepage), the
Darrick J. Wong5eda4302017-02-02 15:14:02 -080078 * 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. Wong3993bae2016-10-03 09:11:32 -070085 *
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. Wong5eda4302017-02-02 15:14:02 -080099 * 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. Wong3993bae2016-10-03 09:11:32 -0700107 * 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. Wong5eda4302017-02-02 15:14:02 -0800113 * 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. Wong3993bae2016-10-03 09:11:32 -0700122 *
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. Wong2a067052016-10-03 09:11:33 -0700131
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 */
139int
140xfs_reflink_find_shared(
141 struct xfs_mount *mp,
Darrick J. Wong92ff7282017-06-16 11:00:10 -0700142 struct xfs_trans *tp,
Darrick J. Wong2a067052016-10-03 09:11:33 -0700143 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. Wong92ff7282017-06-16 11:00:10 -0700154 error = xfs_alloc_read_agf(mp, tp, agno, 0, &agbp);
Darrick J. Wong2a067052016-10-03 09:11:33 -0700155 if (error)
156 return error;
Darrick J. Wong10479e22017-07-17 14:30:57 -0700157 if (!agbp)
158 return -ENOMEM;
Darrick J. Wong2a067052016-10-03 09:11:33 -0700159
Brian Fostered7ef8e2018-07-11 22:26:17 -0700160 cur = xfs_refcountbt_init_cursor(mp, tp, agbp, agno);
Darrick J. Wong2a067052016-10-03 09:11:33 -0700161
162 error = xfs_refcount_find_shared(cur, agbno, aglen, fbno, flen,
163 find_end_of_shared);
164
Darrick J. Wong0b04b6b82018-07-19 12:26:31 -0700165 xfs_btree_del_cursor(cur, error);
Darrick J. Wong2a067052016-10-03 09:11:33 -0700166
Darrick J. Wong92ff7282017-06-16 11:00:10 -0700167 xfs_trans_brelse(tp, agbp);
Darrick J. Wong2a067052016-10-03 09:11:33 -0700168 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 */
181int
182xfs_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 Hellwig9c4f29d2017-03-28 14:53:35 -0700196 if (!xfs_is_reflink_inode(ip) || !xfs_bmap_is_real_extent(irec)) {
Darrick J. Wong2a067052016-10-03 09:11:33 -0700197 *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. Wong92ff7282017-06-16 11:00:10 -0700207 error = xfs_reflink_find_shared(ip->i_mount, NULL, agno, agbno,
Darrick J. Wong2a067052016-10-03 09:11:33 -0700208 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 Hellwig3ba020b2016-10-20 15:53:50 +1100241/*
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 */
250int
251xfs_reflink_reserve_cow(
Darrick J. Wong2a067052016-10-03 09:11:33 -0700252 struct xfs_inode *ip,
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100253 struct xfs_bmbt_irec *imap,
254 bool *shared)
Darrick J. Wong2a067052016-10-03 09:11:33 -0700255{
Christoph Hellwig2755fc442016-11-24 11:39:49 +1100256 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK);
257 struct xfs_bmbt_irec got;
Christoph Hellwig2755fc442016-11-24 11:39:49 +1100258 int error = 0;
259 bool eof = false, trimmed;
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700260 struct xfs_iext_cursor icur;
Darrick J. Wong2a067052016-10-03 09:11:33 -0700261
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100262 /*
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 Hellwig2755fc442016-11-24 11:39:49 +1100270
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700271 if (!xfs_iext_lookup_extent(ip, ifp, imap->br_startoff, &icur, &got))
Christoph Hellwig2755fc442016-11-24 11:39:49 +1100272 eof = true;
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100273 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. Wong2a067052016-10-03 09:11:33 -0700276
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100277 *shared = true;
278 return 0;
279 }
Darrick J. Wong2a067052016-10-03 09:11:33 -0700280
281 /* Trim the mapping to the nearest shared extent boundary. */
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100282 error = xfs_reflink_trim_around_shared(ip, imap, shared, &trimmed);
Darrick J. Wong2a067052016-10-03 09:11:33 -0700283 if (error)
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100284 return error;
Darrick J. Wong2a067052016-10-03 09:11:33 -0700285
286 /* Not shared? Just report the (potentially capped) extent. */
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100287 if (!*shared)
288 return 0;
Darrick J. Wong2a067052016-10-03 09:11:33 -0700289
290 /*
291 * Fork all the shared blocks from our write offset until the end of
292 * the extent.
293 */
Darrick J. Wong4882c192018-05-04 15:30:22 -0700294 error = xfs_qm_dqattach_locked(ip, false);
Darrick J. Wong2a067052016-10-03 09:11:33 -0700295 if (error)
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100296 return error;
297
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100298 error = xfs_bmapi_reserve_delalloc(ip, XFS_COW_FORK, imap->br_startoff,
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700299 imap->br_blockcount, 0, &got, &icur, eof);
Brian Foster0260d8f2016-11-28 14:57:42 +1100300 if (error == -ENOSPC || error == -EDQUOT)
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100301 trace_xfs_reflink_cow_enospc(ip, imap);
Brian Foster0260d8f2016-11-28 14:57:42 +1100302 if (error)
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100303 return error;
Darrick J. Wong83104d42016-10-03 09:11:46 -0700304
Darrick J. Wong2a067052016-10-03 09:11:33 -0700305 trace_xfs_reflink_cow_alloc(ip, &got);
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100306 return 0;
Darrick J. Wong2a067052016-10-03 09:11:33 -0700307}
Darrick J. Wongef473662016-10-03 09:11:34 -0700308
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800309/* Convert part of an unwritten CoW extent to a real one. */
310STATIC int
311xfs_reflink_convert_cow_extent(
312 struct xfs_inode *ip,
313 struct xfs_bmbt_irec *imap,
314 xfs_fileoff_t offset_fsb,
Brian Foster8a749382018-07-11 22:26:06 -0700315 xfs_filblks_t count_fsb)
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800316{
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800317 int nimaps = 1;
318
319 if (imap->br_state == XFS_EXT_NORM)
320 return 0;
321
Christoph Hellwigdcf95852017-02-06 10:46:01 -0800322 xfs_trim_extent(imap, offset_fsb, count_fsb);
323 trace_xfs_reflink_convert_cow(ip, imap);
324 if (imap->br_blockcount == 0)
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800325 return 0;
Christoph Hellwigdcf95852017-02-06 10:46:01 -0800326 return xfs_bmapi_write(NULL, ip, imap->br_startoff, imap->br_blockcount,
Brian Fostera7beabe2018-07-11 22:26:25 -0700327 XFS_BMAPI_COWFORK | XFS_BMAPI_CONVERT, 0, imap,
Brian Foster3ae2d892018-07-11 22:26:19 -0700328 &nimaps);
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800329}
330
331/* Convert all of the unwritten CoW extents in a file's range to real ones. */
332int
333xfs_reflink_convert_cow(
334 struct xfs_inode *ip,
335 xfs_off_t offset,
336 xfs_off_t count)
337{
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800338 struct xfs_mount *mp = ip->i_mount;
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800339 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 Hellwigb1214592017-11-03 10:34:44 -0700341 xfs_filblks_t count_fsb = end_fsb - offset_fsb;
342 struct xfs_bmbt_irec imap;
Christoph Hellwigb1214592017-11-03 10:34:44 -0700343 int nimaps = 1, error = 0;
344
345 ASSERT(count != 0);
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800346
347 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigb1214592017-11-03 10:34:44 -0700348 error = xfs_bmapi_write(NULL, ip, offset_fsb, count_fsb,
349 XFS_BMAPI_COWFORK | XFS_BMAPI_CONVERT |
Brian Fostera7beabe2018-07-11 22:26:25 -0700350 XFS_BMAPI_CONVERT_ONLY, 0, &imap, &nimaps);
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800351 xfs_iunlock(ip, XFS_ILOCK_EXCL);
352 return error;
353}
354
Dave Chinnerdf307072018-09-29 13:47:15 +1000355/*
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 */
360static int
361xfs_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. Wong0613f162016-10-03 09:11:37 -0700396/* Allocate all CoW reservations covering a range of blocks in a file. */
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800397int
398xfs_reflink_allocate_cow(
Darrick J. Wong0613f162016-10-03 09:11:37 -0700399 struct xfs_inode *ip,
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800400 struct xfs_bmbt_irec *imap,
401 bool *shared,
402 uint *lockmode)
Darrick J. Wong0613f162016-10-03 09:11:37 -0700403{
404 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800405 xfs_fileoff_t offset_fsb = imap->br_startoff;
406 xfs_filblks_t count_fsb = imap->br_blockcount;
Dave Chinnerdf307072018-09-29 13:47:15 +1000407 struct xfs_trans *tp;
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800408 int nimaps, error = 0;
Dave Chinnerdf307072018-09-29 13:47:15 +1000409 bool found;
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800410 xfs_filblks_t resaligned;
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800411 xfs_extlen_t resblks = 0;
Darrick J. Wong0613f162016-10-03 09:11:37 -0700412
Christoph Hellwigc7dbe3f2018-03-13 23:15:31 -0700413 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Dave Chinnerdf307072018-09-29 13:47:15 +1000414 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. Wong0613f162016-10-03 09:11:37 -0700437
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800438 /*
Dave Chinnerdf307072018-09-29 13:47:15 +1000439 * Check for an overlapping extent again now that we dropped the ilock.
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800440 */
Dave Chinnerdf307072018-09-29 13:47:15 +1000441 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. Wong0613f162016-10-03 09:11:37 -0700447 }
448
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800449 error = xfs_trans_reserve_quota_nblks(tp, ip, resblks, 0,
450 XFS_QMOPT_RES_REGBLKS);
Darrick J. Wong0613f162016-10-03 09:11:37 -0700451 if (error)
Dave Chinnerdf307072018-09-29 13:47:15 +1000452 goto out_trans_cancel;
Darrick J. Wong0613f162016-10-03 09:11:37 -0700453
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800454 xfs_trans_ijoin(tp, ip, 0);
455
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800456 /* Allocate the entire reservation as unwritten blocks. */
Dave Chinnerdf307072018-09-29 13:47:15 +1000457 nimaps = 1;
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800458 error = xfs_bmapi_write(tp, ip, imap->br_startoff, imap->br_blockcount,
Brian Foster650919f2018-07-11 22:26:23 -0700459 XFS_BMAPI_COWFORK | XFS_BMAPI_PREALLOC,
Brian Fostera7beabe2018-07-11 22:26:25 -0700460 resblks, imap, &nimaps);
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800461 if (error)
Dave Chinnerdf307072018-09-29 13:47:15 +1000462 goto out_unreserve;
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800463
Darrick J. Wong86d692b2017-12-14 15:46:06 -0800464 xfs_inode_set_cowblocks_tag(ip);
Darrick J. Wong0613f162016-10-03 09:11:37 -0700465 error = xfs_trans_commit(tp);
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800466 if (error)
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800467 return error;
Darrick J. Wong9f37bd12018-01-26 11:37:44 -0800468
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 Hellwig3c68d442017-02-06 10:51:03 -0800475convert:
Brian Foster8a749382018-07-11 22:26:06 -0700476 return xfs_reflink_convert_cow_extent(ip, imap, offset_fsb, count_fsb);
Dave Chinnerdf307072018-09-29 13:47:15 +1000477
478out_unreserve:
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800479 xfs_trans_unreserve_quota_nblks(tp, ip, (long)resblks, 0,
480 XFS_QMOPT_RES_REGBLKS);
Dave Chinnerdf307072018-09-29 13:47:15 +1000481out_trans_cancel:
482 xfs_trans_cancel(tp);
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800483 return error;
Darrick J. Wong0613f162016-10-03 09:11:37 -0700484}
485
Darrick J. Wongef473662016-10-03 09:11:34 -0700486/*
Christoph Hellwig3802a342017-03-07 16:45:58 -0800487 * 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 Chinnerc5295c62018-05-09 07:49:09 -0700491 *
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. Wong43caeb12016-10-03 09:11:35 -0700494 */
495int
496xfs_reflink_cancel_cow_blocks(
497 struct xfs_inode *ip,
498 struct xfs_trans **tpp,
499 xfs_fileoff_t offset_fsb,
Christoph Hellwig3802a342017-03-07 16:45:58 -0800500 xfs_fileoff_t end_fsb,
501 bool cancel_real)
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700502{
Christoph Hellwig3e0ee782016-10-20 15:54:31 +1100503 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK);
Christoph Hellwigdf5ab1b2016-11-24 11:39:50 +1100504 struct xfs_bmbt_irec got, del;
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700505 struct xfs_iext_cursor icur;
Christoph Hellwigdf5ab1b2016-11-24 11:39:50 +1100506 int error = 0;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700507
Christoph Hellwig51d62692018-07-17 16:51:51 -0700508 if (!xfs_inode_has_cow_data(ip))
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700509 return 0;
Christoph Hellwig41caabd2017-11-03 10:34:44 -0700510 if (!xfs_iext_lookup_extent_before(ip, ifp, &end_fsb, &icur, &got))
Christoph Hellwig3e0ee782016-10-20 15:54:31 +1100511 return 0;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700512
Christoph Hellwig41caabd2017-11-03 10:34:44 -0700513 /* Walk backwards until we're out of the I/O range... */
514 while (got.br_startoff + got.br_blockcount > offset_fsb) {
Christoph Hellwig3e0ee782016-10-20 15:54:31 +1100515 del = got;
516 xfs_trim_extent(&del, offset_fsb, end_fsb - offset_fsb);
Christoph Hellwig41caabd2017-11-03 10:34:44 -0700517
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 Hellwig3e0ee782016-10-20 15:54:31 +1100524 trace_xfs_reflink_cancel_cow(ip, &del);
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700525
Christoph Hellwig3e0ee782016-10-20 15:54:31 +1100526 if (isnullstartblock(del.br_startblock)) {
527 error = xfs_bmap_del_extent_delay(ip, XFS_COW_FORK,
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700528 &icur, &got, &del);
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700529 if (error)
530 break;
Christoph Hellwig3802a342017-03-07 16:45:58 -0800531 } else if (del.br_state == XFS_EXT_UNWRITTEN || cancel_real) {
Brian Foster1e5ae192018-07-24 13:43:12 -0700532 ASSERT((*tpp)->t_firstblock == NULLFSBLOCK);
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700533
Darrick J. Wong174edb02016-10-03 09:11:39 -0700534 /* Free the CoW orphan record. */
Brian Foster0f37d172018-08-01 07:20:34 -0700535 error = xfs_refcount_free_cow_extent(*tpp,
536 del.br_startblock, del.br_blockcount);
Darrick J. Wong174edb02016-10-03 09:11:39 -0700537 if (error)
538 break;
539
Brian Foster0f37d172018-08-01 07:20:34 -0700540 xfs_bmap_add_free(*tpp, del.br_startblock,
541 del.br_blockcount, NULL);
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700542
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700543 /* Roll the transaction */
Brian Foster9e28a242018-07-24 13:43:15 -0700544 error = xfs_defer_finish(tpp);
Brian Foster9b1f4e92018-08-01 07:20:33 -0700545 if (error)
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700546 break;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700547
548 /* Remove the mapping from the CoW fork. */
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700549 xfs_bmap_del_extent_cow(ip, &icur, &got, &del);
Darrick J. Wong4b4c1322018-01-19 09:05:48 -0800550
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. Wong9d40fba2017-12-10 18:03:55 -0800557 } else {
558 /* Didn't do anything, push cursor back. */
559 xfs_iext_prev(ifp, &icur);
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700560 }
Christoph Hellwig41caabd2017-11-03 10:34:44 -0700561next_extent:
562 if (!xfs_iext_get_extent(ifp, &icur, &got))
Brian Fosterc17a8ef2016-10-24 14:21:08 +1100563 break;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700564 }
565
Brian Fosterc17a8ef2016-10-24 14:21:08 +1100566 /* clear tag if cow fork is emptied */
567 if (!ifp->if_bytes)
568 xfs_inode_clear_cowblocks_tag(ip);
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700569 return error;
570}
571
572/*
Christoph Hellwig3802a342017-03-07 16:45:58 -0800573 * 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. Wong43caeb12016-10-03 09:11:35 -0700577 */
578int
579xfs_reflink_cancel_cow_range(
580 struct xfs_inode *ip,
581 xfs_off_t offset,
Christoph Hellwig3802a342017-03-07 16:45:58 -0800582 xfs_off_t count,
583 bool cancel_real)
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700584{
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. Wong63646fc2016-10-10 16:47:32 +1100591 ASSERT(xfs_is_reflink_inode(ip));
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700592
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 Chinner4df0f7f2018-03-06 17:07:22 -0800601 0, 0, XFS_TRANS_NOFS, &tp);
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700602 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 Hellwig3802a342017-03-07 16:45:58 -0800609 error = xfs_reflink_cancel_cow_blocks(ip, &tp, offset_fsb, end_fsb,
610 cancel_real);
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700611 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
619out_cancel:
620 xfs_trans_cancel(tp);
621 xfs_iunlock(ip, XFS_ILOCK_EXCL);
622out:
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 */
630int
631xfs_reflink_end_cow(
632 struct xfs_inode *ip,
633 xfs_off_t offset,
634 xfs_off_t count)
635{
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100636 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK);
Christoph Hellwig4ab86712016-11-24 11:39:50 +1100637 struct xfs_bmbt_irec got, del;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700638 struct xfs_trans *tp;
639 xfs_fileoff_t offset_fsb;
640 xfs_fileoff_t end_fsb;
Christoph Hellwig4ab86712016-11-24 11:39:50 +1100641 int error;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700642 unsigned int resblks;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700643 xfs_filblks_t rlen;
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700644 struct xfs_iext_cursor icur;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700645
646 trace_xfs_reflink_end_cow(ip, offset, count);
647
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100648 /* No COW extents? That's easy! */
649 if (ifp->if_bytes == 0)
650 return 0;
651
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700652 offset_fsb = XFS_B_TO_FSBT(ip->i_mount, offset);
653 end_fsb = XFS_B_TO_FSB(ip->i_mount, offset + count);
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700654
Darrick J. Wongfe0be232017-04-12 12:26:07 -0700655 /*
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. Wong43caeb12016-10-03 09:11:35 -0700671 error = xfs_trans_alloc(ip->i_mount, &M_RES(ip->i_mount)->tr_write,
Dave Chinner4df0f7f2018-03-06 17:07:22 -0800672 resblks, 0, XFS_TRANS_RESERVE | XFS_TRANS_NOFS, &tp);
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700673 if (error)
674 goto out;
675
676 xfs_ilock(ip, XFS_ILOCK_EXCL);
677 xfs_trans_ijoin(tp, ip, 0);
678
Christoph Hellwigdc560152017-10-23 16:32:39 -0700679 /*
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 Hellwigb2b17122017-11-03 10:34:43 -0700684 if (!xfs_iext_lookup_extent_before(ip, ifp, &end_fsb, &icur, &got))
Christoph Hellwigdc560152017-10-23 16:32:39 -0700685 goto out_cancel;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700686
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100687 /* 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 Hellwigb2b17122017-11-03 10:34:43 -0700692 /* Extent delete may have bumped ext forward */
Christoph Hellwigdf79b812018-03-13 23:15:33 -0700693 if (!del.br_blockcount)
694 goto prev_extent;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700695
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100696 ASSERT(!isnullstartblock(got.br_startblock));
697
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800698 /*
699 * Don't remap unwritten extents; these are
700 * speculatively preallocated CoW extents that have been
701 * allocated but have not yet been involved in a write.
702 */
Christoph Hellwigdf79b812018-03-13 23:15:33 -0700703 if (got.br_state == XFS_EXT_UNWRITTEN)
704 goto prev_extent;
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800705
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100706 /* Unmap the old blocks in the data fork. */
Brian Foster9d9e6232018-08-01 07:20:35 -0700707 ASSERT(tp->t_firstblock == NULLFSBLOCK);
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100708 rlen = del.br_blockcount;
Brian Foster2af52842018-07-11 22:26:25 -0700709 error = __xfs_bunmapi(tp, ip, del.br_startoff, &rlen, 0, 1);
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100710 if (error)
Brian Fosterc8eac492018-07-24 13:43:13 -0700711 goto out_cancel;
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100712
713 /* Trim the extent to whatever got unmapped. */
714 if (rlen) {
715 xfs_trim_extent(&del, del.br_startoff + rlen,
716 del.br_blockcount - rlen);
717 }
718 trace_xfs_reflink_cow_remap(ip, &del);
719
720 /* Free the CoW orphan record. */
Brian Foster0f37d172018-08-01 07:20:34 -0700721 error = xfs_refcount_free_cow_extent(tp, del.br_startblock,
722 del.br_blockcount);
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100723 if (error)
Brian Fosterc8eac492018-07-24 13:43:13 -0700724 goto out_cancel;
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100725
726 /* Map the new blocks into the data fork. */
Brian Foster0f37d172018-08-01 07:20:34 -0700727 error = xfs_bmap_map_extent(tp, ip, &del);
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100728 if (error)
Brian Fosterc8eac492018-07-24 13:43:13 -0700729 goto out_cancel;
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100730
Darrick J. Wong4b4c1322018-01-19 09:05:48 -0800731 /* Charge this new data fork mapping to the on-disk quota. */
732 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_DELBCOUNT,
733 (long)del.br_blockcount);
734
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100735 /* Remove the mapping from the CoW fork. */
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700736 xfs_bmap_del_extent_cow(ip, &icur, &got, &del);
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100737
Brian Foster9e28a242018-07-24 13:43:15 -0700738 error = xfs_defer_finish(&tp);
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100739 if (error)
Brian Fosterc8eac492018-07-24 13:43:13 -0700740 goto out_cancel;
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700741 if (!xfs_iext_get_extent(ifp, &icur, &got))
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100742 break;
Christoph Hellwigdf79b812018-03-13 23:15:33 -0700743 continue;
744prev_extent:
745 if (!xfs_iext_prev_extent(ifp, &icur, &got))
746 break;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700747 }
748
749 error = xfs_trans_commit(tp);
750 xfs_iunlock(ip, XFS_ILOCK_EXCL);
751 if (error)
752 goto out;
753 return 0;
754
Christoph Hellwige12199f2017-10-03 08:58:33 -0700755out_cancel:
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700756 xfs_trans_cancel(tp);
757 xfs_iunlock(ip, XFS_ILOCK_EXCL);
758out:
759 trace_xfs_reflink_end_cow_error(ip, error, _RET_IP_);
760 return error;
761}
Darrick J. Wong174edb02016-10-03 09:11:39 -0700762
763/*
764 * Free leftover CoW reservations that didn't get cleaned out.
765 */
766int
767xfs_reflink_recover_cow(
768 struct xfs_mount *mp)
769{
770 xfs_agnumber_t agno;
771 int error = 0;
772
773 if (!xfs_sb_version_hasreflink(&mp->m_sb))
774 return 0;
775
776 for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) {
777 error = xfs_refcount_recover_cow_leftovers(mp, agno);
778 if (error)
779 break;
780 }
781
782 return error;
783}
Darrick J. Wong862bb362016-10-03 09:11:40 -0700784
785/*
786 * Reflinking (Block) Ranges of Two Files Together
787 *
788 * First, ensure that the reflink flag is set on both inodes. The flag is an
789 * optimization to avoid unnecessary refcount btree lookups in the write path.
790 *
791 * Now we can iteratively remap the range of extents (and holes) in src to the
792 * corresponding ranges in dest. Let drange and srange denote the ranges of
793 * logical blocks in dest and src touched by the reflink operation.
794 *
795 * While the length of drange is greater than zero,
796 * - Read src's bmbt at the start of srange ("imap")
797 * - If imap doesn't exist, make imap appear to start at the end of srange
798 * with zero length.
799 * - If imap starts before srange, advance imap to start at srange.
800 * - If imap goes beyond srange, truncate imap to end at the end of srange.
801 * - Punch (imap start - srange start + imap len) blocks from dest at
802 * offset (drange start).
803 * - If imap points to a real range of pblks,
804 * > Increase the refcount of the imap's pblks
805 * > Map imap's pblks into dest at the offset
806 * (drange start + imap start - srange start)
807 * - Advance drange and srange by (imap start - srange start + imap len)
808 *
809 * Finally, if the reflink made dest longer, update both the in-core and
810 * on-disk file sizes.
811 *
812 * ASCII Art Demonstration:
813 *
814 * Let's say we want to reflink this source file:
815 *
816 * ----SSSSSSS-SSSSS----SSSSSS (src file)
817 * <-------------------->
818 *
819 * into this destination file:
820 *
821 * --DDDDDDDDDDDDDDDDDDD--DDD (dest file)
822 * <-------------------->
823 * '-' means a hole, and 'S' and 'D' are written blocks in the src and dest.
824 * Observe that the range has different logical offsets in either file.
825 *
826 * Consider that the first extent in the source file doesn't line up with our
827 * reflink range. Unmapping and remapping are separate operations, so we can
828 * unmap more blocks from the destination file than we remap.
829 *
830 * ----SSSSSSS-SSSSS----SSSSSS
831 * <------->
832 * --DDDDD---------DDDDD--DDD
833 * <------->
834 *
835 * Now remap the source extent into the destination file:
836 *
837 * ----SSSSSSS-SSSSS----SSSSSS
838 * <------->
839 * --DDDDD--SSSSSSSDDDDD--DDD
840 * <------->
841 *
842 * Do likewise with the second hole and extent in our range. Holes in the
843 * unmap range don't affect our operation.
844 *
845 * ----SSSSSSS-SSSSS----SSSSSS
846 * <---->
847 * --DDDDD--SSSSSSS-SSSSS-DDD
848 * <---->
849 *
850 * Finally, unmap and remap part of the third extent. This will increase the
851 * size of the destination file.
852 *
853 * ----SSSSSSS-SSSSS----SSSSSS
854 * <----->
855 * --DDDDD--SSSSSSS-SSSSS----SSS
856 * <----->
857 *
858 * Once we update the destination file's i_size, we're done.
859 */
860
861/*
862 * Ensure the reflink bit is set in both inodes.
863 */
864STATIC int
865xfs_reflink_set_inode_flag(
866 struct xfs_inode *src,
867 struct xfs_inode *dest)
868{
869 struct xfs_mount *mp = src->i_mount;
870 int error;
871 struct xfs_trans *tp;
872
873 if (xfs_is_reflink_inode(src) && xfs_is_reflink_inode(dest))
874 return 0;
875
876 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
877 if (error)
878 goto out_error;
879
880 /* Lock both files against IO */
881 if (src->i_ino == dest->i_ino)
882 xfs_ilock(src, XFS_ILOCK_EXCL);
883 else
Darrick J. Wong7c2d2382018-01-26 15:27:33 -0800884 xfs_lock_two_inodes(src, XFS_ILOCK_EXCL, dest, XFS_ILOCK_EXCL);
Darrick J. Wong862bb362016-10-03 09:11:40 -0700885
886 if (!xfs_is_reflink_inode(src)) {
887 trace_xfs_reflink_set_inode_flag(src);
888 xfs_trans_ijoin(tp, src, XFS_ILOCK_EXCL);
889 src->i_d.di_flags2 |= XFS_DIFLAG2_REFLINK;
890 xfs_trans_log_inode(tp, src, XFS_ILOG_CORE);
891 xfs_ifork_init_cow(src);
892 } else
893 xfs_iunlock(src, XFS_ILOCK_EXCL);
894
895 if (src->i_ino == dest->i_ino)
896 goto commit_flags;
897
898 if (!xfs_is_reflink_inode(dest)) {
899 trace_xfs_reflink_set_inode_flag(dest);
900 xfs_trans_ijoin(tp, dest, XFS_ILOCK_EXCL);
901 dest->i_d.di_flags2 |= XFS_DIFLAG2_REFLINK;
902 xfs_trans_log_inode(tp, dest, XFS_ILOG_CORE);
903 xfs_ifork_init_cow(dest);
904 } else
905 xfs_iunlock(dest, XFS_ILOCK_EXCL);
906
907commit_flags:
908 error = xfs_trans_commit(tp);
909 if (error)
910 goto out_error;
911 return error;
912
913out_error:
914 trace_xfs_reflink_set_inode_flag_error(dest, error, _RET_IP_);
915 return error;
916}
917
918/*
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700919 * Update destination inode size & cowextsize hint, if necessary.
Darrick J. Wong862bb362016-10-03 09:11:40 -0700920 */
921STATIC int
922xfs_reflink_update_dest(
923 struct xfs_inode *dest,
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700924 xfs_off_t newlen,
Christoph Hellwigc5ecb422017-02-06 17:45:51 -0800925 xfs_extlen_t cowextsize,
926 bool is_dedupe)
Darrick J. Wong862bb362016-10-03 09:11:40 -0700927{
928 struct xfs_mount *mp = dest->i_mount;
929 struct xfs_trans *tp;
930 int error;
931
Christoph Hellwigc5ecb422017-02-06 17:45:51 -0800932 if (is_dedupe && newlen <= i_size_read(VFS_I(dest)) && cowextsize == 0)
Darrick J. Wong862bb362016-10-03 09:11:40 -0700933 return 0;
934
935 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
936 if (error)
937 goto out_error;
938
939 xfs_ilock(dest, XFS_ILOCK_EXCL);
940 xfs_trans_ijoin(tp, dest, XFS_ILOCK_EXCL);
941
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700942 if (newlen > i_size_read(VFS_I(dest))) {
943 trace_xfs_reflink_update_inode_size(dest, newlen);
944 i_size_write(VFS_I(dest), newlen);
945 dest->i_d.di_size = newlen;
946 }
947
948 if (cowextsize) {
949 dest->i_d.di_cowextsize = cowextsize;
950 dest->i_d.di_flags2 |= XFS_DIFLAG2_COWEXTSIZE;
951 }
952
Christoph Hellwigc5ecb422017-02-06 17:45:51 -0800953 if (!is_dedupe) {
954 xfs_trans_ichgtime(tp, dest,
955 XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
956 }
Darrick J. Wong862bb362016-10-03 09:11:40 -0700957 xfs_trans_log_inode(tp, dest, XFS_ILOG_CORE);
958
959 error = xfs_trans_commit(tp);
960 if (error)
961 goto out_error;
962 return error;
963
964out_error:
965 trace_xfs_reflink_update_inode_size_error(dest, error, _RET_IP_);
966 return error;
967}
968
969/*
Darrick J. Wong6fa164b2016-10-03 09:11:45 -0700970 * Do we have enough reserve in this AG to handle a reflink? The refcount
971 * btree already reserved all the space it needs, but the rmap btree can grow
972 * infinitely, so we won't allow more reflinks when the AG is down to the
973 * btree reserves.
974 */
975static int
976xfs_reflink_ag_has_free_space(
977 struct xfs_mount *mp,
978 xfs_agnumber_t agno)
979{
980 struct xfs_perag *pag;
981 int error = 0;
982
983 if (!xfs_sb_version_hasrmapbt(&mp->m_sb))
984 return 0;
985
986 pag = xfs_perag_get(mp, agno);
Brian Foster21592862018-03-09 14:01:59 -0800987 if (xfs_ag_resv_critical(pag, XFS_AG_RESV_RMAPBT) ||
Darrick J. Wong6fa164b2016-10-03 09:11:45 -0700988 xfs_ag_resv_critical(pag, XFS_AG_RESV_METADATA))
989 error = -ENOSPC;
990 xfs_perag_put(pag);
991 return error;
992}
993
994/*
Darrick J. Wong862bb362016-10-03 09:11:40 -0700995 * Unmap a range of blocks from a file, then map other blocks into the hole.
996 * The range to unmap is (destoff : destoff + srcioff + irec->br_blockcount).
997 * The extent irec is mapped into dest at irec->br_startoff.
998 */
999STATIC int
1000xfs_reflink_remap_extent(
1001 struct xfs_inode *ip,
1002 struct xfs_bmbt_irec *irec,
1003 xfs_fileoff_t destoff,
1004 xfs_off_t new_isize)
1005{
1006 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwig9c4f29d2017-03-28 14:53:35 -07001007 bool real_extent = xfs_bmap_is_real_extent(irec);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001008 struct xfs_trans *tp;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001009 unsigned int resblks;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001010 struct xfs_bmbt_irec uirec;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001011 xfs_filblks_t rlen;
1012 xfs_filblks_t unmap_len;
1013 xfs_off_t newlen;
1014 int error;
1015
1016 unmap_len = irec->br_startoff + irec->br_blockcount - destoff;
1017 trace_xfs_reflink_punch_range(ip, destoff, unmap_len);
1018
Darrick J. Wong6fa164b2016-10-03 09:11:45 -07001019 /* No reflinking if we're low on space */
1020 if (real_extent) {
1021 error = xfs_reflink_ag_has_free_space(mp,
1022 XFS_FSB_TO_AGNO(mp, irec->br_startblock));
1023 if (error)
1024 goto out;
1025 }
1026
Darrick J. Wong862bb362016-10-03 09:11:40 -07001027 /* Start a rolling transaction to switch the mappings */
1028 resblks = XFS_EXTENTADD_SPACE_RES(ip->i_mount, XFS_DATA_FORK);
1029 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks, 0, 0, &tp);
1030 if (error)
1031 goto out;
1032
1033 xfs_ilock(ip, XFS_ILOCK_EXCL);
1034 xfs_trans_ijoin(tp, ip, 0);
1035
1036 /* If we're not just clearing space, then do we have enough quota? */
1037 if (real_extent) {
1038 error = xfs_trans_reserve_quota_nblks(tp, ip,
1039 irec->br_blockcount, 0, XFS_QMOPT_RES_REGBLKS);
1040 if (error)
1041 goto out_cancel;
1042 }
1043
1044 trace_xfs_reflink_remap(ip, irec->br_startoff,
1045 irec->br_blockcount, irec->br_startblock);
1046
1047 /* Unmap the old blocks in the data fork. */
1048 rlen = unmap_len;
1049 while (rlen) {
Brian Foster9d9e6232018-08-01 07:20:35 -07001050 ASSERT(tp->t_firstblock == NULLFSBLOCK);
Brian Foster2af52842018-07-11 22:26:25 -07001051 error = __xfs_bunmapi(tp, ip, destoff, &rlen, 0, 1);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001052 if (error)
Brian Fosterc8eac492018-07-24 13:43:13 -07001053 goto out_cancel;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001054
1055 /*
1056 * Trim the extent to whatever got unmapped.
1057 * Remember, bunmapi works backwards.
1058 */
1059 uirec.br_startblock = irec->br_startblock + rlen;
1060 uirec.br_startoff = irec->br_startoff + rlen;
1061 uirec.br_blockcount = unmap_len - rlen;
1062 unmap_len = rlen;
1063
1064 /* If this isn't a real mapping, we're done. */
1065 if (!real_extent || uirec.br_blockcount == 0)
1066 goto next_extent;
1067
1068 trace_xfs_reflink_remap(ip, uirec.br_startoff,
1069 uirec.br_blockcount, uirec.br_startblock);
1070
1071 /* Update the refcount tree */
Brian Foster0f37d172018-08-01 07:20:34 -07001072 error = xfs_refcount_increase_extent(tp, &uirec);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001073 if (error)
Brian Fosterc8eac492018-07-24 13:43:13 -07001074 goto out_cancel;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001075
1076 /* Map the new blocks into the data fork. */
Brian Foster0f37d172018-08-01 07:20:34 -07001077 error = xfs_bmap_map_extent(tp, ip, &uirec);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001078 if (error)
Brian Fosterc8eac492018-07-24 13:43:13 -07001079 goto out_cancel;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001080
1081 /* Update quota accounting. */
1082 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT,
1083 uirec.br_blockcount);
1084
1085 /* Update dest isize if needed. */
1086 newlen = XFS_FSB_TO_B(mp,
1087 uirec.br_startoff + uirec.br_blockcount);
1088 newlen = min_t(xfs_off_t, newlen, new_isize);
1089 if (newlen > i_size_read(VFS_I(ip))) {
1090 trace_xfs_reflink_update_inode_size(ip, newlen);
1091 i_size_write(VFS_I(ip), newlen);
1092 ip->i_d.di_size = newlen;
1093 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1094 }
1095
1096next_extent:
1097 /* Process all the deferred stuff. */
Brian Foster9e28a242018-07-24 13:43:15 -07001098 error = xfs_defer_finish(&tp);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001099 if (error)
Brian Fosterc8eac492018-07-24 13:43:13 -07001100 goto out_cancel;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001101 }
1102
1103 error = xfs_trans_commit(tp);
1104 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1105 if (error)
1106 goto out;
1107 return 0;
1108
Darrick J. Wong862bb362016-10-03 09:11:40 -07001109out_cancel:
1110 xfs_trans_cancel(tp);
1111 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1112out:
1113 trace_xfs_reflink_remap_extent_error(ip, error, _RET_IP_);
1114 return error;
1115}
1116
1117/*
1118 * Iteratively remap one file's extents (and holes) to another's.
1119 */
1120STATIC int
1121xfs_reflink_remap_blocks(
1122 struct xfs_inode *src,
1123 xfs_fileoff_t srcoff,
1124 struct xfs_inode *dest,
1125 xfs_fileoff_t destoff,
1126 xfs_filblks_t len,
1127 xfs_off_t new_isize)
1128{
1129 struct xfs_bmbt_irec imap;
1130 int nimaps;
1131 int error = 0;
1132 xfs_filblks_t range_len;
1133
1134 /* drange = (destoff, destoff + len); srange = (srcoff, srcoff + len) */
1135 while (len) {
Darrick J. Wong01c2e132018-01-18 14:07:53 -08001136 uint lock_mode;
1137
Darrick J. Wong862bb362016-10-03 09:11:40 -07001138 trace_xfs_reflink_remap_blocks_loop(src, srcoff, len,
1139 dest, destoff);
Darrick J. Wong01c2e132018-01-18 14:07:53 -08001140
Darrick J. Wong862bb362016-10-03 09:11:40 -07001141 /* Read extent from the source file */
1142 nimaps = 1;
Darrick J. Wong01c2e132018-01-18 14:07:53 -08001143 lock_mode = xfs_ilock_data_map_shared(src);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001144 error = xfs_bmapi_read(src, srcoff, len, &imap, &nimaps, 0);
Darrick J. Wong01c2e132018-01-18 14:07:53 -08001145 xfs_iunlock(src, lock_mode);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001146 if (error)
1147 goto err;
1148 ASSERT(nimaps == 1);
1149
1150 trace_xfs_reflink_remap_imap(src, srcoff, len, XFS_IO_OVERWRITE,
1151 &imap);
1152
1153 /* Translate imap into the destination file. */
1154 range_len = imap.br_startoff + imap.br_blockcount - srcoff;
1155 imap.br_startoff += destoff - srcoff;
1156
1157 /* Clear dest from destoff to the end of imap and map it in. */
1158 error = xfs_reflink_remap_extent(dest, &imap, destoff,
1159 new_isize);
1160 if (error)
1161 goto err;
1162
1163 if (fatal_signal_pending(current)) {
1164 error = -EINTR;
1165 goto err;
1166 }
1167
1168 /* Advance drange/srange */
1169 srcoff += range_len;
1170 destoff += range_len;
1171 len -= range_len;
1172 }
1173
1174 return 0;
1175
1176err:
1177 trace_xfs_reflink_remap_blocks_error(dest, error, _RET_IP_);
1178 return error;
1179}
1180
1181/*
Darrick J. Wong1364b1d42018-01-18 13:55:20 -08001182 * Grab the exclusive iolock for a data copy from src to dest, making
1183 * sure to abide vfs locking order (lowest pointer value goes first) and
1184 * breaking the pnfs layout leases on dest before proceeding. The loop
1185 * is needed because we cannot call the blocking break_layout() with the
1186 * src iolock held, and therefore have to back out both locks.
1187 */
1188static int
1189xfs_iolock_two_inodes_and_break_layout(
1190 struct inode *src,
1191 struct inode *dest)
1192{
1193 int error;
1194
1195retry:
1196 if (src < dest) {
Darrick J. Wong01c2e132018-01-18 14:07:53 -08001197 inode_lock_shared(src);
Darrick J. Wong1364b1d42018-01-18 13:55:20 -08001198 inode_lock_nested(dest, I_MUTEX_NONDIR2);
1199 } else {
1200 /* src >= dest */
1201 inode_lock(dest);
1202 }
1203
1204 error = break_layout(dest, false);
1205 if (error == -EWOULDBLOCK) {
1206 inode_unlock(dest);
1207 if (src < dest)
Darrick J. Wong01c2e132018-01-18 14:07:53 -08001208 inode_unlock_shared(src);
Darrick J. Wong1364b1d42018-01-18 13:55:20 -08001209 error = break_layout(dest, true);
1210 if (error)
1211 return error;
1212 goto retry;
1213 }
1214 if (error) {
1215 inode_unlock(dest);
1216 if (src < dest)
Darrick J. Wong01c2e132018-01-18 14:07:53 -08001217 inode_unlock_shared(src);
Darrick J. Wong1364b1d42018-01-18 13:55:20 -08001218 return error;
1219 }
1220 if (src > dest)
Darrick J. Wong01c2e132018-01-18 14:07:53 -08001221 inode_lock_shared_nested(src, I_MUTEX_NONDIR2);
Darrick J. Wong1364b1d42018-01-18 13:55:20 -08001222 return 0;
1223}
1224
1225/*
Darrick J. Wong862bb362016-10-03 09:11:40 -07001226 * Link a range of blocks from one file to another.
1227 */
1228int
1229xfs_reflink_remap_range(
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001230 struct file *file_in,
1231 loff_t pos_in,
1232 struct file *file_out,
1233 loff_t pos_out,
1234 u64 len,
1235 bool is_dedupe)
Darrick J. Wong862bb362016-10-03 09:11:40 -07001236{
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001237 struct inode *inode_in = file_inode(file_in);
1238 struct xfs_inode *src = XFS_I(inode_in);
1239 struct inode *inode_out = file_inode(file_out);
1240 struct xfs_inode *dest = XFS_I(inode_out);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001241 struct xfs_mount *mp = src->i_mount;
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001242 bool same_inode = (inode_in == inode_out);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001243 xfs_fileoff_t sfsbno, dfsbno;
1244 xfs_filblks_t fsblen;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001245 xfs_extlen_t cowextsize;
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001246 ssize_t ret;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001247
1248 if (!xfs_sb_version_hasreflink(&mp->m_sb))
1249 return -EOPNOTSUPP;
1250
1251 if (XFS_FORCED_SHUTDOWN(mp))
1252 return -EIO;
1253
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001254 /* Lock both files against IO */
Darrick J. Wong1364b1d42018-01-18 13:55:20 -08001255 ret = xfs_iolock_two_inodes_and_break_layout(inode_in, inode_out);
1256 if (ret)
1257 return ret;
Christoph Hellwig65523212016-11-30 14:33:25 +11001258 if (same_inode)
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001259 xfs_ilock(src, XFS_MMAPLOCK_EXCL);
Christoph Hellwig65523212016-11-30 14:33:25 +11001260 else
Darrick J. Wong01c2e132018-01-18 14:07:53 -08001261 xfs_lock_two_inodes(src, XFS_MMAPLOCK_SHARED, dest,
Darrick J. Wong7c2d2382018-01-26 15:27:33 -08001262 XFS_MMAPLOCK_EXCL);
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001263
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001264 /* Check file eligibility and prepare for block sharing. */
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001265 ret = -EINVAL;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001266 /* Don't reflink realtime inodes */
1267 if (XFS_IS_REALTIME_INODE(src) || XFS_IS_REALTIME_INODE(dest))
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001268 goto out_unlock;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001269
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001270 /* Don't share DAX file data for now. */
1271 if (IS_DAX(inode_in) || IS_DAX(inode_out))
1272 goto out_unlock;
Darrick J. Wongcc714662016-10-03 09:11:41 -07001273
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001274 ret = vfs_clone_file_prep_inodes(inode_in, pos_in, inode_out, pos_out,
1275 &len, is_dedupe);
Darrick J. Wong22725ce2016-12-19 15:13:26 -08001276 if (ret <= 0)
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001277 goto out_unlock;
1278
Darrick J. Wong09ac8622018-01-19 08:56:04 -08001279 /* Attach dquots to dest inode before changing block map */
Darrick J. Wongc14cfcc2018-05-04 15:30:21 -07001280 ret = xfs_qm_dqattach(dest);
Darrick J. Wong09ac8622018-01-19 08:56:04 -08001281 if (ret)
1282 goto out_unlock;
1283
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001284 trace_xfs_reflink_remap_range(src, pos_in, len, dest, pos_out);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001285
Darrick J. Wong5c989a02017-12-10 18:03:54 -08001286 /*
1287 * Clear out post-eof preallocations because we don't have page cache
1288 * backing the delayed allocations and they'll never get freed on
1289 * their own.
1290 */
1291 if (xfs_can_free_eofblocks(dest, true)) {
1292 ret = xfs_free_eofblocks(dest);
1293 if (ret)
1294 goto out_unlock;
1295 }
1296
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001297 /* Set flags and remap blocks. */
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001298 ret = xfs_reflink_set_inode_flag(src, dest);
1299 if (ret)
1300 goto out_unlock;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001301
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001302 dfsbno = XFS_B_TO_FSBT(mp, pos_out);
1303 sfsbno = XFS_B_TO_FSBT(mp, pos_in);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001304 fsblen = XFS_B_TO_FSB(mp, len);
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001305 ret = xfs_reflink_remap_blocks(src, sfsbno, dest, dfsbno, fsblen,
1306 pos_out + len);
1307 if (ret)
1308 goto out_unlock;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001309
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001310 /* Zap any page cache for the destination file's range. */
1311 truncate_inode_pages_range(&inode_out->i_data, pos_out,
1312 PAGE_ALIGN(pos_out + len) - 1);
1313
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001314 /*
1315 * Carry the cowextsize hint from src to dest if we're sharing the
1316 * entire source file to the entire destination file, the source file
1317 * has a cowextsize hint, and the destination file does not.
1318 */
1319 cowextsize = 0;
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001320 if (pos_in == 0 && len == i_size_read(inode_in) &&
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001321 (src->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE) &&
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001322 pos_out == 0 && len >= i_size_read(inode_out) &&
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001323 !(dest->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE))
1324 cowextsize = src->i_d.di_cowextsize;
1325
Christoph Hellwigc5ecb422017-02-06 17:45:51 -08001326 ret = xfs_reflink_update_dest(dest, pos_out + len, cowextsize,
1327 is_dedupe);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001328
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001329out_unlock:
Darrick J. Wong01c2e132018-01-18 14:07:53 -08001330 xfs_iunlock(dest, XFS_MMAPLOCK_EXCL);
Christoph Hellwig65523212016-11-30 14:33:25 +11001331 if (!same_inode)
Darrick J. Wong01c2e132018-01-18 14:07:53 -08001332 xfs_iunlock(src, XFS_MMAPLOCK_SHARED);
1333 inode_unlock(inode_out);
1334 if (!same_inode)
1335 inode_unlock_shared(inode_in);
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001336 if (ret)
1337 trace_xfs_reflink_remap_range_error(dest, ret, _RET_IP_);
1338 return ret;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001339}
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001340
1341/*
1342 * The user wants to preemptively CoW all shared blocks in this file,
1343 * which enables us to turn off the reflink flag. Iterate all
1344 * extents which are not prealloc/delalloc to see which ranges are
1345 * mentioned in the refcount tree, then read those blocks into the
1346 * pagecache, dirty them, fsync them back out, and then we can update
1347 * the inode flag. What happens if we run out of memory? :)
1348 */
1349STATIC int
1350xfs_reflink_dirty_extents(
1351 struct xfs_inode *ip,
1352 xfs_fileoff_t fbno,
1353 xfs_filblks_t end,
1354 xfs_off_t isize)
1355{
1356 struct xfs_mount *mp = ip->i_mount;
1357 xfs_agnumber_t agno;
1358 xfs_agblock_t agbno;
1359 xfs_extlen_t aglen;
1360 xfs_agblock_t rbno;
1361 xfs_extlen_t rlen;
1362 xfs_off_t fpos;
1363 xfs_off_t flen;
1364 struct xfs_bmbt_irec map[2];
1365 int nmaps;
Darrick J. Wong9780643c2016-10-10 16:49:18 +11001366 int error = 0;
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001367
1368 while (end - fbno > 0) {
1369 nmaps = 1;
1370 /*
1371 * Look for extents in the file. Skip holes, delalloc, or
1372 * unwritten extents; they can't be reflinked.
1373 */
1374 error = xfs_bmapi_read(ip, fbno, end - fbno, map, &nmaps, 0);
1375 if (error)
1376 goto out;
1377 if (nmaps == 0)
1378 break;
Christoph Hellwig9c4f29d2017-03-28 14:53:35 -07001379 if (!xfs_bmap_is_real_extent(&map[0]))
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001380 goto next;
1381
1382 map[1] = map[0];
1383 while (map[1].br_blockcount) {
1384 agno = XFS_FSB_TO_AGNO(mp, map[1].br_startblock);
1385 agbno = XFS_FSB_TO_AGBNO(mp, map[1].br_startblock);
1386 aglen = map[1].br_blockcount;
1387
Darrick J. Wong92ff7282017-06-16 11:00:10 -07001388 error = xfs_reflink_find_shared(mp, NULL, agno, agbno,
1389 aglen, &rbno, &rlen, true);
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001390 if (error)
1391 goto out;
1392 if (rbno == NULLAGBLOCK)
1393 break;
1394
1395 /* Dirty the pages */
1396 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1397 fpos = XFS_FSB_TO_B(mp, map[1].br_startoff +
1398 (rbno - agbno));
1399 flen = XFS_FSB_TO_B(mp, rlen);
1400 if (fpos + flen > isize)
1401 flen = isize - fpos;
1402 error = iomap_file_dirty(VFS_I(ip), fpos, flen,
1403 &xfs_iomap_ops);
1404 xfs_ilock(ip, XFS_ILOCK_EXCL);
1405 if (error)
1406 goto out;
1407
1408 map[1].br_blockcount -= (rbno - agbno + rlen);
1409 map[1].br_startoff += (rbno - agbno + rlen);
1410 map[1].br_startblock += (rbno - agbno + rlen);
1411 }
1412
1413next:
1414 fbno = map[0].br_startoff + map[0].br_blockcount;
1415 }
1416out:
1417 return error;
1418}
1419
Darrick J. Wongea7cdd72017-06-16 11:00:11 -07001420/* Does this inode need the reflink flag? */
1421int
1422xfs_reflink_inode_has_shared_extents(
1423 struct xfs_trans *tp,
1424 struct xfs_inode *ip,
1425 bool *has_shared)
1426{
1427 struct xfs_bmbt_irec got;
1428 struct xfs_mount *mp = ip->i_mount;
1429 struct xfs_ifork *ifp;
1430 xfs_agnumber_t agno;
1431 xfs_agblock_t agbno;
1432 xfs_extlen_t aglen;
1433 xfs_agblock_t rbno;
1434 xfs_extlen_t rlen;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001435 struct xfs_iext_cursor icur;
Darrick J. Wongea7cdd72017-06-16 11:00:11 -07001436 bool found;
1437 int error;
1438
1439 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
1440 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1441 error = xfs_iread_extents(tp, ip, XFS_DATA_FORK);
1442 if (error)
1443 return error;
1444 }
1445
1446 *has_shared = false;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001447 found = xfs_iext_lookup_extent(ip, ifp, 0, &icur, &got);
Darrick J. Wongea7cdd72017-06-16 11:00:11 -07001448 while (found) {
1449 if (isnullstartblock(got.br_startblock) ||
1450 got.br_state != XFS_EXT_NORM)
1451 goto next;
1452 agno = XFS_FSB_TO_AGNO(mp, got.br_startblock);
1453 agbno = XFS_FSB_TO_AGBNO(mp, got.br_startblock);
1454 aglen = got.br_blockcount;
1455
1456 error = xfs_reflink_find_shared(mp, tp, agno, agbno, aglen,
1457 &rbno, &rlen, false);
1458 if (error)
1459 return error;
1460 /* Is there still a shared block here? */
1461 if (rbno != NULLAGBLOCK) {
1462 *has_shared = true;
1463 return 0;
1464 }
1465next:
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001466 found = xfs_iext_next_extent(ifp, &icur, &got);
Darrick J. Wongea7cdd72017-06-16 11:00:11 -07001467 }
1468
1469 return 0;
1470}
1471
Dave Chinner844e5e72018-05-09 07:49:10 -07001472/*
1473 * Clear the inode reflink flag if there are no shared extents.
1474 *
1475 * The caller is responsible for joining the inode to the transaction passed in.
1476 * The inode will be joined to the transaction that is returned to the caller.
1477 */
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001478int
1479xfs_reflink_clear_inode_flag(
1480 struct xfs_inode *ip,
1481 struct xfs_trans **tpp)
1482{
Darrick J. Wongea7cdd72017-06-16 11:00:11 -07001483 bool needs_flag;
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001484 int error = 0;
1485
Darrick J. Wong63646fc2016-10-10 16:47:32 +11001486 ASSERT(xfs_is_reflink_inode(ip));
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001487
Darrick J. Wongea7cdd72017-06-16 11:00:11 -07001488 error = xfs_reflink_inode_has_shared_extents(*tpp, ip, &needs_flag);
1489 if (error || needs_flag)
1490 return error;
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001491
1492 /*
1493 * We didn't find any shared blocks so turn off the reflink flag.
1494 * First, get rid of any leftover CoW mappings.
1495 */
Christoph Hellwig3802a342017-03-07 16:45:58 -08001496 error = xfs_reflink_cancel_cow_blocks(ip, tpp, 0, NULLFILEOFF, true);
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001497 if (error)
1498 return error;
1499
1500 /* Clear the inode flag. */
1501 trace_xfs_reflink_unset_inode_flag(ip);
1502 ip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
Darrick J. Wong83104d42016-10-03 09:11:46 -07001503 xfs_inode_clear_cowblocks_tag(ip);
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001504 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 */
1513STATIC int
1514xfs_reflink_try_clear_inode_flag(
Darrick J. Wong97a1b872016-10-10 16:49:01 +11001515 struct xfs_inode *ip)
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001516{
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. Wong98cc2db2016-10-03 09:11:43 -07001529 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;
1539cancel:
1540 xfs_trans_cancel(tp);
1541out:
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 */
1550int
1551xfs_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. Wong97a1b872016-10-10 16:49:01 +11001571 fbno = XFS_B_TO_FSBT(mp, offset);
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001572 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. Wong97a1b872016-10-10 16:49:01 +11001584 /* Turn off the reflink flag if possible. */
1585 error = xfs_reflink_try_clear_inode_flag(ip);
1586 if (error)
1587 goto out;
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001588
1589 return 0;
1590
1591out_unlock:
1592 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1593out:
1594 trace_xfs_reflink_unshare_error(ip, error, _RET_IP_);
1595 return error;
1596}