e2ec8a
From 6abfec31acae53943896b309db4a09a1cecac9a3 Mon Sep 17 00:00:00 2001
e2ec8a
From: Lennart Poettering <lennart@poettering.net>
e2ec8a
Date: Wed, 17 Oct 2018 18:37:48 +0200
e2ec8a
Subject: [PATCH] core: enforce a limit on STATUS= texts recvd from services
e2ec8a
e2ec8a
Let's better be safe than sorry, and put a limit on what we receive.
e2ec8a
e2ec8a
(cherry picked from commit 3eac1bcae9284fb8b18f4b82156c0e85ddb004e5)
e2ec8a
e2ec8a
Related: CVE-2018-15686
e2ec8a
---
e2ec8a
 src/core/service.c | 8 ++++++--
e2ec8a
 src/core/service.h | 2 ++
e2ec8a
 2 files changed, 8 insertions(+), 2 deletions(-)
e2ec8a
e2ec8a
diff --git a/src/core/service.c b/src/core/service.c
e2ec8a
index db1356c417..db17221888 100644
e2ec8a
--- a/src/core/service.c
e2ec8a
+++ b/src/core/service.c
e2ec8a
@@ -3549,8 +3549,12 @@ static void service_notify_message(
e2ec8a
                 _cleanup_free_ char *t = NULL;
e2ec8a
 
e2ec8a
                 if (!isempty(e)) {
e2ec8a
-                        if (!utf8_is_valid(e))
e2ec8a
-                                log_unit_warning(u, "Status message in notification message is not UTF-8 clean.");
e2ec8a
+                        /* Note that this size limit check is mostly paranoia: since the datagram size we are willing
e2ec8a
+                         * to process is already limited to NOTIFY_BUFFER_MAX, this limit here should never be hit. */
e2ec8a
+                        if (strlen(e) > STATUS_TEXT_MAX)
e2ec8a
+                                log_unit_warning(u, "Status message overly long (%zu > %u), ignoring.", strlen(e), STATUS_TEXT_MAX);
e2ec8a
+                        else if (!utf8_is_valid(e))
e2ec8a
+                                log_unit_warning(u, "Status message in notification message is not UTF-8 clean, ignoring.");
e2ec8a
                         else {
e2ec8a
                                 t = strdup(e);
e2ec8a
                                 if (!t)
e2ec8a
diff --git a/src/core/service.h b/src/core/service.h
e2ec8a
index 9c06e91883..a142b09f0d 100644
e2ec8a
--- a/src/core/service.h
e2ec8a
+++ b/src/core/service.h
e2ec8a
@@ -202,3 +202,5 @@ const char* service_result_to_string(ServiceResult i) _const_;
e2ec8a
 ServiceResult service_result_from_string(const char *s) _pure_;
e2ec8a
 
e2ec8a
 DEFINE_CAST(SERVICE, Service);
e2ec8a
+
e2ec8a
+#define STATUS_TEXT_MAX (16U*1024U)