Переглянути джерело

Userland: Add LibSystem and funnel all syscalls through it

This achieves two things:

- Programs can now intentionally perform arbitrary syscalls by calling
  syscall(). This allows us to work on things like syscall fuzzing.

- It restricts the ability of userspace to make syscalls to a single
  4KB page of code. In order to call the kernel directly, an attacker
  must now locate this page and call through it.
Andreas Kling 4 роки тому
батько
коміт
e87eac9273
47 змінених файлів з 164 додано та 47 видалено
  1. 1 0
      CMakeLists.txt
  2. 0 1
      Kernel/API/Syscall.h
  3. 1 1
      Userland/DevTools/UserspaceEmulator/Emulator.cpp
  4. 2 1
      Userland/DynamicLoader/CMakeLists.txt
  5. 1 0
      Userland/Libraries/CMakeLists.txt
  6. 4 4
      Userland/Libraries/LibC/CMakeLists.txt
  7. 1 1
      Userland/Libraries/LibC/assert.cpp
  8. 1 1
      Userland/Libraries/LibC/dirent.cpp
  9. 1 1
      Userland/Libraries/LibC/fcntl.cpp
  10. 1 1
      Userland/Libraries/LibC/ioctl.cpp
  11. 1 1
      Userland/Libraries/LibC/mman.cpp
  12. 1 1
      Userland/Libraries/LibC/poll.cpp
  13. 1 1
      Userland/Libraries/LibC/sched.cpp
  14. 1 1
      Userland/Libraries/LibC/serenity.cpp
  15. 2 2
      Userland/Libraries/LibC/serenity.h
  16. 1 1
      Userland/Libraries/LibC/signal.cpp
  17. 1 1
      Userland/Libraries/LibC/stat.cpp
  18. 1 1
      Userland/Libraries/LibC/stdio.cpp
  19. 1 1
      Userland/Libraries/LibC/stdlib.cpp
  20. 1 1
      Userland/Libraries/LibC/sys/prctl.cpp
  21. 1 1
      Userland/Libraries/LibC/sys/ptrace.cpp
  22. 1 1
      Userland/Libraries/LibC/sys/select.cpp
  23. 1 1
      Userland/Libraries/LibC/sys/socket.cpp
  24. 1 1
      Userland/Libraries/LibC/sys/uio.cpp
  25. 1 1
      Userland/Libraries/LibC/sys/wait.cpp
  26. 0 1
      Userland/Libraries/LibC/termios.cpp
  27. 1 1
      Userland/Libraries/LibC/time.cpp
  28. 1 1
      Userland/Libraries/LibC/times.cpp
  29. 1 1
      Userland/Libraries/LibC/unistd.cpp
  30. 1 1
      Userland/Libraries/LibC/utime.cpp
  31. 1 1
      Userland/Libraries/LibC/utsname.cpp
  32. 0 1
      Userland/Libraries/LibCore/AnonymousBuffer.cpp
  33. 0 1
      Userland/Libraries/LibCore/File.cpp
  34. 2 2
      Userland/Libraries/LibELF/DynamicLinker.cpp
  35. 0 1
      Userland/Libraries/LibKeyboard/CharacterMap.cpp
  36. 1 1
      Userland/Libraries/LibPthread/CMakeLists.txt
  37. 1 1
      Userland/Libraries/LibPthread/pthread.cpp
  38. 7 0
      Userland/Libraries/LibSystem/CMakeLists.txt
  39. 51 0
      Userland/Libraries/LibSystem/syscall.cpp
  40. 62 0
      Userland/Libraries/LibSystem/syscall.h
  41. 1 1
      Userland/Tests/Kernel/invalid-any-pointer-assert.cpp
  42. 1 1
      Userland/Tests/Kernel/invalid-path-pointer-assert.cpp
  43. 1 1
      Userland/Utilities/crash.cpp
  44. 1 1
      Userland/Utilities/functrace.cpp
  45. 0 1
      Userland/Utilities/purge.cpp
  46. 1 1
      Userland/Utilities/strace.cpp
  47. 1 1
      Userland/Utilities/syscall.cpp

+ 1 - 0
CMakeLists.txt

@@ -140,6 +140,7 @@ add_link_options(--sysroot ${CMAKE_BINARY_DIR}/Root)
 
 include_directories(Userland/Libraries/LibC)
 include_directories(Userland/Libraries/LibM)
+include_directories(Userland/Libraries/LibSystem)
 include_directories(Userland/Services)
 include_directories(Userland)
 include_directories(${CMAKE_CURRENT_BINARY_DIR})

