diff options
Diffstat (limited to 'kernel/features/fs.c')
-rw-r--r-- | kernel/features/fs.c | 40 |
1 files changed, 39 insertions, 1 deletions
diff --git a/kernel/features/fs.c b/kernel/features/fs.c index 480f199..00aa152 100644 --- a/kernel/features/fs.c +++ b/kernel/features/fs.c @@ -1,5 +1,4 @@ // MIT License, Copyright (c) 2020 Marvin Borner -// EXT2 based filesystem #include <assert.h> #include <def.h> @@ -9,6 +8,10 @@ #include <print.h> #include <str.h> +/** + * EXT2 + */ + void *buffer_read(u32 block) { return ide_read(malloc(BLOCK_SIZE), block); @@ -180,3 +183,38 @@ u32 file_stat(char *path) return in->size; } + +/** + * VFS + */ + +static struct list *mount_points = NULL; + +struct device *vfs_mounted(const char *path) +{ + struct node *iterator = mount_points->head; + while (iterator) { + if (!strcmp(iterator->data, path)) + return iterator->data; + iterator = iterator->next; + } + return NULL; +} + +u32 vfs_mount(struct device *dev, const char *path) +{ + if (!dev || !dev->id || vfs_mounted(path)) + return 0; + + struct mount_info *m = malloc(sizeof(*m)); + m->path = strdup(path); + m->dev = dev; + list_add(mount_points, m); + + return 1; +} + +void vfs_install() +{ + mount_points = list_new(); +} |