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