From 4d9e6b63d6cad0f6a9b50782b1d540220cfcdf6e Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 14 Nov 2020 12:13:59 +0100 Subject: Added udp sockets --- kernel/features/net.c | 148 +++++++++++++++++++++++++++++++++++--------------- kernel/inc/net.h | 6 ++ 2 files changed, 111 insertions(+), 43 deletions(-) (limited to 'kernel') diff --git a/kernel/features/net.c b/kernel/features/net.c index 86acac4..c9af1e2 100644 --- a/kernel/features/net.c +++ b/kernel/features/net.c @@ -25,8 +25,20 @@ static struct list *udp_sockets = NULL; * Socket functions */ -struct socket *socket_get(struct list *list, u32 port) +static struct list *socket_list(enum socket_type type) { + struct list *list = NULL; + if (type == S_TCP) + list = tcp_sockets; + else if (type == S_UDP) + list = udp_sockets; + return list; +} + +static struct socket *socket_get(enum socket_type type, u32 port) +{ + struct list *list = socket_list(type); + if (!list || !list->head || !port) return NULL; @@ -40,8 +52,13 @@ struct socket *socket_get(struct list *list, u32 port) return NULL; } -struct socket *socket_new(struct list *list) +static struct socket *socket_new(enum socket_type type) { + struct list *list = socket_list(type); + + if (!list) + return NULL; + struct socket *socket = malloc(sizeof(*socket)); memset(socket, 0, sizeof(*socket)); if (!list_add(list, socket)) @@ -50,6 +67,23 @@ struct socket *socket_new(struct list *list) return socket; } +static int socket_close(struct socket *socket) +{ + struct list *list = socket_list(socket->type); + + if (!list) + return 0; + + struct node *iterator = list->head; + while (iterator != NULL && iterator->data != NULL) { + iterator = iterator->next; + if (iterator->data == socket) + return list_remove(list, iterator) != NULL; + } + + return 0; +} + /** * Helper functions */ @@ -68,7 +102,7 @@ static int same_net(u32 ip_addr) return 0; } -u16 ip_calculate_checksum(struct ip_packet *packet) +static u16 ip_calculate_checksum(struct ip_packet *packet) { int array_size = sizeof(*packet) / 2; u16 *array = (u16 *)packet; @@ -83,8 +117,8 @@ u16 ip_calculate_checksum(struct ip_packet *packet) return ret; } -u16 tcp_calculate_checksum(struct tcp_packet *packet, struct tcp_pseudo_header *header, void *data, - u32 len) +static u16 tcp_calculate_checksum(struct tcp_packet *packet, struct tcp_pseudo_header *header, + void *data, u32 len) { u32 sum = 0; u16 *s = (u16 *)header; @@ -132,7 +166,7 @@ u16 tcp_calculate_checksum(struct tcp_packet *packet, struct tcp_pseudo_header * return ~(sum & 0xffff) & 0xffff; } -u16 icmp_calculate_checksum(struct icmp_packet *packet) +static u16 icmp_calculate_checksum(struct icmp_packet *packet) { u32 sum = 0; u16 *s = (u16 *)packet; @@ -146,7 +180,7 @@ u16 icmp_calculate_checksum(struct icmp_packet *packet) return (u16)~sum; } -void *dhcp_get_options(struct dhcp_packet *packet, u8 type) +static void *dhcp_get_options(struct dhcp_packet *packet, u8 type) { u8 *options = packet->options + 4; u8 curr_type = 0; @@ -166,7 +200,7 @@ void *dhcp_get_options(struct dhcp_packet *packet, u8 type) * Requests */ -void ethernet_send_packet(u8 *dst, u8 *data, int len, int prot) +static void ethernet_send_packet(u8 *dst, u8 *data, int len, int prot) { print("Ethernet send packet\n"); struct ethernet_packet *packet = malloc(sizeof(*packet) + (u32)len); @@ -179,7 +213,7 @@ void ethernet_send_packet(u8 *dst, u8 *data, int len, int prot) } static u8 broadcast_mac[] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; -void arp_send_packet(u8 *dst_mac, u32 dst_protocol_addr, u8 opcode) +static void arp_send_packet(u8 *dst_mac, u32 dst_protocol_addr, u8 opcode) { print("ARP send packet\n"); struct arp_packet *packet = malloc(sizeof(*packet)); @@ -198,8 +232,8 @@ void arp_send_packet(u8 *dst_mac, u32 dst_protocol_addr, u8 opcode) free(packet); } -int arp_lookup(u8 *ret_hardware_addr, u32 ip_addr); -void ip_send_packet(u32 dst, void *data, int len, u8 prot) +static int arp_lookup(u8 *ret_hardware_addr, u32 ip_addr); +static void ip_send_packet(u32 dst, void *data, int len, u8 prot) { print("IP send packet\n"); struct ip_packet *packet = malloc(sizeof(*packet) + (u32)len); @@ -241,26 +275,26 @@ void ip_send_packet(u32 dst, void *data, int len, u8 prot) free(packet); } -void udp_send_packet(u32 dst, u16 src_port, u16 dst_port, void *data, int len) +static void udp_send_packet(struct socket *socket, void *data, int len) { print("UDP send packet\n"); u32 length = sizeof(struct udp_packet) + (u32)len; struct udp_packet *packet = malloc(length); memset(packet, 0, sizeof(*packet)); - packet->src_port = (u16)htons(src_port); - packet->dst_port = (u16)htons(dst_port); + packet->src_port = (u16)htons(socket->src_port); + packet->dst_port = (u16)htons(socket->dst_port); packet->length = (u16)htons(length); packet->checksum = 0; // Optional if (data) memcpy(packet->data, data, (u32)len); - ip_send_packet(dst, packet, (int)length, IP_PROT_UDP); + ip_send_packet(socket->ip_addr, packet, (int)length, IP_PROT_UDP); free(packet); } //void tcp_send_packet(u32 dst, u16 src_port, u16 dst_port, u16 flags, void *data, int len) -void tcp_send_packet(struct socket *socket, u16 flags, void *data, int len) +static void tcp_send_packet(struct socket *socket, u16 flags, void *data, int len) { print("TCP send packet\n"); u32 length = sizeof(struct tcp_packet) + (u32)len; @@ -293,14 +327,17 @@ void tcp_send_packet(struct socket *socket, u16 flags, void *data, int len) free(packet); } -void dhcp_make_packet(struct dhcp_packet *packet, u8 msg_type); -void dhcp_request(void) +static void dhcp_make_packet(struct dhcp_packet *packet, u8 msg_type); +static void dhcp_request(void) { - u32 dst = 0xffffffff; + struct socket *socket = net_open(S_UDP); + if (!socket || !net_connect(socket, 0xffffffff, 67)) + return; + struct dhcp_packet *packet = malloc(sizeof(*packet)); memset(packet, 0, sizeof(*packet)); dhcp_make_packet(packet, 3); - udp_send_packet(dst, 68, 67, packet, sizeof(*packet)); + net_send(socket, packet, sizeof(*packet)); free(packet); } @@ -308,7 +345,7 @@ void dhcp_request(void) * Responses */ -void icmp_handle_packet(struct icmp_packet *request_packet, u32 dst) +static void icmp_handle_packet(struct icmp_packet *request_packet, u32 dst) { struct icmp_packet *packet = malloc(sizeof(*packet)); memset(packet, 0, sizeof(*packet)); @@ -322,7 +359,7 @@ void icmp_handle_packet(struct icmp_packet *request_packet, u32 dst) free(packet); } -void dhcp_handle_packet(struct dhcp_packet *packet) +static void dhcp_handle_packet(struct dhcp_packet *packet) { print("DHCP!\n"); if (packet->op == DHCP_REPLY && htonl(packet->xid) == DHCP_TRANSACTION_IDENTIFIER) { @@ -355,12 +392,12 @@ void dhcp_handle_packet(struct dhcp_packet *packet) // enum tcp_state { TCP_LISTEN, TCP_SYN_SENT, TCP_SYN_RECIEVED, TCP_ESTABLISHED, TCP_FIN_WAIT_1, TCP_FIN_WAIT_2, TCP_CLOSE_WAIT, TCP_CLOSING, TCP_LAST_ACK, TCP_TIME_WAIT, TCP_CLOSED }; #define http_res "HTTP/1.1 200\r\nContent-Length: 14\r\nConnection: close\r\n\r\n