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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
|
#include <kernel/system.h>
#include <kernel/fs/vfs.h>
#include <kernel/lib/data/list.h>
#include <kernel/lib/data/generic_tree.h>
#include <kernel/memory/alloc.h>
#include <kernel/lib/stdlib.h>
#include <kernel/lib/lib.h>
gtree_t *vfs_tree;
vfs_node_t *vfs_root;
uint32_t vfs_get_file_size(vfs_node_t *node)
{
if (node && node->get_file_size) {
return node->get_file_size(node);
}
return 0;
}
void vfs_db_listdir(char *name)
{
vfs_node_t *n = file_open(name, 0);
if (!n) {
log("Could not list a directory that does not exist");
return;
}
if (!n->listdir)
return;
char **files = n->listdir(n);
char **save = files;
while (*files) {
log("%s ", *files);
kfree(*files);
files++;
}
kfree(save);
}
void print_vfstree_recur(gtreenode_t *node, int parent_offset)
{
if (!node)
return;
char *tmp = kmalloc(512);
int len = 0;
memset(tmp, 0, 512);
for (int i = 0; i < parent_offset; ++i) {
strcat(tmp, " ");
}
struct vfs_entry *fnode = (struct vfs_entry *)node->value;
if (fnode->file) {
log("%s(0x%x, %s)", fnode->name, (uint32_t)fnode->file, fnode->file->name);
} else {
log("%s(empty)", fnode->name);
}
log("%s", tmp);
len = strlen(fnode->name);
kfree(tmp);
foreach(child, node->children)
{
print_vfstree_recur(child->val, parent_offset + len + 1);
}
}
void print_vfstree()
{
print_vfstree_recur(vfs_tree->root, 0);
}
uint32_t vfs_read(vfs_node_t *node, uint32_t offset, uint32_t size, char *buffer)
{
if (node && node->read) {
uint32_t ret = node->read(node, offset, size, buffer);
return ret;
}
return -1;
}
uint32_t vfs_write(vfs_node_t *node, uint32_t offset, uint32_t size, char *buffer)
{
if (node && node->write) {
uint32_t ret = node->write(node, offset, size, buffer);
return ret;
}
return -1;
}
void vfs_open(struct vfs_node *node, uint32_t flags)
{
if (!node)
return;
if (node->refcount >= 0)
node->refcount++;
node->open(node, flags);
}
void vfs_close(vfs_node_t *node)
{
if (!node || node == vfs_root || node->refcount == -1)
return;
node->refcount--;
if (node->refcount == 0)
node->close(node);
}
void vfs_chmod(vfs_node_t *node, uint32_t mode)
{
if (node->chmod)
return node->chmod(node, mode);
}
struct dirent *vfs_readdir(vfs_node_t *node, uint32_t index)
{
if (node && (node->flags & FS_DIRECTORY) && node->readdir)
return node->readdir(node, index);
return NULL;
}
vfs_node_t *vfs_finddir(vfs_node_t *node, char *name)
{
if (node && (node->flags & FS_DIRECTORY) && node->finddir)
return node->finddir(node, name);
return NULL;
}
int vfs_ioctl(vfs_node_t *node, int request, void *argp)
{
if (!node)
return -1;
if (node->ioctl)
return node->ioctl(node, request, argp);
return -1; // ENOTTY
}
void vfs_mkdir(char *name, unsigned short permission)
{
// Find parent directory
int i = strlen(name);
char *dirname = strdup(name);
char *save_dirname = dirname;
char *parent_path = "/";
while (i >= 0) {
if (dirname[i] == '/') {
if (i != 0) {
dirname[i] = '\0';
parent_path = dirname;
}
dirname = &dirname[i + 1];
break;
}
i--;
}
// Open file
vfs_node_t *parent_node = file_open(parent_path, 0);
if (!parent_node) {
kfree(save_dirname);
}
// mkdir
if (parent_node->mkdir)
parent_node->mkdir(parent_node, dirname, permission);
kfree(save_dirname);
vfs_close(parent_node);
}
int vfs_create_file(char *name, unsigned short permission)
{
// Find parent directory
int i = strlen(name);
char *dirname = strdup(name);
char *save_dirname = dirname;
char *parent_path = "/";
while (i >= 0) {
if (dirname[i] == '/') {
if (i != 0) {
dirname[i] = '\0';
parent_path = dirname;
}
dirname = &dirname[i + 1];
break;
}
i--;
}
// Open file
vfs_node_t *parent_node = file_open(parent_path, 0);
if (!parent_node) {
kfree(save_dirname);
return -1;
}
if (parent_node->create)
parent_node->create(parent_node, dirname, permission);
kfree(save_dirname);
vfs_close(parent_node);
return 0;
}
void vfs_unlink(char *name)
{
// Find parent directory
int i = strlen(name);
char *dirname = strdup(name);
char *save_dirname = dirname;
char *parent_path = "/";
while (i >= 0) {
if (dirname[i] == '/') {
if (i != 0) {
dirname[i] = '\0';
parent_path = dirname;
}
dirname = &dirname[i + 1];
break;
}
i--;
}
// Open file
vfs_node_t *parent_node = file_open(parent_path, 0);
if (!parent_node) {
kfree(save_dirname);
}
if (parent_node->unlink)
parent_node->unlink(parent_node, dirname);
kfree(save_dirname);
vfs_close(parent_node);
}
char *expand_path(char *input)
{
list_t *input_list = str_split(input, "/", NULL);
char *ret = list2str(input_list, "/");
return ret;
}
vfs_node_t *get_mountpoint_recur(char **path, gtreenode_t *subroot)
{
int found = 0;
char *curr_token = strsep(path, "/");
if (curr_token == NULL || !strcmp(curr_token, "")) {
struct vfs_entry *ent = (struct vfs_entry *)subroot->value;
return ent->file;
}
foreach(child, subroot->children)
{
gtreenode_t *tchild = (gtreenode_t *)child->val;
struct vfs_entry *ent = (struct vfs_entry *)(tchild->value);
if (strcmp(ent->name, curr_token) == 0) {
found = 1;
subroot = tchild;
break;
}
}
if (!found) {
*path = curr_token;
return ((struct vfs_entry *)(subroot->value))->file;
}
return get_mountpoint_recur(path, subroot);
}
vfs_node_t *get_mountpoint(char **path)
{
if (strlen(*path) > 1 && (*path)[strlen(*path) - 1] == '/')
*(path)[strlen(*path) - 1] = '\0';
if (!*path || *(path)[0] != '/')
return NULL;
if (strlen(*path) == 1) {
*path = '\0';
struct vfs_entry *ent = (struct vfs_entry *)vfs_tree->root->value;
return ent->file;
}
(*path)++;
return get_mountpoint_recur(path, vfs_tree->root);
}
vfs_node_t *file_open(const char *file_name, uint32_t flags)
{
char *curr_token = NULL;
char *filename = strdup(file_name);
char *free_filename = filename;
char *save = strdup(filename);
char *original_filename = filename;
char *new_start = NULL;
vfs_node_t *nextnode = NULL;
vfs_node_t *startpoint = get_mountpoint(&filename);
if (!startpoint)
return NULL;
if (filename)
new_start = strstr(save + (filename - original_filename), filename);
while (filename != NULL && ((curr_token = strsep(&new_start, "/")) != NULL)) {
nextnode = vfs_finddir(startpoint, curr_token);
if (!nextnode)
return NULL;
startpoint = nextnode;
}
if (!nextnode)
nextnode = startpoint;
vfs_open(nextnode, flags);
kfree(save);
kfree(free_filename);
return nextnode;
}
void vfs_init()
{
vfs_tree = tree_create();
struct vfs_entry *root = kmalloc(sizeof(struct vfs_entry));
root->name = strdup("root");
root->file = NULL;
tree_insert(vfs_tree, NULL, root);
}
void vfs_mount_dev(char *mountpoint, vfs_node_t *node)
{
vfs_mount(mountpoint, node);
}
void vfs_mount_recur(char *path, gtreenode_t *subroot, vfs_node_t *fs_obj)
{
int found = 0;
char *curr_token = strsep(&path, "/");
if (curr_token == NULL || !strcmp(curr_token, "")) {
struct vfs_entry *ent = (struct vfs_entry *)subroot->value;
if (ent->file) {
warn("The path is already mounted, please unmount before mounting again");
return;
}
if (!strcmp(ent->name, "/"))
vfs_root = fs_obj;
ent->file = fs_obj;
return;
}
foreach(child, subroot->children)
{
gtreenode_t *tchild = (gtreenode_t *)child->val;
struct vfs_entry *ent = (struct vfs_entry *)(tchild->value);
if (strcmp(ent->name, curr_token) == 0) {
found = 1;
subroot = tchild;
}
}
if (!found) {
struct vfs_entry *ent = kcalloc(sizeof(struct vfs_entry), 1);
ent->name = strdup(curr_token);
subroot = tree_insert(vfs_tree, subroot, ent);
}
vfs_mount_recur(path, subroot, fs_obj);
}
void vfs_mount(char *path, vfs_node_t *fs_obj)
{
fs_obj->refcount = -1;
fs_obj->fs_type = 0;
if (path[0] == '/' && strlen(path) == 1) {
struct vfs_entry *ent = (struct vfs_entry *)vfs_tree->root->value;
if (ent->file) {
warn("The path is already mounted, please unmount before mounting again");
return;
}
vfs_root = fs_obj;
ent->file = fs_obj;
return;
}
vfs_mount_recur(path + 1, vfs_tree->root, fs_obj);
}
|