592caf
From 51737206afaa10d902c86ec9b5ec97cf425039c2 Mon Sep 17 00:00:00 2001
592caf
From: =?UTF-8?q?Michal=20Sekleta=CC=81r?= <msekleta@redhat.com>
592caf
Date: Thu, 9 Jul 2020 18:16:44 +0200
592caf
Subject: [PATCH] core: prevent excessive /proc/self/mountinfo parsing
592caf
592caf
(cherry picked from commit d586f642fd90e3bb378f7b6d3e3a64a753e51756)
592caf
592caf
Resolves: #1819868
592caf
---
592caf
 src/core/mount.c | 6 ++++++
592caf
 1 file changed, 6 insertions(+)
592caf
592caf
diff --git a/src/core/mount.c b/src/core/mount.c
592caf
index 2746372db2..076dfd06a3 100644
592caf
--- a/src/core/mount.c
592caf
+++ b/src/core/mount.c
592caf
@@ -1763,6 +1763,12 @@ static void mount_enumerate(Manager *m) {
592caf
                         goto fail;
592caf
                 }
592caf
 
592caf
+                r = sd_event_source_set_ratelimit(m->mount_event_source, 1 * USEC_PER_SEC, 5);
592caf
+                if (r < 0) {
592caf
+                        log_error_errno(r, "Failed to enable rate limit for mount events: %m");
592caf
+                        goto fail;
592caf
+                }
592caf
+
592caf
                 (void) sd_event_source_set_description(m->mount_event_source, "mount-monitor-dispatch");
592caf
         }
592caf