blob: c5eeb3241e25e16fd4302de61ca964428024ad8e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
3 * 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"
28#include "xfs_dmapi.h"
29#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_ialloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_dir2_sf.h"
34#include "xfs_attr_sf.h"
35#include "xfs_dinode.h"
36#include "xfs_inode.h"
37#include "xfs_inode_item.h"
38#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_btree.h"
Christoph Hellwig8c4ed632008-10-30 16:55:13 +110040#include "xfs_btree_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_ialloc.h"
42#include "xfs_itable.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "xfs_bmap.h"
44#include "xfs_error.h"
45#include "xfs_quota.h"
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 * Determine the extent state.
50 */
51/* ARGSUSED */
52STATIC xfs_exntst_t
53xfs_extent_state(
54 xfs_filblks_t blks,
55 int extent_flag)
56{
57 if (extent_flag) {
58 ASSERT(blks != 0); /* saved for DMIG */
59 return XFS_EXT_UNWRITTEN;
60 }
61 return XFS_EXT_NORM;
62}
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064/*
65 * Convert on-disk form of btree root to in-memory form.
66 */
67void
68xfs_bmdr_to_bmbt(
69 xfs_bmdr_block_t *dblock,
70 int dblocklen,
71 xfs_bmbt_block_t *rblock,
72 int rblocklen)
73{
74 int dmxr;
75 xfs_bmbt_key_t *fkp;
Christoph Hellwig576039c2006-09-28 10:58:06 +100076 __be64 *fpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 xfs_bmbt_key_t *tkp;
Christoph Hellwig576039c2006-09-28 10:58:06 +100078 __be64 *tpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Christoph Hellwig16259e72005-11-02 15:11:25 +110080 rblock->bb_magic = cpu_to_be32(XFS_BMAP_MAGIC);
81 rblock->bb_level = dblock->bb_level;
82 ASSERT(be16_to_cpu(rblock->bb_level) > 0);
83 rblock->bb_numrecs = dblock->bb_numrecs;
84 rblock->bb_leftsib = cpu_to_be64(NULLDFSBNO);
85 rblock->bb_rightsib = cpu_to_be64(NULLDFSBNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 dmxr = (int)XFS_BTREE_BLOCK_MAXRECS(dblocklen, xfs_bmdr, 0);
Eric Sandeen2c36dde2007-02-10 18:37:33 +110087 fkp = XFS_BTREE_KEY_ADDR(xfs_bmdr, dblock, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 tkp = XFS_BMAP_BROOT_KEY_ADDR(rblock, 1, rblocklen);
Eric Sandeen2c36dde2007-02-10 18:37:33 +110089 fpp = XFS_BTREE_PTR_ADDR(xfs_bmdr, dblock, 1, dmxr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 tpp = XFS_BMAP_BROOT_PTR_ADDR(rblock, 1, rblocklen);
Christoph Hellwig16259e72005-11-02 15:11:25 +110091 dmxr = be16_to_cpu(dblock->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 memcpy(tkp, fkp, sizeof(*fkp) * dmxr);
Christoph Hellwig576039c2006-09-28 10:58:06 +100093 memcpy(tpp, fpp, sizeof(*fpp) * dmxr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
95
96/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 * Convert a compressed bmap extent record to an uncompressed form.
98 * This code must be in sync with the routines xfs_bmbt_get_startoff,
99 * xfs_bmbt_get_startblock, xfs_bmbt_get_blockcount and xfs_bmbt_get_state.
100 */
101
David Chinner7989cb82007-02-10 18:34:56 +1100102STATIC_INLINE void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103__xfs_bmbt_get_all(
104 __uint64_t l0,
105 __uint64_t l1,
106 xfs_bmbt_irec_t *s)
107{
108 int ext_flag;
109 xfs_exntst_t st;
110
111 ext_flag = (int)(l0 >> (64 - BMBT_EXNTFLAG_BITLEN));
112 s->br_startoff = ((xfs_fileoff_t)l0 &
113 XFS_MASK64LO(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
114#if XFS_BIG_BLKNOS
115 s->br_startblock = (((xfs_fsblock_t)l0 & XFS_MASK64LO(9)) << 43) |
116 (((xfs_fsblock_t)l1) >> 21);
117#else
118#ifdef DEBUG
119 {
120 xfs_dfsbno_t b;
121
122 b = (((xfs_dfsbno_t)l0 & XFS_MASK64LO(9)) << 43) |
123 (((xfs_dfsbno_t)l1) >> 21);
124 ASSERT((b >> 32) == 0 || ISNULLDSTARTBLOCK(b));
125 s->br_startblock = (xfs_fsblock_t)b;
126 }
127#else /* !DEBUG */
128 s->br_startblock = (xfs_fsblock_t)(((xfs_dfsbno_t)l1) >> 21);
129#endif /* DEBUG */
130#endif /* XFS_BIG_BLKNOS */
131 s->br_blockcount = (xfs_filblks_t)(l1 & XFS_MASK64LO(21));
132 /* This is xfs_extent_state() in-line */
133 if (ext_flag) {
134 ASSERT(s->br_blockcount != 0); /* saved for DMIG */
135 st = XFS_EXT_UNWRITTEN;
136 } else
137 st = XFS_EXT_NORM;
138 s->br_state = st;
139}
140
141void
142xfs_bmbt_get_all(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000143 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 xfs_bmbt_irec_t *s)
145{
146 __xfs_bmbt_get_all(r->l0, r->l1, s);
147}
148
149/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 * Extract the blockcount field from an in memory bmap extent record.
151 */
152xfs_filblks_t
153xfs_bmbt_get_blockcount(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000154 xfs_bmbt_rec_host_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
156 return (xfs_filblks_t)(r->l1 & XFS_MASK64LO(21));
157}
158
159/*
160 * Extract the startblock field from an in memory bmap extent record.
161 */
162xfs_fsblock_t
163xfs_bmbt_get_startblock(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000164 xfs_bmbt_rec_host_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166#if XFS_BIG_BLKNOS
167 return (((xfs_fsblock_t)r->l0 & XFS_MASK64LO(9)) << 43) |
168 (((xfs_fsblock_t)r->l1) >> 21);
169#else
170#ifdef DEBUG
171 xfs_dfsbno_t b;
172
173 b = (((xfs_dfsbno_t)r->l0 & XFS_MASK64LO(9)) << 43) |
174 (((xfs_dfsbno_t)r->l1) >> 21);
175 ASSERT((b >> 32) == 0 || ISNULLDSTARTBLOCK(b));
176 return (xfs_fsblock_t)b;
177#else /* !DEBUG */
178 return (xfs_fsblock_t)(((xfs_dfsbno_t)r->l1) >> 21);
179#endif /* DEBUG */
180#endif /* XFS_BIG_BLKNOS */
181}
182
183/*
184 * Extract the startoff field from an in memory bmap extent record.
185 */
186xfs_fileoff_t
187xfs_bmbt_get_startoff(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000188 xfs_bmbt_rec_host_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
190 return ((xfs_fileoff_t)r->l0 &
191 XFS_MASK64LO(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
192}
193
194xfs_exntst_t
195xfs_bmbt_get_state(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000196 xfs_bmbt_rec_host_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 int ext_flag;
199
200 ext_flag = (int)((r->l0) >> (64 - BMBT_EXNTFLAG_BITLEN));
201 return xfs_extent_state(xfs_bmbt_get_blockcount(r),
202 ext_flag);
203}
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205/* Endian flipping versions of the bmbt extraction functions */
206void
207xfs_bmbt_disk_get_all(
208 xfs_bmbt_rec_t *r,
209 xfs_bmbt_irec_t *s)
210{
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000211 __xfs_bmbt_get_all(be64_to_cpu(r->l0), be64_to_cpu(r->l1), s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
214/*
215 * Extract the blockcount field from an on disk bmap extent record.
216 */
217xfs_filblks_t
218xfs_bmbt_disk_get_blockcount(
219 xfs_bmbt_rec_t *r)
220{
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000221 return (xfs_filblks_t)(be64_to_cpu(r->l1) & XFS_MASK64LO(21));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
224/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 * Extract the startoff field from a disk format bmap extent record.
226 */
227xfs_fileoff_t
228xfs_bmbt_disk_get_startoff(
229 xfs_bmbt_rec_t *r)
230{
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000231 return ((xfs_fileoff_t)be64_to_cpu(r->l0) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 XFS_MASK64LO(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
233}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236/*
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000237 * Set all the fields in a bmap extent record from the arguments.
238 */
239void
240xfs_bmbt_set_allf(
241 xfs_bmbt_rec_host_t *r,
242 xfs_fileoff_t startoff,
243 xfs_fsblock_t startblock,
244 xfs_filblks_t blockcount,
245 xfs_exntst_t state)
246{
247 int extent_flag = (state == XFS_EXT_NORM) ? 0 : 1;
248
249 ASSERT(state == XFS_EXT_NORM || state == XFS_EXT_UNWRITTEN);
250 ASSERT((startoff & XFS_MASK64HI(64-BMBT_STARTOFF_BITLEN)) == 0);
251 ASSERT((blockcount & XFS_MASK64HI(64-BMBT_BLOCKCOUNT_BITLEN)) == 0);
252
253#if XFS_BIG_BLKNOS
254 ASSERT((startblock & XFS_MASK64HI(64-BMBT_STARTBLOCK_BITLEN)) == 0);
255
256 r->l0 = ((xfs_bmbt_rec_base_t)extent_flag << 63) |
257 ((xfs_bmbt_rec_base_t)startoff << 9) |
258 ((xfs_bmbt_rec_base_t)startblock >> 43);
259 r->l1 = ((xfs_bmbt_rec_base_t)startblock << 21) |
260 ((xfs_bmbt_rec_base_t)blockcount &
261 (xfs_bmbt_rec_base_t)XFS_MASK64LO(21));
262#else /* !XFS_BIG_BLKNOS */
Michal Piotrowskiddc6d3b2007-08-23 16:20:10 +1000263 if (ISNULLSTARTBLOCK(startblock)) {
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000264 r->l0 = ((xfs_bmbt_rec_base_t)extent_flag << 63) |
265 ((xfs_bmbt_rec_base_t)startoff << 9) |
266 (xfs_bmbt_rec_base_t)XFS_MASK64LO(9);
267 r->l1 = XFS_MASK64HI(11) |
268 ((xfs_bmbt_rec_base_t)startblock << 21) |
269 ((xfs_bmbt_rec_base_t)blockcount &
270 (xfs_bmbt_rec_base_t)XFS_MASK64LO(21));
271 } else {
272 r->l0 = ((xfs_bmbt_rec_base_t)extent_flag << 63) |
273 ((xfs_bmbt_rec_base_t)startoff << 9);
274 r->l1 = ((xfs_bmbt_rec_base_t)startblock << 21) |
275 ((xfs_bmbt_rec_base_t)blockcount &
276 (xfs_bmbt_rec_base_t)XFS_MASK64LO(21));
277 }
278#endif /* XFS_BIG_BLKNOS */
279}
280
281/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 * Set all the fields in a bmap extent record from the uncompressed form.
283 */
284void
285xfs_bmbt_set_all(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000286 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 xfs_bmbt_irec_t *s)
288{
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000289 xfs_bmbt_set_allf(r, s->br_startoff, s->br_startblock,
290 s->br_blockcount, s->br_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294/*
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000295 * Set all the fields in a disk format bmap extent record from the arguments.
296 */
297void
298xfs_bmbt_disk_set_allf(
299 xfs_bmbt_rec_t *r,
300 xfs_fileoff_t startoff,
301 xfs_fsblock_t startblock,
302 xfs_filblks_t blockcount,
303 xfs_exntst_t state)
304{
305 int extent_flag = (state == XFS_EXT_NORM) ? 0 : 1;
306
307 ASSERT(state == XFS_EXT_NORM || state == XFS_EXT_UNWRITTEN);
308 ASSERT((startoff & XFS_MASK64HI(64-BMBT_STARTOFF_BITLEN)) == 0);
309 ASSERT((blockcount & XFS_MASK64HI(64-BMBT_BLOCKCOUNT_BITLEN)) == 0);
310
311#if XFS_BIG_BLKNOS
312 ASSERT((startblock & XFS_MASK64HI(64-BMBT_STARTBLOCK_BITLEN)) == 0);
313
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000314 r->l0 = cpu_to_be64(
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000315 ((xfs_bmbt_rec_base_t)extent_flag << 63) |
316 ((xfs_bmbt_rec_base_t)startoff << 9) |
317 ((xfs_bmbt_rec_base_t)startblock >> 43));
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000318 r->l1 = cpu_to_be64(
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000319 ((xfs_bmbt_rec_base_t)startblock << 21) |
320 ((xfs_bmbt_rec_base_t)blockcount &
321 (xfs_bmbt_rec_base_t)XFS_MASK64LO(21)));
322#else /* !XFS_BIG_BLKNOS */
Michal Piotrowskiddc6d3b2007-08-23 16:20:10 +1000323 if (ISNULLSTARTBLOCK(startblock)) {
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000324 r->l0 = cpu_to_be64(
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000325 ((xfs_bmbt_rec_base_t)extent_flag << 63) |
326 ((xfs_bmbt_rec_base_t)startoff << 9) |
327 (xfs_bmbt_rec_base_t)XFS_MASK64LO(9));
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000328 r->l1 = cpu_to_be64(XFS_MASK64HI(11) |
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000329 ((xfs_bmbt_rec_base_t)startblock << 21) |
330 ((xfs_bmbt_rec_base_t)blockcount &
331 (xfs_bmbt_rec_base_t)XFS_MASK64LO(21)));
332 } else {
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000333 r->l0 = cpu_to_be64(
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000334 ((xfs_bmbt_rec_base_t)extent_flag << 63) |
335 ((xfs_bmbt_rec_base_t)startoff << 9));
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000336 r->l1 = cpu_to_be64(
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000337 ((xfs_bmbt_rec_base_t)startblock << 21) |
338 ((xfs_bmbt_rec_base_t)blockcount &
339 (xfs_bmbt_rec_base_t)XFS_MASK64LO(21)));
340 }
341#endif /* XFS_BIG_BLKNOS */
342}
343
344/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 * Set all the fields in a bmap extent record from the uncompressed form.
346 */
347void
348xfs_bmbt_disk_set_all(
349 xfs_bmbt_rec_t *r,
350 xfs_bmbt_irec_t *s)
351{
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000352 xfs_bmbt_disk_set_allf(r, s->br_startoff, s->br_startblock,
353 s->br_blockcount, s->br_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356/*
357 * Set the blockcount field in a bmap extent record.
358 */
359void
360xfs_bmbt_set_blockcount(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000361 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 xfs_filblks_t v)
363{
364 ASSERT((v & XFS_MASK64HI(43)) == 0);
365 r->l1 = (r->l1 & (xfs_bmbt_rec_base_t)XFS_MASK64HI(43)) |
366 (xfs_bmbt_rec_base_t)(v & XFS_MASK64LO(21));
367}
368
369/*
370 * Set the startblock field in a bmap extent record.
371 */
372void
373xfs_bmbt_set_startblock(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000374 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 xfs_fsblock_t v)
376{
377#if XFS_BIG_BLKNOS
378 ASSERT((v & XFS_MASK64HI(12)) == 0);
379 r->l0 = (r->l0 & (xfs_bmbt_rec_base_t)XFS_MASK64HI(55)) |
380 (xfs_bmbt_rec_base_t)(v >> 43);
381 r->l1 = (r->l1 & (xfs_bmbt_rec_base_t)XFS_MASK64LO(21)) |
382 (xfs_bmbt_rec_base_t)(v << 21);
383#else /* !XFS_BIG_BLKNOS */
384 if (ISNULLSTARTBLOCK(v)) {
385 r->l0 |= (xfs_bmbt_rec_base_t)XFS_MASK64LO(9);
386 r->l1 = (xfs_bmbt_rec_base_t)XFS_MASK64HI(11) |
387 ((xfs_bmbt_rec_base_t)v << 21) |
388 (r->l1 & (xfs_bmbt_rec_base_t)XFS_MASK64LO(21));
389 } else {
390 r->l0 &= ~(xfs_bmbt_rec_base_t)XFS_MASK64LO(9);
391 r->l1 = ((xfs_bmbt_rec_base_t)v << 21) |
392 (r->l1 & (xfs_bmbt_rec_base_t)XFS_MASK64LO(21));
393 }
394#endif /* XFS_BIG_BLKNOS */
395}
396
397/*
398 * Set the startoff field in a bmap extent record.
399 */
400void
401xfs_bmbt_set_startoff(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000402 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 xfs_fileoff_t v)
404{
405 ASSERT((v & XFS_MASK64HI(9)) == 0);
406 r->l0 = (r->l0 & (xfs_bmbt_rec_base_t) XFS_MASK64HI(1)) |
407 ((xfs_bmbt_rec_base_t)v << 9) |
408 (r->l0 & (xfs_bmbt_rec_base_t)XFS_MASK64LO(9));
409}
410
411/*
412 * Set the extent state field in a bmap extent record.
413 */
414void
415xfs_bmbt_set_state(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000416 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 xfs_exntst_t v)
418{
419 ASSERT(v == XFS_EXT_NORM || v == XFS_EXT_UNWRITTEN);
420 if (v == XFS_EXT_NORM)
421 r->l0 &= XFS_MASK64LO(64 - BMBT_EXNTFLAG_BITLEN);
422 else
423 r->l0 |= XFS_MASK64HI(BMBT_EXNTFLAG_BITLEN);
424}
425
426/*
427 * Convert in-memory form of btree root to on-disk form.
428 */
429void
430xfs_bmbt_to_bmdr(
431 xfs_bmbt_block_t *rblock,
432 int rblocklen,
433 xfs_bmdr_block_t *dblock,
434 int dblocklen)
435{
436 int dmxr;
437 xfs_bmbt_key_t *fkp;
Christoph Hellwig576039c2006-09-28 10:58:06 +1000438 __be64 *fpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 xfs_bmbt_key_t *tkp;
Christoph Hellwig576039c2006-09-28 10:58:06 +1000440 __be64 *tpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Christoph Hellwig16259e72005-11-02 15:11:25 +1100442 ASSERT(be32_to_cpu(rblock->bb_magic) == XFS_BMAP_MAGIC);
443 ASSERT(be64_to_cpu(rblock->bb_leftsib) == NULLDFSBNO);
444 ASSERT(be64_to_cpu(rblock->bb_rightsib) == NULLDFSBNO);
445 ASSERT(be16_to_cpu(rblock->bb_level) > 0);
446 dblock->bb_level = rblock->bb_level;
447 dblock->bb_numrecs = rblock->bb_numrecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 dmxr = (int)XFS_BTREE_BLOCK_MAXRECS(dblocklen, xfs_bmdr, 0);
449 fkp = XFS_BMAP_BROOT_KEY_ADDR(rblock, 1, rblocklen);
Eric Sandeen2c36dde2007-02-10 18:37:33 +1100450 tkp = XFS_BTREE_KEY_ADDR(xfs_bmdr, dblock, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 fpp = XFS_BMAP_BROOT_PTR_ADDR(rblock, 1, rblocklen);
Eric Sandeen2c36dde2007-02-10 18:37:33 +1100452 tpp = XFS_BTREE_PTR_ADDR(xfs_bmdr, dblock, 1, dmxr);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100453 dmxr = be16_to_cpu(dblock->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 memcpy(tkp, fkp, sizeof(*fkp) * dmxr);
Christoph Hellwig576039c2006-09-28 10:58:06 +1000455 memcpy(tpp, fpp, sizeof(*fpp) * dmxr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
458/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100459 * Check extent records, which have just been read, for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 * any bit in the extent flag field. ASSERT on debug
461 * kernels, as this condition should not occur.
462 * Return an error condition (1) if any flags found,
463 * otherwise return 0.
464 */
465
466int
467xfs_check_nostate_extents(
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100468 xfs_ifork_t *ifp,
469 xfs_extnum_t idx,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 xfs_extnum_t num)
471{
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100472 for (; num > 0; num--, idx++) {
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000473 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if ((ep->l0 >>
475 (64 - BMBT_EXNTFLAG_BITLEN)) != 0) {
476 ASSERT(0);
477 return 1;
478 }
479 }
480 return 0;
481}
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100482
483
484STATIC struct xfs_btree_cur *
485xfs_bmbt_dup_cursor(
486 struct xfs_btree_cur *cur)
487{
488 struct xfs_btree_cur *new;
489
490 new = xfs_bmbt_init_cursor(cur->bc_mp, cur->bc_tp,
491 cur->bc_private.b.ip, cur->bc_private.b.whichfork);
492
493 /*
494 * Copy the firstblock, flist, and flags values,
495 * since init cursor doesn't get them.
496 */
497 new->bc_private.b.firstblock = cur->bc_private.b.firstblock;
498 new->bc_private.b.flist = cur->bc_private.b.flist;
499 new->bc_private.b.flags = cur->bc_private.b.flags;
500
501 return new;
502}
503
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100504STATIC void
505xfs_bmbt_update_cursor(
506 struct xfs_btree_cur *src,
507 struct xfs_btree_cur *dst)
508{
509 ASSERT((dst->bc_private.b.firstblock != NULLFSBLOCK) ||
510 (dst->bc_private.b.ip->i_d.di_flags & XFS_DIFLAG_REALTIME));
511 ASSERT(dst->bc_private.b.flist == src->bc_private.b.flist);
512
513 dst->bc_private.b.allocated += src->bc_private.b.allocated;
514 dst->bc_private.b.firstblock = src->bc_private.b.firstblock;
515
516 src->bc_private.b.allocated = 0;
517}
518
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100519STATIC int
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100520xfs_bmbt_alloc_block(
521 struct xfs_btree_cur *cur,
522 union xfs_btree_ptr *start,
523 union xfs_btree_ptr *new,
524 int length,
525 int *stat)
526{
527 xfs_alloc_arg_t args; /* block allocation args */
528 int error; /* error return value */
529
530 memset(&args, 0, sizeof(args));
531 args.tp = cur->bc_tp;
532 args.mp = cur->bc_mp;
533 args.fsbno = cur->bc_private.b.firstblock;
534 args.firstblock = args.fsbno;
535
536 if (args.fsbno == NULLFSBLOCK) {
537 args.fsbno = be64_to_cpu(start->l);
538 args.type = XFS_ALLOCTYPE_START_BNO;
539 /*
540 * Make sure there is sufficient room left in the AG to
541 * complete a full tree split for an extent insert. If
542 * we are converting the middle part of an extent then
543 * we may need space for two tree splits.
544 *
545 * We are relying on the caller to make the correct block
546 * reservation for this operation to succeed. If the
547 * reservation amount is insufficient then we may fail a
548 * block allocation here and corrupt the filesystem.
549 */
550 args.minleft = xfs_trans_get_block_res(args.tp);
551 } else if (cur->bc_private.b.flist->xbf_low) {
552 args.type = XFS_ALLOCTYPE_START_BNO;
553 } else {
554 args.type = XFS_ALLOCTYPE_NEAR_BNO;
555 }
556
557 args.minlen = args.maxlen = args.prod = 1;
558 args.wasdel = cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL;
559 if (!args.wasdel && xfs_trans_get_block_res(args.tp) == 0) {
560 error = XFS_ERROR(ENOSPC);
561 goto error0;
562 }
563 error = xfs_alloc_vextent(&args);
564 if (error)
565 goto error0;
566
567 if (args.fsbno == NULLFSBLOCK && args.minleft) {
568 /*
569 * Could not find an AG with enough free space to satisfy
570 * a full btree split. Try again without minleft and if
571 * successful activate the lowspace algorithm.
572 */
573 args.fsbno = 0;
574 args.type = XFS_ALLOCTYPE_FIRST_AG;
575 args.minleft = 0;
576 error = xfs_alloc_vextent(&args);
577 if (error)
578 goto error0;
579 cur->bc_private.b.flist->xbf_low = 1;
580 }
581 if (args.fsbno == NULLFSBLOCK) {
582 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
583 *stat = 0;
584 return 0;
585 }
586 ASSERT(args.len == 1);
587 cur->bc_private.b.firstblock = args.fsbno;
588 cur->bc_private.b.allocated++;
589 cur->bc_private.b.ip->i_d.di_nblocks++;
590 xfs_trans_log_inode(args.tp, cur->bc_private.b.ip, XFS_ILOG_CORE);
591 XFS_TRANS_MOD_DQUOT_BYINO(args.mp, args.tp, cur->bc_private.b.ip,
592 XFS_TRANS_DQ_BCOUNT, 1L);
593
594 new->l = cpu_to_be64(args.fsbno);
595
596 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
597 *stat = 1;
598 return 0;
599
600 error0:
601 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
602 return error;
603}
604
605STATIC int
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100606xfs_bmbt_free_block(
607 struct xfs_btree_cur *cur,
608 struct xfs_buf *bp)
609{
610 struct xfs_mount *mp = cur->bc_mp;
611 struct xfs_inode *ip = cur->bc_private.b.ip;
612 struct xfs_trans *tp = cur->bc_tp;
613 xfs_fsblock_t fsbno = XFS_DADDR_TO_FSB(mp, XFS_BUF_ADDR(bp));
614
615 xfs_bmap_add_free(fsbno, 1, cur->bc_private.b.flist, mp);
616 ip->i_d.di_nblocks--;
617
618 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
619 XFS_TRANS_MOD_DQUOT_BYINO(mp, tp, ip, XFS_TRANS_DQ_BCOUNT, -1L);
620 xfs_trans_binval(tp, bp);
621 return 0;
622}
623
624STATIC int
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100625xfs_bmbt_get_minrecs(
626 struct xfs_btree_cur *cur,
627 int level)
628{
629 return XFS_BMAP_BLOCK_IMINRECS(level, cur);
630}
631
632STATIC int
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100633xfs_bmbt_get_maxrecs(
634 struct xfs_btree_cur *cur,
635 int level)
636{
637 return XFS_BMAP_BLOCK_IMAXRECS(level, cur);
638}
639
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100640/*
641 * Get the maximum records we could store in the on-disk format.
642 *
643 * For non-root nodes this is equivalent to xfs_bmbt_get_maxrecs, but
644 * for the root node this checks the available space in the dinode fork
645 * so that we can resize the in-memory buffer to match it. After a
646 * resize to the maximum size this function returns the same value
647 * as xfs_bmbt_get_maxrecs for the root node, too.
648 */
649STATIC int
650xfs_bmbt_get_dmaxrecs(
651 struct xfs_btree_cur *cur,
652 int level)
653{
654 return XFS_BMAP_BLOCK_DMAXRECS(level, cur);
655}
656
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100657STATIC void
658xfs_bmbt_init_key_from_rec(
659 union xfs_btree_key *key,
660 union xfs_btree_rec *rec)
661{
662 key->bmbt.br_startoff =
663 cpu_to_be64(xfs_bmbt_disk_get_startoff(&rec->bmbt));
664}
665
666STATIC void
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100667xfs_bmbt_init_rec_from_key(
668 union xfs_btree_key *key,
669 union xfs_btree_rec *rec)
670{
671 ASSERT(key->bmbt.br_startoff != 0);
672
673 xfs_bmbt_disk_set_allf(&rec->bmbt, be64_to_cpu(key->bmbt.br_startoff),
674 0, 0, XFS_EXT_NORM);
675}
676
677STATIC void
678xfs_bmbt_init_rec_from_cur(
679 struct xfs_btree_cur *cur,
680 union xfs_btree_rec *rec)
681{
682 xfs_bmbt_disk_set_all(&rec->bmbt, &cur->bc_rec.b);
683}
684
685STATIC void
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100686xfs_bmbt_init_ptr_from_cur(
687 struct xfs_btree_cur *cur,
688 union xfs_btree_ptr *ptr)
689{
690 ptr->l = 0;
691}
692
693STATIC __int64_t
694xfs_bmbt_key_diff(
695 struct xfs_btree_cur *cur,
696 union xfs_btree_key *key)
697{
698 return (__int64_t)be64_to_cpu(key->bmbt.br_startoff) -
699 cur->bc_rec.b.br_startoff;
700}
701
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100702#ifdef DEBUG
703STATIC int
704xfs_bmbt_keys_inorder(
705 struct xfs_btree_cur *cur,
706 union xfs_btree_key *k1,
707 union xfs_btree_key *k2)
708{
709 return be64_to_cpu(k1->bmbt.br_startoff) <
710 be64_to_cpu(k2->bmbt.br_startoff);
711}
712
713STATIC int
714xfs_bmbt_recs_inorder(
715 struct xfs_btree_cur *cur,
716 union xfs_btree_rec *r1,
717 union xfs_btree_rec *r2)
718{
719 return xfs_bmbt_disk_get_startoff(&r1->bmbt) +
720 xfs_bmbt_disk_get_blockcount(&r1->bmbt) <=
721 xfs_bmbt_disk_get_startoff(&r2->bmbt);
722}
723#endif /* DEBUG */
724
Christoph Hellwig8c4ed632008-10-30 16:55:13 +1100725#ifdef XFS_BTREE_TRACE
726ktrace_t *xfs_bmbt_trace_buf;
727
728STATIC void
729xfs_bmbt_trace_enter(
730 struct xfs_btree_cur *cur,
731 const char *func,
732 char *s,
733 int type,
734 int line,
735 __psunsigned_t a0,
736 __psunsigned_t a1,
737 __psunsigned_t a2,
738 __psunsigned_t a3,
739 __psunsigned_t a4,
740 __psunsigned_t a5,
741 __psunsigned_t a6,
742 __psunsigned_t a7,
743 __psunsigned_t a8,
744 __psunsigned_t a9,
745 __psunsigned_t a10)
746{
747 struct xfs_inode *ip = cur->bc_private.b.ip;
748 int whichfork = cur->bc_private.b.whichfork;
749
750 ktrace_enter(xfs_bmbt_trace_buf,
751 (void *)((__psint_t)type | (whichfork << 8) | (line << 16)),
752 (void *)func, (void *)s, (void *)ip, (void *)cur,
753 (void *)a0, (void *)a1, (void *)a2, (void *)a3,
754 (void *)a4, (void *)a5, (void *)a6, (void *)a7,
755 (void *)a8, (void *)a9, (void *)a10);
756 ktrace_enter(ip->i_btrace,
757 (void *)((__psint_t)type | (whichfork << 8) | (line << 16)),
758 (void *)func, (void *)s, (void *)ip, (void *)cur,
759 (void *)a0, (void *)a1, (void *)a2, (void *)a3,
760 (void *)a4, (void *)a5, (void *)a6, (void *)a7,
761 (void *)a8, (void *)a9, (void *)a10);
762}
763
764STATIC void
765xfs_bmbt_trace_cursor(
766 struct xfs_btree_cur *cur,
767 __uint32_t *s0,
768 __uint64_t *l0,
769 __uint64_t *l1)
770{
771 struct xfs_bmbt_rec_host r;
772
773 xfs_bmbt_set_all(&r, &cur->bc_rec.b);
774
775 *s0 = (cur->bc_nlevels << 24) |
776 (cur->bc_private.b.flags << 16) |
777 cur->bc_private.b.allocated;
778 *l0 = r.l0;
779 *l1 = r.l1;
780}
781
782STATIC void
783xfs_bmbt_trace_key(
784 struct xfs_btree_cur *cur,
785 union xfs_btree_key *key,
786 __uint64_t *l0,
787 __uint64_t *l1)
788{
789 *l0 = be64_to_cpu(key->bmbt.br_startoff);
790 *l1 = 0;
791}
792
793STATIC void
794xfs_bmbt_trace_record(
795 struct xfs_btree_cur *cur,
796 union xfs_btree_rec *rec,
797 __uint64_t *l0,
798 __uint64_t *l1,
799 __uint64_t *l2)
800{
801 struct xfs_bmbt_irec irec;
802
803 xfs_bmbt_disk_get_all(&rec->bmbt, &irec);
804 *l0 = irec.br_startoff;
805 *l1 = irec.br_startblock;
806 *l2 = irec.br_blockcount;
807}
808#endif /* XFS_BTREE_TRACE */
809
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100810static const struct xfs_btree_ops xfs_bmbt_ops = {
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100811 .rec_len = sizeof(xfs_bmbt_rec_t),
812 .key_len = sizeof(xfs_bmbt_key_t),
813
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100814 .dup_cursor = xfs_bmbt_dup_cursor,
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100815 .update_cursor = xfs_bmbt_update_cursor,
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100816 .alloc_block = xfs_bmbt_alloc_block,
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100817 .free_block = xfs_bmbt_free_block,
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100818 .get_maxrecs = xfs_bmbt_get_maxrecs,
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100819 .get_minrecs = xfs_bmbt_get_minrecs,
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100820 .get_dmaxrecs = xfs_bmbt_get_dmaxrecs,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100821 .init_key_from_rec = xfs_bmbt_init_key_from_rec,
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100822 .init_rec_from_key = xfs_bmbt_init_rec_from_key,
823 .init_rec_from_cur = xfs_bmbt_init_rec_from_cur,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100824 .init_ptr_from_cur = xfs_bmbt_init_ptr_from_cur,
825 .key_diff = xfs_bmbt_key_diff,
Christoph Hellwig8c4ed632008-10-30 16:55:13 +1100826
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100827#ifdef DEBUG
828 .keys_inorder = xfs_bmbt_keys_inorder,
829 .recs_inorder = xfs_bmbt_recs_inorder,
830#endif
831
Christoph Hellwig8c4ed632008-10-30 16:55:13 +1100832#ifdef XFS_BTREE_TRACE
833 .trace_enter = xfs_bmbt_trace_enter,
834 .trace_cursor = xfs_bmbt_trace_cursor,
835 .trace_key = xfs_bmbt_trace_key,
836 .trace_record = xfs_bmbt_trace_record,
837#endif
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100838};
839
840/*
841 * Allocate a new bmap btree cursor.
842 */
843struct xfs_btree_cur * /* new bmap btree cursor */
844xfs_bmbt_init_cursor(
845 struct xfs_mount *mp, /* file system mount point */
846 struct xfs_trans *tp, /* transaction pointer */
847 struct xfs_inode *ip, /* inode owning the btree */
848 int whichfork) /* data or attr fork */
849{
850 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
851 struct xfs_btree_cur *cur;
852
853 cur = kmem_zone_zalloc(xfs_btree_cur_zone, KM_SLEEP);
854
855 cur->bc_tp = tp;
856 cur->bc_mp = mp;
857 cur->bc_nlevels = be16_to_cpu(ifp->if_broot->bb_level) + 1;
858 cur->bc_btnum = XFS_BTNUM_BMAP;
859 cur->bc_blocklog = mp->m_sb.sb_blocklog;
860
861 cur->bc_ops = &xfs_bmbt_ops;
Christoph Hellwige99ab902008-10-30 16:54:33 +1100862 cur->bc_flags = XFS_BTREE_LONG_PTRS | XFS_BTREE_ROOT_IN_INODE;
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100863
864 cur->bc_private.b.forksize = XFS_IFORK_SIZE(ip, whichfork);
865 cur->bc_private.b.ip = ip;
866 cur->bc_private.b.firstblock = NULLFSBLOCK;
867 cur->bc_private.b.flist = NULL;
868 cur->bc_private.b.allocated = 0;
869 cur->bc_private.b.flags = 0;
870 cur->bc_private.b.whichfork = whichfork;
871
872 return cur;
873}