K&R style braces.
[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-2009 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 "logger.h"
28 #include "net.h"
29 #include "route.h"
30 #include "utils.h"
31 #include "xalloc.h"
32
33 #include "mingw/common.h"
34
35 int device_fd = -1;
36 static HANDLE device_handle = INVALID_HANDLE_VALUE;
37 char *device = NULL;
38 char *iface = NULL;
39 static char *device_info = NULL;
40
41 static int device_total_in = 0;
42 static int device_total_out = 0;
43
44 extern char *myport;
45
46 static DWORD WINAPI tapreader(void *bla) {
47         int status;
48         long len;
49         OVERLAPPED overlapped;
50         vpn_packet_t packet;
51
52         logger(LOG_DEBUG, _("Tap reader running"));
53
54         /* Read from tap device and send to parent */
55
56         overlapped.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
57
58         for(;;) {
59                 overlapped.Offset = 0;
60                 overlapped.OffsetHigh = 0;
61                 ResetEvent(overlapped.hEvent);
62
63                 status = ReadFile(device_handle, packet.data, MTU, &len, &overlapped);
64
65                 if(!status) {
66                         if(GetLastError() == ERROR_IO_PENDING) {
67                                 WaitForSingleObject(overlapped.hEvent, INFINITE);
68                                 if(!GetOverlappedResult(device_handle, &overlapped, &len, FALSE))
69                                         continue;
70                         } else {
71                                 logger(LOG_ERR, _("Error while reading from %s %s: %s"), device_info,
72                                            device, strerror(errno));
73                                 return -1;
74                         }
75                 }
76
77                 EnterCriticalSection(&mutex);
78                 packet.len = len;
79                 packet.priority = 0;
80                 route(myself, &packet);
81                 LeaveCriticalSection(&mutex);
82         }
83 }
84
85 bool setup_device(void) {
86         HKEY key, key2;
87         int i;
88
89         char regpath[1024];
90         char adapterid[1024];
91         char adaptername[1024];
92         char tapname[1024];
93         long len;
94         unsigned long status;
95
96         bool found = false;
97
98         int sock, err;
99         HANDLE thread;
100
101         struct addrinfo *ai;
102         struct addrinfo hint = {
103                 .ai_family = AF_UNSPEC,
104                 .ai_socktype = SOCK_STREAM,
105                 .ai_protocol = IPPROTO_TCP,
106                 .ai_flags = 0,
107         };
108
109         cp();
110
111         get_config_string(lookup_config(config_tree, "Device"), &device);
112         get_config_string(lookup_config(config_tree, "Interface"), &iface);
113
114         /* Open registry and look for network adapters */
115
116         if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, NETWORK_CONNECTIONS_KEY, 0, KEY_READ, &key)) {
117                 logger(LOG_ERR, _("Unable to read registry: %s"), winerror(GetLastError()));
118                 return false;
119         }
120
121         for (i = 0; ; i++) {
122                 len = sizeof(adapterid);
123                 if(RegEnumKeyEx(key, i, adapterid, &len, 0, 0, 0, NULL))
124                         break;
125
126                 /* Find out more about this adapter */
127
128                 snprintf(regpath, sizeof(regpath), "%s\\%s\\Connection", NETWORK_CONNECTIONS_KEY, adapterid);
129
130                 if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, regpath, 0, KEY_READ, &key2))
131                         continue;
132
133                 len = sizeof(adaptername);
134                 err = RegQueryValueEx(key2, "Name", 0, 0, adaptername, &len);
135
136                 RegCloseKey(key2);
137
138                 if(err)
139                         continue;
140
141                 if(device) {
142                         if(!strcmp(device, adapterid)) {
143                                 found = true;
144                                 break;
145                         } else
146                                 continue;
147                 }
148
149                 if(iface) {
150                         if(!strcmp(iface, adaptername)) {
151                                 found = true;
152                                 break;
153                         } else
154                                 continue;
155                 }
156
157                 snprintf(tapname, sizeof(tapname), USERMODEDEVICEDIR "%s" TAPSUFFIX, adapterid);
158                 device_handle = CreateFile(tapname, GENERIC_WRITE | GENERIC_READ, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM | FILE_FLAG_OVERLAPPED, 0);
159                 if(device_handle != INVALID_HANDLE_VALUE) {
160                         found = true;
161                         break;
162                 }
163         }
164
165         RegCloseKey(key);
166
167         if(!found) {
168                 logger(LOG_ERR, _("No Windows tap device found!"));
169                 return false;
170         }
171
172         if(!device)
173                 device = xstrdup(adapterid);
174
175         if(!iface)
176                 iface = xstrdup(adaptername);
177
178         /* Try to open the corresponding tap device */
179
180         if(device_handle == INVALID_HANDLE_VALUE) {
181                 snprintf(tapname, sizeof(tapname), USERMODEDEVICEDIR "%s" TAPSUFFIX, device);
182                 device_handle = CreateFile(tapname, GENERIC_WRITE | GENERIC_READ, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM | FILE_FLAG_OVERLAPPED, 0);
183         }
184         
185         if(device_handle == INVALID_HANDLE_VALUE) {
186                 logger(LOG_ERR, _("%s (%s) is not a usable Windows tap device: %s"), device, iface, winerror(GetLastError()));
187                 return false;
188         }
189
190         /* Get MAC address from tap device */
191
192         if(!DeviceIoControl(device_handle, TAP_IOCTL_GET_MAC, mymac.x, sizeof(mymac.x), mymac.x, sizeof(mymac.x), &len, 0)) {
193                 logger(LOG_ERR, _("Could not get MAC address from Windows tap device %s (%s): %s"), device, iface, winerror(GetLastError()));
194                 return false;
195         }
196
197         if(routing_mode == RMODE_ROUTER) {
198                 overwrite_mac = 1;
199         }
200
201         /* Start the tap reader */
202
203         thread = CreateThread(NULL, 0, tapreader, NULL, 0, NULL);
204
205         if(!thread) {
206                 logger(LOG_ERR, _("System call `%s' failed: %s"), "CreateThread", winerror(GetLastError()));
207                 return false;
208         }
209
210         /* Set media status for newer TAP-Win32 devices */
211
212         status = true;
213         DeviceIoControl(device_handle, TAP_IOCTL_SET_MEDIA_STATUS, &status, sizeof(status), &status, sizeof(status), &len, NULL);
214
215         device_info = _("Windows tap device");
216
217         logger(LOG_INFO, _("%s (%s) is a %s"), device, iface, device_info);
218
219         return true;
220 }
221
222 void close_device(void) {
223         cp();
224
225         CloseHandle(device_handle);
226
227         free(device);
228         free(iface);
229 }
230
231 bool read_packet(vpn_packet_t *packet) {
232         return false;
233 }
234
235 bool write_packet(vpn_packet_t *packet) {
236         long lenout;
237         OVERLAPPED overlapped = {0};
238
239         cp();
240
241         ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Writing packet of %d bytes to %s"),
242                            packet->len, device_info);
243
244         if(!WriteFile(device_handle, packet->data, packet->len, &lenout, &overlapped)) {
245                 logger(LOG_ERR, _("Error while writing to %s %s: %s"), device_info, device, winerror(GetLastError()));
246                 return false;
247         }
248
249         device_total_out += packet->len;
250
251         return true;
252 }
253
254 void dump_device_stats(void) {
255         cp();
256
257         logger(LOG_DEBUG, _("Statistics for %s %s:"), device_info, device);
258         logger(LOG_DEBUG, _(" total bytes in:  %10d"), device_total_in);
259         logger(LOG_DEBUG, _(" total bytes out: %10d"), device_total_out);
260 }