aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/fs/ext2.c
diff options
context:
space:
mode:
authorMarvin Borner2020-04-24 20:44:36 +0200
committerMarvin Borner2020-04-24 20:44:36 +0200
commit24175ce2a37d6f5d9ba367f942fabce681ee9e4a (patch)
tree829c4f13f8283298207b86b6a339763a10d3c521 /src/kernel/fs/ext2.c
parentcd1d0115f0b873e155a2435f932f3f2865d72ce9 (diff)
Removed vfs again...
Diffstat (limited to 'src/kernel/fs/ext2.c')
-rw-r--r--src/kernel/fs/ext2.c94
1 files changed, 0 insertions, 94 deletions
diff --git a/src/kernel/fs/ext2.c b/src/kernel/fs/ext2.c
index a61b9e6..3ab2f89 100644
--- a/src/kernel/fs/ext2.c
+++ b/src/kernel/fs/ext2.c
@@ -7,7 +7,6 @@
#include <kernel/memory/alloc.h>
#include <kernel/lib/lib.h>
#include <kernel/lib/stdlib.h>
-#include <kernel/fs/vfs.h>
static struct ext2_superblock superblock;
static struct bgd *bgdt;
@@ -233,96 +232,3 @@ uint32_t ext2_look_up_path(char *path)
return inode;
}
-
-// VFS Implementation
-
-void ext2_vfs_open(struct fs_node *node)
-{
- node->inode = ext2_look_up_path(node->name);
-
- if (node->inode != 0) {
- struct ext2_file *file = kmalloc(sizeof *file);
- ext2_open_inode(node->inode, file);
-
- node->impl = file;
-
- // TODO: More file metadata
- }
-}
-
-static void ext2_vfs_close(struct fs_node *node)
-{
- kfree(node->impl);
-}
-
-static uint32_t ext2_vfs_read(struct fs_node *node, size_t offset, size_t size, char *buf)
-{
- if (offset != ((struct ext2_file *)node->impl)->pos) {
- panic("Seeking is currently unsupported for Ext2 files");
- return 0;
- }
-
- return (uint32_t)ext2_read(node->impl, (uint8_t *)buf, size);
-}
-
-static uint32_t ext2_vfs_write(struct fs_node *node, size_t offset, size_t size, char *buf)
-{
- panic("Writing to Ext2 is currently unsupported");
-
- return 0;
-}
-
-static struct dir_entry *ext2_vfs_read_dir(struct fs_node *node, size_t index)
-{
- struct ext2_dirent ext2_dir;
-
- if (ext2_next_dirent(node->impl, &ext2_dir)) {
- struct dir_entry *dir = kmalloc(sizeof *dir);
-
- dir->inode = ext2_dir.inode_num;
- strcpy(dir->name, (char *)ext2_dir.name);
-
- return dir;
- } else {
- return NULL;
- }
-}
-
-static struct fs_node *ext2_vfs_find_dir(struct fs_node *node, char *name)
-{
- uint32_t inode = ext2_find_in_dir(node->inode, name);
- if (inode == 0) {
- return NULL;
- } else {
- struct fs_node *found = kmalloc(sizeof *found);
- found->inode = inode;
-
- return found;
- }
-}
-
-void ext2_mount(struct fs_node *mountpoint)
-{
- assert(mountpoint->node_ptr == NULL && (mountpoint->type & MOUNTPOINT_NODE) == 0);
- assert((mountpoint->type & DIR_NODE) != 0);
-
- struct fs_node *ext2_root = (struct fs_node *)kmalloc(sizeof(struct fs_node));
- ext2_root->name[0] = '\0';
- ext2_root->permissions = 0;
- ext2_root->uid = 0;
- ext2_root->gid = 0;
- ext2_root->inode = ROOT_INODE;
- ext2_root->length = 0;
- ext2_root->type = DIR_NODE;
- ext2_root->read = ext2_vfs_read;
- ext2_root->write = ext2_vfs_write;
- ext2_root->open = ext2_vfs_open;
- ext2_root->close = ext2_vfs_close;
- ext2_root->read_dir = ext2_vfs_read_dir;
- ext2_root->find_dir = ext2_vfs_find_dir;
- ext2_root->node_ptr = NULL;
- ext2_root->impl = NULL;
-
- mountpoint->type |= MOUNTPOINT_NODE;
- mountpoint->node_ptr = ext2_root;
-} \ No newline at end of file