diff options
author | Marvin Borner | 2021-03-21 12:40:41 +0100 |
---|---|---|
committer | Marvin Borner | 2021-03-21 12:46:08 +0100 |
commit | 09c3bdb186868204cb03d457244e05e12eb685d6 (patch) | |
tree | 7bf59794173d700df08ad303acd6c5a49193a9eb /libc | |
parent | 68a0ad7f21ba07b93cd63613996e27afd8780f9c (diff) |
Hardened syscalls
Diffstat (limited to 'libc')
-rw-r--r-- | libc/inc/def.h | 2 | ||||
-rw-r--r-- | libc/inc/errno.h | 3 | ||||
-rw-r--r-- | libc/inc/sys.h | 21 | ||||
-rw-r--r-- | libc/print.c | 1 | ||||
-rw-r--r-- | libc/sys.c | 48 |
5 files changed, 41 insertions, 34 deletions
diff --git a/libc/inc/def.h b/libc/inc/def.h index c334fcb..708ffee 100644 --- a/libc/inc/def.h +++ b/libc/inc/def.h @@ -28,6 +28,8 @@ typedef unsigned long long u64; #define MIN(a, b) (((a) < (b)) ? (a) : (b)) #define MAX(a, b) (((a) > (b)) ? (a) : (b)) +#define ABS(a) (((a) < 0) ? (-a) : (a)) + #define NORETURN __attribute__((noreturn)) #define NO_SANITIZE __attribute__((no_sanitize("undefined"))) #define PACKED __attribute__((packed)) diff --git a/libc/inc/errno.h b/libc/inc/errno.h index 76b4b85..e226aba 100644 --- a/libc/inc/errno.h +++ b/libc/inc/errno.h @@ -5,6 +5,9 @@ #include <def.h> +typedef s32 res; + +#define EOK 0 /* Success */ #define EPERM 1 /* Operation not permitted */ #define ENOENT 2 /* No such file or directory */ #define ESRCH 3 /* No such process */ diff --git a/libc/inc/sys.h b/libc/inc/sys.h index a06a792..8f30dbb 100644 --- a/libc/inc/sys.h +++ b/libc/inc/sys.h @@ -5,6 +5,7 @@ #define SYS_H #include <def.h> +#include <errno.h> #define KEYBOARD_MAGIC 0x555555 #define MOUSE_MAGIC 0xaaaaaa @@ -66,20 +67,20 @@ struct stat { */ void loop(void); -s32 read(const char *path, void *buf, u32 offset, u32 count); -s32 write(const char *path, const void *buf, u32 offset, u32 count); -s32 ioctl(const char *path, ...); -s32 stat(const char *path, struct stat *buf); -s32 poll(const char **files); -s32 exec(const char *path, ...); -s32 yield(void); void exit(s32 status); -s32 boot(u32 cmd); +res read(const char *path, void *buf, u32 offset, u32 count); +res write(const char *path, const void *buf, u32 offset, u32 count); +res ioctl(const char *path, ...); +res stat(const char *path, struct stat *buf); +res poll(const char **files); +res exec(const char *path, ...); +res yield(void); +res boot(u32 cmd); u32 time(void); void *sys_alloc(u32 size); -u32 shalloc(u32 size); -void *shaccess(u32 id); +res shalloc(u32 size, u32 *id); +res shaccess(u32 id, u32 *addr, u32 *size); void sys_free(void *ptr, u32 size); static inline u32 getpid(void) diff --git a/libc/print.c b/libc/print.c index 1d58f0a..7ebf7ca 100644 --- a/libc/print.c +++ b/libc/print.c @@ -142,6 +142,7 @@ int log(const char *format, ...) int err(int code, const char *format, ...) { + log("ERRNO: %d (%s)\n", errno, strerror(errno)); va_list ap; va_start(ap, format); vfprintf(PATH_ERR, format, ap); @@ -19,32 +19,32 @@ errno = 0; \ return ret -s32 sys0(enum sys num); -s32 sys0(enum sys num) +res sys0(enum sys num); +res sys0(enum sys num) { int a; __asm__ volatile("int $0x80" : "=a"(a) : "0"(num)); ERRIFY(a); } -s32 sys1(enum sys num, int d1); -s32 sys1(enum sys num, int d1) +res sys1(enum sys num, int d1); +res sys1(enum sys num, int d1) { int a; __asm__ volatile("int $0x80" : "=a"(a) : "0"(num), "b"((int)d1)); ERRIFY(a); } -s32 sys2(enum sys num, int d1, int d2); -s32 sys2(enum sys num, int d1, int d2) +res sys2(enum sys num, int d1, int d2); +res sys2(enum sys num, int d1, int d2) { int a; __asm__ volatile("int $0x80" : "=a"(a) : "0"(num), "b"((int)d1), "c"((int)d2)); ERRIFY(a); } -s32 sys3(enum sys num, int d1, int d2, int d3); -s32 sys3(enum sys num, int d1, int d2, int d3) +res sys3(enum sys num, int d1, int d2, int d3); +res sys3(enum sys num, int d1, int d2, int d3) { int a; __asm__ volatile("int $0x80" @@ -53,8 +53,8 @@ s32 sys3(enum sys num, int d1, int d2, int d3) ERRIFY(a); } -s32 sys4(enum sys num, int d1, int d2, int d3, int d4); -s32 sys4(enum sys num, int d1, int d2, int d3, int d4) +res sys4(enum sys num, int d1, int d2, int d3, int d4); +res sys4(enum sys num, int d1, int d2, int d3, int d4) { int a; __asm__ volatile("int $0x80" @@ -63,8 +63,8 @@ s32 sys4(enum sys num, int d1, int d2, int d3, int d4) ERRIFY(a); } -s32 sys5(enum sys num, int d1, int d2, int d3, int d4, int d5); -s32 sys5(enum sys num, int d1, int d2, int d3, int d4, int d5) +res sys5(enum sys num, int d1, int d2, int d3, int d4, int d5); +res sys5(enum sys num, int d1, int d2, int d3, int d4, int d5) { int a; __asm__ volatile("int $0x80" @@ -83,14 +83,14 @@ void *sys_alloc(u32 size) return (void *)sys1(SYS_ALLOC, (int)size); } -u32 shalloc(u32 size) +res shalloc(u32 size, u32 *id) { - return (u32)sys1(SYS_SHALLOC, (int)size); + return (res)sys2(SYS_SHALLOC, (int)size, (int)id); } -void *shaccess(u32 id) +res shaccess(u32 id, u32 *addr, u32 *size) { - return (void *)sys1(SYS_SHACCESS, (int)id); + return (res)sys3(SYS_SHACCESS, (int)id, (int)addr, (int)size); } // TODO: Freeing by ptr + size could be a security risk -> only by address! @@ -104,17 +104,17 @@ void loop(void) sys0(SYS_LOOP); } -s32 read(const char *path, void *buf, u32 offset, u32 count) +res read(const char *path, void *buf, u32 offset, u32 count) { return sys4(SYS_READ, (int)path, (int)buf, (int)offset, (int)count); } -s32 write(const char *path, const void *buf, u32 offset, u32 count) +res write(const char *path, const void *buf, u32 offset, u32 count) { return sys4(SYS_WRITE, (int)path, (int)buf, (int)offset, (int)count); } -s32 ioctl(const char *path, ...) +res ioctl(const char *path, ...) { va_list ap; int args[4] = { 0 }; @@ -127,17 +127,17 @@ s32 ioctl(const char *path, ...) return sys5(SYS_IOCTL, (int)path, args[0], args[1], args[2], args[3]); } -s32 stat(const char *path, struct stat *buf) +res stat(const char *path, struct stat *buf) { return sys2(SYS_STAT, (int)path, (int)buf); } -s32 poll(const char **files) +res poll(const char **files) { return sys1(SYS_POLL, (int)files); } -s32 exec(const char *path, ...) +res exec(const char *path, ...) { va_list ap; int args[4] = { 0 }; @@ -150,7 +150,7 @@ s32 exec(const char *path, ...) return sys5(SYS_EXEC, (int)path, args[0], args[1], args[2], args[3]); } -s32 yield(void) +res yield(void) { return sys0(SYS_YIELD); } @@ -164,7 +164,7 @@ void exit(s32 status) yield(); } -s32 boot(u32 cmd) +res boot(u32 cmd) { return sys2(SYS_BOOT, SYS_BOOT_MAGIC, cmd); } |