Added UML network socket handling.
[tinc] / src / uml_socket / device.c
1 /*
2     device.c -- UML network socket
3     Copyright (C) 2002-2004 Ivo Timmermans <ivo@tinc-vpn.org>,
4                   2002-2004 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
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 1374 2004-03-21 14:21:22Z guus $
21 */
22
23 #include "system.h"
24
25 #include <sys/un.h>
26
27 #include "conf.h"
28 #include "net.h"
29 #include "logger.h"
30 #include "utils.h"
31 #include "route.h"
32
33 #include "system.h"
34
35 int device_fd = -1;
36 static int listen_fd = -1;
37 static int request_fd = -1;
38 static int data_fd = -1;
39 static int write_fd = -1;
40 static int state = 0;
41 char *device;
42 char *iface;
43 char *device_info;
44
45 extern char *identname;
46 extern bool running;
47
48 int device_total_in = 0;
49 int device_total_out = 0;
50
51 enum request_type { REQ_NEW_CONTROL };
52
53 static struct request {
54   uint32_t magic;
55   uint32_t version;
56   enum request_type type;
57   struct sockaddr_un sock;
58 } request;
59
60 static struct sockaddr_un data_sun;
61
62 bool setup_device(void)
63 {
64         struct sockaddr_un listen_sun;
65         static const int one = 1;
66         struct {
67                 char zero;
68                 int pid;
69                 int usecs;
70         } name;
71         struct timeval tv;
72
73         cp();
74
75         if(!get_config_string(lookup_config(config_tree, "Device"), &device))
76                 asprintf(&device, LOCALSTATEDIR "/run/%s.umlsocket", identname);
77
78         if(!get_config_string(lookup_config(config_tree, "Interface"), &iface))
79                 iface = device;
80
81         device_info = _("UML network socket");
82
83         if((write_fd = socket(PF_UNIX, SOCK_DGRAM, 0)) < 0) {
84                 logger(LOG_ERR, _("Could not open write %s: %s"), device_info, strerror(errno));
85                 running = false;
86                 return false;
87         }
88
89         setsockopt(write_fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof one);
90
91         if(fcntl(write_fd, F_SETFL, O_NONBLOCK) < 0) {
92                 logger(LOG_ERR, _("System call `%s' failed: %s"), "fcntl", strerror(errno));
93                 running = false;
94                 return false;
95         }
96
97         if((data_fd = socket(PF_UNIX, SOCK_DGRAM, 0)) < 0) {
98                 logger(LOG_ERR, _("Could not open data %s: %s"), device_info, strerror(errno));
99                 running = false;
100                 return false;
101         }
102
103         setsockopt(data_fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof one);
104
105         if(fcntl(data_fd, F_SETFL, O_NONBLOCK) < 0) {
106                 logger(LOG_ERR, _("System call `%s' failed: %s"), "fcntl", strerror(errno));
107                 running = false;
108                 return false;
109         }
110
111         name.zero = 0;
112         name.pid = getpid();
113         gettimeofday(&tv, NULL);
114         name.usecs = tv.tv_usec;
115         data_sun.sun_family = AF_UNIX;
116         memcpy(&data_sun.sun_path, &name, sizeof name);
117         
118         if(bind(data_fd, (struct sockaddr *)&data_sun, sizeof data_sun) < 0) {
119                 logger(LOG_ERR, _("Could not bind data %s: %s"), device_info, strerror(errno));
120                 running = false;
121                 return false;
122         }
123
124         if((listen_fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) {
125                 logger(LOG_ERR, _("Could not open %s: %s"), device_info,
126                            strerror(errno));
127                 return false;
128         }
129
130         setsockopt(listen_fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof one);
131
132         if(fcntl(listen_fd, F_SETFL, O_NONBLOCK) < 0) {
133                 logger(LOG_ERR, _("System call `%s' failed: %s"), "fcntl", strerror(errno));
134                 return false;
135         }
136
137         listen_sun.sun_family = AF_UNIX;
138         strncpy(listen_sun.sun_path, device, sizeof listen_sun.sun_path);
139         if(bind(listen_fd, (struct sockaddr *)&listen_sun, sizeof listen_sun) < 0) {
140                 logger(LOG_ERR, _("Could not bind %s to %s: %s"), device_info, device, strerror(errno));
141                 return false;
142         }
143
144         if(listen(listen_fd, 1) < 0) {
145                 logger(LOG_ERR, _("Could not listen on %s %s: %s"), device_info, device, strerror(errno));
146                 return false;
147         }
148
149         device_fd = listen_fd;
150         state = 0;
151
152         logger(LOG_INFO, _("%s is a %s"), device, device_info);
153
154         if(routing_mode == RMODE_ROUTER)
155                 overwrite_mac = true;
156
157         return true;
158 }
159
160 void close_device(void)
161 {
162         cp();
163
164         if(listen_fd >= 0)
165                 close(listen_fd);
166
167         if(request_fd >= 0)
168                 close(request_fd);
169
170         if(data_fd >= 0)
171                 close(data_fd);
172
173         if(write_fd >= 0)
174                 close(write_fd);
175
176         unlink(device);
177 }
178
179 bool read_packet(vpn_packet_t *packet)
180 {
181         int lenin;
182
183         cp();
184
185         switch(state) {
186                 case 0: {
187                         struct sockaddr sa;
188                         int salen = sizeof sa;
189
190                         request_fd = accept(listen_fd, &sa, &salen);
191                         if(request_fd < 0) {
192                                 logger(LOG_ERR, _("Could not accept connection to %s %s: %s"), device_info, device, strerror(errno));
193                                 return false;
194                         }
195
196                         if(fcntl(listen_fd, F_SETFL, O_NONBLOCK) < 0) {
197                                 logger(LOG_ERR, _("System call `%s' failed: %s"), "fcntl", strerror(errno));
198                                 running = false;
199                                 return false;
200                         }
201
202                         close(listen_fd);
203                         listen_fd = -1;
204                         device_fd = request_fd;
205                         state = 1;
206
207                         return false;
208                 }
209
210                 case 1: {
211                         if((lenin = read(request_fd, &request, sizeof request)) != sizeof request) {
212                                 logger(LOG_ERR, _("Error while reading request from %s %s: %s"), device_info,
213                                            device, strerror(errno));
214                                 running = false;
215                                 return false;
216                         }
217
218                         if(request.magic != 0xfeedface || request.version != 3 || request.type != REQ_NEW_CONTROL) {
219                                 logger(LOG_ERR, _("Unknown magic %x, version %d, request type %d from %s %s"),
220                                                 request.magic, request.version, request.type, device_info, device);
221                                 running = false;
222                                 return false;
223                         }
224
225                         if(connect(write_fd, &request.sock, sizeof request.sock) < 0) {
226                                 logger(LOG_ERR, _("Could not bind write %s: %s"), device_info, strerror(errno));
227                                 running = false;
228                                 return false;
229                         }
230
231                         write(request_fd, &data_sun, sizeof data_sun);
232                         device_fd = data_fd;
233
234                         logger(LOG_INFO, _("Connection with UML established"));
235
236                         state = 2;
237                         return false;
238                 }
239
240                 case 2: {
241                         if((lenin = read(data_fd, packet->data, MTU)) <= 0) {
242                                 logger(LOG_ERR, _("Error while reading from %s %s: %s"), device_info,
243                                            device, strerror(errno));
244                                 running = false;
245                                 return false;
246                         }
247
248                         packet->len = lenin;
249
250                         device_total_in += packet->len;
251
252                         ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Read packet of %d bytes from %s"), packet->len,
253                                            device_info);
254
255                         return true;
256                 }
257         }
258 }
259
260 bool write_packet(vpn_packet_t *packet)
261 {
262         cp();
263
264         if(state != 2) {
265                 ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Dropping packet of %d bytes to %s: not connected to UML yet"),
266                                 packet->len, device_info);
267                 return true;
268         }
269
270         ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Writing packet of %d bytes to %s"),
271                            packet->len, device_info);
272
273         if(sendto(write_fd, packet->data, packet->len, 0, &request.sock, sizeof request.sock) < 0) {
274                 logger(LOG_ERR, _("Can't write to %s %s: %s"), device_info, device,
275                            strerror(errno));
276                 running = false;
277                 return false;
278         }
279
280         device_total_out += packet->len;
281
282         return true;
283 }
284
285 void dump_device_stats(void)
286 {
287         cp();
288
289         logger(LOG_DEBUG, _("Statistics for %s %s:"), device_info, device);
290         logger(LOG_DEBUG, _(" total bytes in:  %10d"), device_total_in);
291         logger(LOG_DEBUG, _(" total bytes out: %10d"), device_total_out);
292 }