2003-07-28 21:54:03 +00:00
|
|
|
/*
|
2003-07-29 11:06:23 +00:00
|
|
|
device.c -- Interaction with Windows tap driver in a Cygwin environment
|
2006-04-26 13:52:58 +00:00
|
|
|
Copyright (C) 2002-2005 Ivo Timmermans,
|
2014-12-24 21:23:24 +00:00
|
|
|
2002-2014 Guus Sliepen <guus@tinc-vpn.org>
|
2003-07-28 21:54:03 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
2009-09-24 22:01:00 +00:00
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2003-07-28 21:54:03 +00:00
|
|
|
*/
|
|
|
|
|
2013-05-01 10:20:06 +00:00
|
|
|
#include "../system.h"
|
2003-07-28 21:54:03 +00:00
|
|
|
|
|
|
|
#include <w32api/windows.h>
|
|
|
|
#include <w32api/winioctl.h>
|
|
|
|
|
2013-05-01 10:20:06 +00:00
|
|
|
#include "../conf.h"
|
|
|
|
#include "../device.h"
|
|
|
|
#include "../logger.h"
|
|
|
|
#include "../names.h"
|
|
|
|
#include "../net.h"
|
|
|
|
#include "../route.h"
|
|
|
|
#include "../utils.h"
|
|
|
|
#include "../xalloc.h"
|
2003-07-28 21:54:03 +00:00
|
|
|
|
2013-05-01 10:20:06 +00:00
|
|
|
#include "../mingw/common.h"
|
2003-07-28 21:54:03 +00:00
|
|
|
|
|
|
|
int device_fd = -1;
|
2003-08-02 21:33:19 +00:00
|
|
|
static HANDLE device_handle = INVALID_HANDLE_VALUE;
|
2003-07-28 21:54:03 +00:00
|
|
|
char *device = NULL;
|
|
|
|
char *iface = NULL;
|
2009-01-03 21:06:10 +00:00
|
|
|
static char *device_info = NULL;
|
2003-07-28 21:54:03 +00:00
|
|
|
|
2004-11-01 17:02:19 +00:00
|
|
|
static pid_t reader_pid;
|
|
|
|
static int sp[2];
|
2003-07-28 21:54:03 +00:00
|
|
|
|
2011-12-04 00:20:59 +00:00
|
|
|
static bool setup_device(void) {
|
2003-07-28 21:54:03 +00:00
|
|
|
HKEY key, key2;
|
2003-10-08 11:37:20 +00:00
|
|
|
int i, err;
|
2003-07-28 21:54:03 +00:00
|
|
|
|
|
|
|
char regpath[1024];
|
|
|
|
char adapterid[1024];
|
|
|
|
char adaptername[1024];
|
|
|
|
char tapname[1024];
|
|
|
|
char gelukt = 0;
|
|
|
|
long len;
|
|
|
|
|
|
|
|
bool found = false;
|
|
|
|
|
|
|
|
get_config_string(lookup_config(config_tree, "Device"), &device);
|
|
|
|
get_config_string(lookup_config(config_tree, "Interface"), &iface);
|
|
|
|
|
|
|
|
/* Open registry and look for network adapters */
|
|
|
|
|
2004-10-01 18:26:15 +00:00
|
|
|
if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, NETWORK_CONNECTIONS_KEY, 0, KEY_READ, &key)) {
|
2012-02-26 17:37:36 +00:00
|
|
|
logger(DEBUG_ALWAYS, LOG_ERR, "Unable to read registry: %s", winerror(GetLastError()));
|
2003-07-28 21:54:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; ; i++) {
|
2008-12-11 15:56:18 +00:00
|
|
|
len = sizeof adapterid;
|
2003-07-28 21:54:03 +00:00
|
|
|
if(RegEnumKeyEx(key, i, adapterid, &len, 0, 0, 0, NULL))
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Find out more about this adapter */
|
|
|
|
|
2008-12-11 15:56:18 +00:00
|
|
|
snprintf(regpath, sizeof regpath, "%s\\%s\\Connection", NETWORK_CONNECTIONS_KEY, adapterid);
|
2003-07-28 21:54:03 +00:00
|
|
|
|
2012-10-10 15:17:49 +00:00
|
|
|
if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, regpath, 0, KEY_READ, &key2))
|
2003-07-29 12:18:35 +00:00
|
|
|
continue;
|
2003-07-28 21:54:03 +00:00
|
|
|
|
2008-12-11 15:56:18 +00:00
|
|
|
len = sizeof adaptername;
|
2003-08-08 19:49:47 +00:00
|
|
|
err = RegQueryValueEx(key2, "Name", 0, 0, adaptername, &len);
|
2003-07-28 21:54:03 +00:00
|
|
|
|
2003-07-29 12:18:35 +00:00
|
|
|
RegCloseKey(key2);
|
|
|
|
|
2003-08-08 19:49:47 +00:00
|
|
|
if(err)
|
|
|
|
continue;
|
|
|
|
|
2003-07-29 12:18:35 +00:00
|
|
|
if(device) {
|
|
|
|
if(!strcmp(device, adapterid)) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
} else
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2003-07-28 21:54:03 +00:00
|
|
|
if(iface) {
|
|
|
|
if(!strcmp(iface, adaptername)) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
} else
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2008-12-11 15:56:18 +00:00
|
|
|
snprintf(tapname, sizeof tapname, USERMODEDEVICEDIR "%s" TAPSUFFIX, adapterid);
|
2003-08-02 21:33:19 +00:00
|
|
|
device_handle = CreateFile(tapname, GENERIC_WRITE | GENERIC_READ, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM, 0);
|
|
|
|
if(device_handle != INVALID_HANDLE_VALUE) {
|
|
|
|
CloseHandle(device_handle);
|
2003-07-28 21:54:03 +00:00
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-07-29 12:18:35 +00:00
|
|
|
RegCloseKey(key);
|
|
|
|
|
2003-07-28 21:54:03 +00:00
|
|
|
if(!found) {
|
2012-02-26 17:37:36 +00:00
|
|
|
logger(DEBUG_ALWAYS, LOG_ERR, "No Windows tap device found!");
|
2003-07-28 21:54:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-07-29 23:21:01 +00:00
|
|
|
if(!device)
|
|
|
|
device = xstrdup(adapterid);
|
|
|
|
|
|
|
|
if(!iface)
|
|
|
|
iface = xstrdup(adaptername);
|
2003-07-28 21:54:03 +00:00
|
|
|
|
2008-12-11 15:56:18 +00:00
|
|
|
snprintf(tapname, sizeof tapname, USERMODEDEVICEDIR "%s" TAPSUFFIX, device);
|
2012-10-10 15:17:49 +00:00
|
|
|
|
2003-07-28 21:54:03 +00:00
|
|
|
/* Now we are going to open this device twice: once for reading and once for writing.
|
|
|
|
We do this because apparently it isn't possible to check for activity in the select() loop.
|
|
|
|
Furthermore I don't really know how to do it the "Windows" way. */
|
|
|
|
|
|
|
|
if(socketpair(AF_UNIX, SOCK_DGRAM, PF_UNIX, sp)) {
|
2012-02-26 17:37:36 +00:00
|
|
|
logger(DEBUG_ALWAYS, LOG_DEBUG, "System call `%s' failed: %s", "socketpair", strerror(errno));
|
2003-07-28 21:54:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The parent opens the tap device for writing. */
|
2012-10-10 15:17:49 +00:00
|
|
|
|
2003-08-02 21:33:19 +00:00
|
|
|
device_handle = CreateFile(tapname, GENERIC_WRITE, FILE_SHARE_READ, 0, OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM , 0);
|
2012-10-10 15:17:49 +00:00
|
|
|
|
2003-08-02 21:33:19 +00:00
|
|
|
if(device_handle == INVALID_HANDLE_VALUE) {
|
2012-02-26 17:37:36 +00:00
|
|
|
logger(DEBUG_ALWAYS, LOG_ERR, "Could not open Windows tap device %s (%s) for writing: %s", device, iface, winerror(GetLastError()));
|
2003-07-28 21:54:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
device_fd = sp[0];
|
|
|
|
|
|
|
|
/* Get MAC address from tap device */
|
|
|
|
|
2008-12-11 15:56:18 +00:00
|
|
|
if(!DeviceIoControl(device_handle, TAP_IOCTL_GET_MAC, mymac.x, sizeof mymac.x, mymac.x, sizeof mymac.x, &len, 0)) {
|
2012-02-26 17:37:36 +00:00
|
|
|
logger(DEBUG_ALWAYS, LOG_ERR, "Could not get MAC address from Windows tap device %s (%s): %s", device, iface, winerror(GetLastError()));
|
2003-07-28 21:54:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(routing_mode == RMODE_ROUTER) {
|
|
|
|
overwrite_mac = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now we start the child */
|
|
|
|
|
|
|
|
reader_pid = fork();
|
|
|
|
|
|
|
|
if(reader_pid == -1) {
|
2012-02-26 17:37:36 +00:00
|
|
|
logger(DEBUG_ALWAYS, LOG_DEBUG, "System call `%s' failed: %s", "fork", strerror(errno));
|
2003-07-28 21:54:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!reader_pid) {
|
|
|
|
/* The child opens the tap device for reading, blocking.
|
|
|
|
It passes everything it reads to the socket. */
|
2012-10-10 15:17:49 +00:00
|
|
|
|
2003-07-28 21:54:03 +00:00
|
|
|
char buf[MTU];
|
2007-05-18 11:19:31 +00:00
|
|
|
long inlen;
|
2003-07-29 12:18:35 +00:00
|
|
|
|
2003-08-02 21:33:19 +00:00
|
|
|
CloseHandle(device_handle);
|
2003-07-28 21:54:03 +00:00
|
|
|
|
2003-08-02 21:33:19 +00:00
|
|
|
device_handle = CreateFile(tapname, GENERIC_READ, FILE_SHARE_WRITE, 0, OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM, 0);
|
2003-07-28 21:54:03 +00:00
|
|
|
|
2003-08-02 21:33:19 +00:00
|
|
|
if(device_handle == INVALID_HANDLE_VALUE) {
|
2012-02-26 17:37:36 +00:00
|
|
|
logger(DEBUG_ALWAYS, LOG_ERR, "Could not open Windows tap device %s (%s) for reading: %s", device, iface, winerror(GetLastError()));
|
2003-07-28 21:54:03 +00:00
|
|
|
buf[0] = 0;
|
|
|
|
write(sp[1], buf, 1);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2012-02-26 17:37:36 +00:00
|
|
|
logger(DEBUG_ALWAYS, LOG_DEBUG, "Tap reader forked and running.");
|
2003-07-28 21:54:03 +00:00
|
|
|
|
|
|
|
/* Notify success */
|
|
|
|
|
|
|
|
buf[0] = 1;
|
|
|
|
write(sp[1], buf, 1);
|
|
|
|
|
|
|
|
/* Pass packets */
|
|
|
|
|
|
|
|
for(;;) {
|
2007-05-18 11:19:31 +00:00
|
|
|
ReadFile(device_handle, buf, MTU, &inlen, NULL);
|
|
|
|
write(sp[1], buf, inlen);
|
2003-07-28 21:54:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
read(device_fd, &gelukt, 1);
|
|
|
|
if(gelukt != 1) {
|
2012-02-26 17:37:36 +00:00
|
|
|
logger(DEBUG_ALWAYS, LOG_DEBUG, "Tap reader failed!");
|
2003-07-28 21:54:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-09-24 22:54:07 +00:00
|
|
|
device_info = "Windows tap device";
|
2003-07-28 21:54:03 +00:00
|
|
|
|
2012-02-26 17:37:36 +00:00
|
|
|
logger(DEBUG_ALWAYS, LOG_INFO, "%s (%s) is a %s", device, iface, device_info);
|
2003-07-28 21:54:03 +00:00
|
|
|
|
2003-07-29 12:18:35 +00:00
|
|
|
return true;
|
2003-07-28 21:54:03 +00:00
|
|
|
}
|
|
|
|
|
2011-12-04 00:20:59 +00:00
|
|
|
static void close_device(void) {
|
2003-07-28 21:54:03 +00:00
|
|
|
close(sp[0]);
|
|
|
|
close(sp[1]);
|
2014-06-22 08:53:26 +00:00
|
|
|
CloseHandle(device_handle); device_handle = INVALID_HANDLE_VALUE;
|
2003-07-28 21:54:03 +00:00
|
|
|
|
|
|
|
kill(reader_pid, SIGKILL);
|
2009-01-09 11:36:06 +00:00
|
|
|
|
2014-06-22 08:53:26 +00:00
|
|
|
free(device); device = NULL;
|
|
|
|
free(iface); iface = NULL;
|
|
|
|
device_info = NULL;
|
2003-07-28 21:54:03 +00:00
|
|
|
}
|
|
|
|
|
2011-12-04 00:20:59 +00:00
|
|
|
static bool read_packet(vpn_packet_t *packet) {
|
2007-05-18 11:19:31 +00:00
|
|
|
int inlen;
|
2003-07-28 21:54:03 +00:00
|
|
|
|
2014-12-24 21:23:24 +00:00
|
|
|
if((inlen = read(sp[0], DATA(packet), MTU)) <= 0) {
|
2012-02-26 17:37:36 +00:00
|
|
|
logger(DEBUG_ALWAYS, LOG_ERR, "Error while reading from %s %s: %s", device_info,
|
2003-07-28 21:54:03 +00:00
|
|
|
device, strerror(errno));
|
|
|
|
return false;
|
|
|
|
}
|
2012-10-10 15:17:49 +00:00
|
|
|
|
2007-05-18 11:19:31 +00:00
|
|
|
packet->len = inlen;
|
2003-07-28 21:54:03 +00:00
|
|
|
|
2012-02-26 17:37:36 +00:00
|
|
|
logger(DEBUG_TRAFFIC, LOG_DEBUG, "Read packet of %d bytes from %s", packet->len,
|
2003-07-28 21:54:03 +00:00
|
|
|
device_info);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-12-04 00:20:59 +00:00
|
|
|
static bool write_packet(vpn_packet_t *packet) {
|
2007-05-18 11:19:31 +00:00
|
|
|
long outlen;
|
2003-07-28 21:54:03 +00:00
|
|
|
|
2012-02-26 17:37:36 +00:00
|
|
|
logger(DEBUG_TRAFFIC, LOG_DEBUG, "Writing packet of %d bytes to %s",
|
2003-07-28 21:54:03 +00:00
|
|
|
packet->len, device_info);
|
|
|
|
|
2014-12-24 21:23:24 +00:00
|
|
|
if(!WriteFile (device_handle, DATA(packet), packet->len, &outlen, NULL)) {
|
2012-02-26 17:37:36 +00:00
|
|
|
logger(DEBUG_ALWAYS, LOG_ERR, "Error while writing to %s %s: %s", device_info, device, winerror(GetLastError()));
|
2003-07-28 21:54:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-12-04 00:20:59 +00:00
|
|
|
const devops_t os_devops = {
|
|
|
|
.setup = setup_device,
|
|
|
|
.close = close_device,
|
|
|
|
.read = read_packet,
|
|
|
|
.write = write_packet,
|
|
|
|
};
|