chiark / gitweb /
service: rename Type=finish to Type=oneshot and allow multiple ExecStart= lines for...
authorLennart Poettering <lennart@poettering.net>
Fri, 13 Aug 2010 16:23:01 +0000 (18:23 +0200)
committerLennart Poettering <lennart@poettering.net>
Fri, 13 Aug 2010 16:23:01 +0000 (18:23 +0200)
In contrast to the other service types oneshot services are usually not
long lasting and there's not necessarily a single clean main process for
them. This change allows multiple ExecStart= lines for this type of
services so that the admin/developer doesn't have to arbitrarily pick on
of various sequential commands as the "main one".

24 files changed:
fixme
man/systemd.service.xml
src/dbus-manager.c
src/service.c
src/service.h
test1/permissions.service
units/arch/halt.service
units/arch/poweroff.service
units/arch/reboot.service
units/fedora/halt.service
units/fedora/killall.service
units/fedora/plymouth-quit.service
units/fedora/poweroff.service
units/fedora/reboot.service
units/gentoo/halt.service
units/gentoo/killall.service
units/gentoo/poweroff.service
units/gentoo/reboot.service
units/session/exit.service.in
units/suse/halt.service
units/suse/poweroff.service
units/suse/reboot.service
units/systemd-update-utmp-runlevel.service.in
units/systemd-update-utmp-shutdown.service.in

diff --git a/fixme b/fixme
index 7df8abe9ecbb5d32481964e7fffe24517f97a805..9d7bbd11c55b9f42e86c273c481f4e80d6b4c12e 100644 (file)
--- a/fixme
+++ b/fixme
@@ -71,8 +71,6 @@
 
 * be more forgiving when parsing unit files, when encountering incorrect lines with assignments
 
-* ExecStart= mehrfach bei Type=finish
-
 * move runlevel symlinks to /lib
 
 * agetty darf nicht mit emergency.service kollidieren
index 94a21d3fe3d99c2160611e590c15d70de69a2344..70c1d1e5fab0a1747b870a4ee4429d1c64df6b4e 100644 (file)
                                 start-up type for this service
                                 unit. One of <option>simple</option>,
                                 <option>forking</option>,
-                                <option>finish</option>,
+                                <option>oneshot</option>,
                                 <option>dbus</option>,
                                 <option>notify</option>.</para>
 
                                 exits.</para>
 
                                 <para>Behaviour of
-                                <option>finish</option> is similar
+                                <option>oneshot</option> is similar
                                 to <option>simple</option>, however
                                 it is expected that the process has to
                                 exit before systemd starts follow-up
