aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/fs/fs.c
blob: a57a83e1fce0e1a4dbada3b8231d9f9585bfeeeb (plain) (blame)
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 <stdint.h>
#include <fs/ext2.h>
#include <system.h>
#include <memory/alloc.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);
		kfree(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 = kmalloc(size);
		ext2_read(&file, buf, size);
		kfree(file.buf);
		buf[size - 1] = '\0';
		return buf;
	} else {
		warn("File not found");
		return NULL;
	}
}