Option -d accepts an argument to set the debug level immediately.
[tinc] / 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.38 2000/12/03 12:23:06 zarq 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 <string.h>
35 #include <termios.h>
36
37 #ifdef HAVE_SYS_IOCTL_H
38 # include <sys/ioctl.h>
39 #endif
40
41 #ifdef HAVE_OPENSSL_RAND_H
42 # include <openssl/rand.h>
43 #else
44 # include <rand.h>
45 #endif
46
47 #ifdef HAVE_OPENSSL_RSA_H
48 # include <openssl/rsa.h>
49 #else
50 # include <rsa.h>
51 #endif
52
53 #ifdef HAVE_OPENSSL_ERR_H
54 # include <openssl/err.h>
55 #else
56 # include <err.h>
57 #endif
58
59 #ifdef HAVE_OPENSSL_PEM_H
60 # include <openssl/pem.h>
61 #else
62 # include <pem.h>
63 #endif
64
65
66
67 #include <utils.h>
68 #include <xalloc.h>
69
70 #include "conf.h"
71 #include "net.h"
72 #include "netutl.h"
73 #include "process.h"
74 #include "protocol.h"
75 #include "subnet.h"
76
77 #include "system.h"
78
79 /* The name this program was run with. */
80 char *program_name;
81
82 /* If nonzero, display usage information and exit. */
83 static int show_help;
84
85 /* If nonzero, print the version on standard output and exit.  */
86 static int show_version;
87
88 /* If nonzero, it will attempt to kill a running tincd and exit. */
89 static int kill_tincd = 0;
90
91 /* If zero, don't detach from the terminal. */
92 extern int do_detach;
93
94 /* If nonzero, generate public/private keypair for this host/net. */
95 static int generate_keys = 0;
96
97 char *identname;                 /* program name for syslog */
98 char *pidfilename;               /* pid file location */
99 char **g_argv;                   /* a copy of the cmdline arguments */
100 char **environment;              /* A pointer to the environment on
101                                     startup */
102
103 static struct option const long_options[] =
104 {
105   { "config", required_argument, NULL, 'c' },
106   { "kill", no_argument, NULL, 'k' },
107   { "net", required_argument, NULL, 'n' },
108   { "help", no_argument, &show_help, 1 },
109   { "version", no_argument, &show_version, 1 },
110   { "no-detach", no_argument, &do_detach, 0 },
111   { "generate-keys", optional_argument, NULL, 'K'},
112   { NULL, 0, NULL, 0 }
113 };
114
115 static void
116 usage(int status)
117 {
118   if(status != 0)
119     fprintf(stderr, _("Try `%s --help\' for more information.\n"), program_name);
120   else
121     {
122       printf(_("Usage: %s [option]...\n\n"), program_name);
123       printf(_("  -c, --config=DIR           Read configuration options from DIR.\n"
124                "  -D, --no-detach            Don't fork and detach.\n"
125                "  -d                         Increase debug level.\n"
126                "  -k, --kill                 Attempt to kill a running tincd and exit.\n"
127                "  -n, --net=NETNAME          Connect to net NETNAME.\n"));
128       printf(_("  -K, --generate-keys[=BITS] Generate public/private RSA keypair.\n"
129                "      --help                 Display this help and exit.\n"
130                "      --version              Output version information and exit.\n\n"));
131       printf(_("Report bugs to tinc@nl.linux.org.\n"));
132     }
133   exit(status);
134 }
135
136 void
137 parse_options(int argc, char **argv, char **envp)
138 {
139   int r;
140   int option_index = 0;
141   
142   while((r = getopt_long(argc, argv, "c:Ddkn:K::", long_options, &option_index)) != EOF)
143     {
144       switch(r)
145         {
146         case 0: /* long option */
147           break;
148         case 'c': /* config file */
149           confbase = xmalloc(strlen(optarg)+1);
150           strcpy(confbase, optarg);
151           break;
152         case 'D': /* no detach */
153           do_detach = 0;
154           break;
155         case 'd': /* inc debug level */
156           if(optarg)
157             debug_lvl = atoi(optarg);
158           else
159             debug_lvl++;
160           break;
161         case 'k': /* kill old tincds */
162           kill_tincd = 1;
163           break;
164         case 'n': /* net name given */
165           netname = xmalloc(strlen(optarg)+1);
166           strcpy(netname, optarg);
167           break;
168         case 'K': /* generate public/private keypair */
169           if(optarg)
170             {
171               generate_keys = atoi(optarg);
172               if(generate_keys < 512)
173                 {
174                   fprintf(stderr, _("Invalid argument `%s'; BITS must be a number equal to or greater than 512.\n"),
175                           optarg);
176                   usage(1);
177                 }
178               generate_keys &= ~7;      /* Round it to bytes */
179             }
180           else
181             generate_keys = 1024;
182           break;
183         case '?':
184           usage(1);
185         default:
186           break;
187         }
188     }
189 }
190
191 /* This function prettyprints the key generation process */
192
193 void indicator(int a, int b, void *p)
194 {
195   switch(a)
196   {
197     case 0:
198       fprintf(stderr, ".");
199       break;
200     case 1:
201       fprintf(stderr, "+");
202       break;
203     case 2:
204       fprintf(stderr, "-");
205       break;
206     case 3:
207       switch(b)
208         {
209           case 0:
210             fprintf(stderr, " p\n");      
211             break;
212           case 1:
213             fprintf(stderr, " q\n");
214             break;
215           default:
216             fprintf(stderr, "?");
217          }
218        break;
219     default:
220       fprintf(stderr, "?");
221   }
222 }
223
224 /*
225   Generate a public/private RSA keypair, and ask for a file to store
226   them in.
227 */
228 int keygen(int bits)
229 {
230   RSA *rsa_key;
231   FILE *f;
232
233   fprintf(stderr, _("Generating %d bits keys:\n"), bits);
234   rsa_key = RSA_generate_key(bits, 0xFFFF, indicator, NULL);
235   if(!rsa_key)
236     {
237       fprintf(stderr, _("Error during key generation!"));
238       return -1;
239      }
240   else
241     fprintf(stderr, _("Done.\n"));
242
243   if((f = ask_and_safe_open("rsa_key.pub", _("public RSA key"))) == NULL)
244     return -1;
245   PEM_write_RSAPublicKey(f, rsa_key);
246   fclose(f);
247   
248   if((f = ask_and_safe_open("rsa_key.priv", _("private RSA key"))) == NULL)
249     return -1;
250   PEM_write_RSAPrivateKey(f, rsa_key, NULL, NULL, 0, NULL, NULL);
251   fclose(f);
252
253   return 0;
254 }
255
256 /*
257   Set all files and paths according to netname
258 */
259 void make_names(void)
260 {
261   if(netname)
262     {
263       if(!pidfilename)
264         asprintf(&pidfilename, LOCALSTATEDIR "/run/tinc.%s.pid", netname);
265       if(!confbase)
266         asprintf(&confbase, "%s/tinc/%s", CONFDIR, netname);
267       else
268         fprintf(stderr, _("Both netname and configuration directory given, using the latter...\n"));
269       if(!identname)
270         asprintf(&identname, "tinc.%s", netname);
271     }
272   else
273     {
274       if(!pidfilename)
275         pidfilename = LOCALSTATEDIR "/run/tinc.pid";
276       if(!confbase)
277         asprintf(&confbase, "%s/tinc", CONFDIR);
278       if(!identname)
279         identname = "tinc";
280     }
281 }
282
283 int
284 main(int argc, char **argv, char **envp)
285 {
286   program_name = argv[0];
287
288   setlocale (LC_ALL, "");
289   bindtextdomain (PACKAGE, LOCALEDIR);
290   textdomain (PACKAGE);
291
292   /* Do some intl stuff right now */
293   
294   unknown = _("unknown");
295
296   environment = envp;
297   parse_options(argc, argv, envp);
298
299   if(show_version)
300     {
301       printf(_("%s version %s (built %s %s, protocol %d)\n"), PACKAGE, VERSION, __DATE__, __TIME__, PROT_CURRENT);
302       printf(_("Copyright (C) 1998,1999,2000 Ivo Timmermans, Guus Sliepen and others.\n"
303                "See the AUTHORS file for a complete list.\n\n"
304                "tinc comes with ABSOLUTELY NO WARRANTY.  This is free software,\n"
305                "and you are welcome to redistribute it under certain conditions;\n"
306                "see the file COPYING for details.\n"));
307
308       return 0;
309     }
310
311   if(show_help)
312     usage(0);
313
314   if(geteuid())
315     {
316       fprintf(stderr, _("You must be root to run this program. Sorry.\n"));
317       return 1;
318     }
319
320   g_argv = argv;
321
322   make_names();
323
324   /* Slllluuuuuuurrrrp! */
325
326   RAND_load_file("/dev/urandom", 1024);
327
328   if(generate_keys)
329     exit(keygen(generate_keys));
330
331   if(kill_tincd)
332     exit(kill_other());
333
334   if(read_server_config())
335     return 1;
336
337   if(detach())
338     exit(0);
339
340   if(debug_lvl >= DEBUG_ERROR)
341     ERR_load_crypto_strings();
342     
343   for(;;)
344     {
345       if(!setup_network_connections())
346         {
347           main_loop();
348           cleanup_and_exit(1);
349         }
350       
351       syslog(LOG_ERR, _("Unrecoverable error"));
352       cp_trace();
353
354       if(do_detach)
355         {
356           syslog(LOG_NOTICE, _("Restarting in %d seconds!"), MAXTIMEOUT);
357           sleep(MAXTIMEOUT);
358         }
359       else
360         {
361           syslog(LOG_ERR, _("Not restarting."));
362           exit(0);
363         }
364     }
365 }
366