2021-11-05 23:02:23 +01:00
|
|
|
#include "libc.h"
|
2022-09-03 23:41:33 +02:00
|
|
|
#include "stdarg.h"
|
2023-03-21 23:11:56 +01:00
|
|
|
#include "tiny.h"
|
2021-11-06 00:13:40 +01:00
|
|
|
|
|
|
|
int func_help()
|
|
|
|
{
|
|
|
|
printf("\nAvailable Commands:\n");
|
2023-11-11 00:09:00 +01:00
|
|
|
printf(" help: this help\n");
|
|
|
|
printf(" suicide: userspace self kill\n");
|
|
|
|
printf(" syscall5: a syscall with parameters over the stack \n");
|
|
|
|
printf(" alloc: test allocation\n");
|
|
|
|
printf(" tiny: a tiny C-like interpreter\n");
|
2021-11-06 00:13:40 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int func_suicide()
|
|
|
|
{
|
|
|
|
printf("User is about to suicide\n");
|
|
|
|
int *yolo = 0;
|
|
|
|
*yolo = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-11-11 00:09:00 +01:00
|
|
|
char *initialHeap = 0;
|
2022-09-03 23:41:33 +02:00
|
|
|
int func_alloc()
|
|
|
|
{
|
|
|
|
if (initialHeap == 0) {
|
2024-01-29 21:47:24 +01:00
|
|
|
initialHeap = sbrk(0);
|
2022-08-09 16:15:00 +02:00
|
|
|
}
|
2022-09-03 23:41:33 +02:00
|
|
|
printf("Testing allocation\n");
|
2024-01-29 21:47:24 +01:00
|
|
|
int allocSize = 4096 * 2;
|
2024-01-26 22:26:40 +01:00
|
|
|
char *currentHeap = sbrk(0);
|
2022-09-03 23:41:33 +02:00
|
|
|
if (currentHeap - initialHeap < allocSize) {
|
2024-01-29 21:47:24 +01:00
|
|
|
brk(initialHeap + allocSize);
|
2022-08-09 16:15:00 +02:00
|
|
|
}
|
2022-09-03 23:41:33 +02:00
|
|
|
int *allocatedData = (int *)initialHeap;
|
|
|
|
for (unsigned int i = 0; i < allocSize / sizeof(int); i++) {
|
2024-01-29 21:47:24 +01:00
|
|
|
allocatedData[i] = i;
|
|
|
|
}
|
|
|
|
printf("Success\nTesting malloc\n");
|
|
|
|
uintptr_t heap = (uintptr_t)sbrk(0);
|
|
|
|
|
|
|
|
for (int i = 0; i < 12; i++) {
|
|
|
|
void *ptr = malloc(1 << i);
|
|
|
|
printf("malloc size %d: 0x%p\n", (1 << i), ptr);
|
|
|
|
if (ptr == NULL) {
|
|
|
|
printf("Malloc failed\n");
|
|
|
|
}
|
|
|
|
memset(ptr, 0, 1 << i);
|
|
|
|
free(ptr);
|
2022-08-09 16:15:00 +02:00
|
|
|
}
|
2024-01-29 21:47:24 +01:00
|
|
|
uintptr_t newHeap = (uintptr_t)sbrk(0);
|
|
|
|
printf("Malloc used %dB\n", newHeap - heap);
|
2022-09-03 23:41:33 +02:00
|
|
|
|
2022-08-09 16:15:00 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-03-24 23:43:09 +01:00
|
|
|
int func_mmap()
|
|
|
|
{
|
|
|
|
|
|
|
|
char *path ="/dev/zero";
|
|
|
|
mmap(0, 4096, 0, 0, path);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-11-05 23:02:23 +01:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
(void)argc;
|
|
|
|
(void)argv;
|
2021-11-06 00:13:40 +01:00
|
|
|
char buf[64];
|
2021-11-08 22:52:46 +01:00
|
|
|
printf("Shell starting... type \"help\" for help\n");
|
2021-11-06 00:13:40 +01:00
|
|
|
while (1) {
|
|
|
|
printf(">");
|
|
|
|
if (readline(buf, sizeof(buf)))
|
|
|
|
continue;
|
|
|
|
if (strcmp(buf, "help") == 0) {
|
|
|
|
func_help();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (strcmp(buf, "suicide") == 0) {
|
|
|
|
func_suicide();
|
|
|
|
continue;
|
|
|
|
}
|
2021-11-08 23:22:03 +01:00
|
|
|
if (strcmp(buf, "syscall5") == 0) {
|
|
|
|
testSycall5(1, 2, 3, 4, 5);
|
|
|
|
continue;
|
|
|
|
}
|
2022-08-09 16:15:00 +02:00
|
|
|
if (strcmp(buf, "alloc") == 0) {
|
|
|
|
func_alloc();
|
|
|
|
continue;
|
|
|
|
}
|
2023-03-21 23:11:56 +01:00
|
|
|
if (strcmp(buf, "tiny") == 0) {
|
|
|
|
func_tiny();
|
|
|
|
continue;
|
|
|
|
}
|
2023-03-24 23:43:09 +01:00
|
|
|
if (strcmp(buf, "mmap") == 0) {
|
|
|
|
func_mmap();
|
|
|
|
continue;
|
|
|
|
}
|
2021-11-06 00:13:40 +01:00
|
|
|
}
|
2021-11-05 23:02:23 +01:00
|
|
|
return 0;
|
|
|
|
}
|