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