/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include #include #include namespace Kernel { class NetworkAdapter; class TCPPacket; class TCPSocket; struct PortAllocationResult { ErrorOr error_or_port; bool did_allocate; }; class IPv4Socket : public Socket { public: static ErrorOr> create(int type, int protocol); virtual ~IPv4Socket() override; virtual ErrorOr close() override; virtual ErrorOr bind(Userspace, socklen_t) override; virtual ErrorOr connect(OpenFileDescription&, Userspace, socklen_t, ShouldBlock = ShouldBlock::Yes) override; virtual ErrorOr listen(size_t) override; virtual void get_local_address(sockaddr*, socklen_t*) override; virtual void get_peer_address(sockaddr*, socklen_t*) override; virtual bool can_read(const OpenFileDescription&, u64) const override; virtual bool can_write(const OpenFileDescription&, u64) const override; virtual ErrorOr sendto(OpenFileDescription&, const UserOrKernelBuffer&, size_t, int, Userspace, socklen_t) override; virtual ErrorOr recvfrom(OpenFileDescription&, UserOrKernelBuffer&, size_t, int flags, Userspace, Userspace, Time&) override; virtual ErrorOr setsockopt(int level, int option, Userspace, socklen_t) override; virtual ErrorOr getsockopt(OpenFileDescription&, int level, int option, Userspace, Userspace) override; virtual ErrorOr ioctl(OpenFileDescription&, unsigned request, Userspace arg) override; bool did_receive(const IPv4Address& peer_address, u16 peer_port, ReadonlyBytes, const Time&); const IPv4Address& local_address() const { return m_local_address; } u16 local_port() const { return m_local_port; } void set_local_port(u16 port) { m_local_port = port; } bool has_specific_local_address() { return m_local_address.to_u32() != 0; } const IPv4Address& peer_address() const { return m_peer_address; } u16 peer_port() const { return m_peer_port; } void set_peer_port(u16 port) { m_peer_port = port; } const Vector& multicast_memberships() const { return m_multicast_memberships; } IPv4SocketTuple tuple() const { return IPv4SocketTuple(m_local_address, m_local_port, m_peer_address, m_peer_port); } ErrorOr> pseudo_path(const OpenFileDescription& description) const override; u8 type_of_service() const { return m_type_of_service; } u8 ttl() const { return m_ttl; } enum class BufferMode { Packets, Bytes, }; BufferMode buffer_mode() const { return m_buffer_mode; } protected: IPv4Socket(int type, int protocol, NonnullOwnPtr receive_buffer, OwnPtr optional_scratch_buffer); virtual StringView class_name() const override { return "IPv4Socket"sv; } PortAllocationResult allocate_local_port_if_needed(); virtual ErrorOr protocol_bind() { return {}; } virtual ErrorOr protocol_listen([[maybe_unused]] bool did_allocate_port) { return {}; } virtual ErrorOr protocol_receive(ReadonlyBytes /* raw_ipv4_packet */, UserOrKernelBuffer&, size_t, int) { return ENOTIMPL; } virtual ErrorOr protocol_send(const UserOrKernelBuffer&, size_t) { return ENOTIMPL; } virtual ErrorOr protocol_connect(OpenFileDescription&, ShouldBlock) { return {}; } virtual ErrorOr protocol_allocate_local_port() { return ENOPROTOOPT; } virtual ErrorOr protocol_size(ReadonlyBytes /* raw_ipv4_packet */) { return ENOTIMPL; } virtual bool protocol_is_disconnected() const { return false; } virtual void shut_down_for_reading() override; void set_local_address(IPv4Address address) { m_local_address = address; } void set_peer_address(IPv4Address address) { m_peer_address = address; } static ErrorOr> try_create_receive_buffer(); void drop_receive_buffer(); private: virtual bool is_ipv4() const override { return true; } ErrorOr receive_byte_buffered(OpenFileDescription&, UserOrKernelBuffer& buffer, size_t buffer_length, int flags, Userspace, Userspace); ErrorOr receive_packet_buffered(OpenFileDescription&, UserOrKernelBuffer& buffer, size_t buffer_length, int flags, Userspace, Userspace, Time&); void set_can_read(bool); IPv4Address m_local_address; IPv4Address m_peer_address; Vector m_multicast_memberships; bool m_multicast_loop { true }; struct ReceivedPacket { IPv4Address peer_address; u16 peer_port; Time timestamp; OwnPtr data; }; SinglyLinkedListWithCount m_receive_queue; OwnPtr m_receive_buffer; u16 m_local_port { 0 }; u16 m_peer_port { 0 }; u32 m_bytes_received { 0 }; u8 m_type_of_service { IPTOS_LOWDELAY }; u8 m_ttl { 64 }; bool m_can_read { false }; BufferMode m_buffer_mode { BufferMode::Packets }; OwnPtr m_scratch_buffer; IntrusiveListNode m_list_node; public: using List = IntrusiveList<&IPv4Socket::m_list_node>; static MutexProtected& all_sockets(); }; }