2 device.c -- Interaction with Linux ethertap and tun/tap device
3 Copyright (C) 2001-2005 Ivo Timmermans,
4 2001-2012 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.
23 #include <linux/if_tun.h>
24 #define DEFAULT_DEVICE "/dev/net/tun"
35 typedef enum device_type_t {
41 static device_type_t device_type;
44 static char *type = NULL;
45 static char ifrname[IFNAMSIZ];
46 static char *device_info;
48 uint64_t device_in_packets = 0;
49 uint64_t device_in_bytes = 0;
50 uint64_t device_out_packets = 0;
51 uint64_t device_out_bytes = 0;
53 static bool setup_device(void) {
54 if(!get_config_string(lookup_config(config_tree, "Device"), &device))
55 device = xstrdup(DEFAULT_DEVICE);
57 if(!get_config_string(lookup_config(config_tree, "Interface"), &iface))
58 #ifdef HAVE_LINUX_IF_TUN_H
60 iface = xstrdup(netname);
62 iface = xstrdup(strrchr(device, '/') ? strrchr(device, '/') + 1 : device);
64 device_fd = open(device, O_RDWR | O_NONBLOCK);
67 logger(LOG_ERR, "Could not open %s: %s", device, strerror(errno));
72 fcntl(device_fd, F_SETFD, FD_CLOEXEC);
75 struct ifreq ifr = {{{0}}};
77 get_config_string(lookup_config(config_tree, "DeviceType"), &type);
79 if(type && strcasecmp(type, "tun") && strcasecmp(type, "tap")) {
80 logger(LOG_ERR, "Unknown device type %s!", type);
84 if((type && !strcasecmp(type, "tun")) || (!type && routing_mode == RMODE_ROUTER)) {
85 ifr.ifr_flags = IFF_TUN;
86 device_type = DEVICE_TYPE_TUN;
87 device_info = "Linux tun/tap device (tun mode)";
89 ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
90 device_type = DEVICE_TYPE_TAP;
91 device_info = "Linux tun/tap device (tap mode)";
95 /* Set IFF_ONE_QUEUE flag... */
98 if(get_config_bool(lookup_config(config_tree, "IffOneQueue"), &t1q) && t1q)
99 ifr.ifr_flags |= IFF_ONE_QUEUE;
103 strncpy(ifr.ifr_name, iface, IFNAMSIZ);
105 if(!ioctl(device_fd, TUNSETIFF, &ifr)) {
106 strncpy(ifrname, ifr.ifr_name, IFNAMSIZ);
107 if(iface) free(iface);
108 iface = xstrdup(ifrname);
109 } else if(!ioctl(device_fd, (('T' << 8) | 202), &ifr)) {
110 logger(LOG_WARNING, "Old ioctl() request was needed for %s", device);
111 strncpy(ifrname, ifr.ifr_name, IFNAMSIZ);
112 if(iface) free(iface);
113 iface = xstrdup(ifrname);
116 logger(LOG_INFO, "%s is a %s", device, device_info);
121 static void close_device(void) {
129 static bool read_packet(vpn_packet_t *packet) {
132 switch(device_type) {
133 case DEVICE_TYPE_TUN:
134 inlen = read(device_fd, packet->data + 10, MTU - 10);
137 logger(LOG_ERR, "Error while reading from %s %s: %s",
138 device_info, device, strerror(errno));
142 packet->len = inlen + 10;
144 case DEVICE_TYPE_TAP:
145 inlen = read(device_fd, packet->data, MTU);
148 logger(LOG_ERR, "Error while reading from %s %s: %s",
149 device_info, device, strerror(errno));
160 device_in_bytes += packet->len;
162 ifdebug(TRAFFIC) logger(LOG_DEBUG, "Read packet of %d bytes from %s", packet->len,
168 static bool write_packet(vpn_packet_t *packet) {
169 ifdebug(TRAFFIC) logger(LOG_DEBUG, "Writing packet of %d bytes to %s",
170 packet->len, device_info);
172 switch(device_type) {
173 case DEVICE_TYPE_TUN:
174 packet->data[10] = packet->data[11] = 0;
175 if(write(device_fd, packet->data + 10, packet->len - 10) < 0) {
176 logger(LOG_ERR, "Can't write to %s %s: %s", device_info, device,
181 case DEVICE_TYPE_TAP:
182 if(write(device_fd, packet->data, packet->len) < 0) {
183 logger(LOG_ERR, "Can't write to %s %s: %s", device_info, device,
192 device_out_packets++;
193 device_out_bytes += packet->len;
198 static void dump_device_stats(void) {
199 logger(LOG_DEBUG, "Statistics for %s %s:", device_info, device);
200 logger(LOG_DEBUG, " total bytes in: %10"PRIu64, device_in_bytes);
201 logger(LOG_DEBUG, " total bytes out: %10"PRIu64, device_out_bytes);
204 const devops_t os_devops = {
205 .setup = setup_device,
206 .close = close_device,
208 .write = write_packet,
209 .dump_stats = dump_device_stats,