aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* Fix import orderHimbeer2024-07-2712-27/+4
* kernel: Simplify HartData => BootArgs by using sscratch Csr typeHimbeer2024-07-271-15/+8
* trap: Make Frame the root structHimbeer2024-07-275-51/+51
* syscall: Mark end() noreturnHimbeer2024-07-271-2/+2
* syscall: Rename uprint => consoleWriteHimbeer2024-07-271-3/+3
* paging: Enforce permission checks on in-kernel translationsHimbeer2024-07-272-3/+20
* syscall: Turn uprint() into proper console writeHimbeer2024-07-271-6/+8
* syscall: Raise page fault if invalid address is passed to uprintHimbeer2024-07-271-2/+7
* syscall: Fail on zero address parameter valuesHimbeer2024-07-271-4/+5
* process: Remove infinite scheduling recursion fixmeHimbeer2024-07-271-1/+1
* process: Remove 'suspended' state, instead requiring an entry point for threa...Himbeer2024-07-271-7/+7
* syscall: Enable user memory access when launching an ELFHimbeer2024-07-271-0/+3
* process: Fix create() panicking on ELFs smaller than the ELF buffer sizeHimbeer2024-07-271-1/+6
* syscall: Add errorName syscall to convert error code to stringHimbeer2024-07-271-6/+34
* paging: Reintroduce setUserMemoryAccess functionHimbeer2024-07-271-0/+6
* Move sysexchange frame return logic to trap.Frame methodsHimbeer2024-07-274-43/+33
* sysexchange: Simplify kernel-to-user error conversion (#64)Himbeer2024-07-272-277/+24
* syscall: Reorder handler functions to match numberingHimbeer2024-07-271-18/+18
* syscall: Use std.math.cast instead of checked @truncateHimbeer2024-07-271-5/+4
* syscall: Renumber system calls after VFS removalHimbeer2024-07-271-5/+5
* process: Remove copyBytes and copyBuffer methodsHimbeer2024-07-272-48/+0
* Remove VFS entirely (#56)Himbeer2024-07-274-897/+1
* kernel: Update general panic message to include sepc and stval CSRsHimbeer2024-07-272-8/+18
* Rephrase panic messagesHimbeer2024-07-274-25/+20
* syscall: Support termination of other processes or (individual) threadsHimbeer2024-07-272-7/+34
* kernel: Remove PCI(e) driverHimbeer2024-07-272-784/+0
* kernel: Remove all builtin resources (/userinit) (#60)Himbeer2024-07-272-137/+0
* resources: Remove VFS stream /io/debug, use uprint instead (#60)Himbeer2024-07-271-42/+0
* syscall: Convert VFS hook /process/create => launch(bytes: [*]align(@alignOf(...Himbeer2024-07-272-152/+16
* syscall: Restrict processId() and threadId() proc parameter to const pointerHimbeer2024-07-271-2/+2
* syscall: Revert VFS hook /process/self/thread_id => threadId() usize (#60)Himbeer2024-07-272-22/+6
* syscall: Revert VFS hook /process/self/id => processId() usize (#60)Himbeer2024-07-272-28/+20
* syscall: Revert VFS hook /process/self/terminate => terminate() void (#60)Himbeer2024-07-272-19/+9
* paging: Mark pages -rw- during zeroed allocation to ensure that reusing a pag...Himbeer2024-07-261-1/+10
* vfs: Annotate all problematic directory hook usages with fixmeHimbeer2024-07-251-0/+2
* vfs: Implement directory (hook) listingHimbeer2024-07-252-23/+98
* sysexchange: Handle invalid and user-provided Status codesHimbeer2024-07-251-0/+17
* vfs: Alias sysexchange.Result to ResultHimbeer2024-07-251-9/+10
* vfs+syscall: Flatten nested control flowHimbeer2024-07-252-138/+147
* vfs: Make callbacks to provide or remove resources optional for DirHooksHimbeer2024-07-243-12/+27
* vfs: Require listing implementation for DirHooksHimbeer2024-07-242-1/+6
* syscall: Update provideFile signature to new OpenFn-less context systemHimbeer2024-07-211-4/+6
* vfs: Fix File.closeFn callback not being invoked if the file is provided by t...Himbeer2024-07-211-1/+6
* vfs: Fix File.closeFn callback not being calledHimbeer2024-07-211-0/+7
* vfs: Don't set FileContext.inner initially but provide FileContext.initializerHimbeer2024-07-212-6/+8
* process: Switch to kernel page table before (potentially) unmapping current p...Himbeer2024-07-213-7/+12
* process: Increment PID after creating a processHimbeer2024-07-211-0/+2
* resources: Fix /process/create executable buffer length not being expanded af...Himbeer2024-07-211-0/+6
* sbi: Rename Unknown error to SbiUnknown to distinguish it from an error not m...Himbeer2024-07-212-4/+4
* resources: Fix zero-length buffer being passed to readHookedHimbeer2024-07-211-6/+35