blob: a4555abb6622a5d2ac6c08ab0f585761d6ff4585 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000,2002-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_BMAP_BTREE_H__
19#define __XFS_BMAP_BTREE_H__
20
21#define XFS_BMAP_MAGIC 0x424d4150 /* 'BMAP' */
22
23struct xfs_btree_cur;
Christoph Hellwig136341b2008-10-30 17:11:40 +110024struct xfs_btree_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025struct xfs_mount;
26struct xfs_inode;
Christoph Hellwig561f7d12008-10-30 16:53:59 +110027struct xfs_trans;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29/*
30 * Bmap root header, on-disk form only.
31 */
Christoph Hellwig16259e72005-11-02 15:11:25 +110032typedef struct xfs_bmdr_block {
33 __be16 bb_level; /* 0 is a leaf */
34 __be16 bb_numrecs; /* current # of data records */
Linus Torvalds1da177e2005-04-16 15:20:36 -070035} xfs_bmdr_block_t;
36
37/*
38 * Bmap btree record and extent descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 * l0:63 is an extent flag (value 1 indicates non-normal).
40 * l0:9-62 are startoff.
41 * l0:0-8 and l1:21-63 are startblock.
42 * l1:0-20 are blockcount.
43 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define BMBT_EXNTFLAG_BITLEN 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#define BMBT_STARTOFF_BITLEN 54
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define BMBT_STARTBLOCK_BITLEN 52
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define BMBT_BLOCKCOUNT_BITLEN 21
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#define BMBT_USE_64 1
51
52typedef struct xfs_bmbt_rec_32
53{
54 __uint32_t l0, l1, l2, l3;
55} xfs_bmbt_rec_32_t;
56typedef struct xfs_bmbt_rec_64
57{
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +100058 __be64 l0, l1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059} xfs_bmbt_rec_64_t;
60
61typedef __uint64_t xfs_bmbt_rec_base_t; /* use this for casts */
62typedef xfs_bmbt_rec_64_t xfs_bmbt_rec_t, xfs_bmdr_rec_t;
63
Christoph Hellwiga6f64d42007-08-16 16:23:40 +100064typedef struct xfs_bmbt_rec_host {
65 __uint64_t l0, l1;
66} xfs_bmbt_rec_host_t;
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/*
69 * Values and macros for delayed-allocation startblock fields.
70 */
71#define STARTBLOCKVALBITS 17
72#define STARTBLOCKMASKBITS (15 + XFS_BIG_BLKNOS * 20)
73#define DSTARTBLOCKMASKBITS (15 + 20)
74#define STARTBLOCKMASK \
75 (((((xfs_fsblock_t)1) << STARTBLOCKMASKBITS) - 1) << STARTBLOCKVALBITS)
76#define DSTARTBLOCKMASK \
77 (((((xfs_dfsbno_t)1) << DSTARTBLOCKMASKBITS) - 1) << STARTBLOCKVALBITS)
Nathan Scotta844f452005-11-02 14:38:42 +110078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#define ISNULLSTARTBLOCK(x) isnullstartblock(x)
Nathan Scotta844f452005-11-02 14:38:42 +110080static inline int isnullstartblock(xfs_fsblock_t x)
81{
82 return ((x) & STARTBLOCKMASK) == STARTBLOCKMASK;
83}
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#define ISNULLDSTARTBLOCK(x) isnulldstartblock(x)
Nathan Scotta844f452005-11-02 14:38:42 +110086static inline int isnulldstartblock(xfs_dfsbno_t x)
87{
88 return ((x) & DSTARTBLOCKMASK) == DSTARTBLOCKMASK;
89}
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#define NULLSTARTBLOCK(k) nullstartblock(k)
Nathan Scotta844f452005-11-02 14:38:42 +110092static inline xfs_fsblock_t nullstartblock(int k)
93{
94 ASSERT(k < (1 << STARTBLOCKVALBITS));
95 return STARTBLOCKMASK | (k);
96}
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#define STARTBLOCKVAL(x) startblockval(x)
Nathan Scotta844f452005-11-02 14:38:42 +110099static inline xfs_filblks_t startblockval(xfs_fsblock_t x)
100{
101 return (xfs_filblks_t)((x) & ~STARTBLOCKMASK);
102}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104/*
105 * Possible extent formats.
106 */
107typedef enum {
108 XFS_EXTFMT_NOSTATE = 0,
109 XFS_EXTFMT_HASSTATE
110} xfs_exntfmt_t;
111
112/*
113 * Possible extent states.
114 */
115typedef enum {
116 XFS_EXT_NORM, XFS_EXT_UNWRITTEN,
117 XFS_EXT_DMAPI_OFFLINE, XFS_EXT_INVALID
118} xfs_exntst_t;
119
120/*
121 * Extent state and extent format macros.
122 */
Nathan Scotta844f452005-11-02 14:38:42 +1100123#define XFS_EXTFMT_INODE(x) \
Eric Sandeen62118702008-03-06 13:44:28 +1100124 (xfs_sb_version_hasextflgbit(&((x)->i_mount->m_sb)) ? \
Nathan Scotta844f452005-11-02 14:38:42 +1100125 XFS_EXTFMT_HASSTATE : XFS_EXTFMT_NOSTATE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126#define ISUNWRITTEN(x) ((x)->br_state == XFS_EXT_UNWRITTEN)
127
128/*
129 * Incore version of above.
130 */
131typedef struct xfs_bmbt_irec
132{
133 xfs_fileoff_t br_startoff; /* starting file offset */
134 xfs_fsblock_t br_startblock; /* starting block number */
135 xfs_filblks_t br_blockcount; /* number of blocks */
136 xfs_exntst_t br_state; /* extent state */
137} xfs_bmbt_irec_t;
138
139/*
140 * Key structure for non-leaf levels of the tree.
141 */
Christoph Hellwig8801bb92006-09-28 10:58:17 +1000142typedef struct xfs_bmbt_key {
143 __be64 br_startoff; /* starting file offset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144} xfs_bmbt_key_t, xfs_bmdr_key_t;
145
Christoph Hellwig397b5202006-09-28 10:57:52 +1000146/* btree pointer type */
147typedef __be64 xfs_bmbt_ptr_t, xfs_bmdr_ptr_t;
148
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100149/*
150 * Btree block header size depends on a superblock flag.
151 *
152 * (not quite yet, but soon)
153 */
154#define XFS_BMBT_BLOCK_LEN(mp) XFS_BTREE_LBLOCK_LEN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Christoph Hellwig136341b2008-10-30 17:11:40 +1100156#define XFS_BMBT_REC_ADDR(mp, block, index) \
157 ((xfs_bmbt_rec_t *) \
158 ((char *)(block) + \
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100159 XFS_BMBT_BLOCK_LEN(mp) + \
Christoph Hellwig136341b2008-10-30 17:11:40 +1100160 ((index) - 1) * sizeof(xfs_bmbt_rec_t)))
Eric Sandeen2c36dde2007-02-10 18:37:33 +1100161
Christoph Hellwig136341b2008-10-30 17:11:40 +1100162#define XFS_BMBT_KEY_ADDR(mp, block, index) \
163 ((xfs_bmbt_key_t *) \
164 ((char *)(block) + \
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100165 XFS_BMBT_BLOCK_LEN(mp) + \
Christoph Hellwig136341b2008-10-30 17:11:40 +1100166 ((index) - 1) * sizeof(xfs_bmbt_key_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Christoph Hellwig136341b2008-10-30 17:11:40 +1100168#define XFS_BMBT_PTR_ADDR(mp, block, index, maxrecs) \
169 ((xfs_bmbt_ptr_t *) \
170 ((char *)(block) + \
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100171 XFS_BMBT_BLOCK_LEN(mp) + \
Christoph Hellwig136341b2008-10-30 17:11:40 +1100172 (maxrecs) * sizeof(xfs_bmbt_key_t) + \
173 ((index) - 1) * sizeof(xfs_bmbt_ptr_t)))
Eric Sandeen2c36dde2007-02-10 18:37:33 +1100174
Christoph Hellwig136341b2008-10-30 17:11:40 +1100175#define XFS_BMDR_REC_ADDR(block, index) \
176 ((xfs_bmdr_rec_t *) \
177 ((char *)(block) + \
178 sizeof(struct xfs_bmdr_block) + \
179 ((index) - 1) * sizeof(xfs_bmdr_rec_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Christoph Hellwig136341b2008-10-30 17:11:40 +1100181#define XFS_BMDR_KEY_ADDR(block, index) \
182 ((xfs_bmdr_key_t *) \
183 ((char *)(block) + \
184 sizeof(struct xfs_bmdr_block) + \
185 ((index) - 1) * sizeof(xfs_bmdr_key_t)))
186
187#define XFS_BMDR_PTR_ADDR(block, index, maxrecs) \
188 ((xfs_bmdr_ptr_t *) \
189 ((char *)(block) + \
190 sizeof(struct xfs_bmdr_block) + \
191 (maxrecs) * sizeof(xfs_bmdr_key_t) + \
192 ((index) - 1) * sizeof(xfs_bmdr_ptr_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194/*
195 * These are to be used when we know the size of the block and
196 * we don't have a cursor.
197 */
Christoph Hellwig136341b2008-10-30 17:11:40 +1100198#define XFS_BMAP_BROOT_PTR_ADDR(mp, bb, i, sz) \
199 XFS_BMBT_PTR_ADDR(mp, bb, i, xfs_bmbt_maxrecs(mp, sz, 0))
Nathan Scotta844f452005-11-02 14:38:42 +1100200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201#define XFS_BMAP_BROOT_SPACE_CALC(nrecs) \
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100202 (int)(XFS_BTREE_LBLOCK_LEN + \
Nathan Scotta844f452005-11-02 14:38:42 +1100203 ((nrecs) * (sizeof(xfs_bmbt_key_t) + sizeof(xfs_bmbt_ptr_t))))
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205#define XFS_BMAP_BROOT_SPACE(bb) \
Christoph Hellwig16259e72005-11-02 15:11:25 +1100206 (XFS_BMAP_BROOT_SPACE_CALC(be16_to_cpu((bb)->bb_numrecs)))
Nathan Scotta844f452005-11-02 14:38:42 +1100207#define XFS_BMDR_SPACE_CALC(nrecs) \
208 (int)(sizeof(xfs_bmdr_block_t) + \
209 ((nrecs) * (sizeof(xfs_bmbt_key_t) + sizeof(xfs_bmbt_ptr_t))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211/*
212 * Maximum number of bmap btree levels.
213 */
Nathan Scotta844f452005-11-02 14:38:42 +1100214#define XFS_BM_MAXLEVELS(mp,w) ((mp)->m_bm_maxlevels[(w)])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216/*
217 * Prototypes for xfs_bmap.c to call.
218 */
Christoph Hellwig60197e82008-10-30 17:11:19 +1100219extern void xfs_bmdr_to_bmbt(struct xfs_mount *, xfs_bmdr_block_t *, int,
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100220 struct xfs_btree_block *, int);
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000221extern void xfs_bmbt_get_all(xfs_bmbt_rec_host_t *r, xfs_bmbt_irec_t *s);
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000222extern xfs_filblks_t xfs_bmbt_get_blockcount(xfs_bmbt_rec_host_t *r);
223extern xfs_fsblock_t xfs_bmbt_get_startblock(xfs_bmbt_rec_host_t *r);
224extern xfs_fileoff_t xfs_bmbt_get_startoff(xfs_bmbt_rec_host_t *r);
225extern xfs_exntst_t xfs_bmbt_get_state(xfs_bmbt_rec_host_t *r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Nathan Scotta844f452005-11-02 14:38:42 +1100227extern void xfs_bmbt_disk_get_all(xfs_bmbt_rec_t *r, xfs_bmbt_irec_t *s);
Nathan Scotta844f452005-11-02 14:38:42 +1100228extern xfs_filblks_t xfs_bmbt_disk_get_blockcount(xfs_bmbt_rec_t *r);
Nathan Scotta844f452005-11-02 14:38:42 +1100229extern xfs_fileoff_t xfs_bmbt_disk_get_startoff(xfs_bmbt_rec_t *r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000231extern void xfs_bmbt_set_all(xfs_bmbt_rec_host_t *r, xfs_bmbt_irec_t *s);
232extern void xfs_bmbt_set_allf(xfs_bmbt_rec_host_t *r, xfs_fileoff_t o,
Nathan Scotta844f452005-11-02 14:38:42 +1100233 xfs_fsblock_t b, xfs_filblks_t c, xfs_exntst_t v);
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000234extern void xfs_bmbt_set_blockcount(xfs_bmbt_rec_host_t *r, xfs_filblks_t v);
235extern void xfs_bmbt_set_startblock(xfs_bmbt_rec_host_t *r, xfs_fsblock_t v);
236extern void xfs_bmbt_set_startoff(xfs_bmbt_rec_host_t *r, xfs_fileoff_t v);
237extern void xfs_bmbt_set_state(xfs_bmbt_rec_host_t *r, xfs_exntst_t v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Nathan Scotta844f452005-11-02 14:38:42 +1100239extern void xfs_bmbt_disk_set_all(xfs_bmbt_rec_t *r, xfs_bmbt_irec_t *s);
240extern void xfs_bmbt_disk_set_allf(xfs_bmbt_rec_t *r, xfs_fileoff_t o,
241 xfs_fsblock_t b, xfs_filblks_t c, xfs_exntst_t v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100243extern void xfs_bmbt_to_bmdr(struct xfs_mount *, struct xfs_btree_block *, int,
Christoph Hellwig60197e82008-10-30 17:11:19 +1100244 xfs_bmdr_block_t *, int);
245
246extern int xfs_bmbt_get_maxrecs(struct xfs_btree_cur *, int level);
247extern int xfs_bmdr_maxrecs(struct xfs_mount *, int blocklen, int leaf);
248extern int xfs_bmbt_maxrecs(struct xfs_mount *, int blocklen, int leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100250extern struct xfs_btree_cur *xfs_bmbt_init_cursor(struct xfs_mount *,
251 struct xfs_trans *, struct xfs_inode *, int);
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254#endif /* __XFS_BMAP_BTREE_H__ */