2 tincd.c -- the main file for tincd
3 Copyright (C) 1998-2005 Ivo Timmermans
4 2000-2007 Guus Sliepen <guus@tinc-vpn.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.
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>
38 #include <openssl/engine.h>
55 /* The name this program was run with. */
56 char *program_name = NULL;
58 /* If nonzero, display usage information and exit. */
59 bool show_help = false;
61 /* If nonzero, print the version on standard output and exit. */
62 bool show_version = false;
64 /* If nonzero, it will attempt to kill a running tincd and exit. */
67 /* If nonzero, generate public/private keypair for this host/net. */
68 int generate_keys = 0;
70 /* If nonzero, use null ciphers and skip all key exchanges. */
71 bool bypass_security = false;
73 /* If nonzero, disable swapping for this process. */
74 bool do_mlock = false;
76 /* If nonzero, write log entries to a separate file. */
77 bool use_logfile = false;
79 char *identname = NULL; /* program name for syslog */
80 char *pidfilename = NULL; /* pid file location */
81 char *logfilename = NULL; /* log file location */
82 char **g_argv; /* a copy of the cmdline arguments */
86 static struct option const long_options[] = {
87 {"config", required_argument, NULL, 'c'},
88 {"kill", optional_argument, NULL, 'k'},
89 {"net", required_argument, NULL, 'n'},
90 {"help", no_argument, NULL, 1},
91 {"version", no_argument, NULL, 2},
92 {"no-detach", no_argument, NULL, 'D'},
93 {"generate-keys", optional_argument, NULL, 'K'},
94 {"debug", optional_argument, NULL, 'd'},
95 {"bypass-security", no_argument, NULL, 3},
96 {"mlock", no_argument, NULL, 'L'},
97 {"logfile", optional_argument, NULL, 4},
98 {"pidfile", required_argument, NULL, 5},
103 static struct WSAData wsa_state;
106 static void usage(bool status)
109 fprintf(stderr, _("Try `%s --help\' for more information.\n"),
112 printf(_("Usage: %s [option]...\n\n"), program_name);
113 printf(_(" -c, --config=DIR Read configuration options from DIR.\n"
114 " -D, --no-detach Don't fork and detach.\n"
115 " -d, --debug[=LEVEL] Increase debug level or set it to LEVEL.\n"
116 " -k, --kill[=SIGNAL] Attempt to kill a running tincd and exit.\n"
117 " -n, --net=NETNAME Connect to net NETNAME.\n"
118 " -K, --generate-keys[=BITS] Generate public/private RSA keypair.\n"
119 " -L, --mlock Lock tinc into main memory.\n"
120 " --logfile[=FILENAME] Write log entries to a logfile.\n"
121 " --pidfile=FILENAME Write PID to FILENAME.\n"
122 " --help Display this help and exit.\n"
123 " --version Output version information and exit.\n\n"));
124 printf(_("Report bugs to tinc@tinc-vpn.org.\n"));
128 static bool parse_options(int argc, char **argv)
131 int option_index = 0;
133 while((r = getopt_long(argc, argv, "c:DLd::k::n:K::", long_options, &option_index)) != EOF) {
135 case 0: /* long option */
138 case 'c': /* config file */
139 confbase = xstrdup(optarg);
142 case 'D': /* no detach */
146 case 'L': /* no detach */
150 case 'd': /* inc debug level */
152 debug_level = atoi(optarg);
157 case 'k': /* kill old tincds */
160 if(!strcasecmp(optarg, "HUP"))
162 else if(!strcasecmp(optarg, "TERM"))
163 kill_tincd = SIGTERM;
164 else if(!strcasecmp(optarg, "KILL"))
165 kill_tincd = SIGKILL;
166 else if(!strcasecmp(optarg, "USR1"))
167 kill_tincd = SIGUSR1;
168 else if(!strcasecmp(optarg, "USR2"))
169 kill_tincd = SIGUSR2;
170 else if(!strcasecmp(optarg, "WINCH"))
171 kill_tincd = SIGWINCH;
172 else if(!strcasecmp(optarg, "INT"))
174 else if(!strcasecmp(optarg, "ALRM"))
175 kill_tincd = SIGALRM;
177 kill_tincd = atoi(optarg);
180 fprintf(stderr, _("Invalid argument `%s'; SIGNAL must be a number or one of HUP, TERM, KILL, USR1, USR2, WINCH, INT or ALRM.\n"),
187 kill_tincd = SIGTERM;
193 case 'n': /* net name given */
194 netname = xstrdup(optarg);
197 case 'K': /* generate public/private keypair */
199 generate_keys = atoi(optarg);
201 if(generate_keys < 512) {
202 fprintf(stderr, _("Invalid argument `%s'; BITS must be a number equal to or greater than 512.\n"),
208 generate_keys &= ~7; /* Round it to bytes */
210 generate_keys = 1024;
213 case 1: /* show help */
217 case 2: /* show version */
221 case 3: /* bypass security */
222 bypass_security = true;
225 case 4: /* write log entries to a file */
228 logfilename = xstrdup(optarg);
231 case 5: /* write PID to a file */
232 pidfilename = xstrdup(optarg);
247 /* This function prettyprints the key generation process */
249 static void indicator(int a, int b, void *p)
253 fprintf(stderr, ".");
257 fprintf(stderr, "+");
261 fprintf(stderr, "-");
267 fprintf(stderr, " p\n");
271 fprintf(stderr, " q\n");
275 fprintf(stderr, "?");
280 fprintf(stderr, "?");
285 Generate a public/private RSA keypair, and ask for a file to store
288 static bool keygen(int bits)
295 fprintf(stderr, _("Generating %d bits keys:\n"), bits);
296 rsa_key = RSA_generate_key(bits, 0x10001, indicator, NULL);
299 fprintf(stderr, _("Error during key generation!\n"));
302 fprintf(stderr, _("Done.\n"));
304 asprintf(&filename, "%s/rsa_key.priv", confbase);
305 f = ask_and_open(filename, _("private RSA key"), "a");
311 /* Make it unreadable for others. */
312 fchmod(fileno(f), 0600);
316 fprintf(stderr, _("Appending key to existing contents.\nMake sure only one key is stored in the file.\n"));
318 PEM_write_RSAPrivateKey(f, rsa_key, NULL, NULL, 0, NULL, NULL);
322 get_config_string(lookup_config(config_tree, "Name"), &name);
325 asprintf(&filename, "%s/hosts/%s", confbase, name);
327 asprintf(&filename, "%s/rsa_key.pub", confbase);
329 f = ask_and_open(filename, _("public RSA key"), "a");
335 fprintf(stderr, _("Appending key to existing contents.\nMake sure only one key is stored in the file.\n"));
337 PEM_write_RSAPublicKey(f, rsa_key);
345 Set all files and paths according to netname
347 static void make_names(void)
351 char installdir[1024] = "";
352 long len = sizeof(installdir);
356 asprintf(&identname, "tinc.%s", netname);
358 identname = xstrdup("tinc");
361 if(!RegOpenKeyEx(HKEY_LOCAL_MACHINE, "SOFTWARE\\tinc", 0, KEY_READ, &key)) {
362 if(!RegQueryValueEx(key, NULL, 0, 0, installdir, &len)) {
364 asprintf(&logfilename, "%s/log/%s.log", identname);
367 asprintf(&confbase, "%s/%s", installdir, netname);
369 asprintf(&confbase, "%s", installdir);
379 asprintf(&pidfilename, LOCALSTATEDIR "/run/%s.pid", identname);
382 asprintf(&logfilename, LOCALSTATEDIR "/log/%s.log", identname);
386 asprintf(&confbase, CONFDIR "/tinc/%s", netname);
388 logger(LOG_INFO, _("Both netname and configuration directory given, using the latter..."));
391 asprintf(&confbase, CONFDIR "/tinc");
395 int main(int argc, char **argv)
397 program_name = argv[0];
399 setlocale(LC_ALL, "");
400 bindtextdomain(PACKAGE, LOCALEDIR);
403 if(!parse_options(argc, argv))
409 printf(_("%s version %s (built %s %s, protocol %d)\n"), PACKAGE,
410 VERSION, __DATE__, __TIME__, PROT_CURRENT);
411 printf(_("Copyright (C) 1998-2007 Ivo Timmermans, Guus Sliepen and others.\n"
412 "See the AUTHORS file for a complete list.\n\n"
413 "tinc comes with ABSOLUTELY NO WARRANTY. This is free software,\n"
414 "and you are welcome to redistribute it under certain conditions;\n"
415 "see the file COPYING for details.\n"));
426 return !kill_other(kill_tincd);
428 openlogger("tinc", use_logfile?LOGMODE_FILE:LOGMODE_STDERR);
430 /* Lock all pages into memory if requested */
434 if(mlockall(MCL_CURRENT | MCL_FUTURE)) {
435 logger(LOG_ERR, _("System call `%s' failed: %s"), "mlockall",
439 logger(LOG_ERR, _("mlockall() not supported on this platform!"));
446 init_configuration(&config_tree);
448 /* Slllluuuuuuurrrrp! */
450 RAND_load_file("/dev/urandom", 1024);
452 ENGINE_load_builtin_engines();
453 ENGINE_register_all_complete();
455 OpenSSL_add_all_algorithms();
458 read_server_config();
459 return !keygen(generate_keys);
462 if(!read_server_config())
465 if(lzo_init() != LZO_E_OK) {
466 logger(LOG_ERR, _("Error initializing LZO compressor!"));
471 if(WSAStartup(MAKEWORD(2, 2), &wsa_state)) {
472 logger(LOG_ERR, _("System call `%s' failed: %s"), "WSAStartup", winerror(GetLastError()));
476 if(!do_detach || !init_service())
477 return main2(argc, argv);
482 int main2(int argc, char **argv)
490 /* Setup sockets and open device. */
492 if(!setup_network_connections())
495 /* Start main loop. It only exits when tinc is killed. */
497 status = main_loop();
499 /* Shutdown properly. */
501 close_network_connections();
507 logger(LOG_NOTICE, _("Terminating"));
510 remove_pid(pidfilename);