blob: c6bad51d8ec7b56d8027c019a98a656596911110 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * befs.h
3 *
4 * Copyright (C) 2001-2002 Will Dyson <will_dyson@pobox.com>
5 * Copyright (C) 1999 Makoto Kato (m_kato@ga2.so-net.ne.jp)
6 */
7
8#ifndef _LINUX_BEFS_H
9#define _LINUX_BEFS_H
10
11#include "befs_fs_types.h"
12
13/* used in debug.c */
14#define BEFS_VERSION "0.9.3"
15
16
17typedef u64 befs_blocknr_t;
18/*
19 * BeFS in memory structures
20 */
21
Fabian Frederick09ad0ea2015-04-16 12:46:17 -070022struct befs_mount_options {
Eric W. Biederman31aba052012-02-10 10:51:24 -080023 kgid_t gid;
24 kuid_t uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 int use_gid;
26 int use_uid;
27 int debug;
28 char *iocharset;
Fabian Frederick09ad0ea2015-04-16 12:46:17 -070029};
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Fabian Frederick038428f2015-04-16 12:46:20 -070031struct befs_sb_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 u32 magic1;
33 u32 block_size;
34 u32 block_shift;
35 int byte_order;
36 befs_off_t num_blocks;
37 befs_off_t used_blocks;
38 u32 inode_size;
39 u32 magic2;
40
41 /* Allocation group information */
42 u32 blocks_per_ag;
43 u32 ag_shift;
44 u32 num_ags;
45
Salah Triki6ea45582016-08-09 14:46:04 +010046 /* State of the superblock */
47 u32 flags;
48
Salah Triki2ac636b2016-08-09 14:46:05 +010049 /* Journal log entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 befs_block_run log_blocks;
51 befs_off_t log_start;
52 befs_off_t log_end;
53
54 befs_inode_addr root_dir;
55 befs_inode_addr indices;
56 u32 magic3;
57
Fabian Frederick09ad0ea2015-04-16 12:46:17 -070058 struct befs_mount_options mount_opts;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 struct nls_table *nls;
Fabian Frederick038428f2015-04-16 12:46:20 -070060};
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Fabian Frederickf8ccad22015-04-16 12:46:23 -070062struct befs_inode_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 u32 i_flags;
64 u32 i_type;
65
66 befs_inode_addr i_inode_num;
67 befs_inode_addr i_parent;
68 befs_inode_addr i_attribute;
69
70 union {
71 befs_data_stream ds;
72 char symlink[BEFS_SYMLINK_LEN];
73 } i_data;
74
75 struct inode vfs_inode;
Fabian Frederickf8ccad22015-04-16 12:46:23 -070076};
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78enum befs_err {
79 BEFS_OK,
80 BEFS_ERR,
81 BEFS_BAD_INODE,
82 BEFS_BT_END,
83 BEFS_BT_EMPTY,
84 BEFS_BT_MATCH,
Luis de Bethencourt672a8512016-08-08 15:21:20 +010085 BEFS_BT_OVERFLOW,
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 BEFS_BT_NOT_FOUND
87};
88
89
90/****************************/
91/* debug.c */
Fabian Frederickdac52fc2014-04-03 14:50:23 -070092__printf(2, 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093void befs_error(const struct super_block *sb, const char *fmt, ...);
Fabian Frederickdac52fc2014-04-03 14:50:23 -070094__printf(2, 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095void befs_warning(const struct super_block *sb, const char *fmt, ...);
Fabian Frederickdac52fc2014-04-03 14:50:23 -070096__printf(2, 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097void befs_debug(const struct super_block *sb, const char *fmt, ...);
98
99void befs_dump_super_block(const struct super_block *sb, befs_super_block *);
100void befs_dump_inode(const struct super_block *sb, befs_inode *);
Al Viroa9721f32005-12-24 14:28:55 -0500101void befs_dump_index_entry(const struct super_block *sb, befs_disk_btree_super *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102void befs_dump_index_node(const struct super_block *sb, befs_btree_nodehead *);
103/****************************/
104
105
106/* Gets a pointer to the private portion of the super_block
107 * structure from the public part
108 */
Fabian Frederick038428f2015-04-16 12:46:20 -0700109static inline struct befs_sb_info *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110BEFS_SB(const struct super_block *super)
111{
Fabian Frederick038428f2015-04-16 12:46:20 -0700112 return (struct befs_sb_info *) super->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Fabian Frederickf8ccad22015-04-16 12:46:23 -0700115static inline struct befs_inode_info *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116BEFS_I(const struct inode *inode)
117{
Rasmus Villemoesdb6172c2015-03-19 12:28:04 +0100118 return container_of(inode, struct befs_inode_info, vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
121static inline befs_blocknr_t
Al Viro22341d82016-05-10 14:24:06 -0400122iaddr2blockno(struct super_block *sb, const befs_inode_addr *iaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 return ((iaddr->allocation_group << BEFS_SB(sb)->ag_shift) +
125 iaddr->start);
126}
127
128static inline befs_inode_addr
129blockno2iaddr(struct super_block *sb, befs_blocknr_t blockno)
130{
131 befs_inode_addr iaddr;
132 iaddr.allocation_group = blockno >> BEFS_SB(sb)->ag_shift;
133 iaddr.start =
134 blockno - (iaddr.allocation_group << BEFS_SB(sb)->ag_shift);
135 iaddr.len = 1;
136
137 return iaddr;
138}
139
140static inline unsigned int
141befs_iaddrs_per_block(struct super_block *sb)
142{
Al Viroa9721f32005-12-24 14:28:55 -0500143 return BEFS_SB(sb)->block_size / sizeof (befs_disk_inode_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
Al Viroaf10b002005-12-24 01:13:13 -0500146#include "endian.h"
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148#endif /* _LINUX_BEFS_H */