aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarvin Borner2020-07-25 15:45:36 +0200
committerMarvin Borner2020-07-25 15:45:36 +0200
commitbe9ade5ac65209277dc18f8eb9b03a55e2b9e6ad (patch)
tree0c50fa74e449a9f1acb95a9011bb79ffd07106b5
parentba7ed9c4b1137ad76e60a117e061bd3da1be1f61 (diff)
Added directory support
-rw-r--r--src/features/fs.c36
-rw-r--r--src/inc/fs.h3
2 files changed, 34 insertions, 5 deletions
diff --git a/src/features/fs.c b/src/features/fs.c
index c8136a8..7795210 100644
--- a/src/features/fs.c
+++ b/src/features/fs.c
@@ -78,20 +78,48 @@ void *read_inode(struct inode *in)
if (i < 12) {
blocknum = in->block[i];
data = buffer_read(blocknum);
- memcpy((u8 *)((u32)buf + i * BLOCK_SIZE), data, BLOCK_SIZE);
+ memcpy((u32 *)((u32)buf + i * BLOCK_SIZE), data, BLOCK_SIZE);
} else {
blocknum = read_indirect(indirect, i - 12);
data = buffer_read(blocknum);
- memcpy((u8 *)((u32)buf + (i - 1) * BLOCK_SIZE), data, BLOCK_SIZE);
+ memcpy((u32 *)((u32)buf + (i - 1) * BLOCK_SIZE), data, BLOCK_SIZE);
}
}
return buf;
}
-void *read_file(const char *name, int dir_inode)
+void *read_file(char *path)
{
- return read_inode(get_inode(find_inode(name, dir_inode)));
+ if (path[0] != '/')
+ return 0;
+
+ path++;
+ u32 current_inode = EXT2_ROOT;
+
+ while (1) {
+ int i;
+ for (i = 0; path[i] != '/' && path[i] != '\0'; i++)
+ ;
+
+ if (path[i] == '\0')
+ break;
+
+ path[i] = '\0';
+ current_inode = find_inode(path, current_inode);
+ path[i] = '/';
+
+ if (current_inode == 0)
+ return 0;
+
+ path += i + 1;
+ }
+
+ u32 inode = find_inode(path, current_inode);
+ if (inode == 0)
+ return 0;
+
+ return read_inode(get_inode(inode));
}
int find_inode(const char *name, int dir_inode)
diff --git a/src/inc/fs.h b/src/inc/fs.h
index b521ca6..775a1ce 100644
--- a/src/inc/fs.h
+++ b/src/inc/fs.h
@@ -8,6 +8,7 @@
#define EXT2_BOOT 0
#define EXT2_SUPER 1
+#define EXT2_ROOT 2
#define EXT2_MAGIC 0x0000EF53
struct superblock {
@@ -95,7 +96,7 @@ struct file {
int find_inode(const char *name, int dir_inode);
struct inode *get_inode(int i);
void *read_inode(struct inode *in);
-void *read_file(const char *name, int dir_inode);
+void *read_file(char *path);
void ls_root(); // DEMO ;)
#endif