2 device.c -- Interaction with Windows tap driver in a MinGW environment
3 Copyright (C) 2002-2005 Ivo Timmermans,
4 2002-2007 Guus Sliepen <guus@tinc-vpn.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.
35 #include "mingw/common.h"
38 static HANDLE device_handle = INVALID_HANDLE_VALUE;
41 char *device_info = NULL;
43 static int device_total_in = 0;
44 static int device_total_out = 0;
48 static struct packetbuf {
53 static int nbufs = 64;
55 DWORD WINAPI tapreader(void *bla) {
56 int sock, err, status;
58 struct addrinfo hint = {
59 .ai_family = AF_UNSPEC,
60 .ai_socktype = SOCK_STREAM,
61 .ai_protocol = IPPROTO_TCP,
64 unsigned char bufno = 0;
66 OVERLAPPED overlapped;
68 /* Open a socket to the parent process */
70 err = getaddrinfo(NULL, myport, &hint, &ai);
73 logger(LOG_ERR, _("System call `%s' failed: %s"), "getaddrinfo", gai_strerror(errno));
77 sock = socket(ai->ai_family, SOCK_STREAM, IPPROTO_TCP);
80 logger(LOG_ERR, _("System call `%s' failed: %s"), "socket", strerror(errno));
85 if(connect(sock, ai->ai_addr, ai->ai_addrlen)) {
86 logger(LOG_ERR, _("System call `%s' failed: %s"), "connect", strerror(errno));
93 logger(LOG_DEBUG, _("Tap reader running"));
95 /* Read from tap device and send to parent */
97 overlapped.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
100 overlapped.Offset = 0;
101 overlapped.OffsetHigh = 0;
102 ResetEvent(overlapped.hEvent);
104 status = ReadFile(device_handle, bufs[bufno].data, MTU, &len, &overlapped);
107 if(GetLastError() == ERROR_IO_PENDING) {
108 WaitForSingleObject(overlapped.hEvent, INFINITE);
109 if(!GetOverlappedResult(device_handle, &overlapped, &len, FALSE))
112 logger(LOG_ERR, _("Error while reading from %s %s: %s"), device_info,
113 device, strerror(errno));
118 bufs[bufno].len = len;
119 if(send(sock, &bufno, 1, 0) <= 0)
126 bool setup_device(void)
132 char adapterid[1024];
133 char adaptername[1024];
136 unsigned long status;
144 struct addrinfo hint = {
145 .ai_family = AF_UNSPEC,
146 .ai_socktype = SOCK_STREAM,
147 .ai_protocol = IPPROTO_TCP,
153 get_config_string(lookup_config(config_tree, "Device"), &device);
154 get_config_string(lookup_config(config_tree, "Interface"), &iface);
156 /* Open registry and look for network adapters */
158 if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, NETWORK_CONNECTIONS_KEY, 0, KEY_READ, &key)) {
159 logger(LOG_ERR, _("Unable to read registry: %s"), winerror(GetLastError()));
164 len = sizeof(adapterid);
165 if(RegEnumKeyEx(key, i, adapterid, &len, 0, 0, 0, NULL))
168 /* Find out more about this adapter */
170 snprintf(regpath, sizeof(regpath), "%s\\%s\\Connection", NETWORK_CONNECTIONS_KEY, adapterid);
172 if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, regpath, 0, KEY_READ, &key2))
175 len = sizeof(adaptername);
176 err = RegQueryValueEx(key2, "Name", 0, 0, adaptername, &len);
184 if(!strcmp(device, adapterid)) {
192 if(!strcmp(iface, adaptername)) {
199 snprintf(tapname, sizeof(tapname), USERMODEDEVICEDIR "%s" TAPSUFFIX, adapterid);
200 device_handle = CreateFile(tapname, GENERIC_WRITE | GENERIC_READ, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM | FILE_FLAG_OVERLAPPED, 0);
201 if(device_handle != INVALID_HANDLE_VALUE) {
210 logger(LOG_ERR, _("No Windows tap device found!"));
215 device = xstrdup(adapterid);
218 iface = xstrdup(adaptername);
220 /* Try to open the corresponding tap device */
222 if(device_handle == INVALID_HANDLE_VALUE) {
223 snprintf(tapname, sizeof(tapname), USERMODEDEVICEDIR "%s" TAPSUFFIX, device);
224 device_handle = CreateFile(tapname, GENERIC_WRITE | GENERIC_READ, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM | FILE_FLAG_OVERLAPPED, 0);
227 if(device_handle == INVALID_HANDLE_VALUE) {
228 logger(LOG_ERR, _("%s (%s) is not a usable Windows tap device: %s"), device, iface, winerror(GetLastError()));
232 /* Get MAC address from tap device */
234 if(!DeviceIoControl(device_handle, TAP_IOCTL_GET_MAC, mymac.x, sizeof(mymac.x), mymac.x, sizeof(mymac.x), &len, 0)) {
235 logger(LOG_ERR, _("Could not get MAC address from Windows tap device %s (%s): %s"), device, iface, winerror(GetLastError()));
239 if(routing_mode == RMODE_ROUTER) {
243 /* Set up ringbuffer */
245 get_config_int(lookup_config(config_tree, "RingBufferSize"), &nbufs);
251 bufs = xmalloc_and_zero(nbufs * sizeof *bufs);
253 /* Create a listening socket */
255 err = getaddrinfo(NULL, myport, &hint, &ai);
258 logger(LOG_ERR, _("System call `%s' failed: %s"), "getaddrinfo", gai_strerror(errno));
262 sock = socket(ai->ai_family, SOCK_STREAM, IPPROTO_TCP);
265 logger(LOG_ERR, _("System call `%s' failed: %s"), "socket", strerror(errno));
269 if(bind(sock, ai->ai_addr, ai->ai_addrlen)) {
270 logger(LOG_ERR, _("System call `%s' failed: %s"), "bind", strerror(errno));
276 if(listen(sock, 1)) {
277 logger(LOG_ERR, _("System call `%s' failed: %s"), "listen", strerror(errno));
281 /* Start the tap reader */
283 thread = CreateThread(NULL, 0, tapreader, NULL, 0, NULL);
286 logger(LOG_ERR, _("System call `%s' failed: %s"), "CreateThread", winerror(GetLastError()));
290 /* Wait for the tap reader to connect back to us */
292 if((device_fd = accept(sock, NULL, 0)) == -1) {
293 logger(LOG_ERR, _("System call `%s' failed: %s"), "accept", strerror(errno));
299 /* Set media status for newer TAP-Win32 devices */
302 DeviceIoControl(device_handle, TAP_IOCTL_SET_MEDIA_STATUS, &status, sizeof(status), &status, sizeof(status), &len, NULL);
304 device_info = _("Windows tap device");
306 logger(LOG_INFO, _("%s (%s) is a %s"), device, iface, device_info);
311 void close_device(void)
315 CloseHandle(device_handle);
318 bool read_packet(vpn_packet_t *packet)
324 if((recv(device_fd, &bufno, 1, 0)) <= 0) {
325 logger(LOG_ERR, _("Error while reading from %s %s: %s"), device_info,
326 device, strerror(errno));
330 packet->len = bufs[bufno].len;
331 memcpy(packet->data, bufs[bufno].data, bufs[bufno].len);
333 device_total_in += packet->len;
335 ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Read packet of %d bytes from %s"), packet->len,
341 bool write_packet(vpn_packet_t *packet)
344 OVERLAPPED overlapped = {0};
348 ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Writing packet of %d bytes to %s"),
349 packet->len, device_info);
351 if(!WriteFile(device_handle, packet->data, packet->len, &lenout, &overlapped)) {
352 logger(LOG_ERR, _("Error while writing to %s %s: %s"), device_info, device, winerror(GetLastError()));
356 device_total_out += packet->len;
361 void dump_device_stats(void)
365 logger(LOG_DEBUG, _("Statistics for %s %s:"), device_info, device);
366 logger(LOG_DEBUG, _(" total bytes in: %10d"), device_total_in);
367 logger(LOG_DEBUG, _(" total bytes out: %10d"), device_total_out);