aboutsummaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorMarvin Borner2021-02-26 14:51:13 +0100
committerMarvin Borner2021-02-26 14:51:13 +0100
commit0f00932955521c3c2fb8140176ab72f22172c298 (patch)
tree99561c0254d14c0c3536f900ee83b0341a5c8a1b /libc
parentdec16faf32e75d613e20cac175b8a0c2d3612b94 (diff)
Started UBSan and stack-smashing check support
Diffstat (limited to 'libc')
-rw-r--r--libc/Makefile3
-rw-r--r--libc/inc/print.h3
-rw-r--r--libc/list.c3
-rw-r--r--libc/mem.c4
-rw-r--r--libc/print.c8
-rw-r--r--libc/sanitize.c195
-rw-r--r--libc/stack.c3
7 files changed, 210 insertions, 9 deletions
diff --git a/libc/Makefile b/libc/Makefile
index 2d4d1b5..eb79983 100644
--- a/libc/Makefile
+++ b/libc/Makefile
@@ -1,7 +1,8 @@
# MIT License, Copyright (c) 2020 Marvin Borner
# TODO: Remove serial and cpu from libc?
-COBJS = str.o \
+COBJS = sanitize.o \
+ str.o \
mem.o \
math.o \
conv.o \
diff --git a/libc/inc/print.h b/libc/inc/print.h
index f32873a..90a715c 100644
--- a/libc/inc/print.h
+++ b/libc/inc/print.h
@@ -1,5 +1,4 @@
// MIT License, Copyright (c) 2020 Marvin Borner
-// I may (re)move this in the future // TODO
#ifndef PRINT_H
#define PRINT_H
@@ -11,6 +10,7 @@ int vprintf(const char *format, va_list ap);
int sprintf(char *str, const char *format, ...);
int vsprintf(char *str, const char *format, va_list ap);
int print(const char *str);
+void panic(const char *format, ...);
#ifdef userspace
int vfprintf(const char *path, const char *format, va_list ap);
@@ -20,7 +20,6 @@ int err(int code, const char *format, ...);
#else
#include <proc.h>
int print_app(enum stream_defaults id, const char *proc_name, const char *str);
-void panic(const char *format, ...);
#endif
#endif
diff --git a/libc/list.c b/libc/list.c
index f96fb27..cf51e33 100644
--- a/libc/list.c
+++ b/libc/list.c
@@ -130,6 +130,7 @@ struct list *list_remove(struct list *list, struct node *node)
}
iterator->prev->next = iterator->next;
- iterator->next->prev = iterator->prev;
+ if (iterator->next)
+ iterator->next->prev = iterator->prev;
return list;
}
diff --git a/libc/mem.c b/libc/mem.c
index 70429ca..7e9590a 100644
--- a/libc/mem.c
+++ b/libc/mem.c
@@ -287,8 +287,8 @@ void heap_init(u32 start)
init_region->size = HEAP_INIT_SIZE - OVERHEAD;
node_create_foot(init_region);
node_add(&heap.bins[bin_index(init_region->size)], init_region);
- heap.start = start;
- heap.end = start + HEAP_INIT_SIZE;
+ heap.start = (u32)start;
+ heap.end = (u32)start + HEAP_INIT_SIZE;
}
static void *_malloc(u32 size)
diff --git a/libc/print.c b/libc/print.c
index 6d97599..3f6c1cd 100644
--- a/libc/print.c
+++ b/libc/print.c
@@ -213,14 +213,18 @@ int print(const char *str)
return strlen(str);
}
+#endif
+
void panic(const char *format, ...)
{
va_list ap;
va_start(ap, format);
+#ifdef kernel
vprintf(format, ap);
+#else
+ vfprintf(PATH_ERR, format, ap);
+#endif
va_end(ap);
assert(0);
}
-
-#endif
diff --git a/libc/sanitize.c b/libc/sanitize.c
new file mode 100644
index 0000000..d4eed01
--- /dev/null
+++ b/libc/sanitize.c
@@ -0,0 +1,195 @@
+// MIT License, Copyright (c) 2021 Marvin Borner
+// Detect stack overflows and other bugs
+
+#include <def.h>
+#include <print.h>
+
+/**
+ * Stack protector
+ */
+
+#define STACK_CHK_GUARD 0xdeadbeef
+
+u32 __stack_chk_guard = STACK_CHK_GUARD;
+
+void __stack_chk_fail(void);
+void __stack_chk_fail(void)
+{
+ panic("FATAL: Stack smashing detected\n");
+}
+
+void __stack_chk_fail_local(void);
+void __stack_chk_fail_local(void)
+{
+ panic("FATAL: Local stack smashing detected\n");
+}
+
+/**
+ * UBSan
+ */
+
+#define is_aligned(value, alignment) !(value & (alignment - 1))
+
+struct source_location {
+ const char *file;
+ u32 line;
+ u32 column;
+};
+
+struct type_descriptor {
+ u16 kind;
+ u16 info;
+ char name[];
+};
+
+struct type_mismatch {
+ struct source_location location;
+ struct type_descriptor *type;
+ u32 alignment;
+ u8 type_check_kind;
+};
+
+struct overflow {
+ struct source_location location;
+ struct type_descriptor *type;
+};
+
+struct out_of_bounds {
+ struct source_location location;
+ struct type_descriptor *left_type;
+ struct type_descriptor *right_type;
+};
+
+void __ubsan_handle_load_invalid_value(void);
+void __ubsan_handle_load_invalid_value(void)
+{
+ panic("UBSAN: load-invalid-value\n");
+}
+
+void __ubsan_handle_nonnull_arg(void);
+void __ubsan_handle_nonnull_arg(void)
+{
+ panic("UBSAN: nonnull-arg\n");
+}
+
+void __ubsan_handle_nullability_arg(void);
+void __ubsan_handle_nullability_arg(void)
+{
+ panic("UBSAN: nullability-arg\n");
+}
+
+void __ubsan_handle_nonnull_return_v1(void);
+void __ubsan_handle_nonnull_return_v1(void)
+{
+ panic("UBSAN: nonnull-return-v1\n");
+}
+
+void __ubsan_handle_nullability_return_v1(void);
+void __ubsan_handle_nullability_return_v1(void)
+{
+ panic("UBSAN: nullability-return-v1\n");
+}
+
+void __ubsan_handle_vla_bound_not_positive(void);
+void __ubsan_handle_vla_bound_not_positive(void)
+{
+ panic("UBSAN: vla-bound-not-positive\n");
+}
+
+void __ubsan_handle_add_overflow(void);
+void __ubsan_handle_add_overflow(void)
+{
+ panic("UBSAN: add-overflow\n");
+}
+
+void __ubsan_handle_sub_overflow(void);
+void __ubsan_handle_sub_overflow(void)
+{
+ panic("UBSAN: sub-overflow\n");
+}
+
+void __ubsan_handle_negate_overflow(void);
+void __ubsan_handle_negate_overflow(void)
+{
+ panic("UBSAN: negate-overflow\n");
+}
+
+void __ubsan_handle_mul_overflow(void);
+void __ubsan_handle_mul_overflow(void)
+{
+ panic("UBSAN: mul-overflow\n");
+}
+
+void __ubsan_handle_shift_out_of_bounds(void);
+void __ubsan_handle_shift_out_of_bounds(void)
+{
+ panic("UBSAN: shift-out-of-bounds\n");
+}
+
+void __ubsan_handle_divrem_overflow(struct overflow *data, void *left, void *right);
+void __ubsan_handle_divrem_overflow(struct overflow *data, void *left, void *right)
+{
+ UNUSED(left);
+ UNUSED(right);
+ struct source_location *loc = &data->location;
+ panic("%s:%d: UBSAN: divrem-overflow\n", loc->file, loc->line);
+}
+
+void __ubsan_handle_out_of_bounds(struct out_of_bounds *data, void *value);
+void __ubsan_handle_out_of_bounds(struct out_of_bounds *data, void *value)
+{
+ UNUSED(value);
+ struct source_location *loc = &data->location;
+ panic("%s:%d: UBSAN: out-of-bounds\n", loc->file, loc->line);
+}
+
+void __ubsan_handle_type_mismatch_v1(struct type_mismatch *data, u32 ptr);
+void __ubsan_handle_type_mismatch_v1(struct type_mismatch *data, u32 ptr)
+{
+ struct source_location *loc = &data->location;
+ const char *msg = "";
+ if (ptr == 0) {
+ msg = "Null pointer access";
+ } else if (data->alignment != 0 && is_aligned(ptr, data->alignment))
+ msg = "Misaligned memory access";
+ else
+ msg = "Insufficient space";
+ panic("%s:%d: UBSAN: type-mismatch-v1: %s [type: %s]\n", loc->file, loc->line, msg,
+ data->type->name);
+}
+
+void __ubsan_handle_alignment_assumption(void);
+void __ubsan_handle_alignment_assumption(void)
+{
+ panic("UBSAN: alignment-assumption\n");
+}
+
+void __ubsan_handle_builtin_unreachable(void);
+void __ubsan_handle_builtin_unreachable(void)
+{
+ panic("UBSAN: builtin-unreachable\n");
+}
+
+void __ubsan_handle_missing_return(void);
+void __ubsan_handle_missing_return(void)
+{
+ panic("UBSAN: missing-return\n");
+}
+
+void __ubsan_handle_implicit_conversion(void);
+void __ubsan_handle_implicit_conversion(void)
+{
+ panic("UBSAN: implicit-conversion\n");
+}
+
+void __ubsan_handle_invalid_builtin(void);
+void __ubsan_handle_invalid_builtin(void)
+{
+ panic("UBSAN: invalid-builtin\n");
+}
+
+void __ubsan_handle_pointer_overflow(void);
+void __ubsan_handle_pointer_overflow(void)
+{
+ panic("UBSAN: pointer-overflow\n");
+}
diff --git a/libc/stack.c b/libc/stack.c
index e86a8c6..0cbb69d 100644
--- a/libc/stack.c
+++ b/libc/stack.c
@@ -102,7 +102,8 @@ void *stack_pop(struct stack *stack)
struct stack_node *prev = stack->tail;
- stack->tail->prev->next = NULL;
+ if (stack->tail->prev)
+ stack->tail->prev->next = NULL;
stack->tail = stack->tail->prev;
void *data = prev->data;