2 device.c -- UML network socket
3 Copyright (C) 2002-2005 Ivo Timmermans,
4 2002-2009 Guus Sliepen <guus@tinc-vpn.org>
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.
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.
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.
33 static int listen_fd = -1;
34 static int request_fd = -1;
35 static int data_fd = -1;
36 static int write_fd = -1;
40 static char *device_info;
42 extern char *identname;
45 static uint64_t device_total_in = 0;
46 static uint64_t device_total_out = 0;
48 enum request_type { REQ_NEW_CONTROL };
50 static struct request {
53 enum request_type type;
54 struct sockaddr_un sock;
57 static struct sockaddr_un data_sun;
59 bool setup_device(void) {
60 struct sockaddr_un listen_sun;
61 static const int one = 1;
69 if(!get_config_string(lookup_config(config_tree, "Device"), &device))
70 xasprintf(&device, LOCALSTATEDIR "/run/%s.umlsocket", identname);
72 get_config_string(lookup_config(config_tree, "Interface"), &iface);
74 device_info = "UML network socket";
76 if((write_fd = socket(PF_UNIX, SOCK_DGRAM, 0)) < 0) {
77 logger(LOG_ERR, "Could not open write %s: %s", device_info, strerror(errno));
82 setsockopt(write_fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof one);
84 if(fcntl(write_fd, F_SETFL, O_NONBLOCK) < 0) {
85 logger(LOG_ERR, "System call `%s' failed: %s", "fcntl", strerror(errno));
90 if((data_fd = socket(PF_UNIX, SOCK_DGRAM, 0)) < 0) {
91 logger(LOG_ERR, "Could not open data %s: %s", device_info, strerror(errno));
96 setsockopt(data_fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof one);
98 if(fcntl(data_fd, F_SETFL, O_NONBLOCK) < 0) {
99 logger(LOG_ERR, "System call `%s' failed: %s", "fcntl", strerror(errno));
106 gettimeofday(&tv, NULL);
107 name.usecs = tv.tv_usec;
108 data_sun.sun_family = AF_UNIX;
109 memcpy(&data_sun.sun_path, &name, sizeof name);
111 if(bind(data_fd, (struct sockaddr *)&data_sun, sizeof data_sun) < 0) {
112 logger(LOG_ERR, "Could not bind data %s: %s", device_info, strerror(errno));
117 if((listen_fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) {
118 logger(LOG_ERR, "Could not open %s: %s", device_info,
123 setsockopt(listen_fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof one);
125 if(fcntl(listen_fd, F_SETFL, O_NONBLOCK) < 0) {
126 logger(LOG_ERR, "System call `%s' failed: %s", "fcntl", strerror(errno));
130 listen_sun.sun_family = AF_UNIX;
131 strncpy(listen_sun.sun_path, device, sizeof listen_sun.sun_path);
132 if(bind(listen_fd, (struct sockaddr *)&listen_sun, sizeof listen_sun) < 0) {
133 logger(LOG_ERR, "Could not bind %s to %s: %s", device_info, device, strerror(errno));
137 if(listen(listen_fd, 1) < 0) {
138 logger(LOG_ERR, "Could not listen on %s %s: %s", device_info, device, strerror(errno));
142 device_fd = listen_fd;
145 logger(LOG_INFO, "%s is a %s", device, device_info);
147 if(routing_mode == RMODE_ROUTER)
148 overwrite_mac = true;
153 void close_device(void) {
169 if(iface) free(iface);
172 bool read_packet(vpn_packet_t *packet) {
178 int salen = sizeof sa;
180 request_fd = accept(listen_fd, &sa, &salen);
182 logger(LOG_ERR, "Could not accept connection to %s %s: %s", device_info, device, strerror(errno));
186 if(fcntl(listen_fd, F_SETFL, O_NONBLOCK) < 0) {
187 logger(LOG_ERR, "System call `%s' failed: %s", "fcntl", strerror(errno));
194 device_fd = request_fd;
201 if((inlen = read(request_fd, &request, sizeof request)) != sizeof request) {
202 logger(LOG_ERR, "Error while reading request from %s %s: %s", device_info,
203 device, strerror(errno));
208 if(request.magic != 0xfeedface || request.version != 3 || request.type != REQ_NEW_CONTROL) {
209 logger(LOG_ERR, "Unknown magic %x, version %d, request type %d from %s %s",
210 request.magic, request.version, request.type, device_info, device);
215 if(connect(write_fd, &request.sock, sizeof request.sock) < 0) {
216 logger(LOG_ERR, "Could not bind write %s: %s", device_info, strerror(errno));
221 write(request_fd, &data_sun, sizeof data_sun);
224 logger(LOG_INFO, "Connection with UML established");
231 if((inlen = read(data_fd, packet->data, MTU)) <= 0) {
232 logger(LOG_ERR, "Error while reading from %s %s: %s", device_info,
233 device, strerror(errno));
240 device_total_in += packet->len;
242 ifdebug(TRAFFIC) logger(LOG_DEBUG, "Read packet of %d bytes from %s", packet->len,
250 bool write_packet(vpn_packet_t *packet) {
252 ifdebug(TRAFFIC) logger(LOG_DEBUG, "Dropping packet of %d bytes to %s: not connected to UML yet",
253 packet->len, device_info);
257 ifdebug(TRAFFIC) logger(LOG_DEBUG, "Writing packet of %d bytes to %s",
258 packet->len, device_info);
260 if(write(write_fd, packet->data, packet->len) < 0) {
261 if(errno != EINTR && errno != EAGAIN) {
262 logger(LOG_ERR, "Can't write to %s %s: %s", device_info, device, strerror(errno));
269 device_total_out += packet->len;
274 void dump_device_stats(void) {
275 logger(LOG_DEBUG, "Statistics for %s %s:", device_info, device);
276 logger(LOG_DEBUG, " total bytes in: %10"PRIu64, device_total_in);
277 logger(LOG_DEBUG, " total bytes out: %10"PRIu64, device_total_out);