blob: ec5044a92b7045df9dcb32ab7d75e55961f14011 [file] [log] [blame]
Christoph Hellwig57926642011-07-13 13:43:48 +02001/*
2 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11003 * Copyright (c) 2013 Red Hat, Inc.
Christoph Hellwig57926642011-07-13 13:43:48 +02004 * All Rights Reserved.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it would be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19#ifndef __XFS_DIR2_FORMAT_H__
20#define __XFS_DIR2_FORMAT_H__
21
22/*
23 * Directory version 2.
24 *
25 * There are 4 possible formats:
26 * - shortform - embedded into the inode
27 * - single block - data with embedded leaf at the end
28 * - multiple data blocks, single leaf+freeindex block
29 * - data blocks, node and leaf blocks (btree), freeindex blocks
30 *
31 * Note: many node blocks structures and constants are shared with the attr
32 * code and defined in xfs_da_btree.h.
33 */
34
35#define XFS_DIR2_BLOCK_MAGIC 0x58443242 /* XD2B: single block dirs */
36#define XFS_DIR2_DATA_MAGIC 0x58443244 /* XD2D: multiblock dirs */
37#define XFS_DIR2_FREE_MAGIC 0x58443246 /* XD2F: free index blocks */
38
39/*
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110040 * Directory Version 3 With CRCs.
41 *
42 * The tree formats are the same as for version 2 directories. The difference
43 * is in the block header and dirent formats. In many cases the v3 structures
44 * use v2 definitions as they are no different and this makes code sharing much
45 * easier.
46 *
47 * Also, the xfs_dir3_*() functions handle both v2 and v3 formats - if the
48 * format is v2 then they switch to the existing v2 code, or the format is v3
49 * they implement the v3 functionality. This means the existing dir2 is a mix of
50 * xfs_dir2/xfs_dir3 calls and functions. The xfs_dir3 functions are called
51 * where there is a difference in the formats, otherwise the code is unchanged.
52 *
53 * Where it is possible, the code decides what to do based on the magic numbers
54 * in the blocks rather than feature bits in the superblock. This means the code
55 * is as independent of the external XFS code as possible as doesn't require
56 * passing struct xfs_mount pointers into places where it isn't really
57 * necessary.
58 *
59 * Version 3 includes:
60 *
61 * - a larger block header for CRC and identification purposes and so the
62 * offsets of all the structures inside the blocks are different.
63 *
64 * - new magic numbers to be able to detect the v2/v3 types on the fly.
65 */
66
67#define XFS_DIR3_BLOCK_MAGIC 0x58444233 /* XDB3: single block dirs */
68#define XFS_DIR3_DATA_MAGIC 0x58444433 /* XDD3: multiblock dirs */
Dave Chinnercbc8adf2013-04-03 16:11:21 +110069#define XFS_DIR3_FREE_MAGIC 0x58444633 /* XDF3: free index blocks */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110070
71/*
Christoph Hellwig57926642011-07-13 13:43:48 +020072 * Byte offset in data block and shortform entry.
73 */
74typedef __uint16_t xfs_dir2_data_off_t;
75#define NULLDATAOFF 0xffffU
76typedef uint xfs_dir2_data_aoff_t; /* argument form */
77
78/*
79 * Normalized offset (in a data block) of the entry, really xfs_dir2_data_off_t.
80 * Only need 16 bits, this is the byte offset into the single block form.
81 */
82typedef struct { __uint8_t i[2]; } __arch_pack xfs_dir2_sf_off_t;
83
84/*
85 * Offset in data space of a data entry.
86 */
87typedef __uint32_t xfs_dir2_dataptr_t;
88#define XFS_DIR2_MAX_DATAPTR ((xfs_dir2_dataptr_t)0xffffffff)
89#define XFS_DIR2_NULL_DATAPTR ((xfs_dir2_dataptr_t)0)
90
91/*
92 * Byte offset in a directory.
93 */
94typedef xfs_off_t xfs_dir2_off_t;
95
96/*
97 * Directory block number (logical dirblk in file)
98 */
99typedef __uint32_t xfs_dir2_db_t;
100
101/*
102 * Inode number stored as 8 8-bit values.
103 */
104typedef struct { __uint8_t i[8]; } xfs_dir2_ino8_t;
105
106/*
107 * Inode number stored as 4 8-bit values.
108 * Works a lot of the time, when all the inode numbers in a directory
109 * fit in 32 bits.
110 */
111typedef struct { __uint8_t i[4]; } xfs_dir2_ino4_t;
112
113typedef union {
114 xfs_dir2_ino8_t i8;
115 xfs_dir2_ino4_t i4;
116} xfs_dir2_inou_t;
117#define XFS_DIR2_MAX_SHORT_INUM ((xfs_ino_t)0xffffffffULL)
118
119/*
120 * Directory layout when stored internal to an inode.
121 *
122 * Small directories are packed as tightly as possible so as to fit into the
123 * literal area of the inode. These "shortform" directories consist of a
124 * single xfs_dir2_sf_hdr header followed by zero or more xfs_dir2_sf_entry
125 * structures. Due the different inode number storage size and the variable
126 * length name field in the xfs_dir2_sf_entry all these structure are
127 * variable length, and the accessors in this file should be used to iterate
128 * over them.
129 */
130typedef struct xfs_dir2_sf_hdr {
131 __uint8_t count; /* count of entries */
132 __uint8_t i8count; /* count of 8-byte inode #s */
133 xfs_dir2_inou_t parent; /* parent dir inode number */
134} __arch_pack xfs_dir2_sf_hdr_t;
135
136typedef struct xfs_dir2_sf_entry {
137 __u8 namelen; /* actual name length */
138 xfs_dir2_sf_off_t offset; /* saved offset */
139 __u8 name[]; /* name, variable size */
140 /*
141 * A xfs_dir2_ino8_t or xfs_dir2_ino4_t follows here, at a
142 * variable offset after the name.
143 */
144} __arch_pack xfs_dir2_sf_entry_t;
145
146static inline int xfs_dir2_sf_hdr_size(int i8count)
147{
148 return sizeof(struct xfs_dir2_sf_hdr) -
149 (i8count == 0) *
150 (sizeof(xfs_dir2_ino8_t) - sizeof(xfs_dir2_ino4_t));
151}
152
153static inline xfs_dir2_data_aoff_t
154xfs_dir2_sf_get_offset(xfs_dir2_sf_entry_t *sfep)
155{
156 return get_unaligned_be16(&sfep->offset.i);
157}
158
159static inline void
160xfs_dir2_sf_put_offset(xfs_dir2_sf_entry_t *sfep, xfs_dir2_data_aoff_t off)
161{
162 put_unaligned_be16(off, &sfep->offset.i);
163}
164
165static inline int
166xfs_dir2_sf_entsize(struct xfs_dir2_sf_hdr *hdr, int len)
167{
168 return sizeof(struct xfs_dir2_sf_entry) + /* namelen + offset */
169 len + /* name */
170 (hdr->i8count ? /* ino */
171 sizeof(xfs_dir2_ino8_t) :
172 sizeof(xfs_dir2_ino4_t));
173}
174
175static inline struct xfs_dir2_sf_entry *
176xfs_dir2_sf_firstentry(struct xfs_dir2_sf_hdr *hdr)
177{
178 return (struct xfs_dir2_sf_entry *)
179 ((char *)hdr + xfs_dir2_sf_hdr_size(hdr->i8count));
180}
181
182static inline struct xfs_dir2_sf_entry *
183xfs_dir2_sf_nextentry(struct xfs_dir2_sf_hdr *hdr,
184 struct xfs_dir2_sf_entry *sfep)
185{
186 return (struct xfs_dir2_sf_entry *)
187 ((char *)sfep + xfs_dir2_sf_entsize(hdr, sfep->namelen));
188}
189
190
191/*
192 * Data block structures.
193 *
194 * A pure data block looks like the following drawing on disk:
195 *
196 * +-------------------------------------------------+
197 * | xfs_dir2_data_hdr_t |
198 * +-------------------------------------------------+
199 * | xfs_dir2_data_entry_t OR xfs_dir2_data_unused_t |
200 * | xfs_dir2_data_entry_t OR xfs_dir2_data_unused_t |
201 * | xfs_dir2_data_entry_t OR xfs_dir2_data_unused_t |
202 * | ... |
203 * +-------------------------------------------------+
204 * | unused space |
205 * +-------------------------------------------------+
206 *
207 * As all the entries are variable size structures the accessors below should
208 * be used to iterate over them.
209 *
210 * In addition to the pure data blocks for the data and node formats,
211 * most structures are also used for the combined data/freespace "block"
212 * format below.
213 */
214
215#define XFS_DIR2_DATA_ALIGN_LOG 3 /* i.e., 8 bytes */
216#define XFS_DIR2_DATA_ALIGN (1 << XFS_DIR2_DATA_ALIGN_LOG)
217#define XFS_DIR2_DATA_FREE_TAG 0xffff
218#define XFS_DIR2_DATA_FD_COUNT 3
219
220/*
221 * Directory address space divided into sections,
222 * spaces separated by 32GB.
223 */
224#define XFS_DIR2_SPACE_SIZE (1ULL << (32 + XFS_DIR2_DATA_ALIGN_LOG))
225#define XFS_DIR2_DATA_SPACE 0
226#define XFS_DIR2_DATA_OFFSET (XFS_DIR2_DATA_SPACE * XFS_DIR2_SPACE_SIZE)
227#define XFS_DIR2_DATA_FIRSTDB(mp) \
228 xfs_dir2_byte_to_db(mp, XFS_DIR2_DATA_OFFSET)
229
230/*
231 * Offsets of . and .. in data space (always block 0)
232 */
233#define XFS_DIR2_DATA_DOT_OFFSET \
234 ((xfs_dir2_data_aoff_t)sizeof(struct xfs_dir2_data_hdr))
235#define XFS_DIR2_DATA_DOTDOT_OFFSET \
236 (XFS_DIR2_DATA_DOT_OFFSET + xfs_dir2_data_entsize(1))
237#define XFS_DIR2_DATA_FIRST_OFFSET \
238 (XFS_DIR2_DATA_DOTDOT_OFFSET + xfs_dir2_data_entsize(2))
239
240/*
241 * Describe a free area in the data block.
242 *
243 * The freespace will be formatted as a xfs_dir2_data_unused_t.
244 */
245typedef struct xfs_dir2_data_free {
246 __be16 offset; /* start of freespace */
247 __be16 length; /* length of freespace */
248} xfs_dir2_data_free_t;
249
250/*
251 * Header for the data blocks.
252 *
253 * The code knows that XFS_DIR2_DATA_FD_COUNT is 3.
254 */
255typedef struct xfs_dir2_data_hdr {
256 __be32 magic; /* XFS_DIR2_DATA_MAGIC or */
257 /* XFS_DIR2_BLOCK_MAGIC */
258 xfs_dir2_data_free_t bestfree[XFS_DIR2_DATA_FD_COUNT];
259} xfs_dir2_data_hdr_t;
260
261/*
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100262 * define a structure for all the verification fields we are adding to the
263 * directory block structures. This will be used in several structures.
264 * The magic number must be the first entry to align with all the dir2
265 * structures so we determine how to decode them just by the magic number.
266 */
267struct xfs_dir3_blk_hdr {
268 __be32 magic; /* magic number */
269 __be32 crc; /* CRC of block */
270 __be64 blkno; /* first block of the buffer */
271 __be64 lsn; /* sequence number of last write */
272 uuid_t uuid; /* filesystem we belong to */
273 __be64 owner; /* inode that owns the block */
274};
275
276struct xfs_dir3_data_hdr {
277 struct xfs_dir3_blk_hdr hdr;
278 xfs_dir2_data_free_t best_free[XFS_DIR2_DATA_FD_COUNT];
279};
280
281#define XFS_DIR3_DATA_CRC_OFF offsetof(struct xfs_dir3_data_hdr, hdr.crc)
282
283static inline struct xfs_dir2_data_free *
284xfs_dir3_data_bestfree_p(struct xfs_dir2_data_hdr *hdr)
285{
286 if (hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC)) {
287 struct xfs_dir3_data_hdr *hdr3 = (struct xfs_dir3_data_hdr *)hdr;
288 return hdr3->best_free;
289 }
290 return hdr->bestfree;
291}
292
293/*
Christoph Hellwig57926642011-07-13 13:43:48 +0200294 * Active entry in a data block.
295 *
296 * Aligned to 8 bytes. After the variable length name field there is a
297 * 2 byte tag field, which can be accessed using xfs_dir2_data_entry_tag_p.
298 */
299typedef struct xfs_dir2_data_entry {
300 __be64 inumber; /* inode number */
301 __u8 namelen; /* name length */
302 __u8 name[]; /* name bytes, no null */
303 /* __be16 tag; */ /* starting offset of us */
304} xfs_dir2_data_entry_t;
305
306/*
307 * Unused entry in a data block.
308 *
309 * Aligned to 8 bytes. Tag appears as the last 2 bytes and must be accessed
310 * using xfs_dir2_data_unused_tag_p.
311 */
312typedef struct xfs_dir2_data_unused {
313 __be16 freetag; /* XFS_DIR2_DATA_FREE_TAG */
314 __be16 length; /* total free length */
315 /* variable offset */
316 __be16 tag; /* starting offset of us */
317} xfs_dir2_data_unused_t;
318
319/*
320 * Size of a data entry.
321 */
322static inline int xfs_dir2_data_entsize(int n)
323{
324 return (int)roundup(offsetof(struct xfs_dir2_data_entry, name[0]) + n +
325 (uint)sizeof(xfs_dir2_data_off_t), XFS_DIR2_DATA_ALIGN);
326}
327
328/*
329 * Pointer to an entry's tag word.
330 */
331static inline __be16 *
332xfs_dir2_data_entry_tag_p(struct xfs_dir2_data_entry *dep)
333{
334 return (__be16 *)((char *)dep +
335 xfs_dir2_data_entsize(dep->namelen) - sizeof(__be16));
336}
337
338/*
339 * Pointer to a freespace's tag word.
340 */
341static inline __be16 *
342xfs_dir2_data_unused_tag_p(struct xfs_dir2_data_unused *dup)
343{
344 return (__be16 *)((char *)dup +
345 be16_to_cpu(dup->length) - sizeof(__be16));
346}
347
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100348static inline struct xfs_dir2_data_unused *
349xfs_dir3_data_unused_p(struct xfs_dir2_data_hdr *hdr)
350{
351 if (hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC)) {
352 return (struct xfs_dir2_data_unused *)
353 ((char *)hdr + sizeof(struct xfs_dir3_data_hdr));
354 }
355 return (struct xfs_dir2_data_unused *)
356 ((char *)hdr + sizeof(struct xfs_dir2_data_hdr));
357}
358
359static inline size_t
360xfs_dir3_data_hdr_size(bool dir3)
361{
362 if (dir3)
363 return sizeof(struct xfs_dir3_data_hdr);
364 return sizeof(struct xfs_dir2_data_hdr);
365}
366
367static inline size_t
368xfs_dir3_data_entry_offset(struct xfs_dir2_data_hdr *hdr)
369{
370 bool dir3 = hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC) ||
371 hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC);
372 return xfs_dir3_data_hdr_size(dir3);
373}
374
375static inline struct xfs_dir2_data_entry *
376xfs_dir3_data_entry_p(struct xfs_dir2_data_hdr *hdr)
377{
378 return (struct xfs_dir2_data_entry *)
379 ((char *)hdr + xfs_dir3_data_entry_offset(hdr));
380}
381
382/*
383 * Offsets of . and .. in data space (always block 0)
384 */
385static inline xfs_dir2_data_aoff_t
386xfs_dir3_data_dot_offset(struct xfs_dir2_data_hdr *hdr)
387{
388 return xfs_dir3_data_entry_offset(hdr);
389}
390
391static inline xfs_dir2_data_aoff_t
392xfs_dir3_data_dotdot_offset(struct xfs_dir2_data_hdr *hdr)
393{
394 return xfs_dir3_data_dot_offset(hdr) + xfs_dir2_data_entsize(1);
395}
396
397static inline xfs_dir2_data_aoff_t
398xfs_dir3_data_first_offset(struct xfs_dir2_data_hdr *hdr)
399{
400 return xfs_dir3_data_dotdot_offset(hdr) + xfs_dir2_data_entsize(2);
401}
402
403/*
404 * location of . and .. in data space (always block 0)
405 */
406static inline struct xfs_dir2_data_entry *
407xfs_dir3_data_dot_entry_p(struct xfs_dir2_data_hdr *hdr)
408{
409 return (struct xfs_dir2_data_entry *)
410 ((char *)hdr + xfs_dir3_data_dot_offset(hdr));
411}
412
413static inline struct xfs_dir2_data_entry *
414xfs_dir3_data_dotdot_entry_p(struct xfs_dir2_data_hdr *hdr)
415{
416 return (struct xfs_dir2_data_entry *)
417 ((char *)hdr + xfs_dir3_data_dotdot_offset(hdr));
418}
419
420static inline struct xfs_dir2_data_entry *
421xfs_dir3_data_first_entry_p(struct xfs_dir2_data_hdr *hdr)
422{
423 return (struct xfs_dir2_data_entry *)
424 ((char *)hdr + xfs_dir3_data_first_offset(hdr));
425}
426
Christoph Hellwig57926642011-07-13 13:43:48 +0200427/*
428 * Leaf block structures.
429 *
430 * A pure leaf block looks like the following drawing on disk:
431 *
432 * +---------------------------+
433 * | xfs_dir2_leaf_hdr_t |
434 * +---------------------------+
435 * | xfs_dir2_leaf_entry_t |
436 * | xfs_dir2_leaf_entry_t |
437 * | xfs_dir2_leaf_entry_t |
438 * | xfs_dir2_leaf_entry_t |
439 * | ... |
440 * +---------------------------+
441 * | xfs_dir2_data_off_t |
442 * | xfs_dir2_data_off_t |
443 * | xfs_dir2_data_off_t |
444 * | ... |
445 * +---------------------------+
446 * | xfs_dir2_leaf_tail_t |
447 * +---------------------------+
448 *
449 * The xfs_dir2_data_off_t members (bests) and tail are at the end of the block
450 * for single-leaf (magic = XFS_DIR2_LEAF1_MAGIC) blocks only, but not present
451 * for directories with separate leaf nodes and free space blocks
452 * (magic = XFS_DIR2_LEAFN_MAGIC).
453 *
454 * As all the entries are variable size structures the accessors below should
455 * be used to iterate over them.
456 */
457
458/*
459 * Offset of the leaf/node space. First block in this space
460 * is the btree root.
461 */
462#define XFS_DIR2_LEAF_SPACE 1
463#define XFS_DIR2_LEAF_OFFSET (XFS_DIR2_LEAF_SPACE * XFS_DIR2_SPACE_SIZE)
464#define XFS_DIR2_LEAF_FIRSTDB(mp) \
465 xfs_dir2_byte_to_db(mp, XFS_DIR2_LEAF_OFFSET)
466
467/*
468 * Leaf block header.
469 */
470typedef struct xfs_dir2_leaf_hdr {
471 xfs_da_blkinfo_t info; /* header for da routines */
472 __be16 count; /* count of entries */
473 __be16 stale; /* count of stale entries */
474} xfs_dir2_leaf_hdr_t;
475
476/*
477 * Leaf block entry.
478 */
479typedef struct xfs_dir2_leaf_entry {
480 __be32 hashval; /* hash value of name */
481 __be32 address; /* address of data entry */
482} xfs_dir2_leaf_entry_t;
483
484/*
485 * Leaf block tail.
486 */
487typedef struct xfs_dir2_leaf_tail {
488 __be32 bestcount;
489} xfs_dir2_leaf_tail_t;
490
491/*
492 * Leaf block.
493 */
494typedef struct xfs_dir2_leaf {
495 xfs_dir2_leaf_hdr_t hdr; /* leaf header */
496 xfs_dir2_leaf_entry_t ents[]; /* entries */
497} xfs_dir2_leaf_t;
498
499/*
500 * DB blocks here are logical directory block numbers, not filesystem blocks.
501 */
502
503static inline int xfs_dir2_max_leaf_ents(struct xfs_mount *mp)
504{
505 return (mp->m_dirblksize - (uint)sizeof(struct xfs_dir2_leaf_hdr)) /
506 (uint)sizeof(struct xfs_dir2_leaf_entry);
507}
508
509/*
510 * Get address of the bestcount field in the single-leaf block.
511 */
512static inline struct xfs_dir2_leaf_tail *
513xfs_dir2_leaf_tail_p(struct xfs_mount *mp, struct xfs_dir2_leaf *lp)
514{
515 return (struct xfs_dir2_leaf_tail *)
516 ((char *)lp + mp->m_dirblksize -
517 sizeof(struct xfs_dir2_leaf_tail));
518}
519
520/*
521 * Get address of the bests array in the single-leaf block.
522 */
523static inline __be16 *
524xfs_dir2_leaf_bests_p(struct xfs_dir2_leaf_tail *ltp)
525{
526 return (__be16 *)ltp - be32_to_cpu(ltp->bestcount);
527}
528
529/*
530 * Convert dataptr to byte in file space
531 */
532static inline xfs_dir2_off_t
533xfs_dir2_dataptr_to_byte(struct xfs_mount *mp, xfs_dir2_dataptr_t dp)
534{
535 return (xfs_dir2_off_t)dp << XFS_DIR2_DATA_ALIGN_LOG;
536}
537
538/*
539 * Convert byte in file space to dataptr. It had better be aligned.
540 */
541static inline xfs_dir2_dataptr_t
542xfs_dir2_byte_to_dataptr(struct xfs_mount *mp, xfs_dir2_off_t by)
543{
544 return (xfs_dir2_dataptr_t)(by >> XFS_DIR2_DATA_ALIGN_LOG);
545}
546
547/*
548 * Convert byte in space to (DB) block
549 */
550static inline xfs_dir2_db_t
551xfs_dir2_byte_to_db(struct xfs_mount *mp, xfs_dir2_off_t by)
552{
553 return (xfs_dir2_db_t)
554 (by >> (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog));
555}
556
557/*
558 * Convert dataptr to a block number
559 */
560static inline xfs_dir2_db_t
561xfs_dir2_dataptr_to_db(struct xfs_mount *mp, xfs_dir2_dataptr_t dp)
562{
563 return xfs_dir2_byte_to_db(mp, xfs_dir2_dataptr_to_byte(mp, dp));
564}
565
566/*
567 * Convert byte in space to offset in a block
568 */
569static inline xfs_dir2_data_aoff_t
570xfs_dir2_byte_to_off(struct xfs_mount *mp, xfs_dir2_off_t by)
571{
572 return (xfs_dir2_data_aoff_t)(by &
573 ((1 << (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog)) - 1));
574}
575
576/*
577 * Convert dataptr to a byte offset in a block
578 */
579static inline xfs_dir2_data_aoff_t
580xfs_dir2_dataptr_to_off(struct xfs_mount *mp, xfs_dir2_dataptr_t dp)
581{
582 return xfs_dir2_byte_to_off(mp, xfs_dir2_dataptr_to_byte(mp, dp));
583}
584
585/*
586 * Convert block and offset to byte in space
587 */
588static inline xfs_dir2_off_t
589xfs_dir2_db_off_to_byte(struct xfs_mount *mp, xfs_dir2_db_t db,
590 xfs_dir2_data_aoff_t o)
591{
592 return ((xfs_dir2_off_t)db <<
593 (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog)) + o;
594}
595
596/*
597 * Convert block (DB) to block (dablk)
598 */
599static inline xfs_dablk_t
600xfs_dir2_db_to_da(struct xfs_mount *mp, xfs_dir2_db_t db)
601{
602 return (xfs_dablk_t)(db << mp->m_sb.sb_dirblklog);
603}
604
605/*
606 * Convert byte in space to (DA) block
607 */
608static inline xfs_dablk_t
609xfs_dir2_byte_to_da(struct xfs_mount *mp, xfs_dir2_off_t by)
610{
611 return xfs_dir2_db_to_da(mp, xfs_dir2_byte_to_db(mp, by));
612}
613
614/*
615 * Convert block and offset to dataptr
616 */
617static inline xfs_dir2_dataptr_t
618xfs_dir2_db_off_to_dataptr(struct xfs_mount *mp, xfs_dir2_db_t db,
619 xfs_dir2_data_aoff_t o)
620{
621 return xfs_dir2_byte_to_dataptr(mp, xfs_dir2_db_off_to_byte(mp, db, o));
622}
623
624/*
625 * Convert block (dablk) to block (DB)
626 */
627static inline xfs_dir2_db_t
628xfs_dir2_da_to_db(struct xfs_mount *mp, xfs_dablk_t da)
629{
630 return (xfs_dir2_db_t)(da >> mp->m_sb.sb_dirblklog);
631}
632
633/*
634 * Convert block (dablk) to byte offset in space
635 */
636static inline xfs_dir2_off_t
637xfs_dir2_da_to_byte(struct xfs_mount *mp, xfs_dablk_t da)
638{
639 return xfs_dir2_db_off_to_byte(mp, xfs_dir2_da_to_db(mp, da), 0);
640}
641
642/*
643 * Free space block defintions for the node format.
644 */
645
646/*
647 * Offset of the freespace index.
648 */
649#define XFS_DIR2_FREE_SPACE 2
650#define XFS_DIR2_FREE_OFFSET (XFS_DIR2_FREE_SPACE * XFS_DIR2_SPACE_SIZE)
651#define XFS_DIR2_FREE_FIRSTDB(mp) \
652 xfs_dir2_byte_to_db(mp, XFS_DIR2_FREE_OFFSET)
653
654typedef struct xfs_dir2_free_hdr {
655 __be32 magic; /* XFS_DIR2_FREE_MAGIC */
656 __be32 firstdb; /* db of first entry */
657 __be32 nvalid; /* count of valid entries */
658 __be32 nused; /* count of used entries */
659} xfs_dir2_free_hdr_t;
660
661typedef struct xfs_dir2_free {
662 xfs_dir2_free_hdr_t hdr; /* block header */
Christoph Hellwiga00b7742011-07-13 13:43:48 +0200663 __be16 bests[]; /* best free counts */
Christoph Hellwig57926642011-07-13 13:43:48 +0200664 /* unused entries are -1 */
665} xfs_dir2_free_t;
666
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100667struct xfs_dir3_free_hdr {
668 struct xfs_dir3_blk_hdr hdr;
669 __be32 firstdb; /* db of first entry */
670 __be32 nvalid; /* count of valid entries */
671 __be32 nused; /* count of used entries */
672};
673
674struct xfs_dir3_free {
675 struct xfs_dir3_free_hdr hdr;
676 __be16 bests[]; /* best free counts */
677 /* unused entries are -1 */
678};
679
680#define XFS_DIR3_FREE_CRC_OFF offsetof(struct xfs_dir3_free, hdr.hdr.crc)
681
682/*
683 * In core version of the free block header, abstracted away from on-disk format
684 * differences. Use this in the code, and convert to/from the disk version using
685 * xfs_dir3_free_hdr_from_disk/xfs_dir3_free_hdr_to_disk.
686 */
687struct xfs_dir3_icfree_hdr {
688 __uint32_t magic;
689 __uint32_t firstdb;
690 __uint32_t nvalid;
691 __uint32_t nused;
692
693};
694
695void xfs_dir3_free_hdr_from_disk(struct xfs_dir3_icfree_hdr *to,
696 struct xfs_dir2_free *from);
697
698static inline int
699xfs_dir3_free_hdr_size(struct xfs_mount *mp)
Christoph Hellwiga00b7742011-07-13 13:43:48 +0200700{
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100701 if (xfs_sb_version_hascrc(&mp->m_sb))
702 return sizeof(struct xfs_dir3_free_hdr);
703 return sizeof(struct xfs_dir2_free_hdr);
704}
705
706static inline int
707xfs_dir3_free_max_bests(struct xfs_mount *mp)
708{
709 return (mp->m_dirblksize - xfs_dir3_free_hdr_size(mp)) /
Christoph Hellwiga00b7742011-07-13 13:43:48 +0200710 sizeof(xfs_dir2_data_off_t);
711}
Christoph Hellwig57926642011-07-13 13:43:48 +0200712
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100713static inline __be16 *
714xfs_dir3_free_bests_p(struct xfs_mount *mp, struct xfs_dir2_free *free)
715{
716 return (__be16 *)((char *)free + xfs_dir3_free_hdr_size(mp));
717}
718
Christoph Hellwig57926642011-07-13 13:43:48 +0200719/*
720 * Convert data space db to the corresponding free db.
721 */
722static inline xfs_dir2_db_t
723xfs_dir2_db_to_fdb(struct xfs_mount *mp, xfs_dir2_db_t db)
724{
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100725 return XFS_DIR2_FREE_FIRSTDB(mp) + db / xfs_dir3_free_max_bests(mp);
Christoph Hellwig57926642011-07-13 13:43:48 +0200726}
727
728/*
729 * Convert data space db to the corresponding index in a free db.
730 */
731static inline int
732xfs_dir2_db_to_fdindex(struct xfs_mount *mp, xfs_dir2_db_t db)
733{
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100734 return db % xfs_dir3_free_max_bests(mp);
Christoph Hellwig57926642011-07-13 13:43:48 +0200735}
736
737/*
738 * Single block format.
739 *
740 * The single block format looks like the following drawing on disk:
741 *
742 * +-------------------------------------------------+
743 * | xfs_dir2_data_hdr_t |
744 * +-------------------------------------------------+
745 * | xfs_dir2_data_entry_t OR xfs_dir2_data_unused_t |
746 * | xfs_dir2_data_entry_t OR xfs_dir2_data_unused_t |
747 * | xfs_dir2_data_entry_t OR xfs_dir2_data_unused_t :
748 * | ... |
749 * +-------------------------------------------------+
750 * | unused space |
751 * +-------------------------------------------------+
752 * | ... |
753 * | xfs_dir2_leaf_entry_t |
754 * | xfs_dir2_leaf_entry_t |
755 * +-------------------------------------------------+
756 * | xfs_dir2_block_tail_t |
757 * +-------------------------------------------------+
758 *
759 * As all the entries are variable size structures the accessors below should
760 * be used to iterate over them.
761 */
762
763typedef struct xfs_dir2_block_tail {
764 __be32 count; /* count of leaf entries */
765 __be32 stale; /* count of stale lf entries */
766} xfs_dir2_block_tail_t;
767
768/*
769 * Pointer to the leaf header embedded in a data block (1-block format)
770 */
771static inline struct xfs_dir2_block_tail *
772xfs_dir2_block_tail_p(struct xfs_mount *mp, struct xfs_dir2_data_hdr *hdr)
773{
774 return ((struct xfs_dir2_block_tail *)
775 ((char *)hdr + mp->m_dirblksize)) - 1;
776}
777
778/*
779 * Pointer to the leaf entries embedded in a data block (1-block format)
780 */
781static inline struct xfs_dir2_leaf_entry *
782xfs_dir2_block_leaf_p(struct xfs_dir2_block_tail *btp)
783{
784 return ((struct xfs_dir2_leaf_entry *)btp) - be32_to_cpu(btp->count);
785}
786
787#endif /* __XFS_DIR2_FORMAT_H__ */