Fix "use of GNU empty initializer extension" warning.
[tinc] / src / linux / device.c
1 /*
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>
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 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.
19 */
20
21 #include "../system.h"
22
23 #include <linux/if_tun.h>
24 #define DEFAULT_DEVICE "/dev/net/tun"
25
26 #include "../conf.h"
27 #include "../device.h"
28 #include "../logger.h"
29 #include "../names.h"
30 #include "../net.h"
31 #include "../route.h"
32 #include "../utils.h"
33 #include "../xalloc.h"
34 #include "../device.h"
35
36 typedef enum device_type_t {
37         DEVICE_TYPE_TUN,
38         DEVICE_TYPE_TAP,
39 } device_type_t;
40
41 int device_fd = -1;
42 static device_type_t device_type;
43 char *device = NULL;
44 char *iface = NULL;
45 static char *type = NULL;
46 static char ifrname[IFNAMSIZ];
47 static const char *device_info;
48
49 static bool setup_device(void) {
50         if(!get_config_string(lookup_config(config_tree, "Device"), &device)) {
51                 device = xstrdup(DEFAULT_DEVICE);
52         }
53
54         if(!get_config_string(lookup_config(config_tree, "Interface"), &iface))
55                 if(netname) {
56                         iface = xstrdup(netname);
57                 }
58
59         device_fd = open(device, O_RDWR | O_NONBLOCK);
60
61         if(device_fd < 0) {
62                 logger(DEBUG_ALWAYS, LOG_ERR, "Could not open %s: %s", device, strerror(errno));
63                 return false;
64         }
65
66 #ifdef FD_CLOEXEC
67         fcntl(device_fd, F_SETFD, FD_CLOEXEC);
68 #endif
69
70         struct ifreq ifr = {{{0}}};
71
72         get_config_string(lookup_config(config_tree, "DeviceType"), &type);
73
74         if(type && strcasecmp(type, "tun") && strcasecmp(type, "tap")) {
75                 logger(DEBUG_ALWAYS, LOG_ERR, "Unknown device type %s!", type);
76                 return false;
77         }
78
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)";
83         } else {
84                 if(routing_mode == RMODE_ROUTER) {
85                         overwrite_mac = true;
86                 }
87
88                 ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
89                 device_type = DEVICE_TYPE_TAP;
90                 device_info = "Linux tun/tap device (tap mode)";
91         }
92
93 #ifdef IFF_ONE_QUEUE
94         /* Set IFF_ONE_QUEUE flag... */
95
96         bool t1q = false;
97
98         if(get_config_bool(lookup_config(config_tree, "IffOneQueue"), &t1q) && t1q) {
99                 ifr.ifr_flags |= IFF_ONE_QUEUE;
100         }
101
102 #endif
103
104         if(iface) {
105                 strncpy(ifr.ifr_name, iface, IFNAMSIZ);
106         }
107
108         if(!ioctl(device_fd, TUNSETIFF, &ifr)) {
109                 strncpy(ifrname, ifr.ifr_name, IFNAMSIZ);
110                 free(iface);
111                 iface = xstrdup(ifrname);
112         } else {
113                 logger(DEBUG_ALWAYS, LOG_ERR, "Could not create a tun/tap interface from %s: %s", device, strerror(errno));
114                 return false;
115         }
116
117         logger(DEBUG_ALWAYS, LOG_INFO, "%s is a %s", device, device_info);
118
119         if(ifr.ifr_flags & IFF_TAP) {
120                 struct ifreq ifr_mac = {{{0}}};
121
122                 if(!ioctl(device_fd, SIOCGIFHWADDR, &ifr_mac)) {
123                         memcpy(mymac.x, ifr_mac.ifr_hwaddr.sa_data, ETH_ALEN);
124                 } else {
125                         logger(DEBUG_ALWAYS, LOG_WARNING, "Could not get MAC address of %s: %s", device, strerror(errno));
126                 }
127         }
128
129         return true;
130 }
131
132 static void close_device(void) {
133         close(device_fd);
134         device_fd = -1;
135
136         free(type);
137         type = NULL;
138         free(device);
139         device = NULL;
140         free(iface);
141         iface = NULL;
142         device_info = NULL;
143 }
144
145 static bool read_packet(vpn_packet_t *packet) {
146         int inlen;
147
148         switch(device_type) {
149         case DEVICE_TYPE_TUN:
150                 inlen = read(device_fd, DATA(packet) + 10, MTU - 10);
151
152                 if(inlen <= 0) {
153                         logger(DEBUG_ALWAYS, LOG_ERR, "Error while reading from %s %s: %s",
154                                device_info, device, strerror(errno));
155
156                         if(errno == EBADFD) {  /* File descriptor in bad state */
157                                 event_exit();
158                         }
159
160                         return false;
161                 }
162
163                 memset(DATA(packet), 0, 12);
164                 packet->len = inlen + 10;
165                 break;
166
167         case DEVICE_TYPE_TAP:
168                 inlen = read(device_fd, DATA(packet), MTU);
169
170                 if(inlen <= 0) {
171                         logger(DEBUG_ALWAYS, LOG_ERR, "Error while reading from %s %s: %s",
172                                device_info, device, strerror(errno));
173                         return false;
174                 }
175
176                 packet->len = inlen;
177                 break;
178
179         default:
180                 abort();
181         }
182
183         logger(DEBUG_TRAFFIC, LOG_DEBUG, "Read packet of %d bytes from %s", packet->len,
184                device_info);
185
186         return true;
187 }
188
189 static bool write_packet(vpn_packet_t *packet) {
190         logger(DEBUG_TRAFFIC, LOG_DEBUG, "Writing packet of %d bytes to %s",
191                packet->len, device_info);
192
193         switch(device_type) {
194         case DEVICE_TYPE_TUN:
195                 DATA(packet)[10] = DATA(packet)[11] = 0;
196
197                 if(write(device_fd, DATA(packet) + 10, packet->len - 10) < 0) {
198                         logger(DEBUG_ALWAYS, LOG_ERR, "Can't write to %s %s: %s", device_info, device,
199                                strerror(errno));
200                         return false;
201                 }
202
203                 break;
204
205         case DEVICE_TYPE_TAP:
206                 if(write(device_fd, DATA(packet), packet->len) < 0) {
207                         logger(DEBUG_ALWAYS, LOG_ERR, "Can't write to %s %s: %s", device_info, device,
208                                strerror(errno));
209                         return false;
210                 }
211
212                 break;
213
214         default:
215                 abort();
216         }
217
218         return true;
219 }
220
221 const devops_t os_devops = {
222         .setup = setup_device,
223         .close = close_device,
224         .read = read_packet,
225         .write = write_packet,
226 };