diff options
author | Liav A <liavalb@gmail.com> | 2023-01-13 01:02:26 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-01-13 13:41:30 +0100 |
commit | e241b47fee775ad9be40c8a219c4ee083ed32947 (patch) | |
tree | 74541e1dfe6779fd7e5f7364d45243303379cf89 /Userland/Services | |
parent | 16b6e644d745c2171cdcafb057e42380da258575 (diff) | |
download | serenity-e241b47fee775ad9be40c8a219c4ee083ed32947.zip |
Userland: Remove a bunch of unveil calls on /sys/kernel/processes
These are not needed anymore since the introduction of the new
get_root_session_id syscall.
Diffstat (limited to 'Userland/Services')
-rw-r--r-- | Userland/Services/LoginServer/main.cpp | 1 | ||||
-rw-r--r-- | Userland/Services/SpiceAgent/main.cpp | 1 | ||||
-rw-r--r-- | Userland/Services/WebContent/main.cpp | 1 | ||||
-rw-r--r-- | Userland/Services/WebDriver/main.cpp | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/Userland/Services/LoginServer/main.cpp b/Userland/Services/LoginServer/main.cpp index 4481b201ba..3318cc93bd 100644 --- a/Userland/Services/LoginServer/main.cpp +++ b/Userland/Services/LoginServer/main.cpp @@ -70,7 +70,6 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) TRY(Core::System::unveil("/etc/shadow", "r")); TRY(Core::System::unveil("/etc/group", "r")); TRY(Core::System::unveil("/bin/SystemServer", "x")); - TRY(Core::System::unveil("/sys/kernel/processes", "r")); TRY(Core::System::unveil("/res", "r")); TRY(Core::System::unveil(nullptr, nullptr)); diff --git a/Userland/Services/SpiceAgent/main.cpp b/Userland/Services/SpiceAgent/main.cpp index 89588df46d..89843e19ef 100644 --- a/Userland/Services/SpiceAgent/main.cpp +++ b/Userland/Services/SpiceAgent/main.cpp @@ -18,7 +18,6 @@ ErrorOr<int> serenity_main(Main::Arguments) TRY(Core::System::pledge("unix rpath wpath stdio sendfd recvfd")); TRY(Core::System::unveil(SPICE_DEVICE, "rw"sv)); - TRY(Core::System::unveil("/sys/kernel/processes", "r")); TRY(Core::System::unveil("/tmp/session/%sid/portal/clipboard", "rw")); TRY(Core::System::unveil(nullptr, nullptr)); diff --git a/Userland/Services/WebContent/main.cpp b/Userland/Services/WebContent/main.cpp index ebd2959f78..dda03d5330 100644 --- a/Userland/Services/WebContent/main.cpp +++ b/Userland/Services/WebContent/main.cpp @@ -32,7 +32,6 @@ ErrorOr<int> serenity_main(Main::Arguments) if (Core::File::exists(webdriver_socket_path)) TRY(Core::System::unveil(webdriver_socket_path, "rw"sv)); - TRY(Core::System::unveil("/sys/kernel/processes", "r")); TRY(Core::System::unveil("/res", "r")); TRY(Core::System::unveil("/etc/timezone", "r")); TRY(Core::System::unveil("/usr/lib", "r")); diff --git a/Userland/Services/WebDriver/main.cpp b/Userland/Services/WebDriver/main.cpp index a3261c377e..4436635f0b 100644 --- a/Userland/Services/WebDriver/main.cpp +++ b/Userland/Services/WebDriver/main.cpp @@ -100,7 +100,6 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) TRY(Core::System::unveil("/bin/headless-browser", "rx")); TRY(Core::System::unveil("/etc/timezone", "r")); TRY(Core::System::unveil("/res/icons", "r")); - TRY(Core::System::unveil("/sys/kernel/processes", "r")); TRY(Core::System::unveil(webdriver_socket_path, "rwc"sv)); TRY(Core::System::unveil(nullptr, nullptr)); |