Cleanups and error messages.
[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.15 2003/08/02 21:33:18 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                 RegQueryValueEx(key2, "Name", 0, 0, adaptername, &len);
99
100                 RegCloseKey(key2);
101
102                 if(device) {
103                         if(!strcmp(device, adapterid)) {
104                                 found = true;
105                                 break;
106                         } else
107                                 continue;
108                 }
109
110                 if(iface) {
111                         if(!strcmp(iface, adaptername)) {
112                                 found = true;
113                                 break;
114                         } else
115                                 continue;
116                 }
117
118                 snprintf(tapname, sizeof(tapname), USERMODEDEVICEDIR "%s" TAPSUFFIX, adapterid);
119                 device_handle = CreateFile(tapname, GENERIC_WRITE | GENERIC_READ, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM, 0);
120                 if(device_handle != INVALID_HANDLE_VALUE) {
121                         CloseHandle(device_handle);
122                         found = true;
123                         break;
124                 }
125         }
126
127         RegCloseKey(key);
128
129         if(!found) {
130                 logger(LOG_ERR, _("No Windows tap device found!"));
131                 return false;
132         }
133
134         if(!device)
135                 device = xstrdup(adapterid);
136
137         if(!iface)
138                 iface = xstrdup(adaptername);
139
140         snprintf(tapname, sizeof(tapname), USERMODEDEVICEDIR "%s" TAPSUFFIX, device);
141         
142         /* Now we are going to open this device twice: once for reading and once for writing.
143            We do this because apparently it isn't possible to check for activity in the select() loop.
144            Furthermore I don't really know how to do it the "Windows" way. */
145
146         if(socketpair(AF_UNIX, SOCK_DGRAM, PF_UNIX, sp)) {
147                 logger(LOG_DEBUG, _("System call `%s' failed: %s"), "socketpair", strerror(errno));
148                 return false;
149         }
150
151         /* The parent opens the tap device for writing. */
152         
153         device_handle = CreateFile(tapname, GENERIC_WRITE,  FILE_SHARE_READ,  0,  OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM , 0);
154         
155         if(device_handle == INVALID_HANDLE_VALUE) {
156                 logger(LOG_ERR, _("Could not open Windows tap device for writing: %s"), winerror(GetLastError()));
157                 return false;
158         }
159
160         device_fd = sp[0];
161
162         /* Get MAC address from tap device */
163
164         if(!DeviceIoControl(device_handle, TAP_IOCTL_GET_MAC, mymac.x, sizeof(mymac.x), mymac.x, sizeof(mymac.x), &len, 0)) {
165                 logger(LOG_ERR, _("Could not get MAC address from Windows tap device: %s"), winerror(GetLastError()));
166                 return false;
167         }
168
169         if(routing_mode == RMODE_ROUTER) {
170                 overwrite_mac = 1;
171         }
172
173         /* Now we start the child */
174
175         reader_pid = fork();
176
177         if(reader_pid == -1) {
178                 logger(LOG_DEBUG, _("System call `%s' failed: %s"), "fork", strerror(errno));
179                 return false;
180         }
181
182         if(!reader_pid) {
183                 /* The child opens the tap device for reading, blocking.
184                    It passes everything it reads to the socket. */
185         
186                 char buf[MTU];
187                 long lenin;
188
189                 CloseHandle(device_handle);
190
191                 device_handle = CreateFile(tapname, GENERIC_READ, FILE_SHARE_WRITE, 0,  OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM, 0);
192
193                 if(device_handle == INVALID_HANDLE_VALUE) {
194                         logger(LOG_ERR, _("Could not open Windows tap device for reading: %s"), winerror(GetLastError()));
195                         buf[0] = 0;
196                         write(sp[1], buf, 1);
197                         exit(1);
198                 }
199
200                 logger(LOG_DEBUG, _("Tap reader forked and running."));
201
202                 /* Notify success */
203
204                 buf[0] = 1;
205                 write(sp[1], buf, 1);
206
207                 /* Pass packets */
208
209                 for(;;) {
210                         ReadFile(device_handle, buf, MTU, &lenin, NULL);
211                         write(sp[1], buf, lenin);
212                 }
213         }
214
215         read(device_fd, &gelukt, 1);
216         if(gelukt != 1) {
217                 logger(LOG_DEBUG, _("Tap reader failed!"));
218                 return false;
219         }
220
221         device_info = _("Windows tap device");
222
223         logger(LOG_INFO, _("%s (%s) is a %s"), device, iface, device_info);
224
225         return true;
226 }
227
228 void close_device(void)
229 {
230         cp();
231
232         close(sp[0]);
233         close(sp[1]);
234         CloseHandle(device_handle);
235
236         kill(reader_pid, SIGKILL);
237 }
238
239 bool read_packet(vpn_packet_t *packet)
240 {
241         int lenin;
242
243         cp();
244
245         if((lenin = read(sp[0], packet->data, MTU)) <= 0) {
246                 logger(LOG_ERR, _("Error while reading from %s %s: %s"), device_info,
247                            device, strerror(errno));
248                 return false;
249         }
250         
251         packet->len = lenin;
252
253         device_total_in += packet->len;
254
255         ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Read packet of %d bytes from %s"), packet->len,
256                            device_info);
257
258         return true;
259 }
260
261 bool write_packet(vpn_packet_t *packet)
262 {
263         long lenout;
264
265         cp();
266
267         ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Writing packet of %d bytes to %s"),
268                            packet->len, device_info);
269
270         if(!WriteFile (device_handle, packet->data, packet->len, &lenout, NULL)) {
271                 logger(LOG_ERR, _("Error while writing to %s %s: %s"), device_info, device, winerror(GetLastError()));
272                 return false;
273         }
274
275         device_total_out += packet->len;
276
277         return true;
278 }
279
280 void dump_device_stats(void)
281 {
282         cp();
283
284         logger(LOG_DEBUG, _("Statistics for %s %s:"), device_info, device);
285         logger(LOG_DEBUG, _(" total bytes in:  %10d"), device_total_in);
286         logger(LOG_DEBUG, _(" total bytes out: %10d"), device_total_out);
287 }