]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/xfs/xfs_btree.h
xfs: check magic numbers in dir3 leaf verifier first
[mirror_ubuntu-artful-kernel.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/*
7cc95a82
CH
42 * Generic btree header.
43 *
9da096fd 44 * This is a combination of the actual format used on disk for short and long
ee1a47ab
CH
45 * format btrees. The first three fields are shared by both format, but the
46 * pointers are different and should be used with care.
7cc95a82 47 *
ee1a47ab
CH
48 * To get the size of the actual short or long form headers please use the size
49 * macros below. Never use sizeof(xfs_btree_block).
50 *
51 * The blkno, crc, lsn, owner and uuid fields are only available in filesystems
52 * with the crc feature bit, and all accesses to them must be conditional on
53 * that flag.
1da177e4 54 */
7cc95a82 55struct xfs_btree_block {
16259e7d
CH
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 */
16259e7d
CH
59 union {
60 struct {
61 __be32 bb_leftsib;
62 __be32 bb_rightsib;
ee1a47ab
CH
63
64 __be64 bb_blkno;
65 __be64 bb_lsn;
66 uuid_t bb_uuid;
67 __be32 bb_owner;
68 __le32 bb_crc;
16259e7d 69 } s; /* short form pointers */
1da177e4 70 struct {
16259e7d
CH
71 __be64 bb_leftsib;
72 __be64 bb_rightsib;
ee1a47ab
CH
73
74 __be64 bb_blkno;
75 __be64 bb_lsn;
76 uuid_t bb_uuid;
77 __be64 bb_owner;
78 __le32 bb_crc;
79 __be32 bb_pad; /* padding for alignment */
16259e7d
CH
80 } l; /* long form pointers */
81 } bb_u; /* rest */
7cc95a82
CH
82};
83
84#define XFS_BTREE_SBLOCK_LEN 16 /* size of a short form block */
85#define XFS_BTREE_LBLOCK_LEN 24 /* size of a long form block */
86
ee1a47ab
CH
87/* sizes of CRC enabled btree blocks */
88#define XFS_BTREE_SBLOCK_CRC_LEN (XFS_BTREE_SBLOCK_LEN + 40)
89#define XFS_BTREE_LBLOCK_CRC_LEN (XFS_BTREE_LBLOCK_LEN + 48)
90
ee1a47ab
CH
91#define XFS_BTREE_SBLOCK_CRC_OFF \
92 offsetof(struct xfs_btree_block, bb_u.s.bb_crc)
93#define XFS_BTREE_LBLOCK_CRC_OFF \
94 offsetof(struct xfs_btree_block, bb_u.l.bb_crc)
95
de227dd9
CH
96/*
97 * Generic key, ptr and record wrapper structures.
98 *
99 * These are disk format structures, and are converted where necessary
100 * by the btree specific code that needs to interpret them.
101 */
102union xfs_btree_ptr {
103 __be32 s; /* short form ptr */
104 __be64 l; /* long form ptr */
105};
106
107union xfs_btree_key {
108 xfs_bmbt_key_t bmbt;
109 xfs_bmdr_key_t bmbr; /* bmbt root block */
110 xfs_alloc_key_t alloc;
111 xfs_inobt_key_t inobt;
112};
113
114union xfs_btree_rec {
115 xfs_bmbt_rec_t bmbt;
116 xfs_bmdr_rec_t bmbr; /* bmbt root block */
117 xfs_alloc_rec_t alloc;
118 xfs_inobt_rec_t inobt;
119};
120
1da177e4
LT
121/*
122 * For logging record fields.
123 */
124#define XFS_BB_MAGIC 0x01
125#define XFS_BB_LEVEL 0x02
126#define XFS_BB_NUMRECS 0x04
127#define XFS_BB_LEFTSIB 0x08
128#define XFS_BB_RIGHTSIB 0x10
ee1a47ab 129#define XFS_BB_BLKNO 0x20
1da177e4
LT
130#define XFS_BB_NUM_BITS 5
131#define XFS_BB_ALL_BITS ((1 << XFS_BB_NUM_BITS) - 1)
ee1a47ab
CH
132#define XFS_BB_NUM_BITS_CRC 8
133#define XFS_BB_ALL_BITS_CRC ((1 << XFS_BB_NUM_BITS_CRC) - 1)
1da177e4 134
854929f0
DC
135/*
136 * Generic stats interface
137 */
138#define __XFS_BTREE_STATS_INC(type, stat) \
139 XFS_STATS_INC(xs_ ## type ## _2_ ## stat)
140#define XFS_BTREE_STATS_INC(cur, stat) \
141do { \
142 switch (cur->bc_btnum) { \
143 case XFS_BTNUM_BNO: __XFS_BTREE_STATS_INC(abtb, stat); break; \
144 case XFS_BTNUM_CNT: __XFS_BTREE_STATS_INC(abtc, stat); break; \
145 case XFS_BTNUM_BMAP: __XFS_BTREE_STATS_INC(bmbt, stat); break; \
146 case XFS_BTNUM_INO: __XFS_BTREE_STATS_INC(ibt, stat); break; \
147 case XFS_BTNUM_MAX: ASSERT(0); /* fucking gcc */ ; break; \
148 } \
149} while (0)
150
151#define __XFS_BTREE_STATS_ADD(type, stat, val) \
152 XFS_STATS_ADD(xs_ ## type ## _2_ ## stat, val)
153#define XFS_BTREE_STATS_ADD(cur, stat, val) \
154do { \
155 switch (cur->bc_btnum) { \
156 case XFS_BTNUM_BNO: __XFS_BTREE_STATS_ADD(abtb, stat, val); break; \
157 case XFS_BTNUM_CNT: __XFS_BTREE_STATS_ADD(abtc, stat, val); break; \
158 case XFS_BTNUM_BMAP: __XFS_BTREE_STATS_ADD(bmbt, stat, val); break; \
159 case XFS_BTNUM_INO: __XFS_BTREE_STATS_ADD(ibt, stat, val); break; \
160 case XFS_BTNUM_MAX: ASSERT(0); /* fucking gcc */ ; break; \
161 } \
162} while (0)
1da177e4 163
1da177e4
LT
164#define XFS_BTREE_MAXLEVELS 8 /* max of all btrees */
165
561f7d17 166struct xfs_btree_ops {
65f1eaea
CH
167 /* size of the key and record structures */
168 size_t key_len;
169 size_t rec_len;
170
561f7d17
CH
171 /* cursor operations */
172 struct xfs_btree_cur *(*dup_cursor)(struct xfs_btree_cur *);
4b22a571
CH
173 void (*update_cursor)(struct xfs_btree_cur *src,
174 struct xfs_btree_cur *dst);
8c4ed633 175
344207ce
CH
176 /* update btree root pointer */
177 void (*set_root)(struct xfs_btree_cur *cur,
c0e59e1a 178 union xfs_btree_ptr *nptr, int level_change);
344207ce 179
f5eb8e7c
CH
180 /* block allocation / freeing */
181 int (*alloc_block)(struct xfs_btree_cur *cur,
182 union xfs_btree_ptr *start_bno,
183 union xfs_btree_ptr *new_bno,
184 int length, int *stat);
d4b3a4b7 185 int (*free_block)(struct xfs_btree_cur *cur, struct xfs_buf *bp);
f5eb8e7c 186
278d0ca1
CH
187 /* update last record information */
188 void (*update_lastrec)(struct xfs_btree_cur *cur,
189 struct xfs_btree_block *block,
190 union xfs_btree_rec *rec,
191 int ptr, int reason);
192
ce5e42db 193 /* records in block/level */
91cca5df 194 int (*get_minrecs)(struct xfs_btree_cur *cur, int level);
ce5e42db
CH
195 int (*get_maxrecs)(struct xfs_btree_cur *cur, int level);
196
4b22a571
CH
197 /* records on disk. Matter for the root in inode case. */
198 int (*get_dmaxrecs)(struct xfs_btree_cur *cur, int level);
199
fe033cc8
CH
200 /* init values of btree structures */
201 void (*init_key_from_rec)(union xfs_btree_key *key,
202 union xfs_btree_rec *rec);
4b22a571
CH
203 void (*init_rec_from_key)(union xfs_btree_key *key,
204 union xfs_btree_rec *rec);
205 void (*init_rec_from_cur)(struct xfs_btree_cur *cur,
206 union xfs_btree_rec *rec);
fe033cc8
CH
207 void (*init_ptr_from_cur)(struct xfs_btree_cur *cur,
208 union xfs_btree_ptr *ptr);
209
210 /* difference between key value and cursor value */
211 __int64_t (*key_diff)(struct xfs_btree_cur *cur,
212 union xfs_btree_key *key);
213
1813dd64 214 const struct xfs_buf_ops *buf_ops;
b0f539de 215
742ae1e3 216#if defined(DEBUG) || defined(XFS_WARN)
4a26e66e
CH
217 /* check that k1 is lower than k2 */
218 int (*keys_inorder)(struct xfs_btree_cur *cur,
219 union xfs_btree_key *k1,
220 union xfs_btree_key *k2);
221
222 /* check that r1 is lower than r2 */
223 int (*recs_inorder)(struct xfs_btree_cur *cur,
224 union xfs_btree_rec *r1,
225 union xfs_btree_rec *r2);
226#endif
561f7d17
CH
227};
228
278d0ca1
CH
229/*
230 * Reasons for the update_lastrec method to be called.
231 */
232#define LASTREC_UPDATE 0
4b22a571 233#define LASTREC_INSREC 1
91cca5df 234#define LASTREC_DELREC 2
278d0ca1
CH
235
236
1da177e4
LT
237/*
238 * Btree cursor structure.
239 * This collects all information needed by the btree code in one place.
240 */
241typedef struct xfs_btree_cur
242{
243 struct xfs_trans *bc_tp; /* transaction we're in, if any */
244 struct xfs_mount *bc_mp; /* file system mount struct */
561f7d17 245 const struct xfs_btree_ops *bc_ops;
8186e517 246 uint bc_flags; /* btree features - below */
1da177e4 247 union {
16259e7d 248 xfs_alloc_rec_incore_t a;
1da177e4 249 xfs_bmbt_irec_t b;
61a25848 250 xfs_inobt_rec_incore_t i;
1da177e4
LT
251 } bc_rec; /* current insert/search record value */
252 struct xfs_buf *bc_bufs[XFS_BTREE_MAXLEVELS]; /* buf ptr per level */
253 int bc_ptrs[XFS_BTREE_MAXLEVELS]; /* key/record # */
254 __uint8_t bc_ra[XFS_BTREE_MAXLEVELS]; /* readahead bits */
255#define XFS_BTCUR_LEFTRA 1 /* left sibling has been read-ahead */
256#define XFS_BTCUR_RIGHTRA 2 /* right sibling has been read-ahead */
257 __uint8_t bc_nlevels; /* number of levels in the tree */
258 __uint8_t bc_blocklog; /* log2(blocksize) of btree blocks */
259 xfs_btnum_t bc_btnum; /* identifies which btree type */
260 union {
169d6227
CH
261 struct { /* needed for BNO, CNT, INO */
262 struct xfs_buf *agbp; /* agf/agi buffer pointer */
1da177e4
LT
263 xfs_agnumber_t agno; /* ag number */
264 } a;
265 struct { /* needed for BMAP */
266 struct xfs_inode *ip; /* pointer to our inode */
267 struct xfs_bmap_free *flist; /* list to free after */
268 xfs_fsblock_t firstblock; /* 1st blk allocated */
269 int allocated; /* count of alloced */
270 short forksize; /* fork's inode space */
271 char whichfork; /* data or attr fork */
272 char flags; /* flags */
273#define XFS_BTCUR_BPRV_WASDEL 1 /* was delayed */
274 } b;
1da177e4
LT
275 } bc_private; /* per-btree type data */
276} xfs_btree_cur_t;
277
8186e517 278/* cursor flags */
e99ab90d 279#define XFS_BTREE_LONG_PTRS (1<<0) /* pointers are 64bits long */
8186e517 280#define XFS_BTREE_ROOT_IN_INODE (1<<1) /* root may be variable size */
278d0ca1 281#define XFS_BTREE_LASTREC_UPDATE (1<<2) /* track last rec externally */
ee1a47ab 282#define XFS_BTREE_CRC_BLOCKS (1<<3) /* uses extended btree blocks */
8186e517
CH
283
284
1da177e4
LT
285#define XFS_BTREE_NOERROR 0
286#define XFS_BTREE_ERROR 1
287
288/*
289 * Convert from buffer to btree block header.
290 */
62926044 291#define XFS_BUF_TO_BLOCK(bp) ((struct xfs_btree_block *)((bp)->b_addr))
1da177e4 292
1da177e4 293
1da177e4 294/*
a23f6ef8 295 * Check that block header is ok.
1da177e4 296 */
a23f6ef8
CH
297int
298xfs_btree_check_block(
299 struct xfs_btree_cur *cur, /* btree cursor */
300 struct xfs_btree_block *block, /* generic btree block pointer */
1da177e4
LT
301 int level, /* level of the btree block */
302 struct xfs_buf *bp); /* buffer containing block, if any */
303
304/*
a23f6ef8 305 * Check that (long) pointer is ok.
1da177e4
LT
306 */
307int /* error (0 or EFSCORRUPTED) */
308xfs_btree_check_lptr(
a23f6ef8 309 struct xfs_btree_cur *cur, /* btree cursor */
1da177e4
LT
310 xfs_dfsbno_t ptr, /* btree block disk address */
311 int level); /* btree block level */
312
1da177e4
LT
313/*
314 * Delete the btree cursor.
315 */
316void
317xfs_btree_del_cursor(
318 xfs_btree_cur_t *cur, /* btree cursor */
319 int error); /* del because of error */
320
321/*
322 * Duplicate the btree cursor.
323 * Allocate a new one, copy the record, re-get the buffers.
324 */
325int /* error */
326xfs_btree_dup_cursor(
327 xfs_btree_cur_t *cur, /* input cursor */
328 xfs_btree_cur_t **ncur);/* output cursor */
329
1da177e4
LT
330/*
331 * Get a buffer for the block, return it with no data read.
332 * Long-form addressing.
333 */
334struct xfs_buf * /* buffer for fsbno */
335xfs_btree_get_bufl(
336 struct xfs_mount *mp, /* file system mount point */
337 struct xfs_trans *tp, /* transaction pointer */
338 xfs_fsblock_t fsbno, /* file system block number */
339 uint lock); /* lock flags for get_buf */
340
341/*
342 * Get a buffer for the block, return it with no data read.
343 * Short-form addressing.
344 */
345struct xfs_buf * /* buffer for agno/agbno */
346xfs_btree_get_bufs(
347 struct xfs_mount *mp, /* file system mount point */
348 struct xfs_trans *tp, /* transaction pointer */
349 xfs_agnumber_t agno, /* allocation group number */
350 xfs_agblock_t agbno, /* allocation group block number */
351 uint lock); /* lock flags for get_buf */
352
1da177e4
LT
353/*
354 * Check for the cursor referring to the last block at the given level.
355 */
356int /* 1=is last block, 0=not last block */
357xfs_btree_islastblock(
358 xfs_btree_cur_t *cur, /* btree cursor */
359 int level); /* level to check */
360
1da177e4
LT
361/*
362 * Compute first and last byte offsets for the fields given.
363 * Interprets the offsets table, which contains struct field offsets.
364 */
365void
366xfs_btree_offsets(
367 __int64_t fields, /* bitmask of fields */
368 const short *offsets,/* table of field offsets */
369 int nbits, /* number of bits to inspect */
370 int *first, /* output: first byte offset */
371 int *last); /* output: last byte offset */
372
373/*
374 * Get a buffer for the block, return it read in.
375 * Long-form addressing.
376 */
377int /* error */
378xfs_btree_read_bufl(
379 struct xfs_mount *mp, /* file system mount point */
380 struct xfs_trans *tp, /* transaction pointer */
381 xfs_fsblock_t fsbno, /* file system block number */
382 uint lock, /* lock flags for read_buf */
383 struct xfs_buf **bpp, /* buffer for fsbno */
3d3e6f64 384 int refval, /* ref count value for buffer */
1813dd64 385 const struct xfs_buf_ops *ops);
1da177e4 386
1da177e4
LT
387/*
388 * Read-ahead the block, don't wait for it, don't return a buffer.
389 * Long-form addressing.
390 */
391void /* error */
392xfs_btree_reada_bufl(
393 struct xfs_mount *mp, /* file system mount point */
394 xfs_fsblock_t fsbno, /* file system block number */
3d3e6f64 395 xfs_extlen_t count, /* count of filesystem blocks */
1813dd64 396 const struct xfs_buf_ops *ops);
1da177e4
LT
397
398/*
399 * Read-ahead the block, don't wait for it, don't return a buffer.
400 * Short-form addressing.
401 */
402void /* error */
403xfs_btree_reada_bufs(
404 struct xfs_mount *mp, /* file system mount point */
405 xfs_agnumber_t agno, /* allocation group number */
406 xfs_agblock_t agbno, /* allocation group block number */
3d3e6f64 407 xfs_extlen_t count, /* count of filesystem blocks */
1813dd64 408 const struct xfs_buf_ops *ops);
1da177e4 409
b64f3a39
DC
410/*
411 * Initialise a new btree block header
412 */
413void
414xfs_btree_init_block(
415 struct xfs_mount *mp,
416 struct xfs_buf *bp,
417 __u32 magic,
418 __u16 level,
419 __u16 numrecs,
ee1a47ab 420 __u64 owner,
b64f3a39 421 unsigned int flags);
65f1eaea 422
ee1a47ab
CH
423void
424xfs_btree_init_block_int(
425 struct xfs_mount *mp,
426 struct xfs_btree_block *buf,
427 xfs_daddr_t blkno,
428 __u32 magic,
429 __u16 level,
430 __u16 numrecs,
431 __u64 owner,
432 unsigned int flags);
433
637aa50f
CH
434/*
435 * Common btree core entry points.
436 */
437int xfs_btree_increment(struct xfs_btree_cur *, int, int *);
8df4da4a 438int xfs_btree_decrement(struct xfs_btree_cur *, int, int *);
fe033cc8 439int xfs_btree_lookup(struct xfs_btree_cur *, xfs_lookup_t, int *);
278d0ca1 440int xfs_btree_update(struct xfs_btree_cur *, union xfs_btree_rec *);
ea77b0a6 441int xfs_btree_new_iroot(struct xfs_btree_cur *, int *, int *);
4b22a571 442int xfs_btree_insert(struct xfs_btree_cur *, int *);
91cca5df 443int xfs_btree_delete(struct xfs_btree_cur *, int *);
8cc938fe 444int xfs_btree_get_rec(struct xfs_btree_cur *, union xfs_btree_rec **, int *);
637aa50f 445
ee1a47ab
CH
446/*
447 * btree block CRC helpers
448 */
449void xfs_btree_lblock_calc_crc(struct xfs_buf *);
450bool xfs_btree_lblock_verify_crc(struct xfs_buf *);
451void xfs_btree_sblock_calc_crc(struct xfs_buf *);
452bool xfs_btree_sblock_verify_crc(struct xfs_buf *);
453
fd6bcc5b
CH
454/*
455 * Internal btree helpers also used by xfs_bmap.c.
456 */
457void xfs_btree_log_block(struct xfs_btree_cur *, struct xfs_buf *, int);
458void xfs_btree_log_recs(struct xfs_btree_cur *, struct xfs_buf *, int, int);
459
65f1eaea
CH
460/*
461 * Helpers.
462 */
637aa50f
CH
463static inline int xfs_btree_get_numrecs(struct xfs_btree_block *block)
464{
465 return be16_to_cpu(block->bb_numrecs);
466}
467
9eaead51
CH
468static inline void xfs_btree_set_numrecs(struct xfs_btree_block *block,
469 __uint16_t numrecs)
470{
471 block->bb_numrecs = cpu_to_be16(numrecs);
472}
473
65f1eaea
CH
474static inline int xfs_btree_get_level(struct xfs_btree_block *block)
475{
476 return be16_to_cpu(block->bb_level);
477}
478
1da177e4
LT
479
480/*
481 * Min and max functions for extlen, agblock, fileoff, and filblks types.
482 */
54aa8e26
DC
483#define XFS_EXTLEN_MIN(a,b) min_t(xfs_extlen_t, (a), (b))
484#define XFS_EXTLEN_MAX(a,b) max_t(xfs_extlen_t, (a), (b))
485#define XFS_AGBLOCK_MIN(a,b) min_t(xfs_agblock_t, (a), (b))
486#define XFS_AGBLOCK_MAX(a,b) max_t(xfs_agblock_t, (a), (b))
487#define XFS_FILEOFF_MIN(a,b) min_t(xfs_fileoff_t, (a), (b))
488#define XFS_FILEOFF_MAX(a,b) max_t(xfs_fileoff_t, (a), (b))
489#define XFS_FILBLKS_MIN(a,b) min_t(xfs_filblks_t, (a), (b))
490#define XFS_FILBLKS_MAX(a,b) max_t(xfs_filblks_t, (a), (b))
a844f451 491
1da177e4
LT
492#define XFS_FSB_SANITY_CHECK(mp,fsb) \
493 (XFS_FSB_TO_AGNO(mp, fsb) < mp->m_sb.sb_agcount && \
a844f451 494 XFS_FSB_TO_AGBNO(mp, fsb) < mp->m_sb.sb_agblocks)
1da177e4 495
c84470dd
CH
496/*
497 * Trace hooks. Currently not implemented as they need to be ported
498 * over to the generic tracing functionality, which is some effort.
499 *
500 * i,j = integer (32 bit)
501 * b = btree block buffer (xfs_buf_t)
502 * p = btree ptr
503 * r = btree record
504 * k = btree key
505 */
506#define XFS_BTREE_TRACE_ARGBI(c, b, i)
507#define XFS_BTREE_TRACE_ARGBII(c, b, i, j)
508#define XFS_BTREE_TRACE_ARGI(c, i)
509#define XFS_BTREE_TRACE_ARGIPK(c, i, p, s)
510#define XFS_BTREE_TRACE_ARGIPR(c, i, p, r)
511#define XFS_BTREE_TRACE_ARGIK(c, i, k)
512#define XFS_BTREE_TRACE_ARGR(c, r)
513#define XFS_BTREE_TRACE_CURSOR(c, t)
514
1da177e4 515#endif /* __XFS_BTREE_H__ */