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
|
// MIT License, Copyright (c) 2020 Marvin Borner
#ifndef FS_H
#define FS_H
#include <def.h>
/**
* Device
*/
struct device {
u32 id;
const char *name;
int type; // TODO: Block, char device
struct vfs *vfs;
u8 (*read)(u8 *buf, u32 offset, u32 count, struct device *dev);
u8 (*write)(u8 *buf, u32 offset, u32 count, struct device *dev);
};
void device_install(void);
/**
* VFS
*/
struct vfs {
const char *name;
//u8 (*read)(char *, char *, struct device *, void *);
u8 (*mount)(struct device *, void *);
};
struct mount_info {
const char *path;
struct device *dev;
};
void vfs_install(void);
/**
* EXT2
*/
#define EXT2_BOOT 0
#define EXT2_SUPER 1
#define EXT2_ROOT 2
#define EXT2_MAGIC 0x0000EF53
struct 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 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 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 INODE_SIZE (sizeof(struct inode))
struct dirent {
u32 inode_num;
u16 total_len;
u8 name_len;
u8 type_indicator;
u8 name[];
};
struct file {
struct inode inode;
u32 pos;
u8 block_index;
u8 *buf;
u32 curr_block_pos;
};
void *file_read(char *path);
u32 file_stat(char *path);
#endif
|