52b84b
From 40c2b0a20ff133f2050642dc7230424ddcb2987b Mon Sep 17 00:00:00 2001
52b84b
From: Lennart Poettering <lennart@poettering.net>
52b84b
Date: Tue, 13 Nov 2018 23:28:09 +0100
52b84b
Subject: [PATCH] core: log a recognizable message when a unit succeeds, too
52b84b
52b84b
We already are doing it on failure, let's do it on success, too.
52b84b
52b84b
Fixes: #10265
52b84b
(cherry picked from commit 523ee2d41471bfb738f52d59de9b469301842644)
52b84b
52b84b
Related: #1737283
52b84b
---
52b84b
 catalog/systemd.catalog.in |  7 +++++++
52b84b
 src/core/automount.c       |  4 +++-
52b84b
 src/core/mount.c           |  4 +++-
52b84b
 src/core/path.c            |  4 +++-
52b84b
 src/core/scope.c           |  4 +++-
52b84b
 src/core/service.c         |  4 +++-
52b84b
 src/core/socket.c          |  4 +++-
52b84b
 src/core/swap.c            |  4 +++-
52b84b
 src/core/timer.c           |  4 +++-
52b84b
 src/core/unit.c            | 10 ++++++++++
52b84b
 src/core/unit.h            |  1 +
52b84b
 src/systemd/sd-messages.h  |  2 ++
52b84b
 12 files changed, 44 insertions(+), 8 deletions(-)
52b84b
52b84b
diff --git a/catalog/systemd.catalog.in b/catalog/systemd.catalog.in
52b84b
index 54a0f46921..2492ad2028 100644
52b84b
--- a/catalog/systemd.catalog.in
52b84b
+++ b/catalog/systemd.catalog.in
52b84b
@@ -344,6 +344,13 @@ Support: %SUPPORT_URL%
52b84b
 
52b84b
 The unit @UNIT@ completed and consumed the indicated resources.
52b84b
 
52b84b
+-- 7ad2d189f7e94e70a38c781354912448
52b84b
+Subject: Unit succeeded
52b84b
+Defined-By: systemd
52b84b
+Support: %SUPPORT_URL%
52b84b
+
52b84b
+The unit @UNIT@ has successfully entered the 'dead' state.
52b84b
+
52b84b
 -- d9b373ed55a64feb8242e02dbe79a49c
52b84b
 Subject: Unit failed
52b84b
 Defined-By: systemd
