Sensible defaults for $INTERFACE.
[tinc] / src / linux / device.c
1 /*
2     device.c -- Interaction with Linux ethertap and tun/tap device
3     Copyright (C) 2001-2002 Ivo Timmermans <itimmermans@bigfoot.com>,
4                   2001-2002 Guus Sliepen <guus@sliepen.warande.net>
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
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20     $Id: device.c,v 1.1.2.6 2002/02/11 12:33:01 guus Exp $
21 */
22
23 #include "config.h"
24
25 #include <stdio.h>
26 #include <sys/types.h>
27 #include <sys/stat.h>
28 #include <fcntl.h>
29 #include <net/if.h>
30 #include <unistd.h>
31 #include <syslog.h>
32 #include <string.h>
33 #include <sys/ioctl.h>
34
35 #ifdef HAVE_TUNTAP
36  #ifdef LINUX_IF_TUN_H
37   #include LINUX_IF_TUN_H
38  #else
39   #include <linux/if_tun.h>
40  #endif
41  #define DEFAULT_DEVICE "/dev/misc/net/tun"
42 #else
43  #define DEFAULT_DEVICE "/dev/tap0"
44 #endif
45
46 #include <utils.h>
47 #include "conf.h"
48 #include "net.h"
49 #include "subnet.h"
50
51 #include "system.h"
52
53 #define DEVICE_TYPE_ETHERTAP 0
54 #define DEVICE_TYPE_TUNTAP 1
55
56 int device_fd = -1;
57 int device_type;
58 char *device;
59 char *interface;
60 char ifrname[IFNAMSIZ];
61 char *device_info;
62
63 int device_total_in = 0;
64 int device_total_out = 0;
65
66 extern subnet_t mymac;
67
68 /*
69   open the local ethertap device
70 */
71 int setup_device(void)
72 {
73   struct ifreq ifr;
74
75 cp
76   if(!get_config_string(lookup_config(config_tree, "Device"), &device))
77     device = DEFAULT_DEVICE;
78
79   if(!get_config_string(lookup_config(config_tree, "Interface"), &interface))
80 #ifdef HAVE_TUNTAP
81     interface = netname;
82 #else
83     interface = rindex(device, '/')?rindex(device, '/')+1:device;
84 #endif
85 cp
86   if((device_fd = open(device, O_RDWR | O_NONBLOCK)) < 0)
87     {
88       syslog(LOG_ERR, _("Could not open %s: %m"), device);
89       return -1;
90     }
91 cp
92   /* Set default MAC address for ethertap devices */
93
94   mymac.type = SUBNET_MAC;
95   mymac.net.mac.address.x[0] = 0xfe;
96   mymac.net.mac.address.x[1] = 0xfd;
97   mymac.net.mac.address.x[2] = 0x00;
98   mymac.net.mac.address.x[3] = 0x00;
99   mymac.net.mac.address.x[4] = 0x00;
100   mymac.net.mac.address.x[5] = 0x00;
101
102 #ifdef HAVE_TUNTAP
103   /* Ok now check if this is an old ethertap or a new tun/tap thingie */
104
105   memset(&ifr, 0, sizeof(ifr));
106 cp
107   ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
108   if (interface)
109     strncpy(ifr.ifr_name, interface, IFNAMSIZ);
110 cp
111   if (!ioctl(device_fd, TUNSETIFF, (void *) &ifr))
112   {
113     device_info = _("Linux tun/tap device");
114     device_type = DEVICE_TYPE_TUNTAP;
115     strncpy(ifrname, ifr.ifr_name, IFNAMSIZ);
116     interface = ifrname;
117   }
118   else
119     if (!ioctl(device_fd, (('T'<< 8) | 202), (void *) &ifr))
120     {
121       syslog(LOG_WARNING, _("Old ioctl() request was needed for %s"), device);
122       device_type = DEVICE_TYPE_TUNTAP;
123       device_info = _("Linux tun/tap device");
124       strncpy(ifrname, ifr.ifr_name, IFNAMSIZ);
125       interface = ifrname;
126     }
127     else
128 #endif
129     {
130       device_info = _("Linux ethertap device");
131       device_type = DEVICE_TYPE_ETHERTAP;
132     }
133
134   syslog(LOG_INFO, _("%s is a %s"), device, device_info);
135 cp
136   return 0;
137 }
138
139 void close_device(void)
140 {
141 cp
142   close(device_fd);
143 }
144
145 /*
146   read, encrypt and send data that is
147   available through the ethertap device
148 */
149 int read_packet(vpn_packet_t *packet)
150 {
151   int lenin;
152 cp
153   if(device_type == DEVICE_TYPE_TUNTAP)
154     {
155       if((lenin = read(device_fd, packet->data, MTU)) <= 0)
156         {
157           syslog(LOG_ERR, _("Error while reading from %s %s: %m"), device_info, device);
158           return -1;
159         }
160
161       packet->len = lenin;
162     }
163   else /* ethertap */
164     {
165       if((lenin = read(device_fd, packet->data - 2, MTU + 2)) <= 0)
166         {
167           syslog(LOG_ERR, _("Error while reading from %s %s: %m"), device_info, device);
168           return -1;
169         }
170
171       packet->len = lenin - 2;
172     }
173
174   device_total_in += packet->len;
175
176   if(debug_lvl >= DEBUG_TRAFFIC)
177     {
178       syslog(LOG_DEBUG, _("Read packet of %d bytes from %s"), packet->len, device_info);
179     }
180
181   return 0;
182 cp
183 }
184
185 int write_packet(vpn_packet_t *packet)
186 {
187 cp
188   if(debug_lvl >= DEBUG_TRAFFIC)
189     syslog(LOG_DEBUG, _("Writing packet of %d bytes to %s"),
190            packet->len, device_info);
191
192   if(device_type == DEVICE_TYPE_TUNTAP)
193     {
194       if(write(device_fd, packet->data, packet->len) < 0)
195         {
196           syslog(LOG_ERR, _("Can't write to %s %s: %m"), device_info, device);
197           return -1;
198         }
199     }
200   else/* ethertap */
201     {
202       *(short int *)(packet->data - 2) = packet->len;
203       if(write(device_fd, packet->data - 2, packet->len + 2) < 0)
204         {
205           syslog(LOG_ERR, _("Can't write to %s %s: %m"), device_info, device);
206           return -1;
207         }
208     }
209
210   device_total_out += packet->len;
211 cp
212   return 0;
213 }
214
215 void dump_device_stats(void)
216 {
217 cp
218   syslog(LOG_DEBUG, _("Statistics for %s %s:"), device_info, device);
219   syslog(LOG_DEBUG, _(" total bytes in:  %10d"), device_total_in);
220   syslog(LOG_DEBUG, _(" total bytes out: %10d"), device_total_out);
221 cp
222 }