summaryrefslogtreecommitdiff
path: root/Base/usr/share
AgeCommit message (Collapse)Author
2023-02-04Kernel+SystemServer+Base: Introduce the RAMFS filesystemLiav A
This filesystem is based on the code of the long-lived TmpFS. It differs from that filesystem in one keypoint - its root inode doesn't have a sticky bit on it. Therefore, we mount it on /dev, to ensure only root can modify files on that directory. In addition to that, /tmp is mounted directly in the SystemServer main (start) code, so it's no longer specified in the fstab file. We ensure that /tmp has a sticky bit and has the value 0777 for root directory permissions, which is certainly a special case when using RAM-backed (and in general other) filesystems. Because of these 2 changes, it's no longer needed to maintain the TmpFS filesystem, hence it's removed (renamed to RAMFS), because the RAMFS represents the purpose of this filesystem in a much better way - it relies on being backed by RAM "storage", and therefore it's easy to conclude it's temporary and volatile, so its content is gone on either system shutdown or unmounting of the filesystem.
2023-01-19Utilities: Replace fgrep with grep --fixed-stringsPeter Elliott
2023-01-15Utilities: Add new utility for converting images to raw bitmap binariesLiav A
I used this utility to check if the possible TGA images' cases for different origins (explictly the Y origin) are generating the same bitmap, as I felt that my eyes are not a good-enough measurement tool for this kind of task. This might be useful in the future for testing other implementations so I rather have this nice utility in our codebase.
2023-01-08Base: Move GUI application man pages into their own subsectionkleines Filmröllchen
We do not want to move POSIX utilities into subsections since they have standard names, but we can do whatever we want with Applications :^). This is particularly advantageous as many applications contain several images, which declutters the man1 directory.
2023-01-08markdown-check: Check that no old-style inter-manpage links are usedkleines Filmröllchen
We've had quite some instances of people reintroducing these kinds of links because they didn't know about the "new" help:// scheme. This check should now prevent that from happening, though it might in rare circumstances trigger a false positive.
2023-01-06Kernel: Make i8042 controller initialization sequence more robustLiav A
The setting of scan code set sequence is removed, as it's buggy and could lead the controller to fail immediately when doing self-test afterwards. We will restore it when we understand how to do so safely. Allow the user to determine a preferred detection path with a new kernel command line argument. The defualt option is to check i8042 presence with an ACPI check and if necessary - an "aggressive" test to determine i8042 existence in the system. Also, keep the i8042 controller pointer on the stack, so don't assign m_i8042_controller member pointer if it does not exist.
2023-01-02Demos: Remove "Mouse" applicationAndreas Kling
This was a plain-looking test app for debugging mouse events. Mouse events work now, and if we want mouse testing facilities, they can be added to MouseSettings instead.
2023-01-02Base: Move GML Widget documentation to subsubsectionkleines Filmröllchen
This is not only convenient, but also a subsection testcase :^)
2023-01-02Base: Move GML documentation into subsectionkleines Filmröllchen
That was the whole point of this endeavour :^)
2023-01-02Base: Document manpage structure separatelykleines Filmröllchen
This section is now removed from Help(1) and man(1).
2022-12-31Meta: Fix link to relocated intel.com webpageBen Wiederhake
Using archive.org, it appears that this page has moved at some point between May 14, 2021, and December 22, 2022, for no discernible reason.
2022-12-31Meta: Fix link to wrong version of commit in Mitigations.mdBen Wiederhake
The old commit seems to be the one from the PR, hence it is not in the master branch.
2022-12-31Utilities: Introduce the ldd utilityLiav A
This utility lets a user to figure out what are the dependency libraries for an ELF dynamic object, whether it's a dynamically loaded executable or dynamically loaded library.
2022-12-30Kernel: Disallow executing SUID binaries if process is jailedLiav A
Check if the process we are currently running is in a jail, and if that is the case, fail early with the EPERM error code. Also, as Brian noted, we should also disallow attaching to a jail in case of already running within a setid executable, as this leaves the user with false thinking of being secure (because you can't exec new setid binaries), but the current program is still marked setid, which means that at the very least we gained permissions while we didn't expect it, so let's block it.
2022-12-30Documentation: Update FontEditor document to be in-sync with latestdjwisdom
2022-12-28Documentation: Remove i686 supportLiav A
2022-12-26Base: Mention pledge promise for jail-specific syscallsLiav A
2022-12-22Base: Mention new immutable memory mappings security featureLiav A
2022-12-15LibCore: Use ';' to split socket path in `SOCKET_TAKEOVER`Federico Guerinoni
This allow to use socket path with spaces inside. Closes #16436.
2022-12-15Base: Add man page for the dd commandEdward Banner
Base: Add man page for the dd command
2022-12-12Games: Add ColorLinesOleg Kosenkov
2022-12-12Games: Add help entries for Solitaire and SpiderAndrea Giancola
2022-12-09Base: Add a note about Jails open access in the Mitigations(7) documentLiav A
2022-12-09LibGUI: Split OpacitySlider into vertical and horizontal helper classesFrHun
2022-12-06AK+Everywhere: Rename String to DeprecatedStringLinus Groh
We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
2022-12-04Utilities: Add stringsAlec Murphy
2022-12-03Base: Add a description about Jails to the Mitigations(7) documentLiav A
We add a new document entry to mention jailed processes' restrictions, so it is clear which restrictions apply when using Jails.
2022-11-29Base: Update and expand profile(1) manpageSam Atkins
2022-11-26Utilities+Base: Add unveil utilityLiav A
This utility essentially creates a filesystem sandbox for a specified command, so it can be tested with only the unveiled paths the user specifies beforehand.
2022-11-26Userland: Enhance jail-attach utility to support existing and new jailsLiav A
The Core::System::create_jail function already provided the new jail index as a result, so it was just a matter of using it when calling the LibCore join_jail function to use the new jail.
2022-11-25Base: Document Presenter and its file formatkleines Filmröllchen
2022-11-07Base: Add manpages for which(1) and stat(1)jahway603
2022-11-05Userland: Add support for jailsLiav A
This happens in two ways: 1. LibCore now has two new methods for creating Jails and attaching processes to a Jail. 2. We introduce 3 new utilities - lsjails, jail-create and jails-attach, which list jails, create jails and attach processes to a Jail, respectively.
2022-11-05Base: Add information about the new /sys/kernel/jails nodeLiav A
2022-11-05Games: Add BrickGameOleg Kosenkov
2022-11-03Everywhere: Clean up "the the" comment typosNico Weber
2022-11-03Games: Add Floodimplicitfield
2022-11-02Base: Update tail(1) man pagedemostanis
2022-10-27Base: Document scheduler_{get,set}_parameters syscallskleines Filmröllchen
2022-10-25Base: Describe the moved SysFS power_state node in SysFS documentLiav A
2022-10-25Kernel+Userland: Move /sys/firmware/power_state to /sys/kernel directoryLiav A
Let's put the power_state global node into the /sys/kernel directory, because that directory represents all global nodes and variables being related to the Kernel. It's also a mutable node, that is more acceptable being in the mentioned directory due to the fact that all other files in the /sys/firmware directory are just firmware blobs and are not mutable at all.
2022-10-25Base: Remove all global entries from the ProcFS documentLiav A
2022-10-25Base: Use new global variables at /sys/kernel/ directoryLiav A
2022-10-25sysctl: Use /sys/kernel/variables/ directory instead of /proc/sysLiav A
2022-10-25Base: Document the new /sys/kernel/ directoryLiav A
2022-10-22Kernel+Base: Introduce MS_NOREGULAR mount flagLiav A
This flag doesn't conform to any POSIX standard nor is found in any OS out there. The idea behind this mount flag is to ensure that only non-regular files will be placed in a filesystem, which includes device nodes, symbolic links, directories, FIFOs and sockets. Currently, the only valid case for using this mount flag is for TmpFS instances, where we want to mount a TmpFS but disallow any kind of regular file and only allow other types of files on the filesystem.
2022-10-22Base: Rename jp(1) manual page to json(1)Liav A
2022-10-16Base: Remove /proc/devices nodeLiav A
That node was removed in a previous commit so let's remove it from this document too.
2022-10-12checksum: Support the '--check' optionimplicitfield
This commit also updates 'checksum' to use the Core::Stream::File API.
2022-10-12shot: Add ability to edit in PixelPaintJeremy Borgman