diff options
Diffstat (limited to 'kernel/features/fs.c')
-rw-r--r-- | kernel/features/fs.c | 78 |
1 files changed, 50 insertions, 28 deletions
diff --git a/kernel/features/fs.c b/kernel/features/fs.c index 41aca78..c17a721 100644 --- a/kernel/features/fs.c +++ b/kernel/features/fs.c @@ -96,7 +96,40 @@ void *read_inode(struct inode *in) return buf; } -void *read_file(char *path) +u32 find_inode(const char *name, u32 dir_inode) +{ + if (!dir_inode) + return (unsigned)-1; + + struct inode *i = get_inode(dir_inode); + + char *buf = malloc(BLOCK_SIZE * i->blocks / 2); + memset(buf, 0, BLOCK_SIZE * i->blocks / 2); + + for (u32 q = 0; q < i->blocks / 2; q++) { + char *data = buffer_read(i->block[q]); + memcpy((u32 *)((u32)buf + q * BLOCK_SIZE), data, BLOCK_SIZE); + } + + struct dirent *d = (struct dirent *)buf; + + u32 sum = 0; + do { + // Calculate the 4byte aligned size of each entry + sum += d->total_len; + if (strlen(name) == d->name_len && + strncmp((void *)d->name, name, d->name_len) == 0) { + free(buf); + return d->inode_num; + } + d = (struct dirent *)((u32)d + d->total_len); + + } while (sum < (1024 * i->blocks / 2)); + free(buf); + return (unsigned)-1; +} + +struct inode *find_inode_by_path(char *path) { if (path[0] != '/') return 0; @@ -126,38 +159,27 @@ void *read_file(char *path) if ((signed)inode <= 0) return 0; - return read_inode(get_inode(inode)); + return get_inode(inode); } -u32 find_inode(const char *name, u32 dir_inode) +void *file_read(char *path) { - if (!dir_inode) - return (unsigned)-1; - - struct inode *i = get_inode(dir_inode); - - char *buf = malloc(BLOCK_SIZE * i->blocks / 2); - memset(buf, 0, BLOCK_SIZE * i->blocks / 2); + return read_inode(find_inode_by_path(path)); +} - for (u32 q = 0; q < i->blocks / 2; q++) { - char *data = buffer_read(i->block[q]); - memcpy((u32 *)((u32)buf + q * BLOCK_SIZE), data, BLOCK_SIZE); - } +u32 file_stat(char *path) +{ + struct inode *in = find_inode_by_path(path); + assert(in); + if (!in) + return 0; - struct dirent *d = (struct dirent *)buf; + u32 num_blocks = in->blocks / (BLOCK_SIZE / SECTOR_SIZE); - u32 sum = 0; - do { - // Calculate the 4byte aligned size of each entry - sum += d->total_len; - if (strlen(name) == d->name_len && - strncmp((void *)d->name, name, d->name_len) == 0) { - free(buf); - return d->inode_num; - } - d = (struct dirent *)((u32)d + d->total_len); + assert(num_blocks != 0); + if (!num_blocks) + return 0; - } while (sum < (1024 * i->blocks / 2)); - free(buf); - return (unsigned)-1; + u32 sz = BLOCK_SIZE * num_blocks; + return sz; } |