Allow tinc to work with the latest TAP-Win32 driver.
[tinc] / src / cygwin / device.c
1 /*
2     device.c -- Interaction with Windows tap driver in a Cygwin environment
3     Copyright (C) 2002-2004 Ivo Timmermans <ivo@tinc-vpn.org>,
4                   2002-2004 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 #include "system.h"
24
25 #include <w32api/windows.h>
26 #include <w32api/winioctl.h>
27
28 #include "conf.h"
29 #include "logger.h"
30 #include "net.h"
31 #include "route.h"
32 #include "utils.h"
33 #include "xalloc.h"
34
35 #include "mingw/common.h"
36
37 int device_fd = -1;
38 static HANDLE device_handle = INVALID_HANDLE_VALUE;
39 char *device = NULL;
40 char *iface = NULL;
41 char *device_info = NULL;
42
43 int device_total_in = 0;
44 int device_total_out = 0;
45
46 pid_t reader_pid;
47 int sp[2];
48
49 bool setup_device(void)
50 {
51         HKEY key, key2;
52         int i, err;
53
54         char regpath[1024];
55         char adapterid[1024];
56         char adaptername[1024];
57         char tapname[1024];
58         char gelukt = 0;
59         long len;
60
61         bool found = false;
62
63         cp();
64
65         get_config_string(lookup_config(config_tree, "Device"), &device);
66         get_config_string(lookup_config(config_tree, "Interface"), &iface);
67
68         /* Open registry and look for network adapters */
69
70         if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, NETWORK_CONNECTIONS_KEY, 0, KEY_READ, &key)) {
71                 logger(LOG_ERR, _("Unable to read registry: %s"), winerror(GetLastError()));
72                 return false;
73         }
74
75         for (i = 0; ; i++) {
76                 len = sizeof(adapterid);
77                 if(RegEnumKeyEx(key, i, adapterid, &len, 0, 0, 0, NULL))
78                         break;
79
80                 /* Find out more about this adapter */
81
82                 snprintf(regpath, sizeof(regpath), "%s\\%s\\Connection", NETWORK_CONNECTIONS_KEY, adapterid);
83
84                 if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, regpath, 0, KEY_READ, &key2))
85                         continue;
86
87                 len = sizeof(adaptername);
88                 err = RegQueryValueEx(key2, "Name", 0, 0, adaptername, &len);
89
90                 RegCloseKey(key2);
91
92                 if(err)
93                         continue;
94
95                 if(device) {
96                         if(!strcmp(device, adapterid)) {
97                                 found = true;
98                                 break;
99                         } else
100                                 continue;
101                 }
102
103                 if(iface) {
104                         if(!strcmp(iface, adaptername)) {
105                                 found = true;
106                                 break;
107                         } else
108                                 continue;
109                 }
110
111                 snprintf(tapname, sizeof(tapname), USERMODEDEVICEDIR "%s" TAPSUFFIX, adapterid);
112                 device_handle = CreateFile(tapname, GENERIC_WRITE | GENERIC_READ, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM, 0);
113                 if(device_handle != INVALID_HANDLE_VALUE) {
114                         CloseHandle(device_handle);
115                         found = true;
116                         break;
117                 }
118         }
119
120         RegCloseKey(key);
121
122         if(!found) {
123                 logger(LOG_ERR, _("No Windows tap device found!"));
124                 return false;
125         }
126
127         if(!device)
128                 device = xstrdup(adapterid);
129
130         if(!iface)
131                 iface = xstrdup(adaptername);
132
133         snprintf(tapname, sizeof(tapname), USERMODEDEVICEDIR "%s" TAPSUFFIX, device);
134         
135         /* Now we are going to open this device twice: once for reading and once for writing.
136            We do this because apparently it isn't possible to check for activity in the select() loop.
137            Furthermore I don't really know how to do it the "Windows" way. */
138
139         if(socketpair(AF_UNIX, SOCK_DGRAM, PF_UNIX, sp)) {
140                 logger(LOG_DEBUG, _("System call `%s' failed: %s"), "socketpair", strerror(errno));
141                 return false;
142         }
143
144         /* The parent opens the tap device for writing. */
145         
146         device_handle = CreateFile(tapname, GENERIC_WRITE,  FILE_SHARE_READ,  0,  OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM , 0);
147         
148         if(device_handle == INVALID_HANDLE_VALUE) {
149                 logger(LOG_ERR, _("Could not open Windows tap device %s (%s) for writing: %s"), device, iface, winerror(GetLastError()));
150                 return false;
151         }
152
153         device_fd = sp[0];
154
155         /* Get MAC address from tap device */
156
157         if(!DeviceIoControl(device_handle, TAP_IOCTL_GET_MAC, mymac.x, sizeof(mymac.x), mymac.x, sizeof(mymac.x), &len, 0)) {
158                 logger(LOG_ERR, _("Could not get MAC address from Windows tap device %s (%s): %s"), device, iface, winerror(GetLastError()));
159                 return false;
160         }
161
162         if(routing_mode == RMODE_ROUTER) {
163                 overwrite_mac = 1;
164         }
165
166         /* Now we start the child */
167
168         reader_pid = fork();
169
170         if(reader_pid == -1) {
171                 logger(LOG_DEBUG, _("System call `%s' failed: %s"), "fork", strerror(errno));
172                 return false;
173         }
174
175         if(!reader_pid) {
176                 /* The child opens the tap device for reading, blocking.
177                    It passes everything it reads to the socket. */
178         
179                 char buf[MTU];
180                 long lenin;
181
182                 CloseHandle(device_handle);
183
184                 device_handle = CreateFile(tapname, GENERIC_READ, FILE_SHARE_WRITE, 0,  OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM, 0);
185
186                 if(device_handle == INVALID_HANDLE_VALUE) {
187                         logger(LOG_ERR, _("Could not open Windows tap device %s (%s) for reading: %s"), device, iface, winerror(GetLastError()));
188                         buf[0] = 0;
189                         write(sp[1], buf, 1);
190                         exit(1);
191                 }
192
193                 logger(LOG_DEBUG, _("Tap reader forked and running."));
194
195                 /* Notify success */
196
197                 buf[0] = 1;
198                 write(sp[1], buf, 1);
199
200                 /* Pass packets */
201
202                 for(;;) {
203                         ReadFile(device_handle, buf, MTU, &lenin, NULL);
204                         write(sp[1], buf, lenin);
205                 }
206         }
207
208         read(device_fd, &gelukt, 1);
209         if(gelukt != 1) {
210                 logger(LOG_DEBUG, _("Tap reader failed!"));
211                 return false;
212         }
213
214         device_info = _("Windows tap device");
215
216         logger(LOG_INFO, _("%s (%s) is a %s"), device, iface, device_info);
217
218         return true;
219 }
220
221 void close_device(void)
222 {
223         cp();
224
225         close(sp[0]);
226         close(sp[1]);
227         CloseHandle(device_handle);
228
229         kill(reader_pid, SIGKILL);
230 }
231
232 bool read_packet(vpn_packet_t *packet)
233 {
234         int lenin;
235
236         cp();
237
238         if((lenin = read(sp[0], packet->data, MTU)) <= 0) {
239                 logger(LOG_ERR, _("Error while reading from %s %s: %s"), device_info,
240                            device, strerror(errno));
241                 return false;
242         }
243         
244         packet->len = lenin;
245
246         device_total_in += packet->len;
247
248         ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Read packet of %d bytes from %s"), packet->len,
249                            device_info);
250
251         return true;
252 }
253
254 bool write_packet(vpn_packet_t *packet)
255 {
256         long lenout;
257
258         cp();
259
260         ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Writing packet of %d bytes to %s"),
261                            packet->len, device_info);
262
263         if(!WriteFile (device_handle, packet->data, packet->len, &lenout, NULL)) {
264                 logger(LOG_ERR, _("Error while writing to %s %s: %s"), device_info, device, winerror(GetLastError()));
265                 return false;
266         }
267
268         device_total_out += packet->len;
269
270         return true;
271 }
272
273 void dump_device_stats(void)
274 {
275         cp();
276
277         logger(LOG_DEBUG, _("Statistics for %s %s:"), device_info, device);
278         logger(LOG_DEBUG, _(" total bytes in:  %10d"), device_total_in);
279         logger(LOG_DEBUG, _(" total bytes out: %10d"), device_total_out);
280 }