2 device.c -- Interaction with Linux ethertap and tun/tap device
3 Copyright (C) 2001-2005 Ivo Timmermans,
4 2001-2014 Guus Sliepen <guus@tinc-vpn.org>
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.
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.
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.
21 #include "../system.h"
23 #include <linux/if_tun.h>
24 #define DEFAULT_DEVICE "/dev/net/tun"
27 #include "../device.h"
28 #include "../logger.h"
33 #include "../xalloc.h"
34 #include "../device.h"
36 typedef enum device_type_t {
42 static device_type_t device_type;
45 static char *type = NULL;
46 static char ifrname[IFNAMSIZ];
47 static const char *device_info;
49 static bool setup_device(void) {
50 if(!get_config_string(lookup_config(config_tree, "Device"), &device)) {
51 device = xstrdup(DEFAULT_DEVICE);
54 if(!get_config_string(lookup_config(config_tree, "Interface"), &iface))
56 iface = xstrdup(netname);
59 device_fd = open(device, O_RDWR | O_NONBLOCK);
62 logger(DEBUG_ALWAYS, LOG_ERR, "Could not open %s: %s", device, strerror(errno));
67 fcntl(device_fd, F_SETFD, FD_CLOEXEC);
70 struct ifreq ifr = {0};
72 get_config_string(lookup_config(config_tree, "DeviceType"), &type);
74 if(type && strcasecmp(type, "tun") && strcasecmp(type, "tap")) {
75 logger(DEBUG_ALWAYS, LOG_ERR, "Unknown device type %s!", type);
79 if((type && !strcasecmp(type, "tun")) || (!type && routing_mode == RMODE_ROUTER)) {
80 ifr.ifr_flags = IFF_TUN;
81 device_type = DEVICE_TYPE_TUN;
82 device_info = "Linux tun/tap device (tun mode)";
84 if(routing_mode == RMODE_ROUTER) {
88 ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
89 device_type = DEVICE_TYPE_TAP;
90 device_info = "Linux tun/tap device (tap mode)";
94 /* Set IFF_ONE_QUEUE flag... */
98 if(get_config_bool(lookup_config(config_tree, "IffOneQueue"), &t1q) && t1q) {
99 ifr.ifr_flags |= IFF_ONE_QUEUE;
105 strncpy(ifr.ifr_name, iface, IFNAMSIZ);
106 ifr.ifr_name[IFNAMSIZ - 1] = 0;
109 if(!ioctl(device_fd, TUNSETIFF, &ifr)) {
110 strncpy(ifrname, ifr.ifr_name, IFNAMSIZ);
111 ifrname[IFNAMSIZ - 1] = 0;
113 iface = xstrdup(ifrname);
115 logger(DEBUG_ALWAYS, LOG_ERR, "Could not create a tun/tap interface from %s: %s", device, strerror(errno));
119 logger(DEBUG_ALWAYS, LOG_INFO, "%s is a %s", device, device_info);
121 if(ifr.ifr_flags & IFF_TAP) {
122 struct ifreq ifr_mac = {0};
124 if(!ioctl(device_fd, SIOCGIFHWADDR, &ifr_mac)) {
125 memcpy(mymac.x, ifr_mac.ifr_hwaddr.sa_data, ETH_ALEN);
127 logger(DEBUG_ALWAYS, LOG_WARNING, "Could not get MAC address of %s: %s", device, strerror(errno));
134 static void close_device(void) {
147 static bool read_packet(vpn_packet_t *packet) {
150 switch(device_type) {
151 case DEVICE_TYPE_TUN:
152 inlen = read(device_fd, DATA(packet) + 10, MTU - 10);
155 logger(DEBUG_ALWAYS, LOG_ERR, "Error while reading from %s %s: %s",
156 device_info, device, strerror(errno));
158 if(errno == EBADFD) { /* File descriptor in bad state */
165 memset(DATA(packet), 0, 12);
166 packet->len = inlen + 10;
169 case DEVICE_TYPE_TAP:
170 inlen = read(device_fd, DATA(packet), MTU);
173 logger(DEBUG_ALWAYS, LOG_ERR, "Error while reading from %s %s: %s",
174 device_info, device, strerror(errno));
185 logger(DEBUG_TRAFFIC, LOG_DEBUG, "Read packet of %d bytes from %s", packet->len,
191 static bool write_packet(vpn_packet_t *packet) {
192 logger(DEBUG_TRAFFIC, LOG_DEBUG, "Writing packet of %d bytes to %s",
193 packet->len, device_info);
195 switch(device_type) {
196 case DEVICE_TYPE_TUN:
197 DATA(packet)[10] = DATA(packet)[11] = 0;
199 if(write(device_fd, DATA(packet) + 10, packet->len - 10) < 0) {
200 logger(DEBUG_ALWAYS, LOG_ERR, "Can't write to %s %s: %s", device_info, device,
207 case DEVICE_TYPE_TAP:
208 if(write(device_fd, DATA(packet), packet->len) < 0) {
209 logger(DEBUG_ALWAYS, LOG_ERR, "Can't write to %s %s: %s", device_info, device,
223 const devops_t os_devops = {
224 .setup = setup_device,
225 .close = close_device,
227 .write = write_packet,