blob: e097e60400d8d1bedd887565e2b8c1029ac25420 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2001,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 */
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
David Chinnera8272ce2007-11-23 16:28:09 +110027extern kmem_zone_t *xfs_btree_cur_zone;
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029/*
Christoph Hellwigde227dd2008-10-30 16:54:12 +110030 * Generic key, ptr and record wrapper structures.
31 *
32 * These are disk format structures, and are converted where necessary
33 * by the btree specific code that needs to interpret them.
34 */
35union xfs_btree_ptr {
36 __be32 s; /* short form ptr */
37 __be64 l; /* long form ptr */
38};
39
40union xfs_btree_key {
41 xfs_bmbt_key_t bmbt;
42 xfs_bmdr_key_t bmbr; /* bmbt root block */
43 xfs_alloc_key_t alloc;
44 xfs_inobt_key_t inobt;
45};
46
47union xfs_btree_rec {
48 xfs_bmbt_rec_t bmbt;
49 xfs_bmdr_rec_t bmbr; /* bmbt root block */
50 xfs_alloc_rec_t alloc;
51 xfs_inobt_rec_t inobt;
52};
53
54/*
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110055 * This nonsense is to make -wlint happy.
56 */
57#define XFS_LOOKUP_EQ ((xfs_lookup_t)XFS_LOOKUP_EQi)
58#define XFS_LOOKUP_LE ((xfs_lookup_t)XFS_LOOKUP_LEi)
59#define XFS_LOOKUP_GE ((xfs_lookup_t)XFS_LOOKUP_GEi)
60
61#define XFS_BTNUM_BNO ((xfs_btnum_t)XFS_BTNUM_BNOi)
62#define XFS_BTNUM_CNT ((xfs_btnum_t)XFS_BTNUM_CNTi)
63#define XFS_BTNUM_BMAP ((xfs_btnum_t)XFS_BTNUM_BMAPi)
64#define XFS_BTNUM_INO ((xfs_btnum_t)XFS_BTNUM_INOi)
Brian Fosteraafc3c22014-04-24 16:00:52 +100065#define XFS_BTNUM_FINO ((xfs_btnum_t)XFS_BTNUM_FINOi)
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110066
67/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 * For logging record fields.
69 */
Dave Chinner21b5c972013-08-30 10:23:44 +100070#define XFS_BB_MAGIC (1 << 0)
71#define XFS_BB_LEVEL (1 << 1)
72#define XFS_BB_NUMRECS (1 << 2)
73#define XFS_BB_LEFTSIB (1 << 3)
74#define XFS_BB_RIGHTSIB (1 << 4)
75#define XFS_BB_BLKNO (1 << 5)
76#define XFS_BB_LSN (1 << 6)
77#define XFS_BB_UUID (1 << 7)
78#define XFS_BB_OWNER (1 << 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#define XFS_BB_NUM_BITS 5
80#define XFS_BB_ALL_BITS ((1 << XFS_BB_NUM_BITS) - 1)
Dave Chinner21b5c972013-08-30 10:23:44 +100081#define XFS_BB_NUM_BITS_CRC 9
Christoph Hellwigee1a47a2013-04-21 14:53:46 -050082#define XFS_BB_ALL_BITS_CRC ((1 << XFS_BB_NUM_BITS_CRC) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84/*
David Chinner854929f2008-10-30 16:55:03 +110085 * Generic stats interface
86 */
Bill O'Donnellff6d6af2015-10-12 18:21:22 +110087#define __XFS_BTREE_STATS_INC(mp, type, stat) \
88 XFS_STATS_INC(mp, xs_ ## type ## _2_ ## stat)
89#define XFS_BTREE_STATS_INC(cur, stat) \
David Chinner854929f2008-10-30 16:55:03 +110090do { \
Bill O'Donnellff6d6af2015-10-12 18:21:22 +110091 struct xfs_mount *__mp = cur->bc_mp; \
David Chinner854929f2008-10-30 16:55:03 +110092 switch (cur->bc_btnum) { \
Bill O'Donnellff6d6af2015-10-12 18:21:22 +110093 case XFS_BTNUM_BNO: __XFS_BTREE_STATS_INC(__mp, abtb, stat); break; \
94 case XFS_BTNUM_CNT: __XFS_BTREE_STATS_INC(__mp, abtc, stat); break; \
95 case XFS_BTNUM_BMAP: __XFS_BTREE_STATS_INC(__mp, bmbt, stat); break; \
96 case XFS_BTNUM_INO: __XFS_BTREE_STATS_INC(__mp, ibt, stat); break; \
97 case XFS_BTNUM_FINO: __XFS_BTREE_STATS_INC(__mp, fibt, stat); break; \
David Chinner854929f2008-10-30 16:55:03 +110098 case XFS_BTNUM_MAX: ASSERT(0); /* fucking gcc */ ; break; \
99 } \
100} while (0)
101
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100102#define __XFS_BTREE_STATS_ADD(mp, type, stat, val) \
103 XFS_STATS_ADD(mp, xs_ ## type ## _2_ ## stat, val)
David Chinner854929f2008-10-30 16:55:03 +1100104#define XFS_BTREE_STATS_ADD(cur, stat, val) \
105do { \
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100106 struct xfs_mount *__mp = cur->bc_mp; \
David Chinner854929f2008-10-30 16:55:03 +1100107 switch (cur->bc_btnum) { \
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100108 case XFS_BTNUM_BNO: \
109 __XFS_BTREE_STATS_ADD(__mp, abtb, stat, val); break; \
110 case XFS_BTNUM_CNT: \
111 __XFS_BTREE_STATS_ADD(__mp, abtc, stat, val); break; \
112 case XFS_BTNUM_BMAP: \
113 __XFS_BTREE_STATS_ADD(__mp, bmbt, stat, val); break; \
114 case XFS_BTNUM_INO: \
115 __XFS_BTREE_STATS_ADD(__mp, ibt, stat, val); break; \
116 case XFS_BTNUM_FINO: \
117 __XFS_BTREE_STATS_ADD(__mp, fibt, stat, val); break; \
118 case XFS_BTNUM_MAX: ASSERT(0); /* fucking gcc */ ; break; \
David Chinner854929f2008-10-30 16:55:03 +1100119 } \
120} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#define XFS_BTREE_MAXLEVELS 8 /* max of all btrees */
123
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100124struct xfs_btree_ops {
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100125 /* size of the key and record structures */
126 size_t key_len;
127 size_t rec_len;
128
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100129 /* cursor operations */
130 struct xfs_btree_cur *(*dup_cursor)(struct xfs_btree_cur *);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100131 void (*update_cursor)(struct xfs_btree_cur *src,
132 struct xfs_btree_cur *dst);
Christoph Hellwig8c4ed632008-10-30 16:55:13 +1100133
Christoph Hellwig344207c2008-10-30 16:57:16 +1100134 /* update btree root pointer */
135 void (*set_root)(struct xfs_btree_cur *cur,
Christoph Hellwigc0e59e12010-09-07 23:34:07 +0000136 union xfs_btree_ptr *nptr, int level_change);
Christoph Hellwig344207c2008-10-30 16:57:16 +1100137
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100138 /* block allocation / freeing */
139 int (*alloc_block)(struct xfs_btree_cur *cur,
140 union xfs_btree_ptr *start_bno,
141 union xfs_btree_ptr *new_bno,
Eric Sandeen6f8950c2014-04-14 19:03:53 +1000142 int *stat);
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100143 int (*free_block)(struct xfs_btree_cur *cur, struct xfs_buf *bp);
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100144
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100145 /* update last record information */
146 void (*update_lastrec)(struct xfs_btree_cur *cur,
147 struct xfs_btree_block *block,
148 union xfs_btree_rec *rec,
149 int ptr, int reason);
150
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100151 /* records in block/level */
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100152 int (*get_minrecs)(struct xfs_btree_cur *cur, int level);
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100153 int (*get_maxrecs)(struct xfs_btree_cur *cur, int level);
154
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100155 /* records on disk. Matter for the root in inode case. */
156 int (*get_dmaxrecs)(struct xfs_btree_cur *cur, int level);
157
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100158 /* init values of btree structures */
159 void (*init_key_from_rec)(union xfs_btree_key *key,
160 union xfs_btree_rec *rec);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100161 void (*init_rec_from_cur)(struct xfs_btree_cur *cur,
162 union xfs_btree_rec *rec);
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100163 void (*init_ptr_from_cur)(struct xfs_btree_cur *cur,
164 union xfs_btree_ptr *ptr);
165
166 /* difference between key value and cursor value */
167 __int64_t (*key_diff)(struct xfs_btree_cur *cur,
168 union xfs_btree_key *key);
169
Dave Chinner1813dd62012-11-14 17:54:40 +1100170 const struct xfs_buf_ops *buf_ops;
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100171
Dave Chinner742ae1e2013-04-30 21:39:34 +1000172#if defined(DEBUG) || defined(XFS_WARN)
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100173 /* check that k1 is lower than k2 */
174 int (*keys_inorder)(struct xfs_btree_cur *cur,
175 union xfs_btree_key *k1,
176 union xfs_btree_key *k2);
177
178 /* check that r1 is lower than r2 */
179 int (*recs_inorder)(struct xfs_btree_cur *cur,
180 union xfs_btree_rec *r1,
181 union xfs_btree_rec *r2);
182#endif
Darrick J. Wong70b22652016-08-03 11:03:38 +1000183
184 /* derive the low & high keys from the records in a leaf block */
185 void (*get_leaf_keys)(struct xfs_btree_cur *cur,
186 struct xfs_btree_block *block,
187 union xfs_btree_key *key);
188
189 /* derive the low & high keys from the keys in a node block */
190 void (*get_node_keys)(struct xfs_btree_cur *cur,
191 struct xfs_btree_block *block,
192 union xfs_btree_key *key);
193
194 /* update the parent keys of given btree level */
195 int (*update_keys)(struct xfs_btree_cur *cur, int level);
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100196};
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198/*
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100199 * Reasons for the update_lastrec method to be called.
200 */
201#define LASTREC_UPDATE 0
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100202#define LASTREC_INSREC 1
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100203#define LASTREC_DELREC 2
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100204
205
206/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 * Btree cursor structure.
208 * This collects all information needed by the btree code in one place.
209 */
210typedef struct xfs_btree_cur
211{
212 struct xfs_trans *bc_tp; /* transaction we're in, if any */
213 struct xfs_mount *bc_mp; /* file system mount struct */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100214 const struct xfs_btree_ops *bc_ops;
Christoph Hellwig8186e512008-10-30 16:54:22 +1100215 uint bc_flags; /* btree features - below */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 union {
Christoph Hellwig16259e72005-11-02 15:11:25 +1100217 xfs_alloc_rec_incore_t a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 xfs_bmbt_irec_t b;
Christoph Hellwig61a25842006-09-28 10:57:04 +1000219 xfs_inobt_rec_incore_t i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 } bc_rec; /* current insert/search record value */
221 struct xfs_buf *bc_bufs[XFS_BTREE_MAXLEVELS]; /* buf ptr per level */
222 int bc_ptrs[XFS_BTREE_MAXLEVELS]; /* key/record # */
223 __uint8_t bc_ra[XFS_BTREE_MAXLEVELS]; /* readahead bits */
224#define XFS_BTCUR_LEFTRA 1 /* left sibling has been read-ahead */
225#define XFS_BTCUR_RIGHTRA 2 /* right sibling has been read-ahead */
226 __uint8_t bc_nlevels; /* number of levels in the tree */
227 __uint8_t bc_blocklog; /* log2(blocksize) of btree blocks */
228 xfs_btnum_t bc_btnum; /* identifies which btree type */
229 union {
Christoph Hellwig169d6222008-08-13 16:25:27 +1000230 struct { /* needed for BNO, CNT, INO */
231 struct xfs_buf *agbp; /* agf/agi buffer pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 xfs_agnumber_t agno; /* ag number */
233 } a;
234 struct { /* needed for BMAP */
235 struct xfs_inode *ip; /* pointer to our inode */
236 struct xfs_bmap_free *flist; /* list to free after */
237 xfs_fsblock_t firstblock; /* 1st blk allocated */
238 int allocated; /* count of alloced */
239 short forksize; /* fork's inode space */
240 char whichfork; /* data or attr fork */
241 char flags; /* flags */
242#define XFS_BTCUR_BPRV_WASDEL 1 /* was delayed */
243 } b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 } bc_private; /* per-btree type data */
245} xfs_btree_cur_t;
246
Christoph Hellwig8186e512008-10-30 16:54:22 +1100247/* cursor flags */
Christoph Hellwige99ab902008-10-30 16:54:33 +1100248#define XFS_BTREE_LONG_PTRS (1<<0) /* pointers are 64bits long */
Christoph Hellwig8186e512008-10-30 16:54:22 +1100249#define XFS_BTREE_ROOT_IN_INODE (1<<1) /* root may be variable size */
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100250#define XFS_BTREE_LASTREC_UPDATE (1<<2) /* track last rec externally */
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500251#define XFS_BTREE_CRC_BLOCKS (1<<3) /* uses extended btree blocks */
Christoph Hellwig8186e512008-10-30 16:54:22 +1100252
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254#define XFS_BTREE_NOERROR 0
255#define XFS_BTREE_ERROR 1
256
257/*
258 * Convert from buffer to btree block header.
259 */
Chandra Seetharaman62926042011-07-22 23:40:15 +0000260#define XFS_BUF_TO_BLOCK(bp) ((struct xfs_btree_block *)((bp)->b_addr))
Nathan Scotta844f452005-11-02 14:38:42 +1100261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263/*
Christoph Hellwiga23f6ef2008-10-30 16:54:53 +1100264 * Check that block header is ok.
265 */
266int
267xfs_btree_check_block(
268 struct xfs_btree_cur *cur, /* btree cursor */
269 struct xfs_btree_block *block, /* generic btree block pointer */
270 int level, /* level of the btree block */
271 struct xfs_buf *bp); /* buffer containing block, if any */
272
273/*
274 * Check that (long) pointer is ok.
275 */
276int /* error (0 or EFSCORRUPTED) */
277xfs_btree_check_lptr(
278 struct xfs_btree_cur *cur, /* btree cursor */
Christoph Hellwigd5cf09b2014-07-30 09:12:05 +1000279 xfs_fsblock_t ptr, /* btree block disk address */
Christoph Hellwiga23f6ef2008-10-30 16:54:53 +1100280 int level); /* btree block level */
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 * Delete the btree cursor.
284 */
285void
286xfs_btree_del_cursor(
287 xfs_btree_cur_t *cur, /* btree cursor */
288 int error); /* del because of error */
289
290/*
291 * Duplicate the btree cursor.
292 * Allocate a new one, copy the record, re-get the buffers.
293 */
294int /* error */
295xfs_btree_dup_cursor(
296 xfs_btree_cur_t *cur, /* input cursor */
297 xfs_btree_cur_t **ncur);/* output cursor */
298
299/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 * Get a buffer for the block, return it with no data read.
301 * Long-form addressing.
302 */
303struct xfs_buf * /* buffer for fsbno */
304xfs_btree_get_bufl(
305 struct xfs_mount *mp, /* file system mount point */
306 struct xfs_trans *tp, /* transaction pointer */
307 xfs_fsblock_t fsbno, /* file system block number */
308 uint lock); /* lock flags for get_buf */
309
310/*
311 * Get a buffer for the block, return it with no data read.
312 * Short-form addressing.
313 */
314struct xfs_buf * /* buffer for agno/agbno */
315xfs_btree_get_bufs(
316 struct xfs_mount *mp, /* file system mount point */
317 struct xfs_trans *tp, /* transaction pointer */
318 xfs_agnumber_t agno, /* allocation group number */
319 xfs_agblock_t agbno, /* allocation group block number */
320 uint lock); /* lock flags for get_buf */
321
322/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 * Check for the cursor referring to the last block at the given level.
324 */
325int /* 1=is last block, 0=not last block */
326xfs_btree_islastblock(
327 xfs_btree_cur_t *cur, /* btree cursor */
328 int level); /* level to check */
329
330/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 * Compute first and last byte offsets for the fields given.
332 * Interprets the offsets table, which contains struct field offsets.
333 */
334void
335xfs_btree_offsets(
336 __int64_t fields, /* bitmask of fields */
337 const short *offsets,/* table of field offsets */
338 int nbits, /* number of bits to inspect */
339 int *first, /* output: first byte offset */
340 int *last); /* output: last byte offset */
341
342/*
343 * Get a buffer for the block, return it read in.
344 * Long-form addressing.
345 */
346int /* error */
347xfs_btree_read_bufl(
348 struct xfs_mount *mp, /* file system mount point */
349 struct xfs_trans *tp, /* transaction pointer */
350 xfs_fsblock_t fsbno, /* file system block number */
351 uint lock, /* lock flags for read_buf */
352 struct xfs_buf **bpp, /* buffer for fsbno */
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100353 int refval, /* ref count value for buffer */
Dave Chinner1813dd62012-11-14 17:54:40 +1100354 const struct xfs_buf_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 * Read-ahead the block, don't wait for it, don't return a buffer.
358 * Long-form addressing.
359 */
360void /* error */
361xfs_btree_reada_bufl(
362 struct xfs_mount *mp, /* file system mount point */
363 xfs_fsblock_t fsbno, /* file system block number */
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100364 xfs_extlen_t count, /* count of filesystem blocks */
Dave Chinner1813dd62012-11-14 17:54:40 +1100365 const struct xfs_buf_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367/*
368 * Read-ahead the block, don't wait for it, don't return a buffer.
369 * Short-form addressing.
370 */
371void /* error */
372xfs_btree_reada_bufs(
373 struct xfs_mount *mp, /* file system mount point */
374 xfs_agnumber_t agno, /* allocation group number */
375 xfs_agblock_t agbno, /* allocation group block number */
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100376 xfs_extlen_t count, /* count of filesystem blocks */
Dave Chinner1813dd62012-11-14 17:54:40 +1100377 const struct xfs_buf_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Dave Chinnerb64f3a32012-11-13 16:40:27 -0600379/*
380 * Initialise a new btree block header
381 */
382void
383xfs_btree_init_block(
384 struct xfs_mount *mp,
385 struct xfs_buf *bp,
386 __u32 magic,
387 __u16 level,
388 __u16 numrecs,
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500389 __u64 owner,
Dave Chinnerb64f3a32012-11-13 16:40:27 -0600390 unsigned int flags);
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100391
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500392void
393xfs_btree_init_block_int(
394 struct xfs_mount *mp,
395 struct xfs_btree_block *buf,
396 xfs_daddr_t blkno,
397 __u32 magic,
398 __u16 level,
399 __u16 numrecs,
400 __u64 owner,
401 unsigned int flags);
402
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100403/*
Christoph Hellwig637aa502008-10-30 16:55:45 +1100404 * Common btree core entry points.
405 */
406int xfs_btree_increment(struct xfs_btree_cur *, int, int *);
Christoph Hellwig8df4da42008-10-30 16:55:58 +1100407int xfs_btree_decrement(struct xfs_btree_cur *, int, int *);
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100408int xfs_btree_lookup(struct xfs_btree_cur *, xfs_lookup_t, int *);
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100409int xfs_btree_update(struct xfs_btree_cur *, union xfs_btree_rec *);
Christoph Hellwigea77b0a2008-10-30 16:57:28 +1100410int xfs_btree_new_iroot(struct xfs_btree_cur *, int *, int *);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100411int xfs_btree_insert(struct xfs_btree_cur *, int *);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100412int xfs_btree_delete(struct xfs_btree_cur *, int *);
Christoph Hellwig8cc938f2008-10-30 16:58:11 +1100413int xfs_btree_get_rec(struct xfs_btree_cur *, union xfs_btree_rec **, int *);
Dave Chinner638f44162013-08-30 10:23:45 +1000414int xfs_btree_change_owner(struct xfs_btree_cur *cur, __uint64_t new_owner,
415 struct list_head *buffer_list);
Christoph Hellwig637aa502008-10-30 16:55:45 +1100416
417/*
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500418 * btree block CRC helpers
419 */
420void xfs_btree_lblock_calc_crc(struct xfs_buf *);
421bool xfs_btree_lblock_verify_crc(struct xfs_buf *);
422void xfs_btree_sblock_calc_crc(struct xfs_buf *);
423bool xfs_btree_sblock_verify_crc(struct xfs_buf *);
424
425/*
Christoph Hellwigfd6bcc5b2008-10-30 16:58:21 +1100426 * Internal btree helpers also used by xfs_bmap.c.
427 */
428void xfs_btree_log_block(struct xfs_btree_cur *, struct xfs_buf *, int);
429void xfs_btree_log_recs(struct xfs_btree_cur *, struct xfs_buf *, int, int);
430
431/*
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100432 * Helpers.
433 */
Christoph Hellwig637aa502008-10-30 16:55:45 +1100434static inline int xfs_btree_get_numrecs(struct xfs_btree_block *block)
435{
436 return be16_to_cpu(block->bb_numrecs);
437}
438
Christoph Hellwig9eaead52008-10-30 16:56:43 +1100439static inline void xfs_btree_set_numrecs(struct xfs_btree_block *block,
440 __uint16_t numrecs)
441{
442 block->bb_numrecs = cpu_to_be16(numrecs);
443}
444
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100445static inline int xfs_btree_get_level(struct xfs_btree_block *block)
446{
447 return be16_to_cpu(block->bb_level);
448}
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451/*
452 * Min and max functions for extlen, agblock, fileoff, and filblks types.
453 */
David Chinner54aa8e22007-06-28 16:43:39 +1000454#define XFS_EXTLEN_MIN(a,b) min_t(xfs_extlen_t, (a), (b))
455#define XFS_EXTLEN_MAX(a,b) max_t(xfs_extlen_t, (a), (b))
456#define XFS_AGBLOCK_MIN(a,b) min_t(xfs_agblock_t, (a), (b))
457#define XFS_AGBLOCK_MAX(a,b) max_t(xfs_agblock_t, (a), (b))
458#define XFS_FILEOFF_MIN(a,b) min_t(xfs_fileoff_t, (a), (b))
459#define XFS_FILEOFF_MAX(a,b) max_t(xfs_fileoff_t, (a), (b))
460#define XFS_FILBLKS_MIN(a,b) min_t(xfs_filblks_t, (a), (b))
461#define XFS_FILBLKS_MAX(a,b) max_t(xfs_filblks_t, (a), (b))
Nathan Scotta844f452005-11-02 14:38:42 +1100462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463#define XFS_FSB_SANITY_CHECK(mp,fsb) \
464 (XFS_FSB_TO_AGNO(mp, fsb) < mp->m_sb.sb_agcount && \
Nathan Scotta844f452005-11-02 14:38:42 +1100465 XFS_FSB_TO_AGBNO(mp, fsb) < mp->m_sb.sb_agblocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Christoph Hellwigc84470d2011-07-13 13:43:50 +0200467/*
468 * Trace hooks. Currently not implemented as they need to be ported
469 * over to the generic tracing functionality, which is some effort.
470 *
471 * i,j = integer (32 bit)
472 * b = btree block buffer (xfs_buf_t)
473 * p = btree ptr
474 * r = btree record
475 * k = btree key
476 */
477#define XFS_BTREE_TRACE_ARGBI(c, b, i)
478#define XFS_BTREE_TRACE_ARGBII(c, b, i, j)
479#define XFS_BTREE_TRACE_ARGI(c, i)
480#define XFS_BTREE_TRACE_ARGIPK(c, i, p, s)
481#define XFS_BTREE_TRACE_ARGIPR(c, i, p, r)
482#define XFS_BTREE_TRACE_ARGIK(c, i, k)
483#define XFS_BTREE_TRACE_ARGR(c, r)
484#define XFS_BTREE_TRACE_CURSOR(c, t)
485
Darrick J. Wongc5ab1312016-01-04 16:13:21 +1100486bool xfs_btree_sblock_v5hdr_verify(struct xfs_buf *bp);
487bool xfs_btree_sblock_verify(struct xfs_buf *bp, unsigned int max_recs);
Darrick J. Wong19b54ee2016-06-21 11:53:28 +1000488uint xfs_btree_compute_maxlevels(struct xfs_mount *mp, uint *limits,
489 unsigned long len);
Darrick J. Wongc5ab1312016-01-04 16:13:21 +1100490
Darrick J. Wong70b22652016-08-03 11:03:38 +1000491void xfs_btree_get_leaf_keys(struct xfs_btree_cur *cur,
492 struct xfs_btree_block *block, union xfs_btree_key *key);
493void xfs_btree_get_node_keys(struct xfs_btree_cur *cur,
494 struct xfs_btree_block *block, union xfs_btree_key *key);
495int xfs_btree_update_keys(struct xfs_btree_cur *cur, int level);
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497#endif /* __XFS_BTREE_H__ */