blob: c0f3754caca2661170fb890d3848528b31199bd0 [file] [log] [blame]
Darrick J. Wong3993bae2016-10-03 09:11:32 -07001/*
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. Wong174edb02016-10-03 09:11:39 -070043#include "xfs_btree.h"
Darrick J. Wong3993bae2016-10-03 09:11:32 -070044#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. Wong2a067052016-10-03 09:11:33 -070055#include "xfs_iomap.h"
Darrick J. Wong43caeb12016-10-03 09:11:35 -070056#include "xfs_rmap_btree.h"
Darrick J. Wong6fa164b2016-10-03 09:11:45 -070057#include "xfs_sb.h"
58#include "xfs_ag_resv.h"
Darrick J. Wong3993bae2016-10-03 09:11:32 -070059
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. Wong5eda4302017-02-02 15:14:02 -080085 * 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. Wong3993bae2016-10-03 09:11:32 -070093 * When dirty pages are being written out (typically in writepage), the
Darrick J. Wong5eda4302017-02-02 15:14:02 -080094 * 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. Wong3993bae2016-10-03 09:11:32 -0700101 *
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. Wong5eda4302017-02-02 15:14:02 -0800115 * 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. Wong3993bae2016-10-03 09:11:32 -0700123 * 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. Wong5eda4302017-02-02 15:14:02 -0800129 * 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. Wong3993bae2016-10-03 09:11:32 -0700138 *
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. Wong2a067052016-10-03 09:11:33 -0700147
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 */
155int
156xfs_reflink_find_shared(
157 struct xfs_mount *mp,
158 xfs_agnumber_t agno,
159 xfs_agblock_t agbno,
160 xfs_extlen_t aglen,
161 xfs_agblock_t *fbno,
162 xfs_extlen_t *flen,
163 bool find_end_of_shared)
164{
165 struct xfs_buf *agbp;
166 struct xfs_btree_cur *cur;
167 int error;
168
169 error = xfs_alloc_read_agf(mp, NULL, agno, 0, &agbp);
170 if (error)
171 return error;
172
173 cur = xfs_refcountbt_init_cursor(mp, NULL, agbp, agno, NULL);
174
175 error = xfs_refcount_find_shared(cur, agbno, aglen, fbno, flen,
176 find_end_of_shared);
177
178 xfs_btree_del_cursor(cur, error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
179
180 xfs_buf_relse(agbp);
181 return error;
182}
183
184/*
185 * Trim the mapping to the next block where there's a change in the
186 * shared/unshared status. More specifically, this means that we
187 * find the lowest-numbered extent of shared blocks that coincides with
188 * the given block mapping. If the shared extent overlaps the start of
189 * the mapping, trim the mapping to the end of the shared extent. If
190 * the shared region intersects the mapping, trim the mapping to the
191 * start of the shared extent. If there are no shared regions that
192 * overlap, just return the original extent.
193 */
194int
195xfs_reflink_trim_around_shared(
196 struct xfs_inode *ip,
197 struct xfs_bmbt_irec *irec,
198 bool *shared,
199 bool *trimmed)
200{
201 xfs_agnumber_t agno;
202 xfs_agblock_t agbno;
203 xfs_extlen_t aglen;
204 xfs_agblock_t fbno;
205 xfs_extlen_t flen;
206 int error = 0;
207
208 /* Holes, unwritten, and delalloc extents cannot be shared */
Christoph Hellwig9c4f29d2017-03-28 14:53:35 -0700209 if (!xfs_is_reflink_inode(ip) || !xfs_bmap_is_real_extent(irec)) {
Darrick J. Wong2a067052016-10-03 09:11:33 -0700210 *shared = false;
211 return 0;
212 }
213
214 trace_xfs_reflink_trim_around_shared(ip, irec);
215
216 agno = XFS_FSB_TO_AGNO(ip->i_mount, irec->br_startblock);
217 agbno = XFS_FSB_TO_AGBNO(ip->i_mount, irec->br_startblock);
218 aglen = irec->br_blockcount;
219
220 error = xfs_reflink_find_shared(ip->i_mount, agno, agbno,
221 aglen, &fbno, &flen, true);
222 if (error)
223 return error;
224
225 *shared = *trimmed = false;
226 if (fbno == NULLAGBLOCK) {
227 /* No shared blocks at all. */
228 return 0;
229 } else if (fbno == agbno) {
230 /*
231 * The start of this extent is shared. Truncate the
232 * mapping at the end of the shared region so that a
233 * subsequent iteration starts at the start of the
234 * unshared region.
235 */
236 irec->br_blockcount = flen;
237 *shared = true;
238 if (flen != aglen)
239 *trimmed = true;
240 return 0;
241 } else {
242 /*
243 * There's a shared extent midway through this extent.
244 * Truncate the mapping at the start of the shared
245 * extent so that a subsequent iteration starts at the
246 * start of the shared region.
247 */
248 irec->br_blockcount = fbno - agbno;
249 *trimmed = true;
250 return 0;
251 }
252}
253
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100254/*
255 * Trim the passed in imap to the next shared/unshared extent boundary, and
256 * if imap->br_startoff points to a shared extent reserve space for it in the
257 * COW fork. In this case *shared is set to true, else to false.
258 *
259 * Note that imap will always contain the block numbers for the existing blocks
260 * in the data fork, as the upper layers need them for read-modify-write
261 * operations.
262 */
263int
264xfs_reflink_reserve_cow(
Darrick J. Wong2a067052016-10-03 09:11:33 -0700265 struct xfs_inode *ip,
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100266 struct xfs_bmbt_irec *imap,
267 bool *shared)
Darrick J. Wong2a067052016-10-03 09:11:33 -0700268{
Christoph Hellwig2755fc42016-11-24 11:39:49 +1100269 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK);
270 struct xfs_bmbt_irec got;
Christoph Hellwig2755fc42016-11-24 11:39:49 +1100271 int error = 0;
272 bool eof = false, trimmed;
Darrick J. Wong2a067052016-10-03 09:11:33 -0700273 xfs_extnum_t idx;
274
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100275 /*
276 * Search the COW fork extent list first. This serves two purposes:
277 * first this implement the speculative preallocation using cowextisze,
278 * so that we also unshared block adjacent to shared blocks instead
279 * of just the shared blocks themselves. Second the lookup in the
280 * extent list is generally faster than going out to the shared extent
281 * tree.
282 */
Christoph Hellwig2755fc42016-11-24 11:39:49 +1100283
284 if (!xfs_iext_lookup_extent(ip, ifp, imap->br_startoff, &idx, &got))
285 eof = true;
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100286 if (!eof && got.br_startoff <= imap->br_startoff) {
287 trace_xfs_reflink_cow_found(ip, imap);
288 xfs_trim_extent(imap, got.br_startoff, got.br_blockcount);
Darrick J. Wong2a067052016-10-03 09:11:33 -0700289
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100290 *shared = true;
291 return 0;
292 }
Darrick J. Wong2a067052016-10-03 09:11:33 -0700293
294 /* Trim the mapping to the nearest shared extent boundary. */
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100295 error = xfs_reflink_trim_around_shared(ip, imap, shared, &trimmed);
Darrick J. Wong2a067052016-10-03 09:11:33 -0700296 if (error)
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100297 return error;
Darrick J. Wong2a067052016-10-03 09:11:33 -0700298
299 /* Not shared? Just report the (potentially capped) extent. */
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100300 if (!*shared)
301 return 0;
Darrick J. Wong2a067052016-10-03 09:11:33 -0700302
303 /*
304 * Fork all the shared blocks from our write offset until the end of
305 * the extent.
306 */
307 error = xfs_qm_dqattach_locked(ip, 0);
308 if (error)
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100309 return error;
310
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100311 error = xfs_bmapi_reserve_delalloc(ip, XFS_COW_FORK, imap->br_startoff,
Brian Foster0260d8f2016-11-28 14:57:42 +1100312 imap->br_blockcount, 0, &got, &idx, eof);
313 if (error == -ENOSPC || error == -EDQUOT)
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100314 trace_xfs_reflink_cow_enospc(ip, imap);
Brian Foster0260d8f2016-11-28 14:57:42 +1100315 if (error)
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100316 return error;
Darrick J. Wong83104d42016-10-03 09:11:46 -0700317
Darrick J. Wong2a067052016-10-03 09:11:33 -0700318 trace_xfs_reflink_cow_alloc(ip, &got);
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100319 return 0;
Darrick J. Wong2a067052016-10-03 09:11:33 -0700320}
Darrick J. Wongef473662016-10-03 09:11:34 -0700321
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800322/* Convert part of an unwritten CoW extent to a real one. */
323STATIC int
324xfs_reflink_convert_cow_extent(
325 struct xfs_inode *ip,
326 struct xfs_bmbt_irec *imap,
327 xfs_fileoff_t offset_fsb,
328 xfs_filblks_t count_fsb,
329 struct xfs_defer_ops *dfops)
330{
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800331 xfs_fsblock_t first_block;
332 int nimaps = 1;
333
334 if (imap->br_state == XFS_EXT_NORM)
335 return 0;
336
Christoph Hellwigdcf95852017-02-06 10:46:01 -0800337 xfs_trim_extent(imap, offset_fsb, count_fsb);
338 trace_xfs_reflink_convert_cow(ip, imap);
339 if (imap->br_blockcount == 0)
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800340 return 0;
Christoph Hellwigdcf95852017-02-06 10:46:01 -0800341 return xfs_bmapi_write(NULL, ip, imap->br_startoff, imap->br_blockcount,
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800342 XFS_BMAPI_COWFORK | XFS_BMAPI_CONVERT, &first_block,
Christoph Hellwigdcf95852017-02-06 10:46:01 -0800343 0, imap, &nimaps, dfops);
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800344}
345
346/* Convert all of the unwritten CoW extents in a file's range to real ones. */
347int
348xfs_reflink_convert_cow(
349 struct xfs_inode *ip,
350 xfs_off_t offset,
351 xfs_off_t count)
352{
353 struct xfs_bmbt_irec got;
354 struct xfs_defer_ops dfops;
355 struct xfs_mount *mp = ip->i_mount;
356 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK);
357 xfs_fileoff_t offset_fsb = XFS_B_TO_FSBT(mp, offset);
358 xfs_fileoff_t end_fsb = XFS_B_TO_FSB(mp, offset + count);
359 xfs_extnum_t idx;
360 bool found;
Darrick J. Wong93aaead2017-02-13 22:52:27 -0800361 int error = 0;
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800362
363 xfs_ilock(ip, XFS_ILOCK_EXCL);
364
365 /* Convert all the extents to real from unwritten. */
366 for (found = xfs_iext_lookup_extent(ip, ifp, offset_fsb, &idx, &got);
367 found && got.br_startoff < end_fsb;
368 found = xfs_iext_get_extent(ifp, ++idx, &got)) {
369 error = xfs_reflink_convert_cow_extent(ip, &got, offset_fsb,
370 end_fsb - offset_fsb, &dfops);
371 if (error)
372 break;
373 }
374
375 /* Finish up. */
376 xfs_iunlock(ip, XFS_ILOCK_EXCL);
377 return error;
378}
379
Darrick J. Wong0613f162016-10-03 09:11:37 -0700380/* Allocate all CoW reservations covering a range of blocks in a file. */
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800381int
382xfs_reflink_allocate_cow(
Darrick J. Wong0613f162016-10-03 09:11:37 -0700383 struct xfs_inode *ip,
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800384 struct xfs_bmbt_irec *imap,
385 bool *shared,
386 uint *lockmode)
Darrick J. Wong0613f162016-10-03 09:11:37 -0700387{
388 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800389 xfs_fileoff_t offset_fsb = imap->br_startoff;
390 xfs_filblks_t count_fsb = imap->br_blockcount;
391 struct xfs_bmbt_irec got;
Darrick J. Wong0613f162016-10-03 09:11:37 -0700392 struct xfs_defer_ops dfops;
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800393 struct xfs_trans *tp = NULL;
Darrick J. Wong0613f162016-10-03 09:11:37 -0700394 xfs_fsblock_t first_block;
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800395 int nimaps, error = 0;
396 bool trimmed;
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800397 xfs_filblks_t resaligned;
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800398 xfs_extlen_t resblks = 0;
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800399 xfs_extnum_t idx;
Darrick J. Wong0613f162016-10-03 09:11:37 -0700400
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800401retry:
402 ASSERT(xfs_is_reflink_inode(ip));
403 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL | XFS_ILOCK_SHARED));
Darrick J. Wong0613f162016-10-03 09:11:37 -0700404
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800405 /*
406 * Even if the extent is not shared we might have a preallocation for
407 * it in the COW fork. If so use it.
408 */
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800409 if (xfs_iext_lookup_extent(ip, ip->i_cowfp, offset_fsb, &idx, &got) &&
410 got.br_startoff <= offset_fsb) {
411 *shared = true;
412
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800413 /* If we have a real allocation in the COW fork we're done. */
414 if (!isnullstartblock(got.br_startblock)) {
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800415 xfs_trim_extent(&got, offset_fsb, count_fsb);
416 *imap = got;
417 goto convert;
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800418 }
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800419
420 xfs_trim_extent(imap, got.br_startoff, got.br_blockcount);
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800421 } else {
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800422 error = xfs_reflink_trim_around_shared(ip, imap, shared, &trimmed);
423 if (error || !*shared)
424 goto out;
425 }
426
427 if (!tp) {
428 resaligned = xfs_aligned_fsb_count(imap->br_startoff,
429 imap->br_blockcount, xfs_get_cowextsz_hint(ip));
430 resblks = XFS_DIOSTRAT_SPACE_RES(mp, resaligned);
431
432 xfs_iunlock(ip, *lockmode);
433 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks, 0, 0, &tp);
434 *lockmode = XFS_ILOCK_EXCL;
435 xfs_ilock(ip, *lockmode);
436
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800437 if (error)
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800438 return error;
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100439
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800440 error = xfs_qm_dqattach_locked(ip, 0);
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800441 if (error)
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800442 goto out;
443 goto retry;
Darrick J. Wong0613f162016-10-03 09:11:37 -0700444 }
445
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800446 error = xfs_trans_reserve_quota_nblks(tp, ip, resblks, 0,
447 XFS_QMOPT_RES_REGBLKS);
Darrick J. Wong0613f162016-10-03 09:11:37 -0700448 if (error)
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800449 goto out;
Darrick J. Wong0613f162016-10-03 09:11:37 -0700450
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800451 xfs_trans_ijoin(tp, ip, 0);
452
453 xfs_defer_init(&dfops, &first_block);
454 nimaps = 1;
455
456 /* Allocate the entire reservation as unwritten blocks. */
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800457 error = xfs_bmapi_write(tp, ip, imap->br_startoff, imap->br_blockcount,
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800458 XFS_BMAPI_COWFORK | XFS_BMAPI_PREALLOC, &first_block,
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800459 resblks, imap, &nimaps, &dfops);
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800460 if (error)
461 goto out_bmap_cancel;
462
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800463 /* Finish up. */
Darrick J. Wong0613f162016-10-03 09:11:37 -0700464 error = xfs_defer_finish(&tp, &dfops, NULL);
465 if (error)
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800466 goto out_bmap_cancel;
Darrick J. Wong0613f162016-10-03 09:11:37 -0700467
468 error = xfs_trans_commit(tp);
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800469 if (error)
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800470 return error;
471convert:
472 return xfs_reflink_convert_cow_extent(ip, imap, offset_fsb, count_fsb,
473 &dfops);
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800474out_bmap_cancel:
Darrick J. Wong0613f162016-10-03 09:11:37 -0700475 xfs_defer_cancel(&dfops);
Christoph Hellwiga14234c2017-02-06 10:50:49 -0800476 xfs_trans_unreserve_quota_nblks(tp, ip, (long)resblks, 0,
477 XFS_QMOPT_RES_REGBLKS);
Christoph Hellwig3c68d442017-02-06 10:51:03 -0800478out:
479 if (tp)
480 xfs_trans_cancel(tp);
481 return error;
Darrick J. Wong0613f162016-10-03 09:11:37 -0700482}
483
Darrick J. Wongef473662016-10-03 09:11:34 -0700484/*
Christoph Hellwig092d5d92016-11-24 11:39:49 +1100485 * Find the CoW reservation for a given byte offset of a file.
Darrick J. Wongef473662016-10-03 09:11:34 -0700486 */
487bool
488xfs_reflink_find_cow_mapping(
489 struct xfs_inode *ip,
490 xfs_off_t offset,
Christoph Hellwig092d5d92016-11-24 11:39:49 +1100491 struct xfs_bmbt_irec *imap)
Darrick J. Wongef473662016-10-03 09:11:34 -0700492{
Christoph Hellwig092d5d92016-11-24 11:39:49 +1100493 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK);
494 xfs_fileoff_t offset_fsb;
495 struct xfs_bmbt_irec got;
Darrick J. Wongef473662016-10-03 09:11:34 -0700496 xfs_extnum_t idx;
497
498 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL | XFS_ILOCK_SHARED));
499 ASSERT(xfs_is_reflink_inode(ip));
500
Christoph Hellwig092d5d92016-11-24 11:39:49 +1100501 offset_fsb = XFS_B_TO_FSBT(ip->i_mount, offset);
502 if (!xfs_iext_lookup_extent(ip, ifp, offset_fsb, &idx, &got))
Darrick J. Wongef473662016-10-03 09:11:34 -0700503 return false;
Christoph Hellwig092d5d92016-11-24 11:39:49 +1100504 if (got.br_startoff > offset_fsb)
Darrick J. Wongef473662016-10-03 09:11:34 -0700505 return false;
506
507 trace_xfs_reflink_find_cow_mapping(ip, offset, 1, XFS_IO_OVERWRITE,
Christoph Hellwig092d5d92016-11-24 11:39:49 +1100508 &got);
509 *imap = got;
Darrick J. Wongef473662016-10-03 09:11:34 -0700510 return true;
511}
512
513/*
514 * Trim an extent to end at the next CoW reservation past offset_fsb.
515 */
Christoph Hellwig86f12ab2016-11-24 11:39:50 +1100516void
Darrick J. Wongef473662016-10-03 09:11:34 -0700517xfs_reflink_trim_irec_to_next_cow(
518 struct xfs_inode *ip,
519 xfs_fileoff_t offset_fsb,
520 struct xfs_bmbt_irec *imap)
521{
Christoph Hellwig86f12ab2016-11-24 11:39:50 +1100522 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK);
523 struct xfs_bmbt_irec got;
Darrick J. Wongef473662016-10-03 09:11:34 -0700524 xfs_extnum_t idx;
525
526 if (!xfs_is_reflink_inode(ip))
Christoph Hellwig86f12ab2016-11-24 11:39:50 +1100527 return;
Darrick J. Wongef473662016-10-03 09:11:34 -0700528
529 /* Find the extent in the CoW fork. */
Christoph Hellwig86f12ab2016-11-24 11:39:50 +1100530 if (!xfs_iext_lookup_extent(ip, ifp, offset_fsb, &idx, &got))
531 return;
Darrick J. Wongef473662016-10-03 09:11:34 -0700532
533 /* This is the extent before; try sliding up one. */
Christoph Hellwig86f12ab2016-11-24 11:39:50 +1100534 if (got.br_startoff < offset_fsb) {
535 if (!xfs_iext_get_extent(ifp, idx + 1, &got))
536 return;
Darrick J. Wongef473662016-10-03 09:11:34 -0700537 }
538
Christoph Hellwig86f12ab2016-11-24 11:39:50 +1100539 if (got.br_startoff >= imap->br_startoff + imap->br_blockcount)
540 return;
Darrick J. Wongef473662016-10-03 09:11:34 -0700541
Christoph Hellwig86f12ab2016-11-24 11:39:50 +1100542 imap->br_blockcount = got.br_startoff - imap->br_startoff;
Darrick J. Wongef473662016-10-03 09:11:34 -0700543 trace_xfs_reflink_trim_irec(ip, imap);
Darrick J. Wongef473662016-10-03 09:11:34 -0700544}
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700545
546/*
Christoph Hellwig3802a342017-03-07 16:45:58 -0800547 * Cancel CoW reservations for some block range of an inode.
548 *
549 * If cancel_real is true this function cancels all COW fork extents for the
550 * inode; if cancel_real is false, real extents are not cleared.
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700551 */
552int
553xfs_reflink_cancel_cow_blocks(
554 struct xfs_inode *ip,
555 struct xfs_trans **tpp,
556 xfs_fileoff_t offset_fsb,
Christoph Hellwig3802a342017-03-07 16:45:58 -0800557 xfs_fileoff_t end_fsb,
558 bool cancel_real)
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700559{
Christoph Hellwig3e0ee782016-10-20 15:54:31 +1100560 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK);
Christoph Hellwigdf5ab1b2016-11-24 11:39:50 +1100561 struct xfs_bmbt_irec got, del;
Christoph Hellwig3e0ee782016-10-20 15:54:31 +1100562 xfs_extnum_t idx;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700563 xfs_fsblock_t firstfsb;
564 struct xfs_defer_ops dfops;
Christoph Hellwigdf5ab1b2016-11-24 11:39:50 +1100565 int error = 0;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700566
567 if (!xfs_is_reflink_inode(ip))
568 return 0;
Christoph Hellwigdf5ab1b2016-11-24 11:39:50 +1100569 if (!xfs_iext_lookup_extent(ip, ifp, offset_fsb, &idx, &got))
Christoph Hellwig3e0ee782016-10-20 15:54:31 +1100570 return 0;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700571
Christoph Hellwig3e0ee782016-10-20 15:54:31 +1100572 while (got.br_startoff < end_fsb) {
573 del = got;
574 xfs_trim_extent(&del, offset_fsb, end_fsb - offset_fsb);
575 trace_xfs_reflink_cancel_cow(ip, &del);
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700576
Christoph Hellwig3e0ee782016-10-20 15:54:31 +1100577 if (isnullstartblock(del.br_startblock)) {
578 error = xfs_bmap_del_extent_delay(ip, XFS_COW_FORK,
579 &idx, &got, &del);
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700580 if (error)
581 break;
Christoph Hellwig3802a342017-03-07 16:45:58 -0800582 } else if (del.br_state == XFS_EXT_UNWRITTEN || cancel_real) {
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700583 xfs_trans_ijoin(*tpp, ip, 0);
584 xfs_defer_init(&dfops, &firstfsb);
585
Darrick J. Wong174edb02016-10-03 09:11:39 -0700586 /* Free the CoW orphan record. */
587 error = xfs_refcount_free_cow_extent(ip->i_mount,
Christoph Hellwig3e0ee782016-10-20 15:54:31 +1100588 &dfops, del.br_startblock,
589 del.br_blockcount);
Darrick J. Wong174edb02016-10-03 09:11:39 -0700590 if (error)
591 break;
592
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700593 xfs_bmap_add_free(ip->i_mount, &dfops,
Christoph Hellwig3e0ee782016-10-20 15:54:31 +1100594 del.br_startblock, del.br_blockcount,
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700595 NULL);
596
597 /* Update quota accounting */
598 xfs_trans_mod_dquot_byino(*tpp, ip, XFS_TRANS_DQ_BCOUNT,
Christoph Hellwig3e0ee782016-10-20 15:54:31 +1100599 -(long)del.br_blockcount);
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700600
601 /* Roll the transaction */
602 error = xfs_defer_finish(tpp, &dfops, ip);
603 if (error) {
604 xfs_defer_cancel(&dfops);
605 break;
606 }
607
608 /* Remove the mapping from the CoW fork. */
Christoph Hellwig3e0ee782016-10-20 15:54:31 +1100609 xfs_bmap_del_extent_cow(ip, &idx, &got, &del);
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700610 }
611
Christoph Hellwigdf5ab1b2016-11-24 11:39:50 +1100612 if (!xfs_iext_get_extent(ifp, ++idx, &got))
Brian Fosterc17a8ef2016-10-24 14:21:08 +1100613 break;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700614 }
615
Brian Fosterc17a8ef2016-10-24 14:21:08 +1100616 /* clear tag if cow fork is emptied */
617 if (!ifp->if_bytes)
618 xfs_inode_clear_cowblocks_tag(ip);
619
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700620 return error;
621}
622
623/*
Christoph Hellwig3802a342017-03-07 16:45:58 -0800624 * Cancel CoW reservations for some byte range of an inode.
625 *
626 * If cancel_real is true this function cancels all COW fork extents for the
627 * inode; if cancel_real is false, real extents are not cleared.
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700628 */
629int
630xfs_reflink_cancel_cow_range(
631 struct xfs_inode *ip,
632 xfs_off_t offset,
Christoph Hellwig3802a342017-03-07 16:45:58 -0800633 xfs_off_t count,
634 bool cancel_real)
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700635{
636 struct xfs_trans *tp;
637 xfs_fileoff_t offset_fsb;
638 xfs_fileoff_t end_fsb;
639 int error;
640
641 trace_xfs_reflink_cancel_cow_range(ip, offset, count);
Darrick J. Wong63646fc2016-10-10 16:47:32 +1100642 ASSERT(xfs_is_reflink_inode(ip));
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700643
644 offset_fsb = XFS_B_TO_FSBT(ip->i_mount, offset);
645 if (count == NULLFILEOFF)
646 end_fsb = NULLFILEOFF;
647 else
648 end_fsb = XFS_B_TO_FSB(ip->i_mount, offset + count);
649
650 /* Start a rolling transaction to remove the mappings */
651 error = xfs_trans_alloc(ip->i_mount, &M_RES(ip->i_mount)->tr_write,
652 0, 0, 0, &tp);
653 if (error)
654 goto out;
655
656 xfs_ilock(ip, XFS_ILOCK_EXCL);
657 xfs_trans_ijoin(tp, ip, 0);
658
659 /* Scrape out the old CoW reservations */
Christoph Hellwig3802a342017-03-07 16:45:58 -0800660 error = xfs_reflink_cancel_cow_blocks(ip, &tp, offset_fsb, end_fsb,
661 cancel_real);
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700662 if (error)
663 goto out_cancel;
664
665 error = xfs_trans_commit(tp);
666
667 xfs_iunlock(ip, XFS_ILOCK_EXCL);
668 return error;
669
670out_cancel:
671 xfs_trans_cancel(tp);
672 xfs_iunlock(ip, XFS_ILOCK_EXCL);
673out:
674 trace_xfs_reflink_cancel_cow_range_error(ip, error, _RET_IP_);
675 return error;
676}
677
678/*
679 * Remap parts of a file's data fork after a successful CoW.
680 */
681int
682xfs_reflink_end_cow(
683 struct xfs_inode *ip,
684 xfs_off_t offset,
685 xfs_off_t count)
686{
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100687 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK);
Christoph Hellwig4ab86712016-11-24 11:39:50 +1100688 struct xfs_bmbt_irec got, del;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700689 struct xfs_trans *tp;
690 xfs_fileoff_t offset_fsb;
691 xfs_fileoff_t end_fsb;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700692 xfs_fsblock_t firstfsb;
693 struct xfs_defer_ops dfops;
Christoph Hellwig4ab86712016-11-24 11:39:50 +1100694 int error;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700695 unsigned int resblks;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700696 xfs_filblks_t rlen;
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100697 xfs_extnum_t idx;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700698
699 trace_xfs_reflink_end_cow(ip, offset, count);
700
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100701 /* No COW extents? That's easy! */
702 if (ifp->if_bytes == 0)
703 return 0;
704
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700705 offset_fsb = XFS_B_TO_FSBT(ip->i_mount, offset);
706 end_fsb = XFS_B_TO_FSB(ip->i_mount, offset + count);
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700707
708 /* Start a rolling transaction to switch the mappings */
709 resblks = XFS_EXTENTADD_SPACE_RES(ip->i_mount, XFS_DATA_FORK);
710 error = xfs_trans_alloc(ip->i_mount, &M_RES(ip->i_mount)->tr_write,
711 resblks, 0, 0, &tp);
712 if (error)
713 goto out;
714
715 xfs_ilock(ip, XFS_ILOCK_EXCL);
716 xfs_trans_ijoin(tp, ip, 0);
717
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100718 /* If there is a hole at end_fsb - 1 go to the previous extent */
Christoph Hellwig4ab86712016-11-24 11:39:50 +1100719 if (!xfs_iext_lookup_extent(ip, ifp, end_fsb - 1, &idx, &got) ||
720 got.br_startoff > end_fsb) {
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100721 ASSERT(idx > 0);
Christoph Hellwig4ab86712016-11-24 11:39:50 +1100722 xfs_iext_get_extent(ifp, --idx, &got);
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100723 }
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700724
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100725 /* Walk backwards until we're out of the I/O range... */
726 while (got.br_startoff + got.br_blockcount > offset_fsb) {
727 del = got;
728 xfs_trim_extent(&del, offset_fsb, end_fsb - offset_fsb);
729
730 /* Extent delete may have bumped idx forward */
731 if (!del.br_blockcount) {
732 idx--;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700733 goto next_extent;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700734 }
735
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100736 ASSERT(!isnullstartblock(got.br_startblock));
737
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800738 /*
739 * Don't remap unwritten extents; these are
740 * speculatively preallocated CoW extents that have been
741 * allocated but have not yet been involved in a write.
742 */
743 if (got.br_state == XFS_EXT_UNWRITTEN) {
744 idx--;
745 goto next_extent;
746 }
747
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100748 /* Unmap the old blocks in the data fork. */
749 xfs_defer_init(&dfops, &firstfsb);
750 rlen = del.br_blockcount;
751 error = __xfs_bunmapi(tp, ip, del.br_startoff, &rlen, 0, 1,
752 &firstfsb, &dfops);
753 if (error)
754 goto out_defer;
755
756 /* Trim the extent to whatever got unmapped. */
757 if (rlen) {
758 xfs_trim_extent(&del, del.br_startoff + rlen,
759 del.br_blockcount - rlen);
760 }
761 trace_xfs_reflink_cow_remap(ip, &del);
762
763 /* Free the CoW orphan record. */
764 error = xfs_refcount_free_cow_extent(tp->t_mountp, &dfops,
765 del.br_startblock, del.br_blockcount);
766 if (error)
767 goto out_defer;
768
769 /* Map the new blocks into the data fork. */
770 error = xfs_bmap_map_extent(tp->t_mountp, &dfops, ip, &del);
771 if (error)
772 goto out_defer;
773
774 /* Remove the mapping from the CoW fork. */
775 xfs_bmap_del_extent_cow(ip, &idx, &got, &del);
776
777 error = xfs_defer_finish(&tp, &dfops, ip);
778 if (error)
779 goto out_defer;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700780next_extent:
Christoph Hellwig4ab86712016-11-24 11:39:50 +1100781 if (!xfs_iext_get_extent(ifp, idx, &got))
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100782 break;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700783 }
784
785 error = xfs_trans_commit(tp);
786 xfs_iunlock(ip, XFS_ILOCK_EXCL);
787 if (error)
788 goto out;
789 return 0;
790
791out_defer:
792 xfs_defer_cancel(&dfops);
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700793 xfs_trans_cancel(tp);
794 xfs_iunlock(ip, XFS_ILOCK_EXCL);
795out:
796 trace_xfs_reflink_end_cow_error(ip, error, _RET_IP_);
797 return error;
798}
Darrick J. Wong174edb02016-10-03 09:11:39 -0700799
800/*
801 * Free leftover CoW reservations that didn't get cleaned out.
802 */
803int
804xfs_reflink_recover_cow(
805 struct xfs_mount *mp)
806{
807 xfs_agnumber_t agno;
808 int error = 0;
809
810 if (!xfs_sb_version_hasreflink(&mp->m_sb))
811 return 0;
812
813 for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) {
814 error = xfs_refcount_recover_cow_leftovers(mp, agno);
815 if (error)
816 break;
817 }
818
819 return error;
820}
Darrick J. Wong862bb362016-10-03 09:11:40 -0700821
822/*
823 * Reflinking (Block) Ranges of Two Files Together
824 *
825 * First, ensure that the reflink flag is set on both inodes. The flag is an
826 * optimization to avoid unnecessary refcount btree lookups in the write path.
827 *
828 * Now we can iteratively remap the range of extents (and holes) in src to the
829 * corresponding ranges in dest. Let drange and srange denote the ranges of
830 * logical blocks in dest and src touched by the reflink operation.
831 *
832 * While the length of drange is greater than zero,
833 * - Read src's bmbt at the start of srange ("imap")
834 * - If imap doesn't exist, make imap appear to start at the end of srange
835 * with zero length.
836 * - If imap starts before srange, advance imap to start at srange.
837 * - If imap goes beyond srange, truncate imap to end at the end of srange.
838 * - Punch (imap start - srange start + imap len) blocks from dest at
839 * offset (drange start).
840 * - If imap points to a real range of pblks,
841 * > Increase the refcount of the imap's pblks
842 * > Map imap's pblks into dest at the offset
843 * (drange start + imap start - srange start)
844 * - Advance drange and srange by (imap start - srange start + imap len)
845 *
846 * Finally, if the reflink made dest longer, update both the in-core and
847 * on-disk file sizes.
848 *
849 * ASCII Art Demonstration:
850 *
851 * Let's say we want to reflink this source file:
852 *
853 * ----SSSSSSS-SSSSS----SSSSSS (src file)
854 * <-------------------->
855 *
856 * into this destination file:
857 *
858 * --DDDDDDDDDDDDDDDDDDD--DDD (dest file)
859 * <-------------------->
860 * '-' means a hole, and 'S' and 'D' are written blocks in the src and dest.
861 * Observe that the range has different logical offsets in either file.
862 *
863 * Consider that the first extent in the source file doesn't line up with our
864 * reflink range. Unmapping and remapping are separate operations, so we can
865 * unmap more blocks from the destination file than we remap.
866 *
867 * ----SSSSSSS-SSSSS----SSSSSS
868 * <------->
869 * --DDDDD---------DDDDD--DDD
870 * <------->
871 *
872 * Now remap the source extent into the destination file:
873 *
874 * ----SSSSSSS-SSSSS----SSSSSS
875 * <------->
876 * --DDDDD--SSSSSSSDDDDD--DDD
877 * <------->
878 *
879 * Do likewise with the second hole and extent in our range. Holes in the
880 * unmap range don't affect our operation.
881 *
882 * ----SSSSSSS-SSSSS----SSSSSS
883 * <---->
884 * --DDDDD--SSSSSSS-SSSSS-DDD
885 * <---->
886 *
887 * Finally, unmap and remap part of the third extent. This will increase the
888 * size of the destination file.
889 *
890 * ----SSSSSSS-SSSSS----SSSSSS
891 * <----->
892 * --DDDDD--SSSSSSS-SSSSS----SSS
893 * <----->
894 *
895 * Once we update the destination file's i_size, we're done.
896 */
897
898/*
899 * Ensure the reflink bit is set in both inodes.
900 */
901STATIC int
902xfs_reflink_set_inode_flag(
903 struct xfs_inode *src,
904 struct xfs_inode *dest)
905{
906 struct xfs_mount *mp = src->i_mount;
907 int error;
908 struct xfs_trans *tp;
909
910 if (xfs_is_reflink_inode(src) && xfs_is_reflink_inode(dest))
911 return 0;
912
913 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
914 if (error)
915 goto out_error;
916
917 /* Lock both files against IO */
918 if (src->i_ino == dest->i_ino)
919 xfs_ilock(src, XFS_ILOCK_EXCL);
920 else
921 xfs_lock_two_inodes(src, dest, XFS_ILOCK_EXCL);
922
923 if (!xfs_is_reflink_inode(src)) {
924 trace_xfs_reflink_set_inode_flag(src);
925 xfs_trans_ijoin(tp, src, XFS_ILOCK_EXCL);
926 src->i_d.di_flags2 |= XFS_DIFLAG2_REFLINK;
927 xfs_trans_log_inode(tp, src, XFS_ILOG_CORE);
928 xfs_ifork_init_cow(src);
929 } else
930 xfs_iunlock(src, XFS_ILOCK_EXCL);
931
932 if (src->i_ino == dest->i_ino)
933 goto commit_flags;
934
935 if (!xfs_is_reflink_inode(dest)) {
936 trace_xfs_reflink_set_inode_flag(dest);
937 xfs_trans_ijoin(tp, dest, XFS_ILOCK_EXCL);
938 dest->i_d.di_flags2 |= XFS_DIFLAG2_REFLINK;
939 xfs_trans_log_inode(tp, dest, XFS_ILOG_CORE);
940 xfs_ifork_init_cow(dest);
941 } else
942 xfs_iunlock(dest, XFS_ILOCK_EXCL);
943
944commit_flags:
945 error = xfs_trans_commit(tp);
946 if (error)
947 goto out_error;
948 return error;
949
950out_error:
951 trace_xfs_reflink_set_inode_flag_error(dest, error, _RET_IP_);
952 return error;
953}
954
955/*
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700956 * Update destination inode size & cowextsize hint, if necessary.
Darrick J. Wong862bb362016-10-03 09:11:40 -0700957 */
958STATIC int
959xfs_reflink_update_dest(
960 struct xfs_inode *dest,
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700961 xfs_off_t newlen,
Christoph Hellwigc5ecb422017-02-06 17:45:51 -0800962 xfs_extlen_t cowextsize,
963 bool is_dedupe)
Darrick J. Wong862bb362016-10-03 09:11:40 -0700964{
965 struct xfs_mount *mp = dest->i_mount;
966 struct xfs_trans *tp;
967 int error;
968
Christoph Hellwigc5ecb422017-02-06 17:45:51 -0800969 if (is_dedupe && newlen <= i_size_read(VFS_I(dest)) && cowextsize == 0)
Darrick J. Wong862bb362016-10-03 09:11:40 -0700970 return 0;
971
972 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
973 if (error)
974 goto out_error;
975
976 xfs_ilock(dest, XFS_ILOCK_EXCL);
977 xfs_trans_ijoin(tp, dest, XFS_ILOCK_EXCL);
978
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700979 if (newlen > i_size_read(VFS_I(dest))) {
980 trace_xfs_reflink_update_inode_size(dest, newlen);
981 i_size_write(VFS_I(dest), newlen);
982 dest->i_d.di_size = newlen;
983 }
984
985 if (cowextsize) {
986 dest->i_d.di_cowextsize = cowextsize;
987 dest->i_d.di_flags2 |= XFS_DIFLAG2_COWEXTSIZE;
988 }
989
Christoph Hellwigc5ecb422017-02-06 17:45:51 -0800990 if (!is_dedupe) {
991 xfs_trans_ichgtime(tp, dest,
992 XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
993 }
Darrick J. Wong862bb362016-10-03 09:11:40 -0700994 xfs_trans_log_inode(tp, dest, XFS_ILOG_CORE);
995
996 error = xfs_trans_commit(tp);
997 if (error)
998 goto out_error;
999 return error;
1000
1001out_error:
1002 trace_xfs_reflink_update_inode_size_error(dest, error, _RET_IP_);
1003 return error;
1004}
1005
1006/*
Darrick J. Wong6fa164b2016-10-03 09:11:45 -07001007 * Do we have enough reserve in this AG to handle a reflink? The refcount
1008 * btree already reserved all the space it needs, but the rmap btree can grow
1009 * infinitely, so we won't allow more reflinks when the AG is down to the
1010 * btree reserves.
1011 */
1012static int
1013xfs_reflink_ag_has_free_space(
1014 struct xfs_mount *mp,
1015 xfs_agnumber_t agno)
1016{
1017 struct xfs_perag *pag;
1018 int error = 0;
1019
1020 if (!xfs_sb_version_hasrmapbt(&mp->m_sb))
1021 return 0;
1022
1023 pag = xfs_perag_get(mp, agno);
1024 if (xfs_ag_resv_critical(pag, XFS_AG_RESV_AGFL) ||
1025 xfs_ag_resv_critical(pag, XFS_AG_RESV_METADATA))
1026 error = -ENOSPC;
1027 xfs_perag_put(pag);
1028 return error;
1029}
1030
1031/*
Darrick J. Wong862bb362016-10-03 09:11:40 -07001032 * Unmap a range of blocks from a file, then map other blocks into the hole.
1033 * The range to unmap is (destoff : destoff + srcioff + irec->br_blockcount).
1034 * The extent irec is mapped into dest at irec->br_startoff.
1035 */
1036STATIC int
1037xfs_reflink_remap_extent(
1038 struct xfs_inode *ip,
1039 struct xfs_bmbt_irec *irec,
1040 xfs_fileoff_t destoff,
1041 xfs_off_t new_isize)
1042{
1043 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwig9c4f29d2017-03-28 14:53:35 -07001044 bool real_extent = xfs_bmap_is_real_extent(irec);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001045 struct xfs_trans *tp;
1046 xfs_fsblock_t firstfsb;
1047 unsigned int resblks;
1048 struct xfs_defer_ops dfops;
1049 struct xfs_bmbt_irec uirec;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001050 xfs_filblks_t rlen;
1051 xfs_filblks_t unmap_len;
1052 xfs_off_t newlen;
1053 int error;
1054
1055 unmap_len = irec->br_startoff + irec->br_blockcount - destoff;
1056 trace_xfs_reflink_punch_range(ip, destoff, unmap_len);
1057
Darrick J. Wong6fa164b2016-10-03 09:11:45 -07001058 /* No reflinking if we're low on space */
1059 if (real_extent) {
1060 error = xfs_reflink_ag_has_free_space(mp,
1061 XFS_FSB_TO_AGNO(mp, irec->br_startblock));
1062 if (error)
1063 goto out;
1064 }
1065
Darrick J. Wong862bb362016-10-03 09:11:40 -07001066 /* Start a rolling transaction to switch the mappings */
1067 resblks = XFS_EXTENTADD_SPACE_RES(ip->i_mount, XFS_DATA_FORK);
1068 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks, 0, 0, &tp);
1069 if (error)
1070 goto out;
1071
1072 xfs_ilock(ip, XFS_ILOCK_EXCL);
1073 xfs_trans_ijoin(tp, ip, 0);
1074
1075 /* If we're not just clearing space, then do we have enough quota? */
1076 if (real_extent) {
1077 error = xfs_trans_reserve_quota_nblks(tp, ip,
1078 irec->br_blockcount, 0, XFS_QMOPT_RES_REGBLKS);
1079 if (error)
1080 goto out_cancel;
1081 }
1082
1083 trace_xfs_reflink_remap(ip, irec->br_startoff,
1084 irec->br_blockcount, irec->br_startblock);
1085
1086 /* Unmap the old blocks in the data fork. */
1087 rlen = unmap_len;
1088 while (rlen) {
1089 xfs_defer_init(&dfops, &firstfsb);
1090 error = __xfs_bunmapi(tp, ip, destoff, &rlen, 0, 1,
1091 &firstfsb, &dfops);
1092 if (error)
1093 goto out_defer;
1094
1095 /*
1096 * Trim the extent to whatever got unmapped.
1097 * Remember, bunmapi works backwards.
1098 */
1099 uirec.br_startblock = irec->br_startblock + rlen;
1100 uirec.br_startoff = irec->br_startoff + rlen;
1101 uirec.br_blockcount = unmap_len - rlen;
1102 unmap_len = rlen;
1103
1104 /* If this isn't a real mapping, we're done. */
1105 if (!real_extent || uirec.br_blockcount == 0)
1106 goto next_extent;
1107
1108 trace_xfs_reflink_remap(ip, uirec.br_startoff,
1109 uirec.br_blockcount, uirec.br_startblock);
1110
1111 /* Update the refcount tree */
1112 error = xfs_refcount_increase_extent(mp, &dfops, &uirec);
1113 if (error)
1114 goto out_defer;
1115
1116 /* Map the new blocks into the data fork. */
1117 error = xfs_bmap_map_extent(mp, &dfops, ip, &uirec);
1118 if (error)
1119 goto out_defer;
1120
1121 /* Update quota accounting. */
1122 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT,
1123 uirec.br_blockcount);
1124
1125 /* Update dest isize if needed. */
1126 newlen = XFS_FSB_TO_B(mp,
1127 uirec.br_startoff + uirec.br_blockcount);
1128 newlen = min_t(xfs_off_t, newlen, new_isize);
1129 if (newlen > i_size_read(VFS_I(ip))) {
1130 trace_xfs_reflink_update_inode_size(ip, newlen);
1131 i_size_write(VFS_I(ip), newlen);
1132 ip->i_d.di_size = newlen;
1133 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1134 }
1135
1136next_extent:
1137 /* Process all the deferred stuff. */
1138 error = xfs_defer_finish(&tp, &dfops, ip);
1139 if (error)
1140 goto out_defer;
1141 }
1142
1143 error = xfs_trans_commit(tp);
1144 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1145 if (error)
1146 goto out;
1147 return 0;
1148
1149out_defer:
1150 xfs_defer_cancel(&dfops);
1151out_cancel:
1152 xfs_trans_cancel(tp);
1153 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1154out:
1155 trace_xfs_reflink_remap_extent_error(ip, error, _RET_IP_);
1156 return error;
1157}
1158
1159/*
1160 * Iteratively remap one file's extents (and holes) to another's.
1161 */
1162STATIC int
1163xfs_reflink_remap_blocks(
1164 struct xfs_inode *src,
1165 xfs_fileoff_t srcoff,
1166 struct xfs_inode *dest,
1167 xfs_fileoff_t destoff,
1168 xfs_filblks_t len,
1169 xfs_off_t new_isize)
1170{
1171 struct xfs_bmbt_irec imap;
1172 int nimaps;
1173 int error = 0;
1174 xfs_filblks_t range_len;
1175
1176 /* drange = (destoff, destoff + len); srange = (srcoff, srcoff + len) */
1177 while (len) {
1178 trace_xfs_reflink_remap_blocks_loop(src, srcoff, len,
1179 dest, destoff);
1180 /* Read extent from the source file */
1181 nimaps = 1;
1182 xfs_ilock(src, XFS_ILOCK_EXCL);
1183 error = xfs_bmapi_read(src, srcoff, len, &imap, &nimaps, 0);
1184 xfs_iunlock(src, XFS_ILOCK_EXCL);
1185 if (error)
1186 goto err;
1187 ASSERT(nimaps == 1);
1188
1189 trace_xfs_reflink_remap_imap(src, srcoff, len, XFS_IO_OVERWRITE,
1190 &imap);
1191
1192 /* Translate imap into the destination file. */
1193 range_len = imap.br_startoff + imap.br_blockcount - srcoff;
1194 imap.br_startoff += destoff - srcoff;
1195
1196 /* Clear dest from destoff to the end of imap and map it in. */
1197 error = xfs_reflink_remap_extent(dest, &imap, destoff,
1198 new_isize);
1199 if (error)
1200 goto err;
1201
1202 if (fatal_signal_pending(current)) {
1203 error = -EINTR;
1204 goto err;
1205 }
1206
1207 /* Advance drange/srange */
1208 srcoff += range_len;
1209 destoff += range_len;
1210 len -= range_len;
1211 }
1212
1213 return 0;
1214
1215err:
1216 trace_xfs_reflink_remap_blocks_error(dest, error, _RET_IP_);
1217 return error;
1218}
1219
1220/*
1221 * Link a range of blocks from one file to another.
1222 */
1223int
1224xfs_reflink_remap_range(
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001225 struct file *file_in,
1226 loff_t pos_in,
1227 struct file *file_out,
1228 loff_t pos_out,
1229 u64 len,
1230 bool is_dedupe)
Darrick J. Wong862bb362016-10-03 09:11:40 -07001231{
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001232 struct inode *inode_in = file_inode(file_in);
1233 struct xfs_inode *src = XFS_I(inode_in);
1234 struct inode *inode_out = file_inode(file_out);
1235 struct xfs_inode *dest = XFS_I(inode_out);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001236 struct xfs_mount *mp = src->i_mount;
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001237 bool same_inode = (inode_in == inode_out);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001238 xfs_fileoff_t sfsbno, dfsbno;
1239 xfs_filblks_t fsblen;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001240 xfs_extlen_t cowextsize;
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001241 ssize_t ret;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001242
1243 if (!xfs_sb_version_hasreflink(&mp->m_sb))
1244 return -EOPNOTSUPP;
1245
1246 if (XFS_FORCED_SHUTDOWN(mp))
1247 return -EIO;
1248
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001249 /* Lock both files against IO */
Christoph Hellwig65523212016-11-30 14:33:25 +11001250 lock_two_nondirectories(inode_in, inode_out);
1251 if (same_inode)
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001252 xfs_ilock(src, XFS_MMAPLOCK_EXCL);
Christoph Hellwig65523212016-11-30 14:33:25 +11001253 else
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001254 xfs_lock_two_inodes(src, dest, XFS_MMAPLOCK_EXCL);
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001255
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001256 /* Check file eligibility and prepare for block sharing. */
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001257 ret = -EINVAL;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001258 /* Don't reflink realtime inodes */
1259 if (XFS_IS_REALTIME_INODE(src) || XFS_IS_REALTIME_INODE(dest))
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001260 goto out_unlock;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001261
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001262 /* Don't share DAX file data for now. */
1263 if (IS_DAX(inode_in) || IS_DAX(inode_out))
1264 goto out_unlock;
Darrick J. Wongcc714662016-10-03 09:11:41 -07001265
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001266 ret = vfs_clone_file_prep_inodes(inode_in, pos_in, inode_out, pos_out,
1267 &len, is_dedupe);
Darrick J. Wong22725ce2016-12-19 15:13:26 -08001268 if (ret <= 0)
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001269 goto out_unlock;
1270
1271 trace_xfs_reflink_remap_range(src, pos_in, len, dest, pos_out);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001272
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001273 /* Set flags and remap blocks. */
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001274 ret = xfs_reflink_set_inode_flag(src, dest);
1275 if (ret)
1276 goto out_unlock;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001277
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001278 dfsbno = XFS_B_TO_FSBT(mp, pos_out);
1279 sfsbno = XFS_B_TO_FSBT(mp, pos_in);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001280 fsblen = XFS_B_TO_FSB(mp, len);
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001281 ret = xfs_reflink_remap_blocks(src, sfsbno, dest, dfsbno, fsblen,
1282 pos_out + len);
1283 if (ret)
1284 goto out_unlock;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001285
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001286 /* Zap any page cache for the destination file's range. */
1287 truncate_inode_pages_range(&inode_out->i_data, pos_out,
1288 PAGE_ALIGN(pos_out + len) - 1);
1289
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001290 /*
1291 * Carry the cowextsize hint from src to dest if we're sharing the
1292 * entire source file to the entire destination file, the source file
1293 * has a cowextsize hint, and the destination file does not.
1294 */
1295 cowextsize = 0;
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001296 if (pos_in == 0 && len == i_size_read(inode_in) &&
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001297 (src->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE) &&
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001298 pos_out == 0 && len >= i_size_read(inode_out) &&
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001299 !(dest->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE))
1300 cowextsize = src->i_d.di_cowextsize;
1301
Christoph Hellwigc5ecb422017-02-06 17:45:51 -08001302 ret = xfs_reflink_update_dest(dest, pos_out + len, cowextsize,
1303 is_dedupe);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001304
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001305out_unlock:
1306 xfs_iunlock(src, XFS_MMAPLOCK_EXCL);
Christoph Hellwig65523212016-11-30 14:33:25 +11001307 if (!same_inode)
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001308 xfs_iunlock(dest, XFS_MMAPLOCK_EXCL);
Christoph Hellwig65523212016-11-30 14:33:25 +11001309 unlock_two_nondirectories(inode_in, inode_out);
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001310 if (ret)
1311 trace_xfs_reflink_remap_range_error(dest, ret, _RET_IP_);
1312 return ret;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001313}
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001314
1315/*
1316 * The user wants to preemptively CoW all shared blocks in this file,
1317 * which enables us to turn off the reflink flag. Iterate all
1318 * extents which are not prealloc/delalloc to see which ranges are
1319 * mentioned in the refcount tree, then read those blocks into the
1320 * pagecache, dirty them, fsync them back out, and then we can update
1321 * the inode flag. What happens if we run out of memory? :)
1322 */
1323STATIC int
1324xfs_reflink_dirty_extents(
1325 struct xfs_inode *ip,
1326 xfs_fileoff_t fbno,
1327 xfs_filblks_t end,
1328 xfs_off_t isize)
1329{
1330 struct xfs_mount *mp = ip->i_mount;
1331 xfs_agnumber_t agno;
1332 xfs_agblock_t agbno;
1333 xfs_extlen_t aglen;
1334 xfs_agblock_t rbno;
1335 xfs_extlen_t rlen;
1336 xfs_off_t fpos;
1337 xfs_off_t flen;
1338 struct xfs_bmbt_irec map[2];
1339 int nmaps;
Darrick J. Wong9780643c2016-10-10 16:49:18 +11001340 int error = 0;
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001341
1342 while (end - fbno > 0) {
1343 nmaps = 1;
1344 /*
1345 * Look for extents in the file. Skip holes, delalloc, or
1346 * unwritten extents; they can't be reflinked.
1347 */
1348 error = xfs_bmapi_read(ip, fbno, end - fbno, map, &nmaps, 0);
1349 if (error)
1350 goto out;
1351 if (nmaps == 0)
1352 break;
Christoph Hellwig9c4f29d2017-03-28 14:53:35 -07001353 if (!xfs_bmap_is_real_extent(&map[0]))
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001354 goto next;
1355
1356 map[1] = map[0];
1357 while (map[1].br_blockcount) {
1358 agno = XFS_FSB_TO_AGNO(mp, map[1].br_startblock);
1359 agbno = XFS_FSB_TO_AGBNO(mp, map[1].br_startblock);
1360 aglen = map[1].br_blockcount;
1361
1362 error = xfs_reflink_find_shared(mp, agno, agbno, aglen,
1363 &rbno, &rlen, true);
1364 if (error)
1365 goto out;
1366 if (rbno == NULLAGBLOCK)
1367 break;
1368
1369 /* Dirty the pages */
1370 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1371 fpos = XFS_FSB_TO_B(mp, map[1].br_startoff +
1372 (rbno - agbno));
1373 flen = XFS_FSB_TO_B(mp, rlen);
1374 if (fpos + flen > isize)
1375 flen = isize - fpos;
1376 error = iomap_file_dirty(VFS_I(ip), fpos, flen,
1377 &xfs_iomap_ops);
1378 xfs_ilock(ip, XFS_ILOCK_EXCL);
1379 if (error)
1380 goto out;
1381
1382 map[1].br_blockcount -= (rbno - agbno + rlen);
1383 map[1].br_startoff += (rbno - agbno + rlen);
1384 map[1].br_startblock += (rbno - agbno + rlen);
1385 }
1386
1387next:
1388 fbno = map[0].br_startoff + map[0].br_blockcount;
1389 }
1390out:
1391 return error;
1392}
1393
1394/* Clear the inode reflink flag if there are no shared extents. */
1395int
1396xfs_reflink_clear_inode_flag(
1397 struct xfs_inode *ip,
1398 struct xfs_trans **tpp)
1399{
1400 struct xfs_mount *mp = ip->i_mount;
1401 xfs_fileoff_t fbno;
1402 xfs_filblks_t end;
1403 xfs_agnumber_t agno;
1404 xfs_agblock_t agbno;
1405 xfs_extlen_t aglen;
1406 xfs_agblock_t rbno;
1407 xfs_extlen_t rlen;
Darrick J. Wong024adf42016-10-10 16:47:40 +11001408 struct xfs_bmbt_irec map;
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001409 int nmaps;
1410 int error = 0;
1411
Darrick J. Wong63646fc2016-10-10 16:47:32 +11001412 ASSERT(xfs_is_reflink_inode(ip));
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001413
1414 fbno = 0;
1415 end = XFS_B_TO_FSB(mp, i_size_read(VFS_I(ip)));
1416 while (end - fbno > 0) {
1417 nmaps = 1;
1418 /*
1419 * Look for extents in the file. Skip holes, delalloc, or
1420 * unwritten extents; they can't be reflinked.
1421 */
Darrick J. Wong024adf42016-10-10 16:47:40 +11001422 error = xfs_bmapi_read(ip, fbno, end - fbno, &map, &nmaps, 0);
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001423 if (error)
1424 return error;
1425 if (nmaps == 0)
1426 break;
Christoph Hellwig9c4f29d2017-03-28 14:53:35 -07001427 if (!xfs_bmap_is_real_extent(&map))
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001428 goto next;
1429
Darrick J. Wong024adf42016-10-10 16:47:40 +11001430 agno = XFS_FSB_TO_AGNO(mp, map.br_startblock);
1431 agbno = XFS_FSB_TO_AGBNO(mp, map.br_startblock);
1432 aglen = map.br_blockcount;
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001433
Darrick J. Wong024adf42016-10-10 16:47:40 +11001434 error = xfs_reflink_find_shared(mp, agno, agbno, aglen,
1435 &rbno, &rlen, false);
1436 if (error)
1437 return error;
1438 /* Is there still a shared block here? */
1439 if (rbno != NULLAGBLOCK)
1440 return 0;
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001441next:
Darrick J. Wong024adf42016-10-10 16:47:40 +11001442 fbno = map.br_startoff + map.br_blockcount;
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001443 }
1444
1445 /*
1446 * We didn't find any shared blocks so turn off the reflink flag.
1447 * First, get rid of any leftover CoW mappings.
1448 */
Christoph Hellwig3802a342017-03-07 16:45:58 -08001449 error = xfs_reflink_cancel_cow_blocks(ip, tpp, 0, NULLFILEOFF, true);
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001450 if (error)
1451 return error;
1452
1453 /* Clear the inode flag. */
1454 trace_xfs_reflink_unset_inode_flag(ip);
1455 ip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
Darrick J. Wong83104d42016-10-03 09:11:46 -07001456 xfs_inode_clear_cowblocks_tag(ip);
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001457 xfs_trans_ijoin(*tpp, ip, 0);
1458 xfs_trans_log_inode(*tpp, ip, XFS_ILOG_CORE);
1459
1460 return error;
1461}
1462
1463/*
1464 * Clear the inode reflink flag if there are no shared extents and the size
1465 * hasn't changed.
1466 */
1467STATIC int
1468xfs_reflink_try_clear_inode_flag(
Darrick J. Wong97a1b872016-10-10 16:49:01 +11001469 struct xfs_inode *ip)
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001470{
1471 struct xfs_mount *mp = ip->i_mount;
1472 struct xfs_trans *tp;
1473 int error = 0;
1474
1475 /* Start a rolling transaction to remove the mappings */
1476 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, 0, 0, 0, &tp);
1477 if (error)
1478 return error;
1479
1480 xfs_ilock(ip, XFS_ILOCK_EXCL);
1481 xfs_trans_ijoin(tp, ip, 0);
1482
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001483 error = xfs_reflink_clear_inode_flag(ip, &tp);
1484 if (error)
1485 goto cancel;
1486
1487 error = xfs_trans_commit(tp);
1488 if (error)
1489 goto out;
1490
1491 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1492 return 0;
1493cancel:
1494 xfs_trans_cancel(tp);
1495out:
1496 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1497 return error;
1498}
1499
1500/*
1501 * Pre-COW all shared blocks within a given byte range of a file and turn off
1502 * the reflink flag if we unshare all of the file's blocks.
1503 */
1504int
1505xfs_reflink_unshare(
1506 struct xfs_inode *ip,
1507 xfs_off_t offset,
1508 xfs_off_t len)
1509{
1510 struct xfs_mount *mp = ip->i_mount;
1511 xfs_fileoff_t fbno;
1512 xfs_filblks_t end;
1513 xfs_off_t isize;
1514 int error;
1515
1516 if (!xfs_is_reflink_inode(ip))
1517 return 0;
1518
1519 trace_xfs_reflink_unshare(ip, offset, len);
1520
1521 inode_dio_wait(VFS_I(ip));
1522
1523 /* Try to CoW the selected ranges */
1524 xfs_ilock(ip, XFS_ILOCK_EXCL);
Darrick J. Wong97a1b872016-10-10 16:49:01 +11001525 fbno = XFS_B_TO_FSBT(mp, offset);
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001526 isize = i_size_read(VFS_I(ip));
1527 end = XFS_B_TO_FSB(mp, offset + len);
1528 error = xfs_reflink_dirty_extents(ip, fbno, end, isize);
1529 if (error)
1530 goto out_unlock;
1531 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1532
1533 /* Wait for the IO to finish */
1534 error = filemap_write_and_wait(VFS_I(ip)->i_mapping);
1535 if (error)
1536 goto out;
1537
Darrick J. Wong97a1b872016-10-10 16:49:01 +11001538 /* Turn off the reflink flag if possible. */
1539 error = xfs_reflink_try_clear_inode_flag(ip);
1540 if (error)
1541 goto out;
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001542
1543 return 0;
1544
1545out_unlock:
1546 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1547out:
1548 trace_xfs_reflink_unshare_error(ip, error, _RET_IP_);
1549 return error;
1550}