02d7a7a5c843350296cb0d4f5ac650d5013cea2d
[tinc] / src / linux / device.c
1 /*
2     device.c -- Interaction with Linux ethertap and tun/tap device
3     Copyright (C) 2001 Ivo Timmermans <itimmermans@bigfoot.com>,
4                   2001 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.4 2001/10/31 12:50:24 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 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     interface = netname;
81 cp
82   if((device_fd = open(device, O_RDWR | O_NONBLOCK)) < 0)
83     {
84       syslog(LOG_ERR, _("Could not open %s: %m"), device);
85       return -1;
86     }
87 cp
88   /* Set default MAC address for ethertap devices */
89
90   mymac.type = SUBNET_MAC;
91   mymac.net.mac.address.x[0] = 0xfe;
92   mymac.net.mac.address.x[1] = 0xfd;
93   mymac.net.mac.address.x[2] = 0x00;
94   mymac.net.mac.address.x[3] = 0x00;
95   mymac.net.mac.address.x[4] = 0x00;
96   mymac.net.mac.address.x[5] = 0x00;
97
98 #ifdef HAVE_TUNTAP
99   /* Ok now check if this is an old ethertap or a new tun/tap thingie */
100
101   memset(&ifr, 0, sizeof(ifr));
102 cp
103   ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
104   if (interface)
105     strncpy(ifr.ifr_name, interface, IFNAMSIZ);
106 cp
107   if (!ioctl(device_fd, TUNSETIFF, (void *) &ifr))
108   {
109     device_info = _("Linux tun/tap device");
110     device_type = DEVICE_TYPE_TUNTAP;
111     strncpy(ifrname, ifr.ifr_name, IFNAMSIZ);
112     interface = ifrname;
113   }
114   else
115     if (!ioctl(device_fd, (('T'<< 8) | 202), (void *) &ifr))
116     {
117       syslog(LOG_WARNING, _("Old ioctl() request was needed for %s"), device);
118       device_type = DEVICE_TYPE_TUNTAP;
119       device_info = _("Linux tun/tap device");
120       strncpy(ifrname, ifr.ifr_name, IFNAMSIZ);
121       interface = ifrname;
122     }
123     else
124 #endif
125     {
126       device_info = _("Linux ethertap device");
127       device_type = DEVICE_TYPE_ETHERTAP;
128     }
129
130   syslog(LOG_INFO, _("%s is a %s"), device, device_info);
131 cp
132   return 0;
133 }
134
135 void close_device(void)
136 {
137 cp
138   close(device_fd);
139 }
140
141 /*
142   read, encrypt and send data that is
143   available through the ethertap device
144 */
145 int read_packet(vpn_packet_t *packet)
146 {
147   int lenin;
148 cp
149   if(device_type == DEVICE_TYPE_TUNTAP)
150     {
151       if((lenin = read(device_fd, packet->data, MTU)) <= 0)
152         {
153           syslog(LOG_ERR, _("Error while reading from %s %s: %m"), device_info, device);
154           return -1;
155         }
156
157       packet->len = lenin;
158     }
159   else /* ethertap */
160     {
161       struct iovec vector[2] = {{&packet->len, 2}, {packet->data, MTU}};
162
163       if((lenin = readv(device_fd, vector, 2)) <= 0)
164         {
165           syslog(LOG_ERR, _("Error while reading from %s %s: %m"), device_info, device);
166           return -1;
167         }
168
169       packet->len = lenin - 2;
170     }
171
172   device_total_in += packet->len;
173
174   if(debug_lvl >= DEBUG_TRAFFIC)
175     {
176       syslog(LOG_DEBUG, _("Read packet of %d bytes from %s"), packet->len, device_info);
177     }
178
179   return 0;
180 cp
181 }
182
183 int write_packet(vpn_packet_t *packet)
184 {
185 cp
186   if(debug_lvl >= DEBUG_TRAFFIC)
187     syslog(LOG_DEBUG, _("Writing packet of %d bytes to %s"),
188            packet->len, device_info);
189
190   if(device_type == DEVICE_TYPE_TUNTAP)
191     {
192       if(write(device_fd, packet->data, packet->len) < 0)
193         {
194           syslog(LOG_ERR, _("Can't write to %s %s: %m"), device_info, device);
195           return -1;
196         }
197     }
198   else/* ethertap */
199     {
200       struct iovec vector[2] = {{&packet->len, 2}, {packet->data, MTU}};
201
202       if(writev(device_fd, vector, 2) < 0)
203         {
204           syslog(LOG_ERR, _("Can't write to %s %s: %m"), device_info, device);
205           return -1;
206         }
207     }
208
209   device_total_out += packet->len;
210 cp
211   return 0;
212 }
213
214 void dump_device_stats(void)
215 {
216 cp
217   syslog(LOG_DEBUG, _("Statistics for %s %s:"), device_info, device);
218   syslog(LOG_DEBUG, _(" total bytes in:  %10d"), device_total_in);
219   syslog(LOG_DEBUG, _(" total bytes out: %10d"), device_total_out);
220 cp
221 }