chiark / gitweb /
debug-generator: add new kernel cmdline option systemd.wants= to add units to the...
authorLennart Poettering <lennart@poettering.net>
Fri, 20 Jun 2014 11:30:52 +0000 (13:30 +0200)
committerLennart Poettering <lennart@poettering.net>
Fri, 20 Jun 2014 11:36:28 +0000 (13:36 +0200)
man/kernel-command-line.xml
man/systemd-debug-generator.xml
src/debug-generator/debug-generator.c

index d2767e5691a05b2184b0593d84431b378f871990..f244bfcb5794e33af20776883c680d52f1914625 100644 (file)
 
                         <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>
 
index 50287d0112a348d1c93da063b52e130996f5c2b9..a64edeffd8ea81b6cf20bd37bd54aff1499ac758 100644 (file)
@@ -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
                 <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
index cefac89d112b9f26278e8a2efc281b9e42b7a6da..fd7c29d28f0bc2e39ac24cf7618bd8f6dfc97341 100644 (file)
 
 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;
 
 }