aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/print.c
diff options
context:
space:
mode:
authorMarvin Borner2021-04-02 23:26:28 +0200
committerMarvin Borner2021-04-02 23:26:28 +0200
commitce98400f8a9ebd4e62e76b9e292b7598d0d66cc0 (patch)
tree823f06c2c325ead611863eeb3ac974c1ae562878 /libs/libc/print.c
parentfe468b476d567b6aa0695a030c408ccf46278c7d (diff)
Added kernel section clear/protect after init
This is a huge security improvement as it prevents potential exploits of using or modifying internal kernel functions or data.
Diffstat (limited to 'libs/libc/print.c')
-rw-r--r--libs/libc/print.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/libs/libc/print.c b/libs/libc/print.c
index b77c165..4c38cdc 100644
--- a/libs/libc/print.c
+++ b/libs/libc/print.c
@@ -3,7 +3,6 @@
#include <arg.h>
#include <assert.h>
#include <conv.h>
-#include <cpu.h>
#include <def.h>
#include <mem.h>
#include <str.h>
@@ -145,7 +144,7 @@ int log(const char *format, ...)
return len;
}
-int err(int code, const char *format, ...)
+NORETURN void err(int code, const char *format, ...)
{
if (errno != EOK)
log("ERRNO: %d (%s)\n", errno, strerror(errno));
@@ -154,7 +153,6 @@ int err(int code, const char *format, ...)
vfprintf(PATH_ERR, format, ap);
va_end(ap);
exit(code);
- return -1;
}
int print(const char *str)
@@ -251,10 +249,9 @@ NORETURN void panic(const char *format, ...)
print("--- DON'T PANIC! ---\n");
print(buf);
print_trace(5);
- loop();
+ while (1)
+ __asm__ volatile("cli\nhlt");
#else
err(1, buf);
#endif
- while (1)
- ;
}