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