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