- Updated dutch translation.
[oweals/tinc.git] / src / tincd.c
1 /*
2     tincd.c -- the main file for tincd
3     Copyright (C) 1998,1999,2000 Ivo Timmermans <itimmermans@bigfoot.com>
4                             2000 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: tincd.c,v 1.10.4.18 2000/10/29 02:07:41 guus Exp $
21 */
22
23 #include "config.h"
24
25 #include <errno.h>
26 #include <fcntl.h> 
27 #include <getopt.h>
28 #include <signal.h>
29 #include <stdio.h>
30 #include <sys/types.h>
31 #include <syslog.h>
32 #include <unistd.h>
33 #include <signal.h>
34 #include <openssl/rand.h>
35 #include <openssl/rsa.h>
36 #include <string.h>
37
38 #ifdef HAVE_SYS_IOCTL_H
39 # include <sys/ioctl.h>
40 #endif
41
42 #include <pidfile.h>
43 #include <utils.h>
44 #include <xalloc.h>
45
46 #include "conf.h"
47 #include "encr.h"
48 #include "net.h"
49 #include "netutl.h"
50 #include "protocol.h"
51 #include "subnet.h"
52
53 #include "system.h"
54
55 /* The name this program was run with. */
56 char *program_name;
57
58 /* If nonzero, display usage information and exit. */
59 static int show_help;
60
61 /* If nonzero, print the version on standard output and exit.  */
62 static int show_version;
63
64 /* If nonzero, it will attempt to kill a running tincd and exit. */
65 static int kill_tincd = 0;
66
67 /* If zero, don't detach from the terminal. */
68 static int do_detach = 1;
69
70 /* If nonzero, generate public/private keypair for this host/net. */
71 static int generate_keys = 0;
72
73 char *identname;                 /* program name for syslog */
74 char *pidfilename;               /* pid file location */
75 static pid_t ppid;               /* pid of non-detached part */
76 char **g_argv;                   /* a copy of the cmdline arguments */
77
78 void cleanup_and_exit(int);
79 int detach(void);
80 int kill_other(void);
81 void make_names(void);
82 RETSIGTYPE parent_exit(int a);
83 void setup_signals(void);
84 int write_pidfile(void);
85
86 static struct option const long_options[] =
87 {
88   { "kill", no_argument, NULL, 'k' },
89   { "net", required_argument, NULL, 'n' },
90   { "help", no_argument, &show_help, 1 },
91   { "version", no_argument, &show_version, 1 },
92   { "no-detach", no_argument, &do_detach, 0 },
93   { "keygen", optional_argument, NULL, 'K'},
94   { NULL, 0, NULL, 0 }
95 };
96
97 static void
98 usage(int status)
99 {
100   if(status != 0)
101     fprintf(stderr, _("Try `%s --help\' for more information.\n"), program_name);
102   else
103     {
104       printf(_("Usage: %s [option]...\n\n"), program_name);
105       printf(_("  -c, --config=DIR      Read configuration options from DIR.\n"
106                "  -D, --no-detach       Don't fork and detach.\n"
107                "  -d                    Increase debug level.\n"
108                "  -k, --kill            Attempt to kill a running tincd and exit.\n"
109                "  -n, --net=NETNAME     Connect to net NETNAME.\n"));
110       printf(_("  -K, --keygen[=BITS]   Generate public/private RSA keypair.\n"
111                "      --help            Display this help and exit.\n"
112                "      --version         Output version information and exit.\n\n"));
113       printf(_("Report bugs to tinc@nl.linux.org.\n"));
114     }
115   exit(status);
116 }
117
118 void
119 parse_options(int argc, char **argv, char **envp)
120 {
121   int r;
122   int option_index = 0;
123   
124   while((r = getopt_long(argc, argv, "c:Ddkn:K::", long_options, &option_index)) != EOF)
125     {
126       switch(r)
127         {
128         case 0: /* long option */
129           break;
130         case 'c': /* config file */
131           confbase = xmalloc(strlen(optarg)+1);
132           strcpy(confbase, optarg);
133           break;
134         case 'D': /* no detach */
135           do_detach = 0;
136           break;
137         case 'd': /* inc debug level */
138           debug_lvl++;
139           break;
140         case 'k': /* kill old tincds */
141           kill_tincd = 1;
142           break;
143         case 'n': /* net name given */
144           netname = xmalloc(strlen(optarg)+1);
145           strcpy(netname, optarg);
146           break;
147         case 'K': /* generate public/private keypair */
148           if(optarg)
149             {
150               generate_keys = atoi(optarg);
151               if(generate_keys < 512)
152                 {
153                   fprintf(stderr, _("Invalid argument! BITS must be a number equal to or greater than 512.\n"));
154                   usage(1);
155                 }
156               generate_keys &= ~7;      /* Round it to bytes */
157             }
158           else
159             generate_keys = 1024;
160           break;
161         case '?':
162           usage(1);
163         default:
164           break;
165         }
166     }
167 }
168
169 /* This function prettyprints the key generation process */
170
171 void indicator(int a, int b, void *p)
172 {
173   switch(a)
174   {
175     case 0:
176       fprintf(stderr, ".");
177       break;
178     case 1:
179       fprintf(stderr, "+");
180       break;
181     case 2:
182       fprintf(stderr, "-");
183       break;
184     case 3:
185       switch(b)
186         {
187           case 0:
188             fprintf(stderr, " p\n");      
189             break;
190           case 1:
191             fprintf(stderr, " q\n");
192             break;
193           default:
194             fprintf(stderr, "?");
195          }
196        break;
197     default:
198       fprintf(stderr, "?");
199   }
200 }
201
202 /* Generate a public/private RSA keypair, and possibly store it into the configuration file. */
203
204 int keygen(int bits)
205 {
206   RSA *rsa_key;
207
208   fprintf(stderr, _("Seeding the PRNG: please press some keys or move\nthe mouse if this program seems to have halted...\n"));
209   RAND_load_file("/dev/random", 1024);  /* OpenSSL PRNG state apparently uses 1024 bytes, but it seems pretty sufficient anyway :) */
210
211   fprintf(stderr, _("Generating %d bits keys:\n"), bits);
212   rsa_key = RSA_generate_key(bits, 0xFFFF, indicator, NULL);
213   if(!rsa_key)
214     {
215       fprintf(stderr, _("Error during key generation!"));
216       return -1;
217      }
218   else
219     fprintf(stderr, _("Done.\n"));
220
221   fprintf(stderr, _("Please copy the private key to tinc.conf and the\npublic key to your host configuration file:\n\n"));
222   printf("PublicKey = %s\n", BN_bn2hex(rsa_key->n));
223   printf("PrivateKey = %s\n", BN_bn2hex(rsa_key->d));
224   
225   fflush(stdin);
226   return 0;
227 }
228
229 void memory_full(int size)
230 {
231   syslog(LOG_ERR, _("Memory exhausted (last is %s:%d) (couldn't allocate %d bytes), exiting."), cp_file, cp_line, size);
232   exit(1);
233 }
234
235 /*
236   Detach from current terminal, write pidfile, kill parent
237 */
238 int detach(void)
239 {
240   int fd;
241   pid_t pid;
242
243   if(do_detach)
244     {
245       ppid = getpid();
246
247       if((pid = fork()) < 0)
248         {
249           perror("fork");
250           return -1;
251         }
252       if(pid) /* parent process */
253         {
254           signal(SIGTERM, parent_exit);
255 //        sleep(600); /* wait 10 minutes */
256           exit(1);
257         }
258     }
259   
260   if(write_pidfile())
261     return -1;
262
263   if(do_detach)
264     {
265       if((fd = open("/dev/tty", O_RDWR)) >= 0)
266         {
267           if(ioctl(fd, TIOCNOTTY, NULL))
268             {
269               perror("ioctl");
270               return -1;
271             }
272           close(fd);
273         }
274
275       if(setsid() < 0)
276         return -1;
277
278       kill(ppid, SIGTERM);
279     }
280   
281   chdir("/"); /* avoid keeping a mointpoint busy */
282
283   openlog(identname, LOG_CONS | LOG_PID, LOG_DAEMON);
284
285   if(debug_lvl > DEBUG_NOTHING)
286     syslog(LOG_NOTICE, _("tincd %s (%s %s) starting, debug level %d"),
287            VERSION, __DATE__, __TIME__, debug_lvl);
288   else
289     syslog(LOG_NOTICE, _("tincd %s starting"), VERSION);
290
291   xalloc_fail_func = memory_full;
292
293   return 0;
294 }
295
296 /*
297   Close network connections, and terminate neatly
298 */
299 void cleanup_and_exit(int c)
300 {
301   close_network_connections();
302
303   if(debug_lvl > DEBUG_NOTHING)
304     syslog(LOG_INFO, _("Total bytes written: tap %d, socket %d; bytes read: tap %d, socket %d"),
305            total_tap_out, total_socket_out, total_tap_in, total_socket_in);
306
307   closelog();
308   kill(ppid, SIGTERM);
309   exit(c);
310 }
311
312 /*
313   check for an existing tinc for this net, and write pid to pidfile
314 */
315 int write_pidfile(void)
316 {
317   int pid;
318
319   if((pid = check_pid(pidfilename)))
320     {
321       if(netname)
322         fprintf(stderr, _("A tincd is already running for net `%s' with pid %d.\n"),
323                 netname, pid);
324       else
325         fprintf(stderr, _("A tincd is already running with pid %d.\n"), pid);
326       return 1;
327     }
328
329   /* if it's locked, write-protected, or whatever */
330   if(!write_pid(pidfilename))
331     return 1;
332
333   return 0;
334 }
335
336 /*
337   kill older tincd for this net
338 */
339 int kill_other(void)
340 {
341   int pid;
342
343   if(!(pid = read_pid(pidfilename)))
344     {
345       if(netname)
346         fprintf(stderr, _("No other tincd is running for net `%s'.\n"), netname);
347       else
348         fprintf(stderr, _("No other tincd is running.\n"));
349       return 1;
350     }
351
352   errno = 0;    /* No error, sometimes errno is only changed on error */
353   /* ESRCH is returned when no process with that pid is found */
354   if(kill(pid, SIGTERM) && errno == ESRCH)
355     fprintf(stderr, _("Removing stale lock file.\n"));
356   remove_pid(pidfilename);
357
358   return 0;
359 }
360
361 /*
362   Set all files and paths according to netname
363 */
364 void make_names(void)
365 {
366   if(netname)
367     {
368       if(!pidfilename)
369         asprintf(&pidfilename, "/var/run/tinc.%s.pid", netname);
370       if(!confbase)
371         asprintf(&confbase, "%s/tinc/%s", CONFDIR, netname);
372       if(!identname)
373         asprintf(&identname, "tinc.%s", netname);
374     }
375   else
376     {
377       if(!pidfilename)
378         pidfilename = "/var/run/tinc.pid";
379       if(!confbase)
380         asprintf(&confbase, "%s/tinc", CONFDIR);
381       if(!identname)
382         identname = "tinc";
383     }
384 }
385
386 int
387 main(int argc, char **argv, char **envp)
388 {
389   program_name = argv[0];
390
391   setlocale (LC_ALL, "");
392   bindtextdomain (PACKAGE, LOCALEDIR);
393   textdomain (PACKAGE);
394
395   /* Do some intl stuff right now */
396   
397   unknown = _("unknown");
398
399   parse_options(argc, argv, envp);
400
401   if(show_version)
402     {
403       printf(_("%s version %s (built %s %s, protocol %d)\n"), PACKAGE, VERSION, __DATE__, __TIME__, PROT_CURRENT);
404       printf(_("Copyright (C) 1998,1999,2000 Ivo Timmermans, Guus Sliepen and others.\n"
405                "See the AUTHORS file for a complete list.\n\n"
406                "tinc comes with ABSOLUTELY NO WARRANTY.  This is free software,\n"
407                "and you are welcome to redistribute it under certain conditions;\n"
408                "see the file COPYING for details.\n"));
409
410       return 0;
411     }
412
413   if(show_help)
414     usage(0);
415
416   if(geteuid())
417     {
418       fprintf(stderr, _("You must be root to run this program. Sorry.\n"));
419       return 1;
420     }
421
422   g_argv = argv;
423
424   make_names();
425
426   if(generate_keys)
427     exit(keygen(generate_keys));
428
429   if(kill_tincd)
430     exit(kill_other());
431
432   if(read_server_config())
433     return 1;
434
435   setup_signals();
436
437   if(detach())
438     exit(0);
439
440 /* FIXME: wt* is this suppose to do?
441   if(security_init())
442     return 1;
443 */
444   for(;;)
445     {
446       if(!setup_network_connections())
447         {
448           main_loop();
449           cleanup_and_exit(1);
450          }
451       
452       syslog(LOG_ERR, _("Unrecoverable error"));
453       cp_trace();
454
455       if(do_detach)
456         {
457           syslog(LOG_NOTICE, _("Restarting in %d seconds!"), MAXTIMEOUT);
458           sleep(MAXTIMEOUT);
459         }
460       else
461         {
462           syslog(LOG_ERR, _("Not restarting."));
463           exit(0);
464         }
465     }
466 }
467
468 RETSIGTYPE
469 sigterm_handler(int a)
470 {
471   if(debug_lvl > DEBUG_NOTHING)
472     syslog(LOG_NOTICE, _("Got TERM signal"));
473   cleanup_and_exit(0);
474 }
475
476 RETSIGTYPE
477 sigquit_handler(int a)
478 {
479   if(debug_lvl > DEBUG_NOTHING)
480     syslog(LOG_NOTICE, _("Got QUIT signal"));
481   cleanup_and_exit(0);
482 }
483
484 RETSIGTYPE
485 sigsegv_square(int a)
486 {
487   syslog(LOG_ERR, _("Got another SEGV signal: not restarting"));
488   exit(0);
489 }
490
491 RETSIGTYPE
492 sigsegv_handler(int a)
493 {
494   syslog(LOG_ERR, _("Got SEGV signal"));
495   cp_trace();
496
497   if(do_detach)
498     {
499       syslog(LOG_NOTICE, _("Trying to re-execute in 5 seconds..."));
500       signal(SIGSEGV, sigsegv_square);
501       close_network_connections();
502       sleep(5);
503       remove_pid(pidfilename);
504       execvp(g_argv[0], g_argv);
505     }
506   else
507     {
508       syslog(LOG_NOTICE, _("Not restarting."));
509       exit(0);
510     }
511 }
512
513 RETSIGTYPE
514 sighup_handler(int a)
515 {
516   if(debug_lvl > DEBUG_NOTHING)
517     syslog(LOG_NOTICE, _("Got HUP signal"));
518   sighup = 1;
519 }
520
521 RETSIGTYPE
522 sigint_handler(int a)
523 {
524   if(debug_lvl > DEBUG_NOTHING)
525     syslog(LOG_NOTICE, _("Got INT signal, exiting"));
526   cleanup_and_exit(0);
527 }
528
529 RETSIGTYPE
530 sigusr1_handler(int a)
531 {
532   dump_conn_list();
533 }
534
535 RETSIGTYPE
536 sigusr2_handler(int a)
537 {
538   dump_subnet_list();
539 /* FIXME: reprogram this.
540   if(debug_lvl > DEBUG_NOTHING)
541    syslog(LOG_NOTICE, _("Got USR2 signal, forcing new key generation"));
542   regenerate_keys();
543 */
544 }
545
546 RETSIGTYPE
547 sighuh(int a)
548 {
549   syslog(LOG_WARNING, _("Got unexpected signal %d (%s)"), a, strsignal(a));
550   cp_trace();
551 }
552
553 void
554 setup_signals(void)
555 {
556   int i;
557
558   for(i=0;i<32;i++)
559     signal(i,sighuh);
560
561   if(signal(SIGTERM, SIG_IGN) != SIG_ERR)
562     signal(SIGTERM, sigterm_handler);
563   if(signal(SIGQUIT, SIG_IGN) != SIG_ERR)
564     signal(SIGQUIT, sigquit_handler);
565   if(signal(SIGSEGV, SIG_IGN) != SIG_ERR)
566     signal(SIGSEGV, sigsegv_handler);
567   if(signal(SIGHUP, SIG_IGN) != SIG_ERR)
568     signal(SIGHUP, sighup_handler);
569   signal(SIGPIPE, SIG_IGN);
570   if(signal(SIGINT, SIG_IGN) != SIG_ERR)
571     signal(SIGINT, sigint_handler);
572   signal(SIGUSR1, sigusr1_handler);
573   signal(SIGUSR2, sigusr2_handler);
574   signal(SIGCHLD, SIG_IGN);
575 }
576
577 RETSIGTYPE parent_exit(int a)
578 {
579   exit(0);
580 }