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 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
|
/*
* VDE - libvdeplug_vlan
* Copyright (C) 2017 Renzo Davoli VirtualSquare
*
* 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
*/
#define __USE_GNU
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <arpa/inet.h>
#include <net/ethernet.h>
#include <libvdeplug.h>
#include <libvdeplug_mod.h>
#ifndef ETHERTYPE_QINQ
#define ETHERTYPE_QINQ 0x88A8
#endif
static VDECONN *vde_vlan_open(char *vde_url, char *descr, int interface_version,
struct vde_open_args *open_args);
static ssize_t vde_vlan_recv(VDECONN *conn, void *buf, size_t len, int flags);
static ssize_t vde_vlan_send(VDECONN *conn, const void *buf, size_t len, int flags);
static int vde_vlan_datafd(VDECONN *conn);
static int vde_vlan_ctlfd(VDECONN *conn);
static int vde_vlan_close(VDECONN *conn);
/* Left to Right ----> packet sent by the VM */
#define LR 0
/* Right to Left <---- packet recvd by the VM */
#define RL 1
/* Declaration of the connection sructure of the module */
struct vde_vlan_conn {
void *handle;
struct vdeplug_module *module;
VDECONN *conn;
/* Traffic tagged with this tag will be seen as untagged by the VM */
uint16_t untagged;
/* Untagged traffic will be seen as tagged with this tag by the VM (dual of untagged) */
uint16_t tag2untag;
uint16_t ntag; /* lenght of tag[0] and tag[1] arrays */
uint16_t *tag[2]; /* remap vlans */
char trunk; /* boolean */
uint16_t ether_type; // ETHERTYPE_VLAN or ETHERTYPE_QINQ
};
/* Structure of the VLAN header:
TCI (2 bytes) + EtherType (2 bytes).
TCI = Priority (3 bits) + DEI (1 bit) + VLAN Id (12 bits).
As the EtherType of the Ethernet frame will be overwrited by
ETHERTYPE_VLAN (0x8100) this EtherType will store the old value. */
/* Mask used to select the VLAN id. */
#define VLANMASK 0x0fff
/* Structure of the header added by the module */
struct vlan_hdr {
uint16_t vlan;
uint16_t ether_type;
};
/* Declaration of the module sructure */
struct vdeplug_module vdeplug_ops={
/* .flags is not initialized */
.vde_open_real=vde_vlan_open,
.vde_recv=vde_vlan_recv,
.vde_send=vde_vlan_send,
.vde_datafd=vde_vlan_datafd,
.vde_ctlfd=vde_vlan_ctlfd,
.vde_close=vde_vlan_close
};
/* VLAN ids 0, 1 and 4095 are reserved */
/* returns true if vlan & VLANMASK != 0, 1, 4095 */
static inline int vlanok(uint16_t vlan) {
/* VLANMASK */
return (((vlan + 1) & 0xfff) > 2);
}
/* Preconditions:
tagstr is the string containing tags separated by '.' or ':'.
A tag could be one number or two numbers separated by '-'.
tag: vde_vlan_conn.tag
Postconditions:
If tagstr contains tags, as a side effect tag is initialized for containing
all tags.
return value: number of tags
*/
static uint16_t tag_parse(char *tagstr, uint16_t **tag) {
uint16_t count;
size_t len = strlen(tagstr);
/* local copy of tagstr */
char tagstrcpy[len+1];
char *saveptr;
char *scan;
/* Copy the whole tagstr in tagstrcpy */
snprintf(tagstrcpy, len, "%s", tagstr);
/* Count the number of tokens in the string (tokens limited by '.' or ':') */
for (count = 0, scan = tagstrcpy; strtok_r(scan, ".:", &saveptr); scan = NULL)
count++;
if (count == 0) { /* No tags found. */
tag[LR] = NULL;
tag[RL] = NULL;
} else { /* Tags found */
tag[LR] = calloc(count, sizeof(uint16_t));
tag[RL] = calloc(count, sizeof(uint16_t));
/* Initialize the tag array */
for (count = 0; (scan = strtok_r(tagstr, ".:", &saveptr)) != NULL; tagstr = NULL, count++) {
char *more;
/* tag[LR] is decided by the first number */
tag[LR][count] = strtol(scan, &more, 0) & VLANMASK;
if (*more == '-') /* number terminates with '-' (there is another number after it) */
/* vlan is remapped */
tag[RL][count] = strtol(more + 1, NULL, 0) & VLANMASK;
else
/* vlan is not remapped */
tag[RL][count] = tag[LR][count];
}
}
return count;
}
/* Check tagged packets
Preconditions:
vde_conn
vlan
dir is weather LR or RL
Return value: value of the complementar vlan tag, 0 on error */
static uint16_t tagck(struct vde_vlan_conn *vde_conn, uint16_t vlan, int dir) {
uint16_t retval = 0; /* 0 is a sentinel value; not legal as vlan number */
int i;
/* Find vlan tag and get its complementar */
for (i=0; i<vde_conn->ntag; i++) {
if (vde_conn->tag[dir][i] == vlan) {
retval = vde_conn->tag[1-dir][i];
break;
}
}
/* The tag wasn't listed && the connection uses trunking && vlan tag is ok */
if (retval == 0 && vde_conn->trunk && vlanok(vlan))
retval = vlan;
return retval;
}
static VDECONN *vde_vlan_open(char *vde_url, char *descr, int interface_version,
struct vde_open_args *open_args)
{
(void) interface_version;
/* Return value on success; dynamically allocated */
struct vde_vlan_conn *newconn=NULL;
char *nested_url;
char *tagstr = "";
char *untagstr = "";
char *trunkstr = NULL;
char *qinqstr = NULL;
struct vdeparms parms[] = {
{"u", &untagstr},
{"untag", &untagstr},
{"t", &tagstr},
{"tag", &tagstr},
{"x", &trunkstr},
{"trunk", &trunkstr},
{"q", &qinqstr},
{"qinq", &qinqstr},
{"ad", &qinqstr},
{NULL, NULL}};
VDECONN *conn;
/* Get nested parameters */
nested_url = vde_parsenestparms(vde_url);
if (vde_parseparms(vde_url, parms) != 0)
return NULL;
/* Open connection using the nested url */
conn = vde_open(nested_url, descr, open_args);
if (conn == NULL)
return NULL;
/* calloc initializes the memory */
if ((newconn=calloc(1, sizeof(struct vde_vlan_conn)))==NULL) {
errno = ENOMEM;
goto error;
}
newconn->conn=conn;
newconn->untagged = strtol(vde_url, NULL, 0) & VLANMASK;
newconn->tag2untag = strtol(untagstr, NULL, 0) & VLANMASK;
newconn->ntag = tag_parse(tagstr, newconn->tag);
newconn->trunk = (trunkstr != NULL);
newconn->ether_type = (qinqstr == NULL) ? ETHERTYPE_VLAN : ETHERTYPE_QINQ;
return (VDECONN *) newconn;
error:
vde_close(conn);
return NULL;
}
#if 0
void dump(void *buf, size_t len) {
unsigned char *b=buf;
size_t i;
for (i=0; i<len; i++)
printf("%02x ",b[i]);
printf("\n\n");
}
#endif
/* Right to Left <---- */
static ssize_t vde_vlan_recv(VDECONN *conn, void *buf, size_t len, int flags) {
struct vde_vlan_conn *vde_conn = (struct vde_vlan_conn *)conn;
/* Length of the received packet */
ssize_t retval = vde_recv(vde_conn->conn, buf, len, flags);
if (retval >= (ssize_t)sizeof(struct ether_header)) {
struct ether_header *hdr = buf; /* Cast in struct ether_header */
/* Get VLAN header from Ethernet header:
The VLAN header is after the Ethernet header */
struct vlan_hdr *vlanhdr = (void *) (hdr + 1);
if (hdr->ether_type == htons(vde_conn->ether_type)) { /* TAGGED received */
/* VLAN number */
uint16_t vlan = ntohs(vlanhdr->vlan) & VLANMASK;
if (vlan == vde_conn->untagged) {
size_t newlen = retval - sizeof(struct vlan_hdr);
hdr->ether_type = vlanhdr->ether_type; /* Restore the old EtherType */
/* Remove the VLAN header */
memmove(vlanhdr, vlanhdr + 1, newlen - sizeof(struct ether_header));
return newlen;
} else if ((vlan = tagck(vde_conn, vlan, RL)) != 0 && vlanok(vlan)) {
/* Remap vlan */
vlanhdr->vlan = htons(vlan);
return len;
} else
goto error;
} else { /* UNTAGGED received */
/* vlanhdr points to the payload */
if (vde_conn->tag2untag != 0) {
size_t newlen = retval + sizeof(struct vlan_hdr);
if (newlen > len) newlen = len;
/* Add header with vlan tag tag2untag */
memmove(vlanhdr + 1, vlanhdr, newlen - (sizeof(struct ether_header) + sizeof(struct vlan_hdr)));
vlanhdr->ether_type = hdr->ether_type;
vlanhdr->vlan = htons(vde_conn->tag2untag);
hdr->ether_type = htons(vde_conn->ether_type);
return newlen;
} else if (vde_conn->untagged != 0) /* if tag2untag == 0 should be untagged == 0 */
goto error;
else
/* tag2untag not specified; packet discarded */
return retval;
}
}
return retval;
error:
errno = EAGAIN;
return 1;
}
/* Left to Right ----> */
static ssize_t vde_vlan_send(VDECONN *conn, const void *buf, size_t len, int flags) {
struct vde_vlan_conn *vde_conn = (struct vde_vlan_conn *)conn;
ssize_t retval;
if (len >= sizeof(struct ether_header)) {
const struct ether_header *hdr = buf;
if (hdr->ether_type == htons(vde_conn->ether_type) /*&& !vde_conn->qinq*/) { /* TAGGED to send */
/* The packet is already tagged */
struct vlan_hdr *vlanhdr = (void *) (hdr + 1);
/* Get vlan number of the packet */
uint16_t vlan = ntohs(vlanhdr->vlan) & VLANMASK;
if (vlan == vde_conn->tag2untag) {
/* The packet has been previously received untagged */
ssize_t newlen = len - sizeof(struct vlan_hdr);
/* Buffer for containing the packet without vlan header */
char newbuf[newlen];
struct ether_header *newhdr = (void *) newbuf;
/* Remove vlan header */
*newhdr = *hdr;
newhdr->ether_type = vlanhdr->ether_type;
memcpy(newhdr + 1, vlanhdr + 1, newlen - sizeof(struct ether_header));
retval = vde_send(vde_conn->conn, newbuf, newlen, flags);
if (retval == newlen) retval = len;
return retval;
} else if ((vlan = tagck(vde_conn, vlan, LR)) != 0 && vlanok(vlan)) {
/* Remap vlan */
vlanhdr->vlan = htons(vlan);
return vde_send(vde_conn->conn, buf, len, flags);
} else
/* Packet discarded */
return len;
} else { /* UNTAGGED send */
switch (vde_conn->untagged) {
case 0:
if (vde_conn->tag2untag == 0) /* untagged traffic is not seen as tagged */
/* Packet sent untagged */
return vde_send(vde_conn->conn, buf, len, flags);
else
/* Packet is discarded */
return len;
case 0xfff:
/* Packet is discarded */
return len;
default:
{
size_t newlen = len + sizeof(struct vlan_hdr);
char newbuf[newlen]; /* Local buffer */
struct ether_header *newhdr = (void *) newbuf;
struct vlan_hdr *newvlanhdr = (void *) (newhdr + 1);
/* Copy ethernet header in the local buffer */
*newhdr = *hdr;
newhdr->ether_type = htons(vde_conn->ether_type);
/* Fill vlan header with the untagged VLAN's tag */
newvlanhdr->vlan = htons(vde_conn->untagged);
newvlanhdr->ether_type = hdr->ether_type;
/* Copy payload in local buffer */
memcpy(newvlanhdr + 1, hdr + 1, len - sizeof(struct ether_header));
retval = vde_send(vde_conn->conn, newbuf, newlen, flags);
/* The caller is expecting to send a certain amount of bytes */
if (retval > (ssize_t) len) retval = len;
return retval;
}
}
}
} else
/* Packet is discarded */
return len;
}
static int vde_vlan_datafd(VDECONN *conn) {
struct vde_vlan_conn *vde_conn = (struct vde_vlan_conn *)conn;
return vde_datafd(vde_conn->conn);
}
static int vde_vlan_ctlfd(VDECONN *conn) {
struct vde_vlan_conn *vde_conn = (struct vde_vlan_conn *)conn;
return vde_ctlfd(vde_conn->conn);
}
static int vde_vlan_close(VDECONN *conn) {
int rv;
struct vde_vlan_conn *vde_conn = (struct vde_vlan_conn *)conn;
if (vde_conn->tag[LR] != NULL) free(vde_conn->tag[LR]);
if (vde_conn->tag[RL] != NULL) free(vde_conn->tag[RL]);
rv = vde_close(vde_conn->conn);
free(vde_conn);
return rv;
}
|