2006-06-25 05:13:17 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <byteswap.h>
|
|
|
|
#include <latch.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <gpxe/in.h>
|
|
|
|
#include <gpxe/ip.h>
|
2006-06-28 15:43:08 +00:00
|
|
|
#include <gpxe/ip6.h>
|
2006-06-25 05:13:17 +00:00
|
|
|
#include <gpxe/udp.h>
|
|
|
|
#include <gpxe/init.h>
|
|
|
|
#include <gpxe/pkbuff.h>
|
|
|
|
#include <gpxe/netdevice.h>
|
2006-06-28 15:43:08 +00:00
|
|
|
#include <gpxe/tcpip_if.h>
|
2006-06-25 05:13:17 +00:00
|
|
|
|
|
|
|
/** @file
|
|
|
|
*
|
|
|
|
* UDP protocol
|
|
|
|
*/
|
|
|
|
|
2006-07-19 16:25:23 +00:00
|
|
|
/**
|
|
|
|
* List of registered UDP connections
|
|
|
|
*/
|
|
|
|
static LIST_HEAD ( udp_conns );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Some utility functions
|
|
|
|
*/
|
2006-06-28 07:46:28 +00:00
|
|
|
static inline void copy_sockaddr ( struct sockaddr *source, struct sockaddr *dest ) {
|
|
|
|
memcpy ( dest, source, sizeof ( *dest ) );
|
|
|
|
}
|
|
|
|
|
2006-06-30 08:52:03 +00:00
|
|
|
static inline uint16_t * dest_port ( struct sockaddr *sock ) {
|
2006-06-28 07:46:28 +00:00
|
|
|
switch ( sock->sa_family ) {
|
|
|
|
case AF_INET:
|
2006-06-30 08:52:03 +00:00
|
|
|
return &sock->sin.sin_port;
|
2006-06-28 07:46:28 +00:00
|
|
|
case AF_INET6:
|
2006-06-30 08:52:03 +00:00
|
|
|
return &sock->sin6.sin6_port;
|
2006-06-28 07:46:28 +00:00
|
|
|
}
|
2006-06-30 08:52:03 +00:00
|
|
|
return NULL;
|
2006-06-28 07:46:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Dump the UDP header
|
|
|
|
*
|
|
|
|
* @v udphdr UDP header
|
|
|
|
*/
|
|
|
|
void udp_dump ( struct udp_header *udphdr ) {
|
|
|
|
|
|
|
|
/* Print UDP header for debugging */
|
2006-07-19 18:45:18 +00:00
|
|
|
DBG ( "UDP header at %p + %#zx\n", udphdr, sizeof ( *udphdr ) );
|
2006-06-28 07:46:28 +00:00
|
|
|
DBG ( "\tSource Port = %d\n", ntohs ( udphdr->source_port ) );
|
|
|
|
DBG ( "\tDestination Port = %d\n", ntohs ( udphdr->dest_port ) );
|
|
|
|
DBG ( "\tLength = %d\n", ntohs ( udphdr->len ) );
|
2006-06-30 08:52:03 +00:00
|
|
|
DBG ( "\tChecksum = %x\n", ntohs ( udphdr->chksum ) );
|
2006-07-19 18:45:18 +00:00
|
|
|
DBG ( "\tChecksum located at %p\n", &udphdr->chksum );
|
2006-06-28 07:46:28 +00:00
|
|
|
}
|
2006-06-25 05:13:17 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Open a UDP connection
|
|
|
|
*
|
|
|
|
* @v conn UDP connection
|
|
|
|
* @v peer Destination socket address
|
|
|
|
*
|
|
|
|
* This function stores the socket address within the connection
|
|
|
|
*/
|
|
|
|
void udp_connect ( struct udp_connection *conn, struct sockaddr *peer ) {
|
2006-07-19 21:05:58 +00:00
|
|
|
copy_sockaddr ( peer, &conn->sa );
|
2006-06-28 07:46:28 +00:00
|
|
|
|
|
|
|
/* Not sure if this should add the connection to udp_conns; If it does,
|
|
|
|
* uncomment the following code
|
|
|
|
*/
|
2006-06-25 05:13:17 +00:00
|
|
|
// list_add ( &conn->list, &udp_conns );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize a UDP connection
|
|
|
|
*
|
|
|
|
* @v conn UDP connection
|
|
|
|
* @v udp_op UDP operations
|
|
|
|
*/
|
|
|
|
void udp_init ( struct udp_connection *conn, struct udp_operations *udp_op ) {
|
2006-06-28 07:46:28 +00:00
|
|
|
conn->local_port = 0;
|
|
|
|
conn->tx_pkb = NULL;
|
|
|
|
if ( udp_op != NULL ) {
|
|
|
|
conn->udp_op = udp_op;
|
|
|
|
}
|
2006-06-25 05:13:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2006-07-19 16:25:23 +00:00
|
|
|
* User request to send data via a UDP connection
|
|
|
|
*
|
|
|
|
* @v conn UDP connection
|
|
|
|
*
|
|
|
|
* This function allocates buffer space and invokes the function's senddata()
|
|
|
|
* callback. The callback may use the buffer space
|
|
|
|
*/
|
|
|
|
int udp_senddata ( struct udp_connection *conn ) {
|
2006-07-19 16:27:54 +00:00
|
|
|
conn->tx_pkb = alloc_pkb ( UDP_MAX_TXPKB );
|
2006-07-19 16:25:23 +00:00
|
|
|
if ( conn->tx_pkb == NULL ) {
|
|
|
|
DBG ( "Error allocating packet buffer of length %d\n",
|
|
|
|
UDP_MAX_TXPKB );
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
2006-07-19 18:21:30 +00:00
|
|
|
pkb_reserve ( conn->tx_pkb, UDP_MAX_HLEN );
|
2006-07-19 20:16:46 +00:00
|
|
|
conn->udp_op->senddata ( conn, conn->tx_pkb->data,
|
2006-07-19 18:21:30 +00:00
|
|
|
pkb_available ( conn->tx_pkb ) );
|
2006-07-19 16:25:23 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2006-07-19 20:38:49 +00:00
|
|
|
* Transmit data via a UDP connection to a specified address
|
2006-06-25 05:13:17 +00:00
|
|
|
*
|
|
|
|
* @v conn UDP connection
|
2006-07-19 20:38:49 +00:00
|
|
|
* @v peer Destination address
|
2006-06-25 05:13:17 +00:00
|
|
|
* @v data Data to send
|
|
|
|
* @v len Length of data
|
|
|
|
*
|
2006-06-28 07:46:28 +00:00
|
|
|
* This function fills up the UDP headers and sends the data. Discover the
|
|
|
|
* network protocol through the sa_family field in the destination socket
|
|
|
|
* address.
|
2006-06-25 05:13:17 +00:00
|
|
|
*/
|
2006-07-19 20:38:49 +00:00
|
|
|
int udp_sendto ( struct udp_connection *conn, struct sockaddr *peer,
|
|
|
|
const void *data, size_t len ) {
|
2006-06-28 07:46:28 +00:00
|
|
|
struct udp_header *udphdr; /* UDP header */
|
|
|
|
uint16_t *dest;
|
|
|
|
|
2006-07-19 18:21:30 +00:00
|
|
|
/* Copy payload */
|
|
|
|
memmove ( pkb_put ( conn->tx_pkb, len ), data, len );
|
2006-06-25 05:13:17 +00:00
|
|
|
|
2006-06-28 07:46:28 +00:00
|
|
|
/*
|
|
|
|
* Add the UDP header
|
|
|
|
*
|
|
|
|
* Covert all 16- and 32- bit integers into network btye order before
|
|
|
|
* sending it over the network
|
|
|
|
*/
|
|
|
|
udphdr = pkb_push ( conn->tx_pkb, sizeof ( *udphdr ) );
|
2006-07-19 20:38:49 +00:00
|
|
|
if ( (dest = dest_port ( peer ) ) == NULL ) {
|
|
|
|
DBG ( "Network family %d not supported\n", peer->sa_family );
|
2006-06-30 08:52:03 +00:00
|
|
|
return -EAFNOSUPPORT;
|
2006-06-28 07:46:28 +00:00
|
|
|
}
|
2006-06-30 08:52:03 +00:00
|
|
|
udphdr->dest_port = *dest;
|
|
|
|
udphdr->source_port = conn->local_port;
|
2006-06-28 07:46:28 +00:00
|
|
|
udphdr->len = htons ( pkb_len ( conn->tx_pkb ) );
|
2006-07-19 23:38:05 +00:00
|
|
|
udphdr->chksum = 0;
|
|
|
|
udphdr->chksum = tcpip_chksum ( udphdr, sizeof ( *udphdr ) + len );
|
2006-06-28 07:46:28 +00:00
|
|
|
|
2006-07-19 21:05:58 +00:00
|
|
|
/**
|
|
|
|
* Dump the contents of the UDP header
|
|
|
|
*/
|
2006-06-28 07:46:28 +00:00
|
|
|
udp_dump ( udphdr );
|
|
|
|
|
|
|
|
/* Send it to the next layer for processing */
|
2006-07-19 20:38:49 +00:00
|
|
|
return trans_tx ( conn->tx_pkb, &udp_protocol, peer );
|
2006-06-25 05:13:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2006-07-19 20:38:49 +00:00
|
|
|
* Transmit data via a UDP connection to a specified address
|
2006-06-25 05:13:17 +00:00
|
|
|
*
|
|
|
|
* @v conn UDP connection
|
|
|
|
* @v data Data to send
|
|
|
|
* @v len Length of data
|
|
|
|
*/
|
2006-07-19 20:38:49 +00:00
|
|
|
int udp_send ( struct udp_connection *conn, const void *data, size_t len ) {
|
2006-07-19 21:05:58 +00:00
|
|
|
return udp_sendto ( conn, &conn->sa, data, len );
|
2006-06-25 05:13:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Close a UDP connection
|
|
|
|
*
|
|
|
|
* @v conn UDP connection
|
|
|
|
*/
|
|
|
|
void udp_close ( struct udp_connection *conn ) {
|
2006-06-28 07:46:28 +00:00
|
|
|
list_del ( &conn->list );
|
2006-06-25 05:13:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Open a local port
|
|
|
|
*
|
|
|
|
* @v conn UDP connection
|
|
|
|
* @v local_port Local port on which to open connection
|
|
|
|
*
|
|
|
|
* This does not support the 0 port option correctly yet
|
|
|
|
*/
|
|
|
|
int udp_open ( struct udp_connection *conn, uint16_t local_port ) {
|
2006-06-28 07:46:28 +00:00
|
|
|
struct udp_connection *connr;
|
|
|
|
uint16_t min_port = 0xffff;
|
|
|
|
|
|
|
|
/* Iterate through udp_conns to see if local_port is available */
|
|
|
|
list_for_each_entry ( connr, &udp_conns, list ) {
|
|
|
|
if ( connr->local_port == local_port ) {
|
|
|
|
return -EISCONN;
|
|
|
|
}
|
|
|
|
if ( min_port > connr->local_port ) {
|
|
|
|
min_port = connr->local_port;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* This code is buggy. I will update it soon :) */
|
|
|
|
conn->local_port = local_port == 0 ? min_port > 1024 ? 1024 :
|
|
|
|
min_port + 1 : local_port;
|
|
|
|
|
|
|
|
/* Add the connection to the list of listening connections */
|
|
|
|
list_add ( &conn->list, &udp_conns );
|
|
|
|
return 0;
|
2006-06-25 05:13:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Process a received packet
|
|
|
|
*
|
2006-06-28 07:46:28 +00:00
|
|
|
* @v pkb Packet buffer
|
2006-06-25 05:13:17 +00:00
|
|
|
* @v src_net_addr Source network address
|
|
|
|
* @v dest_net_addr Destination network address
|
|
|
|
*/
|
|
|
|
void udp_rx ( struct pk_buff *pkb, struct in_addr *src_net_addr __unused,
|
2006-06-28 07:46:28 +00:00
|
|
|
struct in_addr *dest_net_addr __unused ) {
|
|
|
|
struct udp_header *udphdr = pkb->data;
|
|
|
|
struct udp_connection *conn;
|
|
|
|
uint16_t ulen;
|
|
|
|
uint16_t chksum;
|
|
|
|
|
|
|
|
udp_dump ( udphdr );
|
|
|
|
|
|
|
|
/* Validate the packet and the UDP length */
|
|
|
|
if ( pkb_len ( pkb ) < sizeof ( *udphdr ) ) {
|
|
|
|
DBG ( "UDP packet too short (%d bytes)\n",
|
|
|
|
pkb_len ( pkb ) );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ulen = ntohs ( udphdr->len );
|
|
|
|
if ( ulen != pkb_len ( pkb ) ) {
|
|
|
|
DBG ( "Inconsistent UDP packet length (%d bytes)\n",
|
|
|
|
pkb_len ( pkb ) );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Verify the checksum */
|
2006-07-20 00:03:01 +00:00
|
|
|
#warning "Don't we need to take the pseudo-header into account here?"
|
|
|
|
#if 0
|
2006-07-19 23:38:05 +00:00
|
|
|
chksum = tcpip_chksum ( pkb->data, pkb_len ( pkb ) );
|
2006-06-28 07:46:28 +00:00
|
|
|
if ( chksum != 0xffff ) {
|
2006-07-20 00:03:01 +00:00
|
|
|
DBG ( "Bad checksum %#x\n", chksum );
|
2006-06-28 07:46:28 +00:00
|
|
|
return;
|
|
|
|
}
|
2006-07-20 00:03:01 +00:00
|
|
|
#endif
|
2006-06-28 07:46:28 +00:00
|
|
|
|
|
|
|
/* Todo: Check if it is a broadcast or multicast address */
|
|
|
|
|
|
|
|
/* Demux the connection */
|
|
|
|
list_for_each_entry ( conn, &udp_conns, list ) {
|
2006-07-20 00:03:01 +00:00
|
|
|
if ( conn->local_port == udphdr->dest_port ) {
|
2006-06-28 07:46:28 +00:00
|
|
|
goto conn;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
|
|
|
|
conn:
|
|
|
|
/** Strip off the UDP header */
|
|
|
|
pkb_pull ( pkb, sizeof ( *udphdr ) );
|
|
|
|
|
|
|
|
/** Call the application's callback */
|
|
|
|
conn->udp_op->newdata ( conn, pkb->data, ulen - sizeof ( *udphdr ) );
|
2006-06-25 05:13:17 +00:00
|
|
|
}
|
|
|
|
|
2006-06-28 15:43:08 +00:00
|
|
|
struct tcpip_protocol udp_protocol = {
|
2006-06-28 07:46:28 +00:00
|
|
|
.name = "UDP",
|
|
|
|
.rx = udp_rx,
|
|
|
|
.trans_proto = IP_UDP,
|
2006-06-28 15:43:08 +00:00
|
|
|
.csum_offset = 6,
|
2006-06-25 05:13:17 +00:00
|
|
|
};
|
|
|
|
|
2006-06-28 15:43:08 +00:00
|
|
|
TCPIP_PROTOCOL ( udp_protocol );
|