2015-04-24 15:06:14 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Freie Universität Berlin
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup net_ng_udp
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief UDP implementation
|
|
|
|
*
|
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "byteorder.h"
|
|
|
|
#include "msg.h"
|
|
|
|
#include "thread.h"
|
|
|
|
#include "utlist.h"
|
2015-08-09 23:53:40 +02:00
|
|
|
#include "net/ipv6/hdr.h"
|
2015-04-24 15:06:14 +02:00
|
|
|
#include "net/ng_udp.h"
|
2015-08-10 02:41:08 +02:00
|
|
|
#include "net/gnrc.h"
|
2015-08-07 14:56:36 +02:00
|
|
|
#include "net/inet_csum.h"
|
2015-04-24 15:06:14 +02:00
|
|
|
|
|
|
|
|
|
|
|
#define ENABLE_DEBUG (0)
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Save the UDP's thread PID for later reference
|
|
|
|
*/
|
|
|
|
static kernel_pid_t _pid = KERNEL_PID_UNDEF;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Allocate memory for the UDP thread's stack
|
|
|
|
*/
|
2015-05-27 12:05:06 +02:00
|
|
|
#if ENABLE_DEBUG
|
|
|
|
static char _stack[NG_UDP_STACK_SIZE + THREAD_EXTRA_STACKSIZE_PRINTF];
|
|
|
|
#else
|
2015-04-24 15:06:14 +02:00
|
|
|
static char _stack[NG_UDP_STACK_SIZE];
|
2015-05-27 12:05:06 +02:00
|
|
|
#endif
|
2015-04-24 15:06:14 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Calculate the UDP checksum dependent on the network protocol
|
|
|
|
*
|
|
|
|
* @note If the checksum turns out to be 0x0000, the function returns 0xffff
|
|
|
|
* as specified in RFC768
|
|
|
|
*
|
|
|
|
* @param[in] pkt pointer to the packet in the packet buffer
|
|
|
|
* @param[in] pseudo_hdr pointer to the network layer header
|
|
|
|
* @param[in] payload pointer to the payload
|
|
|
|
*
|
|
|
|
* @return the checksum of the pkt in host byte order
|
|
|
|
* @return 0 on error
|
|
|
|
*/
|
|
|
|
static uint16_t _calc_csum(ng_pktsnip_t *hdr, ng_pktsnip_t *pseudo_hdr,
|
|
|
|
ng_pktsnip_t *payload)
|
|
|
|
{
|
|
|
|
uint16_t csum = 0;
|
|
|
|
uint16_t len = (uint16_t)hdr->size;
|
|
|
|
|
|
|
|
/* process the payload */
|
|
|
|
while (payload && payload != hdr) {
|
2015-08-07 14:56:36 +02:00
|
|
|
csum = inet_csum(csum, (uint8_t *)(payload->data), payload->size);
|
2015-04-24 15:06:14 +02:00
|
|
|
len += (uint16_t)payload->size;
|
|
|
|
payload = payload->next;
|
|
|
|
}
|
|
|
|
/* process applicable UDP header bytes */
|
2015-08-10 03:16:53 +02:00
|
|
|
csum = inet_csum(csum, (uint8_t *)hdr->data, sizeof(udp_hdr_t));
|
2015-04-24 15:06:14 +02:00
|
|
|
|
|
|
|
switch (pseudo_hdr->type) {
|
|
|
|
#ifdef MODULE_NG_IPV6
|
|
|
|
case NG_NETTYPE_IPV6:
|
2015-08-09 23:53:40 +02:00
|
|
|
csum = ipv6_hdr_inet_csum(csum, pseudo_hdr->data, PROTNUM_UDP, len);
|
2015-04-24 15:06:14 +02:00
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
(void)len;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/* return inverted results */
|
|
|
|
return ~csum;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _receive(ng_pktsnip_t *pkt)
|
|
|
|
{
|
2015-04-28 17:04:37 +02:00
|
|
|
ng_pktsnip_t *udp, *ipv6;
|
2015-08-10 03:16:53 +02:00
|
|
|
udp_hdr_t *hdr;
|
2015-04-24 15:06:14 +02:00
|
|
|
uint32_t port;
|
|
|
|
|
|
|
|
/* mark UDP header */
|
|
|
|
udp = ng_pktbuf_start_write(pkt);
|
|
|
|
if (udp == NULL) {
|
|
|
|
DEBUG("udp: unable to get write access to packet\n");
|
|
|
|
ng_pktbuf_release(pkt);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
pkt = udp;
|
2015-08-10 03:16:53 +02:00
|
|
|
udp = ng_pktbuf_mark(pkt, sizeof(udp_hdr_t), NG_NETTYPE_UDP);
|
2015-04-24 15:06:14 +02:00
|
|
|
if (udp == NULL) {
|
|
|
|
DEBUG("udp: error marking UDP header, dropping packet\n");
|
|
|
|
ng_pktbuf_release(pkt);
|
|
|
|
return;
|
|
|
|
}
|
2015-06-22 16:37:03 +02:00
|
|
|
/* mark payload as Type: UNDEF */
|
|
|
|
pkt->type = NG_NETTYPE_UNDEF;
|
|
|
|
/* get explicit pointer to UDP header */
|
2015-08-10 03:16:53 +02:00
|
|
|
hdr = (udp_hdr_t *)udp->data;
|
2015-04-24 15:06:14 +02:00
|
|
|
|
2015-04-28 17:04:37 +02:00
|
|
|
LL_SEARCH_SCALAR(pkt, ipv6, type, NG_NETTYPE_IPV6);
|
|
|
|
|
2015-07-22 14:38:28 +02:00
|
|
|
assert(ipv6 != NULL);
|
|
|
|
|
2015-04-24 15:06:14 +02:00
|
|
|
/* validate checksum */
|
2015-04-28 17:04:37 +02:00
|
|
|
if (_calc_csum(udp, ipv6, pkt)) {
|
2015-04-24 15:06:14 +02:00
|
|
|
DEBUG("udp: received packet with invalid checksum, dropping it\n");
|
|
|
|
ng_pktbuf_release(pkt);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get port (netreg demux context) */
|
|
|
|
port = (uint32_t)byteorder_ntohs(hdr->dst_port);
|
|
|
|
|
|
|
|
/* send payload to receivers */
|
2015-04-29 22:33:38 +02:00
|
|
|
if (!ng_netapi_dispatch_receive(NG_NETTYPE_UDP, port, pkt)) {
|
2015-04-24 15:06:14 +02:00
|
|
|
DEBUG("udp: unable to forward packet as no one is interested in it\n");
|
|
|
|
ng_pktbuf_release(pkt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _send(ng_pktsnip_t *pkt)
|
|
|
|
{
|
2015-08-10 03:16:53 +02:00
|
|
|
udp_hdr_t *hdr;
|
2015-04-24 15:06:14 +02:00
|
|
|
ng_pktsnip_t *udp_snip;
|
|
|
|
|
|
|
|
/* get udp snip and hdr */
|
|
|
|
LL_SEARCH_SCALAR(pkt, udp_snip, type, NG_NETTYPE_UDP);
|
2015-07-22 14:38:28 +02:00
|
|
|
|
|
|
|
assert(udp_snip != NULL);
|
|
|
|
|
2015-04-24 15:06:14 +02:00
|
|
|
udp_snip = ng_pktbuf_start_write(udp_snip);
|
|
|
|
if (udp_snip == NULL) {
|
2015-04-16 05:09:35 +02:00
|
|
|
DEBUG("udp: cannot send packet: unable to allocate packet\n");
|
2015-04-24 15:06:14 +02:00
|
|
|
ng_pktbuf_release(pkt);
|
|
|
|
return;
|
|
|
|
}
|
2015-08-10 03:16:53 +02:00
|
|
|
hdr = (udp_hdr_t *)udp_snip->data;
|
2015-04-24 15:06:14 +02:00
|
|
|
/* fill in size field */
|
2015-04-28 21:02:41 +02:00
|
|
|
hdr->length = byteorder_htons(ng_pkt_len(udp_snip));
|
2015-04-24 15:06:14 +02:00
|
|
|
|
|
|
|
/* and forward packet to the network layer */
|
2015-04-29 22:33:38 +02:00
|
|
|
if (!ng_netapi_dispatch_send(pkt->type, NG_NETREG_DEMUX_CTX_ALL, pkt)) {
|
2015-04-16 05:09:35 +02:00
|
|
|
DEBUG("udp: cannot send packet: network layer not found\n");
|
2015-04-24 15:06:14 +02:00
|
|
|
ng_pktbuf_release(pkt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *_event_loop(void *arg)
|
|
|
|
{
|
|
|
|
(void)arg;
|
|
|
|
msg_t msg, reply;
|
|
|
|
msg_t msg_queue[NG_UDP_MSG_QUEUE_SIZE];
|
|
|
|
ng_netreg_entry_t netreg;
|
|
|
|
|
|
|
|
/* preset reply message */
|
|
|
|
reply.type = NG_NETAPI_MSG_TYPE_ACK;
|
|
|
|
reply.content.value = (uint32_t)-ENOTSUP;
|
|
|
|
/* initialize message queue */
|
|
|
|
msg_init_queue(msg_queue, NG_UDP_MSG_QUEUE_SIZE);
|
|
|
|
/* register UPD at netreg */
|
|
|
|
netreg.demux_ctx = NG_NETREG_DEMUX_CTX_ALL;
|
|
|
|
netreg.pid = thread_getpid();
|
|
|
|
ng_netreg_register(NG_NETTYPE_UDP, &netreg);
|
|
|
|
|
|
|
|
/* dispatch NETAPI messages */
|
|
|
|
while (1) {
|
|
|
|
msg_receive(&msg);
|
|
|
|
switch (msg.type) {
|
|
|
|
case NG_NETAPI_MSG_TYPE_RCV:
|
|
|
|
DEBUG("udp: NG_NETAPI_MSG_TYPE_RCV\n");
|
|
|
|
_receive((ng_pktsnip_t *)msg.content.ptr);
|
|
|
|
break;
|
|
|
|
case NG_NETAPI_MSG_TYPE_SND:
|
|
|
|
DEBUG("udp: NG_NETAPI_MSG_TYPE_SND\n");
|
|
|
|
_send((ng_pktsnip_t *)msg.content.ptr);
|
|
|
|
break;
|
|
|
|
case NG_NETAPI_MSG_TYPE_SET:
|
|
|
|
case NG_NETAPI_MSG_TYPE_GET:
|
|
|
|
msg_reply(&msg, &reply);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
DEBUG("udp: received unidentified message\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* never reached */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ng_udp_calc_csum(ng_pktsnip_t *hdr, ng_pktsnip_t *pseudo_hdr)
|
|
|
|
{
|
|
|
|
uint16_t csum;
|
|
|
|
|
2015-07-02 00:32:18 +02:00
|
|
|
if ((hdr == NULL) || (pseudo_hdr == NULL)) {
|
2015-04-24 15:06:14 +02:00
|
|
|
return -EFAULT;
|
|
|
|
}
|
|
|
|
if (hdr->type != NG_NETTYPE_UDP) {
|
|
|
|
return -EBADMSG;
|
|
|
|
}
|
|
|
|
|
|
|
|
csum = _calc_csum(hdr, pseudo_hdr, hdr->next);
|
|
|
|
if (csum == 0) {
|
|
|
|
return -ENOENT;
|
|
|
|
}
|
2015-08-10 03:16:53 +02:00
|
|
|
((udp_hdr_t *)hdr->data)->checksum = byteorder_htons(csum);
|
2015-04-24 15:06:14 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ng_pktsnip_t *ng_udp_hdr_build(ng_pktsnip_t *payload,
|
|
|
|
uint8_t *src, size_t src_len,
|
2015-05-27 12:05:46 +02:00
|
|
|
uint8_t *dst, size_t dst_len)
|
|
|
|
{
|
2015-04-24 15:06:14 +02:00
|
|
|
ng_pktsnip_t *res;
|
2015-08-10 03:16:53 +02:00
|
|
|
udp_hdr_t *hdr;
|
2015-04-24 15:06:14 +02:00
|
|
|
|
|
|
|
/* check parameters */
|
|
|
|
if (src == NULL || dst == NULL ||
|
|
|
|
src_len != sizeof(uint16_t) || dst_len != sizeof(uint16_t)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/* allocate header */
|
2015-08-10 03:16:53 +02:00
|
|
|
res = ng_pktbuf_add(payload, NULL, sizeof(udp_hdr_t), NG_NETTYPE_UDP);
|
2015-04-24 15:06:14 +02:00
|
|
|
if (res == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/* initialize header */
|
2015-08-10 03:16:53 +02:00
|
|
|
hdr = (udp_hdr_t *)res->data;
|
2015-04-24 15:06:14 +02:00
|
|
|
hdr->src_port = byteorder_htons(*((uint16_t *)src));
|
|
|
|
hdr->dst_port = byteorder_htons(*((uint16_t *)dst));
|
|
|
|
hdr->checksum = byteorder_htons(0);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ng_udp_init(void)
|
|
|
|
{
|
|
|
|
/* check if thread is already running */
|
|
|
|
if (_pid == KERNEL_PID_UNDEF) {
|
|
|
|
/* start UDP thread */
|
2015-05-09 14:27:55 +02:00
|
|
|
_pid = thread_create(_stack, sizeof(_stack), NG_UDP_PRIO,
|
|
|
|
CREATE_STACKTEST, _event_loop, NULL, "udp");
|
2015-04-24 15:06:14 +02:00
|
|
|
}
|
|
|
|
return _pid;
|
|
|
|
}
|