Systemd/main.c

336 lines
9.5 KiB
C
Raw Normal View History

2009-11-18 00:42:52 +01:00
/*-*- Mode: C; c-basic-offset: 8 -*-*/
/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
systemd is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <dbus/dbus.h>
2009-11-18 00:42:52 +01:00
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
2010-04-06 21:59:25 +02:00
#include <sys/types.h>
#include <sys/stat.h>
#include <getopt.h>
2009-11-18 00:42:52 +01:00
#include "manager.h"
#include "log.h"
2010-04-06 21:59:25 +02:00
#include "mount-setup.h"
2009-11-18 00:42:52 +01:00
static enum {
ACTION_RUN,
ACTION_HELP
} action = ACTION_RUN;
static char *default_unit = NULL;
2010-04-06 23:55:42 +02:00
static ManagerRunningAs running_as = _MANAGER_RUNNING_AS_INVALID;
static int set_default_unit(const char *u) {
char *c;
assert(u);
if (!(c = strdup(u)))
return -ENOMEM;
free(default_unit);
default_unit = c;
return 0;
}
static int parse_proc_cmdline_word(const char *word) {
static const char * const rlmap[] = {
"single", SPECIAL_RUNLEVEL1_TARGET,
"-s", SPECIAL_RUNLEVEL1_TARGET,
"s", SPECIAL_RUNLEVEL1_TARGET,
"S", SPECIAL_RUNLEVEL1_TARGET,
"1", SPECIAL_RUNLEVEL1_TARGET,
"2", SPECIAL_RUNLEVEL2_TARGET,
"3", SPECIAL_RUNLEVEL3_TARGET,
"4", SPECIAL_RUNLEVEL4_TARGET,
"5", SPECIAL_RUNLEVEL5_TARGET
};
if (startswith(word, "systemd.default="))
return set_default_unit(word + 15);
else if (startswith(word, "systemd.log_target=")) {
if (log_set_target_from_string(word + 19) < 0)
log_warning("Failed to parse log target %s. Ignoring.", word + 19);
} else if (startswith(word, "systemd.log_level=")) {
if (log_set_max_level_from_string(word + 18) < 0)
log_warning("Failed to parse log level %s. Ignoring.", word + 18);
} else {
unsigned i;
/* SysV compatibility */
for (i = 0; i < ELEMENTSOF(rlmap); i += 2)
if (streq(word, rlmap[i]))
return set_default_unit(rlmap[i+1]);
}
return 0;
}
static int parse_proc_cmdline(void) {
char *line;
int r;
char *w;
size_t l;
char *state;
if ((r = read_one_line_file("/proc/cmdline", &line)) < 0) {
log_warning("Failed to read /proc/cmdline, ignoring: %s", strerror(errno));
return 0;
}
FOREACH_WORD_QUOTED(w, l, line, state) {
char *word;
if (!(word = strndup(w, l))) {
r = -ENOMEM;
goto finish;
}
r = parse_proc_cmdline_word(word);
free(word);
if (r < 0)
goto finish;
}
r = 0;
finish:
free(line);
return r;
}
static int parse_argv(int argc, char *argv[]) {
enum {
ARG_LOG_LEVEL = 0x100,
ARG_LOG_TARGET,
2010-04-06 23:55:42 +02:00
ARG_DEFAULT,
ARG_RUNNING_AS
};
static const struct option options[] = {
{ "log-level", required_argument, NULL, ARG_LOG_LEVEL },
{ "log-target", required_argument, NULL, ARG_LOG_TARGET },
{ "default", required_argument, NULL, ARG_DEFAULT },
2010-04-06 23:55:42 +02:00
{ "running-as", required_argument, NULL, ARG_RUNNING_AS },
{ "help", no_argument, NULL, 'h' },
{ NULL, 0, NULL, 0 }
};
int c, r;
assert(argc >= 1);
assert(argv);
while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0)
switch (c) {
case ARG_LOG_LEVEL:
if ((r = log_set_max_level_from_string(optarg)) < 0) {
log_error("Failed to parse log level %s.", optarg);
return r;
}
break;
case ARG_LOG_TARGET:
if ((r = log_set_target_from_string(optarg)) < 0) {
log_error("Failed to parse log target %s.", optarg);
return r;
}
break;
case ARG_DEFAULT:
if ((r = set_default_unit(optarg)) < 0) {
log_error("Failed to set default unit %s: %s", optarg, strerror(-r));
return r;
}
break;
2010-04-06 23:55:42 +02:00
case ARG_RUNNING_AS: {
ManagerRunningAs as;
if ((as = manager_running_as_from_string(optarg)) < 0) {
log_error("Failed to parse running as value %s", optarg);
return -EINVAL;
}
running_as = as;
break;
}
case 'h':
action = ACTION_HELP;
break;
case '?':
return -EINVAL;
default:
log_error("Unknown option code %c", c);
return -EINVAL;
}
if (optind < argc) {
log_error("Too many arguments.");
return -EINVAL;
}
return 0;
}
static int help(void) {
printf("%s [options]\n\n"
" -h --help Show this help\n"
" --default=UNIT Set default unit\n"
" --log-level=LEVEL Set log level\n"
2010-04-06 23:55:42 +02:00
" --log-target=TARGET Set log target (console, syslog, kmsg)\n"
" --running-as=AS Set running as (init, system, sesstion)\n",
__progname);
return 0;
}
2009-11-18 00:42:52 +01:00
int main(int argc, char *argv[]) {
Manager *m = NULL;
2010-01-26 21:39:06 +01:00
Unit *target = NULL;
2009-11-18 00:42:52 +01:00
Job *job = NULL;
int r, retval = 1;
2010-04-06 23:55:42 +02:00
if (getpid() == 1)
running_as = MANAGER_INIT;
else if (getuid() == 0)
running_as = MANAGER_SYSTEM;
else
running_as = MANAGER_SESSION;
if (set_default_unit(SPECIAL_DEFAULT_TARGET) < 0)
goto finish;
2009-11-18 00:42:52 +01:00
/* Mount /proc, /sys and friends, so that /proc/cmdline and
* /proc/$PID/fd is available. */
mount_setup();
2010-04-06 21:59:25 +02:00
/* Reset all signal handlers. */
assert_se(reset_all_signal_handlers() == 0);
/* Close all open files */
assert_se(close_all_fds(NULL, 0) == 0);
2010-04-06 23:55:42 +02:00
if (running_as != MANAGER_SESSION)
if (parse_proc_cmdline() < 0)
goto finish;
log_parse_environment();
if (parse_argv(argc, argv) < 0)
goto finish;
if (action == ACTION_HELP) {
retval = help();
goto finish;
}
assert_se(action == ACTION_RUN);
/* Move out of the way, so that we won't block unmounts */
assert_se(chdir("/") == 0);
2010-04-06 21:59:25 +02:00
/* Become a session leader if we aren't one yet. */
setsid();
/* Disable the umask logic */
umask(0);
/* Make sure D-Bus doesn't fiddle with the SIGPIPE handlers */
dbus_connection_set_change_sigpipe(FALSE);
/* Open the logging devices, if possible and necessary*/
log_open_syslog();
log_open_kmsg();
2010-04-06 23:55:42 +02:00
log_debug("systemd running in %s mode.", manager_running_as_to_string(running_as));
if ((r = manager_new(running_as, &m)) < 0) {
2010-03-31 16:29:55 +02:00
log_error("Failed to allocate manager object: %s", strerror(-r));
2009-11-18 00:42:52 +01:00
goto finish;
}
2010-01-29 03:18:09 +01:00
if ((r = manager_coldplug(m)) < 0) {
log_error("Failed to retrieve coldplug information: %s", strerror(-r));
goto finish;
}
log_debug("Activating default unit: %s", default_unit);
if ((r = manager_load_unit(m, default_unit, &target)) < 0) {
2010-01-26 19:06:50 +01:00
log_error("Failed to load default target: %s", strerror(-r));
2009-11-18 00:42:52 +01:00
goto finish;
}
2010-01-28 02:44:47 +01:00
printf("→ By units:\n");
manager_dump_units(m, stdout, "\t");
2010-01-27 00:20:21 +01:00
if ((r = manager_add_job(m, JOB_START, target, JOB_REPLACE, false, &job)) < 0) {
log_error("Failed to start default target: %s", strerror(-r));
goto finish;
}
2010-01-19 04:15:20 +01:00
2010-01-26 07:02:51 +01:00
printf("→ By jobs:\n");
2010-01-20 04:02:39 +01:00
manager_dump_jobs(m, stdout, "\t");
2010-01-29 04:26:30 +01:00
if ((r = manager_loop(m)) < 0) {
log_error("Failed to run mainloop: %s", strerror(-r));
goto finish;
}
2010-01-24 00:39:29 +01:00
2009-11-18 00:42:52 +01:00
retval = 0;
log_debug("Exit.");
2009-11-18 00:42:52 +01:00
finish:
if (m)
manager_free(m);
free(default_unit);
2010-01-27 04:36:30 +01:00
dbus_shutdown();
2009-11-18 00:42:52 +01:00
return retval;
}