Make DeviceStandby control network interface link status on Windows.
[tinc] / src / mingw / device.c
1 /*
2     device.c -- Interaction with Windows tap driver in a MinGW environment
3     Copyright (C) 2002-2005 Ivo Timmermans,
4                   2002-2013 Guus Sliepen <guus@tinc-vpn.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 along
17     with this program; if not, write to the Free Software Foundation, Inc.,
18     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21 #include "../system.h"
22
23 #include <windows.h>
24 #include <winioctl.h>
25
26 #include "../conf.h"
27 #include "../device.h"
28 #include "../logger.h"
29 #include "../names.h"
30 #include "../net.h"
31 #include "../route.h"
32 #include "../utils.h"
33 #include "../xalloc.h"
34
35 #include "common.h"
36
37 int device_fd = -1;
38 static HANDLE device_handle = INVALID_HANDLE_VALUE;
39 char *device = NULL;
40 char *iface = NULL;
41 static char *device_info = NULL;
42
43 static uint64_t device_total_in = 0;
44 static uint64_t device_total_out = 0;
45
46 extern char *myport;
47
48 static DWORD WINAPI tapreader(void *bla) {
49         int status;
50         DWORD len;
51         OVERLAPPED overlapped;
52         vpn_packet_t packet;
53
54         logger(DEBUG_ALWAYS, LOG_DEBUG, "Tap reader running");
55
56         /* Read from tap device and send to parent */
57
58         overlapped.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
59
60         for(;;) {
61                 overlapped.Offset = 0;
62                 overlapped.OffsetHigh = 0;
63                 ResetEvent(overlapped.hEvent);
64
65                 status = ReadFile(device_handle, (void *)packet.data, MTU, &len, &overlapped);
66
67                 if(!status) {
68                         if(GetLastError() == ERROR_IO_PENDING) {
69                                 WaitForSingleObject(overlapped.hEvent, INFINITE);
70                                 if(!GetOverlappedResult(device_handle, &overlapped, &len, FALSE))
71                                         continue;
72                         } else {
73                                 logger(DEBUG_ALWAYS, LOG_ERR, "Error while reading from %s %s: %s", device_info,
74                                            device, strerror(errno));
75                                 return -1;
76                         }
77                 }
78
79                 EnterCriticalSection(&mutex);
80                 packet.len = len;
81                 packet.priority = 0;
82                 route(myself, &packet);
83                 event_flush_output();
84                 LeaveCriticalSection(&mutex);
85         }
86 }
87
88 static bool setup_device(void) {
89         HKEY key, key2;
90         int i;
91
92         char regpath[1024];
93         char adapterid[1024];
94         char adaptername[1024];
95         char tapname[1024];
96         DWORD len;
97
98         bool found = false;
99
100         int err;
101         HANDLE thread;
102
103         get_config_string(lookup_config(config_tree, "Device"), &device);
104         get_config_string(lookup_config(config_tree, "Interface"), &iface);
105
106         /* Open registry and look for network adapters */
107
108         if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, NETWORK_CONNECTIONS_KEY, 0, KEY_READ, &key)) {
109                 logger(DEBUG_ALWAYS, LOG_ERR, "Unable to read registry: %s", winerror(GetLastError()));
110                 return false;
111         }
112
113         for (i = 0; ; i++) {
114                 len = sizeof adapterid;
115                 if(RegEnumKeyEx(key, i, adapterid, &len, 0, 0, 0, NULL))
116                         break;
117
118                 /* Find out more about this adapter */
119
120                 snprintf(regpath, sizeof regpath, "%s\\%s\\Connection", NETWORK_CONNECTIONS_KEY, adapterid);
121
122                 if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, regpath, 0, KEY_READ, &key2))
123                         continue;
124
125                 len = sizeof adaptername;
126                 err = RegQueryValueEx(key2, "Name", 0, 0, (LPBYTE)adaptername, &len);
127
128                 RegCloseKey(key2);
129
130                 if(err)
131                         continue;
132
133                 if(device) {
134                         if(!strcmp(device, adapterid)) {
135                                 found = true;
136                                 break;
137                         } else
138                                 continue;
139                 }
140
141                 if(iface) {
142                         if(!strcmp(iface, adaptername)) {
143                                 found = true;
144                                 break;
145                         } else
146                                 continue;
147                 }
148
149                 snprintf(tapname, sizeof tapname, USERMODEDEVICEDIR "%s" TAPSUFFIX, adapterid);
150                 device_handle = CreateFile(tapname, GENERIC_WRITE | GENERIC_READ, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM | FILE_FLAG_OVERLAPPED, 0);
151                 if(device_handle != INVALID_HANDLE_VALUE) {
152                         found = true;
153                         break;
154                 }
155         }
156
157         RegCloseKey(key);
158
159         if(!found) {
160                 logger(DEBUG_ALWAYS, LOG_ERR, "No Windows tap device found!");
161                 return false;
162         }
163
164         if(!device)
165                 device = xstrdup(adapterid);
166
167         if(!iface)
168                 iface = xstrdup(adaptername);
169
170         /* Try to open the corresponding tap device */
171
172         if(device_handle == INVALID_HANDLE_VALUE) {
173                 snprintf(tapname, sizeof tapname, USERMODEDEVICEDIR "%s" TAPSUFFIX, device);
174                 device_handle = CreateFile(tapname, GENERIC_WRITE | GENERIC_READ, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM | FILE_FLAG_OVERLAPPED, 0);
175         }
176
177         if(device_handle == INVALID_HANDLE_VALUE) {
178                 logger(DEBUG_ALWAYS, LOG_ERR, "%s (%s) is not a usable Windows tap device: %s", device, iface, winerror(GetLastError()));
179                 return false;
180         }
181
182         /* Get MAC address from tap device */
183
184         if(!DeviceIoControl(device_handle, TAP_IOCTL_GET_MAC, mymac.x, sizeof mymac.x, mymac.x, sizeof mymac.x, &len, 0)) {
185                 logger(DEBUG_ALWAYS, LOG_ERR, "Could not get MAC address from Windows tap device %s (%s): %s", device, iface, winerror(GetLastError()));
186                 return false;
187         }
188
189         if(routing_mode == RMODE_ROUTER) {
190                 overwrite_mac = 1;
191         }
192
193         /* Start the tap reader */
194
195         thread = CreateThread(NULL, 0, tapreader, NULL, 0, NULL);
196
197         if(!thread) {
198                 logger(DEBUG_ALWAYS, LOG_ERR, "System call `%s' failed: %s", "CreateThread", winerror(GetLastError()));
199                 return false;
200         }
201
202         device_info = "Windows tap device";
203
204         logger(DEBUG_ALWAYS, LOG_INFO, "%s (%s) is a %s", device, iface, device_info);
205
206         return true;
207 }
208
209 static void enable_device(void) {
210         logger(DEBUG_ALWAYS, LOG_INFO, "Enabling %s", device_info);
211         ULONG status = 1;
212         DWORD len;
213         DeviceIoControl(device_handle, TAP_IOCTL_SET_MEDIA_STATUS, &status, sizeof status, &status, sizeof status, &len, NULL);
214 }
215
216 static void disable_device(void) {
217         logger(DEBUG_ALWAYS, LOG_INFO, "Disabling %s", device_info);
218         ULONG status = 0;
219         DWORD len;
220         DeviceIoControl(device_handle, TAP_IOCTL_SET_MEDIA_STATUS, &status, sizeof status, &status, sizeof status, &len, NULL);
221 }
222
223 static void close_device(void) {
224         CloseHandle(device_handle); device_handle = INVALID_HANDLE_VALUE;
225
226         free(device); device = NULL;
227         free(iface); iface = NULL;
228         device_info = NULL;
229 }
230
231 static bool read_packet(vpn_packet_t *packet) {
232         return false;
233 }
234
235 static bool write_packet(vpn_packet_t *packet) {
236         DWORD outlen;
237         OVERLAPPED overlapped = {0};
238
239         logger(DEBUG_TRAFFIC, LOG_DEBUG, "Writing packet of %d bytes to %s",
240                            packet->len, device_info);
241
242         if(!WriteFile(device_handle, packet->data, packet->len, &outlen, &overlapped)) {
243                 logger(DEBUG_ALWAYS, LOG_ERR, "Error while writing to %s %s: %s", device_info, device, winerror(GetLastError()));
244                 return false;
245         }
246
247         device_total_out += packet->len;
248
249         return true;
250 }
251
252 const devops_t os_devops = {
253         .setup = setup_device,
254         .close = close_device,
255         .read = read_packet,
256         .write = write_packet,
257         .enable = enable_device,
258         .disable = disable_device,
259 };