#ifndef _FS_SYSVBFS_BFS_H_
#define _FS_SYSVBFS_BFS_H_
#define BFS_SECTOR 0
#define BFS_MAGIC 0x1badface
#define BFS_FILENAME_MAXLEN 14
#define BFS_ROOT_INODE 2
#define BFS_BSIZE 512
#define BFS_BSHIFT 9
struct bfs_super_block_header {
uint32_t magic;
uint32_t data_start_byte;
uint32_t data_end_byte;
} __packed;
struct bfs_compaction {
uint32_t from;
uint32_t to;
uint32_t from_backup;
uint32_t to_backup;
} __packed;
struct bfs_fileattr {
uint32_t type;
uint32_t mode;
int32_t uid;
int32_t gid;
uint32_t nlink;
int32_t atime;
int32_t mtime;
int32_t ctime;
int32_t padding[4];
} __packed;
struct bfs_inode {
uint16_t number;
int16_t padding;
uint32_t start_sector;
uint32_t end_sector;
uint32_t eof_offset_byte;
struct bfs_fileattr attr;
} __packed;
struct bfs_super_block {
struct bfs_super_block_header header;
struct bfs_compaction compaction;
char fsname[6];
char volume[6];
int32_t padding[118];
} __packed;
struct bfs_dirent {
uint16_t inode;
char name[BFS_FILENAME_MAXLEN];
} __packed;
#if defined _KERNEL || defined _STANDALONE
struct sector_io_ops;
struct bfs {
int start_sector;
struct bfs_super_block *super_block;
size_t super_block_size;
uint32_t data_start, data_end;
struct bfs_inode *inode;
int n_inode;
int max_inode;
struct bfs_dirent *dirent;
size_t dirent_size;
int n_dirent;
int max_dirent;
struct bfs_inode *root_inode;
struct sector_io_ops *io;
bool debug;
};
struct sector_io_ops {
bool (*read)(void *, uint8_t *, daddr_t);
bool (*read_n)(void *, uint8_t *, daddr_t, int);
bool (*write)(void *, uint8_t *, daddr_t);
bool (*write_n)(void *, uint8_t *, daddr_t, int);
};
struct vnode;
int bfs_init2(struct bfs **, int, struct sector_io_ops *, bool);
void bfs_fini(struct bfs *);
int bfs_file_read(const struct bfs *, const char *, void *, size_t, size_t *);
int bfs_file_write(struct bfs *, const char *, void *, size_t);
int bfs_file_create(struct bfs *, const char *, void *, size_t,
const struct bfs_fileattr *);
int bfs_file_delete(struct bfs *, const char *, bool);
int bfs_file_rename(struct bfs *, const char *, const char *);
bool bfs_file_lookup(const struct bfs *, const char *, int *, int *,
size_t *);
size_t bfs_file_size(const struct bfs_inode *);
bool bfs_dump(const struct bfs *);
int sysvbfs_bfs_init(struct bfs **, struct vnode *);
void sysvbfs_bfs_fini(struct bfs *);
bool bfs_inode_lookup(const struct bfs *, ino_t, struct bfs_inode **);
int bfs_inode_delete(struct bfs *, ino_t);
bool bfs_dirent_lookup_by_name(const struct bfs *, const char *,
struct bfs_dirent **);
bool bfs_dirent_lookup_by_inode(const struct bfs *, int,
struct bfs_dirent **);
void bfs_inode_set_attr(const struct bfs *, struct bfs_inode *,
const struct bfs_fileattr *attr);
int bfs_inode_alloc(const struct bfs *, struct bfs_inode **, int *,
int *);
#endif
#endif