+ 0 - 1
Kernel/API/Syscall.h

@@ -504,7 +504,6 @@ inline uintptr_t invoke(Function function, T1 arg1, T2 arg2, T3 arg3)
 #define __ENUMERATE_SYSCALL(x) using Syscall::SC_##x;
 ENUMERATE_SYSCALLS(__ENUMERATE_SYSCALL)
 #undef __ENUMERATE_SYSCALL
-#define syscall Syscall::invoke
 
 }
 

+ 1 - 1
Userland/DevTools/UserspaceEmulator/Emulator.cpp

@@ -32,7 +32,6 @@
 #include <AK/Format.h>
 #include <AK/LexicalPath.h>
 #include <AK/MappedFile.h>
-#include <Kernel/API/Syscall.h>
 #include <LibELF/AuxiliaryVector.h>
 #include <LibELF/Image.h>
 #include <LibELF/Validation.h>
@@ -53,6 +52,7 @@
 #include <sys/stat.h>
 #include <sys/time.h>
 #include <sys/uio.h>
+#include <syscall.h>
 #include <termios.h>
 #include <unistd.h>
 

+ 2 - 1
Userland/DynamicLoader/CMakeLists.txt

@@ -10,11 +10,12 @@ set(ELF_SOURCES ${ELF_SOURCES} ../Libraries/LibELF/Arch/i386/plt_trampoline.S)
 file(GLOB LIBC_SOURCES1 "../Libraries/LibC/*.cpp")
 file(GLOB LIBC_SOURCES2 "../Libraries/LibC/*/*.cpp")
 file(GLOB LIBC_SOURCES3 "../Libraries/LibC/*.S")
+file(GLOB LIBSYSTEM_SOURCES "../Libraries/LibSystem/*.cpp")
 
 list(FILTER LIBC_SOURCES1 EXCLUDE REGEX ".+crt0.cpp")
 list(FILTER LIBC_SOURCES1 EXCLUDE REGEX ".+crt0.+.cpp")
 
-set(SOURCES ${LOADER_SOURCES} ${AK_SOURCES} ${ELF_SOURCES} ${LIBC_SOURCES1} ${LIBC_SOURCES2} ${LIBC_SOURCES3})
+set(SOURCES ${LOADER_SOURCES} ${AK_SOURCES} ${ELF_SOURCES} ${LIBC_SOURCES1} ${LIBC_SOURCES2} ${LIBC_SOURCES3} ${LIBSYSTEM_SOURCES})
 
 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-rtti -nostdlib -pie -fpic -DNO_TLS")
 

+ 1 - 0
Userland/Libraries/CMakeLists.txt

@@ -27,6 +27,7 @@ add_subdirectory(LibProtocol)
 add_subdirectory(LibPthread)
 add_subdirectory(LibRegex)
 add_subdirectory(LibSymbolClient)
+add_subdirectory(LibSystem)
 add_subdirectory(LibTar)
 add_subdirectory(LibTextCodec)
 add_subdirectory(LibThread)

+ 4 - 4
Userland/Libraries/LibC/CMakeLists.txt

