322 lines
13 KiB
C++
322 lines
13 KiB
C++
/*
|
|
* syscall.h
|
|
* ZenithOS program-side syscall wrappers using SYSCALL instruction
|
|
* Copyright (c) 2025 Daniel Hammer
|
|
*/
|
|
|
|
#pragma once
|
|
#include <Api/Syscall.hpp>
|
|
|
|
namespace zenith {
|
|
|
|
// ---- Raw SYSCALL wrappers ----
|
|
|
|
// The SYSCALL handler does not restore RDI, RSI, RDX, R10, R8, R9
|
|
// (they are skipped on the return path). We move arguments into the
|
|
// correct registers inside the asm block and list ALL argument
|
|
// registers in the clobber list. This guarantees the compiler
|
|
// reloads every argument on each call — GCC cannot optimise away
|
|
// clobbers, unlike "+r" outputs whose dead values it may discard.
|
|
|
|
inline int64_t syscall0(uint64_t nr) {
|
|
int64_t ret;
|
|
asm volatile("syscall" : "=a"(ret) : "a"(nr)
|
|
: "rcx", "r11", "rdi", "rsi", "rdx", "r8", "r9", "r10", "memory");
|
|
return ret;
|
|
}
|
|
|
|
inline int64_t syscall1(uint64_t nr, uint64_t a1) {
|
|
int64_t ret;
|
|
asm volatile(
|
|
"mov %[a1], %%rdi\n\t"
|
|
"syscall"
|
|
: "=a"(ret)
|
|
: "a"(nr), [a1] "r"(a1)
|
|
: "rcx", "r11", "rdi", "rsi", "rdx", "r8", "r9", "r10", "memory");
|
|
return ret;
|
|
}
|
|
|
|
inline int64_t syscall2(uint64_t nr, uint64_t a1, uint64_t a2) {
|
|
int64_t ret;
|
|
asm volatile(
|
|
"mov %[a1], %%rdi\n\t"
|
|
"mov %[a2], %%rsi\n\t"
|
|
"syscall"
|
|
: "=a"(ret)
|
|
: "a"(nr), [a1] "r"(a1), [a2] "r"(a2)
|
|
: "rcx", "r11", "rdi", "rsi", "rdx", "r8", "r9", "r10", "memory");
|
|
return ret;
|
|
}
|
|
|
|
inline int64_t syscall3(uint64_t nr, uint64_t a1, uint64_t a2, uint64_t a3) {
|
|
int64_t ret;
|
|
asm volatile(
|
|
"mov %[a1], %%rdi\n\t"
|
|
"mov %[a2], %%rsi\n\t"
|
|
"mov %[a3], %%rdx\n\t"
|
|
"syscall"
|
|
: "=a"(ret)
|
|
: "a"(nr), [a1] "r"(a1), [a2] "r"(a2), [a3] "r"(a3)
|
|
: "rcx", "r11", "rdi", "rsi", "rdx", "r8", "r9", "r10", "memory");
|
|
return ret;
|
|
}
|
|
|
|
inline int64_t syscall4(uint64_t nr, uint64_t a1, uint64_t a2, uint64_t a3, uint64_t a4) {
|
|
int64_t ret;
|
|
asm volatile(
|
|
"mov %[a1], %%rdi\n\t"
|
|
"mov %[a2], %%rsi\n\t"
|
|
"mov %[a3], %%rdx\n\t"
|
|
"mov %[a4], %%r10\n\t"
|
|
"syscall"
|
|
: "=a"(ret)
|
|
: "a"(nr), [a1] "r"(a1), [a2] "r"(a2), [a3] "r"(a3), [a4] "r"(a4)
|
|
: "rcx", "r11", "rdi", "rsi", "rdx", "r8", "r9", "r10", "memory");
|
|
return ret;
|
|
}
|
|
|
|
inline int64_t syscall5(uint64_t nr, uint64_t a1, uint64_t a2, uint64_t a3, uint64_t a4, uint64_t a5) {
|
|
int64_t ret;
|
|
asm volatile(
|
|
"mov %[a1], %%rdi\n\t"
|
|
"mov %[a2], %%rsi\n\t"
|
|
"mov %[a3], %%rdx\n\t"
|
|
"mov %[a4], %%r10\n\t"
|
|
"mov %[a5], %%r8\n\t"
|
|
"syscall"
|
|
: "=a"(ret)
|
|
: "a"(nr), [a1] "r"(a1), [a2] "r"(a2), [a3] "r"(a3), [a4] "r"(a4), [a5] "r"(a5)
|
|
: "rcx", "r11", "rdi", "rsi", "rdx", "r8", "r9", "r10", "memory");
|
|
return ret;
|
|
}
|
|
|
|
inline int64_t syscall6(uint64_t nr, uint64_t a1, uint64_t a2, uint64_t a3, uint64_t a4, uint64_t a5, uint64_t a6) {
|
|
int64_t ret;
|
|
asm volatile(
|
|
"mov %[a1], %%rdi\n\t"
|
|
"mov %[a2], %%rsi\n\t"
|
|
"mov %[a3], %%rdx\n\t"
|
|
"mov %[a4], %%r10\n\t"
|
|
"mov %[a5], %%r8\n\t"
|
|
"mov %[a6], %%r9\n\t"
|
|
"syscall"
|
|
: "=a"(ret)
|
|
: "a"(nr), [a1] "r"(a1), [a2] "r"(a2), [a3] "r"(a3), [a4] "r"(a4), [a5] "r"(a5), [a6] "r"(a6)
|
|
: "rcx", "r11", "rdi", "rsi", "rdx", "r8", "r9", "r10", "memory");
|
|
return ret;
|
|
}
|
|
|
|
// ---- Typed wrappers ----
|
|
|
|
// Process
|
|
[[noreturn]] inline void exit(int code = 0) {
|
|
syscall1(Zenith::SYS_EXIT, (uint64_t)code);
|
|
__builtin_unreachable();
|
|
}
|
|
|
|
inline void yield() { syscall0(Zenith::SYS_YIELD); }
|
|
inline void sleep_ms(uint64_t ms) { syscall1(Zenith::SYS_SLEEP_MS, ms); }
|
|
inline int getpid() { return (int)syscall0(Zenith::SYS_GETPID); }
|
|
inline int spawn(const char* path, const char* args = nullptr) {
|
|
return (int)syscall2(Zenith::SYS_SPAWN, (uint64_t)path, (uint64_t)args);
|
|
}
|
|
|
|
// Console
|
|
inline void print(const char* text) { syscall1(Zenith::SYS_PRINT, (uint64_t)text); }
|
|
inline void putchar(char c) { syscall1(Zenith::SYS_PUTCHAR, (uint64_t)c); }
|
|
|
|
// File I/O
|
|
inline int open(const char* path) { return (int)syscall1(Zenith::SYS_OPEN, (uint64_t)path); }
|
|
inline int read(int handle, uint8_t* buf, uint64_t off, uint64_t size) {
|
|
return (int)syscall4(Zenith::SYS_READ, (uint64_t)handle, (uint64_t)buf, off, size);
|
|
}
|
|
inline uint64_t getsize(int handle) { return (uint64_t)syscall1(Zenith::SYS_GETSIZE, (uint64_t)handle); }
|
|
inline void close(int handle) { syscall1(Zenith::SYS_CLOSE, (uint64_t)handle); }
|
|
inline int readdir(const char* path, const char** names, int max) {
|
|
return (int)syscall3(Zenith::SYS_READDIR, (uint64_t)path, (uint64_t)names, (uint64_t)max);
|
|
}
|
|
|
|
// File write/create
|
|
inline int fwrite(int handle, const uint8_t* buf, uint64_t off, uint64_t size) {
|
|
return (int)syscall4(Zenith::SYS_FWRITE, (uint64_t)handle, (uint64_t)buf, off, size);
|
|
}
|
|
inline int fcreate(const char* path) {
|
|
return (int)syscall1(Zenith::SYS_FCREATE, (uint64_t)path);
|
|
}
|
|
|
|
// Memory
|
|
inline void* alloc(uint64_t size) { return (void*)syscall1(Zenith::SYS_ALLOC, size); }
|
|
inline void free(void* ptr) { syscall1(Zenith::SYS_FREE, (uint64_t)ptr); }
|
|
|
|
// Timekeeping
|
|
inline uint64_t get_ticks() { return (uint64_t)syscall0(Zenith::SYS_GETTICKS); }
|
|
inline uint64_t get_milliseconds() { return (uint64_t)syscall0(Zenith::SYS_GETMILLISECONDS); }
|
|
|
|
// System
|
|
inline void get_info(Zenith::SysInfo* info) { syscall1(Zenith::SYS_GETINFO, (uint64_t)info); }
|
|
|
|
// Keyboard
|
|
inline bool is_key_available() { return (bool)syscall0(Zenith::SYS_ISKEYAVAILABLE); }
|
|
inline void getkey(Zenith::KeyEvent* out) { syscall1(Zenith::SYS_GETKEY, (uint64_t)out); }
|
|
inline char getchar() { return (char)syscall0(Zenith::SYS_GETCHAR); }
|
|
|
|
// Networking
|
|
inline int32_t ping(uint32_t ip, uint32_t timeoutMs = 3000) {
|
|
return (int32_t)syscall2(Zenith::SYS_PING, (uint64_t)ip, (uint64_t)timeoutMs);
|
|
}
|
|
|
|
// DNS resolve: returns IP in network byte order, or 0 on failure
|
|
inline uint32_t resolve(const char* hostname) {
|
|
return (uint32_t)syscall1(Zenith::SYS_RESOLVE, (uint64_t)hostname);
|
|
}
|
|
|
|
// Network configuration
|
|
inline void get_netcfg(Zenith::NetCfg* out) { syscall1(Zenith::SYS_GETNETCFG, (uint64_t)out); }
|
|
inline int set_netcfg(const Zenith::NetCfg* cfg) { return (int)syscall1(Zenith::SYS_SETNETCFG, (uint64_t)cfg); }
|
|
|
|
// Sockets
|
|
inline int socket(int type) {
|
|
return (int)syscall1(Zenith::SYS_SOCKET, (uint64_t)type);
|
|
}
|
|
inline int connect(int fd, uint32_t ip, uint16_t port) {
|
|
return (int)syscall3(Zenith::SYS_CONNECT, (uint64_t)fd, (uint64_t)ip, (uint64_t)port);
|
|
}
|
|
inline int bind(int fd, uint16_t port) {
|
|
return (int)syscall2(Zenith::SYS_BIND, (uint64_t)fd, (uint64_t)port);
|
|
}
|
|
inline int listen(int fd) {
|
|
return (int)syscall1(Zenith::SYS_LISTEN, (uint64_t)fd);
|
|
}
|
|
inline int accept(int fd) {
|
|
return (int)syscall1(Zenith::SYS_ACCEPT, (uint64_t)fd);
|
|
}
|
|
inline int send(int fd, const void* data, uint32_t len) {
|
|
return (int)syscall3(Zenith::SYS_SEND, (uint64_t)fd, (uint64_t)data, (uint64_t)len);
|
|
}
|
|
inline int recv(int fd, void* buf, uint32_t maxLen) {
|
|
return (int)syscall3(Zenith::SYS_RECV, (uint64_t)fd, (uint64_t)buf, (uint64_t)maxLen);
|
|
}
|
|
inline int closesocket(int fd) {
|
|
return (int)syscall1(Zenith::SYS_CLOSESOCK, (uint64_t)fd);
|
|
}
|
|
inline int sendto(int fd, const void* data, uint32_t len, uint32_t destIp, uint16_t destPort) {
|
|
return (int)syscall5(Zenith::SYS_SENDTO, (uint64_t)fd, (uint64_t)data,
|
|
(uint64_t)len, (uint64_t)destIp, (uint64_t)destPort);
|
|
}
|
|
inline int recvfrom(int fd, void* buf, uint32_t maxLen, uint32_t* srcIp, uint16_t* srcPort) {
|
|
return (int)syscall5(Zenith::SYS_RECVFROM, (uint64_t)fd, (uint64_t)buf,
|
|
(uint64_t)maxLen, (uint64_t)srcIp, (uint64_t)srcPort);
|
|
}
|
|
|
|
// Process management
|
|
inline void waitpid(int pid) { syscall1(Zenith::SYS_WAITPID, (uint64_t)pid); }
|
|
|
|
// Framebuffer
|
|
inline void fb_info(Zenith::FbInfo* info) { syscall1(Zenith::SYS_FBINFO, (uint64_t)info); }
|
|
inline void* fb_map() { return (void*)syscall0(Zenith::SYS_FBMAP); }
|
|
|
|
// Arguments
|
|
inline int getargs(char* buf, uint64_t maxLen) {
|
|
return (int)syscall2(Zenith::SYS_GETARGS, (uint64_t)buf, maxLen);
|
|
}
|
|
|
|
// Terminal
|
|
inline void termsize(int* cols, int* rows) {
|
|
uint64_t r = (uint64_t)syscall0(Zenith::SYS_TERMSIZE);
|
|
if (cols) *cols = (int)(r & 0xFFFFFFFF);
|
|
if (rows) *rows = (int)(r >> 32);
|
|
}
|
|
|
|
inline void termscale(int scale_x, int scale_y) {
|
|
syscall2(Zenith::SYS_TERMSCALE, (uint64_t)scale_x, (uint64_t)scale_y);
|
|
}
|
|
|
|
inline void get_termscale(int* scale_x, int* scale_y) {
|
|
uint64_t r = (uint64_t)syscall2(Zenith::SYS_TERMSCALE, 0, 0);
|
|
if (scale_x) *scale_x = (int)(r & 0xFFFFFFFF);
|
|
if (scale_y) *scale_y = (int)(r >> 32);
|
|
}
|
|
|
|
// Timekeeping (wall-clock)
|
|
inline void gettime(Zenith::DateTime* out) { syscall1(Zenith::SYS_GETTIME, (uint64_t)out); }
|
|
|
|
// Random number generation
|
|
inline int64_t getrandom(void* buf, uint32_t len) {
|
|
return syscall2(Zenith::SYS_GETRANDOM, (uint64_t)buf, (uint64_t)len);
|
|
}
|
|
|
|
// Power management
|
|
[[noreturn]] inline void reset() {
|
|
syscall0(Zenith::SYS_RESET);
|
|
__builtin_unreachable();
|
|
}
|
|
|
|
[[noreturn]] inline void shutdown() {
|
|
syscall0(Zenith::SYS_SHUTDOWN);
|
|
__builtin_unreachable();
|
|
}
|
|
|
|
// Mouse
|
|
inline void mouse_state(Zenith::MouseState* out) { syscall1(Zenith::SYS_MOUSESTATE, (uint64_t)out); }
|
|
inline void set_mouse_bounds(int32_t maxX, int32_t maxY) {
|
|
syscall2(Zenith::SYS_SETMOUSEBOUNDS, (uint64_t)maxX, (uint64_t)maxY);
|
|
}
|
|
|
|
// Kernel log
|
|
inline int64_t read_klog(char* buf, uint64_t size) {
|
|
return syscall2(Zenith::SYS_KLOG, (uint64_t)buf, size);
|
|
}
|
|
|
|
// I/O redirection
|
|
inline int spawn_redir(const char* path, const char* args = nullptr) {
|
|
return (int)syscall2(Zenith::SYS_SPAWN_REDIR, (uint64_t)path, (uint64_t)args);
|
|
}
|
|
inline int childio_read(int childPid, char* buf, int maxLen) {
|
|
return (int)syscall3(Zenith::SYS_CHILDIO_READ, (uint64_t)childPid, (uint64_t)buf, (uint64_t)maxLen);
|
|
}
|
|
inline int childio_write(int childPid, const char* data, int len) {
|
|
return (int)syscall3(Zenith::SYS_CHILDIO_WRITE, (uint64_t)childPid, (uint64_t)data, (uint64_t)len);
|
|
}
|
|
inline int childio_writekey(int childPid, const Zenith::KeyEvent* key) {
|
|
return (int)syscall2(Zenith::SYS_CHILDIO_WRITEKEY, (uint64_t)childPid, (uint64_t)key);
|
|
}
|
|
inline int childio_settermsz(int childPid, int cols, int rows) {
|
|
return (int)syscall3(Zenith::SYS_CHILDIO_SETTERMSZ, (uint64_t)childPid, (uint64_t)cols, (uint64_t)rows);
|
|
}
|
|
|
|
// Process listing / kill
|
|
inline int proclist(Zenith::ProcInfo* buf, int max) {
|
|
return (int)syscall2(Zenith::SYS_PROCLIST, (uint64_t)buf, (uint64_t)max);
|
|
}
|
|
inline int kill(int pid) {
|
|
return (int)syscall1(Zenith::SYS_KILL, (uint64_t)pid);
|
|
}
|
|
inline int devlist(Zenith::DevInfo* buf, int max) {
|
|
return (int)syscall2(Zenith::SYS_DEVLIST, (uint64_t)buf, (uint64_t)max);
|
|
}
|
|
|
|
// Window server
|
|
inline int win_create(const char* title, int w, int h, Zenith::WinCreateResult* result) {
|
|
return (int)syscall4(Zenith::SYS_WINCREATE, (uint64_t)title, (uint64_t)w, (uint64_t)h, (uint64_t)result);
|
|
}
|
|
inline int win_destroy(int id) {
|
|
return (int)syscall1(Zenith::SYS_WINDESTROY, (uint64_t)id);
|
|
}
|
|
inline int win_present(int id) {
|
|
return (int)syscall1(Zenith::SYS_WINPRESENT, (uint64_t)id);
|
|
}
|
|
inline int win_poll(int id, Zenith::WinEvent* event) {
|
|
return (int)syscall2(Zenith::SYS_WINPOLL, (uint64_t)id, (uint64_t)event);
|
|
}
|
|
inline int win_enumerate(Zenith::WinInfo* info, int max) {
|
|
return (int)syscall2(Zenith::SYS_WINENUM, (uint64_t)info, (uint64_t)max);
|
|
}
|
|
inline uint64_t win_map(int id) {
|
|
return (uint64_t)syscall1(Zenith::SYS_WINMAP, (uint64_t)id);
|
|
}
|
|
inline int win_sendevent(int id, const Zenith::WinEvent* event) {
|
|
return (int)syscall2(Zenith::SYS_WINSENDEVENT, (uint64_t)id, (uint64_t)event);
|
|
}
|
|
|
|
}
|