From d4c618d81316614942a8248f34e18d105ea31201 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 11 Dec 2020 20:22:15 +0100 Subject: Some FS stuff --- kernel/features/fs.c | 107 ++++++++++++++++++++++++++++++++++----------------- 1 file changed, 72 insertions(+), 35 deletions(-) (limited to 'kernel/features/fs.c') diff --git a/kernel/features/fs.c b/kernel/features/fs.c index 00aa152..63a1f70 100644 --- a/kernel/features/fs.c +++ b/kernel/features/fs.c @@ -6,8 +6,80 @@ #include #include #include +#include #include +/** + * 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(); +} + +/** + * Device + */ + +static struct list *devices = NULL; + +void device_add(struct device *dev) +{ + dev->id = rand(); + list_add(devices, dev); +} + +struct device *device_get(u32 id) +{ + struct node *iterator = devices->head; + while (iterator) { + if (((struct device *)iterator->data)->id == id) + return iterator->data; + iterator = iterator->next; + } + return NULL; +} + +void device_install() +{ + devices = list_new(); + + struct vfs *vfs = malloc(sizeof(*vfs)); + vfs->name = strdup("devfs"); + struct device *dev = malloc(sizeof(*dev)); + dev->name = "dev"; + dev->vfs = vfs; + device_add(dev); + vfs_mount(dev, "/dev/"); +} + /** * EXT2 */ @@ -183,38 +255,3 @@ 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(); -} -- cgit v1.2.3