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
|
/*
* $Id: tundev.c 116 2005-10-30 14:18:08Z guillem $
*/
#define _GNU_SOURCE /* asprintf */
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <pwd.h>
#include <grp.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <net/if.h>
#include <linux/if_tun.h>
/* Tiny code to open tap/tun device, and hand the fd to qemu.
Run as root, drops to given user. */
int main(int argc, char *argv[])
{
struct ifreq ifr;
struct passwd *p;
unsigned int i;
char *newargs[argc + 1];
int fd;
if (argc < 4) {
fprintf(stderr,
"Usage: tundev user logfile qemu <qemu options>...\n");
exit(1);
}
fd = open("/dev/net/tun", O_RDWR);
if (fd < 0) {
perror("Could not open /dev/net/tun");
exit(1);
}
memset(&ifr, 0, sizeof(ifr));
ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
strncpy(ifr.ifr_name, "tun%d", IFNAMSIZ);
if (ioctl(fd, TUNSETIFF, (void *) &ifr) != 0) {
perror("Could not get tun device");
exit(1);
}
/* Set userid. */
p = getpwnam(argv[1]);
if (!p) {
fprintf(stderr, "No user '%s'\n", argv[1]);
exit(1);
}
setgroups(0, NULL);
setgid(p->pw_gid);
if (setuid(p->pw_uid) != 0) {
perror("setting uid");
exit(1);
}
/* Insert -tun-fd */
newargs[0] = argv[3];
newargs[1] = "-tun-fd";
asprintf(&newargs[2], "%d", fd);
for (i = 4; i <= argc; i++)
newargs[i-1] = argv[i];
if (strcmp(argv[2], "-") == 0) {
execvp(newargs[0], newargs);
exit(1);
}
switch (fork()) {
case 0: {
close(1);
close(2);
open(argv[2], O_WRONLY|O_APPEND);
open(argv[2], O_WRONLY|O_APPEND);
close(0);
execvp(newargs[0], newargs);
exit(1);
}
case -1:
perror("fork failed");
exit(1);
}
printf("%s\n", ifr.ifr_name);
exit(0);
}
|