1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
// MIT License, Copyright (c) 2020 Marvin Borner
#ifndef FS_H
#define FS_H
#include <def.h>
#include <sys.h>
/**
* Device
*/
enum dev_type { DEV_BLOCK, DEV_CHAR };
struct device {
u32 id;
const char *name;
enum dev_type type;
struct vfs *vfs;
void *data;
u32 (*read)(void *buf, u32 offset, u32 count, struct device *dev);
u32 (*write)(void *buf, u32 offset, u32 count, struct device *dev);
};
void device_install(void);
void device_add(struct device *dev);
/**
* VFS
*/
enum vfs_type { VFS_DEVFS, VFS_TMPFS, VFS_PROCFS, VFS_EXT2 };
struct vfs {
enum vfs_type type;
int flags;
u32 (*read)(const char *path, void *buf, u32 offset, u32 count, struct device *dev);
u32 (*write)(const char *path, void *buf, u32 offset, u32 count, struct device *dev);
u32 (*stat)(const char *path, struct stat *buf, struct device *dev);
};
struct mount_info {
const char *path;
struct device *dev;
};
void vfs_install(void);
u32 vfs_mounted(struct device *dev, const char *path);
u32 vfs_mount(struct device *dev, const char *path);
u32 vfs_read(const char *path, void *buf, u32 offset, u32 count);
u32 vfs_write(const char *path, void *buf, u32 offset, u32 count);
u32 vfs_stat(const char *path, struct stat *buf);
/**
* EXT2
*/
#define EXT2_BOOT 0
#define EXT2_SUPER 1
#define EXT2_ROOT 2
#define EXT2_MAGIC 0x0000EF53
struct ext2_superblock {
u32 total_inodes;
u32 total_blocks;
u32 su_res_blocks; // Superuser reserved
u32 free_blocks;
u32 free_inodes;
u32 superblock_block_num;
u32 log2_block_size;
u32 log2_frag_size;
u32 blocks_per_group;
u32 frags_per_group;
u32 inodes_per_group;
u32 last_mount_time;
u32 last_write_time;
u16 mounts_since_fsck;
u16 max_mounts_since_fsck;
u16 magic;
u16 state; // 1 clean; 2 errors
u16 error_action;
u16 minor_version;
u32 last_fsck_time;
u32 max_time_since_fsck;
u32 creator_os_id;
u32 major_version;
u16 res_block_uid;
u16 res_block_gid;
};
struct ext2_bgd {
u32 block_bitmap;
u32 inode_bitmap;
u32 inode_table;
u16 free_blocks;
u16 free_inodes;
u16 used_dirs;
u16 pad;
u8 bg_reserved[12];
};
struct ext2_inode {
u16 mode;
u16 uid;
u32 size;
u32 last_access_time;
u32 creation_time;
u32 last_modification_time;
u32 deletion_time;
u16 gid;
u16 link_count;
u32 blocks;
u32 flags;
u32 os_specific_val1;
u32 block[15];
u32 generation;
u32 reserved1;
u32 reserved2;
u32 fragment_addr;
u8 os_specific_val2[12];
};
#define EXT2_INODE_SIZE (sizeof(struct ext2_inode))
struct ext2_dirent {
u32 inode_num;
u16 total_len;
u8 name_len;
u8 type_indicator;
u8 name[];
};
struct ext2_file {
struct ext2_inode inode;
u32 pos;
u8 block_index;
u8 *buf;
u32 curr_block_pos;
};
u32 ext2_read(const char *path, void *buf, u32 offset, u32 count, struct device *dev);
u32 ext2_stat(const char *path, struct stat *buf, struct device *dev);
#endif
|