blob: b02452b1145687884c8a48510bb56d09b56b8342 [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_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110036#include "xfs_btree.h"
37#include "xfs_dmapi.h"
38#include "xfs_mount.h"
39#include "xfs_ialloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "xfs_itable.h"
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100041#include "xfs_dir2_data.h"
42#include "xfs_dir2_leaf.h"
43#include "xfs_dir2_block.h"
Nathan Scotta844f452005-11-02 14:38:42 +110044#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "xfs_extfree_item.h"
46#include "xfs_alloc.h"
47#include "xfs_bmap.h"
48#include "xfs_rtalloc.h"
49#include "xfs_error.h"
Nathan Scottd8cc8902005-11-02 10:34:53 +110050#include "xfs_attr_leaf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include "xfs_rw.h"
52#include "xfs_quota.h"
53#include "xfs_trans_space.h"
54#include "xfs_buf_item.h"
David Chinner2a82b8b2007-07-11 11:09:12 +100055#include "xfs_filestream.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100056#include "xfs_vnodeops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58
59#ifdef DEBUG
60STATIC void
61xfs_bmap_check_leaf_extents(xfs_btree_cur_t *cur, xfs_inode_t *ip, int whichfork);
62#endif
63
64kmem_zone_t *xfs_bmap_free_item_zone;
65
66/*
67 * Prototypes for internal bmap routines.
68 */
69
70
71/*
72 * Called from xfs_bmap_add_attrfork to handle extents format files.
73 */
74STATIC int /* error */
75xfs_bmap_add_attrfork_extents(
76 xfs_trans_t *tp, /* transaction pointer */
77 xfs_inode_t *ip, /* incore inode pointer */
78 xfs_fsblock_t *firstblock, /* first block allocated */
79 xfs_bmap_free_t *flist, /* blocks to free at commit */
80 int *flags); /* inode logging flags */
81
82/*
83 * Called from xfs_bmap_add_attrfork to handle local format files.
84 */
85STATIC int /* error */
86xfs_bmap_add_attrfork_local(
87 xfs_trans_t *tp, /* transaction pointer */
88 xfs_inode_t *ip, /* incore inode pointer */
89 xfs_fsblock_t *firstblock, /* first block allocated */
90 xfs_bmap_free_t *flist, /* blocks to free at commit */
91 int *flags); /* inode logging flags */
92
93/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +110094 * Called by xfs_bmapi to update file extent records and the btree
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 * after allocating space (or doing a delayed allocation).
96 */
97STATIC int /* error */
98xfs_bmap_add_extent(
99 xfs_inode_t *ip, /* incore inode pointer */
100 xfs_extnum_t idx, /* extent number to update/insert */
101 xfs_btree_cur_t **curp, /* if *curp is null, not a btree */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100102 xfs_bmbt_irec_t *new, /* new data to add to file extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 xfs_fsblock_t *first, /* pointer to firstblock variable */
104 xfs_bmap_free_t *flist, /* list of extents to be freed */
105 int *logflagsp, /* inode logging flags */
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000106 xfs_extdelta_t *delta, /* Change made to incore extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 int whichfork, /* data or attr fork */
108 int rsvd); /* OK to allocate reserved blocks */
109
110/*
111 * Called by xfs_bmap_add_extent to handle cases converting a delayed
112 * allocation to a real allocation.
113 */
114STATIC int /* error */
115xfs_bmap_add_extent_delay_real(
116 xfs_inode_t *ip, /* incore inode pointer */
117 xfs_extnum_t idx, /* extent number to update/insert */
118 xfs_btree_cur_t **curp, /* if *curp is null, not a btree */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100119 xfs_bmbt_irec_t *new, /* new data to add to file extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 xfs_filblks_t *dnew, /* new delayed-alloc indirect blocks */
121 xfs_fsblock_t *first, /* pointer to firstblock variable */
122 xfs_bmap_free_t *flist, /* list of extents to be freed */
123 int *logflagsp, /* inode logging flags */
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000124 xfs_extdelta_t *delta, /* Change made to incore extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 int rsvd); /* OK to allocate reserved blocks */
126
127/*
128 * Called by xfs_bmap_add_extent to handle cases converting a hole
129 * to a delayed allocation.
130 */
131STATIC int /* error */
132xfs_bmap_add_extent_hole_delay(
133 xfs_inode_t *ip, /* incore inode pointer */
134 xfs_extnum_t idx, /* extent number to update/insert */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100135 xfs_bmbt_irec_t *new, /* new data to add to file extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 int *logflagsp,/* inode logging flags */
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000137 xfs_extdelta_t *delta, /* Change made to incore extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 int rsvd); /* OK to allocate reserved blocks */
139
140/*
141 * Called by xfs_bmap_add_extent to handle cases converting a hole
142 * to a real allocation.
143 */
144STATIC int /* error */
145xfs_bmap_add_extent_hole_real(
146 xfs_inode_t *ip, /* incore inode pointer */
147 xfs_extnum_t idx, /* extent number to update/insert */
148 xfs_btree_cur_t *cur, /* if null, not a btree */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100149 xfs_bmbt_irec_t *new, /* new data to add to file extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 int *logflagsp, /* inode logging flags */
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000151 xfs_extdelta_t *delta, /* Change made to incore extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 int whichfork); /* data or attr fork */
153
154/*
155 * Called by xfs_bmap_add_extent to handle cases converting an unwritten
156 * allocation to a real allocation or vice versa.
157 */
158STATIC int /* error */
159xfs_bmap_add_extent_unwritten_real(
160 xfs_inode_t *ip, /* incore inode pointer */
161 xfs_extnum_t idx, /* extent number to update/insert */
162 xfs_btree_cur_t **curp, /* if *curp is null, not a btree */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100163 xfs_bmbt_irec_t *new, /* new data to add to file extents */
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000164 int *logflagsp, /* inode logging flags */
165 xfs_extdelta_t *delta); /* Change made to incore extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167/*
168 * xfs_bmap_alloc is called by xfs_bmapi to allocate an extent for a file.
169 * It figures out where to ask the underlying allocator to put the new extent.
170 */
171STATIC int /* error */
172xfs_bmap_alloc(
173 xfs_bmalloca_t *ap); /* bmap alloc argument struct */
174
175/*
176 * Transform a btree format file with only one leaf node, where the
177 * extents list will fit in the inode, into an extents format file.
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100178 * Since the file extents are already in-core, all we have to do is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 * give up the space for the btree root and pitch the leaf block.
180 */
181STATIC int /* error */
182xfs_bmap_btree_to_extents(
183 xfs_trans_t *tp, /* transaction pointer */
184 xfs_inode_t *ip, /* incore inode pointer */
185 xfs_btree_cur_t *cur, /* btree cursor */
186 int *logflagsp, /* inode logging flags */
187 int whichfork); /* data or attr fork */
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100190 * Called by xfs_bmapi to update file extent records and the btree
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 * after removing space (or undoing a delayed allocation).
192 */
193STATIC int /* error */
194xfs_bmap_del_extent(
195 xfs_inode_t *ip, /* incore inode pointer */
196 xfs_trans_t *tp, /* current trans pointer */
197 xfs_extnum_t idx, /* extent number to update/insert */
198 xfs_bmap_free_t *flist, /* list of extents to be freed */
199 xfs_btree_cur_t *cur, /* if null, not a btree */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100200 xfs_bmbt_irec_t *new, /* new data to add to file extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 int *logflagsp,/* inode logging flags */
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000202 xfs_extdelta_t *delta, /* Change made to incore extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 int whichfork, /* data or attr fork */
204 int rsvd); /* OK to allocate reserved blocks */
205
206/*
207 * Remove the entry "free" from the free item list. Prev points to the
208 * previous entry, unless "free" is the head of the list.
209 */
210STATIC void
211xfs_bmap_del_free(
212 xfs_bmap_free_t *flist, /* free item list header */
213 xfs_bmap_free_item_t *prev, /* previous item on list, if any */
214 xfs_bmap_free_item_t *free); /* list item to be freed */
215
216/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 * Convert an extents-format file into a btree-format file.
218 * The new file will have a root block (in the inode) and a single child block.
219 */
220STATIC int /* error */
221xfs_bmap_extents_to_btree(
222 xfs_trans_t *tp, /* transaction pointer */
223 xfs_inode_t *ip, /* incore inode pointer */
224 xfs_fsblock_t *firstblock, /* first-block-allocated */
225 xfs_bmap_free_t *flist, /* blocks freed in xaction */
226 xfs_btree_cur_t **curp, /* cursor returned to caller */
227 int wasdel, /* converting a delayed alloc */
228 int *logflagsp, /* inode logging flags */
229 int whichfork); /* data or attr fork */
230
231/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 * Convert a local file to an extents file.
233 * This code is sort of bogus, since the file data needs to get
234 * logged so it won't be lost. The bmap-level manipulations are ok, though.
235 */
236STATIC int /* error */
237xfs_bmap_local_to_extents(
238 xfs_trans_t *tp, /* transaction pointer */
239 xfs_inode_t *ip, /* incore inode pointer */
240 xfs_fsblock_t *firstblock, /* first block allocated in xaction */
241 xfs_extlen_t total, /* total blocks needed by transaction */
242 int *logflagsp, /* inode logging flags */
243 int whichfork); /* data or attr fork */
244
245/*
246 * Search the extents list for the inode, for the extent containing bno.
247 * If bno lies in a hole, point to the next entry. If bno lies past eof,
248 * *eofp will be set, and *prevp will contain the last entry (null if none).
249 * Else, *lastxp will be set to the index of the found
250 * entry; *gotp will contain the entry.
251 */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000252STATIC xfs_bmbt_rec_host_t * /* pointer to found extent entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253xfs_bmap_search_extents(
254 xfs_inode_t *ip, /* incore inode pointer */
255 xfs_fileoff_t bno, /* block number searched for */
256 int whichfork, /* data or attr fork */
257 int *eofp, /* out: end of file found */
258 xfs_extnum_t *lastxp, /* out: last extent index */
259 xfs_bmbt_irec_t *gotp, /* out: extent entry found */
260 xfs_bmbt_irec_t *prevp); /* out: previous extent entry found */
261
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000262/*
263 * Check the last inode extent to determine whether this allocation will result
264 * in blocks being allocated at the end of the file. When we allocate new data
265 * blocks at the end of the file which do not start at the previous data block,
266 * we will try to align the new blocks at stripe unit boundaries.
267 */
268STATIC int /* error */
269xfs_bmap_isaeof(
270 xfs_inode_t *ip, /* incore inode pointer */
271 xfs_fileoff_t off, /* file offset in fsblocks */
272 int whichfork, /* data or attribute fork */
273 char *aeof); /* return value */
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275#ifdef XFS_BMAP_TRACE
276/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100277 * Add bmap trace entry prior to a call to xfs_iext_remove.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 */
279STATIC void
280xfs_bmap_trace_delete(
Eric Sandeen3a59c942007-07-11 11:09:47 +1000281 const char *fname, /* function name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 char *desc, /* operation description */
283 xfs_inode_t *ip, /* incore inode pointer */
284 xfs_extnum_t idx, /* index of entry(entries) deleted */
285 xfs_extnum_t cnt, /* count of entries deleted, 1 or 2 */
286 int whichfork); /* data or attr fork */
287
288/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100289 * Add bmap trace entry prior to a call to xfs_iext_insert, or
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 * reading in the extents list from the disk (in the btree).
291 */
292STATIC void
293xfs_bmap_trace_insert(
Eric Sandeen3a59c942007-07-11 11:09:47 +1000294 const char *fname, /* function name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 char *desc, /* operation description */
296 xfs_inode_t *ip, /* incore inode pointer */
297 xfs_extnum_t idx, /* index of entry(entries) inserted */
298 xfs_extnum_t cnt, /* count of entries inserted, 1 or 2 */
299 xfs_bmbt_irec_t *r1, /* inserted record 1 */
300 xfs_bmbt_irec_t *r2, /* inserted record 2 or null */
301 int whichfork); /* data or attr fork */
302
303/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100304 * Add bmap trace entry after updating an extent record in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 */
306STATIC void
307xfs_bmap_trace_post_update(
Eric Sandeen3a59c942007-07-11 11:09:47 +1000308 const char *fname, /* function name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 char *desc, /* operation description */
310 xfs_inode_t *ip, /* incore inode pointer */
311 xfs_extnum_t idx, /* index of entry updated */
312 int whichfork); /* data or attr fork */
313
314/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100315 * Add bmap trace entry prior to updating an extent record in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 */
317STATIC void
318xfs_bmap_trace_pre_update(
Eric Sandeen3a59c942007-07-11 11:09:47 +1000319 const char *fname, /* function name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 char *desc, /* operation description */
321 xfs_inode_t *ip, /* incore inode pointer */
322 xfs_extnum_t idx, /* index of entry to be updated */
323 int whichfork); /* data or attr fork */
324
Eric Sandeen3a59c942007-07-11 11:09:47 +1000325#define XFS_BMAP_TRACE_DELETE(d,ip,i,c,w) \
326 xfs_bmap_trace_delete(__FUNCTION__,d,ip,i,c,w)
327#define XFS_BMAP_TRACE_INSERT(d,ip,i,c,r1,r2,w) \
328 xfs_bmap_trace_insert(__FUNCTION__,d,ip,i,c,r1,r2,w)
329#define XFS_BMAP_TRACE_POST_UPDATE(d,ip,i,w) \
330 xfs_bmap_trace_post_update(__FUNCTION__,d,ip,i,w)
331#define XFS_BMAP_TRACE_PRE_UPDATE(d,ip,i,w) \
332 xfs_bmap_trace_pre_update(__FUNCTION__,d,ip,i,w)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333#else
Eric Sandeen3a59c942007-07-11 11:09:47 +1000334#define XFS_BMAP_TRACE_DELETE(d,ip,i,c,w)
335#define XFS_BMAP_TRACE_INSERT(d,ip,i,c,r1,r2,w)
336#define XFS_BMAP_TRACE_POST_UPDATE(d,ip,i,w)
337#define XFS_BMAP_TRACE_PRE_UPDATE(d,ip,i,w)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338#endif /* XFS_BMAP_TRACE */
339
340/*
341 * Compute the worst-case number of indirect blocks that will be used
342 * for ip's delayed extent of length "len".
343 */
344STATIC xfs_filblks_t
345xfs_bmap_worst_indlen(
346 xfs_inode_t *ip, /* incore inode pointer */
347 xfs_filblks_t len); /* delayed extent length */
348
349#ifdef DEBUG
350/*
351 * Perform various validation checks on the values being returned
352 * from xfs_bmapi().
353 */
354STATIC void
355xfs_bmap_validate_ret(
356 xfs_fileoff_t bno,
357 xfs_filblks_t len,
358 int flags,
359 xfs_bmbt_irec_t *mval,
360 int nmap,
361 int ret_nmap);
362#else
363#define xfs_bmap_validate_ret(bno,len,flags,mval,onmap,nmap)
364#endif /* DEBUG */
365
366#if defined(XFS_RW_TRACE)
367STATIC void
368xfs_bunmap_trace(
369 xfs_inode_t *ip,
370 xfs_fileoff_t bno,
371 xfs_filblks_t len,
372 int flags,
373 inst_t *ra);
374#else
375#define xfs_bunmap_trace(ip, bno, len, flags, ra)
376#endif /* XFS_RW_TRACE */
377
378STATIC int
379xfs_bmap_count_tree(
380 xfs_mount_t *mp,
381 xfs_trans_t *tp,
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100382 xfs_ifork_t *ifp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 xfs_fsblock_t blockno,
384 int levelin,
385 int *count);
386
387STATIC int
388xfs_bmap_count_leaves(
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100389 xfs_ifork_t *ifp,
390 xfs_extnum_t idx,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 int numrecs,
392 int *count);
393
Yingping Lu91e11082005-11-02 15:10:24 +1100394STATIC int
395xfs_bmap_disk_count_leaves(
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100396 xfs_extnum_t idx,
397 xfs_bmbt_block_t *block,
Yingping Lu91e11082005-11-02 15:10:24 +1100398 int numrecs,
399 int *count);
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401/*
402 * Bmap internal routines.
403 */
404
405/*
406 * Called from xfs_bmap_add_attrfork to handle btree format files.
407 */
408STATIC int /* error */
409xfs_bmap_add_attrfork_btree(
410 xfs_trans_t *tp, /* transaction pointer */
411 xfs_inode_t *ip, /* incore inode pointer */
412 xfs_fsblock_t *firstblock, /* first block allocated */
413 xfs_bmap_free_t *flist, /* blocks to free at commit */
414 int *flags) /* inode logging flags */
415{
416 xfs_btree_cur_t *cur; /* btree cursor */
417 int error; /* error return value */
418 xfs_mount_t *mp; /* file system mount struct */
419 int stat; /* newroot status */
420
421 mp = ip->i_mount;
422 if (ip->i_df.if_broot_bytes <= XFS_IFORK_DSIZE(ip))
423 *flags |= XFS_ILOG_DBROOT;
424 else {
425 cur = xfs_btree_init_cursor(mp, tp, NULL, 0, XFS_BTNUM_BMAP, ip,
426 XFS_DATA_FORK);
427 cur->bc_private.b.flist = flist;
428 cur->bc_private.b.firstblock = *firstblock;
429 if ((error = xfs_bmbt_lookup_ge(cur, 0, 0, 0, &stat)))
430 goto error0;
431 ASSERT(stat == 1); /* must be at least one entry */
432 if ((error = xfs_bmbt_newroot(cur, flags, &stat)))
433 goto error0;
434 if (stat == 0) {
435 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
436 return XFS_ERROR(ENOSPC);
437 }
438 *firstblock = cur->bc_private.b.firstblock;
439 cur->bc_private.b.allocated = 0;
440 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
441 }
442 return 0;
443error0:
444 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
445 return error;
446}
447
448/*
449 * Called from xfs_bmap_add_attrfork to handle extents format files.
450 */
451STATIC int /* error */
452xfs_bmap_add_attrfork_extents(
453 xfs_trans_t *tp, /* transaction pointer */
454 xfs_inode_t *ip, /* incore inode pointer */
455 xfs_fsblock_t *firstblock, /* first block allocated */
456 xfs_bmap_free_t *flist, /* blocks to free at commit */
457 int *flags) /* inode logging flags */
458{
459 xfs_btree_cur_t *cur; /* bmap btree cursor */
460 int error; /* error return value */
461
462 if (ip->i_d.di_nextents * sizeof(xfs_bmbt_rec_t) <= XFS_IFORK_DSIZE(ip))
463 return 0;
464 cur = NULL;
465 error = xfs_bmap_extents_to_btree(tp, ip, firstblock, flist, &cur, 0,
466 flags, XFS_DATA_FORK);
467 if (cur) {
468 cur->bc_private.b.allocated = 0;
469 xfs_btree_del_cursor(cur,
470 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
471 }
472 return error;
473}
474
475/*
476 * Called from xfs_bmap_add_attrfork to handle local format files.
477 */
478STATIC int /* error */
479xfs_bmap_add_attrfork_local(
480 xfs_trans_t *tp, /* transaction pointer */
481 xfs_inode_t *ip, /* incore inode pointer */
482 xfs_fsblock_t *firstblock, /* first block allocated */
483 xfs_bmap_free_t *flist, /* blocks to free at commit */
484 int *flags) /* inode logging flags */
485{
486 xfs_da_args_t dargs; /* args for dir/attr code */
487 int error; /* error return value */
488 xfs_mount_t *mp; /* mount structure pointer */
489
490 if (ip->i_df.if_bytes <= XFS_IFORK_DSIZE(ip))
491 return 0;
492 if ((ip->i_d.di_mode & S_IFMT) == S_IFDIR) {
493 mp = ip->i_mount;
494 memset(&dargs, 0, sizeof(dargs));
495 dargs.dp = ip;
496 dargs.firstblock = firstblock;
497 dargs.flist = flist;
498 dargs.total = mp->m_dirblkfsbs;
499 dargs.whichfork = XFS_DATA_FORK;
500 dargs.trans = tp;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000501 error = xfs_dir2_sf_to_block(&dargs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 } else
503 error = xfs_bmap_local_to_extents(tp, ip, firstblock, 1, flags,
504 XFS_DATA_FORK);
505 return error;
506}
507
508/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100509 * Called by xfs_bmapi to update file extent records and the btree
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 * after allocating space (or doing a delayed allocation).
511 */
512STATIC int /* error */
513xfs_bmap_add_extent(
514 xfs_inode_t *ip, /* incore inode pointer */
515 xfs_extnum_t idx, /* extent number to update/insert */
516 xfs_btree_cur_t **curp, /* if *curp is null, not a btree */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100517 xfs_bmbt_irec_t *new, /* new data to add to file extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 xfs_fsblock_t *first, /* pointer to firstblock variable */
519 xfs_bmap_free_t *flist, /* list of extents to be freed */
520 int *logflagsp, /* inode logging flags */
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000521 xfs_extdelta_t *delta, /* Change made to incore extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 int whichfork, /* data or attr fork */
523 int rsvd) /* OK to use reserved data blocks */
524{
525 xfs_btree_cur_t *cur; /* btree cursor or null */
526 xfs_filblks_t da_new; /* new count del alloc blocks used */
527 xfs_filblks_t da_old; /* old count del alloc blocks used */
528 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 xfs_ifork_t *ifp; /* inode fork ptr */
530 int logflags; /* returned value */
531 xfs_extnum_t nextents; /* number of extents in file now */
532
533 XFS_STATS_INC(xs_add_exlist);
534 cur = *curp;
535 ifp = XFS_IFORK_PTR(ip, whichfork);
536 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
537 ASSERT(idx <= nextents);
538 da_old = da_new = 0;
539 error = 0;
540 /*
541 * This is the first extent added to a new/empty file.
542 * Special case this one, so other routines get to assume there are
543 * already extents in the list.
544 */
545 if (nextents == 0) {
Eric Sandeen3a59c942007-07-11 11:09:47 +1000546 XFS_BMAP_TRACE_INSERT("insert empty", ip, 0, 1, new, NULL,
547 whichfork);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100548 xfs_iext_insert(ifp, 0, 1, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 ASSERT(cur == NULL);
550 ifp->if_lastex = 0;
551 if (!ISNULLSTARTBLOCK(new->br_startblock)) {
552 XFS_IFORK_NEXT_SET(ip, whichfork, 1);
553 logflags = XFS_ILOG_CORE | XFS_ILOG_FEXT(whichfork);
554 } else
555 logflags = 0;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000556 /* DELTA: single new extent */
557 if (delta) {
558 if (delta->xed_startoff > new->br_startoff)
559 delta->xed_startoff = new->br_startoff;
560 if (delta->xed_blockcount <
561 new->br_startoff + new->br_blockcount)
562 delta->xed_blockcount = new->br_startoff +
563 new->br_blockcount;
564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
566 /*
567 * Any kind of new delayed allocation goes here.
568 */
569 else if (ISNULLSTARTBLOCK(new->br_startblock)) {
570 if (cur)
571 ASSERT((cur->bc_private.b.flags &
572 XFS_BTCUR_BPRV_WASDEL) == 0);
Eric Sandeene9ed9d22007-05-08 13:48:56 +1000573 if ((error = xfs_bmap_add_extent_hole_delay(ip, idx, new,
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000574 &logflags, delta, rsvd)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 goto done;
576 }
577 /*
578 * Real allocation off the end of the file.
579 */
580 else if (idx == nextents) {
581 if (cur)
582 ASSERT((cur->bc_private.b.flags &
583 XFS_BTCUR_BPRV_WASDEL) == 0);
584 if ((error = xfs_bmap_add_extent_hole_real(ip, idx, cur, new,
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000585 &logflags, delta, whichfork)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 goto done;
587 } else {
588 xfs_bmbt_irec_t prev; /* old extent at offset idx */
589
590 /*
591 * Get the record referred to by idx.
592 */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100593 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, idx), &prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 /*
595 * If it's a real allocation record, and the new allocation ends
596 * after the start of the referred to record, then we're filling
597 * in a delayed or unwritten allocation with a real one, or
598 * converting real back to unwritten.
599 */
600 if (!ISNULLSTARTBLOCK(new->br_startblock) &&
601 new->br_startoff + new->br_blockcount > prev.br_startoff) {
602 if (prev.br_state != XFS_EXT_UNWRITTEN &&
603 ISNULLSTARTBLOCK(prev.br_startblock)) {
604 da_old = STARTBLOCKVAL(prev.br_startblock);
605 if (cur)
606 ASSERT(cur->bc_private.b.flags &
607 XFS_BTCUR_BPRV_WASDEL);
608 if ((error = xfs_bmap_add_extent_delay_real(ip,
609 idx, &cur, new, &da_new, first, flist,
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000610 &logflags, delta, rsvd)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 goto done;
612 } else if (new->br_state == XFS_EXT_NORM) {
613 ASSERT(new->br_state == XFS_EXT_NORM);
614 if ((error = xfs_bmap_add_extent_unwritten_real(
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000615 ip, idx, &cur, new, &logflags, delta)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 goto done;
617 } else {
618 ASSERT(new->br_state == XFS_EXT_UNWRITTEN);
619 if ((error = xfs_bmap_add_extent_unwritten_real(
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000620 ip, idx, &cur, new, &logflags, delta)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 goto done;
622 }
623 ASSERT(*curp == cur || *curp == NULL);
624 }
625 /*
626 * Otherwise we're filling in a hole with an allocation.
627 */
628 else {
629 if (cur)
630 ASSERT((cur->bc_private.b.flags &
631 XFS_BTCUR_BPRV_WASDEL) == 0);
632 if ((error = xfs_bmap_add_extent_hole_real(ip, idx, cur,
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000633 new, &logflags, delta, whichfork)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 goto done;
635 }
636 }
637
638 ASSERT(*curp == cur || *curp == NULL);
639 /*
640 * Convert to a btree if necessary.
641 */
642 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS &&
643 XFS_IFORK_NEXTENTS(ip, whichfork) > ifp->if_ext_max) {
644 int tmp_logflags; /* partial log flag return val */
645
646 ASSERT(cur == NULL);
647 error = xfs_bmap_extents_to_btree(ip->i_transp, ip, first,
648 flist, &cur, da_old > 0, &tmp_logflags, whichfork);
649 logflags |= tmp_logflags;
650 if (error)
651 goto done;
652 }
653 /*
654 * Adjust for changes in reserved delayed indirect blocks.
655 * Nothing to do for disk quotas here.
656 */
657 if (da_old || da_new) {
658 xfs_filblks_t nblks;
659
660 nblks = da_new;
661 if (cur)
662 nblks += cur->bc_private.b.allocated;
663 ASSERT(nblks <= da_old);
664 if (nblks < da_old)
665 xfs_mod_incore_sb(ip->i_mount, XFS_SBS_FDBLOCKS,
David Chinner20f4ebf2007-02-10 18:36:10 +1100666 (int64_t)(da_old - nblks), rsvd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 }
668 /*
669 * Clear out the allocated field, done with it now in any case.
670 */
671 if (cur) {
672 cur->bc_private.b.allocated = 0;
673 *curp = cur;
674 }
675done:
676#ifdef DEBUG
677 if (!error)
678 xfs_bmap_check_leaf_extents(*curp, ip, whichfork);
679#endif
680 *logflagsp = logflags;
681 return error;
682}
683
684/*
685 * Called by xfs_bmap_add_extent to handle cases converting a delayed
686 * allocation to a real allocation.
687 */
688STATIC int /* error */
689xfs_bmap_add_extent_delay_real(
690 xfs_inode_t *ip, /* incore inode pointer */
691 xfs_extnum_t idx, /* extent number to update/insert */
692 xfs_btree_cur_t **curp, /* if *curp is null, not a btree */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100693 xfs_bmbt_irec_t *new, /* new data to add to file extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 xfs_filblks_t *dnew, /* new delayed-alloc indirect blocks */
695 xfs_fsblock_t *first, /* pointer to firstblock variable */
696 xfs_bmap_free_t *flist, /* list of extents to be freed */
697 int *logflagsp, /* inode logging flags */
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000698 xfs_extdelta_t *delta, /* Change made to incore extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 int rsvd) /* OK to use reserved data block allocation */
700{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 xfs_btree_cur_t *cur; /* btree cursor */
702 int diff; /* temp value */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000703 xfs_bmbt_rec_host_t *ep; /* extent entry for idx */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 int i; /* temp state */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100706 xfs_ifork_t *ifp; /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 xfs_fileoff_t new_endoff; /* end offset of new entry */
708 xfs_bmbt_irec_t r[3]; /* neighbor extent entries */
709 /* left is 0, right is 1, prev is 2 */
710 int rval=0; /* return value (logging flags) */
711 int state = 0;/* state bits, accessed thru macros */
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000712 xfs_filblks_t temp=0; /* value for dnew calculations */
713 xfs_filblks_t temp2=0;/* value for dnew calculations */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 int tmp_rval; /* partial logging flags */
715 enum { /* bit number definitions for state */
716 LEFT_CONTIG, RIGHT_CONTIG,
717 LEFT_FILLING, RIGHT_FILLING,
718 LEFT_DELAY, RIGHT_DELAY,
719 LEFT_VALID, RIGHT_VALID
720 };
721
722#define LEFT r[0]
723#define RIGHT r[1]
724#define PREV r[2]
725#define MASK(b) (1 << (b))
726#define MASK2(a,b) (MASK(a) | MASK(b))
727#define MASK3(a,b,c) (MASK2(a,b) | MASK(c))
728#define MASK4(a,b,c,d) (MASK3(a,b,c) | MASK(d))
729#define STATE_SET(b,v) ((v) ? (state |= MASK(b)) : (state &= ~MASK(b)))
730#define STATE_TEST(b) (state & MASK(b))
731#define STATE_SET_TEST(b,v) ((v) ? ((state |= MASK(b)), 1) : \
732 ((state &= ~MASK(b)), 0))
733#define SWITCH_STATE \
734 (state & MASK4(LEFT_FILLING, RIGHT_FILLING, LEFT_CONTIG, RIGHT_CONTIG))
735
736 /*
737 * Set up a bunch of variables to make the tests simpler.
738 */
739 cur = *curp;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100740 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
741 ep = xfs_iext_get_ext(ifp, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 xfs_bmbt_get_all(ep, &PREV);
743 new_endoff = new->br_startoff + new->br_blockcount;
744 ASSERT(PREV.br_startoff <= new->br_startoff);
745 ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff);
746 /*
747 * Set flags determining what part of the previous delayed allocation
748 * extent is being replaced by a real allocation.
749 */
750 STATE_SET(LEFT_FILLING, PREV.br_startoff == new->br_startoff);
751 STATE_SET(RIGHT_FILLING,
752 PREV.br_startoff + PREV.br_blockcount == new_endoff);
753 /*
754 * Check and set flags if this segment has a left neighbor.
755 * Don't set contiguous if the combined extent would be too large.
756 */
757 if (STATE_SET_TEST(LEFT_VALID, idx > 0)) {
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100758 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, idx - 1), &LEFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 STATE_SET(LEFT_DELAY, ISNULLSTARTBLOCK(LEFT.br_startblock));
760 }
761 STATE_SET(LEFT_CONTIG,
762 STATE_TEST(LEFT_VALID) && !STATE_TEST(LEFT_DELAY) &&
763 LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff &&
764 LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock &&
765 LEFT.br_state == new->br_state &&
766 LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN);
767 /*
768 * Check and set flags if this segment has a right neighbor.
769 * Don't set contiguous if the combined extent would be too large.
770 * Also check for all-three-contiguous being too large.
771 */
772 if (STATE_SET_TEST(RIGHT_VALID,
773 idx <
774 ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t) - 1)) {
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100775 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, idx + 1), &RIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 STATE_SET(RIGHT_DELAY, ISNULLSTARTBLOCK(RIGHT.br_startblock));
777 }
778 STATE_SET(RIGHT_CONTIG,
779 STATE_TEST(RIGHT_VALID) && !STATE_TEST(RIGHT_DELAY) &&
780 new_endoff == RIGHT.br_startoff &&
781 new->br_startblock + new->br_blockcount ==
782 RIGHT.br_startblock &&
783 new->br_state == RIGHT.br_state &&
784 new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN &&
785 ((state & MASK3(LEFT_CONTIG, LEFT_FILLING, RIGHT_FILLING)) !=
786 MASK3(LEFT_CONTIG, LEFT_FILLING, RIGHT_FILLING) ||
787 LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount
788 <= MAXEXTLEN));
789 error = 0;
790 /*
791 * Switch out based on the FILLING and CONTIG state bits.
792 */
793 switch (SWITCH_STATE) {
794
795 case MASK4(LEFT_FILLING, RIGHT_FILLING, LEFT_CONTIG, RIGHT_CONTIG):
796 /*
797 * Filling in all of a previously delayed allocation extent.
798 * The left and right neighbors are both contiguous with new.
799 */
Eric Sandeen3a59c942007-07-11 11:09:47 +1000800 XFS_BMAP_TRACE_PRE_UPDATE("LF|RF|LC|RC", ip, idx - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100802 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, idx - 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 LEFT.br_blockcount + PREV.br_blockcount +
804 RIGHT.br_blockcount);
Eric Sandeen3a59c942007-07-11 11:09:47 +1000805 XFS_BMAP_TRACE_POST_UPDATE("LF|RF|LC|RC", ip, idx - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 XFS_DATA_FORK);
Eric Sandeen3a59c942007-07-11 11:09:47 +1000807 XFS_BMAP_TRACE_DELETE("LF|RF|LC|RC", ip, idx, 2, XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100808 xfs_iext_remove(ifp, idx, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 ip->i_df.if_lastex = idx - 1;
810 ip->i_d.di_nextents--;
811 if (cur == NULL)
812 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
813 else {
814 rval = XFS_ILOG_CORE;
815 if ((error = xfs_bmbt_lookup_eq(cur, RIGHT.br_startoff,
816 RIGHT.br_startblock,
817 RIGHT.br_blockcount, &i)))
818 goto done;
819 ASSERT(i == 1);
820 if ((error = xfs_bmbt_delete(cur, &i)))
821 goto done;
822 ASSERT(i == 1);
823 if ((error = xfs_bmbt_decrement(cur, 0, &i)))
824 goto done;
825 ASSERT(i == 1);
826 if ((error = xfs_bmbt_update(cur, LEFT.br_startoff,
827 LEFT.br_startblock,
828 LEFT.br_blockcount +
829 PREV.br_blockcount +
830 RIGHT.br_blockcount, LEFT.br_state)))
831 goto done;
832 }
833 *dnew = 0;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000834 /* DELTA: Three in-core extents are replaced by one. */
835 temp = LEFT.br_startoff;
836 temp2 = LEFT.br_blockcount +
837 PREV.br_blockcount +
838 RIGHT.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 break;
840
841 case MASK3(LEFT_FILLING, RIGHT_FILLING, LEFT_CONTIG):
842 /*
843 * Filling in all of a previously delayed allocation extent.
844 * The left neighbor is contiguous, the right is not.
845 */
Eric Sandeen3a59c942007-07-11 11:09:47 +1000846 XFS_BMAP_TRACE_PRE_UPDATE("LF|RF|LC", ip, idx - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100848 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, idx - 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 LEFT.br_blockcount + PREV.br_blockcount);
Eric Sandeen3a59c942007-07-11 11:09:47 +1000850 XFS_BMAP_TRACE_POST_UPDATE("LF|RF|LC", ip, idx - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 XFS_DATA_FORK);
852 ip->i_df.if_lastex = idx - 1;
Eric Sandeen3a59c942007-07-11 11:09:47 +1000853 XFS_BMAP_TRACE_DELETE("LF|RF|LC", ip, idx, 1, XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100854 xfs_iext_remove(ifp, idx, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 if (cur == NULL)
856 rval = XFS_ILOG_DEXT;
857 else {
858 rval = 0;
859 if ((error = xfs_bmbt_lookup_eq(cur, LEFT.br_startoff,
860 LEFT.br_startblock, LEFT.br_blockcount,
861 &i)))
862 goto done;
863 ASSERT(i == 1);
864 if ((error = xfs_bmbt_update(cur, LEFT.br_startoff,
865 LEFT.br_startblock,
866 LEFT.br_blockcount +
867 PREV.br_blockcount, LEFT.br_state)))
868 goto done;
869 }
870 *dnew = 0;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000871 /* DELTA: Two in-core extents are replaced by one. */
872 temp = LEFT.br_startoff;
873 temp2 = LEFT.br_blockcount +
874 PREV.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 break;
876
877 case MASK3(LEFT_FILLING, RIGHT_FILLING, RIGHT_CONTIG):
878 /*
879 * Filling in all of a previously delayed allocation extent.
880 * The right neighbor is contiguous, the left is not.
881 */
Eric Sandeen3a59c942007-07-11 11:09:47 +1000882 XFS_BMAP_TRACE_PRE_UPDATE("LF|RF|RC", ip, idx, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 xfs_bmbt_set_startblock(ep, new->br_startblock);
884 xfs_bmbt_set_blockcount(ep,
885 PREV.br_blockcount + RIGHT.br_blockcount);
Eric Sandeen3a59c942007-07-11 11:09:47 +1000886 XFS_BMAP_TRACE_POST_UPDATE("LF|RF|RC", ip, idx, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 ip->i_df.if_lastex = idx;
Eric Sandeen3a59c942007-07-11 11:09:47 +1000888 XFS_BMAP_TRACE_DELETE("LF|RF|RC", ip, idx + 1, 1, XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100889 xfs_iext_remove(ifp, idx + 1, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (cur == NULL)
891 rval = XFS_ILOG_DEXT;
892 else {
893 rval = 0;
894 if ((error = xfs_bmbt_lookup_eq(cur, RIGHT.br_startoff,
895 RIGHT.br_startblock,
896 RIGHT.br_blockcount, &i)))
897 goto done;
898 ASSERT(i == 1);
899 if ((error = xfs_bmbt_update(cur, PREV.br_startoff,
900 new->br_startblock,
901 PREV.br_blockcount +
902 RIGHT.br_blockcount, PREV.br_state)))
903 goto done;
904 }
905 *dnew = 0;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000906 /* DELTA: Two in-core extents are replaced by one. */
907 temp = PREV.br_startoff;
908 temp2 = PREV.br_blockcount +
909 RIGHT.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 break;
911
912 case MASK2(LEFT_FILLING, RIGHT_FILLING):
913 /*
914 * Filling in all of a previously delayed allocation extent.
915 * Neither the left nor right neighbors are contiguous with
916 * the new one.
917 */
Eric Sandeen3a59c942007-07-11 11:09:47 +1000918 XFS_BMAP_TRACE_PRE_UPDATE("LF|RF", ip, idx, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 xfs_bmbt_set_startblock(ep, new->br_startblock);
Eric Sandeen3a59c942007-07-11 11:09:47 +1000920 XFS_BMAP_TRACE_POST_UPDATE("LF|RF", ip, idx, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 ip->i_df.if_lastex = idx;
922 ip->i_d.di_nextents++;
923 if (cur == NULL)
924 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
925 else {
926 rval = XFS_ILOG_CORE;
927 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
928 new->br_startblock, new->br_blockcount,
929 &i)))
930 goto done;
931 ASSERT(i == 0);
932 cur->bc_rec.b.br_state = XFS_EXT_NORM;
933 if ((error = xfs_bmbt_insert(cur, &i)))
934 goto done;
935 ASSERT(i == 1);
936 }
937 *dnew = 0;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000938 /* DELTA: The in-core extent described by new changed type. */
939 temp = new->br_startoff;
940 temp2 = new->br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 break;
942
943 case MASK2(LEFT_FILLING, LEFT_CONTIG):
944 /*
945 * Filling in the first part of a previous delayed allocation.
946 * The left neighbor is contiguous.
947 */
Eric Sandeen3a59c942007-07-11 11:09:47 +1000948 XFS_BMAP_TRACE_PRE_UPDATE("LF|LC", ip, idx - 1, XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100949 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, idx - 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 LEFT.br_blockcount + new->br_blockcount);
951 xfs_bmbt_set_startoff(ep,
952 PREV.br_startoff + new->br_blockcount);
Eric Sandeen3a59c942007-07-11 11:09:47 +1000953 XFS_BMAP_TRACE_POST_UPDATE("LF|LC", ip, idx - 1, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 temp = PREV.br_blockcount - new->br_blockcount;
Eric Sandeen3a59c942007-07-11 11:09:47 +1000955 XFS_BMAP_TRACE_PRE_UPDATE("LF|LC", ip, idx, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 xfs_bmbt_set_blockcount(ep, temp);
957 ip->i_df.if_lastex = idx - 1;
958 if (cur == NULL)
959 rval = XFS_ILOG_DEXT;
960 else {
961 rval = 0;
962 if ((error = xfs_bmbt_lookup_eq(cur, LEFT.br_startoff,
963 LEFT.br_startblock, LEFT.br_blockcount,
964 &i)))
965 goto done;
966 ASSERT(i == 1);
967 if ((error = xfs_bmbt_update(cur, LEFT.br_startoff,
968 LEFT.br_startblock,
969 LEFT.br_blockcount +
970 new->br_blockcount,
971 LEFT.br_state)))
972 goto done;
973 }
974 temp = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
975 STARTBLOCKVAL(PREV.br_startblock));
976 xfs_bmbt_set_startblock(ep, NULLSTARTBLOCK((int)temp));
Eric Sandeen3a59c942007-07-11 11:09:47 +1000977 XFS_BMAP_TRACE_POST_UPDATE("LF|LC", ip, idx, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 *dnew = temp;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000979 /* DELTA: The boundary between two in-core extents moved. */
980 temp = LEFT.br_startoff;
981 temp2 = LEFT.br_blockcount +
982 PREV.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 break;
984
985 case MASK(LEFT_FILLING):
986 /*
987 * Filling in the first part of a previous delayed allocation.
988 * The left neighbor is not contiguous.
989 */
Eric Sandeen3a59c942007-07-11 11:09:47 +1000990 XFS_BMAP_TRACE_PRE_UPDATE("LF", ip, idx, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 xfs_bmbt_set_startoff(ep, new_endoff);
992 temp = PREV.br_blockcount - new->br_blockcount;
993 xfs_bmbt_set_blockcount(ep, temp);
Eric Sandeen3a59c942007-07-11 11:09:47 +1000994 XFS_BMAP_TRACE_INSERT("LF", ip, idx, 1, new, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100996 xfs_iext_insert(ifp, idx, 1, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 ip->i_df.if_lastex = idx;
998 ip->i_d.di_nextents++;
999 if (cur == NULL)
1000 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1001 else {
1002 rval = XFS_ILOG_CORE;
1003 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
1004 new->br_startblock, new->br_blockcount,
1005 &i)))
1006 goto done;
1007 ASSERT(i == 0);
1008 cur->bc_rec.b.br_state = XFS_EXT_NORM;
1009 if ((error = xfs_bmbt_insert(cur, &i)))
1010 goto done;
1011 ASSERT(i == 1);
1012 }
1013 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
1014 ip->i_d.di_nextents > ip->i_df.if_ext_max) {
1015 error = xfs_bmap_extents_to_btree(ip->i_transp, ip,
1016 first, flist, &cur, 1, &tmp_rval,
1017 XFS_DATA_FORK);
1018 rval |= tmp_rval;
1019 if (error)
1020 goto done;
1021 }
1022 temp = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
1023 STARTBLOCKVAL(PREV.br_startblock) -
1024 (cur ? cur->bc_private.b.allocated : 0));
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001025 ep = xfs_iext_get_ext(ifp, idx + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 xfs_bmbt_set_startblock(ep, NULLSTARTBLOCK((int)temp));
Eric Sandeen3a59c942007-07-11 11:09:47 +10001027 XFS_BMAP_TRACE_POST_UPDATE("LF", ip, idx + 1, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 *dnew = temp;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001029 /* DELTA: One in-core extent is split in two. */
1030 temp = PREV.br_startoff;
1031 temp2 = PREV.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 break;
1033
1034 case MASK2(RIGHT_FILLING, RIGHT_CONTIG):
1035 /*
1036 * Filling in the last part of a previous delayed allocation.
1037 * The right neighbor is contiguous with the new allocation.
1038 */
1039 temp = PREV.br_blockcount - new->br_blockcount;
Eric Sandeen3a59c942007-07-11 11:09:47 +10001040 XFS_BMAP_TRACE_PRE_UPDATE("RF|RC", ip, idx, XFS_DATA_FORK);
1041 XFS_BMAP_TRACE_PRE_UPDATE("RF|RC", ip, idx + 1, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 xfs_bmbt_set_blockcount(ep, temp);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001043 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, idx + 1),
1044 new->br_startoff, new->br_startblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 new->br_blockcount + RIGHT.br_blockcount,
1046 RIGHT.br_state);
Eric Sandeen3a59c942007-07-11 11:09:47 +10001047 XFS_BMAP_TRACE_POST_UPDATE("RF|RC", ip, idx + 1, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 ip->i_df.if_lastex = idx + 1;
1049 if (cur == NULL)
1050 rval = XFS_ILOG_DEXT;
1051 else {
1052 rval = 0;
1053 if ((error = xfs_bmbt_lookup_eq(cur, RIGHT.br_startoff,
1054 RIGHT.br_startblock,
1055 RIGHT.br_blockcount, &i)))
1056 goto done;
1057 ASSERT(i == 1);
1058 if ((error = xfs_bmbt_update(cur, new->br_startoff,
1059 new->br_startblock,
1060 new->br_blockcount +
1061 RIGHT.br_blockcount,
1062 RIGHT.br_state)))
1063 goto done;
1064 }
1065 temp = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
1066 STARTBLOCKVAL(PREV.br_startblock));
1067 xfs_bmbt_set_startblock(ep, NULLSTARTBLOCK((int)temp));
Eric Sandeen3a59c942007-07-11 11:09:47 +10001068 XFS_BMAP_TRACE_POST_UPDATE("RF|RC", ip, idx, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 *dnew = temp;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001070 /* DELTA: The boundary between two in-core extents moved. */
1071 temp = PREV.br_startoff;
1072 temp2 = PREV.br_blockcount +
1073 RIGHT.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 break;
1075
1076 case MASK(RIGHT_FILLING):
1077 /*
1078 * Filling in the last part of a previous delayed allocation.
1079 * The right neighbor is not contiguous.
1080 */
1081 temp = PREV.br_blockcount - new->br_blockcount;
Eric Sandeen3a59c942007-07-11 11:09:47 +10001082 XFS_BMAP_TRACE_PRE_UPDATE("RF", ip, idx, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 xfs_bmbt_set_blockcount(ep, temp);
Eric Sandeen3a59c942007-07-11 11:09:47 +10001084 XFS_BMAP_TRACE_INSERT("RF", ip, idx + 1, 1, new, NULL,
1085 XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001086 xfs_iext_insert(ifp, idx + 1, 1, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 ip->i_df.if_lastex = idx + 1;
1088 ip->i_d.di_nextents++;
1089 if (cur == NULL)
1090 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1091 else {
1092 rval = XFS_ILOG_CORE;
1093 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
1094 new->br_startblock, new->br_blockcount,
1095 &i)))
1096 goto done;
1097 ASSERT(i == 0);
1098 cur->bc_rec.b.br_state = XFS_EXT_NORM;
1099 if ((error = xfs_bmbt_insert(cur, &i)))
1100 goto done;
1101 ASSERT(i == 1);
1102 }
1103 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
1104 ip->i_d.di_nextents > ip->i_df.if_ext_max) {
1105 error = xfs_bmap_extents_to_btree(ip->i_transp, ip,
1106 first, flist, &cur, 1, &tmp_rval,
1107 XFS_DATA_FORK);
1108 rval |= tmp_rval;
1109 if (error)
1110 goto done;
1111 }
1112 temp = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
1113 STARTBLOCKVAL(PREV.br_startblock) -
1114 (cur ? cur->bc_private.b.allocated : 0));
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001115 ep = xfs_iext_get_ext(ifp, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 xfs_bmbt_set_startblock(ep, NULLSTARTBLOCK((int)temp));
Eric Sandeen3a59c942007-07-11 11:09:47 +10001117 XFS_BMAP_TRACE_POST_UPDATE("RF", ip, idx, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 *dnew = temp;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001119 /* DELTA: One in-core extent is split in two. */
1120 temp = PREV.br_startoff;
1121 temp2 = PREV.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 break;
1123
1124 case 0:
1125 /*
1126 * Filling in the middle part of a previous delayed allocation.
1127 * Contiguity is impossible here.
1128 * This case is avoided almost all the time.
1129 */
1130 temp = new->br_startoff - PREV.br_startoff;
Eric Sandeen3a59c942007-07-11 11:09:47 +10001131 XFS_BMAP_TRACE_PRE_UPDATE("0", ip, idx, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 xfs_bmbt_set_blockcount(ep, temp);
1133 r[0] = *new;
Lachlan McIlroyd2133712006-11-21 18:55:16 +11001134 r[1].br_state = PREV.br_state;
1135 r[1].br_startblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 r[1].br_startoff = new_endoff;
1137 temp2 = PREV.br_startoff + PREV.br_blockcount - new_endoff;
1138 r[1].br_blockcount = temp2;
Eric Sandeen3a59c942007-07-11 11:09:47 +10001139 XFS_BMAP_TRACE_INSERT("0", ip, idx + 1, 2, &r[0], &r[1],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001141 xfs_iext_insert(ifp, idx + 1, 2, &r[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 ip->i_df.if_lastex = idx + 1;
1143 ip->i_d.di_nextents++;
1144 if (cur == NULL)
1145 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1146 else {
1147 rval = XFS_ILOG_CORE;
1148 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
1149 new->br_startblock, new->br_blockcount,
1150 &i)))
1151 goto done;
1152 ASSERT(i == 0);
1153 cur->bc_rec.b.br_state = XFS_EXT_NORM;
1154 if ((error = xfs_bmbt_insert(cur, &i)))
1155 goto done;
1156 ASSERT(i == 1);
1157 }
1158 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
1159 ip->i_d.di_nextents > ip->i_df.if_ext_max) {
1160 error = xfs_bmap_extents_to_btree(ip->i_transp, ip,
1161 first, flist, &cur, 1, &tmp_rval,
1162 XFS_DATA_FORK);
1163 rval |= tmp_rval;
1164 if (error)
1165 goto done;
1166 }
1167 temp = xfs_bmap_worst_indlen(ip, temp);
1168 temp2 = xfs_bmap_worst_indlen(ip, temp2);
1169 diff = (int)(temp + temp2 - STARTBLOCKVAL(PREV.br_startblock) -
1170 (cur ? cur->bc_private.b.allocated : 0));
1171 if (diff > 0 &&
David Chinner20f4ebf2007-02-10 18:36:10 +11001172 xfs_mod_incore_sb(ip->i_mount, XFS_SBS_FDBLOCKS, -((int64_t)diff), rsvd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 /*
1174 * Ick gross gag me with a spoon.
1175 */
1176 ASSERT(0); /* want to see if this ever happens! */
1177 while (diff > 0) {
1178 if (temp) {
1179 temp--;
1180 diff--;
1181 if (!diff ||
1182 !xfs_mod_incore_sb(ip->i_mount,
David Chinner20f4ebf2007-02-10 18:36:10 +11001183 XFS_SBS_FDBLOCKS, -((int64_t)diff), rsvd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 break;
1185 }
1186 if (temp2) {
1187 temp2--;
1188 diff--;
1189 if (!diff ||
1190 !xfs_mod_incore_sb(ip->i_mount,
David Chinner20f4ebf2007-02-10 18:36:10 +11001191 XFS_SBS_FDBLOCKS, -((int64_t)diff), rsvd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 break;
1193 }
1194 }
1195 }
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001196 ep = xfs_iext_get_ext(ifp, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 xfs_bmbt_set_startblock(ep, NULLSTARTBLOCK((int)temp));
Eric Sandeen3a59c942007-07-11 11:09:47 +10001198 XFS_BMAP_TRACE_POST_UPDATE("0", ip, idx, XFS_DATA_FORK);
1199 XFS_BMAP_TRACE_PRE_UPDATE("0", ip, idx + 2, XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001200 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, idx + 2),
1201 NULLSTARTBLOCK((int)temp2));
Eric Sandeen3a59c942007-07-11 11:09:47 +10001202 XFS_BMAP_TRACE_POST_UPDATE("0", ip, idx + 2, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 *dnew = temp + temp2;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001204 /* DELTA: One in-core extent is split in three. */
1205 temp = PREV.br_startoff;
1206 temp2 = PREV.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 break;
1208
1209 case MASK3(LEFT_FILLING, LEFT_CONTIG, RIGHT_CONTIG):
1210 case MASK3(RIGHT_FILLING, LEFT_CONTIG, RIGHT_CONTIG):
1211 case MASK2(LEFT_FILLING, RIGHT_CONTIG):
1212 case MASK2(RIGHT_FILLING, LEFT_CONTIG):
1213 case MASK2(LEFT_CONTIG, RIGHT_CONTIG):
1214 case MASK(LEFT_CONTIG):
1215 case MASK(RIGHT_CONTIG):
1216 /*
1217 * These cases are all impossible.
1218 */
1219 ASSERT(0);
1220 }
1221 *curp = cur;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001222 if (delta) {
1223 temp2 += temp;
1224 if (delta->xed_startoff > temp)
1225 delta->xed_startoff = temp;
1226 if (delta->xed_blockcount < temp2)
1227 delta->xed_blockcount = temp2;
1228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229done:
1230 *logflagsp = rval;
1231 return error;
1232#undef LEFT
1233#undef RIGHT
1234#undef PREV
1235#undef MASK
1236#undef MASK2
1237#undef MASK3
1238#undef MASK4
1239#undef STATE_SET
1240#undef STATE_TEST
1241#undef STATE_SET_TEST
1242#undef SWITCH_STATE
1243}
1244
1245/*
1246 * Called by xfs_bmap_add_extent to handle cases converting an unwritten
1247 * allocation to a real allocation or vice versa.
1248 */
1249STATIC int /* error */
1250xfs_bmap_add_extent_unwritten_real(
1251 xfs_inode_t *ip, /* incore inode pointer */
1252 xfs_extnum_t idx, /* extent number to update/insert */
1253 xfs_btree_cur_t **curp, /* if *curp is null, not a btree */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001254 xfs_bmbt_irec_t *new, /* new data to add to file extents */
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001255 int *logflagsp, /* inode logging flags */
1256 xfs_extdelta_t *delta) /* Change made to incore extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 xfs_btree_cur_t *cur; /* btree cursor */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10001259 xfs_bmbt_rec_host_t *ep; /* extent entry for idx */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 int i; /* temp state */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001262 xfs_ifork_t *ifp; /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 xfs_fileoff_t new_endoff; /* end offset of new entry */
1264 xfs_exntst_t newext; /* new extent state */
1265 xfs_exntst_t oldext; /* old extent state */
1266 xfs_bmbt_irec_t r[3]; /* neighbor extent entries */
1267 /* left is 0, right is 1, prev is 2 */
1268 int rval=0; /* return value (logging flags) */
1269 int state = 0;/* state bits, accessed thru macros */
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001270 xfs_filblks_t temp=0;
1271 xfs_filblks_t temp2=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 enum { /* bit number definitions for state */
1273 LEFT_CONTIG, RIGHT_CONTIG,
1274 LEFT_FILLING, RIGHT_FILLING,
1275 LEFT_DELAY, RIGHT_DELAY,
1276 LEFT_VALID, RIGHT_VALID
1277 };
1278
1279#define LEFT r[0]
1280#define RIGHT r[1]
1281#define PREV r[2]
1282#define MASK(b) (1 << (b))
1283#define MASK2(a,b) (MASK(a) | MASK(b))
1284#define MASK3(a,b,c) (MASK2(a,b) | MASK(c))
1285#define MASK4(a,b,c,d) (MASK3(a,b,c) | MASK(d))
1286#define STATE_SET(b,v) ((v) ? (state |= MASK(b)) : (state &= ~MASK(b)))
1287#define STATE_TEST(b) (state & MASK(b))
1288#define STATE_SET_TEST(b,v) ((v) ? ((state |= MASK(b)), 1) : \
1289 ((state &= ~MASK(b)), 0))
1290#define SWITCH_STATE \
1291 (state & MASK4(LEFT_FILLING, RIGHT_FILLING, LEFT_CONTIG, RIGHT_CONTIG))
1292
1293 /*
1294 * Set up a bunch of variables to make the tests simpler.
1295 */
1296 error = 0;
1297 cur = *curp;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001298 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
1299 ep = xfs_iext_get_ext(ifp, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 xfs_bmbt_get_all(ep, &PREV);
1301 newext = new->br_state;
1302 oldext = (newext == XFS_EXT_UNWRITTEN) ?
1303 XFS_EXT_NORM : XFS_EXT_UNWRITTEN;
1304 ASSERT(PREV.br_state == oldext);
1305 new_endoff = new->br_startoff + new->br_blockcount;
1306 ASSERT(PREV.br_startoff <= new->br_startoff);
1307 ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff);
1308 /*
1309 * Set flags determining what part of the previous oldext allocation
1310 * extent is being replaced by a newext allocation.
1311 */
1312 STATE_SET(LEFT_FILLING, PREV.br_startoff == new->br_startoff);
1313 STATE_SET(RIGHT_FILLING,
1314 PREV.br_startoff + PREV.br_blockcount == new_endoff);
1315 /*
1316 * Check and set flags if this segment has a left neighbor.
1317 * Don't set contiguous if the combined extent would be too large.
1318 */
1319 if (STATE_SET_TEST(LEFT_VALID, idx > 0)) {
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001320 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, idx - 1), &LEFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 STATE_SET(LEFT_DELAY, ISNULLSTARTBLOCK(LEFT.br_startblock));
1322 }
1323 STATE_SET(LEFT_CONTIG,
1324 STATE_TEST(LEFT_VALID) && !STATE_TEST(LEFT_DELAY) &&
1325 LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff &&
1326 LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock &&
1327 LEFT.br_state == newext &&
1328 LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN);
1329 /*
1330 * Check and set flags if this segment has a right neighbor.
1331 * Don't set contiguous if the combined extent would be too large.
1332 * Also check for all-three-contiguous being too large.
1333 */
1334 if (STATE_SET_TEST(RIGHT_VALID,
1335 idx <
1336 ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t) - 1)) {
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001337 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, idx + 1), &RIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 STATE_SET(RIGHT_DELAY, ISNULLSTARTBLOCK(RIGHT.br_startblock));
1339 }
1340 STATE_SET(RIGHT_CONTIG,
1341 STATE_TEST(RIGHT_VALID) && !STATE_TEST(RIGHT_DELAY) &&
1342 new_endoff == RIGHT.br_startoff &&
1343 new->br_startblock + new->br_blockcount ==
1344 RIGHT.br_startblock &&
1345 newext == RIGHT.br_state &&
1346 new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN &&
1347 ((state & MASK3(LEFT_CONTIG, LEFT_FILLING, RIGHT_FILLING)) !=
1348 MASK3(LEFT_CONTIG, LEFT_FILLING, RIGHT_FILLING) ||
1349 LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount
1350 <= MAXEXTLEN));
1351 /*
1352 * Switch out based on the FILLING and CONTIG state bits.
1353 */
1354 switch (SWITCH_STATE) {
1355
1356 case MASK4(LEFT_FILLING, RIGHT_FILLING, LEFT_CONTIG, RIGHT_CONTIG):
1357 /*
1358 * Setting all of a previous oldext extent to newext.
1359 * The left and right neighbors are both contiguous with new.
1360 */
Eric Sandeen3a59c942007-07-11 11:09:47 +10001361 XFS_BMAP_TRACE_PRE_UPDATE("LF|RF|LC|RC", ip, idx - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001363 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, idx - 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 LEFT.br_blockcount + PREV.br_blockcount +
1365 RIGHT.br_blockcount);
Eric Sandeen3a59c942007-07-11 11:09:47 +10001366 XFS_BMAP_TRACE_POST_UPDATE("LF|RF|LC|RC", ip, idx - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 XFS_DATA_FORK);
Eric Sandeen3a59c942007-07-11 11:09:47 +10001368 XFS_BMAP_TRACE_DELETE("LF|RF|LC|RC", ip, idx, 2, XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001369 xfs_iext_remove(ifp, idx, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 ip->i_df.if_lastex = idx - 1;
1371 ip->i_d.di_nextents -= 2;
1372 if (cur == NULL)
1373 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1374 else {
1375 rval = XFS_ILOG_CORE;
1376 if ((error = xfs_bmbt_lookup_eq(cur, RIGHT.br_startoff,
1377 RIGHT.br_startblock,
1378 RIGHT.br_blockcount, &i)))
1379 goto done;
1380 ASSERT(i == 1);
1381 if ((error = xfs_bmbt_delete(cur, &i)))
1382 goto done;
1383 ASSERT(i == 1);
1384 if ((error = xfs_bmbt_decrement(cur, 0, &i)))
1385 goto done;
1386 ASSERT(i == 1);
1387 if ((error = xfs_bmbt_delete(cur, &i)))
1388 goto done;
1389 ASSERT(i == 1);
1390 if ((error = xfs_bmbt_decrement(cur, 0, &i)))
1391 goto done;
1392 ASSERT(i == 1);
1393 if ((error = xfs_bmbt_update(cur, LEFT.br_startoff,
1394 LEFT.br_startblock,
1395 LEFT.br_blockcount + PREV.br_blockcount +
1396 RIGHT.br_blockcount, LEFT.br_state)))
1397 goto done;
1398 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001399 /* DELTA: Three in-core extents are replaced by one. */
1400 temp = LEFT.br_startoff;
1401 temp2 = LEFT.br_blockcount +
1402 PREV.br_blockcount +
1403 RIGHT.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 break;
1405
1406 case MASK3(LEFT_FILLING, RIGHT_FILLING, LEFT_CONTIG):
1407 /*
1408 * Setting all of a previous oldext extent to newext.
1409 * The left neighbor is contiguous, the right is not.
1410 */
Eric Sandeen3a59c942007-07-11 11:09:47 +10001411 XFS_BMAP_TRACE_PRE_UPDATE("LF|RF|LC", ip, idx - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001413 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, idx - 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 LEFT.br_blockcount + PREV.br_blockcount);
Eric Sandeen3a59c942007-07-11 11:09:47 +10001415 XFS_BMAP_TRACE_POST_UPDATE("LF|RF|LC", ip, idx - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 XFS_DATA_FORK);
1417 ip->i_df.if_lastex = idx - 1;
Eric Sandeen3a59c942007-07-11 11:09:47 +10001418 XFS_BMAP_TRACE_DELETE("LF|RF|LC", ip, idx, 1, XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001419 xfs_iext_remove(ifp, idx, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 ip->i_d.di_nextents--;
1421 if (cur == NULL)
1422 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1423 else {
1424 rval = XFS_ILOG_CORE;
1425 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
1426 PREV.br_startblock, PREV.br_blockcount,
1427 &i)))
1428 goto done;
1429 ASSERT(i == 1);
1430 if ((error = xfs_bmbt_delete(cur, &i)))
1431 goto done;
1432 ASSERT(i == 1);
1433 if ((error = xfs_bmbt_decrement(cur, 0, &i)))
1434 goto done;
1435 ASSERT(i == 1);
1436 if ((error = xfs_bmbt_update(cur, LEFT.br_startoff,
1437 LEFT.br_startblock,
1438 LEFT.br_blockcount + PREV.br_blockcount,
1439 LEFT.br_state)))
1440 goto done;
1441 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001442 /* DELTA: Two in-core extents are replaced by one. */
1443 temp = LEFT.br_startoff;
1444 temp2 = LEFT.br_blockcount +
1445 PREV.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 break;
1447
1448 case MASK3(LEFT_FILLING, RIGHT_FILLING, RIGHT_CONTIG):
1449 /*
1450 * Setting all of a previous oldext extent to newext.
1451 * The right neighbor is contiguous, the left is not.
1452 */
Eric Sandeen3a59c942007-07-11 11:09:47 +10001453 XFS_BMAP_TRACE_PRE_UPDATE("LF|RF|RC", ip, idx,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 XFS_DATA_FORK);
1455 xfs_bmbt_set_blockcount(ep,
1456 PREV.br_blockcount + RIGHT.br_blockcount);
1457 xfs_bmbt_set_state(ep, newext);
Eric Sandeen3a59c942007-07-11 11:09:47 +10001458 XFS_BMAP_TRACE_POST_UPDATE("LF|RF|RC", ip, idx,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 XFS_DATA_FORK);
1460 ip->i_df.if_lastex = idx;
Eric Sandeen3a59c942007-07-11 11:09:47 +10001461 XFS_BMAP_TRACE_DELETE("LF|RF|RC", ip, idx + 1, 1, XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001462 xfs_iext_remove(ifp, idx + 1, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 ip->i_d.di_nextents--;
1464 if (cur == NULL)
1465 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1466 else {
1467 rval = XFS_ILOG_CORE;
1468 if ((error = xfs_bmbt_lookup_eq(cur, RIGHT.br_startoff,
1469 RIGHT.br_startblock,
1470 RIGHT.br_blockcount, &i)))
1471 goto done;
1472 ASSERT(i == 1);
1473 if ((error = xfs_bmbt_delete(cur, &i)))
1474 goto done;
1475 ASSERT(i == 1);
1476 if ((error = xfs_bmbt_decrement(cur, 0, &i)))
1477 goto done;
1478 ASSERT(i == 1);
1479 if ((error = xfs_bmbt_update(cur, new->br_startoff,
1480 new->br_startblock,
1481 new->br_blockcount + RIGHT.br_blockcount,
1482 newext)))
1483 goto done;
1484 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001485 /* DELTA: Two in-core extents are replaced by one. */
1486 temp = PREV.br_startoff;
1487 temp2 = PREV.br_blockcount +
1488 RIGHT.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 break;
1490
1491 case MASK2(LEFT_FILLING, RIGHT_FILLING):
1492 /*
1493 * Setting all of a previous oldext extent to newext.
1494 * Neither the left nor right neighbors are contiguous with
1495 * the new one.
1496 */
Eric Sandeen3a59c942007-07-11 11:09:47 +10001497 XFS_BMAP_TRACE_PRE_UPDATE("LF|RF", ip, idx,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 XFS_DATA_FORK);
1499 xfs_bmbt_set_state(ep, newext);
Eric Sandeen3a59c942007-07-11 11:09:47 +10001500 XFS_BMAP_TRACE_POST_UPDATE("LF|RF", ip, idx,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 XFS_DATA_FORK);
1502 ip->i_df.if_lastex = idx;
1503 if (cur == NULL)
1504 rval = XFS_ILOG_DEXT;
1505 else {
1506 rval = 0;
1507 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
1508 new->br_startblock, new->br_blockcount,
1509 &i)))
1510 goto done;
1511 ASSERT(i == 1);
1512 if ((error = xfs_bmbt_update(cur, new->br_startoff,
1513 new->br_startblock, new->br_blockcount,
1514 newext)))
1515 goto done;
1516 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001517 /* DELTA: The in-core extent described by new changed type. */
1518 temp = new->br_startoff;
1519 temp2 = new->br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 break;
1521
1522 case MASK2(LEFT_FILLING, LEFT_CONTIG):
1523 /*
1524 * Setting the first part of a previous oldext extent to newext.
1525 * The left neighbor is contiguous.
1526 */
Eric Sandeen3a59c942007-07-11 11:09:47 +10001527 XFS_BMAP_TRACE_PRE_UPDATE("LF|LC", ip, idx - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001529 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, idx - 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 LEFT.br_blockcount + new->br_blockcount);
1531 xfs_bmbt_set_startoff(ep,
1532 PREV.br_startoff + new->br_blockcount);
Eric Sandeen3a59c942007-07-11 11:09:47 +10001533 XFS_BMAP_TRACE_POST_UPDATE("LF|LC", ip, idx - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 XFS_DATA_FORK);
Eric Sandeen3a59c942007-07-11 11:09:47 +10001535 XFS_BMAP_TRACE_PRE_UPDATE("LF|LC", ip, idx,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 XFS_DATA_FORK);
1537 xfs_bmbt_set_startblock(ep,
1538 new->br_startblock + new->br_blockcount);
1539 xfs_bmbt_set_blockcount(ep,
1540 PREV.br_blockcount - new->br_blockcount);
Eric Sandeen3a59c942007-07-11 11:09:47 +10001541 XFS_BMAP_TRACE_POST_UPDATE("LF|LC", ip, idx,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 XFS_DATA_FORK);
1543 ip->i_df.if_lastex = idx - 1;
1544 if (cur == NULL)
1545 rval = XFS_ILOG_DEXT;
1546 else {
1547 rval = 0;
1548 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
1549 PREV.br_startblock, PREV.br_blockcount,
1550 &i)))
1551 goto done;
1552 ASSERT(i == 1);
1553 if ((error = xfs_bmbt_update(cur,
1554 PREV.br_startoff + new->br_blockcount,
1555 PREV.br_startblock + new->br_blockcount,
1556 PREV.br_blockcount - new->br_blockcount,
1557 oldext)))
1558 goto done;
1559 if ((error = xfs_bmbt_decrement(cur, 0, &i)))
1560 goto done;
1561 if (xfs_bmbt_update(cur, LEFT.br_startoff,
1562 LEFT.br_startblock,
1563 LEFT.br_blockcount + new->br_blockcount,
1564 LEFT.br_state))
1565 goto done;
1566 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001567 /* DELTA: The boundary between two in-core extents moved. */
1568 temp = LEFT.br_startoff;
1569 temp2 = LEFT.br_blockcount +
1570 PREV.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 break;
1572
1573 case MASK(LEFT_FILLING):
1574 /*
1575 * Setting the first part of a previous oldext extent to newext.
1576 * The left neighbor is not contiguous.
1577 */
Eric Sandeen3a59c942007-07-11 11:09:47 +10001578 XFS_BMAP_TRACE_PRE_UPDATE("LF", ip, idx, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 ASSERT(ep && xfs_bmbt_get_state(ep) == oldext);
1580 xfs_bmbt_set_startoff(ep, new_endoff);
1581 xfs_bmbt_set_blockcount(ep,
1582 PREV.br_blockcount - new->br_blockcount);
1583 xfs_bmbt_set_startblock(ep,
1584 new->br_startblock + new->br_blockcount);
Eric Sandeen3a59c942007-07-11 11:09:47 +10001585 XFS_BMAP_TRACE_POST_UPDATE("LF", ip, idx, XFS_DATA_FORK);
1586 XFS_BMAP_TRACE_INSERT("LF", ip, idx, 1, new, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001588 xfs_iext_insert(ifp, idx, 1, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 ip->i_df.if_lastex = idx;
1590 ip->i_d.di_nextents++;
1591 if (cur == NULL)
1592 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1593 else {
1594 rval = XFS_ILOG_CORE;
1595 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
1596 PREV.br_startblock, PREV.br_blockcount,
1597 &i)))
1598 goto done;
1599 ASSERT(i == 1);
1600 if ((error = xfs_bmbt_update(cur,
1601 PREV.br_startoff + new->br_blockcount,
1602 PREV.br_startblock + new->br_blockcount,
1603 PREV.br_blockcount - new->br_blockcount,
1604 oldext)))
1605 goto done;
1606 cur->bc_rec.b = *new;
1607 if ((error = xfs_bmbt_insert(cur, &i)))
1608 goto done;
1609 ASSERT(i == 1);
1610 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001611 /* DELTA: One in-core extent is split in two. */
1612 temp = PREV.br_startoff;
1613 temp2 = PREV.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 break;
1615
1616 case MASK2(RIGHT_FILLING, RIGHT_CONTIG):
1617 /*
1618 * Setting the last part of a previous oldext extent to newext.
1619 * The right neighbor is contiguous with the new allocation.
1620 */
Eric Sandeen3a59c942007-07-11 11:09:47 +10001621 XFS_BMAP_TRACE_PRE_UPDATE("RF|RC", ip, idx,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 XFS_DATA_FORK);
Eric Sandeen3a59c942007-07-11 11:09:47 +10001623 XFS_BMAP_TRACE_PRE_UPDATE("RF|RC", ip, idx + 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 XFS_DATA_FORK);
1625 xfs_bmbt_set_blockcount(ep,
1626 PREV.br_blockcount - new->br_blockcount);
Eric Sandeen3a59c942007-07-11 11:09:47 +10001627 XFS_BMAP_TRACE_POST_UPDATE("RF|RC", ip, idx,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001629 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, idx + 1),
1630 new->br_startoff, new->br_startblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 new->br_blockcount + RIGHT.br_blockcount, newext);
Eric Sandeen3a59c942007-07-11 11:09:47 +10001632 XFS_BMAP_TRACE_POST_UPDATE("RF|RC", ip, idx + 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 XFS_DATA_FORK);
1634 ip->i_df.if_lastex = idx + 1;
1635 if (cur == NULL)
1636 rval = XFS_ILOG_DEXT;
1637 else {
1638 rval = 0;
1639 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
1640 PREV.br_startblock,
1641 PREV.br_blockcount, &i)))
1642 goto done;
1643 ASSERT(i == 1);
1644 if ((error = xfs_bmbt_update(cur, PREV.br_startoff,
1645 PREV.br_startblock,
1646 PREV.br_blockcount - new->br_blockcount,
1647 oldext)))
1648 goto done;
1649 if ((error = xfs_bmbt_increment(cur, 0, &i)))
1650 goto done;
1651 if ((error = xfs_bmbt_update(cur, new->br_startoff,
1652 new->br_startblock,
1653 new->br_blockcount + RIGHT.br_blockcount,
1654 newext)))
1655 goto done;
1656 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001657 /* DELTA: The boundary between two in-core extents moved. */
1658 temp = PREV.br_startoff;
1659 temp2 = PREV.br_blockcount +
1660 RIGHT.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 break;
1662
1663 case MASK(RIGHT_FILLING):
1664 /*
1665 * Setting the last part of a previous oldext extent to newext.
1666 * The right neighbor is not contiguous.
1667 */
Eric Sandeen3a59c942007-07-11 11:09:47 +10001668 XFS_BMAP_TRACE_PRE_UPDATE("RF", ip, idx, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 xfs_bmbt_set_blockcount(ep,
1670 PREV.br_blockcount - new->br_blockcount);
Eric Sandeen3a59c942007-07-11 11:09:47 +10001671 XFS_BMAP_TRACE_POST_UPDATE("RF", ip, idx, XFS_DATA_FORK);
1672 XFS_BMAP_TRACE_INSERT("RF", ip, idx + 1, 1, new, NULL,
1673 XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001674 xfs_iext_insert(ifp, idx + 1, 1, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 ip->i_df.if_lastex = idx + 1;
1676 ip->i_d.di_nextents++;
1677 if (cur == NULL)
1678 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1679 else {
1680 rval = XFS_ILOG_CORE;
1681 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
1682 PREV.br_startblock, PREV.br_blockcount,
1683 &i)))
1684 goto done;
1685 ASSERT(i == 1);
1686 if ((error = xfs_bmbt_update(cur, PREV.br_startoff,
1687 PREV.br_startblock,
1688 PREV.br_blockcount - new->br_blockcount,
1689 oldext)))
1690 goto done;
1691 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
1692 new->br_startblock, new->br_blockcount,
1693 &i)))
1694 goto done;
1695 ASSERT(i == 0);
1696 cur->bc_rec.b.br_state = XFS_EXT_NORM;
1697 if ((error = xfs_bmbt_insert(cur, &i)))
1698 goto done;
1699 ASSERT(i == 1);
1700 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001701 /* DELTA: One in-core extent is split in two. */
1702 temp = PREV.br_startoff;
1703 temp2 = PREV.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 break;
1705
1706 case 0:
1707 /*
1708 * Setting the middle part of a previous oldext extent to
1709 * newext. Contiguity is impossible here.
1710 * One extent becomes three extents.
1711 */
Eric Sandeen3a59c942007-07-11 11:09:47 +10001712 XFS_BMAP_TRACE_PRE_UPDATE("0", ip, idx, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 xfs_bmbt_set_blockcount(ep,
1714 new->br_startoff - PREV.br_startoff);
Eric Sandeen3a59c942007-07-11 11:09:47 +10001715 XFS_BMAP_TRACE_POST_UPDATE("0", ip, idx, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 r[0] = *new;
1717 r[1].br_startoff = new_endoff;
1718 r[1].br_blockcount =
1719 PREV.br_startoff + PREV.br_blockcount - new_endoff;
1720 r[1].br_startblock = new->br_startblock + new->br_blockcount;
1721 r[1].br_state = oldext;
Eric Sandeen3a59c942007-07-11 11:09:47 +10001722 XFS_BMAP_TRACE_INSERT("0", ip, idx + 1, 2, &r[0], &r[1],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001724 xfs_iext_insert(ifp, idx + 1, 2, &r[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 ip->i_df.if_lastex = idx + 1;
1726 ip->i_d.di_nextents += 2;
1727 if (cur == NULL)
1728 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1729 else {
1730 rval = XFS_ILOG_CORE;
1731 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
1732 PREV.br_startblock, PREV.br_blockcount,
1733 &i)))
1734 goto done;
1735 ASSERT(i == 1);
1736 /* new right extent - oldext */
1737 if ((error = xfs_bmbt_update(cur, r[1].br_startoff,
1738 r[1].br_startblock, r[1].br_blockcount,
1739 r[1].br_state)))
1740 goto done;
1741 /* new left extent - oldext */
1742 PREV.br_blockcount =
1743 new->br_startoff - PREV.br_startoff;
1744 cur->bc_rec.b = PREV;
1745 if ((error = xfs_bmbt_insert(cur, &i)))
1746 goto done;
1747 ASSERT(i == 1);
1748 if ((error = xfs_bmbt_increment(cur, 0, &i)))
1749 goto done;
1750 ASSERT(i == 1);
1751 /* new middle extent - newext */
1752 cur->bc_rec.b = *new;
1753 if ((error = xfs_bmbt_insert(cur, &i)))
1754 goto done;
1755 ASSERT(i == 1);
1756 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001757 /* DELTA: One in-core extent is split in three. */
1758 temp = PREV.br_startoff;
1759 temp2 = PREV.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 break;
1761
1762 case MASK3(LEFT_FILLING, LEFT_CONTIG, RIGHT_CONTIG):
1763 case MASK3(RIGHT_FILLING, LEFT_CONTIG, RIGHT_CONTIG):
1764 case MASK2(LEFT_FILLING, RIGHT_CONTIG):
1765 case MASK2(RIGHT_FILLING, LEFT_CONTIG):
1766 case MASK2(LEFT_CONTIG, RIGHT_CONTIG):
1767 case MASK(LEFT_CONTIG):
1768 case MASK(RIGHT_CONTIG):
1769 /*
1770 * These cases are all impossible.
1771 */
1772 ASSERT(0);
1773 }
1774 *curp = cur;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001775 if (delta) {
1776 temp2 += temp;
1777 if (delta->xed_startoff > temp)
1778 delta->xed_startoff = temp;
1779 if (delta->xed_blockcount < temp2)
1780 delta->xed_blockcount = temp2;
1781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782done:
1783 *logflagsp = rval;
1784 return error;
1785#undef LEFT
1786#undef RIGHT
1787#undef PREV
1788#undef MASK
1789#undef MASK2
1790#undef MASK3
1791#undef MASK4
1792#undef STATE_SET
1793#undef STATE_TEST
1794#undef STATE_SET_TEST
1795#undef SWITCH_STATE
1796}
1797
1798/*
1799 * Called by xfs_bmap_add_extent to handle cases converting a hole
1800 * to a delayed allocation.
1801 */
1802/*ARGSUSED*/
1803STATIC int /* error */
1804xfs_bmap_add_extent_hole_delay(
1805 xfs_inode_t *ip, /* incore inode pointer */
1806 xfs_extnum_t idx, /* extent number to update/insert */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001807 xfs_bmbt_irec_t *new, /* new data to add to file extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 int *logflagsp, /* inode logging flags */
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001809 xfs_extdelta_t *delta, /* Change made to incore extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 int rsvd) /* OK to allocate reserved blocks */
1811{
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10001812 xfs_bmbt_rec_host_t *ep; /* extent record for idx */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001813 xfs_ifork_t *ifp; /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 xfs_bmbt_irec_t left; /* left neighbor extent entry */
1815 xfs_filblks_t newlen=0; /* new indirect size */
1816 xfs_filblks_t oldlen=0; /* old indirect size */
1817 xfs_bmbt_irec_t right; /* right neighbor extent entry */
1818 int state; /* state bits, accessed thru macros */
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001819 xfs_filblks_t temp=0; /* temp for indirect calculations */
1820 xfs_filblks_t temp2=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 enum { /* bit number definitions for state */
1822 LEFT_CONTIG, RIGHT_CONTIG,
1823 LEFT_DELAY, RIGHT_DELAY,
1824 LEFT_VALID, RIGHT_VALID
1825 };
1826
1827#define MASK(b) (1 << (b))
1828#define MASK2(a,b) (MASK(a) | MASK(b))
1829#define STATE_SET(b,v) ((v) ? (state |= MASK(b)) : (state &= ~MASK(b)))
1830#define STATE_TEST(b) (state & MASK(b))
1831#define STATE_SET_TEST(b,v) ((v) ? ((state |= MASK(b)), 1) : \
1832 ((state &= ~MASK(b)), 0))
1833#define SWITCH_STATE (state & MASK2(LEFT_CONTIG, RIGHT_CONTIG))
1834
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001835 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
1836 ep = xfs_iext_get_ext(ifp, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 state = 0;
1838 ASSERT(ISNULLSTARTBLOCK(new->br_startblock));
1839 /*
1840 * Check and set flags if this segment has a left neighbor
1841 */
1842 if (STATE_SET_TEST(LEFT_VALID, idx > 0)) {
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001843 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, idx - 1), &left);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 STATE_SET(LEFT_DELAY, ISNULLSTARTBLOCK(left.br_startblock));
1845 }
1846 /*
1847 * Check and set flags if the current (right) segment exists.
1848 * If it doesn't exist, we're converting the hole at end-of-file.
1849 */
1850 if (STATE_SET_TEST(RIGHT_VALID,
1851 idx <
1852 ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t))) {
1853 xfs_bmbt_get_all(ep, &right);
1854 STATE_SET(RIGHT_DELAY, ISNULLSTARTBLOCK(right.br_startblock));
1855 }
1856 /*
1857 * Set contiguity flags on the left and right neighbors.
1858 * Don't let extents get too large, even if the pieces are contiguous.
1859 */
1860 STATE_SET(LEFT_CONTIG,
1861 STATE_TEST(LEFT_VALID) && STATE_TEST(LEFT_DELAY) &&
1862 left.br_startoff + left.br_blockcount == new->br_startoff &&
1863 left.br_blockcount + new->br_blockcount <= MAXEXTLEN);
1864 STATE_SET(RIGHT_CONTIG,
1865 STATE_TEST(RIGHT_VALID) && STATE_TEST(RIGHT_DELAY) &&
1866 new->br_startoff + new->br_blockcount == right.br_startoff &&
1867 new->br_blockcount + right.br_blockcount <= MAXEXTLEN &&
1868 (!STATE_TEST(LEFT_CONTIG) ||
1869 (left.br_blockcount + new->br_blockcount +
1870 right.br_blockcount <= MAXEXTLEN)));
1871 /*
1872 * Switch out based on the contiguity flags.
1873 */
1874 switch (SWITCH_STATE) {
1875
1876 case MASK2(LEFT_CONTIG, RIGHT_CONTIG):
1877 /*
1878 * New allocation is contiguous with delayed allocations
1879 * on the left and on the right.
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001880 * Merge all three into a single extent record.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 */
1882 temp = left.br_blockcount + new->br_blockcount +
1883 right.br_blockcount;
Eric Sandeen3a59c942007-07-11 11:09:47 +10001884 XFS_BMAP_TRACE_PRE_UPDATE("LC|RC", ip, idx - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001886 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, idx - 1), temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 oldlen = STARTBLOCKVAL(left.br_startblock) +
1888 STARTBLOCKVAL(new->br_startblock) +
1889 STARTBLOCKVAL(right.br_startblock);
1890 newlen = xfs_bmap_worst_indlen(ip, temp);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001891 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, idx - 1),
1892 NULLSTARTBLOCK((int)newlen));
Eric Sandeen3a59c942007-07-11 11:09:47 +10001893 XFS_BMAP_TRACE_POST_UPDATE("LC|RC", ip, idx - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 XFS_DATA_FORK);
Eric Sandeen3a59c942007-07-11 11:09:47 +10001895 XFS_BMAP_TRACE_DELETE("LC|RC", ip, idx, 1, XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001896 xfs_iext_remove(ifp, idx, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 ip->i_df.if_lastex = idx - 1;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001898 /* DELTA: Two in-core extents were replaced by one. */
1899 temp2 = temp;
1900 temp = left.br_startoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 break;
1902
1903 case MASK(LEFT_CONTIG):
1904 /*
1905 * New allocation is contiguous with a delayed allocation
1906 * on the left.
1907 * Merge the new allocation with the left neighbor.
1908 */
1909 temp = left.br_blockcount + new->br_blockcount;
Eric Sandeen3a59c942007-07-11 11:09:47 +10001910 XFS_BMAP_TRACE_PRE_UPDATE("LC", ip, idx - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001912 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, idx - 1), temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 oldlen = STARTBLOCKVAL(left.br_startblock) +
1914 STARTBLOCKVAL(new->br_startblock);
1915 newlen = xfs_bmap_worst_indlen(ip, temp);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001916 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, idx - 1),
1917 NULLSTARTBLOCK((int)newlen));
Eric Sandeen3a59c942007-07-11 11:09:47 +10001918 XFS_BMAP_TRACE_POST_UPDATE("LC", ip, idx - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 XFS_DATA_FORK);
1920 ip->i_df.if_lastex = idx - 1;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001921 /* DELTA: One in-core extent grew into a hole. */
1922 temp2 = temp;
1923 temp = left.br_startoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 break;
1925
1926 case MASK(RIGHT_CONTIG):
1927 /*
1928 * New allocation is contiguous with a delayed allocation
1929 * on the right.
1930 * Merge the new allocation with the right neighbor.
1931 */
Eric Sandeen3a59c942007-07-11 11:09:47 +10001932 XFS_BMAP_TRACE_PRE_UPDATE("RC", ip, idx, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 temp = new->br_blockcount + right.br_blockcount;
1934 oldlen = STARTBLOCKVAL(new->br_startblock) +
1935 STARTBLOCKVAL(right.br_startblock);
1936 newlen = xfs_bmap_worst_indlen(ip, temp);
1937 xfs_bmbt_set_allf(ep, new->br_startoff,
1938 NULLSTARTBLOCK((int)newlen), temp, right.br_state);
Eric Sandeen3a59c942007-07-11 11:09:47 +10001939 XFS_BMAP_TRACE_POST_UPDATE("RC", ip, idx, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 ip->i_df.if_lastex = idx;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001941 /* DELTA: One in-core extent grew into a hole. */
1942 temp2 = temp;
1943 temp = new->br_startoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 break;
1945
1946 case 0:
1947 /*
1948 * New allocation is not contiguous with another
1949 * delayed allocation.
1950 * Insert a new entry.
1951 */
1952 oldlen = newlen = 0;
Eric Sandeen3a59c942007-07-11 11:09:47 +10001953 XFS_BMAP_TRACE_INSERT("0", ip, idx, 1, new, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 XFS_DATA_FORK);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001955 xfs_iext_insert(ifp, idx, 1, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 ip->i_df.if_lastex = idx;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001957 /* DELTA: A new in-core extent was added in a hole. */
1958 temp2 = new->br_blockcount;
1959 temp = new->br_startoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 break;
1961 }
1962 if (oldlen != newlen) {
1963 ASSERT(oldlen > newlen);
1964 xfs_mod_incore_sb(ip->i_mount, XFS_SBS_FDBLOCKS,
David Chinner20f4ebf2007-02-10 18:36:10 +11001965 (int64_t)(oldlen - newlen), rsvd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 /*
1967 * Nothing to do for disk quota accounting here.
1968 */
1969 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001970 if (delta) {
1971 temp2 += temp;
1972 if (delta->xed_startoff > temp)
1973 delta->xed_startoff = temp;
1974 if (delta->xed_blockcount < temp2)
1975 delta->xed_blockcount = temp2;
1976 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 *logflagsp = 0;
1978 return 0;
1979#undef MASK
1980#undef MASK2
1981#undef STATE_SET
1982#undef STATE_TEST
1983#undef STATE_SET_TEST
1984#undef SWITCH_STATE
1985}
1986
1987/*
1988 * Called by xfs_bmap_add_extent to handle cases converting a hole
1989 * to a real allocation.
1990 */
1991STATIC int /* error */
1992xfs_bmap_add_extent_hole_real(
1993 xfs_inode_t *ip, /* incore inode pointer */
1994 xfs_extnum_t idx, /* extent number to update/insert */
1995 xfs_btree_cur_t *cur, /* if null, not a btree */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001996 xfs_bmbt_irec_t *new, /* new data to add to file extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 int *logflagsp, /* inode logging flags */
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001998 xfs_extdelta_t *delta, /* Change made to incore extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 int whichfork) /* data or attr fork */
2000{
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10002001 xfs_bmbt_rec_host_t *ep; /* pointer to extent entry ins. point */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 int i; /* temp state */
2004 xfs_ifork_t *ifp; /* inode fork pointer */
2005 xfs_bmbt_irec_t left; /* left neighbor extent entry */
2006 xfs_bmbt_irec_t right; /* right neighbor extent entry */
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002007 int rval=0; /* return value (logging flags) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 int state; /* state bits, accessed thru macros */
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002009 xfs_filblks_t temp=0;
2010 xfs_filblks_t temp2=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 enum { /* bit number definitions for state */
2012 LEFT_CONTIG, RIGHT_CONTIG,
2013 LEFT_DELAY, RIGHT_DELAY,
2014 LEFT_VALID, RIGHT_VALID
2015 };
2016
2017#define MASK(b) (1 << (b))
2018#define MASK2(a,b) (MASK(a) | MASK(b))
2019#define STATE_SET(b,v) ((v) ? (state |= MASK(b)) : (state &= ~MASK(b)))
2020#define STATE_TEST(b) (state & MASK(b))
2021#define STATE_SET_TEST(b,v) ((v) ? ((state |= MASK(b)), 1) : \
2022 ((state &= ~MASK(b)), 0))
2023#define SWITCH_STATE (state & MASK2(LEFT_CONTIG, RIGHT_CONTIG))
2024
2025 ifp = XFS_IFORK_PTR(ip, whichfork);
2026 ASSERT(idx <= ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t));
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002027 ep = xfs_iext_get_ext(ifp, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 state = 0;
2029 /*
2030 * Check and set flags if this segment has a left neighbor.
2031 */
2032 if (STATE_SET_TEST(LEFT_VALID, idx > 0)) {
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002033 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, idx - 1), &left);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 STATE_SET(LEFT_DELAY, ISNULLSTARTBLOCK(left.br_startblock));
2035 }
2036 /*
2037 * Check and set flags if this segment has a current value.
2038 * Not true if we're inserting into the "hole" at eof.
2039 */
2040 if (STATE_SET_TEST(RIGHT_VALID,
2041 idx <
2042 ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t))) {
2043 xfs_bmbt_get_all(ep, &right);
2044 STATE_SET(RIGHT_DELAY, ISNULLSTARTBLOCK(right.br_startblock));
2045 }
2046 /*
2047 * We're inserting a real allocation between "left" and "right".
2048 * Set the contiguity flags. Don't let extents get too large.
2049 */
2050 STATE_SET(LEFT_CONTIG,
2051 STATE_TEST(LEFT_VALID) && !STATE_TEST(LEFT_DELAY) &&
2052 left.br_startoff + left.br_blockcount == new->br_startoff &&
2053 left.br_startblock + left.br_blockcount == new->br_startblock &&
2054 left.br_state == new->br_state &&
2055 left.br_blockcount + new->br_blockcount <= MAXEXTLEN);
2056 STATE_SET(RIGHT_CONTIG,
2057 STATE_TEST(RIGHT_VALID) && !STATE_TEST(RIGHT_DELAY) &&
2058 new->br_startoff + new->br_blockcount == right.br_startoff &&
2059 new->br_startblock + new->br_blockcount ==
2060 right.br_startblock &&
2061 new->br_state == right.br_state &&
2062 new->br_blockcount + right.br_blockcount <= MAXEXTLEN &&
2063 (!STATE_TEST(LEFT_CONTIG) ||
2064 left.br_blockcount + new->br_blockcount +
2065 right.br_blockcount <= MAXEXTLEN));
2066
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002067 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 /*
2069 * Select which case we're in here, and implement it.
2070 */
2071 switch (SWITCH_STATE) {
2072
2073 case MASK2(LEFT_CONTIG, RIGHT_CONTIG):
2074 /*
2075 * New allocation is contiguous with real allocations on the
2076 * left and on the right.
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002077 * Merge all three into a single extent record.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 */
Eric Sandeen3a59c942007-07-11 11:09:47 +10002079 XFS_BMAP_TRACE_PRE_UPDATE("LC|RC", ip, idx - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 whichfork);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002081 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, idx - 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 left.br_blockcount + new->br_blockcount +
2083 right.br_blockcount);
Eric Sandeen3a59c942007-07-11 11:09:47 +10002084 XFS_BMAP_TRACE_POST_UPDATE("LC|RC", ip, idx - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 whichfork);
Eric Sandeen3a59c942007-07-11 11:09:47 +10002086 XFS_BMAP_TRACE_DELETE("LC|RC", ip, idx, 1, whichfork);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002087 xfs_iext_remove(ifp, idx, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 ifp->if_lastex = idx - 1;
2089 XFS_IFORK_NEXT_SET(ip, whichfork,
2090 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
2091 if (cur == NULL) {
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002092 rval = XFS_ILOG_CORE | XFS_ILOG_FEXT(whichfork);
2093 } else {
2094 rval = XFS_ILOG_CORE;
2095 if ((error = xfs_bmbt_lookup_eq(cur,
2096 right.br_startoff,
2097 right.br_startblock,
2098 right.br_blockcount, &i)))
2099 goto done;
2100 ASSERT(i == 1);
2101 if ((error = xfs_bmbt_delete(cur, &i)))
2102 goto done;
2103 ASSERT(i == 1);
2104 if ((error = xfs_bmbt_decrement(cur, 0, &i)))
2105 goto done;
2106 ASSERT(i == 1);
2107 if ((error = xfs_bmbt_update(cur, left.br_startoff,
2108 left.br_startblock,
2109 left.br_blockcount +
2110 new->br_blockcount +
2111 right.br_blockcount,
2112 left.br_state)))
2113 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002115 /* DELTA: Two in-core extents were replaced by one. */
2116 temp = left.br_startoff;
2117 temp2 = left.br_blockcount +
2118 new->br_blockcount +
2119 right.br_blockcount;
2120 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122 case MASK(LEFT_CONTIG):
2123 /*
2124 * New allocation is contiguous with a real allocation
2125 * on the left.
2126 * Merge the new allocation with the left neighbor.
2127 */
Eric Sandeen3a59c942007-07-11 11:09:47 +10002128 XFS_BMAP_TRACE_PRE_UPDATE("LC", ip, idx - 1, whichfork);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002129 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, idx - 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 left.br_blockcount + new->br_blockcount);
Eric Sandeen3a59c942007-07-11 11:09:47 +10002131 XFS_BMAP_TRACE_POST_UPDATE("LC", ip, idx - 1, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 ifp->if_lastex = idx - 1;
2133 if (cur == NULL) {
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002134 rval = XFS_ILOG_FEXT(whichfork);
2135 } else {
2136 rval = 0;
2137 if ((error = xfs_bmbt_lookup_eq(cur,
2138 left.br_startoff,
2139 left.br_startblock,
2140 left.br_blockcount, &i)))
2141 goto done;
2142 ASSERT(i == 1);
2143 if ((error = xfs_bmbt_update(cur, left.br_startoff,
2144 left.br_startblock,
2145 left.br_blockcount +
2146 new->br_blockcount,
2147 left.br_state)))
2148 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002150 /* DELTA: One in-core extent grew. */
2151 temp = left.br_startoff;
2152 temp2 = left.br_blockcount +
2153 new->br_blockcount;
2154 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
2156 case MASK(RIGHT_CONTIG):
2157 /*
2158 * New allocation is contiguous with a real allocation
2159 * on the right.
2160 * Merge the new allocation with the right neighbor.
2161 */
Eric Sandeen3a59c942007-07-11 11:09:47 +10002162 XFS_BMAP_TRACE_PRE_UPDATE("RC", ip, idx, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 xfs_bmbt_set_allf(ep, new->br_startoff, new->br_startblock,
2164 new->br_blockcount + right.br_blockcount,
2165 right.br_state);
Eric Sandeen3a59c942007-07-11 11:09:47 +10002166 XFS_BMAP_TRACE_POST_UPDATE("RC", ip, idx, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 ifp->if_lastex = idx;
2168 if (cur == NULL) {
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002169 rval = XFS_ILOG_FEXT(whichfork);
2170 } else {
2171 rval = 0;
2172 if ((error = xfs_bmbt_lookup_eq(cur,
2173 right.br_startoff,
2174 right.br_startblock,
2175 right.br_blockcount, &i)))
2176 goto done;
2177 ASSERT(i == 1);
2178 if ((error = xfs_bmbt_update(cur, new->br_startoff,
2179 new->br_startblock,
2180 new->br_blockcount +
2181 right.br_blockcount,
2182 right.br_state)))
2183 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002185 /* DELTA: One in-core extent grew. */
2186 temp = new->br_startoff;
2187 temp2 = new->br_blockcount +
2188 right.br_blockcount;
2189 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
2191 case 0:
2192 /*
2193 * New allocation is not contiguous with another
2194 * real allocation.
2195 * Insert a new entry.
2196 */
Eric Sandeen3a59c942007-07-11 11:09:47 +10002197 XFS_BMAP_TRACE_INSERT("0", ip, idx, 1, new, NULL, whichfork);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002198 xfs_iext_insert(ifp, idx, 1, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 ifp->if_lastex = idx;
2200 XFS_IFORK_NEXT_SET(ip, whichfork,
2201 XFS_IFORK_NEXTENTS(ip, whichfork) + 1);
2202 if (cur == NULL) {
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002203 rval = XFS_ILOG_CORE | XFS_ILOG_FEXT(whichfork);
2204 } else {
2205 rval = XFS_ILOG_CORE;
2206 if ((error = xfs_bmbt_lookup_eq(cur,
2207 new->br_startoff,
2208 new->br_startblock,
2209 new->br_blockcount, &i)))
2210 goto done;
2211 ASSERT(i == 0);
2212 cur->bc_rec.b.br_state = new->br_state;
2213 if ((error = xfs_bmbt_insert(cur, &i)))
2214 goto done;
2215 ASSERT(i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002217 /* DELTA: A new extent was added in a hole. */
2218 temp = new->br_startoff;
2219 temp2 = new->br_blockcount;
2220 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002222 if (delta) {
2223 temp2 += temp;
2224 if (delta->xed_startoff > temp)
2225 delta->xed_startoff = temp;
2226 if (delta->xed_blockcount < temp2)
2227 delta->xed_blockcount = temp2;
2228 }
2229done:
2230 *logflagsp = rval;
2231 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232#undef MASK
2233#undef MASK2
2234#undef STATE_SET
2235#undef STATE_TEST
2236#undef STATE_SET_TEST
2237#undef SWITCH_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238}
2239
Nathan Scottdd9f4382006-01-11 15:28:28 +11002240/*
2241 * Adjust the size of the new extent based on di_extsize and rt extsize.
2242 */
2243STATIC int
2244xfs_bmap_extsize_align(
2245 xfs_mount_t *mp,
2246 xfs_bmbt_irec_t *gotp, /* next extent pointer */
2247 xfs_bmbt_irec_t *prevp, /* previous extent pointer */
2248 xfs_extlen_t extsz, /* align to this extent size */
2249 int rt, /* is this a realtime inode? */
2250 int eof, /* is extent at end-of-file? */
2251 int delay, /* creating delalloc extent? */
2252 int convert, /* overwriting unwritten extent? */
2253 xfs_fileoff_t *offp, /* in/out: aligned offset */
2254 xfs_extlen_t *lenp) /* in/out: aligned length */
2255{
2256 xfs_fileoff_t orig_off; /* original offset */
2257 xfs_extlen_t orig_alen; /* original length */
2258 xfs_fileoff_t orig_end; /* original off+len */
2259 xfs_fileoff_t nexto; /* next file offset */
2260 xfs_fileoff_t prevo; /* previous file offset */
2261 xfs_fileoff_t align_off; /* temp for offset */
2262 xfs_extlen_t align_alen; /* temp for length */
2263 xfs_extlen_t temp; /* temp for calculations */
2264
2265 if (convert)
2266 return 0;
2267
2268 orig_off = align_off = *offp;
2269 orig_alen = align_alen = *lenp;
2270 orig_end = orig_off + orig_alen;
2271
2272 /*
2273 * If this request overlaps an existing extent, then don't
2274 * attempt to perform any additional alignment.
2275 */
2276 if (!delay && !eof &&
2277 (orig_off >= gotp->br_startoff) &&
2278 (orig_end <= gotp->br_startoff + gotp->br_blockcount)) {
2279 return 0;
2280 }
2281
2282 /*
2283 * If the file offset is unaligned vs. the extent size
2284 * we need to align it. This will be possible unless
2285 * the file was previously written with a kernel that didn't
2286 * perform this alignment, or if a truncate shot us in the
2287 * foot.
2288 */
2289 temp = do_mod(orig_off, extsz);
2290 if (temp) {
2291 align_alen += temp;
2292 align_off -= temp;
2293 }
2294 /*
2295 * Same adjustment for the end of the requested area.
2296 */
2297 if ((temp = (align_alen % extsz))) {
2298 align_alen += extsz - temp;
2299 }
2300 /*
2301 * If the previous block overlaps with this proposed allocation
2302 * then move the start forward without adjusting the length.
2303 */
2304 if (prevp->br_startoff != NULLFILEOFF) {
2305 if (prevp->br_startblock == HOLESTARTBLOCK)
2306 prevo = prevp->br_startoff;
2307 else
2308 prevo = prevp->br_startoff + prevp->br_blockcount;
2309 } else
2310 prevo = 0;
2311 if (align_off != orig_off && align_off < prevo)
2312 align_off = prevo;
2313 /*
2314 * If the next block overlaps with this proposed allocation
2315 * then move the start back without adjusting the length,
2316 * but not before offset 0.
2317 * This may of course make the start overlap previous block,
2318 * and if we hit the offset 0 limit then the next block
2319 * can still overlap too.
2320 */
2321 if (!eof && gotp->br_startoff != NULLFILEOFF) {
2322 if ((delay && gotp->br_startblock == HOLESTARTBLOCK) ||
2323 (!delay && gotp->br_startblock == DELAYSTARTBLOCK))
2324 nexto = gotp->br_startoff + gotp->br_blockcount;
2325 else
2326 nexto = gotp->br_startoff;
2327 } else
2328 nexto = NULLFILEOFF;
2329 if (!eof &&
2330 align_off + align_alen != orig_end &&
2331 align_off + align_alen > nexto)
2332 align_off = nexto > align_alen ? nexto - align_alen : 0;
2333 /*
2334 * If we're now overlapping the next or previous extent that
2335 * means we can't fit an extsz piece in this hole. Just move
2336 * the start forward to the first valid spot and set
2337 * the length so we hit the end.
2338 */
2339 if (align_off != orig_off && align_off < prevo)
2340 align_off = prevo;
2341 if (align_off + align_alen != orig_end &&
2342 align_off + align_alen > nexto &&
2343 nexto != NULLFILEOFF) {
2344 ASSERT(nexto > prevo);
2345 align_alen = nexto - align_off;
2346 }
2347
2348 /*
2349 * If realtime, and the result isn't a multiple of the realtime
2350 * extent size we need to remove blocks until it is.
2351 */
2352 if (rt && (temp = (align_alen % mp->m_sb.sb_rextsize))) {
2353 /*
2354 * We're not covering the original request, or
2355 * we won't be able to once we fix the length.
2356 */
2357 if (orig_off < align_off ||
2358 orig_end > align_off + align_alen ||
2359 align_alen - temp < orig_alen)
2360 return XFS_ERROR(EINVAL);
2361 /*
2362 * Try to fix it by moving the start up.
2363 */
2364 if (align_off + temp <= orig_off) {
2365 align_alen -= temp;
2366 align_off += temp;
2367 }
2368 /*
2369 * Try to fix it by moving the end in.
2370 */
2371 else if (align_off + align_alen - temp >= orig_end)
2372 align_alen -= temp;
2373 /*
2374 * Set the start to the minimum then trim the length.
2375 */
2376 else {
2377 align_alen -= orig_off - align_off;
2378 align_off = orig_off;
2379 align_alen -= align_alen % mp->m_sb.sb_rextsize;
2380 }
2381 /*
2382 * Result doesn't cover the request, fail it.
2383 */
2384 if (orig_off < align_off || orig_end > align_off + align_alen)
2385 return XFS_ERROR(EINVAL);
2386 } else {
2387 ASSERT(orig_off >= align_off);
2388 ASSERT(orig_end <= align_off + align_alen);
2389 }
2390
2391#ifdef DEBUG
2392 if (!eof && gotp->br_startoff != NULLFILEOFF)
2393 ASSERT(align_off + align_alen <= gotp->br_startoff);
2394 if (prevp->br_startoff != NULLFILEOFF)
2395 ASSERT(align_off >= prevp->br_startoff + prevp->br_blockcount);
2396#endif
2397
2398 *lenp = align_alen;
2399 *offp = align_off;
2400 return 0;
2401}
2402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403#define XFS_ALLOC_GAP_UNITS 4
2404
Nathan Scottdd9f4382006-01-11 15:28:28 +11002405STATIC int
Nathan Scotta365bdd2006-03-14 13:34:16 +11002406xfs_bmap_adjacent(
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 xfs_bmalloca_t *ap) /* bmap alloc argument struct */
2408{
2409 xfs_fsblock_t adjust; /* adjustment to block numbers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */
2411 xfs_mount_t *mp; /* mount point structure */
2412 int nullfb; /* true if ap->firstblock isn't set */
2413 int rt; /* true if inode is realtime */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
2415#define ISVALID(x,y) \
2416 (rt ? \
2417 (x) < mp->m_sb.sb_rblocks : \
2418 XFS_FSB_TO_AGNO(mp, x) == XFS_FSB_TO_AGNO(mp, y) && \
2419 XFS_FSB_TO_AGNO(mp, x) < mp->m_sb.sb_agcount && \
2420 XFS_FSB_TO_AGBNO(mp, x) < mp->m_sb.sb_agblocks)
2421
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 mp = ap->ip->i_mount;
2423 nullfb = ap->firstblock == NULLFSBLOCK;
2424 rt = XFS_IS_REALTIME_INODE(ap->ip) && ap->userdata;
2425 fb_agno = nullfb ? NULLAGNUMBER : XFS_FSB_TO_AGNO(mp, ap->firstblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 /*
2427 * If allocating at eof, and there's a previous real block,
2428 * try to use it's last block as our starting point.
2429 */
2430 if (ap->eof && ap->prevp->br_startoff != NULLFILEOFF &&
2431 !ISNULLSTARTBLOCK(ap->prevp->br_startblock) &&
2432 ISVALID(ap->prevp->br_startblock + ap->prevp->br_blockcount,
2433 ap->prevp->br_startblock)) {
2434 ap->rval = ap->prevp->br_startblock + ap->prevp->br_blockcount;
2435 /*
2436 * Adjust for the gap between prevp and us.
2437 */
2438 adjust = ap->off -
2439 (ap->prevp->br_startoff + ap->prevp->br_blockcount);
2440 if (adjust &&
2441 ISVALID(ap->rval + adjust, ap->prevp->br_startblock))
2442 ap->rval += adjust;
2443 }
2444 /*
2445 * If not at eof, then compare the two neighbor blocks.
2446 * Figure out whether either one gives us a good starting point,
2447 * and pick the better one.
2448 */
2449 else if (!ap->eof) {
2450 xfs_fsblock_t gotbno; /* right side block number */
2451 xfs_fsblock_t gotdiff=0; /* right side difference */
2452 xfs_fsblock_t prevbno; /* left side block number */
2453 xfs_fsblock_t prevdiff=0; /* left side difference */
2454
2455 /*
2456 * If there's a previous (left) block, select a requested
2457 * start block based on it.
2458 */
2459 if (ap->prevp->br_startoff != NULLFILEOFF &&
2460 !ISNULLSTARTBLOCK(ap->prevp->br_startblock) &&
2461 (prevbno = ap->prevp->br_startblock +
2462 ap->prevp->br_blockcount) &&
2463 ISVALID(prevbno, ap->prevp->br_startblock)) {
2464 /*
2465 * Calculate gap to end of previous block.
2466 */
2467 adjust = prevdiff = ap->off -
2468 (ap->prevp->br_startoff +
2469 ap->prevp->br_blockcount);
2470 /*
2471 * Figure the startblock based on the previous block's
2472 * end and the gap size.
2473 * Heuristic!
2474 * If the gap is large relative to the piece we're
2475 * allocating, or using it gives us an invalid block
2476 * number, then just use the end of the previous block.
2477 */
2478 if (prevdiff <= XFS_ALLOC_GAP_UNITS * ap->alen &&
2479 ISVALID(prevbno + prevdiff,
2480 ap->prevp->br_startblock))
2481 prevbno += adjust;
2482 else
2483 prevdiff += adjust;
2484 /*
2485 * If the firstblock forbids it, can't use it,
2486 * must use default.
2487 */
2488 if (!rt && !nullfb &&
2489 XFS_FSB_TO_AGNO(mp, prevbno) != fb_agno)
2490 prevbno = NULLFSBLOCK;
2491 }
2492 /*
2493 * No previous block or can't follow it, just default.
2494 */
2495 else
2496 prevbno = NULLFSBLOCK;
2497 /*
2498 * If there's a following (right) block, select a requested
2499 * start block based on it.
2500 */
2501 if (!ISNULLSTARTBLOCK(ap->gotp->br_startblock)) {
2502 /*
2503 * Calculate gap to start of next block.
2504 */
2505 adjust = gotdiff = ap->gotp->br_startoff - ap->off;
2506 /*
2507 * Figure the startblock based on the next block's
2508 * start and the gap size.
2509 */
2510 gotbno = ap->gotp->br_startblock;
2511 /*
2512 * Heuristic!
2513 * If the gap is large relative to the piece we're
2514 * allocating, or using it gives us an invalid block
2515 * number, then just use the start of the next block
2516 * offset by our length.
2517 */
2518 if (gotdiff <= XFS_ALLOC_GAP_UNITS * ap->alen &&
2519 ISVALID(gotbno - gotdiff, gotbno))
2520 gotbno -= adjust;
2521 else if (ISVALID(gotbno - ap->alen, gotbno)) {
2522 gotbno -= ap->alen;
2523 gotdiff += adjust - ap->alen;
2524 } else
2525 gotdiff += adjust;
2526 /*
2527 * If the firstblock forbids it, can't use it,
2528 * must use default.
2529 */
2530 if (!rt && !nullfb &&
2531 XFS_FSB_TO_AGNO(mp, gotbno) != fb_agno)
2532 gotbno = NULLFSBLOCK;
2533 }
2534 /*
2535 * No next block, just default.
2536 */
2537 else
2538 gotbno = NULLFSBLOCK;
2539 /*
2540 * If both valid, pick the better one, else the only good
2541 * one, else ap->rval is already set (to 0 or the inode block).
2542 */
2543 if (prevbno != NULLFSBLOCK && gotbno != NULLFSBLOCK)
2544 ap->rval = prevdiff <= gotdiff ? prevbno : gotbno;
2545 else if (prevbno != NULLFSBLOCK)
2546 ap->rval = prevbno;
2547 else if (gotbno != NULLFSBLOCK)
2548 ap->rval = gotbno;
2549 }
Nathan Scotta365bdd2006-03-14 13:34:16 +11002550#undef ISVALID
2551 return 0;
2552}
2553
2554STATIC int
2555xfs_bmap_rtalloc(
2556 xfs_bmalloca_t *ap) /* bmap alloc argument struct */
2557{
2558 xfs_alloctype_t atype = 0; /* type for allocation routines */
2559 int error; /* error return value */
2560 xfs_mount_t *mp; /* mount point structure */
2561 xfs_extlen_t prod = 0; /* product factor for allocators */
2562 xfs_extlen_t ralen = 0; /* realtime allocation length */
2563 xfs_extlen_t align; /* minimum allocation alignment */
Nathan Scotta365bdd2006-03-14 13:34:16 +11002564 xfs_rtblock_t rtb;
2565
2566 mp = ap->ip->i_mount;
David Chinner957d0eb2007-06-18 16:50:37 +10002567 align = xfs_get_extsz_hint(ap->ip);
Nathan Scotta365bdd2006-03-14 13:34:16 +11002568 prod = align / mp->m_sb.sb_rextsize;
2569 error = xfs_bmap_extsize_align(mp, ap->gotp, ap->prevp,
2570 align, 1, ap->eof, 0,
2571 ap->conv, &ap->off, &ap->alen);
2572 if (error)
2573 return error;
2574 ASSERT(ap->alen);
2575 ASSERT(ap->alen % mp->m_sb.sb_rextsize == 0);
2576
2577 /*
2578 * If the offset & length are not perfectly aligned
2579 * then kill prod, it will just get us in trouble.
2580 */
2581 if (do_mod(ap->off, align) || ap->alen % align)
2582 prod = 1;
2583 /*
2584 * Set ralen to be the actual requested length in rtextents.
2585 */
2586 ralen = ap->alen / mp->m_sb.sb_rextsize;
2587 /*
2588 * If the old value was close enough to MAXEXTLEN that
2589 * we rounded up to it, cut it back so it's valid again.
2590 * Note that if it's a really large request (bigger than
2591 * MAXEXTLEN), we don't hear about that number, and can't
2592 * adjust the starting point to match it.
2593 */
2594 if (ralen * mp->m_sb.sb_rextsize >= MAXEXTLEN)
2595 ralen = MAXEXTLEN / mp->m_sb.sb_rextsize;
2596 /*
2597 * If it's an allocation to an empty file at offset 0,
2598 * pick an extent that will space things out in the rt area.
2599 */
2600 if (ap->eof && ap->off == 0) {
Andrew Morton0892ccd2007-06-28 16:46:56 +10002601 xfs_rtblock_t uninitialized_var(rtx); /* realtime extent no */
2602
Nathan Scotta365bdd2006-03-14 13:34:16 +11002603 error = xfs_rtpick_extent(mp, ap->tp, ralen, &rtx);
2604 if (error)
2605 return error;
2606 ap->rval = rtx * mp->m_sb.sb_rextsize;
2607 } else {
2608 ap->rval = 0;
2609 }
2610
2611 xfs_bmap_adjacent(ap);
2612
2613 /*
2614 * Realtime allocation, done through xfs_rtallocate_extent.
2615 */
2616 atype = ap->rval == 0 ? XFS_ALLOCTYPE_ANY_AG : XFS_ALLOCTYPE_NEAR_BNO;
2617 do_div(ap->rval, mp->m_sb.sb_rextsize);
2618 rtb = ap->rval;
2619 ap->alen = ralen;
2620 if ((error = xfs_rtallocate_extent(ap->tp, ap->rval, 1, ap->alen,
2621 &ralen, atype, ap->wasdel, prod, &rtb)))
2622 return error;
2623 if (rtb == NULLFSBLOCK && prod > 1 &&
2624 (error = xfs_rtallocate_extent(ap->tp, ap->rval, 1,
2625 ap->alen, &ralen, atype,
2626 ap->wasdel, 1, &rtb)))
2627 return error;
2628 ap->rval = rtb;
2629 if (ap->rval != NULLFSBLOCK) {
2630 ap->rval *= mp->m_sb.sb_rextsize;
2631 ralen *= mp->m_sb.sb_rextsize;
2632 ap->alen = ralen;
2633 ap->ip->i_d.di_nblocks += ralen;
2634 xfs_trans_log_inode(ap->tp, ap->ip, XFS_ILOG_CORE);
2635 if (ap->wasdel)
2636 ap->ip->i_delayed_blks -= ralen;
2637 /*
2638 * Adjust the disk quota also. This was reserved
2639 * earlier.
2640 */
2641 XFS_TRANS_MOD_DQUOT_BYINO(mp, ap->tp, ap->ip,
2642 ap->wasdel ? XFS_TRANS_DQ_DELRTBCOUNT :
2643 XFS_TRANS_DQ_RTBCOUNT, (long) ralen);
2644 } else {
2645 ap->alen = 0;
2646 }
2647 return 0;
2648}
2649
2650STATIC int
2651xfs_bmap_btalloc(
2652 xfs_bmalloca_t *ap) /* bmap alloc argument struct */
2653{
2654 xfs_mount_t *mp; /* mount point structure */
2655 xfs_alloctype_t atype = 0; /* type for allocation routines */
2656 xfs_extlen_t align; /* minimum allocation alignment */
2657 xfs_agnumber_t ag;
2658 xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */
2659 xfs_agnumber_t startag;
2660 xfs_alloc_arg_t args;
2661 xfs_extlen_t blen;
2662 xfs_extlen_t delta;
2663 xfs_extlen_t longest;
2664 xfs_extlen_t need;
2665 xfs_extlen_t nextminlen = 0;
2666 xfs_perag_t *pag;
2667 int nullfb; /* true if ap->firstblock isn't set */
2668 int isaligned;
2669 int notinit;
2670 int tryagain;
2671 int error;
2672
2673 mp = ap->ip->i_mount;
David Chinner957d0eb2007-06-18 16:50:37 +10002674 align = ap->userdata ? xfs_get_extsz_hint(ap->ip) : 0;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002675 if (unlikely(align)) {
2676 error = xfs_bmap_extsize_align(mp, ap->gotp, ap->prevp,
2677 align, 0, ap->eof, 0, ap->conv,
2678 &ap->off, &ap->alen);
2679 ASSERT(!error);
2680 ASSERT(ap->alen);
2681 }
2682 nullfb = ap->firstblock == NULLFSBLOCK;
2683 fb_agno = nullfb ? NULLAGNUMBER : XFS_FSB_TO_AGNO(mp, ap->firstblock);
David Chinner2a82b8b2007-07-11 11:09:12 +10002684 if (nullfb) {
2685 if (ap->userdata && xfs_inode_is_filestream(ap->ip)) {
2686 ag = xfs_filestream_lookup_ag(ap->ip);
2687 ag = (ag != NULLAGNUMBER) ? ag : 0;
2688 ap->rval = XFS_AGB_TO_FSB(mp, ag, 0);
2689 } else {
2690 ap->rval = XFS_INO_TO_FSB(mp, ap->ip->i_ino);
2691 }
2692 } else
Nathan Scotta365bdd2006-03-14 13:34:16 +11002693 ap->rval = ap->firstblock;
2694
2695 xfs_bmap_adjacent(ap);
2696
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 /*
2698 * If allowed, use ap->rval; otherwise must use firstblock since
2699 * it's in the right allocation group.
2700 */
Nathan Scotta365bdd2006-03-14 13:34:16 +11002701 if (nullfb || XFS_FSB_TO_AGNO(mp, ap->rval) == fb_agno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 ;
2703 else
2704 ap->rval = ap->firstblock;
2705 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 * Normal allocation, done through xfs_alloc_vextent.
2707 */
Nathan Scotta365bdd2006-03-14 13:34:16 +11002708 tryagain = isaligned = 0;
2709 args.tp = ap->tp;
2710 args.mp = mp;
2711 args.fsbno = ap->rval;
2712 args.maxlen = MIN(ap->alen, mp->m_sb.sb_agblocks);
Yingping Lud210a282006-06-09 14:55:18 +10002713 args.firstblock = ap->firstblock;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002714 blen = 0;
2715 if (nullfb) {
David Chinner2a82b8b2007-07-11 11:09:12 +10002716 if (ap->userdata && xfs_inode_is_filestream(ap->ip))
2717 args.type = XFS_ALLOCTYPE_NEAR_BNO;
2718 else
2719 args.type = XFS_ALLOCTYPE_START_BNO;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002720 args.total = ap->total;
David Chinner2a82b8b2007-07-11 11:09:12 +10002721
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 /*
David Chinner2a82b8b2007-07-11 11:09:12 +10002723 * Search for an allocation group with a single extent
2724 * large enough for the request.
2725 *
2726 * If one isn't found, then adjust the minimum allocation
2727 * size to the largest space found.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 */
Nathan Scotta365bdd2006-03-14 13:34:16 +11002729 startag = ag = XFS_FSB_TO_AGNO(mp, args.fsbno);
David Chinner2a82b8b2007-07-11 11:09:12 +10002730 if (startag == NULLAGNUMBER)
2731 startag = ag = 0;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002732 notinit = 0;
2733 down_read(&mp->m_peraglock);
2734 while (blen < ap->alen) {
2735 pag = &mp->m_perag[ag];
2736 if (!pag->pagf_init &&
2737 (error = xfs_alloc_pagf_init(mp, args.tp,
2738 ag, XFS_ALLOC_FLAG_TRYLOCK))) {
2739 up_read(&mp->m_peraglock);
2740 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 }
Nathan Scotta365bdd2006-03-14 13:34:16 +11002742 /*
2743 * See xfs_alloc_fix_freelist...
2744 */
2745 if (pag->pagf_init) {
2746 need = XFS_MIN_FREELIST_PAG(pag, mp);
2747 delta = need > pag->pagf_flcount ?
2748 need - pag->pagf_flcount : 0;
2749 longest = (pag->pagf_longest > delta) ?
2750 (pag->pagf_longest - delta) :
2751 (pag->pagf_flcount > 0 ||
2752 pag->pagf_longest > 0);
2753 if (blen < longest)
2754 blen = longest;
2755 } else
2756 notinit = 1;
David Chinner2a82b8b2007-07-11 11:09:12 +10002757
2758 if (xfs_inode_is_filestream(ap->ip)) {
2759 if (blen >= ap->alen)
2760 break;
2761
2762 if (ap->userdata) {
2763 /*
2764 * If startag is an invalid AG, we've
2765 * come here once before and
2766 * xfs_filestream_new_ag picked the
2767 * best currently available.
2768 *
2769 * Don't continue looping, since we
2770 * could loop forever.
2771 */
2772 if (startag == NULLAGNUMBER)
2773 break;
2774
2775 error = xfs_filestream_new_ag(ap, &ag);
2776 if (error) {
2777 up_read(&mp->m_peraglock);
2778 return error;
2779 }
2780
2781 /* loop again to set 'blen'*/
2782 startag = NULLAGNUMBER;
2783 continue;
2784 }
2785 }
Nathan Scotta365bdd2006-03-14 13:34:16 +11002786 if (++ag == mp->m_sb.sb_agcount)
2787 ag = 0;
2788 if (ag == startag)
2789 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 }
Nathan Scotta365bdd2006-03-14 13:34:16 +11002791 up_read(&mp->m_peraglock);
2792 /*
2793 * Since the above loop did a BUF_TRYLOCK, it is
2794 * possible that there is space for this request.
2795 */
2796 if (notinit || blen < ap->minlen)
2797 args.minlen = ap->minlen;
2798 /*
2799 * If the best seen length is less than the request
2800 * length, use the best as the minimum.
2801 */
2802 else if (blen < ap->alen)
2803 args.minlen = blen;
2804 /*
2805 * Otherwise we've seen an extent as big as alen,
2806 * use that as the minimum.
2807 */
2808 else
2809 args.minlen = ap->alen;
David Chinner2a82b8b2007-07-11 11:09:12 +10002810
2811 /*
2812 * set the failure fallback case to look in the selected
2813 * AG as the stream may have moved.
2814 */
2815 if (xfs_inode_is_filestream(ap->ip))
2816 ap->rval = args.fsbno = XFS_AGB_TO_FSB(mp, ag, 0);
Nathan Scotta365bdd2006-03-14 13:34:16 +11002817 } else if (ap->low) {
David Chinner2a82b8b2007-07-11 11:09:12 +10002818 if (xfs_inode_is_filestream(ap->ip))
2819 args.type = XFS_ALLOCTYPE_FIRST_AG;
2820 else
2821 args.type = XFS_ALLOCTYPE_START_BNO;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002822 args.total = args.minlen = ap->minlen;
2823 } else {
2824 args.type = XFS_ALLOCTYPE_NEAR_BNO;
2825 args.total = ap->total;
2826 args.minlen = ap->minlen;
2827 }
David Chinner957d0eb2007-06-18 16:50:37 +10002828 /* apply extent size hints if obtained earlier */
2829 if (unlikely(align)) {
2830 args.prod = align;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002831 if ((args.mod = (xfs_extlen_t)do_mod(ap->off, args.prod)))
2832 args.mod = (xfs_extlen_t)(args.prod - args.mod);
Nathan Scott6fe90e6d2006-06-19 08:40:12 +10002833 } else if (mp->m_sb.sb_blocksize >= NBPP) {
Nathan Scotta365bdd2006-03-14 13:34:16 +11002834 args.prod = 1;
2835 args.mod = 0;
2836 } else {
2837 args.prod = NBPP >> mp->m_sb.sb_blocklog;
2838 if ((args.mod = (xfs_extlen_t)(do_mod(ap->off, args.prod))))
2839 args.mod = (xfs_extlen_t)(args.prod - args.mod);
2840 }
2841 /*
2842 * If we are not low on available data blocks, and the
2843 * underlying logical volume manager is a stripe, and
2844 * the file offset is zero then try to allocate data
2845 * blocks on stripe unit boundary.
2846 * NOTE: ap->aeof is only set if the allocation length
2847 * is >= the stripe unit and the allocation offset is
2848 * at the end of file.
2849 */
2850 if (!ap->low && ap->aeof) {
2851 if (!ap->off) {
2852 args.alignment = mp->m_dalign;
2853 atype = args.type;
2854 isaligned = 1;
2855 /*
2856 * Adjust for alignment
2857 */
2858 if (blen > args.alignment && blen <= ap->alen)
2859 args.minlen = blen - args.alignment;
2860 args.minalignslop = 0;
2861 } else {
2862 /*
2863 * First try an exact bno allocation.
2864 * If it fails then do a near or start bno
2865 * allocation with alignment turned on.
2866 */
2867 atype = args.type;
2868 tryagain = 1;
2869 args.type = XFS_ALLOCTYPE_THIS_BNO;
2870 args.alignment = 1;
2871 /*
2872 * Compute the minlen+alignment for the
2873 * next case. Set slop so that the value
2874 * of minlen+alignment+slop doesn't go up
2875 * between the calls.
2876 */
2877 if (blen > mp->m_dalign && blen <= ap->alen)
2878 nextminlen = blen - mp->m_dalign;
2879 else
2880 nextminlen = args.minlen;
2881 if (nextminlen + mp->m_dalign > args.minlen + 1)
2882 args.minalignslop =
2883 nextminlen + mp->m_dalign -
2884 args.minlen - 1;
2885 else
2886 args.minalignslop = 0;
2887 }
2888 } else {
2889 args.alignment = 1;
2890 args.minalignslop = 0;
2891 }
2892 args.minleft = ap->minleft;
2893 args.wasdel = ap->wasdel;
2894 args.isfl = 0;
2895 args.userdata = ap->userdata;
2896 if ((error = xfs_alloc_vextent(&args)))
2897 return error;
2898 if (tryagain && args.fsbno == NULLFSBLOCK) {
2899 /*
2900 * Exact allocation failed. Now try with alignment
2901 * turned on.
2902 */
2903 args.type = atype;
2904 args.fsbno = ap->rval;
2905 args.alignment = mp->m_dalign;
2906 args.minlen = nextminlen;
2907 args.minalignslop = 0;
2908 isaligned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 if ((error = xfs_alloc_vextent(&args)))
2910 return error;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002911 }
2912 if (isaligned && args.fsbno == NULLFSBLOCK) {
2913 /*
2914 * allocation failed, so turn off alignment and
2915 * try again.
2916 */
2917 args.type = atype;
2918 args.fsbno = ap->rval;
2919 args.alignment = 0;
2920 if ((error = xfs_alloc_vextent(&args)))
2921 return error;
2922 }
2923 if (args.fsbno == NULLFSBLOCK && nullfb &&
2924 args.minlen > ap->minlen) {
2925 args.minlen = ap->minlen;
2926 args.type = XFS_ALLOCTYPE_START_BNO;
2927 args.fsbno = ap->rval;
2928 if ((error = xfs_alloc_vextent(&args)))
2929 return error;
2930 }
2931 if (args.fsbno == NULLFSBLOCK && nullfb) {
2932 args.fsbno = 0;
2933 args.type = XFS_ALLOCTYPE_FIRST_AG;
2934 args.total = ap->minlen;
2935 args.minleft = 0;
2936 if ((error = xfs_alloc_vextent(&args)))
2937 return error;
2938 ap->low = 1;
2939 }
2940 if (args.fsbno != NULLFSBLOCK) {
2941 ap->firstblock = ap->rval = args.fsbno;
2942 ASSERT(nullfb || fb_agno == args.agno ||
2943 (ap->low && fb_agno < args.agno));
2944 ap->alen = args.len;
2945 ap->ip->i_d.di_nblocks += args.len;
2946 xfs_trans_log_inode(ap->tp, ap->ip, XFS_ILOG_CORE);
2947 if (ap->wasdel)
2948 ap->ip->i_delayed_blks -= args.len;
2949 /*
2950 * Adjust the disk quota also. This was reserved
2951 * earlier.
2952 */
2953 XFS_TRANS_MOD_DQUOT_BYINO(mp, ap->tp, ap->ip,
2954 ap->wasdel ? XFS_TRANS_DQ_DELBCOUNT :
2955 XFS_TRANS_DQ_BCOUNT,
2956 (long) args.len);
2957 } else {
2958 ap->rval = NULLFSBLOCK;
2959 ap->alen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 }
2961 return 0;
Nathan Scotta365bdd2006-03-14 13:34:16 +11002962}
2963
2964/*
2965 * xfs_bmap_alloc is called by xfs_bmapi to allocate an extent for a file.
2966 * It figures out where to ask the underlying allocator to put the new extent.
2967 */
2968STATIC int
2969xfs_bmap_alloc(
2970 xfs_bmalloca_t *ap) /* bmap alloc argument struct */
2971{
2972 if ((ap->ip->i_d.di_flags & XFS_DIFLAG_REALTIME) && ap->userdata)
2973 return xfs_bmap_rtalloc(ap);
2974 return xfs_bmap_btalloc(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975}
2976
2977/*
2978 * Transform a btree format file with only one leaf node, where the
2979 * extents list will fit in the inode, into an extents format file.
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002980 * Since the file extents are already in-core, all we have to do is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 * give up the space for the btree root and pitch the leaf block.
2982 */
2983STATIC int /* error */
2984xfs_bmap_btree_to_extents(
2985 xfs_trans_t *tp, /* transaction pointer */
2986 xfs_inode_t *ip, /* incore inode pointer */
2987 xfs_btree_cur_t *cur, /* btree cursor */
2988 int *logflagsp, /* inode logging flags */
2989 int whichfork) /* data or attr fork */
2990{
2991 /* REFERENCED */
2992 xfs_bmbt_block_t *cblock;/* child btree block */
2993 xfs_fsblock_t cbno; /* child block number */
2994 xfs_buf_t *cbp; /* child block's buffer */
2995 int error; /* error return value */
2996 xfs_ifork_t *ifp; /* inode fork data */
2997 xfs_mount_t *mp; /* mount point structure */
Christoph Hellwig576039c2006-09-28 10:58:06 +10002998 __be64 *pp; /* ptr to block address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 xfs_bmbt_block_t *rblock;/* root btree block */
3000
3001 ifp = XFS_IFORK_PTR(ip, whichfork);
3002 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
3003 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE);
3004 rblock = ifp->if_broot;
Christoph Hellwig16259e72005-11-02 15:11:25 +11003005 ASSERT(be16_to_cpu(rblock->bb_level) == 1);
3006 ASSERT(be16_to_cpu(rblock->bb_numrecs) == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 ASSERT(XFS_BMAP_BROOT_MAXRECS(ifp->if_broot_bytes) == 1);
3008 mp = ip->i_mount;
3009 pp = XFS_BMAP_BROOT_PTR_ADDR(rblock, 1, ifp->if_broot_bytes);
Christoph Hellwig576039c2006-09-28 10:58:06 +10003010 cbno = be64_to_cpu(*pp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 *logflagsp = 0;
3012#ifdef DEBUG
Christoph Hellwig576039c2006-09-28 10:58:06 +10003013 if ((error = xfs_btree_check_lptr(cur, cbno, 1)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 return error;
3015#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 if ((error = xfs_btree_read_bufl(mp, tp, cbno, 0, &cbp,
3017 XFS_BMAP_BTREE_REF)))
3018 return error;
3019 cblock = XFS_BUF_TO_BMBT_BLOCK(cbp);
3020 if ((error = xfs_btree_check_lblock(cur, cblock, 0, cbp)))
3021 return error;
3022 xfs_bmap_add_free(cbno, 1, cur->bc_private.b.flist, mp);
3023 ip->i_d.di_nblocks--;
3024 XFS_TRANS_MOD_DQUOT_BYINO(mp, tp, ip, XFS_TRANS_DQ_BCOUNT, -1L);
3025 xfs_trans_binval(tp, cbp);
3026 if (cur->bc_bufs[0] == cbp)
3027 cur->bc_bufs[0] = NULL;
3028 xfs_iroot_realloc(ip, -1, whichfork);
3029 ASSERT(ifp->if_broot == NULL);
3030 ASSERT((ifp->if_flags & XFS_IFBROOT) == 0);
3031 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS);
3032 *logflagsp = XFS_ILOG_CORE | XFS_ILOG_FEXT(whichfork);
3033 return 0;
3034}
3035
3036/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003037 * Called by xfs_bmapi to update file extent records and the btree
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 * after removing space (or undoing a delayed allocation).
3039 */
3040STATIC int /* error */
3041xfs_bmap_del_extent(
3042 xfs_inode_t *ip, /* incore inode pointer */
3043 xfs_trans_t *tp, /* current transaction pointer */
3044 xfs_extnum_t idx, /* extent number to update/delete */
3045 xfs_bmap_free_t *flist, /* list of extents to be freed */
3046 xfs_btree_cur_t *cur, /* if null, not a btree */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003047 xfs_bmbt_irec_t *del, /* data to remove from extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 int *logflagsp, /* inode logging flags */
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003049 xfs_extdelta_t *delta, /* Change made to incore extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 int whichfork, /* data or attr fork */
3051 int rsvd) /* OK to allocate reserved blocks */
3052{
3053 xfs_filblks_t da_new; /* new delay-alloc indirect blocks */
3054 xfs_filblks_t da_old; /* old delay-alloc indirect blocks */
3055 xfs_fsblock_t del_endblock=0; /* first block past del */
3056 xfs_fileoff_t del_endoff; /* first offset past del */
3057 int delay; /* current block is delayed allocated */
3058 int do_fx; /* free extent at end of routine */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003059 xfs_bmbt_rec_host_t *ep; /* current extent entry pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 int error; /* error return value */
3061 int flags; /* inode logging flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 xfs_bmbt_irec_t got; /* current extent entry */
3063 xfs_fileoff_t got_endoff; /* first offset past got */
3064 int i; /* temp state */
3065 xfs_ifork_t *ifp; /* inode fork pointer */
3066 xfs_mount_t *mp; /* mount structure */
3067 xfs_filblks_t nblks; /* quota/sb block count */
3068 xfs_bmbt_irec_t new; /* new record to be inserted */
3069 /* REFERENCED */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 uint qfield; /* quota field to update */
3071 xfs_filblks_t temp; /* for indirect length calculations */
3072 xfs_filblks_t temp2; /* for indirect length calculations */
3073
3074 XFS_STATS_INC(xs_del_exlist);
3075 mp = ip->i_mount;
3076 ifp = XFS_IFORK_PTR(ip, whichfork);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003077 ASSERT((idx >= 0) && (idx < ifp->if_bytes /
3078 (uint)sizeof(xfs_bmbt_rec_t)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 ASSERT(del->br_blockcount > 0);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003080 ep = xfs_iext_get_ext(ifp, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 xfs_bmbt_get_all(ep, &got);
3082 ASSERT(got.br_startoff <= del->br_startoff);
3083 del_endoff = del->br_startoff + del->br_blockcount;
3084 got_endoff = got.br_startoff + got.br_blockcount;
3085 ASSERT(got_endoff >= del_endoff);
3086 delay = ISNULLSTARTBLOCK(got.br_startblock);
3087 ASSERT(ISNULLSTARTBLOCK(del->br_startblock) == delay);
3088 flags = 0;
3089 qfield = 0;
3090 error = 0;
3091 /*
3092 * If deleting a real allocation, must free up the disk space.
3093 */
3094 if (!delay) {
3095 flags = XFS_ILOG_CORE;
3096 /*
3097 * Realtime allocation. Free it and record di_nblocks update.
3098 */
3099 if (whichfork == XFS_DATA_FORK &&
3100 (ip->i_d.di_flags & XFS_DIFLAG_REALTIME)) {
3101 xfs_fsblock_t bno;
3102 xfs_filblks_t len;
3103
3104 ASSERT(do_mod(del->br_blockcount,
3105 mp->m_sb.sb_rextsize) == 0);
3106 ASSERT(do_mod(del->br_startblock,
3107 mp->m_sb.sb_rextsize) == 0);
3108 bno = del->br_startblock;
3109 len = del->br_blockcount;
3110 do_div(bno, mp->m_sb.sb_rextsize);
3111 do_div(len, mp->m_sb.sb_rextsize);
3112 if ((error = xfs_rtfree_extent(ip->i_transp, bno,
3113 (xfs_extlen_t)len)))
3114 goto done;
3115 do_fx = 0;
3116 nblks = len * mp->m_sb.sb_rextsize;
3117 qfield = XFS_TRANS_DQ_RTBCOUNT;
3118 }
3119 /*
3120 * Ordinary allocation.
3121 */
3122 else {
3123 do_fx = 1;
3124 nblks = del->br_blockcount;
3125 qfield = XFS_TRANS_DQ_BCOUNT;
3126 }
3127 /*
3128 * Set up del_endblock and cur for later.
3129 */
3130 del_endblock = del->br_startblock + del->br_blockcount;
3131 if (cur) {
3132 if ((error = xfs_bmbt_lookup_eq(cur, got.br_startoff,
3133 got.br_startblock, got.br_blockcount,
3134 &i)))
3135 goto done;
3136 ASSERT(i == 1);
3137 }
3138 da_old = da_new = 0;
3139 } else {
3140 da_old = STARTBLOCKVAL(got.br_startblock);
3141 da_new = 0;
3142 nblks = 0;
3143 do_fx = 0;
3144 }
3145 /*
3146 * Set flag value to use in switch statement.
3147 * Left-contig is 2, right-contig is 1.
3148 */
3149 switch (((got.br_startoff == del->br_startoff) << 1) |
3150 (got_endoff == del_endoff)) {
3151 case 3:
3152 /*
3153 * Matches the whole extent. Delete the entry.
3154 */
Eric Sandeen3a59c942007-07-11 11:09:47 +10003155 XFS_BMAP_TRACE_DELETE("3", ip, idx, 1, whichfork);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003156 xfs_iext_remove(ifp, idx, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 ifp->if_lastex = idx;
3158 if (delay)
3159 break;
3160 XFS_IFORK_NEXT_SET(ip, whichfork,
3161 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
3162 flags |= XFS_ILOG_CORE;
3163 if (!cur) {
3164 flags |= XFS_ILOG_FEXT(whichfork);
3165 break;
3166 }
3167 if ((error = xfs_bmbt_delete(cur, &i)))
3168 goto done;
3169 ASSERT(i == 1);
3170 break;
3171
3172 case 2:
3173 /*
3174 * Deleting the first part of the extent.
3175 */
Eric Sandeen3a59c942007-07-11 11:09:47 +10003176 XFS_BMAP_TRACE_PRE_UPDATE("2", ip, idx, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 xfs_bmbt_set_startoff(ep, del_endoff);
3178 temp = got.br_blockcount - del->br_blockcount;
3179 xfs_bmbt_set_blockcount(ep, temp);
3180 ifp->if_lastex = idx;
3181 if (delay) {
3182 temp = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
3183 da_old);
3184 xfs_bmbt_set_startblock(ep, NULLSTARTBLOCK((int)temp));
Eric Sandeen3a59c942007-07-11 11:09:47 +10003185 XFS_BMAP_TRACE_POST_UPDATE("2", ip, idx,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 whichfork);
3187 da_new = temp;
3188 break;
3189 }
3190 xfs_bmbt_set_startblock(ep, del_endblock);
Eric Sandeen3a59c942007-07-11 11:09:47 +10003191 XFS_BMAP_TRACE_POST_UPDATE("2", ip, idx, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 if (!cur) {
3193 flags |= XFS_ILOG_FEXT(whichfork);
3194 break;
3195 }
3196 if ((error = xfs_bmbt_update(cur, del_endoff, del_endblock,
3197 got.br_blockcount - del->br_blockcount,
3198 got.br_state)))
3199 goto done;
3200 break;
3201
3202 case 1:
3203 /*
3204 * Deleting the last part of the extent.
3205 */
3206 temp = got.br_blockcount - del->br_blockcount;
Eric Sandeen3a59c942007-07-11 11:09:47 +10003207 XFS_BMAP_TRACE_PRE_UPDATE("1", ip, idx, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 xfs_bmbt_set_blockcount(ep, temp);
3209 ifp->if_lastex = idx;
3210 if (delay) {
3211 temp = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
3212 da_old);
3213 xfs_bmbt_set_startblock(ep, NULLSTARTBLOCK((int)temp));
Eric Sandeen3a59c942007-07-11 11:09:47 +10003214 XFS_BMAP_TRACE_POST_UPDATE("1", ip, idx,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 whichfork);
3216 da_new = temp;
3217 break;
3218 }
Eric Sandeen3a59c942007-07-11 11:09:47 +10003219 XFS_BMAP_TRACE_POST_UPDATE("1", ip, idx, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 if (!cur) {
3221 flags |= XFS_ILOG_FEXT(whichfork);
3222 break;
3223 }
3224 if ((error = xfs_bmbt_update(cur, got.br_startoff,
3225 got.br_startblock,
3226 got.br_blockcount - del->br_blockcount,
3227 got.br_state)))
3228 goto done;
3229 break;
3230
3231 case 0:
3232 /*
3233 * Deleting the middle of the extent.
3234 */
3235 temp = del->br_startoff - got.br_startoff;
Eric Sandeen3a59c942007-07-11 11:09:47 +10003236 XFS_BMAP_TRACE_PRE_UPDATE("0", ip, idx, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 xfs_bmbt_set_blockcount(ep, temp);
3238 new.br_startoff = del_endoff;
3239 temp2 = got_endoff - del_endoff;
3240 new.br_blockcount = temp2;
3241 new.br_state = got.br_state;
3242 if (!delay) {
3243 new.br_startblock = del_endblock;
3244 flags |= XFS_ILOG_CORE;
3245 if (cur) {
3246 if ((error = xfs_bmbt_update(cur,
3247 got.br_startoff,
3248 got.br_startblock, temp,
3249 got.br_state)))
3250 goto done;
3251 if ((error = xfs_bmbt_increment(cur, 0, &i)))
3252 goto done;
3253 cur->bc_rec.b = new;
3254 error = xfs_bmbt_insert(cur, &i);
3255 if (error && error != ENOSPC)
3256 goto done;
3257 /*
3258 * If get no-space back from btree insert,
3259 * it tried a split, and we have a zero
3260 * block reservation.
3261 * Fix up our state and return the error.
3262 */
3263 if (error == ENOSPC) {
3264 /*
3265 * Reset the cursor, don't trust
3266 * it after any insert operation.
3267 */
3268 if ((error = xfs_bmbt_lookup_eq(cur,
3269 got.br_startoff,
3270 got.br_startblock,
3271 temp, &i)))
3272 goto done;
3273 ASSERT(i == 1);
3274 /*
3275 * Update the btree record back
3276 * to the original value.
3277 */
3278 if ((error = xfs_bmbt_update(cur,
3279 got.br_startoff,
3280 got.br_startblock,
3281 got.br_blockcount,
3282 got.br_state)))
3283 goto done;
3284 /*
3285 * Reset the extent record back
3286 * to the original value.
3287 */
3288 xfs_bmbt_set_blockcount(ep,
3289 got.br_blockcount);
3290 flags = 0;
3291 error = XFS_ERROR(ENOSPC);
3292 goto done;
3293 }
3294 ASSERT(i == 1);
3295 } else
3296 flags |= XFS_ILOG_FEXT(whichfork);
3297 XFS_IFORK_NEXT_SET(ip, whichfork,
3298 XFS_IFORK_NEXTENTS(ip, whichfork) + 1);
3299 } else {
3300 ASSERT(whichfork == XFS_DATA_FORK);
3301 temp = xfs_bmap_worst_indlen(ip, temp);
3302 xfs_bmbt_set_startblock(ep, NULLSTARTBLOCK((int)temp));
3303 temp2 = xfs_bmap_worst_indlen(ip, temp2);
3304 new.br_startblock = NULLSTARTBLOCK((int)temp2);
3305 da_new = temp + temp2;
3306 while (da_new > da_old) {
3307 if (temp) {
3308 temp--;
3309 da_new--;
3310 xfs_bmbt_set_startblock(ep,
3311 NULLSTARTBLOCK((int)temp));
3312 }
3313 if (da_new == da_old)
3314 break;
3315 if (temp2) {
3316 temp2--;
3317 da_new--;
3318 new.br_startblock =
3319 NULLSTARTBLOCK((int)temp2);
3320 }
3321 }
3322 }
Eric Sandeen3a59c942007-07-11 11:09:47 +10003323 XFS_BMAP_TRACE_POST_UPDATE("0", ip, idx, whichfork);
3324 XFS_BMAP_TRACE_INSERT("0", ip, idx + 1, 1, &new, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 whichfork);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003326 xfs_iext_insert(ifp, idx + 1, 1, &new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 ifp->if_lastex = idx + 1;
3328 break;
3329 }
3330 /*
3331 * If we need to, add to list of extents to delete.
3332 */
3333 if (do_fx)
3334 xfs_bmap_add_free(del->br_startblock, del->br_blockcount, flist,
3335 mp);
3336 /*
3337 * Adjust inode # blocks in the file.
3338 */
3339 if (nblks)
3340 ip->i_d.di_nblocks -= nblks;
3341 /*
3342 * Adjust quota data.
3343 */
3344 if (qfield)
3345 XFS_TRANS_MOD_DQUOT_BYINO(mp, tp, ip, qfield, (long)-nblks);
3346
3347 /*
3348 * Account for change in delayed indirect blocks.
3349 * Nothing to do for disk quota accounting here.
3350 */
3351 ASSERT(da_old >= da_new);
3352 if (da_old > da_new)
David Chinner20f4ebf2007-02-10 18:36:10 +11003353 xfs_mod_incore_sb(mp, XFS_SBS_FDBLOCKS, (int64_t)(da_old - da_new),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 rsvd);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003355 if (delta) {
3356 /* DELTA: report the original extent. */
3357 if (delta->xed_startoff > got.br_startoff)
3358 delta->xed_startoff = got.br_startoff;
3359 if (delta->xed_blockcount < got.br_startoff+got.br_blockcount)
3360 delta->xed_blockcount = got.br_startoff +
3361 got.br_blockcount;
3362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363done:
3364 *logflagsp = flags;
3365 return error;
3366}
3367
3368/*
3369 * Remove the entry "free" from the free item list. Prev points to the
3370 * previous entry, unless "free" is the head of the list.
3371 */
3372STATIC void
3373xfs_bmap_del_free(
3374 xfs_bmap_free_t *flist, /* free item list header */
3375 xfs_bmap_free_item_t *prev, /* previous item on list, if any */
3376 xfs_bmap_free_item_t *free) /* list item to be freed */
3377{
3378 if (prev)
3379 prev->xbfi_next = free->xbfi_next;
3380 else
3381 flist->xbf_first = free->xbfi_next;
3382 flist->xbf_count--;
3383 kmem_zone_free(xfs_bmap_free_item_zone, free);
3384}
3385
3386/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 * Convert an extents-format file into a btree-format file.
3388 * The new file will have a root block (in the inode) and a single child block.
3389 */
3390STATIC int /* error */
3391xfs_bmap_extents_to_btree(
3392 xfs_trans_t *tp, /* transaction pointer */
3393 xfs_inode_t *ip, /* incore inode pointer */
3394 xfs_fsblock_t *firstblock, /* first-block-allocated */
3395 xfs_bmap_free_t *flist, /* blocks freed in xaction */
3396 xfs_btree_cur_t **curp, /* cursor returned to caller */
3397 int wasdel, /* converting a delayed alloc */
3398 int *logflagsp, /* inode logging flags */
3399 int whichfork) /* data or attr fork */
3400{
3401 xfs_bmbt_block_t *ablock; /* allocated (child) bt block */
3402 xfs_buf_t *abp; /* buffer for ablock */
3403 xfs_alloc_arg_t args; /* allocation arguments */
3404 xfs_bmbt_rec_t *arp; /* child record pointer */
3405 xfs_bmbt_block_t *block; /* btree root block */
3406 xfs_btree_cur_t *cur; /* bmap btree cursor */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003407 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 int error; /* error return value */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003409 xfs_extnum_t i, cnt; /* extent record index */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 xfs_ifork_t *ifp; /* inode fork pointer */
3411 xfs_bmbt_key_t *kp; /* root block key pointer */
3412 xfs_mount_t *mp; /* mount structure */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003413 xfs_extnum_t nextents; /* number of file extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 xfs_bmbt_ptr_t *pp; /* root block address pointer */
3415
3416 ifp = XFS_IFORK_PTR(ip, whichfork);
3417 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS);
3418 ASSERT(ifp->if_ext_max ==
3419 XFS_IFORK_SIZE(ip, whichfork) / (uint)sizeof(xfs_bmbt_rec_t));
3420 /*
3421 * Make space in the inode incore.
3422 */
3423 xfs_iroot_realloc(ip, 1, whichfork);
3424 ifp->if_flags |= XFS_IFBROOT;
3425 /*
3426 * Fill in the root.
3427 */
3428 block = ifp->if_broot;
Christoph Hellwig16259e72005-11-02 15:11:25 +11003429 block->bb_magic = cpu_to_be32(XFS_BMAP_MAGIC);
3430 block->bb_level = cpu_to_be16(1);
3431 block->bb_numrecs = cpu_to_be16(1);
3432 block->bb_leftsib = cpu_to_be64(NULLDFSBNO);
3433 block->bb_rightsib = cpu_to_be64(NULLDFSBNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 /*
3435 * Need a cursor. Can't allocate until bb_level is filled in.
3436 */
3437 mp = ip->i_mount;
3438 cur = xfs_btree_init_cursor(mp, tp, NULL, 0, XFS_BTNUM_BMAP, ip,
3439 whichfork);
3440 cur->bc_private.b.firstblock = *firstblock;
3441 cur->bc_private.b.flist = flist;
3442 cur->bc_private.b.flags = wasdel ? XFS_BTCUR_BPRV_WASDEL : 0;
3443 /*
3444 * Convert to a btree with two levels, one record in root.
3445 */
3446 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_BTREE);
3447 args.tp = tp;
3448 args.mp = mp;
Yingping Lud210a282006-06-09 14:55:18 +10003449 args.firstblock = *firstblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 if (*firstblock == NULLFSBLOCK) {
3451 args.type = XFS_ALLOCTYPE_START_BNO;
3452 args.fsbno = XFS_INO_TO_FSB(mp, ip->i_ino);
3453 } else if (flist->xbf_low) {
3454 args.type = XFS_ALLOCTYPE_START_BNO;
3455 args.fsbno = *firstblock;
3456 } else {
3457 args.type = XFS_ALLOCTYPE_NEAR_BNO;
3458 args.fsbno = *firstblock;
3459 }
3460 args.minlen = args.maxlen = args.prod = 1;
3461 args.total = args.minleft = args.alignment = args.mod = args.isfl =
3462 args.minalignslop = 0;
3463 args.wasdel = wasdel;
3464 *logflagsp = 0;
3465 if ((error = xfs_alloc_vextent(&args))) {
3466 xfs_iroot_realloc(ip, -1, whichfork);
3467 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
3468 return error;
3469 }
3470 /*
3471 * Allocation can't fail, the space was reserved.
3472 */
3473 ASSERT(args.fsbno != NULLFSBLOCK);
3474 ASSERT(*firstblock == NULLFSBLOCK ||
3475 args.agno == XFS_FSB_TO_AGNO(mp, *firstblock) ||
3476 (flist->xbf_low &&
3477 args.agno > XFS_FSB_TO_AGNO(mp, *firstblock)));
3478 *firstblock = cur->bc_private.b.firstblock = args.fsbno;
3479 cur->bc_private.b.allocated++;
3480 ip->i_d.di_nblocks++;
3481 XFS_TRANS_MOD_DQUOT_BYINO(mp, tp, ip, XFS_TRANS_DQ_BCOUNT, 1L);
3482 abp = xfs_btree_get_bufl(mp, tp, args.fsbno, 0);
3483 /*
3484 * Fill in the child block.
3485 */
3486 ablock = XFS_BUF_TO_BMBT_BLOCK(abp);
Christoph Hellwig16259e72005-11-02 15:11:25 +11003487 ablock->bb_magic = cpu_to_be32(XFS_BMAP_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 ablock->bb_level = 0;
Christoph Hellwig16259e72005-11-02 15:11:25 +11003489 ablock->bb_leftsib = cpu_to_be64(NULLDFSBNO);
3490 ablock->bb_rightsib = cpu_to_be64(NULLDFSBNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 arp = XFS_BMAP_REC_IADDR(ablock, 1, cur);
3492 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003493 for (cnt = i = 0; i < nextents; i++) {
3494 ep = xfs_iext_get_ext(ifp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 if (!ISNULLSTARTBLOCK(xfs_bmbt_get_startblock(ep))) {
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +10003496 arp->l0 = cpu_to_be64(ep->l0);
3497 arp->l1 = cpu_to_be64(ep->l1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 arp++; cnt++;
3499 }
3500 }
Christoph Hellwig16259e72005-11-02 15:11:25 +11003501 ASSERT(cnt == XFS_IFORK_NEXTENTS(ip, whichfork));
3502 ablock->bb_numrecs = cpu_to_be16(cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 /*
3504 * Fill in the root key and pointer.
3505 */
3506 kp = XFS_BMAP_KEY_IADDR(block, 1, cur);
3507 arp = XFS_BMAP_REC_IADDR(ablock, 1, cur);
Christoph Hellwig8801bb92006-09-28 10:58:17 +10003508 kp->br_startoff = cpu_to_be64(xfs_bmbt_disk_get_startoff(arp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 pp = XFS_BMAP_PTR_IADDR(block, 1, cur);
Christoph Hellwig576039c2006-09-28 10:58:06 +10003510 *pp = cpu_to_be64(args.fsbno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 /*
3512 * Do all this logging at the end so that
3513 * the root is at the right level.
3514 */
3515 xfs_bmbt_log_block(cur, abp, XFS_BB_ALL_BITS);
Christoph Hellwig16259e72005-11-02 15:11:25 +11003516 xfs_bmbt_log_recs(cur, abp, 1, be16_to_cpu(ablock->bb_numrecs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 ASSERT(*curp == NULL);
3518 *curp = cur;
3519 *logflagsp = XFS_ILOG_CORE | XFS_ILOG_FBROOT(whichfork);
3520 return 0;
3521}
3522
3523/*
Nathan Scottd8cc8902005-11-02 10:34:53 +11003524 * Helper routine to reset inode di_forkoff field when switching
3525 * attribute fork from local to extent format - we reset it where
3526 * possible to make space available for inline data fork extents.
3527 */
3528STATIC void
3529xfs_bmap_forkoff_reset(
3530 xfs_mount_t *mp,
3531 xfs_inode_t *ip,
3532 int whichfork)
3533{
3534 if (whichfork == XFS_ATTR_FORK &&
3535 (ip->i_d.di_format != XFS_DINODE_FMT_DEV) &&
3536 (ip->i_d.di_format != XFS_DINODE_FMT_UUID) &&
Barry Naujoke5889e92007-02-10 18:35:58 +11003537 (ip->i_d.di_format != XFS_DINODE_FMT_BTREE) &&
Nathan Scottd8cc8902005-11-02 10:34:53 +11003538 ((mp->m_attroffset >> 3) > ip->i_d.di_forkoff)) {
3539 ip->i_d.di_forkoff = mp->m_attroffset >> 3;
3540 ip->i_df.if_ext_max = XFS_IFORK_DSIZE(ip) /
3541 (uint)sizeof(xfs_bmbt_rec_t);
3542 ip->i_afp->if_ext_max = XFS_IFORK_ASIZE(ip) /
3543 (uint)sizeof(xfs_bmbt_rec_t);
3544 }
3545}
3546
3547/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 * Convert a local file to an extents file.
3549 * This code is out of bounds for data forks of regular files,
3550 * since the file data needs to get logged so things will stay consistent.
3551 * (The bmap-level manipulations are ok, though).
3552 */
3553STATIC int /* error */
3554xfs_bmap_local_to_extents(
3555 xfs_trans_t *tp, /* transaction pointer */
3556 xfs_inode_t *ip, /* incore inode pointer */
3557 xfs_fsblock_t *firstblock, /* first block allocated in xaction */
3558 xfs_extlen_t total, /* total blocks needed by transaction */
3559 int *logflagsp, /* inode logging flags */
3560 int whichfork) /* data or attr fork */
3561{
3562 int error; /* error return value */
3563 int flags; /* logging flags returned */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 xfs_ifork_t *ifp; /* inode fork pointer */
3565
3566 /*
3567 * We don't want to deal with the case of keeping inode data inline yet.
3568 * So sending the data fork of a regular inode is invalid.
3569 */
3570 ASSERT(!((ip->i_d.di_mode & S_IFMT) == S_IFREG &&
3571 whichfork == XFS_DATA_FORK));
3572 ifp = XFS_IFORK_PTR(ip, whichfork);
3573 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
3574 flags = 0;
3575 error = 0;
3576 if (ifp->if_bytes) {
3577 xfs_alloc_arg_t args; /* allocation arguments */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003578 xfs_buf_t *bp; /* buffer for extent block */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003579 xfs_bmbt_rec_host_t *ep;/* extent record pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580
3581 args.tp = tp;
3582 args.mp = ip->i_mount;
Yingping Lud210a282006-06-09 14:55:18 +10003583 args.firstblock = *firstblock;
Mandy Kirkconnellf020b672006-03-14 14:07:24 +11003584 ASSERT((ifp->if_flags &
3585 (XFS_IFINLINE|XFS_IFEXTENTS|XFS_IFEXTIREC)) == XFS_IFINLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 /*
3587 * Allocate a block. We know we need only one, since the
3588 * file currently fits in an inode.
3589 */
3590 if (*firstblock == NULLFSBLOCK) {
3591 args.fsbno = XFS_INO_TO_FSB(args.mp, ip->i_ino);
3592 args.type = XFS_ALLOCTYPE_START_BNO;
3593 } else {
3594 args.fsbno = *firstblock;
3595 args.type = XFS_ALLOCTYPE_NEAR_BNO;
3596 }
3597 args.total = total;
3598 args.mod = args.minleft = args.alignment = args.wasdel =
3599 args.isfl = args.minalignslop = 0;
3600 args.minlen = args.maxlen = args.prod = 1;
3601 if ((error = xfs_alloc_vextent(&args)))
3602 goto done;
3603 /*
3604 * Can't fail, the space was reserved.
3605 */
3606 ASSERT(args.fsbno != NULLFSBLOCK);
3607 ASSERT(args.len == 1);
3608 *firstblock = args.fsbno;
3609 bp = xfs_btree_get_bufl(args.mp, tp, args.fsbno, 0);
3610 memcpy((char *)XFS_BUF_PTR(bp), ifp->if_u1.if_data,
3611 ifp->if_bytes);
3612 xfs_trans_log_buf(tp, bp, 0, ifp->if_bytes - 1);
Nathan Scottd8cc8902005-11-02 10:34:53 +11003613 xfs_bmap_forkoff_reset(args.mp, ip, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 xfs_idata_realloc(ip, -ifp->if_bytes, whichfork);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003615 xfs_iext_add(ifp, 0, 1);
3616 ep = xfs_iext_get_ext(ifp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 xfs_bmbt_set_allf(ep, 0, args.fsbno, 1, XFS_EXT_NORM);
Eric Sandeen3a59c942007-07-11 11:09:47 +10003618 XFS_BMAP_TRACE_POST_UPDATE("new", ip, 0, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 XFS_IFORK_NEXT_SET(ip, whichfork, 1);
3620 ip->i_d.di_nblocks = 1;
3621 XFS_TRANS_MOD_DQUOT_BYINO(args.mp, tp, ip,
3622 XFS_TRANS_DQ_BCOUNT, 1L);
3623 flags |= XFS_ILOG_FEXT(whichfork);
Nathan Scottd8cc8902005-11-02 10:34:53 +11003624 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 ASSERT(XFS_IFORK_NEXTENTS(ip, whichfork) == 0);
Nathan Scottd8cc8902005-11-02 10:34:53 +11003626 xfs_bmap_forkoff_reset(ip->i_mount, ip, whichfork);
3627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 ifp->if_flags &= ~XFS_IFINLINE;
3629 ifp->if_flags |= XFS_IFEXTENTS;
3630 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS);
3631 flags |= XFS_ILOG_CORE;
3632done:
3633 *logflagsp = flags;
3634 return error;
3635}
3636
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637/*
Mandy Kirkconnell8867bc92006-03-17 17:25:04 +11003638 * Search the extent records for the entry containing block bno.
3639 * If bno lies in a hole, point to the next entry. If bno lies
3640 * past eof, *eofp will be set, and *prevp will contain the last
3641 * entry (null if none). Else, *lastxp will be set to the index
3642 * of the found entry; *gotp will contain the entry.
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003643 */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003644xfs_bmbt_rec_host_t * /* pointer to found extent entry */
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003645xfs_bmap_search_multi_extents(
3646 xfs_ifork_t *ifp, /* inode fork pointer */
3647 xfs_fileoff_t bno, /* block number searched for */
3648 int *eofp, /* out: end of file found */
3649 xfs_extnum_t *lastxp, /* out: last extent index */
3650 xfs_bmbt_irec_t *gotp, /* out: extent entry found */
3651 xfs_bmbt_irec_t *prevp) /* out: previous extent entry found */
3652{
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003653 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003654 xfs_extnum_t lastx; /* last extent index */
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003655
3656 /*
Mandy Kirkconnell8867bc92006-03-17 17:25:04 +11003657 * Initialize the extent entry structure to catch access to
3658 * uninitialized br_startblock field.
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003659 */
Mandy Kirkconnell8867bc92006-03-17 17:25:04 +11003660 gotp->br_startoff = 0xffa5a5a5a5a5a5a5LL;
3661 gotp->br_blockcount = 0xa55a5a5a5a5a5a5aLL;
3662 gotp->br_state = XFS_EXT_INVALID;
3663#if XFS_BIG_BLKNOS
3664 gotp->br_startblock = 0xffffa5a5a5a5a5a5LL;
3665#else
3666 gotp->br_startblock = 0xffffa5a5;
3667#endif
3668 prevp->br_startoff = NULLFILEOFF;
3669
3670 ep = xfs_iext_bno_to_ext(ifp, bno, &lastx);
3671 if (lastx > 0) {
3672 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, lastx - 1), prevp);
3673 }
3674 if (lastx < (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t))) {
3675 xfs_bmbt_get_all(ep, gotp);
3676 *eofp = 0;
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003677 } else {
Mandy Kirkconnell8867bc92006-03-17 17:25:04 +11003678 if (lastx > 0) {
3679 *gotp = *prevp;
3680 }
3681 *eofp = 1;
3682 ep = NULL;
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003683 }
Mandy Kirkconnell8867bc92006-03-17 17:25:04 +11003684 *lastxp = lastx;
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003685 return ep;
3686}
3687
3688/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 * Search the extents list for the inode, for the extent containing bno.
3690 * If bno lies in a hole, point to the next entry. If bno lies past eof,
3691 * *eofp will be set, and *prevp will contain the last entry (null if none).
3692 * Else, *lastxp will be set to the index of the found
3693 * entry; *gotp will contain the entry.
3694 */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003695STATIC xfs_bmbt_rec_host_t * /* pointer to found extent entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696xfs_bmap_search_extents(
3697 xfs_inode_t *ip, /* incore inode pointer */
3698 xfs_fileoff_t bno, /* block number searched for */
Nathan Scott572d95f2006-09-28 11:03:20 +10003699 int fork, /* data or attr fork */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700 int *eofp, /* out: end of file found */
3701 xfs_extnum_t *lastxp, /* out: last extent index */
3702 xfs_bmbt_irec_t *gotp, /* out: extent entry found */
3703 xfs_bmbt_irec_t *prevp) /* out: previous extent entry found */
3704{
3705 xfs_ifork_t *ifp; /* inode fork pointer */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003706 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707
3708 XFS_STATS_INC(xs_look_exlist);
Nathan Scott572d95f2006-09-28 11:03:20 +10003709 ifp = XFS_IFORK_PTR(ip, fork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003711 ep = xfs_bmap_search_multi_extents(ifp, bno, eofp, lastxp, gotp, prevp);
3712
Nathan Scott572d95f2006-09-28 11:03:20 +10003713 if (unlikely(!(gotp->br_startblock) && (*lastxp != NULLEXTNUM) &&
3714 !(XFS_IS_REALTIME_INODE(ip) && fork == XFS_DATA_FORK))) {
3715 xfs_cmn_err(XFS_PTAG_FSBLOCK_ZERO, CE_ALERT, ip->i_mount,
3716 "Access to block zero in inode %llu "
3717 "start_block: %llx start_off: %llx "
3718 "blkcnt: %llx extent-state: %x lastx: %x\n",
3719 (unsigned long long)ip->i_ino,
Nathan Scott3ddb8fa2006-01-11 15:33:02 +11003720 (unsigned long long)gotp->br_startblock,
3721 (unsigned long long)gotp->br_startoff,
3722 (unsigned long long)gotp->br_blockcount,
Nathan Scott572d95f2006-09-28 11:03:20 +10003723 gotp->br_state, *lastxp);
3724 *lastxp = NULLEXTNUM;
3725 *eofp = 1;
3726 return NULL;
3727 }
3728 return ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729}
3730
3731
3732#ifdef XFS_BMAP_TRACE
3733ktrace_t *xfs_bmap_trace_buf;
3734
3735/*
3736 * Add a bmap trace buffer entry. Base routine for the others.
3737 */
3738STATIC void
3739xfs_bmap_trace_addentry(
3740 int opcode, /* operation */
Eric Sandeen3a59c942007-07-11 11:09:47 +10003741 const char *fname, /* function name */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742 char *desc, /* operation description */
3743 xfs_inode_t *ip, /* incore inode pointer */
3744 xfs_extnum_t idx, /* index of entry(ies) */
3745 xfs_extnum_t cnt, /* count of entries, 1 or 2 */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003746 xfs_bmbt_rec_host_t *r1, /* first record */
3747 xfs_bmbt_rec_host_t *r2, /* second record or null */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 int whichfork) /* data or attr fork */
3749{
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003750 xfs_bmbt_rec_host_t tr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751
3752 ASSERT(cnt == 1 || cnt == 2);
3753 ASSERT(r1 != NULL);
3754 if (cnt == 1) {
3755 ASSERT(r2 == NULL);
3756 r2 = &tr2;
3757 memset(&tr2, 0, sizeof(tr2));
3758 } else
3759 ASSERT(r2 != NULL);
3760 ktrace_enter(xfs_bmap_trace_buf,
3761 (void *)(__psint_t)(opcode | (whichfork << 16)),
3762 (void *)fname, (void *)desc, (void *)ip,
3763 (void *)(__psint_t)idx,
3764 (void *)(__psint_t)cnt,
3765 (void *)(__psunsigned_t)(ip->i_ino >> 32),
3766 (void *)(__psunsigned_t)(unsigned)ip->i_ino,
3767 (void *)(__psunsigned_t)(r1->l0 >> 32),
3768 (void *)(__psunsigned_t)(unsigned)(r1->l0),
3769 (void *)(__psunsigned_t)(r1->l1 >> 32),
3770 (void *)(__psunsigned_t)(unsigned)(r1->l1),
3771 (void *)(__psunsigned_t)(r2->l0 >> 32),
3772 (void *)(__psunsigned_t)(unsigned)(r2->l0),
3773 (void *)(__psunsigned_t)(r2->l1 >> 32),
3774 (void *)(__psunsigned_t)(unsigned)(r2->l1)
3775 );
3776 ASSERT(ip->i_xtrace);
3777 ktrace_enter(ip->i_xtrace,
3778 (void *)(__psint_t)(opcode | (whichfork << 16)),
3779 (void *)fname, (void *)desc, (void *)ip,
3780 (void *)(__psint_t)idx,
3781 (void *)(__psint_t)cnt,
3782 (void *)(__psunsigned_t)(ip->i_ino >> 32),
3783 (void *)(__psunsigned_t)(unsigned)ip->i_ino,
3784 (void *)(__psunsigned_t)(r1->l0 >> 32),
3785 (void *)(__psunsigned_t)(unsigned)(r1->l0),
3786 (void *)(__psunsigned_t)(r1->l1 >> 32),
3787 (void *)(__psunsigned_t)(unsigned)(r1->l1),
3788 (void *)(__psunsigned_t)(r2->l0 >> 32),
3789 (void *)(__psunsigned_t)(unsigned)(r2->l0),
3790 (void *)(__psunsigned_t)(r2->l1 >> 32),
3791 (void *)(__psunsigned_t)(unsigned)(r2->l1)
3792 );
3793}
3794
3795/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003796 * Add bmap trace entry prior to a call to xfs_iext_remove.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797 */
3798STATIC void
3799xfs_bmap_trace_delete(
Eric Sandeen3a59c942007-07-11 11:09:47 +10003800 const char *fname, /* function name */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 char *desc, /* operation description */
3802 xfs_inode_t *ip, /* incore inode pointer */
3803 xfs_extnum_t idx, /* index of entry(entries) deleted */
3804 xfs_extnum_t cnt, /* count of entries deleted, 1 or 2 */
3805 int whichfork) /* data or attr fork */
3806{
3807 xfs_ifork_t *ifp; /* inode fork pointer */
3808
3809 ifp = XFS_IFORK_PTR(ip, whichfork);
3810 xfs_bmap_trace_addentry(XFS_BMAP_KTRACE_DELETE, fname, desc, ip, idx,
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003811 cnt, xfs_iext_get_ext(ifp, idx),
3812 cnt == 2 ? xfs_iext_get_ext(ifp, idx + 1) : NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 whichfork);
3814}
3815
3816/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003817 * Add bmap trace entry prior to a call to xfs_iext_insert, or
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 * reading in the extents list from the disk (in the btree).
3819 */
3820STATIC void
3821xfs_bmap_trace_insert(
Eric Sandeen3a59c942007-07-11 11:09:47 +10003822 const char *fname, /* function name */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823 char *desc, /* operation description */
3824 xfs_inode_t *ip, /* incore inode pointer */
3825 xfs_extnum_t idx, /* index of entry(entries) inserted */
3826 xfs_extnum_t cnt, /* count of entries inserted, 1 or 2 */
3827 xfs_bmbt_irec_t *r1, /* inserted record 1 */
3828 xfs_bmbt_irec_t *r2, /* inserted record 2 or null */
3829 int whichfork) /* data or attr fork */
3830{
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003831 xfs_bmbt_rec_host_t tr1; /* compressed record 1 */
3832 xfs_bmbt_rec_host_t tr2; /* compressed record 2 if needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833
3834 xfs_bmbt_set_all(&tr1, r1);
3835 if (cnt == 2) {
3836 ASSERT(r2 != NULL);
3837 xfs_bmbt_set_all(&tr2, r2);
3838 } else {
3839 ASSERT(cnt == 1);
3840 ASSERT(r2 == NULL);
3841 }
3842 xfs_bmap_trace_addentry(XFS_BMAP_KTRACE_INSERT, fname, desc, ip, idx,
3843 cnt, &tr1, cnt == 2 ? &tr2 : NULL, whichfork);
3844}
3845
3846/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003847 * Add bmap trace entry after updating an extent record in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848 */
3849STATIC void
3850xfs_bmap_trace_post_update(
Eric Sandeen3a59c942007-07-11 11:09:47 +10003851 const char *fname, /* function name */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 char *desc, /* operation description */
3853 xfs_inode_t *ip, /* incore inode pointer */
3854 xfs_extnum_t idx, /* index of entry updated */
3855 int whichfork) /* data or attr fork */
3856{
3857 xfs_ifork_t *ifp; /* inode fork pointer */
3858
3859 ifp = XFS_IFORK_PTR(ip, whichfork);
3860 xfs_bmap_trace_addentry(XFS_BMAP_KTRACE_POST_UP, fname, desc, ip, idx,
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003861 1, xfs_iext_get_ext(ifp, idx), NULL, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862}
3863
3864/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003865 * Add bmap trace entry prior to updating an extent record in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 */
3867STATIC void
3868xfs_bmap_trace_pre_update(
Eric Sandeen3a59c942007-07-11 11:09:47 +10003869 const char *fname, /* function name */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870 char *desc, /* operation description */
3871 xfs_inode_t *ip, /* incore inode pointer */
3872 xfs_extnum_t idx, /* index of entry to be updated */
3873 int whichfork) /* data or attr fork */
3874{
3875 xfs_ifork_t *ifp; /* inode fork pointer */
3876
3877 ifp = XFS_IFORK_PTR(ip, whichfork);
3878 xfs_bmap_trace_addentry(XFS_BMAP_KTRACE_PRE_UP, fname, desc, ip, idx, 1,
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003879 xfs_iext_get_ext(ifp, idx), NULL, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880}
3881#endif /* XFS_BMAP_TRACE */
3882
3883/*
3884 * Compute the worst-case number of indirect blocks that will be used
3885 * for ip's delayed extent of length "len".
3886 */
3887STATIC xfs_filblks_t
3888xfs_bmap_worst_indlen(
3889 xfs_inode_t *ip, /* incore inode pointer */
3890 xfs_filblks_t len) /* delayed extent length */
3891{
3892 int level; /* btree level number */
3893 int maxrecs; /* maximum record count at this level */
3894 xfs_mount_t *mp; /* mount structure */
3895 xfs_filblks_t rval; /* return value */
3896
3897 mp = ip->i_mount;
3898 maxrecs = mp->m_bmap_dmxr[0];
3899 for (level = 0, rval = 0;
3900 level < XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK);
3901 level++) {
3902 len += maxrecs - 1;
3903 do_div(len, maxrecs);
3904 rval += len;
3905 if (len == 1)
3906 return rval + XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK) -
3907 level - 1;
3908 if (level == 0)
3909 maxrecs = mp->m_bmap_dmxr[1];
3910 }
3911 return rval;
3912}
3913
3914#if defined(XFS_RW_TRACE)
3915STATIC void
3916xfs_bunmap_trace(
3917 xfs_inode_t *ip,
3918 xfs_fileoff_t bno,
3919 xfs_filblks_t len,
3920 int flags,
3921 inst_t *ra)
3922{
3923 if (ip->i_rwtrace == NULL)
3924 return;
3925 ktrace_enter(ip->i_rwtrace,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003926 (void *)(__psint_t)XFS_BUNMAP,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927 (void *)ip,
3928 (void *)(__psint_t)((ip->i_d.di_size >> 32) & 0xffffffff),
3929 (void *)(__psint_t)(ip->i_d.di_size & 0xffffffff),
3930 (void *)(__psint_t)(((xfs_dfiloff_t)bno >> 32) & 0xffffffff),
3931 (void *)(__psint_t)((xfs_dfiloff_t)bno & 0xffffffff),
3932 (void *)(__psint_t)len,
3933 (void *)(__psint_t)flags,
3934 (void *)(unsigned long)current_cpu(),
3935 (void *)ra,
3936 (void *)0,
3937 (void *)0,
3938 (void *)0,
3939 (void *)0,
3940 (void *)0,
3941 (void *)0);
3942}
3943#endif
3944
3945/*
3946 * Convert inode from non-attributed to attributed.
3947 * Must not be in a transaction, ip must not be locked.
3948 */
3949int /* error code */
3950xfs_bmap_add_attrfork(
3951 xfs_inode_t *ip, /* incore inode pointer */
Nathan Scottd8cc8902005-11-02 10:34:53 +11003952 int size, /* space new attribute needs */
3953 int rsvd) /* xact may use reserved blks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 xfs_fsblock_t firstblock; /* 1st block/ag allocated */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003956 xfs_bmap_free_t flist; /* freed extent records */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 xfs_mount_t *mp; /* mount structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 xfs_trans_t *tp; /* transaction pointer */
Nathan Scottd8cc8902005-11-02 10:34:53 +11003959 int blks; /* space reservation */
3960 int version = 1; /* superblock attr version */
3961 int committed; /* xaction was committed */
3962 int logflags; /* logging flags */
3963 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964
Nathan Scottd8cc8902005-11-02 10:34:53 +11003965 ASSERT(XFS_IFORK_Q(ip) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966 ASSERT(ip->i_df.if_ext_max ==
3967 XFS_IFORK_DSIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t));
Nathan Scottd8cc8902005-11-02 10:34:53 +11003968
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 mp = ip->i_mount;
3970 ASSERT(!XFS_NOT_DQATTACHED(mp, ip));
3971 tp = xfs_trans_alloc(mp, XFS_TRANS_ADDAFORK);
3972 blks = XFS_ADDAFORK_SPACE_RES(mp);
3973 if (rsvd)
3974 tp->t_flags |= XFS_TRANS_RESERVE;
3975 if ((error = xfs_trans_reserve(tp, blks, XFS_ADDAFORK_LOG_RES(mp), 0,
3976 XFS_TRANS_PERM_LOG_RES, XFS_ADDAFORK_LOG_COUNT)))
3977 goto error0;
3978 xfs_ilock(ip, XFS_ILOCK_EXCL);
3979 error = XFS_TRANS_RESERVE_QUOTA_NBLKS(mp, tp, ip, blks, 0, rsvd ?
3980 XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES :
3981 XFS_QMOPT_RES_REGBLKS);
3982 if (error) {
3983 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3984 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES);
3985 return error;
3986 }
3987 if (XFS_IFORK_Q(ip))
3988 goto error1;
3989 if (ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS) {
3990 /*
3991 * For inodes coming from pre-6.2 filesystems.
3992 */
3993 ASSERT(ip->i_d.di_aformat == 0);
3994 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
3995 }
3996 ASSERT(ip->i_d.di_anextents == 0);
3997 VN_HOLD(XFS_ITOV(ip));
3998 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
3999 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
4000 switch (ip->i_d.di_format) {
4001 case XFS_DINODE_FMT_DEV:
4002 ip->i_d.di_forkoff = roundup(sizeof(xfs_dev_t), 8) >> 3;
4003 break;
4004 case XFS_DINODE_FMT_UUID:
4005 ip->i_d.di_forkoff = roundup(sizeof(uuid_t), 8) >> 3;
4006 break;
4007 case XFS_DINODE_FMT_LOCAL:
4008 case XFS_DINODE_FMT_EXTENTS:
4009 case XFS_DINODE_FMT_BTREE:
Nathan Scottd8cc8902005-11-02 10:34:53 +11004010 ip->i_d.di_forkoff = xfs_attr_shortform_bytesfit(ip, size);
4011 if (!ip->i_d.di_forkoff)
4012 ip->i_d.di_forkoff = mp->m_attroffset >> 3;
Nathan Scott13059ff2006-01-11 15:32:01 +11004013 else if (mp->m_flags & XFS_MOUNT_ATTR2)
Nathan Scottd8cc8902005-11-02 10:34:53 +11004014 version = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 break;
4016 default:
4017 ASSERT(0);
4018 error = XFS_ERROR(EINVAL);
4019 goto error1;
4020 }
4021 ip->i_df.if_ext_max =
4022 XFS_IFORK_DSIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t);
4023 ASSERT(ip->i_afp == NULL);
4024 ip->i_afp = kmem_zone_zalloc(xfs_ifork_zone, KM_SLEEP);
4025 ip->i_afp->if_ext_max =
4026 XFS_IFORK_ASIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t);
4027 ip->i_afp->if_flags = XFS_IFEXTENTS;
4028 logflags = 0;
4029 XFS_BMAP_INIT(&flist, &firstblock);
4030 switch (ip->i_d.di_format) {
4031 case XFS_DINODE_FMT_LOCAL:
4032 error = xfs_bmap_add_attrfork_local(tp, ip, &firstblock, &flist,
4033 &logflags);
4034 break;
4035 case XFS_DINODE_FMT_EXTENTS:
4036 error = xfs_bmap_add_attrfork_extents(tp, ip, &firstblock,
4037 &flist, &logflags);
4038 break;
4039 case XFS_DINODE_FMT_BTREE:
4040 error = xfs_bmap_add_attrfork_btree(tp, ip, &firstblock, &flist,
4041 &logflags);
4042 break;
4043 default:
4044 error = 0;
4045 break;
4046 }
4047 if (logflags)
4048 xfs_trans_log_inode(tp, ip, logflags);
4049 if (error)
4050 goto error2;
Nathan Scottd8cc8902005-11-02 10:34:53 +11004051 if (!XFS_SB_VERSION_HASATTR(&mp->m_sb) ||
4052 (!XFS_SB_VERSION_HASATTR2(&mp->m_sb) && version == 2)) {
Nathan Scottda087ba2005-11-02 15:00:20 +11004053 __int64_t sbfields = 0;
4054
Eric Sandeen3685c2a2007-10-11 17:42:32 +10004055 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056 if (!XFS_SB_VERSION_HASATTR(&mp->m_sb)) {
4057 XFS_SB_VERSION_ADDATTR(&mp->m_sb);
Nathan Scottda087ba2005-11-02 15:00:20 +11004058 sbfields |= XFS_SB_VERSIONNUM;
Nathan Scottd8cc8902005-11-02 10:34:53 +11004059 }
4060 if (!XFS_SB_VERSION_HASATTR2(&mp->m_sb) && version == 2) {
4061 XFS_SB_VERSION_ADDATTR2(&mp->m_sb);
Nathan Scottda087ba2005-11-02 15:00:20 +11004062 sbfields |= (XFS_SB_VERSIONNUM | XFS_SB_FEATURES2);
Nathan Scottd8cc8902005-11-02 10:34:53 +11004063 }
Nathan Scottda087ba2005-11-02 15:00:20 +11004064 if (sbfields) {
Eric Sandeen3685c2a2007-10-11 17:42:32 +10004065 spin_unlock(&mp->m_sb_lock);
Nathan Scottda087ba2005-11-02 15:00:20 +11004066 xfs_mod_sb(tp, sbfields);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067 } else
Eric Sandeen3685c2a2007-10-11 17:42:32 +10004068 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069 }
Eric Sandeenf7c99b62007-02-10 18:37:16 +11004070 if ((error = xfs_bmap_finish(&tp, &flist, &committed)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 goto error2;
Eric Sandeen1c72bf92007-05-08 13:48:42 +10004072 error = xfs_trans_commit(tp, XFS_TRANS_PERM_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 ASSERT(ip->i_df.if_ext_max ==
4074 XFS_IFORK_DSIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t));
4075 return error;
4076error2:
4077 xfs_bmap_cancel(&flist);
4078error1:
4079 ASSERT(ismrlocked(&ip->i_lock,MR_UPDATE));
4080 xfs_iunlock(ip, XFS_ILOCK_EXCL);
4081error0:
4082 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
4083 ASSERT(ip->i_df.if_ext_max ==
4084 XFS_IFORK_DSIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t));
4085 return error;
4086}
4087
4088/*
4089 * Add the extent to the list of extents to be free at transaction end.
4090 * The list is maintained sorted (by block number).
4091 */
4092/* ARGSUSED */
4093void
4094xfs_bmap_add_free(
4095 xfs_fsblock_t bno, /* fs block number of extent */
4096 xfs_filblks_t len, /* length of extent */
4097 xfs_bmap_free_t *flist, /* list of extents */
4098 xfs_mount_t *mp) /* mount point structure */
4099{
4100 xfs_bmap_free_item_t *cur; /* current (next) element */
4101 xfs_bmap_free_item_t *new; /* new element */
4102 xfs_bmap_free_item_t *prev; /* previous element */
4103#ifdef DEBUG
4104 xfs_agnumber_t agno;
4105 xfs_agblock_t agbno;
4106
4107 ASSERT(bno != NULLFSBLOCK);
4108 ASSERT(len > 0);
4109 ASSERT(len <= MAXEXTLEN);
4110 ASSERT(!ISNULLSTARTBLOCK(bno));
4111 agno = XFS_FSB_TO_AGNO(mp, bno);
4112 agbno = XFS_FSB_TO_AGBNO(mp, bno);
4113 ASSERT(agno < mp->m_sb.sb_agcount);
4114 ASSERT(agbno < mp->m_sb.sb_agblocks);
4115 ASSERT(len < mp->m_sb.sb_agblocks);
4116 ASSERT(agbno + len <= mp->m_sb.sb_agblocks);
4117#endif
4118 ASSERT(xfs_bmap_free_item_zone != NULL);
4119 new = kmem_zone_alloc(xfs_bmap_free_item_zone, KM_SLEEP);
4120 new->xbfi_startblock = bno;
4121 new->xbfi_blockcount = (xfs_extlen_t)len;
4122 for (prev = NULL, cur = flist->xbf_first;
4123 cur != NULL;
4124 prev = cur, cur = cur->xbfi_next) {
4125 if (cur->xbfi_startblock >= bno)
4126 break;
4127 }
4128 if (prev)
4129 prev->xbfi_next = new;
4130 else
4131 flist->xbf_first = new;
4132 new->xbfi_next = cur;
4133 flist->xbf_count++;
4134}
4135
4136/*
4137 * Compute and fill in the value of the maximum depth of a bmap btree
4138 * in this filesystem. Done once, during mount.
4139 */
4140void
4141xfs_bmap_compute_maxlevels(
4142 xfs_mount_t *mp, /* file system mount structure */
4143 int whichfork) /* data or attr fork */
4144{
4145 int level; /* btree level */
4146 uint maxblocks; /* max blocks at this level */
4147 uint maxleafents; /* max leaf entries possible */
4148 int maxrootrecs; /* max records in root block */
4149 int minleafrecs; /* min records in leaf block */
4150 int minnoderecs; /* min records in node block */
4151 int sz; /* root block size */
4152
4153 /*
4154 * The maximum number of extents in a file, hence the maximum
4155 * number of leaf entries, is controlled by the type of di_nextents
4156 * (a signed 32-bit number, xfs_extnum_t), or by di_anextents
4157 * (a signed 16-bit number, xfs_aextnum_t).
4158 */
Nathan Scottd8cc8902005-11-02 10:34:53 +11004159 if (whichfork == XFS_DATA_FORK) {
4160 maxleafents = MAXEXTNUM;
Nathan Scott13059ff2006-01-11 15:32:01 +11004161 sz = (mp->m_flags & XFS_MOUNT_ATTR2) ?
4162 XFS_BMDR_SPACE_CALC(MINDBTPTRS) : mp->m_attroffset;
Nathan Scottd8cc8902005-11-02 10:34:53 +11004163 } else {
4164 maxleafents = MAXAEXTNUM;
Nathan Scott13059ff2006-01-11 15:32:01 +11004165 sz = (mp->m_flags & XFS_MOUNT_ATTR2) ?
4166 XFS_BMDR_SPACE_CALC(MINABTPTRS) :
4167 mp->m_sb.sb_inodesize - mp->m_attroffset;
Nathan Scottd8cc8902005-11-02 10:34:53 +11004168 }
4169 maxrootrecs = (int)XFS_BTREE_BLOCK_MAXRECS(sz, xfs_bmdr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170 minleafrecs = mp->m_bmap_dmnr[0];
4171 minnoderecs = mp->m_bmap_dmnr[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172 maxblocks = (maxleafents + minleafrecs - 1) / minleafrecs;
4173 for (level = 1; maxblocks > 1; level++) {
4174 if (maxblocks <= maxrootrecs)
4175 maxblocks = 1;
4176 else
4177 maxblocks = (maxblocks + minnoderecs - 1) / minnoderecs;
4178 }
4179 mp->m_bm_maxlevels[whichfork] = level;
4180}
4181
4182/*
4183 * Routine to be called at transaction's end by xfs_bmapi, xfs_bunmapi
4184 * caller. Frees all the extents that need freeing, which must be done
4185 * last due to locking considerations. We never free any extents in
4186 * the first transaction. This is to allow the caller to make the first
4187 * transaction a synchronous one so that the pointers to the data being
4188 * broken in this transaction will be permanent before the data is actually
4189 * freed. This is necessary to prevent blocks from being reallocated
4190 * and written to before the free and reallocation are actually permanent.
4191 * We do not just make the first transaction synchronous here, because
4192 * there are more efficient ways to gain the same protection in some cases
4193 * (see the file truncation code).
4194 *
4195 * Return 1 if the given transaction was committed and a new one
4196 * started, and 0 otherwise in the committed parameter.
4197 */
4198/*ARGSUSED*/
4199int /* error */
4200xfs_bmap_finish(
4201 xfs_trans_t **tp, /* transaction pointer addr */
4202 xfs_bmap_free_t *flist, /* i/o: list extents to free */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203 int *committed) /* xact committed or not */
4204{
4205 xfs_efd_log_item_t *efd; /* extent free data */
4206 xfs_efi_log_item_t *efi; /* extent free intention */
4207 int error; /* error return value */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004208 xfs_bmap_free_item_t *free; /* free extent item */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209 unsigned int logres; /* new log reservation */
4210 unsigned int logcount; /* new log count */
4211 xfs_mount_t *mp; /* filesystem mount structure */
4212 xfs_bmap_free_item_t *next; /* next item on free list */
4213 xfs_trans_t *ntp; /* new transaction pointer */
4214
4215 ASSERT((*tp)->t_flags & XFS_TRANS_PERM_LOG_RES);
4216 if (flist->xbf_count == 0) {
4217 *committed = 0;
4218 return 0;
4219 }
4220 ntp = *tp;
4221 efi = xfs_trans_get_efi(ntp, flist->xbf_count);
4222 for (free = flist->xbf_first; free; free = free->xbfi_next)
4223 xfs_trans_log_efi_extent(ntp, efi, free->xbfi_startblock,
4224 free->xbfi_blockcount);
4225 logres = ntp->t_log_res;
4226 logcount = ntp->t_log_count;
4227 ntp = xfs_trans_dup(*tp);
Eric Sandeen1c72bf92007-05-08 13:48:42 +10004228 error = xfs_trans_commit(*tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229 *tp = ntp;
4230 *committed = 1;
4231 /*
4232 * We have a new transaction, so we should return committed=1,
4233 * even though we're returning an error.
4234 */
4235 if (error) {
4236 return error;
4237 }
4238 if ((error = xfs_trans_reserve(ntp, 0, logres, 0, XFS_TRANS_PERM_LOG_RES,
4239 logcount)))
4240 return error;
4241 efd = xfs_trans_get_efd(ntp, efi, flist->xbf_count);
4242 for (free = flist->xbf_first; free != NULL; free = next) {
4243 next = free->xbfi_next;
4244 if ((error = xfs_free_extent(ntp, free->xbfi_startblock,
4245 free->xbfi_blockcount))) {
4246 /*
4247 * The bmap free list will be cleaned up at a
4248 * higher level. The EFI will be canceled when
4249 * this transaction is aborted.
4250 * Need to force shutdown here to make sure it
4251 * happens, since this transaction may not be
4252 * dirty yet.
4253 */
4254 mp = ntp->t_mountp;
4255 if (!XFS_FORCED_SHUTDOWN(mp))
4256 xfs_force_shutdown(mp,
4257 (error == EFSCORRUPTED) ?
Nathan Scott7d04a332006-06-09 14:58:38 +10004258 SHUTDOWN_CORRUPT_INCORE :
4259 SHUTDOWN_META_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260 return error;
4261 }
4262 xfs_trans_log_efd_extent(ntp, efd, free->xbfi_startblock,
4263 free->xbfi_blockcount);
4264 xfs_bmap_del_free(flist, NULL, free);
4265 }
4266 return 0;
4267}
4268
4269/*
4270 * Free up any items left in the list.
4271 */
4272void
4273xfs_bmap_cancel(
4274 xfs_bmap_free_t *flist) /* list of bmap_free_items */
4275{
4276 xfs_bmap_free_item_t *free; /* free list item */
4277 xfs_bmap_free_item_t *next;
4278
4279 if (flist->xbf_count == 0)
4280 return;
4281 ASSERT(flist->xbf_first != NULL);
4282 for (free = flist->xbf_first; free; free = next) {
4283 next = free->xbfi_next;
4284 xfs_bmap_del_free(flist, NULL, free);
4285 }
4286 ASSERT(flist->xbf_count == 0);
4287}
4288
4289/*
4290 * Returns the file-relative block number of the first unused block(s)
4291 * in the file with at least "len" logically contiguous blocks free.
4292 * This is the lowest-address hole if the file has holes, else the first block
4293 * past the end of file.
4294 * Return 0 if the file is currently local (in-inode).
4295 */
4296int /* error */
4297xfs_bmap_first_unused(
4298 xfs_trans_t *tp, /* transaction pointer */
4299 xfs_inode_t *ip, /* incore inode */
4300 xfs_extlen_t len, /* size of hole to find */
4301 xfs_fileoff_t *first_unused, /* unused block */
4302 int whichfork) /* data or attr fork */
4303{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304 int error; /* error return value */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004305 int idx; /* extent record index */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 xfs_ifork_t *ifp; /* inode fork pointer */
4307 xfs_fileoff_t lastaddr; /* last block number seen */
4308 xfs_fileoff_t lowest; /* lowest useful block */
4309 xfs_fileoff_t max; /* starting useful block */
4310 xfs_fileoff_t off; /* offset for this block */
4311 xfs_extnum_t nextents; /* number of extent entries */
4312
4313 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE ||
4314 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS ||
4315 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
4316 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
4317 *first_unused = 0;
4318 return 0;
4319 }
4320 ifp = XFS_IFORK_PTR(ip, whichfork);
4321 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
4322 (error = xfs_iread_extents(tp, ip, whichfork)))
4323 return error;
4324 lowest = *first_unused;
4325 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004326 for (idx = 0, lastaddr = 0, max = lowest; idx < nextents; idx++) {
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10004327 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328 off = xfs_bmbt_get_startoff(ep);
4329 /*
4330 * See if the hole before this extent will work.
4331 */
4332 if (off >= lowest + len && off - max >= len) {
4333 *first_unused = max;
4334 return 0;
4335 }
4336 lastaddr = off + xfs_bmbt_get_blockcount(ep);
4337 max = XFS_FILEOFF_MAX(lastaddr, lowest);
4338 }
4339 *first_unused = max;
4340 return 0;
4341}
4342
4343/*
4344 * Returns the file-relative block number of the last block + 1 before
4345 * last_block (input value) in the file.
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004346 * This is not based on i_size, it is based on the extent records.
4347 * Returns 0 for local files, as they do not have extent records.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348 */
4349int /* error */
4350xfs_bmap_last_before(
4351 xfs_trans_t *tp, /* transaction pointer */
4352 xfs_inode_t *ip, /* incore inode */
4353 xfs_fileoff_t *last_block, /* last block */
4354 int whichfork) /* data or attr fork */
4355{
4356 xfs_fileoff_t bno; /* input file offset */
4357 int eof; /* hit end of file */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10004358 xfs_bmbt_rec_host_t *ep; /* pointer to last extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 int error; /* error return value */
4360 xfs_bmbt_irec_t got; /* current extent value */
4361 xfs_ifork_t *ifp; /* inode fork pointer */
4362 xfs_extnum_t lastx; /* last extent used */
4363 xfs_bmbt_irec_t prev; /* previous extent value */
4364
4365 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE &&
4366 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
4367 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_LOCAL)
4368 return XFS_ERROR(EIO);
4369 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
4370 *last_block = 0;
4371 return 0;
4372 }
4373 ifp = XFS_IFORK_PTR(ip, whichfork);
4374 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
4375 (error = xfs_iread_extents(tp, ip, whichfork)))
4376 return error;
4377 bno = *last_block - 1;
4378 ep = xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got,
4379 &prev);
4380 if (eof || xfs_bmbt_get_startoff(ep) > bno) {
4381 if (prev.br_startoff == NULLFILEOFF)
4382 *last_block = 0;
4383 else
4384 *last_block = prev.br_startoff + prev.br_blockcount;
4385 }
4386 /*
4387 * Otherwise *last_block is already the right answer.
4388 */
4389 return 0;
4390}
4391
4392/*
4393 * Returns the file-relative block number of the first block past eof in
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004394 * the file. This is not based on i_size, it is based on the extent records.
4395 * Returns 0 for local files, as they do not have extent records.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396 */
4397int /* error */
4398xfs_bmap_last_offset(
4399 xfs_trans_t *tp, /* transaction pointer */
4400 xfs_inode_t *ip, /* incore inode */
4401 xfs_fileoff_t *last_block, /* last block */
4402 int whichfork) /* data or attr fork */
4403{
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10004404 xfs_bmbt_rec_host_t *ep; /* pointer to last extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405 int error; /* error return value */
4406 xfs_ifork_t *ifp; /* inode fork pointer */
4407 xfs_extnum_t nextents; /* number of extent entries */
4408
4409 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE &&
4410 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
4411 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_LOCAL)
4412 return XFS_ERROR(EIO);
4413 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
4414 *last_block = 0;
4415 return 0;
4416 }
4417 ifp = XFS_IFORK_PTR(ip, whichfork);
4418 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
4419 (error = xfs_iread_extents(tp, ip, whichfork)))
4420 return error;
4421 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
4422 if (!nextents) {
4423 *last_block = 0;
4424 return 0;
4425 }
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004426 ep = xfs_iext_get_ext(ifp, nextents - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427 *last_block = xfs_bmbt_get_startoff(ep) + xfs_bmbt_get_blockcount(ep);
4428 return 0;
4429}
4430
4431/*
4432 * Returns whether the selected fork of the inode has exactly one
4433 * block or not. For the data fork we check this matches di_size,
4434 * implying the file's range is 0..bsize-1.
4435 */
4436int /* 1=>1 block, 0=>otherwise */
4437xfs_bmap_one_block(
4438 xfs_inode_t *ip, /* incore inode */
4439 int whichfork) /* data or attr fork */
4440{
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10004441 xfs_bmbt_rec_host_t *ep; /* ptr to fork's extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 xfs_ifork_t *ifp; /* inode fork pointer */
4443 int rval; /* return value */
4444 xfs_bmbt_irec_t s; /* internal version of extent */
4445
4446#ifndef DEBUG
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10004447 if (whichfork == XFS_DATA_FORK) {
4448 return ((ip->i_d.di_mode & S_IFMT) == S_IFREG) ?
4449 (ip->i_size == ip->i_mount->m_sb.sb_blocksize) :
4450 (ip->i_d.di_size == ip->i_mount->m_sb.sb_blocksize);
4451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452#endif /* !DEBUG */
4453 if (XFS_IFORK_NEXTENTS(ip, whichfork) != 1)
4454 return 0;
4455 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
4456 return 0;
4457 ifp = XFS_IFORK_PTR(ip, whichfork);
4458 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004459 ep = xfs_iext_get_ext(ifp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460 xfs_bmbt_get_all(ep, &s);
4461 rval = s.br_startoff == 0 && s.br_blockcount == 1;
4462 if (rval && whichfork == XFS_DATA_FORK)
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10004463 ASSERT(ip->i_size == ip->i_mount->m_sb.sb_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464 return rval;
4465}
4466
4467/*
4468 * Read in the extents to if_extents.
4469 * All inode fields are set up by caller, we just traverse the btree
4470 * and copy the records in. If the file system cannot contain unwritten
4471 * extents, the records are checked for no "state" flags.
4472 */
4473int /* error */
4474xfs_bmap_read_extents(
4475 xfs_trans_t *tp, /* transaction pointer */
4476 xfs_inode_t *ip, /* incore inode */
4477 int whichfork) /* data or attr fork */
4478{
4479 xfs_bmbt_block_t *block; /* current btree block */
4480 xfs_fsblock_t bno; /* block # of "block" */
4481 xfs_buf_t *bp; /* buffer for "block" */
4482 int error; /* error return value */
4483 xfs_exntfmt_t exntf; /* XFS_EXTFMT_NOSTATE, if checking */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484 xfs_extnum_t i, j; /* index into the extents list */
4485 xfs_ifork_t *ifp; /* fork structure */
4486 int level; /* btree level, for checking */
4487 xfs_mount_t *mp; /* file system mount structure */
Christoph Hellwig576039c2006-09-28 10:58:06 +10004488 __be64 *pp; /* pointer to block address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489 /* REFERENCED */
4490 xfs_extnum_t room; /* number of entries there's room for */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491
4492 bno = NULLFSBLOCK;
4493 mp = ip->i_mount;
4494 ifp = XFS_IFORK_PTR(ip, whichfork);
4495 exntf = (whichfork != XFS_DATA_FORK) ? XFS_EXTFMT_NOSTATE :
4496 XFS_EXTFMT_INODE(ip);
4497 block = ifp->if_broot;
4498 /*
4499 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
4500 */
Christoph Hellwig16259e72005-11-02 15:11:25 +11004501 level = be16_to_cpu(block->bb_level);
4502 ASSERT(level > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503 pp = XFS_BMAP_BROOT_PTR_ADDR(block, 1, ifp->if_broot_bytes);
Christoph Hellwig576039c2006-09-28 10:58:06 +10004504 bno = be64_to_cpu(*pp);
4505 ASSERT(bno != NULLDFSBNO);
4506 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
4507 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508 /*
4509 * Go down the tree until leaf level is reached, following the first
4510 * pointer (leftmost) at each level.
4511 */
4512 while (level-- > 0) {
4513 if ((error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
4514 XFS_BMAP_BTREE_REF)))
4515 return error;
4516 block = XFS_BUF_TO_BMBT_BLOCK(bp);
4517 XFS_WANT_CORRUPTED_GOTO(
4518 XFS_BMAP_SANITY_CHECK(mp, block, level),
4519 error0);
4520 if (level == 0)
4521 break;
Eric Sandeen2c36dde2007-02-10 18:37:33 +11004522 pp = XFS_BTREE_PTR_ADDR(xfs_bmbt, block, 1, mp->m_bmap_dmxr[1]);
Christoph Hellwig576039c2006-09-28 10:58:06 +10004523 bno = be64_to_cpu(*pp);
4524 XFS_WANT_CORRUPTED_GOTO(XFS_FSB_SANITY_CHECK(mp, bno), error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525 xfs_trans_brelse(tp, bp);
4526 }
4527 /*
4528 * Here with bp and block set to the leftmost leaf node in the tree.
4529 */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004530 room = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531 i = 0;
4532 /*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004533 * Loop over all leaf nodes. Copy information to the extent records.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534 */
4535 for (;;) {
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10004536 xfs_bmbt_rec_t *frp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537 xfs_fsblock_t nextbno;
4538 xfs_extnum_t num_recs;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004539 xfs_extnum_t start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540
4541
Christoph Hellwig16259e72005-11-02 15:11:25 +11004542 num_recs = be16_to_cpu(block->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543 if (unlikely(i + num_recs > room)) {
4544 ASSERT(i + num_recs <= room);
Nathan Scott3762ec62006-01-12 10:29:53 +11004545 xfs_fs_repair_cmn_err(CE_WARN, ip->i_mount,
4546 "corrupt dinode %Lu, (btree extents).",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547 (unsigned long long) ip->i_ino);
4548 XFS_ERROR_REPORT("xfs_bmap_read_extents(1)",
4549 XFS_ERRLEVEL_LOW,
4550 ip->i_mount);
4551 goto error0;
4552 }
4553 XFS_WANT_CORRUPTED_GOTO(
4554 XFS_BMAP_SANITY_CHECK(mp, block, 0),
4555 error0);
4556 /*
4557 * Read-ahead the next leaf block, if any.
4558 */
Christoph Hellwig16259e72005-11-02 15:11:25 +11004559 nextbno = be64_to_cpu(block->bb_rightsib);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560 if (nextbno != NULLFSBLOCK)
4561 xfs_btree_reada_bufl(mp, nextbno, 1);
4562 /*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004563 * Copy records into the extent records.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564 */
Eric Sandeen2c36dde2007-02-10 18:37:33 +11004565 frp = XFS_BTREE_REC_ADDR(xfs_bmbt, block, 1);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004566 start = i;
4567 for (j = 0; j < num_recs; j++, i++, frp++) {
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10004568 xfs_bmbt_rec_host_t *trp = xfs_iext_get_ext(ifp, i);
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +10004569 trp->l0 = be64_to_cpu(frp->l0);
4570 trp->l1 = be64_to_cpu(frp->l1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571 }
4572 if (exntf == XFS_EXTFMT_NOSTATE) {
4573 /*
4574 * Check all attribute bmap btree records and
4575 * any "older" data bmap btree records for a
4576 * set bit in the "extent flag" position.
4577 */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004578 if (unlikely(xfs_check_nostate_extents(ifp,
4579 start, num_recs))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580 XFS_ERROR_REPORT("xfs_bmap_read_extents(2)",
4581 XFS_ERRLEVEL_LOW,
4582 ip->i_mount);
4583 goto error0;
4584 }
4585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586 xfs_trans_brelse(tp, bp);
4587 bno = nextbno;
4588 /*
4589 * If we've reached the end, stop.
4590 */
4591 if (bno == NULLFSBLOCK)
4592 break;
4593 if ((error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
4594 XFS_BMAP_BTREE_REF)))
4595 return error;
4596 block = XFS_BUF_TO_BMBT_BLOCK(bp);
4597 }
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004598 ASSERT(i == (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599 ASSERT(i == XFS_IFORK_NEXTENTS(ip, whichfork));
Eric Sandeen3a59c942007-07-11 11:09:47 +10004600 XFS_BMAP_TRACE_EXLIST(ip, i, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 return 0;
4602error0:
4603 xfs_trans_brelse(tp, bp);
4604 return XFS_ERROR(EFSCORRUPTED);
4605}
4606
4607#ifdef XFS_BMAP_TRACE
4608/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004609 * Add bmap trace insert entries for all the contents of the extent records.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610 */
4611void
4612xfs_bmap_trace_exlist(
Eric Sandeen3a59c942007-07-11 11:09:47 +10004613 const char *fname, /* function name */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614 xfs_inode_t *ip, /* incore inode pointer */
4615 xfs_extnum_t cnt, /* count of entries in the list */
4616 int whichfork) /* data or attr fork */
4617{
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10004618 xfs_bmbt_rec_host_t *ep; /* current extent record */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004619 xfs_extnum_t idx; /* extent record index */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620 xfs_ifork_t *ifp; /* inode fork pointer */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004621 xfs_bmbt_irec_t s; /* file extent record */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622
4623 ifp = XFS_IFORK_PTR(ip, whichfork);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004624 ASSERT(cnt == (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t)));
4625 for (idx = 0; idx < cnt; idx++) {
4626 ep = xfs_iext_get_ext(ifp, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627 xfs_bmbt_get_all(ep, &s);
Eric Sandeen3a59c942007-07-11 11:09:47 +10004628 XFS_BMAP_TRACE_INSERT("exlist", ip, idx, 1, &s, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629 whichfork);
4630 }
4631}
4632#endif
4633
4634#ifdef DEBUG
4635/*
4636 * Validate that the bmbt_irecs being returned from bmapi are valid
4637 * given the callers original parameters. Specifically check the
4638 * ranges of the returned irecs to ensure that they only extent beyond
4639 * the given parameters if the XFS_BMAPI_ENTIRE flag was set.
4640 */
4641STATIC void
4642xfs_bmap_validate_ret(
4643 xfs_fileoff_t bno,
4644 xfs_filblks_t len,
4645 int flags,
4646 xfs_bmbt_irec_t *mval,
4647 int nmap,
4648 int ret_nmap)
4649{
4650 int i; /* index to map values */
4651
4652 ASSERT(ret_nmap <= nmap);
4653
4654 for (i = 0; i < ret_nmap; i++) {
4655 ASSERT(mval[i].br_blockcount > 0);
4656 if (!(flags & XFS_BMAPI_ENTIRE)) {
4657 ASSERT(mval[i].br_startoff >= bno);
4658 ASSERT(mval[i].br_blockcount <= len);
4659 ASSERT(mval[i].br_startoff + mval[i].br_blockcount <=
4660 bno + len);
4661 } else {
4662 ASSERT(mval[i].br_startoff < bno + len);
4663 ASSERT(mval[i].br_startoff + mval[i].br_blockcount >
4664 bno);
4665 }
4666 ASSERT(i == 0 ||
4667 mval[i - 1].br_startoff + mval[i - 1].br_blockcount ==
4668 mval[i].br_startoff);
4669 if ((flags & XFS_BMAPI_WRITE) && !(flags & XFS_BMAPI_DELAY))
4670 ASSERT(mval[i].br_startblock != DELAYSTARTBLOCK &&
4671 mval[i].br_startblock != HOLESTARTBLOCK);
4672 ASSERT(mval[i].br_state == XFS_EXT_NORM ||
4673 mval[i].br_state == XFS_EXT_UNWRITTEN);
4674 }
4675}
4676#endif /* DEBUG */
4677
4678
4679/*
4680 * Map file blocks to filesystem blocks.
4681 * File range is given by the bno/len pair.
4682 * Adds blocks to file if a write ("flags & XFS_BMAPI_WRITE" set)
4683 * into a hole or past eof.
4684 * Only allocates blocks from a single allocation group,
4685 * to avoid locking problems.
4686 * The returned value in "firstblock" from the first call in a transaction
4687 * must be remembered and presented to subsequent calls in "firstblock".
4688 * An upper bound for the number of blocks to be allocated is supplied to
4689 * the first call in "total"; if no allocation group has that many free
4690 * blocks then the call will fail (return NULLFSBLOCK in "firstblock").
4691 */
4692int /* error */
4693xfs_bmapi(
4694 xfs_trans_t *tp, /* transaction pointer */
4695 xfs_inode_t *ip, /* incore inode */
4696 xfs_fileoff_t bno, /* starting file offs. mapped */
4697 xfs_filblks_t len, /* length to map in file */
4698 int flags, /* XFS_BMAPI_... */
4699 xfs_fsblock_t *firstblock, /* first allocated block
4700 controls a.g. for allocs */
4701 xfs_extlen_t total, /* total blocks needed */
4702 xfs_bmbt_irec_t *mval, /* output: map values */
4703 int *nmap, /* i/o: mval size/count */
Olaf Weber3e57ecf2006-06-09 14:48:12 +10004704 xfs_bmap_free_t *flist, /* i/o: list extents to free */
4705 xfs_extdelta_t *delta) /* o: change made to incore extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706{
4707 xfs_fsblock_t abno; /* allocated block number */
4708 xfs_extlen_t alen; /* allocated extent length */
4709 xfs_fileoff_t aoff; /* allocated file offset */
4710 xfs_bmalloca_t bma; /* args for xfs_bmap_alloc */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711 xfs_btree_cur_t *cur; /* bmap btree cursor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712 xfs_fileoff_t end; /* end of mapped file region */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004713 int eof; /* we've hit the end of extents */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10004714 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 int error; /* error return */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004716 xfs_bmbt_irec_t got; /* current file extent record */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717 xfs_ifork_t *ifp; /* inode fork pointer */
4718 xfs_extlen_t indlen; /* indirect blocks length */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719 xfs_extnum_t lastx; /* last useful extent number */
4720 int logflags; /* flags for transaction logging */
4721 xfs_extlen_t minleft; /* min blocks left after allocation */
4722 xfs_extlen_t minlen; /* min allocation size */
4723 xfs_mount_t *mp; /* xfs mount structure */
4724 int n; /* current extent index */
4725 int nallocs; /* number of extents alloc\'d */
4726 xfs_extnum_t nextents; /* number of extents in file */
4727 xfs_fileoff_t obno; /* old block number (offset) */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004728 xfs_bmbt_irec_t prev; /* previous file extent record */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 int tmp_logflags; /* temp flags holder */
Nathan Scott06d10dd2005-06-21 15:48:47 +10004730 int whichfork; /* data or attr fork */
4731 char inhole; /* current location is hole in file */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732 char wasdelay; /* old extent was delayed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733 char wr; /* this is a write request */
Nathan Scott06d10dd2005-06-21 15:48:47 +10004734 char rt; /* this is a realtime file */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735#ifdef DEBUG
4736 xfs_fileoff_t orig_bno; /* original block number value */
4737 int orig_flags; /* original flags arg value */
4738 xfs_filblks_t orig_len; /* original value of len arg */
4739 xfs_bmbt_irec_t *orig_mval; /* original value of mval */
4740 int orig_nmap; /* original value of *nmap */
4741
4742 orig_bno = bno;
4743 orig_len = len;
4744 orig_flags = flags;
4745 orig_mval = mval;
4746 orig_nmap = *nmap;
4747#endif
4748 ASSERT(*nmap >= 1);
4749 ASSERT(*nmap <= XFS_BMAP_MAX_NMAP || !(flags & XFS_BMAPI_WRITE));
4750 whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
4751 XFS_ATTR_FORK : XFS_DATA_FORK;
4752 mp = ip->i_mount;
4753 if (unlikely(XFS_TEST_ERROR(
4754 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
4755 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE &&
4756 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_LOCAL),
4757 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
4758 XFS_ERROR_REPORT("xfs_bmapi", XFS_ERRLEVEL_LOW, mp);
4759 return XFS_ERROR(EFSCORRUPTED);
4760 }
4761 if (XFS_FORCED_SHUTDOWN(mp))
4762 return XFS_ERROR(EIO);
Nathan Scottdd9f4382006-01-11 15:28:28 +11004763 rt = (whichfork == XFS_DATA_FORK) && XFS_IS_REALTIME_INODE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764 ifp = XFS_IFORK_PTR(ip, whichfork);
4765 ASSERT(ifp->if_ext_max ==
4766 XFS_IFORK_SIZE(ip, whichfork) / (uint)sizeof(xfs_bmbt_rec_t));
4767 if ((wr = (flags & XFS_BMAPI_WRITE)) != 0)
4768 XFS_STATS_INC(xs_blk_mapw);
4769 else
4770 XFS_STATS_INC(xs_blk_mapr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771 /*
Nathan Scott39269e22006-03-14 13:33:50 +11004772 * IGSTATE flag is used to combine extents which
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773 * differ only due to the state of the extents.
4774 * This technique is used from xfs_getbmap()
4775 * when the caller does not wish to see the
4776 * separation (which is the default).
4777 *
4778 * This technique is also used when writing a
4779 * buffer which has been partially written,
4780 * (usually by being flushed during a chunkread),
4781 * to ensure one write takes place. This also
4782 * prevents a change in the xfs inode extents at
4783 * this time, intentionally. This change occurs
4784 * on completion of the write operation, in
4785 * xfs_strat_comp(), where the xfs_bmapi() call
4786 * is transactioned, and the extents combined.
4787 */
Nathan Scott39269e22006-03-14 13:33:50 +11004788 if ((flags & XFS_BMAPI_IGSTATE) && wr) /* if writing unwritten space */
4789 wr = 0; /* no allocations are allowed */
4790 ASSERT(wr || !(flags & XFS_BMAPI_DELAY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791 logflags = 0;
4792 nallocs = 0;
4793 cur = NULL;
4794 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
4795 ASSERT(wr && tp);
4796 if ((error = xfs_bmap_local_to_extents(tp, ip,
4797 firstblock, total, &logflags, whichfork)))
4798 goto error0;
4799 }
4800 if (wr && *firstblock == NULLFSBLOCK) {
4801 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE)
Christoph Hellwig16259e72005-11-02 15:11:25 +11004802 minleft = be16_to_cpu(ifp->if_broot->bb_level) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803 else
4804 minleft = 1;
4805 } else
4806 minleft = 0;
4807 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
4808 (error = xfs_iread_extents(tp, ip, whichfork)))
4809 goto error0;
4810 ep = xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got,
4811 &prev);
4812 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
4813 n = 0;
4814 end = bno + len;
4815 obno = bno;
4816 bma.ip = NULL;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10004817 if (delta) {
4818 delta->xed_startoff = NULLFILEOFF;
4819 delta->xed_blockcount = 0;
4820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821 while (bno < end && n < *nmap) {
4822 /*
4823 * Reading past eof, act as though there's a hole
4824 * up to end.
4825 */
4826 if (eof && !wr)
4827 got.br_startoff = end;
4828 inhole = eof || got.br_startoff > bno;
Nathan Scott39269e22006-03-14 13:33:50 +11004829 wasdelay = wr && !inhole && !(flags & XFS_BMAPI_DELAY) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830 ISNULLSTARTBLOCK(got.br_startblock);
4831 /*
4832 * First, deal with the hole before the allocated space
4833 * that we found, if any.
4834 */
4835 if (wr && (inhole || wasdelay)) {
4836 /*
4837 * For the wasdelay case, we could also just
4838 * allocate the stuff asked for in this bmap call
4839 * but that wouldn't be as good.
4840 */
Nathan Scott39269e22006-03-14 13:33:50 +11004841 if (wasdelay && !(flags & XFS_BMAPI_EXACT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842 alen = (xfs_extlen_t)got.br_blockcount;
4843 aoff = got.br_startoff;
4844 if (lastx != NULLEXTNUM && lastx) {
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004845 ep = xfs_iext_get_ext(ifp, lastx - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846 xfs_bmbt_get_all(ep, &prev);
4847 }
4848 } else if (wasdelay) {
4849 alen = (xfs_extlen_t)
4850 XFS_FILBLKS_MIN(len,
4851 (got.br_startoff +
4852 got.br_blockcount) - bno);
4853 aoff = bno;
4854 } else {
4855 alen = (xfs_extlen_t)
4856 XFS_FILBLKS_MIN(len, MAXEXTLEN);
4857 if (!eof)
4858 alen = (xfs_extlen_t)
4859 XFS_FILBLKS_MIN(alen,
4860 got.br_startoff - bno);
4861 aoff = bno;
4862 }
Nathan Scott39269e22006-03-14 13:33:50 +11004863 minlen = (flags & XFS_BMAPI_CONTIG) ? alen : 1;
4864 if (flags & XFS_BMAPI_DELAY) {
Nathan Scottdd9f4382006-01-11 15:28:28 +11004865 xfs_extlen_t extsz;
Nathan Scott06d10dd2005-06-21 15:48:47 +10004866
4867 /* Figure out the extent size, adjust alen */
David Chinner957d0eb2007-06-18 16:50:37 +10004868 extsz = xfs_get_extsz_hint(ip);
Nathan Scottdd9f4382006-01-11 15:28:28 +11004869 if (extsz) {
4870 error = xfs_bmap_extsize_align(mp,
4871 &got, &prev, extsz,
Nathan Scott39269e22006-03-14 13:33:50 +11004872 rt, eof,
4873 flags&XFS_BMAPI_DELAY,
4874 flags&XFS_BMAPI_CONVERT,
Nathan Scottdd9f4382006-01-11 15:28:28 +11004875 &aoff, &alen);
4876 ASSERT(!error);
4877 }
4878
4879 if (rt)
4880 extsz = alen / mp->m_sb.sb_rextsize;
Nathan Scott06d10dd2005-06-21 15:48:47 +10004881
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 /*
4883 * Make a transaction-less quota reservation for
4884 * delayed allocation blocks. This number gets
Nathan Scott9a2a7de2006-03-31 13:04:49 +10004885 * adjusted later. We return if we haven't
4886 * allocated blocks already inside this loop.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887 */
Nathan Scott9a2a7de2006-03-31 13:04:49 +10004888 if ((error = XFS_TRANS_RESERVE_QUOTA_NBLKS(
Nathan Scott06d10dd2005-06-21 15:48:47 +10004889 mp, NULL, ip, (long)alen, 0,
4890 rt ? XFS_QMOPT_RES_RTBLKS :
Nathan Scott9a2a7de2006-03-31 13:04:49 +10004891 XFS_QMOPT_RES_REGBLKS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892 if (n == 0) {
4893 *nmap = 0;
4894 ASSERT(cur == NULL);
Nathan Scott9a2a7de2006-03-31 13:04:49 +10004895 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896 }
4897 break;
4898 }
4899
4900 /*
4901 * Split changing sb for alen and indlen since
4902 * they could be coming from different places.
4903 */
Nathan Scott06d10dd2005-06-21 15:48:47 +10004904 indlen = (xfs_extlen_t)
4905 xfs_bmap_worst_indlen(ip, alen);
4906 ASSERT(indlen > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907
Nathan Scottdd9f4382006-01-11 15:28:28 +11004908 if (rt) {
Nathan Scott06d10dd2005-06-21 15:48:47 +10004909 error = xfs_mod_incore_sb(mp,
4910 XFS_SBS_FREXTENTS,
David Chinner20f4ebf2007-02-10 18:36:10 +11004911 -((int64_t)extsz), (flags &
Nathan Scott39269e22006-03-14 13:33:50 +11004912 XFS_BMAPI_RSVBLOCKS));
Nathan Scottdd9f4382006-01-11 15:28:28 +11004913 } else {
Nathan Scott06d10dd2005-06-21 15:48:47 +10004914 error = xfs_mod_incore_sb(mp,
4915 XFS_SBS_FDBLOCKS,
David Chinner20f4ebf2007-02-10 18:36:10 +11004916 -((int64_t)alen), (flags &
Nathan Scott39269e22006-03-14 13:33:50 +11004917 XFS_BMAPI_RSVBLOCKS));
Nathan Scottdd9f4382006-01-11 15:28:28 +11004918 }
David Chinner3bdbfb12005-09-02 16:40:47 +10004919 if (!error) {
Nathan Scott06d10dd2005-06-21 15:48:47 +10004920 error = xfs_mod_incore_sb(mp,
4921 XFS_SBS_FDBLOCKS,
David Chinner20f4ebf2007-02-10 18:36:10 +11004922 -((int64_t)indlen), (flags &
Nathan Scott39269e22006-03-14 13:33:50 +11004923 XFS_BMAPI_RSVBLOCKS));
Nathan Scott3ddb8fa2006-01-11 15:33:02 +11004924 if (error && rt)
4925 xfs_mod_incore_sb(mp,
David Chinner3bdbfb12005-09-02 16:40:47 +10004926 XFS_SBS_FREXTENTS,
David Chinner20f4ebf2007-02-10 18:36:10 +11004927 (int64_t)extsz, (flags &
Nathan Scott39269e22006-03-14 13:33:50 +11004928 XFS_BMAPI_RSVBLOCKS));
Nathan Scott3ddb8fa2006-01-11 15:33:02 +11004929 else if (error)
4930 xfs_mod_incore_sb(mp,
David Chinner3bdbfb12005-09-02 16:40:47 +10004931 XFS_SBS_FDBLOCKS,
David Chinner20f4ebf2007-02-10 18:36:10 +11004932 (int64_t)alen, (flags &
Nathan Scott39269e22006-03-14 13:33:50 +11004933 XFS_BMAPI_RSVBLOCKS));
David Chinner3bdbfb12005-09-02 16:40:47 +10004934 }
Nathan Scott06d10dd2005-06-21 15:48:47 +10004935
4936 if (error) {
Nathan Scott3ddb8fa2006-01-11 15:33:02 +11004937 if (XFS_IS_QUOTA_ON(mp))
Nathan Scott06d10dd2005-06-21 15:48:47 +10004938 /* unreserve the blocks now */
Nathan Scottdd9f4382006-01-11 15:28:28 +11004939 (void)
Nathan Scott06d10dd2005-06-21 15:48:47 +10004940 XFS_TRANS_UNRESERVE_QUOTA_NBLKS(
4941 mp, NULL, ip,
4942 (long)alen, 0, rt ?
4943 XFS_QMOPT_RES_RTBLKS :
4944 XFS_QMOPT_RES_REGBLKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945 break;
4946 }
Nathan Scott06d10dd2005-06-21 15:48:47 +10004947
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948 ip->i_delayed_blks += alen;
4949 abno = NULLSTARTBLOCK(indlen);
4950 } else {
4951 /*
4952 * If first time, allocate and fill in
4953 * once-only bma fields.
4954 */
4955 if (bma.ip == NULL) {
4956 bma.tp = tp;
4957 bma.ip = ip;
4958 bma.prevp = &prev;
4959 bma.gotp = &got;
4960 bma.total = total;
4961 bma.userdata = 0;
4962 }
4963 /* Indicate if this is the first user data
4964 * in the file, or just any user data.
4965 */
Nathan Scott39269e22006-03-14 13:33:50 +11004966 if (!(flags & XFS_BMAPI_METADATA)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967 bma.userdata = (aoff == 0) ?
4968 XFS_ALLOC_INITIAL_USER_DATA :
4969 XFS_ALLOC_USERDATA;
4970 }
4971 /*
4972 * Fill in changeable bma fields.
4973 */
4974 bma.eof = eof;
4975 bma.firstblock = *firstblock;
4976 bma.alen = alen;
4977 bma.off = aoff;
Adrian Bunk72880262006-08-30 13:41:58 +10004978 bma.conv = !!(flags & XFS_BMAPI_CONVERT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979 bma.wasdel = wasdelay;
4980 bma.minlen = minlen;
4981 bma.low = flist->xbf_low;
4982 bma.minleft = minleft;
4983 /*
4984 * Only want to do the alignment at the
4985 * eof if it is userdata and allocation length
4986 * is larger than a stripe unit.
4987 */
4988 if (mp->m_dalign && alen >= mp->m_dalign &&
Nathan Scott39269e22006-03-14 13:33:50 +11004989 (!(flags & XFS_BMAPI_METADATA)) &&
4990 (whichfork == XFS_DATA_FORK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991 if ((error = xfs_bmap_isaeof(ip, aoff,
4992 whichfork, &bma.aeof)))
4993 goto error0;
4994 } else
4995 bma.aeof = 0;
4996 /*
4997 * Call allocator.
4998 */
4999 if ((error = xfs_bmap_alloc(&bma)))
5000 goto error0;
5001 /*
5002 * Copy out result fields.
5003 */
5004 abno = bma.rval;
5005 if ((flist->xbf_low = bma.low))
5006 minleft = 0;
5007 alen = bma.alen;
5008 aoff = bma.off;
5009 ASSERT(*firstblock == NULLFSBLOCK ||
5010 XFS_FSB_TO_AGNO(mp, *firstblock) ==
5011 XFS_FSB_TO_AGNO(mp, bma.firstblock) ||
5012 (flist->xbf_low &&
5013 XFS_FSB_TO_AGNO(mp, *firstblock) <
5014 XFS_FSB_TO_AGNO(mp, bma.firstblock)));
5015 *firstblock = bma.firstblock;
5016 if (cur)
5017 cur->bc_private.b.firstblock =
5018 *firstblock;
5019 if (abno == NULLFSBLOCK)
5020 break;
5021 if ((ifp->if_flags & XFS_IFBROOT) && !cur) {
5022 cur = xfs_btree_init_cursor(mp,
5023 tp, NULL, 0, XFS_BTNUM_BMAP,
5024 ip, whichfork);
5025 cur->bc_private.b.firstblock =
5026 *firstblock;
5027 cur->bc_private.b.flist = flist;
5028 }
5029 /*
5030 * Bump the number of extents we've allocated
5031 * in this call.
5032 */
5033 nallocs++;
5034 }
5035 if (cur)
5036 cur->bc_private.b.flags =
5037 wasdelay ? XFS_BTCUR_BPRV_WASDEL : 0;
5038 got.br_startoff = aoff;
5039 got.br_startblock = abno;
5040 got.br_blockcount = alen;
5041 got.br_state = XFS_EXT_NORM; /* assume normal */
5042 /*
5043 * Determine state of extent, and the filesystem.
5044 * A wasdelay extent has been initialized, so
5045 * shouldn't be flagged as unwritten.
5046 */
5047 if (wr && XFS_SB_VERSION_HASEXTFLGBIT(&mp->m_sb)) {
5048 if (!wasdelay && (flags & XFS_BMAPI_PREALLOC))
5049 got.br_state = XFS_EXT_UNWRITTEN;
5050 }
5051 error = xfs_bmap_add_extent(ip, lastx, &cur, &got,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10005052 firstblock, flist, &tmp_logflags, delta,
5053 whichfork, (flags & XFS_BMAPI_RSVBLOCKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054 logflags |= tmp_logflags;
5055 if (error)
5056 goto error0;
5057 lastx = ifp->if_lastex;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005058 ep = xfs_iext_get_ext(ifp, lastx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
5060 xfs_bmbt_get_all(ep, &got);
5061 ASSERT(got.br_startoff <= aoff);
5062 ASSERT(got.br_startoff + got.br_blockcount >=
5063 aoff + alen);
5064#ifdef DEBUG
Nathan Scott39269e22006-03-14 13:33:50 +11005065 if (flags & XFS_BMAPI_DELAY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066 ASSERT(ISNULLSTARTBLOCK(got.br_startblock));
5067 ASSERT(STARTBLOCKVAL(got.br_startblock) > 0);
5068 }
5069 ASSERT(got.br_state == XFS_EXT_NORM ||
5070 got.br_state == XFS_EXT_UNWRITTEN);
5071#endif
5072 /*
5073 * Fall down into the found allocated space case.
5074 */
5075 } else if (inhole) {
5076 /*
5077 * Reading in a hole.
5078 */
5079 mval->br_startoff = bno;
5080 mval->br_startblock = HOLESTARTBLOCK;
5081 mval->br_blockcount =
5082 XFS_FILBLKS_MIN(len, got.br_startoff - bno);
5083 mval->br_state = XFS_EXT_NORM;
5084 bno += mval->br_blockcount;
5085 len -= mval->br_blockcount;
5086 mval++;
5087 n++;
5088 continue;
5089 }
5090 /*
5091 * Then deal with the allocated space we found.
5092 */
5093 ASSERT(ep != NULL);
Nathan Scott39269e22006-03-14 13:33:50 +11005094 if (!(flags & XFS_BMAPI_ENTIRE) &&
5095 (got.br_startoff + got.br_blockcount > obno)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096 if (obno > bno)
5097 bno = obno;
5098 ASSERT((bno >= obno) || (n == 0));
5099 ASSERT(bno < end);
5100 mval->br_startoff = bno;
5101 if (ISNULLSTARTBLOCK(got.br_startblock)) {
Nathan Scott39269e22006-03-14 13:33:50 +11005102 ASSERT(!wr || (flags & XFS_BMAPI_DELAY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103 mval->br_startblock = DELAYSTARTBLOCK;
5104 } else
5105 mval->br_startblock =
5106 got.br_startblock +
5107 (bno - got.br_startoff);
5108 /*
5109 * Return the minimum of what we got and what we
5110 * asked for for the length. We can use the len
5111 * variable here because it is modified below
5112 * and we could have been there before coming
5113 * here if the first part of the allocation
5114 * didn't overlap what was asked for.
5115 */
5116 mval->br_blockcount =
5117 XFS_FILBLKS_MIN(end - bno, got.br_blockcount -
5118 (bno - got.br_startoff));
5119 mval->br_state = got.br_state;
5120 ASSERT(mval->br_blockcount <= len);
5121 } else {
5122 *mval = got;
5123 if (ISNULLSTARTBLOCK(mval->br_startblock)) {
Nathan Scott39269e22006-03-14 13:33:50 +11005124 ASSERT(!wr || (flags & XFS_BMAPI_DELAY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125 mval->br_startblock = DELAYSTARTBLOCK;
5126 }
5127 }
5128
5129 /*
5130 * Check if writing previously allocated but
5131 * unwritten extents.
5132 */
5133 if (wr && mval->br_state == XFS_EXT_UNWRITTEN &&
5134 ((flags & (XFS_BMAPI_PREALLOC|XFS_BMAPI_DELAY)) == 0)) {
5135 /*
5136 * Modify (by adding) the state flag, if writing.
5137 */
5138 ASSERT(mval->br_blockcount <= len);
5139 if ((ifp->if_flags & XFS_IFBROOT) && !cur) {
5140 cur = xfs_btree_init_cursor(mp,
5141 tp, NULL, 0, XFS_BTNUM_BMAP,
5142 ip, whichfork);
5143 cur->bc_private.b.firstblock =
5144 *firstblock;
5145 cur->bc_private.b.flist = flist;
5146 }
5147 mval->br_state = XFS_EXT_NORM;
5148 error = xfs_bmap_add_extent(ip, lastx, &cur, mval,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10005149 firstblock, flist, &tmp_logflags, delta,
5150 whichfork, (flags & XFS_BMAPI_RSVBLOCKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151 logflags |= tmp_logflags;
5152 if (error)
5153 goto error0;
5154 lastx = ifp->if_lastex;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005155 ep = xfs_iext_get_ext(ifp, lastx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
5157 xfs_bmbt_get_all(ep, &got);
5158 /*
5159 * We may have combined previously unwritten
5160 * space with written space, so generate
5161 * another request.
5162 */
5163 if (mval->br_blockcount < len)
5164 continue;
5165 }
5166
Nathan Scott39269e22006-03-14 13:33:50 +11005167 ASSERT((flags & XFS_BMAPI_ENTIRE) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168 ((mval->br_startoff + mval->br_blockcount) <= end));
Nathan Scott39269e22006-03-14 13:33:50 +11005169 ASSERT((flags & XFS_BMAPI_ENTIRE) ||
5170 (mval->br_blockcount <= len) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171 (mval->br_startoff < obno));
5172 bno = mval->br_startoff + mval->br_blockcount;
5173 len = end - bno;
5174 if (n > 0 && mval->br_startoff == mval[-1].br_startoff) {
5175 ASSERT(mval->br_startblock == mval[-1].br_startblock);
5176 ASSERT(mval->br_blockcount > mval[-1].br_blockcount);
5177 ASSERT(mval->br_state == mval[-1].br_state);
5178 mval[-1].br_blockcount = mval->br_blockcount;
5179 mval[-1].br_state = mval->br_state;
5180 } else if (n > 0 && mval->br_startblock != DELAYSTARTBLOCK &&
5181 mval[-1].br_startblock != DELAYSTARTBLOCK &&
5182 mval[-1].br_startblock != HOLESTARTBLOCK &&
5183 mval->br_startblock ==
5184 mval[-1].br_startblock + mval[-1].br_blockcount &&
Nathan Scott39269e22006-03-14 13:33:50 +11005185 ((flags & XFS_BMAPI_IGSTATE) ||
5186 mval[-1].br_state == mval->br_state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187 ASSERT(mval->br_startoff ==
5188 mval[-1].br_startoff + mval[-1].br_blockcount);
5189 mval[-1].br_blockcount += mval->br_blockcount;
5190 } else if (n > 0 &&
5191 mval->br_startblock == DELAYSTARTBLOCK &&
5192 mval[-1].br_startblock == DELAYSTARTBLOCK &&
5193 mval->br_startoff ==
5194 mval[-1].br_startoff + mval[-1].br_blockcount) {
5195 mval[-1].br_blockcount += mval->br_blockcount;
5196 mval[-1].br_state = mval->br_state;
5197 } else if (!((n == 0) &&
5198 ((mval->br_startoff + mval->br_blockcount) <=
5199 obno))) {
5200 mval++;
5201 n++;
5202 }
5203 /*
5204 * If we're done, stop now. Stop when we've allocated
5205 * XFS_BMAP_MAX_NMAP extents no matter what. Otherwise
5206 * the transaction may get too big.
5207 */
5208 if (bno >= end || n >= *nmap || nallocs >= *nmap)
5209 break;
5210 /*
5211 * Else go on to the next record.
5212 */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005213 ep = xfs_iext_get_ext(ifp, ++lastx);
David Chinner4e5ae832007-06-05 16:24:15 +10005214 prev = got;
5215 if (lastx >= nextents)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216 eof = 1;
David Chinner4e5ae832007-06-05 16:24:15 +10005217 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218 xfs_bmbt_get_all(ep, &got);
5219 }
5220 ifp->if_lastex = lastx;
5221 *nmap = n;
5222 /*
5223 * Transform from btree to extents, give it cur.
5224 */
5225 if (tp && XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE &&
5226 XFS_IFORK_NEXTENTS(ip, whichfork) <= ifp->if_ext_max) {
5227 ASSERT(wr && cur);
5228 error = xfs_bmap_btree_to_extents(tp, ip, cur,
5229 &tmp_logflags, whichfork);
5230 logflags |= tmp_logflags;
5231 if (error)
5232 goto error0;
5233 }
5234 ASSERT(ifp->if_ext_max ==
5235 XFS_IFORK_SIZE(ip, whichfork) / (uint)sizeof(xfs_bmbt_rec_t));
5236 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE ||
5237 XFS_IFORK_NEXTENTS(ip, whichfork) > ifp->if_ext_max);
5238 error = 0;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10005239 if (delta && delta->xed_startoff != NULLFILEOFF) {
5240 /* A change was actually made.
5241 * Note that delta->xed_blockount is an offset at this
5242 * point and needs to be converted to a block count.
5243 */
5244 ASSERT(delta->xed_blockcount > delta->xed_startoff);
5245 delta->xed_blockcount -= delta->xed_startoff;
5246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247error0:
5248 /*
5249 * Log everything. Do this after conversion, there's no point in
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005250 * logging the extent records if we've converted to btree format.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251 */
5252 if ((logflags & XFS_ILOG_FEXT(whichfork)) &&
5253 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
5254 logflags &= ~XFS_ILOG_FEXT(whichfork);
5255 else if ((logflags & XFS_ILOG_FBROOT(whichfork)) &&
5256 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)
5257 logflags &= ~XFS_ILOG_FBROOT(whichfork);
5258 /*
5259 * Log whatever the flags say, even if error. Otherwise we might miss
5260 * detecting a case where the data is changed, there's an error,
5261 * and it's not logged so we don't shutdown when we should.
5262 */
5263 if (logflags) {
5264 ASSERT(tp && wr);
5265 xfs_trans_log_inode(tp, ip, logflags);
5266 }
5267 if (cur) {
5268 if (!error) {
5269 ASSERT(*firstblock == NULLFSBLOCK ||
5270 XFS_FSB_TO_AGNO(mp, *firstblock) ==
5271 XFS_FSB_TO_AGNO(mp,
5272 cur->bc_private.b.firstblock) ||
5273 (flist->xbf_low &&
5274 XFS_FSB_TO_AGNO(mp, *firstblock) <
5275 XFS_FSB_TO_AGNO(mp,
5276 cur->bc_private.b.firstblock)));
5277 *firstblock = cur->bc_private.b.firstblock;
5278 }
5279 xfs_btree_del_cursor(cur,
5280 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
5281 }
5282 if (!error)
5283 xfs_bmap_validate_ret(orig_bno, orig_len, orig_flags, orig_mval,
5284 orig_nmap, *nmap);
5285 return error;
5286}
5287
5288/*
5289 * Map file blocks to filesystem blocks, simple version.
5290 * One block (extent) only, read-only.
5291 * For flags, only the XFS_BMAPI_ATTRFORK flag is examined.
5292 * For the other flag values, the effect is as if XFS_BMAPI_METADATA
5293 * was set and all the others were clear.
5294 */
5295int /* error */
5296xfs_bmapi_single(
5297 xfs_trans_t *tp, /* transaction pointer */
5298 xfs_inode_t *ip, /* incore inode */
5299 int whichfork, /* data or attr fork */
5300 xfs_fsblock_t *fsb, /* output: mapped block */
5301 xfs_fileoff_t bno) /* starting file offs. mapped */
5302{
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005303 int eof; /* we've hit the end of extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304 int error; /* error return */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005305 xfs_bmbt_irec_t got; /* current file extent record */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306 xfs_ifork_t *ifp; /* inode fork pointer */
5307 xfs_extnum_t lastx; /* last useful extent number */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005308 xfs_bmbt_irec_t prev; /* previous file extent record */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005309
5310 ifp = XFS_IFORK_PTR(ip, whichfork);
5311 if (unlikely(
5312 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE &&
5313 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)) {
5314 XFS_ERROR_REPORT("xfs_bmapi_single", XFS_ERRLEVEL_LOW,
5315 ip->i_mount);
5316 return XFS_ERROR(EFSCORRUPTED);
5317 }
5318 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
5319 return XFS_ERROR(EIO);
5320 XFS_STATS_INC(xs_blk_mapr);
5321 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
5322 (error = xfs_iread_extents(tp, ip, whichfork)))
5323 return error;
5324 (void)xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got,
5325 &prev);
5326 /*
5327 * Reading past eof, act as though there's a hole
5328 * up to end.
5329 */
5330 if (eof || got.br_startoff > bno) {
5331 *fsb = NULLFSBLOCK;
5332 return 0;
5333 }
5334 ASSERT(!ISNULLSTARTBLOCK(got.br_startblock));
5335 ASSERT(bno < got.br_startoff + got.br_blockcount);
5336 *fsb = got.br_startblock + (bno - got.br_startoff);
5337 ifp->if_lastex = lastx;
5338 return 0;
5339}
5340
5341/*
5342 * Unmap (remove) blocks from a file.
5343 * If nexts is nonzero then the number of extents to remove is limited to
5344 * that value. If not all extents in the block range can be removed then
5345 * *done is set.
5346 */
5347int /* error */
5348xfs_bunmapi(
5349 xfs_trans_t *tp, /* transaction pointer */
5350 struct xfs_inode *ip, /* incore inode */
5351 xfs_fileoff_t bno, /* starting offset to unmap */
5352 xfs_filblks_t len, /* length to unmap in file */
5353 int flags, /* misc flags */
5354 xfs_extnum_t nexts, /* number of extents max */
5355 xfs_fsblock_t *firstblock, /* first allocated block
5356 controls a.g. for allocs */
5357 xfs_bmap_free_t *flist, /* i/o: list extents to free */
Olaf Weber3e57ecf2006-06-09 14:48:12 +10005358 xfs_extdelta_t *delta, /* o: change made to incore
5359 extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360 int *done) /* set if not done yet */
5361{
5362 xfs_btree_cur_t *cur; /* bmap btree cursor */
5363 xfs_bmbt_irec_t del; /* extent being deleted */
5364 int eof; /* is deleting at eof */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10005365 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005366 int error; /* error return value */
5367 xfs_extnum_t extno; /* extent number in list */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005368 xfs_bmbt_irec_t got; /* current extent record */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369 xfs_ifork_t *ifp; /* inode fork pointer */
5370 int isrt; /* freeing in rt area */
5371 xfs_extnum_t lastx; /* last extent index used */
5372 int logflags; /* transaction logging flags */
5373 xfs_extlen_t mod; /* rt extent offset */
5374 xfs_mount_t *mp; /* mount structure */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005375 xfs_extnum_t nextents; /* number of file extents */
5376 xfs_bmbt_irec_t prev; /* previous extent record */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377 xfs_fileoff_t start; /* first file offset deleted */
5378 int tmp_logflags; /* partial logging flags */
5379 int wasdel; /* was a delayed alloc extent */
5380 int whichfork; /* data or attribute fork */
5381 int rsvd; /* OK to allocate reserved blocks */
5382 xfs_fsblock_t sum;
5383
5384 xfs_bunmap_trace(ip, bno, len, flags, (inst_t *)__return_address);
5385 whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
5386 XFS_ATTR_FORK : XFS_DATA_FORK;
5387 ifp = XFS_IFORK_PTR(ip, whichfork);
5388 if (unlikely(
5389 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
5390 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)) {
5391 XFS_ERROR_REPORT("xfs_bunmapi", XFS_ERRLEVEL_LOW,
5392 ip->i_mount);
5393 return XFS_ERROR(EFSCORRUPTED);
5394 }
5395 mp = ip->i_mount;
5396 if (XFS_FORCED_SHUTDOWN(mp))
5397 return XFS_ERROR(EIO);
5398 rsvd = (flags & XFS_BMAPI_RSVBLOCKS) != 0;
5399 ASSERT(len > 0);
5400 ASSERT(nexts >= 0);
5401 ASSERT(ifp->if_ext_max ==
5402 XFS_IFORK_SIZE(ip, whichfork) / (uint)sizeof(xfs_bmbt_rec_t));
5403 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
5404 (error = xfs_iread_extents(tp, ip, whichfork)))
5405 return error;
5406 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
5407 if (nextents == 0) {
5408 *done = 1;
5409 return 0;
5410 }
5411 XFS_STATS_INC(xs_blk_unmap);
Nathan Scottdd9f4382006-01-11 15:28:28 +11005412 isrt = (whichfork == XFS_DATA_FORK) && XFS_IS_REALTIME_INODE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413 start = bno;
5414 bno = start + len - 1;
5415 ep = xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got,
5416 &prev);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10005417 if (delta) {
5418 delta->xed_startoff = NULLFILEOFF;
5419 delta->xed_blockcount = 0;
5420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421 /*
5422 * Check to see if the given block number is past the end of the
5423 * file, back up to the last block if so...
5424 */
5425 if (eof) {
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005426 ep = xfs_iext_get_ext(ifp, --lastx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427 xfs_bmbt_get_all(ep, &got);
5428 bno = got.br_startoff + got.br_blockcount - 1;
5429 }
5430 logflags = 0;
5431 if (ifp->if_flags & XFS_IFBROOT) {
5432 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE);
5433 cur = xfs_btree_init_cursor(mp, tp, NULL, 0, XFS_BTNUM_BMAP, ip,
5434 whichfork);
5435 cur->bc_private.b.firstblock = *firstblock;
5436 cur->bc_private.b.flist = flist;
5437 cur->bc_private.b.flags = 0;
5438 } else
5439 cur = NULL;
5440 extno = 0;
5441 while (bno != (xfs_fileoff_t)-1 && bno >= start && lastx >= 0 &&
5442 (nexts == 0 || extno < nexts)) {
5443 /*
5444 * Is the found extent after a hole in which bno lives?
5445 * Just back up to the previous extent, if so.
5446 */
5447 if (got.br_startoff > bno) {
5448 if (--lastx < 0)
5449 break;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005450 ep = xfs_iext_get_ext(ifp, lastx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005451 xfs_bmbt_get_all(ep, &got);
5452 }
5453 /*
5454 * Is the last block of this extent before the range
5455 * we're supposed to delete? If so, we're done.
5456 */
5457 bno = XFS_FILEOFF_MIN(bno,
5458 got.br_startoff + got.br_blockcount - 1);
5459 if (bno < start)
5460 break;
5461 /*
5462 * Then deal with the (possibly delayed) allocated space
5463 * we found.
5464 */
5465 ASSERT(ep != NULL);
5466 del = got;
5467 wasdel = ISNULLSTARTBLOCK(del.br_startblock);
5468 if (got.br_startoff < start) {
5469 del.br_startoff = start;
5470 del.br_blockcount -= start - got.br_startoff;
5471 if (!wasdel)
5472 del.br_startblock += start - got.br_startoff;
5473 }
5474 if (del.br_startoff + del.br_blockcount > bno + 1)
5475 del.br_blockcount = bno + 1 - del.br_startoff;
5476 sum = del.br_startblock + del.br_blockcount;
5477 if (isrt &&
5478 (mod = do_mod(sum, mp->m_sb.sb_rextsize))) {
5479 /*
5480 * Realtime extent not lined up at the end.
5481 * The extent could have been split into written
5482 * and unwritten pieces, or we could just be
5483 * unmapping part of it. But we can't really
5484 * get rid of part of a realtime extent.
5485 */
5486 if (del.br_state == XFS_EXT_UNWRITTEN ||
5487 !XFS_SB_VERSION_HASEXTFLGBIT(&mp->m_sb)) {
5488 /*
5489 * This piece is unwritten, or we're not
5490 * using unwritten extents. Skip over it.
5491 */
5492 ASSERT(bno >= mod);
5493 bno -= mod > del.br_blockcount ?
5494 del.br_blockcount : mod;
5495 if (bno < got.br_startoff) {
5496 if (--lastx >= 0)
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005497 xfs_bmbt_get_all(xfs_iext_get_ext(
5498 ifp, lastx), &got);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499 }
5500 continue;
5501 }
5502 /*
5503 * It's written, turn it unwritten.
5504 * This is better than zeroing it.
5505 */
5506 ASSERT(del.br_state == XFS_EXT_NORM);
5507 ASSERT(xfs_trans_get_block_res(tp) > 0);
5508 /*
5509 * If this spans a realtime extent boundary,
5510 * chop it back to the start of the one we end at.
5511 */
5512 if (del.br_blockcount > mod) {
5513 del.br_startoff += del.br_blockcount - mod;
5514 del.br_startblock += del.br_blockcount - mod;
5515 del.br_blockcount = mod;
5516 }
5517 del.br_state = XFS_EXT_UNWRITTEN;
5518 error = xfs_bmap_add_extent(ip, lastx, &cur, &del,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10005519 firstblock, flist, &logflags, delta,
5520 XFS_DATA_FORK, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521 if (error)
5522 goto error0;
5523 goto nodelete;
5524 }
5525 if (isrt && (mod = do_mod(del.br_startblock, mp->m_sb.sb_rextsize))) {
5526 /*
5527 * Realtime extent is lined up at the end but not
5528 * at the front. We'll get rid of full extents if
5529 * we can.
5530 */
5531 mod = mp->m_sb.sb_rextsize - mod;
5532 if (del.br_blockcount > mod) {
5533 del.br_blockcount -= mod;
5534 del.br_startoff += mod;
5535 del.br_startblock += mod;
5536 } else if ((del.br_startoff == start &&
5537 (del.br_state == XFS_EXT_UNWRITTEN ||
5538 xfs_trans_get_block_res(tp) == 0)) ||
5539 !XFS_SB_VERSION_HASEXTFLGBIT(&mp->m_sb)) {
5540 /*
5541 * Can't make it unwritten. There isn't
5542 * a full extent here so just skip it.
5543 */
5544 ASSERT(bno >= del.br_blockcount);
5545 bno -= del.br_blockcount;
5546 if (bno < got.br_startoff) {
5547 if (--lastx >= 0)
5548 xfs_bmbt_get_all(--ep, &got);
5549 }
5550 continue;
5551 } else if (del.br_state == XFS_EXT_UNWRITTEN) {
5552 /*
5553 * This one is already unwritten.
5554 * It must have a written left neighbor.
5555 * Unwrite the killed part of that one and
5556 * try again.
5557 */
5558 ASSERT(lastx > 0);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005559 xfs_bmbt_get_all(xfs_iext_get_ext(ifp,
5560 lastx - 1), &prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561 ASSERT(prev.br_state == XFS_EXT_NORM);
5562 ASSERT(!ISNULLSTARTBLOCK(prev.br_startblock));
5563 ASSERT(del.br_startblock ==
5564 prev.br_startblock + prev.br_blockcount);
5565 if (prev.br_startoff < start) {
5566 mod = start - prev.br_startoff;
5567 prev.br_blockcount -= mod;
5568 prev.br_startblock += mod;
5569 prev.br_startoff = start;
5570 }
5571 prev.br_state = XFS_EXT_UNWRITTEN;
5572 error = xfs_bmap_add_extent(ip, lastx - 1, &cur,
5573 &prev, firstblock, flist, &logflags,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10005574 delta, XFS_DATA_FORK, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005575 if (error)
5576 goto error0;
5577 goto nodelete;
5578 } else {
5579 ASSERT(del.br_state == XFS_EXT_NORM);
5580 del.br_state = XFS_EXT_UNWRITTEN;
5581 error = xfs_bmap_add_extent(ip, lastx, &cur,
5582 &del, firstblock, flist, &logflags,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10005583 delta, XFS_DATA_FORK, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584 if (error)
5585 goto error0;
5586 goto nodelete;
5587 }
5588 }
5589 if (wasdel) {
5590 ASSERT(STARTBLOCKVAL(del.br_startblock) > 0);
Nathan Scottdd9f4382006-01-11 15:28:28 +11005591 /* Update realtime/data freespace, unreserve quota */
Nathan Scott06d10dd2005-06-21 15:48:47 +10005592 if (isrt) {
5593 xfs_filblks_t rtexts;
5594
5595 rtexts = XFS_FSB_TO_B(mp, del.br_blockcount);
5596 do_div(rtexts, mp->m_sb.sb_rextsize);
5597 xfs_mod_incore_sb(mp, XFS_SBS_FREXTENTS,
David Chinner20f4ebf2007-02-10 18:36:10 +11005598 (int64_t)rtexts, rsvd);
Nathan Scottdd9f4382006-01-11 15:28:28 +11005599 (void)XFS_TRANS_RESERVE_QUOTA_NBLKS(mp,
5600 NULL, ip, -((long)del.br_blockcount), 0,
Nathan Scott06d10dd2005-06-21 15:48:47 +10005601 XFS_QMOPT_RES_RTBLKS);
5602 } else {
5603 xfs_mod_incore_sb(mp, XFS_SBS_FDBLOCKS,
David Chinner20f4ebf2007-02-10 18:36:10 +11005604 (int64_t)del.br_blockcount, rsvd);
Nathan Scottdd9f4382006-01-11 15:28:28 +11005605 (void)XFS_TRANS_RESERVE_QUOTA_NBLKS(mp,
5606 NULL, ip, -((long)del.br_blockcount), 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005607 XFS_QMOPT_RES_REGBLKS);
Nathan Scott06d10dd2005-06-21 15:48:47 +10005608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609 ip->i_delayed_blks -= del.br_blockcount;
5610 if (cur)
5611 cur->bc_private.b.flags |=
5612 XFS_BTCUR_BPRV_WASDEL;
5613 } else if (cur)
5614 cur->bc_private.b.flags &= ~XFS_BTCUR_BPRV_WASDEL;
5615 /*
5616 * If it's the case where the directory code is running
5617 * with no block reservation, and the deleted block is in
5618 * the middle of its extent, and the resulting insert
5619 * of an extent would cause transformation to btree format,
5620 * then reject it. The calling code will then swap
5621 * blocks around instead.
5622 * We have to do this now, rather than waiting for the
5623 * conversion to btree format, since the transaction
5624 * will be dirty.
5625 */
5626 if (!wasdel && xfs_trans_get_block_res(tp) == 0 &&
5627 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS &&
5628 XFS_IFORK_NEXTENTS(ip, whichfork) >= ifp->if_ext_max &&
5629 del.br_startoff > got.br_startoff &&
5630 del.br_startoff + del.br_blockcount <
5631 got.br_startoff + got.br_blockcount) {
5632 error = XFS_ERROR(ENOSPC);
5633 goto error0;
5634 }
5635 error = xfs_bmap_del_extent(ip, tp, lastx, flist, cur, &del,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10005636 &tmp_logflags, delta, whichfork, rsvd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005637 logflags |= tmp_logflags;
5638 if (error)
5639 goto error0;
5640 bno = del.br_startoff - 1;
5641nodelete:
5642 lastx = ifp->if_lastex;
5643 /*
5644 * If not done go on to the next (previous) record.
5645 * Reset ep in case the extents array was re-alloced.
5646 */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005647 ep = xfs_iext_get_ext(ifp, lastx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648 if (bno != (xfs_fileoff_t)-1 && bno >= start) {
5649 if (lastx >= XFS_IFORK_NEXTENTS(ip, whichfork) ||
5650 xfs_bmbt_get_startoff(ep) > bno) {
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005651 if (--lastx >= 0)
5652 ep = xfs_iext_get_ext(ifp, lastx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653 }
5654 if (lastx >= 0)
5655 xfs_bmbt_get_all(ep, &got);
5656 extno++;
5657 }
5658 }
5659 ifp->if_lastex = lastx;
5660 *done = bno == (xfs_fileoff_t)-1 || bno < start || lastx < 0;
5661 ASSERT(ifp->if_ext_max ==
5662 XFS_IFORK_SIZE(ip, whichfork) / (uint)sizeof(xfs_bmbt_rec_t));
5663 /*
5664 * Convert to a btree if necessary.
5665 */
5666 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS &&
5667 XFS_IFORK_NEXTENTS(ip, whichfork) > ifp->if_ext_max) {
5668 ASSERT(cur == NULL);
5669 error = xfs_bmap_extents_to_btree(tp, ip, firstblock, flist,
5670 &cur, 0, &tmp_logflags, whichfork);
5671 logflags |= tmp_logflags;
5672 if (error)
5673 goto error0;
5674 }
5675 /*
5676 * transform from btree to extents, give it cur
5677 */
5678 else if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE &&
5679 XFS_IFORK_NEXTENTS(ip, whichfork) <= ifp->if_ext_max) {
5680 ASSERT(cur != NULL);
5681 error = xfs_bmap_btree_to_extents(tp, ip, cur, &tmp_logflags,
5682 whichfork);
5683 logflags |= tmp_logflags;
5684 if (error)
5685 goto error0;
5686 }
5687 /*
5688 * transform from extents to local?
5689 */
5690 ASSERT(ifp->if_ext_max ==
5691 XFS_IFORK_SIZE(ip, whichfork) / (uint)sizeof(xfs_bmbt_rec_t));
5692 error = 0;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10005693 if (delta && delta->xed_startoff != NULLFILEOFF) {
5694 /* A change was actually made.
5695 * Note that delta->xed_blockount is an offset at this
5696 * point and needs to be converted to a block count.
5697 */
5698 ASSERT(delta->xed_blockcount > delta->xed_startoff);
5699 delta->xed_blockcount -= delta->xed_startoff;
5700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005701error0:
5702 /*
5703 * Log everything. Do this after conversion, there's no point in
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005704 * logging the extent records if we've converted to btree format.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705 */
5706 if ((logflags & XFS_ILOG_FEXT(whichfork)) &&
5707 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
5708 logflags &= ~XFS_ILOG_FEXT(whichfork);
5709 else if ((logflags & XFS_ILOG_FBROOT(whichfork)) &&
5710 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)
5711 logflags &= ~XFS_ILOG_FBROOT(whichfork);
5712 /*
5713 * Log inode even in the error case, if the transaction
5714 * is dirty we'll need to shut down the filesystem.
5715 */
5716 if (logflags)
5717 xfs_trans_log_inode(tp, ip, logflags);
5718 if (cur) {
5719 if (!error) {
5720 *firstblock = cur->bc_private.b.firstblock;
5721 cur->bc_private.b.allocated = 0;
5722 }
5723 xfs_btree_del_cursor(cur,
5724 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
5725 }
5726 return error;
5727}
5728
5729/*
Vlad Apostolov3bacbcd2007-08-16 15:20:25 +10005730 * returns 1 for success, 0 if we failed to map the extent.
5731 */
5732STATIC int
5733xfs_getbmapx_fix_eof_hole(
5734 xfs_inode_t *ip, /* xfs incore inode pointer */
5735 struct getbmap *out, /* output structure */
5736 int prealloced, /* this is a file with
5737 * preallocated data space */
5738 __int64_t end, /* last block requested */
5739 xfs_fsblock_t startblock)
5740{
5741 __int64_t fixlen;
5742 xfs_mount_t *mp; /* file system mount point */
5743
5744 if (startblock == HOLESTARTBLOCK) {
5745 mp = ip->i_mount;
5746 out->bmv_block = -1;
5747 fixlen = XFS_FSB_TO_BB(mp, XFS_B_TO_FSB(mp, ip->i_size));
5748 fixlen -= out->bmv_offset;
5749 if (prealloced && out->bmv_offset + out->bmv_length == end) {
5750 /* Came to hole at EOF. Trim it. */
5751 if (fixlen <= 0)
5752 return 0;
5753 out->bmv_length = fixlen;
5754 }
5755 } else {
5756 out->bmv_block = XFS_FSB_TO_DB(ip, startblock);
5757 }
5758
5759 return 1;
5760}
5761
5762/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005763 * Fcntl interface to xfs_bmapi.
5764 */
5765int /* error code */
5766xfs_getbmap(
Christoph Hellwig993386c2007-08-28 16:12:30 +10005767 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005768 struct getbmap *bmv, /* user bmap structure */
5769 void __user *ap, /* pointer to user's array */
5770 int interface) /* interface flags */
5771{
5772 __int64_t bmvend; /* last block requested */
5773 int error; /* return value */
5774 __int64_t fixlen; /* length for -1 case */
5775 int i; /* extent number */
Nathan Scott67fcaa72006-06-09 17:00:52 +10005776 bhv_vnode_t *vp; /* corresponding vnode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005777 int lock; /* lock state */
5778 xfs_bmbt_irec_t *map; /* buffer for user's data */
5779 xfs_mount_t *mp; /* file system mount point */
5780 int nex; /* # of user extents can do */
5781 int nexleft; /* # of user extents left */
5782 int subnex; /* # of bmapi's can do */
5783 int nmap; /* number of map entries */
5784 struct getbmap out; /* output structure */
5785 int whichfork; /* data or attr fork */
5786 int prealloced; /* this is a file with
5787 * preallocated data space */
5788 int sh_unwritten; /* true, if unwritten */
5789 /* extents listed separately */
5790 int bmapi_flags; /* flags for xfs_bmapi */
5791 __int32_t oflags; /* getbmapx bmv_oflags field */
5792
Christoph Hellwig993386c2007-08-28 16:12:30 +10005793 vp = XFS_ITOV(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794 mp = ip->i_mount;
5795
5796 whichfork = interface & BMV_IF_ATTRFORK ? XFS_ATTR_FORK : XFS_DATA_FORK;
5797 sh_unwritten = (interface & BMV_IF_PREALLOC) != 0;
5798
5799 /* If the BMV_IF_NO_DMAPI_READ interface bit specified, do not
5800 * generate a DMAPI read event. Otherwise, if the DM_EVENT_READ
5801 * bit is set for the file, generate a read event in order
5802 * that the DMAPI application may do its thing before we return
5803 * the extents. Usually this means restoring user file data to
5804 * regions of the file that look like holes.
5805 *
5806 * The "old behavior" (from XFS_IOC_GETBMAP) is to not specify
5807 * BMV_IF_NO_DMAPI_READ so that read events are generated.
5808 * If this were not true, callers of ioctl( XFS_IOC_GETBMAP )
5809 * could misinterpret holes in a DMAPI file as true holes,
5810 * when in fact they may represent offline user data.
5811 */
Christoph Hellwigeb9df392007-08-16 18:42:07 +10005812 if ((interface & BMV_IF_NO_DMAPI_READ) == 0 &&
5813 DM_EVENT_ENABLED(ip, DM_EVENT_READ) &&
5814 whichfork == XFS_DATA_FORK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815 error = XFS_SEND_DATA(mp, DM_EVENT_READ, vp, 0, 0, 0, NULL);
5816 if (error)
5817 return XFS_ERROR(error);
5818 }
5819
5820 if (whichfork == XFS_ATTR_FORK) {
5821 if (XFS_IFORK_Q(ip)) {
5822 if (ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS &&
5823 ip->i_d.di_aformat != XFS_DINODE_FMT_BTREE &&
5824 ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)
5825 return XFS_ERROR(EINVAL);
5826 } else if (unlikely(
5827 ip->i_d.di_aformat != 0 &&
5828 ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS)) {
5829 XFS_ERROR_REPORT("xfs_getbmap", XFS_ERRLEVEL_LOW,
5830 ip->i_mount);
5831 return XFS_ERROR(EFSCORRUPTED);
5832 }
5833 } else if (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS &&
5834 ip->i_d.di_format != XFS_DINODE_FMT_BTREE &&
5835 ip->i_d.di_format != XFS_DINODE_FMT_LOCAL)
5836 return XFS_ERROR(EINVAL);
5837 if (whichfork == XFS_DATA_FORK) {
David Chinner957d0eb2007-06-18 16:50:37 +10005838 if (xfs_get_extsz_hint(ip) ||
Nathan Scottdd9f4382006-01-11 15:28:28 +11005839 ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC|XFS_DIFLAG_APPEND)){
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840 prealloced = 1;
5841 fixlen = XFS_MAXIOFFSET(mp);
5842 } else {
5843 prealloced = 0;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10005844 fixlen = ip->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005845 }
5846 } else {
5847 prealloced = 0;
5848 fixlen = 1LL << 32;
5849 }
5850
5851 if (bmv->bmv_length == -1) {
5852 fixlen = XFS_FSB_TO_BB(mp, XFS_B_TO_FSB(mp, fixlen));
5853 bmv->bmv_length = MAX( (__int64_t)(fixlen - bmv->bmv_offset),
5854 (__int64_t)0);
5855 } else if (bmv->bmv_length < 0)
5856 return XFS_ERROR(EINVAL);
5857 if (bmv->bmv_length == 0) {
5858 bmv->bmv_entries = 0;
5859 return 0;
5860 }
5861 nex = bmv->bmv_count - 1;
5862 if (nex <= 0)
5863 return XFS_ERROR(EINVAL);
5864 bmvend = bmv->bmv_offset + bmv->bmv_length;
5865
5866 xfs_ilock(ip, XFS_IOLOCK_SHARED);
5867
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10005868 if (whichfork == XFS_DATA_FORK &&
5869 (ip->i_delayed_blks || ip->i_size > ip->i_d.di_size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870 /* xfs_fsize_t last_byte = xfs_file_last_byte(ip); */
Christoph Hellwig739bfb22007-08-29 10:58:01 +10005871 error = xfs_flush_pages(ip, (xfs_off_t)0,
5872 -1, 0, FI_REMAPF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005873 }
5874
5875 ASSERT(whichfork == XFS_ATTR_FORK || ip->i_delayed_blks == 0);
5876
5877 lock = xfs_ilock_map_shared(ip);
5878
5879 /*
5880 * Don't let nex be bigger than the number of extents
5881 * we can have assuming alternating holes and real extents.
5882 */
5883 if (nex > XFS_IFORK_NEXTENTS(ip, whichfork) * 2 + 1)
5884 nex = XFS_IFORK_NEXTENTS(ip, whichfork) * 2 + 1;
5885
5886 bmapi_flags = XFS_BMAPI_AFLAG(whichfork) |
5887 ((sh_unwritten) ? 0 : XFS_BMAPI_IGSTATE);
5888
5889 /*
5890 * Allocate enough space to handle "subnex" maps at a time.
5891 */
5892 subnex = 16;
5893 map = kmem_alloc(subnex * sizeof(*map), KM_SLEEP);
5894
5895 bmv->bmv_entries = 0;
5896
5897 if (XFS_IFORK_NEXTENTS(ip, whichfork) == 0) {
5898 error = 0;
5899 goto unlock_and_return;
5900 }
5901
5902 nexleft = nex;
5903
5904 do {
5905 nmap = (nexleft > subnex) ? subnex : nexleft;
5906 error = xfs_bmapi(NULL, ip, XFS_BB_TO_FSBT(mp, bmv->bmv_offset),
5907 XFS_BB_TO_FSB(mp, bmv->bmv_length),
Olaf Weber3e57ecf2006-06-09 14:48:12 +10005908 bmapi_flags, NULL, 0, map, &nmap,
5909 NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005910 if (error)
5911 goto unlock_and_return;
5912 ASSERT(nmap <= subnex);
5913
5914 for (i = 0; i < nmap && nexleft && bmv->bmv_length; i++) {
5915 nexleft--;
5916 oflags = (map[i].br_state == XFS_EXT_UNWRITTEN) ?
5917 BMV_OF_PREALLOC : 0;
5918 out.bmv_offset = XFS_FSB_TO_BB(mp, map[i].br_startoff);
5919 out.bmv_length = XFS_FSB_TO_BB(mp, map[i].br_blockcount);
5920 ASSERT(map[i].br_startblock != DELAYSTARTBLOCK);
Yingping Lu9af0a702005-11-02 15:09:54 +11005921 if (map[i].br_startblock == HOLESTARTBLOCK &&
Vlad Apostolov3bacbcd2007-08-16 15:20:25 +10005922 whichfork == XFS_ATTR_FORK) {
5923 /* came to the end of attribute fork */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005924 goto unlock_and_return;
5925 } else {
Vlad Apostolov3bacbcd2007-08-16 15:20:25 +10005926 if (!xfs_getbmapx_fix_eof_hole(ip, &out,
5927 prealloced, bmvend,
5928 map[i].br_startblock)) {
5929 goto unlock_and_return;
5930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005931
5932 /* return either getbmap/getbmapx structure. */
5933 if (interface & BMV_IF_EXTENDED) {
5934 struct getbmapx outx;
5935
5936 GETBMAP_CONVERT(out,outx);
5937 outx.bmv_oflags = oflags;
5938 outx.bmv_unused1 = outx.bmv_unused2 = 0;
5939 if (copy_to_user(ap, &outx,
5940 sizeof(outx))) {
5941 error = XFS_ERROR(EFAULT);
5942 goto unlock_and_return;
5943 }
5944 } else {
5945 if (copy_to_user(ap, &out,
5946 sizeof(out))) {
5947 error = XFS_ERROR(EFAULT);
5948 goto unlock_and_return;
5949 }
5950 }
5951 bmv->bmv_offset =
5952 out.bmv_offset + out.bmv_length;
5953 bmv->bmv_length = MAX((__int64_t)0,
5954 (__int64_t)(bmvend - bmv->bmv_offset));
5955 bmv->bmv_entries++;
5956 ap = (interface & BMV_IF_EXTENDED) ?
5957 (void __user *)
5958 ((struct getbmapx __user *)ap + 1) :
5959 (void __user *)
5960 ((struct getbmap __user *)ap + 1);
5961 }
5962 }
5963 } while (nmap && nexleft && bmv->bmv_length);
5964
5965unlock_and_return:
5966 xfs_iunlock_map_shared(ip, lock);
5967 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
5968
5969 kmem_free(map, subnex * sizeof(*map));
5970
5971 return error;
5972}
5973
5974/*
5975 * Check the last inode extent to determine whether this allocation will result
5976 * in blocks being allocated at the end of the file. When we allocate new data
5977 * blocks at the end of the file which do not start at the previous data block,
5978 * we will try to align the new blocks at stripe unit boundaries.
5979 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10005980STATIC int /* error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981xfs_bmap_isaeof(
5982 xfs_inode_t *ip, /* incore inode pointer */
5983 xfs_fileoff_t off, /* file offset in fsblocks */
5984 int whichfork, /* data or attribute fork */
5985 char *aeof) /* return value */
5986{
5987 int error; /* error return value */
5988 xfs_ifork_t *ifp; /* inode fork pointer */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10005989 xfs_bmbt_rec_host_t *lastrec; /* extent record pointer */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005990 xfs_extnum_t nextents; /* number of file extents */
5991 xfs_bmbt_irec_t s; /* expanded extent record */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005992
5993 ASSERT(whichfork == XFS_DATA_FORK);
5994 ifp = XFS_IFORK_PTR(ip, whichfork);
5995 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
5996 (error = xfs_iread_extents(NULL, ip, whichfork)))
5997 return error;
5998 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
5999 if (nextents == 0) {
6000 *aeof = 1;
6001 return 0;
6002 }
6003 /*
6004 * Go to the last extent
6005 */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006006 lastrec = xfs_iext_get_ext(ifp, nextents - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007 xfs_bmbt_get_all(lastrec, &s);
6008 /*
6009 * Check we are allocating in the last extent (for delayed allocations)
6010 * or past the last extent for non-delayed allocations.
6011 */
6012 *aeof = (off >= s.br_startoff &&
6013 off < s.br_startoff + s.br_blockcount &&
6014 ISNULLSTARTBLOCK(s.br_startblock)) ||
6015 off >= s.br_startoff + s.br_blockcount;
6016 return 0;
6017}
6018
6019/*
6020 * Check if the endoff is outside the last extent. If so the caller will grow
6021 * the allocation to a stripe unit boundary.
6022 */
6023int /* error */
6024xfs_bmap_eof(
6025 xfs_inode_t *ip, /* incore inode pointer */
6026 xfs_fileoff_t endoff, /* file offset in fsblocks */
6027 int whichfork, /* data or attribute fork */
6028 int *eof) /* result value */
6029{
6030 xfs_fsblock_t blockcount; /* extent block count */
6031 int error; /* error return value */
6032 xfs_ifork_t *ifp; /* inode fork pointer */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10006033 xfs_bmbt_rec_host_t *lastrec; /* extent record pointer */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006034 xfs_extnum_t nextents; /* number of file extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006035 xfs_fileoff_t startoff; /* extent starting file offset */
6036
6037 ASSERT(whichfork == XFS_DATA_FORK);
6038 ifp = XFS_IFORK_PTR(ip, whichfork);
6039 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
6040 (error = xfs_iread_extents(NULL, ip, whichfork)))
6041 return error;
6042 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
6043 if (nextents == 0) {
6044 *eof = 1;
6045 return 0;
6046 }
6047 /*
6048 * Go to the last extent
6049 */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006050 lastrec = xfs_iext_get_ext(ifp, nextents - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051 startoff = xfs_bmbt_get_startoff(lastrec);
6052 blockcount = xfs_bmbt_get_blockcount(lastrec);
6053 *eof = endoff >= startoff + blockcount;
6054 return 0;
6055}
6056
6057#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058STATIC
6059xfs_buf_t *
6060xfs_bmap_get_bp(
6061 xfs_btree_cur_t *cur,
6062 xfs_fsblock_t bno)
6063{
6064 int i;
6065 xfs_buf_t *bp;
6066
6067 if (!cur)
6068 return(NULL);
6069
6070 bp = NULL;
6071 for(i = 0; i < XFS_BTREE_MAXLEVELS; i++) {
6072 bp = cur->bc_bufs[i];
6073 if (!bp) break;
6074 if (XFS_BUF_ADDR(bp) == bno)
6075 break; /* Found it */
6076 }
6077 if (i == XFS_BTREE_MAXLEVELS)
6078 bp = NULL;
6079
6080 if (!bp) { /* Chase down all the log items to see if the bp is there */
6081 xfs_log_item_chunk_t *licp;
6082 xfs_trans_t *tp;
6083
6084 tp = cur->bc_tp;
6085 licp = &tp->t_items;
6086 while (!bp && licp != NULL) {
6087 if (XFS_LIC_ARE_ALL_FREE(licp)) {
6088 licp = licp->lic_next;
6089 continue;
6090 }
6091 for (i = 0; i < licp->lic_unused; i++) {
6092 xfs_log_item_desc_t *lidp;
6093 xfs_log_item_t *lip;
6094 xfs_buf_log_item_t *bip;
6095 xfs_buf_t *lbp;
6096
6097 if (XFS_LIC_ISFREE(licp, i)) {
6098 continue;
6099 }
6100
6101 lidp = XFS_LIC_SLOT(licp, i);
6102 lip = lidp->lid_item;
6103 if (lip->li_type != XFS_LI_BUF)
6104 continue;
6105
6106 bip = (xfs_buf_log_item_t *)lip;
6107 lbp = bip->bli_buf;
6108
6109 if (XFS_BUF_ADDR(lbp) == bno) {
6110 bp = lbp;
6111 break; /* Found it */
6112 }
6113 }
6114 licp = licp->lic_next;
6115 }
6116 }
6117 return(bp);
6118}
6119
6120void
6121xfs_check_block(
6122 xfs_bmbt_block_t *block,
6123 xfs_mount_t *mp,
6124 int root,
6125 short sz)
6126{
6127 int i, j, dmxr;
Christoph Hellwig576039c2006-09-28 10:58:06 +10006128 __be64 *pp, *thispa; /* pointer to block address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129 xfs_bmbt_key_t *prevp, *keyp;
6130
Christoph Hellwig16259e72005-11-02 15:11:25 +11006131 ASSERT(be16_to_cpu(block->bb_level) > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006132
6133 prevp = NULL;
Christoph Hellwig16259e72005-11-02 15:11:25 +11006134 for( i = 1; i <= be16_to_cpu(block->bb_numrecs); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006135 dmxr = mp->m_bmap_dmxr[0];
6136
6137 if (root) {
6138 keyp = XFS_BMAP_BROOT_KEY_ADDR(block, i, sz);
6139 } else {
Eric Sandeen2c36dde2007-02-10 18:37:33 +11006140 keyp = XFS_BTREE_KEY_ADDR(xfs_bmbt, block, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006141 }
6142
6143 if (prevp) {
6144 xfs_btree_check_key(XFS_BTNUM_BMAP, prevp, keyp);
6145 }
6146 prevp = keyp;
6147
6148 /*
6149 * Compare the block numbers to see if there are dups.
6150 */
6151
6152 if (root) {
6153 pp = XFS_BMAP_BROOT_PTR_ADDR(block, i, sz);
6154 } else {
Eric Sandeen2c36dde2007-02-10 18:37:33 +11006155 pp = XFS_BTREE_PTR_ADDR(xfs_bmbt, block, i, dmxr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156 }
Christoph Hellwig16259e72005-11-02 15:11:25 +11006157 for (j = i+1; j <= be16_to_cpu(block->bb_numrecs); j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158 if (root) {
6159 thispa = XFS_BMAP_BROOT_PTR_ADDR(block, j, sz);
6160 } else {
Eric Sandeen2c36dde2007-02-10 18:37:33 +11006161 thispa = XFS_BTREE_PTR_ADDR(xfs_bmbt, block, j,
6162 dmxr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006163 }
Christoph Hellwig576039c2006-09-28 10:58:06 +10006164 if (*thispa == *pp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006165 cmn_err(CE_WARN, "%s: thispa(%d) == pp(%d) %Ld",
6166 __FUNCTION__, j, i,
Christoph Hellwig576039c2006-09-28 10:58:06 +10006167 (unsigned long long)be64_to_cpu(*thispa));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006168 panic("%s: ptrs are equal in node\n",
6169 __FUNCTION__);
6170 }
6171 }
6172 }
6173}
6174
6175/*
6176 * Check that the extents for the inode ip are in the right order in all
6177 * btree leaves.
6178 */
6179
6180STATIC void
6181xfs_bmap_check_leaf_extents(
6182 xfs_btree_cur_t *cur, /* btree cursor or null */
6183 xfs_inode_t *ip, /* incore inode pointer */
6184 int whichfork) /* data or attr fork */
6185{
6186 xfs_bmbt_block_t *block; /* current btree block */
6187 xfs_fsblock_t bno; /* block # of "block" */
6188 xfs_buf_t *bp; /* buffer for "block" */
6189 int error; /* error return value */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006190 xfs_extnum_t i=0, j; /* index into the extents list */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006191 xfs_ifork_t *ifp; /* fork structure */
6192 int level; /* btree level, for checking */
6193 xfs_mount_t *mp; /* file system mount structure */
Christoph Hellwig576039c2006-09-28 10:58:06 +10006194 __be64 *pp; /* pointer to block address */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006195 xfs_bmbt_rec_t *ep; /* pointer to current extent */
6196 xfs_bmbt_rec_t *lastp; /* pointer to previous extent */
6197 xfs_bmbt_rec_t *nextp; /* pointer to next extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006198 int bp_release = 0;
6199
6200 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE) {
6201 return;
6202 }
6203
6204 bno = NULLFSBLOCK;
6205 mp = ip->i_mount;
6206 ifp = XFS_IFORK_PTR(ip, whichfork);
6207 block = ifp->if_broot;
6208 /*
6209 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
6210 */
Christoph Hellwig16259e72005-11-02 15:11:25 +11006211 level = be16_to_cpu(block->bb_level);
6212 ASSERT(level > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006213 xfs_check_block(block, mp, 1, ifp->if_broot_bytes);
6214 pp = XFS_BMAP_BROOT_PTR_ADDR(block, 1, ifp->if_broot_bytes);
Christoph Hellwig576039c2006-09-28 10:58:06 +10006215 bno = be64_to_cpu(*pp);
6216
6217 ASSERT(bno != NULLDFSBNO);
6218 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
6219 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
6220
Linus Torvalds1da177e2005-04-16 15:20:36 -07006221 /*
6222 * Go down the tree until leaf level is reached, following the first
6223 * pointer (leftmost) at each level.
6224 */
6225 while (level-- > 0) {
6226 /* See if buf is in cur first */
6227 bp = xfs_bmap_get_bp(cur, XFS_FSB_TO_DADDR(mp, bno));
6228 if (bp) {
6229 bp_release = 0;
6230 } else {
6231 bp_release = 1;
6232 }
6233 if (!bp && (error = xfs_btree_read_bufl(mp, NULL, bno, 0, &bp,
6234 XFS_BMAP_BTREE_REF)))
6235 goto error_norelse;
6236 block = XFS_BUF_TO_BMBT_BLOCK(bp);
6237 XFS_WANT_CORRUPTED_GOTO(
6238 XFS_BMAP_SANITY_CHECK(mp, block, level),
6239 error0);
6240 if (level == 0)
6241 break;
6242
6243 /*
6244 * Check this block for basic sanity (increasing keys and
6245 * no duplicate blocks).
6246 */
6247
6248 xfs_check_block(block, mp, 0, 0);
Eric Sandeen2c36dde2007-02-10 18:37:33 +11006249 pp = XFS_BTREE_PTR_ADDR(xfs_bmbt, block, 1, mp->m_bmap_dmxr[1]);
Christoph Hellwig576039c2006-09-28 10:58:06 +10006250 bno = be64_to_cpu(*pp);
6251 XFS_WANT_CORRUPTED_GOTO(XFS_FSB_SANITY_CHECK(mp, bno), error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006252 if (bp_release) {
6253 bp_release = 0;
6254 xfs_trans_brelse(NULL, bp);
6255 }
6256 }
6257
6258 /*
6259 * Here with bp and block set to the leftmost leaf node in the tree.
6260 */
6261 i = 0;
6262
6263 /*
6264 * Loop over all leaf nodes checking that all extents are in the right order.
6265 */
6266 lastp = NULL;
6267 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006268 xfs_fsblock_t nextbno;
6269 xfs_extnum_t num_recs;
6270
6271
Christoph Hellwig16259e72005-11-02 15:11:25 +11006272 num_recs = be16_to_cpu(block->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006273
6274 /*
6275 * Read-ahead the next leaf block, if any.
6276 */
6277
Christoph Hellwig16259e72005-11-02 15:11:25 +11006278 nextbno = be64_to_cpu(block->bb_rightsib);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006279
6280 /*
6281 * Check all the extents to make sure they are OK.
6282 * If we had a previous block, the last entry should
6283 * conform with the first entry in this one.
6284 */
6285
Eric Sandeen2c36dde2007-02-10 18:37:33 +11006286 ep = XFS_BTREE_REC_ADDR(xfs_bmbt, block, 1);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006287 for (j = 1; j < num_recs; j++) {
Eric Sandeen2c36dde2007-02-10 18:37:33 +11006288 nextp = XFS_BTREE_REC_ADDR(xfs_bmbt, block, j + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006289 if (lastp) {
6290 xfs_btree_check_rec(XFS_BTNUM_BMAP,
6291 (void *)lastp, (void *)ep);
6292 }
6293 xfs_btree_check_rec(XFS_BTNUM_BMAP, (void *)ep,
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006294 (void *)(nextp));
6295 lastp = ep;
6296 ep = nextp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006298
6299 i += num_recs;
6300 if (bp_release) {
6301 bp_release = 0;
6302 xfs_trans_brelse(NULL, bp);
6303 }
6304 bno = nextbno;
6305 /*
6306 * If we've reached the end, stop.
6307 */
6308 if (bno == NULLFSBLOCK)
6309 break;
6310
6311 bp = xfs_bmap_get_bp(cur, XFS_FSB_TO_DADDR(mp, bno));
6312 if (bp) {
6313 bp_release = 0;
6314 } else {
6315 bp_release = 1;
6316 }
6317 if (!bp && (error = xfs_btree_read_bufl(mp, NULL, bno, 0, &bp,
6318 XFS_BMAP_BTREE_REF)))
6319 goto error_norelse;
6320 block = XFS_BUF_TO_BMBT_BLOCK(bp);
6321 }
6322 if (bp_release) {
6323 bp_release = 0;
6324 xfs_trans_brelse(NULL, bp);
6325 }
6326 return;
6327
6328error0:
6329 cmn_err(CE_WARN, "%s: at error0", __FUNCTION__);
6330 if (bp_release)
6331 xfs_trans_brelse(NULL, bp);
6332error_norelse:
6333 cmn_err(CE_WARN, "%s: BAD after btree leaves for %d extents",
Christoph Hellwigda1650a2005-11-02 10:21:35 +11006334 __FUNCTION__, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006335 panic("%s: CORRUPTED BTREE OR SOMETHING", __FUNCTION__);
6336 return;
6337}
6338#endif
6339
6340/*
6341 * Count fsblocks of the given fork.
6342 */
6343int /* error */
6344xfs_bmap_count_blocks(
6345 xfs_trans_t *tp, /* transaction pointer */
6346 xfs_inode_t *ip, /* incore inode */
6347 int whichfork, /* data or attr fork */
6348 int *count) /* out: count of blocks */
6349{
6350 xfs_bmbt_block_t *block; /* current btree block */
6351 xfs_fsblock_t bno; /* block # of "block" */
6352 xfs_ifork_t *ifp; /* fork structure */
6353 int level; /* btree level, for checking */
6354 xfs_mount_t *mp; /* file system mount structure */
Christoph Hellwig576039c2006-09-28 10:58:06 +10006355 __be64 *pp; /* pointer to block address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006356
6357 bno = NULLFSBLOCK;
6358 mp = ip->i_mount;
6359 ifp = XFS_IFORK_PTR(ip, whichfork);
6360 if ( XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS ) {
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006361 if (unlikely(xfs_bmap_count_leaves(ifp, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006362 ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t),
6363 count) < 0)) {
6364 XFS_ERROR_REPORT("xfs_bmap_count_blocks(1)",
6365 XFS_ERRLEVEL_LOW, mp);
6366 return XFS_ERROR(EFSCORRUPTED);
6367 }
6368 return 0;
6369 }
6370
6371 /*
6372 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
6373 */
6374 block = ifp->if_broot;
Christoph Hellwig16259e72005-11-02 15:11:25 +11006375 level = be16_to_cpu(block->bb_level);
6376 ASSERT(level > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006377 pp = XFS_BMAP_BROOT_PTR_ADDR(block, 1, ifp->if_broot_bytes);
Christoph Hellwig576039c2006-09-28 10:58:06 +10006378 bno = be64_to_cpu(*pp);
6379 ASSERT(bno != NULLDFSBNO);
6380 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
6381 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006382
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006383 if (unlikely(xfs_bmap_count_tree(mp, tp, ifp, bno, level, count) < 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006384 XFS_ERROR_REPORT("xfs_bmap_count_blocks(2)", XFS_ERRLEVEL_LOW,
6385 mp);
6386 return XFS_ERROR(EFSCORRUPTED);
6387 }
6388
6389 return 0;
6390}
6391
6392/*
6393 * Recursively walks each level of a btree
6394 * to count total fsblocks is use.
6395 */
David Chinnera8272ce2007-11-23 16:28:09 +11006396STATIC int /* error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006397xfs_bmap_count_tree(
6398 xfs_mount_t *mp, /* file system mount point */
6399 xfs_trans_t *tp, /* transaction pointer */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006400 xfs_ifork_t *ifp, /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006401 xfs_fsblock_t blockno, /* file system block number */
6402 int levelin, /* level in btree */
6403 int *count) /* Count of blocks */
6404{
6405 int error;
6406 xfs_buf_t *bp, *nbp;
6407 int level = levelin;
Christoph Hellwig576039c2006-09-28 10:58:06 +10006408 __be64 *pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006409 xfs_fsblock_t bno = blockno;
6410 xfs_fsblock_t nextbno;
6411 xfs_bmbt_block_t *block, *nextblock;
6412 int numrecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006413
6414 if ((error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp, XFS_BMAP_BTREE_REF)))
6415 return error;
6416 *count += 1;
6417 block = XFS_BUF_TO_BMBT_BLOCK(bp);
6418
6419 if (--level) {
6420 /* Not at node above leafs, count this level of nodes */
Christoph Hellwig16259e72005-11-02 15:11:25 +11006421 nextbno = be64_to_cpu(block->bb_rightsib);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006422 while (nextbno != NULLFSBLOCK) {
6423 if ((error = xfs_btree_read_bufl(mp, tp, nextbno,
6424 0, &nbp, XFS_BMAP_BTREE_REF)))
6425 return error;
6426 *count += 1;
6427 nextblock = XFS_BUF_TO_BMBT_BLOCK(nbp);
Christoph Hellwig16259e72005-11-02 15:11:25 +11006428 nextbno = be64_to_cpu(nextblock->bb_rightsib);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006429 xfs_trans_brelse(tp, nbp);
6430 }
6431
6432 /* Dive to the next level */
Eric Sandeen2c36dde2007-02-10 18:37:33 +11006433 pp = XFS_BTREE_PTR_ADDR(xfs_bmbt, block, 1, mp->m_bmap_dmxr[1]);
Christoph Hellwig576039c2006-09-28 10:58:06 +10006434 bno = be64_to_cpu(*pp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006435 if (unlikely((error =
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006436 xfs_bmap_count_tree(mp, tp, ifp, bno, level, count)) < 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437 xfs_trans_brelse(tp, bp);
6438 XFS_ERROR_REPORT("xfs_bmap_count_tree(1)",
6439 XFS_ERRLEVEL_LOW, mp);
6440 return XFS_ERROR(EFSCORRUPTED);
6441 }
6442 xfs_trans_brelse(tp, bp);
6443 } else {
6444 /* count all level 1 nodes and their leaves */
6445 for (;;) {
Christoph Hellwig16259e72005-11-02 15:11:25 +11006446 nextbno = be64_to_cpu(block->bb_rightsib);
6447 numrecs = be16_to_cpu(block->bb_numrecs);
Eric Sandeene9ed9d22007-05-08 13:48:56 +10006448 if (unlikely(xfs_bmap_disk_count_leaves(0,
6449 block, numrecs, count) < 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006450 xfs_trans_brelse(tp, bp);
6451 XFS_ERROR_REPORT("xfs_bmap_count_tree(2)",
6452 XFS_ERRLEVEL_LOW, mp);
6453 return XFS_ERROR(EFSCORRUPTED);
6454 }
6455 xfs_trans_brelse(tp, bp);
6456 if (nextbno == NULLFSBLOCK)
6457 break;
6458 bno = nextbno;
6459 if ((error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
6460 XFS_BMAP_BTREE_REF)))
6461 return error;
6462 *count += 1;
6463 block = XFS_BUF_TO_BMBT_BLOCK(bp);
6464 }
6465 }
6466 return 0;
6467}
6468
6469/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006470 * Count leaf blocks given a range of extent records.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006471 */
David Chinnera8272ce2007-11-23 16:28:09 +11006472STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473xfs_bmap_count_leaves(
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006474 xfs_ifork_t *ifp,
6475 xfs_extnum_t idx,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476 int numrecs,
6477 int *count)
6478{
6479 int b;
6480
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006481 for (b = 0; b < numrecs; b++) {
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10006482 xfs_bmbt_rec_host_t *frp = xfs_iext_get_ext(ifp, idx + b);
Yingping Lu91e11082005-11-02 15:10:24 +11006483 *count += xfs_bmbt_get_blockcount(frp);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006484 }
Yingping Lu91e11082005-11-02 15:10:24 +11006485 return 0;
6486}
6487
6488/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006489 * Count leaf blocks given a range of extent records originally
6490 * in btree format.
Yingping Lu91e11082005-11-02 15:10:24 +11006491 */
David Chinnera8272ce2007-11-23 16:28:09 +11006492STATIC int
Yingping Lu91e11082005-11-02 15:10:24 +11006493xfs_bmap_disk_count_leaves(
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006494 xfs_extnum_t idx,
6495 xfs_bmbt_block_t *block,
Yingping Lu91e11082005-11-02 15:10:24 +11006496 int numrecs,
6497 int *count)
6498{
6499 int b;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006500 xfs_bmbt_rec_t *frp;
Yingping Lu91e11082005-11-02 15:10:24 +11006501
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006502 for (b = 1; b <= numrecs; b++) {
Eric Sandeen2c36dde2007-02-10 18:37:33 +11006503 frp = XFS_BTREE_REC_ADDR(xfs_bmbt, block, idx + b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006504 *count += xfs_bmbt_disk_get_blockcount(frp);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11006505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006506 return 0;
6507}