Update THANKS and copyright information.
[tinc] / src / solaris / device.c
1 /*
2     device.c -- Interaction with Solaris tun device
3     Copyright (C) 2001-2005 Ivo Timmermans,
4                   2001-2009 Guus Sliepen <guus@tinc-vpn.org>
5
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.
10
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.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20     $Id$
21 */
22
23
24 #include "system.h"
25
26 #include <sys/stropts.h>
27 #include <sys/sockio.h>
28 #include <net/if_tun.h>
29
30 #include "conf.h"
31 #include "logger.h"
32 #include "net.h"
33 #include "utils.h"
34 #include "xalloc.h"
35
36 #define DEFAULT_DEVICE "/dev/tun"
37
38 int device_fd = -1;
39 char *device = NULL;
40 char *iface = NULL;
41 static char *device_info = NULL;
42
43 static int device_total_in = 0;
44 static int device_total_out = 0;
45
46 bool setup_device(void)
47 {
48         int ip_fd = -1, if_fd = -1;
49         int ppa;
50         char *ptr;
51
52         cp();
53
54         if(!get_config_string(lookup_config(config_tree, "Device"), &device))
55                 device = xstrdup(DEFAULT_DEVICE);
56
57         if((device_fd = open(device, O_RDWR | O_NONBLOCK)) < 0) {
58                 logger(LOG_ERR, _("Could not open %s: %s"), device, strerror(errno));
59                 return false;
60         }
61
62         ppa = 0;
63
64         ptr = device;
65         while(*ptr && !isdigit((int) *ptr))
66                 ptr++;
67         ppa = atoi(ptr);
68
69         if((ip_fd = open("/dev/ip", O_RDWR, 0)) < 0) {
70                 logger(LOG_ERR, _("Could not open /dev/ip: %s"), strerror(errno));
71                 return false;
72         }
73
74         /* Assign a new PPA and get its unit number. */
75         if((ppa = ioctl(device_fd, TUNNEWPPA, ppa)) < 0) {
76                 logger(LOG_ERR, _("Can't assign new interface: %s"), strerror(errno));
77                 return false;
78         }
79
80         if((if_fd = open(device, O_RDWR, 0)) < 0) {
81                 logger(LOG_ERR, _("Could not open %s twice: %s"), device,
82                            strerror(errno));
83                 return false;
84         }
85
86         if(ioctl(if_fd, I_PUSH, "ip") < 0) {
87                 logger(LOG_ERR, _("Can't push IP module: %s"), strerror(errno));
88                 return false;
89         }
90
91         /* Assign ppa according to the unit number returned by tun device */
92         if(ioctl(if_fd, IF_UNITSEL, (char *) &ppa) < 0) {
93                 logger(LOG_ERR, _("Can't set PPA %d: %s"), ppa, strerror(errno));
94                 return false;
95         }
96
97         if(ioctl(ip_fd, I_LINK, if_fd) < 0) {
98                 logger(LOG_ERR, _("Can't link TUN device to IP: %s"), strerror(errno));
99                 return false;
100         }
101
102         if(!get_config_string(lookup_config(config_tree, "Interface"), &iface))
103                 asprintf(&iface, "tun%d", ppa);
104
105         device_info = _("Solaris tun device");
106
107         logger(LOG_INFO, _("%s is a %s"), device, device_info);
108
109         return true;
110 }
111
112 void close_device(void)
113 {
114         cp();
115
116         close(device_fd);
117
118         free(device);
119         free(iface);
120 }
121
122 bool read_packet(vpn_packet_t *packet)
123 {
124         int lenin;
125
126         cp();
127
128         if((lenin = read(device_fd, packet->data + 14, MTU - 14)) <= 0) {
129                 logger(LOG_ERR, _("Error while reading from %s %s: %s"), device_info,
130                            device, strerror(errno));
131                 return false;
132         }
133
134         switch(packet->data[14] >> 4) {
135                 case 4:
136                         packet->data[12] = 0x08;
137                         packet->data[13] = 0x00;
138                         break;
139                 case 6:
140                         packet->data[12] = 0x86;
141                         packet->data[13] = 0xDD;
142                         break;
143                 default:
144                         ifdebug(TRAFFIC) logger(LOG_ERR,
145                                            _ ("Unknown IP version %d while reading packet from %s %s"),
146                                            packet->data[14] >> 4, device_info, device);
147                         return false;
148         }
149
150         packet->len = lenin + 14;
151
152         device_total_in += packet->len;
153
154         ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Read packet of %d bytes from %s"), packet->len,
155                            device_info);
156
157         return true;
158 }
159
160 bool write_packet(vpn_packet_t *packet)
161 {
162         cp();
163
164         ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Writing packet of %d bytes to %s"),
165                            packet->len, device_info);
166
167         if(write(device_fd, packet->data + 14, packet->len - 14) < 0) {
168                 logger(LOG_ERR, _("Can't write to %s %s: %s"), device_info,
169                            device, strerror(errno));
170                 return false;
171         }
172
173         device_total_out += packet->len;
174
175         return true;
176 }
177
178 void dump_device_stats(void)
179 {
180         cp();
181
182         logger(LOG_DEBUG, _("Statistics for %s %s:"), device_info, device);
183         logger(LOG_DEBUG, _(" total bytes in:  %10d"), device_total_in);
184         logger(LOG_DEBUG, _(" total bytes out: %10d"), device_total_out);
185 }