[systemd-commits] man/kernel-command-line.xml man/systemd-debug-generator.xml src/debug-generator

Lennart Poettering lennart at kemper.freedesktop.org
Fri Jun 20 04:40:27 PDT 2014


 man/kernel-command-line.xml           |    7 +--
 man/systemd-debug-generator.xml       |   12 ++++-
 src/debug-generator/debug-generator.c |   70 +++++++++++++++++++++++++---------
 3 files changed, 67 insertions(+), 22 deletions(-)

New commits:
commit 3c5a87a879e3eb66c9c159a26051d940ff2db7a1
Author: Lennart Poettering <lennart at poettering.net>
Date:   Fri Jun 20 13:30:52 2014 +0200

    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 d2767e5..f244bfc 100644
--- a/man/kernel-command-line.xml
+++ b/man/kernel-command-line.xml
@@ -100,14 +100,15 @@
 
                         <varlistentry>
                                 <term><varname>systemd.mask=</varname></term>
+                                <term><varname>systemd.wants=</varname></term>
                                 <term><varname>systemd.debug-shell</varname></term>
                                 <listitem>
                                         <para>Additional parameters
                                         understood by
                                         <citerefentry><refentrytitle>systemd-debug-generator</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
-                                        to mask specific units at
-                                        boot, or invoke a debug shell
-                                        on tty9.</para>
+                                        to mask or start specific
+                                        units at boot, or invoke a
+                                        debug shell on tty9.</para>
                                 </listitem>
                         </varlistentry>
 
diff --git a/man/systemd-debug-generator.xml b/man/systemd-debug-generator.xml
index 50287d0..a64edef 100644
--- a/man/systemd-debug-generator.xml
+++ b/man/systemd-debug-generator.xml
@@ -53,7 +53,8 @@
                 <title>Description</title>
 
                 <para><filename>systemd-debug-generator</filename> is
-                a generator that reads the kernel command line and understands two options:</para>
+                a generator that reads the kernel command line and
+                understands three options:</para>
 
                 <para>If the <option>systemd.mask=</option> option is
                 specified and followed by a unit name this unit is
@@ -61,7 +62,14 @@
                 <citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>'s
                 <command>mask</command> command. This is useful to
                 boot with certain units removed from the initial boot
-                transaction for debugging system startup.</para>
+                transaction for debugging system startup. May be
+                specified more than once.</para>
+
+                <para>If the <option>systemd.wants=</option> 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.</para>
 
                 <para>If the <option>systemd.debug-shell</option>
                 option is specified the debug shell service
diff --git a/src/debug-generator/debug-generator.c b/src/debug-generator/debug-generator.c
index cefac89..fd7c29d 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;
 
 }



More information about the systemd-commits mailing list