]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/xfs/xfs_btree.h
[XFS] add generic btree types
[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
118/*
119 * Boolean to select which form of xfs_btree_block_t.bb_u to use.
120 */
1da177e4 121#define XFS_BTREE_LONG_PTRS(btnum) ((btnum) == XFS_BTNUM_BMAP)
1da177e4
LT
122
123/*
124 * Magic numbers for btree blocks.
125 */
126extern const __uint32_t xfs_magics[];
127
128/*
129 * Maximum and minimum records in a btree block.
130 * Given block size, type prefix, and leaf flag (0 or 1).
131 * The divisor below is equivalent to lf ? (e1) : (e2) but that produces
132 * compiler warnings.
133 */
134#define XFS_BTREE_BLOCK_MAXRECS(bsz,t,lf) \
135 ((int)(((bsz) - (uint)sizeof(t ## _block_t)) / \
136 (((lf) * (uint)sizeof(t ## _rec_t)) + \
137 ((1 - (lf)) * \
138 ((uint)sizeof(t ## _key_t) + (uint)sizeof(t ## _ptr_t))))))
139#define XFS_BTREE_BLOCK_MINRECS(bsz,t,lf) \
140 (XFS_BTREE_BLOCK_MAXRECS(bsz,t,lf) / 2)
141
142/*
143 * Record, key, and pointer address calculation macros.
144 * Given block size, type prefix, block pointer, and index of requested entry
145 * (first entry numbered 1).
146 */
2c36dded 147#define XFS_BTREE_REC_ADDR(t,bb,i) \
1da177e4
LT
148 ((t ## _rec_t *)((char *)(bb) + sizeof(t ## _block_t) + \
149 ((i) - 1) * sizeof(t ## _rec_t)))
2c36dded 150#define XFS_BTREE_KEY_ADDR(t,bb,i) \
1da177e4
LT
151 ((t ## _key_t *)((char *)(bb) + sizeof(t ## _block_t) + \
152 ((i) - 1) * sizeof(t ## _key_t)))
2c36dded 153#define XFS_BTREE_PTR_ADDR(t,bb,i,mxr) \
1da177e4
LT
154 ((t ## _ptr_t *)((char *)(bb) + sizeof(t ## _block_t) + \
155 (mxr) * sizeof(t ## _key_t) + ((i) - 1) * sizeof(t ## _ptr_t)))
156
157#define XFS_BTREE_MAXLEVELS 8 /* max of all btrees */
158
561f7d17
CH
159struct xfs_btree_ops {
160 /* cursor operations */
161 struct xfs_btree_cur *(*dup_cursor)(struct xfs_btree_cur *);
162};
163
1da177e4
LT
164/*
165 * Btree cursor structure.
166 * This collects all information needed by the btree code in one place.
167 */
168typedef struct xfs_btree_cur
169{
170 struct xfs_trans *bc_tp; /* transaction we're in, if any */
171 struct xfs_mount *bc_mp; /* file system mount struct */
561f7d17 172 const struct xfs_btree_ops *bc_ops;
1da177e4 173 union {
16259e7d 174 xfs_alloc_rec_incore_t a;
1da177e4 175 xfs_bmbt_irec_t b;
61a25848 176 xfs_inobt_rec_incore_t i;
1da177e4
LT
177 } bc_rec; /* current insert/search record value */
178 struct xfs_buf *bc_bufs[XFS_BTREE_MAXLEVELS]; /* buf ptr per level */
179 int bc_ptrs[XFS_BTREE_MAXLEVELS]; /* key/record # */
180 __uint8_t bc_ra[XFS_BTREE_MAXLEVELS]; /* readahead bits */
181#define XFS_BTCUR_LEFTRA 1 /* left sibling has been read-ahead */
182#define XFS_BTCUR_RIGHTRA 2 /* right sibling has been read-ahead */
183 __uint8_t bc_nlevels; /* number of levels in the tree */
184 __uint8_t bc_blocklog; /* log2(blocksize) of btree blocks */
185 xfs_btnum_t bc_btnum; /* identifies which btree type */
186 union {
169d6227
CH
187 struct { /* needed for BNO, CNT, INO */
188 struct xfs_buf *agbp; /* agf/agi buffer pointer */
1da177e4
LT
189 xfs_agnumber_t agno; /* ag number */
190 } a;
191 struct { /* needed for BMAP */
192 struct xfs_inode *ip; /* pointer to our inode */
193 struct xfs_bmap_free *flist; /* list to free after */
194 xfs_fsblock_t firstblock; /* 1st blk allocated */
195 int allocated; /* count of alloced */
196 short forksize; /* fork's inode space */
197 char whichfork; /* data or attr fork */
198 char flags; /* flags */
199#define XFS_BTCUR_BPRV_WASDEL 1 /* was delayed */
200 } b;
1da177e4
LT
201 } bc_private; /* per-btree type data */
202} xfs_btree_cur_t;
203
204#define XFS_BTREE_NOERROR 0
205#define XFS_BTREE_ERROR 1
206
207/*
208 * Convert from buffer to btree block header.
209 */
a844f451
NS
210#define XFS_BUF_TO_BLOCK(bp) ((xfs_btree_block_t *)XFS_BUF_PTR(bp))
211#define XFS_BUF_TO_LBLOCK(bp) ((xfs_btree_lblock_t *)XFS_BUF_PTR(bp))
212#define XFS_BUF_TO_SBLOCK(bp) ((xfs_btree_sblock_t *)XFS_BUF_PTR(bp))
213
1da177e4
LT
214
215#ifdef __KERNEL__
216
217#ifdef DEBUG
218/*
219 * Debug routine: check that block header is ok.
220 */
221void
222xfs_btree_check_block(
223 xfs_btree_cur_t *cur, /* btree cursor */
224 xfs_btree_block_t *block, /* generic btree block pointer */
225 int level, /* level of the btree block */
226 struct xfs_buf *bp); /* buffer containing block, if any */
227
228/*
229 * Debug routine: check that keys are in the right order.
230 */
231void
232xfs_btree_check_key(
233 xfs_btnum_t btnum, /* btree identifier */
234 void *ak1, /* pointer to left (lower) key */
235 void *ak2); /* pointer to right (higher) key */
236
237/*
238 * Debug routine: check that records are in the right order.
239 */
240void
241xfs_btree_check_rec(
242 xfs_btnum_t btnum, /* btree identifier */
243 void *ar1, /* pointer to left (lower) record */
244 void *ar2); /* pointer to right (higher) record */
245#else
246#define xfs_btree_check_block(a,b,c,d)
247#define xfs_btree_check_key(a,b,c)
248#define xfs_btree_check_rec(a,b,c)
249#endif /* DEBUG */
250
251/*
252 * Checking routine: check that long form block header is ok.
253 */
254int /* error (0 or EFSCORRUPTED) */
255xfs_btree_check_lblock(
256 xfs_btree_cur_t *cur, /* btree cursor */
257 xfs_btree_lblock_t *block, /* btree long form block pointer */
258 int level, /* level of the btree block */
259 struct xfs_buf *bp); /* buffer containing block, if any */
260
261/*
262 * Checking routine: check that (long) pointer is ok.
263 */
264int /* error (0 or EFSCORRUPTED) */
265xfs_btree_check_lptr(
266 xfs_btree_cur_t *cur, /* btree cursor */
267 xfs_dfsbno_t ptr, /* btree block disk address */
268 int level); /* btree block level */
269
b113bcb8 270#define xfs_btree_check_lptr_disk(cur, ptr, level) \
576039cf 271 xfs_btree_check_lptr(cur, be64_to_cpu(ptr), level)
b113bcb8 272
1da177e4
LT
273/*
274 * Checking routine: check that short form block header is ok.
275 */
276int /* error (0 or EFSCORRUPTED) */
277xfs_btree_check_sblock(
278 xfs_btree_cur_t *cur, /* btree cursor */
279 xfs_btree_sblock_t *block, /* btree short form block pointer */
280 int level, /* level of the btree block */
281 struct xfs_buf *bp); /* buffer containing block */
282
283/*
284 * Checking routine: check that (short) pointer is ok.
285 */
286int /* error (0 or EFSCORRUPTED) */
287xfs_btree_check_sptr(
288 xfs_btree_cur_t *cur, /* btree cursor */
289 xfs_agblock_t ptr, /* btree block disk address */
290 int level); /* btree block level */
291
292/*
293 * Delete the btree cursor.
294 */
295void
296xfs_btree_del_cursor(
297 xfs_btree_cur_t *cur, /* btree cursor */
298 int error); /* del because of error */
299
300/*
301 * Duplicate the btree cursor.
302 * Allocate a new one, copy the record, re-get the buffers.
303 */
304int /* error */
305xfs_btree_dup_cursor(
306 xfs_btree_cur_t *cur, /* input cursor */
307 xfs_btree_cur_t **ncur);/* output cursor */
308
309/*
310 * Change the cursor to point to the first record in the current block
311 * at the given level. Other levels are unaffected.
312 */
313int /* success=1, failure=0 */
314xfs_btree_firstrec(
315 xfs_btree_cur_t *cur, /* btree cursor */
316 int level); /* level to change */
317
1da177e4
LT
318/*
319 * Get a buffer for the block, return it with no data read.
320 * Long-form addressing.
321 */
322struct xfs_buf * /* buffer for fsbno */
323xfs_btree_get_bufl(
324 struct xfs_mount *mp, /* file system mount point */
325 struct xfs_trans *tp, /* transaction pointer */
326 xfs_fsblock_t fsbno, /* file system block number */
327 uint lock); /* lock flags for get_buf */
328
329/*
330 * Get a buffer for the block, return it with no data read.
331 * Short-form addressing.
332 */
333struct xfs_buf * /* buffer for agno/agbno */
334xfs_btree_get_bufs(
335 struct xfs_mount *mp, /* file system mount point */
336 struct xfs_trans *tp, /* transaction pointer */
337 xfs_agnumber_t agno, /* allocation group number */
338 xfs_agblock_t agbno, /* allocation group block number */
339 uint lock); /* lock flags for get_buf */
340
1da177e4
LT
341/*
342 * Check for the cursor referring to the last block at the given level.
343 */
344int /* 1=is last block, 0=not last block */
345xfs_btree_islastblock(
346 xfs_btree_cur_t *cur, /* btree cursor */
347 int level); /* level to check */
348
349/*
350 * Change the cursor to point to the last record in the current block
351 * at the given level. Other levels are unaffected.
352 */
353int /* success=1, failure=0 */
354xfs_btree_lastrec(
355 xfs_btree_cur_t *cur, /* btree cursor */
356 int level); /* level to change */
357
358/*
359 * Compute first and last byte offsets for the fields given.
360 * Interprets the offsets table, which contains struct field offsets.
361 */
362void
363xfs_btree_offsets(
364 __int64_t fields, /* bitmask of fields */
365 const short *offsets,/* table of field offsets */
366 int nbits, /* number of bits to inspect */
367 int *first, /* output: first byte offset */
368 int *last); /* output: last byte offset */
369
370/*
371 * Get a buffer for the block, return it read in.
372 * Long-form addressing.
373 */
374int /* error */
375xfs_btree_read_bufl(
376 struct xfs_mount *mp, /* file system mount point */
377 struct xfs_trans *tp, /* transaction pointer */
378 xfs_fsblock_t fsbno, /* file system block number */
379 uint lock, /* lock flags for read_buf */
380 struct xfs_buf **bpp, /* buffer for fsbno */
381 int refval);/* ref count value for buffer */
382
383/*
384 * Get a buffer for the block, return it read in.
385 * Short-form addressing.
386 */
387int /* error */
388xfs_btree_read_bufs(
389 struct xfs_mount *mp, /* file system mount point */
390 struct xfs_trans *tp, /* transaction pointer */
391 xfs_agnumber_t agno, /* allocation group number */
392 xfs_agblock_t agbno, /* allocation group block number */
393 uint lock, /* lock flags for read_buf */
394 struct xfs_buf **bpp, /* buffer for agno/agbno */
395 int refval);/* ref count value for buffer */
396
397/*
398 * Read-ahead the block, don't wait for it, don't return a buffer.
399 * Long-form addressing.
400 */
401void /* error */
402xfs_btree_reada_bufl(
403 struct xfs_mount *mp, /* file system mount point */
404 xfs_fsblock_t fsbno, /* file system block number */
405 xfs_extlen_t count); /* count of filesystem blocks */
406
407/*
408 * Read-ahead the block, don't wait for it, don't return a buffer.
409 * Short-form addressing.
410 */
411void /* error */
412xfs_btree_reada_bufs(
413 struct xfs_mount *mp, /* file system mount point */
414 xfs_agnumber_t agno, /* allocation group number */
415 xfs_agblock_t agbno, /* allocation group block number */
416 xfs_extlen_t count); /* count of filesystem blocks */
417
418/*
419 * Read-ahead btree blocks, at the given level.
420 * Bits in lr are set from XFS_BTCUR_{LEFT,RIGHT}RA.
421 */
422int /* readahead block count */
423xfs_btree_readahead_core(
424 xfs_btree_cur_t *cur, /* btree cursor */
425 int lev, /* level in btree */
426 int lr); /* left/right bits */
427
428static inline int /* readahead block count */
429xfs_btree_readahead(
430 xfs_btree_cur_t *cur, /* btree cursor */
431 int lev, /* level in btree */
432 int lr) /* left/right bits */
433{
434 if ((cur->bc_ra[lev] | lr) == cur->bc_ra[lev])
435 return 0;
436
437 return xfs_btree_readahead_core(cur, lev, lr);
438}
439
440
441/*
442 * Set the buffer for level "lev" in the cursor to bp, releasing
443 * any previous buffer.
444 */
445void
446xfs_btree_setbuf(
447 xfs_btree_cur_t *cur, /* btree cursor */
448 int lev, /* level in btree */
449 struct xfs_buf *bp); /* new buffer to set */
450
451#endif /* __KERNEL__ */
452
453
454/*
455 * Min and max functions for extlen, agblock, fileoff, and filblks types.
456 */
54aa8e26
DC
457#define XFS_EXTLEN_MIN(a,b) min_t(xfs_extlen_t, (a), (b))
458#define XFS_EXTLEN_MAX(a,b) max_t(xfs_extlen_t, (a), (b))
459#define XFS_AGBLOCK_MIN(a,b) min_t(xfs_agblock_t, (a), (b))
460#define XFS_AGBLOCK_MAX(a,b) max_t(xfs_agblock_t, (a), (b))
461#define XFS_FILEOFF_MIN(a,b) min_t(xfs_fileoff_t, (a), (b))
462#define XFS_FILEOFF_MAX(a,b) max_t(xfs_fileoff_t, (a), (b))
463#define XFS_FILBLKS_MIN(a,b) min_t(xfs_filblks_t, (a), (b))
464#define XFS_FILBLKS_MAX(a,b) max_t(xfs_filblks_t, (a), (b))
a844f451 465
1da177e4
LT
466#define XFS_FSB_SANITY_CHECK(mp,fsb) \
467 (XFS_FSB_TO_AGNO(mp, fsb) < mp->m_sb.sb_agcount && \
a844f451 468 XFS_FSB_TO_AGBNO(mp, fsb) < mp->m_sb.sb_agblocks)
1da177e4
LT
469
470#endif /* __XFS_BTREE_H__ */