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 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
|
/*
* vdestack: run a network namespace as a library (and connect it to a vde network).
* Copyright (C) 2016-2020 Renzo Davoli, Davide Berardi. University of Bologna. <renzo@cs.unibo.it>
*
* 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; either
* 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 Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdio.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <sys/wait.h>
#include <sched.h>
#include <limits.h>
#include <errno.h>
#include <pthread.h>
#include <sys/capability.h>
#include <sys/prctl.h>
#include <sys/ioctl.h>
#include <sys/signalfd.h>
#include <sys/mman.h>
#include <net/if.h>
#include <linux/if_tun.h>
#include <libvdeplug.h>
#include <poll.h>
#include <sys/signalfd.h>
#include <execs.h>
#include <dlfcn.h>
#include <vdestack.h>
/* workaround for legacy vde2 libvdeplug.h compatibility */
#ifndef VDE_ETHBUFSIZE
#define VDE_ETHBUFSIZE (9216 + 14 + 4)
#endif
/* just in case prctl.h is not providing these definitions */
#ifndef PR_CAP_AMBIENT
#define PR_CAP_AMBIENT 47
#endif
#ifndef PR_CAP_AMBIENT_RAISE
#define PR_CAP_AMBIENT_RAISE 2
#endif
#ifndef PR_CAP_AMBIENT_LOWER
#define PR_CAP_AMBIENT_LOWER 3
#endif
#define APPSIDE 0
#define DAEMONSIDE 1
#define CONNTYPE_NONE 0
#define CONNTYPE_VDE 1
#define CONNTYPE_VDESTREAM 2
#define DEFAULT_IF_NAME "vde0"
#define POLLING_TIMEOUT 10000
#define errExit(msg) do { perror(msg); _exit(EXIT_FAILURE); } while(0)
#define CHILD_STACK_SIZE (256 * 1024)
struct vdestack {
pid_t pid;
pthread_mutex_t mutex;
int cmdpipe[2]; // socketpair for commands;
pid_t cmdpid;
int sfd;
pid_t parentpid;
int conntype;
union {
VDECONN *vdeconn;
int streamfd[2];
} conn;
char *child_stack;
char ifname[];
};
struct vdecmd {
char **argv;
int domain;
int type;
int protocol;
};
struct vdereply {
int rval;
int err;
};
static struct vdestack *default_stack;
static int real_socket(int domain, int type, int protocol) {
static int (*socket_next) ();
if (socket_next == NULL)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wpedantic"
socket_next = dlsym(RTLD_NEXT, "socket");
#pragma GCC diagnostic pop
return socket_next(domain, type, protocol);
}
int socket(int domain, int type, int protocol) {
if (default_stack == NULL)
return real_socket(domain, type, protocol);
else
return vde_msocket(default_stack, domain, type, protocol);
}
/********************************* DAEMON CODE *******************************/
static void grant_net_capabilities(void) {
/* set the capability to allow net configuration */
cap_value_t cap = CAP_NET_ADMIN;
cap_t caps=cap_get_proc();
cap_set_flag(caps, CAP_INHERITABLE, 1, &cap, CAP_SET);
cap = CAP_NET_RAW;
cap_set_flag(caps, CAP_INHERITABLE, 1, &cap, CAP_SET);
cap = CAP_NET_BIND_SERVICE;
cap_set_flag(caps, CAP_INHERITABLE, 1, &cap, CAP_SET);
cap = CAP_NET_BROADCAST;
cap_set_flag(caps, CAP_INHERITABLE, 1, &cap, CAP_SET);
cap_set_proc(caps);
cap_free(caps);
prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_RAISE, CAP_NET_ADMIN, 0, 0);
prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_RAISE, CAP_NET_RAW, 0, 0);
prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_RAISE, CAP_NET_BIND_SERVICE, 0, 0);
prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_RAISE, CAP_NET_BROADCAST, 0, 0);
}
static int open_tap(char *name) {
struct ifreq ifr;
int fd=-1;
if((fd = open("/dev/net/tun", O_RDWR | O_CLOEXEC)) < 0)
return -1;
memset(&ifr, 0, sizeof(ifr));
ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
strncpy(ifr.ifr_name, name, sizeof(ifr.ifr_name) - 1);
if(ioctl(fd, TUNSETIFF, (void *) &ifr) < 0) {
close(fd);
return -1;
}
return fd;
}
static void uid_gid_map(pid_t pid) {
char map_file[PATH_MAX];
FILE *f;
uid_t euid = geteuid();
gid_t egid = getegid();
snprintf(map_file, PATH_MAX, "/proc/%d/uid_map", pid);
f = fopen(map_file, "w");
if (f) {
fprintf(f,"%d %d 1\n",euid,euid);
fclose(f);
}
snprintf(map_file, PATH_MAX, "/proc/%d/setgroups", pid);
f = fopen(map_file, "w");
if (f) {
fprintf(f,"deny\n");
fclose(f);
}
snprintf(map_file, PATH_MAX, "/proc/%d/gid_map", pid);
f = fopen(map_file, "w");
if (f) {
fprintf(f,"%d %d 1\n",egid,egid);
fclose(f);
}
}
/* process a cmd message:
open a socket in the vde namespace if cmd.argv == NULL
otherwise spawn a command (in background) */
static int runcmd (struct vdestack *stack) {
struct vdecmd cmd;
int n;
if ((n = read(stack->cmdpipe[DAEMONSIDE], &cmd, sizeof(cmd))) > 0) {
if (n == sizeof(cmd)) {
if (cmd.argv == NULL) {
struct vdereply reply;
reply.rval = real_socket(cmd.domain, cmd.type, cmd.protocol);
reply.err = errno;
if (write(stack->cmdpipe[DAEMONSIDE], &reply, sizeof(reply)) < 0)
return -1;
} else {
if ((stack->cmdpid = fork()) == 0) {
prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0);
grant_net_capabilities();
execv(cmd.argv[0],cmd.argv);
_exit(2);
}
}
}
}
return n;
}
/* get the exit status of a terminated command */
static int waitcmd(struct vdestack *stack) {
struct signalfd_siginfo fdsi;
if (read(stack->sfd, &fdsi, sizeof(struct signalfd_siginfo)) == sizeof(fdsi)) {
int status;
waitpid(fdsi.ssi_pid, &status, 0);
if (((pid_t) fdsi.ssi_pid) == stack->cmdpid) {
struct vdereply reply;
reply.rval = WEXITSTATUS(status);
reply.err = 0;
if (write(stack->cmdpipe[DAEMONSIDE], &reply, sizeof(reply)) < 0)
return 1;
}
}
return 0;
}
#define COMMON_POLLFD(s) {(s)->cmdpipe[DAEMONSIDE], POLLIN, 0}, {(s)->sfd, POLLIN, 0}
static inline int common_poll (struct pollfd *pfd, struct vdestack *stack) {
if (kill(stack->parentpid, 0) < 0)
return 1;
if (pfd[0].revents & POLLIN) {
if (runcmd(stack) <= 0)
return 1;
}
if (pfd[1].revents & POLLIN)
return waitcmd(stack);
return 0;
}
static void notap(struct vdestack *stack) {
struct pollfd pfd[] = {COMMON_POLLFD(stack)};
while (poll(pfd, 1, POLLING_TIMEOUT) >= 0)
if (common_poll(pfd, stack))
break;
}
static void plug2tap(struct vdestack *stack, int tapfd) {
int n;
char buf[VDE_ETHBUFSIZE];
VDECONN *conn = stack->conn.vdeconn;
struct pollfd pfd[] = {COMMON_POLLFD(stack),
{tapfd, POLLIN, 0},
{vde_datafd(conn), POLLIN, 0}
};
while (poll(pfd, sizeof(pfd)/sizeof(pfd[0]), POLLING_TIMEOUT) >= 0) {
if (common_poll(pfd, stack))
break;
if (pfd[2].revents & POLLIN) {
n = read(tapfd, buf, VDE_ETHBUFSIZE);
if (n == 0) break;
vde_send(conn, buf, n, 0);
}
if (pfd[3].revents & POLLIN) {
n = vde_recv(conn, buf, VDE_ETHBUFSIZE, 0);
if (n == 0) break;
if ((write(tapfd, buf, n)) < 0) {
if (errno = EIO)
continue;
else
break;
}
}
}
}
static ssize_t stream2tap_read(void *opaque, void *buf, size_t count) {
int *tapfd = opaque;
return write(*tapfd, buf, count);
}
static void stream2tap(struct vdestack *stack, int tapfd) {
int n;
unsigned char buf[VDE_ETHBUFSIZE];
int *streamfd = stack->conn.streamfd;
struct pollfd pfd[] = {COMMON_POLLFD(stack),
{tapfd, POLLIN, 0},
{streamfd[0], POLLIN, 0}
};
VDESTREAM *vdestream = vdestream_open(&tapfd, streamfd[1], stream2tap_read, NULL);
while (poll(pfd, sizeof(pfd)/sizeof(pfd[0]), POLLING_TIMEOUT) >= 0) {
if (common_poll(pfd, stack))
break;
if (pfd[2].revents & POLLIN) {
n = read(tapfd, buf, VDE_ETHBUFSIZE);
if (n == 0) break;
vdestream_send(vdestream, buf, n);
}
if (pfd[3].revents & POLLIN) {
n = read(streamfd[0], buf, VDE_ETHBUFSIZE);
if (n == 0) break;
vdestream_recv(vdestream, buf, n);
}
}
vdestream_close(vdestream);
}
static void resetHandlers(void) {
int sig;
for (sig = 0; sig < _NSIG; sig++)
signal(sig, SIG_DFL);
}
static int childFunc(void *arg)
{
struct vdestack *stack = arg;
int tapfd;
sigset_t chldmask;
resetHandlers();
sigemptyset(&chldmask);
sigaddset(&chldmask, SIGCHLD);
sigprocmask(SIG_BLOCK, &chldmask, NULL);
stack->sfd = signalfd(-1, &chldmask, SFD_CLOEXEC);
/* printf("starting stack tid %d %d\n", stack->pid, stack->parentpid); */
switch (stack->conntype) {
case CONNTYPE_NONE:
notap(stack);
break;
case CONNTYPE_VDE:
if ((tapfd = open_tap(stack->ifname)) < 0)
errExit("tap");
plug2tap(stack, tapfd);
break;
case CONNTYPE_VDESTREAM:
if ((tapfd = open_tap(stack->ifname)) < 0)
errExit("tap");
stream2tap(stack, tapfd);
break;
default:
errExit("unknown conn type");
}
close(stack->sfd);
close(stack->cmdpipe[DAEMONSIDE]);
_exit(EXIT_SUCCESS);
}
/********************************* APP CODE *******************************/
struct vdestack *vde_addstack(char *vdenet, char *ifname) {
char *ifnameok = ifname ? ifname : DEFAULT_IF_NAME;
size_t ifnameoklen = strlen(ifnameok);
struct vdestack *stack = malloc(sizeof(*stack) + ifnameoklen + 1);
if (stack) {
if (pthread_mutex_init(&stack->mutex, NULL) != 0)
goto err_mutex;
stack->child_stack =
mmap(0, CHILD_STACK_SIZE, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
if (stack->child_stack == NULL)
goto err_child_stack;
if (socketpair(AF_UNIX, SOCK_SEQPACKET | SOCK_CLOEXEC, 0, stack->cmdpipe) < 0)
goto err_cmdpipe;
stack->cmdpid = -1;
stack->sfd = -1;
stack->parentpid = getpid();
strncpy(stack->ifname, ifnameok, ifnameoklen + 1);
if (vdenet == NULL || vdenet[0] == 0)
stack->conntype = CONNTYPE_NONE;
else if (*vdenet == '=') {
stack->conntype = CONNTYPE_VDESTREAM;
if (coprocsp(vdenet+1, stack->conn.streamfd) < 0)
goto err_vdenet;
} else {
stack->conntype = CONNTYPE_VDE;
if ((stack->conn.vdeconn = vde_open(vdenet, "vdestack", NULL)) == NULL)
goto err_vdenet;
}
/* start the networking deamon in a private net namespace, while
sharing memory and file descriptors */
stack->pid = clone(childFunc, stack->child_stack + CHILD_STACK_SIZE,
CLONE_VM | CLONE_FILES | CLONE_NEWUSER | CLONE_NEWNET | SIGCHLD, stack);
if (stack->pid == -1)
goto err_child;
uid_gid_map(stack->pid); //is this required?
}
return stack;
err_child:
err_vdenet:
close(stack->cmdpipe[APPSIDE]);
close(stack->cmdpipe[DAEMONSIDE]);
err_cmdpipe:
munmap(stack->child_stack, CHILD_STACK_SIZE);
err_child_stack:
pthread_mutex_destroy(&stack->mutex);
err_mutex:
free(stack);
return NULL;
}
void vde_default_stack(struct vdestack *stack) {
default_stack = stack;
}
void vde_delstack(struct vdestack *stack) {
if (stack == default_stack)
default_stack = NULL;
close(stack->cmdpipe[APPSIDE]);
waitpid(stack->pid, NULL, 0);
munmap(stack->child_stack, CHILD_STACK_SIZE);
pthread_mutex_destroy(&stack->mutex);
free(stack);
}
int vde_stack_onecmd(char **argv, void *opaquestack) {
struct vdestack *stack = opaquestack;
struct vdecmd cmd = {argv, 0, 0, 0};
struct vdereply reply;
pthread_mutex_lock(&stack->mutex);
if (write(stack->cmdpipe[APPSIDE], &cmd, sizeof(cmd)) < 0 ||
read(stack->cmdpipe[APPSIDE], &reply, sizeof(reply)) < 0)
goto errmsg;
pthread_mutex_unlock(&stack->mutex);
if (reply.rval < 0)
errno = reply.err;
return reply.rval;
errmsg:
pthread_mutex_unlock(&stack->mutex);
return -1;
}
/* parse the args, allowing multiple comma separated commands on a single line */
int vde_stackcmd(struct vdestack *stack, char *stackcmd) {
#if defined(EXECS_SOVERSION) && EXECS_SOVERSION > 0
return s2multiargv(stackcmd, vde_stack_onecmd, stack, 0);
#else
return s2multiargv(stackcmd, vde_stack_onecmd, stack);
#endif
}
int vde_msocket(struct vdestack *stack, int domain, int type, int protocol) {
struct vdecmd cmd = {NULL, domain, type, protocol};
struct vdereply reply;
pthread_mutex_lock(&stack->mutex);
if (write(stack->cmdpipe[APPSIDE], &cmd, sizeof(cmd)) < 0 ||
read(stack->cmdpipe[APPSIDE], &reply, sizeof(reply)) < 0)
goto errmsg;
pthread_mutex_unlock(&stack->mutex);
if (reply.rval < 0)
errno = reply.err;
return reply.rval;
errmsg:
pthread_mutex_unlock(&stack->mutex);
return -1;
}
|