EVP_Cleanup() when quitting.
[tinc] / src / tincd.c
1 /*
2     tincd.c -- the main file for tincd
3     Copyright (C) 1998-2005 Ivo Timmermans <ivo@tinc-vpn.org>
4                   2000-2005 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 /* Darwin (MacOS/X) needs the following definition... */
26 #ifndef _P1003_1B_VISIBLE
27 #define _P1003_1B_VISIBLE
28 #endif
29
30 #ifdef HAVE_SYS_MMAN_H
31 #include <sys/mman.h>
32 #endif
33
34 #include <openssl/rand.h>
35 #include <openssl/rsa.h>
36 #include <openssl/pem.h>
37 #include <openssl/evp.h>
38 #include <openssl/engine.h>
39
40 #include <lzo1x.h>
41
42 #include <getopt.h>
43 #include "pidfile.h"
44
45 #include "conf.h"
46 #include "device.h"
47 #include "logger.h"
48 #include "net.h"
49 #include "netutl.h"
50 #include "process.h"
51 #include "protocol.h"
52 #include "utils.h"
53 #include "xalloc.h"
54
55 /* The name this program was run with. */
56 char *program_name = NULL;
57
58 /* If nonzero, display usage information and exit. */
59 bool show_help = false;
60
61 /* If nonzero, print the version on standard output and exit.  */
62 bool show_version = false;
63
64 /* If nonzero, it will attempt to kill a running tincd and exit. */
65 int kill_tincd = 0;
66
67 /* If nonzero, generate public/private keypair for this host/net. */
68 int generate_keys = 0;
69
70 /* If nonzero, use null ciphers and skip all key exchanges. */
71 bool bypass_security = false;
72
73 /* If nonzero, disable swapping for this process. */
74 bool do_mlock = false;
75
76 /* If nonzero, write log entries to a separate file. */
77 bool use_logfile = false;
78
79 char *identname = NULL;                         /* program name for syslog */
80 char *pidfilename = NULL;                       /* pid file location */
81 char *logfilename = NULL;                       /* log file location */
82 char **g_argv;                                  /* a copy of the cmdline arguments */
83
84 static int status;
85
86 static struct option const long_options[] = {
87         {"config", required_argument, NULL, 'c'},
88         {"kill", optional_argument, NULL, 'k'},
89         {"net", required_argument, NULL, 'n'},
90         {"help", no_argument, NULL, 1},
91         {"version", no_argument, NULL, 2},
92         {"no-detach", no_argument, NULL, 'D'},
93         {"generate-keys", optional_argument, NULL, 'K'},
94         {"debug", optional_argument, NULL, 'd'},
95         {"bypass-security", no_argument, NULL, 3},
96         {"mlock", no_argument, NULL, 'L'},
97         {"logfile", optional_argument, NULL, 4},
98         {"pidfile", required_argument, NULL, 5},
99         {NULL, 0, NULL, 0}
100 };
101
102 #ifdef HAVE_MINGW
103 static struct WSAData wsa_state;
104 #endif
105
106 static void usage(bool status)
107 {
108         if(status)
109                 fprintf(stderr, _("Try `%s --help\' for more information.\n"),
110                                 program_name);
111         else {
112                 printf(_("Usage: %s [option]...\n\n"), program_name);
113                 printf(_("  -c, --config=DIR           Read configuration options from DIR.\n"
114                                 "  -D, --no-detach            Don't fork and detach.\n"
115                                 "  -d, --debug[=LEVEL]        Increase debug level or set it to LEVEL.\n"
116                                 "  -k, --kill[=SIGNAL]        Attempt to kill a running tincd and exit.\n"
117                                 "  -n, --net=NETNAME          Connect to net NETNAME.\n"
118                                 "  -K, --generate-keys[=BITS] Generate public/private RSA keypair.\n"
119                                 "  -L, --mlock                Lock tinc into main memory.\n"
120                                 "      --logfile[=FILENAME]   Write log entries to a logfile.\n"
121                                 "      --pidfile=FILENAME     Write PID to FILENAME.\n"
122                                 "      --help                 Display this help and exit.\n"
123                                 "      --version              Output version information and exit.\n\n"));
124                 printf(_("Report bugs to tinc@tinc-vpn.org.\n"));
125         }
126 }
127
128 static bool parse_options(int argc, char **argv)
129 {
130         int r;
131         int option_index = 0;
132
133         while((r = getopt_long(argc, argv, "c:DLd::k::n:K::", long_options, &option_index)) != EOF) {
134                 switch (r) {
135                         case 0:                         /* long option */
136                                 break;
137
138                         case 'c':                               /* config file */
139                                 confbase = xstrdup(optarg);
140                                 break;
141
142                         case 'D':                               /* no detach */
143                                 do_detach = false;
144                                 break;
145
146                         case 'L':                               /* no detach */
147                                 do_mlock = true;
148                                 break;
149
150                         case 'd':                               /* inc debug level */
151                                 if(optarg)
152                                         debug_level = atoi(optarg);
153                                 else
154                                         debug_level++;
155                                 break;
156
157                         case 'k':                               /* kill old tincds */
158 #ifndef HAVE_MINGW
159                                 if(optarg) {
160                                         if(!strcasecmp(optarg, "HUP"))
161                                                 kill_tincd = SIGHUP;
162                                         else if(!strcasecmp(optarg, "TERM"))
163                                                 kill_tincd = SIGTERM;
164                                         else if(!strcasecmp(optarg, "KILL"))
165                                                 kill_tincd = SIGKILL;
166                                         else if(!strcasecmp(optarg, "USR1"))
167                                                 kill_tincd = SIGUSR1;
168                                         else if(!strcasecmp(optarg, "USR2"))
169                                                 kill_tincd = SIGUSR2;
170                                         else if(!strcasecmp(optarg, "WINCH"))
171                                                 kill_tincd = SIGWINCH;
172                                         else if(!strcasecmp(optarg, "INT"))
173                                                 kill_tincd = SIGINT;
174                                         else if(!strcasecmp(optarg, "ALRM"))
175                                                 kill_tincd = SIGALRM;
176                                         else {
177                                                 kill_tincd = atoi(optarg);
178
179                                                 if(!kill_tincd) {
180                                                         fprintf(stderr, _("Invalid argument `%s'; SIGNAL must be a number or one of HUP, TERM, KILL, USR1, USR2, WINCH, INT or ALRM.\n"),
181                                                                         optarg);
182                                                         usage(true);
183                                                         return false;
184                                                 }
185                                         }
186                                 } else
187                                         kill_tincd = SIGTERM;
188 #else
189                                         kill_tincd = 1;
190 #endif
191                                 break;
192
193                         case 'n':                               /* net name given */
194                                 netname = xstrdup(optarg);
195                                 break;
196
197                         case 'K':                               /* generate public/private keypair */
198                                 if(optarg) {
199                                         generate_keys = atoi(optarg);
200
201                                         if(generate_keys < 512) {
202                                                 fprintf(stderr, _("Invalid argument `%s'; BITS must be a number equal to or greater than 512.\n"),
203                                                                 optarg);
204                                                 usage(true);
205                                                 return false;
206                                         }
207
208                                         generate_keys &= ~7;    /* Round it to bytes */
209                                 } else
210                                         generate_keys = 1024;
211                                 break;
212
213                         case 1:                                 /* show help */
214                                 show_help = true;
215                                 break;
216
217                         case 2:                                 /* show version */
218                                 show_version = true;
219                                 break;
220
221                         case 3:                                 /* bypass security */
222                                 bypass_security = true;
223                                 break;
224
225                         case 4:                                 /* write log entries to a file */
226                                 use_logfile = true;
227                                 if(optarg)
228                                         logfilename = xstrdup(optarg);
229                                 break;
230
231                         case 5:                                 /* write PID to a file */
232                                 pidfilename = xstrdup(optarg);
233                                 break;
234
235                         case '?':
236                                 usage(true);
237                                 return false;
238
239                         default:
240                                 break;
241                 }
242         }
243
244         return true;
245 }
246
247 /* This function prettyprints the key generation process */
248
249 static void indicator(int a, int b, void *p)
250 {
251         switch (a) {
252                 case 0:
253                         fprintf(stderr, ".");
254                         break;
255
256                 case 1:
257                         fprintf(stderr, "+");
258                         break;
259
260                 case 2:
261                         fprintf(stderr, "-");
262                         break;
263
264                 case 3:
265                         switch (b) {
266                                 case 0:
267                                         fprintf(stderr, " p\n");
268                                         break;
269
270                                 case 1:
271                                         fprintf(stderr, " q\n");
272                                         break;
273
274                                 default:
275                                         fprintf(stderr, "?");
276                         }
277                         break;
278
279                 default:
280                         fprintf(stderr, "?");
281         }
282 }
283
284 /*
285   Generate a public/private RSA keypair, and ask for a file to store
286   them in.
287 */
288 static bool keygen(int bits)
289 {
290         RSA *rsa_key;
291         FILE *f;
292         char *name = NULL;
293         char *filename;
294
295         fprintf(stderr, _("Generating %d bits keys:\n"), bits);
296         rsa_key = RSA_generate_key(bits, 0x10001, indicator, NULL);
297
298         if(!rsa_key) {
299                 fprintf(stderr, _("Error during key generation!\n"));
300                 return false;
301         } else
302                 fprintf(stderr, _("Done.\n"));
303
304         asprintf(&filename, "%s/rsa_key.priv", confbase);
305         f = ask_and_open(filename, _("private RSA key"), "a");
306
307         if(!f)
308                 return false;
309   
310 #ifdef HAVE_FCHMOD
311         /* Make it unreadable for others. */
312         fchmod(fileno(f), 0600);
313 #endif
314                 
315         if(ftell(f))
316                 fprintf(stderr, _("Appending key to existing contents.\nMake sure only one key is stored in the file.\n"));
317
318         PEM_write_RSAPrivateKey(f, rsa_key, NULL, NULL, 0, NULL, NULL);
319         fclose(f);
320         free(filename);
321
322         get_config_string(lookup_config(config_tree, "Name"), &name);
323
324         if(name)
325                 asprintf(&filename, "%s/hosts/%s", confbase, name);
326         else
327                 asprintf(&filename, "%s/rsa_key.pub", confbase);
328
329         f = ask_and_open(filename, _("public RSA key"), "a");
330
331         if(!f)
332                 return false;
333
334         if(ftell(f))
335                 fprintf(stderr, _("Appending key to existing contents.\nMake sure only one key is stored in the file.\n"));
336
337         PEM_write_RSAPublicKey(f, rsa_key);
338         fclose(f);
339         free(filename);
340
341         return true;
342 }
343
344 /*
345   Set all files and paths according to netname
346 */
347 static void make_names(void)
348 {
349 #ifdef HAVE_MINGW
350         HKEY key;
351         char installdir[1024] = "";
352         long len = sizeof(installdir);
353 #endif
354
355         if(netname)
356                 asprintf(&identname, "tinc.%s", netname);
357         else
358                 identname = xstrdup("tinc");
359
360 #ifdef HAVE_MINGW
361         if(!RegOpenKeyEx(HKEY_LOCAL_MACHINE, "SOFTWARE\\tinc", 0, KEY_READ, &key)) {
362                 if(!RegQueryValueEx(key, NULL, 0, 0, installdir, &len)) {
363                         if(!logfilename)
364                                 asprintf(&logfilename, "%s/log/%s.log", identname);
365                         if(!confbase) {
366                                 if(netname)
367                                         asprintf(&confbase, "%s/%s", installdir, netname);
368                                 else
369                                         asprintf(&confbase, "%s", installdir);
370                         }
371                 }
372                 RegCloseKey(key);
373                 if(*installdir)
374                         return;
375         }
376 #endif
377
378         if(!pidfilename)
379                 asprintf(&pidfilename, LOCALSTATEDIR "/run/%s.pid", identname);
380
381         if(!logfilename)
382                 asprintf(&logfilename, LOCALSTATEDIR "/log/%s.log", identname);
383
384         if(netname) {
385                 if(!confbase)
386                         asprintf(&confbase, CONFDIR "/tinc/%s", netname);
387                 else
388                         logger(LOG_INFO, _("Both netname and configuration directory given, using the latter..."));
389         } else {
390                 if(!confbase)
391                         asprintf(&confbase, CONFDIR "/tinc");
392         }
393 }
394
395 int main(int argc, char **argv)
396 {
397         program_name = argv[0];
398
399         setlocale(LC_ALL, "");
400         bindtextdomain(PACKAGE, LOCALEDIR);
401         textdomain(PACKAGE);
402
403         if(!parse_options(argc, argv))
404                 return 1;
405         
406         make_names();
407
408         if(show_version) {
409                 printf(_("%s version %s (built %s %s, protocol %d)\n"), PACKAGE,
410                            VERSION, __DATE__, __TIME__, PROT_CURRENT);
411                 printf(_("Copyright (C) 1998-2005 Ivo Timmermans, Guus Sliepen and others.\n"
412                                 "See the AUTHORS file for a complete list.\n\n"
413                                 "tinc comes with ABSOLUTELY NO WARRANTY.  This is free software,\n"
414                                 "and you are welcome to redistribute it under certain conditions;\n"
415                                 "see the file COPYING for details.\n"));
416
417                 return 0;
418         }
419
420         if(show_help) {
421                 usage(false);
422                 return 0;
423         }
424
425         if(kill_tincd)
426                 return !kill_other(kill_tincd);
427
428         openlogger("tinc", use_logfile?LOGMODE_FILE:LOGMODE_STDERR);
429
430         /* Lock all pages into memory if requested */
431
432         if(do_mlock)
433 #ifdef HAVE_MLOCKALL
434                 if(mlockall(MCL_CURRENT | MCL_FUTURE)) {
435                         logger(LOG_ERR, _("System call `%s' failed: %s"), "mlockall",
436                                    strerror(errno));
437 #else
438         {
439                 logger(LOG_ERR, _("mlockall() not supported on this platform!"));
440 #endif
441                 return -1;
442         }
443
444         g_argv = argv;
445
446         init_configuration(&config_tree);
447
448         /* Slllluuuuuuurrrrp! */
449
450         RAND_load_file("/dev/urandom", 1024);
451
452         ENGINE_load_builtin_engines();
453         ENGINE_register_all_complete();
454
455         OpenSSL_add_all_algorithms();
456
457         if(generate_keys) {
458                 read_server_config();
459                 return !keygen(generate_keys);
460         }
461
462         if(!read_server_config())
463                 return 1;
464
465         if(lzo_init() != LZO_E_OK) {
466                 logger(LOG_ERR, _("Error initializing LZO compressor!"));
467                 return 1;
468         }
469
470 #ifdef HAVE_MINGW
471         if(WSAStartup(MAKEWORD(2, 2), &wsa_state)) {
472                 logger(LOG_ERR, _("System call `%s' failed: %s"), "WSAStartup", winerror(GetLastError()));
473                 return 1;
474         }
475
476         if(!do_detach || !init_service())
477                 return main2(argc, argv);
478         else
479                 return 1;
480 }
481
482 int main2(int argc, char **argv)
483 {
484 #endif
485
486         if(!detach())
487                 return 1;
488                 
489
490         /* Setup sockets and open device. */
491
492         if(!setup_network_connections())
493                 goto end;
494
495         /* Start main loop. It only exits when tinc is killed. */
496
497         status = main_loop();
498
499         /* Shutdown properly. */
500
501         close_network_connections();
502
503         ifdebug(CONNECTIONS)
504                 dump_device_stats();
505
506 end:
507         logger(LOG_NOTICE, _("Terminating"));
508
509 #ifndef HAVE_MINGW
510         remove_pid(pidfilename);
511 #endif
512
513         EVP_cleanup();
514         
515         return status;
516 }