[zion] Move thread syscalls to the new format.
This commit is contained in:
parent
c6dd0bbb0f
commit
f755cd38fe
|
@ -29,6 +29,7 @@ add_executable(zion
|
||||||
scheduler/scheduler.cpp
|
scheduler/scheduler.cpp
|
||||||
syscall/process.cpp
|
syscall/process.cpp
|
||||||
syscall/syscall.cpp
|
syscall/syscall.cpp
|
||||||
|
syscall/thread.cpp
|
||||||
syscall/syscall_enter.s
|
syscall/syscall_enter.s
|
||||||
zion.cpp)
|
zion.cpp)
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,13 @@
|
||||||
|
|
||||||
#include "ztypes.h"
|
#include "ztypes.h"
|
||||||
|
|
||||||
|
#define SYS0(name) \
|
||||||
|
struct Z##name##Req {}; \
|
||||||
|
[[nodiscard]] inline z_err_t Z##name() { \
|
||||||
|
Z##name##Req req{}; \
|
||||||
|
return SysCall1(kZion##name, &req); \
|
||||||
|
}
|
||||||
|
|
||||||
#define SYS1(name, t1, a1) \
|
#define SYS1(name, t1, a1) \
|
||||||
struct Z##name##Req { \
|
struct Z##name##Req { \
|
||||||
t1 a1; \
|
t1 a1; \
|
||||||
|
@ -86,11 +93,9 @@ SYS5(ProcessSpawn, z_cap_t, proc_cap, z_cap_t, bootstrap_cap, z_cap_t*,
|
||||||
new_proc_cap, z_cap_t*, new_vmas_cap, z_cap_t*, new_bootstrap_cap);
|
new_proc_cap, z_cap_t*, new_vmas_cap, z_cap_t*, new_bootstrap_cap);
|
||||||
|
|
||||||
SYS2(ThreadCreate, z_cap_t, proc_cap, z_cap_t*, thread_cap);
|
SYS2(ThreadCreate, z_cap_t, proc_cap, z_cap_t*, thread_cap);
|
||||||
|
SYS4(ThreadStart, z_cap_t, thread_cap, uint64_t, entry, uint64_t, arg1,
|
||||||
[[nodiscard]] z_err_t ZThreadStart(z_cap_t thread_cap, uint64_t entry,
|
uint64_t, arg2);
|
||||||
uint64_t arg1, uint64_t arg2);
|
SYS0(ThreadExit);
|
||||||
|
|
||||||
void ZThreadExit();
|
|
||||||
|
|
||||||
[[nodiscard]] z_err_t ZAddressSpaceMap(z_cap_t vmas_cap, uint64_t vmas_offset,
|
[[nodiscard]] z_err_t ZAddressSpaceMap(z_cap_t vmas_cap, uint64_t vmas_offset,
|
||||||
z_cap_t vmmo_cap, uint64_t* vaddr);
|
z_cap_t vmmo_cap, uint64_t* vaddr);
|
||||||
|
|
|
@ -35,8 +35,8 @@ const uint64_t kZionProcessSpawn = 0x2;
|
||||||
|
|
||||||
// Thread Calls.
|
// Thread Calls.
|
||||||
const uint64_t kZionThreadCreate = 0x10;
|
const uint64_t kZionThreadCreate = 0x10;
|
||||||
#define Z_THREAD_START 0x11
|
const uint64_t kZionThreadStart = 0x11;
|
||||||
#define Z_THREAD_EXIT 0x12
|
const uint64_t kZionThreadExit = 0x12;
|
||||||
|
|
||||||
// Memory Calls
|
// Memory Calls
|
||||||
#define Z_ADDRESS_SPACE_MAP 0x21
|
#define Z_ADDRESS_SPACE_MAP 0x21
|
||||||
|
|
|
@ -14,15 +14,9 @@
|
||||||
#include "scheduler/process_manager.h"
|
#include "scheduler/process_manager.h"
|
||||||
#include "scheduler/scheduler.h"
|
#include "scheduler/scheduler.h"
|
||||||
#include "syscall/process.h"
|
#include "syscall/process.h"
|
||||||
|
#include "syscall/thread.h"
|
||||||
#include "usr/zcall_internal.h"
|
#include "usr/zcall_internal.h"
|
||||||
|
|
||||||
#define RET_IF_NULL(expr) \
|
|
||||||
{ \
|
|
||||||
if (!expr) { \
|
|
||||||
return Z_ERR_CAP_TYPE; \
|
|
||||||
} \
|
|
||||||
}
|
|
||||||
|
|
||||||
#define EFER 0xC0000080
|
#define EFER 0xC0000080
|
||||||
#define STAR 0xC0000081
|
#define STAR 0xC0000081
|
||||||
#define LSTAR 0xC0000082
|
#define LSTAR 0xC0000082
|
||||||
|
@ -66,30 +60,6 @@ z_err_t ValidateCap(const RefPtr<Capability>& cap, uint64_t permissions) {
|
||||||
return Z_OK;
|
return Z_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
z_err_t ThreadCreate(ZThreadCreateReq* req) {
|
|
||||||
auto& curr_proc = gScheduler->CurrentProcess();
|
|
||||||
auto cap = curr_proc.GetCapability(req->proc_cap);
|
|
||||||
RET_ERR(ValidateCap(cap, ZC_PROC_SPAWN_THREAD));
|
|
||||||
|
|
||||||
auto parent_proc = cap->obj<Process>();
|
|
||||||
RET_IF_NULL(parent_proc);
|
|
||||||
auto thread = parent_proc->CreateThread();
|
|
||||||
*req->thread_cap = curr_proc.AddNewCapability(thread, ZC_WRITE);
|
|
||||||
return Z_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
z_err_t ThreadStart(ZThreadStartReq* req) {
|
|
||||||
auto& curr_proc = gScheduler->CurrentProcess();
|
|
||||||
auto cap = curr_proc.GetCapability(req->thread_cap);
|
|
||||||
RET_ERR(ValidateCap(cap, ZC_WRITE));
|
|
||||||
|
|
||||||
auto thread = cap->obj<Thread>();
|
|
||||||
RET_IF_NULL(thread);
|
|
||||||
// FIXME: validate entry point is in user space.
|
|
||||||
thread->Start(req->entry, req->arg1, req->arg2);
|
|
||||||
return Z_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
z_err_t AddressSpaceMap(ZAddressSpaceMapReq* req, ZAddressSpaceMapResp* resp) {
|
z_err_t AddressSpaceMap(ZAddressSpaceMapReq* req, ZAddressSpaceMapResp* resp) {
|
||||||
auto& curr_proc = gScheduler->CurrentProcess();
|
auto& curr_proc = gScheduler->CurrentProcess();
|
||||||
auto vmas_cap = curr_proc.GetCapability(req->vmas_cap);
|
auto vmas_cap = curr_proc.GetCapability(req->vmas_cap);
|
||||||
|
@ -248,14 +218,10 @@ extern "C" z_err_t SyscallHandler(uint64_t call_id, void* req, void* resp) {
|
||||||
// syscall/process.h
|
// syscall/process.h
|
||||||
CASE(ProcessExit);
|
CASE(ProcessExit);
|
||||||
CASE(ProcessSpawn);
|
CASE(ProcessSpawn);
|
||||||
|
// syscall/thread.h
|
||||||
CASE(ThreadCreate);
|
CASE(ThreadCreate);
|
||||||
case Z_THREAD_START:
|
CASE(ThreadStart);
|
||||||
return ThreadStart(reinterpret_cast<ZThreadStartReq*>(req));
|
CASE(ThreadExit);
|
||||||
case Z_THREAD_EXIT:
|
|
||||||
thread->Exit();
|
|
||||||
panic("Returned from thread exit");
|
|
||||||
break;
|
|
||||||
|
|
||||||
case Z_ADDRESS_SPACE_MAP:
|
case Z_ADDRESS_SPACE_MAP:
|
||||||
return AddressSpaceMap(reinterpret_cast<ZAddressSpaceMapReq*>(req),
|
return AddressSpaceMap(reinterpret_cast<ZAddressSpaceMapReq*>(req),
|
||||||
reinterpret_cast<ZAddressSpaceMapResp*>(resp));
|
reinterpret_cast<ZAddressSpaceMapResp*>(resp));
|
||||||
|
|
|
@ -7,3 +7,10 @@ void InitSyscall();
|
||||||
|
|
||||||
// FIXME: This probably belongs in capability.h
|
// FIXME: This probably belongs in capability.h
|
||||||
z_err_t ValidateCap(const RefPtr<Capability>& cap, uint64_t permissions);
|
z_err_t ValidateCap(const RefPtr<Capability>& cap, uint64_t permissions);
|
||||||
|
|
||||||
|
#define RET_IF_NULL(expr) \
|
||||||
|
{ \
|
||||||
|
if (!expr) { \
|
||||||
|
return Z_ERR_CAP_TYPE; \
|
||||||
|
} \
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
#include "syscall/thread.h"
|
||||||
|
|
||||||
|
#include "scheduler/scheduler.h"
|
||||||
|
#include "syscall/syscall.h"
|
||||||
|
|
||||||
|
z_err_t ThreadCreate(ZThreadCreateReq* req) {
|
||||||
|
auto& curr_proc = gScheduler->CurrentProcess();
|
||||||
|
auto cap = curr_proc.GetCapability(req->proc_cap);
|
||||||
|
RET_ERR(ValidateCap(cap, ZC_PROC_SPAWN_THREAD));
|
||||||
|
|
||||||
|
auto parent_proc = cap->obj<Process>();
|
||||||
|
RET_IF_NULL(parent_proc);
|
||||||
|
auto thread = parent_proc->CreateThread();
|
||||||
|
*req->thread_cap = curr_proc.AddNewCapability(thread, ZC_WRITE);
|
||||||
|
return Z_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
z_err_t ThreadStart(ZThreadStartReq* req) {
|
||||||
|
auto& curr_proc = gScheduler->CurrentProcess();
|
||||||
|
auto cap = curr_proc.GetCapability(req->thread_cap);
|
||||||
|
RET_ERR(ValidateCap(cap, ZC_WRITE));
|
||||||
|
|
||||||
|
auto thread = cap->obj<Thread>();
|
||||||
|
RET_IF_NULL(thread);
|
||||||
|
// FIXME: validate entry point is in user space.
|
||||||
|
thread->Start(req->entry, req->arg1, req->arg2);
|
||||||
|
return Z_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
z_err_t ThreadExit(ZThreadExitReq*) {
|
||||||
|
auto curr_thread = gScheduler->CurrentThread();
|
||||||
|
curr_thread->Exit();
|
||||||
|
panic("Returned from thread exit");
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "include/zcall.h"
|
||||||
|
|
||||||
|
z_err_t ThreadCreate(ZThreadCreateReq* req);
|
||||||
|
z_err_t ThreadStart(ZThreadStartReq* req);
|
||||||
|
z_err_t ThreadExit(ZThreadExitReq*);
|
|
@ -19,19 +19,6 @@ z_err_t SysCall1(uint64_t number, const void* first) {
|
||||||
return SysCall2(number, first, 0);
|
return SysCall2(number, first, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
z_err_t ZThreadStart(z_cap_t thread_cap, uint64_t entry, uint64_t arg1,
|
|
||||||
uint64_t arg2) {
|
|
||||||
ZThreadStartReq req{
|
|
||||||
.thread_cap = thread_cap,
|
|
||||||
.entry = entry,
|
|
||||||
.arg1 = arg1,
|
|
||||||
.arg2 = arg2,
|
|
||||||
};
|
|
||||||
return SysCall1(Z_THREAD_START, &req);
|
|
||||||
}
|
|
||||||
|
|
||||||
void ZThreadExit() { SysCall0(Z_THREAD_EXIT); }
|
|
||||||
|
|
||||||
z_err_t ZAddressSpaceMap(z_cap_t vmas_cap, uint64_t vmas_offset,
|
z_err_t ZAddressSpaceMap(z_cap_t vmas_cap, uint64_t vmas_offset,
|
||||||
z_cap_t vmmo_cap, uint64_t* vaddr) {
|
z_cap_t vmmo_cap, uint64_t* vaddr) {
|
||||||
ZAddressSpaceMapReq req{
|
ZAddressSpaceMapReq req{
|
||||||
|
|
|
@ -4,13 +4,6 @@
|
||||||
|
|
||||||
#include "include/ztypes.h"
|
#include "include/ztypes.h"
|
||||||
|
|
||||||
struct ZThreadStartReq {
|
|
||||||
z_cap_t thread_cap;
|
|
||||||
uint64_t entry;
|
|
||||||
uint64_t arg1;
|
|
||||||
uint64_t arg2;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct ZAddressSpaceMapReq {
|
struct ZAddressSpaceMapReq {
|
||||||
z_cap_t vmas_cap;
|
z_cap_t vmas_cap;
|
||||||
z_cap_t vmas_offset;
|
z_cap_t vmas_offset;
|
||||||
|
|
Loading…
Reference in New Issue