2018-06-23 12:18:31 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2012 Tristan Le Guern <tleguern@bouledef.eu>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016 Mahdi Mokhtari <mokhi64@gmail.com>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/param.h> /* For MAXPATHLEN */
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <net/if.h>
|
|
|
|
#if defined FreeBSD
|
2018-09-24 16:07:34 +00:00
|
|
|
#include <net/if_tun.h>
|
2018-06-23 12:18:31 +00:00
|
|
|
#elif defined DragonFly
|
2018-09-24 16:07:34 +00:00
|
|
|
#include <net/tun/if_tun.h>
|
2018-06-23 12:18:31 +00:00
|
|
|
#endif
|
|
|
|
#include <net/if_types.h>
|
|
|
|
#include <netinet/if_ether.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <ifaddrs.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "tuntap.h"
|
|
|
|
|
|
|
|
int
|
2018-09-24 16:07:34 +00:00
|
|
|
tuntap_sys_start(struct device *dev, int mode, int tun)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
int persist;
|
|
|
|
char *ifname;
|
|
|
|
char name[MAXPATHLEN];
|
|
|
|
struct ifreq ifr;
|
|
|
|
|
|
|
|
/* Get the persistence bit */
|
|
|
|
if(mode & TUNTAP_MODE_PERSIST)
|
|
|
|
{
|
|
|
|
mode &= ~TUNTAP_MODE_PERSIST;
|
|
|
|
persist = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
persist = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the mode: tun or tap */
|
|
|
|
if(mode == TUNTAP_MODE_ETHERNET)
|
|
|
|
{
|
|
|
|
ifname = "tap";
|
|
|
|
}
|
|
|
|
else if(mode == TUNTAP_MODE_TUNNEL)
|
|
|
|
{
|
|
|
|
ifname = "tun";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tuntap_log(TUNTAP_LOG_ERR, "Invalid parameter 'mode'");
|
|
|
|
return -1;
|
|
|
|
}
|
2018-06-23 12:18:31 +00:00
|
|
|
|
|
|
|
dev->mode = mode;
|
|
|
|
|
2018-09-24 16:07:34 +00:00
|
|
|
/* Try to use the given driver or loop throught the avaible ones */
|
|
|
|
fd = -1;
|
|
|
|
if(tun < TUNTAP_ID_MAX)
|
|
|
|
{
|
|
|
|
(void)snprintf(name, sizeof(name), "/dev/%s%i", ifname, tun);
|
|
|
|
fd = open(name, O_RDWR);
|
|
|
|
}
|
|
|
|
else if(tun == TUNTAP_ID_ANY)
|
|
|
|
{
|
|
|
|
for(tun = 0; tun < TUNTAP_ID_MAX; ++tun)
|
|
|
|
{
|
|
|
|
(void)memset(name, 0, sizeof(name));
|
|
|
|
(void)snprintf(name, sizeof(name), "/dev/%s%i", ifname, tun);
|
|
|
|
if((fd = open(name, O_RDWR)) > 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tuntap_log(TUNTAP_LOG_ERR, "Invalid parameter 'tun'");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
switch(fd)
|
|
|
|
{
|
|
|
|
case -1:
|
|
|
|
tuntap_log(TUNTAP_LOG_ERR, "Permission denied");
|
|
|
|
return -1;
|
|
|
|
case 256:
|
|
|
|
tuntap_log(TUNTAP_LOG_ERR, "Can't find a tun entry");
|
|
|
|
return -1;
|
|
|
|
default:
|
|
|
|
/* NOTREACHED */
|
|
|
|
break;
|
|
|
|
}
|
2018-12-14 14:16:17 +00:00
|
|
|
char newifname[IFNAMSIZ] = {0};
|
|
|
|
(void)strlcpy(newifname, dev->if_name, sizeof(newifname));
|
2018-09-24 16:07:34 +00:00
|
|
|
|
|
|
|
/* Set the interface name */
|
|
|
|
(void)memset(&ifr, 0, sizeof(ifr));
|
|
|
|
(void)snprintf(ifr.ifr_name, sizeof(ifr.ifr_name), "%s%i", ifname, tun);
|
|
|
|
/* And save it */
|
|
|
|
(void)strlcpy(dev->if_name, ifr.ifr_name, sizeof(dev->if_name));
|
|
|
|
|
|
|
|
/* Get the interface default values */
|
|
|
|
if(ioctl(dev->ctrl_sock, SIOCGIFFLAGS, &ifr) == -1)
|
|
|
|
{
|
|
|
|
tuntap_log(TUNTAP_LOG_ERR, "Can't get interface values");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Save flags for tuntap_{up, down} */
|
|
|
|
dev->flags = ifr.ifr_flags;
|
|
|
|
|
|
|
|
return fd;
|
2018-06-23 12:18:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-09-24 16:07:34 +00:00
|
|
|
tuntap_sys_destroy(struct device *dev)
|
|
|
|
{
|
2018-12-14 14:45:43 +00:00
|
|
|
char cmdbuf[128] = {0};
|
|
|
|
snprintf(cmdbuf, sizeof(cmdbuf), "ifconfig %s destroy", dev->if_name);
|
|
|
|
tuntap_log(TUNTAP_LOG_INFO, cmdbuf);
|
|
|
|
system(cmdbuf);
|
2018-09-24 16:07:34 +00:00
|
|
|
return;
|
2018-06-23 12:18:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2018-09-24 16:07:34 +00:00
|
|
|
tuntap_sys_set_ipv4_tap(struct device *dev, t_tun_in_addr *s4, uint32_t bits)
|
|
|
|
{
|
|
|
|
struct ifaliasreq ifrq;
|
|
|
|
struct sockaddr_in mask;
|
|
|
|
struct sockaddr_in addr;
|
|
|
|
struct ifreq ifr;
|
|
|
|
|
|
|
|
(void)memset(&ifrq, 0, sizeof(ifrq));
|
|
|
|
(void)strlcpy(ifrq.ifra_name, dev->if_name, sizeof(ifr.ifr_name));
|
|
|
|
|
|
|
|
/* Delete previously assigned address */
|
|
|
|
(void)ioctl(dev->ctrl_sock, SIOCDIFADDR, &ifrq);
|
|
|
|
|
|
|
|
/* Set the address */
|
|
|
|
(void)memset(&addr, 0, sizeof(addr));
|
|
|
|
addr.sin_family = AF_INET;
|
|
|
|
addr.sin_addr.s_addr = s4->s_addr;
|
|
|
|
addr.sin_len = sizeof(addr);
|
|
|
|
(void)memcpy(&ifrq.ifra_addr, &addr, sizeof(addr));
|
|
|
|
|
|
|
|
/* Then set the netmask */
|
|
|
|
(void)memset(&mask, 0, sizeof(mask));
|
|
|
|
mask.sin_family = AF_INET;
|
|
|
|
mask.sin_addr.s_addr = bits;
|
|
|
|
mask.sin_len = sizeof(mask);
|
|
|
|
(void)memcpy(&ifrq.ifra_addr, &mask, sizeof(ifrq.ifra_mask));
|
|
|
|
|
|
|
|
if(ioctl(dev->ctrl_sock, SIOCAIFADDR, &ifrq) == -1)
|
|
|
|
{
|
|
|
|
tuntap_log(TUNTAP_LOG_ERR, "Can't set IP address/netmask");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
2018-06-23 12:18:31 +00:00
|
|
|
}
|
|
|
|
|
2018-10-28 14:41:59 +00:00
|
|
|
static int
|
2018-10-29 17:20:50 +00:00
|
|
|
tuntap_sys_add_route(struct device *dev, t_tun_in_addr *s4, uint32_t bits,
|
2018-10-29 17:22:26 +00:00
|
|
|
int netmask)
|
2018-10-28 14:41:59 +00:00
|
|
|
{
|
|
|
|
struct sockaddr_in mask;
|
|
|
|
mask.sin_family = AF_INET;
|
|
|
|
mask.sin_addr.s_addr = bits;
|
|
|
|
mask.sin_len = sizeof(struct sockaddr_in);
|
|
|
|
char addrbuf[32] = {0};
|
2018-12-14 14:05:29 +00:00
|
|
|
char bcaddrbuf[32] = {0};
|
2018-10-28 14:41:59 +00:00
|
|
|
char buf[1028] = {0};
|
|
|
|
|
|
|
|
inet_ntop(AF_INET, s4, addrbuf, sizeof(struct sockaddr_in));
|
|
|
|
|
2018-10-29 17:22:26 +00:00
|
|
|
const char *addr = addrbuf;
|
|
|
|
const char *netmask_str = inet_ntoa(mask.sin_addr);
|
2018-12-14 14:16:17 +00:00
|
|
|
struct in_addr bca;
|
2018-12-14 14:05:29 +00:00
|
|
|
bca.s_addr = s4->s_addr | ~mask.sin_addr.s_addr;
|
|
|
|
inet_ntop(AF_INET, &bca, bcaddrbuf, sizeof(struct sockaddr_in));
|
|
|
|
const char *bcaddr = bcaddrbuf;
|
2018-10-28 14:41:59 +00:00
|
|
|
/** because fuck this other stuff */
|
|
|
|
snprintf(buf, sizeof(buf), "ifconfig %s %s %s mtu 1380 netmask %s up",
|
2018-12-14 14:05:29 +00:00
|
|
|
dev->if_name, addr, bcaddr, netmask_str);
|
2018-10-28 14:41:59 +00:00
|
|
|
tuntap_log(TUNTAP_LOG_INFO, buf);
|
|
|
|
system(buf);
|
2018-10-29 17:20:50 +00:00
|
|
|
snprintf(buf, sizeof(buf), "route add %s/%d -interface %s", addr, netmask,
|
|
|
|
dev->if_name);
|
2018-10-28 14:41:59 +00:00
|
|
|
tuntap_log(TUNTAP_LOG_INFO, buf);
|
|
|
|
system(buf);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-06-23 12:18:31 +00:00
|
|
|
int
|
2018-09-24 16:07:34 +00:00
|
|
|
tuntap_sys_set_ipv4_tun(struct device *dev, t_tun_in_addr *s4,
|
2018-10-29 17:22:26 +00:00
|
|
|
t_tun_in_addr *s4dest, uint32_t bits, int netmask)
|
2018-09-24 16:07:34 +00:00
|
|
|
{
|
|
|
|
struct ifaliasreq ifrq;
|
|
|
|
struct sockaddr_in mask;
|
|
|
|
struct sockaddr_in saddr;
|
|
|
|
struct sockaddr_in daddr;
|
|
|
|
|
|
|
|
(void)memset(&ifrq, 0, sizeof(ifrq));
|
|
|
|
(void)memcpy(ifrq.ifra_name, dev->if_name, sizeof(ifrq.ifra_name));
|
|
|
|
|
|
|
|
/* Delete previously assigned address */
|
|
|
|
(void)ioctl(dev->ctrl_sock, SIOCDIFADDR, &ifrq);
|
|
|
|
|
|
|
|
/* Set the address */
|
|
|
|
(void)memset(&saddr, 0, sizeof(saddr));
|
|
|
|
saddr.sin_family = AF_INET;
|
|
|
|
saddr.sin_addr.s_addr = s4->s_addr;
|
|
|
|
saddr.sin_len = sizeof(saddr);
|
|
|
|
(void)memcpy(&ifrq.ifra_addr, &saddr, sizeof(saddr));
|
|
|
|
|
|
|
|
(void)memset(&daddr, 0, sizeof(daddr));
|
|
|
|
daddr.sin_family = AF_INET;
|
|
|
|
daddr.sin_addr.s_addr = s4dest->s_addr;
|
|
|
|
daddr.sin_len = sizeof(daddr);
|
|
|
|
(void)memcpy(&ifrq.ifra_broadaddr, &daddr, sizeof(daddr));
|
|
|
|
|
|
|
|
/* Then set the netmask */
|
|
|
|
(void)memset(&mask, 0, sizeof(mask));
|
|
|
|
mask.sin_family = AF_INET;
|
|
|
|
mask.sin_addr.s_addr = bits;
|
|
|
|
mask.sin_len = sizeof(mask);
|
|
|
|
(void)memcpy(&ifrq.ifra_addr, &mask, sizeof(ifrq.ifra_mask));
|
|
|
|
|
|
|
|
if(ioctl(dev->ctrl_sock, SIOCAIFADDR, &ifrq) == -1)
|
|
|
|
{
|
|
|
|
tuntap_log(TUNTAP_LOG_ERR, "Can't set IP address");
|
|
|
|
return -1;
|
|
|
|
}
|
2018-10-29 17:20:50 +00:00
|
|
|
return tuntap_sys_add_route(dev, s4, bits, netmask);
|
2018-06-23 12:18:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2018-09-24 16:07:34 +00:00
|
|
|
tuntap_sys_set_descr(struct device *dev, const char *descr, size_t len)
|
|
|
|
{
|
|
|
|
#if defined FreeBSD
|
|
|
|
struct ifreq ifr;
|
|
|
|
struct ifreq_buffer ifrbuf;
|
2018-06-23 12:18:31 +00:00
|
|
|
|
2018-09-24 16:07:34 +00:00
|
|
|
(void)memset(&ifr, 0, sizeof(ifr));
|
|
|
|
(void)strlcpy(ifr.ifr_name, dev->if_name, sizeof(ifr.ifr_name));
|
2018-06-23 12:18:31 +00:00
|
|
|
|
2018-09-24 16:07:34 +00:00
|
|
|
ifrbuf.buffer = (void *)descr;
|
|
|
|
ifrbuf.length = len;
|
|
|
|
ifr.ifr_buffer = ifrbuf;
|
|
|
|
|
|
|
|
if(ioctl(dev->ctrl_sock, SIOCSIFDESCR, &ifr) == -1)
|
|
|
|
{
|
|
|
|
tuntap_log(TUNTAP_LOG_ERR, "Can't set the interface description");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
2018-06-23 12:18:31 +00:00
|
|
|
#elif defined DragonFly
|
2018-09-24 16:07:34 +00:00
|
|
|
tuntap_log(TUNTAP_LOG_NOTICE,
|
|
|
|
"Your system does not support tuntap_set_descr()");
|
|
|
|
return -1;
|
2018-06-23 12:18:31 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-08-21 14:29:05 +00:00
|
|
|
int
|
2018-08-24 00:13:37 +00:00
|
|
|
tuntap_sys_set_ifname(struct device *dev, const char *ifname, size_t len)
|
|
|
|
{
|
|
|
|
struct ifreq ifr;
|
2018-08-24 00:38:15 +00:00
|
|
|
char *newname;
|
2018-10-28 14:41:59 +00:00
|
|
|
//(void)strncpy(ifr.ifr_name, dev->if_name, IF_NAMESIZE);
|
2018-09-22 11:25:37 +00:00
|
|
|
strlcpy(ifr.ifr_name, dev->if_name, IF_NAMESIZE);
|
2018-08-24 00:13:37 +00:00
|
|
|
|
2018-08-24 00:38:15 +00:00
|
|
|
newname = strdup(ifname);
|
|
|
|
if(newname == NULL)
|
|
|
|
{
|
|
|
|
tuntap_log(TUNTAP_LOG_ERR, "no memory to set ifname");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ifr.ifr_data = newname;
|
2018-10-28 14:41:59 +00:00
|
|
|
if(ioctl(dev->ctrl_sock, SIOCSIFNAME, &ifr) == -1)
|
|
|
|
{
|
|
|
|
perror(NULL);
|
2018-08-24 00:13:37 +00:00
|
|
|
free(newname);
|
|
|
|
tuntap_log(TUNTAP_LOG_ERR, "Can't set interface name");
|
|
|
|
return -1;
|
|
|
|
}
|
2018-12-14 14:45:43 +00:00
|
|
|
(void)strlcpy(dev->if_name, ifname, len);
|
2018-08-24 00:13:37 +00:00
|
|
|
free(newname);
|
|
|
|
return 0;
|
2018-08-24 00:38:15 +00:00
|
|
|
}
|