2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, 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.
|
|
|
|
*/
|
|
|
|
|
2020-08-25 04:35:19 +03:00
|
|
|
#include <AK/Singleton.h>
|
2019-08-10 19:10:36 +03:00
|
|
|
#include <AK/StringBuilder.h>
|
2019-06-07 12:43:58 +03:00
|
|
|
#include <Kernel/FileSystem/FileDescription.h>
|
|
|
|
#include <Kernel/Net/ARP.h>
|
|
|
|
#include <Kernel/Net/ICMP.h>
|
|
|
|
#include <Kernel/Net/IPv4.h>
|
2019-04-02 20:54:38 +03:00
|
|
|
#include <Kernel/Net/IPv4Socket.h>
|
|
|
|
#include <Kernel/Net/NetworkAdapter.h>
|
2019-06-07 12:43:58 +03:00
|
|
|
#include <Kernel/Net/Routing.h>
|
2019-04-02 20:54:38 +03:00
|
|
|
#include <Kernel/Net/TCP.h>
|
2019-06-07 12:43:58 +03:00
|
|
|
#include <Kernel/Net/TCPSocket.h>
|
2019-04-02 20:54:38 +03:00
|
|
|
#include <Kernel/Net/UDP.h>
|
2019-06-07 12:43:58 +03:00
|
|
|
#include <Kernel/Net/UDPSocket.h>
|
|
|
|
#include <Kernel/Process.h>
|
|
|
|
#include <Kernel/UnixTypes.h>
|
2019-03-12 17:51:42 +03:00
|
|
|
#include <LibC/errno_numbers.h>
|
2019-09-23 20:06:03 +03:00
|
|
|
#include <LibC/sys/ioctl_numbers.h>
|
2019-03-12 17:51:42 +03:00
|
|
|
|
2019-08-04 11:04:06 +03:00
|
|
|
//#define IPV4_SOCKET_DEBUG
|
2019-03-13 16:22:27 +03:00
|
|
|
|
2020-02-16 03:27:42 +03:00
|
|
|
namespace Kernel {
|
|
|
|
|
2020-08-25 04:35:19 +03:00
|
|
|
static AK::Singleton<Lockable<HashTable<IPv4Socket*>>> s_table;
|
|
|
|
|
2019-03-12 19:27:07 +03:00
|
|
|
Lockable<HashTable<IPv4Socket*>>& IPv4Socket::all_sockets()
|
|
|
|
{
|
|
|
|
return *s_table;
|
|
|
|
}
|
|
|
|
|
2020-01-23 20:11:14 +03:00
|
|
|
KResultOr<NonnullRefPtr<Socket>> IPv4Socket::create(int type, int protocol)
|
2019-03-12 17:51:42 +03:00
|
|
|
{
|
2019-03-14 14:20:38 +03:00
|
|
|
if (type == SOCK_STREAM)
|
|
|
|
return TCPSocket::create(protocol);
|
2019-03-14 14:43:18 +03:00
|
|
|
if (type == SOCK_DGRAM)
|
|
|
|
return UDPSocket::create(protocol);
|
2020-01-23 20:11:14 +03:00
|
|
|
if (type == SOCK_RAW)
|
|
|
|
return adopt(*new IPv4Socket(type, protocol));
|
|
|
|
return KResult(-EINVAL);
|
2019-03-12 17:51:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
IPv4Socket::IPv4Socket(int type, int protocol)
|
|
|
|
: Socket(AF_INET, type, protocol)
|
|
|
|
{
|
2019-10-18 17:47:29 +03:00
|
|
|
#ifdef IPV4_SOCKET_DEBUG
|
2020-03-01 22:45:39 +03:00
|
|
|
dbg() << "IPv4Socket{" << this << "} created with type=" << type << ", protocol=" << protocol;
|
2019-10-18 17:47:29 +03:00
|
|
|
#endif
|
2019-12-14 11:43:31 +03:00
|
|
|
m_buffer_mode = type == SOCK_STREAM ? BufferMode::Bytes : BufferMode::Packets;
|
|
|
|
if (m_buffer_mode == BufferMode::Bytes) {
|
|
|
|
m_scratch_buffer = KBuffer::create_with_size(65536);
|
|
|
|
}
|
2019-03-12 19:27:07 +03:00
|
|
|
LOCKER(all_sockets().lock());
|
|
|
|
all_sockets().resource().set(this);
|
2019-03-12 17:51:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
IPv4Socket::~IPv4Socket()
|
|
|
|
{
|
2019-03-14 14:43:18 +03:00
|
|
|
LOCKER(all_sockets().lock());
|
|
|
|
all_sockets().resource().remove(this);
|
2019-03-12 17:51:42 +03:00
|
|
|
}
|
|
|
|
|
2020-02-08 01:42:28 +03:00
|
|
|
void IPv4Socket::get_local_address(sockaddr* address, socklen_t* address_size)
|
2019-03-12 17:51:42 +03:00
|
|
|
{
|
2020-02-08 01:42:28 +03:00
|
|
|
sockaddr_in local_address = { AF_INET, htons(m_local_port), { m_local_address.to_in_addr_t() }, { 0 } };
|
|
|
|
memcpy(address, &local_address, min(static_cast<size_t>(*address_size), sizeof(sockaddr_in)));
|
2019-05-20 21:33:03 +03:00
|
|
|
*address_size = sizeof(sockaddr_in);
|
|
|
|
}
|
|
|
|
|
2020-02-08 01:42:28 +03:00
|
|
|
void IPv4Socket::get_peer_address(sockaddr* address, socklen_t* address_size)
|
2019-05-20 21:33:03 +03:00
|
|
|
{
|
2020-02-08 01:42:28 +03:00
|
|
|
sockaddr_in peer_address = { AF_INET, htons(m_peer_port), { m_peer_address.to_in_addr_t() }, { 0 } };
|
|
|
|
memcpy(address, &peer_address, min(static_cast<size_t>(*address_size), sizeof(sockaddr_in)));
|
2019-03-12 17:51:42 +03:00
|
|
|
*address_size = sizeof(sockaddr_in);
|
|
|
|
}
|
|
|
|
|
2020-08-10 01:13:43 +03:00
|
|
|
KResult IPv4Socket::bind(Userspace<const sockaddr*> user_address, socklen_t address_size)
|
2019-03-12 17:51:42 +03:00
|
|
|
{
|
2019-08-10 06:17:00 +03:00
|
|
|
ASSERT(setup_state() == SetupState::Unstarted);
|
2019-03-12 17:51:42 +03:00
|
|
|
if (address_size != sizeof(sockaddr_in))
|
|
|
|
return KResult(-EINVAL);
|
|
|
|
|
2020-01-11 14:07:45 +03:00
|
|
|
sockaddr_in address;
|
2020-09-12 06:11:07 +03:00
|
|
|
if (!copy_from_user(&address, user_address, sizeof(sockaddr_in)))
|
|
|
|
return KResult(-EFAULT);
|
2020-01-11 14:07:45 +03:00
|
|
|
|
|
|
|
if (address.sin_family != AF_INET)
|
|
|
|
return KResult(-EINVAL);
|
2019-09-02 19:49:54 +03:00
|
|
|
|
2020-01-11 14:07:45 +03:00
|
|
|
auto requested_local_port = ntohs(address.sin_port);
|
2020-06-29 00:34:31 +03:00
|
|
|
if (!Process::current()->is_superuser()) {
|
2019-09-02 19:49:54 +03:00
|
|
|
if (requested_local_port < 1024) {
|
2020-06-29 00:34:31 +03:00
|
|
|
dbg() << "UID " << Process::current()->uid() << " attempted to bind " << class_name() << " to port " << requested_local_port;
|
2019-09-02 19:49:54 +03:00
|
|
|
return KResult(-EACCES);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-11 14:07:45 +03:00
|
|
|
m_local_address = IPv4Address((const u8*)&address.sin_addr.s_addr);
|
2019-09-02 19:49:54 +03:00
|
|
|
m_local_port = requested_local_port;
|
2019-05-03 22:51:40 +03:00
|
|
|
|
2019-10-18 17:47:29 +03:00
|
|
|
#ifdef IPV4_SOCKET_DEBUG
|
2020-03-01 15:23:26 +03:00
|
|
|
dbg() << "IPv4Socket::bind " << class_name() << "{" << this << "} to " << m_local_address << ":" << m_local_port;
|
2019-10-18 17:47:29 +03:00
|
|
|
#endif
|
2019-05-03 22:51:40 +03:00
|
|
|
|
|
|
|
return protocol_bind();
|
2019-03-12 17:51:42 +03:00
|
|
|
}
|
|
|
|
|
2020-02-25 16:49:47 +03:00
|
|
|
KResult IPv4Socket::listen(size_t backlog)
|
2019-08-06 16:40:38 +03:00
|
|
|
{
|
2020-10-21 21:51:02 +03:00
|
|
|
LOCKER(lock());
|
2019-08-06 16:40:38 +03:00
|
|
|
int rc = allocate_local_port_if_needed();
|
|
|
|
if (rc < 0)
|
|
|
|
return KResult(-EADDRINUSE);
|
|
|
|
|
|
|
|
set_backlog(backlog);
|
2019-09-08 10:03:03 +03:00
|
|
|
m_role = Role::Listener;
|
2020-11-30 02:05:27 +03:00
|
|
|
evaluate_block_conditions();
|
2019-08-06 16:40:38 +03:00
|
|
|
|
2019-10-18 17:47:29 +03:00
|
|
|
#ifdef IPV4_SOCKET_DEBUG
|
2020-03-01 22:45:39 +03:00
|
|
|
dbg() << "IPv4Socket{" << this << "} listening with backlog=" << backlog;
|
2019-10-18 17:47:29 +03:00
|
|
|
#endif
|
2019-08-06 16:40:38 +03:00
|
|
|
|
|
|
|
return protocol_listen();
|
|
|
|
}
|
|
|
|
|
2020-09-12 06:11:07 +03:00
|
|
|
KResult IPv4Socket::connect(FileDescription& description, Userspace<const sockaddr*> address, socklen_t address_size, ShouldBlock should_block)
|
2019-03-12 17:51:42 +03:00
|
|
|
{
|
|
|
|
if (address_size != sizeof(sockaddr_in))
|
|
|
|
return KResult(-EINVAL);
|
2020-09-12 06:11:07 +03:00
|
|
|
u16 sa_family_copy;
|
|
|
|
auto* user_address = reinterpret_cast<const sockaddr*>(address.unsafe_userspace_ptr());
|
|
|
|
if (!copy_from_user(&sa_family_copy, &user_address->sa_family, sizeof(u16)))
|
|
|
|
return KResult(-EFAULT);
|
|
|
|
if (sa_family_copy != AF_INET)
|
2019-03-12 17:51:42 +03:00
|
|
|
return KResult(-EINVAL);
|
2019-08-11 16:38:20 +03:00
|
|
|
if (m_role == Role::Connected)
|
|
|
|
return KResult(-EISCONN);
|
2019-03-12 17:51:42 +03:00
|
|
|
|
2020-09-12 06:11:07 +03:00
|
|
|
sockaddr_in safe_address;
|
|
|
|
if (!copy_from_user(&safe_address, (const sockaddr_in*)user_address, sizeof(sockaddr_in)))
|
|
|
|
return KResult(-EFAULT);
|
|
|
|
|
|
|
|
m_peer_address = IPv4Address((const u8*)&safe_address.sin_addr.s_addr);
|
|
|
|
m_peer_port = ntohs(safe_address.sin_port);
|
2019-03-13 19:17:07 +03:00
|
|
|
|
2019-06-13 23:03:04 +03:00
|
|
|
return protocol_connect(description, should_block);
|
2019-03-12 17:51:42 +03:00
|
|
|
}
|
|
|
|
|
2020-04-10 12:44:42 +03:00
|
|
|
bool IPv4Socket::can_read(const FileDescription&, size_t) const
|
2019-03-12 17:51:42 +03:00
|
|
|
{
|
2019-08-11 16:38:20 +03:00
|
|
|
if (m_role == Role::Listener)
|
2019-05-03 22:51:40 +03:00
|
|
|
return can_accept();
|
2019-03-14 17:23:32 +03:00
|
|
|
if (protocol_is_disconnected())
|
|
|
|
return true;
|
2019-03-12 19:27:07 +03:00
|
|
|
return m_can_read;
|
2019-03-12 17:51:42 +03:00
|
|
|
}
|
|
|
|
|
2020-04-10 12:44:42 +03:00
|
|
|
bool IPv4Socket::can_write(const FileDescription&, size_t) const
|
2019-03-12 17:51:42 +03:00
|
|
|
{
|
2019-04-08 05:52:21 +03:00
|
|
|
return is_connected();
|
2019-03-12 17:51:42 +03:00
|
|
|
}
|
|
|
|
|
2019-05-04 17:40:34 +03:00
|
|
|
int IPv4Socket::allocate_local_port_if_needed()
|
2019-03-13 18:05:56 +03:00
|
|
|
{
|
2019-05-04 17:40:34 +03:00
|
|
|
if (m_local_port)
|
|
|
|
return m_local_port;
|
|
|
|
int port = protocol_allocate_local_port();
|
2019-03-18 06:03:44 +03:00
|
|
|
if (port < 0)
|
|
|
|
return port;
|
2019-07-03 22:17:35 +03:00
|
|
|
m_local_port = (u16)port;
|
2019-03-18 06:03:44 +03:00
|
|
|
return port;
|
2019-03-13 18:05:56 +03:00
|
|
|
}
|
|
|
|
|
2020-12-21 02:09:48 +03:00
|
|
|
KResultOr<size_t> IPv4Socket::sendto(FileDescription&, const UserOrKernelBuffer& data, size_t data_length, [[maybe_unused]] int flags, Userspace<const sockaddr*> addr, socklen_t addr_length)
|
2019-03-12 17:51:42 +03:00
|
|
|
{
|
2020-10-21 21:51:02 +03:00
|
|
|
LOCKER(lock());
|
|
|
|
|
2019-03-14 01:14:30 +03:00
|
|
|
if (addr && addr_length != sizeof(sockaddr_in))
|
2020-08-04 19:02:23 +03:00
|
|
|
return KResult(-EINVAL);
|
2019-03-12 17:51:42 +03:00
|
|
|
|
2019-03-13 19:17:07 +03:00
|
|
|
if (addr) {
|
2020-08-18 09:49:35 +03:00
|
|
|
sockaddr_in ia;
|
2020-09-12 06:11:07 +03:00
|
|
|
if (!copy_from_user(&ia, Userspace<const sockaddr_in*>(addr.ptr())))
|
2020-08-18 09:49:35 +03:00
|
|
|
return KResult(-EFAULT);
|
|
|
|
|
|
|
|
if (ia.sin_family != AF_INET) {
|
|
|
|
klog() << "sendto: Bad address family: " << ia.sin_family << " is not AF_INET!";
|
2020-08-04 19:02:23 +03:00
|
|
|
return KResult(-EAFNOSUPPORT);
|
2019-03-14 01:14:30 +03:00
|
|
|
}
|
|
|
|
|
2019-07-03 22:17:35 +03:00
|
|
|
m_peer_address = IPv4Address((const u8*)&ia.sin_addr.s_addr);
|
2019-05-04 17:40:34 +03:00
|
|
|
m_peer_port = ntohs(ia.sin_port);
|
2019-03-13 19:17:07 +03:00
|
|
|
}
|
2019-03-13 17:40:30 +03:00
|
|
|
|
2020-04-04 23:46:45 +03:00
|
|
|
auto routing_decision = route_to(m_peer_address, m_local_address, bound_interface());
|
2019-08-29 04:18:38 +03:00
|
|
|
if (routing_decision.is_zero())
|
2020-08-04 19:02:23 +03:00
|
|
|
return KResult(-EHOSTUNREACH);
|
2019-04-02 16:46:44 +03:00
|
|
|
|
2019-08-06 16:40:38 +03:00
|
|
|
if (m_local_address.to_u32() == 0)
|
2019-08-28 14:58:01 +03:00
|
|
|
m_local_address = routing_decision.adapter->ipv4_address();
|
2019-08-06 16:40:38 +03:00
|
|
|
|
2019-05-04 17:40:34 +03:00
|
|
|
int rc = allocate_local_port_if_needed();
|
2019-03-18 06:03:44 +03:00
|
|
|
if (rc < 0)
|
|
|
|
return rc;
|
2019-03-12 17:51:42 +03:00
|
|
|
|
2019-09-08 12:13:50 +03:00
|
|
|
#ifdef IPV4_SOCKET_DEBUG
|
2020-03-01 22:45:39 +03:00
|
|
|
klog() << "sendto: destination=" << m_peer_address.to_string().characters() << ":" << m_peer_port;
|
2019-09-08 12:13:50 +03:00
|
|
|
#endif
|
2019-03-12 17:51:42 +03:00
|
|
|
|
2019-03-13 17:40:30 +03:00
|
|
|
if (type() == SOCK_RAW) {
|
2020-09-12 06:11:07 +03:00
|
|
|
int err = routing_decision.adapter->send_ipv4(routing_decision.next_hop, m_peer_address, (IPv4Protocol)protocol(), data, data_length, m_ttl);
|
|
|
|
if (err < 0)
|
|
|
|
return KResult(err);
|
2019-03-13 17:40:30 +03:00
|
|
|
return data_length;
|
|
|
|
}
|
|
|
|
|
2020-08-04 19:02:23 +03:00
|
|
|
auto nsent_or_error = protocol_send(data, data_length);
|
|
|
|
if (!nsent_or_error.is_error())
|
|
|
|
Thread::current()->did_ipv4_socket_write(nsent_or_error.value());
|
|
|
|
return nsent_or_error;
|
2019-03-12 17:51:42 +03:00
|
|
|
}
|
2019-03-12 19:27:07 +03:00
|
|
|
|
2020-09-12 06:11:07 +03:00
|
|
|
KResultOr<size_t> IPv4Socket::receive_byte_buffered(FileDescription& description, UserOrKernelBuffer& buffer, size_t buffer_length, int, Userspace<sockaddr*>, Userspace<socklen_t*>)
|
2019-03-12 19:27:07 +03:00
|
|
|
{
|
2020-03-07 13:26:17 +03:00
|
|
|
Locker locker(lock());
|
2020-02-08 15:09:37 +03:00
|
|
|
if (m_receive_buffer.is_empty()) {
|
|
|
|
if (protocol_is_disconnected())
|
|
|
|
return 0;
|
|
|
|
if (!description.is_blocking())
|
2020-08-04 19:02:23 +03:00
|
|
|
return KResult(-EAGAIN);
|
2019-12-14 11:43:31 +03:00
|
|
|
|
2020-03-07 13:26:17 +03:00
|
|
|
locker.unlock();
|
2020-11-30 02:05:27 +03:00
|
|
|
auto unblocked_flags = Thread::FileDescriptionBlocker::BlockFlags::None;
|
|
|
|
auto res = Thread::current()->block<Thread::ReadBlocker>(nullptr, description, unblocked_flags);
|
2020-03-07 13:26:17 +03:00
|
|
|
locker.lock();
|
2019-12-14 11:43:31 +03:00
|
|
|
|
2020-11-30 02:05:27 +03:00
|
|
|
if (!((u32)unblocked_flags & (u32)Thread::FileDescriptionBlocker::BlockFlags::Read)) {
|
2020-07-07 02:10:52 +03:00
|
|
|
if (res.was_interrupted())
|
2020-08-04 19:02:23 +03:00
|
|
|
return KResult(-EINTR);
|
2019-12-14 11:43:31 +03:00
|
|
|
|
2020-02-08 15:09:37 +03:00
|
|
|
// Unblocked due to timeout.
|
2020-08-04 19:02:23 +03:00
|
|
|
return KResult(-EAGAIN);
|
2019-12-14 11:43:31 +03:00
|
|
|
}
|
2020-02-08 15:09:37 +03:00
|
|
|
}
|
2019-12-14 11:43:31 +03:00
|
|
|
|
2020-02-08 15:09:37 +03:00
|
|
|
ASSERT(!m_receive_buffer.is_empty());
|
2020-09-12 06:11:07 +03:00
|
|
|
int nreceived = m_receive_buffer.read(buffer, buffer_length);
|
2020-02-08 15:09:37 +03:00
|
|
|
if (nreceived > 0)
|
2020-06-29 00:34:31 +03:00
|
|
|
Thread::current()->did_ipv4_socket_read((size_t)nreceived);
|
2019-12-14 11:43:31 +03:00
|
|
|
|
2020-11-30 02:05:27 +03:00
|
|
|
set_can_read(!m_receive_buffer.is_empty());
|
2020-02-08 15:09:37 +03:00
|
|
|
return nreceived;
|
|
|
|
}
|
2019-12-14 11:43:31 +03:00
|
|
|
|
2020-09-16 19:25:06 +03:00
|
|
|
KResultOr<size_t> IPv4Socket::receive_packet_buffered(FileDescription& description, UserOrKernelBuffer& buffer, size_t buffer_length, int flags, Userspace<sockaddr*> addr, Userspace<socklen_t*> addr_length, timeval& packet_timestamp)
|
2020-02-08 15:09:37 +03:00
|
|
|
{
|
2020-03-07 13:26:17 +03:00
|
|
|
Locker locker(lock());
|
2019-05-04 17:40:34 +03:00
|
|
|
ReceivedPacket packet;
|
2019-03-12 19:27:07 +03:00
|
|
|
{
|
2019-11-18 19:30:45 +03:00
|
|
|
if (m_receive_queue.is_empty()) {
|
|
|
|
// FIXME: Shouldn't this return -ENOTCONN instead of EOF?
|
|
|
|
// But if so, we still need to deliver at least one EOF read to userspace.. right?
|
|
|
|
if (protocol_is_disconnected())
|
|
|
|
return 0;
|
|
|
|
if (!description.is_blocking())
|
2020-08-04 19:02:23 +03:00
|
|
|
return KResult(-EAGAIN);
|
2019-11-18 19:30:45 +03:00
|
|
|
}
|
2019-11-04 15:41:36 +03:00
|
|
|
|
2019-03-12 19:27:07 +03:00
|
|
|
if (!m_receive_queue.is_empty()) {
|
2019-05-04 17:40:34 +03:00
|
|
|
packet = m_receive_queue.take_first();
|
2020-11-30 02:05:27 +03:00
|
|
|
set_can_read(!m_receive_queue.is_empty());
|
2019-03-14 17:23:32 +03:00
|
|
|
#ifdef IPV4_SOCKET_DEBUG
|
2020-08-05 07:35:30 +03:00
|
|
|
dbg() << "IPv4Socket(" << this << "): recvfrom without blocking " << packet.data.value().size() << " bytes, packets in queue: " << m_receive_queue.size();
|
2019-03-14 17:23:32 +03:00
|
|
|
#endif
|
2019-03-12 19:27:07 +03:00
|
|
|
}
|
|
|
|
}
|
2019-08-05 12:06:21 +03:00
|
|
|
if (!packet.data.has_value()) {
|
2019-03-14 17:23:32 +03:00
|
|
|
if (protocol_is_disconnected()) {
|
2020-03-01 22:45:39 +03:00
|
|
|
dbg() << "IPv4Socket{" << this << "} is protocol-disconnected, returning 0 in recvfrom!";
|
2019-03-14 17:23:32 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-03-07 13:26:17 +03:00
|
|
|
locker.unlock();
|
2020-11-30 02:05:27 +03:00
|
|
|
auto unblocked_flags = Thread::FileDescriptionBlocker::BlockFlags::None;
|
|
|
|
auto res = Thread::current()->block<Thread::ReadBlocker>(nullptr, description, unblocked_flags);
|
2020-03-07 13:26:17 +03:00
|
|
|
locker.lock();
|
2019-03-12 19:27:07 +03:00
|
|
|
|
2020-11-30 02:05:27 +03:00
|
|
|
if (!((u32)unblocked_flags & (u32)Thread::FileDescriptionBlocker::BlockFlags::Read)) {
|
2020-07-07 02:10:52 +03:00
|
|
|
if (res.was_interrupted())
|
2020-08-04 19:02:23 +03:00
|
|
|
return KResult(-EINTR);
|
2019-07-20 12:05:52 +03:00
|
|
|
|
2019-03-13 15:13:23 +03:00
|
|
|
// Unblocked due to timeout.
|
2020-08-04 19:02:23 +03:00
|
|
|
return KResult(-EAGAIN);
|
2019-03-13 15:13:23 +03:00
|
|
|
}
|
2019-03-12 19:27:07 +03:00
|
|
|
ASSERT(m_can_read);
|
|
|
|
ASSERT(!m_receive_queue.is_empty());
|
2019-05-04 17:40:34 +03:00
|
|
|
packet = m_receive_queue.take_first();
|
2020-11-30 02:05:27 +03:00
|
|
|
set_can_read(!m_receive_queue.is_empty());
|
2019-03-14 17:23:32 +03:00
|
|
|
#ifdef IPV4_SOCKET_DEBUG
|
2020-08-05 07:35:30 +03:00
|
|
|
dbg() << "IPv4Socket(" << this << "): recvfrom with blocking " << packet.data.value().size() << " bytes, packets in queue: " << m_receive_queue.size();
|
2019-03-14 17:23:32 +03:00
|
|
|
#endif
|
2019-03-12 19:27:07 +03:00
|
|
|
}
|
2019-08-05 12:06:21 +03:00
|
|
|
ASSERT(packet.data.has_value());
|
2019-03-13 16:22:27 +03:00
|
|
|
|
2020-09-16 19:25:06 +03:00
|
|
|
packet_timestamp = packet.timestamp;
|
|
|
|
|
2019-03-14 01:14:30 +03:00
|
|
|
if (addr) {
|
2019-10-18 17:47:29 +03:00
|
|
|
#ifdef IPV4_SOCKET_DEBUG
|
2020-03-01 15:23:26 +03:00
|
|
|
dbg() << "Incoming packet is from: " << packet.peer_address << ":" << packet.peer_port;
|
2019-10-18 17:47:29 +03:00
|
|
|
#endif
|
2020-08-18 10:25:23 +03:00
|
|
|
|
|
|
|
sockaddr_in out_addr {};
|
|
|
|
memcpy(&out_addr.sin_addr, &packet.peer_address, sizeof(IPv4Address));
|
|
|
|
out_addr.sin_port = htons(packet.peer_port);
|
|
|
|
out_addr.sin_family = AF_INET;
|
|
|
|
Userspace<sockaddr_in*> dest_addr = addr.ptr();
|
2020-09-12 06:11:07 +03:00
|
|
|
if (!copy_to_user(dest_addr, &out_addr))
|
|
|
|
return KResult(-EFAULT);
|
2020-08-18 10:25:23 +03:00
|
|
|
|
|
|
|
socklen_t out_length = sizeof(sockaddr_in);
|
2019-03-14 01:14:30 +03:00
|
|
|
ASSERT(addr_length);
|
2020-09-12 06:11:07 +03:00
|
|
|
if (!copy_to_user(addr_length, &out_length))
|
|
|
|
return KResult(-EFAULT);
|
2019-03-14 01:14:30 +03:00
|
|
|
}
|
2019-03-13 16:47:21 +03:00
|
|
|
|
2019-03-13 16:22:27 +03:00
|
|
|
if (type() == SOCK_RAW) {
|
2020-10-31 13:32:33 +03:00
|
|
|
size_t bytes_written = min(packet.data.value().size(), buffer_length);
|
|
|
|
if (!buffer.write(packet.data.value().data(), bytes_written))
|
2020-09-12 06:11:07 +03:00
|
|
|
return KResult(-EFAULT);
|
2020-09-10 07:12:50 +03:00
|
|
|
return bytes_written;
|
2019-03-13 16:22:27 +03:00
|
|
|
}
|
|
|
|
|
2020-12-18 18:13:23 +03:00
|
|
|
return protocol_receive(ReadonlyBytes { packet.data.value().data(), packet.data.value().size() }, buffer, buffer_length, flags);
|
2020-02-08 15:09:37 +03:00
|
|
|
}
|
|
|
|
|
2020-09-16 19:25:06 +03:00
|
|
|
KResultOr<size_t> IPv4Socket::recvfrom(FileDescription& description, UserOrKernelBuffer& buffer, size_t buffer_length, int flags, Userspace<sockaddr*> user_addr, Userspace<socklen_t*> user_addr_length, timeval& packet_timestamp)
|
2020-02-08 15:09:37 +03:00
|
|
|
{
|
2020-08-18 10:25:23 +03:00
|
|
|
if (user_addr_length) {
|
|
|
|
socklen_t addr_length;
|
2020-09-12 06:11:07 +03:00
|
|
|
if (!copy_from_user(&addr_length, user_addr_length.unsafe_userspace_ptr()))
|
2020-08-18 10:25:23 +03:00
|
|
|
return KResult(-EFAULT);
|
|
|
|
if (addr_length < sizeof(sockaddr_in))
|
|
|
|
return KResult(-EINVAL);
|
|
|
|
}
|
2020-02-08 15:09:37 +03:00
|
|
|
|
|
|
|
#ifdef IPV4_SOCKET_DEBUG
|
2020-03-01 22:45:39 +03:00
|
|
|
klog() << "recvfrom: type=" << type() << ", local_port=" << local_port();
|
2020-02-08 15:09:37 +03:00
|
|
|
#endif
|
|
|
|
|
2020-08-04 19:02:23 +03:00
|
|
|
KResultOr<size_t> nreceived = 0;
|
2020-02-08 15:09:37 +03:00
|
|
|
if (buffer_mode() == BufferMode::Bytes)
|
2020-08-18 10:25:23 +03:00
|
|
|
nreceived = receive_byte_buffered(description, buffer, buffer_length, flags, user_addr, user_addr_length);
|
2020-02-08 15:09:37 +03:00
|
|
|
else
|
2020-09-16 19:25:06 +03:00
|
|
|
nreceived = receive_packet_buffered(description, buffer, buffer_length, flags, user_addr, user_addr_length, packet_timestamp);
|
2020-02-08 15:09:37 +03:00
|
|
|
|
2020-08-04 19:02:23 +03:00
|
|
|
if (!nreceived.is_error())
|
|
|
|
Thread::current()->did_ipv4_socket_read(nreceived.value());
|
2019-12-01 19:36:06 +03:00
|
|
|
return nreceived;
|
2019-03-12 19:27:07 +03:00
|
|
|
}
|
|
|
|
|
2020-09-16 19:25:06 +03:00
|
|
|
bool IPv4Socket::did_receive(const IPv4Address& source_address, u16 source_port, KBuffer&& packet, const timeval& packet_timestamp)
|
2019-03-12 19:27:07 +03:00
|
|
|
{
|
2019-03-14 02:20:44 +03:00
|
|
|
LOCKER(lock());
|
2020-02-08 02:58:11 +03:00
|
|
|
|
|
|
|
if (is_shut_down_for_reading())
|
|
|
|
return false;
|
|
|
|
|
2019-08-05 12:06:21 +03:00
|
|
|
auto packet_size = packet.size();
|
2019-12-14 11:43:31 +03:00
|
|
|
|
|
|
|
if (buffer_mode() == BufferMode::Bytes) {
|
2020-01-20 18:08:49 +03:00
|
|
|
size_t space_in_receive_buffer = m_receive_buffer.space_for_writing();
|
2019-12-14 11:43:31 +03:00
|
|
|
if (packet_size > space_in_receive_buffer) {
|
2020-03-01 22:45:39 +03:00
|
|
|
dbg() << "IPv4Socket(" << this << "): did_receive refusing packet since buffer is full.";
|
2019-12-14 11:43:31 +03:00
|
|
|
ASSERT(m_can_read);
|
|
|
|
return false;
|
|
|
|
}
|
2020-09-12 06:11:07 +03:00
|
|
|
auto scratch_buffer = UserOrKernelBuffer::for_kernel_buffer(m_scratch_buffer.value().data());
|
2020-12-18 18:13:23 +03:00
|
|
|
auto nreceived_or_error = protocol_receive(ReadonlyBytes { packet.data(), packet.size() }, scratch_buffer, m_scratch_buffer.value().size(), 0);
|
2020-08-04 19:02:23 +03:00
|
|
|
if (nreceived_or_error.is_error())
|
|
|
|
return false;
|
2020-09-12 06:11:07 +03:00
|
|
|
ssize_t nwritten = m_receive_buffer.write(scratch_buffer, nreceived_or_error.value());
|
|
|
|
if (nwritten < 0)
|
|
|
|
return false;
|
2020-11-30 02:05:27 +03:00
|
|
|
set_can_read(!m_receive_buffer.is_empty());
|
2019-12-14 11:43:31 +03:00
|
|
|
} else {
|
2020-08-05 07:35:30 +03:00
|
|
|
if (m_receive_queue.size() > 2000) {
|
2020-03-01 22:45:39 +03:00
|
|
|
dbg() << "IPv4Socket(" << this << "): did_receive refusing packet since queue is full.";
|
2019-12-14 11:43:31 +03:00
|
|
|
return false;
|
|
|
|
}
|
2020-09-16 19:25:06 +03:00
|
|
|
m_receive_queue.append({ source_address, source_port, packet_timestamp, move(packet) });
|
2020-11-30 02:05:27 +03:00
|
|
|
set_can_read(true);
|
2019-12-14 11:43:31 +03:00
|
|
|
}
|
2019-03-14 17:28:23 +03:00
|
|
|
m_bytes_received += packet_size;
|
2019-03-13 15:13:23 +03:00
|
|
|
#ifdef IPV4_SOCKET_DEBUG
|
2019-12-14 11:43:31 +03:00
|
|
|
if (buffer_mode() == BufferMode::Bytes)
|
2020-03-01 22:45:39 +03:00
|
|
|
dbg() << "IPv4Socket(" << this << "): did_receive " << packet_size << " bytes, total_received=" << m_bytes_received;
|
2019-12-14 11:43:31 +03:00
|
|
|
else
|
2020-08-05 07:35:30 +03:00
|
|
|
dbg() << "IPv4Socket(" << this << "): did_receive " << packet_size << " bytes, total_received=" << m_bytes_received << ", packets in queue: " << m_receive_queue.size();
|
2019-03-13 15:13:23 +03:00
|
|
|
#endif
|
2019-11-04 16:03:14 +03:00
|
|
|
return true;
|
2019-03-12 19:27:07 +03:00
|
|
|
}
|
2019-08-10 19:10:36 +03:00
|
|
|
|
|
|
|
String IPv4Socket::absolute_path(const FileDescription&) const
|
|
|
|
{
|
|
|
|
if (m_role == Role::None)
|
|
|
|
return "socket";
|
|
|
|
|
|
|
|
StringBuilder builder;
|
|
|
|
builder.append("socket:");
|
|
|
|
|
|
|
|
builder.appendf("%s:%d", m_local_address.to_string().characters(), m_local_port);
|
|
|
|
if (m_role == Role::Accepted || m_role == Role::Connected)
|
|
|
|
builder.appendf(" / %s:%d", m_peer_address.to_string().characters(), m_peer_port);
|
|
|
|
|
|
|
|
switch (m_role) {
|
|
|
|
case Role::Listener:
|
|
|
|
builder.append(" (listening)");
|
|
|
|
break;
|
|
|
|
case Role::Accepted:
|
|
|
|
builder.append(" (accepted)");
|
|
|
|
break;
|
|
|
|
case Role::Connected:
|
|
|
|
builder.append(" (connected)");
|
|
|
|
break;
|
|
|
|
case Role::Connecting:
|
|
|
|
builder.append(" (connecting)");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
}
|
|
|
|
|
|
|
|
return builder.to_string();
|
|
|
|
}
|
2019-09-19 22:40:06 +03:00
|
|
|
|
2020-08-07 10:18:20 +03:00
|
|
|
KResult IPv4Socket::setsockopt(int level, int option, Userspace<const void*> user_value, socklen_t user_value_size)
|
2019-09-19 22:40:06 +03:00
|
|
|
{
|
|
|
|
if (level != IPPROTO_IP)
|
2020-07-31 01:26:33 +03:00
|
|
|
return Socket::setsockopt(level, option, user_value, user_value_size);
|
2019-09-19 22:40:06 +03:00
|
|
|
|
|
|
|
switch (option) {
|
2020-07-31 01:26:33 +03:00
|
|
|
case IP_TTL: {
|
|
|
|
if (user_value_size < sizeof(int))
|
2019-09-19 22:40:06 +03:00
|
|
|
return KResult(-EINVAL);
|
2020-07-31 01:26:33 +03:00
|
|
|
int value;
|
2020-09-12 06:11:07 +03:00
|
|
|
if (!copy_from_user(&value, static_ptr_cast<const int*>(user_value)))
|
2020-07-31 01:26:33 +03:00
|
|
|
return KResult(-EFAULT);
|
|
|
|
if (value < 0 || value > 255)
|
2019-09-19 22:40:06 +03:00
|
|
|
return KResult(-EINVAL);
|
2020-07-31 01:26:33 +03:00
|
|
|
m_ttl = value;
|
2019-09-19 22:40:06 +03:00
|
|
|
return KSuccess;
|
2020-07-31 01:26:33 +03:00
|
|
|
}
|
2019-09-19 22:40:06 +03:00
|
|
|
default:
|
|
|
|
return KResult(-ENOPROTOOPT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-07 12:29:05 +03:00
|
|
|
KResult IPv4Socket::getsockopt(FileDescription& description, int level, int option, Userspace<void*> value, Userspace<socklen_t*> value_size)
|
2019-09-19 22:40:06 +03:00
|
|
|
{
|
|
|
|
if (level != IPPROTO_IP)
|
2019-12-06 20:38:36 +03:00
|
|
|
return Socket::getsockopt(description, level, option, value, value_size);
|
2019-09-19 22:40:06 +03:00
|
|
|
|
2020-08-07 12:29:05 +03:00
|
|
|
socklen_t size;
|
2020-09-12 06:11:07 +03:00
|
|
|
if (!copy_from_user(&size, value_size.unsafe_userspace_ptr()))
|
2020-08-07 12:29:05 +03:00
|
|
|
return KResult(-EFAULT);
|
|
|
|
|
2019-09-19 22:40:06 +03:00
|
|
|
switch (option) {
|
|
|
|
case IP_TTL:
|
2020-08-07 12:29:05 +03:00
|
|
|
if (size < sizeof(int))
|
2019-09-19 22:40:06 +03:00
|
|
|
return KResult(-EINVAL);
|
2020-09-12 06:11:07 +03:00
|
|
|
if (!copy_to_user(static_ptr_cast<int*>(value), (int*)&m_ttl))
|
|
|
|
return KResult(-EFAULT);
|
2020-08-07 12:29:05 +03:00
|
|
|
size = sizeof(int);
|
2020-09-12 06:11:07 +03:00
|
|
|
if (!copy_to_user(value_size, &size))
|
|
|
|
return KResult(-EFAULT);
|
2019-09-19 22:40:06 +03:00
|
|
|
return KSuccess;
|
|
|
|
default:
|
|
|
|
return KResult(-ENOPROTOOPT);
|
|
|
|
}
|
|
|
|
}
|
2019-09-23 20:06:03 +03:00
|
|
|
|
2020-05-23 14:17:58 +03:00
|
|
|
int IPv4Socket::ioctl(FileDescription&, unsigned request, FlatPtr arg)
|
2019-09-23 20:06:03 +03:00
|
|
|
{
|
2020-01-12 15:28:07 +03:00
|
|
|
REQUIRE_PROMISE(inet);
|
2019-09-23 20:06:03 +03:00
|
|
|
|
2020-07-31 01:17:25 +03:00
|
|
|
SmapDisabler disabler;
|
|
|
|
|
2020-03-14 22:00:49 +03:00
|
|
|
auto ioctl_route = [request, arg]() {
|
2020-09-12 06:11:07 +03:00
|
|
|
rtentry route;
|
|
|
|
if (!copy_from_user(&route, (rtentry*)arg))
|
2020-03-14 22:00:49 +03:00
|
|
|
return -EFAULT;
|
2019-09-23 20:06:03 +03:00
|
|
|
|
2020-09-12 06:11:07 +03:00
|
|
|
auto copied_ifname = copy_string_from_user(route.rt_dev, IFNAMSIZ);
|
|
|
|
if (copied_ifname.is_null())
|
|
|
|
return -EFAULT;
|
2020-03-14 22:00:49 +03:00
|
|
|
|
2020-09-12 06:11:07 +03:00
|
|
|
auto adapter = NetworkAdapter::lookup_by_name(copied_ifname);
|
2020-03-14 22:00:49 +03:00
|
|
|
if (!adapter)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
switch (request) {
|
|
|
|
case SIOCADDRT:
|
2020-06-29 00:34:31 +03:00
|
|
|
if (!Process::current()->is_superuser())
|
2020-03-14 22:00:49 +03:00
|
|
|
return -EPERM;
|
2020-09-12 06:11:07 +03:00
|
|
|
if (route.rt_gateway.sa_family != AF_INET)
|
2020-03-14 22:00:49 +03:00
|
|
|
return -EAFNOSUPPORT;
|
2020-09-12 06:11:07 +03:00
|
|
|
if ((route.rt_flags & (RTF_UP | RTF_GATEWAY)) != (RTF_UP | RTF_GATEWAY))
|
2020-03-14 22:00:49 +03:00
|
|
|
return -EINVAL; // FIXME: Find the correct value to return
|
2020-09-12 06:11:07 +03:00
|
|
|
adapter->set_ipv4_gateway(IPv4Address(((sockaddr_in&)route.rt_gateway).sin_addr.s_addr));
|
2020-03-14 22:00:49 +03:00
|
|
|
return 0;
|
2019-09-23 20:06:03 +03:00
|
|
|
|
2020-03-14 22:00:49 +03:00
|
|
|
case SIOCDELRT:
|
|
|
|
// FIXME: Support gateway deletion
|
|
|
|
return 0;
|
|
|
|
}
|
2020-03-11 23:30:41 +03:00
|
|
|
|
2020-03-14 22:00:49 +03:00
|
|
|
return -EINVAL;
|
|
|
|
};
|
2019-10-02 19:20:11 +03:00
|
|
|
|
2020-03-14 22:00:49 +03:00
|
|
|
auto ioctl_interface = [request, arg]() {
|
2020-09-12 06:11:07 +03:00
|
|
|
ifreq* user_ifr = (ifreq*)arg;
|
|
|
|
ifreq ifr;
|
|
|
|
if (!copy_from_user(&ifr, user_ifr))
|
2019-10-02 19:20:11 +03:00
|
|
|
return -EFAULT;
|
2020-03-14 22:00:49 +03:00
|
|
|
|
|
|
|
char namebuf[IFNAMSIZ + 1];
|
2020-09-12 06:11:07 +03:00
|
|
|
memcpy(namebuf, ifr.ifr_name, IFNAMSIZ);
|
2020-03-14 22:00:49 +03:00
|
|
|
namebuf[sizeof(namebuf) - 1] = '\0';
|
|
|
|
|
|
|
|
auto adapter = NetworkAdapter::lookup_by_name(namebuf);
|
|
|
|
if (!adapter)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
switch (request) {
|
|
|
|
case SIOCSIFADDR:
|
2020-06-29 00:34:31 +03:00
|
|
|
if (!Process::current()->is_superuser())
|
2020-03-14 22:00:49 +03:00
|
|
|
return -EPERM;
|
2020-09-12 06:11:07 +03:00
|
|
|
if (ifr.ifr_addr.sa_family != AF_INET)
|
2020-03-14 22:00:49 +03:00
|
|
|
return -EAFNOSUPPORT;
|
2020-09-12 06:11:07 +03:00
|
|
|
adapter->set_ipv4_address(IPv4Address(((sockaddr_in&)ifr.ifr_addr).sin_addr.s_addr));
|
2020-03-14 22:00:49 +03:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SIOCSIFNETMASK:
|
2020-06-29 00:34:31 +03:00
|
|
|
if (!Process::current()->is_superuser())
|
2020-03-14 22:00:49 +03:00
|
|
|
return -EPERM;
|
2020-09-12 06:11:07 +03:00
|
|
|
if (ifr.ifr_addr.sa_family != AF_INET)
|
2020-03-14 22:00:49 +03:00
|
|
|
return -EAFNOSUPPORT;
|
2020-09-12 06:11:07 +03:00
|
|
|
adapter->set_ipv4_netmask(IPv4Address(((sockaddr_in&)ifr.ifr_netmask).sin_addr.s_addr));
|
2020-03-14 22:00:49 +03:00
|
|
|
return 0;
|
|
|
|
|
2020-09-12 06:11:07 +03:00
|
|
|
case SIOCGIFADDR: {
|
|
|
|
u16 sa_family = AF_INET;
|
|
|
|
if (!copy_to_user(&user_ifr->ifr_addr.sa_family, &sa_family))
|
|
|
|
return -EFAULT;
|
|
|
|
auto ip4_addr = adapter->ipv4_address().to_u32();
|
|
|
|
if (!copy_to_user(&((sockaddr_in&)user_ifr->ifr_addr).sin_addr.s_addr, &ip4_addr, sizeof(ip4_addr)))
|
2020-03-14 22:00:49 +03:00
|
|
|
return -EFAULT;
|
|
|
|
return 0;
|
2020-09-12 06:11:07 +03:00
|
|
|
}
|
2020-03-14 22:00:49 +03:00
|
|
|
|
2020-09-12 06:11:07 +03:00
|
|
|
case SIOCGIFHWADDR: {
|
|
|
|
u16 sa_family = AF_INET;
|
|
|
|
if (!copy_to_user(&user_ifr->ifr_hwaddr.sa_family, &sa_family))
|
|
|
|
return -EFAULT;
|
|
|
|
auto mac_address = adapter->mac_address();
|
|
|
|
if (!copy_to_user(ifr.ifr_hwaddr.sa_data, &mac_address, sizeof(MACAddress)))
|
2020-03-14 22:00:49 +03:00
|
|
|
return -EFAULT;
|
|
|
|
return 0;
|
2019-10-02 19:20:11 +03:00
|
|
|
}
|
2020-09-12 06:11:07 +03:00
|
|
|
}
|
2020-03-14 22:00:49 +03:00
|
|
|
|
|
|
|
return -EINVAL;
|
|
|
|
};
|
|
|
|
|
|
|
|
switch (request) {
|
|
|
|
case SIOCSIFADDR:
|
|
|
|
case SIOCSIFNETMASK:
|
|
|
|
case SIOCGIFADDR:
|
|
|
|
case SIOCGIFHWADDR:
|
|
|
|
return ioctl_interface();
|
|
|
|
|
|
|
|
case SIOCADDRT:
|
|
|
|
case SIOCDELRT:
|
|
|
|
return ioctl_route();
|
2019-09-23 20:06:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2020-02-08 17:52:32 +03:00
|
|
|
|
2020-06-02 19:20:05 +03:00
|
|
|
KResult IPv4Socket::close()
|
2020-02-08 17:52:32 +03:00
|
|
|
{
|
2020-12-21 02:09:48 +03:00
|
|
|
[[maybe_unused]] auto rc = shutdown(SHUT_RDWR);
|
2020-06-02 19:20:05 +03:00
|
|
|
return KSuccess;
|
2020-02-08 17:52:32 +03:00
|
|
|
}
|
2020-02-08 17:59:21 +03:00
|
|
|
|
|
|
|
void IPv4Socket::shut_down_for_reading()
|
|
|
|
{
|
|
|
|
Socket::shut_down_for_reading();
|
2020-11-30 02:05:27 +03:00
|
|
|
set_can_read(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IPv4Socket::set_can_read(bool value)
|
|
|
|
{
|
|
|
|
m_can_read = value;
|
|
|
|
if (value)
|
|
|
|
evaluate_block_conditions();
|
2020-02-08 17:59:21 +03:00
|
|
|
}
|
2020-02-16 03:27:42 +03:00
|
|
|
|
|
|
|
}
|