tinc/src/solaris/device.c

183 lines
4.3 KiB
C
Raw Normal View History

/*
device.c -- Interaction with Solaris tun device
Copyright (C) 2001-2005 Ivo Timmermans,
2001-2006 Guus Sliepen <guus@tinc-vpn.org>
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.
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., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id$
*/
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
#include <sys/stropts.h>
2001-11-05 19:06:07 +00:00
#include <sys/sockio.h>
#include <net/if_tun.h>
2001-11-05 19:06:07 +00:00
#include "conf.h"
#include "logger.h"
2003-07-18 13:41:37 +00:00
#include "net.h"
#include "utils.h"
#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
int device_fd = -1;
2001-11-05 19:06:07 +00:00
char *device = NULL;
2003-07-18 13:41:37 +00:00
char *iface = NULL;
static char *device_info = NULL;
2004-11-01 17:02:19 +00:00
static int device_total_in = 0;
static int device_total_out = 0;
2003-07-22 20:55:21 +00:00
bool setup_device(void)
{
2002-09-09 21:25:28 +00:00
int ip_fd = -1, if_fd = -1;
int ppa;
char *ptr;
2002-09-10 21:29:42 +00:00
cp();
if(!get_config_string(lookup_config(config_tree, "Device"), &device))
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) {
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
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) {
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
}
/* Assign a new PPA and get its unit number. */
if((ppa = ioctl(device_fd, TUNNEWPPA, ppa)) < 0) {
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) {
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
}
if(ioctl(if_fd, I_PUSH, "ip") < 0) {
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) {
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) {
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))
asprintf(&iface, "tun%d", ppa);
2002-09-09 21:25:28 +00:00
device_info = _("Solaris tun device");
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-11-05 19:06:07 +00:00
void close_device(void)
{
2002-09-10 21:29:42 +00:00
cp();
close(device_fd);
2001-11-05 19:06:07 +00:00
}
2003-07-22 20:55:21 +00:00
bool read_packet(vpn_packet_t *packet)
{
2002-09-09 21:25:28 +00:00
int lenin;
2002-09-10 21:29:42 +00:00
cp();
if((lenin = read(device_fd, packet->data + 14, MTU - 14)) <= 0) {
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,
_ ("Unknown IP version %d while reading packet from %s %s"),
packet->data[14] >> 4, device_info, device);
return false;
}
2002-09-09 21:25:28 +00:00
packet->len = lenin + 14;
device_total_in += packet->len;
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
2003-07-22 20:55:21 +00:00
bool write_packet(vpn_packet_t *packet)
{
2002-09-10 21:29:42 +00:00
cp();
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) {
2003-07-31 11:20:32 +00:00
logger(LOG_ERR, _("Can't write to %s %s: %s"), device_info,
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
}
void dump_device_stats(void)
{
2002-09-10 21:29:42 +00:00
cp();
logger(LOG_DEBUG, _("Statistics for %s %s:"), device_info, device);
logger(LOG_DEBUG, _(" total bytes in: %10d"), device_total_in);
logger(LOG_DEBUG, _(" total bytes out: %10d"), device_total_out);
2002-09-10 21:29:42 +00:00
}