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