Merging of the entire pre5 branch.
[oweals/tinc.git] / 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.5 2002/02/10 21:57:54 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     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       if((lenin = read(device_fd, packet->data - 2, MTU + 2)) <= 0)
162         {
163           syslog(LOG_ERR, _("Error while reading from %s %s: %m"), device_info, device);
164           return -1;
165         }
166
167       packet->len = lenin - 2;
168     }
169
170   device_total_in += packet->len;
171
172   if(debug_lvl >= DEBUG_TRAFFIC)
173     {
174       syslog(LOG_DEBUG, _("Read packet of %d bytes from %s"), packet->len, device_info);
175     }
176
177   return 0;
178 cp
179 }
180
181 int write_packet(vpn_packet_t *packet)
182 {
183 cp
184   if(debug_lvl >= DEBUG_TRAFFIC)
185     syslog(LOG_DEBUG, _("Writing packet of %d bytes to %s"),
186            packet->len, device_info);
187
188   if(device_type == DEVICE_TYPE_TUNTAP)
189     {
190       if(write(device_fd, packet->data, packet->len) < 0)
191         {
192           syslog(LOG_ERR, _("Can't write to %s %s: %m"), device_info, device);
193           return -1;
194         }
195     }
196   else/* ethertap */
197     {
198       *(short int *)(packet->data - 2) = packet->len;
199       if(write(device_fd, packet->data - 2, packet->len + 2) < 0)
200         {
201           syslog(LOG_ERR, _("Can't write to %s %s: %m"), device_info, device);
202           return -1;
203         }
204     }
205
206   device_total_out += packet->len;
207 cp
208   return 0;
209 }
210
211 void dump_device_stats(void)
212 {
213 cp
214   syslog(LOG_DEBUG, _("Statistics for %s %s:"), device_info, device);
215   syslog(LOG_DEBUG, _(" total bytes in:  %10d"), device_total_in);
216   syslog(LOG_DEBUG, _(" total bytes out: %10d"), device_total_out);
217 cp
218 }