index dfe8a919177c8c5464f78cce66d5383211f52d2c..42906ce04f8e01b6ede2fa7a7ac592906adfd58c 100644 (file)
@@ -295,7 +295,6 @@ static DBusHandlerResult bus_manager_message_handler(DBusConnection *connection,
                                     DBUS_TYPE_INVALID))
                         goto oom;
         } else if (dbus_message_is_method_call(message, "org.freedesktop.systemd1.Manager", "GetUnitByPID")) {
-                const char *name;
                 Unit *u;
                 uint32_t pid;
 
index a3a23e327119f6a7b010b51874f334a51f67f052..ee952810fc138b35c4ff2d7cc968a1cfb76cae73 100644 (file)
@@ -834,8 +834,9 @@ static int service_verify(Service *s) {
                 return -EINVAL;
         }
 
-        if (s->exec_command[SERVICE_EXEC_START]->command_next) {
-                log_error("%s has more than one ExecStart setting. Refusing.", s->meta.id);
+        if (s->type != SERVICE_ONESHOT &&
+            s->exec_command[SERVICE_EXEC_START]->command_next) {
+                log_error("%s has more than one ExecStart setting, which is only allowed for Type=oneshot services. Refusing.", s->meta.id);
                 return -EINVAL;
         }
 
@@ -1250,7 +1251,7 @@ static int service_coldplug(Unit *u) {
                 if ((s->deserialized_state == SERVICE_START &&
                      (s->type == SERVICE_FORKING ||
                       s->type == SERVICE_DBUS ||
-                      s->type == SERVICE_FINISH ||
+                      s->type == SERVICE_ONESHOT ||
                       s->type == SERVICE_NOTIFY)) ||
                     s->deserialized_state == SERVICE_START_POST ||
                     s->deserialized_state == SERVICE_RUNNING ||
@@ -1711,15 +1712,18 @@ static void service_enter_start(Service *s) {
         assert(s);
 
         assert(s->exec_command[SERVICE_EXEC_START]);
-        assert(!s->exec_command[SERVICE_EXEC_START]->command_next);
+        assert(!s->exec_command[SERVICE_EXEC_START]->command_next || s->type == SERVICE_ONESHOT);
 
         if (s->type == SERVICE_FORKING)
                 service_unwatch_control_pid(s);
         else
                 service_unwatch_main_pid(s);
 
+        s->control_command_id = SERVICE_EXEC_START;
+        s->control_command = s->exec_command[SERVICE_EXEC_START];
+
         if ((r = service_spawn(s,
-                               s->exec_command[SERVICE_EXEC_START],
+                               s->control_command,
                                s->type == SERVICE_FORKING || s->type == SERVICE_DBUS || s->type == SERVICE_NOTIFY,
                                true,
                                true,
@@ -1741,17 +1745,14 @@ static void service_enter_start(Service *s) {
                 /* For forking services we wait until the start
                  * process exited. */
 
-                s->control_command_id = SERVICE_EXEC_START;
-                s->control_command = s->exec_command[SERVICE_EXEC_START];
-
                 s->control_pid = pid;
                 service_set_state(s, SERVICE_START);
 
-        } else if (s->type == SERVICE_FINISH ||
+        } else if (s->type == SERVICE_ONESHOT ||
                    s->type == SERVICE_DBUS ||
                    s->type == SERVICE_NOTIFY) {
 
-                /* For finishing services we wait until the start
+                /* For oneshot services we wait until the start
                  * process exited, too, but it is our main process. */
 
                 /* For D-Bus services we know the main pid right away,
@@ -1854,7 +1855,7 @@ fail:
         service_enter_stop(s, false);
 }
 
-static void service_run_next(Service *s, bool success) {
+static void service_run_next_control(Service *s, bool success) {
         int r;
 
         assert(s);
@@ -1864,8 +1865,9 @@ static void service_run_next(Service *s, bool success) {
         if (!success)
                 s->failure = true;
 
-        s->control_command = s->control_command->command_next;
+        assert(s->control_command_id != SERVICE_EXEC_START);
 
+        s->control_command = s->control_command->command_next;
         service_unwatch_control_pid(s);
 
         if ((r = service_spawn(s,
@@ -1883,7 +1885,7 @@ static void service_run_next(Service *s, bool success) {
         return;
 
 fail:
-        log_warning("%s failed to run next task: %s", s->meta.id, strerror(-r));
+        log_warning("%s failed to run next control task: %s", s->meta.id, strerror(-r));
 
         if (s->state == SERVICE_START_PRE)
                 service_enter_signal(s, SERVICE_FINAL_SIGTERM, false);
@@ -1895,6 +1897,43 @@ fail:
                 service_enter_stop(s, false);
 }
 
+static void service_run_next_main(Service *s, bool success) {
+        pid_t pid;
+        int r;
+
+        assert(s);
+        assert(s->control_command);
+        assert(s->control_command->command_next);
+
+        if (!success)
+                s->failure = true;
+
+        assert(s->control_command_id == SERVICE_EXEC_START);
+        assert(s->type == SERVICE_ONESHOT);
+
+        s->control_command = s->control_command->command_next;
+        service_unwatch_main_pid(s);
+
+        if ((r = service_spawn(s,
+                               s->control_command,
+                               false,
+                               true,
+                               true,
+                               true,
+                               true,
+                               s->notify_access != NOTIFY_NONE,
+                               &pid)) < 0)
+                goto fail;
+
+        service_set_main_pid(s, pid);
+
+        return;
+
+fail:
+        log_warning("%s failed to run next main task: %s", s->meta.id, strerror(-r));
+        service_enter_stop(s, false);
+}
+
 static int service_start(Unit *u) {
         Service *s = SERVICE(u);
 
@@ -2226,14 +2265,13 @@ static void service_sigchld_event(Unit *u, pid_t pid, int code, int status) {
 
         if (s->main_pid == pid) {
 
-                exec_status_exit(&s->main_exec_status, pid, code, status);
                 s->main_pid = 0;
+                exec_status_exit(&s->main_exec_status, pid, code, status);
 
-                if (s->type != SERVICE_FORKING) {
-                        assert(s->exec_command[SERVICE_EXEC_START]);
-                        s->exec_command[SERVICE_EXEC_START]->exec_status = s->main_exec_status;
+                if (s->type != SERVICE_FORKING && s->control_command) {
+                        s->control_command->exec_status = s->main_exec_status;
 
-                        if (s->exec_command[SERVICE_EXEC_START]->ignore)
+                        if (s->control_command->ignore)
                                 success = true;
                 }
 
@@ -2241,51 +2279,69 @@ static void service_sigchld_event(Unit *u, pid_t pid, int code, int status) {
                          "%s: main process exited, code=%s, status=%i", u->meta.id, sigchld_code_to_string(code), status);
                 s->failure = s->failure || !success;
 
-                /* The service exited, so the service is officially
-                 * gone. */
+                if (s->control_command &&
+                    s->control_command->command_next &&
+                    success) {
 
-                switch (s->state) {
+                        /* There is another command to *
+                         * execute, so let's do that. */
 
-                case SERVICE_START_POST:
-                case SERVICE_RELOAD:
-                case SERVICE_STOP:
-                        /* Need to wait until the operation is
-                         * done */
-                        break;
+                        log_debug("%s running next main command for state %s", u->meta.id, service_state_to_string(s->state));
+                        service_run_next_main(s, success);
 
-                case SERVICE_START:
-                        if (s->type == SERVICE_FINISH) {
-                                /* This was our main goal, so let's go on */
-                                if (success)
-                                        service_enter_start_post(s);
-                                else
-                                        service_enter_signal(s, SERVICE_FINAL_SIGTERM, false);
+                } else {
+
+                        /* The service exited, so the service is officially
+                         * gone. */
+
+                        s->control_command = NULL;
+                        s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
+
+                        switch (s->state) {
+
+                        case SERVICE_START_POST:
+                        case SERVICE_RELOAD:
+                        case SERVICE_STOP:
+                                /* Need to wait until the operation is
+                                 * done */
                                 break;
-                        } else {
-                                assert(s->type == SERVICE_DBUS || s->type == SERVICE_NOTIFY);
 
-                                /* Fall through */
-                        }
+                        case SERVICE_START:
+                                if (s->type == SERVICE_ONESHOT) {
+                                        /* This was our main goal, so let's go on */
+                                        if (success)
+                                                service_enter_start_post(s);
+                                        else
+                                                service_enter_signal(s, SERVICE_FINAL_SIGTERM, false);
+                                        break;
+                                } else {
+                                        assert(s->type == SERVICE_DBUS || s->type == SERVICE_NOTIFY);
 
-                case SERVICE_RUNNING:
-                        service_enter_running(s, success);
-                        break;
+                                        /* Fall through */
+                                }
 
-                case SERVICE_STOP_SIGTERM:
-                case SERVICE_STOP_SIGKILL:
+                        case SERVICE_RUNNING:
+                                service_enter_running(s, success);
+                                break;
 
-                        if (!control_pid_good(s))
-                                service_enter_stop_post(s, success);
+                        case SERVICE_STOP_SIGTERM:
+                        case SERVICE_STOP_SIGKILL:
 
-                        /* If there is still a control process, wait for that first */
-                        break;
+                                if (!control_pid_good(s))
+                                        service_enter_stop_post(s, success);
 
-                default:
-                        assert_not_reached("Uh, main process died at wrong time.");
+                                /* If there is still a control process, wait for that first */
+                                break;
+
+                        default:
+                                assert_not_reached("Uh, main process died at wrong time.");
+                        }
                 }
 
         } else if (s->control_pid == pid) {
 
+                s->control_pid = 0;
+
                 if (s->control_command) {
                         exec_status_exit(&s->control_command->exec_status, pid, code, status);
 
@@ -2293,22 +2349,19 @@ static void service_sigchld_event(Unit *u, pid_t pid, int code, int status) {
                                 success = true;
                 }
 
-                s->control_pid = 0;
-
-                log_full(success ? LOG_DEBUG : LOG_NOTICE,
+               log_full(success ? LOG_DEBUG : LOG_NOTICE,
                          "%s: control process exited, code=%s status=%i", u->meta.id, sigchld_code_to_string(code), status);
                 s->failure = s->failure || !success;
 
-                /* If we are shutting things down anyway we
-                 * don't care about failing commands. */
-
-                if (s->control_command && s->control_command->command_next && success) {
+                if (s->control_command &&
+                    s->control_command->command_next &&
+                    success) {
 
                         /* There is another command to *
                          * execute, so let's do that. */
 
-                        log_debug("%s running next command for state %s", u->meta.id, service_state_to_string(s->state));
-                        service_run_next(s, success);
+                        log_debug("%s running next control command for state %s", u->meta.id, service_state_to_string(s->state));
+                        service_run_next_control(s, success);
 
                 } else {
                         /* No further commands for this step, so let's
@@ -2822,7 +2875,7 @@ DEFINE_STRING_TABLE_LOOKUP(service_restart, ServiceRestart);
 static const char* const service_type_table[_SERVICE_TYPE_MAX] = {
         [SERVICE_SIMPLE] = "simple",
         [SERVICE_FORKING] = "forking",
-        [SERVICE_FINISH] = "finish",
+        [SERVICE_ONESHOT] = "oneshot",
         [SERVICE_DBUS] = "dbus",
         [SERVICE_NOTIFY] = "notify"
 };
index 725e2135f156cbd02a78ff497e03bce8496f2afb..81401ac387ec207aee8affd26a68b08deaa7a75f 100644 (file)
@@ -58,7 +58,7 @@ typedef enum ServiceRestart {
 typedef enum ServiceType {
         SERVICE_SIMPLE,   /* we fork and go on right-away (i.e. modern socket activated daemons) */
         SERVICE_FORKING,  /* forks by itself (i.e. traditional daemons) */
-        SERVICE_FINISH,   /* we fork and wait until the program finishes (i.e. programs like fsck which run and need to finish before we continue) */
+        SERVICE_ONESHOT,  /* we fork and wait until the program finishes (i.e. programs like fsck which run and need to finish before we continue) */
         SERVICE_DBUS,     /* we fork and wait until a specific D-Bus name appears on the bus */
         SERVICE_NOTIFY,   /* we fork and wait until a daemon sends us a ready message with sd_notify() */
         _SERVICE_TYPE_MAX,
index 4d9b352feafa6dd032cae1c318e5c922cb317093..cb0664fa4f121e430c9a326db8aee00daa557fe3 100644 (file)
@@ -5,7 +5,7 @@ Description=Permission Enforcement checker
 ExecStart=/usr/bin/id
 ExecStartPost=/usr/bin/env
 ExecStartPost=/bin/sleep 5
-Type=finish
+Type=oneshot
 Capabilities=all= cap_dac_override=eip
 User=nobody
 Group=nobody
index b1935262f719261d2e01d1e5a002996e5af928d0..dbfc22878777e7ae7d4b77ce6442136b9950f110 100644 (file)
@@ -12,7 +12,7 @@ Requires=shutdown.target umount.target
 After=shutdown.target umount.target
 
 [Service]
-Type=finish
+Type=oneshot
 ValidNoProcess=yes
 Environment=RUNLEVEL=0
 ExecStart=/etc/rc.shutdown
index 3d40ba82c24547b5c0c4fc558233e836f2735f78..bd563ba586bd2681101bcb9ed0a2f04c1dc84487 100644 (file)
@@ -12,7 +12,7 @@ Requires=shutdown.target umount.target
 After=shutdown.target umount.target
 
 [Service]
-Type=finish
+Type=oneshot
 ValidNoProcess=yes
 Environment=RUNLEVEL=0
 ExecStart=/etc/rc.shutdown
index 37112fe9f3b4637b3a37a1e16d11d6e30c7fd4fd..6bce95d8fd409a1cfeb28cb5e53525abf6e61a2d 100644 (file)
@@ -12,7 +12,7 @@ Requires=shutdown.target umount.target
 After=shutdown.target umount.target
 
 [Service]
-Type=finish
+Type=oneshot
 ValidNoProcess=yes
 Environment=RUNLEVEL=6
 ExecStart=/etc/rc.shutdown
index 6e2745eedd0c61c7df77cc68ec720d34054c0526..a6c4786a8b91ce6ab21502f9a529a2db8e1fbb9e 100644 (file)
@@ -12,7 +12,7 @@ Requires=shutdown.target umount.target killall.service
 After=shutdown.target umount.target killall.service
 
 [Service]
-Type=finish
+Type=oneshot
 ValidNoProcess=yes
 Environment=INIT_HALT=HALT RUNLEVEL=0
 ExecStart=/etc/init.d/halt start
index 3b27375fe5820ceca7487f281afc5bedade00775..53c65d4a3bb7108a8213dda6afae0bb46124d5ff 100644 (file)
@@ -12,7 +12,7 @@ After=shutdown.target
 RefuseManualStart=yes
 
 [Service]
-Type=finish
+Type=oneshot
 ValidNoProcess=yes
 ExecStart=-/etc/init.d/killall start
 StandardOutput=tty
index faf8b4d7a725eb89ebd442088c1a2d3bbe4cea3a..869a2ec596c34d8cd5c3018372e614fd6a61eaaa 100644 (file)
@@ -11,7 +11,7 @@ Before=getty@tty1.service
 
 [Service]
 ExecStart=-/usr/bin/plymouth quit
-Type=finish
+Type=oneshot
 
 [Install]
 WantedBy=multi-user.target
index cd6ec3edc9cdcaa5c1f6d57d1588e50fb7773d7f..7597f4f651f6e9cfd5346e5c55ecd5a11cf86f30 100644 (file)
@@ -12,7 +12,7 @@ Requires=shutdown.target umount.target killall.service
 After=shutdown.target umount.target killall.service
 
 [Service]
-Type=finish
+Type=oneshot
 ValidNoProcess=yes
 Environment=RUNLEVEL=0
 ExecStart=/etc/init.d/halt start
index 01bd46395d46dc2bf6281b5f670ebfb3a1a3e339..6120ceb8213ad4193fc26cfdd9b27a2c5ce0a1e8 100644 (file)
@@ -12,7 +12,7 @@ Requires=shutdown.target umount.target killall.service
 After=shutdown.target umount.target killall.service
 
 [Service]
-Type=finish
+Type=oneshot
 ValidNoProcess=yes
 Environment=RUNLEVEL=6
 ExecStart=/etc/init.d/reboot start
index 56c3f2e60e860c9415a5290439214bdd00c406f6..826c69f061394022be856883557bc39dc452cff1 100644 (file)
@@ -12,7 +12,7 @@ Requires=shutdown.target umount.target killall.service
 After=shutdown.target umount.target killall.service
 
 [Service]
-Type=finish
+Type=oneshot
 ValidNoProcess=yes
 Environment=INIT_HALT=HALT RC_DOWN_HARDDISK=yes
 ExecStart=/etc/init.d/shutdown.sh
index 3f107e3be52ce15e34c35073566215301bc8b613..8b42af87b52f1bb4500cf91fdf2ac578d1fe5ebc 100644 (file)
@@ -12,7 +12,7 @@ After=shutdown.target
 RefuseManualStart=yes
 
 [Service]
-Type=finish
+Type=oneshot
 ValidNoProcess=yes
 ExecStart=-/etc/init.d/killprocs start
 StandardOutput=tty
index 40126b211ebdc7345799a880ebcbe52b0ffa65f2..8a5a62794f18014de13a54e12d14ffd762d5d742 100644 (file)
@@ -12,7 +12,7 @@ Requires=shutdown.target umount.target killall.service
 After=shutdown.target umount.target killall.service
 
 [Service]
-Type=finish
+Type=oneshot
 ValidNoProcess=yes
 Environment=RC_DOWN_HARDDISK=yes
 ExecStart=/etc/init.d/shutdown.sh
index de1665579dd3465ec4f61e93a6ff30ce29bb592f..b5defb16807cb5608a5a662ec35e74cb4c5fa0f8 100644 (file)
@@ -12,7 +12,7 @@ Requires=shutdown.target umount.target killall.service
 After=shutdown.target umount.target killall.service
 
 [Service]
-Type=finish
+Type=oneshot
 ValidNoProcess=yes
 ExecStart=/etc/init.d/reboot.sh
 StandardOutput=tty
index 1f515a75cedbf15701b9a61737cc3be85d0bfcb0..d098d0da501581317945ea1b5156a3b0f1d2fdbd 100644 (file)
@@ -5,5 +5,5 @@ Requires=shutdown.target
 After=shutdown.target
 
 [Service]
-Type=finish
+Type=oneshot
 ExecStart=@SYSTEMCTL@ --session daemon-exit
index 559a51ce75e235b0d2b267bfa41d5de93f1ecd72..32b7dc204a702ac100e411feff3099e986ba0e65 100644 (file)
@@ -12,7 +12,7 @@ Requires=shutdown.target umount.target
 After=shutdown.target umount.target
 
 [Service]
-Type=finish
+Type=oneshot
 ValidNoProcess=yes
 Environment=INIT_HALT=HALT RUNLEVEL=0 COLD_BOOT=1
 ExecStart=/etc/init.d/halt
index f68882c14341bd5f2f61eb55ef2937cecb164b9f..13b13b04279f88602acc893ff7cdeab6609da672 100644 (file)
@@ -12,7 +12,7 @@ Requires=shutdown.target umount.target
 After=shutdown.target umount.target
 
 [Service]
-Type=finish
+Type=oneshot
 ValidNoProcess=yes
 Environment=COLD_BOOT=1
 ExecStart=/etc/init.d/halt
index 6b2982a9a0f3108c6cd503bce551b41602bff07b..3ee290e659bd6c5ee741732c9e3193ba6e79833c 100644 (file)
@@ -12,7 +12,7 @@ Requires=shutdown.target umount.target
 After=shutdown.target umount.target
 
 [Service]
-Type=finish
+Type=oneshot
 ValidNoProcess=yes
 Environment=COLD_BOOT=1
 ExecStart=/etc/init.d/reboot
index 9b7677f3a1725c807f4cfc0c5a2c245325e857d4..90bb9379e02d367af5cd9e0e4496e819aa770a1f 100644 (file)
@@ -11,5 +11,5 @@ DefaultDependencies=no
 After=runlevel1.target runlevel2.target runlevel3.target runlevel4.target runlevel5.target auditd.service
 
 [Service]
-Type=finish
+Type=oneshot
 ExecStart=-@rootlibexecdir@/systemd-update-utmp runlevel
index 0551a9b7e212a0866aea16cd80a1362f84ed0730..f5d1342243b9b4fdd266f3919055a2507c6f8b60 100644 (file)
@@ -12,5 +12,5 @@ Before=killall.service
 Conflicts=systemd-update-utmp-runlevel.service
 
 [Service]
-Type=finish
+Type=oneshot
 ExecStart=-@rootlibexecdir@/systemd-update-utmp shutdown