Query the Linux device for its MAC address.
[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-2013 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 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         if(!get_config_string(lookup_config(config_tree, "Interface"), &iface))
54                 if(netname)
55                         iface = xstrdup(netname);
56
57         device_fd = open(device, O_RDWR | O_NONBLOCK);
58
59         if(device_fd < 0) {
60                 logger(DEBUG_ALWAYS, LOG_ERR, "Could not open %s: %s", device, strerror(errno));
61                 return false;
62         }
63
64 #ifdef FD_CLOEXEC
65         fcntl(device_fd, F_SETFD, FD_CLOEXEC);
66 #endif
67
68         struct ifreq ifr = {{{0}}};
69
70         get_config_string(lookup_config(config_tree, "DeviceType"), &type);
71
72         if(type && strcasecmp(type, "tun") && strcasecmp(type, "tap")) {
73                 logger(DEBUG_ALWAYS, LOG_ERR, "Unknown device type %s!", type);
74                 return false;
75         }
76
77         if((type && !strcasecmp(type, "tun")) || (!type && routing_mode == RMODE_ROUTER)) {
78                 ifr.ifr_flags = IFF_TUN;
79                 device_type = DEVICE_TYPE_TUN;
80                 device_info = "Linux tun/tap device (tun mode)";
81         } else {
82                 if (routing_mode == RMODE_ROUTER)
83                         overwrite_mac = true;
84                 ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
85                 device_type = DEVICE_TYPE_TAP;
86                 device_info = "Linux tun/tap device (tap mode)";
87         }
88
89 #ifdef IFF_ONE_QUEUE
90         /* Set IFF_ONE_QUEUE flag... */
91
92         bool t1q = false;
93         if(get_config_bool(lookup_config(config_tree, "IffOneQueue"), &t1q) && t1q)
94                 ifr.ifr_flags |= IFF_ONE_QUEUE;
95 #endif
96
97         if(iface)
98                 strncpy(ifr.ifr_name, iface, IFNAMSIZ);
99
100         if(!ioctl(device_fd, TUNSETIFF, &ifr)) {
101                 strncpy(ifrname, ifr.ifr_name, IFNAMSIZ);
102                 free(iface);
103                 iface = xstrdup(ifrname);
104         }
105
106         logger(DEBUG_ALWAYS, LOG_INFO, "%s is a %s", device, device_info);
107
108         if(ifr.ifr_flags & IFF_TAP) {
109                 struct ifreq ifr_mac;
110                 if(!ioctl(device_fd, SIOCGIFHWADDR, &ifr_mac))
111                         memcpy(mymac.x, ifr_mac.ifr_hwaddr.sa_data, ETH_ALEN);
112                 else
113                         logger(DEBUG_ALWAYS, LOG_WARNING, "Could not get MAC address of %s: %s", device, strerror(errno));
114         }
115
116         return true;
117 }
118
119 static void close_device(void) {
120         close(device_fd);
121         device_fd = -1;
122
123         free(type); type = NULL;
124         free(device); device = NULL;
125         free(iface); iface = NULL;
126         device_info = NULL;
127 }
128
129 static bool read_packet(vpn_packet_t *packet) {
130         int inlen;
131
132         switch(device_type) {
133                 case DEVICE_TYPE_TUN:
134                         inlen = read(device_fd, packet->data + 10, MTU - 10);
135
136                         if(inlen <= 0) {
137                                 logger(DEBUG_ALWAYS, LOG_ERR, "Error while reading from %s %s: %s",
138                                            device_info, device, strerror(errno));
139                                 return false;
140                         }
141
142                         memset(packet->data, 0, 12);
143                         packet->len = inlen + 10;
144                         break;
145                 case DEVICE_TYPE_TAP:
146                         inlen = read(device_fd, packet->data, MTU);
147
148                         if(inlen <= 0) {
149                                 logger(DEBUG_ALWAYS, LOG_ERR, "Error while reading from %s %s: %s",
150                                            device_info, device, strerror(errno));
151                                 return false;
152                         }
153
154                         packet->len = inlen;
155                         break;
156                 default:
157                         abort();
158         }
159
160         logger(DEBUG_TRAFFIC, LOG_DEBUG, "Read packet of %d bytes from %s", packet->len,
161                            device_info);
162
163         return true;
164 }
165
166 static bool write_packet(vpn_packet_t *packet) {
167         logger(DEBUG_TRAFFIC, LOG_DEBUG, "Writing packet of %d bytes to %s",
168                            packet->len, device_info);
169
170         switch(device_type) {
171                 case DEVICE_TYPE_TUN:
172                         packet->data[10] = packet->data[11] = 0;
173                         if(write(device_fd, packet->data + 10, packet->len - 10) < 0) {
174                                 logger(DEBUG_ALWAYS, LOG_ERR, "Can't write to %s %s: %s", device_info, device,
175                                            strerror(errno));
176                                 return false;
177                         }
178                         break;
179                 case DEVICE_TYPE_TAP:
180                         if(write(device_fd, packet->data, packet->len) < 0) {
181                                 logger(DEBUG_ALWAYS, LOG_ERR, "Can't write to %s %s: %s", device_info, device,
182                                            strerror(errno));
183                                 return false;
184                         }
185                         break;
186                 default:
187                         abort();
188         }
189
190         return true;
191 }
192
193 const devops_t os_devops = {
194         .setup = setup_device,
195         .close = close_device,
196         .read = read_packet,
197         .write = write_packet,
198 };