2 tincd.c -- the main file for tincd
3 Copyright (C) 1998-2005 Ivo Timmermans
4 2000-2011 Guus Sliepen <guus@tinc-vpn.org>
5 2008 Max Rijevski <maksuf@gmail.com>
6 2009 Michael Tokarev <mjt@tls.msk.ru>
7 2010 Julien Muchembled <jm@jmuchemb.eu>
8 2010 Timothy Redaelli <timothy@redaelli.eu>
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License along
21 with this program; if not, write to the Free Software Foundation, Inc.,
22 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 /* Darwin (MacOS/X) needs the following definition... */
28 #ifndef _P1003_1B_VISIBLE
29 #define _P1003_1B_VISIBLE
32 #ifdef HAVE_SYS_MMAN_H
36 #include <openssl/rand.h>
37 #include <openssl/rsa.h>
38 #include <openssl/pem.h>
39 #include <openssl/evp.h>
40 #include <openssl/engine.h>
66 /* The name this program was run with. */
67 char *program_name = NULL;
69 /* If nonzero, display usage information and exit. */
70 static bool show_help = false;
72 /* If nonzero, print the version on standard output and exit. */
73 static bool show_version = false;
75 /* If nonzero, use null ciphers and skip all key exchanges. */
76 bool bypass_security = false;
78 /* If nonzero, disable swapping for this process. */
79 static bool do_mlock = false;
81 /* If nonzero, chroot to netdir after startup. */
82 static bool do_chroot = false;
84 /* If !NULL, do setuid to given user after startup */
85 static const char *switchuser = NULL;
87 /* If nonzero, write log entries to a separate file. */
88 bool use_logfile = false;
90 char *identname = NULL; /* program name for syslog */
91 char *logfilename = NULL; /* log file location */
92 char *controlcookiename = NULL;
93 char **g_argv; /* a copy of the cmdline arguments */
97 static struct option const long_options[] = {
98 {"config", required_argument, NULL, 'c'},
99 {"net", required_argument, NULL, 'n'},
100 {"help", no_argument, NULL, 1},
101 {"version", no_argument, NULL, 2},
102 {"no-detach", no_argument, NULL, 'D'},
103 {"debug", optional_argument, NULL, 'd'},
104 {"bypass-security", no_argument, NULL, 3},
105 {"mlock", no_argument, NULL, 'L'},
106 {"chroot", no_argument, NULL, 'R'},
107 {"user", required_argument, NULL, 'U'},
108 {"logfile", optional_argument, NULL, 4},
109 {"controlcookie", required_argument, NULL, 5},
114 static struct WSAData wsa_state;
115 CRITICAL_SECTION mutex;
116 int main2(int argc, char **argv);
119 static void usage(bool status) {
121 fprintf(stderr, "Try `%s --help\' for more information.\n",
124 printf("Usage: %s [option]...\n\n", program_name);
125 printf( " -c, --config=DIR Read configuration options from DIR.\n"
126 " -D, --no-detach Don't fork and detach.\n"
127 " -d, --debug[=LEVEL] Increase debug level or set it to LEVEL.\n"
128 " -n, --net=NETNAME Connect to net NETNAME.\n"
129 " -L, --mlock Lock tinc into main memory.\n"
130 " --logfile[=FILENAME] Write log entries to a logfile.\n"
131 " --controlcookie=FILENAME Write control socket cookie to FILENAME.\n"
132 " --bypass-security Disables meta protocol security, for debugging.\n"
133 " -o [HOST.]KEY=VALUE Set global/host configuration value.\n"
134 " -R, --chroot chroot to NET dir at startup.\n"
135 " -U, --user=USER setuid to given USER at startup.\n" " --help Display this help and exit.\n"
136 " --version Output version information and exit.\n\n");
137 printf("Report bugs to tinc@tinc-vpn.org.\n");
141 static bool parse_options(int argc, char **argv) {
144 int option_index = 0;
147 cmdline_conf = list_alloc((list_action_t)free_config);
149 while((r = getopt_long(argc, argv, "c:DLd::n:o:RU:", long_options, &option_index)) != EOF) {
151 case 0: /* long option */
154 case 'c': /* config file */
155 confbase = xstrdup(optarg);
158 case 'D': /* no detach */
162 case 'L': /* no detach */
163 #ifndef HAVE_MLOCKALL
164 logger(LOG_ERR, "%s not supported on this platform", "mlockall()");
171 case 'd': /* inc debug level */
173 debug_level = atoi(optarg);
178 case 'n': /* net name given */
179 /* netname "." is special: a "top-level name" */
180 netname = strcmp(optarg, ".") != 0 ?
181 xstrdup(optarg) : NULL;
184 case 'o': /* option */
185 cfg = parse_config_line(optarg, NULL, ++lineno);
188 list_insert_tail(cmdline_conf, cfg);
191 case 'R': /* chroot to NETNAME dir */
195 case 'U': /* setuid to USER */
199 case 1: /* show help */
203 case 2: /* show version */
207 case 3: /* bypass security */
208 bypass_security = true;
211 case 4: /* write log entries to a file */
214 logfilename = xstrdup(optarg);
217 case 5: /* open control socket here */
218 controlcookiename = xstrdup(optarg);
234 Set all files and paths according to netname
236 static void make_names(void) {
239 char installdir[1024] = "";
240 long len = sizeof installdir;
244 xasprintf(&identname, "tinc.%s", netname);
246 identname = xstrdup("tinc");
249 if(!RegOpenKeyEx(HKEY_LOCAL_MACHINE, "SOFTWARE\\tinc", 0, KEY_READ, &key)) {
250 if(!RegQueryValueEx(key, NULL, 0, 0, installdir, &len)) {
252 xasprintf(&logfilename, "%s/log/%s.log", identname);
255 xasprintf(&confbase, "%s/%s", installdir, netname);
257 xasprintf(&confbase, "%s", installdir);
259 if(!controlcookiename)
260 xasprintf(&controlcookiename, "%s/cookie", confbase);
269 xasprintf(&logfilename, LOCALSTATEDIR "/log/%s.log", identname);
271 if(!controlcookiename)
272 xasprintf(&controlcookiename, LOCALSTATEDIR "/run/%s.cookie", identname);
276 xasprintf(&confbase, CONFDIR "/tinc/%s", netname);
278 logger(LOG_INFO, "Both netname and configuration directory given, using the latter...");
281 xasprintf(&confbase, CONFDIR "/tinc");
285 static void free_names(void) {
286 if (identname) free(identname);
287 if (netname) free(netname);
288 if (controlcookiename) free(controlcookiename);
289 if (logfilename) free(logfilename);
290 if (confbase) free(confbase);
293 static bool drop_privs(void) {
296 logger(LOG_ERR, "%s not supported on this platform", "-U");
300 logger(LOG_ERR, "%s not supported on this platform", "-R");
306 struct passwd *pw = getpwnam(switchuser);
308 logger(LOG_ERR, "unknown user `%s'", switchuser);
312 if (initgroups(switchuser, pw->pw_gid) != 0 ||
313 setgid(pw->pw_gid) != 0) {
314 logger(LOG_ERR, "System call `%s' failed: %s",
315 "initgroups", strerror(errno));
322 tzset(); /* for proper timestamps in logs */
323 if (chroot(confbase) != 0 || chdir("/") != 0) {
324 logger(LOG_ERR, "System call `%s' failed: %s",
325 "chroot", strerror(errno));
329 confbase = xstrdup("");
332 if (setuid(uid) != 0) {
333 logger(LOG_ERR, "System call `%s' failed: %s",
334 "setuid", strerror(errno));
342 # define setpriority(level) !SetPriorityClass(GetCurrentProcess(), (level))
344 # define NORMAL_PRIORITY_CLASS 0
345 # define BELOW_NORMAL_PRIORITY_CLASS 10
346 # define HIGH_PRIORITY_CLASS -10
347 # define setpriority(level) (setpriority(PRIO_PROCESS, 0, (level)))
350 int main(int argc, char **argv) {
351 program_name = argv[0];
353 if(!parse_options(argc, argv))
359 printf("%s version %s (built %s %s, protocol %d)\n", PACKAGE,
360 VERSION, __DATE__, __TIME__, PROT_CURRENT);
361 printf("Copyright (C) 1998-2011 Ivo Timmermans, Guus Sliepen and others.\n"
362 "See the AUTHORS file for a complete list.\n\n"
363 "tinc comes with ABSOLUTELY NO WARRANTY. This is free software,\n"
364 "and you are welcome to redistribute it under certain conditions;\n"
365 "see the file COPYING for details.\n");
376 if(WSAStartup(MAKEWORD(2, 2), &wsa_state)) {
377 logger(LOG_ERR, "System call `%s' failed: %s", "WSAStartup", winerror(GetLastError()));
382 openlogger("tinc", use_logfile?LOGMODE_FILE:LOGMODE_STDERR);
385 logger(LOG_ERR, "Error initializing libevent!");
391 init_configuration(&config_tree);
393 /* Slllluuuuuuurrrrp! */
398 if(!read_server_config())
402 if(lzo_init() != LZO_E_OK) {
403 logger(LOG_ERR, "Error initializing LZO compressor!");
409 if(!do_detach || !init_service())
410 return main2(argc, argv);
415 int main2(int argc, char **argv) {
416 InitializeCriticalSection(&mutex);
417 EnterCriticalSection(&mutex);
424 /* Lock all pages into memory if requested.
425 * This has to be done after daemon()/fork() so it works for child.
426 * No need to do that in parent as it's very short-lived. */
427 if(do_mlock && mlockall(MCL_CURRENT | MCL_FUTURE) != 0) {
428 logger(LOG_ERR, "System call `%s' failed: %s", "mlockall",
434 /* Setup sockets and open device. */
442 /* Initiate all outgoing connections. */
444 try_outgoing_connections();
446 /* Change process priority */
448 char *priority = NULL;
450 if(get_config_string(lookup_config(config_tree, "ProcessPriority"), &priority)) {
451 if(!strcasecmp(priority, "Normal")) {
452 if (setpriority(NORMAL_PRIORITY_CLASS) != 0) {
453 logger(LOG_ERR, "System call `%s' failed: %s",
454 "setpriority", strerror(errno));
457 } else if(!strcasecmp(priority, "Low")) {
458 if (setpriority(BELOW_NORMAL_PRIORITY_CLASS) != 0) {
459 logger(LOG_ERR, "System call `%s' failed: %s",
460 "setpriority", strerror(errno));
463 } else if(!strcasecmp(priority, "High")) {
464 if (setpriority(HIGH_PRIORITY_CLASS) != 0) {
465 logger(LOG_ERR, "System call `%s' failed: %s",
466 "setpriority", strerror(errno));
470 logger(LOG_ERR, "Invalid priority `%s`!", priority);
475 /* drop privileges */
479 /* Start main loop. It only exits when tinc is killed. */
481 status = main_loop();
483 /* Shutdown properly. */
488 close_network_connections();
491 logger(LOG_NOTICE, "Terminating");
497 exit_configuration(&config_tree);