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