Removed lots of compiler warnings.
[tinc] / src / tincd.c
1 /*
2     tincd.c -- the main file for tincd
3     Copyright (C) 1998-2001 Ivo Timmermans <itimmermans@bigfoot.com>
4                   2000,2001 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.44 2001/02/27 16:37:31 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 <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   config_t const *cfg;
233   char *filename;
234
235   fprintf(stderr, _("Generating %d bits keys:\n"), bits);
236   rsa_key = RSA_generate_key(bits, 0xFFFF, indicator, NULL);
237
238   if(!rsa_key)
239     {
240       fprintf(stderr, _("Error during key generation!"));
241       return -1;
242      }
243   else
244     fprintf(stderr, _("Done.\n"));
245
246   if(config && (cfg = get_config_val(config, config_name)))
247     asprintf(&filename, "%s/hosts/%s", confbase, cfg->data.ptr);
248   else
249     asprintf(&filename, "%s/rsa_key.priv", confbase);
250
251   if((f = ask_and_safe_open(filename, _("public RSA key"), "a")) == NULL)
252     return -1;
253
254   if(ftell(f))
255     fprintf(stderr, _("Appending key to existing contents.\nMake sure only one key is stored in the file.\n"));
256
257   PEM_write_RSAPublicKey(f, rsa_key);
258   fclose(f);
259   free(filename);
260   
261   asprintf(&filename, "%s/rsa_key.priv", confbase);
262   if((f = ask_and_safe_open(filename, _("private RSA key"), "a")) == NULL)
263     return -1;
264
265   if(ftell(f))
266     fprintf(stderr, _("Appending key to existing contents.\nMake sure only one key is stored in the file.\n"));
267
268   PEM_write_RSAPrivateKey(f, rsa_key, NULL, NULL, 0, NULL, NULL);
269   fclose(f);
270   free(filename);
271
272   return 0;
273 }
274
275 /*
276   Set all files and paths according to netname
277 */
278 void make_names(void)
279 {
280   if(netname)
281     {
282       if(!pidfilename)
283         asprintf(&pidfilename, LOCALSTATEDIR "/run/tinc.%s.pid", netname);
284       if(!confbase)
285         asprintf(&confbase, "%s/tinc/%s", CONFDIR, netname);
286       else
287         syslog(LOG_INFO, _("Both netname and configuration directory given, using the latter..."));
288       if(!identname)
289         asprintf(&identname, "tinc.%s", netname);
290     }
291   else
292     {
293       if(!pidfilename)
294         pidfilename = LOCALSTATEDIR "/run/tinc.pid";
295       if(!confbase)
296         asprintf(&confbase, "%s/tinc", CONFDIR);
297       if(!identname)
298         identname = "tinc";
299     }
300 }
301
302 int
303 main(int argc, char **argv, char **envp)
304 {
305   program_name = argv[0];
306
307   setlocale (LC_ALL, "");
308   bindtextdomain (PACKAGE, LOCALEDIR);
309   textdomain (PACKAGE);
310
311   /* Do some intl stuff right now */
312   
313   unknown = _("unknown");
314
315   environment = envp;
316   parse_options(argc, argv, envp);
317
318   if(show_version)
319     {
320       printf(_("%s version %s (built %s %s, protocol %d)\n"), PACKAGE, VERSION, __DATE__, __TIME__, PROT_CURRENT);
321       printf(_("Copyright (C) 1998-2001 Ivo Timmermans, Guus Sliepen and others.\n"
322                "See the AUTHORS file for a complete list.\n\n"
323                "tinc comes with ABSOLUTELY NO WARRANTY.  This is free software,\n"
324                "and you are welcome to redistribute it under certain conditions;\n"
325                "see the file COPYING for details.\n"));
326
327       return 0;
328     }
329
330   if(show_help)
331     usage(0);
332
333   if(geteuid())
334     {
335       fprintf(stderr, _("You must be root to run this program.\n"));
336       return 1;
337     }
338
339   openlog("tinc", LOG_PERROR, LOG_DAEMON);      /* Catch all syslog() calls issued before detaching */
340
341   g_argv = argv;
342
343   make_names();
344
345   /* Slllluuuuuuurrrrp! */
346 cp
347   RAND_load_file("/dev/urandom", 1024);
348 cp
349   if(generate_keys)
350     {
351       read_server_config();
352       exit(keygen(generate_keys));
353     }
354     
355   if(kill_tincd)
356     exit(kill_other());
357
358   if(read_server_config())
359     return 1;
360 cp
361   if(detach())
362     exit(0);
363 cp
364   if(debug_lvl >= DEBUG_ERROR)
365     ERR_load_crypto_strings();
366     
367   for(;;)
368     {
369       if(!setup_network_connections())
370         {
371           main_loop();
372           cleanup_and_exit(1);
373         }
374       
375       syslog(LOG_ERR, _("Unrecoverable error"));
376       cp_trace();
377
378       if(do_detach)
379         {
380           syslog(LOG_NOTICE, _("Restarting in %d seconds!"), MAXTIMEOUT);
381           sleep(MAXTIMEOUT);
382         }
383       else
384         {
385           syslog(LOG_ERR, _("Not restarting."));
386           exit(0);
387         }
388     }
389 }
390