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