2 device.c -- Interaction with Solaris tun device
3 Copyright (C) 2001-2005 Ivo Timmermans,
4 2001-2011 Guus Sliepen <guus@tinc-vpn.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include <sys/stropts.h>
25 #include <sys/sockio.h>
26 #include <net/if_tun.h>
35 #define DEFAULT_DEVICE "/dev/tun"
38 static int ip_fd = -1, if_fd = -1;
41 static char *device_info = NULL;
43 static uint64_t device_total_in = 0;
44 static uint64_t device_total_out = 0;
46 static bool setup_device(void) {
50 if(!get_config_string(lookup_config(config_tree, "Device"), &device))
51 device = xstrdup(DEFAULT_DEVICE);
53 if((device_fd = open(device, O_RDWR | O_NONBLOCK)) < 0) {
54 logger(LOG_ERR, "Could not open %s: %s", device, strerror(errno));
61 while(*ptr && !isdigit((int) *ptr))
65 if((ip_fd = open("/dev/ip", O_RDWR, 0)) < 0) {
66 logger(LOG_ERR, "Could not open /dev/ip: %s", strerror(errno));
70 /* Assign a new PPA and get its unit number. */
71 if((ppa = ioctl(device_fd, TUNNEWPPA, ppa)) < 0) {
72 logger(LOG_ERR, "Can't assign new interface: %s", strerror(errno));
76 if((if_fd = open(device, O_RDWR, 0)) < 0) {
77 logger(LOG_ERR, "Could not open %s twice: %s", device,
82 if(ioctl(if_fd, I_PUSH, "ip") < 0) {
83 logger(LOG_ERR, "Can't push IP module: %s", strerror(errno));
87 /* Assign ppa according to the unit number returned by tun device */
88 if(ioctl(if_fd, IF_UNITSEL, (char *) &ppa) < 0) {
89 logger(LOG_ERR, "Can't set PPA %d: %s", ppa, strerror(errno));
93 if(ioctl(ip_fd, I_LINK, if_fd) < 0) {
94 logger(LOG_ERR, "Can't link TUN device to IP: %s", strerror(errno));
98 if(!get_config_string(lookup_config(config_tree, "Interface"), &iface))
99 xasprintf(&iface, "tun%d", ppa);
101 device_info = "Solaris tun device";
103 logger(LOG_INFO, "%s is a %s", device, device_info);
108 static void close_device(void) {
117 static bool read_packet(vpn_packet_t *packet) {
120 if((lenin = read(device_fd, packet->data + 14, MTU - 14)) <= 0) {
121 logger(LOG_ERR, "Error while reading from %s %s: %s", device_info,
122 device, strerror(errno));
126 switch(packet->data[14] >> 4) {
128 packet->data[12] = 0x08;
129 packet->data[13] = 0x00;
132 packet->data[12] = 0x86;
133 packet->data[13] = 0xDD;
136 ifdebug(TRAFFIC) logger(LOG_ERR,
137 "Unknown IP version %d while reading packet from %s %s",
138 packet->data[14] >> 4, device_info, device);
142 packet->len = lenin + 14;
144 device_total_in += packet->len;
146 ifdebug(TRAFFIC) logger(LOG_DEBUG, "Read packet of %d bytes from %s", packet->len,
152 static bool write_packet(vpn_packet_t *packet) {
153 ifdebug(TRAFFIC) logger(LOG_DEBUG, "Writing packet of %d bytes to %s",
154 packet->len, device_info);
156 if(write(device_fd, packet->data + 14, packet->len - 14) < 0) {
157 logger(LOG_ERR, "Can't write to %s %s: %s", device_info,
158 device, strerror(errno));
162 device_total_out += packet->len;
167 static void dump_device_stats(void) {
168 logger(LOG_DEBUG, "Statistics for %s %s:", device_info, device);
169 logger(LOG_DEBUG, " total bytes in: %10"PRIu64, device_total_in);
170 logger(LOG_DEBUG, " total bytes out: %10"PRIu64, device_total_out);
173 const devops_t os_devops = {
174 .setup = setup_device,
175 .close = close_device,
177 .write = write_packet,
178 .dump_stats = dump_device_stats,