blob: ffe6fe7a7eb546721827bcdb8e810a8777a1455b [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
Darrick J. Wongfe0be232017-04-12 12:26:07 -0700708 /*
709 * Start a rolling transaction to switch the mappings. We're
710 * unlikely ever to have to remap 16T worth of single-block
711 * extents, so just cap the worst case extent count to 2^32-1.
712 * Stick a warning in just in case, and avoid 64-bit division.
713 */
714 BUILD_BUG_ON(MAX_RW_COUNT > UINT_MAX);
715 if (end_fsb - offset_fsb > UINT_MAX) {
716 error = -EFSCORRUPTED;
717 xfs_force_shutdown(ip->i_mount, SHUTDOWN_CORRUPT_INCORE);
718 ASSERT(0);
719 goto out;
720 }
721 resblks = XFS_NEXTENTADD_SPACE_RES(ip->i_mount,
722 (unsigned int)(end_fsb - offset_fsb),
723 XFS_DATA_FORK);
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700724 error = xfs_trans_alloc(ip->i_mount, &M_RES(ip->i_mount)->tr_write,
725 resblks, 0, 0, &tp);
726 if (error)
727 goto out;
728
729 xfs_ilock(ip, XFS_ILOCK_EXCL);
730 xfs_trans_ijoin(tp, ip, 0);
731
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100732 /* If there is a hole at end_fsb - 1 go to the previous extent */
Christoph Hellwig4ab86712016-11-24 11:39:50 +1100733 if (!xfs_iext_lookup_extent(ip, ifp, end_fsb - 1, &idx, &got) ||
734 got.br_startoff > end_fsb) {
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100735 ASSERT(idx > 0);
Christoph Hellwig4ab86712016-11-24 11:39:50 +1100736 xfs_iext_get_extent(ifp, --idx, &got);
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100737 }
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700738
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100739 /* Walk backwards until we're out of the I/O range... */
740 while (got.br_startoff + got.br_blockcount > offset_fsb) {
741 del = got;
742 xfs_trim_extent(&del, offset_fsb, end_fsb - offset_fsb);
743
744 /* Extent delete may have bumped idx forward */
745 if (!del.br_blockcount) {
746 idx--;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700747 goto next_extent;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700748 }
749
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100750 ASSERT(!isnullstartblock(got.br_startblock));
751
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800752 /*
753 * Don't remap unwritten extents; these are
754 * speculatively preallocated CoW extents that have been
755 * allocated but have not yet been involved in a write.
756 */
757 if (got.br_state == XFS_EXT_UNWRITTEN) {
758 idx--;
759 goto next_extent;
760 }
761
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100762 /* Unmap the old blocks in the data fork. */
763 xfs_defer_init(&dfops, &firstfsb);
764 rlen = del.br_blockcount;
765 error = __xfs_bunmapi(tp, ip, del.br_startoff, &rlen, 0, 1,
766 &firstfsb, &dfops);
767 if (error)
768 goto out_defer;
769
770 /* Trim the extent to whatever got unmapped. */
771 if (rlen) {
772 xfs_trim_extent(&del, del.br_startoff + rlen,
773 del.br_blockcount - rlen);
774 }
775 trace_xfs_reflink_cow_remap(ip, &del);
776
777 /* Free the CoW orphan record. */
778 error = xfs_refcount_free_cow_extent(tp->t_mountp, &dfops,
779 del.br_startblock, del.br_blockcount);
780 if (error)
781 goto out_defer;
782
783 /* Map the new blocks into the data fork. */
784 error = xfs_bmap_map_extent(tp->t_mountp, &dfops, ip, &del);
785 if (error)
786 goto out_defer;
787
788 /* Remove the mapping from the CoW fork. */
789 xfs_bmap_del_extent_cow(ip, &idx, &got, &del);
790
791 error = xfs_defer_finish(&tp, &dfops, ip);
792 if (error)
793 goto out_defer;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700794next_extent:
Christoph Hellwig4ab86712016-11-24 11:39:50 +1100795 if (!xfs_iext_get_extent(ifp, idx, &got))
Christoph Hellwigc1112b62016-10-20 15:54:45 +1100796 break;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700797 }
798
799 error = xfs_trans_commit(tp);
800 xfs_iunlock(ip, XFS_ILOCK_EXCL);
801 if (error)
802 goto out;
803 return 0;
804
805out_defer:
806 xfs_defer_cancel(&dfops);
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700807 xfs_trans_cancel(tp);
808 xfs_iunlock(ip, XFS_ILOCK_EXCL);
809out:
810 trace_xfs_reflink_end_cow_error(ip, error, _RET_IP_);
811 return error;
812}
Darrick J. Wong174edb02016-10-03 09:11:39 -0700813
814/*
815 * Free leftover CoW reservations that didn't get cleaned out.
816 */
817int
818xfs_reflink_recover_cow(
819 struct xfs_mount *mp)
820{
821 xfs_agnumber_t agno;
822 int error = 0;
823
824 if (!xfs_sb_version_hasreflink(&mp->m_sb))
825 return 0;
826
827 for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) {
828 error = xfs_refcount_recover_cow_leftovers(mp, agno);
829 if (error)
830 break;
831 }
832
833 return error;
834}
Darrick J. Wong862bb362016-10-03 09:11:40 -0700835
836/*
837 * Reflinking (Block) Ranges of Two Files Together
838 *
839 * First, ensure that the reflink flag is set on both inodes. The flag is an
840 * optimization to avoid unnecessary refcount btree lookups in the write path.
841 *
842 * Now we can iteratively remap the range of extents (and holes) in src to the
843 * corresponding ranges in dest. Let drange and srange denote the ranges of
844 * logical blocks in dest and src touched by the reflink operation.
845 *
846 * While the length of drange is greater than zero,
847 * - Read src's bmbt at the start of srange ("imap")
848 * - If imap doesn't exist, make imap appear to start at the end of srange
849 * with zero length.
850 * - If imap starts before srange, advance imap to start at srange.
851 * - If imap goes beyond srange, truncate imap to end at the end of srange.
852 * - Punch (imap start - srange start + imap len) blocks from dest at
853 * offset (drange start).
854 * - If imap points to a real range of pblks,
855 * > Increase the refcount of the imap's pblks
856 * > Map imap's pblks into dest at the offset
857 * (drange start + imap start - srange start)
858 * - Advance drange and srange by (imap start - srange start + imap len)
859 *
860 * Finally, if the reflink made dest longer, update both the in-core and
861 * on-disk file sizes.
862 *
863 * ASCII Art Demonstration:
864 *
865 * Let's say we want to reflink this source file:
866 *
867 * ----SSSSSSS-SSSSS----SSSSSS (src file)
868 * <-------------------->
869 *
870 * into this destination file:
871 *
872 * --DDDDDDDDDDDDDDDDDDD--DDD (dest file)
873 * <-------------------->
874 * '-' means a hole, and 'S' and 'D' are written blocks in the src and dest.
875 * Observe that the range has different logical offsets in either file.
876 *
877 * Consider that the first extent in the source file doesn't line up with our
878 * reflink range. Unmapping and remapping are separate operations, so we can
879 * unmap more blocks from the destination file than we remap.
880 *
881 * ----SSSSSSS-SSSSS----SSSSSS
882 * <------->
883 * --DDDDD---------DDDDD--DDD
884 * <------->
885 *
886 * Now remap the source extent into the destination file:
887 *
888 * ----SSSSSSS-SSSSS----SSSSSS
889 * <------->
890 * --DDDDD--SSSSSSSDDDDD--DDD
891 * <------->
892 *
893 * Do likewise with the second hole and extent in our range. Holes in the
894 * unmap range don't affect our operation.
895 *
896 * ----SSSSSSS-SSSSS----SSSSSS
897 * <---->
898 * --DDDDD--SSSSSSS-SSSSS-DDD
899 * <---->
900 *
901 * Finally, unmap and remap part of the third extent. This will increase the
902 * size of the destination file.
903 *
904 * ----SSSSSSS-SSSSS----SSSSSS
905 * <----->
906 * --DDDDD--SSSSSSS-SSSSS----SSS
907 * <----->
908 *
909 * Once we update the destination file's i_size, we're done.
910 */
911
912/*
913 * Ensure the reflink bit is set in both inodes.
914 */
915STATIC int
916xfs_reflink_set_inode_flag(
917 struct xfs_inode *src,
918 struct xfs_inode *dest)
919{
920 struct xfs_mount *mp = src->i_mount;
921 int error;
922 struct xfs_trans *tp;
923
924 if (xfs_is_reflink_inode(src) && xfs_is_reflink_inode(dest))
925 return 0;
926
927 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
928 if (error)
929 goto out_error;
930
931 /* Lock both files against IO */
932 if (src->i_ino == dest->i_ino)
933 xfs_ilock(src, XFS_ILOCK_EXCL);
934 else
935 xfs_lock_two_inodes(src, dest, XFS_ILOCK_EXCL);
936
937 if (!xfs_is_reflink_inode(src)) {
938 trace_xfs_reflink_set_inode_flag(src);
939 xfs_trans_ijoin(tp, src, XFS_ILOCK_EXCL);
940 src->i_d.di_flags2 |= XFS_DIFLAG2_REFLINK;
941 xfs_trans_log_inode(tp, src, XFS_ILOG_CORE);
942 xfs_ifork_init_cow(src);
943 } else
944 xfs_iunlock(src, XFS_ILOCK_EXCL);
945
946 if (src->i_ino == dest->i_ino)
947 goto commit_flags;
948
949 if (!xfs_is_reflink_inode(dest)) {
950 trace_xfs_reflink_set_inode_flag(dest);
951 xfs_trans_ijoin(tp, dest, XFS_ILOCK_EXCL);
952 dest->i_d.di_flags2 |= XFS_DIFLAG2_REFLINK;
953 xfs_trans_log_inode(tp, dest, XFS_ILOG_CORE);
954 xfs_ifork_init_cow(dest);
955 } else
956 xfs_iunlock(dest, XFS_ILOCK_EXCL);
957
958commit_flags:
959 error = xfs_trans_commit(tp);
960 if (error)
961 goto out_error;
962 return error;
963
964out_error:
965 trace_xfs_reflink_set_inode_flag_error(dest, error, _RET_IP_);
966 return error;
967}
968
969/*
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700970 * Update destination inode size & cowextsize hint, if necessary.
Darrick J. Wong862bb362016-10-03 09:11:40 -0700971 */
972STATIC int
973xfs_reflink_update_dest(
974 struct xfs_inode *dest,
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700975 xfs_off_t newlen,
Christoph Hellwigc5ecb422017-02-06 17:45:51 -0800976 xfs_extlen_t cowextsize,
977 bool is_dedupe)
Darrick J. Wong862bb362016-10-03 09:11:40 -0700978{
979 struct xfs_mount *mp = dest->i_mount;
980 struct xfs_trans *tp;
981 int error;
982
Christoph Hellwigc5ecb422017-02-06 17:45:51 -0800983 if (is_dedupe && newlen <= i_size_read(VFS_I(dest)) && cowextsize == 0)
Darrick J. Wong862bb362016-10-03 09:11:40 -0700984 return 0;
985
986 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
987 if (error)
988 goto out_error;
989
990 xfs_ilock(dest, XFS_ILOCK_EXCL);
991 xfs_trans_ijoin(tp, dest, XFS_ILOCK_EXCL);
992
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700993 if (newlen > i_size_read(VFS_I(dest))) {
994 trace_xfs_reflink_update_inode_size(dest, newlen);
995 i_size_write(VFS_I(dest), newlen);
996 dest->i_d.di_size = newlen;
997 }
998
999 if (cowextsize) {
1000 dest->i_d.di_cowextsize = cowextsize;
1001 dest->i_d.di_flags2 |= XFS_DIFLAG2_COWEXTSIZE;
1002 }
1003
Christoph Hellwigc5ecb422017-02-06 17:45:51 -08001004 if (!is_dedupe) {
1005 xfs_trans_ichgtime(tp, dest,
1006 XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1007 }
Darrick J. Wong862bb362016-10-03 09:11:40 -07001008 xfs_trans_log_inode(tp, dest, XFS_ILOG_CORE);
1009
1010 error = xfs_trans_commit(tp);
1011 if (error)
1012 goto out_error;
1013 return error;
1014
1015out_error:
1016 trace_xfs_reflink_update_inode_size_error(dest, error, _RET_IP_);
1017 return error;
1018}
1019
1020/*
Darrick J. Wong6fa164b2016-10-03 09:11:45 -07001021 * Do we have enough reserve in this AG to handle a reflink? The refcount
1022 * btree already reserved all the space it needs, but the rmap btree can grow
1023 * infinitely, so we won't allow more reflinks when the AG is down to the
1024 * btree reserves.
1025 */
1026static int
1027xfs_reflink_ag_has_free_space(
1028 struct xfs_mount *mp,
1029 xfs_agnumber_t agno)
1030{
1031 struct xfs_perag *pag;
1032 int error = 0;
1033
1034 if (!xfs_sb_version_hasrmapbt(&mp->m_sb))
1035 return 0;
1036
1037 pag = xfs_perag_get(mp, agno);
1038 if (xfs_ag_resv_critical(pag, XFS_AG_RESV_AGFL) ||
1039 xfs_ag_resv_critical(pag, XFS_AG_RESV_METADATA))
1040 error = -ENOSPC;
1041 xfs_perag_put(pag);
1042 return error;
1043}
1044
1045/*
Darrick J. Wong862bb362016-10-03 09:11:40 -07001046 * Unmap a range of blocks from a file, then map other blocks into the hole.
1047 * The range to unmap is (destoff : destoff + srcioff + irec->br_blockcount).
1048 * The extent irec is mapped into dest at irec->br_startoff.
1049 */
1050STATIC int
1051xfs_reflink_remap_extent(
1052 struct xfs_inode *ip,
1053 struct xfs_bmbt_irec *irec,
1054 xfs_fileoff_t destoff,
1055 xfs_off_t new_isize)
1056{
1057 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwig9c4f29d2017-03-28 14:53:35 -07001058 bool real_extent = xfs_bmap_is_real_extent(irec);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001059 struct xfs_trans *tp;
1060 xfs_fsblock_t firstfsb;
1061 unsigned int resblks;
1062 struct xfs_defer_ops dfops;
1063 struct xfs_bmbt_irec uirec;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001064 xfs_filblks_t rlen;
1065 xfs_filblks_t unmap_len;
1066 xfs_off_t newlen;
1067 int error;
1068
1069 unmap_len = irec->br_startoff + irec->br_blockcount - destoff;
1070 trace_xfs_reflink_punch_range(ip, destoff, unmap_len);
1071
Darrick J. Wong6fa164b2016-10-03 09:11:45 -07001072 /* No reflinking if we're low on space */
1073 if (real_extent) {
1074 error = xfs_reflink_ag_has_free_space(mp,
1075 XFS_FSB_TO_AGNO(mp, irec->br_startblock));
1076 if (error)
1077 goto out;
1078 }
1079
Darrick J. Wong862bb362016-10-03 09:11:40 -07001080 /* Start a rolling transaction to switch the mappings */
1081 resblks = XFS_EXTENTADD_SPACE_RES(ip->i_mount, XFS_DATA_FORK);
1082 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks, 0, 0, &tp);
1083 if (error)
1084 goto out;
1085
1086 xfs_ilock(ip, XFS_ILOCK_EXCL);
1087 xfs_trans_ijoin(tp, ip, 0);
1088
1089 /* If we're not just clearing space, then do we have enough quota? */
1090 if (real_extent) {
1091 error = xfs_trans_reserve_quota_nblks(tp, ip,
1092 irec->br_blockcount, 0, XFS_QMOPT_RES_REGBLKS);
1093 if (error)
1094 goto out_cancel;
1095 }
1096
1097 trace_xfs_reflink_remap(ip, irec->br_startoff,
1098 irec->br_blockcount, irec->br_startblock);
1099
1100 /* Unmap the old blocks in the data fork. */
1101 rlen = unmap_len;
1102 while (rlen) {
1103 xfs_defer_init(&dfops, &firstfsb);
1104 error = __xfs_bunmapi(tp, ip, destoff, &rlen, 0, 1,
1105 &firstfsb, &dfops);
1106 if (error)
1107 goto out_defer;
1108
1109 /*
1110 * Trim the extent to whatever got unmapped.
1111 * Remember, bunmapi works backwards.
1112 */
1113 uirec.br_startblock = irec->br_startblock + rlen;
1114 uirec.br_startoff = irec->br_startoff + rlen;
1115 uirec.br_blockcount = unmap_len - rlen;
1116 unmap_len = rlen;
1117
1118 /* If this isn't a real mapping, we're done. */
1119 if (!real_extent || uirec.br_blockcount == 0)
1120 goto next_extent;
1121
1122 trace_xfs_reflink_remap(ip, uirec.br_startoff,
1123 uirec.br_blockcount, uirec.br_startblock);
1124
1125 /* Update the refcount tree */
1126 error = xfs_refcount_increase_extent(mp, &dfops, &uirec);
1127 if (error)
1128 goto out_defer;
1129
1130 /* Map the new blocks into the data fork. */
1131 error = xfs_bmap_map_extent(mp, &dfops, ip, &uirec);
1132 if (error)
1133 goto out_defer;
1134
1135 /* Update quota accounting. */
1136 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT,
1137 uirec.br_blockcount);
1138
1139 /* Update dest isize if needed. */
1140 newlen = XFS_FSB_TO_B(mp,
1141 uirec.br_startoff + uirec.br_blockcount);
1142 newlen = min_t(xfs_off_t, newlen, new_isize);
1143 if (newlen > i_size_read(VFS_I(ip))) {
1144 trace_xfs_reflink_update_inode_size(ip, newlen);
1145 i_size_write(VFS_I(ip), newlen);
1146 ip->i_d.di_size = newlen;
1147 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1148 }
1149
1150next_extent:
1151 /* Process all the deferred stuff. */
1152 error = xfs_defer_finish(&tp, &dfops, ip);
1153 if (error)
1154 goto out_defer;
1155 }
1156
1157 error = xfs_trans_commit(tp);
1158 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1159 if (error)
1160 goto out;
1161 return 0;
1162
1163out_defer:
1164 xfs_defer_cancel(&dfops);
1165out_cancel:
1166 xfs_trans_cancel(tp);
1167 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1168out:
1169 trace_xfs_reflink_remap_extent_error(ip, error, _RET_IP_);
1170 return error;
1171}
1172
1173/*
1174 * Iteratively remap one file's extents (and holes) to another's.
1175 */
1176STATIC int
1177xfs_reflink_remap_blocks(
1178 struct xfs_inode *src,
1179 xfs_fileoff_t srcoff,
1180 struct xfs_inode *dest,
1181 xfs_fileoff_t destoff,
1182 xfs_filblks_t len,
1183 xfs_off_t new_isize)
1184{
1185 struct xfs_bmbt_irec imap;
1186 int nimaps;
1187 int error = 0;
1188 xfs_filblks_t range_len;
1189
1190 /* drange = (destoff, destoff + len); srange = (srcoff, srcoff + len) */
1191 while (len) {
1192 trace_xfs_reflink_remap_blocks_loop(src, srcoff, len,
1193 dest, destoff);
1194 /* Read extent from the source file */
1195 nimaps = 1;
1196 xfs_ilock(src, XFS_ILOCK_EXCL);
1197 error = xfs_bmapi_read(src, srcoff, len, &imap, &nimaps, 0);
1198 xfs_iunlock(src, XFS_ILOCK_EXCL);
1199 if (error)
1200 goto err;
1201 ASSERT(nimaps == 1);
1202
1203 trace_xfs_reflink_remap_imap(src, srcoff, len, XFS_IO_OVERWRITE,
1204 &imap);
1205
1206 /* Translate imap into the destination file. */
1207 range_len = imap.br_startoff + imap.br_blockcount - srcoff;
1208 imap.br_startoff += destoff - srcoff;
1209
1210 /* Clear dest from destoff to the end of imap and map it in. */
1211 error = xfs_reflink_remap_extent(dest, &imap, destoff,
1212 new_isize);
1213 if (error)
1214 goto err;
1215
1216 if (fatal_signal_pending(current)) {
1217 error = -EINTR;
1218 goto err;
1219 }
1220
1221 /* Advance drange/srange */
1222 srcoff += range_len;
1223 destoff += range_len;
1224 len -= range_len;
1225 }
1226
1227 return 0;
1228
1229err:
1230 trace_xfs_reflink_remap_blocks_error(dest, error, _RET_IP_);
1231 return error;
1232}
1233
1234/*
1235 * Link a range of blocks from one file to another.
1236 */
1237int
1238xfs_reflink_remap_range(
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001239 struct file *file_in,
1240 loff_t pos_in,
1241 struct file *file_out,
1242 loff_t pos_out,
1243 u64 len,
1244 bool is_dedupe)
Darrick J. Wong862bb362016-10-03 09:11:40 -07001245{
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001246 struct inode *inode_in = file_inode(file_in);
1247 struct xfs_inode *src = XFS_I(inode_in);
1248 struct inode *inode_out = file_inode(file_out);
1249 struct xfs_inode *dest = XFS_I(inode_out);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001250 struct xfs_mount *mp = src->i_mount;
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001251 bool same_inode = (inode_in == inode_out);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001252 xfs_fileoff_t sfsbno, dfsbno;
1253 xfs_filblks_t fsblen;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001254 xfs_extlen_t cowextsize;
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001255 ssize_t ret;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001256
1257 if (!xfs_sb_version_hasreflink(&mp->m_sb))
1258 return -EOPNOTSUPP;
1259
1260 if (XFS_FORCED_SHUTDOWN(mp))
1261 return -EIO;
1262
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001263 /* Lock both files against IO */
Christoph Hellwig65523212016-11-30 14:33:25 +11001264 lock_two_nondirectories(inode_in, inode_out);
1265 if (same_inode)
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001266 xfs_ilock(src, XFS_MMAPLOCK_EXCL);
Christoph Hellwig65523212016-11-30 14:33:25 +11001267 else
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001268 xfs_lock_two_inodes(src, dest, XFS_MMAPLOCK_EXCL);
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001269
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001270 /* Check file eligibility and prepare for block sharing. */
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001271 ret = -EINVAL;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001272 /* Don't reflink realtime inodes */
1273 if (XFS_IS_REALTIME_INODE(src) || XFS_IS_REALTIME_INODE(dest))
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001274 goto out_unlock;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001275
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001276 /* Don't share DAX file data for now. */
1277 if (IS_DAX(inode_in) || IS_DAX(inode_out))
1278 goto out_unlock;
Darrick J. Wongcc714662016-10-03 09:11:41 -07001279
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001280 ret = vfs_clone_file_prep_inodes(inode_in, pos_in, inode_out, pos_out,
1281 &len, is_dedupe);
Darrick J. Wong22725ce2016-12-19 15:13:26 -08001282 if (ret <= 0)
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001283 goto out_unlock;
1284
1285 trace_xfs_reflink_remap_range(src, pos_in, len, dest, pos_out);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001286
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001287 /* Set flags and remap blocks. */
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001288 ret = xfs_reflink_set_inode_flag(src, dest);
1289 if (ret)
1290 goto out_unlock;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001291
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001292 dfsbno = XFS_B_TO_FSBT(mp, pos_out);
1293 sfsbno = XFS_B_TO_FSBT(mp, pos_in);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001294 fsblen = XFS_B_TO_FSB(mp, len);
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001295 ret = xfs_reflink_remap_blocks(src, sfsbno, dest, dfsbno, fsblen,
1296 pos_out + len);
1297 if (ret)
1298 goto out_unlock;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001299
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001300 /* Zap any page cache for the destination file's range. */
1301 truncate_inode_pages_range(&inode_out->i_data, pos_out,
1302 PAGE_ALIGN(pos_out + len) - 1);
1303
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001304 /*
1305 * Carry the cowextsize hint from src to dest if we're sharing the
1306 * entire source file to the entire destination file, the source file
1307 * has a cowextsize hint, and the destination file does not.
1308 */
1309 cowextsize = 0;
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001310 if (pos_in == 0 && len == i_size_read(inode_in) &&
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001311 (src->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE) &&
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001312 pos_out == 0 && len >= i_size_read(inode_out) &&
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001313 !(dest->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE))
1314 cowextsize = src->i_d.di_cowextsize;
1315
Christoph Hellwigc5ecb422017-02-06 17:45:51 -08001316 ret = xfs_reflink_update_dest(dest, pos_out + len, cowextsize,
1317 is_dedupe);
Darrick J. Wong862bb362016-10-03 09:11:40 -07001318
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001319out_unlock:
1320 xfs_iunlock(src, XFS_MMAPLOCK_EXCL);
Christoph Hellwig65523212016-11-30 14:33:25 +11001321 if (!same_inode)
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001322 xfs_iunlock(dest, XFS_MMAPLOCK_EXCL);
Christoph Hellwig65523212016-11-30 14:33:25 +11001323 unlock_two_nondirectories(inode_in, inode_out);
Christoph Hellwig5faaf4f2016-10-20 15:50:07 +11001324 if (ret)
1325 trace_xfs_reflink_remap_range_error(dest, ret, _RET_IP_);
1326 return ret;
Darrick J. Wong862bb362016-10-03 09:11:40 -07001327}
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001328
1329/*
1330 * The user wants to preemptively CoW all shared blocks in this file,
1331 * which enables us to turn off the reflink flag. Iterate all
1332 * extents which are not prealloc/delalloc to see which ranges are
1333 * mentioned in the refcount tree, then read those blocks into the
1334 * pagecache, dirty them, fsync them back out, and then we can update
1335 * the inode flag. What happens if we run out of memory? :)
1336 */
1337STATIC int
1338xfs_reflink_dirty_extents(
1339 struct xfs_inode *ip,
1340 xfs_fileoff_t fbno,
1341 xfs_filblks_t end,
1342 xfs_off_t isize)
1343{
1344 struct xfs_mount *mp = ip->i_mount;
1345 xfs_agnumber_t agno;
1346 xfs_agblock_t agbno;
1347 xfs_extlen_t aglen;
1348 xfs_agblock_t rbno;
1349 xfs_extlen_t rlen;
1350 xfs_off_t fpos;
1351 xfs_off_t flen;
1352 struct xfs_bmbt_irec map[2];
1353 int nmaps;
Darrick J. Wong9780643c2016-10-10 16:49:18 +11001354 int error = 0;
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001355
1356 while (end - fbno > 0) {
1357 nmaps = 1;
1358 /*
1359 * Look for extents in the file. Skip holes, delalloc, or
1360 * unwritten extents; they can't be reflinked.
1361 */
1362 error = xfs_bmapi_read(ip, fbno, end - fbno, map, &nmaps, 0);
1363 if (error)
1364 goto out;
1365 if (nmaps == 0)
1366 break;
Christoph Hellwig9c4f29d2017-03-28 14:53:35 -07001367 if (!xfs_bmap_is_real_extent(&map[0]))
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001368 goto next;
1369
1370 map[1] = map[0];
1371 while (map[1].br_blockcount) {
1372 agno = XFS_FSB_TO_AGNO(mp, map[1].br_startblock);
1373 agbno = XFS_FSB_TO_AGBNO(mp, map[1].br_startblock);
1374 aglen = map[1].br_blockcount;
1375
1376 error = xfs_reflink_find_shared(mp, agno, agbno, aglen,
1377 &rbno, &rlen, true);
1378 if (error)
1379 goto out;
1380 if (rbno == NULLAGBLOCK)
1381 break;
1382
1383 /* Dirty the pages */
1384 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1385 fpos = XFS_FSB_TO_B(mp, map[1].br_startoff +
1386 (rbno - agbno));
1387 flen = XFS_FSB_TO_B(mp, rlen);
1388 if (fpos + flen > isize)
1389 flen = isize - fpos;
1390 error = iomap_file_dirty(VFS_I(ip), fpos, flen,
1391 &xfs_iomap_ops);
1392 xfs_ilock(ip, XFS_ILOCK_EXCL);
1393 if (error)
1394 goto out;
1395
1396 map[1].br_blockcount -= (rbno - agbno + rlen);
1397 map[1].br_startoff += (rbno - agbno + rlen);
1398 map[1].br_startblock += (rbno - agbno + rlen);
1399 }
1400
1401next:
1402 fbno = map[0].br_startoff + map[0].br_blockcount;
1403 }
1404out:
1405 return error;
1406}
1407
1408/* Clear the inode reflink flag if there are no shared extents. */
1409int
1410xfs_reflink_clear_inode_flag(
1411 struct xfs_inode *ip,
1412 struct xfs_trans **tpp)
1413{
1414 struct xfs_mount *mp = ip->i_mount;
1415 xfs_fileoff_t fbno;
1416 xfs_filblks_t end;
1417 xfs_agnumber_t agno;
1418 xfs_agblock_t agbno;
1419 xfs_extlen_t aglen;
1420 xfs_agblock_t rbno;
1421 xfs_extlen_t rlen;
Darrick J. Wong024adf42016-10-10 16:47:40 +11001422 struct xfs_bmbt_irec map;
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001423 int nmaps;
1424 int error = 0;
1425
Darrick J. Wong63646fc2016-10-10 16:47:32 +11001426 ASSERT(xfs_is_reflink_inode(ip));
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001427
1428 fbno = 0;
1429 end = XFS_B_TO_FSB(mp, i_size_read(VFS_I(ip)));
1430 while (end - fbno > 0) {
1431 nmaps = 1;
1432 /*
1433 * Look for extents in the file. Skip holes, delalloc, or
1434 * unwritten extents; they can't be reflinked.
1435 */
Darrick J. Wong024adf42016-10-10 16:47:40 +11001436 error = xfs_bmapi_read(ip, fbno, end - fbno, &map, &nmaps, 0);
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001437 if (error)
1438 return error;
1439 if (nmaps == 0)
1440 break;
Christoph Hellwig9c4f29d2017-03-28 14:53:35 -07001441 if (!xfs_bmap_is_real_extent(&map))
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001442 goto next;
1443
Darrick J. Wong024adf42016-10-10 16:47:40 +11001444 agno = XFS_FSB_TO_AGNO(mp, map.br_startblock);
1445 agbno = XFS_FSB_TO_AGBNO(mp, map.br_startblock);
1446 aglen = map.br_blockcount;
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001447
Darrick J. Wong024adf42016-10-10 16:47:40 +11001448 error = xfs_reflink_find_shared(mp, agno, agbno, aglen,
1449 &rbno, &rlen, false);
1450 if (error)
1451 return error;
1452 /* Is there still a shared block here? */
1453 if (rbno != NULLAGBLOCK)
1454 return 0;
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001455next:
Darrick J. Wong024adf42016-10-10 16:47:40 +11001456 fbno = map.br_startoff + map.br_blockcount;
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001457 }
1458
1459 /*
1460 * We didn't find any shared blocks so turn off the reflink flag.
1461 * First, get rid of any leftover CoW mappings.
1462 */
Christoph Hellwig3802a342017-03-07 16:45:58 -08001463 error = xfs_reflink_cancel_cow_blocks(ip, tpp, 0, NULLFILEOFF, true);
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001464 if (error)
1465 return error;
1466
1467 /* Clear the inode flag. */
1468 trace_xfs_reflink_unset_inode_flag(ip);
1469 ip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
Darrick J. Wong83104d42016-10-03 09:11:46 -07001470 xfs_inode_clear_cowblocks_tag(ip);
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001471 xfs_trans_ijoin(*tpp, ip, 0);
1472 xfs_trans_log_inode(*tpp, ip, XFS_ILOG_CORE);
1473
1474 return error;
1475}
1476
1477/*
1478 * Clear the inode reflink flag if there are no shared extents and the size
1479 * hasn't changed.
1480 */
1481STATIC int
1482xfs_reflink_try_clear_inode_flag(
Darrick J. Wong97a1b872016-10-10 16:49:01 +11001483 struct xfs_inode *ip)
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001484{
1485 struct xfs_mount *mp = ip->i_mount;
1486 struct xfs_trans *tp;
1487 int error = 0;
1488
1489 /* Start a rolling transaction to remove the mappings */
1490 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, 0, 0, 0, &tp);
1491 if (error)
1492 return error;
1493
1494 xfs_ilock(ip, XFS_ILOCK_EXCL);
1495 xfs_trans_ijoin(tp, ip, 0);
1496
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001497 error = xfs_reflink_clear_inode_flag(ip, &tp);
1498 if (error)
1499 goto cancel;
1500
1501 error = xfs_trans_commit(tp);
1502 if (error)
1503 goto out;
1504
1505 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1506 return 0;
1507cancel:
1508 xfs_trans_cancel(tp);
1509out:
1510 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1511 return error;
1512}
1513
1514/*
1515 * Pre-COW all shared blocks within a given byte range of a file and turn off
1516 * the reflink flag if we unshare all of the file's blocks.
1517 */
1518int
1519xfs_reflink_unshare(
1520 struct xfs_inode *ip,
1521 xfs_off_t offset,
1522 xfs_off_t len)
1523{
1524 struct xfs_mount *mp = ip->i_mount;
1525 xfs_fileoff_t fbno;
1526 xfs_filblks_t end;
1527 xfs_off_t isize;
1528 int error;
1529
1530 if (!xfs_is_reflink_inode(ip))
1531 return 0;
1532
1533 trace_xfs_reflink_unshare(ip, offset, len);
1534
1535 inode_dio_wait(VFS_I(ip));
1536
1537 /* Try to CoW the selected ranges */
1538 xfs_ilock(ip, XFS_ILOCK_EXCL);
Darrick J. Wong97a1b872016-10-10 16:49:01 +11001539 fbno = XFS_B_TO_FSBT(mp, offset);
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001540 isize = i_size_read(VFS_I(ip));
1541 end = XFS_B_TO_FSB(mp, offset + len);
1542 error = xfs_reflink_dirty_extents(ip, fbno, end, isize);
1543 if (error)
1544 goto out_unlock;
1545 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1546
1547 /* Wait for the IO to finish */
1548 error = filemap_write_and_wait(VFS_I(ip)->i_mapping);
1549 if (error)
1550 goto out;
1551
Darrick J. Wong97a1b872016-10-10 16:49:01 +11001552 /* Turn off the reflink flag if possible. */
1553 error = xfs_reflink_try_clear_inode_flag(ip);
1554 if (error)
1555 goto out;
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001556
1557 return 0;
1558
1559out_unlock:
1560 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1561out:
1562 trace_xfs_reflink_unshare_error(ip, error, _RET_IP_);
1563 return error;
1564}