2 tincd.c -- the main file for tincd
3 Copyright (C) 1998-2003 Ivo Timmermans <ivo@o2w.nl>
4 2000-2003 Guus Sliepen <guus@sliepen.eu.org>
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.
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.
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.
20 $Id: tincd.c,v 1.10.4.90 2003/12/07 14:31:09 guus Exp $
25 /* Darwin (MacOS/X) needs the following definition... */
26 #ifndef _P1003_1B_VISIBLE
27 #define _P1003_1B_VISIBLE
30 #ifdef HAVE_SYS_MMAN_H
34 #include <openssl/rand.h>
35 #include <openssl/rsa.h>
36 #include <openssl/pem.h>
37 #include <openssl/evp.h>
54 /* The name this program was run with. */
55 char *program_name = NULL;
57 /* If nonzero, display usage information and exit. */
58 bool show_help = false;
60 /* If nonzero, print the version on standard output and exit. */
61 bool show_version = false;
63 /* If nonzero, it will attempt to kill a running tincd and exit. */
66 /* If nonzero, generate public/private keypair for this host/net. */
67 int generate_keys = 0;
69 /* If nonzero, use null ciphers and skip all key exchanges. */
70 bool bypass_security = false;
72 /* If nonzero, disable swapping for this process. */
73 bool do_mlock = false;
75 /* If nonzero, write log entries to a separate file. */
76 bool use_logfile = false;
78 char *identname = NULL; /* program name for syslog */
79 char *pidfilename = NULL; /* pid file location */
80 char *logfilename = NULL; /* log file location */
81 char **g_argv; /* a copy of the cmdline arguments */
85 static struct option const long_options[] = {
86 {"config", required_argument, NULL, 'c'},
87 {"kill", optional_argument, NULL, 'k'},
88 {"net", required_argument, NULL, 'n'},
89 {"help", no_argument, NULL, 1},
90 {"version", no_argument, NULL, 2},
91 {"no-detach", no_argument, NULL, 'D'},
92 {"generate-keys", optional_argument, NULL, 'K'},
93 {"debug", optional_argument, NULL, 'd'},
94 {"bypass-security", no_argument, NULL, 3},
95 {"mlock", no_argument, NULL, 'L'},
96 {"logfile", optional_argument, NULL, 4},
97 {"pidfile", required_argument, NULL, 5},
102 static struct WSAData wsa_state;
105 static void usage(bool status)
108 fprintf(stderr, _("Try `%s --help\' for more information.\n"),
111 printf(_("Usage: %s [option]...\n\n"), program_name);
112 printf(_(" -c, --config=DIR Read configuration options from DIR.\n"
113 " -D, --no-detach Don't fork and detach.\n"
114 " -d, --debug[=LEVEL] Increase debug level or set it to LEVEL.\n"
115 " -k, --kill[=SIGNAL] Attempt to kill a running tincd and exit.\n"
116 " -n, --net=NETNAME Connect to net NETNAME.\n"
117 " -K, --generate-keys[=BITS] Generate public/private RSA keypair.\n"
118 " -L, --mlock Lock tinc into main memory.\n"
119 " --logfile[=FILENAME] Write log entries to a logfile.\n"
120 " --pidfile=FILENAME Write PID to FILENAME.\n"
121 " --help Display this help and exit.\n"
122 " --version Output version information and exit.\n\n"));
123 printf(_("Report bugs to tinc@nl.linux.org.\n"));
127 static bool parse_options(int argc, char **argv)
130 int option_index = 0;
132 while((r = getopt_long(argc, argv, "c:DLd::k::n:K::", long_options, &option_index)) != EOF) {
134 case 0: /* long option */
137 case 'c': /* config file */
138 confbase = xstrdup(optarg);
141 case 'D': /* no detach */
145 case 'L': /* no detach */
149 case 'd': /* inc debug level */
151 debug_level = atoi(optarg);
156 case 'k': /* kill old tincds */
159 if(!strcasecmp(optarg, "HUP"))
161 else if(!strcasecmp(optarg, "TERM"))
162 kill_tincd = SIGTERM;
163 else if(!strcasecmp(optarg, "KILL"))
164 kill_tincd = SIGKILL;
165 else if(!strcasecmp(optarg, "USR1"))
166 kill_tincd = SIGUSR1;
167 else if(!strcasecmp(optarg, "USR2"))
168 kill_tincd = SIGUSR2;
169 else if(!strcasecmp(optarg, "WINCH"))
170 kill_tincd = SIGWINCH;
171 else if(!strcasecmp(optarg, "INT"))
173 else if(!strcasecmp(optarg, "ALRM"))
174 kill_tincd = SIGALRM;
176 kill_tincd = atoi(optarg);
179 fprintf(stderr, _("Invalid argument `%s'; SIGNAL must be a number or one of HUP, TERM, KILL, USR1, USR2, WINCH, INT or ALRM.\n"),
186 kill_tincd = SIGTERM;
192 case 'n': /* net name given */
193 netname = xstrdup(optarg);
196 case 'K': /* generate public/private keypair */
198 generate_keys = atoi(optarg);
200 if(generate_keys < 512) {
201 fprintf(stderr, _("Invalid argument `%s'; BITS must be a number equal to or greater than 512.\n"),
207 generate_keys &= ~7; /* Round it to bytes */
209 generate_keys = 1024;
212 case 1: /* show help */
216 case 2: /* show version */
220 case 3: /* bypass security */
221 bypass_security = true;
224 case 4: /* write log entries to a file */
227 logfilename = xstrdup(optarg);
230 case 5: /* write PID to a file */
231 pidfilename = xstrdup(optarg);
246 /* This function prettyprints the key generation process */
248 static void indicator(int a, int b, void *p)
252 fprintf(stderr, ".");
256 fprintf(stderr, "+");
260 fprintf(stderr, "-");
266 fprintf(stderr, " p\n");
270 fprintf(stderr, " q\n");
274 fprintf(stderr, "?");
279 fprintf(stderr, "?");
284 Generate a public/private RSA keypair, and ask for a file to store
287 static bool keygen(int bits)
294 fprintf(stderr, _("Generating %d bits keys:\n"), bits);
295 rsa_key = RSA_generate_key(bits, 0x10001, indicator, NULL);
298 fprintf(stderr, _("Error during key generation!\n"));
301 fprintf(stderr, _("Done.\n"));
303 asprintf(&filename, "%s/rsa_key.priv", confbase);
304 f = ask_and_open(filename, _("private RSA key"), "a");
310 /* Make it unreadable for others. */
311 fchmod(fileno(f), 0600);
315 fprintf(stderr, _("Appending key to existing contents.\nMake sure only one key is stored in the file.\n"));
317 PEM_write_RSAPrivateKey(f, rsa_key, NULL, NULL, 0, NULL, NULL);
321 get_config_string(lookup_config(config_tree, "Name"), &name);
324 asprintf(&filename, "%s/hosts/%s", confbase, name);
326 asprintf(&filename, "%s/rsa_key.pub", confbase);
328 f = ask_and_open(filename, _("public RSA key"), "a");
334 fprintf(stderr, _("Appending key to existing contents.\nMake sure only one key is stored in the file.\n"));
336 PEM_write_RSAPublicKey(f, rsa_key);
344 Set all files and paths according to netname
346 static void make_names(void)
350 char installdir[1024] = "";
351 long len = sizeof(installdir);
355 asprintf(&identname, "tinc.%s", netname);
357 identname = xstrdup("tinc");
360 if(!RegOpenKeyEx(HKEY_LOCAL_MACHINE, "SOFTWARE\\tinc", 0, KEY_READ, &key)) {
361 if(!RegQueryValueEx(key, NULL, 0, 0, installdir, &len)) {
363 asprintf(&logfilename, "%s/log/%s.log", identname);
366 asprintf(&confbase, "%s/%s", installdir, netname);
368 asprintf(&confbase, "%s", installdir);
378 asprintf(&pidfilename, LOCALSTATEDIR "/run/%s.pid", identname);
381 asprintf(&logfilename, LOCALSTATEDIR "/log/%s.log", identname);
385 asprintf(&confbase, CONFDIR "/tinc/%s", netname);
387 logger(LOG_INFO, _("Both netname and configuration directory given, using the latter..."));
390 asprintf(&confbase, CONFDIR "/tinc");
394 int main(int argc, char **argv)
396 program_name = argv[0];
398 setlocale(LC_ALL, "");
399 bindtextdomain(PACKAGE, LOCALEDIR);
402 if(!parse_options(argc, argv))
408 printf(_("%s version %s (built %s %s, protocol %d)\n"), PACKAGE,
409 VERSION, __DATE__, __TIME__, PROT_CURRENT);
410 printf(_("Copyright (C) 1998-2003 Ivo Timmermans, Guus Sliepen and others.\n"
411 "See the AUTHORS file for a complete list.\n\n"
412 "tinc comes with ABSOLUTELY NO WARRANTY. This is free software,\n"
413 "and you are welcome to redistribute it under certain conditions;\n"
414 "see the file COPYING for details.\n"));
425 return !kill_other(kill_tincd);
427 openlogger("tinc", use_logfile?LOGMODE_FILE:LOGMODE_STDERR);
429 /* Lock all pages into memory if requested */
433 if(mlockall(MCL_CURRENT | MCL_FUTURE)) {
434 logger(LOG_ERR, _("System call `%s' failed: %s"), "mlockall",
438 logger(LOG_ERR, _("mlockall() not supported on this platform!"));
445 init_configuration(&config_tree);
447 /* Slllluuuuuuurrrrp! */
449 RAND_load_file("/dev/urandom", 1024);
451 OpenSSL_add_all_algorithms();
454 read_server_config();
455 return !keygen(generate_keys);
458 if(!read_server_config())
461 if(lzo_init() != LZO_E_OK) {
462 logger(LOG_ERR, _("Error initializing LZO compressor!"));
467 if(WSAStartup(MAKEWORD(2, 2), &wsa_state)) {
468 logger(LOG_ERR, _("System call `%s' failed: %s"), "WSAStartup", winerror(GetLastError()));
472 if(!do_detach || !init_service())
473 return main2(argc, argv);
478 int main2(int argc, char **argv)
486 /* Setup sockets and open device. */
488 if(!setup_network_connections())
491 /* Start main loop. It only exits when tinc is killed. */
493 status = main_loop();
495 /* Shutdown properly. */
497 close_network_connections();
503 logger(LOG_NOTICE, _("Terminating"));
506 remove_pid(pidfilename);