1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
/*
* libvdeplug - A library to connect to a VDE Switch.
* Copyright (C) 2013-2016 Renzo Davoli, University of Bologna
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation version 2.1 of the License, or (at
* your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
* General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <libvdeplug.h>
#include <errno.h>
#include <limits.h>
#include <stdint.h>
#include <pwd.h>
#include <grp.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <netinet/in.h>
#include <netdb.h>
#include "libvdeplug_mod.h"
static VDECONN *vde_udp_open(char *vde_url, char *descr,int interface_version,
struct vde_open_args *open_args);
static ssize_t vde_udp_recv(VDECONN *conn,void *buf,size_t len,int flags);
static ssize_t vde_udp_send(VDECONN *conn,const void *buf,size_t len,int flags);
static int vde_udp_datafd(VDECONN *conn);
static int vde_udp_ctlfd(VDECONN *conn);
static int vde_udp_close(VDECONN *conn);
struct vdeplug_module vdeplug_ops={
.vde_open_real=vde_udp_open,
.vde_recv=vde_udp_recv,
.vde_send=vde_udp_send,
.vde_datafd=vde_udp_datafd,
.vde_ctlfd=vde_udp_ctlfd,
.vde_close=vde_udp_close};
struct vde_udp_conn {
void *handle;
struct vdeplug_module *module;
int fddata;
struct sockaddr *outsock;
size_t outlen;
};
static VDECONN *vde_udp_open(char *vde_url, char *descr,int interface_version,
struct vde_open_args *open_args)
{
int fddata=-1;
struct addrinfo hints;
struct addrinfo *srcresult=NULL;
struct addrinfo *dstresult=NULL;
struct addrinfo *rp;
int s;
char *dst;
char *src=vde_url;
char *srcport;
char *dstport;
struct vde_udp_conn *newconn;
dst=strstr(vde_url,"->");
//printf("%s\n",vde_url);
if (dst == NULL)
return NULL;
memset(&hints,0,sizeof(hints));
hints.ai_socktype=SOCK_DGRAM;
*dst=0;
dst+=2;
dstport=rindex(dst,':');
if (dstport==NULL) {
errno=EINVAL;
goto abort;
}
*dstport=0;
dstport++;
srcport=rindex(src,':');
if (srcport==NULL) {
srcport=src;
src=NULL;
} else {
if (srcport==src)
src=NULL;
*srcport=0;
srcport++;
}
if ((s = getaddrinfo(dst, dstport, &hints, &dstresult)) != 0) {
//fprintf(stderr,"%s: %s\n",dst,gai_strerror(s));
errno=ECONNABORTED;
goto abort;
}
hints.ai_flags = AI_PASSIVE;
hints.ai_family = dstresult->ai_family;
s = getaddrinfo(src, srcport, &hints, &srcresult);
if (s != 0) {
//fprintf(stderr,"%s: %s\n",src,gai_strerror(s));
errno=ECONNABORTED;
goto abort;
}
for (rp = srcresult; rp != NULL; rp = rp->ai_next) {
fddata = socket(rp->ai_family, rp->ai_socktype | SOCK_CLOEXEC, rp->ai_protocol);
if (fddata == -1)
continue;
if (bind(fddata, rp->ai_addr, rp->ai_addrlen) == 0)
break; /* Success */
close(fddata);
}
if (rp == NULL) {
errno=ECONNABORTED;
goto abort;
}
freeaddrinfo(srcresult);
//fprintf(stderr,"UDP!%s:%s -> %s:%s \n",src,srcport,dst,dstport);
if ((newconn=calloc(1,sizeof(struct vde_udp_conn)))==NULL)
{
errno=ENOMEM;
goto abort;
}
newconn->fddata=fddata;
newconn->outsock = malloc(dstresult->ai_addrlen);
newconn->outlen = dstresult->ai_addrlen;
memcpy(newconn->outsock, dstresult->ai_addr, dstresult->ai_addrlen);
freeaddrinfo(dstresult);
return (VDECONN *)newconn;
abort:
if (fddata >= 0) close(fddata);
if (dstresult) freeaddrinfo(dstresult);
if (srcresult) freeaddrinfo(srcresult);
return NULL;
}
static ssize_t vde_udp_recv(VDECONN *conn,void *buf,size_t len,int flags)
{
struct vde_udp_conn *vde_conn = (struct vde_udp_conn *)conn;
#ifdef CONNECTED_P2P
ssize_t retval;
if (__builtin_expect(((retval=recv(vde_conn->fddata,buf,len,0)) > 0), 1))
return retval;
else {
if (retval == 0 && vde_conn->outsock != NULL) {
static struct sockaddr unspec={AF_UNSPEC};
connect(vde_conn->fddata,&unspec,sizeof(unspec));
}
return retval;
}
#else
return recv(vde_conn->fddata,buf,len,0);
#endif
}
static ssize_t vde_udp_send(VDECONN *conn,const void *buf,size_t len,int flags)
{
struct vde_udp_conn *vde_conn = (struct vde_udp_conn *)conn;
#ifdef CONNECTED_P2P
ssize_t retval;
if (__builtin_expect(((retval=send(vde_conn->fddata,buf,len,0)) >= 0),1))
return retval;
else {
if (__builtin_expect(errno == ENOTCONN || errno == EDESTADDRREQ,0)) {
if (__builtin_expect(vde_conn->outsock != NULL,1)) {
connect(vde_conn->fddata, vde_conn->outsock,vde_conn->outlen);
return send(vde_conn->fddata,buf,len,0);
} else
return retval;
} else
return retval;
}
#else
return sendto(vde_conn->fddata,buf,len,0, vde_conn->outsock,vde_conn->outlen);
#endif
}
static int vde_udp_datafd(VDECONN *conn)
{
struct vde_udp_conn *vde_conn = (struct vde_udp_conn *)conn;
return vde_conn->fddata;
}
static int vde_udp_ctlfd(VDECONN *conn)
{
return -1;
}
static int vde_udp_close(VDECONN *conn)
{
struct vde_udp_conn *vde_conn = (struct vde_udp_conn *)conn;
if (vde_conn->outsock != NULL)
free(vde_conn->outsock);
close(vde_conn->fddata);
free(vde_conn);
return 0;
}
|