d005a63b1faae1faeeb841600c899a1832a62ed7
[tinc] / src / mingw / device.c
1 /*
2     device.c -- Interaction with Windows tap driver in a MinGW environment
3     Copyright (C) 2002-2003 Ivo Timmermans <ivo@o2w.nl>,
4                   2002-2003 Guus Sliepen <guus@sliepen.eu.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
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20     $Id: device.c,v 1.1.2.5 2003/07/29 12:38:49 guus Exp $
21 */
22
23 #include "system.h"
24
25 #include <windows.h>
26 #include <winioctl.h>
27
28 #include "conf.h"
29 #include "logger.h"
30 #include "net.h"
31 #include "route.h"
32 #include "utils.h"
33 #include "xalloc.h"
34
35 #define NETCARD_REG_KEY_2000 "SYSTEM\\CurrentControlSet\\Control\\Class\\{4D36E972-E325-11CE-BFC1-08002BE10318}"
36 #define NETCARD_REG_KEY      "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\NetworkCards"
37 #define REG_SERVICE_KEY      "SYSTEM\\CurrentControlSet\\Services"
38 #define REG_CONTROL_NET      "SYSTEM\\CurrentControlSet\\Control\\Network\\{4D36E972-E325-11CE-BFC1-08002BE10318}"
39
40 #define USERMODEDEVICEDIR "\\\\.\\"
41 #define SYSDEVICEDIR  "\\Device\\"
42 #define USERDEVICEDIR "\\??\\"
43 #define TAPSUFFIX     ".tap"
44
45 #define TAP_CONTROL_CODE(request,method) CTL_CODE(FILE_DEVICE_PHYSICAL_NETCARD | 8000, request, method, FILE_ANY_ACCESS)
46
47 #define TAP_IOCTL_GET_LASTMAC    TAP_CONTROL_CODE(0, METHOD_BUFFERED)
48 #define TAP_IOCTL_GET_MAC        TAP_CONTROL_CODE(1, METHOD_BUFFERED)
49 #define TAP_IOCTL_SET_STATISTICS TAP_CONTROL_CODE(2, METHOD_BUFFERED)
50
51 /* FIXME: This only works for Windows 2000 */
52 #define OSTYPE 5
53
54 HANDLE device_fd = INVALID_HANDLE_VALUE;
55 char *device = NULL;
56 char *iface = NULL;
57 char *device_info = NULL;
58
59 int device_total_in = 0;
60 int device_total_out = 0;
61
62 bool setup_device(void)
63 {
64         HKEY key, key2;
65         int i;
66
67         char regpath[1024];
68         char adapterid[1024];
69         char adaptername[1024];
70         char tapname[1024];
71         char gelukt = 0;
72         long len;
73
74         bool found = false;
75
76         cp();
77
78         get_config_string(lookup_config(config_tree, "Device"), &device);
79         get_config_string(lookup_config(config_tree, "Interface"), &iface);
80
81         /* Open registry and look for network adapters */
82
83         if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, REG_CONTROL_NET, 0, KEY_READ, &key)) {
84                 logger(LOG_ERR, _("Unable to read registry"));
85                 return false;
86         }
87
88         for (i = 0; ; i++) {
89                 len = sizeof(adapterid);
90                 if(RegEnumKeyEx(key, i, adapterid, &len, 0, 0, 0, NULL))
91                         break;
92
93                 /* Find out more about this adapter */
94
95                 snprintf(regpath, sizeof(regpath), "%s\\%s\\Connection", REG_CONTROL_NET, adapterid);
96
97                 if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, regpath, 0, KEY_READ, &key2))
98                         continue;
99
100                 len = sizeof(adaptername);
101                 RegQueryValueEx(key2, "Name", 0, 0, adaptername, &len);
102
103                 if(device) {
104                         if(!strcmp(device, adapterid)) {
105                                 found = true;
106                                 break;
107                         } else
108                                 continue;
109                 }
110
111                 if(iface) {
112                         if(!strcmp(iface, adaptername)) {
113                                 found = true;
114                                 break;
115                         } else
116                                 continue;
117                 }
118
119                 snprintf(tapname, sizeof(tapname), USERMODEDEVICEDIR "%s" TAPSUFFIX, adapterid);
120                 device_fd = CreateFile(tapname, GENERIC_WRITE | GENERIC_READ, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM, 0);
121                 if(device_fd != INVALID_HANDLE_VALUE) {
122                         found = true;
123                         break;
124                 }
125         }
126
127         if(!found) {
128                 logger(LOG_ERR, _("No Windows tap device found!"));
129                 return false;
130         }
131
132         device = adapterid;
133         iface = adaptername;
134
135         /* Try to open the corresponding tap device */
136
137         if(device_fd == INVALID_HANDLE_VALUE) {
138                 snprintf(tapname, sizeof(tapname), USERMODEDEVICEDIR "%s" TAPSUFFIX, device);
139                 device_fd = CreateFile(tapname, GENERIC_WRITE | GENERIC_READ, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_SYSTEM, 0);
140         }
141         
142         if(device_fd == INVALID_HANDLE_VALUE) {
143                 logger(LOG_ERR, _("%s (%s) is no a usable Windows tap device!"), device, iface);
144                 return false;
145         }
146
147         /* Get MAC address from tap device */
148
149         if(!DeviceIoControl(device_fd, TAP_IOCTL_GET_MAC, mymac.x, sizeof(mymac.x), mymac.x, sizeof(mymac.x), &len, 0)) {
150                 logger(LOG_ERR, _("Could not get MAC address from Windows tap device!"));
151                 return false;
152         }
153
154         if(routing_mode == RMODE_ROUTER) {
155                 overwrite_mac = 1;
156         }
157
158         device_info = _("Windows tap device");
159
160         logger(LOG_INFO, _("%s (%s) is a %s"), device, iface, device_info);
161
162         return true;
163 }
164
165 void close_device(void)
166 {
167         cp();
168
169         CloseHandle(device_fd);
170 }
171
172 bool read_packet(vpn_packet_t *packet)
173 {
174         long lenin;
175
176         cp();
177
178         if(!ReadFile(device_fd, packet->data, MTU, &lenin, NULL)) {
179                 logger(LOG_ERR, _("Error while reading from %s %s: %s"), device_info,
180                            device, strerror(errno));
181                 return false;
182         }
183         
184         packet->len = lenin;
185
186         device_total_in += packet->len;
187
188         ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Read packet of %d bytes from %s"), packet->len,
189                            device_info);
190
191         return true;
192 }
193
194 bool write_packet(vpn_packet_t *packet)
195 {
196         long lenout;
197
198         cp();
199
200         ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Writing packet of %d bytes to %s"),
201                            packet->len, device_info);
202
203         if(!WriteFile(device_fd, packet->data, packet->len, &lenout, NULL)) {
204                 logger(LOG_ERR, _("Error while writing to %s %s"), device_info, device);
205                 return false;
206         }
207
208         device_total_out += packet->len;
209
210         return true;
211 }
212
213 void dump_device_stats(void)
214 {
215         cp();
216
217         logger(LOG_DEBUG, _("Statistics for %s %s:"), device_info, device);
218         logger(LOG_DEBUG, _(" total bytes in:  %10d"), device_total_in);
219         logger(LOG_DEBUG, _(" total bytes out: %10d"), device_total_out);
220 }