summaryrefslogtreecommitdiff
path: root/Kernel/Syscalls/socket.cpp
AgeCommit message (Expand)Author
2022-07-21Kernel: Remove the Socket::{protocol,}connect ShouldBlock argumentIdan Horowitz
2022-07-10Kernel: Accept SHUT_RD and SHUT_WR as shutdown() how valuesIdan Horowitz
2022-04-09Kernel: Remove big lock from sys$setsockoptIdan Horowitz
2022-04-09Kernel: Remove big lock from sys$getsockoptIdan Horowitz
2022-04-09Kernel: Remove big lock from sys$shutdownIdan Horowitz
2022-04-09Kernel: Remove big lock from sys$connectIdan Horowitz
2022-04-09Kernel: Remove big lock from sys$bindIdan Horowitz
2022-04-09Kernel: Remove big lock from `sys$accept4`Jelle Raaijmakers
2022-04-03Kernel: Mark sys$listen() as not needing the big lockAndreas Kling
2022-04-03Kernel: Don't hog file descriptor table lock in sys$bind()Andreas Kling
2022-04-03Kernel: Don't hog file descriptor table lock in sys$listen()Andreas Kling
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-02-07Kernel: Ensure socket is suitable for writing in sys$sendmsgsin-ack
2022-01-29Kernel: Switch process file descriptor table from spinlock to mutexAndreas Kling
2022-01-29Kernel: Convert process file descriptor table to a SpinlockProtectedAndreas Kling
2021-12-29Kernel: Handle promise violations in the syscall handlerBrian Gianforcaro
2021-12-29Kernel: Use Process::require_promise() instead of REQUIRE_PROMISE()Brian Gianforcaro
2021-12-29Kernel: Fix info leak from `sockaddr_un` in socket syscallsBrian Gianforcaro
2021-12-18Kernel: Use copy_typed_from_user() in more places :^)Andreas Kling
2021-11-21Kernel: Make UserOrKernelBuffer::for_user_buffer() return ErrorOr<T>Andreas Kling
2021-11-10AK: Make Vector::try_* functions return ErrorOr<void>Andreas Kling
2021-11-08Kernel: Replace KResult and KResultOr<T> with Error and ErrorOr<T>Andreas Kling
2021-09-07Kernel: Rename file_description(fd) => open_file_description(fd)Andreas Kling
2021-09-07Kernel: Rename FileDescription => OpenFileDescriptionAndreas Kling
2021-09-05Kernel: Make file description lookup return KResultOrAndreas Kling
2021-09-05Kernel: Use copy_typed_from_user<T> for fetching syscall parametersAndreas Kling
2021-09-05Kernel: Make copy_{from,to}_user() return KResult and use TRY()Andreas Kling
2021-09-05Kernel: Use TRY() in sys$socket() and friendsAndreas Kling
2021-08-29Kernel: Rename LocalSocket::create_connected_pair() => try_*()Andreas Kling
2021-08-29Kernel: Rename FileDescription::create() => try_create()Andreas Kling
2021-08-01Kernel: Remove unused header includesBrian Gianforcaro
2021-07-28Kernel: Avoid file descriptor leak in Process::sys$socketpair on errorBrian Gianforcaro
2021-07-28Kernel: Track allocated FileDescriptionAndFlag elements in each ProcessBrian Gianforcaro
2021-07-28Kernel: Make Process::FileDescriptions::allocate return KResultOr<int>Brian Gianforcaro
2021-07-28Kernel: Remove unused fd allocation from Process::sys$connect(..)Brian Gianforcaro
2021-07-20Kernel: Annotate all syscalls with VERIFY_PROCESS_BIG_LOCK_ACQUIREDBrian Gianforcaro
2021-07-03Everywhere: Fix some alignment issuesDaniel Bertalan
2021-06-29Kernel: Don't copy a Vector<FileDescriptionAndFlags>Liav A
2021-06-28Kernel: Fix the return type for syscallsGunnar Beutner
2021-06-16Kernel: Remove various other uses of ssize_tGunnar Beutner
2021-05-17Kernel+Userspace: Implement the accept4() system callGunnar Beutner
2021-04-30Kernel: Accepted socket file descriptors should not inherit flagsGunnar Beutner
2021-04-29Kernel: Harden sys$sendmsg / sys$recvmsg Vector usage against OOM.Brian Gianforcaro
2021-04-28Kernel+LibC: Implement the socketpair() syscallGunnar Beutner
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-03-02Kernel: Make sockets use AK::TimeBen Wiederhake
2021-03-01Kernel: Make all syscall functions return KResultOr<T>Andreas Kling
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-01-31Kernel: Remove pledge exception for sys$getsockopt() with SO_PEERCREDAndreas Kling
2021-01-17Kernel: Remove a bunch of no-longer-necessary SmapDisablersAndreas Kling