From: Lennart Poettering Date: Fri, 20 Jun 2014 11:30:52 +0000 (+0200) Subject: debug-generator: add new kernel cmdline option systemd.wants= to add units to the... X-Git-Tag: v215~256 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=3c5a87a879e3eb66c9c159a26051d940ff2db7a1 debug-generator: add new kernel cmdline option systemd.wants= to add units to the initial transaction --- diff --git a/man/kernel-command-line.xml b/man/kernel-command-line.xml index d2767e569..f244bfcb5 100644 --- a/man/kernel-command-line.xml +++ b/man/kernel-command-line.xml @@ -100,14 +100,15 @@ systemd.mask= + systemd.wants= systemd.debug-shell Additional parameters understood by systemd-debug-generator8, - to mask specific units at - boot, or invoke a debug shell - on tty9. + to mask or start specific + units at boot, or invoke a + debug shell on tty9. diff --git a/man/systemd-debug-generator.xml b/man/systemd-debug-generator.xml index 50287d011..a64edeffd 100644 --- a/man/systemd-debug-generator.xml +++ b/man/systemd-debug-generator.xml @@ -53,7 +53,8 @@ Description systemd-debug-generator is - a generator that reads the kernel command line and understands two options: + a generator that reads the kernel command line and + understands three options: If the option is specified and followed by a unit name this unit is @@ -61,7 +62,14 @@ systemctl1's mask command. This is useful to boot with certain units removed from the initial boot - transaction for debugging system startup. + transaction for debugging system startup. May be + specified more than once. + + If the option is + specified and followed by a unit name a start job for + this unit is added to the initial transaction. This is + useful to start one ore more additional units at + boot. May be specified more than once. If the option is specified the debug shell service diff --git a/src/debug-generator/debug-generator.c b/src/debug-generator/debug-generator.c index cefac89d1..fd7c29d28 100644 --- a/src/debug-generator/debug-generator.c +++ b/src/debug-generator/debug-generator.c @@ -26,11 +26,14 @@ static const char *arg_dest = "/tmp"; static char **arg_mask = NULL; +static char **arg_wants = NULL; static bool arg_debug_shell = false; static int parse_proc_cmdline_item(const char *key, const char *value) { int r; + assert(key); + if (streq(key, "systemd.mask")) { if (!value) @@ -38,7 +41,7 @@ static int parse_proc_cmdline_item(const char *key, const char *value) { else { char *n; - n = strdup(value); + n = unit_name_mangle(value, MANGLE_NOGLOB); if (!n) return log_oom(); @@ -46,6 +49,23 @@ static int parse_proc_cmdline_item(const char *key, const char *value) { if (r < 0) return log_oom(); } + + } else if (streq(key, "systemd.wants")) { + + if (!value) + log_error("Missing argument for systemd.want= kernel command line parameter."); + else { + char *n; + + n = unit_name_mangle(value, MANGLE_NOGLOB); + if (!n) + return log_oom(); + + r = strv_consume(&arg_wants, n); + if (r < 0) + return log_oom(); + } + } else if (streq(key, "systemd.debug-shell")) { if (value) { @@ -69,13 +89,9 @@ static int generate_mask_symlinks(void) { return 0; STRV_FOREACH(u, arg_mask) { - _cleanup_free_ char *m = NULL, *p = NULL; - - m = unit_name_mangle(*u, MANGLE_NOGLOB); - if (!m) - return log_oom(); + _cleanup_free_ char *p = NULL; - p = strjoin(arg_dest, "/", m, NULL); + p = strjoin(arg_dest, "/", *u, NULL); if (!p) return log_oom(); @@ -88,22 +104,33 @@ static int generate_mask_symlinks(void) { return r; } -static int generate_debug_shell_symlink(void) { - const char *p; +static int generate_wants_symlinks(void) { + char **u; + int r = 0; - if (!arg_debug_shell) + if (strv_isempty(arg_wants)) return 0; - p = strappenda(arg_dest, "/default.target.wants/debug-shell.service"); + STRV_FOREACH(u, arg_wants) { + _cleanup_free_ char *p = NULL, *f = NULL; + + p = strjoin(arg_dest, "/default.target.wants/", *u, NULL); + if (!p) + return log_oom(); + + f = strappend(SYSTEM_DATA_UNIT_PATH "/", *u); + if (!f) + return log_oom(); - mkdir_parents_label(p, 0755); + mkdir_parents_label(p, 0755); - if (symlink(SYSTEM_DATA_UNIT_PATH "/debug-shell.service", p) < 0) { - log_error("Failed to create %s symlink: %m", p); - return -errno; + if (symlink(f, p) < 0) { + log_error("Failed to create wants symlink %s: %m", p); + r = -errno; + } } - return 0; + return r; } int main(int argc, char *argv[]) { @@ -126,12 +153,21 @@ int main(int argc, char *argv[]) { if (parse_proc_cmdline(parse_proc_cmdline_item) < 0) return EXIT_FAILURE; + if (arg_debug_shell) { + r = strv_extend(&arg_wants, "debug-shell.service"); + if (r < 0) { + r = log_oom(); + goto finish; + } + } + r = generate_mask_symlinks(); - q = generate_debug_shell_symlink(); + q = generate_wants_symlinks(); if (q < 0) r = q; +finish: return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS; }