@@ -81,10 +81,10 @@ add_custom_command(
 set(SOURCES ${LIBC_SOURCES} ${AK_SOURCES} ${ELF_SOURCES})
 
 serenity_libc_static(LibCStatic c)
-target_link_libraries(LibCStatic crt0 ssp)
-add_dependencies(LibCStatic LibM)
+target_link_libraries(LibCStatic crt0 ssp system)
+add_dependencies(LibCStatic LibM LibSystem)
 
 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static-libstdc++")
 serenity_libc(LibC c)
-target_link_libraries(LibC crt0 ssp)
-add_dependencies(LibC LibM)
+target_link_libraries(LibC crt0 ssp system)
+add_dependencies(LibC LibM LibSystem)

+ 1 - 1
Userland/Libraries/LibC/assert.cpp

@@ -24,12 +24,12 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <Kernel/API/Syscall.h>
 #include <assert.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <sys/internals.h>
+#include <syscall.h>
 #include <unistd.h>
 
 extern "C" {

+ 1 - 1
Userland/Libraries/LibC/dirent.cpp

@@ -26,7 +26,6 @@
 
 #include <AK/Assertions.h>
 #include <AK/StdLibExtras.h>
-#include <Kernel/API/Syscall.h>
 #include <dirent.h>
 #include <errno.h>
 #include <fcntl.h>
@@ -34,6 +33,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <sys/stat.h>
+#include <syscall.h>
 #include <unistd.h>
 
 extern "C" {

+ 1 - 1
Userland/Libraries/LibC/fcntl.cpp

@@ -24,11 +24,11 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <Kernel/API/Syscall.h>
 #include <errno.h>
 #include <fcntl.h>
 #include <stdarg.h>
 #include <string.h>
+#include <syscall.h>
 
 extern "C" {
 

+ 1 - 1
Userland/Libraries/LibC/ioctl.cpp

@@ -24,11 +24,11 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <Kernel/API/Syscall.h>
 #include <errno.h>
 #include <stdarg.h>
 #include <stdio.h>
 #include <sys/ioctl.h>
+#include <syscall.h>
 
 extern "C" {
 

+ 1 - 1
Userland/Libraries/LibC/mman.cpp

@@ -24,11 +24,11 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <Kernel/API/Syscall.h>
 #include <errno.h>
 #include <mman.h>
 #include <stdio.h>
 #include <string.h>
+#include <syscall.h>
 
 extern "C" {
 

+ 1 - 1
Userland/Libraries/LibC/poll.cpp

@@ -24,10 +24,10 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <Kernel/API/Syscall.h>
 #include <errno.h>
 #include <poll.h>
 #include <sys/time.h>
+#include <syscall.h>
 
 extern "C" {
 

+ 1 - 1
Userland/Libraries/LibC/sched.cpp

@@ -24,9 +24,9 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <Kernel/API/Syscall.h>
 #include <errno.h>
 #include <sched.h>
+#include <syscall.h>
 
 extern "C" {
 

+ 1 - 1
Userland/Libraries/LibC/serenity.cpp

@@ -24,10 +24,10 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <Kernel/API/Syscall.h>
 #include <errno.h>
 #include <serenity.h>
 #include <string.h>
+#include <syscall.h>
 
 extern "C" {
 

+ 2 - 2
Userland/Libraries/LibC/serenity.h

@@ -106,8 +106,8 @@ int anon_create(size_t size, int options);
 
 int serenity_readlink(const char* path, size_t path_length, char* buffer, size_t buffer_size);
 
-int getkeymap(char* name_buffer, size_t name_buffer_size, u32* map, u32* shift_map, u32* alt_map, u32* altgr_map, u32* shift_altgr_map);
-int setkeymap(const char* name, const u32* map, u32* const shift_map, const u32* alt_map, const u32* altgr_map, const u32* shift_altgr_map);
+int getkeymap(char* name_buffer, size_t name_buffer_size, uint32_t* map, uint32_t* shift_map, uint32_t* alt_map, uint32_t* altgr_map, uint32_t* shift_altgr_map);
+int setkeymap(const char* name, const uint32_t* map, uint32_t* const shift_map, const uint32_t* alt_map, const uint32_t* altgr_map, const uint32_t* shift_altgr_map);
 
 #ifdef __i386__
 ALWAYS_INLINE void send_secret_data_to_userspace_emulator(uintptr_t data1, uintptr_t data2, uintptr_t data3)

+ 1 - 1
Userland/Libraries/LibC/signal.cpp

@@ -25,12 +25,12 @@
  */
 
 #include <AK/Format.h>
-#include <Kernel/API/Syscall.h>
 #include <assert.h>
 #include <errno.h>
 #include <setjmp.h>
 #include <signal.h>
 #include <string.h>
+#include <syscall.h>
 #include <unistd.h>
 
 extern "C" {

+ 1 - 1
Userland/Libraries/LibC/stat.cpp

@@ -24,12 +24,12 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <Kernel/API/Syscall.h>
 #include <assert.h>
 #include <errno.h>
 #include <stdio.h>
 #include <string.h>
 #include <sys/stat.h>
+#include <syscall.h>
 #include <unistd.h>
 
 extern "C" {

+ 1 - 1
Userland/Libraries/LibC/stdio.cpp

@@ -30,7 +30,6 @@
 #include <AK/ScopedValueRollback.h>
 #include <AK/StdLibExtras.h>
 #include <AK/kmalloc.h>
-#include <Kernel/API/Syscall.h>
 #include <assert.h>
 #include <errno.h>
 #include <fcntl.h>
@@ -41,6 +40,7 @@
 #include <sys/internals.h>
 #include <sys/types.h>
 #include <sys/wait.h>
+#include <syscall.h>
 #include <unistd.h>
 
 struct FILE {

+ 1 - 1
Userland/Libraries/LibC/stdlib.cpp

@@ -30,7 +30,6 @@
 #include <AK/StdLibExtras.h>
 #include <AK/Types.h>
 #include <AK/Utf8View.h>
-#include <Kernel/API/Syscall.h>
 #include <LibELF/AuxiliaryVector.h>
 #include <alloca.h>
 #include <assert.h>
@@ -45,6 +44,7 @@
 #include <sys/mman.h>
 #include <sys/stat.h>
 #include <sys/wait.h>
+#include <syscall.h>
 #include <unistd.h>
 
 static void strtons(const char* str, char** endptr)

+ 1 - 1
Userland/Libraries/LibC/sys/prctl.cpp

@@ -24,11 +24,11 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <Kernel/API/Syscall.h>
 #include <errno.h>
 #include <stdarg.h>
 #include <stdio.h>
 #include <sys/prctl.h>
+#include <syscall.h>
 
 extern "C" {
 

+ 1 - 1
Userland/Libraries/LibC/sys/ptrace.cpp

@@ -25,9 +25,9 @@
  */
 
 #include <AK/LogStream.h>
-#include <Kernel/API/Syscall.h>
 #include <errno.h>
 #include <sys/ptrace.h>
+#include <syscall.h>
 
 extern "C" {
 

+ 1 - 1
Userland/Libraries/LibC/sys/select.cpp

@@ -24,11 +24,11 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <Kernel/API/Syscall.h>
 #include <errno.h>
 #include <stdio.h>
 #include <sys/select.h>
 #include <sys/time.h>
+#include <syscall.h>
 
 extern "C" {
 

+ 1 - 1
Userland/Libraries/LibC/sys/socket.cpp

@@ -25,12 +25,12 @@
  */
 
 #include <AK/Assertions.h>
-#include <Kernel/API/Syscall.h>
 #include <errno.h>
 #include <stdio.h>
 #include <string.h>
 #include <sys/socket.h>
 #include <sys/uio.h>
+#include <syscall.h>
 
 extern "C" {
 

+ 1 - 1
Userland/Libraries/LibC/sys/uio.cpp

@@ -24,9 +24,9 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <Kernel/API/Syscall.h>
 #include <errno.h>
 #include <sys/uio.h>
+#include <syscall.h>
 
 extern "C" {
 

+ 1 - 1
Userland/Libraries/LibC/sys/wait.cpp

@@ -24,9 +24,9 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <Kernel/API/Syscall.h>
 #include <assert.h>
 #include <sys/wait.h>
+#include <syscall.h>
 #include <unistd.h>
 
 extern "C" {

+ 0 - 1
Userland/Libraries/LibC/termios.cpp

@@ -24,7 +24,6 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <Kernel/API/Syscall.h>
 #include <assert.h>
 #include <errno.h>
 #include <sys/ioctl.h>

+ 1 - 1
Userland/Libraries/LibC/time.cpp

@@ -27,13 +27,13 @@
 #include <AK/String.h>
 #include <AK/StringBuilder.h>
 #include <AK/Time.h>
-#include <Kernel/API/Syscall.h>
 #include <assert.h>
 #include <errno.h>
 #include <stdio.h>
 #include <string.h>
 #include <sys/time.h>
 #include <sys/times.h>
+#include <syscall.h>
 #include <time.h>
 
 extern "C" {

+ 1 - 1
Userland/Libraries/LibC/times.cpp

@@ -24,9 +24,9 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <Kernel/API/Syscall.h>
 #include <errno.h>
 #include <sys/times.h>
+#include <syscall.h>
 
 clock_t times(struct tms* buf)
 {

+ 1 - 1
Userland/Libraries/LibC/unistd.cpp

@@ -27,7 +27,6 @@
 #include <AK/ScopedValueRollback.h>
 #include <AK/String.h>
 #include <AK/Vector.h>
-#include <Kernel/API/Syscall.h>
 #include <alloca.h>
 #include <assert.h>
 #include <errno.h>
@@ -42,6 +41,7 @@
 #include <sys/ioctl.h>
 #include <sys/mman.h>
 #include <sys/types.h>
+#include <syscall.h>
 #include <termios.h>
 #include <time.h>
 #include <unistd.h>

+ 1 - 1
Userland/Libraries/LibC/utime.cpp

@@ -24,9 +24,9 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <Kernel/API/Syscall.h>
 #include <errno.h>
 #include <string.h>
+#include <syscall.h>
 #include <utime.h>
 
 extern "C" {

+ 1 - 1
Userland/Libraries/LibC/utsname.cpp

@@ -24,9 +24,9 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <Kernel/API/Syscall.h>
 #include <errno.h>
 #include <sys/utsname.h>
+#include <syscall.h>
 
 extern "C" {
 

+ 0 - 1
Userland/Libraries/LibCore/AnonymousBuffer.cpp

@@ -33,7 +33,6 @@
 #include <sys/mman.h>
 
 #if defined(__serenity__)
-#    include <Kernel/API/Syscall.h>
 #    include <serenity.h>
 #endif
 

+ 0 - 1
Userland/Libraries/LibCore/File.cpp

@@ -25,7 +25,6 @@
  */
 
 #ifdef __serenity__
-#    include <Kernel/API/Syscall.h>
 #    include <serenity.h>
 #endif
 #include <AK/ScopeGuard.h>

+ 2 - 2
Userland/Libraries/LibELF/DynamicLinker.cpp

@@ -31,7 +31,6 @@
 #include <AK/LexicalPath.h>
 #include <AK/LogStream.h>
 #include <AK/ScopeGuard.h>
-#include <Kernel/API/Syscall.h>
 #include <LibC/mman.h>
 #include <LibC/stdio.h>
 #include <LibC/sys/internals.h>
@@ -45,6 +44,7 @@
 #include <fcntl.h>
 #include <string.h>
 #include <sys/types.h>
+#include <syscall.h>
 
 namespace ELF {
 
@@ -216,7 +216,7 @@ static NonnullRefPtr<DynamicLoader> commit_elf(const String& name)
     auto object = loader->load_stage_3(RTLD_GLOBAL | RTLD_LAZY, g_total_tls_size);
     ASSERT(object);
 
-    if (name.is_one_of("libc.so", "libpthread.so", "/bin/UserspaceEmulator")) {
+    if (name == "libsystem.so") {
         if (syscall(SC_msyscall, object->base_address().as_ptr())) {
             ASSERT_NOT_REACHED();
         }

+ 0 - 1
Userland/Libraries/LibKeyboard/CharacterMap.cpp

@@ -26,7 +26,6 @@
 
 #include "CharacterMap.h"
 #include <AK/StringBuilder.h>
-#include <Kernel/API/Syscall.h>
 #include <LibKeyboard/CharacterMapFile.h>
 
 #ifndef KERNEL

+ 1 - 1
Userland/Libraries/LibPthread/CMakeLists.txt

@@ -4,5 +4,5 @@ set(SOURCES
 )
 
 serenity_libc(LibPthread pthread)
-target_link_libraries(LibPthread LibC)
+target_link_libraries(LibPthread LibC LibSystem)
 target_include_directories(LibPthread PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})

+ 1 - 1
Userland/Libraries/LibPthread/pthread.cpp

@@ -28,7 +28,6 @@
 #include <AK/Atomic.h>
 #include <AK/Debug.h>
 #include <AK/StdLibExtras.h>
-#include <Kernel/API/Syscall.h>
 #include <limits.h>
 #include <pthread.h>
 #include <serenity.h>
@@ -36,6 +35,7 @@
 #include <stdio.h>
 #include <string.h>
 #include <sys/mman.h>
+#include <syscall.h>
 #include <time.h>
 #include <unistd.h>
 

+ 7 - 0
Userland/Libraries/LibSystem/CMakeLists.txt

@@ -0,0 +1,7 @@
+set(SOURCES
+    syscall.cpp
+)
+
+set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -nostdlib")
+serenity_libc(LibSystem system)
+target_include_directories(LibSystem PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})

+ 51 - 0
Userland/Libraries/LibSystem/syscall.cpp

@@ -0,0 +1,51 @@
+/*
+ * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this
+ *    list of conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
+ *    this list of conditions and the following disclaimer in the documentation
+ *    and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+ * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <Kernel/API/Syscall.h>
+#include <LibSystem/syscall.h>
+
+extern "C" {
+
+uintptr_t syscall0(uintptr_t function)
+{
+    return Syscall::invoke((Syscall::Function)function);
+}
+
+uintptr_t syscall1(uintptr_t function, uintptr_t arg0)
+{
+    return Syscall::invoke((Syscall::Function)function, arg0);
+}
+
+uintptr_t syscall2(uintptr_t function, uintptr_t arg0, uintptr_t arg1)
+{
+    return Syscall::invoke((Syscall::Function)function, arg0, arg1);
+}
+
+uintptr_t syscall3(uintptr_t function, uintptr_t arg0, uintptr_t arg1, uintptr_t arg2)
+{
+    return Syscall::invoke((Syscall::Function)function, arg0, arg1, arg2);
+}
+}

+ 62 - 0
Userland/Libraries/LibSystem/syscall.h

@@ -0,0 +1,62 @@
+/*
+ * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this
+ *    list of conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
+ *    this list of conditions and the following disclaimer in the documentation
+ *    and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+ * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#pragma once
+
+#include <Kernel/API/Syscall.h>
+#include <sys/types.h>
+
+extern "C" {
+
+uintptr_t syscall0(uintptr_t function);
+uintptr_t syscall1(uintptr_t function, uintptr_t arg0);
+uintptr_t syscall2(uintptr_t function, uintptr_t arg0, uintptr_t arg1);
+uintptr_t syscall3(uintptr_t function, uintptr_t arg0, uintptr_t arg1, uintptr_t arg2);
+}
+
+#ifdef __cplusplus
+
+inline uintptr_t syscall(auto function)
+{
+    return syscall0(function);
+}
+
+inline uintptr_t syscall(auto function, auto arg0)
+{
+    return syscall1((uintptr_t)function, (uintptr_t)arg0);
+}
+
+inline uintptr_t syscall(auto function, auto arg0, auto arg1)
+{
+    return syscall2((uintptr_t)function, (uintptr_t)arg0, (uintptr_t)arg1);
+}
+
+inline uintptr_t syscall(auto function, auto arg0, auto arg1, auto arg2)
+{
+    return syscall3((uintptr_t)function, (uintptr_t)arg0, (uintptr_t)arg1, (uintptr_t)arg2);
+}
+
+#endif

+ 1 - 1
Userland/Tests/Kernel/invalid-any-pointer-assert.cpp

@@ -25,9 +25,9 @@
  */
 
 #include <AK/Format.h>
-#include <Kernel/API/Syscall.h>
 #include <errno.h>
 #include <stdio.h>
+#include <syscall.h>
 
 int main()
 {

+ 1 - 1
Userland/Tests/Kernel/invalid-path-pointer-assert.cpp

@@ -24,10 +24,10 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <Kernel/API/Syscall.h>
 #include <errno.h>
 #include <stdio.h>
 #include <sys/stat.h>
+#include <syscall.h>
 
 int main()
 {

+ 1 - 1
Userland/Utilities/crash.cpp

@@ -27,13 +27,13 @@
 
 #include <AK/Function.h>
 #include <AK/String.h>
-#include <Kernel/API/Syscall.h>
 #include <Kernel/IO.h>
 #include <LibCore/ArgsParser.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <sys/mman.h>
 #include <sys/wait.h>
+#include <syscall.h>
 
 #pragma GCC optimize("O0")
 

+ 1 - 1
Userland/Utilities/functrace.cpp

@@ -32,7 +32,6 @@
 #include <AK/NonnullOwnPtr.h>
 #include <AK/StringBuilder.h>
 #include <AK/kmalloc.h>
-#include <Kernel/API/Syscall.h>
 #include <LibC/sys/arch/i386/regs.h>
 #include <LibCore/ArgsParser.h>
 #include <LibCore/File.h>
@@ -45,6 +44,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <syscall.h>
 #include <unistd.h>
 
 static OwnPtr<Debug::DebugSession> g_debug_session;

+ 0 - 1
Userland/Utilities/purge.cpp

@@ -24,7 +24,6 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <Kernel/API/Syscall.h>
 #include <LibCore/ArgsParser.h>
 #include <serenity.h>
 #include <stdio.h>

+ 1 - 1
Userland/Utilities/strace.cpp

@@ -27,7 +27,6 @@
 #include <AK/Assertions.h>
 #include <AK/LogStream.h>
 #include <AK/Types.h>
-#include <Kernel/API/Syscall.h>
 #include <LibC/sys/arch/i386/regs.h>
 #include <LibCore/ArgsParser.h>
 #include <LibCore/File.h>
@@ -37,6 +36,7 @@
 #include <string.h>
 #include <sys/ptrace.h>
 #include <sys/wait.h>
+#include <syscall.h>
 #include <unistd.h>
 
 static int g_pid = -1;

+ 1 - 1
Userland/Utilities/syscall.cpp

@@ -24,13 +24,13 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <Kernel/API/Syscall.h>
 #include <errno.h>
 #include <getopt.h>
 #include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <syscall.h>
 #include <unistd.h>
 
 #if !defined __ENUMERATE_SYSCALL