2 device.c -- Interaction BSD tun/tap device
3 Copyright (C) 2001-2005 Ivo Timmermans,
4 2001-2016 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.
22 #include "../system.h"
25 #include "../device.h"
26 #include "../logger.h"
31 #include "../xalloc.h"
34 #include "bsd/tunemu.h"
37 #ifdef HAVE_NET_IF_UTUN_H
38 #include <sys/sys_domain.h>
39 #include <sys/kern_control.h>
40 #include <net/if_utun.h>
43 #define DEFAULT_TUN_DEVICE "/dev/tun0"
44 #define DEFAULT_TAP_DEVICE "/dev/tap0"
46 typedef enum device_type {
48 DEVICE_TYPE_TUNIFHEAD,
59 static char *device_info = NULL;
60 #if defined(ENABLE_TUNEMU)
61 static device_type_t device_type = DEVICE_TYPE_TUNEMU;
62 #elif defined(HAVE_OPENBSD) || defined(HAVE_FREEBSD) || defined(HAVE_DRAGONFLY)
63 static device_type_t device_type = DEVICE_TYPE_TUNIFHEAD;
65 static device_type_t device_type = DEVICE_TYPE_TUN;
68 #ifdef HAVE_NET_IF_UTUN_H
69 static bool setup_utun(void) {
70 device_fd = socket(PF_SYSTEM, SOCK_DGRAM, SYSPROTO_CONTROL);
72 logger(DEBUG_ALWAYS, LOG_ERR, "Could not open PF_SYSTEM socket: %s\n", strerror(errno));
76 struct ctl_info info = {};
77 strlcpy(info.ctl_name, UTUN_CONTROL_NAME, sizeof info.ctl_name);
79 if(ioctl(device_fd, CTLIOCGINFO, &info) == -1) {
80 logger(DEBUG_ALWAYS, LOG_ERR, "ioctl(CTLIOCGINFO) failed: %s", strerror(errno));
85 char *p = strstr(device, "utun"), *e = NULL;
87 unit = strtol(p + 4, &e, 10);
92 struct sockaddr_ctl sc = {
95 .sc_family = AF_SYSTEM,
96 .ss_sysaddr = AF_SYS_CONTROL,
100 if(connect(device_fd, (struct sockaddr *)&sc, sizeof(sc)) == -1) {
101 logger(DEBUG_ALWAYS, LOG_ERR, "Could not connect utun socket: %s\n", strerror(errno));
106 socklen_t len = sizeof name;
107 if(getsockopt(device_fd, SYSPROTO_CONTROL, UTUN_OPT_IFNAME, name, &len)) {
108 iface = xstrdup(device);
110 iface = xstrdup(name);
113 device_info = "OS X utun device";
115 logger(DEBUG_ALWAYS, LOG_INFO, "%s is a %s", device, device_info);
121 static bool setup_device(void) {
122 get_config_string(lookup_config(config_tree, "Device"), &device);
124 // Find out if it's supposed to be a tun or a tap device
127 if(get_config_string(lookup_config(config_tree, "DeviceType"), &type)) {
128 if(!strcasecmp(type, "tun"))
131 else if(!strcasecmp(type, "tunemu"))
132 device_type = DEVICE_TYPE_TUNEMU;
134 #ifdef HAVE_NET_IF_UTUN_H
135 else if(!strcasecmp(type, "utun"))
136 device_type = DEVICE_TYPE_UTUN;
138 else if(!strcasecmp(type, "tunnohead"))
139 device_type = DEVICE_TYPE_TUN;
140 else if(!strcasecmp(type, "tunifhead"))
141 device_type = DEVICE_TYPE_TUNIFHEAD;
142 else if(!strcasecmp(type, "tap"))
143 device_type = DEVICE_TYPE_TAP;
145 logger(DEBUG_ALWAYS, LOG_ERR, "Unknown device type %s!", type);
149 #ifdef HAVE_NET_IF_UTUN_H
150 if(device && (strncmp(device, "utun", 4) == 0 || strncmp(device, "/dev/utun", 9) == 0))
151 device_type = DEVICE_TYPE_UTUN;
154 if((device && strstr(device, "tap")) || routing_mode != RMODE_ROUTER)
155 device_type = DEVICE_TYPE_TAP;
158 if(routing_mode == RMODE_SWITCH && device_type != DEVICE_TYPE_TAP) {
159 logger(DEBUG_ALWAYS, LOG_ERR, "Only tap devices support switch mode!");
163 // Find out which device file to open
166 if(device_type == DEVICE_TYPE_TAP)
167 device = xstrdup(DEFAULT_TAP_DEVICE);
169 device = xstrdup(DEFAULT_TUN_DEVICE);
174 switch(device_type) {
176 case DEVICE_TYPE_TUNEMU: {
177 char dynamic_name[256] = "";
178 device_fd = tunemu_open(dynamic_name);
182 #ifdef HAVE_NET_IF_UTUN_H
183 case DEVICE_TYPE_UTUN:
187 device_fd = open(device, O_RDWR | O_NONBLOCK);
191 logger(DEBUG_ALWAYS, LOG_ERR, "Could not open %s: %s", device, strerror(errno));
196 fcntl(device_fd, F_SETFD, FD_CLOEXEC);
199 // Guess what the corresponding interface is called
203 #if defined(HAVE_FDEVNAME)
204 realname = fdevname(device_fd) ? : device;
205 #elif defined(HAVE_DEVNAME)
207 if(!fstat(device_fd, &buf))
208 realname = devname(buf.st_rdev, S_IFCHR) ? : device;
213 if(!get_config_string(lookup_config(config_tree, "Interface"), &iface))
214 iface = xstrdup(strrchr(realname, '/') ? strrchr(realname, '/') + 1 : realname);
215 else if(strcmp(iface, strrchr(realname, '/') ? strrchr(realname, '/') + 1 : realname))
216 logger(DEBUG_ALWAYS, LOG_WARNING, "Warning: Interface does not match Device. $INTERFACE might be set incorrectly.");
218 // Configure the device as best as we can
220 switch(device_type) {
222 device_type = DEVICE_TYPE_TUN;
223 case DEVICE_TYPE_TUN:
227 if(ioctl(device_fd, TUNSIFHEAD, &zero, sizeof zero) == -1) {
228 logger(DEBUG_ALWAYS, LOG_ERR, "System call `%s' failed: %s", "ioctl", strerror(errno));
233 #if defined(TUNSIFMODE) && defined(IFF_BROADCAST) && defined(IFF_MULTICAST)
235 const int mode = IFF_BROADCAST | IFF_MULTICAST;
236 ioctl(device_fd, TUNSIFMODE, &mode, sizeof mode);
240 device_info = "Generic BSD tun device";
242 case DEVICE_TYPE_TUNIFHEAD:
246 if(ioctl(device_fd, TUNSIFHEAD, &one, sizeof one) == -1) {
247 logger(DEBUG_ALWAYS, LOG_ERR, "System call `%s' failed: %s", "ioctl", strerror(errno));
252 #if defined(TUNSIFMODE) && defined(IFF_BROADCAST) && defined(IFF_MULTICAST)
254 const int mode = IFF_BROADCAST | IFF_MULTICAST;
255 ioctl(device_fd, TUNSIFMODE, &mode, sizeof mode);
259 device_info = "Generic BSD tun device";
261 case DEVICE_TYPE_TAP:
262 if(routing_mode == RMODE_ROUTER)
263 overwrite_mac = true;
264 device_info = "Generic BSD tap device";
268 if(ioctl(device_fd, TAPGIFNAME, (void*)&ifr) == 0) {
271 iface = xstrdup(ifr.ifr_name);
278 case DEVICE_TYPE_TUNEMU:
279 device_info = "BSD tunemu device";
286 ioctl(device_fd, SIOCGIFADDR, mymac.x);
289 logger(DEBUG_ALWAYS, LOG_INFO, "%s is a %s", device, device_info);
294 static void close_device(void) {
295 switch(device_type) {
297 case DEVICE_TYPE_TUNEMU:
298 tunemu_close(device_fd);
306 free(device); device = NULL;
307 free(iface); iface = NULL;
311 static bool read_packet(vpn_packet_t *packet) {
314 switch(device_type) {
315 case DEVICE_TYPE_TUN:
317 case DEVICE_TYPE_TUNEMU:
318 if(device_type == DEVICE_TYPE_TUNEMU)
319 inlen = tunemu_read(device_fd, DATA(packet) + 14, MTU - 14);
322 inlen = read(device_fd, DATA(packet) + 14, MTU - 14);
325 logger(DEBUG_ALWAYS, LOG_ERR, "Error while reading from %s %s: %s", device_info,
326 device, strerror(errno));
330 switch(DATA(packet)[14] >> 4) {
332 DATA(packet)[12] = 0x08;
333 DATA(packet)[13] = 0x00;
336 DATA(packet)[12] = 0x86;
337 DATA(packet)[13] = 0xDD;
340 logger(DEBUG_TRAFFIC, LOG_ERR,
341 "Unknown IP version %d while reading packet from %s %s",
342 DATA(packet)[14] >> 4, device_info, device);
346 memset(DATA(packet), 0, 12);
347 packet->len = inlen + 14;
350 case DEVICE_TYPE_UTUN:
351 case DEVICE_TYPE_TUNIFHEAD: {
352 if((inlen = read(device_fd, DATA(packet) + 10, MTU - 10)) <= 0) {
353 logger(DEBUG_ALWAYS, LOG_ERR, "Error while reading from %s %s: %s", device_info,
354 device, strerror(errno));
358 switch (DATA(packet)[14] >> 4) {
360 DATA(packet)[12] = 0x08;
361 DATA(packet)[13] = 0x00;
365 DATA(packet)[12] = 0x86;
366 DATA(packet)[13] = 0xDD;
370 logger(DEBUG_TRAFFIC, LOG_ERR,
371 "Unknown IP version %d while reading packet from %s %s",
372 DATA(packet)[14] >> 4, device_info, device);
376 memset(DATA(packet), 0, 12);
377 packet->len = inlen + 10;
381 case DEVICE_TYPE_TAP:
382 if((inlen = read(device_fd, DATA(packet), MTU)) <= 0) {
383 logger(DEBUG_ALWAYS, LOG_ERR, "Error while reading from %s %s: %s", device_info,
384 device, strerror(errno));
395 logger(DEBUG_TRAFFIC, LOG_DEBUG, "Read packet of %d bytes from %s",
396 packet->len, device_info);
401 static bool write_packet(vpn_packet_t *packet) {
402 logger(DEBUG_TRAFFIC, LOG_DEBUG, "Writing packet of %d bytes to %s",
403 packet->len, device_info);
405 switch(device_type) {
406 case DEVICE_TYPE_TUN:
407 if(write(device_fd, DATA(packet) + 14, packet->len - 14) < 0) {
408 logger(DEBUG_ALWAYS, LOG_ERR, "Error while writing to %s %s: %s", device_info,
409 device, strerror(errno));
414 case DEVICE_TYPE_UTUN:
415 case DEVICE_TYPE_TUNIFHEAD: {
416 int af = (DATA(packet)[12] << 8) + DATA(packet)[13];
421 type = htonl(AF_INET);
424 type = htonl(AF_INET6);
427 logger(DEBUG_TRAFFIC, LOG_ERR,
428 "Unknown address family %x while writing packet to %s %s",
429 af, device_info, device);
433 memcpy(DATA(packet) + 10, &type, sizeof type);
435 if(write(device_fd, DATA(packet) + 10, packet->len - 10) < 0) {
436 logger(DEBUG_ALWAYS, LOG_ERR, "Can't write to %s %s: %s", device_info, device,
443 case DEVICE_TYPE_TAP:
444 if(write(device_fd, DATA(packet), packet->len) < 0) {
445 logger(DEBUG_ALWAYS, LOG_ERR, "Error while writing to %s %s: %s", device_info,
446 device, strerror(errno));
452 case DEVICE_TYPE_TUNEMU:
453 if(tunemu_write(device_fd, DATA(packet) + 14, packet->len - 14) < 0) {
454 logger(DEBUG_ALWAYS, LOG_ERR, "Error while writing to %s %s: %s", device_info,
455 device, strerror(errno));
468 const devops_t os_devops = {
469 .setup = setup_device,
470 .close = close_device,
472 .write = write_packet,