52b84b
diff --git a/src/core/automount.c b/src/core/automount.c
52b84b
index c78562c549..b1a155d8d4 100644
52b84b
--- a/src/core/automount.c
52b84b
+++ b/src/core/automount.c
52b84b
@@ -314,7 +314,9 @@ static void automount_enter_dead(Automount *a, AutomountResult f) {
52b84b
         if (a->result == AUTOMOUNT_SUCCESS)
52b84b
                 a->result = f;
52b84b
 
52b84b
-        if (a->result != AUTOMOUNT_SUCCESS)
52b84b
+        if (a->result == AUTOMOUNT_SUCCESS)
52b84b
+                unit_log_success(UNIT(a));
52b84b
+        else
52b84b
                 unit_log_failure(UNIT(a), automount_result_to_string(a->result));
52b84b
 
52b84b
         automount_set_state(a, a->result != AUTOMOUNT_SUCCESS ? AUTOMOUNT_FAILED : AUTOMOUNT_DEAD);
52b84b
diff --git a/src/core/mount.c b/src/core/mount.c
52b84b
index 3cd0e479e9..30aaf5ae55 100644
52b84b
--- a/src/core/mount.c
52b84b
+++ b/src/core/mount.c
52b84b
@@ -796,7 +796,9 @@ static void mount_enter_dead(Mount *m, MountResult f) {
52b84b
         if (m->result == MOUNT_SUCCESS)
52b84b
                 m->result = f;
52b84b
 
52b84b
-        if (m->result != MOUNT_SUCCESS)
52b84b
+        if (m->result == MOUNT_SUCCESS)
52b84b
+                unit_log_success(UNIT(m));
52b84b
+        else
52b84b
                 unit_log_failure(UNIT(m), mount_result_to_string(m->result));
52b84b
 
52b84b
         mount_set_state(m, m->result != MOUNT_SUCCESS ? MOUNT_FAILED : MOUNT_DEAD);
52b84b
diff --git a/src/core/path.c b/src/core/path.c
52b84b
index f8b69e7804..dda4a3036b 100644
52b84b
--- a/src/core/path.c
52b84b
+++ b/src/core/path.c
52b84b
@@ -448,7 +448,9 @@ static void path_enter_dead(Path *p, PathResult f) {
52b84b
         if (p->result == PATH_SUCCESS)
52b84b
                 p->result = f;
52b84b
 
52b84b
-        if (p->result != PATH_SUCCESS)
52b84b
+        if (p->result == PATH_SUCCESS)
52b84b
+                unit_log_success(UNIT(p));
52b84b
+        else
52b84b
                 unit_log_failure(UNIT(p), path_result_to_string(p->result));
52b84b
 
52b84b
         path_set_state(p, p->result != PATH_SUCCESS ? PATH_FAILED : PATH_DEAD);
52b84b
diff --git a/src/core/scope.c b/src/core/scope.c
52b84b
index 79ecfd992f..a1a5363244 100644
52b84b
--- a/src/core/scope.c
52b84b
+++ b/src/core/scope.c
52b84b
@@ -239,7 +239,9 @@ static void scope_enter_dead(Scope *s, ScopeResult f) {
52b84b
         if (s->result == SCOPE_SUCCESS)
52b84b
                 s->result = f;
52b84b
 
52b84b
-        if (s->result != SCOPE_SUCCESS)
52b84b
+        if (s->result == SCOPE_SUCCESS)
52b84b
+                unit_log_success(UNIT(s));
52b84b
+        else
52b84b
                 unit_log_failure(UNIT(s), scope_result_to_string(s->result));
52b84b
 
52b84b
         scope_set_state(s, s->result != SCOPE_SUCCESS ? SCOPE_FAILED : SCOPE_DEAD);
52b84b
diff --git a/src/core/service.c b/src/core/service.c
52b84b
index efceb0614c..2c31e70ef6 100644
52b84b
--- a/src/core/service.c
52b84b
+++ b/src/core/service.c
52b84b
@@ -1679,7 +1679,9 @@ static void service_enter_dead(Service *s, ServiceResult f, bool allow_restart)
52b84b
         if (s->result == SERVICE_SUCCESS)
52b84b
                 s->result = f;
52b84b
 
52b84b
-        if (s->result != SERVICE_SUCCESS)
52b84b
+        if (s->result == SERVICE_SUCCESS)
52b84b
+                unit_log_success(UNIT(s));
52b84b
+        else
52b84b
                 unit_log_failure(UNIT(s), service_result_to_string(s->result));
52b84b
 
52b84b
         if (allow_restart && service_shall_restart(s))
52b84b
diff --git a/src/core/socket.c b/src/core/socket.c
52b84b
index 160f11765c..7c6d3dfad1 100644
52b84b
--- a/src/core/socket.c
52b84b
+++ b/src/core/socket.c
52b84b
@@ -1990,7 +1990,9 @@ static void socket_enter_dead(Socket *s, SocketResult f) {
52b84b
         if (s->result == SOCKET_SUCCESS)
52b84b
                 s->result = f;
52b84b
 
52b84b
-        if (s->result != SOCKET_SUCCESS)
52b84b
+        if (s->result == SOCKET_SUCCESS)
52b84b
+                unit_log_success(UNIT(s));
52b84b
+        else
52b84b
                 unit_log_failure(UNIT(s), socket_result_to_string(s->result));
52b84b
 
52b84b
         socket_set_state(s, s->result != SOCKET_SUCCESS ? SOCKET_FAILED : SOCKET_DEAD);
52b84b
diff --git a/src/core/swap.c b/src/core/swap.c
52b84b
index b5926d8644..a8f127f660 100644
52b84b
--- a/src/core/swap.c
52b84b
+++ b/src/core/swap.c
52b84b
@@ -656,7 +656,9 @@ static void swap_enter_dead(Swap *s, SwapResult f) {
52b84b
         if (s->result == SWAP_SUCCESS)
52b84b
                 s->result = f;
52b84b
 
52b84b
-        if (s->result != SWAP_SUCCESS)
52b84b
+        if (s->result == SWAP_SUCCESS)
52b84b
+                unit_log_success(UNIT(s));
52b84b
+        else
52b84b
                 unit_log_failure(UNIT(s), swap_result_to_string(s->result));
52b84b
 
52b84b
         swap_set_state(s, s->result != SWAP_SUCCESS ? SWAP_FAILED : SWAP_DEAD);
52b84b
diff --git a/src/core/timer.c b/src/core/timer.c
52b84b
index 6ac310cbe0..2876d54a59 100644
52b84b
--- a/src/core/timer.c
52b84b
+++ b/src/core/timer.c
52b84b
@@ -287,7 +287,9 @@ static void timer_enter_dead(Timer *t, TimerResult f) {
52b84b
         if (t->result == TIMER_SUCCESS)
52b84b
                 t->result = f;
52b84b
 
52b84b
-        if (t->result != TIMER_SUCCESS)
52b84b
+        if (t->result == TIMER_SUCCESS)
52b84b
+                unit_log_success(UNIT(t));
52b84b
+        else
52b84b
                 unit_log_failure(UNIT(t), timer_result_to_string(t->result));
52b84b
 
52b84b
         timer_set_state(t, t->result != TIMER_SUCCESS ? TIMER_FAILED : TIMER_DEAD);
52b84b
diff --git a/src/core/unit.c b/src/core/unit.c
52b84b
index f55bddc00f..ccb0106719 100644
52b84b
--- a/src/core/unit.c
52b84b
+++ b/src/core/unit.c
52b84b
@@ -5462,6 +5462,16 @@ int unit_pid_attachable(Unit *u, pid_t pid, sd_bus_error *error) {
52b84b
         return 0;
52b84b
 }
52b84b
 
52b84b
+void unit_log_success(Unit *u) {
52b84b
+        assert(u);
52b84b
+
52b84b
+        log_struct(LOG_INFO,
52b84b
+                   "MESSAGE_ID=" SD_MESSAGE_UNIT_SUCCESS_STR,
52b84b
+                   LOG_UNIT_ID(u),
52b84b
+                   LOG_UNIT_INVOCATION_ID(u),
52b84b
+                   LOG_UNIT_MESSAGE(u, "Succeeded."));
52b84b
+}
52b84b
+
52b84b
 void unit_log_failure(Unit *u, const char *result) {
52b84b
         assert(u);
52b84b
         assert(result);
52b84b
diff --git a/src/core/unit.h b/src/core/unit.h
52b84b
index 9d226fb3e0..4ae1b38624 100644
52b84b
--- a/src/core/unit.h
52b84b
+++ b/src/core/unit.h
52b84b
@@ -804,6 +804,7 @@ const char *unit_label_path(Unit *u);
52b84b
 
52b84b
 int unit_pid_attachable(Unit *unit, pid_t pid, sd_bus_error *error);
52b84b
 
52b84b
+void unit_log_success(Unit *u);
52b84b
 void unit_log_failure(Unit *u, const char *result);
52b84b
 
52b84b
 /* Macros which append UNIT= or USER_UNIT= to the message */
52b84b
diff --git a/src/systemd/sd-messages.h b/src/systemd/sd-messages.h
52b84b
index 846b28fc2b..e7ef81b597 100644
52b84b
--- a/src/systemd/sd-messages.h
52b84b
+++ b/src/systemd/sd-messages.h
52b84b
@@ -106,6 +106,8 @@ _SD_BEGIN_DECLARATIONS;
52b84b
 #define SD_MESSAGE_UNIT_RESOURCES         SD_ID128_MAKE(ae,8f,7b,86,6b,03,47,b9,af,31,fe,1c,80,b1,27,c0)
52b84b
 #define SD_MESSAGE_UNIT_RESOURCES_STR     SD_ID128_MAKE_STR(ae,8f,7b,86,6b,03,47,b9,af,31,fe,1c,80,b1,27,c0)
52b84b
 
52b84b
+#define SD_MESSAGE_UNIT_SUCCESS           SD_ID128_MAKE(7a,d2,d1,89,f7,e9,4e,70,a3,8c,78,13,54,91,24,48)
52b84b
+#define SD_MESSAGE_UNIT_SUCCESS_STR       SD_ID128_MAKE_STR(7a,d2,d1,89,f7,e9,4e,70,a3,8c,78,13,54,91,24,48)
52b84b
 #define SD_MESSAGE_UNIT_FAILURE_RESULT    SD_ID128_MAKE(d9,b3,73,ed,55,a6,4f,eb,82,42,e0,2d,be,79,a4,9c)
52b84b
 #define SD_MESSAGE_UNIT_FAILURE_RESULT_STR \
52b84b
                                           SD_ID128_MAKE_STR(d9,b3,73,ed,55,a6,4f,eb,82,42,e0,2d,be,79,a4,9c)