65878a
From 865e6e46f235bc9c58e61024696fff216e7a2182 Mon Sep 17 00:00:00 2001
65878a
From: Lennart Poettering <lennart@poettering.net>
65878a
Date: Mon, 7 Jul 2014 17:32:44 +0200
65878a
Subject: [PATCH] service: don't accept negative ERRNO= notification messages
65878a
65878a
(cherry picked from commit 2040ccf171404b709acb0ecf1d1f17b87c5d05f0)
65878a
65878a
Related: #1106457
65878a
---
65878a
 src/core/service.c | 2 +-
65878a
 1 file changed, 1 insertion(+), 1 deletion(-)
65878a
65878a
diff --git a/src/core/service.c b/src/core/service.c
65878a
index 3f6c8ac..814019d 100644
65878a
--- a/src/core/service.c
65878a
+++ b/src/core/service.c
65878a
@@ -3534,7 +3534,7 @@ static void service_notify_message(Unit *u, pid_t pid, char **tags) {
65878a
         if (e) {
65878a
                 int status_errno;
65878a
 
65878a
-                if (safe_atoi(e + 6, &status_errno) < 0)
65878a
+                if (safe_atoi(e + 6, &status_errno) < 0 || status_errno < 0)
65878a
                         log_warning_unit(u->id, "Failed to parse ERRNO= field in notification message: %s", e);
65878a
                 else {
65878a
                         log_debug_unit(u->id, "%s: got %s", u->id, e);