summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordimitri staessens <dimitri.staessens@intec.ugent.be>2016-04-20 16:13:47 +0200
committerdimitri staessens <dimitri.staessens@intec.ugent.be>2016-04-20 16:13:47 +0200
commitad99455aa38171c28705a7e9b002b53168dc8ff0 (patch)
treea1dc379615be720d743b023aa7d541988c53af54
parent423cbd695b0eed9d4ec55abb1f6a0bfa0e4e48a4 (diff)
downloadouroboros-ad99455aa38171c28705a7e9b002b53168dc8ff0.tar.gz
ouroboros-ad99455aa38171c28705a7e9b002b53168dc8ff0.zip
ipdpd: shim UDP: listen to incoming SDUs
The shim UDP will listen to incoming SDU's for a flow. If the flow is FLOW_PENDING, it will set it to FLOW_ALLOCATED on the reception of the first SDU, and connect() to set the destination server_host:sp.
-rw-r--r--src/ipcpd/shim-udp/main.c102
1 files changed, 74 insertions, 28 deletions
diff --git a/src/ipcpd/shim-udp/main.c b/src/ipcpd/shim-udp/main.c
index 9f33cf80..c41d35a1 100644
--- a/src/ipcpd/shim-udp/main.c
+++ b/src/ipcpd/shim-udp/main.c
@@ -37,6 +37,7 @@
#include <string.h>
#include <sys/socket.h>
+#include <sys/select.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <netinet/in.h>
@@ -47,6 +48,7 @@
#define THIS_TYPE IPCP_SHIM_UDP
#define LISTEN_PORT htons(0x0D1F)
#define SHIM_UDP_BUF_SIZE 256
+#define SHIM_UDP_MAX_SDU_SIZE 9000
#define shim_data(type) ((struct ipcp_udp_data *) type->data)
@@ -74,6 +76,9 @@ struct ipcp_udp_data {
struct sockaddr_in s_saddr;
int s_fd;
+ fd_set flow_fd_s;
+ flow_t * fd_to_flow_ptr[FD_SETSIZE];
+
pthread_mutex_t lock;
};
@@ -106,6 +111,7 @@ struct ipcp_udp_data * ipcp_udp_data_create(char * ap_name,
struct ipcp_data * data;
instance_name_t * instance_name;
enum ipcp_type ipcp_type;
+ int n;
instance_name = instance_name_create();
if (instance_name == NULL) {
@@ -116,12 +122,12 @@ struct ipcp_udp_data * ipcp_udp_data_create(char * ap_name,
instance_name = instance_name_init_with(
instance_name, ap_name, (uint16_t)atoi(ap_id));
- if (instance_name == NULL) {
+ if (instance_name == NULL) {
LOG_ERR("Failed to create instance name struct.");
return NULL;
}
- udp_data= malloc (sizeof *udp_data);
+ udp_data = malloc (sizeof *udp_data);
if (udp_data == NULL) {
LOG_DBGF("Failed to allocate.");
return NULL;
@@ -134,6 +140,10 @@ struct ipcp_udp_data * ipcp_udp_data_create(char * ap_name,
return NULL;
}
+ FD_ZERO(&udp_data->flow_fd_s);
+ for (n = 0; n < FD_SETSIZE; ++n)
+ udp_data->fd_to_flow_ptr[n] = NULL;
+
return udp_data;
}
@@ -234,14 +244,66 @@ void * ipcp_udp_listener()
free(flow);
continue;
}
+
+ FD_SET(flow->fd, &shim_data(_ipcp)->flow_fd_s);
+ shim_data(_ipcp)->fd_to_flow_ptr[flow->fd] = &flow->flow;
+
}
}
+static void * ipcp_udp_sdu_reader (void * o)
+{
+ int n;
+ int fd;
+ char buf[SHIM_UDP_MAX_SDU_SIZE];
+
+ struct sockaddr_in r_saddr;
+
+ while (true) {
+ flow_t * flow;
+
+ if (select(FD_SETSIZE,
+ &shim_data(_ipcp)->flow_fd_s,
+ NULL, NULL, NULL)
+ < 0)
+ continue;
+
+ for (fd = 0; fd < FD_SETSIZE; ++fd) {
+ if (!FD_ISSET(fd, &shim_data(_ipcp)->flow_fd_s))
+ continue;
+
+ n = sizeof r_saddr;
+ n = recvfrom(fd,
+ buf,
+ SHIM_UDP_MAX_SDU_SIZE,
+ 0,
+ (struct sockaddr *) &r_saddr,
+ (unsigned *) &n);
+
+ flow = shim_data(_ipcp)->fd_to_flow_ptr[fd];
+ if (flow->state == FLOW_PENDING) {
+ if (connect(fd,
+ (struct sockaddr *)&r_saddr,
+ sizeof r_saddr)
+ < 0)
+ continue;
+ flow->state = FLOW_ALLOCATED;
+ }
+
+ /* send the sdu to the correct port_id */
+ LOG_MISSING;
+ }
+ }
+
+ return (void *) 0;
+}
+
int ipcp_udp_bootstrap(struct dif_config * conf)
{
char ipstr[INET_ADDRSTRLEN];
char dnsstr[INET_ADDRSTRLEN];
pthread_t handler;
+ pthread_t sdu_reader;
if (conf->type != THIS_TYPE) {
LOG_ERR("Config doesn't match IPCP type.");
@@ -289,6 +351,7 @@ int ipcp_udp_bootstrap(struct dif_config * conf)
}
pthread_create(&handler, NULL, ipcp_udp_listener, NULL);
+ pthread_create(&sdu_reader, NULL, ipcp_udp_sdu_reader, NULL);
_ipcp->state = IPCP_ENROLLED;
@@ -341,11 +404,9 @@ int ipcp_udp_flow_alloc(uint32_t port_id,
char * src_ae_name,
struct qos_spec * qos)
{
- char buf[SHIM_UDP_BUF_SIZE];
struct udp_flow * flow = NULL;
struct sockaddr_in l_saddr;
struct sockaddr_in r_saddr;
- int n;
irm_msg_t msg = IRM_MSG__INIT;
irm_msg_t * ret_msg = NULL;
@@ -406,30 +467,12 @@ int ipcp_udp_flow_alloc(uint32_t port_id,
r_saddr.sin_port = LISTEN_PORT;
/* at least try to get the packet on the wire */
- while (sendto(flow->fd, dst_ap_name, n, 0,
+ while (sendto(flow->fd, dst_ap_name, strlen(dst_ap_name), 0,
(struct sockaddr *) &r_saddr, sizeof r_saddr) < 0)
- /* FIXME:move the client handling to thread pool */
- n = sizeof r_saddr;
- n = recvfrom(flow->fd, buf, SHIM_UDP_BUF_SIZE, 0,
- (struct sockaddr *) &r_saddr, (unsigned *) &n);
-
flow->flow.port_id = port_id;
flow->flow.oflags = FLOW_O_DEFAULT;
- flow->flow.state = FLOW_ALLOCATED;
-
- /*
- * store the remote address in the file descriptor
- * this avoids having to store the sockaddr_in in
- * the flow structure
- */
-
- if (connect(flow->fd,
- (struct sockaddr *)&r_saddr, sizeof r_saddr) < 0) {
- close(flow->fd);
- free(flow);
- return -1;
- }
+ flow->flow.state = FLOW_PENDING;
/* add flow to the list */
@@ -445,8 +488,7 @@ int ipcp_udp_flow_alloc(uint32_t port_id,
pthread_mutex_unlock(&_ipcp->data->flow_lock);
- /* tell IRMd that flow allocation worked */
- /* well,there is no flow allocation */
+ /* tell IRMd that flow allocation "worked" */
msg.code = IRM_MSG_CODE__IPCP_FLOW_ALLOC_REPLY;
msg.has_port_id = true;
@@ -461,13 +503,17 @@ int ipcp_udp_flow_alloc(uint32_t port_id,
return -1;
}
+ FD_SET(flow->fd, &shim_data(_ipcp)->flow_fd_s);
+ shim_data(_ipcp)->fd_to_flow_ptr[flow->fd] = &flow->flow;
+
return 0;
}
+
int ipcp_udp_flow_alloc_resp(uint32_t port_id,
int response)
{
- struct udp_flow * flow = (struct udp_flow *) ipcp_data_find_flow(
- _ipcp->data, port_id);
+ struct udp_flow * flow =
+ (struct udp_flow *) ipcp_data_find_flow(_ipcp->data, port_id);
if (flow == NULL) {
return -1;
}