Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-12-31 | sftp: Add sftp serverHEADmaster | Anton Kling | |
2024-12-31 | libc: opendir should not keep a internal offset | Anton Kling | |
2024-12-31 | stat: Use the standard values for S_ISDIR/S_ISREG etc | Anton Kling | |
2024-12-31 | libc: Change names for head/final in malloc | Anton Kling | |
This used to cause problems when linking | |||
2024-12-31 | libc: Add more sv/sb functions | Anton Kling | |
2024-12-16 | rdate: Fix error reporting and code formatting | Anton Kling | |
2024-12-16 | libc: Add gai_strerror | Anton Kling | |
2024-12-15 | libc: Fix undefined behavior for non positive VLA | Anton Kling | |
Apparently a VLA of zero size is undefined behavior. | |||
2024-12-15 | sh: source /profile file | Anton Kling | |
2024-12-15 | sh: Partially working strings using "" | Anton Kling | |
2024-12-15 | sh: Add setting environment variables | Anton Kling | |
2024-12-15 | libc: Add setenv/getenv | Anton Kling | |
2024-12-14 | procfs: Add `stat` | Anton Kling | |
2024-12-14 | mmu: Remove recursion in ksbrk | Anton Kling | |
Due to buggy edge cases it caused logic bugs which caused stack overflows. There should be no need to make any additional checks after the table was created anyways so it is better to just skip it. | |||
2024-12-14 | procfs: Add `self` and `id` | Anton Kling | |
2024-12-14 | sb/printf: Add ksbprintf | Anton Kling | |
Easier to add formatted strings to the string builder without using intermediate buffers. | |||
2024-12-14 | sb: Allow input to be "ignored" | Anton Kling | |
This removes edge cases from read calls and makes bugs harder to introduce. | |||
2024-12-12 | formatting: Use clang-format on all projects | Anton Kling | |
This commit also add braces to all `if` statements. | |||
2024-12-12 | kernel: Fix/improve cleanup of process after exit | Anton Kling | |
2024-12-12 | signal: Remove old way of sending signals and instead use procfs | Anton Kling | |
2024-12-12 | procfs: Add a procfs | Anton Kling | |
Userland can now interface with processes by writing/reading from `/proc/<pid>/<entry>` It can send signals, for example `echo 15 > /proc/1/signal` | |||
2024-12-11 | kernel: Add more sv functions and change interfaces | Anton Kling | |
2024-12-10 | kernel: Add string view and string builder | Anton Kling | |
This makes write/read calls that use strings to communicate much simpler and less error prone. | |||
2024-12-10 | kernel: Add kbnprintf | Anton Kling | |
Like snprintf but without null termination | |||
2024-12-09 | timer: Use strings instead of direct int64_t to communicate with userland | Anton Kling | |
This makes it easier to write and read from /dev/clock using shell scripts. The actual performance decrease will be minimal and the interface is not that perfect for proper time keeping anyways. | |||
2024-12-09 | kernel: Add a way to parse numbers from C strings | Anton Kling | |
After making this change I am now actually doubting if using C strings is a good idea and maybe it should just always just the string view library that userland makes use of. But old code and the upcoming commits rely upon this so it is a change my future less lazy self will do. | |||
2024-12-09 | kernel: Add ksnprintf | Anton Kling | |
2024-12-09 | lock: Add lock utility | Anton Kling | |
2024-12-09 | sh: Add exit command | Anton Kling | |
2024-12-09 | libc: sv add number parsing | Anton Kling | |
2024-12-09 | mmu: Make certain allocations physical and virtual mapping linear | Anton Kling | |
Previously it was possible for fragmentation to occur and as a result certain allocations would have a linear virtual address space but not a linear physical address space. This is bad since a lot of calls to kmalloc_align rely upon both being linear, it has now been changed such that all allocations done by kmalloc_align now guarantee this mapping holds for both virtual and physical addresses. It was due to oversight and sheer luck that this had been working for so long. | |||
2024-12-09 | tcpserver: Add the basics of tcpserver | Anton Kling | |
2024-12-08 | vfs: Bug fix... | Anton Kling | |
The commit is self explanatory. It was a simple mistype that went unnoticed for a while. | |||
2024-12-08 | vfs: Force truncation even without permissions | Anton Kling | |
O_TRUNC as a mode does not seem to imply write permissions but we still wish to truncate the file before giving back a file descriptor. Therefore the kernel can now override any permission checks if it wishes to do a truncation while still using the "ordinary path". | |||
2024-12-08 | audio: Control master volume through /dev/volume | Anton Kling | |
2024-12-08 | kernel/libc: Add isdigit() | Anton Kling | |
2024-12-08 | kernel: Change error reporting for exec* | Anton Kling | |
2024-12-02 | ac97: Messy fixes to audio | Anton Kling | |
It seems to work completely now, but it is still very messy. | |||
2024-12-02 | minibox: Add true, false | Anton Kling | |
2024-11-30 | audio/pcm: Add a proram to play audio files | Anton Kling | |
2024-11-30 | kernel: Change math.h to use macros | Anton Kling | |
Having min/max be functions was a stupid decision in the first place | |||
2024-11-30 | ac97/audio: Add audio | Anton Kling | |
Incomplete but still very cool | |||
2024-11-30 | vfs: Move read() to vfs.c | Anton Kling | |
2024-11-29 | ext2: Handle "zero" blocks | Anton Kling | |
Any blocks with the value zero appear to indicate a region completly filled to zeros. I don't see this anywhere in the spec but it does make sense and the behavior matches files that I have on my FreeBSD machine so I guess it must be valid. | |||
2024-11-28 | add missing files | Anton Kling | |
2024-11-28 | changes | Anton Kling | |
2024-11-24 | sh: Remove sh and use the "minibox" version instead | Anton Kling | |
2024-11-24 | libc: fclose should always close the associated file descriptor | Anton Kling | |
My previous "fix" was a misreading of the spec. | |||
2024-11-23 | vfs: Support O_TRUNC | Anton Kling | |
2024-11-23 | vfs: Add O_APPEND support + refactoring | Anton Kling | |