1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#include <fs/ext2.h>
#include <memory/alloc.h>
#include <stdint.h>
#include <system.h>
u32 get_file_size(char *path)
{
u32 inode = ext2_look_up_path(path);
struct ext2_file file;
ext2_open_inode(inode, &file);
if (inode != 0) {
return file.inode.size;
} else {
warn("File not found");
return -1;
}
}
// TODO: Implement offset
u32 read(char *path, u32 offset, u32 count, u8 *buf)
{
u32 inode = ext2_look_up_path(path);
struct ext2_file file;
ext2_open_inode(inode, &file);
if (inode != 0) {
debug("Reading %s: %dKiB", path, count >> 10);
ext2_read(&file, buf, count);
free(file.buf);
buf[count - 1] = '\0';
return buf;
} else {
warn("File not found");
return -1;
}
}
// TODO: Implement writing
u32 write(char *path, u32 offset, u32 count, u8 *buf)
{
warn("Writing is not supported!");
return -1;
}
u8 *read_file(char *path)
{
u32 inode = ext2_look_up_path(path);
struct ext2_file file;
ext2_open_inode(inode, &file);
if (inode != 0) {
u32 size = file.inode.size;
debug("Reading %s: %dKiB", path, size >> 10);
u8 *buf = malloc(size);
ext2_read(&file, buf, size);
free(file.buf);
buf[size - 1] = '\0';
return buf;
} else {
warn("File not found");
return NULL;
}
}
|