K&R style braces
[tinc] / src / net_socket.c
1 /*
2     net_socket.c -- Handle various kinds of sockets.
3     Copyright (C) 1998-2005 Ivo Timmermans,
4                   2000-2007 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$
21 */
22
23 #include "system.h"
24
25 #include "avl_tree.h"
26 #include "conf.h"
27 #include "connection.h"
28 #include "logger.h"
29 #include "meta.h"
30 #include "net.h"
31 #include "netutl.h"
32 #include "protocol.h"
33 #include "utils.h"
34 #include "xalloc.h"
35
36 #ifdef WSAEINPROGRESS
37 #define EINPROGRESS WSAEINPROGRESS
38 #endif
39
40 /* Needed on Mac OS/X */
41 #ifndef SOL_TCP
42 #define SOL_TCP IPPROTO_TCP
43 #endif
44
45 int addressfamily = AF_UNSPEC;
46 int maxtimeout = 900;
47 int seconds_till_retry = 5;
48
49 listen_socket_t listen_socket[MAXSOCKETS];
50 int listen_sockets;
51
52 /* Setup sockets */
53
54 static void configure_tcp(connection_t *c) {
55         int option;
56
57 #ifdef O_NONBLOCK
58         int flags = fcntl(c->socket, F_GETFL);
59
60         if(fcntl(c->socket, F_SETFL, flags | O_NONBLOCK) < 0) {
61                 logger(LOG_ERR, _("fcntl for %s: %s"), c->hostname, strerror(errno));
62         }
63 #elif defined(WIN32)
64         unsigned long arg = 1;
65
66         if(ioctlsocket(c->socket, FIONBIO, &arg) != 0) {
67                 logger(LOG_ERR, _("ioctlsocket for %s: WSA error %d"), c->hostname, WSAGetLastError());
68         }
69 #endif
70
71 #if defined(SOL_TCP) && defined(TCP_NODELAY)
72         option = 1;
73         setsockopt(c->socket, SOL_TCP, TCP_NODELAY, &option, sizeof(option));
74 #endif
75
76 #if defined(SOL_IP) && defined(IP_TOS) && defined(IPTOS_LOWDELAY)
77         option = IPTOS_LOWDELAY;
78         setsockopt(c->socket, SOL_IP, IP_TOS, &option, sizeof(option));
79 #endif
80 }
81
82 int setup_listen_socket(const sockaddr_t *sa) {
83         int nfd;
84         char *addrstr;
85         int option;
86         char *iface;
87
88         cp();
89
90         nfd = socket(sa->sa.sa_family, SOCK_STREAM, IPPROTO_TCP);
91
92         if(nfd < 0) {
93                 ifdebug(STATUS) logger(LOG_ERR, _("Creating metasocket failed: %s"), strerror(errno));
94                 return -1;
95         }
96
97         /* Optimize TCP settings */
98
99         option = 1;
100         setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, &option, sizeof(option));
101
102         if(get_config_string
103            (lookup_config(config_tree, "BindToInterface"), &iface)) {
104 #if defined(SOL_SOCKET) && defined(SO_BINDTODEVICE)
105                 struct ifreq ifr;
106
107                 memset(&ifr, 0, sizeof(ifr));
108                 strncpy(ifr.ifr_ifrn.ifrn_name, iface, IFNAMSIZ);
109
110                 if(setsockopt(nfd, SOL_SOCKET, SO_BINDTODEVICE, &ifr, sizeof(ifr))) {
111                         closesocket(nfd);
112                         logger(LOG_ERR, _("Can't bind to interface %s: %s"), iface,
113                                    strerror(errno));
114                         return -1;
115                 }
116 #else
117                 logger(LOG_WARNING, _("BindToInterface not supported on this platform"));
118 #endif
119         }
120
121         if(bind(nfd, &sa->sa, SALEN(sa->sa))) {
122                 closesocket(nfd);
123                 addrstr = sockaddr2hostname(sa);
124                 logger(LOG_ERR, _("Can't bind to %s/tcp: %s"), addrstr,
125                            strerror(errno));
126                 free(addrstr);
127                 return -1;
128         }
129
130         if(listen(nfd, 3)) {
131                 closesocket(nfd);
132                 logger(LOG_ERR, _("System call `%s' failed: %s"), "listen",
133                            strerror(errno));
134                 return -1;
135         }
136
137         return nfd;
138 }
139
140 int setup_vpn_in_socket(const sockaddr_t *sa) {
141         int nfd;
142         char *addrstr;
143         int option;
144
145         cp();
146
147         nfd = socket(sa->sa.sa_family, SOCK_DGRAM, IPPROTO_UDP);
148
149         if(nfd < 0) {
150                 logger(LOG_ERR, _("Creating UDP socket failed: %s"), strerror(errno));
151                 return -1;
152         }
153
154 #ifdef O_NONBLOCK
155         {
156                 int flags = fcntl(nfd, F_GETFL);
157
158                 if(fcntl(nfd, F_SETFL, flags | O_NONBLOCK) < 0) {
159                         closesocket(nfd);
160                         logger(LOG_ERR, _("System call `%s' failed: %s"), "fcntl",
161                                    strerror(errno));
162                         return -1;
163                 }
164         }
165 #elif defined(WIN32)
166         {
167                 unsigned long arg = 1;
168                 if(ioctlsocket(nfd, FIONBIO, &arg) != 0) {
169                         closesocket(nfd);
170                         logger(LOG_ERR, _("Call to `%s' failed: WSA error %d"), "ioctlsocket",
171                                 WSAGetLastError());
172                         return -1;
173                 }
174         }
175 #endif
176
177         option = 1;
178         setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, &option, sizeof(option));
179
180 #if defined(SOL_IP) && defined(IP_MTU_DISCOVER) && defined(IP_PMTUDISC_DO)
181         {
182                 bool choice;
183
184                 if(get_config_bool(lookup_config(myself->connection->config_tree, "PMTUDiscovery"), &choice) && choice) {
185                         option = IP_PMTUDISC_DO;
186                         setsockopt(nfd, SOL_IP, IP_MTU_DISCOVER, &option, sizeof(option));
187                 }
188         }
189 #endif
190
191 #if defined(SOL_IPV6) && defined(IPV6_MTU_DISCOVER) && defined(IPV6_PMTUDISC_DO)
192         {
193                 bool choice;
194
195                 if(get_config_bool(lookup_config(myself->connection->config_tree, "PMTUDiscovery"), &choice) && choice) {
196                         option = IPV6_PMTUDISC_DO;
197                         setsockopt(nfd, SOL_IPV6, IPV6_MTU_DISCOVER, &option, sizeof(option));
198                 }
199         }
200 #endif
201
202 #if defined(SOL_SOCKET) && defined(SO_BINDTODEVICE)
203         {
204                 char *iface;
205                 struct ifreq ifr;
206
207                 if(get_config_string(lookup_config(config_tree, "BindToInterface"), &iface)) {
208                         memset(&ifr, 0, sizeof(ifr));
209                         strncpy(ifr.ifr_ifrn.ifrn_name, iface, IFNAMSIZ);
210
211                         if(setsockopt(nfd, SOL_SOCKET, SO_BINDTODEVICE, &ifr, sizeof(ifr))) {
212                                 closesocket(nfd);
213                                 logger(LOG_ERR, _("Can't bind to interface %s: %s"), iface,
214                                            strerror(errno));
215                                 return -1;
216                         }
217                 }
218         }
219 #endif
220
221         if(bind(nfd, &sa->sa, SALEN(sa->sa))) {
222                 closesocket(nfd);
223                 addrstr = sockaddr2hostname(sa);
224                 logger(LOG_ERR, _("Can't bind to %s/udp: %s"), addrstr,
225                            strerror(errno));
226                 free(addrstr);
227                 return -1;
228         }
229
230         return nfd;
231 }
232
233 static void retry_outgoing_handler(int fd, short events, void *data) {
234         do_outgoing_connection(data);
235 }
236
237 void retry_outgoing(outgoing_t *outgoing) {
238         cp();
239
240         outgoing->timeout += 5;
241
242         if(outgoing->timeout > maxtimeout)
243                 outgoing->timeout = maxtimeout;
244
245         timeout_set(&outgoing->ev, retry_outgoing_handler, outgoing);
246         event_add(&outgoing->ev, &(struct timeval){outgoing->timeout, 0});
247
248         ifdebug(CONNECTIONS) logger(LOG_NOTICE,
249                            _("Trying to re-establish outgoing connection in %d seconds"),
250                            outgoing->timeout);
251 }
252
253 void finish_connecting(connection_t *c) {
254         cp();
255
256         ifdebug(CONNECTIONS) logger(LOG_INFO, _("Connected to %s (%s)"), c->name, c->hostname);
257
258         configure_tcp(c);
259
260         c->last_ping_time = time(NULL);
261         c->status.connecting = false;
262
263         send_id(c);
264 }
265
266 void do_outgoing_connection(connection_t *c) {
267         char *address, *port;
268         int result;
269
270         cp();
271
272 begin:
273         if(!c->outgoing->ai) {
274                 if(!c->outgoing->cfg) {
275                         ifdebug(CONNECTIONS) logger(LOG_ERR, _("Could not set up a meta connection to %s"),
276                                            c->name);
277                         c->status.remove = true;
278                         retry_outgoing(c->outgoing);
279                         return;
280                 }
281
282                 get_config_string(c->outgoing->cfg, &address);
283
284                 if(!get_config_string(lookup_config(c->config_tree, "Port"), &port))
285                         asprintf(&port, "655");
286
287                 c->outgoing->ai = str2addrinfo(address, port, SOCK_STREAM);
288                 free(address);
289                 free(port);
290
291                 c->outgoing->aip = c->outgoing->ai;
292                 c->outgoing->cfg = lookup_config_next(c->config_tree, c->outgoing->cfg);
293         }
294
295         if(!c->outgoing->aip) {
296                 freeaddrinfo(c->outgoing->ai);
297                 c->outgoing->ai = NULL;
298                 goto begin;
299         }
300
301         memcpy(&c->address, c->outgoing->aip->ai_addr, c->outgoing->aip->ai_addrlen);
302         c->outgoing->aip = c->outgoing->aip->ai_next;
303
304         if(c->hostname)
305                 free(c->hostname);
306
307         c->hostname = sockaddr2hostname(&c->address);
308
309         ifdebug(CONNECTIONS) logger(LOG_INFO, _("Trying to connect to %s (%s)"), c->name,
310                            c->hostname);
311
312         c->socket = socket(c->address.sa.sa_family, SOCK_STREAM, IPPROTO_TCP);
313
314         if(c->socket == -1) {
315                 ifdebug(CONNECTIONS) logger(LOG_ERR, _("Creating socket for %s failed: %s"), c->hostname,
316                                    strerror(errno));
317
318                 goto begin;
319         }
320
321         /* Optimize TCP settings */
322
323         configure_tcp(c);
324
325         /* Connect */
326
327         result = connect(c->socket, &c->address.sa, SALEN(c->address.sa));
328
329         if(result == -1) {
330                 if(errno == EINPROGRESS
331 #if defined(WIN32) && !defined(O_NONBLOCK)
332                    || WSAGetLastError() == WSAEWOULDBLOCK
333 #endif
334                 ) {
335                         c->status.connecting = true;
336                         return;
337                 }
338
339                 closesocket(c->socket);
340
341                 ifdebug(CONNECTIONS) logger(LOG_ERR, _("%s: %s"), c->hostname, strerror(errno));
342
343                 goto begin;
344         }
345
346         finish_connecting(c);
347
348         return;
349 }
350
351 void setup_outgoing_connection(outgoing_t *outgoing) {
352         connection_t *c;
353         node_t *n;
354
355         cp();
356
357         n = lookup_node(outgoing->name);
358
359         if(n)
360                 if(n->connection) {
361                         ifdebug(CONNECTIONS) logger(LOG_INFO, _("Already connected to %s"), outgoing->name);
362
363                         n->connection->outgoing = outgoing;
364                         return;
365                 }
366
367         c = new_connection();
368         c->name = xstrdup(outgoing->name);
369         c->outcipher = myself->connection->outcipher;
370         c->outdigest = myself->connection->outdigest;
371         c->outmaclength = myself->connection->outmaclength;
372         c->outcompression = myself->connection->outcompression;
373
374         init_configuration(&c->config_tree);
375         read_connection_config(c);
376
377         outgoing->cfg = lookup_config(c->config_tree, "Address");
378
379         if(!outgoing->cfg) {
380                 logger(LOG_ERR, _("No address specified for %s"), c->name);
381                 free_connection(c);
382                 free(outgoing->name);
383                 free(outgoing);
384                 return;
385         }
386
387         c->outgoing = outgoing;
388         c->last_ping_time = time(NULL);
389
390         connection_add(c);
391
392         do_outgoing_connection(c);
393
394         event_set(&c->ev, c->socket, EV_READ | EV_PERSIST, handle_meta_connection_data, c);
395         event_set(&c->outev, c->socket, EV_WRITE | EV_PERSIST, flush_meta, c);
396         if(event_add(&c->ev, NULL) < 0) {
397                 logger(LOG_EMERG, _("event_add failed: %s"), strerror(errno));
398                 abort();
399         }
400 }
401
402 /*
403   accept a new tcp connect and create a
404   new connection
405 */
406 void handle_new_meta_connection(int sock, short events, void *data) {
407         connection_t *c;
408         sockaddr_t sa;
409         int fd;
410         socklen_t len = sizeof(sa);
411
412         cp();
413
414         fd = accept(sock, &sa.sa, &len);
415
416         if(fd < 0) {
417                 logger(LOG_ERR, _("Accepting a new connection failed: %s"), strerror(errno));
418                 return;
419         }
420
421         sockaddrunmap(&sa);
422
423         c = new_connection();
424         c->name = xstrdup("<unknown>");
425         c->outcipher = myself->connection->outcipher;
426         c->outdigest = myself->connection->outdigest;
427         c->outmaclength = myself->connection->outmaclength;
428         c->outcompression = myself->connection->outcompression;
429
430         c->address = sa;
431         c->hostname = sockaddr2hostname(&sa);
432         c->socket = fd;
433         c->last_ping_time = time(NULL);
434
435         ifdebug(CONNECTIONS) logger(LOG_NOTICE, _("Connection from %s"), c->hostname);
436
437         event_set(&c->ev, c->socket, EV_READ | EV_PERSIST, handle_meta_connection_data, c);
438         event_set(&c->outev, c->socket, EV_WRITE | EV_PERSIST, flush_meta, c);
439         if(event_add(&c->ev, NULL) < 0) {
440                 logger(LOG_ERR, _("event_add failed: %s"), strerror(errno));
441                 connection_del(c);
442                 return;
443         }
444                 
445         configure_tcp(c);
446
447         connection_add(c);
448
449         c->allow_request = ID;
450         send_id(c);
451 }
452
453 void try_outgoing_connections(void) {
454         static config_t *cfg = NULL;
455         char *name;
456         outgoing_t *outgoing;
457
458         cp();
459
460         for(cfg = lookup_config(config_tree, "ConnectTo"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
461                 get_config_string(cfg, &name);
462
463                 if(!check_id(name)) {
464                         logger(LOG_ERR,
465                                    _("Invalid name for outgoing connection in %s line %d"),
466                                    cfg->file, cfg->line);
467                         free(name);
468                         continue;
469                 }
470
471                 outgoing = xmalloc_and_zero(sizeof(*outgoing));
472                 outgoing->name = name;
473                 setup_outgoing_connection(outgoing);
474         }
475 }