blob: 835be2a84ca1bd57caf5f552a505cc6e3dc33daa [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;
24struct xfs_btree_lblock;
25struct 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
149/* btree block header type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150typedef struct xfs_btree_lblock xfs_bmbt_block_t;
151
Nathan Scotta844f452005-11-02 14:38:42 +1100152#define XFS_BUF_TO_BMBT_BLOCK(bp) ((xfs_bmbt_block_t *)XFS_BUF_PTR(bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Eric Sandeen2c36dde2007-02-10 18:37:33 +1100154#define XFS_BMAP_REC_DADDR(bb,i,cur) (XFS_BTREE_REC_ADDR(xfs_bmbt, bb, i))
155
156#define XFS_BMAP_REC_IADDR(bb,i,cur) (XFS_BTREE_REC_ADDR(xfs_bmbt, bb, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Nathan Scotta844f452005-11-02 14:38:42 +1100158#define XFS_BMAP_KEY_DADDR(bb,i,cur) \
Eric Sandeen2c36dde2007-02-10 18:37:33 +1100159 (XFS_BTREE_KEY_ADDR(xfs_bmbt, bb, i))
160
Nathan Scotta844f452005-11-02 14:38:42 +1100161#define XFS_BMAP_KEY_IADDR(bb,i,cur) \
Eric Sandeen2c36dde2007-02-10 18:37:33 +1100162 (XFS_BTREE_KEY_ADDR(xfs_bmbt, bb, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Nathan Scotta844f452005-11-02 14:38:42 +1100164#define XFS_BMAP_PTR_DADDR(bb,i,cur) \
Eric Sandeen2c36dde2007-02-10 18:37:33 +1100165 (XFS_BTREE_PTR_ADDR(xfs_bmbt, bb, i, XFS_BMAP_BLOCK_DMAXRECS( \
Christoph Hellwig16259e72005-11-02 15:11:25 +1100166 be16_to_cpu((bb)->bb_level), cur)))
Nathan Scotta844f452005-11-02 14:38:42 +1100167#define XFS_BMAP_PTR_IADDR(bb,i,cur) \
Christoph Hellwig60197e82008-10-30 17:11:19 +1100168 (XFS_BTREE_PTR_ADDR(xfs_bmbt, bb, i, xfs_bmbt_get_maxrecs(cur, \
169 be16_to_cpu((bb)->bb_level))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171/*
172 * These are to be used when we know the size of the block and
173 * we don't have a cursor.
174 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175#define XFS_BMAP_BROOT_REC_ADDR(bb,i,sz) \
Eric Sandeen2c36dde2007-02-10 18:37:33 +1100176 (XFS_BTREE_REC_ADDR(xfs_bmbt,bb,i))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#define XFS_BMAP_BROOT_KEY_ADDR(bb,i,sz) \
Eric Sandeen2c36dde2007-02-10 18:37:33 +1100178 (XFS_BTREE_KEY_ADDR(xfs_bmbt,bb,i))
Christoph Hellwig60197e82008-10-30 17:11:19 +1100179#define XFS_BMAP_BROOT_PTR_ADDR(mp, bb,i,sz) \
180 (XFS_BTREE_PTR_ADDR(xfs_bmbt,bb,i,xfs_bmbt_maxrecs(mp, sz, 0)))
Nathan Scotta844f452005-11-02 14:38:42 +1100181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182#define XFS_BMAP_BROOT_SPACE_CALC(nrecs) \
Nathan Scotta844f452005-11-02 14:38:42 +1100183 (int)(sizeof(xfs_bmbt_block_t) + \
184 ((nrecs) * (sizeof(xfs_bmbt_key_t) + sizeof(xfs_bmbt_ptr_t))))
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186#define XFS_BMAP_BROOT_SPACE(bb) \
Christoph Hellwig16259e72005-11-02 15:11:25 +1100187 (XFS_BMAP_BROOT_SPACE_CALC(be16_to_cpu((bb)->bb_numrecs)))
Nathan Scotta844f452005-11-02 14:38:42 +1100188#define XFS_BMDR_SPACE_CALC(nrecs) \
189 (int)(sizeof(xfs_bmdr_block_t) + \
190 ((nrecs) * (sizeof(xfs_bmbt_key_t) + sizeof(xfs_bmbt_ptr_t))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192/*
193 * Maximum number of bmap btree levels.
194 */
Nathan Scotta844f452005-11-02 14:38:42 +1100195#define XFS_BM_MAXLEVELS(mp,w) ((mp)->m_bm_maxlevels[(w)])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Nathan Scotta844f452005-11-02 14:38:42 +1100197#define XFS_BMAP_SANITY_CHECK(mp,bb,level) \
Christoph Hellwig16259e72005-11-02 15:11:25 +1100198 (be32_to_cpu((bb)->bb_magic) == XFS_BMAP_MAGIC && \
199 be16_to_cpu((bb)->bb_level) == level && \
200 be16_to_cpu((bb)->bb_numrecs) > 0 && \
201 be16_to_cpu((bb)->bb_numrecs) <= (mp)->m_bmap_dmxr[(level) != 0])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204/*
205 * Prototypes for xfs_bmap.c to call.
206 */
Christoph Hellwig60197e82008-10-30 17:11:19 +1100207extern void xfs_bmdr_to_bmbt(struct xfs_mount *, xfs_bmdr_block_t *, int,
208 xfs_bmbt_block_t *, int);
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000209extern void xfs_bmbt_get_all(xfs_bmbt_rec_host_t *r, xfs_bmbt_irec_t *s);
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000210extern xfs_filblks_t xfs_bmbt_get_blockcount(xfs_bmbt_rec_host_t *r);
211extern xfs_fsblock_t xfs_bmbt_get_startblock(xfs_bmbt_rec_host_t *r);
212extern xfs_fileoff_t xfs_bmbt_get_startoff(xfs_bmbt_rec_host_t *r);
213extern xfs_exntst_t xfs_bmbt_get_state(xfs_bmbt_rec_host_t *r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Nathan Scotta844f452005-11-02 14:38:42 +1100215extern void xfs_bmbt_disk_get_all(xfs_bmbt_rec_t *r, xfs_bmbt_irec_t *s);
Nathan Scotta844f452005-11-02 14:38:42 +1100216extern xfs_filblks_t xfs_bmbt_disk_get_blockcount(xfs_bmbt_rec_t *r);
Nathan Scotta844f452005-11-02 14:38:42 +1100217extern xfs_fileoff_t xfs_bmbt_disk_get_startoff(xfs_bmbt_rec_t *r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000219extern void xfs_bmbt_set_all(xfs_bmbt_rec_host_t *r, xfs_bmbt_irec_t *s);
220extern void xfs_bmbt_set_allf(xfs_bmbt_rec_host_t *r, xfs_fileoff_t o,
Nathan Scotta844f452005-11-02 14:38:42 +1100221 xfs_fsblock_t b, xfs_filblks_t c, xfs_exntst_t v);
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000222extern void xfs_bmbt_set_blockcount(xfs_bmbt_rec_host_t *r, xfs_filblks_t v);
223extern void xfs_bmbt_set_startblock(xfs_bmbt_rec_host_t *r, xfs_fsblock_t v);
224extern void xfs_bmbt_set_startoff(xfs_bmbt_rec_host_t *r, xfs_fileoff_t v);
225extern void xfs_bmbt_set_state(xfs_bmbt_rec_host_t *r, xfs_exntst_t v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Nathan Scotta844f452005-11-02 14:38:42 +1100227extern void xfs_bmbt_disk_set_all(xfs_bmbt_rec_t *r, xfs_bmbt_irec_t *s);
228extern void xfs_bmbt_disk_set_allf(xfs_bmbt_rec_t *r, xfs_fileoff_t o,
229 xfs_fsblock_t b, xfs_filblks_t c, xfs_exntst_t v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Christoph Hellwig60197e82008-10-30 17:11:19 +1100231extern void xfs_bmbt_to_bmdr(struct xfs_mount *, xfs_bmbt_block_t *, int,
232 xfs_bmdr_block_t *, int);
233
234extern int xfs_bmbt_get_maxrecs(struct xfs_btree_cur *, int level);
235extern int xfs_bmdr_maxrecs(struct xfs_mount *, int blocklen, int leaf);
236extern int xfs_bmbt_maxrecs(struct xfs_mount *, int blocklen, int leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100238extern struct xfs_btree_cur *xfs_bmbt_init_cursor(struct xfs_mount *,
239 struct xfs_trans *, struct xfs_inode *, int);
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242#endif /* __XFS_BMAP_BTREE_H__ */