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