summaryrefslogtreecommitdiff
path: root/Userland/syscall.cpp
blob: d848745be92e01320fa19182d89eb43da531f33d (plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#include <Kernel/Syscall.h>
#include <errno.h>
#include <getopt.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#if !defined __ENUMERATE_SYSCALL
#    define __ENUMERATE_SYSCALL(x) SC_##x,
#endif
#if !defined __ENUMERATE_REMOVED_SYSCALL
#    define __ENUMERATE_REMOVED_SYSCALL(x)
#endif

#define SC_NARG 4

Syscall::Function syscall_table[] = {
    ENUMERATE_SYSCALLS
};

uintptr_t arg[SC_NARG];
char buf[BUFSIZ];

uintptr_t parse(char* s);

int main(int argc, char** argv)
{
    int oflag;
    int opt;
    while ((opt = getopt(argc, argv, "olh")) != -1) {
        switch (opt) {
        case 'o':
            oflag = 1;
            break;
        case 'l':
            for (auto sc : syscall_table) {
                fprintf(stdout, "%s ", Syscall::to_string(sc));
            }
            return EXIT_SUCCESS;
        case 'h':
            fprintf(stderr, "usage: \tsyscall [-o] [-l] [-h] <syscall-name> <args...> [buf==BUFSIZ buffer]\n");
            fprintf(stderr, "\tsyscall write 1 hello 5\n");
            fprintf(stderr, "\tsyscall -o read 0 buf 5\n");
            fprintf(stderr, "\tsyscall sleep 3\n");
            break;
        default:
            exit(EXIT_FAILURE);
        }
    }

    if (optind >= argc) {
        fprintf(stderr, "No entry specified\n");
        return -1;
    }

    for (int i = 0; i < argc - optind; i++) {
        arg[i] = parse(argv[i + optind]);
    }

    for (auto sc : syscall_table) {
        if (strcmp(Syscall::to_string(sc), (char*)arg[0]) == 0) {
            int rc = syscall(sc, arg[1], arg[2], arg[3]);
            if (rc == -1) {
                perror("syscall");
            } else {
                if (oflag)
                    fwrite(buf, 1, sizeof(buf), stdout);
            }

            fprintf(stderr, "Syscall return: %d\n", rc);
            return 0;
        }
    }

    fprintf(stderr, "Invalid syscall entry %s\n", (char*)arg[0]);
    return -1;
}

uintptr_t parse(char* s)
{
    char* t;
    uintptr_t l;

    if (strcmp(s, "buf") == 0) {
        return (uintptr_t)buf;
    }

    l = strtoul(s, &t, 0);
    if (t > s && *t == 0) {
        return l;
    }

    return (uintptr_t)s;
}