3cafa2388d800be5e418a2dda11460b6a5d5c918
[tinc] / src / solaris / device.c
1 /*
2     device.c -- Interaction with Solaris tun device
3     Copyright (C) 2001-2003 Ivo Timmermans <ivo@o2w.nl>,
4                   2001-2003 Guus Sliepen <guus@sliepen.eu.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: device.c,v 1.1.2.15 2003/07/18 13:41:37 guus Exp $
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 int device_type;
39 char *device = NULL;
40 char *iface = NULL;
41 char ifrname[IFNAMSIZ];
42 char *device_info = NULL;
43
44 int device_total_in = 0;
45 int device_total_out = 0;
46
47 int setup_device(void)
48 {
49         int ip_fd = -1, if_fd = -1;
50         int ppa;
51         char *ptr;
52
53         cp();
54
55         if(!get_config_string(lookup_config(config_tree, "Device"), &device))
56                 device = DEFAULT_DEVICE;
57
58         if((device_fd = open(device, O_RDWR | O_NONBLOCK)) < 0) {
59                 logger(LOG_ERR, _("Could not open %s: %s"), device, strerror(errno));
60                 return -1;
61         }
62
63         ppa = 0;
64
65         ptr = device;
66         while(*ptr && !isdigit((int) *ptr))
67                 ptr++;
68         ppa = atoi(ptr);
69
70         if((ip_fd = open("/dev/ip", O_RDWR, 0)) < 0) {
71                 logger(LOG_ERR, _("Could not open /dev/ip: %s"), strerror(errno));
72                 return -1;
73         }
74
75         /* Assign a new PPA and get its unit number. */
76         if((ppa = ioctl(device_fd, TUNNEWPPA, ppa)) < 0) {
77                 logger(LOG_ERR, _("Can't assign new interface: %s"), strerror(errno));
78                 return -1;
79         }
80
81         if((if_fd = open(device, O_RDWR, 0)) < 0) {
82                 logger(LOG_ERR, _("Could not open %s twice: %s"), device,
83                            strerror(errno));
84                 return -1;
85         }
86
87         if(ioctl(if_fd, I_PUSH, "ip") < 0) {
88                 logger(LOG_ERR, _("Can't push IP module: %s"), strerror(errno));
89                 return -1;
90         }
91
92         /* Assign ppa according to the unit number returned by tun device */
93         if(ioctl(if_fd, IF_UNITSEL, (char *) &ppa) < 0) {
94                 logger(LOG_ERR, _("Can't set PPA %d: %s"), ppa, strerror(errno));
95                 return -1;
96         }
97
98         if(ioctl(ip_fd, I_LINK, if_fd) < 0) {
99                 logger(LOG_ERR, _("Can't link TUN device to IP: %s"), strerror(errno));
100                 return -1;
101         }
102
103         if(!get_config_string(lookup_config(config_tree, "Interface"), &iface))
104                 asprintf(&iface, "tun%d", ppa);
105
106         device_info = _("Solaris tun device");
107
108         logger(LOG_INFO, _("%s is a %s"), device, device_info);
109
110         return 0;
111 }
112
113 void close_device(void)
114 {
115         cp();
116
117         close(device_fd);
118 }
119
120 int 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 -1;
130         }
131
132         packet->data[12] = 0x08;
133         packet->data[13] = 0x00;
134
135         packet->len = lenin + 14;
136
137         device_total_in += packet->len;
138
139         ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Read packet of %d bytes from %s"), packet->len,
140                            device_info);
141
142         return 0;
143 }
144
145 int write_packet(vpn_packet_t *packet)
146 {
147         cp();
148
149         ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Writing packet of %d bytes to %s"),
150                            packet->len, device_info);
151
152         if(write(device_fd, packet->data + 14, packet->len - 14) < 0) {
153                 logger(LOG_ERR, _("Can't write to %s %s: %s"), device_info, packet->len,
154                            strerror(errno));
155                 return -1;
156         }
157
158         device_total_out += packet->len;
159
160         return 0;
161 }
162
163 void dump_device_stats(void)
164 {
165         cp();
166
167         logger(LOG_DEBUG, _("Statistics for %s %s:"), device_info, device);
168         logger(LOG_DEBUG, _(" total bytes in:  %10d"), device_total_in);
169         logger(LOG_DEBUG, _(" total bytes out: %10d"), device_total_out);
170 }