xfs: teach get_bmapx about shared extents and the CoW fork
[cascardo/linux.git] / fs / xfs / xfs_bmap_util.c
1 /*
2  * Copyright (c) 2000-2006 Silicon Graphics, Inc.
3  * Copyright (c) 2012 Red Hat, Inc.
4  * 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"
21 #include "xfs_shared.h"
22 #include "xfs_format.h"
23 #include "xfs_log_format.h"
24 #include "xfs_trans_resv.h"
25 #include "xfs_bit.h"
26 #include "xfs_mount.h"
27 #include "xfs_da_format.h"
28 #include "xfs_defer.h"
29 #include "xfs_inode.h"
30 #include "xfs_btree.h"
31 #include "xfs_trans.h"
32 #include "xfs_extfree_item.h"
33 #include "xfs_alloc.h"
34 #include "xfs_bmap.h"
35 #include "xfs_bmap_util.h"
36 #include "xfs_bmap_btree.h"
37 #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"
42 #include "xfs_icache.h"
43 #include "xfs_log.h"
44 #include "xfs_rmap_btree.h"
45 #include "xfs_iomap.h"
46 #include "xfs_reflink.h"
47 #include "xfs_refcount.h"
48
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  */
56 xfs_daddr_t
57 xfs_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 /*
65  * 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  */
71 int
72 xfs_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);
80
81         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);
85 }
86
87 int
88 xfs_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         /*
131          * Lock out modifications to both the RT bitmap and summary inodes
132          */
133         xfs_ilock(mp->m_rbmip, XFS_ILOCK_EXCL|XFS_ILOCK_RTBITMAP);
134         xfs_trans_ijoin(ap->tp, mp->m_rbmip, XFS_ILOCK_EXCL);
135         xfs_ilock(mp->m_rsumip, XFS_ILOCK_EXCL|XFS_ILOCK_RTSUM);
136         xfs_trans_ijoin(ap->tp, mp->m_rsumip, XFS_ILOCK_EXCL);
137
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);
186
187                 /* Zero the extent if we were asked to do so */
188                 if (ap->datatype & XFS_ALLOC_USERDATA_ZERO) {
189                         error = xfs_zero_extent(ap->ip, ap->blkno, ap->length);
190                         if (error)
191                                 return error;
192                 }
193         } else {
194                 ap->length = 0;
195         }
196         return 0;
197 }
198
199 /*
200  * 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  */
204 int
205 xfs_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  */
229 STATIC void
230 xfs_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  */
248 STATIC void
249 xfs_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
266  * to count total fsblocks in use.
267  */
268 STATIC int                                     /* error */
269 xfs_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);
316                         return -EFSCORRUPTED;
317                 }
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  */
344 static int                                      /* error */
345 xfs_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);
376         ASSERT(bno != NULLFSBLOCK);
377         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);
383                 return -EFSCORRUPTED;
384         }
385
386         return 0;
387 }
388
389 /*
390  * returns 1 for success, 0 if we failed to map the extent.
391  */
392 STATIC int
393 xfs_getbmapx_fix_eof_hole(
394         xfs_inode_t             *ip,            /* xfs incore inode pointer */
395         int                     whichfork,
396         struct getbmapx         *out,           /* output structure */
397         int                     prealloced,     /* this is a file with
398                                                  * preallocated data space */
399         __int64_t               end,            /* last block requested */
400         xfs_fsblock_t           startblock,
401         bool                    moretocome)
402 {
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);
426                 ifp = XFS_IFORK_PTR(ip, whichfork);
427                 if (!moretocome &&
428                     xfs_iext_bno_to_ext(ifp, fileblock, &lastx) &&
429                    (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
436 /* Adjust the reported bmap around shared/unshared extent transitions. */
437 STATIC int
438 xfs_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
511 /*
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  */
518 int                                             /* error code */
519 xfs_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;
543         struct xfs_bmbt_irec    inject_map;
544
545         mp = ip->i_mount;
546         iflags = bmv->bmv_iflags;
547
548 #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:
565                 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)
569                                 return -EINVAL;
570                 } 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);
575                         return -EFSCORRUPTED;
576                 }
577
578                 prealloced = 0;
579                 fixlen = 1LL << 32;
580                 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:
589                 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)
592                         return -EINVAL;
593
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                 }
602                 break;
603         }
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) {
613                 return -EINVAL;
614         }
615
616         nex = bmv->bmv_count - 1;
617         if (nex <= 0)
618                 return -EINVAL;
619         bmvend = bmv->bmv_offset + bmv->bmv_length;
620
621
622         if (bmv->bmv_count > ULONG_MAX / sizeof(struct getbmapx))
623                 return -ENOMEM;
624         out = kmem_zalloc_large(bmv->bmv_count * sizeof(struct getbmapx), 0);
625         if (!out)
626                 return -ENOMEM;
627
628         xfs_ilock(ip, XFS_IOLOCK_SHARED);
629         switch (whichfork) {
630         case XFS_DATA_FORK:
631                 if (!(iflags & BMV_IF_DELALLOC) &&
632                     (ip->i_delayed_blks || XFS_ISIZE(ip) > ip->i_d.di_size)) {
633                         error = filemap_write_and_wait(VFS_I(ip)->i_mapping);
634                         if (error)
635                                 goto out_unlock_iolock;
636
637                         /*
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);
648                 break;
649         case XFS_COW_FORK:
650                 lock = XFS_ILOCK_SHARED;
651                 xfs_ilock(ip, lock);
652                 break;
653         case XFS_ATTR_FORK:
654                 lock = xfs_ilock_attr_map_shared(ip);
655                 break;
656         }
657
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          */
672         error = -ENOMEM;
673         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
697                 for (i = 0; i < nmap && nexleft && bmv->bmv_length &&
698                                 cur_ext < bmv->bmv_count; i++) {
699                         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
731                         /* 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))
741                                 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
760                         if (inject_map.br_startblock != NULLFSBLOCK) {
761                                 map[i] = inject_map;
762                                 i--;
763                         } else
764                                 nexleft--;
765                         bmv->bmv_entries++;
766                         cur_ext++;
767                 }
768         } while (nmap && nexleft && bmv->bmv_length &&
769                  cur_ext < bmv->bmv_count);
770
771  out_free_map:
772         kmem_free(map);
773  out_unlock_ilock:
774         xfs_iunlock(ip, lock);
775  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
787         kmem_free(out);
788         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
794  * rare error cases so the overhead is not critical. This will always punch out
795  * 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  */
799 int
800 xfs_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;
815                 struct xfs_defer_ops dfops;
816
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                 /*
846                  * Note: while we initialise the firstblock/dfops pair, they
847                  * 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                  */
851                 xfs_defer_init(&dfops, &firstblock);
852                 error = xfs_bunmapi(NULL, ip, start_fsb, 1, 0, 1, &firstblock,
853                                         &dfops, &done);
854                 if (error)
855                         break;
856
857                 ASSERT(!xfs_defer_has_unfinished_work(&dfops));
858 next_block:
859                 start_fsb++;
860                 remaining--;
861         } while(remaining > 0);
862
863         return error;
864 }
865
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  */
871 bool
872 xfs_can_free_eofblocks(struct xfs_inode *ip, bool force)
873 {
874         /* prealloc/delalloc exists only on regular files */
875         if (!S_ISREG(VFS_I(ip)->i_mode))
876                 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 &&
883             VFS_I(ip)->i_mapping->nrpages == 0 &&
884             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  */
907 int
908 xfs_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                  */
951                 if (need_iolock) {
952                         if (!xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL))
953                                 return -EAGAIN;
954                 }
955
956                 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate, 0, 0, 0,
957                                 &tp);
958                 if (error) {
959                         ASSERT(XFS_FORCED_SHUTDOWN(mp));
960                         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                          */
981                         xfs_trans_cancel(tp);
982                 } else {
983                         error = xfs_trans_commit(tp);
984                         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
995 int
996 xfs_alloc_file_space(
997         struct xfs_inode        *ip,
998         xfs_off_t               offset,
999         xfs_off_t               len,
1000         int                     alloc_type)
1001 {
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;
1014         struct xfs_defer_ops    dfops;
1015         uint                    qblocks, resblks, resrtextents;
1016         int                     error;
1017
1018         trace_xfs_alloc_file_space(ip);
1019
1020         if (XFS_FORCED_SHUTDOWN(mp))
1021                 return -EIO;
1022
1023         error = xfs_qm_dqattach(ip, 0);
1024         if (error)
1025                 return error;
1026
1027         if (len <= 0)
1028                 return -EINVAL;
1029
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                  */
1084                 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks,
1085                                 resrtextents, 0, &tp);
1086
1087                 /*
1088                  * Check for running out of space
1089                  */
1090                 if (error) {
1091                         /*
1092                          * Free the transaction structure.
1093                          */
1094                         ASSERT(error == -ENOSPC || XFS_FORCED_SHUTDOWN(mp));
1095                         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
1105                 xfs_defer_init(&dfops, &firstfsb);
1106                 error = xfs_bmapi_write(tp, ip, startoffset_fsb,
1107                                         allocatesize_fsb, alloc_type, &firstfsb,
1108                                         resblks, imapp, &nimaps, &dfops);
1109                 if (error)
1110                         goto error0;
1111
1112                 /*
1113                  * Complete the transaction
1114                  */
1115                 error = xfs_defer_finish(&tp, &dfops, NULL);
1116                 if (error)
1117                         goto error0;
1118
1119                 error = xfs_trans_commit(tp);
1120                 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1121                 if (error)
1122                         break;
1123
1124                 allocated_fsb = imapp->br_blockcount;
1125
1126                 if (nimaps == 0) {
1127                         error = -ENOSPC;
1128                         break;
1129                 }
1130
1131                 startoffset_fsb += allocated_fsb;
1132                 allocatesize_fsb -= allocated_fsb;
1133         }
1134
1135         return error;
1136
1137 error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
1138         xfs_defer_cancel(&dfops);
1139         xfs_trans_unreserve_quota_nblks(tp, ip, (long)qblocks, 0, quota_flag);
1140
1141 error1: /* Just cancel transaction */
1142         xfs_trans_cancel(tp);
1143         xfs_iunlock(ip, XFS_ILOCK_EXCL);
1144         return error;
1145 }
1146
1147 static int
1148 xfs_unmap_extent(
1149         struct xfs_inode        *ip,
1150         xfs_fileoff_t           startoffset_fsb,
1151         xfs_filblks_t           len_fsb,
1152         int                     *done)
1153 {
1154         struct xfs_mount        *mp = ip->i_mount;
1155         struct xfs_trans        *tp;
1156         struct xfs_defer_ops    dfops;
1157         xfs_fsblock_t           firstfsb;
1158         uint                    resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
1159         int                     error;
1160
1161         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;
1165         }
1166
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
1175         xfs_defer_init(&dfops, &firstfsb);
1176         error = xfs_bunmapi(tp, ip, startoffset_fsb, len_fsb, 0, 2, &firstfsb,
1177                         &dfops, done);
1178         if (error)
1179                 goto out_bmap_cancel;
1180
1181         error = xfs_defer_finish(&tp, &dfops, ip);
1182         if (error)
1183                 goto out_bmap_cancel;
1184
1185         error = xfs_trans_commit(tp);
1186 out_unlock:
1187         xfs_iunlock(ip, XFS_ILOCK_EXCL);
1188         return error;
1189
1190 out_bmap_cancel:
1191         xfs_defer_cancel(&dfops);
1192 out_trans_cancel:
1193         xfs_trans_cancel(tp);
1194         goto out_unlock;
1195 }
1196
1197 static int
1198 xfs_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
1238 static int
1239 xfs_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;
1261 }
1262
1263 int
1264 xfs_free_file_space(
1265         struct xfs_inode        *ip,
1266         xfs_off_t               offset,
1267         xfs_off_t               len)
1268 {
1269         struct xfs_mount        *mp = ip->i_mount;
1270         xfs_fileoff_t           startoffset_fsb;
1271         xfs_fileoff_t           endoffset_fsb;
1272         int                     done = 0, error;
1273
1274         trace_xfs_free_file_space(ip);
1275
1276         error = xfs_qm_dqattach(ip, 0);
1277         if (error)
1278                 return error;
1279
1280         if (len <= 0)   /* if nothing being freed */
1281                 return 0;
1282
1283         error = xfs_flush_unmap_range(ip, offset, len);
1284         if (error)
1285                 return error;
1286
1287         startoffset_fsb = XFS_B_TO_FSB(mp, offset);
1288         endoffset_fsb = XFS_B_TO_FSBT(mp, offset + len);
1289
1290         /*
1291          * 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.
1295          */
1296         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);
1300                 if (error)
1301                         return error;
1302         }
1303
1304         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                 }
1311         }
1312
1313         /*
1314          * 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.
1317          */
1318         return xfs_zero_range(ip, offset, len, NULL);
1319 }
1320
1321 /*
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  */
1325 int
1326 xfs_zero_file_space(
1327         struct xfs_inode        *ip,
1328         xfs_off_t               offset,
1329         xfs_off_t               len)
1330 {
1331         struct xfs_mount        *mp = ip->i_mount;
1332         uint                    blksize;
1333         int                     error;
1334
1335         trace_xfs_zero_file_space(ip);
1336
1337         blksize = 1 << mp->m_sb.sb_blocklog;
1338
1339         /*
1340          * 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.
1347          */
1348         error = xfs_free_file_space(ip, offset, len);
1349         if (error)
1350                 goto out;
1351
1352         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);
1356 out:
1357         return error;
1358
1359 }
1360
1361 /*
1362  * @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.
1368  */
1369 static int
1370 xfs_shift_file_space(
1371         struct xfs_inode        *ip,
1372         xfs_off_t               offset,
1373         xfs_off_t               len,
1374         enum shift_direction    direction)
1375 {
1376         int                     done = 0;
1377         struct xfs_mount        *mp = ip->i_mount;
1378         struct xfs_trans        *tp;
1379         int                     error;
1380         struct xfs_defer_ops    dfops;
1381         xfs_fsblock_t           first_block;
1382         xfs_fileoff_t           stop_fsb;
1383         xfs_fileoff_t           next_fsb;
1384         xfs_fileoff_t           shift_fsb;
1385
1386         ASSERT(direction == SHIFT_LEFT || direction == SHIFT_RIGHT);
1387
1388         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         }
1399
1400         shift_fsb = XFS_B_TO_FSB(mp, len);
1401
1402         /*
1403          * Trim eofblocks to avoid shifting uninitialized post-eof preallocation
1404          * into the accessible region of the file.
1405          */
1406         if (xfs_can_free_eofblocks(ip, true)) {
1407                 error = xfs_free_eofblocks(mp, ip, false);
1408                 if (error)
1409                         return error;
1410         }
1411
1412         /*
1413          * Writeback and invalidate cache for the remainder of the file as we're
1414          * about to shift down every extent from offset to EOF.
1415          */
1416         error = filemap_write_and_wait_range(VFS_I(ip)->i_mapping,
1417                                              offset, -1);
1418         if (error)
1419                 return error;
1420         error = invalidate_inode_pages2_range(VFS_I(ip)->i_mapping,
1421                                         offset >> PAGE_SHIFT, -1);
1422         if (error)
1423                 return error;
1424
1425         /*
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
1436         while (!error && !done) {
1437                 /*
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                  */
1443                 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write,
1444                                 XFS_DIOSTRAT_SPACE_RES(mp, 0), 0, 0, &tp);
1445                 if (error)
1446                         break;
1447
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)
1454                         goto out_trans_cancel;
1455
1456                 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
1457
1458                 xfs_defer_init(&dfops, &first_block);
1459
1460                 /*
1461                  * We are using the write transaction in which max 2 bmbt
1462                  * updates are allowed
1463                  */
1464                 error = xfs_bmap_shift_extents(tp, ip, &next_fsb, shift_fsb,
1465                                 &done, stop_fsb, &first_block, &dfops,
1466                                 direction, XFS_BMAP_MAX_SHIFT_EXTENTS);
1467                 if (error)
1468                         goto out_bmap_cancel;
1469
1470                 error = xfs_defer_finish(&tp, &dfops, NULL);
1471                 if (error)
1472                         goto out_bmap_cancel;
1473
1474                 error = xfs_trans_commit(tp);
1475         }
1476
1477         return error;
1478
1479 out_bmap_cancel:
1480         xfs_defer_cancel(&dfops);
1481 out_trans_cancel:
1482         xfs_trans_cancel(tp);
1483         return error;
1484 }
1485
1486 /*
1487  * 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  */
1498 int
1499 xfs_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  */
1528 int
1529 xfs_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 /*
1541  * 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  */
1560 static int
1561 xfs_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)
1569                 return -EINVAL;
1570
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)
1576                 return -EINVAL;
1577
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)
1585                 return -EINVAL;
1586
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))
1591                 return -EINVAL;
1592
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))
1597                 return -EINVAL;
1598
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))
1611                         return -EINVAL;
1612                 if (XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) <=
1613                     XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK))
1614                         return -EINVAL;
1615         }
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))
1621                         return -EINVAL;
1622                 if (XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) <=
1623                     XFS_IFORK_MAXEXT(tip, XFS_DATA_FORK))
1624                         return -EINVAL;
1625         }
1626
1627         return 0;
1628 }
1629
1630 static int
1631 xfs_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;
1644         return 0;
1645 }
1646
1647 int
1648 xfs_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;
1662         int             lock_flags;
1663
1664         /* XXX: we can't do this with rmap, will fix later */
1665         if (xfs_sb_version_hasrmapbt(&mp->m_sb))
1666                 return -EOPNOTSUPP;
1667
1668         tempifp = kmem_alloc(sizeof(xfs_ifork_t), KM_MAYFAIL);
1669         if (!tempifp) {
1670                 error = -ENOMEM;
1671                 goto out;
1672         }
1673
1674         /*
1675          * Lock the inodes against other IO, page faults and truncate to
1676          * begin with.  Then we can ensure the inodes are flushed and have no
1677          * page cache safely. Once we have done this we can take the ilocks and
1678          * do the rest of the checks.
1679          */
1680         lock_flags = XFS_IOLOCK_EXCL | XFS_MMAPLOCK_EXCL;
1681         xfs_lock_two_inodes(ip, tip, XFS_IOLOCK_EXCL);
1682         xfs_lock_two_inodes(ip, tip, XFS_MMAPLOCK_EXCL);
1683
1684         /* Verify that both files have the same format */
1685         if ((VFS_I(ip)->i_mode & S_IFMT) != (VFS_I(tip)->i_mode & S_IFMT)) {
1686                 error = -EINVAL;
1687                 goto out_unlock;
1688         }
1689
1690         /* Verify both files are either real-time or non-realtime */
1691         if (XFS_IS_REALTIME_INODE(ip) != XFS_IS_REALTIME_INODE(tip)) {
1692                 error = -EINVAL;
1693                 goto out_unlock;
1694         }
1695
1696         error = xfs_swap_extent_flush(ip);
1697         if (error)
1698                 goto out_unlock;
1699         error = xfs_swap_extent_flush(tip);
1700         if (error)
1701                 goto out_unlock;
1702
1703         error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
1704         if (error)
1705                 goto out_unlock;
1706
1707         /*
1708          * Lock and join the inodes to the tansaction so that transaction commit
1709          * or cancel will unlock the inodes from this point onwards.
1710          */
1711         xfs_lock_two_inodes(ip, tip, XFS_ILOCK_EXCL);
1712         lock_flags |= XFS_ILOCK_EXCL;
1713         xfs_trans_ijoin(tp, ip, lock_flags);
1714         xfs_trans_ijoin(tp, tip, lock_flags);
1715
1716
1717         /* Verify all data are being swapped */
1718         if (sxp->sx_offset != 0 ||
1719             sxp->sx_length != ip->i_d.di_size ||
1720             sxp->sx_length != tip->i_d.di_size) {
1721                 error = -EFAULT;
1722                 goto out_trans_cancel;
1723         }
1724
1725         trace_xfs_swap_extent_before(ip, 0);
1726         trace_xfs_swap_extent_before(tip, 1);
1727
1728         /* check inode formats now that data is flushed */
1729         error = xfs_swap_extents_check_format(ip, tip);
1730         if (error) {
1731                 xfs_notice(mp,
1732                     "%s: inode 0x%llx format is incompatible for exchanging.",
1733                                 __func__, ip->i_ino);
1734                 goto out_trans_cancel;
1735         }
1736
1737         /*
1738          * Compare the current change & modify times with that
1739          * passed in.  If they differ, we abort this swap.
1740          * This is the mechanism used to ensure the calling
1741          * process that the file was not changed out from
1742          * under it.
1743          */
1744         if ((sbp->bs_ctime.tv_sec != VFS_I(ip)->i_ctime.tv_sec) ||
1745             (sbp->bs_ctime.tv_nsec != VFS_I(ip)->i_ctime.tv_nsec) ||
1746             (sbp->bs_mtime.tv_sec != VFS_I(ip)->i_mtime.tv_sec) ||
1747             (sbp->bs_mtime.tv_nsec != VFS_I(ip)->i_mtime.tv_nsec)) {
1748                 error = -EBUSY;
1749                 goto out_trans_cancel;
1750         }
1751         /*
1752          * Count the number of extended attribute blocks
1753          */
1754         if ( ((XFS_IFORK_Q(ip) != 0) && (ip->i_d.di_anextents > 0)) &&
1755              (ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
1756                 error = xfs_bmap_count_blocks(tp, ip, XFS_ATTR_FORK, &aforkblks);
1757                 if (error)
1758                         goto out_trans_cancel;
1759         }
1760         if ( ((XFS_IFORK_Q(tip) != 0) && (tip->i_d.di_anextents > 0)) &&
1761              (tip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
1762                 error = xfs_bmap_count_blocks(tp, tip, XFS_ATTR_FORK,
1763                         &taforkblks);
1764                 if (error)
1765                         goto out_trans_cancel;
1766         }
1767
1768         /*
1769          * Before we've swapped the forks, lets set the owners of the forks
1770          * appropriately. We have to do this as we are demand paging the btree
1771          * buffers, and so the validation done on read will expect the owner
1772          * field to be correctly set. Once we change the owners, we can swap the
1773          * inode forks.
1774          *
1775          * Note the trickiness in setting the log flags - we set the owner log
1776          * flag on the opposite inode (i.e. the inode we are setting the new
1777          * owner to be) because once we swap the forks and log that, log
1778          * recovery is going to see the fork as owned by the swapped inode,
1779          * not the pre-swapped inodes.
1780          */
1781         src_log_flags = XFS_ILOG_CORE;
1782         target_log_flags = XFS_ILOG_CORE;
1783         if (ip->i_d.di_version == 3 &&
1784             ip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
1785                 target_log_flags |= XFS_ILOG_DOWNER;
1786                 error = xfs_bmbt_change_owner(tp, ip, XFS_DATA_FORK,
1787                                               tip->i_ino, NULL);
1788                 if (error)
1789                         goto out_trans_cancel;
1790         }
1791
1792         if (tip->i_d.di_version == 3 &&
1793             tip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
1794                 src_log_flags |= XFS_ILOG_DOWNER;
1795                 error = xfs_bmbt_change_owner(tp, tip, XFS_DATA_FORK,
1796                                               ip->i_ino, NULL);
1797                 if (error)
1798                         goto out_trans_cancel;
1799         }
1800
1801         /*
1802          * Swap the data forks of the inodes
1803          */
1804         ifp = &ip->i_df;
1805         tifp = &tip->i_df;
1806         *tempifp = *ifp;        /* struct copy */
1807         *ifp = *tifp;           /* struct copy */
1808         *tifp = *tempifp;       /* struct copy */
1809
1810         /*
1811          * Fix the on-disk inode values
1812          */
1813         tmp = (__uint64_t)ip->i_d.di_nblocks;
1814         ip->i_d.di_nblocks = tip->i_d.di_nblocks - taforkblks + aforkblks;
1815         tip->i_d.di_nblocks = tmp + taforkblks - aforkblks;
1816
1817         tmp = (__uint64_t) ip->i_d.di_nextents;
1818         ip->i_d.di_nextents = tip->i_d.di_nextents;
1819         tip->i_d.di_nextents = tmp;
1820
1821         tmp = (__uint64_t) ip->i_d.di_format;
1822         ip->i_d.di_format = tip->i_d.di_format;
1823         tip->i_d.di_format = tmp;
1824
1825         /*
1826          * The extents in the source inode could still contain speculative
1827          * preallocation beyond EOF (e.g. the file is open but not modified
1828          * while defrag is in progress). In that case, we need to copy over the
1829          * number of delalloc blocks the data fork in the source inode is
1830          * tracking beyond EOF so that when the fork is truncated away when the
1831          * temporary inode is unlinked we don't underrun the i_delayed_blks
1832          * counter on that inode.
1833          */
1834         ASSERT(tip->i_delayed_blks == 0);
1835         tip->i_delayed_blks = ip->i_delayed_blks;
1836         ip->i_delayed_blks = 0;
1837
1838         switch (ip->i_d.di_format) {
1839         case XFS_DINODE_FMT_EXTENTS:
1840                 /* If the extents fit in the inode, fix the
1841                  * pointer.  Otherwise it's already NULL or
1842                  * pointing to the extent.
1843                  */
1844                 if (ip->i_d.di_nextents <= XFS_INLINE_EXTS) {
1845                         ifp->if_u1.if_extents =
1846                                 ifp->if_u2.if_inline_ext;
1847                 }
1848                 src_log_flags |= XFS_ILOG_DEXT;
1849                 break;
1850         case XFS_DINODE_FMT_BTREE:
1851                 ASSERT(ip->i_d.di_version < 3 ||
1852                        (src_log_flags & XFS_ILOG_DOWNER));
1853                 src_log_flags |= XFS_ILOG_DBROOT;
1854                 break;
1855         }
1856
1857         switch (tip->i_d.di_format) {
1858         case XFS_DINODE_FMT_EXTENTS:
1859                 /* If the extents fit in the inode, fix the
1860                  * pointer.  Otherwise it's already NULL or
1861                  * pointing to the extent.
1862                  */
1863                 if (tip->i_d.di_nextents <= XFS_INLINE_EXTS) {
1864                         tifp->if_u1.if_extents =
1865                                 tifp->if_u2.if_inline_ext;
1866                 }
1867                 target_log_flags |= XFS_ILOG_DEXT;
1868                 break;
1869         case XFS_DINODE_FMT_BTREE:
1870                 target_log_flags |= XFS_ILOG_DBROOT;
1871                 ASSERT(tip->i_d.di_version < 3 ||
1872                        (target_log_flags & XFS_ILOG_DOWNER));
1873                 break;
1874         }
1875
1876         xfs_trans_log_inode(tp, ip,  src_log_flags);
1877         xfs_trans_log_inode(tp, tip, target_log_flags);
1878
1879         /*
1880          * If this is a synchronous mount, make sure that the
1881          * transaction goes to disk before returning to the user.
1882          */
1883         if (mp->m_flags & XFS_MOUNT_WSYNC)
1884                 xfs_trans_set_sync(tp);
1885
1886         error = xfs_trans_commit(tp);
1887
1888         trace_xfs_swap_extent_after(ip, 0);
1889         trace_xfs_swap_extent_after(tip, 1);
1890 out:
1891         kmem_free(tempifp);
1892         return error;
1893
1894 out_unlock:
1895         xfs_iunlock(ip, lock_flags);
1896         xfs_iunlock(tip, lock_flags);
1897         goto out;
1898
1899 out_trans_cancel:
1900         xfs_trans_cancel(tp);
1901         goto out;
1902 }