2 device.c -- Interaction with Windows tap driver in a MinGW 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.11 2003/08/03 21:45:41 guus Exp $
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 HANDLE device_handle = INVALID_HANDLE_VALUE;
51 char *device_info = NULL;
53 int device_total_in = 0;
54 int device_total_out = 0;
58 DWORD WINAPI tapreader(void *bla) {
59 int sock, err, status;
61 struct addrinfo hint = {
62 .ai_family = AF_UNSPEC,
63 .ai_socktype = SOCK_DGRAM,
64 .ai_protocol = IPPROTO_UDP,
69 OVERLAPPED overlapped;
71 /* Open a socket to the parent process */
73 err = getaddrinfo(NULL, myport, &hint, &ai);
76 logger(LOG_ERR, _("System call `%s' failed: %s"), "getaddrinfo", gai_strerror(errno));
80 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
85 logger(LOG_ERR, _("System call `%s' failed: %s"), "socket", strerror(errno));
89 if(connect(sock, ai->ai_addr, ai->ai_addrlen)) {
90 logger(LOG_ERR, _("System call `%s' failed: %s"), "connect", strerror(errno));
94 logger(LOG_DEBUG, _("Tap reader running"));
96 /* Read from tap device and send to parent */
98 overlapped.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
101 overlapped.Offset = 0;
102 overlapped.OffsetHigh = 0;
103 ResetEvent(overlapped.hEvent);
105 status = ReadFile(device_handle, buf, sizeof(buf), &len, &overlapped);
108 if(GetLastError() == ERROR_IO_PENDING) {
109 WaitForSingleObject(overlapped.hEvent, INFINITE);
110 if(!GetOverlappedResult(device_handle, &overlapped, &len, FALSE))
113 logger(LOG_ERR, _("Error while reading from %s %s: %s"), device_info,
114 device, strerror(errno));
119 if(send(sock, buf, len, 0) <= 0)
124 bool setup_device(void)
130 char adapterid[1024];
131 char adaptername[1024];
141 struct addrinfo hint = {
142 .ai_family = AF_UNSPEC,
143 .ai_socktype = SOCK_DGRAM,
144 .ai_protocol = IPPROTO_UDP,
150 get_config_string(lookup_config(config_tree, "Device"), &device);
151 get_config_string(lookup_config(config_tree, "Interface"), &iface);
153 /* Open registry and look for network adapters */
155 if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, REG_CONTROL_NET, 0, KEY_READ, &key)) {
156 logger(LOG_ERR, _("Unable to read registry: %s"), winerror(GetLastError()));
161 len = sizeof(adapterid);
162 if(RegEnumKeyEx(key, i, adapterid, &len, 0, 0, 0, NULL))
165 /* Find out more about this adapter */
167 snprintf(regpath, sizeof(regpath), "%s\\%s\\Connection", REG_CONTROL_NET, adapterid);
169 if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, regpath, 0, KEY_READ, &key2))
172 len = sizeof(adaptername);
173 RegQueryValueEx(key2, "Name", 0, 0, adaptername, &len);
178 if(!strcmp(device, adapterid)) {
186 if(!strcmp(iface, adaptername)) {
193 snprintf(tapname, sizeof(tapname), USERMODEDEVICEDIR "%s" TAPSUFFIX, adapterid);
194 device_handle = CreateFile(tapname, GENERIC_WRITE | GENERIC_READ, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM | FILE_FLAG_OVERLAPPED, 0);
195 if(device_handle != INVALID_HANDLE_VALUE) {
204 logger(LOG_ERR, _("No Windows tap device found!"));
209 device = xstrdup(adapterid);
212 iface = xstrdup(adaptername);
214 /* Try to open the corresponding tap device */
216 if(device_handle == INVALID_HANDLE_VALUE) {
217 snprintf(tapname, sizeof(tapname), USERMODEDEVICEDIR "%s" TAPSUFFIX, device);
218 device_handle = CreateFile(tapname, GENERIC_WRITE | GENERIC_READ, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM | FILE_FLAG_OVERLAPPED, 0);
221 if(device_handle == INVALID_HANDLE_VALUE) {
222 logger(LOG_ERR, _("%s (%s) is no a usable Windows tap device!"), device, iface);
226 /* Get MAC address from tap device */
228 if(!DeviceIoControl(device_handle, TAP_IOCTL_GET_MAC, mymac.x, sizeof(mymac.x), mymac.x, sizeof(mymac.x), &len, 0)) {
229 logger(LOG_ERR, _("Could not get MAC address from Windows tap device!"));
233 if(routing_mode == RMODE_ROUTER) {
237 /* Create a listening socket */
239 err = getaddrinfo(NULL, myport, &hint, &ai);
242 logger(LOG_ERR, _("System call `%s' failed: %s"), "getaddrinfo", gai_strerror(errno));
246 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
249 logger(LOG_ERR, _("System call `%s' failed: %s"), "socket", strerror(errno));
253 if(bind(sock, ai->ai_addr, ai->ai_addrlen)) {
254 logger(LOG_ERR, _("System call `%s' failed: %s"), "bind", strerror(errno));
260 if(listen(sock, 1)) {
261 logger(LOG_ERR, _("System call `%s' failed: %s"), "listen", strerror(errno));
265 /* Start the tap reader */
267 thread = CreateThread(NULL, 0, tapreader, NULL, 0, NULL);
270 logger(LOG_ERR, _("System call `%s' failed: %s"), "CreateThread", winerror(GetLastError()));
274 /* Wait for the tap reader to connect back to us */
276 if((device_fd = accept(sock, NULL, 0)) == -1) {
277 logger(LOG_ERR, _("System call `%s' failed: %s"), "accept", strerror(errno));
283 device_info = _("Windows tap device");
285 logger(LOG_INFO, _("%s (%s) is a %s"), device, iface, device_info);
290 void close_device(void)
294 CloseHandle(device_handle);
297 bool read_packet(vpn_packet_t *packet)
303 if((lenin = recv(device_fd, packet->data, MTU, 0)) <= 0) {
304 logger(LOG_ERR, _("Error while reading from %s %s: %s"), device_info,
305 device, strerror(errno));
311 device_total_in += packet->len;
313 ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Read packet of %d bytes from %s"), packet->len,
319 bool write_packet(vpn_packet_t *packet)
322 OVERLAPPED overlapped = {0};
326 ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Writing packet of %d bytes to %s"),
327 packet->len, device_info);
329 if(!WriteFile(device_handle, packet->data, packet->len, &lenout, &overlapped)) {
330 logger(LOG_ERR, _("Error while writing to %s %s: %s"), device_info, device, winerror(GetLastError()));
334 device_total_out += packet->len;
339 void dump_device_stats(void)
343 logger(LOG_DEBUG, _("Statistics for %s %s:"), device_info, device);
344 logger(LOG_DEBUG, _(" total bytes in: %10d"), device_total_in);
345 logger(LOG_DEBUG, _(" total bytes out: %10d"), device_total_out);