You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
256 lines
10 KiB
256 lines
10 KiB
2 years ago
|
From f1a1ff976ed0787c79a0f57d773bc555ab756b8c Mon Sep 17 00:00:00 2001
|
||
|
From: Daan De Meyer <daan.j.demeyer@gmail.com>
|
||
|
Date: Fri, 17 Dec 2021 19:39:29 +0100
|
||
|
Subject: [PATCH] Revert "core: Propagate condition failed state to triggering
|
||
|
units."
|
||
|
|
||
|
This reverts commit 12ab94a1e4961a39c32efb60b71866ab588d3ea2.
|
||
|
|
||
|
(cherry picked from commit 40f41f34d4af15d0147b5b2525f0b87ff62eae9a)
|
||
|
|
||
|
Related: #2114005
|
||
|
---
|
||
|
src/core/automount.c | 14 ++++----------
|
||
|
src/core/automount.h | 1 -
|
||
|
src/core/path.c | 16 +++++-----------
|
||
|
src/core/path.h | 1 -
|
||
|
src/core/socket.c | 28 +++++++++-------------------
|
||
|
src/core/socket.h | 1 -
|
||
|
src/core/timer.c | 12 +++---------
|
||
|
src/core/timer.h | 1 -
|
||
|
src/core/unit.c | 10 ----------
|
||
|
src/core/unit.h | 2 --
|
||
|
10 files changed, 21 insertions(+), 65 deletions(-)
|
||
|
|
||
|
diff --git a/src/core/automount.c b/src/core/automount.c
|
||
|
index bac3b2fab7..c1c513d4a5 100644
|
||
|
--- a/src/core/automount.c
|
||
|
+++ b/src/core/automount.c
|
||
|
@@ -776,11 +776,6 @@ static void automount_enter_running(Automount *a) {
|
||
|
goto fail;
|
||
|
}
|
||
|
|
||
|
- if (unit_has_failed_condition_or_assert(trigger)) {
|
||
|
- automount_enter_dead(a, AUTOMOUNT_FAILURE_MOUNT_CONDITION_FAILED);
|
||
|
- return;
|
||
|
- }
|
||
|
-
|
||
|
r = manager_add_job(UNIT(a)->manager, JOB_START, trigger, JOB_REPLACE, NULL, &error, NULL);
|
||
|
if (r < 0) {
|
||
|
log_unit_warning(UNIT(a), "Failed to queue mount startup job: %s", bus_error_message(&error, r));
|
||
|
@@ -1092,11 +1087,10 @@ static int automount_can_start(Unit *u) {
|
||
|
}
|
||
|
|
||
|
static const char* const automount_result_table[_AUTOMOUNT_RESULT_MAX] = {
|
||
|
- [AUTOMOUNT_SUCCESS] = "success",
|
||
|
- [AUTOMOUNT_FAILURE_RESOURCES] = "resources",
|
||
|
- [AUTOMOUNT_FAILURE_START_LIMIT_HIT] = "start-limit-hit",
|
||
|
- [AUTOMOUNT_FAILURE_MOUNT_START_LIMIT_HIT] = "mount-start-limit-hit",
|
||
|
- [AUTOMOUNT_FAILURE_MOUNT_CONDITION_FAILED] = "mount-condition-failed",
|
||
|
+ [AUTOMOUNT_SUCCESS] = "success",
|
||
|
+ [AUTOMOUNT_FAILURE_RESOURCES] = "resources",
|
||
|
+ [AUTOMOUNT_FAILURE_START_LIMIT_HIT] = "start-limit-hit",
|
||
|
+ [AUTOMOUNT_FAILURE_MOUNT_START_LIMIT_HIT] = "mount-start-limit-hit",
|
||
|
};
|
||
|
|
||
|
DEFINE_STRING_TABLE_LOOKUP(automount_result, AutomountResult);
|
||
|
diff --git a/src/core/automount.h b/src/core/automount.h
|
||
|
index a7417d195c..21dd1c0774 100644
|
||
|
--- a/src/core/automount.h
|
||
|
+++ b/src/core/automount.h
|
||
|
@@ -10,7 +10,6 @@ typedef enum AutomountResult {
|
||
|
AUTOMOUNT_FAILURE_RESOURCES,
|
||
|
AUTOMOUNT_FAILURE_START_LIMIT_HIT,
|
||
|
AUTOMOUNT_FAILURE_MOUNT_START_LIMIT_HIT,
|
||
|
- AUTOMOUNT_FAILURE_MOUNT_CONDITION_FAILED,
|
||
|
_AUTOMOUNT_RESULT_MAX,
|
||
|
_AUTOMOUNT_RESULT_INVALID = -1
|
||
|
} AutomountResult;
|
||
|
diff --git a/src/core/path.c b/src/core/path.c
|
||
|
index bf7e1bf3c2..c2facf0b16 100644
|
||
|
--- a/src/core/path.c
|
||
|
+++ b/src/core/path.c
|
||
|
@@ -453,7 +453,7 @@ static void path_enter_dead(Path *p, PathResult f) {
|
||
|
else
|
||
|
unit_log_failure(UNIT(p), path_result_to_string(p->result));
|
||
|
|
||
|
- path_set_state(p, p->result == PATH_SUCCESS ? PATH_DEAD : PATH_FAILED);
|
||
|
+ path_set_state(p, p->result != PATH_SUCCESS ? PATH_FAILED : PATH_DEAD);
|
||
|
}
|
||
|
|
||
|
static void path_enter_running(Path *p) {
|
||
|
@@ -711,11 +711,6 @@ static void path_trigger_notify(Unit *u, Unit *other) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
- if (unit_has_failed_condition_or_assert(other)) {
|
||
|
- path_enter_dead(p, PATH_FAILURE_UNIT_CONDITION_FAILED);
|
||
|
- return;
|
||
|
- }
|
||
|
-
|
||
|
/* Don't propagate anything if there's still a job queued */
|
||
|
if (other->job)
|
||
|
return;
|
||
|
@@ -768,11 +763,10 @@ static const char* const path_type_table[_PATH_TYPE_MAX] = {
|
||
|
DEFINE_STRING_TABLE_LOOKUP(path_type, PathType);
|
||
|
|
||
|
static const char* const path_result_table[_PATH_RESULT_MAX] = {
|
||
|
- [PATH_SUCCESS] = "success",
|
||
|
- [PATH_FAILURE_RESOURCES] = "resources",
|
||
|
- [PATH_FAILURE_START_LIMIT_HIT] = "start-limit-hit",
|
||
|
- [PATH_FAILURE_UNIT_START_LIMIT_HIT] = "unit-start-limit-hit",
|
||
|
- [PATH_FAILURE_UNIT_CONDITION_FAILED] = "unit-condition-failed",
|
||
|
+ [PATH_SUCCESS] = "success",
|
||
|
+ [PATH_FAILURE_RESOURCES] = "resources",
|
||
|
+ [PATH_FAILURE_START_LIMIT_HIT] = "start-limit-hit",
|
||
|
+ [PATH_FAILURE_UNIT_START_LIMIT_HIT] = "unit-start-limit-hit",
|
||
|
};
|
||
|
|
||
|
DEFINE_STRING_TABLE_LOOKUP(path_result, PathResult);
|
||
|
diff --git a/src/core/path.h b/src/core/path.h
|
||
|
index 0ad6bd12c6..8a69f06c13 100644
|
||
|
--- a/src/core/path.h
|
||
|
+++ b/src/core/path.h
|
||
|
@@ -46,7 +46,6 @@ typedef enum PathResult {
|
||
|
PATH_FAILURE_RESOURCES,
|
||
|
PATH_FAILURE_START_LIMIT_HIT,
|
||
|
PATH_FAILURE_UNIT_START_LIMIT_HIT,
|
||
|
- PATH_FAILURE_UNIT_CONDITION_FAILED,
|
||
|
_PATH_RESULT_MAX,
|
||
|
_PATH_RESULT_INVALID = -1
|
||
|
} PathResult;
|
||
|
diff --git a/src/core/socket.c b/src/core/socket.c
|
||
|
index bdfeb43a70..9d47ca2616 100644
|
||
|
--- a/src/core/socket.c
|
||
|
+++ b/src/core/socket.c
|
||
|
@@ -2274,15 +2274,6 @@ static void socket_enter_running(Socket *s, int cfd) {
|
||
|
goto refuse;
|
||
|
}
|
||
|
|
||
|
- if (UNIT_ISSET(s->service) && cfd < 0) {
|
||
|
- Unit *service = UNIT_DEREF(s->service);
|
||
|
-
|
||
|
- if (unit_has_failed_condition_or_assert(service)) {
|
||
|
- socket_enter_dead(s, SOCKET_FAILURE_SERVICE_CONDITION_FAILED);
|
||
|
- return;
|
||
|
- }
|
||
|
- }
|
||
|
-
|
||
|
if (cfd < 0) {
|
||
|
bool pending = false;
|
||
|
Unit *other;
|
||
|
@@ -3298,16 +3289,15 @@ static const char* const socket_exec_command_table[_SOCKET_EXEC_COMMAND_MAX] = {
|
||
|
DEFINE_STRING_TABLE_LOOKUP(socket_exec_command, SocketExecCommand);
|
||
|
|
||
|
static const char* const socket_result_table[_SOCKET_RESULT_MAX] = {
|
||
|
- [SOCKET_SUCCESS] = "success",
|
||
|
- [SOCKET_FAILURE_RESOURCES] = "resources",
|
||
|
- [SOCKET_FAILURE_TIMEOUT] = "timeout",
|
||
|
- [SOCKET_FAILURE_EXIT_CODE] = "exit-code",
|
||
|
- [SOCKET_FAILURE_SIGNAL] = "signal",
|
||
|
- [SOCKET_FAILURE_CORE_DUMP] = "core-dump",
|
||
|
- [SOCKET_FAILURE_START_LIMIT_HIT] = "start-limit-hit",
|
||
|
- [SOCKET_FAILURE_TRIGGER_LIMIT_HIT] = "trigger-limit-hit",
|
||
|
- [SOCKET_FAILURE_SERVICE_START_LIMIT_HIT] = "service-start-limit-hit",
|
||
|
- [SOCKET_FAILURE_SERVICE_CONDITION_FAILED] = "service-condition-failed",
|
||
|
+ [SOCKET_SUCCESS] = "success",
|
||
|
+ [SOCKET_FAILURE_RESOURCES] = "resources",
|
||
|
+ [SOCKET_FAILURE_TIMEOUT] = "timeout",
|
||
|
+ [SOCKET_FAILURE_EXIT_CODE] = "exit-code",
|
||
|
+ [SOCKET_FAILURE_SIGNAL] = "signal",
|
||
|
+ [SOCKET_FAILURE_CORE_DUMP] = "core-dump",
|
||
|
+ [SOCKET_FAILURE_START_LIMIT_HIT] = "start-limit-hit",
|
||
|
+ [SOCKET_FAILURE_TRIGGER_LIMIT_HIT] = "trigger-limit-hit",
|
||
|
+ [SOCKET_FAILURE_SERVICE_START_LIMIT_HIT] = "service-start-limit-hit"
|
||
|
};
|
||
|
|
||
|
DEFINE_STRING_TABLE_LOOKUP(socket_result, SocketResult);
|
||
|
diff --git a/src/core/socket.h b/src/core/socket.h
|
||
|
index b171b94316..2409dbf2a0 100644
|
||
|
--- a/src/core/socket.h
|
||
|
+++ b/src/core/socket.h
|
||
|
@@ -39,7 +39,6 @@ typedef enum SocketResult {
|
||
|
SOCKET_FAILURE_START_LIMIT_HIT,
|
||
|
SOCKET_FAILURE_TRIGGER_LIMIT_HIT,
|
||
|
SOCKET_FAILURE_SERVICE_START_LIMIT_HIT,
|
||
|
- SOCKET_FAILURE_SERVICE_CONDITION_FAILED,
|
||
|
_SOCKET_RESULT_MAX,
|
||
|
_SOCKET_RESULT_INVALID = -1
|
||
|
} SocketResult;
|
||
|
diff --git a/src/core/timer.c b/src/core/timer.c
|
||
|
index 3c8d89771d..990f05fee4 100644
|
||
|
--- a/src/core/timer.c
|
||
|
+++ b/src/core/timer.c
|
||
|
@@ -567,11 +567,6 @@ static void timer_enter_running(Timer *t) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
- if (unit_has_failed_condition_or_assert(trigger)) {
|
||
|
- timer_enter_dead(t, TIMER_FAILURE_UNIT_CONDITION_FAILED);
|
||
|
- return;
|
||
|
- }
|
||
|
-
|
||
|
r = manager_add_job(UNIT(t)->manager, JOB_START, trigger, JOB_REPLACE, NULL, &error, NULL);
|
||
|
if (r < 0)
|
||
|
goto fail;
|
||
|
@@ -855,10 +850,9 @@ static const char* const timer_base_table[_TIMER_BASE_MAX] = {
|
||
|
DEFINE_STRING_TABLE_LOOKUP(timer_base, TimerBase);
|
||
|
|
||
|
static const char* const timer_result_table[_TIMER_RESULT_MAX] = {
|
||
|
- [TIMER_SUCCESS] = "success",
|
||
|
- [TIMER_FAILURE_RESOURCES] = "resources",
|
||
|
- [TIMER_FAILURE_START_LIMIT_HIT] = "start-limit-hit",
|
||
|
- [TIMER_FAILURE_UNIT_CONDITION_FAILED] = "unit-condition-failed",
|
||
|
+ [TIMER_SUCCESS] = "success",
|
||
|
+ [TIMER_FAILURE_RESOURCES] = "resources",
|
||
|
+ [TIMER_FAILURE_START_LIMIT_HIT] = "start-limit-hit",
|
||
|
};
|
||
|
|
||
|
DEFINE_STRING_TABLE_LOOKUP(timer_result, TimerResult);
|
||
|
diff --git a/src/core/timer.h b/src/core/timer.h
|
||
|
index d23e19d622..833aadb0b8 100644
|
||
|
--- a/src/core/timer.h
|
||
|
+++ b/src/core/timer.h
|
||
|
@@ -32,7 +32,6 @@ typedef enum TimerResult {
|
||
|
TIMER_SUCCESS,
|
||
|
TIMER_FAILURE_RESOURCES,
|
||
|
TIMER_FAILURE_START_LIMIT_HIT,
|
||
|
- TIMER_FAILURE_UNIT_CONDITION_FAILED,
|
||
|
_TIMER_RESULT_MAX,
|
||
|
_TIMER_RESULT_INVALID = -1
|
||
|
} TimerResult;
|
||
|
diff --git a/src/core/unit.c b/src/core/unit.c
|
||
|
index 0810bf5a58..dfe0c243ef 100644
|
||
|
--- a/src/core/unit.c
|
||
|
+++ b/src/core/unit.c
|
||
|
@@ -5661,16 +5661,6 @@ int unit_thaw_vtable_common(Unit *u) {
|
||
|
return unit_cgroup_freezer_action(u, FREEZER_THAW);
|
||
|
}
|
||
|
|
||
|
-bool unit_has_failed_condition_or_assert(Unit *u) {
|
||
|
- if (dual_timestamp_is_set(&u->condition_timestamp) && !u->condition_result)
|
||
|
- return true;
|
||
|
-
|
||
|
- if (dual_timestamp_is_set(&u->assert_timestamp) && !u->assert_result)
|
||
|
- return true;
|
||
|
-
|
||
|
- return false;
|
||
|
-}
|
||
|
-
|
||
|
static const char* const collect_mode_table[_COLLECT_MODE_MAX] = {
|
||
|
[COLLECT_INACTIVE] = "inactive",
|
||
|
[COLLECT_INACTIVE_OR_FAILED] = "inactive-or-failed",
|
||
|
diff --git a/src/core/unit.h b/src/core/unit.h
|
||
|
index a924bd2e83..b8b914711f 100644
|
||
|
--- a/src/core/unit.h
|
||
|
+++ b/src/core/unit.h
|
||
|
@@ -847,8 +847,6 @@ void unit_thawed(Unit *u);
|
||
|
int unit_freeze_vtable_common(Unit *u);
|
||
|
int unit_thaw_vtable_common(Unit *u);
|
||
|
|
||
|
-bool unit_has_failed_condition_or_assert(Unit *u);
|
||
|
-
|
||
|
/* Macros which append UNIT= or USER_UNIT= to the message */
|
||
|
|
||
|
#define log_unit_full(unit, level, error, ...) \
|