2019-03-12 17:51:42 +03:00
|
|
|
#include <Kernel/IPv4Socket.h>
|
2019-03-14 14:20:38 +03:00
|
|
|
#include <Kernel/TCPSocket.h>
|
2019-03-14 14:43:18 +03:00
|
|
|
#include <Kernel/UDPSocket.h>
|
2019-03-12 17:51:42 +03:00
|
|
|
#include <Kernel/UnixTypes.h>
|
|
|
|
#include <Kernel/Process.h>
|
|
|
|
#include <Kernel/NetworkAdapter.h>
|
2019-03-12 19:27:07 +03:00
|
|
|
#include <Kernel/IPv4.h>
|
|
|
|
#include <Kernel/ICMP.h>
|
2019-03-14 01:14:30 +03:00
|
|
|
#include <Kernel/TCP.h>
|
2019-03-13 16:22:27 +03:00
|
|
|
#include <Kernel/UDP.h>
|
2019-03-12 19:27:07 +03:00
|
|
|
#include <Kernel/ARP.h>
|
2019-03-12 17:51:42 +03:00
|
|
|
#include <LibC/errno_numbers.h>
|
|
|
|
|
2019-03-13 16:22:27 +03:00
|
|
|
#define IPV4_SOCKET_DEBUG
|
|
|
|
|
2019-03-12 19:27:07 +03:00
|
|
|
Lockable<HashTable<IPv4Socket*>>& IPv4Socket::all_sockets()
|
|
|
|
{
|
|
|
|
static Lockable<HashTable<IPv4Socket*>>* s_table;
|
|
|
|
if (!s_table)
|
|
|
|
s_table = new Lockable<HashTable<IPv4Socket*>>;
|
|
|
|
return *s_table;
|
|
|
|
}
|
|
|
|
|
2019-03-12 17:51:42 +03:00
|
|
|
Retained<IPv4Socket> IPv4Socket::create(int type, int protocol)
|
|
|
|
{
|
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);
|
2019-03-12 17:51:42 +03:00
|
|
|
return adopt(*new IPv4Socket(type, protocol));
|
|
|
|
}
|
|
|
|
|
|
|
|
IPv4Socket::IPv4Socket(int type, int protocol)
|
|
|
|
: Socket(AF_INET, type, protocol)
|
|
|
|
{
|
2019-03-13 17:40:30 +03:00
|
|
|
kprintf("%s(%u) IPv4Socket{%p} created with type=%u, protocol=%d\n", current->name().characters(), current->pid(), this, type, protocol);
|
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
|
|
|
}
|
|
|
|
|
|
|
|
bool IPv4Socket::get_address(sockaddr* address, socklen_t* address_size)
|
|
|
|
{
|
|
|
|
// FIXME: Look into what fallback behavior we should have here.
|
|
|
|
if (*address_size != sizeof(sockaddr_in))
|
|
|
|
return false;
|
2019-03-13 16:47:21 +03:00
|
|
|
memcpy(address, &m_destination_address, sizeof(sockaddr_in));
|
2019-03-12 17:51:42 +03:00
|
|
|
*address_size = sizeof(sockaddr_in);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
KResult IPv4Socket::bind(const sockaddr* address, socklen_t address_size)
|
|
|
|
{
|
|
|
|
ASSERT(!is_connected());
|
|
|
|
if (address_size != sizeof(sockaddr_in))
|
|
|
|
return KResult(-EINVAL);
|
|
|
|
if (address->sa_family != AF_INET)
|
|
|
|
return KResult(-EINVAL);
|
|
|
|
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
}
|
|
|
|
|
|
|
|
KResult IPv4Socket::connect(const sockaddr* address, socklen_t address_size)
|
|
|
|
{
|
|
|
|
ASSERT(!m_bound);
|
|
|
|
if (address_size != sizeof(sockaddr_in))
|
|
|
|
return KResult(-EINVAL);
|
|
|
|
if (address->sa_family != AF_INET)
|
|
|
|
return KResult(-EINVAL);
|
|
|
|
|
2019-03-13 19:17:07 +03:00
|
|
|
auto& ia = *(const sockaddr_in*)address;
|
|
|
|
m_destination_address = IPv4Address((const byte*)&ia.sin_addr.s_addr);
|
|
|
|
m_destination_port = ntohs(ia.sin_port);
|
|
|
|
|
2019-03-14 14:20:38 +03:00
|
|
|
return protocol_connect();
|
2019-03-12 17:51:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void IPv4Socket::attach_fd(SocketRole)
|
|
|
|
{
|
|
|
|
++m_attached_fds;
|
|
|
|
}
|
|
|
|
|
|
|
|
void IPv4Socket::detach_fd(SocketRole)
|
|
|
|
{
|
|
|
|
--m_attached_fds;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IPv4Socket::can_read(SocketRole) const
|
|
|
|
{
|
2019-03-12 19:27:07 +03:00
|
|
|
return m_can_read;
|
2019-03-12 17:51:42 +03:00
|
|
|
}
|
|
|
|
|
2019-03-13 18:43:42 +03:00
|
|
|
ssize_t IPv4Socket::read(SocketRole, byte*, ssize_t)
|
2019-03-12 17:51:42 +03:00
|
|
|
{
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
}
|
|
|
|
|
2019-03-13 18:43:42 +03:00
|
|
|
ssize_t IPv4Socket::write(SocketRole, const byte*, ssize_t)
|
2019-03-12 17:51:42 +03:00
|
|
|
{
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
}
|
|
|
|
|
2019-03-13 18:43:42 +03:00
|
|
|
bool IPv4Socket::can_write(SocketRole) const
|
2019-03-12 17:51:42 +03:00
|
|
|
{
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
}
|
|
|
|
|
2019-03-13 18:05:56 +03:00
|
|
|
void IPv4Socket::allocate_source_port_if_needed()
|
|
|
|
{
|
|
|
|
if (m_source_port)
|
|
|
|
return;
|
2019-03-14 14:43:18 +03:00
|
|
|
protocol_allocate_source_port();
|
2019-03-13 18:05:56 +03:00
|
|
|
}
|
|
|
|
|
2019-03-12 17:51:42 +03:00
|
|
|
ssize_t IPv4Socket::sendto(const void* data, size_t data_length, int flags, const sockaddr* addr, socklen_t addr_length)
|
|
|
|
{
|
|
|
|
(void)flags;
|
2019-03-14 01:14:30 +03:00
|
|
|
if (addr && addr_length != sizeof(sockaddr_in))
|
2019-03-12 17:51:42 +03:00
|
|
|
return -EINVAL;
|
|
|
|
// FIXME: Find the adapter some better way!
|
|
|
|
auto* adapter = NetworkAdapter::from_ipv4_address(IPv4Address(192, 168, 5, 2));
|
|
|
|
if (!adapter) {
|
|
|
|
// FIXME: Figure out which error code to return.
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
}
|
|
|
|
|
2019-03-13 19:17:07 +03:00
|
|
|
if (addr) {
|
2019-03-14 01:14:30 +03:00
|
|
|
if (addr->sa_family != AF_INET) {
|
|
|
|
kprintf("sendto: Bad address family: %u is not AF_INET!\n", addr->sa_family);
|
|
|
|
return -EAFNOSUPPORT;
|
|
|
|
}
|
|
|
|
|
2019-03-13 19:17:07 +03:00
|
|
|
auto& ia = *(const sockaddr_in*)addr;
|
|
|
|
m_destination_address = IPv4Address((const byte*)&ia.sin_addr.s_addr);
|
|
|
|
m_destination_port = ntohs(ia.sin_port);
|
|
|
|
}
|
2019-03-13 17:40:30 +03:00
|
|
|
|
2019-03-13 18:05:56 +03:00
|
|
|
allocate_source_port_if_needed();
|
2019-03-12 17:51:42 +03:00
|
|
|
|
2019-03-13 16:47:21 +03:00
|
|
|
kprintf("sendto: destination=%s:%u\n", m_destination_address.to_string().characters(), m_destination_port);
|
2019-03-12 17:51:42 +03:00
|
|
|
|
2019-03-13 17:40:30 +03:00
|
|
|
if (type() == SOCK_RAW) {
|
2019-03-14 01:14:30 +03:00
|
|
|
adapter->send_ipv4(MACAddress(), m_destination_address, (IPv4Protocol)protocol(), ByteBuffer::copy((const byte*)data, data_length));
|
2019-03-13 17:40:30 +03:00
|
|
|
return data_length;
|
|
|
|
}
|
|
|
|
|
2019-03-14 14:43:18 +03:00
|
|
|
return protocol_send(data, data_length);
|
2019-03-12 17:51:42 +03:00
|
|
|
}
|
2019-03-12 19:27:07 +03:00
|
|
|
|
2019-03-13 16:47:21 +03:00
|
|
|
ssize_t IPv4Socket::recvfrom(void* buffer, size_t buffer_length, int flags, sockaddr* addr, socklen_t* addr_length)
|
2019-03-12 19:27:07 +03:00
|
|
|
{
|
|
|
|
(void)flags;
|
2019-03-14 01:14:30 +03:00
|
|
|
if (addr_length && *addr_length < sizeof(sockaddr_in))
|
2019-03-13 16:47:21 +03:00
|
|
|
return -EINVAL;
|
|
|
|
|
2019-03-13 05:26:01 +03:00
|
|
|
#ifdef IPV4_SOCKET_DEBUG
|
2019-03-13 17:00:28 +03:00
|
|
|
kprintf("recvfrom: type=%d, source_port=%u\n", type(), source_port());
|
2019-03-13 05:26:01 +03:00
|
|
|
#endif
|
2019-03-12 19:27:07 +03:00
|
|
|
|
|
|
|
ByteBuffer packet_buffer;
|
|
|
|
{
|
2019-03-14 02:20:44 +03:00
|
|
|
LOCKER(lock());
|
2019-03-12 19:27:07 +03:00
|
|
|
if (!m_receive_queue.is_empty()) {
|
|
|
|
packet_buffer = m_receive_queue.take_first();
|
2019-03-13 05:26:01 +03:00
|
|
|
m_can_read = !m_receive_queue.is_empty();
|
2019-03-12 19:27:07 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (packet_buffer.is_null()) {
|
|
|
|
current->set_blocked_socket(this);
|
2019-03-13 15:13:23 +03:00
|
|
|
load_receive_deadline();
|
2019-03-12 19:27:07 +03:00
|
|
|
block(Process::BlockedReceive);
|
|
|
|
Scheduler::yield();
|
|
|
|
|
2019-03-14 02:20:44 +03:00
|
|
|
LOCKER(lock());
|
2019-03-13 15:13:23 +03:00
|
|
|
if (!m_can_read) {
|
|
|
|
// Unblocked due to timeout.
|
|
|
|
return -EAGAIN;
|
|
|
|
}
|
2019-03-12 19:27:07 +03:00
|
|
|
ASSERT(m_can_read);
|
|
|
|
ASSERT(!m_receive_queue.is_empty());
|
|
|
|
packet_buffer = m_receive_queue.take_first();
|
2019-03-13 05:26:01 +03:00
|
|
|
m_can_read = !m_receive_queue.is_empty();
|
2019-03-12 19:27:07 +03:00
|
|
|
}
|
|
|
|
ASSERT(!packet_buffer.is_null());
|
|
|
|
auto& ipv4_packet = *(const IPv4Packet*)(packet_buffer.pointer());
|
2019-03-13 16:22:27 +03:00
|
|
|
|
2019-03-14 01:14:30 +03:00
|
|
|
if (addr) {
|
|
|
|
auto& ia = *(sockaddr_in*)addr;
|
|
|
|
memcpy(&ia.sin_addr, &m_destination_address, sizeof(IPv4Address));
|
|
|
|
ia.sin_family = AF_INET;
|
|
|
|
ASSERT(addr_length);
|
|
|
|
*addr_length = sizeof(sockaddr_in);
|
|
|
|
}
|
2019-03-13 16:47:21 +03:00
|
|
|
|
2019-03-13 16:22:27 +03:00
|
|
|
if (type() == SOCK_RAW) {
|
|
|
|
ASSERT(buffer_length >= ipv4_packet.payload_size());
|
|
|
|
memcpy(buffer, ipv4_packet.payload(), ipv4_packet.payload_size());
|
|
|
|
return ipv4_packet.payload_size();
|
|
|
|
}
|
|
|
|
|
2019-03-14 14:43:18 +03:00
|
|
|
return protocol_receive(packet_buffer, buffer, buffer_length, flags, addr, addr_length);
|
2019-03-12 19:27:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void IPv4Socket::did_receive(ByteBuffer&& packet)
|
|
|
|
{
|
2019-03-14 02:20:44 +03:00
|
|
|
LOCKER(lock());
|
2019-03-12 19:27:07 +03:00
|
|
|
m_receive_queue.append(move(packet));
|
|
|
|
m_can_read = true;
|
2019-03-13 15:13:23 +03:00
|
|
|
#ifdef IPV4_SOCKET_DEBUG
|
|
|
|
kprintf("IPv4Socket(%p): did_receive %d bytes, packets in queue: %d\n", this, packet.size(), m_receive_queue.size_slow());
|
|
|
|
#endif
|
2019-03-12 19:27:07 +03:00
|
|
|
}
|