blob: b47555cfbd8fe3f81c7c4594f3d478db7f75d8f2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11003 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_trans.h"
25#include "xfs_sb.h"
26#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_dir2.h"
Nathan Scotta844f452005-11-02 14:38:42 +110028#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110030#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_itable.h"
Nathan Scotta844f452005-11-02 14:38:42 +110037#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "xfs_extfree_item.h"
39#include "xfs_alloc.h"
40#include "xfs_bmap.h"
41#include "xfs_rtalloc.h"
42#include "xfs_error.h"
Nathan Scottd8cc8902005-11-02 10:34:53 +110043#include "xfs_attr_leaf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include "xfs_rw.h"
45#include "xfs_quota.h"
46#include "xfs_trans_space.h"
47#include "xfs_buf_item.h"
David Chinner2a82b8b2007-07-11 11:09:12 +100048#include "xfs_filestream.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100049#include "xfs_vnodeops.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000050#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053kmem_zone_t *xfs_bmap_free_item_zone;
54
55/*
56 * Prototypes for internal bmap routines.
57 */
58
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +000059#ifdef DEBUG
60STATIC void
61xfs_bmap_check_leaf_extents(
62 struct xfs_btree_cur *cur,
63 struct xfs_inode *ip,
64 int whichfork);
65#else
66#define xfs_bmap_check_leaf_extents(cur, ip, whichfork) do { } while (0)
67#endif
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70/*
71 * Called from xfs_bmap_add_attrfork to handle extents format files.
72 */
73STATIC int /* error */
74xfs_bmap_add_attrfork_extents(
75 xfs_trans_t *tp, /* transaction pointer */
76 xfs_inode_t *ip, /* incore inode pointer */
77 xfs_fsblock_t *firstblock, /* first block allocated */
78 xfs_bmap_free_t *flist, /* blocks to free at commit */
79 int *flags); /* inode logging flags */
80
81/*
82 * Called from xfs_bmap_add_attrfork to handle local format files.
83 */
84STATIC int /* error */
85xfs_bmap_add_attrfork_local(
86 xfs_trans_t *tp, /* transaction pointer */
87 xfs_inode_t *ip, /* incore inode pointer */
88 xfs_fsblock_t *firstblock, /* first block allocated */
89 xfs_bmap_free_t *flist, /* blocks to free at commit */
90 int *flags); /* inode logging flags */
91
92/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 * xfs_bmap_alloc is called by xfs_bmapi to allocate an extent for a file.
94 * It figures out where to ask the underlying allocator to put the new extent.
95 */
96STATIC int /* error */
97xfs_bmap_alloc(
98 xfs_bmalloca_t *ap); /* bmap alloc argument struct */
99
100/*
101 * Transform a btree format file with only one leaf node, where the
102 * extents list will fit in the inode, into an extents format file.
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100103 * Since the file extents are already in-core, all we have to do is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 * give up the space for the btree root and pitch the leaf block.
105 */
106STATIC int /* error */
107xfs_bmap_btree_to_extents(
108 xfs_trans_t *tp, /* transaction pointer */
109 xfs_inode_t *ip, /* incore inode pointer */
110 xfs_btree_cur_t *cur, /* btree cursor */
111 int *logflagsp, /* inode logging flags */
112 int whichfork); /* data or attr fork */
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * Remove the entry "free" from the free item list. Prev points to the
116 * previous entry, unless "free" is the head of the list.
117 */
118STATIC void
119xfs_bmap_del_free(
120 xfs_bmap_free_t *flist, /* free item list header */
121 xfs_bmap_free_item_t *prev, /* previous item on list, if any */
122 xfs_bmap_free_item_t *free); /* list item to be freed */
123
124/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 * Convert an extents-format file into a btree-format file.
126 * The new file will have a root block (in the inode) and a single child block.
127 */
128STATIC int /* error */
129xfs_bmap_extents_to_btree(
130 xfs_trans_t *tp, /* transaction pointer */
131 xfs_inode_t *ip, /* incore inode pointer */
132 xfs_fsblock_t *firstblock, /* first-block-allocated */
133 xfs_bmap_free_t *flist, /* blocks freed in xaction */
134 xfs_btree_cur_t **curp, /* cursor returned to caller */
135 int wasdel, /* converting a delayed alloc */
136 int *logflagsp, /* inode logging flags */
137 int whichfork); /* data or attr fork */
138
139/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 * Convert a local file to an extents file.
141 * This code is sort of bogus, since the file data needs to get
142 * logged so it won't be lost. The bmap-level manipulations are ok, though.
143 */
144STATIC int /* error */
145xfs_bmap_local_to_extents(
146 xfs_trans_t *tp, /* transaction pointer */
147 xfs_inode_t *ip, /* incore inode pointer */
148 xfs_fsblock_t *firstblock, /* first block allocated in xaction */
149 xfs_extlen_t total, /* total blocks needed by transaction */
150 int *logflagsp, /* inode logging flags */
151 int whichfork); /* data or attr fork */
152
153/*
154 * Search the extents list for the inode, for the extent containing bno.
155 * If bno lies in a hole, point to the next entry. If bno lies past eof,
156 * *eofp will be set, and *prevp will contain the last entry (null if none).
157 * Else, *lastxp will be set to the index of the found
158 * entry; *gotp will contain the entry.
159 */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000160STATIC xfs_bmbt_rec_host_t * /* pointer to found extent entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161xfs_bmap_search_extents(
162 xfs_inode_t *ip, /* incore inode pointer */
163 xfs_fileoff_t bno, /* block number searched for */
164 int whichfork, /* data or attr fork */
165 int *eofp, /* out: end of file found */
166 xfs_extnum_t *lastxp, /* out: last extent index */
167 xfs_bmbt_irec_t *gotp, /* out: extent entry found */
168 xfs_bmbt_irec_t *prevp); /* out: previous extent entry found */
169
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000170/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 * Compute the worst-case number of indirect blocks that will be used
172 * for ip's delayed extent of length "len".
173 */
174STATIC xfs_filblks_t
175xfs_bmap_worst_indlen(
176 xfs_inode_t *ip, /* incore inode pointer */
177 xfs_filblks_t len); /* delayed extent length */
178
179#ifdef DEBUG
180/*
181 * Perform various validation checks on the values being returned
182 * from xfs_bmapi().
183 */
184STATIC void
185xfs_bmap_validate_ret(
186 xfs_fileoff_t bno,
187 xfs_filblks_t len,
188 int flags,
189 xfs_bmbt_irec_t *mval,
190 int nmap,
191 int ret_nmap);
192#else
193#define xfs_bmap_validate_ret(bno,len,flags,mval,onmap,nmap)
194#endif /* DEBUG */
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196STATIC int
197xfs_bmap_count_tree(
198 xfs_mount_t *mp,
199 xfs_trans_t *tp,
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100200 xfs_ifork_t *ifp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 xfs_fsblock_t blockno,
202 int levelin,
203 int *count);
204
Ruben Porrasc94312d2008-08-13 16:52:25 +1000205STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206xfs_bmap_count_leaves(
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100207 xfs_ifork_t *ifp,
208 xfs_extnum_t idx,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 int numrecs,
210 int *count);
211
Ruben Porrasc94312d2008-08-13 16:52:25 +1000212STATIC void
Yingping Lu91e11082005-11-02 15:10:24 +1100213xfs_bmap_disk_count_leaves(
Christoph Hellwig136341b2008-10-30 17:11:40 +1100214 struct xfs_mount *mp,
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100215 struct xfs_btree_block *block,
Yingping Lu91e11082005-11-02 15:10:24 +1100216 int numrecs,
217 int *count);
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219/*
220 * Bmap internal routines.
221 */
222
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100223STATIC int /* error */
224xfs_bmbt_lookup_eq(
225 struct xfs_btree_cur *cur,
226 xfs_fileoff_t off,
227 xfs_fsblock_t bno,
228 xfs_filblks_t len,
229 int *stat) /* success/failure */
230{
231 cur->bc_rec.b.br_startoff = off;
232 cur->bc_rec.b.br_startblock = bno;
233 cur->bc_rec.b.br_blockcount = len;
234 return xfs_btree_lookup(cur, XFS_LOOKUP_EQ, stat);
235}
236
237STATIC int /* error */
238xfs_bmbt_lookup_ge(
239 struct xfs_btree_cur *cur,
240 xfs_fileoff_t off,
241 xfs_fsblock_t bno,
242 xfs_filblks_t len,
243 int *stat) /* success/failure */
244{
245 cur->bc_rec.b.br_startoff = off;
246 cur->bc_rec.b.br_startblock = bno;
247 cur->bc_rec.b.br_blockcount = len;
248 return xfs_btree_lookup(cur, XFS_LOOKUP_GE, stat);
249}
250
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100251/*
252* Update the record referred to by cur to the value given
253 * by [off, bno, len, state].
254 * This either works (return 0) or gets an EFSCORRUPTED error.
255 */
256STATIC int
257xfs_bmbt_update(
258 struct xfs_btree_cur *cur,
259 xfs_fileoff_t off,
260 xfs_fsblock_t bno,
261 xfs_filblks_t len,
262 xfs_exntst_t state)
263{
264 union xfs_btree_rec rec;
265
266 xfs_bmbt_disk_set_allf(&rec.bmbt, off, bno, len, state);
267 return xfs_btree_update(cur, &rec);
268}
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270/*
271 * Called from xfs_bmap_add_attrfork to handle btree format files.
272 */
273STATIC int /* error */
274xfs_bmap_add_attrfork_btree(
275 xfs_trans_t *tp, /* transaction pointer */
276 xfs_inode_t *ip, /* incore inode pointer */
277 xfs_fsblock_t *firstblock, /* first block allocated */
278 xfs_bmap_free_t *flist, /* blocks to free at commit */
279 int *flags) /* inode logging flags */
280{
281 xfs_btree_cur_t *cur; /* btree cursor */
282 int error; /* error return value */
283 xfs_mount_t *mp; /* file system mount struct */
284 int stat; /* newroot status */
285
286 mp = ip->i_mount;
287 if (ip->i_df.if_broot_bytes <= XFS_IFORK_DSIZE(ip))
288 *flags |= XFS_ILOG_DBROOT;
289 else {
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100290 cur = xfs_bmbt_init_cursor(mp, tp, ip, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 cur->bc_private.b.flist = flist;
292 cur->bc_private.b.firstblock = *firstblock;
293 if ((error = xfs_bmbt_lookup_ge(cur, 0, 0, 0, &stat)))
294 goto error0;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +1000295 /* must be at least one entry */
296 XFS_WANT_CORRUPTED_GOTO(stat == 1, error0);
Christoph Hellwigea77b0a2008-10-30 16:57:28 +1100297 if ((error = xfs_btree_new_iroot(cur, flags, &stat)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 goto error0;
299 if (stat == 0) {
300 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
301 return XFS_ERROR(ENOSPC);
302 }
303 *firstblock = cur->bc_private.b.firstblock;
304 cur->bc_private.b.allocated = 0;
305 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
306 }
307 return 0;
308error0:
309 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
310 return error;
311}
312
313/*
314 * Called from xfs_bmap_add_attrfork to handle extents format files.
315 */
316STATIC int /* error */
317xfs_bmap_add_attrfork_extents(
318 xfs_trans_t *tp, /* transaction pointer */
319 xfs_inode_t *ip, /* incore inode pointer */
320 xfs_fsblock_t *firstblock, /* first block allocated */
321 xfs_bmap_free_t *flist, /* blocks to free at commit */
322 int *flags) /* inode logging flags */
323{
324 xfs_btree_cur_t *cur; /* bmap btree cursor */
325 int error; /* error return value */
326
327 if (ip->i_d.di_nextents * sizeof(xfs_bmbt_rec_t) <= XFS_IFORK_DSIZE(ip))
328 return 0;
329 cur = NULL;
330 error = xfs_bmap_extents_to_btree(tp, ip, firstblock, flist, &cur, 0,
331 flags, XFS_DATA_FORK);
332 if (cur) {
333 cur->bc_private.b.allocated = 0;
334 xfs_btree_del_cursor(cur,
335 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
336 }
337 return error;
338}
339
340/*
341 * Called from xfs_bmap_add_attrfork to handle local format files.
342 */
343STATIC int /* error */
344xfs_bmap_add_attrfork_local(
345 xfs_trans_t *tp, /* transaction pointer */
346 xfs_inode_t *ip, /* incore inode pointer */
347 xfs_fsblock_t *firstblock, /* first block allocated */
348 xfs_bmap_free_t *flist, /* blocks to free at commit */
349 int *flags) /* inode logging flags */
350{
351 xfs_da_args_t dargs; /* args for dir/attr code */
352 int error; /* error return value */
353 xfs_mount_t *mp; /* mount structure pointer */
354
355 if (ip->i_df.if_bytes <= XFS_IFORK_DSIZE(ip))
356 return 0;
Al Viroabbede12011-07-26 02:31:30 -0400357 if (S_ISDIR(ip->i_d.di_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 mp = ip->i_mount;
359 memset(&dargs, 0, sizeof(dargs));
360 dargs.dp = ip;
361 dargs.firstblock = firstblock;
362 dargs.flist = flist;
363 dargs.total = mp->m_dirblkfsbs;
364 dargs.whichfork = XFS_DATA_FORK;
365 dargs.trans = tp;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000366 error = xfs_dir2_sf_to_block(&dargs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 } else
368 error = xfs_bmap_local_to_extents(tp, ip, firstblock, 1, flags,
369 XFS_DATA_FORK);
370 return error;
371}
372
373/*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +0000374 * Convert a delayed allocation to a real allocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 */
376STATIC int /* error */
377xfs_bmap_add_extent_delay_real(
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200378 struct xfs_trans *tp, /* transaction pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 xfs_inode_t *ip, /* incore inode pointer */
Christoph Hellwigec90c552011-05-23 08:52:53 +0000380 xfs_extnum_t *idx, /* extent number to update/insert */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 xfs_btree_cur_t **curp, /* if *curp is null, not a btree */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100382 xfs_bmbt_irec_t *new, /* new data to add to file extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 xfs_fsblock_t *first, /* pointer to firstblock variable */
384 xfs_bmap_free_t *flist, /* list of extents to be freed */
Christoph Hellwig54893272011-05-11 15:04:03 +0000385 int *logflagsp) /* inode logging flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 xfs_btree_cur_t *cur; /* btree cursor */
388 int diff; /* temp value */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000389 xfs_bmbt_rec_host_t *ep; /* extent entry for idx */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 int i; /* temp state */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100392 xfs_ifork_t *ifp; /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 xfs_fileoff_t new_endoff; /* end offset of new entry */
394 xfs_bmbt_irec_t r[3]; /* neighbor extent entries */
395 /* left is 0, right is 1, prev is 2 */
396 int rval=0; /* return value (logging flags) */
397 int state = 0;/* state bits, accessed thru macros */
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +0000398 xfs_filblks_t da_new; /* new count del alloc blocks used */
399 xfs_filblks_t da_old; /* old count del alloc blocks used */
400 xfs_filblks_t temp=0; /* value for da_new calculations */
401 xfs_filblks_t temp2=0;/* value for da_new calculations */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 int tmp_rval; /* partial logging flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +0000404 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
405 cur = *curp;
406
407 ASSERT(*idx >= 0);
408 ASSERT(*idx <= ifp->if_bytes / sizeof(struct xfs_bmbt_rec));
409 ASSERT(!isnullstartblock(new->br_startblock));
410 ASSERT(!cur || (cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL));
411
412 XFS_STATS_INC(xs_add_exlist);
413
414 *logflagsp = 0;
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416#define LEFT r[0]
417#define RIGHT r[1]
418#define PREV r[2]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 /*
421 * Set up a bunch of variables to make the tests simpler.
422 */
Christoph Hellwigec90c552011-05-23 08:52:53 +0000423 ep = xfs_iext_get_ext(ifp, *idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 xfs_bmbt_get_all(ep, &PREV);
425 new_endoff = new->br_startoff + new->br_blockcount;
426 ASSERT(PREV.br_startoff <= new->br_startoff);
427 ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff);
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000428
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +0000429 da_old = startblockval(PREV.br_startblock);
430 da_new = 0;
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 /*
433 * Set flags determining what part of the previous delayed allocation
434 * extent is being replaced by a real allocation.
435 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000436 if (PREV.br_startoff == new->br_startoff)
437 state |= BMAP_LEFT_FILLING;
438 if (PREV.br_startoff + PREV.br_blockcount == new_endoff)
439 state |= BMAP_RIGHT_FILLING;
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 /*
442 * Check and set flags if this segment has a left neighbor.
443 * Don't set contiguous if the combined extent would be too large.
444 */
Christoph Hellwigec90c552011-05-23 08:52:53 +0000445 if (*idx > 0) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000446 state |= BMAP_LEFT_VALID;
Christoph Hellwigec90c552011-05-23 08:52:53 +0000447 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx - 1), &LEFT);
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000448
449 if (isnullstartblock(LEFT.br_startblock))
450 state |= BMAP_LEFT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000452
453 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
454 LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff &&
455 LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock &&
456 LEFT.br_state == new->br_state &&
457 LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN)
458 state |= BMAP_LEFT_CONTIG;
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 /*
461 * Check and set flags if this segment has a right neighbor.
462 * Don't set contiguous if the combined extent would be too large.
463 * Also check for all-three-contiguous being too large.
464 */
Christoph Hellwigec90c552011-05-23 08:52:53 +0000465 if (*idx < ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t) - 1) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000466 state |= BMAP_RIGHT_VALID;
Christoph Hellwigec90c552011-05-23 08:52:53 +0000467 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx + 1), &RIGHT);
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000468
469 if (isnullstartblock(RIGHT.br_startblock))
470 state |= BMAP_RIGHT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000472
473 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
474 new_endoff == RIGHT.br_startoff &&
475 new->br_startblock + new->br_blockcount == RIGHT.br_startblock &&
476 new->br_state == RIGHT.br_state &&
477 new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN &&
478 ((state & (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
479 BMAP_RIGHT_FILLING)) !=
480 (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
481 BMAP_RIGHT_FILLING) ||
482 LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount
483 <= MAXEXTLEN))
484 state |= BMAP_RIGHT_CONTIG;
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 error = 0;
487 /*
488 * Switch out based on the FILLING and CONTIG state bits.
489 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000490 switch (state & (BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
491 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG)) {
492 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
493 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 /*
495 * Filling in all of a previously delayed allocation extent.
496 * The left and right neighbors are both contiguous with new.
497 */
Christoph Hellwigec90c552011-05-23 08:52:53 +0000498 --*idx;
499 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
500 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 LEFT.br_blockcount + PREV.br_blockcount +
502 RIGHT.br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +0000503 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000504
Christoph Hellwigec90c552011-05-23 08:52:53 +0000505 xfs_iext_remove(ip, *idx + 1, 2, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 ip->i_d.di_nextents--;
507 if (cur == NULL)
508 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
509 else {
510 rval = XFS_ILOG_CORE;
511 if ((error = xfs_bmbt_lookup_eq(cur, RIGHT.br_startoff,
512 RIGHT.br_startblock,
513 RIGHT.br_blockcount, &i)))
514 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +1000515 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100516 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +1000518 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +1100519 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +1000521 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if ((error = xfs_bmbt_update(cur, LEFT.br_startoff,
523 LEFT.br_startblock,
524 LEFT.br_blockcount +
525 PREV.br_blockcount +
526 RIGHT.br_blockcount, LEFT.br_state)))
527 goto done;
528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 break;
530
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000531 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 /*
533 * Filling in all of a previously delayed allocation extent.
534 * The left neighbor is contiguous, the right is not.
535 */
Christoph Hellwigec90c552011-05-23 08:52:53 +0000536 --*idx;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000537
Christoph Hellwigec90c552011-05-23 08:52:53 +0000538 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
539 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx),
540 LEFT.br_blockcount + PREV.br_blockcount);
541 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
542
543 xfs_iext_remove(ip, *idx + 1, 1, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (cur == NULL)
545 rval = XFS_ILOG_DEXT;
546 else {
547 rval = 0;
548 if ((error = xfs_bmbt_lookup_eq(cur, LEFT.br_startoff,
549 LEFT.br_startblock, LEFT.br_blockcount,
550 &i)))
551 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +1000552 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if ((error = xfs_bmbt_update(cur, LEFT.br_startoff,
554 LEFT.br_startblock,
555 LEFT.br_blockcount +
556 PREV.br_blockcount, LEFT.br_state)))
557 goto done;
558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 break;
560
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000561 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 /*
563 * Filling in all of a previously delayed allocation extent.
564 * The right neighbor is contiguous, the left is not.
565 */
Christoph Hellwigec90c552011-05-23 08:52:53 +0000566 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 xfs_bmbt_set_startblock(ep, new->br_startblock);
568 xfs_bmbt_set_blockcount(ep,
569 PREV.br_blockcount + RIGHT.br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +0000570 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000571
Christoph Hellwigec90c552011-05-23 08:52:53 +0000572 xfs_iext_remove(ip, *idx + 1, 1, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (cur == NULL)
574 rval = XFS_ILOG_DEXT;
575 else {
576 rval = 0;
577 if ((error = xfs_bmbt_lookup_eq(cur, RIGHT.br_startoff,
578 RIGHT.br_startblock,
579 RIGHT.br_blockcount, &i)))
580 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +1000581 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if ((error = xfs_bmbt_update(cur, PREV.br_startoff,
583 new->br_startblock,
584 PREV.br_blockcount +
585 RIGHT.br_blockcount, PREV.br_state)))
586 goto done;
587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 break;
589
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000590 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 /*
592 * Filling in all of a previously delayed allocation extent.
593 * Neither the left nor right neighbors are contiguous with
594 * the new one.
595 */
Christoph Hellwigec90c552011-05-23 08:52:53 +0000596 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 xfs_bmbt_set_startblock(ep, new->br_startblock);
Christoph Hellwigec90c552011-05-23 08:52:53 +0000598 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 ip->i_d.di_nextents++;
601 if (cur == NULL)
602 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
603 else {
604 rval = XFS_ILOG_CORE;
605 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
606 new->br_startblock, new->br_blockcount,
607 &i)))
608 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +1000609 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 cur->bc_rec.b.br_state = XFS_EXT_NORM;
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100611 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +1000613 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 break;
616
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000617 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 /*
619 * Filling in the first part of a previous delayed allocation.
620 * The left neighbor is contiguous.
621 */
Christoph Hellwigec90c552011-05-23 08:52:53 +0000622 trace_xfs_bmap_pre_update(ip, *idx - 1, state, _THIS_IP_);
623 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx - 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 LEFT.br_blockcount + new->br_blockcount);
625 xfs_bmbt_set_startoff(ep,
626 PREV.br_startoff + new->br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +0000627 trace_xfs_bmap_post_update(ip, *idx - 1, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 temp = PREV.br_blockcount - new->br_blockcount;
Christoph Hellwigec90c552011-05-23 08:52:53 +0000630 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 xfs_bmbt_set_blockcount(ep, temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 if (cur == NULL)
633 rval = XFS_ILOG_DEXT;
634 else {
635 rval = 0;
636 if ((error = xfs_bmbt_lookup_eq(cur, LEFT.br_startoff,
637 LEFT.br_startblock, LEFT.br_blockcount,
638 &i)))
639 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +1000640 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if ((error = xfs_bmbt_update(cur, LEFT.br_startoff,
642 LEFT.br_startblock,
643 LEFT.br_blockcount +
644 new->br_blockcount,
645 LEFT.br_state)))
646 goto done;
647 }
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +0000648 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
Eric Sandeen9d87c312009-01-14 23:22:07 -0600649 startblockval(PREV.br_startblock));
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +0000650 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
Christoph Hellwigec90c552011-05-23 08:52:53 +0000651 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
652
653 --*idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 break;
655
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000656 case BMAP_LEFT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /*
658 * Filling in the first part of a previous delayed allocation.
659 * The left neighbor is not contiguous.
660 */
Christoph Hellwigec90c552011-05-23 08:52:53 +0000661 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 xfs_bmbt_set_startoff(ep, new_endoff);
663 temp = PREV.br_blockcount - new->br_blockcount;
664 xfs_bmbt_set_blockcount(ep, temp);
Christoph Hellwigec90c552011-05-23 08:52:53 +0000665 xfs_iext_insert(ip, *idx, 1, new, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 ip->i_d.di_nextents++;
667 if (cur == NULL)
668 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
669 else {
670 rval = XFS_ILOG_CORE;
671 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
672 new->br_startblock, new->br_blockcount,
673 &i)))
674 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +1000675 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 cur->bc_rec.b.br_state = XFS_EXT_NORM;
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100677 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +1000679 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
681 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
682 ip->i_d.di_nextents > ip->i_df.if_ext_max) {
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200683 error = xfs_bmap_extents_to_btree(tp, ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 first, flist, &cur, 1, &tmp_rval,
685 XFS_DATA_FORK);
686 rval |= tmp_rval;
687 if (error)
688 goto done;
689 }
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +0000690 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
Eric Sandeen9d87c312009-01-14 23:22:07 -0600691 startblockval(PREV.br_startblock) -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 (cur ? cur->bc_private.b.allocated : 0));
Christoph Hellwigec90c552011-05-23 08:52:53 +0000693 ep = xfs_iext_get_ext(ifp, *idx + 1);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +0000694 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
Christoph Hellwigec90c552011-05-23 08:52:53 +0000695 trace_xfs_bmap_post_update(ip, *idx + 1, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 break;
697
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000698 case BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 /*
700 * Filling in the last part of a previous delayed allocation.
701 * The right neighbor is contiguous with the new allocation.
702 */
703 temp = PREV.br_blockcount - new->br_blockcount;
Christoph Hellwigec90c552011-05-23 08:52:53 +0000704 trace_xfs_bmap_pre_update(ip, *idx + 1, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 xfs_bmbt_set_blockcount(ep, temp);
Christoph Hellwigec90c552011-05-23 08:52:53 +0000706 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, *idx + 1),
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100707 new->br_startoff, new->br_startblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 new->br_blockcount + RIGHT.br_blockcount,
709 RIGHT.br_state);
Christoph Hellwigec90c552011-05-23 08:52:53 +0000710 trace_xfs_bmap_post_update(ip, *idx + 1, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (cur == NULL)
712 rval = XFS_ILOG_DEXT;
713 else {
714 rval = 0;
715 if ((error = xfs_bmbt_lookup_eq(cur, RIGHT.br_startoff,
716 RIGHT.br_startblock,
717 RIGHT.br_blockcount, &i)))
718 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +1000719 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if ((error = xfs_bmbt_update(cur, new->br_startoff,
721 new->br_startblock,
722 new->br_blockcount +
723 RIGHT.br_blockcount,
724 RIGHT.br_state)))
725 goto done;
726 }
Christoph Hellwigec90c552011-05-23 08:52:53 +0000727
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +0000728 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
Eric Sandeen9d87c312009-01-14 23:22:07 -0600729 startblockval(PREV.br_startblock));
Christoph Hellwigec90c552011-05-23 08:52:53 +0000730 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +0000731 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
Christoph Hellwigec90c552011-05-23 08:52:53 +0000732 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
733
734 ++*idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 break;
736
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000737 case BMAP_RIGHT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 /*
739 * Filling in the last part of a previous delayed allocation.
740 * The right neighbor is not contiguous.
741 */
742 temp = PREV.br_blockcount - new->br_blockcount;
Christoph Hellwigec90c552011-05-23 08:52:53 +0000743 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 xfs_bmbt_set_blockcount(ep, temp);
Christoph Hellwigec90c552011-05-23 08:52:53 +0000745 xfs_iext_insert(ip, *idx + 1, 1, new, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 ip->i_d.di_nextents++;
747 if (cur == NULL)
748 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
749 else {
750 rval = XFS_ILOG_CORE;
751 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
752 new->br_startblock, new->br_blockcount,
753 &i)))
754 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +1000755 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 cur->bc_rec.b.br_state = XFS_EXT_NORM;
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100757 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +1000759 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 }
761 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
762 ip->i_d.di_nextents > ip->i_df.if_ext_max) {
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200763 error = xfs_bmap_extents_to_btree(tp, ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 first, flist, &cur, 1, &tmp_rval,
765 XFS_DATA_FORK);
766 rval |= tmp_rval;
767 if (error)
768 goto done;
769 }
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +0000770 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
Eric Sandeen9d87c312009-01-14 23:22:07 -0600771 startblockval(PREV.br_startblock) -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 (cur ? cur->bc_private.b.allocated : 0));
Christoph Hellwigec90c552011-05-23 08:52:53 +0000773 ep = xfs_iext_get_ext(ifp, *idx);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +0000774 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
Christoph Hellwigec90c552011-05-23 08:52:53 +0000775 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
776
777 ++*idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 break;
779
780 case 0:
781 /*
782 * Filling in the middle part of a previous delayed allocation.
783 * Contiguity is impossible here.
784 * This case is avoided almost all the time.
bpm@sgi.com24446fc2011-01-19 17:41:58 +0000785 *
786 * We start with a delayed allocation:
787 *
788 * +ddddddddddddddddddddddddddddddddddddddddddddddddddddddd+
789 * PREV @ idx
790 *
791 * and we are allocating:
792 * +rrrrrrrrrrrrrrrrr+
793 * new
794 *
795 * and we set it up for insertion as:
796 * +ddddddddddddddddddd+rrrrrrrrrrrrrrrrr+ddddddddddddddddd+
797 * new
798 * PREV @ idx LEFT RIGHT
799 * inserted at idx + 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 */
801 temp = new->br_startoff - PREV.br_startoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 temp2 = PREV.br_startoff + PREV.br_blockcount - new_endoff;
Christoph Hellwigec90c552011-05-23 08:52:53 +0000803 trace_xfs_bmap_pre_update(ip, *idx, 0, _THIS_IP_);
bpm@sgi.com24446fc2011-01-19 17:41:58 +0000804 xfs_bmbt_set_blockcount(ep, temp); /* truncate PREV */
805 LEFT = *new;
806 RIGHT.br_state = PREV.br_state;
807 RIGHT.br_startblock = nullstartblock(
808 (int)xfs_bmap_worst_indlen(ip, temp2));
809 RIGHT.br_startoff = new_endoff;
810 RIGHT.br_blockcount = temp2;
811 /* insert LEFT (r[0]) and RIGHT (r[1]) at the same time */
Christoph Hellwigec90c552011-05-23 08:52:53 +0000812 xfs_iext_insert(ip, *idx + 1, 2, &LEFT, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 ip->i_d.di_nextents++;
814 if (cur == NULL)
815 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
816 else {
817 rval = XFS_ILOG_CORE;
818 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
819 new->br_startblock, new->br_blockcount,
820 &i)))
821 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +1000822 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 cur->bc_rec.b.br_state = XFS_EXT_NORM;
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100824 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +1000826 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 }
828 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
829 ip->i_d.di_nextents > ip->i_df.if_ext_max) {
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200830 error = xfs_bmap_extents_to_btree(tp, ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 first, flist, &cur, 1, &tmp_rval,
832 XFS_DATA_FORK);
833 rval |= tmp_rval;
834 if (error)
835 goto done;
836 }
837 temp = xfs_bmap_worst_indlen(ip, temp);
838 temp2 = xfs_bmap_worst_indlen(ip, temp2);
Eric Sandeen9d87c312009-01-14 23:22:07 -0600839 diff = (int)(temp + temp2 - startblockval(PREV.br_startblock) -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 (cur ? cur->bc_private.b.allocated : 0));
Christoph Hellwigb9b984d2011-09-18 20:40:42 +0000841 if (diff > 0) {
842 error = xfs_icsb_modify_counters(ip->i_mount,
843 XFS_SBS_FDBLOCKS,
844 -((int64_t)diff), 0);
845 ASSERT(!error);
846 if (error)
847 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
Christoph Hellwigb9b984d2011-09-18 20:40:42 +0000849
Christoph Hellwigec90c552011-05-23 08:52:53 +0000850 ep = xfs_iext_get_ext(ifp, *idx);
Eric Sandeen9d87c312009-01-14 23:22:07 -0600851 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
Christoph Hellwigec90c552011-05-23 08:52:53 +0000852 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
853 trace_xfs_bmap_pre_update(ip, *idx + 2, state, _THIS_IP_);
854 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, *idx + 2),
Eric Sandeen9d87c312009-01-14 23:22:07 -0600855 nullstartblock((int)temp2));
Christoph Hellwigec90c552011-05-23 08:52:53 +0000856 trace_xfs_bmap_post_update(ip, *idx + 2, state, _THIS_IP_);
857
858 ++*idx;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +0000859 da_new = temp + temp2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 break;
861
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000862 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
863 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
864 case BMAP_LEFT_FILLING | BMAP_RIGHT_CONTIG:
865 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
866 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
867 case BMAP_LEFT_CONTIG:
868 case BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 /*
870 * These cases are all impossible.
871 */
872 ASSERT(0);
873 }
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +0000874
875 /* convert to a btree if necessary */
876 if (XFS_IFORK_FORMAT(ip, XFS_DATA_FORK) == XFS_DINODE_FMT_EXTENTS &&
877 XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) > ifp->if_ext_max) {
878 int tmp_logflags; /* partial log flag return val */
879
880 ASSERT(cur == NULL);
881 error = xfs_bmap_extents_to_btree(tp, ip, first, flist, &cur,
882 da_old > 0, &tmp_logflags, XFS_DATA_FORK);
883 *logflagsp |= tmp_logflags;
884 if (error)
885 goto done;
886 }
887
888 /* adjust for changes in reserved delayed indirect blocks */
889 if (da_old || da_new) {
890 temp = da_new;
891 if (cur)
892 temp += cur->bc_private.b.allocated;
893 ASSERT(temp <= da_old);
894 if (temp < da_old)
895 xfs_icsb_modify_counters(ip->i_mount, XFS_SBS_FDBLOCKS,
896 (int64_t)(da_old - temp), 0);
897 }
898
899 /* clear out the allocated field, done with it now in any case. */
900 if (cur) {
901 cur->bc_private.b.allocated = 0;
902 *curp = cur;
903 }
904 xfs_bmap_check_leaf_extents(cur, ip, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905done:
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +0000906 *logflagsp |= rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 return error;
908#undef LEFT
909#undef RIGHT
910#undef PREV
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911}
912
913/*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +0000914 * Convert an unwritten allocation to a real allocation or vice versa.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 */
916STATIC int /* error */
917xfs_bmap_add_extent_unwritten_real(
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +0000918 struct xfs_trans *tp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 xfs_inode_t *ip, /* incore inode pointer */
Christoph Hellwigec90c552011-05-23 08:52:53 +0000920 xfs_extnum_t *idx, /* extent number to update/insert */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 xfs_btree_cur_t **curp, /* if *curp is null, not a btree */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100922 xfs_bmbt_irec_t *new, /* new data to add to file extents */
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +0000923 xfs_fsblock_t *first, /* pointer to firstblock variable */
924 xfs_bmap_free_t *flist, /* list of extents to be freed */
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000925 int *logflagsp) /* inode logging flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 xfs_btree_cur_t *cur; /* btree cursor */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000928 xfs_bmbt_rec_host_t *ep; /* extent entry for idx */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 int i; /* temp state */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100931 xfs_ifork_t *ifp; /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 xfs_fileoff_t new_endoff; /* end offset of new entry */
933 xfs_exntst_t newext; /* new extent state */
934 xfs_exntst_t oldext; /* old extent state */
935 xfs_bmbt_irec_t r[3]; /* neighbor extent entries */
936 /* left is 0, right is 1, prev is 2 */
937 int rval=0; /* return value (logging flags) */
938 int state = 0;/* state bits, accessed thru macros */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +0000940 *logflagsp = 0;
941
942 cur = *curp;
943 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
944
945 ASSERT(*idx >= 0);
946 ASSERT(*idx <= ifp->if_bytes / sizeof(struct xfs_bmbt_rec));
947 ASSERT(!isnullstartblock(new->br_startblock));
948
949 XFS_STATS_INC(xs_add_exlist);
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951#define LEFT r[0]
952#define RIGHT r[1]
953#define PREV r[2]
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +0000954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 /*
956 * Set up a bunch of variables to make the tests simpler.
957 */
958 error = 0;
Christoph Hellwigec90c552011-05-23 08:52:53 +0000959 ep = xfs_iext_get_ext(ifp, *idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 xfs_bmbt_get_all(ep, &PREV);
961 newext = new->br_state;
962 oldext = (newext == XFS_EXT_UNWRITTEN) ?
963 XFS_EXT_NORM : XFS_EXT_UNWRITTEN;
964 ASSERT(PREV.br_state == oldext);
965 new_endoff = new->br_startoff + new->br_blockcount;
966 ASSERT(PREV.br_startoff <= new->br_startoff);
967 ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff);
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 /*
970 * Set flags determining what part of the previous oldext allocation
971 * extent is being replaced by a newext allocation.
972 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000973 if (PREV.br_startoff == new->br_startoff)
974 state |= BMAP_LEFT_FILLING;
975 if (PREV.br_startoff + PREV.br_blockcount == new_endoff)
976 state |= BMAP_RIGHT_FILLING;
977
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 /*
979 * Check and set flags if this segment has a left neighbor.
980 * Don't set contiguous if the combined extent would be too large.
981 */
Christoph Hellwigec90c552011-05-23 08:52:53 +0000982 if (*idx > 0) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000983 state |= BMAP_LEFT_VALID;
Christoph Hellwigec90c552011-05-23 08:52:53 +0000984 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx - 1), &LEFT);
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000985
986 if (isnullstartblock(LEFT.br_startblock))
987 state |= BMAP_LEFT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000989
990 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
991 LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff &&
992 LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock &&
993 LEFT.br_state == newext &&
994 LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN)
995 state |= BMAP_LEFT_CONTIG;
996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 /*
998 * Check and set flags if this segment has a right neighbor.
999 * Don't set contiguous if the combined extent would be too large.
1000 * Also check for all-three-contiguous being too large.
1001 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001002 if (*idx < ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t) - 1) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001003 state |= BMAP_RIGHT_VALID;
Christoph Hellwigec90c552011-05-23 08:52:53 +00001004 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx + 1), &RIGHT);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001005 if (isnullstartblock(RIGHT.br_startblock))
1006 state |= BMAP_RIGHT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001008
1009 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
1010 new_endoff == RIGHT.br_startoff &&
1011 new->br_startblock + new->br_blockcount == RIGHT.br_startblock &&
1012 newext == RIGHT.br_state &&
1013 new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN &&
1014 ((state & (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
1015 BMAP_RIGHT_FILLING)) !=
1016 (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
1017 BMAP_RIGHT_FILLING) ||
1018 LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount
1019 <= MAXEXTLEN))
1020 state |= BMAP_RIGHT_CONTIG;
1021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 /*
1023 * Switch out based on the FILLING and CONTIG state bits.
1024 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001025 switch (state & (BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
1026 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG)) {
1027 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
1028 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 /*
1030 * Setting all of a previous oldext extent to newext.
1031 * The left and right neighbors are both contiguous with new.
1032 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001033 --*idx;
1034
1035 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
1036 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 LEFT.br_blockcount + PREV.br_blockcount +
1038 RIGHT.br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001039 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001040
Christoph Hellwigec90c552011-05-23 08:52:53 +00001041 xfs_iext_remove(ip, *idx + 1, 2, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 ip->i_d.di_nextents -= 2;
1043 if (cur == NULL)
1044 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1045 else {
1046 rval = XFS_ILOG_CORE;
1047 if ((error = xfs_bmbt_lookup_eq(cur, RIGHT.br_startoff,
1048 RIGHT.br_startblock,
1049 RIGHT.br_blockcount, &i)))
1050 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001051 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001052 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001054 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001055 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001057 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001058 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001060 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001061 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001063 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 if ((error = xfs_bmbt_update(cur, LEFT.br_startoff,
1065 LEFT.br_startblock,
1066 LEFT.br_blockcount + PREV.br_blockcount +
1067 RIGHT.br_blockcount, LEFT.br_state)))
1068 goto done;
1069 }
1070 break;
1071
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001072 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 /*
1074 * Setting all of a previous oldext extent to newext.
1075 * The left neighbor is contiguous, the right is not.
1076 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001077 --*idx;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001078
Christoph Hellwigec90c552011-05-23 08:52:53 +00001079 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
1080 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx),
1081 LEFT.br_blockcount + PREV.br_blockcount);
1082 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
1083
1084 xfs_iext_remove(ip, *idx + 1, 1, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 ip->i_d.di_nextents--;
1086 if (cur == NULL)
1087 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1088 else {
1089 rval = XFS_ILOG_CORE;
1090 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
1091 PREV.br_startblock, PREV.br_blockcount,
1092 &i)))
1093 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001094 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001095 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001097 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001098 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001100 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 if ((error = xfs_bmbt_update(cur, LEFT.br_startoff,
1102 LEFT.br_startblock,
1103 LEFT.br_blockcount + PREV.br_blockcount,
1104 LEFT.br_state)))
1105 goto done;
1106 }
1107 break;
1108
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001109 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 /*
1111 * Setting all of a previous oldext extent to newext.
1112 * The right neighbor is contiguous, the left is not.
1113 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001114 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 xfs_bmbt_set_blockcount(ep,
1116 PREV.br_blockcount + RIGHT.br_blockcount);
1117 xfs_bmbt_set_state(ep, newext);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001118 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
1119 xfs_iext_remove(ip, *idx + 1, 1, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 ip->i_d.di_nextents--;
1121 if (cur == NULL)
1122 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1123 else {
1124 rval = XFS_ILOG_CORE;
1125 if ((error = xfs_bmbt_lookup_eq(cur, RIGHT.br_startoff,
1126 RIGHT.br_startblock,
1127 RIGHT.br_blockcount, &i)))
1128 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001129 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001130 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001132 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001133 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001135 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 if ((error = xfs_bmbt_update(cur, new->br_startoff,
1137 new->br_startblock,
1138 new->br_blockcount + RIGHT.br_blockcount,
1139 newext)))
1140 goto done;
1141 }
1142 break;
1143
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001144 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 /*
1146 * Setting all of a previous oldext extent to newext.
1147 * Neither the left nor right neighbors are contiguous with
1148 * the new one.
1149 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001150 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 xfs_bmbt_set_state(ep, newext);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001152 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 if (cur == NULL)
1155 rval = XFS_ILOG_DEXT;
1156 else {
1157 rval = 0;
1158 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
1159 new->br_startblock, new->br_blockcount,
1160 &i)))
1161 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001162 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 if ((error = xfs_bmbt_update(cur, new->br_startoff,
1164 new->br_startblock, new->br_blockcount,
1165 newext)))
1166 goto done;
1167 }
1168 break;
1169
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001170 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 /*
1172 * Setting the first part of a previous oldext extent to newext.
1173 * The left neighbor is contiguous.
1174 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001175 trace_xfs_bmap_pre_update(ip, *idx - 1, state, _THIS_IP_);
1176 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx - 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 LEFT.br_blockcount + new->br_blockcount);
1178 xfs_bmbt_set_startoff(ep,
1179 PREV.br_startoff + new->br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001180 trace_xfs_bmap_post_update(ip, *idx - 1, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001181
Christoph Hellwigec90c552011-05-23 08:52:53 +00001182 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 xfs_bmbt_set_startblock(ep,
1184 new->br_startblock + new->br_blockcount);
1185 xfs_bmbt_set_blockcount(ep,
1186 PREV.br_blockcount - new->br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001187 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001188
Christoph Hellwigec90c552011-05-23 08:52:53 +00001189 --*idx;
1190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 if (cur == NULL)
1192 rval = XFS_ILOG_DEXT;
1193 else {
1194 rval = 0;
1195 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
1196 PREV.br_startblock, PREV.br_blockcount,
1197 &i)))
1198 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001199 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 if ((error = xfs_bmbt_update(cur,
1201 PREV.br_startoff + new->br_blockcount,
1202 PREV.br_startblock + new->br_blockcount,
1203 PREV.br_blockcount - new->br_blockcount,
1204 oldext)))
1205 goto done;
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001206 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 goto done;
1208 if (xfs_bmbt_update(cur, LEFT.br_startoff,
1209 LEFT.br_startblock,
1210 LEFT.br_blockcount + new->br_blockcount,
1211 LEFT.br_state))
1212 goto done;
1213 }
1214 break;
1215
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001216 case BMAP_LEFT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 /*
1218 * Setting the first part of a previous oldext extent to newext.
1219 * The left neighbor is not contiguous.
1220 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001221 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 ASSERT(ep && xfs_bmbt_get_state(ep) == oldext);
1223 xfs_bmbt_set_startoff(ep, new_endoff);
1224 xfs_bmbt_set_blockcount(ep,
1225 PREV.br_blockcount - new->br_blockcount);
1226 xfs_bmbt_set_startblock(ep,
1227 new->br_startblock + new->br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001228 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001229
Christoph Hellwigec90c552011-05-23 08:52:53 +00001230 xfs_iext_insert(ip, *idx, 1, new, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 ip->i_d.di_nextents++;
1232 if (cur == NULL)
1233 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1234 else {
1235 rval = XFS_ILOG_CORE;
1236 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
1237 PREV.br_startblock, PREV.br_blockcount,
1238 &i)))
1239 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001240 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 if ((error = xfs_bmbt_update(cur,
1242 PREV.br_startoff + new->br_blockcount,
1243 PREV.br_startblock + new->br_blockcount,
1244 PREV.br_blockcount - new->br_blockcount,
1245 oldext)))
1246 goto done;
1247 cur->bc_rec.b = *new;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11001248 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001250 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 }
1252 break;
1253
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001254 case BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 /*
1256 * Setting the last part of a previous oldext extent to newext.
1257 * The right neighbor is contiguous with the new allocation.
1258 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001259 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 xfs_bmbt_set_blockcount(ep,
1261 PREV.br_blockcount - new->br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001262 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
1263
1264 ++*idx;
1265
1266 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
1267 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, *idx),
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001268 new->br_startoff, new->br_startblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 new->br_blockcount + RIGHT.br_blockcount, newext);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001270 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 if (cur == NULL)
1273 rval = XFS_ILOG_DEXT;
1274 else {
1275 rval = 0;
1276 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
1277 PREV.br_startblock,
1278 PREV.br_blockcount, &i)))
1279 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001280 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 if ((error = xfs_bmbt_update(cur, PREV.br_startoff,
1282 PREV.br_startblock,
1283 PREV.br_blockcount - new->br_blockcount,
1284 oldext)))
1285 goto done;
Christoph Hellwig637aa502008-10-30 16:55:45 +11001286 if ((error = xfs_btree_increment(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 goto done;
1288 if ((error = xfs_bmbt_update(cur, new->br_startoff,
1289 new->br_startblock,
1290 new->br_blockcount + RIGHT.br_blockcount,
1291 newext)))
1292 goto done;
1293 }
1294 break;
1295
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001296 case BMAP_RIGHT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 /*
1298 * Setting the last part of a previous oldext extent to newext.
1299 * The right neighbor is not contiguous.
1300 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001301 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 xfs_bmbt_set_blockcount(ep,
1303 PREV.br_blockcount - new->br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001304 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001305
Christoph Hellwigec90c552011-05-23 08:52:53 +00001306 ++*idx;
1307 xfs_iext_insert(ip, *idx, 1, new, state);
1308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 ip->i_d.di_nextents++;
1310 if (cur == NULL)
1311 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1312 else {
1313 rval = XFS_ILOG_CORE;
1314 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
1315 PREV.br_startblock, PREV.br_blockcount,
1316 &i)))
1317 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001318 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 if ((error = xfs_bmbt_update(cur, PREV.br_startoff,
1320 PREV.br_startblock,
1321 PREV.br_blockcount - new->br_blockcount,
1322 oldext)))
1323 goto done;
1324 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
1325 new->br_startblock, new->br_blockcount,
1326 &i)))
1327 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001328 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 cur->bc_rec.b.br_state = XFS_EXT_NORM;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11001330 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001332 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 }
1334 break;
1335
1336 case 0:
1337 /*
1338 * Setting the middle part of a previous oldext extent to
1339 * newext. Contiguity is impossible here.
1340 * One extent becomes three extents.
1341 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001342 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 xfs_bmbt_set_blockcount(ep,
1344 new->br_startoff - PREV.br_startoff);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001345 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 r[0] = *new;
1348 r[1].br_startoff = new_endoff;
1349 r[1].br_blockcount =
1350 PREV.br_startoff + PREV.br_blockcount - new_endoff;
1351 r[1].br_startblock = new->br_startblock + new->br_blockcount;
1352 r[1].br_state = oldext;
Christoph Hellwigec90c552011-05-23 08:52:53 +00001353
1354 ++*idx;
1355 xfs_iext_insert(ip, *idx, 2, &r[0], state);
1356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 ip->i_d.di_nextents += 2;
1358 if (cur == NULL)
1359 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1360 else {
1361 rval = XFS_ILOG_CORE;
1362 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
1363 PREV.br_startblock, PREV.br_blockcount,
1364 &i)))
1365 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001366 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 /* new right extent - oldext */
1368 if ((error = xfs_bmbt_update(cur, r[1].br_startoff,
1369 r[1].br_startblock, r[1].br_blockcount,
1370 r[1].br_state)))
1371 goto done;
1372 /* new left extent - oldext */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 cur->bc_rec.b = PREV;
Tim Shimmin6a617dd2008-07-18 17:13:04 +10001374 cur->bc_rec.b.br_blockcount =
1375 new->br_startoff - PREV.br_startoff;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11001376 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001378 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Lachlan McIlroyddea2d52008-06-23 13:25:53 +10001379 /*
1380 * Reset the cursor to the position of the new extent
1381 * we are about to insert as we can't trust it after
1382 * the previous insert.
1383 */
1384 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
1385 new->br_startblock, new->br_blockcount,
1386 &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 goto done;
Lachlan McIlroyddea2d52008-06-23 13:25:53 +10001388 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 /* new middle extent - newext */
Lachlan McIlroyddea2d52008-06-23 13:25:53 +10001390 cur->bc_rec.b.br_state = new->br_state;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11001391 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001393 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 }
1395 break;
1396
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001397 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
1398 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
1399 case BMAP_LEFT_FILLING | BMAP_RIGHT_CONTIG:
1400 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
1401 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
1402 case BMAP_LEFT_CONTIG:
1403 case BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 /*
1405 * These cases are all impossible.
1406 */
1407 ASSERT(0);
1408 }
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001409
1410 /* convert to a btree if necessary */
1411 if (XFS_IFORK_FORMAT(ip, XFS_DATA_FORK) == XFS_DINODE_FMT_EXTENTS &&
1412 XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) > ifp->if_ext_max) {
1413 int tmp_logflags; /* partial log flag return val */
1414
1415 ASSERT(cur == NULL);
1416 error = xfs_bmap_extents_to_btree(tp, ip, first, flist, &cur,
1417 0, &tmp_logflags, XFS_DATA_FORK);
1418 *logflagsp |= tmp_logflags;
1419 if (error)
1420 goto done;
1421 }
1422
1423 /* clear out the allocated field, done with it now in any case. */
1424 if (cur) {
1425 cur->bc_private.b.allocated = 0;
1426 *curp = cur;
1427 }
1428
1429 xfs_bmap_check_leaf_extents(*curp, ip, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430done:
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001431 *logflagsp |= rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 return error;
1433#undef LEFT
1434#undef RIGHT
1435#undef PREV
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436}
1437
1438/*
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00001439 * Convert a hole to a delayed allocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 */
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00001441STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442xfs_bmap_add_extent_hole_delay(
1443 xfs_inode_t *ip, /* incore inode pointer */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001444 xfs_extnum_t *idx, /* extent number to update/insert */
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00001445 xfs_bmbt_irec_t *new) /* new data to add to file extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446{
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001447 xfs_ifork_t *ifp; /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 xfs_bmbt_irec_t left; /* left neighbor extent entry */
1449 xfs_filblks_t newlen=0; /* new indirect size */
1450 xfs_filblks_t oldlen=0; /* old indirect size */
1451 xfs_bmbt_irec_t right; /* right neighbor extent entry */
1452 int state; /* state bits, accessed thru macros */
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001453 xfs_filblks_t temp=0; /* temp for indirect calculations */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001455 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 state = 0;
Eric Sandeen9d87c312009-01-14 23:22:07 -06001457 ASSERT(isnullstartblock(new->br_startblock));
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 /*
1460 * Check and set flags if this segment has a left neighbor
1461 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001462 if (*idx > 0) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001463 state |= BMAP_LEFT_VALID;
Christoph Hellwigec90c552011-05-23 08:52:53 +00001464 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx - 1), &left);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001465
1466 if (isnullstartblock(left.br_startblock))
1467 state |= BMAP_LEFT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 /*
1471 * Check and set flags if the current (right) segment exists.
1472 * If it doesn't exist, we're converting the hole at end-of-file.
1473 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001474 if (*idx < ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001475 state |= BMAP_RIGHT_VALID;
Christoph Hellwig2f2b3222011-05-11 15:04:06 +00001476 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx), &right);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001477
1478 if (isnullstartblock(right.br_startblock))
1479 state |= BMAP_RIGHT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 /*
1483 * Set contiguity flags on the left and right neighbors.
1484 * Don't let extents get too large, even if the pieces are contiguous.
1485 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001486 if ((state & BMAP_LEFT_VALID) && (state & BMAP_LEFT_DELAY) &&
1487 left.br_startoff + left.br_blockcount == new->br_startoff &&
1488 left.br_blockcount + new->br_blockcount <= MAXEXTLEN)
1489 state |= BMAP_LEFT_CONTIG;
1490
1491 if ((state & BMAP_RIGHT_VALID) && (state & BMAP_RIGHT_DELAY) &&
1492 new->br_startoff + new->br_blockcount == right.br_startoff &&
1493 new->br_blockcount + right.br_blockcount <= MAXEXTLEN &&
1494 (!(state & BMAP_LEFT_CONTIG) ||
1495 (left.br_blockcount + new->br_blockcount +
1496 right.br_blockcount <= MAXEXTLEN)))
1497 state |= BMAP_RIGHT_CONTIG;
1498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 /*
1500 * Switch out based on the contiguity flags.
1501 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001502 switch (state & (BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG)) {
1503 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 /*
1505 * New allocation is contiguous with delayed allocations
1506 * on the left and on the right.
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001507 * Merge all three into a single extent record.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001509 --*idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 temp = left.br_blockcount + new->br_blockcount +
1511 right.br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001512
Christoph Hellwigec90c552011-05-23 08:52:53 +00001513 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
1514 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx), temp);
Eric Sandeen9d87c312009-01-14 23:22:07 -06001515 oldlen = startblockval(left.br_startblock) +
1516 startblockval(new->br_startblock) +
1517 startblockval(right.br_startblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 newlen = xfs_bmap_worst_indlen(ip, temp);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001519 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, *idx),
Eric Sandeen9d87c312009-01-14 23:22:07 -06001520 nullstartblock((int)newlen));
Christoph Hellwigec90c552011-05-23 08:52:53 +00001521 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001522
Christoph Hellwigec90c552011-05-23 08:52:53 +00001523 xfs_iext_remove(ip, *idx + 1, 1, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 break;
1525
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001526 case BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 /*
1528 * New allocation is contiguous with a delayed allocation
1529 * on the left.
1530 * Merge the new allocation with the left neighbor.
1531 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001532 --*idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 temp = left.br_blockcount + new->br_blockcount;
Christoph Hellwigec90c552011-05-23 08:52:53 +00001534
1535 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
1536 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx), temp);
Eric Sandeen9d87c312009-01-14 23:22:07 -06001537 oldlen = startblockval(left.br_startblock) +
1538 startblockval(new->br_startblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 newlen = xfs_bmap_worst_indlen(ip, temp);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001540 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, *idx),
Eric Sandeen9d87c312009-01-14 23:22:07 -06001541 nullstartblock((int)newlen));
Christoph Hellwigec90c552011-05-23 08:52:53 +00001542 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 break;
1544
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001545 case BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 /*
1547 * New allocation is contiguous with a delayed allocation
1548 * on the right.
1549 * Merge the new allocation with the right neighbor.
1550 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001551 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 temp = new->br_blockcount + right.br_blockcount;
Eric Sandeen9d87c312009-01-14 23:22:07 -06001553 oldlen = startblockval(new->br_startblock) +
1554 startblockval(right.br_startblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 newlen = xfs_bmap_worst_indlen(ip, temp);
Christoph Hellwig2f2b3222011-05-11 15:04:06 +00001556 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, *idx),
1557 new->br_startoff,
Eric Sandeen9d87c312009-01-14 23:22:07 -06001558 nullstartblock((int)newlen), temp, right.br_state);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001559 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 break;
1561
1562 case 0:
1563 /*
1564 * New allocation is not contiguous with another
1565 * delayed allocation.
1566 * Insert a new entry.
1567 */
1568 oldlen = newlen = 0;
Christoph Hellwigec90c552011-05-23 08:52:53 +00001569 xfs_iext_insert(ip, *idx, 1, new, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 break;
1571 }
1572 if (oldlen != newlen) {
1573 ASSERT(oldlen > newlen);
Christoph Hellwig96540c72010-09-30 02:25:55 +00001574 xfs_icsb_modify_counters(ip->i_mount, XFS_SBS_FDBLOCKS,
Christoph Hellwig54893272011-05-11 15:04:03 +00001575 (int64_t)(oldlen - newlen), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 /*
1577 * Nothing to do for disk quota accounting here.
1578 */
1579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580}
1581
1582/*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001583 * Convert a hole to a real allocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 */
1585STATIC int /* error */
1586xfs_bmap_add_extent_hole_real(
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001587 struct xfs_trans *tp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 xfs_inode_t *ip, /* incore inode pointer */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001589 xfs_extnum_t *idx, /* extent number to update/insert */
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001590 xfs_btree_cur_t **curp, /* if null, not a btree */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001591 xfs_bmbt_irec_t *new, /* new data to add to file extents */
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001592 xfs_fsblock_t *first, /* pointer to firstblock variable */
1593 xfs_bmap_free_t *flist, /* list of extents to be freed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 int *logflagsp, /* inode logging flags */
1595 int whichfork) /* data or attr fork */
1596{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 int i; /* temp state */
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001599 xfs_btree_cur_t *cur; /* if null, not a btree */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 xfs_ifork_t *ifp; /* inode fork pointer */
1601 xfs_bmbt_irec_t left; /* left neighbor extent entry */
1602 xfs_bmbt_irec_t right; /* right neighbor extent entry */
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001603 int rval=0; /* return value (logging flags) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 int state; /* state bits, accessed thru macros */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001606 *logflagsp = 0;
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001607
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001608 ifp = XFS_IFORK_PTR(ip, whichfork);
1609 cur = *curp;
1610
1611 ASSERT(*idx >= 0);
1612 ASSERT(*idx <= ifp->if_bytes / sizeof(struct xfs_bmbt_rec));
1613 ASSERT(!isnullstartblock(new->br_startblock));
1614 ASSERT(!cur || !(cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL));
1615
1616 XFS_STATS_INC(xs_add_exlist);
1617
1618 state = 0;
Christoph Hellwig6ef35542009-11-25 00:00:21 +00001619 if (whichfork == XFS_ATTR_FORK)
1620 state |= BMAP_ATTRFORK;
1621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 /*
1623 * Check and set flags if this segment has a left neighbor.
1624 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001625 if (*idx > 0) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001626 state |= BMAP_LEFT_VALID;
Christoph Hellwigec90c552011-05-23 08:52:53 +00001627 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx - 1), &left);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001628 if (isnullstartblock(left.br_startblock))
1629 state |= BMAP_LEFT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 /*
1633 * Check and set flags if this segment has a current value.
1634 * Not true if we're inserting into the "hole" at eof.
1635 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001636 if (*idx < ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001637 state |= BMAP_RIGHT_VALID;
Christoph Hellwig2f2b3222011-05-11 15:04:06 +00001638 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx), &right);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001639 if (isnullstartblock(right.br_startblock))
1640 state |= BMAP_RIGHT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 /*
1644 * We're inserting a real allocation between "left" and "right".
1645 * Set the contiguity flags. Don't let extents get too large.
1646 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001647 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
1648 left.br_startoff + left.br_blockcount == new->br_startoff &&
1649 left.br_startblock + left.br_blockcount == new->br_startblock &&
1650 left.br_state == new->br_state &&
1651 left.br_blockcount + new->br_blockcount <= MAXEXTLEN)
1652 state |= BMAP_LEFT_CONTIG;
1653
1654 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
1655 new->br_startoff + new->br_blockcount == right.br_startoff &&
1656 new->br_startblock + new->br_blockcount == right.br_startblock &&
1657 new->br_state == right.br_state &&
1658 new->br_blockcount + right.br_blockcount <= MAXEXTLEN &&
1659 (!(state & BMAP_LEFT_CONTIG) ||
1660 left.br_blockcount + new->br_blockcount +
1661 right.br_blockcount <= MAXEXTLEN))
1662 state |= BMAP_RIGHT_CONTIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001664 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 /*
1666 * Select which case we're in here, and implement it.
1667 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001668 switch (state & (BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG)) {
1669 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 /*
1671 * New allocation is contiguous with real allocations on the
1672 * left and on the right.
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001673 * Merge all three into a single extent record.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001675 --*idx;
1676 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
1677 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 left.br_blockcount + new->br_blockcount +
1679 right.br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001680 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001681
Christoph Hellwigec90c552011-05-23 08:52:53 +00001682 xfs_iext_remove(ip, *idx + 1, 1, state);
1683
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 XFS_IFORK_NEXT_SET(ip, whichfork,
1685 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
1686 if (cur == NULL) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001687 rval = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001688 } else {
1689 rval = XFS_ILOG_CORE;
1690 if ((error = xfs_bmbt_lookup_eq(cur,
1691 right.br_startoff,
1692 right.br_startblock,
1693 right.br_blockcount, &i)))
1694 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001695 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001696 if ((error = xfs_btree_delete(cur, &i)))
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001697 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001698 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001699 if ((error = xfs_btree_decrement(cur, 0, &i)))
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001700 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001701 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001702 if ((error = xfs_bmbt_update(cur, left.br_startoff,
1703 left.br_startblock,
1704 left.br_blockcount +
1705 new->br_blockcount +
1706 right.br_blockcount,
1707 left.br_state)))
1708 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001710 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001712 case BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 /*
1714 * New allocation is contiguous with a real allocation
1715 * on the left.
1716 * Merge the new allocation with the left neighbor.
1717 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001718 --*idx;
1719 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
1720 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 left.br_blockcount + new->br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001722 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001723
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 if (cur == NULL) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001725 rval = xfs_ilog_fext(whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001726 } else {
1727 rval = 0;
1728 if ((error = xfs_bmbt_lookup_eq(cur,
1729 left.br_startoff,
1730 left.br_startblock,
1731 left.br_blockcount, &i)))
1732 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001733 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001734 if ((error = xfs_bmbt_update(cur, left.br_startoff,
1735 left.br_startblock,
1736 left.br_blockcount +
1737 new->br_blockcount,
1738 left.br_state)))
1739 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001741 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001743 case BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 /*
1745 * New allocation is contiguous with a real allocation
1746 * on the right.
1747 * Merge the new allocation with the right neighbor.
1748 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001749 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig2f2b3222011-05-11 15:04:06 +00001750 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, *idx),
1751 new->br_startoff, new->br_startblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 new->br_blockcount + right.br_blockcount,
1753 right.br_state);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001754 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001755
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 if (cur == NULL) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001757 rval = xfs_ilog_fext(whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001758 } else {
1759 rval = 0;
1760 if ((error = xfs_bmbt_lookup_eq(cur,
1761 right.br_startoff,
1762 right.br_startblock,
1763 right.br_blockcount, &i)))
1764 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001765 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001766 if ((error = xfs_bmbt_update(cur, new->br_startoff,
1767 new->br_startblock,
1768 new->br_blockcount +
1769 right.br_blockcount,
1770 right.br_state)))
1771 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001773 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
1775 case 0:
1776 /*
1777 * New allocation is not contiguous with another
1778 * real allocation.
1779 * Insert a new entry.
1780 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00001781 xfs_iext_insert(ip, *idx, 1, new, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 XFS_IFORK_NEXT_SET(ip, whichfork,
1783 XFS_IFORK_NEXTENTS(ip, whichfork) + 1);
1784 if (cur == NULL) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001785 rval = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001786 } else {
1787 rval = XFS_ILOG_CORE;
1788 if ((error = xfs_bmbt_lookup_eq(cur,
1789 new->br_startoff,
1790 new->br_startblock,
1791 new->br_blockcount, &i)))
1792 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001793 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001794 cur->bc_rec.b.br_state = new->br_state;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11001795 if ((error = xfs_btree_insert(cur, &i)))
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001796 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001797 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001799 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 }
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001801
1802 /* convert to a btree if necessary */
1803 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS &&
1804 XFS_IFORK_NEXTENTS(ip, whichfork) > ifp->if_ext_max) {
1805 int tmp_logflags; /* partial log flag return val */
1806
1807 ASSERT(cur == NULL);
1808 error = xfs_bmap_extents_to_btree(tp, ip, first,
1809 flist, &cur, 0, &tmp_logflags, whichfork);
1810 *logflagsp |= tmp_logflags;
1811 if (error)
1812 goto done;
1813 }
1814
1815 /* clear out the allocated field, done with it now in any case. */
1816 if (cur) {
1817 cur->bc_private.b.allocated = 0;
1818 *curp = cur;
1819 }
1820 xfs_bmap_check_leaf_extents(cur, ip, whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001821done:
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001822 *logflagsp |= rval;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001823 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824}
1825
Nathan Scottdd9f4382006-01-11 15:28:28 +11001826/*
1827 * Adjust the size of the new extent based on di_extsize and rt extsize.
1828 */
1829STATIC int
1830xfs_bmap_extsize_align(
1831 xfs_mount_t *mp,
1832 xfs_bmbt_irec_t *gotp, /* next extent pointer */
1833 xfs_bmbt_irec_t *prevp, /* previous extent pointer */
1834 xfs_extlen_t extsz, /* align to this extent size */
1835 int rt, /* is this a realtime inode? */
1836 int eof, /* is extent at end-of-file? */
1837 int delay, /* creating delalloc extent? */
1838 int convert, /* overwriting unwritten extent? */
1839 xfs_fileoff_t *offp, /* in/out: aligned offset */
1840 xfs_extlen_t *lenp) /* in/out: aligned length */
1841{
1842 xfs_fileoff_t orig_off; /* original offset */
1843 xfs_extlen_t orig_alen; /* original length */
1844 xfs_fileoff_t orig_end; /* original off+len */
1845 xfs_fileoff_t nexto; /* next file offset */
1846 xfs_fileoff_t prevo; /* previous file offset */
1847 xfs_fileoff_t align_off; /* temp for offset */
1848 xfs_extlen_t align_alen; /* temp for length */
1849 xfs_extlen_t temp; /* temp for calculations */
1850
1851 if (convert)
1852 return 0;
1853
1854 orig_off = align_off = *offp;
1855 orig_alen = align_alen = *lenp;
1856 orig_end = orig_off + orig_alen;
1857
1858 /*
1859 * If this request overlaps an existing extent, then don't
1860 * attempt to perform any additional alignment.
1861 */
1862 if (!delay && !eof &&
1863 (orig_off >= gotp->br_startoff) &&
1864 (orig_end <= gotp->br_startoff + gotp->br_blockcount)) {
1865 return 0;
1866 }
1867
1868 /*
1869 * If the file offset is unaligned vs. the extent size
1870 * we need to align it. This will be possible unless
1871 * the file was previously written with a kernel that didn't
1872 * perform this alignment, or if a truncate shot us in the
1873 * foot.
1874 */
1875 temp = do_mod(orig_off, extsz);
1876 if (temp) {
1877 align_alen += temp;
1878 align_off -= temp;
1879 }
1880 /*
1881 * Same adjustment for the end of the requested area.
1882 */
1883 if ((temp = (align_alen % extsz))) {
1884 align_alen += extsz - temp;
1885 }
1886 /*
1887 * If the previous block overlaps with this proposed allocation
1888 * then move the start forward without adjusting the length.
1889 */
1890 if (prevp->br_startoff != NULLFILEOFF) {
1891 if (prevp->br_startblock == HOLESTARTBLOCK)
1892 prevo = prevp->br_startoff;
1893 else
1894 prevo = prevp->br_startoff + prevp->br_blockcount;
1895 } else
1896 prevo = 0;
1897 if (align_off != orig_off && align_off < prevo)
1898 align_off = prevo;
1899 /*
1900 * If the next block overlaps with this proposed allocation
1901 * then move the start back without adjusting the length,
1902 * but not before offset 0.
1903 * This may of course make the start overlap previous block,
1904 * and if we hit the offset 0 limit then the next block
1905 * can still overlap too.
1906 */
1907 if (!eof && gotp->br_startoff != NULLFILEOFF) {
1908 if ((delay && gotp->br_startblock == HOLESTARTBLOCK) ||
1909 (!delay && gotp->br_startblock == DELAYSTARTBLOCK))
1910 nexto = gotp->br_startoff + gotp->br_blockcount;
1911 else
1912 nexto = gotp->br_startoff;
1913 } else
1914 nexto = NULLFILEOFF;
1915 if (!eof &&
1916 align_off + align_alen != orig_end &&
1917 align_off + align_alen > nexto)
1918 align_off = nexto > align_alen ? nexto - align_alen : 0;
1919 /*
1920 * If we're now overlapping the next or previous extent that
1921 * means we can't fit an extsz piece in this hole. Just move
1922 * the start forward to the first valid spot and set
1923 * the length so we hit the end.
1924 */
1925 if (align_off != orig_off && align_off < prevo)
1926 align_off = prevo;
1927 if (align_off + align_alen != orig_end &&
1928 align_off + align_alen > nexto &&
1929 nexto != NULLFILEOFF) {
1930 ASSERT(nexto > prevo);
1931 align_alen = nexto - align_off;
1932 }
1933
1934 /*
1935 * If realtime, and the result isn't a multiple of the realtime
1936 * extent size we need to remove blocks until it is.
1937 */
1938 if (rt && (temp = (align_alen % mp->m_sb.sb_rextsize))) {
1939 /*
1940 * We're not covering the original request, or
1941 * we won't be able to once we fix the length.
1942 */
1943 if (orig_off < align_off ||
1944 orig_end > align_off + align_alen ||
1945 align_alen - temp < orig_alen)
1946 return XFS_ERROR(EINVAL);
1947 /*
1948 * Try to fix it by moving the start up.
1949 */
1950 if (align_off + temp <= orig_off) {
1951 align_alen -= temp;
1952 align_off += temp;
1953 }
1954 /*
1955 * Try to fix it by moving the end in.
1956 */
1957 else if (align_off + align_alen - temp >= orig_end)
1958 align_alen -= temp;
1959 /*
1960 * Set the start to the minimum then trim the length.
1961 */
1962 else {
1963 align_alen -= orig_off - align_off;
1964 align_off = orig_off;
1965 align_alen -= align_alen % mp->m_sb.sb_rextsize;
1966 }
1967 /*
1968 * Result doesn't cover the request, fail it.
1969 */
1970 if (orig_off < align_off || orig_end > align_off + align_alen)
1971 return XFS_ERROR(EINVAL);
1972 } else {
1973 ASSERT(orig_off >= align_off);
1974 ASSERT(orig_end <= align_off + align_alen);
1975 }
1976
1977#ifdef DEBUG
1978 if (!eof && gotp->br_startoff != NULLFILEOFF)
1979 ASSERT(align_off + align_alen <= gotp->br_startoff);
1980 if (prevp->br_startoff != NULLFILEOFF)
1981 ASSERT(align_off >= prevp->br_startoff + prevp->br_blockcount);
1982#endif
1983
1984 *lenp = align_alen;
1985 *offp = align_off;
1986 return 0;
1987}
1988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989#define XFS_ALLOC_GAP_UNITS 4
1990
David Chinnerc2b1cba2008-04-10 12:21:40 +10001991STATIC void
Nathan Scotta365bdd2006-03-14 13:34:16 +11001992xfs_bmap_adjacent(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 xfs_bmalloca_t *ap) /* bmap alloc argument struct */
1994{
1995 xfs_fsblock_t adjust; /* adjustment to block numbers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */
1997 xfs_mount_t *mp; /* mount point structure */
1998 int nullfb; /* true if ap->firstblock isn't set */
1999 int rt; /* true if inode is realtime */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
2001#define ISVALID(x,y) \
2002 (rt ? \
2003 (x) < mp->m_sb.sb_rblocks : \
2004 XFS_FSB_TO_AGNO(mp, x) == XFS_FSB_TO_AGNO(mp, y) && \
2005 XFS_FSB_TO_AGNO(mp, x) < mp->m_sb.sb_agcount && \
2006 XFS_FSB_TO_AGBNO(mp, x) < mp->m_sb.sb_agblocks)
2007
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 mp = ap->ip->i_mount;
Dave Chinner0937e0f2011-09-18 20:40:57 +00002009 nullfb = *ap->firstblock == NULLFSBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 rt = XFS_IS_REALTIME_INODE(ap->ip) && ap->userdata;
Dave Chinner0937e0f2011-09-18 20:40:57 +00002011 fb_agno = nullfb ? NULLAGNUMBER : XFS_FSB_TO_AGNO(mp, *ap->firstblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 /*
2013 * If allocating at eof, and there's a previous real block,
Malcolm Parsons9da096f2009-03-29 09:55:42 +02002014 * try to use its last block as our starting point.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00002016 if (ap->eof && ap->prev.br_startoff != NULLFILEOFF &&
2017 !isnullstartblock(ap->prev.br_startblock) &&
2018 ISVALID(ap->prev.br_startblock + ap->prev.br_blockcount,
2019 ap->prev.br_startblock)) {
Dave Chinner3a756672011-09-18 20:40:58 +00002020 ap->blkno = ap->prev.br_startblock + ap->prev.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 /*
2022 * Adjust for the gap between prevp and us.
2023 */
Dave Chinner3a756672011-09-18 20:40:58 +00002024 adjust = ap->offset -
Dave Chinnerbaf41a52011-09-18 20:40:56 +00002025 (ap->prev.br_startoff + ap->prev.br_blockcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 if (adjust &&
Dave Chinner3a756672011-09-18 20:40:58 +00002027 ISVALID(ap->blkno + adjust, ap->prev.br_startblock))
2028 ap->blkno += adjust;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 }
2030 /*
2031 * If not at eof, then compare the two neighbor blocks.
2032 * Figure out whether either one gives us a good starting point,
2033 * and pick the better one.
2034 */
2035 else if (!ap->eof) {
2036 xfs_fsblock_t gotbno; /* right side block number */
2037 xfs_fsblock_t gotdiff=0; /* right side difference */
2038 xfs_fsblock_t prevbno; /* left side block number */
2039 xfs_fsblock_t prevdiff=0; /* left side difference */
2040
2041 /*
2042 * If there's a previous (left) block, select a requested
2043 * start block based on it.
2044 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00002045 if (ap->prev.br_startoff != NULLFILEOFF &&
2046 !isnullstartblock(ap->prev.br_startblock) &&
2047 (prevbno = ap->prev.br_startblock +
2048 ap->prev.br_blockcount) &&
2049 ISVALID(prevbno, ap->prev.br_startblock)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 /*
2051 * Calculate gap to end of previous block.
2052 */
Dave Chinner3a756672011-09-18 20:40:58 +00002053 adjust = prevdiff = ap->offset -
Dave Chinnerbaf41a52011-09-18 20:40:56 +00002054 (ap->prev.br_startoff +
2055 ap->prev.br_blockcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 /*
2057 * Figure the startblock based on the previous block's
2058 * end and the gap size.
2059 * Heuristic!
2060 * If the gap is large relative to the piece we're
2061 * allocating, or using it gives us an invalid block
2062 * number, then just use the end of the previous block.
2063 */
Dave Chinner3a756672011-09-18 20:40:58 +00002064 if (prevdiff <= XFS_ALLOC_GAP_UNITS * ap->length &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 ISVALID(prevbno + prevdiff,
Dave Chinnerbaf41a52011-09-18 20:40:56 +00002066 ap->prev.br_startblock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 prevbno += adjust;
2068 else
2069 prevdiff += adjust;
2070 /*
2071 * If the firstblock forbids it, can't use it,
2072 * must use default.
2073 */
2074 if (!rt && !nullfb &&
2075 XFS_FSB_TO_AGNO(mp, prevbno) != fb_agno)
2076 prevbno = NULLFSBLOCK;
2077 }
2078 /*
2079 * No previous block or can't follow it, just default.
2080 */
2081 else
2082 prevbno = NULLFSBLOCK;
2083 /*
2084 * If there's a following (right) block, select a requested
2085 * start block based on it.
2086 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00002087 if (!isnullstartblock(ap->got.br_startblock)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 /*
2089 * Calculate gap to start of next block.
2090 */
Dave Chinner3a756672011-09-18 20:40:58 +00002091 adjust = gotdiff = ap->got.br_startoff - ap->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 /*
2093 * Figure the startblock based on the next block's
2094 * start and the gap size.
2095 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00002096 gotbno = ap->got.br_startblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 /*
2098 * Heuristic!
2099 * If the gap is large relative to the piece we're
2100 * allocating, or using it gives us an invalid block
2101 * number, then just use the start of the next block
2102 * offset by our length.
2103 */
Dave Chinner3a756672011-09-18 20:40:58 +00002104 if (gotdiff <= XFS_ALLOC_GAP_UNITS * ap->length &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 ISVALID(gotbno - gotdiff, gotbno))
2106 gotbno -= adjust;
Dave Chinner3a756672011-09-18 20:40:58 +00002107 else if (ISVALID(gotbno - ap->length, gotbno)) {
2108 gotbno -= ap->length;
2109 gotdiff += adjust - ap->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 } else
2111 gotdiff += adjust;
2112 /*
2113 * If the firstblock forbids it, can't use it,
2114 * must use default.
2115 */
2116 if (!rt && !nullfb &&
2117 XFS_FSB_TO_AGNO(mp, gotbno) != fb_agno)
2118 gotbno = NULLFSBLOCK;
2119 }
2120 /*
2121 * No next block, just default.
2122 */
2123 else
2124 gotbno = NULLFSBLOCK;
2125 /*
2126 * If both valid, pick the better one, else the only good
Dave Chinner3a756672011-09-18 20:40:58 +00002127 * one, else ap->blkno is already set (to 0 or the inode block).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 */
2129 if (prevbno != NULLFSBLOCK && gotbno != NULLFSBLOCK)
Dave Chinner3a756672011-09-18 20:40:58 +00002130 ap->blkno = prevdiff <= gotdiff ? prevbno : gotbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 else if (prevbno != NULLFSBLOCK)
Dave Chinner3a756672011-09-18 20:40:58 +00002132 ap->blkno = prevbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 else if (gotbno != NULLFSBLOCK)
Dave Chinner3a756672011-09-18 20:40:58 +00002134 ap->blkno = gotbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 }
Nathan Scotta365bdd2006-03-14 13:34:16 +11002136#undef ISVALID
Nathan Scotta365bdd2006-03-14 13:34:16 +11002137}
2138
2139STATIC int
2140xfs_bmap_rtalloc(
2141 xfs_bmalloca_t *ap) /* bmap alloc argument struct */
2142{
2143 xfs_alloctype_t atype = 0; /* type for allocation routines */
2144 int error; /* error return value */
2145 xfs_mount_t *mp; /* mount point structure */
2146 xfs_extlen_t prod = 0; /* product factor for allocators */
2147 xfs_extlen_t ralen = 0; /* realtime allocation length */
2148 xfs_extlen_t align; /* minimum allocation alignment */
Nathan Scotta365bdd2006-03-14 13:34:16 +11002149 xfs_rtblock_t rtb;
2150
2151 mp = ap->ip->i_mount;
David Chinner957d0eb2007-06-18 16:50:37 +10002152 align = xfs_get_extsz_hint(ap->ip);
Nathan Scotta365bdd2006-03-14 13:34:16 +11002153 prod = align / mp->m_sb.sb_rextsize;
Dave Chinnerbaf41a52011-09-18 20:40:56 +00002154 error = xfs_bmap_extsize_align(mp, &ap->got, &ap->prev,
Nathan Scotta365bdd2006-03-14 13:34:16 +11002155 align, 1, ap->eof, 0,
Dave Chinner3a756672011-09-18 20:40:58 +00002156 ap->conv, &ap->offset, &ap->length);
Nathan Scotta365bdd2006-03-14 13:34:16 +11002157 if (error)
2158 return error;
Dave Chinner3a756672011-09-18 20:40:58 +00002159 ASSERT(ap->length);
2160 ASSERT(ap->length % mp->m_sb.sb_rextsize == 0);
Nathan Scotta365bdd2006-03-14 13:34:16 +11002161
2162 /*
2163 * If the offset & length are not perfectly aligned
2164 * then kill prod, it will just get us in trouble.
2165 */
Dave Chinner3a756672011-09-18 20:40:58 +00002166 if (do_mod(ap->offset, align) || ap->length % align)
Nathan Scotta365bdd2006-03-14 13:34:16 +11002167 prod = 1;
2168 /*
2169 * Set ralen to be the actual requested length in rtextents.
2170 */
Dave Chinner3a756672011-09-18 20:40:58 +00002171 ralen = ap->length / mp->m_sb.sb_rextsize;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002172 /*
2173 * If the old value was close enough to MAXEXTLEN that
2174 * we rounded up to it, cut it back so it's valid again.
2175 * Note that if it's a really large request (bigger than
2176 * MAXEXTLEN), we don't hear about that number, and can't
2177 * adjust the starting point to match it.
2178 */
2179 if (ralen * mp->m_sb.sb_rextsize >= MAXEXTLEN)
2180 ralen = MAXEXTLEN / mp->m_sb.sb_rextsize;
Christoph Hellwig04e99452011-01-25 09:06:19 +00002181
2182 /*
2183 * Lock out other modifications to the RT bitmap inode.
2184 */
Christoph Hellwig1050c712011-02-13 13:25:31 +00002185 xfs_ilock(mp->m_rbmip, XFS_ILOCK_EXCL);
2186 xfs_trans_ijoin_ref(ap->tp, mp->m_rbmip, XFS_ILOCK_EXCL);
Christoph Hellwig04e99452011-01-25 09:06:19 +00002187
Nathan Scotta365bdd2006-03-14 13:34:16 +11002188 /*
2189 * If it's an allocation to an empty file at offset 0,
2190 * pick an extent that will space things out in the rt area.
2191 */
Dave Chinner3a756672011-09-18 20:40:58 +00002192 if (ap->eof && ap->offset == 0) {
Andrew Morton0892ccd2007-06-28 16:46:56 +10002193 xfs_rtblock_t uninitialized_var(rtx); /* realtime extent no */
2194
Nathan Scotta365bdd2006-03-14 13:34:16 +11002195 error = xfs_rtpick_extent(mp, ap->tp, ralen, &rtx);
2196 if (error)
2197 return error;
Dave Chinner3a756672011-09-18 20:40:58 +00002198 ap->blkno = rtx * mp->m_sb.sb_rextsize;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002199 } else {
Dave Chinner3a756672011-09-18 20:40:58 +00002200 ap->blkno = 0;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002201 }
2202
2203 xfs_bmap_adjacent(ap);
2204
2205 /*
2206 * Realtime allocation, done through xfs_rtallocate_extent.
2207 */
Dave Chinner3a756672011-09-18 20:40:58 +00002208 atype = ap->blkno == 0 ? XFS_ALLOCTYPE_ANY_AG : XFS_ALLOCTYPE_NEAR_BNO;
2209 do_div(ap->blkno, mp->m_sb.sb_rextsize);
2210 rtb = ap->blkno;
2211 ap->length = ralen;
2212 if ((error = xfs_rtallocate_extent(ap->tp, ap->blkno, 1, ap->length,
Nathan Scotta365bdd2006-03-14 13:34:16 +11002213 &ralen, atype, ap->wasdel, prod, &rtb)))
2214 return error;
2215 if (rtb == NULLFSBLOCK && prod > 1 &&
Dave Chinner3a756672011-09-18 20:40:58 +00002216 (error = xfs_rtallocate_extent(ap->tp, ap->blkno, 1,
2217 ap->length, &ralen, atype,
Nathan Scotta365bdd2006-03-14 13:34:16 +11002218 ap->wasdel, 1, &rtb)))
2219 return error;
Dave Chinner3a756672011-09-18 20:40:58 +00002220 ap->blkno = rtb;
2221 if (ap->blkno != NULLFSBLOCK) {
2222 ap->blkno *= mp->m_sb.sb_rextsize;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002223 ralen *= mp->m_sb.sb_rextsize;
Dave Chinner3a756672011-09-18 20:40:58 +00002224 ap->length = ralen;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002225 ap->ip->i_d.di_nblocks += ralen;
2226 xfs_trans_log_inode(ap->tp, ap->ip, XFS_ILOG_CORE);
2227 if (ap->wasdel)
2228 ap->ip->i_delayed_blks -= ralen;
2229 /*
2230 * Adjust the disk quota also. This was reserved
2231 * earlier.
2232 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02002233 xfs_trans_mod_dquot_byino(ap->tp, ap->ip,
Nathan Scotta365bdd2006-03-14 13:34:16 +11002234 ap->wasdel ? XFS_TRANS_DQ_DELRTBCOUNT :
2235 XFS_TRANS_DQ_RTBCOUNT, (long) ralen);
2236 } else {
Dave Chinner3a756672011-09-18 20:40:58 +00002237 ap->length = 0;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002238 }
2239 return 0;
2240}
2241
2242STATIC int
Christoph Hellwigc467c042010-02-15 23:34:42 +00002243xfs_bmap_btalloc_nullfb(
2244 struct xfs_bmalloca *ap,
2245 struct xfs_alloc_arg *args,
2246 xfs_extlen_t *blen)
2247{
2248 struct xfs_mount *mp = ap->ip->i_mount;
2249 struct xfs_perag *pag;
2250 xfs_agnumber_t ag, startag;
2251 int notinit = 0;
2252 int error;
2253
2254 if (ap->userdata && xfs_inode_is_filestream(ap->ip))
2255 args->type = XFS_ALLOCTYPE_NEAR_BNO;
2256 else
2257 args->type = XFS_ALLOCTYPE_START_BNO;
2258 args->total = ap->total;
2259
2260 /*
2261 * Search for an allocation group with a single extent large enough
2262 * for the request. If one isn't found, then adjust the minimum
2263 * allocation size to the largest space found.
2264 */
2265 startag = ag = XFS_FSB_TO_AGNO(mp, args->fsbno);
2266 if (startag == NULLAGNUMBER)
2267 startag = ag = 0;
2268
2269 pag = xfs_perag_get(mp, ag);
Dave Chinner14b064c2011-01-27 12:16:28 +11002270 while (*blen < args->maxlen) {
Christoph Hellwigc467c042010-02-15 23:34:42 +00002271 if (!pag->pagf_init) {
2272 error = xfs_alloc_pagf_init(mp, args->tp, ag,
2273 XFS_ALLOC_FLAG_TRYLOCK);
2274 if (error) {
2275 xfs_perag_put(pag);
2276 return error;
2277 }
2278 }
2279
2280 /*
2281 * See xfs_alloc_fix_freelist...
2282 */
2283 if (pag->pagf_init) {
2284 xfs_extlen_t longest;
2285 longest = xfs_alloc_longest_free_extent(mp, pag);
2286 if (*blen < longest)
2287 *blen = longest;
2288 } else
2289 notinit = 1;
2290
2291 if (xfs_inode_is_filestream(ap->ip)) {
Dave Chinner14b064c2011-01-27 12:16:28 +11002292 if (*blen >= args->maxlen)
Christoph Hellwigc467c042010-02-15 23:34:42 +00002293 break;
2294
2295 if (ap->userdata) {
2296 /*
2297 * If startag is an invalid AG, we've
2298 * come here once before and
2299 * xfs_filestream_new_ag picked the
2300 * best currently available.
2301 *
2302 * Don't continue looping, since we
2303 * could loop forever.
2304 */
2305 if (startag == NULLAGNUMBER)
2306 break;
2307
2308 error = xfs_filestream_new_ag(ap, &ag);
2309 xfs_perag_put(pag);
2310 if (error)
2311 return error;
2312
2313 /* loop again to set 'blen'*/
2314 startag = NULLAGNUMBER;
2315 pag = xfs_perag_get(mp, ag);
2316 continue;
2317 }
2318 }
2319 if (++ag == mp->m_sb.sb_agcount)
2320 ag = 0;
2321 if (ag == startag)
2322 break;
2323 xfs_perag_put(pag);
2324 pag = xfs_perag_get(mp, ag);
2325 }
2326 xfs_perag_put(pag);
2327
2328 /*
2329 * Since the above loop did a BUF_TRYLOCK, it is
2330 * possible that there is space for this request.
2331 */
2332 if (notinit || *blen < ap->minlen)
2333 args->minlen = ap->minlen;
2334 /*
2335 * If the best seen length is less than the request
2336 * length, use the best as the minimum.
2337 */
Dave Chinner14b064c2011-01-27 12:16:28 +11002338 else if (*blen < args->maxlen)
Christoph Hellwigc467c042010-02-15 23:34:42 +00002339 args->minlen = *blen;
2340 /*
Dave Chinner14b064c2011-01-27 12:16:28 +11002341 * Otherwise we've seen an extent as big as maxlen,
Christoph Hellwigc467c042010-02-15 23:34:42 +00002342 * use that as the minimum.
2343 */
2344 else
Dave Chinner14b064c2011-01-27 12:16:28 +11002345 args->minlen = args->maxlen;
Christoph Hellwigc467c042010-02-15 23:34:42 +00002346
2347 /*
2348 * set the failure fallback case to look in the selected
2349 * AG as the stream may have moved.
2350 */
2351 if (xfs_inode_is_filestream(ap->ip))
Dave Chinner3a756672011-09-18 20:40:58 +00002352 ap->blkno = args->fsbno = XFS_AGB_TO_FSB(mp, ag, 0);
Christoph Hellwigc467c042010-02-15 23:34:42 +00002353
2354 return 0;
2355}
2356
2357STATIC int
Nathan Scotta365bdd2006-03-14 13:34:16 +11002358xfs_bmap_btalloc(
2359 xfs_bmalloca_t *ap) /* bmap alloc argument struct */
2360{
2361 xfs_mount_t *mp; /* mount point structure */
2362 xfs_alloctype_t atype = 0; /* type for allocation routines */
2363 xfs_extlen_t align; /* minimum allocation alignment */
Nathan Scotta365bdd2006-03-14 13:34:16 +11002364 xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */
Christoph Hellwigc467c042010-02-15 23:34:42 +00002365 xfs_agnumber_t ag;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002366 xfs_alloc_arg_t args;
2367 xfs_extlen_t blen;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002368 xfs_extlen_t nextminlen = 0;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002369 int nullfb; /* true if ap->firstblock isn't set */
2370 int isaligned;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002371 int tryagain;
2372 int error;
2373
2374 mp = ap->ip->i_mount;
David Chinner957d0eb2007-06-18 16:50:37 +10002375 align = ap->userdata ? xfs_get_extsz_hint(ap->ip) : 0;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002376 if (unlikely(align)) {
Dave Chinnerbaf41a52011-09-18 20:40:56 +00002377 error = xfs_bmap_extsize_align(mp, &ap->got, &ap->prev,
Nathan Scotta365bdd2006-03-14 13:34:16 +11002378 align, 0, ap->eof, 0, ap->conv,
Dave Chinner3a756672011-09-18 20:40:58 +00002379 &ap->offset, &ap->length);
Nathan Scotta365bdd2006-03-14 13:34:16 +11002380 ASSERT(!error);
Dave Chinner3a756672011-09-18 20:40:58 +00002381 ASSERT(ap->length);
Nathan Scotta365bdd2006-03-14 13:34:16 +11002382 }
Dave Chinner0937e0f2011-09-18 20:40:57 +00002383 nullfb = *ap->firstblock == NULLFSBLOCK;
2384 fb_agno = nullfb ? NULLAGNUMBER : XFS_FSB_TO_AGNO(mp, *ap->firstblock);
David Chinner2a82b8b2007-07-11 11:09:12 +10002385 if (nullfb) {
2386 if (ap->userdata && xfs_inode_is_filestream(ap->ip)) {
2387 ag = xfs_filestream_lookup_ag(ap->ip);
2388 ag = (ag != NULLAGNUMBER) ? ag : 0;
Dave Chinner3a756672011-09-18 20:40:58 +00002389 ap->blkno = XFS_AGB_TO_FSB(mp, ag, 0);
David Chinner2a82b8b2007-07-11 11:09:12 +10002390 } else {
Dave Chinner3a756672011-09-18 20:40:58 +00002391 ap->blkno = XFS_INO_TO_FSB(mp, ap->ip->i_ino);
David Chinner2a82b8b2007-07-11 11:09:12 +10002392 }
2393 } else
Dave Chinner3a756672011-09-18 20:40:58 +00002394 ap->blkno = *ap->firstblock;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002395
2396 xfs_bmap_adjacent(ap);
2397
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 /*
Dave Chinner3a756672011-09-18 20:40:58 +00002399 * If allowed, use ap->blkno; otherwise must use firstblock since
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 * it's in the right allocation group.
2401 */
Dave Chinner3a756672011-09-18 20:40:58 +00002402 if (nullfb || XFS_FSB_TO_AGNO(mp, ap->blkno) == fb_agno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 ;
2404 else
Dave Chinner3a756672011-09-18 20:40:58 +00002405 ap->blkno = *ap->firstblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 * Normal allocation, done through xfs_alloc_vextent.
2408 */
Nathan Scotta365bdd2006-03-14 13:34:16 +11002409 tryagain = isaligned = 0;
2410 args.tp = ap->tp;
2411 args.mp = mp;
Dave Chinner3a756672011-09-18 20:40:58 +00002412 args.fsbno = ap->blkno;
Dave Chinner14b064c2011-01-27 12:16:28 +11002413
2414 /* Trim the allocation back to the maximum an AG can fit. */
Dave Chinner3a756672011-09-18 20:40:58 +00002415 args.maxlen = MIN(ap->length, XFS_ALLOC_AG_MAX_USABLE(mp));
Dave Chinner0937e0f2011-09-18 20:40:57 +00002416 args.firstblock = *ap->firstblock;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002417 blen = 0;
2418 if (nullfb) {
Christoph Hellwigc467c042010-02-15 23:34:42 +00002419 error = xfs_bmap_btalloc_nullfb(ap, &args, &blen);
2420 if (error)
2421 return error;
Dave Chinner0937e0f2011-09-18 20:40:57 +00002422 } else if (ap->flist->xbf_low) {
David Chinner2a82b8b2007-07-11 11:09:12 +10002423 if (xfs_inode_is_filestream(ap->ip))
2424 args.type = XFS_ALLOCTYPE_FIRST_AG;
2425 else
2426 args.type = XFS_ALLOCTYPE_START_BNO;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002427 args.total = args.minlen = ap->minlen;
2428 } else {
2429 args.type = XFS_ALLOCTYPE_NEAR_BNO;
2430 args.total = ap->total;
2431 args.minlen = ap->minlen;
2432 }
David Chinner957d0eb2007-06-18 16:50:37 +10002433 /* apply extent size hints if obtained earlier */
2434 if (unlikely(align)) {
2435 args.prod = align;
Dave Chinner3a756672011-09-18 20:40:58 +00002436 if ((args.mod = (xfs_extlen_t)do_mod(ap->offset, args.prod)))
Nathan Scotta365bdd2006-03-14 13:34:16 +11002437 args.mod = (xfs_extlen_t)(args.prod - args.mod);
Tim Shimmine6a4b372007-11-23 16:30:42 +11002438 } else if (mp->m_sb.sb_blocksize >= PAGE_CACHE_SIZE) {
Nathan Scotta365bdd2006-03-14 13:34:16 +11002439 args.prod = 1;
2440 args.mod = 0;
2441 } else {
Tim Shimmine6a4b372007-11-23 16:30:42 +11002442 args.prod = PAGE_CACHE_SIZE >> mp->m_sb.sb_blocklog;
Dave Chinner3a756672011-09-18 20:40:58 +00002443 if ((args.mod = (xfs_extlen_t)(do_mod(ap->offset, args.prod))))
Nathan Scotta365bdd2006-03-14 13:34:16 +11002444 args.mod = (xfs_extlen_t)(args.prod - args.mod);
2445 }
2446 /*
2447 * If we are not low on available data blocks, and the
2448 * underlying logical volume manager is a stripe, and
2449 * the file offset is zero then try to allocate data
2450 * blocks on stripe unit boundary.
2451 * NOTE: ap->aeof is only set if the allocation length
2452 * is >= the stripe unit and the allocation offset is
2453 * at the end of file.
2454 */
Dave Chinner0937e0f2011-09-18 20:40:57 +00002455 if (!ap->flist->xbf_low && ap->aeof) {
Dave Chinner3a756672011-09-18 20:40:58 +00002456 if (!ap->offset) {
Nathan Scotta365bdd2006-03-14 13:34:16 +11002457 args.alignment = mp->m_dalign;
2458 atype = args.type;
2459 isaligned = 1;
2460 /*
2461 * Adjust for alignment
2462 */
Dave Chinner14b064c2011-01-27 12:16:28 +11002463 if (blen > args.alignment && blen <= args.maxlen)
Nathan Scotta365bdd2006-03-14 13:34:16 +11002464 args.minlen = blen - args.alignment;
2465 args.minalignslop = 0;
2466 } else {
2467 /*
2468 * First try an exact bno allocation.
2469 * If it fails then do a near or start bno
2470 * allocation with alignment turned on.
2471 */
2472 atype = args.type;
2473 tryagain = 1;
2474 args.type = XFS_ALLOCTYPE_THIS_BNO;
2475 args.alignment = 1;
2476 /*
2477 * Compute the minlen+alignment for the
2478 * next case. Set slop so that the value
2479 * of minlen+alignment+slop doesn't go up
2480 * between the calls.
2481 */
Dave Chinner14b064c2011-01-27 12:16:28 +11002482 if (blen > mp->m_dalign && blen <= args.maxlen)
Nathan Scotta365bdd2006-03-14 13:34:16 +11002483 nextminlen = blen - mp->m_dalign;
2484 else
2485 nextminlen = args.minlen;
2486 if (nextminlen + mp->m_dalign > args.minlen + 1)
2487 args.minalignslop =
2488 nextminlen + mp->m_dalign -
2489 args.minlen - 1;
2490 else
2491 args.minalignslop = 0;
2492 }
2493 } else {
2494 args.alignment = 1;
2495 args.minalignslop = 0;
2496 }
2497 args.minleft = ap->minleft;
2498 args.wasdel = ap->wasdel;
2499 args.isfl = 0;
2500 args.userdata = ap->userdata;
2501 if ((error = xfs_alloc_vextent(&args)))
2502 return error;
2503 if (tryagain && args.fsbno == NULLFSBLOCK) {
2504 /*
2505 * Exact allocation failed. Now try with alignment
2506 * turned on.
2507 */
2508 args.type = atype;
Dave Chinner3a756672011-09-18 20:40:58 +00002509 args.fsbno = ap->blkno;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002510 args.alignment = mp->m_dalign;
2511 args.minlen = nextminlen;
2512 args.minalignslop = 0;
2513 isaligned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 if ((error = xfs_alloc_vextent(&args)))
2515 return error;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002516 }
2517 if (isaligned && args.fsbno == NULLFSBLOCK) {
2518 /*
2519 * allocation failed, so turn off alignment and
2520 * try again.
2521 */
2522 args.type = atype;
Dave Chinner3a756672011-09-18 20:40:58 +00002523 args.fsbno = ap->blkno;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002524 args.alignment = 0;
2525 if ((error = xfs_alloc_vextent(&args)))
2526 return error;
2527 }
2528 if (args.fsbno == NULLFSBLOCK && nullfb &&
2529 args.minlen > ap->minlen) {
2530 args.minlen = ap->minlen;
2531 args.type = XFS_ALLOCTYPE_START_BNO;
Dave Chinner3a756672011-09-18 20:40:58 +00002532 args.fsbno = ap->blkno;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002533 if ((error = xfs_alloc_vextent(&args)))
2534 return error;
2535 }
2536 if (args.fsbno == NULLFSBLOCK && nullfb) {
2537 args.fsbno = 0;
2538 args.type = XFS_ALLOCTYPE_FIRST_AG;
2539 args.total = ap->minlen;
2540 args.minleft = 0;
2541 if ((error = xfs_alloc_vextent(&args)))
2542 return error;
Dave Chinner0937e0f2011-09-18 20:40:57 +00002543 ap->flist->xbf_low = 1;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002544 }
2545 if (args.fsbno != NULLFSBLOCK) {
Dave Chinner0937e0f2011-09-18 20:40:57 +00002546 /*
2547 * check the allocation happened at the same or higher AG than
2548 * the first block that was allocated.
2549 */
2550 ASSERT(*ap->firstblock == NULLFSBLOCK ||
2551 XFS_FSB_TO_AGNO(mp, *ap->firstblock) ==
2552 XFS_FSB_TO_AGNO(mp, args.fsbno) ||
2553 (ap->flist->xbf_low &&
2554 XFS_FSB_TO_AGNO(mp, *ap->firstblock) <
2555 XFS_FSB_TO_AGNO(mp, args.fsbno)));
2556
Dave Chinner3a756672011-09-18 20:40:58 +00002557 ap->blkno = args.fsbno;
Dave Chinner0937e0f2011-09-18 20:40:57 +00002558 if (*ap->firstblock == NULLFSBLOCK)
2559 *ap->firstblock = args.fsbno;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002560 ASSERT(nullfb || fb_agno == args.agno ||
Dave Chinner0937e0f2011-09-18 20:40:57 +00002561 (ap->flist->xbf_low && fb_agno < args.agno));
Dave Chinner3a756672011-09-18 20:40:58 +00002562 ap->length = args.len;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002563 ap->ip->i_d.di_nblocks += args.len;
2564 xfs_trans_log_inode(ap->tp, ap->ip, XFS_ILOG_CORE);
2565 if (ap->wasdel)
2566 ap->ip->i_delayed_blks -= args.len;
2567 /*
2568 * Adjust the disk quota also. This was reserved
2569 * earlier.
2570 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02002571 xfs_trans_mod_dquot_byino(ap->tp, ap->ip,
Nathan Scotta365bdd2006-03-14 13:34:16 +11002572 ap->wasdel ? XFS_TRANS_DQ_DELBCOUNT :
2573 XFS_TRANS_DQ_BCOUNT,
2574 (long) args.len);
2575 } else {
Dave Chinner3a756672011-09-18 20:40:58 +00002576 ap->blkno = NULLFSBLOCK;
2577 ap->length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 }
2579 return 0;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002580}
2581
2582/*
2583 * xfs_bmap_alloc is called by xfs_bmapi to allocate an extent for a file.
2584 * It figures out where to ask the underlying allocator to put the new extent.
2585 */
2586STATIC int
2587xfs_bmap_alloc(
2588 xfs_bmalloca_t *ap) /* bmap alloc argument struct */
2589{
Eric Sandeen71ddabb2007-11-23 16:29:42 +11002590 if (XFS_IS_REALTIME_INODE(ap->ip) && ap->userdata)
Nathan Scotta365bdd2006-03-14 13:34:16 +11002591 return xfs_bmap_rtalloc(ap);
2592 return xfs_bmap_btalloc(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593}
2594
2595/*
2596 * Transform a btree format file with only one leaf node, where the
2597 * extents list will fit in the inode, into an extents format file.
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002598 * Since the file extents are already in-core, all we have to do is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 * give up the space for the btree root and pitch the leaf block.
2600 */
2601STATIC int /* error */
2602xfs_bmap_btree_to_extents(
2603 xfs_trans_t *tp, /* transaction pointer */
2604 xfs_inode_t *ip, /* incore inode pointer */
2605 xfs_btree_cur_t *cur, /* btree cursor */
2606 int *logflagsp, /* inode logging flags */
2607 int whichfork) /* data or attr fork */
2608{
2609 /* REFERENCED */
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11002610 struct xfs_btree_block *cblock;/* child btree block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 xfs_fsblock_t cbno; /* child block number */
2612 xfs_buf_t *cbp; /* child block's buffer */
2613 int error; /* error return value */
2614 xfs_ifork_t *ifp; /* inode fork data */
2615 xfs_mount_t *mp; /* mount point structure */
Christoph Hellwig576039c2006-09-28 10:58:06 +10002616 __be64 *pp; /* ptr to block address */
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11002617 struct xfs_btree_block *rblock;/* root btree block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
Christoph Hellwig60197e82008-10-30 17:11:19 +11002619 mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 ifp = XFS_IFORK_PTR(ip, whichfork);
2621 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
2622 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE);
2623 rblock = ifp->if_broot;
Christoph Hellwig16259e72005-11-02 15:11:25 +11002624 ASSERT(be16_to_cpu(rblock->bb_level) == 1);
2625 ASSERT(be16_to_cpu(rblock->bb_numrecs) == 1);
Christoph Hellwig60197e82008-10-30 17:11:19 +11002626 ASSERT(xfs_bmbt_maxrecs(mp, ifp->if_broot_bytes, 0) == 1);
2627 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, ifp->if_broot_bytes);
Christoph Hellwig576039c2006-09-28 10:58:06 +10002628 cbno = be64_to_cpu(*pp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 *logflagsp = 0;
2630#ifdef DEBUG
Christoph Hellwig576039c2006-09-28 10:58:06 +10002631 if ((error = xfs_btree_check_lptr(cur, cbno, 1)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 return error;
2633#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 if ((error = xfs_btree_read_bufl(mp, tp, cbno, 0, &cbp,
2635 XFS_BMAP_BTREE_REF)))
2636 return error;
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11002637 cblock = XFS_BUF_TO_BLOCK(cbp);
2638 if ((error = xfs_btree_check_block(cur, cblock, 0, cbp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 return error;
2640 xfs_bmap_add_free(cbno, 1, cur->bc_private.b.flist, mp);
2641 ip->i_d.di_nblocks--;
Christoph Hellwig7d095252009-06-08 15:33:32 +02002642 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, -1L);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 xfs_trans_binval(tp, cbp);
2644 if (cur->bc_bufs[0] == cbp)
2645 cur->bc_bufs[0] = NULL;
2646 xfs_iroot_realloc(ip, -1, whichfork);
2647 ASSERT(ifp->if_broot == NULL);
2648 ASSERT((ifp->if_flags & XFS_IFBROOT) == 0);
2649 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS);
Eric Sandeen9d87c312009-01-14 23:22:07 -06002650 *logflagsp = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 return 0;
2652}
2653
2654/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002655 * Called by xfs_bmapi to update file extent records and the btree
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 * after removing space (or undoing a delayed allocation).
2657 */
2658STATIC int /* error */
2659xfs_bmap_del_extent(
2660 xfs_inode_t *ip, /* incore inode pointer */
2661 xfs_trans_t *tp, /* current transaction pointer */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002662 xfs_extnum_t *idx, /* extent number to update/delete */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 xfs_bmap_free_t *flist, /* list of extents to be freed */
2664 xfs_btree_cur_t *cur, /* if null, not a btree */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002665 xfs_bmbt_irec_t *del, /* data to remove from extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 int *logflagsp, /* inode logging flags */
Christoph Hellwig54893272011-05-11 15:04:03 +00002667 int whichfork) /* data or attr fork */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668{
2669 xfs_filblks_t da_new; /* new delay-alloc indirect blocks */
2670 xfs_filblks_t da_old; /* old delay-alloc indirect blocks */
2671 xfs_fsblock_t del_endblock=0; /* first block past del */
2672 xfs_fileoff_t del_endoff; /* first offset past del */
2673 int delay; /* current block is delayed allocated */
2674 int do_fx; /* free extent at end of routine */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10002675 xfs_bmbt_rec_host_t *ep; /* current extent entry pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 int error; /* error return value */
2677 int flags; /* inode logging flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 xfs_bmbt_irec_t got; /* current extent entry */
2679 xfs_fileoff_t got_endoff; /* first offset past got */
2680 int i; /* temp state */
2681 xfs_ifork_t *ifp; /* inode fork pointer */
2682 xfs_mount_t *mp; /* mount structure */
2683 xfs_filblks_t nblks; /* quota/sb block count */
2684 xfs_bmbt_irec_t new; /* new record to be inserted */
2685 /* REFERENCED */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 uint qfield; /* quota field to update */
2687 xfs_filblks_t temp; /* for indirect length calculations */
2688 xfs_filblks_t temp2; /* for indirect length calculations */
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002689 int state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
2691 XFS_STATS_INC(xs_del_exlist);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002692
2693 if (whichfork == XFS_ATTR_FORK)
2694 state |= BMAP_ATTRFORK;
2695
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 mp = ip->i_mount;
2697 ifp = XFS_IFORK_PTR(ip, whichfork);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002698 ASSERT((*idx >= 0) && (*idx < ifp->if_bytes /
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002699 (uint)sizeof(xfs_bmbt_rec_t)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 ASSERT(del->br_blockcount > 0);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002701 ep = xfs_iext_get_ext(ifp, *idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 xfs_bmbt_get_all(ep, &got);
2703 ASSERT(got.br_startoff <= del->br_startoff);
2704 del_endoff = del->br_startoff + del->br_blockcount;
2705 got_endoff = got.br_startoff + got.br_blockcount;
2706 ASSERT(got_endoff >= del_endoff);
Eric Sandeen9d87c312009-01-14 23:22:07 -06002707 delay = isnullstartblock(got.br_startblock);
2708 ASSERT(isnullstartblock(del->br_startblock) == delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 flags = 0;
2710 qfield = 0;
2711 error = 0;
2712 /*
2713 * If deleting a real allocation, must free up the disk space.
2714 */
2715 if (!delay) {
2716 flags = XFS_ILOG_CORE;
2717 /*
2718 * Realtime allocation. Free it and record di_nblocks update.
2719 */
Eric Sandeen71ddabb2007-11-23 16:29:42 +11002720 if (whichfork == XFS_DATA_FORK && XFS_IS_REALTIME_INODE(ip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 xfs_fsblock_t bno;
2722 xfs_filblks_t len;
2723
2724 ASSERT(do_mod(del->br_blockcount,
2725 mp->m_sb.sb_rextsize) == 0);
2726 ASSERT(do_mod(del->br_startblock,
2727 mp->m_sb.sb_rextsize) == 0);
2728 bno = del->br_startblock;
2729 len = del->br_blockcount;
2730 do_div(bno, mp->m_sb.sb_rextsize);
2731 do_div(len, mp->m_sb.sb_rextsize);
Christoph Hellwigf3ca87382011-07-08 14:34:47 +02002732 error = xfs_rtfree_extent(tp, bno, (xfs_extlen_t)len);
2733 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 goto done;
2735 do_fx = 0;
2736 nblks = len * mp->m_sb.sb_rextsize;
2737 qfield = XFS_TRANS_DQ_RTBCOUNT;
2738 }
2739 /*
2740 * Ordinary allocation.
2741 */
2742 else {
2743 do_fx = 1;
2744 nblks = del->br_blockcount;
2745 qfield = XFS_TRANS_DQ_BCOUNT;
2746 }
2747 /*
2748 * Set up del_endblock and cur for later.
2749 */
2750 del_endblock = del->br_startblock + del->br_blockcount;
2751 if (cur) {
2752 if ((error = xfs_bmbt_lookup_eq(cur, got.br_startoff,
2753 got.br_startblock, got.br_blockcount,
2754 &i)))
2755 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002756 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 }
2758 da_old = da_new = 0;
2759 } else {
Eric Sandeen9d87c312009-01-14 23:22:07 -06002760 da_old = startblockval(got.br_startblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 da_new = 0;
2762 nblks = 0;
2763 do_fx = 0;
2764 }
2765 /*
2766 * Set flag value to use in switch statement.
2767 * Left-contig is 2, right-contig is 1.
2768 */
2769 switch (((got.br_startoff == del->br_startoff) << 1) |
2770 (got_endoff == del_endoff)) {
2771 case 3:
2772 /*
2773 * Matches the whole extent. Delete the entry.
2774 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002775 xfs_iext_remove(ip, *idx, 1,
Christoph Hellwig6ef35542009-11-25 00:00:21 +00002776 whichfork == XFS_ATTR_FORK ? BMAP_ATTRFORK : 0);
Christoph Hellwig233eebb2011-05-11 15:04:05 +00002777 --*idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 if (delay)
2779 break;
Christoph Hellwig233eebb2011-05-11 15:04:05 +00002780
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 XFS_IFORK_NEXT_SET(ip, whichfork,
2782 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
2783 flags |= XFS_ILOG_CORE;
2784 if (!cur) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06002785 flags |= xfs_ilog_fext(whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 break;
2787 }
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11002788 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002790 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 break;
2792
2793 case 2:
2794 /*
2795 * Deleting the first part of the extent.
2796 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002797 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 xfs_bmbt_set_startoff(ep, del_endoff);
2799 temp = got.br_blockcount - del->br_blockcount;
2800 xfs_bmbt_set_blockcount(ep, temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 if (delay) {
2802 temp = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
2803 da_old);
Eric Sandeen9d87c312009-01-14 23:22:07 -06002804 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
Christoph Hellwigec90c552011-05-23 08:52:53 +00002805 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 da_new = temp;
2807 break;
2808 }
2809 xfs_bmbt_set_startblock(ep, del_endblock);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002810 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 if (!cur) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06002812 flags |= xfs_ilog_fext(whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 break;
2814 }
2815 if ((error = xfs_bmbt_update(cur, del_endoff, del_endblock,
2816 got.br_blockcount - del->br_blockcount,
2817 got.br_state)))
2818 goto done;
2819 break;
2820
2821 case 1:
2822 /*
2823 * Deleting the last part of the extent.
2824 */
2825 temp = got.br_blockcount - del->br_blockcount;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002826 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 xfs_bmbt_set_blockcount(ep, temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 if (delay) {
2829 temp = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
2830 da_old);
Eric Sandeen9d87c312009-01-14 23:22:07 -06002831 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
Christoph Hellwigec90c552011-05-23 08:52:53 +00002832 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 da_new = temp;
2834 break;
2835 }
Christoph Hellwigec90c552011-05-23 08:52:53 +00002836 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 if (!cur) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06002838 flags |= xfs_ilog_fext(whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 break;
2840 }
2841 if ((error = xfs_bmbt_update(cur, got.br_startoff,
2842 got.br_startblock,
2843 got.br_blockcount - del->br_blockcount,
2844 got.br_state)))
2845 goto done;
2846 break;
2847
2848 case 0:
2849 /*
2850 * Deleting the middle of the extent.
2851 */
2852 temp = del->br_startoff - got.br_startoff;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002853 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 xfs_bmbt_set_blockcount(ep, temp);
2855 new.br_startoff = del_endoff;
2856 temp2 = got_endoff - del_endoff;
2857 new.br_blockcount = temp2;
2858 new.br_state = got.br_state;
2859 if (!delay) {
2860 new.br_startblock = del_endblock;
2861 flags |= XFS_ILOG_CORE;
2862 if (cur) {
2863 if ((error = xfs_bmbt_update(cur,
2864 got.br_startoff,
2865 got.br_startblock, temp,
2866 got.br_state)))
2867 goto done;
Christoph Hellwig637aa502008-10-30 16:55:45 +11002868 if ((error = xfs_btree_increment(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 goto done;
2870 cur->bc_rec.b = new;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11002871 error = xfs_btree_insert(cur, &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 if (error && error != ENOSPC)
2873 goto done;
2874 /*
2875 * If get no-space back from btree insert,
2876 * it tried a split, and we have a zero
2877 * block reservation.
2878 * Fix up our state and return the error.
2879 */
2880 if (error == ENOSPC) {
2881 /*
2882 * Reset the cursor, don't trust
2883 * it after any insert operation.
2884 */
2885 if ((error = xfs_bmbt_lookup_eq(cur,
2886 got.br_startoff,
2887 got.br_startblock,
2888 temp, &i)))
2889 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002890 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 /*
2892 * Update the btree record back
2893 * to the original value.
2894 */
2895 if ((error = xfs_bmbt_update(cur,
2896 got.br_startoff,
2897 got.br_startblock,
2898 got.br_blockcount,
2899 got.br_state)))
2900 goto done;
2901 /*
2902 * Reset the extent record back
2903 * to the original value.
2904 */
2905 xfs_bmbt_set_blockcount(ep,
2906 got.br_blockcount);
2907 flags = 0;
2908 error = XFS_ERROR(ENOSPC);
2909 goto done;
2910 }
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002911 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 } else
Eric Sandeen9d87c312009-01-14 23:22:07 -06002913 flags |= xfs_ilog_fext(whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 XFS_IFORK_NEXT_SET(ip, whichfork,
2915 XFS_IFORK_NEXTENTS(ip, whichfork) + 1);
2916 } else {
2917 ASSERT(whichfork == XFS_DATA_FORK);
2918 temp = xfs_bmap_worst_indlen(ip, temp);
Eric Sandeen9d87c312009-01-14 23:22:07 -06002919 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 temp2 = xfs_bmap_worst_indlen(ip, temp2);
Eric Sandeen9d87c312009-01-14 23:22:07 -06002921 new.br_startblock = nullstartblock((int)temp2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 da_new = temp + temp2;
2923 while (da_new > da_old) {
2924 if (temp) {
2925 temp--;
2926 da_new--;
2927 xfs_bmbt_set_startblock(ep,
Eric Sandeen9d87c312009-01-14 23:22:07 -06002928 nullstartblock((int)temp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 }
2930 if (da_new == da_old)
2931 break;
2932 if (temp2) {
2933 temp2--;
2934 da_new--;
2935 new.br_startblock =
Eric Sandeen9d87c312009-01-14 23:22:07 -06002936 nullstartblock((int)temp2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 }
2938 }
2939 }
Christoph Hellwigec90c552011-05-23 08:52:53 +00002940 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2941 xfs_iext_insert(ip, *idx + 1, 1, &new, state);
2942 ++*idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 break;
2944 }
2945 /*
2946 * If we need to, add to list of extents to delete.
2947 */
2948 if (do_fx)
2949 xfs_bmap_add_free(del->br_startblock, del->br_blockcount, flist,
2950 mp);
2951 /*
2952 * Adjust inode # blocks in the file.
2953 */
2954 if (nblks)
2955 ip->i_d.di_nblocks -= nblks;
2956 /*
2957 * Adjust quota data.
2958 */
2959 if (qfield)
Christoph Hellwig7d095252009-06-08 15:33:32 +02002960 xfs_trans_mod_dquot_byino(tp, ip, qfield, (long)-nblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961
2962 /*
2963 * Account for change in delayed indirect blocks.
2964 * Nothing to do for disk quota accounting here.
2965 */
2966 ASSERT(da_old >= da_new);
Christoph Hellwig96540c72010-09-30 02:25:55 +00002967 if (da_old > da_new) {
2968 xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
Christoph Hellwig54893272011-05-11 15:04:03 +00002969 (int64_t)(da_old - da_new), 0);
Christoph Hellwig96540c72010-09-30 02:25:55 +00002970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971done:
2972 *logflagsp = flags;
2973 return error;
2974}
2975
2976/*
2977 * Remove the entry "free" from the free item list. Prev points to the
2978 * previous entry, unless "free" is the head of the list.
2979 */
2980STATIC void
2981xfs_bmap_del_free(
2982 xfs_bmap_free_t *flist, /* free item list header */
2983 xfs_bmap_free_item_t *prev, /* previous item on list, if any */
2984 xfs_bmap_free_item_t *free) /* list item to be freed */
2985{
2986 if (prev)
2987 prev->xbfi_next = free->xbfi_next;
2988 else
2989 flist->xbf_first = free->xbfi_next;
2990 flist->xbf_count--;
2991 kmem_zone_free(xfs_bmap_free_item_zone, free);
2992}
2993
2994/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 * Convert an extents-format file into a btree-format file.
2996 * The new file will have a root block (in the inode) and a single child block.
2997 */
2998STATIC int /* error */
2999xfs_bmap_extents_to_btree(
3000 xfs_trans_t *tp, /* transaction pointer */
3001 xfs_inode_t *ip, /* incore inode pointer */
3002 xfs_fsblock_t *firstblock, /* first-block-allocated */
3003 xfs_bmap_free_t *flist, /* blocks freed in xaction */
3004 xfs_btree_cur_t **curp, /* cursor returned to caller */
3005 int wasdel, /* converting a delayed alloc */
3006 int *logflagsp, /* inode logging flags */
3007 int whichfork) /* data or attr fork */
3008{
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11003009 struct xfs_btree_block *ablock; /* allocated (child) bt block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 xfs_buf_t *abp; /* buffer for ablock */
3011 xfs_alloc_arg_t args; /* allocation arguments */
3012 xfs_bmbt_rec_t *arp; /* child record pointer */
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11003013 struct xfs_btree_block *block; /* btree root block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 xfs_btree_cur_t *cur; /* bmap btree cursor */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003015 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 int error; /* error return value */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003017 xfs_extnum_t i, cnt; /* extent record index */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 xfs_ifork_t *ifp; /* inode fork pointer */
3019 xfs_bmbt_key_t *kp; /* root block key pointer */
3020 xfs_mount_t *mp; /* mount structure */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003021 xfs_extnum_t nextents; /* number of file extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 xfs_bmbt_ptr_t *pp; /* root block address pointer */
3023
3024 ifp = XFS_IFORK_PTR(ip, whichfork);
3025 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS);
3026 ASSERT(ifp->if_ext_max ==
3027 XFS_IFORK_SIZE(ip, whichfork) / (uint)sizeof(xfs_bmbt_rec_t));
3028 /*
3029 * Make space in the inode incore.
3030 */
3031 xfs_iroot_realloc(ip, 1, whichfork);
3032 ifp->if_flags |= XFS_IFBROOT;
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11003033
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 /*
3035 * Fill in the root.
3036 */
3037 block = ifp->if_broot;
Christoph Hellwig16259e72005-11-02 15:11:25 +11003038 block->bb_magic = cpu_to_be32(XFS_BMAP_MAGIC);
3039 block->bb_level = cpu_to_be16(1);
3040 block->bb_numrecs = cpu_to_be16(1);
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11003041 block->bb_u.l.bb_leftsib = cpu_to_be64(NULLDFSBNO);
3042 block->bb_u.l.bb_rightsib = cpu_to_be64(NULLDFSBNO);
3043
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 /*
3045 * Need a cursor. Can't allocate until bb_level is filled in.
3046 */
3047 mp = ip->i_mount;
Christoph Hellwig561f7d12008-10-30 16:53:59 +11003048 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 cur->bc_private.b.firstblock = *firstblock;
3050 cur->bc_private.b.flist = flist;
3051 cur->bc_private.b.flags = wasdel ? XFS_BTCUR_BPRV_WASDEL : 0;
3052 /*
3053 * Convert to a btree with two levels, one record in root.
3054 */
3055 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_BTREE);
3056 args.tp = tp;
3057 args.mp = mp;
Yingping Lud210a282006-06-09 14:55:18 +10003058 args.firstblock = *firstblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 if (*firstblock == NULLFSBLOCK) {
3060 args.type = XFS_ALLOCTYPE_START_BNO;
3061 args.fsbno = XFS_INO_TO_FSB(mp, ip->i_ino);
3062 } else if (flist->xbf_low) {
3063 args.type = XFS_ALLOCTYPE_START_BNO;
3064 args.fsbno = *firstblock;
3065 } else {
3066 args.type = XFS_ALLOCTYPE_NEAR_BNO;
3067 args.fsbno = *firstblock;
3068 }
3069 args.minlen = args.maxlen = args.prod = 1;
3070 args.total = args.minleft = args.alignment = args.mod = args.isfl =
3071 args.minalignslop = 0;
3072 args.wasdel = wasdel;
3073 *logflagsp = 0;
3074 if ((error = xfs_alloc_vextent(&args))) {
3075 xfs_iroot_realloc(ip, -1, whichfork);
3076 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
3077 return error;
3078 }
3079 /*
3080 * Allocation can't fail, the space was reserved.
3081 */
3082 ASSERT(args.fsbno != NULLFSBLOCK);
3083 ASSERT(*firstblock == NULLFSBLOCK ||
3084 args.agno == XFS_FSB_TO_AGNO(mp, *firstblock) ||
3085 (flist->xbf_low &&
3086 args.agno > XFS_FSB_TO_AGNO(mp, *firstblock)));
3087 *firstblock = cur->bc_private.b.firstblock = args.fsbno;
3088 cur->bc_private.b.allocated++;
3089 ip->i_d.di_nblocks++;
Christoph Hellwig7d095252009-06-08 15:33:32 +02003090 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, 1L);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 abp = xfs_btree_get_bufl(mp, tp, args.fsbno, 0);
3092 /*
3093 * Fill in the child block.
3094 */
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11003095 ablock = XFS_BUF_TO_BLOCK(abp);
Christoph Hellwig16259e72005-11-02 15:11:25 +11003096 ablock->bb_magic = cpu_to_be32(XFS_BMAP_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 ablock->bb_level = 0;
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11003098 ablock->bb_u.l.bb_leftsib = cpu_to_be64(NULLDFSBNO);
3099 ablock->bb_u.l.bb_rightsib = cpu_to_be64(NULLDFSBNO);
Christoph Hellwig136341b2008-10-30 17:11:40 +11003100 arp = XFS_BMBT_REC_ADDR(mp, ablock, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003102 for (cnt = i = 0; i < nextents; i++) {
3103 ep = xfs_iext_get_ext(ifp, i);
Eric Sandeen9d87c312009-01-14 23:22:07 -06003104 if (!isnullstartblock(xfs_bmbt_get_startblock(ep))) {
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +10003105 arp->l0 = cpu_to_be64(ep->l0);
3106 arp->l1 = cpu_to_be64(ep->l1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 arp++; cnt++;
3108 }
3109 }
Christoph Hellwig16259e72005-11-02 15:11:25 +11003110 ASSERT(cnt == XFS_IFORK_NEXTENTS(ip, whichfork));
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11003111 xfs_btree_set_numrecs(ablock, cnt);
3112
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 /*
3114 * Fill in the root key and pointer.
3115 */
Christoph Hellwig136341b2008-10-30 17:11:40 +11003116 kp = XFS_BMBT_KEY_ADDR(mp, block, 1);
3117 arp = XFS_BMBT_REC_ADDR(mp, ablock, 1);
Christoph Hellwig8801bb92006-09-28 10:58:17 +10003118 kp->br_startoff = cpu_to_be64(xfs_bmbt_disk_get_startoff(arp));
Christoph Hellwig136341b2008-10-30 17:11:40 +11003119 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, xfs_bmbt_get_maxrecs(cur,
3120 be16_to_cpu(block->bb_level)));
Christoph Hellwig576039c2006-09-28 10:58:06 +10003121 *pp = cpu_to_be64(args.fsbno);
Christoph Hellwig136341b2008-10-30 17:11:40 +11003122
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 /*
3124 * Do all this logging at the end so that
3125 * the root is at the right level.
3126 */
Christoph Hellwigfd6bcc5b2008-10-30 16:58:21 +11003127 xfs_btree_log_block(cur, abp, XFS_BB_ALL_BITS);
3128 xfs_btree_log_recs(cur, abp, 1, be16_to_cpu(ablock->bb_numrecs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 ASSERT(*curp == NULL);
3130 *curp = cur;
Eric Sandeen9d87c312009-01-14 23:22:07 -06003131 *logflagsp = XFS_ILOG_CORE | xfs_ilog_fbroot(whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 return 0;
3133}
3134
3135/*
Christoph Hellwig1a5902c2009-03-29 19:26:46 +02003136 * Calculate the default attribute fork offset for newly created inodes.
3137 */
3138uint
3139xfs_default_attroffset(
3140 struct xfs_inode *ip)
3141{
3142 struct xfs_mount *mp = ip->i_mount;
3143 uint offset;
3144
3145 if (mp->m_sb.sb_inodesize == 256) {
3146 offset = XFS_LITINO(mp) -
3147 XFS_BMDR_SPACE_CALC(MINABTPTRS);
3148 } else {
3149 offset = XFS_BMDR_SPACE_CALC(6 * MINABTPTRS);
3150 }
3151
3152 ASSERT(offset < XFS_LITINO(mp));
3153 return offset;
3154}
3155
3156/*
Nathan Scottd8cc8902005-11-02 10:34:53 +11003157 * Helper routine to reset inode di_forkoff field when switching
3158 * attribute fork from local to extent format - we reset it where
3159 * possible to make space available for inline data fork extents.
3160 */
3161STATIC void
3162xfs_bmap_forkoff_reset(
3163 xfs_mount_t *mp,
3164 xfs_inode_t *ip,
3165 int whichfork)
3166{
3167 if (whichfork == XFS_ATTR_FORK &&
Christoph Hellwig1a5902c2009-03-29 19:26:46 +02003168 ip->i_d.di_format != XFS_DINODE_FMT_DEV &&
3169 ip->i_d.di_format != XFS_DINODE_FMT_UUID &&
3170 ip->i_d.di_format != XFS_DINODE_FMT_BTREE) {
3171 uint dfl_forkoff = xfs_default_attroffset(ip) >> 3;
3172
3173 if (dfl_forkoff > ip->i_d.di_forkoff) {
3174 ip->i_d.di_forkoff = dfl_forkoff;
3175 ip->i_df.if_ext_max =
3176 XFS_IFORK_DSIZE(ip) / sizeof(xfs_bmbt_rec_t);
3177 ip->i_afp->if_ext_max =
3178 XFS_IFORK_ASIZE(ip) / sizeof(xfs_bmbt_rec_t);
3179 }
Nathan Scottd8cc8902005-11-02 10:34:53 +11003180 }
3181}
3182
3183/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 * Convert a local file to an extents file.
3185 * This code is out of bounds for data forks of regular files,
3186 * since the file data needs to get logged so things will stay consistent.
3187 * (The bmap-level manipulations are ok, though).
3188 */
3189STATIC int /* error */
3190xfs_bmap_local_to_extents(
3191 xfs_trans_t *tp, /* transaction pointer */
3192 xfs_inode_t *ip, /* incore inode pointer */
3193 xfs_fsblock_t *firstblock, /* first block allocated in xaction */
3194 xfs_extlen_t total, /* total blocks needed by transaction */
3195 int *logflagsp, /* inode logging flags */
3196 int whichfork) /* data or attr fork */
3197{
3198 int error; /* error return value */
3199 int flags; /* logging flags returned */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 xfs_ifork_t *ifp; /* inode fork pointer */
3201
3202 /*
3203 * We don't want to deal with the case of keeping inode data inline yet.
3204 * So sending the data fork of a regular inode is invalid.
3205 */
Al Viroabbede12011-07-26 02:31:30 -04003206 ASSERT(!(S_ISREG(ip->i_d.di_mode) && whichfork == XFS_DATA_FORK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 ifp = XFS_IFORK_PTR(ip, whichfork);
3208 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
3209 flags = 0;
3210 error = 0;
3211 if (ifp->if_bytes) {
3212 xfs_alloc_arg_t args; /* allocation arguments */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003213 xfs_buf_t *bp; /* buffer for extent block */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003214 xfs_bmbt_rec_host_t *ep;/* extent record pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215
3216 args.tp = tp;
3217 args.mp = ip->i_mount;
Yingping Lud210a282006-06-09 14:55:18 +10003218 args.firstblock = *firstblock;
Mandy Kirkconnellf020b672006-03-14 14:07:24 +11003219 ASSERT((ifp->if_flags &
3220 (XFS_IFINLINE|XFS_IFEXTENTS|XFS_IFEXTIREC)) == XFS_IFINLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 /*
3222 * Allocate a block. We know we need only one, since the
3223 * file currently fits in an inode.
3224 */
3225 if (*firstblock == NULLFSBLOCK) {
3226 args.fsbno = XFS_INO_TO_FSB(args.mp, ip->i_ino);
3227 args.type = XFS_ALLOCTYPE_START_BNO;
3228 } else {
3229 args.fsbno = *firstblock;
3230 args.type = XFS_ALLOCTYPE_NEAR_BNO;
3231 }
3232 args.total = total;
3233 args.mod = args.minleft = args.alignment = args.wasdel =
3234 args.isfl = args.minalignslop = 0;
3235 args.minlen = args.maxlen = args.prod = 1;
3236 if ((error = xfs_alloc_vextent(&args)))
3237 goto done;
3238 /*
3239 * Can't fail, the space was reserved.
3240 */
3241 ASSERT(args.fsbno != NULLFSBLOCK);
3242 ASSERT(args.len == 1);
3243 *firstblock = args.fsbno;
3244 bp = xfs_btree_get_bufl(args.mp, tp, args.fsbno, 0);
Chandra Seetharaman62926042011-07-22 23:40:15 +00003245 memcpy(bp->b_addr, ifp->if_u1.if_data, ifp->if_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 xfs_trans_log_buf(tp, bp, 0, ifp->if_bytes - 1);
Nathan Scottd8cc8902005-11-02 10:34:53 +11003247 xfs_bmap_forkoff_reset(args.mp, ip, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 xfs_idata_realloc(ip, -ifp->if_bytes, whichfork);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003249 xfs_iext_add(ifp, 0, 1);
3250 ep = xfs_iext_get_ext(ifp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 xfs_bmbt_set_allf(ep, 0, args.fsbno, 1, XFS_EXT_NORM);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00003252 trace_xfs_bmap_post_update(ip, 0,
3253 whichfork == XFS_ATTR_FORK ? BMAP_ATTRFORK : 0,
3254 _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 XFS_IFORK_NEXT_SET(ip, whichfork, 1);
3256 ip->i_d.di_nblocks = 1;
Christoph Hellwig7d095252009-06-08 15:33:32 +02003257 xfs_trans_mod_dquot_byino(tp, ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 XFS_TRANS_DQ_BCOUNT, 1L);
Eric Sandeen9d87c312009-01-14 23:22:07 -06003259 flags |= xfs_ilog_fext(whichfork);
Nathan Scottd8cc8902005-11-02 10:34:53 +11003260 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 ASSERT(XFS_IFORK_NEXTENTS(ip, whichfork) == 0);
Nathan Scottd8cc8902005-11-02 10:34:53 +11003262 xfs_bmap_forkoff_reset(ip->i_mount, ip, whichfork);
3263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 ifp->if_flags &= ~XFS_IFINLINE;
3265 ifp->if_flags |= XFS_IFEXTENTS;
3266 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS);
3267 flags |= XFS_ILOG_CORE;
3268done:
3269 *logflagsp = flags;
3270 return error;
3271}
3272
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273/*
Mandy Kirkconnell8867bc92006-03-17 17:25:04 +11003274 * Search the extent records for the entry containing block bno.
3275 * If bno lies in a hole, point to the next entry. If bno lies
3276 * past eof, *eofp will be set, and *prevp will contain the last
3277 * entry (null if none). Else, *lastxp will be set to the index
3278 * of the found entry; *gotp will contain the entry.
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003279 */
Eric Sandeend96f8f82009-07-02 00:09:33 -05003280STATIC xfs_bmbt_rec_host_t * /* pointer to found extent entry */
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003281xfs_bmap_search_multi_extents(
3282 xfs_ifork_t *ifp, /* inode fork pointer */
3283 xfs_fileoff_t bno, /* block number searched for */
3284 int *eofp, /* out: end of file found */
3285 xfs_extnum_t *lastxp, /* out: last extent index */
3286 xfs_bmbt_irec_t *gotp, /* out: extent entry found */
3287 xfs_bmbt_irec_t *prevp) /* out: previous extent entry found */
3288{
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003289 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003290 xfs_extnum_t lastx; /* last extent index */
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003291
3292 /*
Mandy Kirkconnell8867bc92006-03-17 17:25:04 +11003293 * Initialize the extent entry structure to catch access to
3294 * uninitialized br_startblock field.
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003295 */
Mandy Kirkconnell8867bc92006-03-17 17:25:04 +11003296 gotp->br_startoff = 0xffa5a5a5a5a5a5a5LL;
3297 gotp->br_blockcount = 0xa55a5a5a5a5a5a5aLL;
3298 gotp->br_state = XFS_EXT_INVALID;
3299#if XFS_BIG_BLKNOS
3300 gotp->br_startblock = 0xffffa5a5a5a5a5a5LL;
3301#else
3302 gotp->br_startblock = 0xffffa5a5;
3303#endif
3304 prevp->br_startoff = NULLFILEOFF;
3305
3306 ep = xfs_iext_bno_to_ext(ifp, bno, &lastx);
3307 if (lastx > 0) {
3308 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, lastx - 1), prevp);
3309 }
3310 if (lastx < (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t))) {
3311 xfs_bmbt_get_all(ep, gotp);
3312 *eofp = 0;
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003313 } else {
Mandy Kirkconnell8867bc92006-03-17 17:25:04 +11003314 if (lastx > 0) {
3315 *gotp = *prevp;
3316 }
3317 *eofp = 1;
3318 ep = NULL;
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003319 }
Mandy Kirkconnell8867bc92006-03-17 17:25:04 +11003320 *lastxp = lastx;
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003321 return ep;
3322}
3323
3324/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 * Search the extents list for the inode, for the extent containing bno.
3326 * If bno lies in a hole, point to the next entry. If bno lies past eof,
3327 * *eofp will be set, and *prevp will contain the last entry (null if none).
3328 * Else, *lastxp will be set to the index of the found
3329 * entry; *gotp will contain the entry.
3330 */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003331STATIC xfs_bmbt_rec_host_t * /* pointer to found extent entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332xfs_bmap_search_extents(
3333 xfs_inode_t *ip, /* incore inode pointer */
3334 xfs_fileoff_t bno, /* block number searched for */
Nathan Scott572d95f2006-09-28 11:03:20 +10003335 int fork, /* data or attr fork */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 int *eofp, /* out: end of file found */
3337 xfs_extnum_t *lastxp, /* out: last extent index */
3338 xfs_bmbt_irec_t *gotp, /* out: extent entry found */
3339 xfs_bmbt_irec_t *prevp) /* out: previous extent entry found */
3340{
3341 xfs_ifork_t *ifp; /* inode fork pointer */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003342 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343
3344 XFS_STATS_INC(xs_look_exlist);
Nathan Scott572d95f2006-09-28 11:03:20 +10003345 ifp = XFS_IFORK_PTR(ip, fork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003347 ep = xfs_bmap_search_multi_extents(ifp, bno, eofp, lastxp, gotp, prevp);
3348
Nathan Scott572d95f2006-09-28 11:03:20 +10003349 if (unlikely(!(gotp->br_startblock) && (*lastxp != NULLEXTNUM) &&
3350 !(XFS_IS_REALTIME_INODE(ip) && fork == XFS_DATA_FORK))) {
Dave Chinner6a19d932011-03-07 10:02:35 +11003351 xfs_alert_tag(ip->i_mount, XFS_PTAG_FSBLOCK_ZERO,
Nathan Scott572d95f2006-09-28 11:03:20 +10003352 "Access to block zero in inode %llu "
3353 "start_block: %llx start_off: %llx "
3354 "blkcnt: %llx extent-state: %x lastx: %x\n",
3355 (unsigned long long)ip->i_ino,
Nathan Scott3ddb8fa2006-01-11 15:33:02 +11003356 (unsigned long long)gotp->br_startblock,
3357 (unsigned long long)gotp->br_startoff,
3358 (unsigned long long)gotp->br_blockcount,
Nathan Scott572d95f2006-09-28 11:03:20 +10003359 gotp->br_state, *lastxp);
3360 *lastxp = NULLEXTNUM;
3361 *eofp = 1;
3362 return NULL;
3363 }
3364 return ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365}
3366
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367/*
3368 * Compute the worst-case number of indirect blocks that will be used
3369 * for ip's delayed extent of length "len".
3370 */
3371STATIC xfs_filblks_t
3372xfs_bmap_worst_indlen(
3373 xfs_inode_t *ip, /* incore inode pointer */
3374 xfs_filblks_t len) /* delayed extent length */
3375{
3376 int level; /* btree level number */
3377 int maxrecs; /* maximum record count at this level */
3378 xfs_mount_t *mp; /* mount structure */
3379 xfs_filblks_t rval; /* return value */
3380
3381 mp = ip->i_mount;
3382 maxrecs = mp->m_bmap_dmxr[0];
3383 for (level = 0, rval = 0;
3384 level < XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK);
3385 level++) {
3386 len += maxrecs - 1;
3387 do_div(len, maxrecs);
3388 rval += len;
3389 if (len == 1)
3390 return rval + XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK) -
3391 level - 1;
3392 if (level == 0)
3393 maxrecs = mp->m_bmap_dmxr[1];
3394 }
3395 return rval;
3396}
3397
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398/*
3399 * Convert inode from non-attributed to attributed.
3400 * Must not be in a transaction, ip must not be locked.
3401 */
3402int /* error code */
3403xfs_bmap_add_attrfork(
3404 xfs_inode_t *ip, /* incore inode pointer */
Nathan Scottd8cc8902005-11-02 10:34:53 +11003405 int size, /* space new attribute needs */
3406 int rsvd) /* xact may use reserved blks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 xfs_fsblock_t firstblock; /* 1st block/ag allocated */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003409 xfs_bmap_free_t flist; /* freed extent records */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 xfs_mount_t *mp; /* mount structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 xfs_trans_t *tp; /* transaction pointer */
Nathan Scottd8cc8902005-11-02 10:34:53 +11003412 int blks; /* space reservation */
3413 int version = 1; /* superblock attr version */
3414 int committed; /* xaction was committed */
3415 int logflags; /* logging flags */
3416 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417
Nathan Scottd8cc8902005-11-02 10:34:53 +11003418 ASSERT(XFS_IFORK_Q(ip) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 ASSERT(ip->i_df.if_ext_max ==
3420 XFS_IFORK_DSIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t));
Nathan Scottd8cc8902005-11-02 10:34:53 +11003421
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 mp = ip->i_mount;
3423 ASSERT(!XFS_NOT_DQATTACHED(mp, ip));
3424 tp = xfs_trans_alloc(mp, XFS_TRANS_ADDAFORK);
3425 blks = XFS_ADDAFORK_SPACE_RES(mp);
3426 if (rsvd)
3427 tp->t_flags |= XFS_TRANS_RESERVE;
3428 if ((error = xfs_trans_reserve(tp, blks, XFS_ADDAFORK_LOG_RES(mp), 0,
3429 XFS_TRANS_PERM_LOG_RES, XFS_ADDAFORK_LOG_COUNT)))
3430 goto error0;
3431 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02003432 error = xfs_trans_reserve_quota_nblks(tp, ip, blks, 0, rsvd ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES :
3434 XFS_QMOPT_RES_REGBLKS);
3435 if (error) {
3436 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3437 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES);
3438 return error;
3439 }
3440 if (XFS_IFORK_Q(ip))
3441 goto error1;
3442 if (ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS) {
3443 /*
3444 * For inodes coming from pre-6.2 filesystems.
3445 */
3446 ASSERT(ip->i_d.di_aformat == 0);
3447 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
3448 }
3449 ASSERT(ip->i_d.di_anextents == 0);
Christoph Hellwig898621d2010-06-24 11:36:58 +10003450
3451 xfs_trans_ijoin_ref(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Christoph Hellwig898621d2010-06-24 11:36:58 +10003453
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 switch (ip->i_d.di_format) {
3455 case XFS_DINODE_FMT_DEV:
3456 ip->i_d.di_forkoff = roundup(sizeof(xfs_dev_t), 8) >> 3;
3457 break;
3458 case XFS_DINODE_FMT_UUID:
3459 ip->i_d.di_forkoff = roundup(sizeof(uuid_t), 8) >> 3;
3460 break;
3461 case XFS_DINODE_FMT_LOCAL:
3462 case XFS_DINODE_FMT_EXTENTS:
3463 case XFS_DINODE_FMT_BTREE:
Nathan Scottd8cc8902005-11-02 10:34:53 +11003464 ip->i_d.di_forkoff = xfs_attr_shortform_bytesfit(ip, size);
3465 if (!ip->i_d.di_forkoff)
Christoph Hellwig1a5902c2009-03-29 19:26:46 +02003466 ip->i_d.di_forkoff = xfs_default_attroffset(ip) >> 3;
Nathan Scott13059ff2006-01-11 15:32:01 +11003467 else if (mp->m_flags & XFS_MOUNT_ATTR2)
Nathan Scottd8cc8902005-11-02 10:34:53 +11003468 version = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 break;
3470 default:
3471 ASSERT(0);
3472 error = XFS_ERROR(EINVAL);
3473 goto error1;
3474 }
3475 ip->i_df.if_ext_max =
3476 XFS_IFORK_DSIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t);
3477 ASSERT(ip->i_afp == NULL);
3478 ip->i_afp = kmem_zone_zalloc(xfs_ifork_zone, KM_SLEEP);
3479 ip->i_afp->if_ext_max =
3480 XFS_IFORK_ASIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t);
3481 ip->i_afp->if_flags = XFS_IFEXTENTS;
3482 logflags = 0;
Eric Sandeen9d87c312009-01-14 23:22:07 -06003483 xfs_bmap_init(&flist, &firstblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 switch (ip->i_d.di_format) {
3485 case XFS_DINODE_FMT_LOCAL:
3486 error = xfs_bmap_add_attrfork_local(tp, ip, &firstblock, &flist,
3487 &logflags);
3488 break;
3489 case XFS_DINODE_FMT_EXTENTS:
3490 error = xfs_bmap_add_attrfork_extents(tp, ip, &firstblock,
3491 &flist, &logflags);
3492 break;
3493 case XFS_DINODE_FMT_BTREE:
3494 error = xfs_bmap_add_attrfork_btree(tp, ip, &firstblock, &flist,
3495 &logflags);
3496 break;
3497 default:
3498 error = 0;
3499 break;
3500 }
3501 if (logflags)
3502 xfs_trans_log_inode(tp, ip, logflags);
3503 if (error)
3504 goto error2;
Eric Sandeen62118702008-03-06 13:44:28 +11003505 if (!xfs_sb_version_hasattr(&mp->m_sb) ||
3506 (!xfs_sb_version_hasattr2(&mp->m_sb) && version == 2)) {
Nathan Scottda087ba2005-11-02 15:00:20 +11003507 __int64_t sbfields = 0;
3508
Eric Sandeen3685c2a2007-10-11 17:42:32 +10003509 spin_lock(&mp->m_sb_lock);
Eric Sandeen62118702008-03-06 13:44:28 +11003510 if (!xfs_sb_version_hasattr(&mp->m_sb)) {
3511 xfs_sb_version_addattr(&mp->m_sb);
Nathan Scottda087ba2005-11-02 15:00:20 +11003512 sbfields |= XFS_SB_VERSIONNUM;
Nathan Scottd8cc8902005-11-02 10:34:53 +11003513 }
Eric Sandeen62118702008-03-06 13:44:28 +11003514 if (!xfs_sb_version_hasattr2(&mp->m_sb) && version == 2) {
3515 xfs_sb_version_addattr2(&mp->m_sb);
Nathan Scottda087ba2005-11-02 15:00:20 +11003516 sbfields |= (XFS_SB_VERSIONNUM | XFS_SB_FEATURES2);
Nathan Scottd8cc8902005-11-02 10:34:53 +11003517 }
Nathan Scottda087ba2005-11-02 15:00:20 +11003518 if (sbfields) {
Eric Sandeen3685c2a2007-10-11 17:42:32 +10003519 spin_unlock(&mp->m_sb_lock);
Nathan Scottda087ba2005-11-02 15:00:20 +11003520 xfs_mod_sb(tp, sbfields);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 } else
Eric Sandeen3685c2a2007-10-11 17:42:32 +10003522 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 }
Eric Sandeenf7c99b62007-02-10 18:37:16 +11003524 if ((error = xfs_bmap_finish(&tp, &flist, &committed)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 goto error2;
Dave Chinner713bf882010-03-08 11:26:23 +11003526 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 ASSERT(ip->i_df.if_ext_max ==
3528 XFS_IFORK_DSIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t));
3529 return error;
3530error2:
3531 xfs_bmap_cancel(&flist);
3532error1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3534error0:
3535 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
3536 ASSERT(ip->i_df.if_ext_max ==
3537 XFS_IFORK_DSIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t));
3538 return error;
3539}
3540
3541/*
3542 * Add the extent to the list of extents to be free at transaction end.
3543 * The list is maintained sorted (by block number).
3544 */
3545/* ARGSUSED */
3546void
3547xfs_bmap_add_free(
3548 xfs_fsblock_t bno, /* fs block number of extent */
3549 xfs_filblks_t len, /* length of extent */
3550 xfs_bmap_free_t *flist, /* list of extents */
3551 xfs_mount_t *mp) /* mount point structure */
3552{
3553 xfs_bmap_free_item_t *cur; /* current (next) element */
3554 xfs_bmap_free_item_t *new; /* new element */
3555 xfs_bmap_free_item_t *prev; /* previous element */
3556#ifdef DEBUG
3557 xfs_agnumber_t agno;
3558 xfs_agblock_t agbno;
3559
3560 ASSERT(bno != NULLFSBLOCK);
3561 ASSERT(len > 0);
3562 ASSERT(len <= MAXEXTLEN);
Eric Sandeen9d87c312009-01-14 23:22:07 -06003563 ASSERT(!isnullstartblock(bno));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 agno = XFS_FSB_TO_AGNO(mp, bno);
3565 agbno = XFS_FSB_TO_AGBNO(mp, bno);
3566 ASSERT(agno < mp->m_sb.sb_agcount);
3567 ASSERT(agbno < mp->m_sb.sb_agblocks);
3568 ASSERT(len < mp->m_sb.sb_agblocks);
3569 ASSERT(agbno + len <= mp->m_sb.sb_agblocks);
3570#endif
3571 ASSERT(xfs_bmap_free_item_zone != NULL);
3572 new = kmem_zone_alloc(xfs_bmap_free_item_zone, KM_SLEEP);
3573 new->xbfi_startblock = bno;
3574 new->xbfi_blockcount = (xfs_extlen_t)len;
3575 for (prev = NULL, cur = flist->xbf_first;
3576 cur != NULL;
3577 prev = cur, cur = cur->xbfi_next) {
3578 if (cur->xbfi_startblock >= bno)
3579 break;
3580 }
3581 if (prev)
3582 prev->xbfi_next = new;
3583 else
3584 flist->xbf_first = new;
3585 new->xbfi_next = cur;
3586 flist->xbf_count++;
3587}
3588
3589/*
3590 * Compute and fill in the value of the maximum depth of a bmap btree
3591 * in this filesystem. Done once, during mount.
3592 */
3593void
3594xfs_bmap_compute_maxlevels(
3595 xfs_mount_t *mp, /* file system mount structure */
3596 int whichfork) /* data or attr fork */
3597{
3598 int level; /* btree level */
3599 uint maxblocks; /* max blocks at this level */
3600 uint maxleafents; /* max leaf entries possible */
3601 int maxrootrecs; /* max records in root block */
3602 int minleafrecs; /* min records in leaf block */
3603 int minnoderecs; /* min records in node block */
3604 int sz; /* root block size */
3605
3606 /*
3607 * The maximum number of extents in a file, hence the maximum
3608 * number of leaf entries, is controlled by the type of di_nextents
3609 * (a signed 32-bit number, xfs_extnum_t), or by di_anextents
3610 * (a signed 16-bit number, xfs_aextnum_t).
Tim Shimmin6d1337b2008-04-17 16:50:16 +10003611 *
3612 * Note that we can no longer assume that if we are in ATTR1 that
Christoph Hellwig1a5902c2009-03-29 19:26:46 +02003613 * the fork offset of all the inodes will be
3614 * (xfs_default_attroffset(ip) >> 3) because we could have mounted
3615 * with ATTR2 and then mounted back with ATTR1, keeping the
3616 * di_forkoff's fixed but probably at various positions. Therefore,
3617 * for both ATTR1 and ATTR2 we have to assume the worst case scenario
3618 * of a minimum size available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 */
Nathan Scottd8cc8902005-11-02 10:34:53 +11003620 if (whichfork == XFS_DATA_FORK) {
3621 maxleafents = MAXEXTNUM;
Tim Shimmin6d1337b2008-04-17 16:50:16 +10003622 sz = XFS_BMDR_SPACE_CALC(MINDBTPTRS);
Nathan Scottd8cc8902005-11-02 10:34:53 +11003623 } else {
3624 maxleafents = MAXAEXTNUM;
Tim Shimmin6d1337b2008-04-17 16:50:16 +10003625 sz = XFS_BMDR_SPACE_CALC(MINABTPTRS);
Nathan Scottd8cc8902005-11-02 10:34:53 +11003626 }
Christoph Hellwig60197e82008-10-30 17:11:19 +11003627 maxrootrecs = xfs_bmdr_maxrecs(mp, sz, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 minleafrecs = mp->m_bmap_dmnr[0];
3629 minnoderecs = mp->m_bmap_dmnr[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 maxblocks = (maxleafents + minleafrecs - 1) / minleafrecs;
3631 for (level = 1; maxblocks > 1; level++) {
3632 if (maxblocks <= maxrootrecs)
3633 maxblocks = 1;
3634 else
3635 maxblocks = (maxblocks + minnoderecs - 1) / minnoderecs;
3636 }
3637 mp->m_bm_maxlevels[whichfork] = level;
3638}
3639
3640/*
3641 * Routine to be called at transaction's end by xfs_bmapi, xfs_bunmapi
3642 * caller. Frees all the extents that need freeing, which must be done
3643 * last due to locking considerations. We never free any extents in
Christoph Hellwig859f57c2011-08-27 14:45:11 +00003644 * the first transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645 *
3646 * Return 1 if the given transaction was committed and a new one
3647 * started, and 0 otherwise in the committed parameter.
3648 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649int /* error */
3650xfs_bmap_finish(
3651 xfs_trans_t **tp, /* transaction pointer addr */
3652 xfs_bmap_free_t *flist, /* i/o: list extents to free */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 int *committed) /* xact committed or not */
3654{
3655 xfs_efd_log_item_t *efd; /* extent free data */
3656 xfs_efi_log_item_t *efi; /* extent free intention */
3657 int error; /* error return value */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003658 xfs_bmap_free_item_t *free; /* free extent item */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 unsigned int logres; /* new log reservation */
3660 unsigned int logcount; /* new log count */
3661 xfs_mount_t *mp; /* filesystem mount structure */
3662 xfs_bmap_free_item_t *next; /* next item on free list */
3663 xfs_trans_t *ntp; /* new transaction pointer */
3664
3665 ASSERT((*tp)->t_flags & XFS_TRANS_PERM_LOG_RES);
3666 if (flist->xbf_count == 0) {
3667 *committed = 0;
3668 return 0;
3669 }
3670 ntp = *tp;
3671 efi = xfs_trans_get_efi(ntp, flist->xbf_count);
3672 for (free = flist->xbf_first; free; free = free->xbfi_next)
3673 xfs_trans_log_efi_extent(ntp, efi, free->xbfi_startblock,
3674 free->xbfi_blockcount);
3675 logres = ntp->t_log_res;
3676 logcount = ntp->t_log_count;
3677 ntp = xfs_trans_dup(*tp);
Eric Sandeen1c72bf92007-05-08 13:48:42 +10003678 error = xfs_trans_commit(*tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679 *tp = ntp;
3680 *committed = 1;
3681 /*
3682 * We have a new transaction, so we should return committed=1,
3683 * even though we're returning an error.
3684 */
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003685 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 return error;
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003687
3688 /*
3689 * transaction commit worked ok so we can drop the extra ticket
3690 * reference that we gained in xfs_trans_dup()
3691 */
3692 xfs_log_ticket_put(ntp->t_ticket);
3693
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694 if ((error = xfs_trans_reserve(ntp, 0, logres, 0, XFS_TRANS_PERM_LOG_RES,
3695 logcount)))
3696 return error;
3697 efd = xfs_trans_get_efd(ntp, efi, flist->xbf_count);
3698 for (free = flist->xbf_first; free != NULL; free = next) {
3699 next = free->xbfi_next;
3700 if ((error = xfs_free_extent(ntp, free->xbfi_startblock,
3701 free->xbfi_blockcount))) {
3702 /*
3703 * The bmap free list will be cleaned up at a
3704 * higher level. The EFI will be canceled when
3705 * this transaction is aborted.
3706 * Need to force shutdown here to make sure it
3707 * happens, since this transaction may not be
3708 * dirty yet.
3709 */
3710 mp = ntp->t_mountp;
3711 if (!XFS_FORCED_SHUTDOWN(mp))
3712 xfs_force_shutdown(mp,
3713 (error == EFSCORRUPTED) ?
Nathan Scott7d04a332006-06-09 14:58:38 +10003714 SHUTDOWN_CORRUPT_INCORE :
3715 SHUTDOWN_META_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716 return error;
3717 }
3718 xfs_trans_log_efd_extent(ntp, efd, free->xbfi_startblock,
3719 free->xbfi_blockcount);
3720 xfs_bmap_del_free(flist, NULL, free);
3721 }
3722 return 0;
3723}
3724
3725/*
3726 * Free up any items left in the list.
3727 */
3728void
3729xfs_bmap_cancel(
3730 xfs_bmap_free_t *flist) /* list of bmap_free_items */
3731{
3732 xfs_bmap_free_item_t *free; /* free list item */
3733 xfs_bmap_free_item_t *next;
3734
3735 if (flist->xbf_count == 0)
3736 return;
3737 ASSERT(flist->xbf_first != NULL);
3738 for (free = flist->xbf_first; free; free = next) {
3739 next = free->xbfi_next;
3740 xfs_bmap_del_free(flist, NULL, free);
3741 }
3742 ASSERT(flist->xbf_count == 0);
3743}
3744
3745/*
3746 * Returns the file-relative block number of the first unused block(s)
3747 * in the file with at least "len" logically contiguous blocks free.
3748 * This is the lowest-address hole if the file has holes, else the first block
3749 * past the end of file.
3750 * Return 0 if the file is currently local (in-inode).
3751 */
3752int /* error */
3753xfs_bmap_first_unused(
3754 xfs_trans_t *tp, /* transaction pointer */
3755 xfs_inode_t *ip, /* incore inode */
3756 xfs_extlen_t len, /* size of hole to find */
3757 xfs_fileoff_t *first_unused, /* unused block */
3758 int whichfork) /* data or attr fork */
3759{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 int error; /* error return value */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003761 int idx; /* extent record index */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 xfs_ifork_t *ifp; /* inode fork pointer */
3763 xfs_fileoff_t lastaddr; /* last block number seen */
3764 xfs_fileoff_t lowest; /* lowest useful block */
3765 xfs_fileoff_t max; /* starting useful block */
3766 xfs_fileoff_t off; /* offset for this block */
3767 xfs_extnum_t nextents; /* number of extent entries */
3768
3769 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE ||
3770 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS ||
3771 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
3772 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
3773 *first_unused = 0;
3774 return 0;
3775 }
3776 ifp = XFS_IFORK_PTR(ip, whichfork);
3777 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
3778 (error = xfs_iread_extents(tp, ip, whichfork)))
3779 return error;
3780 lowest = *first_unused;
3781 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003782 for (idx = 0, lastaddr = 0, max = lowest; idx < nextents; idx++) {
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003783 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784 off = xfs_bmbt_get_startoff(ep);
3785 /*
3786 * See if the hole before this extent will work.
3787 */
3788 if (off >= lowest + len && off - max >= len) {
3789 *first_unused = max;
3790 return 0;
3791 }
3792 lastaddr = off + xfs_bmbt_get_blockcount(ep);
3793 max = XFS_FILEOFF_MAX(lastaddr, lowest);
3794 }
3795 *first_unused = max;
3796 return 0;
3797}
3798
3799/*
3800 * Returns the file-relative block number of the last block + 1 before
3801 * last_block (input value) in the file.
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003802 * This is not based on i_size, it is based on the extent records.
3803 * Returns 0 for local files, as they do not have extent records.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 */
3805int /* error */
3806xfs_bmap_last_before(
3807 xfs_trans_t *tp, /* transaction pointer */
3808 xfs_inode_t *ip, /* incore inode */
3809 xfs_fileoff_t *last_block, /* last block */
3810 int whichfork) /* data or attr fork */
3811{
3812 xfs_fileoff_t bno; /* input file offset */
3813 int eof; /* hit end of file */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003814 xfs_bmbt_rec_host_t *ep; /* pointer to last extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815 int error; /* error return value */
3816 xfs_bmbt_irec_t got; /* current extent value */
3817 xfs_ifork_t *ifp; /* inode fork pointer */
3818 xfs_extnum_t lastx; /* last extent used */
3819 xfs_bmbt_irec_t prev; /* previous extent value */
3820
3821 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE &&
3822 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
3823 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_LOCAL)
3824 return XFS_ERROR(EIO);
3825 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
3826 *last_block = 0;
3827 return 0;
3828 }
3829 ifp = XFS_IFORK_PTR(ip, whichfork);
3830 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
3831 (error = xfs_iread_extents(tp, ip, whichfork)))
3832 return error;
3833 bno = *last_block - 1;
3834 ep = xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got,
3835 &prev);
3836 if (eof || xfs_bmbt_get_startoff(ep) > bno) {
3837 if (prev.br_startoff == NULLFILEOFF)
3838 *last_block = 0;
3839 else
3840 *last_block = prev.br_startoff + prev.br_blockcount;
3841 }
3842 /*
3843 * Otherwise *last_block is already the right answer.
3844 */
3845 return 0;
3846}
3847
Christoph Hellwig27a3f8f2011-09-18 20:40:53 +00003848STATIC int
3849xfs_bmap_last_extent(
3850 struct xfs_trans *tp,
3851 struct xfs_inode *ip,
3852 int whichfork,
3853 struct xfs_bmbt_irec *rec,
3854 int *is_empty)
3855{
3856 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
3857 int error;
3858 int nextents;
3859
3860 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
3861 error = xfs_iread_extents(tp, ip, whichfork);
3862 if (error)
3863 return error;
3864 }
3865
3866 nextents = ifp->if_bytes / sizeof(xfs_bmbt_rec_t);
3867 if (nextents == 0) {
3868 *is_empty = 1;
3869 return 0;
3870 }
3871
3872 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, nextents - 1), rec);
3873 *is_empty = 0;
3874 return 0;
3875}
3876
3877/*
3878 * Check the last inode extent to determine whether this allocation will result
3879 * in blocks being allocated at the end of the file. When we allocate new data
3880 * blocks at the end of the file which do not start at the previous data block,
3881 * we will try to align the new blocks at stripe unit boundaries.
3882 *
Dave Chinner1b164472011-09-18 20:40:55 +00003883 * Returns 0 in bma->aeof if the file (fork) is empty as any new write will be
3884 * at, or past the EOF.
Christoph Hellwig27a3f8f2011-09-18 20:40:53 +00003885 */
3886STATIC int
3887xfs_bmap_isaeof(
Dave Chinner1b164472011-09-18 20:40:55 +00003888 struct xfs_bmalloca *bma,
3889 int whichfork)
Christoph Hellwig27a3f8f2011-09-18 20:40:53 +00003890{
3891 struct xfs_bmbt_irec rec;
3892 int is_empty;
3893 int error;
3894
Dave Chinner1b164472011-09-18 20:40:55 +00003895 bma->aeof = 0;
3896 error = xfs_bmap_last_extent(NULL, bma->ip, whichfork, &rec,
3897 &is_empty);
Christoph Hellwig27a3f8f2011-09-18 20:40:53 +00003898 if (error || is_empty)
3899 return error;
3900
3901 /*
3902 * Check if we are allocation or past the last extent, or at least into
3903 * the last delayed allocated extent.
3904 */
Dave Chinner3a756672011-09-18 20:40:58 +00003905 bma->aeof = bma->offset >= rec.br_startoff + rec.br_blockcount ||
3906 (bma->offset >= rec.br_startoff &&
Dave Chinner1b164472011-09-18 20:40:55 +00003907 isnullstartblock(rec.br_startblock));
Christoph Hellwig27a3f8f2011-09-18 20:40:53 +00003908 return 0;
3909}
3910
3911/*
3912 * Check if the endoff is outside the last extent. If so the caller will grow
3913 * the allocation to a stripe unit boundary. All offsets are considered outside
3914 * the end of file for an empty fork, so 1 is returned in *eof in that case.
3915 */
3916int
3917xfs_bmap_eof(
3918 struct xfs_inode *ip,
3919 xfs_fileoff_t endoff,
3920 int whichfork,
3921 int *eof)
3922{
3923 struct xfs_bmbt_irec rec;
3924 int error;
3925
3926 error = xfs_bmap_last_extent(NULL, ip, whichfork, &rec, eof);
3927 if (error || *eof)
3928 return error;
3929
3930 *eof = endoff >= rec.br_startoff + rec.br_blockcount;
3931 return 0;
3932}
3933
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934/*
3935 * Returns the file-relative block number of the first block past eof in
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003936 * the file. This is not based on i_size, it is based on the extent records.
3937 * Returns 0 for local files, as they do not have extent records.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 */
Christoph Hellwig27a3f8f2011-09-18 20:40:53 +00003939int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940xfs_bmap_last_offset(
Christoph Hellwig27a3f8f2011-09-18 20:40:53 +00003941 struct xfs_trans *tp,
3942 struct xfs_inode *ip,
3943 xfs_fileoff_t *last_block,
3944 int whichfork)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945{
Christoph Hellwig27a3f8f2011-09-18 20:40:53 +00003946 struct xfs_bmbt_irec rec;
3947 int is_empty;
3948 int error;
3949
3950 *last_block = 0;
3951
3952 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL)
3953 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954
3955 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE &&
Christoph Hellwig27a3f8f2011-09-18 20:40:53 +00003956 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 return XFS_ERROR(EIO);
Christoph Hellwig27a3f8f2011-09-18 20:40:53 +00003958
3959 error = xfs_bmap_last_extent(NULL, ip, whichfork, &rec, &is_empty);
3960 if (error || is_empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961 return error;
Christoph Hellwig27a3f8f2011-09-18 20:40:53 +00003962
3963 *last_block = rec.br_startoff + rec.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964 return 0;
3965}
3966
3967/*
3968 * Returns whether the selected fork of the inode has exactly one
3969 * block or not. For the data fork we check this matches di_size,
3970 * implying the file's range is 0..bsize-1.
3971 */
3972int /* 1=>1 block, 0=>otherwise */
3973xfs_bmap_one_block(
3974 xfs_inode_t *ip, /* incore inode */
3975 int whichfork) /* data or attr fork */
3976{
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003977 xfs_bmbt_rec_host_t *ep; /* ptr to fork's extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978 xfs_ifork_t *ifp; /* inode fork pointer */
3979 int rval; /* return value */
3980 xfs_bmbt_irec_t s; /* internal version of extent */
3981
3982#ifndef DEBUG
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10003983 if (whichfork == XFS_DATA_FORK) {
Al Viroabbede12011-07-26 02:31:30 -04003984 return S_ISREG(ip->i_d.di_mode) ?
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10003985 (ip->i_size == ip->i_mount->m_sb.sb_blocksize) :
3986 (ip->i_d.di_size == ip->i_mount->m_sb.sb_blocksize);
3987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988#endif /* !DEBUG */
3989 if (XFS_IFORK_NEXTENTS(ip, whichfork) != 1)
3990 return 0;
3991 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
3992 return 0;
3993 ifp = XFS_IFORK_PTR(ip, whichfork);
3994 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003995 ep = xfs_iext_get_ext(ifp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996 xfs_bmbt_get_all(ep, &s);
3997 rval = s.br_startoff == 0 && s.br_blockcount == 1;
3998 if (rval && whichfork == XFS_DATA_FORK)
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10003999 ASSERT(ip->i_size == ip->i_mount->m_sb.sb_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000 return rval;
4001}
4002
Christoph Hellwig4e8938f2008-10-30 17:14:43 +11004003STATIC int
4004xfs_bmap_sanity_check(
4005 struct xfs_mount *mp,
4006 struct xfs_buf *bp,
4007 int level)
4008{
4009 struct xfs_btree_block *block = XFS_BUF_TO_BLOCK(bp);
4010
Christoph Hellwig69ef9212011-07-08 14:36:05 +02004011 if (block->bb_magic != cpu_to_be32(XFS_BMAP_MAGIC) ||
Christoph Hellwig4e8938f2008-10-30 17:14:43 +11004012 be16_to_cpu(block->bb_level) != level ||
4013 be16_to_cpu(block->bb_numrecs) == 0 ||
4014 be16_to_cpu(block->bb_numrecs) > mp->m_bmap_dmxr[level != 0])
4015 return 0;
4016 return 1;
4017}
4018
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019/*
4020 * Read in the extents to if_extents.
4021 * All inode fields are set up by caller, we just traverse the btree
4022 * and copy the records in. If the file system cannot contain unwritten
4023 * extents, the records are checked for no "state" flags.
4024 */
4025int /* error */
4026xfs_bmap_read_extents(
4027 xfs_trans_t *tp, /* transaction pointer */
4028 xfs_inode_t *ip, /* incore inode */
4029 int whichfork) /* data or attr fork */
4030{
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11004031 struct xfs_btree_block *block; /* current btree block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 xfs_fsblock_t bno; /* block # of "block" */
4033 xfs_buf_t *bp; /* buffer for "block" */
4034 int error; /* error return value */
4035 xfs_exntfmt_t exntf; /* XFS_EXTFMT_NOSTATE, if checking */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036 xfs_extnum_t i, j; /* index into the extents list */
4037 xfs_ifork_t *ifp; /* fork structure */
4038 int level; /* btree level, for checking */
4039 xfs_mount_t *mp; /* file system mount structure */
Christoph Hellwig576039c2006-09-28 10:58:06 +10004040 __be64 *pp; /* pointer to block address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 /* REFERENCED */
4042 xfs_extnum_t room; /* number of entries there's room for */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043
4044 bno = NULLFSBLOCK;
4045 mp = ip->i_mount;
4046 ifp = XFS_IFORK_PTR(ip, whichfork);
4047 exntf = (whichfork != XFS_DATA_FORK) ? XFS_EXTFMT_NOSTATE :
4048 XFS_EXTFMT_INODE(ip);
4049 block = ifp->if_broot;
4050 /*
4051 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
4052 */
Christoph Hellwig16259e72005-11-02 15:11:25 +11004053 level = be16_to_cpu(block->bb_level);
4054 ASSERT(level > 0);
Christoph Hellwig60197e82008-10-30 17:11:19 +11004055 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
Christoph Hellwig576039c2006-09-28 10:58:06 +10004056 bno = be64_to_cpu(*pp);
4057 ASSERT(bno != NULLDFSBNO);
4058 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
4059 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 /*
4061 * Go down the tree until leaf level is reached, following the first
4062 * pointer (leftmost) at each level.
4063 */
4064 while (level-- > 0) {
4065 if ((error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
4066 XFS_BMAP_BTREE_REF)))
4067 return error;
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11004068 block = XFS_BUF_TO_BLOCK(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069 XFS_WANT_CORRUPTED_GOTO(
Christoph Hellwig4e8938f2008-10-30 17:14:43 +11004070 xfs_bmap_sanity_check(mp, bp, level),
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 error0);
4072 if (level == 0)
4073 break;
Christoph Hellwig136341b2008-10-30 17:11:40 +11004074 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]);
Christoph Hellwig576039c2006-09-28 10:58:06 +10004075 bno = be64_to_cpu(*pp);
4076 XFS_WANT_CORRUPTED_GOTO(XFS_FSB_SANITY_CHECK(mp, bno), error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 xfs_trans_brelse(tp, bp);
4078 }
4079 /*
4080 * Here with bp and block set to the leftmost leaf node in the tree.
4081 */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004082 room = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 i = 0;
4084 /*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004085 * Loop over all leaf nodes. Copy information to the extent records.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 */
4087 for (;;) {
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10004088 xfs_bmbt_rec_t *frp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 xfs_fsblock_t nextbno;
4090 xfs_extnum_t num_recs;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004091 xfs_extnum_t start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11004093 num_recs = xfs_btree_get_numrecs(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094 if (unlikely(i + num_recs > room)) {
4095 ASSERT(i + num_recs <= room);
Dave Chinner65333b42011-03-07 10:03:35 +11004096 xfs_warn(ip->i_mount,
Nathan Scott3762ec62006-01-12 10:29:53 +11004097 "corrupt dinode %Lu, (btree extents).",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098 (unsigned long long) ip->i_ino);
Dave Chinner65333b42011-03-07 10:03:35 +11004099 XFS_CORRUPTION_ERROR("xfs_bmap_read_extents(1)",
4100 XFS_ERRLEVEL_LOW, ip->i_mount, block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 goto error0;
4102 }
4103 XFS_WANT_CORRUPTED_GOTO(
Christoph Hellwig4e8938f2008-10-30 17:14:43 +11004104 xfs_bmap_sanity_check(mp, bp, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 error0);
4106 /*
4107 * Read-ahead the next leaf block, if any.
4108 */
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11004109 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110 if (nextbno != NULLFSBLOCK)
4111 xfs_btree_reada_bufl(mp, nextbno, 1);
4112 /*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004113 * Copy records into the extent records.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114 */
Christoph Hellwig136341b2008-10-30 17:11:40 +11004115 frp = XFS_BMBT_REC_ADDR(mp, block, 1);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004116 start = i;
4117 for (j = 0; j < num_recs; j++, i++, frp++) {
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10004118 xfs_bmbt_rec_host_t *trp = xfs_iext_get_ext(ifp, i);
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +10004119 trp->l0 = be64_to_cpu(frp->l0);
4120 trp->l1 = be64_to_cpu(frp->l1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 }
4122 if (exntf == XFS_EXTFMT_NOSTATE) {
4123 /*
4124 * Check all attribute bmap btree records and
4125 * any "older" data bmap btree records for a
4126 * set bit in the "extent flag" position.
4127 */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004128 if (unlikely(xfs_check_nostate_extents(ifp,
4129 start, num_recs))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130 XFS_ERROR_REPORT("xfs_bmap_read_extents(2)",
4131 XFS_ERRLEVEL_LOW,
4132 ip->i_mount);
4133 goto error0;
4134 }
4135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136 xfs_trans_brelse(tp, bp);
4137 bno = nextbno;
4138 /*
4139 * If we've reached the end, stop.
4140 */
4141 if (bno == NULLFSBLOCK)
4142 break;
4143 if ((error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
4144 XFS_BMAP_BTREE_REF)))
4145 return error;
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11004146 block = XFS_BUF_TO_BLOCK(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147 }
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004148 ASSERT(i == (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149 ASSERT(i == XFS_IFORK_NEXTENTS(ip, whichfork));
Eric Sandeen3a59c942007-07-11 11:09:47 +10004150 XFS_BMAP_TRACE_EXLIST(ip, i, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151 return 0;
4152error0:
4153 xfs_trans_brelse(tp, bp);
4154 return XFS_ERROR(EFSCORRUPTED);
4155}
4156
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00004157#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004159 * Add bmap trace insert entries for all the contents of the extent records.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160 */
4161void
4162xfs_bmap_trace_exlist(
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163 xfs_inode_t *ip, /* incore inode pointer */
4164 xfs_extnum_t cnt, /* count of entries in the list */
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00004165 int whichfork, /* data or attr fork */
4166 unsigned long caller_ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167{
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004168 xfs_extnum_t idx; /* extent record index */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 xfs_ifork_t *ifp; /* inode fork pointer */
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00004170 int state = 0;
4171
4172 if (whichfork == XFS_ATTR_FORK)
4173 state |= BMAP_ATTRFORK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174
4175 ifp = XFS_IFORK_PTR(ip, whichfork);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004176 ASSERT(cnt == (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t)));
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00004177 for (idx = 0; idx < cnt; idx++)
4178 trace_xfs_extlist(ip, idx, whichfork, caller_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181/*
4182 * Validate that the bmbt_irecs being returned from bmapi are valid
4183 * given the callers original parameters. Specifically check the
4184 * ranges of the returned irecs to ensure that they only extent beyond
4185 * the given parameters if the XFS_BMAPI_ENTIRE flag was set.
4186 */
4187STATIC void
4188xfs_bmap_validate_ret(
4189 xfs_fileoff_t bno,
4190 xfs_filblks_t len,
4191 int flags,
4192 xfs_bmbt_irec_t *mval,
4193 int nmap,
4194 int ret_nmap)
4195{
4196 int i; /* index to map values */
4197
4198 ASSERT(ret_nmap <= nmap);
4199
4200 for (i = 0; i < ret_nmap; i++) {
4201 ASSERT(mval[i].br_blockcount > 0);
4202 if (!(flags & XFS_BMAPI_ENTIRE)) {
4203 ASSERT(mval[i].br_startoff >= bno);
4204 ASSERT(mval[i].br_blockcount <= len);
4205 ASSERT(mval[i].br_startoff + mval[i].br_blockcount <=
4206 bno + len);
4207 } else {
4208 ASSERT(mval[i].br_startoff < bno + len);
4209 ASSERT(mval[i].br_startoff + mval[i].br_blockcount >
4210 bno);
4211 }
4212 ASSERT(i == 0 ||
4213 mval[i - 1].br_startoff + mval[i - 1].br_blockcount ==
4214 mval[i].br_startoff);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004215 ASSERT(mval[i].br_startblock != DELAYSTARTBLOCK &&
4216 mval[i].br_startblock != HOLESTARTBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217 ASSERT(mval[i].br_state == XFS_EXT_NORM ||
4218 mval[i].br_state == XFS_EXT_UNWRITTEN);
4219 }
4220}
4221#endif /* DEBUG */
4222
4223
4224/*
Dave Chinneraef9a892011-09-18 20:40:44 +00004225 * Trim the returned map to the required bounds
4226 */
4227STATIC void
4228xfs_bmapi_trim_map(
4229 struct xfs_bmbt_irec *mval,
4230 struct xfs_bmbt_irec *got,
4231 xfs_fileoff_t *bno,
4232 xfs_filblks_t len,
4233 xfs_fileoff_t obno,
4234 xfs_fileoff_t end,
4235 int n,
4236 int flags)
4237{
4238 if ((flags & XFS_BMAPI_ENTIRE) ||
4239 got->br_startoff + got->br_blockcount <= obno) {
4240 *mval = *got;
4241 if (isnullstartblock(got->br_startblock))
4242 mval->br_startblock = DELAYSTARTBLOCK;
4243 return;
4244 }
4245
4246 if (obno > *bno)
4247 *bno = obno;
4248 ASSERT((*bno >= obno) || (n == 0));
4249 ASSERT(*bno < end);
4250 mval->br_startoff = *bno;
4251 if (isnullstartblock(got->br_startblock))
4252 mval->br_startblock = DELAYSTARTBLOCK;
4253 else
4254 mval->br_startblock = got->br_startblock +
4255 (*bno - got->br_startoff);
4256 /*
4257 * Return the minimum of what we got and what we asked for for
4258 * the length. We can use the len variable here because it is
4259 * modified below and we could have been there before coming
4260 * here if the first part of the allocation didn't overlap what
4261 * was asked for.
4262 */
4263 mval->br_blockcount = XFS_FILBLKS_MIN(end - *bno,
4264 got->br_blockcount - (*bno - got->br_startoff));
4265 mval->br_state = got->br_state;
4266 ASSERT(mval->br_blockcount <= len);
4267 return;
4268}
4269
4270/*
4271 * Update and validate the extent map to return
4272 */
4273STATIC void
4274xfs_bmapi_update_map(
4275 struct xfs_bmbt_irec **map,
4276 xfs_fileoff_t *bno,
4277 xfs_filblks_t *len,
4278 xfs_fileoff_t obno,
4279 xfs_fileoff_t end,
4280 int *n,
4281 int flags)
4282{
4283 xfs_bmbt_irec_t *mval = *map;
4284
4285 ASSERT((flags & XFS_BMAPI_ENTIRE) ||
4286 ((mval->br_startoff + mval->br_blockcount) <= end));
4287 ASSERT((flags & XFS_BMAPI_ENTIRE) || (mval->br_blockcount <= *len) ||
4288 (mval->br_startoff < obno));
4289
4290 *bno = mval->br_startoff + mval->br_blockcount;
4291 *len = end - *bno;
4292 if (*n > 0 && mval->br_startoff == mval[-1].br_startoff) {
4293 /* update previous map with new information */
4294 ASSERT(mval->br_startblock == mval[-1].br_startblock);
4295 ASSERT(mval->br_blockcount > mval[-1].br_blockcount);
4296 ASSERT(mval->br_state == mval[-1].br_state);
4297 mval[-1].br_blockcount = mval->br_blockcount;
4298 mval[-1].br_state = mval->br_state;
4299 } else if (*n > 0 && mval->br_startblock != DELAYSTARTBLOCK &&
4300 mval[-1].br_startblock != DELAYSTARTBLOCK &&
4301 mval[-1].br_startblock != HOLESTARTBLOCK &&
4302 mval->br_startblock == mval[-1].br_startblock +
4303 mval[-1].br_blockcount &&
4304 ((flags & XFS_BMAPI_IGSTATE) ||
4305 mval[-1].br_state == mval->br_state)) {
4306 ASSERT(mval->br_startoff ==
4307 mval[-1].br_startoff + mval[-1].br_blockcount);
4308 mval[-1].br_blockcount += mval->br_blockcount;
4309 } else if (*n > 0 &&
4310 mval->br_startblock == DELAYSTARTBLOCK &&
4311 mval[-1].br_startblock == DELAYSTARTBLOCK &&
4312 mval->br_startoff ==
4313 mval[-1].br_startoff + mval[-1].br_blockcount) {
4314 mval[-1].br_blockcount += mval->br_blockcount;
4315 mval[-1].br_state = mval->br_state;
4316 } else if (!((*n == 0) &&
4317 ((mval->br_startoff + mval->br_blockcount) <=
4318 obno))) {
4319 mval++;
4320 (*n)++;
4321 }
4322 *map = mval;
4323}
4324
4325/*
Dave Chinner5c8ed202011-09-18 20:40:45 +00004326 * Map file blocks to filesystem blocks without allocation.
4327 */
4328int
4329xfs_bmapi_read(
4330 struct xfs_inode *ip,
4331 xfs_fileoff_t bno,
4332 xfs_filblks_t len,
4333 struct xfs_bmbt_irec *mval,
4334 int *nmap,
4335 int flags)
4336{
4337 struct xfs_mount *mp = ip->i_mount;
4338 struct xfs_ifork *ifp;
4339 struct xfs_bmbt_irec got;
4340 struct xfs_bmbt_irec prev;
4341 xfs_fileoff_t obno;
4342 xfs_fileoff_t end;
4343 xfs_extnum_t lastx;
4344 int error;
4345 int eof;
4346 int n = 0;
4347 int whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
4348 XFS_ATTR_FORK : XFS_DATA_FORK;
4349
4350 ASSERT(*nmap >= 1);
4351 ASSERT(!(flags & ~(XFS_BMAPI_ATTRFORK|XFS_BMAPI_ENTIRE|
4352 XFS_BMAPI_IGSTATE)));
4353
4354 if (unlikely(XFS_TEST_ERROR(
4355 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
4356 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
4357 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
4358 XFS_ERROR_REPORT("xfs_bmapi_read", XFS_ERRLEVEL_LOW, mp);
4359 return XFS_ERROR(EFSCORRUPTED);
4360 }
4361
4362 if (XFS_FORCED_SHUTDOWN(mp))
4363 return XFS_ERROR(EIO);
4364
4365 XFS_STATS_INC(xs_blk_mapr);
4366
4367 ifp = XFS_IFORK_PTR(ip, whichfork);
4368 ASSERT(ifp->if_ext_max ==
4369 XFS_IFORK_SIZE(ip, whichfork) / (uint)sizeof(xfs_bmbt_rec_t));
4370
4371 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
4372 error = xfs_iread_extents(NULL, ip, whichfork);
4373 if (error)
4374 return error;
4375 }
4376
4377 xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got, &prev);
4378 end = bno + len;
4379 obno = bno;
4380
4381 while (bno < end && n < *nmap) {
4382 /* Reading past eof, act as though there's a hole up to end. */
4383 if (eof)
4384 got.br_startoff = end;
4385 if (got.br_startoff > bno) {
4386 /* Reading in a hole. */
4387 mval->br_startoff = bno;
4388 mval->br_startblock = HOLESTARTBLOCK;
4389 mval->br_blockcount =
4390 XFS_FILBLKS_MIN(len, got.br_startoff - bno);
4391 mval->br_state = XFS_EXT_NORM;
4392 bno += mval->br_blockcount;
4393 len -= mval->br_blockcount;
4394 mval++;
4395 n++;
4396 continue;
4397 }
4398
4399 /* set up the extent map to return. */
4400 xfs_bmapi_trim_map(mval, &got, &bno, len, obno, end, n, flags);
4401 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
4402
4403 /* If we're done, stop now. */
4404 if (bno >= end || n >= *nmap)
4405 break;
4406
4407 /* Else go on to the next record. */
4408 if (++lastx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t))
4409 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, lastx), &got);
4410 else
4411 eof = 1;
4412 }
4413 *nmap = n;
4414 return 0;
4415}
4416
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00004417STATIC int
4418xfs_bmapi_reserve_delalloc(
4419 struct xfs_inode *ip,
4420 xfs_fileoff_t aoff,
4421 xfs_filblks_t len,
4422 struct xfs_bmbt_irec *got,
4423 struct xfs_bmbt_irec *prev,
4424 xfs_extnum_t *lastx,
4425 int eof)
4426{
4427 struct xfs_mount *mp = ip->i_mount;
4428 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
4429 xfs_extlen_t alen;
4430 xfs_extlen_t indlen;
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00004431 char rt = XFS_IS_REALTIME_INODE(ip);
4432 xfs_extlen_t extsz;
4433 int error;
4434
4435 alen = XFS_FILBLKS_MIN(len, MAXEXTLEN);
4436 if (!eof)
4437 alen = XFS_FILBLKS_MIN(alen, got->br_startoff - aoff);
4438
4439 /* Figure out the extent size, adjust alen */
4440 extsz = xfs_get_extsz_hint(ip);
4441 if (extsz) {
4442 /*
4443 * Make sure we don't exceed a single extent length when we
4444 * align the extent by reducing length we are going to
4445 * allocate by the maximum amount extent size aligment may
4446 * require.
4447 */
4448 alen = XFS_FILBLKS_MIN(len, MAXEXTLEN - (2 * extsz - 1));
4449 error = xfs_bmap_extsize_align(mp, got, prev, extsz, rt, eof,
4450 1, 0, &aoff, &alen);
4451 ASSERT(!error);
4452 }
4453
4454 if (rt)
4455 extsz = alen / mp->m_sb.sb_rextsize;
4456
4457 /*
4458 * Make a transaction-less quota reservation for delayed allocation
4459 * blocks. This number gets adjusted later. We return if we haven't
4460 * allocated blocks already inside this loop.
4461 */
4462 error = xfs_trans_reserve_quota_nblks(NULL, ip, (long)alen, 0,
4463 rt ? XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS);
4464 if (error)
4465 return error;
4466
4467 /*
4468 * Split changing sb for alen and indlen since they could be coming
4469 * from different places.
4470 */
4471 indlen = (xfs_extlen_t)xfs_bmap_worst_indlen(ip, alen);
4472 ASSERT(indlen > 0);
4473
4474 if (rt) {
4475 error = xfs_mod_incore_sb(mp, XFS_SBS_FREXTENTS,
4476 -((int64_t)extsz), 0);
4477 } else {
4478 error = xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
4479 -((int64_t)alen), 0);
4480 }
4481
4482 if (error)
4483 goto out_unreserve_quota;
4484
4485 error = xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
4486 -((int64_t)indlen), 0);
4487 if (error)
4488 goto out_unreserve_blocks;
4489
4490
4491 ip->i_delayed_blks += alen;
4492
4493 got->br_startoff = aoff;
4494 got->br_startblock = nullstartblock(indlen);
4495 got->br_blockcount = alen;
4496 got->br_state = XFS_EXT_NORM;
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00004497 xfs_bmap_add_extent_hole_delay(ip, lastx, got);
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00004498
4499 /*
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00004500 * Update our extent pointer, given that xfs_bmap_add_extent_hole_delay
4501 * might have merged it into one of the neighbouring ones.
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00004502 */
4503 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *lastx), got);
4504
4505 ASSERT(got->br_startoff <= aoff);
4506 ASSERT(got->br_startoff + got->br_blockcount >= aoff + alen);
4507 ASSERT(isnullstartblock(got->br_startblock));
4508 ASSERT(got->br_state == XFS_EXT_NORM);
4509 return 0;
4510
4511out_unreserve_blocks:
4512 if (rt)
4513 xfs_mod_incore_sb(mp, XFS_SBS_FREXTENTS, extsz, 0);
4514 else
4515 xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS, alen, 0);
4516out_unreserve_quota:
4517 if (XFS_IS_QUOTA_ON(mp))
4518 xfs_trans_unreserve_quota_nblks(NULL, ip, alen, 0, rt ?
4519 XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS);
4520 return error;
4521}
4522
Dave Chinner5c8ed202011-09-18 20:40:45 +00004523/*
Christoph Hellwig44032802011-09-18 20:40:48 +00004524 * Map file blocks to filesystem blocks, adding delayed allocations as needed.
4525 */
4526int
4527xfs_bmapi_delay(
4528 struct xfs_inode *ip, /* incore inode */
4529 xfs_fileoff_t bno, /* starting file offs. mapped */
4530 xfs_filblks_t len, /* length to map in file */
4531 struct xfs_bmbt_irec *mval, /* output: map values */
4532 int *nmap, /* i/o: mval size/count */
4533 int flags) /* XFS_BMAPI_... */
4534{
4535 struct xfs_mount *mp = ip->i_mount;
4536 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
4537 struct xfs_bmbt_irec got; /* current file extent record */
4538 struct xfs_bmbt_irec prev; /* previous file extent record */
4539 xfs_fileoff_t obno; /* old block number (offset) */
4540 xfs_fileoff_t end; /* end of mapped file region */
4541 xfs_extnum_t lastx; /* last useful extent number */
4542 int eof; /* we've hit the end of extents */
4543 int n = 0; /* current extent index */
4544 int error = 0;
4545
4546 ASSERT(*nmap >= 1);
4547 ASSERT(*nmap <= XFS_BMAP_MAX_NMAP);
4548 ASSERT(!(flags & ~XFS_BMAPI_ENTIRE));
4549
4550 if (unlikely(XFS_TEST_ERROR(
4551 (XFS_IFORK_FORMAT(ip, XFS_DATA_FORK) != XFS_DINODE_FMT_EXTENTS &&
4552 XFS_IFORK_FORMAT(ip, XFS_DATA_FORK) != XFS_DINODE_FMT_BTREE),
4553 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
4554 XFS_ERROR_REPORT("xfs_bmapi_delay", XFS_ERRLEVEL_LOW, mp);
4555 return XFS_ERROR(EFSCORRUPTED);
4556 }
4557
4558 if (XFS_FORCED_SHUTDOWN(mp))
4559 return XFS_ERROR(EIO);
4560
4561 XFS_STATS_INC(xs_blk_mapw);
4562
4563 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
4564 error = xfs_iread_extents(NULL, ip, XFS_DATA_FORK);
4565 if (error)
4566 return error;
4567 }
4568
4569 xfs_bmap_search_extents(ip, bno, XFS_DATA_FORK, &eof, &lastx, &got, &prev);
4570 end = bno + len;
4571 obno = bno;
4572
4573 while (bno < end && n < *nmap) {
4574 if (eof || got.br_startoff > bno) {
4575 error = xfs_bmapi_reserve_delalloc(ip, bno, len, &got,
4576 &prev, &lastx, eof);
4577 if (error) {
4578 if (n == 0) {
4579 *nmap = 0;
4580 return error;
4581 }
4582 break;
4583 }
4584 }
4585
4586 /* set up the extent map to return. */
4587 xfs_bmapi_trim_map(mval, &got, &bno, len, obno, end, n, flags);
4588 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
4589
4590 /* If we're done, stop now. */
4591 if (bno >= end || n >= *nmap)
4592 break;
4593
4594 /* Else go on to the next record. */
4595 prev = got;
4596 if (++lastx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t))
4597 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, lastx), &got);
4598 else
4599 eof = 1;
4600 }
4601
4602 *nmap = n;
4603 return 0;
4604}
4605
4606
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004607STATIC int
4608xfs_bmapi_allocate(
4609 struct xfs_bmalloca *bma,
4610 xfs_extnum_t *lastx,
4611 struct xfs_btree_cur **cur,
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004612 int flags,
4613 int *nallocs,
4614 int *logflags)
4615{
4616 struct xfs_mount *mp = bma->ip->i_mount;
4617 int whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
4618 XFS_ATTR_FORK : XFS_DATA_FORK;
4619 struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork);
4620 xfs_fsblock_t abno;
4621 xfs_extlen_t alen;
4622 xfs_fileoff_t aoff;
4623 int error;
4624 int rt;
4625
4626 rt = (whichfork == XFS_DATA_FORK) && XFS_IS_REALTIME_INODE(bma->ip);
4627
4628 /*
4629 * For the wasdelay case, we could also just allocate the stuff asked
4630 * for in this bmap call but that wouldn't be as good.
4631 */
4632 if (bma->wasdel) {
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004633 alen = (xfs_extlen_t)bma->got.br_blockcount;
4634 aoff = bma->got.br_startoff;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004635 if (*lastx != NULLEXTNUM && *lastx) {
4636 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *lastx - 1),
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004637 &bma->prev);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004638 }
4639 } else {
Dave Chinner3a756672011-09-18 20:40:58 +00004640 alen = (xfs_extlen_t)XFS_FILBLKS_MIN(bma->length, MAXEXTLEN);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004641 if (!bma->eof)
4642 alen = (xfs_extlen_t)XFS_FILBLKS_MIN(alen,
Dave Chinner3a756672011-09-18 20:40:58 +00004643 bma->got.br_startoff - bma->offset);
4644 aoff = bma->offset;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004645 }
4646
4647 /*
4648 * Indicate if this is the first user data in the file, or just any
4649 * user data.
4650 */
4651 if (!(flags & XFS_BMAPI_METADATA)) {
4652 bma->userdata = (aoff == 0) ?
4653 XFS_ALLOC_INITIAL_USER_DATA : XFS_ALLOC_USERDATA;
4654 }
4655
4656 /*
4657 * Fill in changeable bma fields.
4658 */
Dave Chinner3a756672011-09-18 20:40:58 +00004659 bma->length = alen;
4660 bma->offset = aoff;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004661 bma->minlen = (flags & XFS_BMAPI_CONTIG) ? alen : 1;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004662 bma->aeof = 0;
4663
4664 /*
4665 * Only want to do the alignment at the eof if it is userdata and
4666 * allocation length is larger than a stripe unit.
4667 */
4668 if (mp->m_dalign && alen >= mp->m_dalign &&
4669 !(flags & XFS_BMAPI_METADATA) && whichfork == XFS_DATA_FORK) {
Dave Chinner1b164472011-09-18 20:40:55 +00004670 error = xfs_bmap_isaeof(bma, whichfork);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004671 if (error)
4672 return error;
4673 }
4674
4675 error = xfs_bmap_alloc(bma);
4676 if (error)
4677 return error;
4678
4679 /*
4680 * Copy out result fields.
4681 */
Dave Chinner3a756672011-09-18 20:40:58 +00004682 abno = bma->blkno;
4683 alen = bma->length;
4684 aoff = bma->offset;
Dave Chinner0937e0f2011-09-18 20:40:57 +00004685 if (bma->flist->xbf_low)
4686 bma->minleft = 0;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004687 if (*cur)
Dave Chinner0937e0f2011-09-18 20:40:57 +00004688 (*cur)->bc_private.b.firstblock = *bma->firstblock;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004689 if (abno == NULLFSBLOCK)
4690 return 0;
4691 if ((ifp->if_flags & XFS_IFBROOT) && !*cur) {
4692 (*cur) = xfs_bmbt_init_cursor(mp, bma->tp, bma->ip, whichfork);
Dave Chinner0937e0f2011-09-18 20:40:57 +00004693 (*cur)->bc_private.b.firstblock = *bma->firstblock;
4694 (*cur)->bc_private.b.flist = bma->flist;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004695 }
4696 /*
4697 * Bump the number of extents we've allocated
4698 * in this call.
4699 */
4700 (*nallocs)++;
4701
4702 if (*cur)
4703 (*cur)->bc_private.b.flags =
4704 bma->wasdel ? XFS_BTCUR_BPRV_WASDEL : 0;
4705
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004706 bma->got.br_startoff = aoff;
4707 bma->got.br_startblock = abno;
4708 bma->got.br_blockcount = alen;
4709 bma->got.br_state = XFS_EXT_NORM;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004710
4711 /*
4712 * A wasdelay extent has been initialized, so shouldn't be flagged
4713 * as unwritten.
4714 */
4715 if (!bma->wasdel && (flags & XFS_BMAPI_PREALLOC) &&
4716 xfs_sb_version_hasextflgbit(&mp->m_sb))
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004717 bma->got.br_state = XFS_EXT_UNWRITTEN;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004718
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00004719 if (bma->wasdel) {
4720 error = xfs_bmap_add_extent_delay_real(bma->tp, bma->ip, lastx,
Dave Chinner0937e0f2011-09-18 20:40:57 +00004721 cur, &bma->got, bma->firstblock, bma->flist,
4722 logflags);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00004723 } else {
4724 error = xfs_bmap_add_extent_hole_real(bma->tp, bma->ip, lastx,
Dave Chinner0937e0f2011-09-18 20:40:57 +00004725 cur, &bma->got, bma->firstblock, bma->flist,
4726 logflags, whichfork);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00004727 }
4728
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004729 if (error)
4730 return error;
4731
4732 /*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00004733 * Update our extent pointer, given that xfs_bmap_add_extent_delay_real
4734 * or xfs_bmap_add_extent_hole_real might have merged it into one of
4735 * the neighbouring ones.
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004736 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004737 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *lastx), &bma->got);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004738
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004739 ASSERT(bma->got.br_startoff <= aoff);
4740 ASSERT(bma->got.br_startoff + bma->got.br_blockcount >= aoff + alen);
4741 ASSERT(bma->got.br_state == XFS_EXT_NORM ||
4742 bma->got.br_state == XFS_EXT_UNWRITTEN);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004743 return 0;
4744}
4745
Dave Chinnerb447fe52011-09-18 20:40:51 +00004746STATIC int
4747xfs_bmapi_convert_unwritten(
4748 struct xfs_bmalloca *bma,
4749 struct xfs_bmbt_irec *mval,
4750 xfs_filblks_t len,
4751 xfs_extnum_t *lastx,
4752 struct xfs_btree_cur **cur,
Dave Chinnerb447fe52011-09-18 20:40:51 +00004753 int flags,
4754 int *logflags)
4755{
4756 int whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
4757 XFS_ATTR_FORK : XFS_DATA_FORK;
4758 struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork);
4759 int error;
4760
4761 *logflags = 0;
4762
4763 /* check if we need to do unwritten->real conversion */
4764 if (mval->br_state == XFS_EXT_UNWRITTEN &&
4765 (flags & XFS_BMAPI_PREALLOC))
4766 return 0;
4767
4768 /* check if we need to do real->unwritten conversion */
4769 if (mval->br_state == XFS_EXT_NORM &&
4770 (flags & (XFS_BMAPI_PREALLOC | XFS_BMAPI_CONVERT)) !=
4771 (XFS_BMAPI_PREALLOC | XFS_BMAPI_CONVERT))
4772 return 0;
4773
4774 /*
4775 * Modify (by adding) the state flag, if writing.
4776 */
4777 ASSERT(mval->br_blockcount <= len);
4778 if ((ifp->if_flags & XFS_IFBROOT) && !*cur) {
4779 *cur = xfs_bmbt_init_cursor(bma->ip->i_mount, bma->tp,
4780 bma->ip, whichfork);
Dave Chinner0937e0f2011-09-18 20:40:57 +00004781 (*cur)->bc_private.b.firstblock = *bma->firstblock;
4782 (*cur)->bc_private.b.flist = bma->flist;
Dave Chinnerb447fe52011-09-18 20:40:51 +00004783 }
4784 mval->br_state = (mval->br_state == XFS_EXT_UNWRITTEN)
4785 ? XFS_EXT_NORM : XFS_EXT_UNWRITTEN;
4786
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00004787 error = xfs_bmap_add_extent_unwritten_real(bma->tp, bma->ip, lastx,
Dave Chinner0937e0f2011-09-18 20:40:57 +00004788 cur, mval, bma->firstblock, bma->flist, logflags);
Dave Chinnerb447fe52011-09-18 20:40:51 +00004789 if (error)
4790 return error;
4791
4792 /*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00004793 * Update our extent pointer, given that
4794 * xfs_bmap_add_extent_unwritten_real might have merged it into one
4795 * of the neighbouring ones.
Dave Chinnerb447fe52011-09-18 20:40:51 +00004796 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004797 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *lastx), &bma->got);
Dave Chinnerb447fe52011-09-18 20:40:51 +00004798
4799 /*
4800 * We may have combined previously unwritten space with written space,
4801 * so generate another request.
4802 */
4803 if (mval->br_blockcount < len)
4804 return EAGAIN;
4805 return 0;
4806}
4807
Christoph Hellwig44032802011-09-18 20:40:48 +00004808/*
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004809 * Map file blocks to filesystem blocks, and allocate blocks or convert the
4810 * extent state if necessary. Details behaviour is controlled by the flags
4811 * parameter. Only allocates blocks from a single allocation group, to avoid
4812 * locking problems.
4813 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814 * The returned value in "firstblock" from the first call in a transaction
4815 * must be remembered and presented to subsequent calls in "firstblock".
4816 * An upper bound for the number of blocks to be allocated is supplied to
4817 * the first call in "total"; if no allocation group has that many free
4818 * blocks then the call will fail (return NULLFSBLOCK in "firstblock").
4819 */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004820int
4821xfs_bmapi_write(
4822 struct xfs_trans *tp, /* transaction pointer */
4823 struct xfs_inode *ip, /* incore inode */
4824 xfs_fileoff_t bno, /* starting file offs. mapped */
4825 xfs_filblks_t len, /* length to map in file */
4826 int flags, /* XFS_BMAPI_... */
4827 xfs_fsblock_t *firstblock, /* first allocated block
4828 controls a.g. for allocs */
4829 xfs_extlen_t total, /* total blocks needed */
4830 struct xfs_bmbt_irec *mval, /* output: map values */
4831 int *nmap, /* i/o: mval size/count */
4832 struct xfs_bmap_free *flist) /* i/o: list extents to free */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833{
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004834 struct xfs_mount *mp = ip->i_mount;
4835 struct xfs_ifork *ifp;
4836 struct xfs_bmalloca bma = { 0 }; /* args for xfs_bmap_alloc */
4837 struct xfs_btree_cur *cur; /* bmap btree cursor */
4838 xfs_fileoff_t end; /* end of mapped file region */
4839 int eof; /* after the end of extents */
4840 int error; /* error return */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004841 xfs_extnum_t lastx; /* last useful extent number */
4842 int logflags; /* flags for transaction logging */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004843 int n; /* current extent index */
4844 int nallocs; /* number of extents alloc'd */
4845 xfs_fileoff_t obno; /* old block number (offset) */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004846 int tmp_logflags; /* temp flags holder */
4847 int whichfork; /* data or attr fork */
4848 char inhole; /* current location is hole in file */
4849 char wasdelay; /* old extent was delayed */
4850
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851#ifdef DEBUG
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004852 xfs_fileoff_t orig_bno; /* original block number value */
4853 int orig_flags; /* original flags arg value */
4854 xfs_filblks_t orig_len; /* original value of len arg */
4855 struct xfs_bmbt_irec *orig_mval; /* original value of mval */
4856 int orig_nmap; /* original value of *nmap */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857
4858 orig_bno = bno;
4859 orig_len = len;
4860 orig_flags = flags;
4861 orig_mval = mval;
4862 orig_nmap = *nmap;
4863#endif
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004864
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865 ASSERT(*nmap >= 1);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004866 ASSERT(*nmap <= XFS_BMAP_MAX_NMAP);
4867 ASSERT(!(flags & XFS_BMAPI_IGSTATE));
4868 ASSERT(tp != NULL);
4869
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870 whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
4871 XFS_ATTR_FORK : XFS_DATA_FORK;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004872
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873 if (unlikely(XFS_TEST_ERROR(
4874 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
4875 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE &&
4876 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_LOCAL),
4877 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004878 XFS_ERROR_REPORT("xfs_bmapi_write", XFS_ERRLEVEL_LOW, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879 return XFS_ERROR(EFSCORRUPTED);
4880 }
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004881
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 if (XFS_FORCED_SHUTDOWN(mp))
4883 return XFS_ERROR(EIO);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004884
Linus Torvalds1da177e2005-04-16 15:20:36 -07004885 ifp = XFS_IFORK_PTR(ip, whichfork);
4886 ASSERT(ifp->if_ext_max ==
4887 XFS_IFORK_SIZE(ip, whichfork) / (uint)sizeof(xfs_bmbt_rec_t));
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004888
4889 XFS_STATS_INC(xs_blk_mapw);
4890
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891 logflags = 0;
4892 nallocs = 0;
4893 cur = NULL;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004894
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004896 error = xfs_bmap_local_to_extents(tp, ip, firstblock, total,
4897 &logflags, whichfork);
4898 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899 goto error0;
4900 }
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004901
4902 if (*firstblock == NULLFSBLOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE)
Dave Chinner0937e0f2011-09-18 20:40:57 +00004904 bma.minleft = be16_to_cpu(ifp->if_broot->bb_level) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905 else
Dave Chinner0937e0f2011-09-18 20:40:57 +00004906 bma.minleft = 1;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004907 } else {
Dave Chinner0937e0f2011-09-18 20:40:57 +00004908 bma.minleft = 0;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004909 }
4910
4911 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
4912 error = xfs_iread_extents(tp, ip, whichfork);
4913 if (error)
4914 goto error0;
4915 }
4916
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004917 xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &bma.got,
4918 &bma.prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919 n = 0;
4920 end = bno + len;
4921 obno = bno;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004922
4923 bma.tp = tp;
4924 bma.ip = ip;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004925 bma.total = total;
4926 bma.userdata = 0;
Dave Chinner0937e0f2011-09-18 20:40:57 +00004927 bma.flist = flist;
4928 bma.firstblock = firstblock;
Christoph Hellwigb4e91812010-06-23 18:11:15 +10004929
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930 while (bno < end && n < *nmap) {
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004931 inhole = eof || bma.got.br_startoff > bno;
4932 wasdelay = !inhole && isnullstartblock(bma.got.br_startblock);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004933
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934 /*
4935 * First, deal with the hole before the allocated space
4936 * that we found, if any.
4937 */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004938 if (inhole || wasdelay) {
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004939 bma.eof = eof;
4940 bma.conv = !!(flags & XFS_BMAPI_CONVERT);
4941 bma.wasdel = wasdelay;
Dave Chinner3a756672011-09-18 20:40:58 +00004942 bma.length = len;
4943 bma.offset = bno;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004944
Dave Chinner0937e0f2011-09-18 20:40:57 +00004945 error = xfs_bmapi_allocate(&bma, &lastx, &cur, flags,
4946 &nallocs, &tmp_logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947 logflags |= tmp_logflags;
4948 if (error)
4949 goto error0;
Dave Chinner3a756672011-09-18 20:40:58 +00004950 if (bma.blkno == NULLFSBLOCK)
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004951 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952 }
Christoph Hellwig44032802011-09-18 20:40:48 +00004953
Dave Chinneraef9a892011-09-18 20:40:44 +00004954 /* Deal with the allocated space we found. */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004955 xfs_bmapi_trim_map(mval, &bma.got, &bno, len, obno,
4956 end, n, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957
Dave Chinnerb447fe52011-09-18 20:40:51 +00004958 /* Execute unwritten extent conversion if necessary */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004959 error = xfs_bmapi_convert_unwritten(&bma, mval, len, &lastx,
Dave Chinner0937e0f2011-09-18 20:40:57 +00004960 &cur, flags, &tmp_logflags);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004961 logflags |= tmp_logflags;
4962 if (error == EAGAIN)
4963 continue;
4964 if (error)
4965 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966
Dave Chinneraef9a892011-09-18 20:40:44 +00004967 /* update the extent map to return */
4968 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
4969
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970 /*
4971 * If we're done, stop now. Stop when we've allocated
4972 * XFS_BMAP_MAX_NMAP extents no matter what. Otherwise
4973 * the transaction may get too big.
4974 */
4975 if (bno >= end || n >= *nmap || nallocs >= *nmap)
4976 break;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004977
4978 /* Else go on to the next record. */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004979 bma.prev = bma.got;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004980 if (++lastx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t))
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004981 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, lastx), &bma.got);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004982 else
Christoph Hellwig5690f922011-05-11 15:04:07 +00004983 eof = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985 *nmap = n;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004986
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987 /*
4988 * Transform from btree to extents, give it cur.
4989 */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004990 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991 XFS_IFORK_NEXTENTS(ip, whichfork) <= ifp->if_ext_max) {
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004992 ASSERT(cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993 error = xfs_bmap_btree_to_extents(tp, ip, cur,
4994 &tmp_logflags, whichfork);
4995 logflags |= tmp_logflags;
4996 if (error)
4997 goto error0;
4998 }
4999 ASSERT(ifp->if_ext_max ==
5000 XFS_IFORK_SIZE(ip, whichfork) / (uint)sizeof(xfs_bmbt_rec_t));
5001 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE ||
5002 XFS_IFORK_NEXTENTS(ip, whichfork) > ifp->if_ext_max);
5003 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004error0:
5005 /*
5006 * Log everything. Do this after conversion, there's no point in
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005007 * logging the extent records if we've converted to btree format.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06005009 if ((logflags & xfs_ilog_fext(whichfork)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
Eric Sandeen9d87c312009-01-14 23:22:07 -06005011 logflags &= ~xfs_ilog_fext(whichfork);
5012 else if ((logflags & xfs_ilog_fbroot(whichfork)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)
Eric Sandeen9d87c312009-01-14 23:22:07 -06005014 logflags &= ~xfs_ilog_fbroot(whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015 /*
5016 * Log whatever the flags say, even if error. Otherwise we might miss
5017 * detecting a case where the data is changed, there's an error,
5018 * and it's not logged so we don't shutdown when we should.
5019 */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00005020 if (logflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021 xfs_trans_log_inode(tp, ip, logflags);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00005022
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023 if (cur) {
5024 if (!error) {
5025 ASSERT(*firstblock == NULLFSBLOCK ||
5026 XFS_FSB_TO_AGNO(mp, *firstblock) ==
5027 XFS_FSB_TO_AGNO(mp,
5028 cur->bc_private.b.firstblock) ||
5029 (flist->xbf_low &&
5030 XFS_FSB_TO_AGNO(mp, *firstblock) <
5031 XFS_FSB_TO_AGNO(mp,
5032 cur->bc_private.b.firstblock)));
5033 *firstblock = cur->bc_private.b.firstblock;
5034 }
5035 xfs_btree_del_cursor(cur,
5036 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
5037 }
5038 if (!error)
5039 xfs_bmap_validate_ret(orig_bno, orig_len, orig_flags, orig_mval,
5040 orig_nmap, *nmap);
5041 return error;
5042}
5043
5044/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045 * Unmap (remove) blocks from a file.
5046 * If nexts is nonzero then the number of extents to remove is limited to
5047 * that value. If not all extents in the block range can be removed then
5048 * *done is set.
5049 */
5050int /* error */
5051xfs_bunmapi(
5052 xfs_trans_t *tp, /* transaction pointer */
5053 struct xfs_inode *ip, /* incore inode */
5054 xfs_fileoff_t bno, /* starting offset to unmap */
5055 xfs_filblks_t len, /* length to unmap in file */
5056 int flags, /* misc flags */
5057 xfs_extnum_t nexts, /* number of extents max */
5058 xfs_fsblock_t *firstblock, /* first allocated block
5059 controls a.g. for allocs */
5060 xfs_bmap_free_t *flist, /* i/o: list extents to free */
5061 int *done) /* set if not done yet */
5062{
5063 xfs_btree_cur_t *cur; /* bmap btree cursor */
5064 xfs_bmbt_irec_t del; /* extent being deleted */
5065 int eof; /* is deleting at eof */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10005066 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067 int error; /* error return value */
5068 xfs_extnum_t extno; /* extent number in list */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005069 xfs_bmbt_irec_t got; /* current extent record */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005070 xfs_ifork_t *ifp; /* inode fork pointer */
5071 int isrt; /* freeing in rt area */
5072 xfs_extnum_t lastx; /* last extent index used */
5073 int logflags; /* transaction logging flags */
5074 xfs_extlen_t mod; /* rt extent offset */
5075 xfs_mount_t *mp; /* mount structure */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005076 xfs_extnum_t nextents; /* number of file extents */
5077 xfs_bmbt_irec_t prev; /* previous extent record */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078 xfs_fileoff_t start; /* first file offset deleted */
5079 int tmp_logflags; /* partial logging flags */
5080 int wasdel; /* was a delayed alloc extent */
5081 int whichfork; /* data or attribute fork */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082 xfs_fsblock_t sum;
5083
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00005084 trace_xfs_bunmap(ip, bno, len, flags, _RET_IP_);
5085
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086 whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
5087 XFS_ATTR_FORK : XFS_DATA_FORK;
5088 ifp = XFS_IFORK_PTR(ip, whichfork);
5089 if (unlikely(
5090 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
5091 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)) {
5092 XFS_ERROR_REPORT("xfs_bunmapi", XFS_ERRLEVEL_LOW,
5093 ip->i_mount);
5094 return XFS_ERROR(EFSCORRUPTED);
5095 }
5096 mp = ip->i_mount;
5097 if (XFS_FORCED_SHUTDOWN(mp))
5098 return XFS_ERROR(EIO);
Christoph Hellwig54893272011-05-11 15:04:03 +00005099
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100 ASSERT(len > 0);
5101 ASSERT(nexts >= 0);
5102 ASSERT(ifp->if_ext_max ==
5103 XFS_IFORK_SIZE(ip, whichfork) / (uint)sizeof(xfs_bmbt_rec_t));
5104 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
5105 (error = xfs_iread_extents(tp, ip, whichfork)))
5106 return error;
5107 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
5108 if (nextents == 0) {
5109 *done = 1;
5110 return 0;
5111 }
5112 XFS_STATS_INC(xs_blk_unmap);
Nathan Scottdd9f4382006-01-11 15:28:28 +11005113 isrt = (whichfork == XFS_DATA_FORK) && XFS_IS_REALTIME_INODE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114 start = bno;
5115 bno = start + len - 1;
5116 ep = xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got,
5117 &prev);
Christoph Hellwigb4e91812010-06-23 18:11:15 +10005118
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119 /*
5120 * Check to see if the given block number is past the end of the
5121 * file, back up to the last block if so...
5122 */
5123 if (eof) {
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005124 ep = xfs_iext_get_ext(ifp, --lastx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125 xfs_bmbt_get_all(ep, &got);
5126 bno = got.br_startoff + got.br_blockcount - 1;
5127 }
5128 logflags = 0;
5129 if (ifp->if_flags & XFS_IFBROOT) {
5130 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE);
Christoph Hellwig561f7d12008-10-30 16:53:59 +11005131 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132 cur->bc_private.b.firstblock = *firstblock;
5133 cur->bc_private.b.flist = flist;
5134 cur->bc_private.b.flags = 0;
5135 } else
5136 cur = NULL;
5137 extno = 0;
5138 while (bno != (xfs_fileoff_t)-1 && bno >= start && lastx >= 0 &&
5139 (nexts == 0 || extno < nexts)) {
5140 /*
5141 * Is the found extent after a hole in which bno lives?
5142 * Just back up to the previous extent, if so.
5143 */
5144 if (got.br_startoff > bno) {
5145 if (--lastx < 0)
5146 break;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005147 ep = xfs_iext_get_ext(ifp, lastx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148 xfs_bmbt_get_all(ep, &got);
5149 }
5150 /*
5151 * Is the last block of this extent before the range
5152 * we're supposed to delete? If so, we're done.
5153 */
5154 bno = XFS_FILEOFF_MIN(bno,
5155 got.br_startoff + got.br_blockcount - 1);
5156 if (bno < start)
5157 break;
5158 /*
5159 * Then deal with the (possibly delayed) allocated space
5160 * we found.
5161 */
5162 ASSERT(ep != NULL);
5163 del = got;
Eric Sandeen9d87c312009-01-14 23:22:07 -06005164 wasdel = isnullstartblock(del.br_startblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165 if (got.br_startoff < start) {
5166 del.br_startoff = start;
5167 del.br_blockcount -= start - got.br_startoff;
5168 if (!wasdel)
5169 del.br_startblock += start - got.br_startoff;
5170 }
5171 if (del.br_startoff + del.br_blockcount > bno + 1)
5172 del.br_blockcount = bno + 1 - del.br_startoff;
5173 sum = del.br_startblock + del.br_blockcount;
5174 if (isrt &&
5175 (mod = do_mod(sum, mp->m_sb.sb_rextsize))) {
5176 /*
5177 * Realtime extent not lined up at the end.
5178 * The extent could have been split into written
5179 * and unwritten pieces, or we could just be
5180 * unmapping part of it. But we can't really
5181 * get rid of part of a realtime extent.
5182 */
5183 if (del.br_state == XFS_EXT_UNWRITTEN ||
Eric Sandeen62118702008-03-06 13:44:28 +11005184 !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185 /*
5186 * This piece is unwritten, or we're not
5187 * using unwritten extents. Skip over it.
5188 */
5189 ASSERT(bno >= mod);
5190 bno -= mod > del.br_blockcount ?
5191 del.br_blockcount : mod;
5192 if (bno < got.br_startoff) {
5193 if (--lastx >= 0)
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005194 xfs_bmbt_get_all(xfs_iext_get_ext(
5195 ifp, lastx), &got);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196 }
5197 continue;
5198 }
5199 /*
5200 * It's written, turn it unwritten.
5201 * This is better than zeroing it.
5202 */
5203 ASSERT(del.br_state == XFS_EXT_NORM);
5204 ASSERT(xfs_trans_get_block_res(tp) > 0);
5205 /*
5206 * If this spans a realtime extent boundary,
5207 * chop it back to the start of the one we end at.
5208 */
5209 if (del.br_blockcount > mod) {
5210 del.br_startoff += del.br_blockcount - mod;
5211 del.br_startblock += del.br_blockcount - mod;
5212 del.br_blockcount = mod;
5213 }
5214 del.br_state = XFS_EXT_UNWRITTEN;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00005215 error = xfs_bmap_add_extent_unwritten_real(tp, ip,
5216 &lastx, &cur, &del, firstblock, flist,
5217 &logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218 if (error)
5219 goto error0;
5220 goto nodelete;
5221 }
5222 if (isrt && (mod = do_mod(del.br_startblock, mp->m_sb.sb_rextsize))) {
5223 /*
5224 * Realtime extent is lined up at the end but not
5225 * at the front. We'll get rid of full extents if
5226 * we can.
5227 */
5228 mod = mp->m_sb.sb_rextsize - mod;
5229 if (del.br_blockcount > mod) {
5230 del.br_blockcount -= mod;
5231 del.br_startoff += mod;
5232 del.br_startblock += mod;
5233 } else if ((del.br_startoff == start &&
5234 (del.br_state == XFS_EXT_UNWRITTEN ||
5235 xfs_trans_get_block_res(tp) == 0)) ||
Eric Sandeen62118702008-03-06 13:44:28 +11005236 !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005237 /*
5238 * Can't make it unwritten. There isn't
5239 * a full extent here so just skip it.
5240 */
5241 ASSERT(bno >= del.br_blockcount);
5242 bno -= del.br_blockcount;
Christoph Hellwigf1c63b72011-05-11 15:04:09 +00005243 if (got.br_startoff > bno) {
5244 if (--lastx >= 0) {
5245 ep = xfs_iext_get_ext(ifp,
5246 lastx);
5247 xfs_bmbt_get_all(ep, &got);
5248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249 }
5250 continue;
5251 } else if (del.br_state == XFS_EXT_UNWRITTEN) {
5252 /*
5253 * This one is already unwritten.
5254 * It must have a written left neighbor.
5255 * Unwrite the killed part of that one and
5256 * try again.
5257 */
5258 ASSERT(lastx > 0);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005259 xfs_bmbt_get_all(xfs_iext_get_ext(ifp,
5260 lastx - 1), &prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261 ASSERT(prev.br_state == XFS_EXT_NORM);
Eric Sandeen9d87c312009-01-14 23:22:07 -06005262 ASSERT(!isnullstartblock(prev.br_startblock));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263 ASSERT(del.br_startblock ==
5264 prev.br_startblock + prev.br_blockcount);
5265 if (prev.br_startoff < start) {
5266 mod = start - prev.br_startoff;
5267 prev.br_blockcount -= mod;
5268 prev.br_startblock += mod;
5269 prev.br_startoff = start;
5270 }
5271 prev.br_state = XFS_EXT_UNWRITTEN;
Christoph Hellwigec90c552011-05-23 08:52:53 +00005272 lastx--;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00005273 error = xfs_bmap_add_extent_unwritten_real(tp,
5274 ip, &lastx, &cur, &prev,
5275 firstblock, flist, &logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276 if (error)
5277 goto error0;
5278 goto nodelete;
5279 } else {
5280 ASSERT(del.br_state == XFS_EXT_NORM);
5281 del.br_state = XFS_EXT_UNWRITTEN;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00005282 error = xfs_bmap_add_extent_unwritten_real(tp,
5283 ip, &lastx, &cur, &del,
5284 firstblock, flist, &logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285 if (error)
5286 goto error0;
5287 goto nodelete;
5288 }
5289 }
5290 if (wasdel) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06005291 ASSERT(startblockval(del.br_startblock) > 0);
Nathan Scottdd9f4382006-01-11 15:28:28 +11005292 /* Update realtime/data freespace, unreserve quota */
Nathan Scott06d10dd2005-06-21 15:48:47 +10005293 if (isrt) {
5294 xfs_filblks_t rtexts;
5295
5296 rtexts = XFS_FSB_TO_B(mp, del.br_blockcount);
5297 do_div(rtexts, mp->m_sb.sb_rextsize);
5298 xfs_mod_incore_sb(mp, XFS_SBS_FREXTENTS,
Christoph Hellwig54893272011-05-11 15:04:03 +00005299 (int64_t)rtexts, 0);
Christoph Hellwig7d095252009-06-08 15:33:32 +02005300 (void)xfs_trans_reserve_quota_nblks(NULL,
5301 ip, -((long)del.br_blockcount), 0,
Nathan Scott06d10dd2005-06-21 15:48:47 +10005302 XFS_QMOPT_RES_RTBLKS);
5303 } else {
Christoph Hellwig96540c72010-09-30 02:25:55 +00005304 xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
Christoph Hellwig54893272011-05-11 15:04:03 +00005305 (int64_t)del.br_blockcount, 0);
Christoph Hellwig7d095252009-06-08 15:33:32 +02005306 (void)xfs_trans_reserve_quota_nblks(NULL,
5307 ip, -((long)del.br_blockcount), 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308 XFS_QMOPT_RES_REGBLKS);
Nathan Scott06d10dd2005-06-21 15:48:47 +10005309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310 ip->i_delayed_blks -= del.br_blockcount;
5311 if (cur)
5312 cur->bc_private.b.flags |=
5313 XFS_BTCUR_BPRV_WASDEL;
5314 } else if (cur)
5315 cur->bc_private.b.flags &= ~XFS_BTCUR_BPRV_WASDEL;
5316 /*
5317 * If it's the case where the directory code is running
5318 * with no block reservation, and the deleted block is in
5319 * the middle of its extent, and the resulting insert
5320 * of an extent would cause transformation to btree format,
5321 * then reject it. The calling code will then swap
5322 * blocks around instead.
5323 * We have to do this now, rather than waiting for the
5324 * conversion to btree format, since the transaction
5325 * will be dirty.
5326 */
5327 if (!wasdel && xfs_trans_get_block_res(tp) == 0 &&
5328 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS &&
5329 XFS_IFORK_NEXTENTS(ip, whichfork) >= ifp->if_ext_max &&
5330 del.br_startoff > got.br_startoff &&
5331 del.br_startoff + del.br_blockcount <
5332 got.br_startoff + got.br_blockcount) {
5333 error = XFS_ERROR(ENOSPC);
5334 goto error0;
5335 }
Christoph Hellwigec90c552011-05-23 08:52:53 +00005336 error = xfs_bmap_del_extent(ip, tp, &lastx, flist, cur, &del,
Christoph Hellwig54893272011-05-11 15:04:03 +00005337 &tmp_logflags, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338 logflags |= tmp_logflags;
5339 if (error)
5340 goto error0;
5341 bno = del.br_startoff - 1;
5342nodelete:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343 /*
5344 * If not done go on to the next (previous) record.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346 if (bno != (xfs_fileoff_t)-1 && bno >= start) {
Christoph Hellwig00239ac2011-05-11 15:04:08 +00005347 if (lastx >= 0) {
5348 ep = xfs_iext_get_ext(ifp, lastx);
5349 if (xfs_bmbt_get_startoff(ep) > bno) {
5350 if (--lastx >= 0)
5351 ep = xfs_iext_get_ext(ifp,
5352 lastx);
5353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354 xfs_bmbt_get_all(ep, &got);
Christoph Hellwig00239ac2011-05-11 15:04:08 +00005355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356 extno++;
5357 }
5358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359 *done = bno == (xfs_fileoff_t)-1 || bno < start || lastx < 0;
5360 ASSERT(ifp->if_ext_max ==
5361 XFS_IFORK_SIZE(ip, whichfork) / (uint)sizeof(xfs_bmbt_rec_t));
5362 /*
5363 * Convert to a btree if necessary.
5364 */
5365 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS &&
5366 XFS_IFORK_NEXTENTS(ip, whichfork) > ifp->if_ext_max) {
5367 ASSERT(cur == NULL);
5368 error = xfs_bmap_extents_to_btree(tp, ip, firstblock, flist,
5369 &cur, 0, &tmp_logflags, whichfork);
5370 logflags |= tmp_logflags;
5371 if (error)
5372 goto error0;
5373 }
5374 /*
5375 * transform from btree to extents, give it cur
5376 */
5377 else if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE &&
5378 XFS_IFORK_NEXTENTS(ip, whichfork) <= ifp->if_ext_max) {
5379 ASSERT(cur != NULL);
5380 error = xfs_bmap_btree_to_extents(tp, ip, cur, &tmp_logflags,
5381 whichfork);
5382 logflags |= tmp_logflags;
5383 if (error)
5384 goto error0;
5385 }
5386 /*
5387 * transform from extents to local?
5388 */
5389 ASSERT(ifp->if_ext_max ==
5390 XFS_IFORK_SIZE(ip, whichfork) / (uint)sizeof(xfs_bmbt_rec_t));
5391 error = 0;
5392error0:
5393 /*
5394 * Log everything. Do this after conversion, there's no point in
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005395 * logging the extent records if we've converted to btree format.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06005397 if ((logflags & xfs_ilog_fext(whichfork)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
Eric Sandeen9d87c312009-01-14 23:22:07 -06005399 logflags &= ~xfs_ilog_fext(whichfork);
5400 else if ((logflags & xfs_ilog_fbroot(whichfork)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)
Eric Sandeen9d87c312009-01-14 23:22:07 -06005402 logflags &= ~xfs_ilog_fbroot(whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005403 /*
5404 * Log inode even in the error case, if the transaction
5405 * is dirty we'll need to shut down the filesystem.
5406 */
5407 if (logflags)
5408 xfs_trans_log_inode(tp, ip, logflags);
5409 if (cur) {
5410 if (!error) {
5411 *firstblock = cur->bc_private.b.firstblock;
5412 cur->bc_private.b.allocated = 0;
5413 }
5414 xfs_btree_del_cursor(cur,
5415 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
5416 }
5417 return error;
5418}
5419
5420/*
Vlad Apostolov3bacbcd2007-08-16 15:20:25 +10005421 * returns 1 for success, 0 if we failed to map the extent.
5422 */
5423STATIC int
5424xfs_getbmapx_fix_eof_hole(
5425 xfs_inode_t *ip, /* xfs incore inode pointer */
Eric Sandeen8a7141a2008-11-28 14:23:35 +11005426 struct getbmapx *out, /* output structure */
Vlad Apostolov3bacbcd2007-08-16 15:20:25 +10005427 int prealloced, /* this is a file with
Eric Sandeen8a7141a2008-11-28 14:23:35 +11005428 * preallocated data space */
Vlad Apostolov3bacbcd2007-08-16 15:20:25 +10005429 __int64_t end, /* last block requested */
5430 xfs_fsblock_t startblock)
5431{
5432 __int64_t fixlen;
5433 xfs_mount_t *mp; /* file system mount point */
Eric Sandeen5af317c2008-11-28 14:23:35 +11005434 xfs_ifork_t *ifp; /* inode fork pointer */
5435 xfs_extnum_t lastx; /* last extent pointer */
5436 xfs_fileoff_t fileblock;
Vlad Apostolov3bacbcd2007-08-16 15:20:25 +10005437
5438 if (startblock == HOLESTARTBLOCK) {
5439 mp = ip->i_mount;
5440 out->bmv_block = -1;
5441 fixlen = XFS_FSB_TO_BB(mp, XFS_B_TO_FSB(mp, ip->i_size));
5442 fixlen -= out->bmv_offset;
5443 if (prealloced && out->bmv_offset + out->bmv_length == end) {
5444 /* Came to hole at EOF. Trim it. */
5445 if (fixlen <= 0)
5446 return 0;
5447 out->bmv_length = fixlen;
5448 }
5449 } else {
Eric Sandeen5af317c2008-11-28 14:23:35 +11005450 if (startblock == DELAYSTARTBLOCK)
5451 out->bmv_block = -2;
5452 else
Eric Sandeen9d87c312009-01-14 23:22:07 -06005453 out->bmv_block = xfs_fsb_to_db(ip, startblock);
Eric Sandeen5af317c2008-11-28 14:23:35 +11005454 fileblock = XFS_BB_TO_FSB(ip->i_mount, out->bmv_offset);
5455 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
5456 if (xfs_iext_bno_to_ext(ifp, fileblock, &lastx) &&
5457 (lastx == (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t))-1))
5458 out->bmv_oflags |= BMV_OF_LAST;
Vlad Apostolov3bacbcd2007-08-16 15:20:25 +10005459 }
5460
5461 return 1;
5462}
5463
5464/*
Eric Sandeen8a7141a2008-11-28 14:23:35 +11005465 * Get inode's extents as described in bmv, and format for output.
5466 * Calls formatter to fill the user's buffer until all extents
5467 * are mapped, until the passed-in bmv->bmv_count slots have
5468 * been filled, or until the formatter short-circuits the loop,
5469 * if it is tracking filled-in extents on its own.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470 */
5471int /* error code */
5472xfs_getbmap(
Christoph Hellwig993386c2007-08-28 16:12:30 +10005473 xfs_inode_t *ip,
Eric Sandeen8a7141a2008-11-28 14:23:35 +11005474 struct getbmapx *bmv, /* user bmap structure */
5475 xfs_bmap_format_t formatter, /* format to user */
5476 void *arg) /* formatter arg */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005477{
5478 __int64_t bmvend; /* last block requested */
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005479 int error = 0; /* return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005480 __int64_t fixlen; /* length for -1 case */
5481 int i; /* extent number */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482 int lock; /* lock state */
5483 xfs_bmbt_irec_t *map; /* buffer for user's data */
5484 xfs_mount_t *mp; /* file system mount point */
5485 int nex; /* # of user extents can do */
5486 int nexleft; /* # of user extents left */
5487 int subnex; /* # of bmapi's can do */
5488 int nmap; /* number of map entries */
Christoph Hellwig6321e3e2009-02-24 08:39:02 -05005489 struct getbmapx *out; /* output structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490 int whichfork; /* data or attr fork */
5491 int prealloced; /* this is a file with
5492 * preallocated data space */
Eric Sandeen8a7141a2008-11-28 14:23:35 +11005493 int iflags; /* interface flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494 int bmapi_flags; /* flags for xfs_bmapi */
Christoph Hellwig6321e3e2009-02-24 08:39:02 -05005495 int cur_ext = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497 mp = ip->i_mount;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11005498 iflags = bmv->bmv_iflags;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11005499 whichfork = iflags & BMV_IF_ATTRFORK ? XFS_ATTR_FORK : XFS_DATA_FORK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005500
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501 if (whichfork == XFS_ATTR_FORK) {
5502 if (XFS_IFORK_Q(ip)) {
5503 if (ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS &&
5504 ip->i_d.di_aformat != XFS_DINODE_FMT_BTREE &&
5505 ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)
5506 return XFS_ERROR(EINVAL);
5507 } else if (unlikely(
5508 ip->i_d.di_aformat != 0 &&
5509 ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS)) {
5510 XFS_ERROR_REPORT("xfs_getbmap", XFS_ERRLEVEL_LOW,
5511 ip->i_mount);
5512 return XFS_ERROR(EFSCORRUPTED);
5513 }
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005514
5515 prealloced = 0;
5516 fixlen = 1LL << 32;
5517 } else {
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005518 if (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS &&
5519 ip->i_d.di_format != XFS_DINODE_FMT_BTREE &&
5520 ip->i_d.di_format != XFS_DINODE_FMT_LOCAL)
5521 return XFS_ERROR(EINVAL);
5522
David Chinner957d0eb2007-06-18 16:50:37 +10005523 if (xfs_get_extsz_hint(ip) ||
Nathan Scottdd9f4382006-01-11 15:28:28 +11005524 ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC|XFS_DIFLAG_APPEND)){
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525 prealloced = 1;
5526 fixlen = XFS_MAXIOFFSET(mp);
5527 } else {
5528 prealloced = 0;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10005529 fixlen = ip->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531 }
5532
5533 if (bmv->bmv_length == -1) {
5534 fixlen = XFS_FSB_TO_BB(mp, XFS_B_TO_FSB(mp, fixlen));
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005535 bmv->bmv_length =
5536 max_t(__int64_t, fixlen - bmv->bmv_offset, 0);
5537 } else if (bmv->bmv_length == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538 bmv->bmv_entries = 0;
5539 return 0;
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005540 } else if (bmv->bmv_length < 0) {
5541 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542 }
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005543
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544 nex = bmv->bmv_count - 1;
5545 if (nex <= 0)
5546 return XFS_ERROR(EINVAL);
5547 bmvend = bmv->bmv_offset + bmv->bmv_length;
5548
Christoph Hellwig6321e3e2009-02-24 08:39:02 -05005549
5550 if (bmv->bmv_count > ULONG_MAX / sizeof(struct getbmapx))
5551 return XFS_ERROR(ENOMEM);
5552 out = kmem_zalloc(bmv->bmv_count * sizeof(struct getbmapx), KM_MAYFAIL);
5553 if (!out)
5554 return XFS_ERROR(ENOMEM);
5555
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556 xfs_ilock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005557 if (whichfork == XFS_DATA_FORK && !(iflags & BMV_IF_DELALLOC)) {
5558 if (ip->i_delayed_blks || ip->i_size > ip->i_d.di_size) {
5559 error = xfs_flush_pages(ip, 0, -1, 0, FI_REMAPF);
5560 if (error)
5561 goto out_unlock_iolock;
Niv Sardie12070a2008-03-06 13:43:03 +11005562 }
Dave Chinner309c8482010-11-30 15:16:02 +11005563 /*
5564 * even after flushing the inode, there can still be delalloc
5565 * blocks on the inode beyond EOF due to speculative
5566 * preallocation. These are not removed until the release
5567 * function is called or the inode is inactivated. Hence we
5568 * cannot assert here that ip->i_delayed_blks == 0.
5569 */
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005571
5572 lock = xfs_ilock_map_shared(ip);
5573
5574 /*
5575 * Don't let nex be bigger than the number of extents
5576 * we can have assuming alternating holes and real extents.
5577 */
5578 if (nex > XFS_IFORK_NEXTENTS(ip, whichfork) * 2 + 1)
5579 nex = XFS_IFORK_NEXTENTS(ip, whichfork) * 2 + 1;
5580
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005581 bmapi_flags = xfs_bmapi_aflag(whichfork);
5582 if (!(iflags & BMV_IF_PREALLOC))
5583 bmapi_flags |= XFS_BMAPI_IGSTATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584
5585 /*
5586 * Allocate enough space to handle "subnex" maps at a time.
5587 */
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005588 error = ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589 subnex = 16;
Christoph Hellwigca35dcd2009-07-18 18:14:54 -04005590 map = kmem_alloc(subnex * sizeof(*map), KM_MAYFAIL | KM_NOFS);
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005591 if (!map)
5592 goto out_unlock_ilock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005593
5594 bmv->bmv_entries = 0;
5595
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005596 if (XFS_IFORK_NEXTENTS(ip, whichfork) == 0 &&
5597 (whichfork == XFS_ATTR_FORK || !(iflags & BMV_IF_DELALLOC))) {
5598 error = 0;
5599 goto out_free_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005600 }
5601
5602 nexleft = nex;
5603
5604 do {
5605 nmap = (nexleft > subnex) ? subnex : nexleft;
Dave Chinner5c8ed202011-09-18 20:40:45 +00005606 error = xfs_bmapi_read(ip, XFS_BB_TO_FSBT(mp, bmv->bmv_offset),
5607 XFS_BB_TO_FSB(mp, bmv->bmv_length),
5608 map, &nmap, bmapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609 if (error)
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005610 goto out_free_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611 ASSERT(nmap <= subnex);
5612
5613 for (i = 0; i < nmap && nexleft && bmv->bmv_length; i++) {
Christoph Hellwig6321e3e2009-02-24 08:39:02 -05005614 out[cur_ext].bmv_oflags = 0;
Eric Sandeen5af317c2008-11-28 14:23:35 +11005615 if (map[i].br_state == XFS_EXT_UNWRITTEN)
Christoph Hellwig6321e3e2009-02-24 08:39:02 -05005616 out[cur_ext].bmv_oflags |= BMV_OF_PREALLOC;
Eric Sandeen5af317c2008-11-28 14:23:35 +11005617 else if (map[i].br_startblock == DELAYSTARTBLOCK)
Christoph Hellwig6321e3e2009-02-24 08:39:02 -05005618 out[cur_ext].bmv_oflags |= BMV_OF_DELALLOC;
5619 out[cur_ext].bmv_offset =
5620 XFS_FSB_TO_BB(mp, map[i].br_startoff);
5621 out[cur_ext].bmv_length =
5622 XFS_FSB_TO_BB(mp, map[i].br_blockcount);
5623 out[cur_ext].bmv_unused1 = 0;
5624 out[cur_ext].bmv_unused2 = 0;
Eric Sandeen5af317c2008-11-28 14:23:35 +11005625 ASSERT(((iflags & BMV_IF_DELALLOC) != 0) ||
5626 (map[i].br_startblock != DELAYSTARTBLOCK));
Yingping Lu9af0a702005-11-02 15:09:54 +11005627 if (map[i].br_startblock == HOLESTARTBLOCK &&
Vlad Apostolov3bacbcd2007-08-16 15:20:25 +10005628 whichfork == XFS_ATTR_FORK) {
5629 /* came to the end of attribute fork */
Christoph Hellwig6321e3e2009-02-24 08:39:02 -05005630 out[cur_ext].bmv_oflags |= BMV_OF_LAST;
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005631 goto out_free_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005632 }
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005633
Christoph Hellwig6321e3e2009-02-24 08:39:02 -05005634 if (!xfs_getbmapx_fix_eof_hole(ip, &out[cur_ext],
5635 prealloced, bmvend,
5636 map[i].br_startblock))
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005637 goto out_free_map;
5638
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005639 bmv->bmv_offset =
Christoph Hellwig6321e3e2009-02-24 08:39:02 -05005640 out[cur_ext].bmv_offset +
5641 out[cur_ext].bmv_length;
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005642 bmv->bmv_length =
5643 max_t(__int64_t, 0, bmvend - bmv->bmv_offset);
Tao Ma9af25462010-08-30 02:44:03 +00005644
5645 /*
5646 * In case we don't want to return the hole,
5647 * don't increase cur_ext so that we can reuse
5648 * it in the next loop.
5649 */
5650 if ((iflags & BMV_IF_NO_HOLES) &&
5651 map[i].br_startblock == HOLESTARTBLOCK) {
5652 memset(&out[cur_ext], 0, sizeof(out[cur_ext]));
5653 continue;
5654 }
5655
5656 nexleft--;
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005657 bmv->bmv_entries++;
Christoph Hellwig6321e3e2009-02-24 08:39:02 -05005658 cur_ext++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005659 }
5660 } while (nmap && nexleft && bmv->bmv_length);
5661
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005662 out_free_map:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10005663 kmem_free(map);
Christoph Hellwig4be4a002009-04-29 10:50:48 -04005664 out_unlock_ilock:
5665 xfs_iunlock_map_shared(ip, lock);
5666 out_unlock_iolock:
5667 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwig6321e3e2009-02-24 08:39:02 -05005668
5669 for (i = 0; i < cur_ext; i++) {
5670 int full = 0; /* user array is full */
5671
5672 /* format results & advance arg */
5673 error = formatter(&arg, &out[i], &full);
5674 if (error || full)
5675 break;
5676 }
5677
Felix Blyakher7747a0b2009-06-11 17:07:28 -05005678 kmem_free(out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679 return error;
5680}
5681
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682#ifdef DEBUG
Christoph Hellwigecd7f082010-07-22 12:52:08 +10005683STATIC struct xfs_buf *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005684xfs_bmap_get_bp(
Christoph Hellwigecd7f082010-07-22 12:52:08 +10005685 struct xfs_btree_cur *cur,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005686 xfs_fsblock_t bno)
5687{
Christoph Hellwigecd7f082010-07-22 12:52:08 +10005688 struct xfs_log_item_desc *lidp;
5689 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690
5691 if (!cur)
Christoph Hellwigecd7f082010-07-22 12:52:08 +10005692 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005693
Christoph Hellwigecd7f082010-07-22 12:52:08 +10005694 for (i = 0; i < XFS_BTREE_MAXLEVELS; i++) {
5695 if (!cur->bc_bufs[i])
5696 break;
5697 if (XFS_BUF_ADDR(cur->bc_bufs[i]) == bno)
5698 return cur->bc_bufs[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700
Christoph Hellwigecd7f082010-07-22 12:52:08 +10005701 /* Chase down all the log items to see if the bp is there */
5702 list_for_each_entry(lidp, &cur->bc_tp->t_items, lid_trans) {
Christoph Hellwige98c4142010-06-23 18:11:15 +10005703 struct xfs_buf_log_item *bip;
Christoph Hellwigecd7f082010-07-22 12:52:08 +10005704 bip = (struct xfs_buf_log_item *)lidp->lid_item;
5705 if (bip->bli_item.li_type == XFS_LI_BUF &&
5706 XFS_BUF_ADDR(bip->bli_buf) == bno)
5707 return bip->bli_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708 }
Christoph Hellwige98c4142010-06-23 18:11:15 +10005709
Christoph Hellwigecd7f082010-07-22 12:52:08 +10005710 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005711}
5712
Hannes Eder3180e662009-03-04 19:34:10 +01005713STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07005714xfs_check_block(
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11005715 struct xfs_btree_block *block,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716 xfs_mount_t *mp,
5717 int root,
5718 short sz)
5719{
5720 int i, j, dmxr;
Christoph Hellwig576039c2006-09-28 10:58:06 +10005721 __be64 *pp, *thispa; /* pointer to block address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005722 xfs_bmbt_key_t *prevp, *keyp;
5723
Christoph Hellwig16259e72005-11-02 15:11:25 +11005724 ASSERT(be16_to_cpu(block->bb_level) > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005725
5726 prevp = NULL;
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11005727 for( i = 1; i <= xfs_btree_get_numrecs(block); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005728 dmxr = mp->m_bmap_dmxr[0];
Christoph Hellwig136341b2008-10-30 17:11:40 +11005729 keyp = XFS_BMBT_KEY_ADDR(mp, block, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730
5731 if (prevp) {
Christoph Hellwig4a26e662008-10-30 16:58:32 +11005732 ASSERT(be64_to_cpu(prevp->br_startoff) <
5733 be64_to_cpu(keyp->br_startoff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005734 }
5735 prevp = keyp;
5736
5737 /*
5738 * Compare the block numbers to see if there are dups.
5739 */
Christoph Hellwig136341b2008-10-30 17:11:40 +11005740 if (root)
Christoph Hellwig60197e82008-10-30 17:11:19 +11005741 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, i, sz);
Christoph Hellwig136341b2008-10-30 17:11:40 +11005742 else
5743 pp = XFS_BMBT_PTR_ADDR(mp, block, i, dmxr);
5744
Christoph Hellwig16259e72005-11-02 15:11:25 +11005745 for (j = i+1; j <= be16_to_cpu(block->bb_numrecs); j++) {
Christoph Hellwig136341b2008-10-30 17:11:40 +11005746 if (root)
Christoph Hellwig60197e82008-10-30 17:11:19 +11005747 thispa = XFS_BMAP_BROOT_PTR_ADDR(mp, block, j, sz);
Christoph Hellwig136341b2008-10-30 17:11:40 +11005748 else
5749 thispa = XFS_BMBT_PTR_ADDR(mp, block, j, dmxr);
Christoph Hellwig576039c2006-09-28 10:58:06 +10005750 if (*thispa == *pp) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11005751 xfs_warn(mp, "%s: thispa(%d) == pp(%d) %Ld",
Harvey Harrison34a622b2008-04-10 12:19:21 +10005752 __func__, j, i,
Christoph Hellwig576039c2006-09-28 10:58:06 +10005753 (unsigned long long)be64_to_cpu(*thispa));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754 panic("%s: ptrs are equal in node\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +10005755 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005756 }
5757 }
5758 }
5759}
5760
5761/*
5762 * Check that the extents for the inode ip are in the right order in all
5763 * btree leaves.
5764 */
5765
5766STATIC void
5767xfs_bmap_check_leaf_extents(
5768 xfs_btree_cur_t *cur, /* btree cursor or null */
5769 xfs_inode_t *ip, /* incore inode pointer */
5770 int whichfork) /* data or attr fork */
5771{
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11005772 struct xfs_btree_block *block; /* current btree block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005773 xfs_fsblock_t bno; /* block # of "block" */
5774 xfs_buf_t *bp; /* buffer for "block" */
5775 int error; /* error return value */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005776 xfs_extnum_t i=0, j; /* index into the extents list */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005777 xfs_ifork_t *ifp; /* fork structure */
5778 int level; /* btree level, for checking */
5779 xfs_mount_t *mp; /* file system mount structure */
Christoph Hellwig576039c2006-09-28 10:58:06 +10005780 __be64 *pp; /* pointer to block address */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005781 xfs_bmbt_rec_t *ep; /* pointer to current extent */
Lachlan McIlroy2abdb8c2008-03-27 18:01:14 +11005782 xfs_bmbt_rec_t last = {0, 0}; /* last extent in prev block */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005783 xfs_bmbt_rec_t *nextp; /* pointer to next extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005784 int bp_release = 0;
5785
5786 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE) {
5787 return;
5788 }
5789
5790 bno = NULLFSBLOCK;
5791 mp = ip->i_mount;
5792 ifp = XFS_IFORK_PTR(ip, whichfork);
5793 block = ifp->if_broot;
5794 /*
5795 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
5796 */
Christoph Hellwig16259e72005-11-02 15:11:25 +11005797 level = be16_to_cpu(block->bb_level);
5798 ASSERT(level > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005799 xfs_check_block(block, mp, 1, ifp->if_broot_bytes);
Christoph Hellwig60197e82008-10-30 17:11:19 +11005800 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
Christoph Hellwig576039c2006-09-28 10:58:06 +10005801 bno = be64_to_cpu(*pp);
5802
5803 ASSERT(bno != NULLDFSBNO);
5804 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
5805 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
5806
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807 /*
5808 * Go down the tree until leaf level is reached, following the first
5809 * pointer (leftmost) at each level.
5810 */
5811 while (level-- > 0) {
5812 /* See if buf is in cur first */
5813 bp = xfs_bmap_get_bp(cur, XFS_FSB_TO_DADDR(mp, bno));
5814 if (bp) {
5815 bp_release = 0;
5816 } else {
5817 bp_release = 1;
5818 }
5819 if (!bp && (error = xfs_btree_read_bufl(mp, NULL, bno, 0, &bp,
5820 XFS_BMAP_BTREE_REF)))
5821 goto error_norelse;
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11005822 block = XFS_BUF_TO_BLOCK(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823 XFS_WANT_CORRUPTED_GOTO(
Christoph Hellwig4e8938f2008-10-30 17:14:43 +11005824 xfs_bmap_sanity_check(mp, bp, level),
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825 error0);
5826 if (level == 0)
5827 break;
5828
5829 /*
5830 * Check this block for basic sanity (increasing keys and
5831 * no duplicate blocks).
5832 */
5833
5834 xfs_check_block(block, mp, 0, 0);
Christoph Hellwig136341b2008-10-30 17:11:40 +11005835 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]);
Christoph Hellwig576039c2006-09-28 10:58:06 +10005836 bno = be64_to_cpu(*pp);
5837 XFS_WANT_CORRUPTED_GOTO(XFS_FSB_SANITY_CHECK(mp, bno), error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838 if (bp_release) {
5839 bp_release = 0;
5840 xfs_trans_brelse(NULL, bp);
5841 }
5842 }
5843
5844 /*
5845 * Here with bp and block set to the leftmost leaf node in the tree.
5846 */
5847 i = 0;
5848
5849 /*
5850 * Loop over all leaf nodes checking that all extents are in the right order.
5851 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005852 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853 xfs_fsblock_t nextbno;
5854 xfs_extnum_t num_recs;
5855
5856
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11005857 num_recs = xfs_btree_get_numrecs(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858
5859 /*
5860 * Read-ahead the next leaf block, if any.
5861 */
5862
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11005863 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864
5865 /*
5866 * Check all the extents to make sure they are OK.
5867 * If we had a previous block, the last entry should
5868 * conform with the first entry in this one.
5869 */
5870
Christoph Hellwig136341b2008-10-30 17:11:40 +11005871 ep = XFS_BMBT_REC_ADDR(mp, block, 1);
Lachlan McIlroy2abdb8c2008-03-27 18:01:14 +11005872 if (i) {
Christoph Hellwig4a26e662008-10-30 16:58:32 +11005873 ASSERT(xfs_bmbt_disk_get_startoff(&last) +
5874 xfs_bmbt_disk_get_blockcount(&last) <=
5875 xfs_bmbt_disk_get_startoff(ep));
Lachlan McIlroy2abdb8c2008-03-27 18:01:14 +11005876 }
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005877 for (j = 1; j < num_recs; j++) {
Christoph Hellwig136341b2008-10-30 17:11:40 +11005878 nextp = XFS_BMBT_REC_ADDR(mp, block, j + 1);
Christoph Hellwig4a26e662008-10-30 16:58:32 +11005879 ASSERT(xfs_bmbt_disk_get_startoff(ep) +
5880 xfs_bmbt_disk_get_blockcount(ep) <=
5881 xfs_bmbt_disk_get_startoff(nextp));
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005882 ep = nextp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005884
Lachlan McIlroy2abdb8c2008-03-27 18:01:14 +11005885 last = *ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886 i += num_recs;
5887 if (bp_release) {
5888 bp_release = 0;
5889 xfs_trans_brelse(NULL, bp);
5890 }
5891 bno = nextbno;
5892 /*
5893 * If we've reached the end, stop.
5894 */
5895 if (bno == NULLFSBLOCK)
5896 break;
5897
5898 bp = xfs_bmap_get_bp(cur, XFS_FSB_TO_DADDR(mp, bno));
5899 if (bp) {
5900 bp_release = 0;
5901 } else {
5902 bp_release = 1;
5903 }
5904 if (!bp && (error = xfs_btree_read_bufl(mp, NULL, bno, 0, &bp,
5905 XFS_BMAP_BTREE_REF)))
5906 goto error_norelse;
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11005907 block = XFS_BUF_TO_BLOCK(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005908 }
5909 if (bp_release) {
5910 bp_release = 0;
5911 xfs_trans_brelse(NULL, bp);
5912 }
5913 return;
5914
5915error0:
Dave Chinner0b932cc2011-03-07 10:08:35 +11005916 xfs_warn(mp, "%s: at error0", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917 if (bp_release)
5918 xfs_trans_brelse(NULL, bp);
5919error_norelse:
Dave Chinner0b932cc2011-03-07 10:08:35 +11005920 xfs_warn(mp, "%s: BAD after btree leaves for %d extents",
Harvey Harrison34a622b2008-04-10 12:19:21 +10005921 __func__, i);
5922 panic("%s: CORRUPTED BTREE OR SOMETHING", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923 return;
5924}
5925#endif
5926
5927/*
5928 * Count fsblocks of the given fork.
5929 */
5930int /* error */
5931xfs_bmap_count_blocks(
5932 xfs_trans_t *tp, /* transaction pointer */
5933 xfs_inode_t *ip, /* incore inode */
5934 int whichfork, /* data or attr fork */
5935 int *count) /* out: count of blocks */
5936{
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11005937 struct xfs_btree_block *block; /* current btree block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938 xfs_fsblock_t bno; /* block # of "block" */
5939 xfs_ifork_t *ifp; /* fork structure */
5940 int level; /* btree level, for checking */
5941 xfs_mount_t *mp; /* file system mount structure */
Christoph Hellwig576039c2006-09-28 10:58:06 +10005942 __be64 *pp; /* pointer to block address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005943
5944 bno = NULLFSBLOCK;
5945 mp = ip->i_mount;
5946 ifp = XFS_IFORK_PTR(ip, whichfork);
5947 if ( XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS ) {
Ruben Porrasc94312d2008-08-13 16:52:25 +10005948 xfs_bmap_count_leaves(ifp, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005949 ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t),
Ruben Porrasc94312d2008-08-13 16:52:25 +10005950 count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005951 return 0;
5952 }
5953
5954 /*
5955 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
5956 */
5957 block = ifp->if_broot;
Christoph Hellwig16259e72005-11-02 15:11:25 +11005958 level = be16_to_cpu(block->bb_level);
5959 ASSERT(level > 0);
Christoph Hellwig60197e82008-10-30 17:11:19 +11005960 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
Christoph Hellwig576039c2006-09-28 10:58:06 +10005961 bno = be64_to_cpu(*pp);
5962 ASSERT(bno != NULLDFSBNO);
5963 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
5964 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005966 if (unlikely(xfs_bmap_count_tree(mp, tp, ifp, bno, level, count) < 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967 XFS_ERROR_REPORT("xfs_bmap_count_blocks(2)", XFS_ERRLEVEL_LOW,
5968 mp);
5969 return XFS_ERROR(EFSCORRUPTED);
5970 }
5971
5972 return 0;
5973}
5974
5975/*
5976 * Recursively walks each level of a btree
5977 * to count total fsblocks is use.
5978 */
David Chinnera8272ce2007-11-23 16:28:09 +11005979STATIC int /* error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005980xfs_bmap_count_tree(
5981 xfs_mount_t *mp, /* file system mount point */
5982 xfs_trans_t *tp, /* transaction pointer */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005983 xfs_ifork_t *ifp, /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984 xfs_fsblock_t blockno, /* file system block number */
5985 int levelin, /* level in btree */
5986 int *count) /* Count of blocks */
5987{
5988 int error;
5989 xfs_buf_t *bp, *nbp;
5990 int level = levelin;
Christoph Hellwig576039c2006-09-28 10:58:06 +10005991 __be64 *pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005992 xfs_fsblock_t bno = blockno;
5993 xfs_fsblock_t nextbno;
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11005994 struct xfs_btree_block *block, *nextblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005995 int numrecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996
5997 if ((error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp, XFS_BMAP_BTREE_REF)))
5998 return error;
5999 *count += 1;
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11006000 block = XFS_BUF_TO_BLOCK(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006001
6002 if (--level) {
Malcolm Parsons9da096f2009-03-29 09:55:42 +02006003 /* Not at node above leaves, count this level of nodes */
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11006004 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006005 while (nextbno != NULLFSBLOCK) {
6006 if ((error = xfs_btree_read_bufl(mp, tp, nextbno,
6007 0, &nbp, XFS_BMAP_BTREE_REF)))
6008 return error;
6009 *count += 1;
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11006010 nextblock = XFS_BUF_TO_BLOCK(nbp);
6011 nextbno = be64_to_cpu(nextblock->bb_u.l.bb_rightsib);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006012 xfs_trans_brelse(tp, nbp);
6013 }
6014
6015 /* Dive to the next level */
Christoph Hellwig136341b2008-10-30 17:11:40 +11006016 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]);
Christoph Hellwig576039c2006-09-28 10:58:06 +10006017 bno = be64_to_cpu(*pp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006018 if (unlikely((error =
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006019 xfs_bmap_count_tree(mp, tp, ifp, bno, level, count)) < 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020 xfs_trans_brelse(tp, bp);
6021 XFS_ERROR_REPORT("xfs_bmap_count_tree(1)",
6022 XFS_ERRLEVEL_LOW, mp);
6023 return XFS_ERROR(EFSCORRUPTED);
6024 }
6025 xfs_trans_brelse(tp, bp);
6026 } else {
6027 /* count all level 1 nodes and their leaves */
6028 for (;;) {
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11006029 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
Christoph Hellwig16259e72005-11-02 15:11:25 +11006030 numrecs = be16_to_cpu(block->bb_numrecs);
Christoph Hellwig136341b2008-10-30 17:11:40 +11006031 xfs_bmap_disk_count_leaves(mp, block, numrecs, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006032 xfs_trans_brelse(tp, bp);
6033 if (nextbno == NULLFSBLOCK)
6034 break;
6035 bno = nextbno;
6036 if ((error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
6037 XFS_BMAP_BTREE_REF)))
6038 return error;
6039 *count += 1;
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11006040 block = XFS_BUF_TO_BLOCK(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041 }
6042 }
6043 return 0;
6044}
6045
6046/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006047 * Count leaf blocks given a range of extent records.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048 */
Ruben Porrasc94312d2008-08-13 16:52:25 +10006049STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07006050xfs_bmap_count_leaves(
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006051 xfs_ifork_t *ifp,
6052 xfs_extnum_t idx,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053 int numrecs,
6054 int *count)
6055{
6056 int b;
6057
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006058 for (b = 0; b < numrecs; b++) {
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10006059 xfs_bmbt_rec_host_t *frp = xfs_iext_get_ext(ifp, idx + b);
Yingping Lu91e11082005-11-02 15:10:24 +11006060 *count += xfs_bmbt_get_blockcount(frp);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006061 }
Yingping Lu91e11082005-11-02 15:10:24 +11006062}
6063
6064/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006065 * Count leaf blocks given a range of extent records originally
6066 * in btree format.
Yingping Lu91e11082005-11-02 15:10:24 +11006067 */
Ruben Porrasc94312d2008-08-13 16:52:25 +10006068STATIC void
Yingping Lu91e11082005-11-02 15:10:24 +11006069xfs_bmap_disk_count_leaves(
Christoph Hellwig136341b2008-10-30 17:11:40 +11006070 struct xfs_mount *mp,
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11006071 struct xfs_btree_block *block,
Yingping Lu91e11082005-11-02 15:10:24 +11006072 int numrecs,
6073 int *count)
6074{
6075 int b;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006076 xfs_bmbt_rec_t *frp;
Yingping Lu91e11082005-11-02 15:10:24 +11006077
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006078 for (b = 1; b <= numrecs; b++) {
Christoph Hellwig136341b2008-10-30 17:11:40 +11006079 frp = XFS_BMBT_REC_ADDR(mp, block, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080 *count += xfs_bmbt_disk_get_blockcount(frp);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006082}
Dave Chinnerc726de42010-11-30 15:14:39 +11006083
6084/*
6085 * dead simple method of punching delalyed allocation blocks from a range in
6086 * the inode. Walks a block at a time so will be slow, but is only executed in
6087 * rare error cases so the overhead is not critical. This will alays punch out
6088 * both the start and end blocks, even if the ranges only partially overlap
6089 * them, so it is up to the caller to ensure that partial blocks are not
6090 * passed in.
6091 */
6092int
6093xfs_bmap_punch_delalloc_range(
6094 struct xfs_inode *ip,
6095 xfs_fileoff_t start_fsb,
6096 xfs_fileoff_t length)
6097{
6098 xfs_fileoff_t remaining = length;
6099 int error = 0;
6100
6101 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
6102
6103 do {
6104 int done;
6105 xfs_bmbt_irec_t imap;
6106 int nimaps = 1;
6107 xfs_fsblock_t firstblock;
6108 xfs_bmap_free_t flist;
6109
6110 /*
6111 * Map the range first and check that it is a delalloc extent
6112 * before trying to unmap the range. Otherwise we will be
6113 * trying to remove a real extent (which requires a
6114 * transaction) or a hole, which is probably a bad idea...
6115 */
Dave Chinner5c8ed202011-09-18 20:40:45 +00006116 error = xfs_bmapi_read(ip, start_fsb, 1, &imap, &nimaps,
6117 XFS_BMAPI_ENTIRE);
Dave Chinnerc726de42010-11-30 15:14:39 +11006118
6119 if (error) {
6120 /* something screwed, just bail */
6121 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
Dave Chinner53487782011-03-07 10:05:35 +11006122 xfs_alert(ip->i_mount,
Dave Chinnerc726de42010-11-30 15:14:39 +11006123 "Failed delalloc mapping lookup ino %lld fsb %lld.",
6124 ip->i_ino, start_fsb);
6125 }
6126 break;
6127 }
6128 if (!nimaps) {
6129 /* nothing there */
6130 goto next_block;
6131 }
6132 if (imap.br_startblock != DELAYSTARTBLOCK) {
6133 /* been converted, ignore */
6134 goto next_block;
6135 }
6136 WARN_ON(imap.br_blockcount == 0);
6137
6138 /*
6139 * Note: while we initialise the firstblock/flist pair, they
6140 * should never be used because blocks should never be
6141 * allocated or freed for a delalloc extent and hence we need
6142 * don't cancel or finish them after the xfs_bunmapi() call.
6143 */
6144 xfs_bmap_init(&flist, &firstblock);
6145 error = xfs_bunmapi(NULL, ip, start_fsb, 1, 0, 1, &firstblock,
6146 &flist, &done);
6147 if (error)
6148 break;
6149
6150 ASSERT(!flist.xbf_count && !flist.xbf_first);
6151next_block:
6152 start_fsb++;
6153 remaining--;
6154 } while(remaining > 0);
6155
6156 return error;
6157}