]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/xfs/xfs_btree.h
[XFS] cleanup btree record / key / ptr addressing macros.
[net-next-2.6.git] / fs / xfs / xfs_btree.h
CommitLineData
1da177e4 1/*
7b718769
NS
2 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
9 * 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.
1da177e4 13 *
7b718769
NS
14 * 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
1da177e4
LT
17 */
18#ifndef __XFS_BTREE_H__
19#define __XFS_BTREE_H__
20
21struct xfs_buf;
22struct xfs_bmap_free;
23struct xfs_inode;
24struct xfs_mount;
25struct xfs_trans;
26
a8272ce0
DC
27extern kmem_zone_t *xfs_btree_cur_zone;
28
1da177e4
LT
29/*
30 * This nonsense is to make -wlint happy.
31 */
32#define XFS_LOOKUP_EQ ((xfs_lookup_t)XFS_LOOKUP_EQi)
33#define XFS_LOOKUP_LE ((xfs_lookup_t)XFS_LOOKUP_LEi)
34#define XFS_LOOKUP_GE ((xfs_lookup_t)XFS_LOOKUP_GEi)
35
36#define XFS_BTNUM_BNO ((xfs_btnum_t)XFS_BTNUM_BNOi)
37#define XFS_BTNUM_CNT ((xfs_btnum_t)XFS_BTNUM_CNTi)
38#define XFS_BTNUM_BMAP ((xfs_btnum_t)XFS_BTNUM_BMAPi)
39#define XFS_BTNUM_INO ((xfs_btnum_t)XFS_BTNUM_INOi)
40
41/*
42 * Short form header: space allocation btrees.
43 */
16259e7d
CH
44typedef struct xfs_btree_sblock {
45 __be32 bb_magic; /* magic number for block type */
46 __be16 bb_level; /* 0 is a leaf */
47 __be16 bb_numrecs; /* current # of data records */
48 __be32 bb_leftsib; /* left sibling block or NULLAGBLOCK */
49 __be32 bb_rightsib; /* right sibling block or NULLAGBLOCK */
1da177e4
LT
50} xfs_btree_sblock_t;
51
52/*
53 * Long form header: bmap btrees.
54 */
16259e7d
CH
55typedef struct xfs_btree_lblock {
56 __be32 bb_magic; /* magic number for block type */
57 __be16 bb_level; /* 0 is a leaf */
58 __be16 bb_numrecs; /* current # of data records */
59 __be64 bb_leftsib; /* left sibling block or NULLDFSBNO */
60 __be64 bb_rightsib; /* right sibling block or NULLDFSBNO */
1da177e4
LT
61} xfs_btree_lblock_t;
62
63/*
64 * Combined header and structure, used by common code.
65 */
f2277f06 66typedef struct xfs_btree_block {
16259e7d
CH
67 __be32 bb_magic; /* magic number for block type */
68 __be16 bb_level; /* 0 is a leaf */
69 __be16 bb_numrecs; /* current # of data records */
16259e7d
CH
70 union {
71 struct {
72 __be32 bb_leftsib;
73 __be32 bb_rightsib;
74 } s; /* short form pointers */
1da177e4 75 struct {
16259e7d
CH
76 __be64 bb_leftsib;
77 __be64 bb_rightsib;
78 } l; /* long form pointers */
79 } bb_u; /* rest */
1da177e4
LT
80} xfs_btree_block_t;
81
de227dd9
CH
82/*
83 * Generic key, ptr and record wrapper structures.
84 *
85 * These are disk format structures, and are converted where necessary
86 * by the btree specific code that needs to interpret them.
87 */
88union xfs_btree_ptr {
89 __be32 s; /* short form ptr */
90 __be64 l; /* long form ptr */
91};
92
93union xfs_btree_key {
94 xfs_bmbt_key_t bmbt;
95 xfs_bmdr_key_t bmbr; /* bmbt root block */
96 xfs_alloc_key_t alloc;
97 xfs_inobt_key_t inobt;
98};
99
100union xfs_btree_rec {
101 xfs_bmbt_rec_t bmbt;
102 xfs_bmdr_rec_t bmbr; /* bmbt root block */
103 xfs_alloc_rec_t alloc;
104 xfs_inobt_rec_t inobt;
105};
106
1da177e4
LT
107/*
108 * For logging record fields.
109 */
110#define XFS_BB_MAGIC 0x01
111#define XFS_BB_LEVEL 0x02
112#define XFS_BB_NUMRECS 0x04
113#define XFS_BB_LEFTSIB 0x08
114#define XFS_BB_RIGHTSIB 0x10
115#define XFS_BB_NUM_BITS 5
116#define XFS_BB_ALL_BITS ((1 << XFS_BB_NUM_BITS) - 1)
117
1da177e4
LT
118/*
119 * Magic numbers for btree blocks.
120 */
121extern const __uint32_t xfs_magics[];
122
854929f0
DC
123/*
124 * Generic stats interface
125 */
126#define __XFS_BTREE_STATS_INC(type, stat) \
127 XFS_STATS_INC(xs_ ## type ## _2_ ## stat)
128#define XFS_BTREE_STATS_INC(cur, stat) \
129do { \
130 switch (cur->bc_btnum) { \
131 case XFS_BTNUM_BNO: __XFS_BTREE_STATS_INC(abtb, stat); break; \
132 case XFS_BTNUM_CNT: __XFS_BTREE_STATS_INC(abtc, stat); break; \
133 case XFS_BTNUM_BMAP: __XFS_BTREE_STATS_INC(bmbt, stat); break; \
134 case XFS_BTNUM_INO: __XFS_BTREE_STATS_INC(ibt, stat); break; \
135 case XFS_BTNUM_MAX: ASSERT(0); /* fucking gcc */ ; break; \
136 } \
137} while (0)
138
139#define __XFS_BTREE_STATS_ADD(type, stat, val) \
140 XFS_STATS_ADD(xs_ ## type ## _2_ ## stat, val)
141#define XFS_BTREE_STATS_ADD(cur, stat, val) \
142do { \
143 switch (cur->bc_btnum) { \
144 case XFS_BTNUM_BNO: __XFS_BTREE_STATS_ADD(abtb, stat, val); break; \
145 case XFS_BTNUM_CNT: __XFS_BTREE_STATS_ADD(abtc, stat, val); break; \
146 case XFS_BTNUM_BMAP: __XFS_BTREE_STATS_ADD(bmbt, stat, val); break; \
147 case XFS_BTNUM_INO: __XFS_BTREE_STATS_ADD(ibt, stat, val); break; \
148 case XFS_BTNUM_MAX: ASSERT(0); /* fucking gcc */ ; break; \
149 } \
150} while (0)
1da177e4 151
1da177e4
LT
152#define XFS_BTREE_MAXLEVELS 8 /* max of all btrees */
153
561f7d17 154struct xfs_btree_ops {
65f1eaea
CH
155 /* size of the key and record structures */
156 size_t key_len;
157 size_t rec_len;
158
561f7d17
CH
159 /* cursor operations */
160 struct xfs_btree_cur *(*dup_cursor)(struct xfs_btree_cur *);
4b22a571
CH
161 void (*update_cursor)(struct xfs_btree_cur *src,
162 struct xfs_btree_cur *dst);
8c4ed633 163
344207ce
CH
164 /* update btree root pointer */
165 void (*set_root)(struct xfs_btree_cur *cur,
166 union xfs_btree_ptr *nptr, int level_change);
91cca5df
CH
167 int (*kill_root)(struct xfs_btree_cur *cur, struct xfs_buf *bp,
168 int level, union xfs_btree_ptr *newroot);
344207ce 169
f5eb8e7c
CH
170 /* block allocation / freeing */
171 int (*alloc_block)(struct xfs_btree_cur *cur,
172 union xfs_btree_ptr *start_bno,
173 union xfs_btree_ptr *new_bno,
174 int length, int *stat);
d4b3a4b7 175 int (*free_block)(struct xfs_btree_cur *cur, struct xfs_buf *bp);
f5eb8e7c 176
278d0ca1
CH
177 /* update last record information */
178 void (*update_lastrec)(struct xfs_btree_cur *cur,
179 struct xfs_btree_block *block,
180 union xfs_btree_rec *rec,
181 int ptr, int reason);
182
ce5e42db 183 /* records in block/level */
91cca5df 184 int (*get_minrecs)(struct xfs_btree_cur *cur, int level);
ce5e42db
CH
185 int (*get_maxrecs)(struct xfs_btree_cur *cur, int level);
186
4b22a571
CH
187 /* records on disk. Matter for the root in inode case. */
188 int (*get_dmaxrecs)(struct xfs_btree_cur *cur, int level);
189
fe033cc8
CH
190 /* init values of btree structures */
191 void (*init_key_from_rec)(union xfs_btree_key *key,
192 union xfs_btree_rec *rec);
4b22a571
CH
193 void (*init_rec_from_key)(union xfs_btree_key *key,
194 union xfs_btree_rec *rec);
195 void (*init_rec_from_cur)(struct xfs_btree_cur *cur,
196 union xfs_btree_rec *rec);
fe033cc8
CH
197 void (*init_ptr_from_cur)(struct xfs_btree_cur *cur,
198 union xfs_btree_ptr *ptr);
199
200 /* difference between key value and cursor value */
201 __int64_t (*key_diff)(struct xfs_btree_cur *cur,
202 union xfs_btree_key *key);
203
4a26e66e
CH
204#ifdef DEBUG
205 /* check that k1 is lower than k2 */
206 int (*keys_inorder)(struct xfs_btree_cur *cur,
207 union xfs_btree_key *k1,
208 union xfs_btree_key *k2);
209
210 /* check that r1 is lower than r2 */
211 int (*recs_inorder)(struct xfs_btree_cur *cur,
212 union xfs_btree_rec *r1,
213 union xfs_btree_rec *r2);
214#endif
215
8c4ed633
CH
216 /* btree tracing */
217#ifdef XFS_BTREE_TRACE
218 void (*trace_enter)(struct xfs_btree_cur *, const char *,
219 char *, int, int, __psunsigned_t,
220 __psunsigned_t, __psunsigned_t,
221 __psunsigned_t, __psunsigned_t,
222 __psunsigned_t, __psunsigned_t,
223 __psunsigned_t, __psunsigned_t,
224 __psunsigned_t, __psunsigned_t);
225 void (*trace_cursor)(struct xfs_btree_cur *, __uint32_t *,
226 __uint64_t *, __uint64_t *);
227 void (*trace_key)(struct xfs_btree_cur *,
228 union xfs_btree_key *, __uint64_t *,
229 __uint64_t *);
230 void (*trace_record)(struct xfs_btree_cur *,
231 union xfs_btree_rec *, __uint64_t *,
232 __uint64_t *, __uint64_t *);
233#endif
561f7d17
CH
234};
235
278d0ca1
CH
236/*
237 * Reasons for the update_lastrec method to be called.
238 */
239#define LASTREC_UPDATE 0
4b22a571 240#define LASTREC_INSREC 1
91cca5df 241#define LASTREC_DELREC 2
278d0ca1
CH
242
243
1da177e4
LT
244/*
245 * Btree cursor structure.
246 * This collects all information needed by the btree code in one place.
247 */
248typedef struct xfs_btree_cur
249{
250 struct xfs_trans *bc_tp; /* transaction we're in, if any */
251 struct xfs_mount *bc_mp; /* file system mount struct */
561f7d17 252 const struct xfs_btree_ops *bc_ops;
8186e517 253 uint bc_flags; /* btree features - below */
1da177e4 254 union {
16259e7d 255 xfs_alloc_rec_incore_t a;
1da177e4 256 xfs_bmbt_irec_t b;
61a25848 257 xfs_inobt_rec_incore_t i;
1da177e4
LT
258 } bc_rec; /* current insert/search record value */
259 struct xfs_buf *bc_bufs[XFS_BTREE_MAXLEVELS]; /* buf ptr per level */
260 int bc_ptrs[XFS_BTREE_MAXLEVELS]; /* key/record # */
261 __uint8_t bc_ra[XFS_BTREE_MAXLEVELS]; /* readahead bits */
262#define XFS_BTCUR_LEFTRA 1 /* left sibling has been read-ahead */
263#define XFS_BTCUR_RIGHTRA 2 /* right sibling has been read-ahead */
264 __uint8_t bc_nlevels; /* number of levels in the tree */
265 __uint8_t bc_blocklog; /* log2(blocksize) of btree blocks */
266 xfs_btnum_t bc_btnum; /* identifies which btree type */
267 union {
169d6227
CH
268 struct { /* needed for BNO, CNT, INO */
269 struct xfs_buf *agbp; /* agf/agi buffer pointer */
1da177e4
LT
270 xfs_agnumber_t agno; /* ag number */
271 } a;
272 struct { /* needed for BMAP */
273 struct xfs_inode *ip; /* pointer to our inode */
274 struct xfs_bmap_free *flist; /* list to free after */
275 xfs_fsblock_t firstblock; /* 1st blk allocated */
276 int allocated; /* count of alloced */
277 short forksize; /* fork's inode space */
278 char whichfork; /* data or attr fork */
279 char flags; /* flags */
280#define XFS_BTCUR_BPRV_WASDEL 1 /* was delayed */
281 } b;
1da177e4
LT
282 } bc_private; /* per-btree type data */
283} xfs_btree_cur_t;
284
8186e517 285/* cursor flags */
e99ab90d 286#define XFS_BTREE_LONG_PTRS (1<<0) /* pointers are 64bits long */
8186e517 287#define XFS_BTREE_ROOT_IN_INODE (1<<1) /* root may be variable size */
278d0ca1 288#define XFS_BTREE_LASTREC_UPDATE (1<<2) /* track last rec externally */
8186e517
CH
289
290
1da177e4
LT
291#define XFS_BTREE_NOERROR 0
292#define XFS_BTREE_ERROR 1
293
294/*
295 * Convert from buffer to btree block header.
296 */
a844f451
NS
297#define XFS_BUF_TO_BLOCK(bp) ((xfs_btree_block_t *)XFS_BUF_PTR(bp))
298#define XFS_BUF_TO_LBLOCK(bp) ((xfs_btree_lblock_t *)XFS_BUF_PTR(bp))
299#define XFS_BUF_TO_SBLOCK(bp) ((xfs_btree_sblock_t *)XFS_BUF_PTR(bp))
300
1da177e4 301
1da177e4 302/*
a23f6ef8 303 * Check that long form block header is ok.
1da177e4 304 */
a23f6ef8
CH
305int /* error (0 or EFSCORRUPTED) */
306xfs_btree_check_lblock(
307 struct xfs_btree_cur *cur, /* btree cursor */
308 struct xfs_btree_lblock *block, /* btree long form block pointer */
1da177e4
LT
309 int level, /* level of the btree block */
310 struct xfs_buf *bp); /* buffer containing block, if any */
311
1da177e4 312/*
a23f6ef8 313 * Check that block header is ok.
1da177e4 314 */
a23f6ef8
CH
315int
316xfs_btree_check_block(
317 struct xfs_btree_cur *cur, /* btree cursor */
318 struct xfs_btree_block *block, /* generic btree block pointer */
1da177e4
LT
319 int level, /* level of the btree block */
320 struct xfs_buf *bp); /* buffer containing block, if any */
321
322/*
a23f6ef8 323 * Check that (long) pointer is ok.
1da177e4
LT
324 */
325int /* error (0 or EFSCORRUPTED) */
326xfs_btree_check_lptr(
a23f6ef8 327 struct xfs_btree_cur *cur, /* btree cursor */
1da177e4
LT
328 xfs_dfsbno_t ptr, /* btree block disk address */
329 int level); /* btree block level */
330
1da177e4
LT
331/*
332 * Delete the btree cursor.
333 */
334void
335xfs_btree_del_cursor(
336 xfs_btree_cur_t *cur, /* btree cursor */
337 int error); /* del because of error */
338
339/*
340 * Duplicate the btree cursor.
341 * Allocate a new one, copy the record, re-get the buffers.
342 */
343int /* error */
344xfs_btree_dup_cursor(
345 xfs_btree_cur_t *cur, /* input cursor */
346 xfs_btree_cur_t **ncur);/* output cursor */
347
1da177e4
LT
348/*
349 * Get a buffer for the block, return it with no data read.
350 * Long-form addressing.
351 */
352struct xfs_buf * /* buffer for fsbno */
353xfs_btree_get_bufl(
354 struct xfs_mount *mp, /* file system mount point */
355 struct xfs_trans *tp, /* transaction pointer */
356 xfs_fsblock_t fsbno, /* file system block number */
357 uint lock); /* lock flags for get_buf */
358
359/*
360 * Get a buffer for the block, return it with no data read.
361 * Short-form addressing.
362 */
363struct xfs_buf * /* buffer for agno/agbno */
364xfs_btree_get_bufs(
365 struct xfs_mount *mp, /* file system mount point */
366 struct xfs_trans *tp, /* transaction pointer */
367 xfs_agnumber_t agno, /* allocation group number */
368 xfs_agblock_t agbno, /* allocation group block number */
369 uint lock); /* lock flags for get_buf */
370
1da177e4
LT
371/*
372 * Check for the cursor referring to the last block at the given level.
373 */
374int /* 1=is last block, 0=not last block */
375xfs_btree_islastblock(
376 xfs_btree_cur_t *cur, /* btree cursor */
377 int level); /* level to check */
378
1da177e4
LT
379/*
380 * Compute first and last byte offsets for the fields given.
381 * Interprets the offsets table, which contains struct field offsets.
382 */
383void
384xfs_btree_offsets(
385 __int64_t fields, /* bitmask of fields */
386 const short *offsets,/* table of field offsets */
387 int nbits, /* number of bits to inspect */
388 int *first, /* output: first byte offset */
389 int *last); /* output: last byte offset */
390
391/*
392 * Get a buffer for the block, return it read in.
393 * Long-form addressing.
394 */
395int /* error */
396xfs_btree_read_bufl(
397 struct xfs_mount *mp, /* file system mount point */
398 struct xfs_trans *tp, /* transaction pointer */
399 xfs_fsblock_t fsbno, /* file system block number */
400 uint lock, /* lock flags for read_buf */
401 struct xfs_buf **bpp, /* buffer for fsbno */
402 int refval);/* ref count value for buffer */
403
404/*
405 * Get a buffer for the block, return it read in.
406 * Short-form addressing.
407 */
408int /* error */
409xfs_btree_read_bufs(
410 struct xfs_mount *mp, /* file system mount point */
411 struct xfs_trans *tp, /* transaction pointer */
412 xfs_agnumber_t agno, /* allocation group number */
413 xfs_agblock_t agbno, /* allocation group block number */
414 uint lock, /* lock flags for read_buf */
415 struct xfs_buf **bpp, /* buffer for agno/agbno */
416 int refval);/* ref count value for buffer */
417
418/*
419 * Read-ahead the block, don't wait for it, don't return a buffer.
420 * Long-form addressing.
421 */
422void /* error */
423xfs_btree_reada_bufl(
424 struct xfs_mount *mp, /* file system mount point */
425 xfs_fsblock_t fsbno, /* file system block number */
426 xfs_extlen_t count); /* count of filesystem blocks */
427
428/*
429 * Read-ahead the block, don't wait for it, don't return a buffer.
430 * Short-form addressing.
431 */
432void /* error */
433xfs_btree_reada_bufs(
434 struct xfs_mount *mp, /* file system mount point */
435 xfs_agnumber_t agno, /* allocation group number */
436 xfs_agblock_t agbno, /* allocation group block number */
437 xfs_extlen_t count); /* count of filesystem blocks */
438
1da177e4
LT
439/*
440 * Set the buffer for level "lev" in the cursor to bp, releasing
441 * any previous buffer.
442 */
443void
444xfs_btree_setbuf(
445 xfs_btree_cur_t *cur, /* btree cursor */
446 int lev, /* level in btree */
447 struct xfs_buf *bp); /* new buffer to set */
448
65f1eaea 449
637aa50f
CH
450/*
451 * Common btree core entry points.
452 */
453int xfs_btree_increment(struct xfs_btree_cur *, int, int *);
8df4da4a 454int xfs_btree_decrement(struct xfs_btree_cur *, int, int *);
fe033cc8 455int xfs_btree_lookup(struct xfs_btree_cur *, xfs_lookup_t, int *);
278d0ca1 456int xfs_btree_update(struct xfs_btree_cur *, union xfs_btree_rec *);
ea77b0a6 457int xfs_btree_new_iroot(struct xfs_btree_cur *, int *, int *);
d4b3a4b7 458int xfs_btree_kill_iroot(struct xfs_btree_cur *);
4b22a571 459int xfs_btree_insert(struct xfs_btree_cur *, int *);
91cca5df 460int xfs_btree_delete(struct xfs_btree_cur *, int *);
8cc938fe 461int xfs_btree_get_rec(struct xfs_btree_cur *, union xfs_btree_rec **, int *);
637aa50f 462
fd6bcc5b
CH
463/*
464 * Internal btree helpers also used by xfs_bmap.c.
465 */
466void xfs_btree_log_block(struct xfs_btree_cur *, struct xfs_buf *, int);
467void xfs_btree_log_recs(struct xfs_btree_cur *, struct xfs_buf *, int, int);
468
65f1eaea
CH
469/*
470 * Helpers.
471 */
637aa50f
CH
472static inline int xfs_btree_get_numrecs(struct xfs_btree_block *block)
473{
474 return be16_to_cpu(block->bb_numrecs);
475}
476
9eaead51
CH
477static inline void xfs_btree_set_numrecs(struct xfs_btree_block *block,
478 __uint16_t numrecs)
479{
480 block->bb_numrecs = cpu_to_be16(numrecs);
481}
482
65f1eaea
CH
483static inline int xfs_btree_get_level(struct xfs_btree_block *block)
484{
485 return be16_to_cpu(block->bb_level);
486}
487
1da177e4
LT
488
489/*
490 * Min and max functions for extlen, agblock, fileoff, and filblks types.
491 */
54aa8e26
DC
492#define XFS_EXTLEN_MIN(a,b) min_t(xfs_extlen_t, (a), (b))
493#define XFS_EXTLEN_MAX(a,b) max_t(xfs_extlen_t, (a), (b))
494#define XFS_AGBLOCK_MIN(a,b) min_t(xfs_agblock_t, (a), (b))
495#define XFS_AGBLOCK_MAX(a,b) max_t(xfs_agblock_t, (a), (b))
496#define XFS_FILEOFF_MIN(a,b) min_t(xfs_fileoff_t, (a), (b))
497#define XFS_FILEOFF_MAX(a,b) max_t(xfs_fileoff_t, (a), (b))
498#define XFS_FILBLKS_MIN(a,b) min_t(xfs_filblks_t, (a), (b))
499#define XFS_FILBLKS_MAX(a,b) max_t(xfs_filblks_t, (a), (b))
a844f451 500
1da177e4
LT
501#define XFS_FSB_SANITY_CHECK(mp,fsb) \
502 (XFS_FSB_TO_AGNO(mp, fsb) < mp->m_sb.sb_agcount && \
a844f451 503 XFS_FSB_TO_AGBNO(mp, fsb) < mp->m_sb.sb_agblocks)
1da177e4
LT
504
505#endif /* __XFS_BTREE_H__ */