blob: e2f46e645612d8d3a1d2e132b98d89b24d15ad6b [file] [log] [blame]
Dave Chinner68988112013-08-12 20:49:42 +10001/*
2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Dave Chinnerc24b5df2013-08-12 20:49:45 +10003 * Copyright (c) 2012 Red Hat, Inc.
Dave Chinner68988112013-08-12 20:49:42 +10004 * All Rights Reserved.
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 as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it would be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19#include "xfs.h"
20#include "xfs_fs.h"
Dave Chinner70a9883c2013-10-23 10:36:05 +110021#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_format.h"
23#include "xfs_log_format.h"
24#include "xfs_trans_resv.h"
Dave Chinner68988112013-08-12 20:49:42 +100025#include "xfs_bit.h"
Dave Chinner68988112013-08-12 20:49:42 +100026#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110027#include "xfs_da_format.h"
Darrick J. Wong3ab78df2016-08-03 11:15:38 +100028#include "xfs_defer.h"
Dave Chinner68988112013-08-12 20:49:42 +100029#include "xfs_inode.h"
30#include "xfs_btree.h"
Dave Chinner239880e2013-10-23 10:50:10 +110031#include "xfs_trans.h"
Dave Chinner68988112013-08-12 20:49:42 +100032#include "xfs_extfree_item.h"
33#include "xfs_alloc.h"
34#include "xfs_bmap.h"
35#include "xfs_bmap_util.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110036#include "xfs_bmap_btree.h"
Dave Chinner68988112013-08-12 20:49:42 +100037#include "xfs_rtalloc.h"
38#include "xfs_error.h"
39#include "xfs_quota.h"
40#include "xfs_trans_space.h"
41#include "xfs_trace.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100042#include "xfs_icache.h"
Dave Chinner239880e2013-10-23 10:50:10 +110043#include "xfs_log.h"
Darrick J. Wong9c194642016-08-03 12:16:05 +100044#include "xfs_rmap_btree.h"
Darrick J. Wongf86f4032016-10-03 09:11:41 -070045#include "xfs_iomap.h"
46#include "xfs_reflink.h"
47#include "xfs_refcount.h"
Dave Chinner68988112013-08-12 20:49:42 +100048
49/* Kernel only BMAP related definitions and functions */
50
51/*
52 * Convert the given file system block to a disk block. We have to treat it
53 * differently based on whether the file is a real time file or not, because the
54 * bmap code does.
55 */
56xfs_daddr_t
57xfs_fsb_to_db(struct xfs_inode *ip, xfs_fsblock_t fsb)
58{
59 return (XFS_IS_REALTIME_INODE(ip) ? \
60 (xfs_daddr_t)XFS_FSB_TO_BB((ip)->i_mount, (fsb)) : \
61 XFS_FSB_TO_DADDR((ip)->i_mount, (fsb)));
62}
63
64/*
Dave Chinner3fbbbea2015-11-03 12:27:22 +110065 * Routine to zero an extent on disk allocated to the specific inode.
66 *
67 * The VFS functions take a linearised filesystem block offset, so we have to
68 * convert the sparse xfs fsb to the right format first.
69 * VFS types are real funky, too.
70 */
71int
72xfs_zero_extent(
73 struct xfs_inode *ip,
74 xfs_fsblock_t start_fsb,
75 xfs_off_t count_fsb)
76{
77 struct xfs_mount *mp = ip->i_mount;
78 xfs_daddr_t sector = xfs_fsb_to_db(ip, start_fsb);
79 sector_t block = XFS_BB_TO_FSBT(mp, sector);
Dave Chinner3fbbbea2015-11-03 12:27:22 +110080
Matthew Wilcox3dc29162016-03-15 11:20:41 -060081 return blkdev_issue_zeroout(xfs_find_bdev_for_inode(VFS_I(ip)),
82 block << (mp->m_super->s_blocksize_bits - 9),
83 count_fsb << (mp->m_super->s_blocksize_bits - 9),
84 GFP_NOFS, true);
Dave Chinner3fbbbea2015-11-03 12:27:22 +110085}
86
Dave Chinner68988112013-08-12 20:49:42 +100087int
88xfs_bmap_rtalloc(
89 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
90{
91 xfs_alloctype_t atype = 0; /* type for allocation routines */
92 int error; /* error return value */
93 xfs_mount_t *mp; /* mount point structure */
94 xfs_extlen_t prod = 0; /* product factor for allocators */
95 xfs_extlen_t ralen = 0; /* realtime allocation length */
96 xfs_extlen_t align; /* minimum allocation alignment */
97 xfs_rtblock_t rtb;
98
99 mp = ap->ip->i_mount;
100 align = xfs_get_extsz_hint(ap->ip);
101 prod = align / mp->m_sb.sb_rextsize;
102 error = xfs_bmap_extsize_align(mp, &ap->got, &ap->prev,
103 align, 1, ap->eof, 0,
104 ap->conv, &ap->offset, &ap->length);
105 if (error)
106 return error;
107 ASSERT(ap->length);
108 ASSERT(ap->length % mp->m_sb.sb_rextsize == 0);
109
110 /*
111 * If the offset & length are not perfectly aligned
112 * then kill prod, it will just get us in trouble.
113 */
114 if (do_mod(ap->offset, align) || ap->length % align)
115 prod = 1;
116 /*
117 * Set ralen to be the actual requested length in rtextents.
118 */
119 ralen = ap->length / mp->m_sb.sb_rextsize;
120 /*
121 * If the old value was close enough to MAXEXTLEN that
122 * we rounded up to it, cut it back so it's valid again.
123 * Note that if it's a really large request (bigger than
124 * MAXEXTLEN), we don't hear about that number, and can't
125 * adjust the starting point to match it.
126 */
127 if (ralen * mp->m_sb.sb_rextsize >= MAXEXTLEN)
128 ralen = MAXEXTLEN / mp->m_sb.sb_rextsize;
129
130 /*
Dave Chinner4b680af2016-02-08 10:46:51 +1100131 * Lock out modifications to both the RT bitmap and summary inodes
Dave Chinner68988112013-08-12 20:49:42 +1000132 */
Darrick J. Wongf4a06602016-08-03 11:00:42 +1000133 xfs_ilock(mp->m_rbmip, XFS_ILOCK_EXCL|XFS_ILOCK_RTBITMAP);
Dave Chinner68988112013-08-12 20:49:42 +1000134 xfs_trans_ijoin(ap->tp, mp->m_rbmip, XFS_ILOCK_EXCL);
Darrick J. Wongf4a06602016-08-03 11:00:42 +1000135 xfs_ilock(mp->m_rsumip, XFS_ILOCK_EXCL|XFS_ILOCK_RTSUM);
Dave Chinner4b680af2016-02-08 10:46:51 +1100136 xfs_trans_ijoin(ap->tp, mp->m_rsumip, XFS_ILOCK_EXCL);
Dave Chinner68988112013-08-12 20:49:42 +1000137
138 /*
139 * If it's an allocation to an empty file at offset 0,
140 * pick an extent that will space things out in the rt area.
141 */
142 if (ap->eof && ap->offset == 0) {
143 xfs_rtblock_t uninitialized_var(rtx); /* realtime extent no */
144
145 error = xfs_rtpick_extent(mp, ap->tp, ralen, &rtx);
146 if (error)
147 return error;
148 ap->blkno = rtx * mp->m_sb.sb_rextsize;
149 } else {
150 ap->blkno = 0;
151 }
152
153 xfs_bmap_adjacent(ap);
154
155 /*
156 * Realtime allocation, done through xfs_rtallocate_extent.
157 */
158 atype = ap->blkno == 0 ? XFS_ALLOCTYPE_ANY_AG : XFS_ALLOCTYPE_NEAR_BNO;
159 do_div(ap->blkno, mp->m_sb.sb_rextsize);
160 rtb = ap->blkno;
161 ap->length = ralen;
162 if ((error = xfs_rtallocate_extent(ap->tp, ap->blkno, 1, ap->length,
163 &ralen, atype, ap->wasdel, prod, &rtb)))
164 return error;
165 if (rtb == NULLFSBLOCK && prod > 1 &&
166 (error = xfs_rtallocate_extent(ap->tp, ap->blkno, 1,
167 ap->length, &ralen, atype,
168 ap->wasdel, 1, &rtb)))
169 return error;
170 ap->blkno = rtb;
171 if (ap->blkno != NULLFSBLOCK) {
172 ap->blkno *= mp->m_sb.sb_rextsize;
173 ralen *= mp->m_sb.sb_rextsize;
174 ap->length = ralen;
175 ap->ip->i_d.di_nblocks += ralen;
176 xfs_trans_log_inode(ap->tp, ap->ip, XFS_ILOG_CORE);
177 if (ap->wasdel)
178 ap->ip->i_delayed_blks -= ralen;
179 /*
180 * Adjust the disk quota also. This was reserved
181 * earlier.
182 */
183 xfs_trans_mod_dquot_byino(ap->tp, ap->ip,
184 ap->wasdel ? XFS_TRANS_DQ_DELRTBCOUNT :
185 XFS_TRANS_DQ_RTBCOUNT, (long) ralen);
Dave Chinner3fbbbea2015-11-03 12:27:22 +1100186
187 /* Zero the extent if we were asked to do so */
Dave Chinner292378e2016-09-26 08:21:28 +1000188 if (ap->datatype & XFS_ALLOC_USERDATA_ZERO) {
Dave Chinner3fbbbea2015-11-03 12:27:22 +1100189 error = xfs_zero_extent(ap->ip, ap->blkno, ap->length);
190 if (error)
191 return error;
192 }
Dave Chinner68988112013-08-12 20:49:42 +1000193 } else {
194 ap->length = 0;
195 }
196 return 0;
197}
198
199/*
Dave Chinner68988112013-08-12 20:49:42 +1000200 * Check if the endoff is outside the last extent. If so the caller will grow
201 * the allocation to a stripe unit boundary. All offsets are considered outside
202 * the end of file for an empty fork, so 1 is returned in *eof in that case.
203 */
204int
205xfs_bmap_eof(
206 struct xfs_inode *ip,
207 xfs_fileoff_t endoff,
208 int whichfork,
209 int *eof)
210{
211 struct xfs_bmbt_irec rec;
212 int error;
213
214 error = xfs_bmap_last_extent(NULL, ip, whichfork, &rec, eof);
215 if (error || *eof)
216 return error;
217
218 *eof = endoff >= rec.br_startoff + rec.br_blockcount;
219 return 0;
220}
221
222/*
223 * Extent tree block counting routines.
224 */
225
226/*
227 * Count leaf blocks given a range of extent records.
228 */
229STATIC void
230xfs_bmap_count_leaves(
231 xfs_ifork_t *ifp,
232 xfs_extnum_t idx,
233 int numrecs,
234 int *count)
235{
236 int b;
237
238 for (b = 0; b < numrecs; b++) {
239 xfs_bmbt_rec_host_t *frp = xfs_iext_get_ext(ifp, idx + b);
240 *count += xfs_bmbt_get_blockcount(frp);
241 }
242}
243
244/*
245 * Count leaf blocks given a range of extent records originally
246 * in btree format.
247 */
248STATIC void
249xfs_bmap_disk_count_leaves(
250 struct xfs_mount *mp,
251 struct xfs_btree_block *block,
252 int numrecs,
253 int *count)
254{
255 int b;
256 xfs_bmbt_rec_t *frp;
257
258 for (b = 1; b <= numrecs; b++) {
259 frp = XFS_BMBT_REC_ADDR(mp, block, b);
260 *count += xfs_bmbt_disk_get_blockcount(frp);
261 }
262}
263
264/*
265 * Recursively walks each level of a btree
Zhi Yong Wu8be11e92013-08-12 03:14:52 +0000266 * to count total fsblocks in use.
Dave Chinner68988112013-08-12 20:49:42 +1000267 */
268STATIC int /* error */
269xfs_bmap_count_tree(
270 xfs_mount_t *mp, /* file system mount point */
271 xfs_trans_t *tp, /* transaction pointer */
272 xfs_ifork_t *ifp, /* inode fork pointer */
273 xfs_fsblock_t blockno, /* file system block number */
274 int levelin, /* level in btree */
275 int *count) /* Count of blocks */
276{
277 int error;
278 xfs_buf_t *bp, *nbp;
279 int level = levelin;
280 __be64 *pp;
281 xfs_fsblock_t bno = blockno;
282 xfs_fsblock_t nextbno;
283 struct xfs_btree_block *block, *nextblock;
284 int numrecs;
285
286 error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp, XFS_BMAP_BTREE_REF,
287 &xfs_bmbt_buf_ops);
288 if (error)
289 return error;
290 *count += 1;
291 block = XFS_BUF_TO_BLOCK(bp);
292
293 if (--level) {
294 /* Not at node above leaves, count this level of nodes */
295 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
296 while (nextbno != NULLFSBLOCK) {
297 error = xfs_btree_read_bufl(mp, tp, nextbno, 0, &nbp,
298 XFS_BMAP_BTREE_REF,
299 &xfs_bmbt_buf_ops);
300 if (error)
301 return error;
302 *count += 1;
303 nextblock = XFS_BUF_TO_BLOCK(nbp);
304 nextbno = be64_to_cpu(nextblock->bb_u.l.bb_rightsib);
305 xfs_trans_brelse(tp, nbp);
306 }
307
308 /* Dive to the next level */
309 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]);
310 bno = be64_to_cpu(*pp);
311 if (unlikely((error =
312 xfs_bmap_count_tree(mp, tp, ifp, bno, level, count)) < 0)) {
313 xfs_trans_brelse(tp, bp);
314 XFS_ERROR_REPORT("xfs_bmap_count_tree(1)",
315 XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +1000316 return -EFSCORRUPTED;
Dave Chinner68988112013-08-12 20:49:42 +1000317 }
318 xfs_trans_brelse(tp, bp);
319 } else {
320 /* count all level 1 nodes and their leaves */
321 for (;;) {
322 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
323 numrecs = be16_to_cpu(block->bb_numrecs);
324 xfs_bmap_disk_count_leaves(mp, block, numrecs, count);
325 xfs_trans_brelse(tp, bp);
326 if (nextbno == NULLFSBLOCK)
327 break;
328 bno = nextbno;
329 error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
330 XFS_BMAP_BTREE_REF,
331 &xfs_bmbt_buf_ops);
332 if (error)
333 return error;
334 *count += 1;
335 block = XFS_BUF_TO_BLOCK(bp);
336 }
337 }
338 return 0;
339}
340
341/*
342 * Count fsblocks of the given fork.
343 */
Eric Sandeen0d5a75e2016-06-01 17:38:15 +1000344static int /* error */
Dave Chinner68988112013-08-12 20:49:42 +1000345xfs_bmap_count_blocks(
346 xfs_trans_t *tp, /* transaction pointer */
347 xfs_inode_t *ip, /* incore inode */
348 int whichfork, /* data or attr fork */
349 int *count) /* out: count of blocks */
350{
351 struct xfs_btree_block *block; /* current btree block */
352 xfs_fsblock_t bno; /* block # of "block" */
353 xfs_ifork_t *ifp; /* fork structure */
354 int level; /* btree level, for checking */
355 xfs_mount_t *mp; /* file system mount structure */
356 __be64 *pp; /* pointer to block address */
357
358 bno = NULLFSBLOCK;
359 mp = ip->i_mount;
360 ifp = XFS_IFORK_PTR(ip, whichfork);
361 if ( XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS ) {
362 xfs_bmap_count_leaves(ifp, 0,
363 ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t),
364 count);
365 return 0;
366 }
367
368 /*
369 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
370 */
371 block = ifp->if_broot;
372 level = be16_to_cpu(block->bb_level);
373 ASSERT(level > 0);
374 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
375 bno = be64_to_cpu(*pp);
Christoph Hellwigd5cf09b2014-07-30 09:12:05 +1000376 ASSERT(bno != NULLFSBLOCK);
Dave Chinner68988112013-08-12 20:49:42 +1000377 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
378 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
379
380 if (unlikely(xfs_bmap_count_tree(mp, tp, ifp, bno, level, count) < 0)) {
381 XFS_ERROR_REPORT("xfs_bmap_count_blocks(2)", XFS_ERRLEVEL_LOW,
382 mp);
Dave Chinner24513372014-06-25 14:58:08 +1000383 return -EFSCORRUPTED;
Dave Chinner68988112013-08-12 20:49:42 +1000384 }
385
386 return 0;
387}
388
389/*
390 * returns 1 for success, 0 if we failed to map the extent.
391 */
392STATIC int
393xfs_getbmapx_fix_eof_hole(
394 xfs_inode_t *ip, /* xfs incore inode pointer */
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700395 int whichfork,
Dave Chinner68988112013-08-12 20:49:42 +1000396 struct getbmapx *out, /* output structure */
397 int prealloced, /* this is a file with
398 * preallocated data space */
399 __int64_t end, /* last block requested */
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700400 xfs_fsblock_t startblock,
401 bool moretocome)
Dave Chinner68988112013-08-12 20:49:42 +1000402{
403 __int64_t fixlen;
404 xfs_mount_t *mp; /* file system mount point */
405 xfs_ifork_t *ifp; /* inode fork pointer */
406 xfs_extnum_t lastx; /* last extent pointer */
407 xfs_fileoff_t fileblock;
408
409 if (startblock == HOLESTARTBLOCK) {
410 mp = ip->i_mount;
411 out->bmv_block = -1;
412 fixlen = XFS_FSB_TO_BB(mp, XFS_B_TO_FSB(mp, XFS_ISIZE(ip)));
413 fixlen -= out->bmv_offset;
414 if (prealloced && out->bmv_offset + out->bmv_length == end) {
415 /* Came to hole at EOF. Trim it. */
416 if (fixlen <= 0)
417 return 0;
418 out->bmv_length = fixlen;
419 }
420 } else {
421 if (startblock == DELAYSTARTBLOCK)
422 out->bmv_block = -2;
423 else
424 out->bmv_block = xfs_fsb_to_db(ip, startblock);
425 fileblock = XFS_BB_TO_FSB(ip->i_mount, out->bmv_offset);
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700426 ifp = XFS_IFORK_PTR(ip, whichfork);
427 if (!moretocome &&
428 xfs_iext_bno_to_ext(ifp, fileblock, &lastx) &&
Dave Chinner68988112013-08-12 20:49:42 +1000429 (lastx == (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t))-1))
430 out->bmv_oflags |= BMV_OF_LAST;
431 }
432
433 return 1;
434}
435
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700436/* Adjust the reported bmap around shared/unshared extent transitions. */
437STATIC int
438xfs_getbmap_adjust_shared(
439 struct xfs_inode *ip,
440 int whichfork,
441 struct xfs_bmbt_irec *map,
442 struct getbmapx *out,
443 struct xfs_bmbt_irec *next_map)
444{
445 struct xfs_mount *mp = ip->i_mount;
446 xfs_agnumber_t agno;
447 xfs_agblock_t agbno;
448 xfs_agblock_t ebno;
449 xfs_extlen_t elen;
450 xfs_extlen_t nlen;
451 int error;
452
453 next_map->br_startblock = NULLFSBLOCK;
454 next_map->br_startoff = NULLFILEOFF;
455 next_map->br_blockcount = 0;
456
457 /* Only written data blocks can be shared. */
458 if (!xfs_is_reflink_inode(ip) || whichfork != XFS_DATA_FORK ||
459 map->br_startblock == DELAYSTARTBLOCK ||
460 map->br_startblock == HOLESTARTBLOCK ||
461 ISUNWRITTEN(map))
462 return 0;
463
464 agno = XFS_FSB_TO_AGNO(mp, map->br_startblock);
465 agbno = XFS_FSB_TO_AGBNO(mp, map->br_startblock);
466 error = xfs_reflink_find_shared(mp, agno, agbno, map->br_blockcount,
467 &ebno, &elen, true);
468 if (error)
469 return error;
470
471 if (ebno == NULLAGBLOCK) {
472 /* No shared blocks at all. */
473 return 0;
474 } else if (agbno == ebno) {
475 /*
476 * Shared extent at (agbno, elen). Shrink the reported
477 * extent length and prepare to move the start of map[i]
478 * to agbno+elen, with the aim of (re)formatting the new
479 * map[i] the next time through the inner loop.
480 */
481 out->bmv_length = XFS_FSB_TO_BB(mp, elen);
482 out->bmv_oflags |= BMV_OF_SHARED;
483 if (elen != map->br_blockcount) {
484 *next_map = *map;
485 next_map->br_startblock += elen;
486 next_map->br_startoff += elen;
487 next_map->br_blockcount -= elen;
488 }
489 map->br_blockcount -= elen;
490 } else {
491 /*
492 * There's an unshared extent (agbno, ebno - agbno)
493 * followed by shared extent at (ebno, elen). Shrink
494 * the reported extent length to cover only the unshared
495 * extent and prepare to move up the start of map[i] to
496 * ebno, with the aim of (re)formatting the new map[i]
497 * the next time through the inner loop.
498 */
499 *next_map = *map;
500 nlen = ebno - agbno;
501 out->bmv_length = XFS_FSB_TO_BB(mp, nlen);
502 next_map->br_startblock += nlen;
503 next_map->br_startoff += nlen;
504 next_map->br_blockcount -= nlen;
505 map->br_blockcount -= nlen;
506 }
507
508 return 0;
509}
510
Dave Chinner68988112013-08-12 20:49:42 +1000511/*
512 * Get inode's extents as described in bmv, and format for output.
513 * Calls formatter to fill the user's buffer until all extents
514 * are mapped, until the passed-in bmv->bmv_count slots have
515 * been filled, or until the formatter short-circuits the loop,
516 * if it is tracking filled-in extents on its own.
517 */
518int /* error code */
519xfs_getbmap(
520 xfs_inode_t *ip,
521 struct getbmapx *bmv, /* user bmap structure */
522 xfs_bmap_format_t formatter, /* format to user */
523 void *arg) /* formatter arg */
524{
525 __int64_t bmvend; /* last block requested */
526 int error = 0; /* return value */
527 __int64_t fixlen; /* length for -1 case */
528 int i; /* extent number */
529 int lock; /* lock state */
530 xfs_bmbt_irec_t *map; /* buffer for user's data */
531 xfs_mount_t *mp; /* file system mount point */
532 int nex; /* # of user extents can do */
533 int nexleft; /* # of user extents left */
534 int subnex; /* # of bmapi's can do */
535 int nmap; /* number of map entries */
536 struct getbmapx *out; /* output structure */
537 int whichfork; /* data or attr fork */
538 int prealloced; /* this is a file with
539 * preallocated data space */
540 int iflags; /* interface flags */
541 int bmapi_flags; /* flags for xfs_bmapi */
542 int cur_ext = 0;
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700543 struct xfs_bmbt_irec inject_map;
Dave Chinner68988112013-08-12 20:49:42 +1000544
545 mp = ip->i_mount;
546 iflags = bmv->bmv_iflags;
Dave Chinner68988112013-08-12 20:49:42 +1000547
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700548#ifndef DEBUG
549 /* Only allow CoW fork queries if we're debugging. */
550 if (iflags & BMV_IF_COWFORK)
551 return -EINVAL;
552#endif
553 if ((iflags & BMV_IF_ATTRFORK) && (iflags & BMV_IF_COWFORK))
554 return -EINVAL;
555
556 if (iflags & BMV_IF_ATTRFORK)
557 whichfork = XFS_ATTR_FORK;
558 else if (iflags & BMV_IF_COWFORK)
559 whichfork = XFS_COW_FORK;
560 else
561 whichfork = XFS_DATA_FORK;
562
563 switch (whichfork) {
564 case XFS_ATTR_FORK:
Dave Chinner68988112013-08-12 20:49:42 +1000565 if (XFS_IFORK_Q(ip)) {
566 if (ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS &&
567 ip->i_d.di_aformat != XFS_DINODE_FMT_BTREE &&
568 ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)
Dave Chinner24513372014-06-25 14:58:08 +1000569 return -EINVAL;
Dave Chinner68988112013-08-12 20:49:42 +1000570 } else if (unlikely(
571 ip->i_d.di_aformat != 0 &&
572 ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS)) {
573 XFS_ERROR_REPORT("xfs_getbmap", XFS_ERRLEVEL_LOW,
574 ip->i_mount);
Dave Chinner24513372014-06-25 14:58:08 +1000575 return -EFSCORRUPTED;
Dave Chinner68988112013-08-12 20:49:42 +1000576 }
577
578 prealloced = 0;
579 fixlen = 1LL << 32;
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700580 break;
581 case XFS_COW_FORK:
582 if (ip->i_cformat != XFS_DINODE_FMT_EXTENTS)
583 return -EINVAL;
584
585 prealloced = 0;
586 fixlen = XFS_ISIZE(ip);
587 break;
588 default:
Dave Chinner68988112013-08-12 20:49:42 +1000589 if (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS &&
590 ip->i_d.di_format != XFS_DINODE_FMT_BTREE &&
591 ip->i_d.di_format != XFS_DINODE_FMT_LOCAL)
Dave Chinner24513372014-06-25 14:58:08 +1000592 return -EINVAL;
Dave Chinner68988112013-08-12 20:49:42 +1000593
594 if (xfs_get_extsz_hint(ip) ||
595 ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC|XFS_DIFLAG_APPEND)){
596 prealloced = 1;
597 fixlen = mp->m_super->s_maxbytes;
598 } else {
599 prealloced = 0;
600 fixlen = XFS_ISIZE(ip);
601 }
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700602 break;
Dave Chinner68988112013-08-12 20:49:42 +1000603 }
604
605 if (bmv->bmv_length == -1) {
606 fixlen = XFS_FSB_TO_BB(mp, XFS_B_TO_FSB(mp, fixlen));
607 bmv->bmv_length =
608 max_t(__int64_t, fixlen - bmv->bmv_offset, 0);
609 } else if (bmv->bmv_length == 0) {
610 bmv->bmv_entries = 0;
611 return 0;
612 } else if (bmv->bmv_length < 0) {
Dave Chinner24513372014-06-25 14:58:08 +1000613 return -EINVAL;
Dave Chinner68988112013-08-12 20:49:42 +1000614 }
615
616 nex = bmv->bmv_count - 1;
617 if (nex <= 0)
Dave Chinner24513372014-06-25 14:58:08 +1000618 return -EINVAL;
Dave Chinner68988112013-08-12 20:49:42 +1000619 bmvend = bmv->bmv_offset + bmv->bmv_length;
620
621
622 if (bmv->bmv_count > ULONG_MAX / sizeof(struct getbmapx))
Dave Chinner24513372014-06-25 14:58:08 +1000623 return -ENOMEM;
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000624 out = kmem_zalloc_large(bmv->bmv_count * sizeof(struct getbmapx), 0);
625 if (!out)
Dave Chinner24513372014-06-25 14:58:08 +1000626 return -ENOMEM;
Dave Chinner68988112013-08-12 20:49:42 +1000627
628 xfs_ilock(ip, XFS_IOLOCK_SHARED);
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700629 switch (whichfork) {
630 case XFS_DATA_FORK:
Christoph Hellwigefa70be2013-12-18 02:14:39 -0800631 if (!(iflags & BMV_IF_DELALLOC) &&
632 (ip->i_delayed_blks || XFS_ISIZE(ip) > ip->i_d.di_size)) {
Dave Chinner24513372014-06-25 14:58:08 +1000633 error = filemap_write_and_wait(VFS_I(ip)->i_mapping);
Dave Chinner68988112013-08-12 20:49:42 +1000634 if (error)
635 goto out_unlock_iolock;
Dave Chinner68988112013-08-12 20:49:42 +1000636
Christoph Hellwigefa70be2013-12-18 02:14:39 -0800637 /*
638 * Even after flushing the inode, there can still be
639 * delalloc blocks on the inode beyond EOF due to
640 * speculative preallocation. These are not removed
641 * until the release function is called or the inode
642 * is inactivated. Hence we cannot assert here that
643 * ip->i_delayed_blks == 0.
644 */
645 }
646
647 lock = xfs_ilock_data_map_shared(ip);
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700648 break;
649 case XFS_COW_FORK:
650 lock = XFS_ILOCK_SHARED;
651 xfs_ilock(ip, lock);
652 break;
653 case XFS_ATTR_FORK:
Christoph Hellwigefa70be2013-12-18 02:14:39 -0800654 lock = xfs_ilock_attr_map_shared(ip);
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700655 break;
Christoph Hellwigefa70be2013-12-18 02:14:39 -0800656 }
Dave Chinner68988112013-08-12 20:49:42 +1000657
658 /*
659 * Don't let nex be bigger than the number of extents
660 * we can have assuming alternating holes and real extents.
661 */
662 if (nex > XFS_IFORK_NEXTENTS(ip, whichfork) * 2 + 1)
663 nex = XFS_IFORK_NEXTENTS(ip, whichfork) * 2 + 1;
664
665 bmapi_flags = xfs_bmapi_aflag(whichfork);
666 if (!(iflags & BMV_IF_PREALLOC))
667 bmapi_flags |= XFS_BMAPI_IGSTATE;
668
669 /*
670 * Allocate enough space to handle "subnex" maps at a time.
671 */
Dave Chinner24513372014-06-25 14:58:08 +1000672 error = -ENOMEM;
Dave Chinner68988112013-08-12 20:49:42 +1000673 subnex = 16;
674 map = kmem_alloc(subnex * sizeof(*map), KM_MAYFAIL | KM_NOFS);
675 if (!map)
676 goto out_unlock_ilock;
677
678 bmv->bmv_entries = 0;
679
680 if (XFS_IFORK_NEXTENTS(ip, whichfork) == 0 &&
681 (whichfork == XFS_ATTR_FORK || !(iflags & BMV_IF_DELALLOC))) {
682 error = 0;
683 goto out_free_map;
684 }
685
686 nexleft = nex;
687
688 do {
689 nmap = (nexleft > subnex) ? subnex : nexleft;
690 error = xfs_bmapi_read(ip, XFS_BB_TO_FSBT(mp, bmv->bmv_offset),
691 XFS_BB_TO_FSB(mp, bmv->bmv_length),
692 map, &nmap, bmapi_flags);
693 if (error)
694 goto out_free_map;
695 ASSERT(nmap <= subnex);
696
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700697 for (i = 0; i < nmap && nexleft && bmv->bmv_length &&
698 cur_ext < bmv->bmv_count; i++) {
Dave Chinner68988112013-08-12 20:49:42 +1000699 out[cur_ext].bmv_oflags = 0;
700 if (map[i].br_state == XFS_EXT_UNWRITTEN)
701 out[cur_ext].bmv_oflags |= BMV_OF_PREALLOC;
702 else if (map[i].br_startblock == DELAYSTARTBLOCK)
703 out[cur_ext].bmv_oflags |= BMV_OF_DELALLOC;
704 out[cur_ext].bmv_offset =
705 XFS_FSB_TO_BB(mp, map[i].br_startoff);
706 out[cur_ext].bmv_length =
707 XFS_FSB_TO_BB(mp, map[i].br_blockcount);
708 out[cur_ext].bmv_unused1 = 0;
709 out[cur_ext].bmv_unused2 = 0;
710
711 /*
712 * delayed allocation extents that start beyond EOF can
713 * occur due to speculative EOF allocation when the
714 * delalloc extent is larger than the largest freespace
715 * extent at conversion time. These extents cannot be
716 * converted by data writeback, so can exist here even
717 * if we are not supposed to be finding delalloc
718 * extents.
719 */
720 if (map[i].br_startblock == DELAYSTARTBLOCK &&
721 map[i].br_startoff <= XFS_B_TO_FSB(mp, XFS_ISIZE(ip)))
722 ASSERT((iflags & BMV_IF_DELALLOC) != 0);
723
724 if (map[i].br_startblock == HOLESTARTBLOCK &&
725 whichfork == XFS_ATTR_FORK) {
726 /* came to the end of attribute fork */
727 out[cur_ext].bmv_oflags |= BMV_OF_LAST;
728 goto out_free_map;
729 }
730
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700731 /* Is this a shared block? */
732 error = xfs_getbmap_adjust_shared(ip, whichfork,
733 &map[i], &out[cur_ext], &inject_map);
734 if (error)
735 goto out_free_map;
736
737 if (!xfs_getbmapx_fix_eof_hole(ip, whichfork,
738 &out[cur_ext], prealloced, bmvend,
739 map[i].br_startblock,
740 inject_map.br_startblock != NULLFSBLOCK))
Dave Chinner68988112013-08-12 20:49:42 +1000741 goto out_free_map;
742
743 bmv->bmv_offset =
744 out[cur_ext].bmv_offset +
745 out[cur_ext].bmv_length;
746 bmv->bmv_length =
747 max_t(__int64_t, 0, bmvend - bmv->bmv_offset);
748
749 /*
750 * In case we don't want to return the hole,
751 * don't increase cur_ext so that we can reuse
752 * it in the next loop.
753 */
754 if ((iflags & BMV_IF_NO_HOLES) &&
755 map[i].br_startblock == HOLESTARTBLOCK) {
756 memset(&out[cur_ext], 0, sizeof(out[cur_ext]));
757 continue;
758 }
759
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700760 if (inject_map.br_startblock != NULLFSBLOCK) {
761 map[i] = inject_map;
762 i--;
763 } else
764 nexleft--;
Dave Chinner68988112013-08-12 20:49:42 +1000765 bmv->bmv_entries++;
766 cur_ext++;
767 }
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700768 } while (nmap && nexleft && bmv->bmv_length &&
769 cur_ext < bmv->bmv_count);
Dave Chinner68988112013-08-12 20:49:42 +1000770
771 out_free_map:
772 kmem_free(map);
773 out_unlock_ilock:
Christoph Hellwig01f4f322013-12-06 12:30:08 -0800774 xfs_iunlock(ip, lock);
Dave Chinner68988112013-08-12 20:49:42 +1000775 out_unlock_iolock:
776 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
777
778 for (i = 0; i < cur_ext; i++) {
779 int full = 0; /* user array is full */
780
781 /* format results & advance arg */
782 error = formatter(&arg, &out[i], &full);
783 if (error || full)
784 break;
785 }
786
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000787 kmem_free(out);
Dave Chinner68988112013-08-12 20:49:42 +1000788 return error;
789}
790
791/*
792 * dead simple method of punching delalyed allocation blocks from a range in
793 * the inode. Walks a block at a time so will be slow, but is only executed in
Zhi Yong Wuad4809b2013-08-12 03:14:55 +0000794 * rare error cases so the overhead is not critical. This will always punch out
Dave Chinner68988112013-08-12 20:49:42 +1000795 * both the start and end blocks, even if the ranges only partially overlap
796 * them, so it is up to the caller to ensure that partial blocks are not
797 * passed in.
798 */
799int
800xfs_bmap_punch_delalloc_range(
801 struct xfs_inode *ip,
802 xfs_fileoff_t start_fsb,
803 xfs_fileoff_t length)
804{
805 xfs_fileoff_t remaining = length;
806 int error = 0;
807
808 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
809
810 do {
811 int done;
812 xfs_bmbt_irec_t imap;
813 int nimaps = 1;
814 xfs_fsblock_t firstblock;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000815 struct xfs_defer_ops dfops;
Dave Chinner68988112013-08-12 20:49:42 +1000816
817 /*
818 * Map the range first and check that it is a delalloc extent
819 * before trying to unmap the range. Otherwise we will be
820 * trying to remove a real extent (which requires a
821 * transaction) or a hole, which is probably a bad idea...
822 */
823 error = xfs_bmapi_read(ip, start_fsb, 1, &imap, &nimaps,
824 XFS_BMAPI_ENTIRE);
825
826 if (error) {
827 /* something screwed, just bail */
828 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
829 xfs_alert(ip->i_mount,
830 "Failed delalloc mapping lookup ino %lld fsb %lld.",
831 ip->i_ino, start_fsb);
832 }
833 break;
834 }
835 if (!nimaps) {
836 /* nothing there */
837 goto next_block;
838 }
839 if (imap.br_startblock != DELAYSTARTBLOCK) {
840 /* been converted, ignore */
841 goto next_block;
842 }
843 WARN_ON(imap.br_blockcount == 0);
844
845 /*
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000846 * Note: while we initialise the firstblock/dfops pair, they
Dave Chinner68988112013-08-12 20:49:42 +1000847 * should never be used because blocks should never be
848 * allocated or freed for a delalloc extent and hence we need
849 * don't cancel or finish them after the xfs_bunmapi() call.
850 */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000851 xfs_defer_init(&dfops, &firstblock);
Dave Chinner68988112013-08-12 20:49:42 +1000852 error = xfs_bunmapi(NULL, ip, start_fsb, 1, 0, 1, &firstblock,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000853 &dfops, &done);
Dave Chinner68988112013-08-12 20:49:42 +1000854 if (error)
855 break;
856
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000857 ASSERT(!xfs_defer_has_unfinished_work(&dfops));
Dave Chinner68988112013-08-12 20:49:42 +1000858next_block:
859 start_fsb++;
860 remaining--;
861 } while(remaining > 0);
862
863 return error;
864}
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000865
866/*
867 * Test whether it is appropriate to check an inode for and free post EOF
868 * blocks. The 'force' parameter determines whether we should also consider
869 * regular files that are marked preallocated or append-only.
870 */
871bool
872xfs_can_free_eofblocks(struct xfs_inode *ip, bool force)
873{
874 /* prealloc/delalloc exists only on regular files */
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100875 if (!S_ISREG(VFS_I(ip)->i_mode))
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000876 return false;
877
878 /*
879 * Zero sized files with no cached pages and delalloc blocks will not
880 * have speculative prealloc/delalloc blocks to remove.
881 */
882 if (VFS_I(ip)->i_size == 0 &&
Dave Chinner2667c6f2014-08-04 13:23:15 +1000883 VFS_I(ip)->i_mapping->nrpages == 0 &&
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000884 ip->i_delayed_blks == 0)
885 return false;
886
887 /* If we haven't read in the extent list, then don't do it now. */
888 if (!(ip->i_df.if_flags & XFS_IFEXTENTS))
889 return false;
890
891 /*
892 * Do not free real preallocated or append-only files unless the file
893 * has delalloc blocks and we are forced to remove them.
894 */
895 if (ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND))
896 if (!force || ip->i_delayed_blks == 0)
897 return false;
898
899 return true;
900}
901
902/*
903 * This is called by xfs_inactive to free any blocks beyond eof
904 * when the link count isn't zero and by xfs_dm_punch_hole() when
905 * punching a hole to EOF.
906 */
907int
908xfs_free_eofblocks(
909 xfs_mount_t *mp,
910 xfs_inode_t *ip,
911 bool need_iolock)
912{
913 xfs_trans_t *tp;
914 int error;
915 xfs_fileoff_t end_fsb;
916 xfs_fileoff_t last_fsb;
917 xfs_filblks_t map_len;
918 int nimaps;
919 xfs_bmbt_irec_t imap;
920
921 /*
922 * Figure out if there are any blocks beyond the end
923 * of the file. If not, then there is nothing to do.
924 */
925 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_ISIZE(ip));
926 last_fsb = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
927 if (last_fsb <= end_fsb)
928 return 0;
929 map_len = last_fsb - end_fsb;
930
931 nimaps = 1;
932 xfs_ilock(ip, XFS_ILOCK_SHARED);
933 error = xfs_bmapi_read(ip, end_fsb, map_len, &imap, &nimaps, 0);
934 xfs_iunlock(ip, XFS_ILOCK_SHARED);
935
936 if (!error && (nimaps != 0) &&
937 (imap.br_startblock != HOLESTARTBLOCK ||
938 ip->i_delayed_blks)) {
939 /*
940 * Attach the dquots to the inode up front.
941 */
942 error = xfs_qm_dqattach(ip, 0);
943 if (error)
944 return error;
945
946 /*
947 * There are blocks after the end of file.
948 * Free them up now by truncating the file to
949 * its current size.
950 */
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000951 if (need_iolock) {
Christoph Hellwig253f4912016-04-06 09:19:55 +1000952 if (!xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL))
Dave Chinner24513372014-06-25 14:58:08 +1000953 return -EAGAIN;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000954 }
955
Christoph Hellwig253f4912016-04-06 09:19:55 +1000956 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate, 0, 0, 0,
957 &tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000958 if (error) {
959 ASSERT(XFS_FORCED_SHUTDOWN(mp));
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000960 if (need_iolock)
961 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
962 return error;
963 }
964
965 xfs_ilock(ip, XFS_ILOCK_EXCL);
966 xfs_trans_ijoin(tp, ip, 0);
967
968 /*
969 * Do not update the on-disk file size. If we update the
970 * on-disk file size and then the system crashes before the
971 * contents of the file are flushed to disk then the files
972 * may be full of holes (ie NULL files bug).
973 */
974 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK,
975 XFS_ISIZE(ip));
976 if (error) {
977 /*
978 * If we get an error at this point we simply don't
979 * bother truncating the file.
980 */
Christoph Hellwig4906e212015-06-04 13:47:56 +1000981 xfs_trans_cancel(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000982 } else {
Christoph Hellwig70393312015-06-04 13:48:08 +1000983 error = xfs_trans_commit(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000984 if (!error)
985 xfs_inode_clear_eofblocks_tag(ip);
986 }
987
988 xfs_iunlock(ip, XFS_ILOCK_EXCL);
989 if (need_iolock)
990 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
991 }
992 return error;
993}
994
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700995int
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000996xfs_alloc_file_space(
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700997 struct xfs_inode *ip,
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000998 xfs_off_t offset,
999 xfs_off_t len,
Christoph Hellwig5f8aca82013-10-12 00:55:06 -07001000 int alloc_type)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001001{
1002 xfs_mount_t *mp = ip->i_mount;
1003 xfs_off_t count;
1004 xfs_filblks_t allocated_fsb;
1005 xfs_filblks_t allocatesize_fsb;
1006 xfs_extlen_t extsz, temp;
1007 xfs_fileoff_t startoffset_fsb;
1008 xfs_fsblock_t firstfsb;
1009 int nimaps;
1010 int quota_flag;
1011 int rt;
1012 xfs_trans_t *tp;
1013 xfs_bmbt_irec_t imaps[1], *imapp;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001014 struct xfs_defer_ops dfops;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001015 uint qblocks, resblks, resrtextents;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001016 int error;
1017
1018 trace_xfs_alloc_file_space(ip);
1019
1020 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +10001021 return -EIO;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001022
1023 error = xfs_qm_dqattach(ip, 0);
1024 if (error)
1025 return error;
1026
1027 if (len <= 0)
Dave Chinner24513372014-06-25 14:58:08 +10001028 return -EINVAL;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001029
1030 rt = XFS_IS_REALTIME_INODE(ip);
1031 extsz = xfs_get_extsz_hint(ip);
1032
1033 count = len;
1034 imapp = &imaps[0];
1035 nimaps = 1;
1036 startoffset_fsb = XFS_B_TO_FSBT(mp, offset);
1037 allocatesize_fsb = XFS_B_TO_FSB(mp, count);
1038
1039 /*
1040 * Allocate file space until done or until there is an error
1041 */
1042 while (allocatesize_fsb && !error) {
1043 xfs_fileoff_t s, e;
1044
1045 /*
1046 * Determine space reservations for data/realtime.
1047 */
1048 if (unlikely(extsz)) {
1049 s = startoffset_fsb;
1050 do_div(s, extsz);
1051 s *= extsz;
1052 e = startoffset_fsb + allocatesize_fsb;
1053 if ((temp = do_mod(startoffset_fsb, extsz)))
1054 e += temp;
1055 if ((temp = do_mod(e, extsz)))
1056 e += extsz - temp;
1057 } else {
1058 s = 0;
1059 e = allocatesize_fsb;
1060 }
1061
1062 /*
1063 * The transaction reservation is limited to a 32-bit block
1064 * count, hence we need to limit the number of blocks we are
1065 * trying to reserve to avoid an overflow. We can't allocate
1066 * more than @nimaps extents, and an extent is limited on disk
1067 * to MAXEXTLEN (21 bits), so use that to enforce the limit.
1068 */
1069 resblks = min_t(xfs_fileoff_t, (e - s), (MAXEXTLEN * nimaps));
1070 if (unlikely(rt)) {
1071 resrtextents = qblocks = resblks;
1072 resrtextents /= mp->m_sb.sb_rextsize;
1073 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
1074 quota_flag = XFS_QMOPT_RES_RTBLKS;
1075 } else {
1076 resrtextents = 0;
1077 resblks = qblocks = XFS_DIOSTRAT_SPACE_RES(mp, resblks);
1078 quota_flag = XFS_QMOPT_RES_REGBLKS;
1079 }
1080
1081 /*
1082 * Allocate and setup the transaction.
1083 */
Christoph Hellwig253f4912016-04-06 09:19:55 +10001084 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks,
1085 resrtextents, 0, &tp);
1086
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001087 /*
1088 * Check for running out of space
1089 */
1090 if (error) {
1091 /*
1092 * Free the transaction structure.
1093 */
Dave Chinner24513372014-06-25 14:58:08 +10001094 ASSERT(error == -ENOSPC || XFS_FORCED_SHUTDOWN(mp));
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001095 break;
1096 }
1097 xfs_ilock(ip, XFS_ILOCK_EXCL);
1098 error = xfs_trans_reserve_quota_nblks(tp, ip, qblocks,
1099 0, quota_flag);
1100 if (error)
1101 goto error1;
1102
1103 xfs_trans_ijoin(tp, ip, 0);
1104
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001105 xfs_defer_init(&dfops, &firstfsb);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001106 error = xfs_bmapi_write(tp, ip, startoffset_fsb,
1107 allocatesize_fsb, alloc_type, &firstfsb,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001108 resblks, imapp, &nimaps, &dfops);
Eric Sandeenf6106ef2016-01-11 11:34:01 +11001109 if (error)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001110 goto error0;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001111
1112 /*
1113 * Complete the transaction
1114 */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001115 error = xfs_defer_finish(&tp, &dfops, NULL);
Eric Sandeenf6106ef2016-01-11 11:34:01 +11001116 if (error)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001117 goto error0;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001118
Christoph Hellwig70393312015-06-04 13:48:08 +10001119 error = xfs_trans_commit(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001120 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Eric Sandeenf6106ef2016-01-11 11:34:01 +11001121 if (error)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001122 break;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001123
1124 allocated_fsb = imapp->br_blockcount;
1125
1126 if (nimaps == 0) {
Dave Chinner24513372014-06-25 14:58:08 +10001127 error = -ENOSPC;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001128 break;
1129 }
1130
1131 startoffset_fsb += allocated_fsb;
1132 allocatesize_fsb -= allocated_fsb;
1133 }
1134
1135 return error;
1136
1137error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001138 xfs_defer_cancel(&dfops);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001139 xfs_trans_unreserve_quota_nblks(tp, ip, (long)qblocks, 0, quota_flag);
1140
1141error1: /* Just cancel transaction */
Christoph Hellwig4906e212015-06-04 13:47:56 +10001142 xfs_trans_cancel(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001143 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1144 return error;
1145}
1146
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001147static int
1148xfs_unmap_extent(
1149 struct xfs_inode *ip,
1150 xfs_fileoff_t startoffset_fsb,
1151 xfs_filblks_t len_fsb,
1152 int *done)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001153{
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001154 struct xfs_mount *mp = ip->i_mount;
1155 struct xfs_trans *tp;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001156 struct xfs_defer_ops dfops;
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001157 xfs_fsblock_t firstfsb;
1158 uint resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
1159 int error;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001160
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001161 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks, 0, 0, &tp);
1162 if (error) {
1163 ASSERT(error == -ENOSPC || XFS_FORCED_SHUTDOWN(mp));
1164 return error;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001165 }
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001166
1167 xfs_ilock(ip, XFS_ILOCK_EXCL);
1168 error = xfs_trans_reserve_quota(tp, mp, ip->i_udquot, ip->i_gdquot,
1169 ip->i_pdquot, resblks, 0, XFS_QMOPT_RES_REGBLKS);
1170 if (error)
1171 goto out_trans_cancel;
1172
1173 xfs_trans_ijoin(tp, ip, 0);
1174
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001175 xfs_defer_init(&dfops, &firstfsb);
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001176 error = xfs_bunmapi(tp, ip, startoffset_fsb, len_fsb, 0, 2, &firstfsb,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001177 &dfops, done);
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001178 if (error)
1179 goto out_bmap_cancel;
1180
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001181 error = xfs_defer_finish(&tp, &dfops, ip);
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001182 if (error)
1183 goto out_bmap_cancel;
1184
1185 error = xfs_trans_commit(tp);
1186out_unlock:
1187 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001188 return error;
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001189
1190out_bmap_cancel:
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001191 xfs_defer_cancel(&dfops);
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001192out_trans_cancel:
1193 xfs_trans_cancel(tp);
1194 goto out_unlock;
1195}
1196
1197static int
1198xfs_adjust_extent_unmap_boundaries(
1199 struct xfs_inode *ip,
1200 xfs_fileoff_t *startoffset_fsb,
1201 xfs_fileoff_t *endoffset_fsb)
1202{
1203 struct xfs_mount *mp = ip->i_mount;
1204 struct xfs_bmbt_irec imap;
1205 int nimap, error;
1206 xfs_extlen_t mod = 0;
1207
1208 nimap = 1;
1209 error = xfs_bmapi_read(ip, *startoffset_fsb, 1, &imap, &nimap, 0);
1210 if (error)
1211 return error;
1212
1213 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
1214 xfs_daddr_t block;
1215
1216 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1217 block = imap.br_startblock;
1218 mod = do_div(block, mp->m_sb.sb_rextsize);
1219 if (mod)
1220 *startoffset_fsb += mp->m_sb.sb_rextsize - mod;
1221 }
1222
1223 nimap = 1;
1224 error = xfs_bmapi_read(ip, *endoffset_fsb - 1, 1, &imap, &nimap, 0);
1225 if (error)
1226 return error;
1227
1228 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
1229 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1230 mod++;
1231 if (mod && mod != mp->m_sb.sb_rextsize)
1232 *endoffset_fsb -= mod;
1233 }
1234
1235 return 0;
1236}
1237
1238static int
1239xfs_flush_unmap_range(
1240 struct xfs_inode *ip,
1241 xfs_off_t offset,
1242 xfs_off_t len)
1243{
1244 struct xfs_mount *mp = ip->i_mount;
1245 struct inode *inode = VFS_I(ip);
1246 xfs_off_t rounding, start, end;
1247 int error;
1248
1249 /* wait for the completion of any pending DIOs */
1250 inode_dio_wait(inode);
1251
1252 rounding = max_t(xfs_off_t, 1 << mp->m_sb.sb_blocklog, PAGE_SIZE);
1253 start = round_down(offset, rounding);
1254 end = round_up(offset + len, rounding) - 1;
1255
1256 error = filemap_write_and_wait_range(inode->i_mapping, start, end);
1257 if (error)
1258 return error;
1259 truncate_pagecache_range(inode, start, end);
1260 return 0;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001261}
1262
Christoph Hellwig83aee9e2013-10-12 00:55:07 -07001263int
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001264xfs_free_file_space(
Christoph Hellwig83aee9e2013-10-12 00:55:07 -07001265 struct xfs_inode *ip,
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001266 xfs_off_t offset,
Christoph Hellwig5f8aca82013-10-12 00:55:06 -07001267 xfs_off_t len)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001268{
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001269 struct xfs_mount *mp = ip->i_mount;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001270 xfs_fileoff_t startoffset_fsb;
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001271 xfs_fileoff_t endoffset_fsb;
Christoph Hellwig3c2bdc92016-06-21 10:02:23 +10001272 int done = 0, error;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001273
1274 trace_xfs_free_file_space(ip);
1275
1276 error = xfs_qm_dqattach(ip, 0);
1277 if (error)
1278 return error;
1279
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001280 if (len <= 0) /* if nothing being freed */
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001281 return 0;
1282
1283 error = xfs_flush_unmap_range(ip, offset, len);
1284 if (error)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001285 return error;
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001286
1287 startoffset_fsb = XFS_B_TO_FSB(mp, offset);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001288 endoffset_fsb = XFS_B_TO_FSBT(mp, offset + len);
1289
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001290 /*
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001291 * Need to zero the stuff we're not freeing, on disk. If it's a RT file
1292 * and we can't use unwritten extents then we actually need to ensure
1293 * to zero the whole extent, otherwise we just need to take of block
1294 * boundaries, and xfs_bunmapi will handle the rest.
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001295 */
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001296 if (XFS_IS_REALTIME_INODE(ip) &&
1297 !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
1298 error = xfs_adjust_extent_unmap_boundaries(ip, &startoffset_fsb,
1299 &endoffset_fsb);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001300 if (error)
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001301 return error;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001302 }
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001303
Christoph Hellwig3c2bdc92016-06-21 10:02:23 +10001304 if (endoffset_fsb > startoffset_fsb) {
1305 while (!done) {
1306 error = xfs_unmap_extent(ip, startoffset_fsb,
1307 endoffset_fsb - startoffset_fsb, &done);
1308 if (error)
1309 return error;
1310 }
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001311 }
1312
1313 /*
Christoph Hellwig3c2bdc92016-06-21 10:02:23 +10001314 * Now that we've unmap all full blocks we'll have to zero out any
1315 * partial block at the beginning and/or end. xfs_zero_range is
1316 * smart enough to skip any holes, including those we just created.
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001317 */
Christoph Hellwig3c2bdc92016-06-21 10:02:23 +10001318 return xfs_zero_range(ip, offset, len, NULL);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001319}
1320
Brian Foster5d11fb42014-10-30 10:35:11 +11001321/*
1322 * Preallocate and zero a range of a file. This mechanism has the allocation
1323 * semantics of fallocate and in addition converts data in the range to zeroes.
1324 */
Christoph Hellwig865e9442013-10-12 00:55:08 -07001325int
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001326xfs_zero_file_space(
1327 struct xfs_inode *ip,
1328 xfs_off_t offset,
Christoph Hellwig5f8aca82013-10-12 00:55:06 -07001329 xfs_off_t len)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001330{
1331 struct xfs_mount *mp = ip->i_mount;
Brian Foster5d11fb42014-10-30 10:35:11 +11001332 uint blksize;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001333 int error;
1334
Dave Chinner897b73b2014-04-14 18:15:11 +10001335 trace_xfs_zero_file_space(ip);
1336
Brian Foster5d11fb42014-10-30 10:35:11 +11001337 blksize = 1 << mp->m_sb.sb_blocklog;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001338
1339 /*
Brian Foster5d11fb42014-10-30 10:35:11 +11001340 * Punch a hole and prealloc the range. We use hole punch rather than
1341 * unwritten extent conversion for two reasons:
1342 *
1343 * 1.) Hole punch handles partial block zeroing for us.
1344 *
1345 * 2.) If prealloc returns ENOSPC, the file range is still zero-valued
1346 * by virtue of the hole punch.
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001347 */
Brian Foster5d11fb42014-10-30 10:35:11 +11001348 error = xfs_free_file_space(ip, offset, len);
1349 if (error)
1350 goto out;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001351
Brian Foster5d11fb42014-10-30 10:35:11 +11001352 error = xfs_alloc_file_space(ip, round_down(offset, blksize),
1353 round_up(offset + len, blksize) -
1354 round_down(offset, blksize),
1355 XFS_BMAPI_PREALLOC);
Christoph Hellwig5f8aca82013-10-12 00:55:06 -07001356out:
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001357 return error;
1358
1359}
1360
1361/*
Namjae Jeona904b1c2015-03-25 15:08:56 +11001362 * @next_fsb will keep track of the extent currently undergoing shift.
1363 * @stop_fsb will keep track of the extent at which we have to stop.
1364 * If we are shifting left, we will start with block (offset + len) and
1365 * shift each extent till last extent.
1366 * If we are shifting right, we will start with last extent inside file space
1367 * and continue until we reach the block corresponding to offset.
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001368 */
kbuild test robot72c1a732015-04-13 11:25:04 +10001369static int
Namjae Jeona904b1c2015-03-25 15:08:56 +11001370xfs_shift_file_space(
1371 struct xfs_inode *ip,
1372 xfs_off_t offset,
1373 xfs_off_t len,
1374 enum shift_direction direction)
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001375{
1376 int done = 0;
1377 struct xfs_mount *mp = ip->i_mount;
1378 struct xfs_trans *tp;
1379 int error;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001380 struct xfs_defer_ops dfops;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001381 xfs_fsblock_t first_block;
Namjae Jeona904b1c2015-03-25 15:08:56 +11001382 xfs_fileoff_t stop_fsb;
Brian Foster2c845f52014-09-23 15:37:09 +10001383 xfs_fileoff_t next_fsb;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001384 xfs_fileoff_t shift_fsb;
1385
Namjae Jeona904b1c2015-03-25 15:08:56 +11001386 ASSERT(direction == SHIFT_LEFT || direction == SHIFT_RIGHT);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001387
Namjae Jeona904b1c2015-03-25 15:08:56 +11001388 if (direction == SHIFT_LEFT) {
1389 next_fsb = XFS_B_TO_FSB(mp, offset + len);
1390 stop_fsb = XFS_B_TO_FSB(mp, VFS_I(ip)->i_size);
1391 } else {
1392 /*
1393 * If right shift, delegate the work of initialization of
1394 * next_fsb to xfs_bmap_shift_extent as it has ilock held.
1395 */
1396 next_fsb = NULLFSBLOCK;
1397 stop_fsb = XFS_B_TO_FSB(mp, offset);
1398 }
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001399
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001400 shift_fsb = XFS_B_TO_FSB(mp, len);
1401
Brian Fosterf71721d2014-09-23 15:39:05 +10001402 /*
1403 * Trim eofblocks to avoid shifting uninitialized post-eof preallocation
1404 * into the accessible region of the file.
1405 */
Brian Foster41b9d722014-09-02 12:12:53 +10001406 if (xfs_can_free_eofblocks(ip, true)) {
1407 error = xfs_free_eofblocks(mp, ip, false);
1408 if (error)
1409 return error;
1410 }
Dave Chinner1669a8c2014-09-02 12:12:53 +10001411
Brian Fosterf71721d2014-09-23 15:39:05 +10001412 /*
1413 * Writeback and invalidate cache for the remainder of the file as we're
Namjae Jeona904b1c2015-03-25 15:08:56 +11001414 * about to shift down every extent from offset to EOF.
Brian Fosterf71721d2014-09-23 15:39:05 +10001415 */
1416 error = filemap_write_and_wait_range(VFS_I(ip)->i_mapping,
Namjae Jeona904b1c2015-03-25 15:08:56 +11001417 offset, -1);
Brian Fosterf71721d2014-09-23 15:39:05 +10001418 if (error)
1419 return error;
1420 error = invalidate_inode_pages2_range(VFS_I(ip)->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001421 offset >> PAGE_SHIFT, -1);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001422 if (error)
1423 return error;
1424
Namjae Jeona904b1c2015-03-25 15:08:56 +11001425 /*
1426 * The extent shiting code works on extent granularity. So, if
1427 * stop_fsb is not the starting block of extent, we need to split
1428 * the extent at stop_fsb.
1429 */
1430 if (direction == SHIFT_RIGHT) {
1431 error = xfs_bmap_split_extent(ip, stop_fsb);
1432 if (error)
1433 return error;
1434 }
1435
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001436 while (!error && !done) {
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001437 /*
1438 * We would need to reserve permanent block for transaction.
1439 * This will come into picture when after shifting extent into
1440 * hole we found that adjacent extents can be merged which
1441 * may lead to freeing of a block during record update.
1442 */
Christoph Hellwig253f4912016-04-06 09:19:55 +10001443 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write,
1444 XFS_DIOSTRAT_SPACE_RES(mp, 0), 0, 0, &tp);
1445 if (error)
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001446 break;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001447
1448 xfs_ilock(ip, XFS_ILOCK_EXCL);
1449 error = xfs_trans_reserve_quota(tp, mp, ip->i_udquot,
1450 ip->i_gdquot, ip->i_pdquot,
1451 XFS_DIOSTRAT_SPACE_RES(mp, 0), 0,
1452 XFS_QMOPT_RES_REGBLKS);
1453 if (error)
Brian Fosterd4a97a02015-08-19 10:01:40 +10001454 goto out_trans_cancel;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001455
Namjae Jeona904b1c2015-03-25 15:08:56 +11001456 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001457
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001458 xfs_defer_init(&dfops, &first_block);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001459
1460 /*
1461 * We are using the write transaction in which max 2 bmbt
1462 * updates are allowed
1463 */
Namjae Jeona904b1c2015-03-25 15:08:56 +11001464 error = xfs_bmap_shift_extents(tp, ip, &next_fsb, shift_fsb,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001465 &done, stop_fsb, &first_block, &dfops,
Namjae Jeona904b1c2015-03-25 15:08:56 +11001466 direction, XFS_BMAP_MAX_SHIFT_EXTENTS);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001467 if (error)
Brian Fosterd4a97a02015-08-19 10:01:40 +10001468 goto out_bmap_cancel;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001469
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001470 error = xfs_defer_finish(&tp, &dfops, NULL);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001471 if (error)
Brian Fosterd4a97a02015-08-19 10:01:40 +10001472 goto out_bmap_cancel;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001473
Christoph Hellwig70393312015-06-04 13:48:08 +10001474 error = xfs_trans_commit(tp);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001475 }
1476
1477 return error;
1478
Brian Fosterd4a97a02015-08-19 10:01:40 +10001479out_bmap_cancel:
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001480 xfs_defer_cancel(&dfops);
Brian Fosterd4a97a02015-08-19 10:01:40 +10001481out_trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001482 xfs_trans_cancel(tp);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001483 return error;
1484}
1485
1486/*
Namjae Jeona904b1c2015-03-25 15:08:56 +11001487 * xfs_collapse_file_space()
1488 * This routine frees disk space and shift extent for the given file.
1489 * The first thing we do is to free data blocks in the specified range
1490 * by calling xfs_free_file_space(). It would also sync dirty data
1491 * and invalidate page cache over the region on which collapse range
1492 * is working. And Shift extent records to the left to cover a hole.
1493 * RETURNS:
1494 * 0 on success
1495 * errno on error
1496 *
1497 */
1498int
1499xfs_collapse_file_space(
1500 struct xfs_inode *ip,
1501 xfs_off_t offset,
1502 xfs_off_t len)
1503{
1504 int error;
1505
1506 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
1507 trace_xfs_collapse_file_space(ip);
1508
1509 error = xfs_free_file_space(ip, offset, len);
1510 if (error)
1511 return error;
1512
1513 return xfs_shift_file_space(ip, offset, len, SHIFT_LEFT);
1514}
1515
1516/*
1517 * xfs_insert_file_space()
1518 * This routine create hole space by shifting extents for the given file.
1519 * The first thing we do is to sync dirty data and invalidate page cache
1520 * over the region on which insert range is working. And split an extent
1521 * to two extents at given offset by calling xfs_bmap_split_extent.
1522 * And shift all extent records which are laying between [offset,
1523 * last allocated extent] to the right to reserve hole range.
1524 * RETURNS:
1525 * 0 on success
1526 * errno on error
1527 */
1528int
1529xfs_insert_file_space(
1530 struct xfs_inode *ip,
1531 loff_t offset,
1532 loff_t len)
1533{
1534 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
1535 trace_xfs_insert_file_space(ip);
1536
1537 return xfs_shift_file_space(ip, offset, len, SHIFT_RIGHT);
1538}
1539
1540/*
Dave Chinnera133d952013-08-12 20:49:48 +10001541 * We need to check that the format of the data fork in the temporary inode is
1542 * valid for the target inode before doing the swap. This is not a problem with
1543 * attr1 because of the fixed fork offset, but attr2 has a dynamically sized
1544 * data fork depending on the space the attribute fork is taking so we can get
1545 * invalid formats on the target inode.
1546 *
1547 * E.g. target has space for 7 extents in extent format, temp inode only has
1548 * space for 6. If we defragment down to 7 extents, then the tmp format is a
1549 * btree, but when swapped it needs to be in extent format. Hence we can't just
1550 * blindly swap data forks on attr2 filesystems.
1551 *
1552 * Note that we check the swap in both directions so that we don't end up with
1553 * a corrupt temporary inode, either.
1554 *
1555 * Note that fixing the way xfs_fsr sets up the attribute fork in the source
1556 * inode will prevent this situation from occurring, so all we do here is
1557 * reject and log the attempt. basically we are putting the responsibility on
1558 * userspace to get this right.
1559 */
1560static int
1561xfs_swap_extents_check_format(
1562 xfs_inode_t *ip, /* target inode */
1563 xfs_inode_t *tip) /* tmp inode */
1564{
1565
1566 /* Should never get a local format */
1567 if (ip->i_d.di_format == XFS_DINODE_FMT_LOCAL ||
1568 tip->i_d.di_format == XFS_DINODE_FMT_LOCAL)
Dave Chinner24513372014-06-25 14:58:08 +10001569 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001570
1571 /*
1572 * if the target inode has less extents that then temporary inode then
1573 * why did userspace call us?
1574 */
1575 if (ip->i_d.di_nextents < tip->i_d.di_nextents)
Dave Chinner24513372014-06-25 14:58:08 +10001576 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001577
1578 /*
1579 * if the target inode is in extent form and the temp inode is in btree
1580 * form then we will end up with the target inode in the wrong format
1581 * as we already know there are less extents in the temp inode.
1582 */
1583 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
1584 tip->i_d.di_format == XFS_DINODE_FMT_BTREE)
Dave Chinner24513372014-06-25 14:58:08 +10001585 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001586
1587 /* Check temp in extent form to max in target */
1588 if (tip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
1589 XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) >
1590 XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK))
Dave Chinner24513372014-06-25 14:58:08 +10001591 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001592
1593 /* Check target in extent form to max in temp */
1594 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
1595 XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) >
1596 XFS_IFORK_MAXEXT(tip, XFS_DATA_FORK))
Dave Chinner24513372014-06-25 14:58:08 +10001597 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001598
1599 /*
1600 * If we are in a btree format, check that the temp root block will fit
1601 * in the target and that it has enough extents to be in btree format
1602 * in the target.
1603 *
1604 * Note that we have to be careful to allow btree->extent conversions
1605 * (a common defrag case) which will occur when the temp inode is in
1606 * extent format...
1607 */
1608 if (tip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
1609 if (XFS_IFORK_BOFF(ip) &&
1610 XFS_BMAP_BMDR_SPACE(tip->i_df.if_broot) > XFS_IFORK_BOFF(ip))
Dave Chinner24513372014-06-25 14:58:08 +10001611 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001612 if (XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) <=
1613 XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK))
Dave Chinner24513372014-06-25 14:58:08 +10001614 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001615 }
1616
1617 /* Reciprocal target->temp btree format checks */
1618 if (ip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
1619 if (XFS_IFORK_BOFF(tip) &&
1620 XFS_BMAP_BMDR_SPACE(ip->i_df.if_broot) > XFS_IFORK_BOFF(tip))
Dave Chinner24513372014-06-25 14:58:08 +10001621 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001622 if (XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) <=
1623 XFS_IFORK_MAXEXT(tip, XFS_DATA_FORK))
Dave Chinner24513372014-06-25 14:58:08 +10001624 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001625 }
1626
1627 return 0;
1628}
1629
Dave Chinner7abbb8f2014-09-23 16:20:11 +10001630static int
Dave Chinner4ef897a2014-08-04 13:44:08 +10001631xfs_swap_extent_flush(
1632 struct xfs_inode *ip)
1633{
1634 int error;
1635
1636 error = filemap_write_and_wait(VFS_I(ip)->i_mapping);
1637 if (error)
1638 return error;
1639 truncate_pagecache_range(VFS_I(ip), 0, -1);
1640
1641 /* Verify O_DIRECT for ftmp */
1642 if (VFS_I(ip)->i_mapping->nrpages)
1643 return -EINVAL;
Dave Chinner4ef897a2014-08-04 13:44:08 +10001644 return 0;
1645}
1646
1647int
Dave Chinnera133d952013-08-12 20:49:48 +10001648xfs_swap_extents(
1649 xfs_inode_t *ip, /* target inode */
1650 xfs_inode_t *tip, /* tmp inode */
1651 xfs_swapext_t *sxp)
1652{
1653 xfs_mount_t *mp = ip->i_mount;
1654 xfs_trans_t *tp;
1655 xfs_bstat_t *sbp = &sxp->sx_stat;
1656 xfs_ifork_t *tempifp, *ifp, *tifp;
1657 int src_log_flags, target_log_flags;
1658 int error = 0;
1659 int aforkblks = 0;
1660 int taforkblks = 0;
1661 __uint64_t tmp;
Dave Chinner81217682014-08-04 13:29:32 +10001662 int lock_flags;
Darrick J. Wongf0bc4d12016-10-03 09:11:42 -07001663 struct xfs_ifork *cowfp;
1664 __uint64_t f;
Dave Chinnera133d952013-08-12 20:49:48 +10001665
Darrick J. Wong2b0eeb52016-08-03 12:18:07 +10001666 /* XXX: we can't do this with rmap, will fix later */
1667 if (xfs_sb_version_hasrmapbt(&mp->m_sb))
1668 return -EOPNOTSUPP;
1669
Dave Chinnera133d952013-08-12 20:49:48 +10001670 tempifp = kmem_alloc(sizeof(xfs_ifork_t), KM_MAYFAIL);
1671 if (!tempifp) {
Dave Chinner24513372014-06-25 14:58:08 +10001672 error = -ENOMEM;
Dave Chinnera133d952013-08-12 20:49:48 +10001673 goto out;
1674 }
1675
1676 /*
Dave Chinner723cac42015-02-23 21:47:29 +11001677 * Lock the inodes against other IO, page faults and truncate to
1678 * begin with. Then we can ensure the inodes are flushed and have no
1679 * page cache safely. Once we have done this we can take the ilocks and
1680 * do the rest of the checks.
Dave Chinnera133d952013-08-12 20:49:48 +10001681 */
Dave Chinner723cac42015-02-23 21:47:29 +11001682 lock_flags = XFS_IOLOCK_EXCL | XFS_MMAPLOCK_EXCL;
Dave Chinnera133d952013-08-12 20:49:48 +10001683 xfs_lock_two_inodes(ip, tip, XFS_IOLOCK_EXCL);
Dave Chinner723cac42015-02-23 21:47:29 +11001684 xfs_lock_two_inodes(ip, tip, XFS_MMAPLOCK_EXCL);
Dave Chinnera133d952013-08-12 20:49:48 +10001685
1686 /* Verify that both files have the same format */
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001687 if ((VFS_I(ip)->i_mode & S_IFMT) != (VFS_I(tip)->i_mode & S_IFMT)) {
Dave Chinner24513372014-06-25 14:58:08 +10001688 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001689 goto out_unlock;
1690 }
1691
1692 /* Verify both files are either real-time or non-realtime */
1693 if (XFS_IS_REALTIME_INODE(ip) != XFS_IS_REALTIME_INODE(tip)) {
Dave Chinner24513372014-06-25 14:58:08 +10001694 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001695 goto out_unlock;
1696 }
1697
Dave Chinner4ef897a2014-08-04 13:44:08 +10001698 error = xfs_swap_extent_flush(ip);
Dave Chinnera133d952013-08-12 20:49:48 +10001699 if (error)
1700 goto out_unlock;
Dave Chinner4ef897a2014-08-04 13:44:08 +10001701 error = xfs_swap_extent_flush(tip);
1702 if (error)
1703 goto out_unlock;
Dave Chinnera133d952013-08-12 20:49:48 +10001704
Christoph Hellwig253f4912016-04-06 09:19:55 +10001705 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
1706 if (error)
Dave Chinnera133d952013-08-12 20:49:48 +10001707 goto out_unlock;
Dave Chinner723cac42015-02-23 21:47:29 +11001708
1709 /*
1710 * Lock and join the inodes to the tansaction so that transaction commit
1711 * or cancel will unlock the inodes from this point onwards.
1712 */
Dave Chinner4ef897a2014-08-04 13:44:08 +10001713 xfs_lock_two_inodes(ip, tip, XFS_ILOCK_EXCL);
1714 lock_flags |= XFS_ILOCK_EXCL;
Dave Chinner723cac42015-02-23 21:47:29 +11001715 xfs_trans_ijoin(tp, ip, lock_flags);
1716 xfs_trans_ijoin(tp, tip, lock_flags);
1717
Dave Chinnera133d952013-08-12 20:49:48 +10001718
1719 /* Verify all data are being swapped */
1720 if (sxp->sx_offset != 0 ||
1721 sxp->sx_length != ip->i_d.di_size ||
1722 sxp->sx_length != tip->i_d.di_size) {
Dave Chinner24513372014-06-25 14:58:08 +10001723 error = -EFAULT;
Dave Chinner4ef897a2014-08-04 13:44:08 +10001724 goto out_trans_cancel;
Dave Chinnera133d952013-08-12 20:49:48 +10001725 }
1726
1727 trace_xfs_swap_extent_before(ip, 0);
1728 trace_xfs_swap_extent_before(tip, 1);
1729
1730 /* check inode formats now that data is flushed */
1731 error = xfs_swap_extents_check_format(ip, tip);
1732 if (error) {
1733 xfs_notice(mp,
1734 "%s: inode 0x%llx format is incompatible for exchanging.",
1735 __func__, ip->i_ino);
Dave Chinner4ef897a2014-08-04 13:44:08 +10001736 goto out_trans_cancel;
Dave Chinnera133d952013-08-12 20:49:48 +10001737 }
1738
1739 /*
1740 * Compare the current change & modify times with that
1741 * passed in. If they differ, we abort this swap.
1742 * This is the mechanism used to ensure the calling
1743 * process that the file was not changed out from
1744 * under it.
1745 */
1746 if ((sbp->bs_ctime.tv_sec != VFS_I(ip)->i_ctime.tv_sec) ||
1747 (sbp->bs_ctime.tv_nsec != VFS_I(ip)->i_ctime.tv_nsec) ||
1748 (sbp->bs_mtime.tv_sec != VFS_I(ip)->i_mtime.tv_sec) ||
1749 (sbp->bs_mtime.tv_nsec != VFS_I(ip)->i_mtime.tv_nsec)) {
Dave Chinner24513372014-06-25 14:58:08 +10001750 error = -EBUSY;
Dave Chinner81217682014-08-04 13:29:32 +10001751 goto out_trans_cancel;
Dave Chinnera133d952013-08-12 20:49:48 +10001752 }
Dave Chinnera133d952013-08-12 20:49:48 +10001753 /*
1754 * Count the number of extended attribute blocks
1755 */
1756 if ( ((XFS_IFORK_Q(ip) != 0) && (ip->i_d.di_anextents > 0)) &&
1757 (ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
1758 error = xfs_bmap_count_blocks(tp, ip, XFS_ATTR_FORK, &aforkblks);
1759 if (error)
1760 goto out_trans_cancel;
1761 }
1762 if ( ((XFS_IFORK_Q(tip) != 0) && (tip->i_d.di_anextents > 0)) &&
1763 (tip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
1764 error = xfs_bmap_count_blocks(tp, tip, XFS_ATTR_FORK,
1765 &taforkblks);
1766 if (error)
1767 goto out_trans_cancel;
1768 }
1769
Dave Chinner21b5c972013-08-30 10:23:44 +10001770 /*
1771 * Before we've swapped the forks, lets set the owners of the forks
1772 * appropriately. We have to do this as we are demand paging the btree
1773 * buffers, and so the validation done on read will expect the owner
1774 * field to be correctly set. Once we change the owners, we can swap the
1775 * inode forks.
1776 *
1777 * Note the trickiness in setting the log flags - we set the owner log
1778 * flag on the opposite inode (i.e. the inode we are setting the new
1779 * owner to be) because once we swap the forks and log that, log
1780 * recovery is going to see the fork as owned by the swapped inode,
1781 * not the pre-swapped inodes.
1782 */
1783 src_log_flags = XFS_ILOG_CORE;
1784 target_log_flags = XFS_ILOG_CORE;
1785 if (ip->i_d.di_version == 3 &&
1786 ip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
Dave Chinner638f44162013-08-30 10:23:45 +10001787 target_log_flags |= XFS_ILOG_DOWNER;
1788 error = xfs_bmbt_change_owner(tp, ip, XFS_DATA_FORK,
1789 tip->i_ino, NULL);
Dave Chinner21b5c972013-08-30 10:23:44 +10001790 if (error)
1791 goto out_trans_cancel;
1792 }
1793
1794 if (tip->i_d.di_version == 3 &&
1795 tip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
Dave Chinner638f44162013-08-30 10:23:45 +10001796 src_log_flags |= XFS_ILOG_DOWNER;
1797 error = xfs_bmbt_change_owner(tp, tip, XFS_DATA_FORK,
1798 ip->i_ino, NULL);
Dave Chinner21b5c972013-08-30 10:23:44 +10001799 if (error)
1800 goto out_trans_cancel;
1801 }
1802
Dave Chinnera133d952013-08-12 20:49:48 +10001803 /*
1804 * Swap the data forks of the inodes
1805 */
1806 ifp = &ip->i_df;
1807 tifp = &tip->i_df;
1808 *tempifp = *ifp; /* struct copy */
1809 *ifp = *tifp; /* struct copy */
1810 *tifp = *tempifp; /* struct copy */
1811
1812 /*
1813 * Fix the on-disk inode values
1814 */
1815 tmp = (__uint64_t)ip->i_d.di_nblocks;
1816 ip->i_d.di_nblocks = tip->i_d.di_nblocks - taforkblks + aforkblks;
1817 tip->i_d.di_nblocks = tmp + taforkblks - aforkblks;
1818
1819 tmp = (__uint64_t) ip->i_d.di_nextents;
1820 ip->i_d.di_nextents = tip->i_d.di_nextents;
1821 tip->i_d.di_nextents = tmp;
1822
1823 tmp = (__uint64_t) ip->i_d.di_format;
1824 ip->i_d.di_format = tip->i_d.di_format;
1825 tip->i_d.di_format = tmp;
1826
1827 /*
1828 * The extents in the source inode could still contain speculative
1829 * preallocation beyond EOF (e.g. the file is open but not modified
1830 * while defrag is in progress). In that case, we need to copy over the
1831 * number of delalloc blocks the data fork in the source inode is
1832 * tracking beyond EOF so that when the fork is truncated away when the
1833 * temporary inode is unlinked we don't underrun the i_delayed_blks
1834 * counter on that inode.
1835 */
1836 ASSERT(tip->i_delayed_blks == 0);
1837 tip->i_delayed_blks = ip->i_delayed_blks;
1838 ip->i_delayed_blks = 0;
1839
Dave Chinnera133d952013-08-12 20:49:48 +10001840 switch (ip->i_d.di_format) {
1841 case XFS_DINODE_FMT_EXTENTS:
1842 /* If the extents fit in the inode, fix the
1843 * pointer. Otherwise it's already NULL or
1844 * pointing to the extent.
1845 */
1846 if (ip->i_d.di_nextents <= XFS_INLINE_EXTS) {
1847 ifp->if_u1.if_extents =
1848 ifp->if_u2.if_inline_ext;
1849 }
1850 src_log_flags |= XFS_ILOG_DEXT;
1851 break;
1852 case XFS_DINODE_FMT_BTREE:
Dave Chinner21b5c972013-08-30 10:23:44 +10001853 ASSERT(ip->i_d.di_version < 3 ||
Dave Chinner638f44162013-08-30 10:23:45 +10001854 (src_log_flags & XFS_ILOG_DOWNER));
Dave Chinnera133d952013-08-12 20:49:48 +10001855 src_log_flags |= XFS_ILOG_DBROOT;
1856 break;
1857 }
1858
Dave Chinnera133d952013-08-12 20:49:48 +10001859 switch (tip->i_d.di_format) {
1860 case XFS_DINODE_FMT_EXTENTS:
1861 /* If the extents fit in the inode, fix the
1862 * pointer. Otherwise it's already NULL or
1863 * pointing to the extent.
1864 */
1865 if (tip->i_d.di_nextents <= XFS_INLINE_EXTS) {
1866 tifp->if_u1.if_extents =
1867 tifp->if_u2.if_inline_ext;
1868 }
1869 target_log_flags |= XFS_ILOG_DEXT;
1870 break;
1871 case XFS_DINODE_FMT_BTREE:
1872 target_log_flags |= XFS_ILOG_DBROOT;
Dave Chinner21b5c972013-08-30 10:23:44 +10001873 ASSERT(tip->i_d.di_version < 3 ||
Dave Chinner638f44162013-08-30 10:23:45 +10001874 (target_log_flags & XFS_ILOG_DOWNER));
Dave Chinnera133d952013-08-12 20:49:48 +10001875 break;
1876 }
1877
Darrick J. Wongf0bc4d12016-10-03 09:11:42 -07001878 /* Do we have to swap reflink flags? */
1879 if ((ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK) ^
1880 (tip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK)) {
1881 f = ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK;
1882 ip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
1883 ip->i_d.di_flags2 |= tip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK;
1884 tip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
1885 tip->i_d.di_flags2 |= f & XFS_DIFLAG2_REFLINK;
1886 cowfp = ip->i_cowfp;
1887 ip->i_cowfp = tip->i_cowfp;
1888 tip->i_cowfp = cowfp;
1889 }
1890
Dave Chinnera133d952013-08-12 20:49:48 +10001891 xfs_trans_log_inode(tp, ip, src_log_flags);
1892 xfs_trans_log_inode(tp, tip, target_log_flags);
1893
1894 /*
1895 * If this is a synchronous mount, make sure that the
1896 * transaction goes to disk before returning to the user.
1897 */
1898 if (mp->m_flags & XFS_MOUNT_WSYNC)
1899 xfs_trans_set_sync(tp);
1900
Christoph Hellwig70393312015-06-04 13:48:08 +10001901 error = xfs_trans_commit(tp);
Dave Chinnera133d952013-08-12 20:49:48 +10001902
1903 trace_xfs_swap_extent_after(ip, 0);
1904 trace_xfs_swap_extent_after(tip, 1);
1905out:
1906 kmem_free(tempifp);
1907 return error;
1908
1909out_unlock:
Dave Chinner81217682014-08-04 13:29:32 +10001910 xfs_iunlock(ip, lock_flags);
1911 xfs_iunlock(tip, lock_flags);
Dave Chinnera133d952013-08-12 20:49:48 +10001912 goto out;
1913
1914out_trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001915 xfs_trans_cancel(tp);
Dave Chinner723cac42015-02-23 21:47:29 +11001916 goto out;
Dave Chinnera133d952013-08-12 20:49:48 +10001917}