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>
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.
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.
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.
20 $Id: device.c,v 1.1.2.17 2003/10/08 11:37:20 guus Exp $
25 #include <w32api/windows.h>
26 #include <w32api/winioctl.h>
35 #define REG_CONTROL_NET "SYSTEM\\CurrentControlSet\\Control\\Network\\{4D36E972-E325-11CE-BFC1-08002BE10318}"
37 #define USERMODEDEVICEDIR "\\\\.\\"
38 #define USERDEVICEDIR "\\??\\"
39 #define TAPSUFFIX ".tap"
41 #define TAP_CONTROL_CODE(request,method) CTL_CODE(FILE_DEVICE_PHYSICAL_NETCARD | 8000, request, method, FILE_ANY_ACCESS)
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)
48 static HANDLE device_handle = INVALID_HANDLE_VALUE;
51 char *device_info = NULL;
53 int device_total_in = 0;
54 int device_total_out = 0;
59 bool setup_device(void)
66 char adaptername[1024];
75 get_config_string(lookup_config(config_tree, "Device"), &device);
76 get_config_string(lookup_config(config_tree, "Interface"), &iface);
78 /* Open registry and look for network adapters */
80 if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, REG_CONTROL_NET, 0, KEY_READ, &key)) {
81 logger(LOG_ERR, _("Unable to read registry: %s"), winerror(GetLastError()));
86 len = sizeof(adapterid);
87 if(RegEnumKeyEx(key, i, adapterid, &len, 0, 0, 0, NULL))
90 /* Find out more about this adapter */
92 snprintf(regpath, sizeof(regpath), "%s\\%s\\Connection", REG_CONTROL_NET, adapterid);
94 if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, regpath, 0, KEY_READ, &key2))
97 len = sizeof(adaptername);
98 err = RegQueryValueEx(key2, "Name", 0, 0, adaptername, &len);
106 if(!strcmp(device, adapterid)) {
114 if(!strcmp(iface, adaptername)) {
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);
133 logger(LOG_ERR, _("No Windows tap device found!"));
138 device = xstrdup(adapterid);
141 iface = xstrdup(adaptername);
143 snprintf(tapname, sizeof(tapname), USERMODEDEVICEDIR "%s" TAPSUFFIX, device);
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. */
149 if(socketpair(AF_UNIX, SOCK_DGRAM, PF_UNIX, sp)) {
150 logger(LOG_DEBUG, _("System call `%s' failed: %s"), "socketpair", strerror(errno));
154 /* The parent opens the tap device for writing. */
156 device_handle = CreateFile(tapname, GENERIC_WRITE, FILE_SHARE_READ, 0, OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM , 0);
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()));
165 /* Get MAC address from tap device */
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()));
172 if(routing_mode == RMODE_ROUTER) {
176 /* Now we start the child */
180 if(reader_pid == -1) {
181 logger(LOG_DEBUG, _("System call `%s' failed: %s"), "fork", strerror(errno));
186 /* The child opens the tap device for reading, blocking.
187 It passes everything it reads to the socket. */
192 CloseHandle(device_handle);
194 device_handle = CreateFile(tapname, GENERIC_READ, FILE_SHARE_WRITE, 0, OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM, 0);
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()));
199 write(sp[1], buf, 1);
203 logger(LOG_DEBUG, _("Tap reader forked and running."));
208 write(sp[1], buf, 1);
213 ReadFile(device_handle, buf, MTU, &lenin, NULL);
214 write(sp[1], buf, lenin);
218 read(device_fd, &gelukt, 1);
220 logger(LOG_DEBUG, _("Tap reader failed!"));
224 device_info = _("Windows tap device");
226 logger(LOG_INFO, _("%s (%s) is a %s"), device, iface, device_info);
231 void close_device(void)
237 CloseHandle(device_handle);
239 kill(reader_pid, SIGKILL);
242 bool read_packet(vpn_packet_t *packet)
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));
256 device_total_in += packet->len;
258 ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Read packet of %d bytes from %s"), packet->len,
264 bool write_packet(vpn_packet_t *packet)
270 ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Writing packet of %d bytes to %s"),
271 packet->len, device_info);
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()));
278 device_total_out += packet->len;
283 void dump_device_stats(void)
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);