2 device.c -- Interaction BSD tun/tap device
3 Copyright (C) 2001-2005 Ivo Timmermans,
4 2001-2012 Guus Sliepen <guus@tinc-vpn.org>
5 2009 Grzegorz Dymarek <gregd72002@googlemail.com>
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License along
18 with this program; if not, write to the Free Software Foundation, Inc.,
19 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
33 #include "bsd/tunemu.h"
36 #define DEFAULT_TUN_DEVICE "/dev/tun0"
37 #if defined(HAVE_FREEBSD) || defined(HAVE_NETBSD)
38 #define DEFAULT_TAP_DEVICE "/dev/tap0"
40 #define DEFAULT_TAP_DEVICE "/dev/tun0"
43 typedef enum device_type {
45 DEVICE_TYPE_TUNIFHEAD,
55 static char *device_info = NULL;
56 static uint64_t device_total_in = 0;
57 static uint64_t device_total_out = 0;
58 #if defined(ENABLE_TUNEMU)
59 static device_type_t device_type = DEVICE_TYPE_TUNEMU;
60 #elif defined(HAVE_OPENBSD) || defined(HAVE_FREEBSD) || defined(HAVE_DRAGONFLY)
61 static device_type_t device_type = DEVICE_TYPE_TUNIFHEAD;
63 static device_type_t device_type = DEVICE_TYPE_TUN;
66 static bool setup_device(void) {
69 if(!get_config_string(lookup_config(config_tree, "Device"), &device)) {
70 if(routing_mode == RMODE_ROUTER)
71 device = xstrdup(DEFAULT_TUN_DEVICE);
73 device = xstrdup(DEFAULT_TAP_DEVICE);
76 if(!get_config_string(lookup_config(config_tree, "Interface"), &iface))
77 iface = xstrdup(strrchr(device, '/') ? strrchr(device, '/') + 1 : device);
79 if(get_config_string(lookup_config(config_tree, "DeviceType"), &type)) {
80 if(!strcasecmp(type, "tun"))
83 else if(!strcasecmp(type, "tunemu"))
84 device_type = DEVICE_TYPE_TUNEMU;
86 else if(!strcasecmp(type, "tunnohead"))
87 device_type = DEVICE_TYPE_TUN;
88 else if(!strcasecmp(type, "tunifhead"))
89 device_type = DEVICE_TYPE_TUNIFHEAD;
90 else if(!strcasecmp(type, "tap"))
91 device_type = DEVICE_TYPE_TAP;
93 logger(LOG_ERR, "Unknown device type %s!", type);
97 if(strstr(device, "tap") || routing_mode != RMODE_ROUTER)
98 device_type = DEVICE_TYPE_TAP;
101 switch(device_type) {
103 case DEVICE_TYPE_TUNEMU: {
104 char dynamic_name[256] = "";
105 device_fd = tunemu_open(dynamic_name);
110 device_fd = open(device, O_RDWR | O_NONBLOCK);
114 logger(LOG_ERR, "Could not open %s: %s", device, strerror(errno));
119 fcntl(device_fd, F_SETFD, FD_CLOEXEC);
122 switch(device_type) {
124 device_type = DEVICE_TYPE_TUN;
125 case DEVICE_TYPE_TUN:
129 if(ioctl(device_fd, TUNSIFHEAD, &zero, sizeof zero) == -1) {
130 logger(LOG_ERR, "System call `%s' failed: %s", "ioctl", strerror(errno));
135 #if defined(TUNSIFMODE) && defined(IFF_BROADCAST) && defined(IFF_MULTICAST)
137 const int mode = IFF_BROADCAST | IFF_MULTICAST;
138 ioctl(device_fd, TUNSIFMODE, &mode, sizeof mode);
142 device_info = "Generic BSD tun device";
144 case DEVICE_TYPE_TUNIFHEAD:
148 if(ioctl(device_fd, TUNSIFHEAD, &one, sizeof one) == -1) {
149 logger(LOG_ERR, "System call `%s' failed: %s", "ioctl", strerror(errno));
154 #if defined(TUNSIFMODE) && defined(IFF_BROADCAST) && defined(IFF_MULTICAST)
156 const int mode = IFF_BROADCAST | IFF_MULTICAST;
157 ioctl(device_fd, TUNSIFMODE, &mode, sizeof mode);
161 device_info = "Generic BSD tun device";
163 case DEVICE_TYPE_TAP:
164 if(routing_mode == RMODE_ROUTER)
165 overwrite_mac = true;
166 device_info = "Generic BSD tap device";
170 if(ioctl(device_fd, TAPGIFNAME, (void*)&ifr) == 0) {
173 iface = xstrdup(ifr.ifr_name);
180 case DEVICE_TYPE_TUNEMU:
181 device_info = "BSD tunemu device";
186 logger(LOG_INFO, "%s is a %s", device, device_info);
191 static void close_device(void) {
192 switch(device_type) {
194 case DEVICE_TYPE_TUNEMU:
195 tunemu_close(device_fd);
206 static bool read_packet(vpn_packet_t *packet) {
209 switch(device_type) {
210 case DEVICE_TYPE_TUN:
212 case DEVICE_TYPE_TUNEMU:
213 if(device_type == DEVICE_TYPE_TUNEMU)
214 lenin = tunemu_read(device_fd, packet->data + 14, MTU - 14);
217 lenin = read(device_fd, packet->data + 14, MTU - 14);
220 logger(LOG_ERR, "Error while reading from %s %s: %s", device_info,
221 device, strerror(errno));
225 switch(packet->data[14] >> 4) {
227 packet->data[12] = 0x08;
228 packet->data[13] = 0x00;
231 packet->data[12] = 0x86;
232 packet->data[13] = 0xDD;
235 ifdebug(TRAFFIC) logger(LOG_ERR,
236 "Unknown IP version %d while reading packet from %s %s",
237 packet->data[14] >> 4, device_info, device);
241 memset(packet->data, 0, 12);
242 packet->len = lenin + 14;
245 case DEVICE_TYPE_TUNIFHEAD: {
247 struct iovec vector[2] = {{&type, sizeof(type)}, {packet->data + 14, MTU - 14}};
249 if((lenin = readv(device_fd, vector, 2)) <= 0) {
250 logger(LOG_ERR, "Error while reading from %s %s: %s", device_info,
251 device, strerror(errno));
255 switch (ntohl(type)) {
257 packet->data[12] = 0x08;
258 packet->data[13] = 0x00;
262 packet->data[12] = 0x86;
263 packet->data[13] = 0xDD;
267 ifdebug(TRAFFIC) logger(LOG_ERR,
268 "Unknown address family %x while reading packet from %s %s",
269 ntohl(type), device_info, device);
273 memset(packet->data, 0, 12);
274 packet->len = lenin + 10;
278 case DEVICE_TYPE_TAP:
279 if((lenin = read(device_fd, packet->data, MTU)) <= 0) {
280 logger(LOG_ERR, "Error while reading from %s %s: %s", device_info,
281 device, strerror(errno));
292 device_total_in += packet->len;
294 ifdebug(TRAFFIC) logger(LOG_DEBUG, "Read packet of %d bytes from %s",
295 packet->len, device_info);
300 static bool write_packet(vpn_packet_t *packet) {
301 ifdebug(TRAFFIC) logger(LOG_DEBUG, "Writing packet of %d bytes to %s",
302 packet->len, device_info);
304 switch(device_type) {
305 case DEVICE_TYPE_TUN:
306 if(write(device_fd, packet->data + 14, packet->len - 14) < 0) {
307 logger(LOG_ERR, "Error while writing to %s %s: %s", device_info,
308 device, strerror(errno));
313 case DEVICE_TYPE_TUNIFHEAD: {
315 struct iovec vector[2] = {{&type, sizeof(type)}, {packet->data + 14, packet->len - 14}};
318 af = (packet->data[12] << 8) + packet->data[13];
322 type = htonl(AF_INET);
325 type = htonl(AF_INET6);
328 ifdebug(TRAFFIC) logger(LOG_ERR,
329 "Unknown address family %x while writing packet to %s %s",
330 af, device_info, device);
334 if(writev(device_fd, vector, 2) < 0) {
335 logger(LOG_ERR, "Can't write to %s %s: %s", device_info, device,
342 case DEVICE_TYPE_TAP:
343 if(write(device_fd, packet->data, packet->len) < 0) {
344 logger(LOG_ERR, "Error while writing to %s %s: %s", device_info,
345 device, strerror(errno));
351 case DEVICE_TYPE_TUNEMU:
352 if(tunemu_write(device_fd, packet->data + 14, packet->len - 14) < 0) {
353 logger(LOG_ERR, "Error while writing to %s %s: %s", device_info,
354 device, strerror(errno));
364 device_total_out += packet->len;
369 static void dump_device_stats(void) {
370 logger(LOG_DEBUG, "Statistics for %s %s:", device_info, device);
371 logger(LOG_DEBUG, " total bytes in: %10"PRIu64, device_total_in);
372 logger(LOG_DEBUG, " total bytes out: %10"PRIu64, device_total_out);
375 const devops_t os_devops = {
376 .setup = setup_device,
377 .close = close_device,
379 .write = write_packet,
380 .dump_stats = dump_device_stats,