blob: 7cd47245694def9e65928de60f053e736dd8953d [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * befs.h
4 *
5 * Copyright (C) 2001-2002 Will Dyson <will_dyson@pobox.com>
6 * Copyright (C) 1999 Makoto Kato (m_kato@ga2.so-net.ne.jp)
7 */
8
9#ifndef _LINUX_BEFS_H
10#define _LINUX_BEFS_H
11
12#include "befs_fs_types.h"
13
14/* used in debug.c */
15#define BEFS_VERSION "0.9.3"
16
17
18typedef u64 befs_blocknr_t;
19/*
20 * BeFS in memory structures
21 */
22
Fabian Frederick09ad0ea2015-04-16 12:46:17 -070023struct befs_mount_options {
Eric W. Biederman31aba052012-02-10 10:51:24 -080024 kgid_t gid;
25 kuid_t uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 int use_gid;
27 int use_uid;
28 int debug;
29 char *iocharset;
Fabian Frederick09ad0ea2015-04-16 12:46:17 -070030};
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Fabian Frederick038428f2015-04-16 12:46:20 -070032struct befs_sb_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 u32 magic1;
34 u32 block_size;
35 u32 block_shift;
36 int byte_order;
37 befs_off_t num_blocks;
38 befs_off_t used_blocks;
39 u32 inode_size;
40 u32 magic2;
41
42 /* Allocation group information */
43 u32 blocks_per_ag;
44 u32 ag_shift;
45 u32 num_ags;
46
Salah Triki6ea45582016-08-09 14:46:04 +010047 /* State of the superblock */
48 u32 flags;
49
Salah Triki2ac636b2016-08-09 14:46:05 +010050 /* Journal log entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 befs_block_run log_blocks;
52 befs_off_t log_start;
53 befs_off_t log_end;
54
55 befs_inode_addr root_dir;
56 befs_inode_addr indices;
57 u32 magic3;
58
Fabian Frederick09ad0ea2015-04-16 12:46:17 -070059 struct befs_mount_options mount_opts;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 struct nls_table *nls;
Fabian Frederick038428f2015-04-16 12:46:20 -070061};
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Fabian Frederickf8ccad22015-04-16 12:46:23 -070063struct befs_inode_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 u32 i_flags;
65 u32 i_type;
66
67 befs_inode_addr i_inode_num;
68 befs_inode_addr i_parent;
69 befs_inode_addr i_attribute;
70
71 union {
72 befs_data_stream ds;
73 char symlink[BEFS_SYMLINK_LEN];
74 } i_data;
75
76 struct inode vfs_inode;
Fabian Frederickf8ccad22015-04-16 12:46:23 -070077};
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79enum befs_err {
80 BEFS_OK,
81 BEFS_ERR,
82 BEFS_BAD_INODE,
83 BEFS_BT_END,
84 BEFS_BT_EMPTY,
85 BEFS_BT_MATCH,
Luis de Bethencourt672a8512016-08-08 15:21:20 +010086 BEFS_BT_OVERFLOW,
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 BEFS_BT_NOT_FOUND
88};
89
90
91/****************************/
92/* debug.c */
Fabian Frederickdac52fc2014-04-03 14:50:23 -070093__printf(2, 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094void befs_error(const struct super_block *sb, const char *fmt, ...);
Fabian Frederickdac52fc2014-04-03 14:50:23 -070095__printf(2, 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096void befs_warning(const struct super_block *sb, const char *fmt, ...);
Fabian Frederickdac52fc2014-04-03 14:50:23 -070097__printf(2, 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098void befs_debug(const struct super_block *sb, const char *fmt, ...);
99
100void befs_dump_super_block(const struct super_block *sb, befs_super_block *);
101void befs_dump_inode(const struct super_block *sb, befs_inode *);
Al Viroa9721f32005-12-24 14:28:55 -0500102void befs_dump_index_entry(const struct super_block *sb, befs_disk_btree_super *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103void befs_dump_index_node(const struct super_block *sb, befs_btree_nodehead *);
104/****************************/
105
106
107/* Gets a pointer to the private portion of the super_block
108 * structure from the public part
109 */
Fabian Frederick038428f2015-04-16 12:46:20 -0700110static inline struct befs_sb_info *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111BEFS_SB(const struct super_block *super)
112{
Fabian Frederick038428f2015-04-16 12:46:20 -0700113 return (struct befs_sb_info *) super->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
Fabian Frederickf8ccad22015-04-16 12:46:23 -0700116static inline struct befs_inode_info *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117BEFS_I(const struct inode *inode)
118{
Rasmus Villemoesdb6172c2015-03-19 12:28:04 +0100119 return container_of(inode, struct befs_inode_info, vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
122static inline befs_blocknr_t
Al Viro22341d82016-05-10 14:24:06 -0400123iaddr2blockno(struct super_block *sb, const befs_inode_addr *iaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125 return ((iaddr->allocation_group << BEFS_SB(sb)->ag_shift) +
126 iaddr->start);
127}
128
129static inline befs_inode_addr
130blockno2iaddr(struct super_block *sb, befs_blocknr_t blockno)
131{
132 befs_inode_addr iaddr;
Luis de Bethencourt12ecb382016-08-14 18:31:38 +0100133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 iaddr.allocation_group = blockno >> BEFS_SB(sb)->ag_shift;
135 iaddr.start =
136 blockno - (iaddr.allocation_group << BEFS_SB(sb)->ag_shift);
137 iaddr.len = 1;
138
139 return iaddr;
140}
141
142static inline unsigned int
143befs_iaddrs_per_block(struct super_block *sb)
144{
Luis de Bethencourt12ecb382016-08-14 18:31:38 +0100145 return BEFS_SB(sb)->block_size / sizeof(befs_disk_inode_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
Al Viroaf10b002005-12-24 01:13:13 -0500148#include "endian.h"
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#endif /* _LINUX_BEFS_H */