2001-10-12 15:33:21 +00:00
|
|
|
/*
|
|
|
|
device.c -- Interaction with Solaris tun device
|
2006-04-26 13:52:58 +00:00
|
|
|
Copyright (C) 2001-2005 Ivo Timmermans,
|
2012-02-17 15:13:38 +00:00
|
|
|
2001-2012 Guus Sliepen <guus@tinc-vpn.org>
|
2001-10-12 15:33:21 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
|
2009-09-24 22:01:00 +00:00
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2001-10-12 15:33:21 +00:00
|
|
|
*/
|
|
|
|
|
2001-11-05 19:06:07 +00:00
|
|
|
|
2003-07-18 13:41:37 +00:00
|
|
|
#include "system.h"
|
2001-11-05 19:06:07 +00:00
|
|
|
|
2001-10-12 15:33:21 +00:00
|
|
|
#include <sys/stropts.h>
|
2001-11-05 19:06:07 +00:00
|
|
|
#include <sys/sockio.h>
|
2001-10-12 15:33:21 +00:00
|
|
|
#include <net/if_tun.h>
|
|
|
|
|
2001-11-05 19:06:07 +00:00
|
|
|
#include "conf.h"
|
2011-05-28 21:36:52 +00:00
|
|
|
#include "device.h"
|
2003-07-06 22:11:37 +00:00
|
|
|
#include "logger.h"
|
2003-07-18 13:41:37 +00:00
|
|
|
#include "net.h"
|
|
|
|
#include "utils.h"
|
2009-01-03 21:06:10 +00:00
|
|
|
#include "xalloc.h"
|
2001-11-05 19:06:07 +00:00
|
|
|
|
2003-07-18 13:41:37 +00:00
|
|
|
#define DEFAULT_DEVICE "/dev/tun"
|
2001-11-05 19:06:07 +00:00
|
|
|
|
2001-10-12 15:33:21 +00:00
|
|
|
int device_fd = -1;
|
2011-12-04 00:20:59 +00:00
|
|
|
static int ip_fd = -1, if_fd = -1;
|
2001-11-05 19:06:07 +00:00
|
|
|
char *device = NULL;
|
2003-07-18 13:41:37 +00:00
|
|
|
char *iface = NULL;
|
2009-01-03 21:06:10 +00:00
|
|
|
static char *device_info = NULL;
|
2001-10-12 15:33:21 +00:00
|
|
|
|
2010-06-04 13:04:08 +00:00
|
|
|
static uint64_t device_total_in = 0;
|
|
|
|
static uint64_t device_total_out = 0;
|
2001-10-12 15:33:21 +00:00
|
|
|
|
2011-12-04 00:20:59 +00:00
|
|
|
static bool setup_device(void) {
|
2002-09-09 21:25:28 +00:00
|
|
|
int ppa;
|
|
|
|
char *ptr;
|
|
|
|
|
2002-09-10 21:29:42 +00:00
|
|
|
if(!get_config_string(lookup_config(config_tree, "Device"), &device))
|
2009-01-03 21:06:10 +00:00
|
|
|
device = xstrdup(DEFAULT_DEVICE);
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2002-09-10 21:29:42 +00:00
|
|
|
if((device_fd = open(device, O_RDWR | O_NONBLOCK)) < 0) {
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "Could not open %s: %s", device, strerror(errno));
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
2002-09-10 21:29:42 +00:00
|
|
|
|
2012-02-17 15:13:38 +00:00
|
|
|
#ifdef FD_CLOEXEC
|
|
|
|
fcntl(device_fd, F_SETFD, FD_CLOEXEC);
|
|
|
|
#endif
|
|
|
|
|
2002-09-10 21:29:42 +00:00
|
|
|
ppa = 0;
|
2002-09-09 21:25:28 +00:00
|
|
|
|
|
|
|
ptr = device;
|
|
|
|
while(*ptr && !isdigit((int) *ptr))
|
|
|
|
ptr++;
|
|
|
|
ppa = atoi(ptr);
|
|
|
|
|
|
|
|
if((ip_fd = open("/dev/ip", O_RDWR, 0)) < 0) {
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "Could not open /dev/ip: %s", strerror(errno));
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
2012-02-17 15:13:38 +00:00
|
|
|
#ifdef FD_CLOEXEC
|
|
|
|
fcntl(ip_fd, F_SETFD, FD_CLOEXEC);
|
|
|
|
#endif
|
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
/* Assign a new PPA and get its unit number. */
|
|
|
|
if((ppa = ioctl(device_fd, TUNNEWPPA, ppa)) < 0) {
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "Can't assign new interface: %s", strerror(errno));
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if((if_fd = open(device, O_RDWR, 0)) < 0) {
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "Could not open %s twice: %s", device,
|
2002-09-09 21:25:28 +00:00
|
|
|
strerror(errno));
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
2012-02-17 15:13:38 +00:00
|
|
|
#ifdef FD_CLOEXEC
|
|
|
|
fcntl(if_fd, F_SETFD, FD_CLOEXEC);
|
|
|
|
#endif
|
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
if(ioctl(if_fd, I_PUSH, "ip") < 0) {
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "Can't push IP module: %s", strerror(errno));
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Assign ppa according to the unit number returned by tun device */
|
|
|
|
if(ioctl(if_fd, IF_UNITSEL, (char *) &ppa) < 0) {
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "Can't set PPA %d: %s", ppa, strerror(errno));
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(ioctl(ip_fd, I_LINK, if_fd) < 0) {
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "Can't link TUN device to IP: %s", strerror(errno));
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
2003-07-18 13:41:37 +00:00
|
|
|
if(!get_config_string(lookup_config(config_tree, "Interface"), &iface))
|
2009-09-08 16:18:36 +00:00
|
|
|
xasprintf(&iface, "tun%d", ppa);
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2009-09-24 22:54:07 +00:00
|
|
|
device_info = "Solaris tun device";
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_INFO, "%s is a %s", device, device_info);
|
2002-09-10 21:29:42 +00:00
|
|
|
|
2003-07-22 20:55:21 +00:00
|
|
|
return true;
|
2001-10-12 15:33:21 +00:00
|
|
|
}
|
|
|
|
|
2011-12-04 00:20:59 +00:00
|
|
|
static void close_device(void) {
|
2011-01-02 15:50:24 +00:00
|
|
|
close(if_fd);
|
|
|
|
close(ip_fd);
|
2002-09-10 21:29:42 +00:00
|
|
|
close(device_fd);
|
2009-01-09 11:36:06 +00:00
|
|
|
|
|
|
|
free(device);
|
|
|
|
free(iface);
|
2001-11-05 19:06:07 +00:00
|
|
|
}
|
|
|
|
|
2011-12-04 00:20:59 +00:00
|
|
|
static bool read_packet(vpn_packet_t *packet) {
|
2007-05-18 11:19:31 +00:00
|
|
|
int inlen;
|
2002-09-10 21:29:42 +00:00
|
|
|
|
2007-05-18 11:19:31 +00:00
|
|
|
if((inlen = read(device_fd, packet->data + 14, MTU - 14)) <= 0) {
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "Error while reading from %s %s: %s", device_info,
|
2002-09-09 21:25:28 +00:00
|
|
|
device, strerror(errno));
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
2004-11-10 21:14:08 +00:00
|
|
|
switch(packet->data[14] >> 4) {
|
|
|
|
case 4:
|
|
|
|
packet->data[12] = 0x08;
|
|
|
|
packet->data[13] = 0x00;
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
packet->data[12] = 0x86;
|
|
|
|
packet->data[13] = 0xDD;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ifdebug(TRAFFIC) logger(LOG_ERR,
|
2009-10-03 11:06:00 +00:00
|
|
|
"Unknown IP version %d while reading packet from %s %s",
|
2004-11-10 21:14:08 +00:00
|
|
|
packet->data[14] >> 4, device_info, device);
|
|
|
|
return false;
|
|
|
|
}
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2007-05-18 11:19:31 +00:00
|
|
|
packet->len = inlen + 14;
|
2002-09-09 21:25:28 +00:00
|
|
|
|
|
|
|
device_total_in += packet->len;
|
2001-10-12 15:33:21 +00:00
|
|
|
|
2009-09-24 22:54:07 +00:00
|
|
|
ifdebug(TRAFFIC) logger(LOG_DEBUG, "Read packet of %d bytes from %s", packet->len,
|
2002-09-09 21:25:28 +00:00
|
|
|
device_info);
|
|
|
|
|
2003-07-22 20:55:21 +00:00
|
|
|
return true;
|
2002-09-10 21:29:42 +00:00
|
|
|
}
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2011-12-04 00:20:59 +00:00
|
|
|
static bool write_packet(vpn_packet_t *packet) {
|
2009-09-24 22:54:07 +00:00
|
|
|
ifdebug(TRAFFIC) logger(LOG_DEBUG, "Writing packet of %d bytes to %s",
|
2002-09-09 21:25:28 +00:00
|
|
|
packet->len, device_info);
|
|
|
|
|
|
|
|
if(write(device_fd, packet->data + 14, packet->len - 14) < 0) {
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "Can't write to %s %s: %s", device_info,
|
2003-07-31 11:20:32 +00:00
|
|
|
device, strerror(errno));
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
device_total_out += packet->len;
|
2002-09-10 21:29:42 +00:00
|
|
|
|
2003-07-22 20:55:21 +00:00
|
|
|
return true;
|
2001-11-05 19:06:07 +00:00
|
|
|
}
|
|
|
|
|
2011-12-04 00:20:59 +00:00
|
|
|
static void dump_device_stats(void) {
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_DEBUG, "Statistics for %s %s:", device_info, device);
|
2010-06-04 13:04:08 +00:00
|
|
|
logger(LOG_DEBUG, " total bytes in: %10"PRIu64, device_total_in);
|
|
|
|
logger(LOG_DEBUG, " total bytes out: %10"PRIu64, device_total_out);
|
2002-09-10 21:29:42 +00:00
|
|
|
}
|
2011-12-04 00:20:59 +00:00
|
|
|
|
|
|
|
const devops_t os_devops = {
|
|
|
|
.setup = setup_device,
|
|
|
|
.close = close_device,
|
|
|
|
.read = read_packet,
|
|
|
|
.write = write_packet,
|
|
|
|
.dump_stats = dump_device_stats,
|
|
|
|
};
|