-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtun-win32.c
executable file
·529 lines (449 loc) · 14.4 KB
/
tun-win32.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
/*
* OpenConnect (SSL + DTLS) VPN client
*
* Copyright © 2008-2015 Intel Corporation.
*
* Author: David Woodhouse <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* version 2.1, as published by the Free Software Foundation.
*
* 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
* Lesser General Public License for more details.
*/
#include <config.h>
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <winioctl.h>
#include <iphlpapi.h>
#include <errno.h>
#include <stdio.h>
#include "openconnect-internal.h"
/*
* TAP-Windows support inspired by http://i3.cs.berkeley.edu/ (v0.2) with
* permission.
*/
#define _TAP_IOCTL(nr) CTL_CODE(FILE_DEVICE_UNKNOWN, nr, METHOD_BUFFERED, \
FILE_ANY_ACCESS)
#define TAP_IOCTL_GET_MAC _TAP_IOCTL(1)
#define TAP_IOCTL_GET_VERSION _TAP_IOCTL(2)
#define TAP_IOCTL_GET_MTU _TAP_IOCTL(3)
#define TAP_IOCTL_GET_INFO _TAP_IOCTL(4)
#define TAP_IOCTL_CONFIG_POINT_TO_POINT _TAP_IOCTL(5)
#define TAP_IOCTL_SET_MEDIA_STATUS _TAP_IOCTL(6)
#define TAP_IOCTL_CONFIG_DHCP_MASQ _TAP_IOCTL(7)
#define TAP_IOCTL_GET_LOG_LINE _TAP_IOCTL(8)
#define TAP_IOCTL_CONFIG_DHCP_SET_OPT _TAP_IOCTL(9)
#define TAP_IOCTL_CONFIG_TUN _TAP_IOCTL(10)
#define TAP_COMPONENT_ID "tap0901"
#define DEVTEMPLATE "\\\\.\\Global\\%s.tap"
#define NETDEV_GUID "{4D36E972-E325-11CE-BFC1-08002BE10318}"
#define CONTROL_KEY "SYSTEM\\CurrentControlSet\\Control\\"
#define ADAPTERS_KEY CONTROL_KEY "Class\\" NETDEV_GUID
#define CONNECTIONS_KEY CONTROL_KEY "Network\\" NETDEV_GUID
#define ADAPTER_TUNTAP 0
#define ADAPTER_WINTUN 1
typedef intptr_t (tap_callback)(struct openconnect_info *vpninfo, int type, char *idx, wchar_t *name);
#define SEARCH_CONTINUE 0
#define SEARCH_DONE 1
static intptr_t search_taps(struct openconnect_info *vpninfo, tap_callback *cb)
{
LONG status;
HKEY adapters_key, hkey;
DWORD len, type;
int adapter_type;
char buf[40];
wchar_t name[40];
char keyname[strlen(CONNECTIONS_KEY) + sizeof(buf) + 1 + strlen("\\Connection")];
int i = 0;
intptr_t ret = OPEN_TUN_SOFTFAIL;
status = RegOpenKeyExA(HKEY_LOCAL_MACHINE, ADAPTERS_KEY, 0,
KEY_READ, &adapters_key);
if (status) {
vpn_progress(vpninfo, PRG_ERR,
_("Error accessing registry key for network adapters\n"));
return -EIO;
}
while (ret == OPEN_TUN_SOFTFAIL) {
len = sizeof(buf);
status = RegEnumKeyExA(adapters_key, i++, buf, &len,
NULL, NULL, NULL, NULL);
if (status) {
if (status != ERROR_NO_MORE_ITEMS)
ret = OPEN_TUN_HARDFAIL;
break;
}
snprintf(keyname, sizeof(keyname), "%s\\%s",
ADAPTERS_KEY, buf);
status = RegOpenKeyExA(HKEY_LOCAL_MACHINE, keyname, 0,
KEY_QUERY_VALUE, &hkey);
if (status)
continue;
len = sizeof(buf);
status = RegQueryValueExA(hkey, "ComponentId", NULL, &type,
(unsigned char *)buf, &len);
if (status || type != REG_SZ) {
vpn_progress(vpninfo, PRG_TRACE,
_("Cannot read %s\\%s or is not string\n"),
keyname, "ComponentId");
RegCloseKey(hkey);
continue;
}
if (!strcmp(buf, TAP_COMPONENT_ID) || !strcmp(buf, "root\\" TAP_COMPONENT_ID))
adapter_type = ADAPTER_TUNTAP;
else if (!strcmp(buf, "wintun"))
adapter_type = ADAPTER_WINTUN;
else {
vpn_progress(vpninfo, PRG_TRACE, _("%s\\ComponentId is unknown '%s'\n"),
keyname, buf);
RegCloseKey(hkey);
continue;
}
vpn_progress(vpninfo, PRG_TRACE, _("Found %s at %s\n"),
buf, keyname);
len = sizeof(buf);
status = RegQueryValueExA(hkey, "NetCfgInstanceId", NULL,
&type, (unsigned char *)buf, &len);
RegCloseKey(hkey);
if (status || type != REG_SZ)
continue;
snprintf(keyname, sizeof(keyname), "%s\\%s\\Connection",
CONNECTIONS_KEY, buf);
status = RegOpenKeyExA(HKEY_LOCAL_MACHINE, keyname, 0,
KEY_QUERY_VALUE, &hkey);
if (status) {
vpn_progress(vpninfo, PRG_DEBUG,
_("Cannot open registry key %s\n"),
keyname);
continue;
}
len = sizeof(name);
status = RegQueryValueExW(hkey, L"Name", NULL, &type,
(unsigned char *)name, &len);
RegCloseKey(hkey);
if (status || type != REG_SZ) {
vpn_progress(vpninfo, PRG_INFO,
_("Cannot read registry key %s\\%s or is not string\n"),
keyname, "Name");
continue;
}
ret = cb(vpninfo, adapter_type, buf, name);
}
RegCloseKey(adapters_key);
return ret;
}
#ifndef __LIST_TAPS__
static int get_adapter_index(struct openconnect_info *vpninfo, char *guid)
{
struct oc_text_buf *buf = buf_alloc();
IP_ADAPTER_INFO *adapter;
void *adapters_buf;
ULONG idx;
DWORD status;
int ret = -EINVAL;
vpninfo->tun_idx = -1;
buf_append_utf16le(buf, "\\device\\tcpip_");
buf_append_utf16le(buf, guid);
if (buf_error(buf)) {
/* If we didn't manage to malloc for this, we're never
* going to manage for GetAdaptersInfo(). Give up. */
return buf_free(buf);
}
status = GetAdapterIndex((void *)buf->data, &idx);
buf_free(buf);
if (status == NO_ERROR) {
vpninfo->tun_idx = idx;
return 0;
} else {
char *errstr = openconnect__win32_strerror(status);
vpn_progress(vpninfo, PRG_INFO,
_("GetAdapterIndex() failed: %s\nFalling back to GetAdaptersInfo()\n"),
errstr);
free(errstr);
}
idx = 0;
status = GetAdaptersInfo(NULL, &idx);
if (status != ERROR_BUFFER_OVERFLOW)
return -EIO;
adapters_buf = malloc(idx);
if (!adapters_buf)
return -ENOMEM;
status = GetAdaptersInfo(adapters_buf, &idx);
if (status != NO_ERROR) {
char *errstr = openconnect__win32_strerror(status);
vpn_progress(vpninfo, PRG_ERR, _("GetAdaptersInfo() failed: %s\n"), errstr);
free(errstr);
free(adapters_buf);
return -EIO;
}
for (adapter = adapters_buf; adapter; adapter = adapter->Next) {
if (!strcmp(adapter->AdapterName, guid)) {
vpninfo->tun_idx = adapter->Index;
ret = 0;
break;
}
}
free(adapters_buf);
return ret;
}
static intptr_t open_tuntap(struct openconnect_info *vpninfo, char *guid, wchar_t *wname)
{
char devname[80];
HANDLE tun_fh;
ULONG data[3];
DWORD len;
snprintf(devname, sizeof(devname), DEVTEMPLATE, guid);
tun_fh = CreateFileA(devname, GENERIC_WRITE|GENERIC_READ, 0, 0,
OPEN_EXISTING,
FILE_ATTRIBUTE_SYSTEM | FILE_FLAG_OVERLAPPED,
0);
if (tun_fh == INVALID_HANDLE_VALUE) {
vpn_progress(vpninfo, PRG_ERR, _("Failed to open %s\n"),
devname);
return OPEN_TUN_SOFTFAIL;
}
vpn_progress(vpninfo, PRG_DEBUG, _("Opened tun device %S\n"), wname);
if (!DeviceIoControl(tun_fh, TAP_IOCTL_GET_VERSION,
data, sizeof(&data), data, sizeof(data),
&len, NULL)) {
char *errstr = openconnect__win32_strerror(GetLastError());
vpn_progress(vpninfo, PRG_ERR,
_("Failed to obtain TAP driver version: %s\n"), errstr);
free(errstr);
return OPEN_TUN_HARDFAIL;
}
if (data[0] < 9 || (data[0] == 9 && data[1] < 9)) {
vpn_progress(vpninfo, PRG_ERR,
_("Error: TAP-Windows driver v9.9 or greater is required (found %ld.%ld)\n"),
data[0], data[1]);
return -1;
}
vpn_progress(vpninfo, PRG_DEBUG, "TAP-Windows driver v%ld.%ld (%ld)\n",
data[0], data[1], data[2]);
data[0] = inet_addr(vpninfo->ip_info.addr);
/* Set network and mask both to 0.0.0.0. It's not about routing;
* it just ensures that the TAP driver fakes ARP responses for
* *everything* we throw at it, and we can just configure them
* as on-link routes. */
data[1] = 0;
data[2] = 0;
if (!DeviceIoControl(tun_fh, TAP_IOCTL_CONFIG_TUN,
data, sizeof(data), data, sizeof(data),
&len, NULL)) {
char *errstr = openconnect__win32_strerror(GetLastError());
vpn_progress(vpninfo, PRG_ERR,
_("Failed to set TAP IP addresses: %s\n"), errstr);
free(errstr);
return OPEN_TUN_HARDFAIL;
}
data[0] = 1;
if (!DeviceIoControl(tun_fh, TAP_IOCTL_SET_MEDIA_STATUS,
data, sizeof(data[0]), data, sizeof(data[0]),
&len, NULL)) {
char *errstr = openconnect__win32_strerror(GetLastError());
vpn_progress(vpninfo, PRG_ERR,
_("Failed to set TAP media status: %s\n"), errstr);
free(errstr);
return OPEN_TUN_HARDFAIL;
}
return (intptr_t)tun_fh;
}
static intptr_t open_tun(struct openconnect_info *vpninfo, int adapter_type, char *guid, wchar_t *wname)
{
intptr_t ret = -1;
if (vpninfo->ifname_w && wcscmp(wname, vpninfo->ifname_w)) {
vpn_progress(vpninfo, PRG_DEBUG,
_("Ignoring non-matching interface \"%S\"\n"),
wname);
return 0;
}
if (adapter_type == ADAPTER_TUNTAP)
ret = open_tuntap(vpninfo, guid, wname);
else
ret = open_wintun(vpninfo, guid, wname);
if (ret == OPEN_TUN_SOFTFAIL || ret == OPEN_TUN_HARDFAIL)
return ret;
/*
* We have found the adapter and opened it successfully. Now set
* vpninfo->ifname accordingly, if necessary, and find $TUNIDX
* for the script to use to configure it.
*/
if (!vpninfo->ifname) {
struct oc_text_buf *namebuf = buf_alloc();
buf_append_from_utf16le(namebuf, wname);
if (buf_error(namebuf)) {
vpn_progress(vpninfo, PRG_ERR, _("Could not convert interface name to UTF-8\n"));
os_shutdown_tun(vpninfo);
buf_free(namebuf);
return OPEN_TUN_HARDFAIL;
}
vpninfo->ifname = namebuf->data;
namebuf->data = NULL;
buf_free(namebuf);
}
get_adapter_index(vpninfo, guid);
vpn_progress(vpninfo, PRG_INFO, _("Using %s device '%s', index %d\n"),
adapter_type ? "Wintun" : "TAP-Windows",
vpninfo->ifname, vpninfo->tun_idx);
return ret;
}
intptr_t os_setup_tun(struct openconnect_info *vpninfo)
{
if (vpninfo->ifname) {
struct oc_text_buf *ifname_buf = buf_alloc();
buf_append_utf16le(ifname_buf, vpninfo->ifname);
if (buf_error(ifname_buf)) {
vpn_progress(vpninfo, PRG_ERR, _("Could not construct interface name\n"));
return buf_free(ifname_buf);
}
free(vpninfo->ifname_w);
vpninfo->ifname_w = (wchar_t *)ifname_buf->data;
ifname_buf->data = NULL;
buf_free(ifname_buf);
}
intptr_t ret = search_taps(vpninfo, open_tun);
if (ret == OPEN_TUN_SOFTFAIL) {
/* If an interface name was given, try creating a Wintun */
if (vpninfo->ifname && !create_wintun(vpninfo)) {
ret = search_taps(vpninfo, open_tun);
if (ret == OPEN_TUN_SOFTFAIL)
ret = OPEN_TUN_HARDFAIL;
if (ret == OPEN_TUN_HARDFAIL)
os_shutdown_wintun(vpninfo);
}
}
if (ret == OPEN_TUN_SOFTFAIL) {
vpn_progress(vpninfo, PRG_ERR,
_("No Windows-TAP adapters found. Is the driver installed?\n"));
if (!vpninfo->ifname)
vpn_progress(vpninfo, PRG_ERR,
_("Alternatively, specify an interface name to try creating it with Wintun\n"));
ret = OPEN_TUN_HARDFAIL;
}
return ret;
}
int os_read_tun(struct openconnect_info *vpninfo, struct pkt *pkt)
{
DWORD pkt_size;
if (vpninfo->wintun)
return os_read_wintun(vpninfo, pkt);
reread:
if (!vpninfo->tun_rd_pending &&
!ReadFile(vpninfo->tun_fh, pkt->data, pkt->len, &pkt_size,
&vpninfo->tun_rd_overlap)) {
DWORD err = GetLastError();
if (err == ERROR_IO_PENDING)
vpninfo->tun_rd_pending = 1;
else if (err == ERROR_OPERATION_ABORTED) {
vpninfo->quit_reason = "TAP device aborted";
vpn_progress(vpninfo, PRG_ERR,
_("TAP device aborted connectivity. Disconnecting.\n"));
return -1;
} else {
char *errstr = openconnect__win32_strerror(err);
vpn_progress(vpninfo, PRG_ERR,
_("Failed to read from TAP device: %s\n"),
errstr);
free(errstr);
}
return -1;
} else if (!GetOverlappedResult(vpninfo->tun_fh,
&vpninfo->tun_rd_overlap, &pkt_size,
FALSE)) {
DWORD err = GetLastError();
if (err != ERROR_IO_INCOMPLETE) {
char *errstr = openconnect__win32_strerror(err);
vpninfo->tun_rd_pending = 0;
vpn_progress(vpninfo, PRG_ERR,
_("Failed to complete read from TAP device: %s\n"),
errstr);
free(errstr);
goto reread;
}
return -1;
}
/* Either a straight ReadFile() or a subsequent GetOverlappedResult()
succeeded... */
vpninfo->tun_rd_pending = 0;
pkt->len = pkt_size;
return 0;
}
int os_write_tun(struct openconnect_info *vpninfo, struct pkt *pkt)
{
DWORD pkt_size = 0;
DWORD err;
char *errstr;
if (vpninfo->wintun)
return os_write_wintun(vpninfo, pkt);
if (WriteFile(vpninfo->tun_fh, pkt->data, pkt->len, &pkt_size, &vpninfo->tun_wr_overlap)) {
vpn_progress(vpninfo, PRG_TRACE,
_("Wrote %ld bytes to tun\n"), pkt_size);
return 0;
}
err = GetLastError();
if (err == ERROR_IO_PENDING) {
/* Theoretically we should let the mainloop handle this blocking,
but that's non-trivial and it doesn't ever seem to happen in
practice anyway. */
vpn_progress(vpninfo, PRG_TRACE,
_("Waiting for tun write...\n"));
if (GetOverlappedResult(vpninfo->tun_fh, &vpninfo->tun_wr_overlap, &pkt_size, TRUE)) {
vpn_progress(vpninfo, PRG_TRACE,
_("Wrote %ld bytes to tun after waiting\n"), pkt_size);
return 0;
}
err = GetLastError();
}
errstr = openconnect__win32_strerror(err);
vpn_progress(vpninfo, PRG_ERR,
_("Failed to write to TAP device: %s\n"), errstr);
free(errstr);
return -1;
}
void os_shutdown_tun(struct openconnect_info *vpninfo)
{
script_config_tun(vpninfo, "disconnect");
if (vpninfo->wintun) {
os_shutdown_wintun(vpninfo);
return;
}
CloseHandle(vpninfo->tun_fh);
vpninfo->tun_fh = NULL;
CloseHandle(vpninfo->tun_rd_overlap.hEvent);
vpninfo->tun_rd_overlap.hEvent = NULL;
}
int openconnect_setup_tun_fd(struct openconnect_info *vpninfo, intptr_t tun_fd)
{
ULONG data;
DWORD len;
if (vpninfo->wintun)
return setup_wintun_fd(vpninfo, tun_fd);
/* Toggle media status so that network location awareness picks up all the configuration
that occurred and properly assigns the network so the user can adjust firewall
settings. */
for (data = 0; data <= 1; data++) {
if (!DeviceIoControl((HANDLE)tun_fd, TAP_IOCTL_SET_MEDIA_STATUS,
&data, sizeof(data), &data, sizeof(data), &len, NULL)) {
char *errstr = openconnect__win32_strerror(GetLastError());
vpn_progress(vpninfo, PRG_ERR,
_("Failed to set TAP media status: %s\n"), errstr);
free(errstr);
return -1;
}
}
vpninfo->tun_fh = (HANDLE)tun_fd;
vpninfo->tun_rd_overlap.hEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
monitor_read_fd(vpninfo, tun);
return 0;
}
int openconnect_setup_tun_script(struct openconnect_info *vpninfo,
const char *tun_script)
{
vpn_progress(vpninfo, PRG_ERR,
_("Spawning tunnel scripts is not yet supported on Windows\n"));
return -1;
}
#endif /* __LIST_TAPS__ */