ff6046
From c6903d1b42d1773fda4df6676618489ad760a2a1 Mon Sep 17 00:00:00 2001
ff6046
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
ff6046
Date: Wed, 18 Jul 2018 12:16:33 +0200
ff6046
Subject: [PATCH] bus: move BUS_DONT_DESTROY calls after asserts
ff6046
ff6046
It's not useful to bump the reference count before checking if the object is
ff6046
NULL. Thanks to d40f5cc498 we can do this ;).
ff6046
ff6046
Related to https://bugzilla.redhat.com/show_bug.cgi?id=1576084,
ff6046
https://bugzilla.redhat.com/show_bug.cgi?id=1575340,
ff6046
https://bugzilla.redhat.com/show_bug.cgi?id=1575350. I'm not sure why those two
ff6046
people hit this code path, while most people don't. At least we won't abort.
ff6046
ff6046
(cherry picked from commit 7ae8edcd03f74da123298330b76c3fc5425042ef)
ff6046
ff6046
Resolves: #1610397
ff6046
---
ff6046
 src/libsystemd/sd-bus/bus-objects.c | 15 ++++++++-------
ff6046
 src/libsystemd/sd-bus/sd-bus.c      |  3 ++-
ff6046
 2 files changed, 10 insertions(+), 8 deletions(-)
ff6046
ff6046
diff --git a/src/libsystemd/sd-bus/bus-objects.c b/src/libsystemd/sd-bus/bus-objects.c
ff6046
index 9609834fa9..a18ff88b07 100644
ff6046
--- a/src/libsystemd/sd-bus/bus-objects.c
ff6046
+++ b/src/libsystemd/sd-bus/bus-objects.c
ff6046
@@ -2090,7 +2090,6 @@ _public_ int sd_bus_emit_properties_changed_strv(
ff6046
                 const char *interface,
ff6046
                 char **names) {
ff6046
 
ff6046
-        BUS_DONT_DESTROY(bus);
ff6046
         bool found_interface = false;
ff6046
         char *prefix;
ff6046
         int r;
ff6046
@@ -2111,6 +2110,8 @@ _public_ int sd_bus_emit_properties_changed_strv(
ff6046
         if (names && names[0] == NULL)
ff6046
                 return 0;
ff6046
 
ff6046
+        BUS_DONT_DESTROY(bus);
ff6046
+
ff6046
         do {
ff6046
                 bus->nodes_modified = false;
ff6046
 
ff6046
@@ -2310,8 +2311,6 @@ static int object_added_append_all(sd_bus *bus, sd_bus_message *m, const char *p
ff6046
 }
ff6046
 
ff6046
 _public_ int sd_bus_emit_object_added(sd_bus *bus, const char *path) {
ff6046
-        BUS_DONT_DESTROY(bus);
ff6046
-
ff6046
         _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
ff6046
         struct node *object_manager;
ff6046
         int r;
ff6046
@@ -2341,6 +2340,8 @@ _public_ int sd_bus_emit_object_added(sd_bus *bus, const char *path) {
ff6046
         if (r == 0)
ff6046
                 return -ESRCH;
ff6046
 
ff6046
+        BUS_DONT_DESTROY(bus);
ff6046
+
ff6046
         do {
ff6046
                 bus->nodes_modified = false;
ff6046
                 m = sd_bus_message_unref(m);
ff6046
@@ -2481,8 +2482,6 @@ static int object_removed_append_all(sd_bus *bus, sd_bus_message *m, const char
ff6046
 }
ff6046
 
ff6046
 _public_ int sd_bus_emit_object_removed(sd_bus *bus, const char *path) {
ff6046
-        BUS_DONT_DESTROY(bus);
ff6046
-
ff6046
         _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
ff6046
         struct node *object_manager;
ff6046
         int r;
ff6046
@@ -2512,6 +2511,8 @@ _public_ int sd_bus_emit_object_removed(sd_bus *bus, const char *path) {
ff6046
         if (r == 0)
ff6046
                 return -ESRCH;
ff6046
 
ff6046
+        BUS_DONT_DESTROY(bus);
ff6046
+
ff6046
         do {
ff6046
                 bus->nodes_modified = false;
ff6046
                 m = sd_bus_message_unref(m);
ff6046
@@ -2645,8 +2646,6 @@ static int interfaces_added_append_one(
ff6046
 }
ff6046
 
ff6046
 _public_ int sd_bus_emit_interfaces_added_strv(sd_bus *bus, const char *path, char **interfaces) {
ff6046
-        BUS_DONT_DESTROY(bus);
ff6046
-
ff6046
         _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
ff6046
         struct node *object_manager;
ff6046
         char **i;
ff6046
@@ -2669,6 +2668,8 @@ _public_ int sd_bus_emit_interfaces_added_strv(sd_bus *bus, const char *path, ch
ff6046
         if (r == 0)
ff6046
                 return -ESRCH;
ff6046
 
ff6046
+        BUS_DONT_DESTROY(bus);
ff6046
+
ff6046
         do {
ff6046
                 bus->nodes_modified = false;
ff6046
                 m = sd_bus_message_unref(m);
ff6046
diff --git a/src/libsystemd/sd-bus/sd-bus.c b/src/libsystemd/sd-bus/sd-bus.c
ff6046
index 089b51a6d9..7f03528b89 100644
ff6046
--- a/src/libsystemd/sd-bus/sd-bus.c
ff6046
+++ b/src/libsystemd/sd-bus/sd-bus.c
ff6046
@@ -2883,7 +2883,6 @@ finish:
ff6046
 }
ff6046
 
ff6046
 static int bus_process_internal(sd_bus *bus, bool hint_priority, int64_t priority, sd_bus_message **ret) {
ff6046
-        BUS_DONT_DESTROY(bus);
ff6046
         int r;
ff6046
 
ff6046
         /* Returns 0 when we didn't do anything. This should cause the
ff6046
@@ -2899,6 +2898,8 @@ static int bus_process_internal(sd_bus *bus, bool hint_priority, int64_t priorit
ff6046
         assert_return(!bus->current_message, -EBUSY);
ff6046
         assert(!bus->current_slot);
ff6046
 
ff6046
+        BUS_DONT_DESTROY(bus);
ff6046
+
ff6046
         switch (bus->state) {
ff6046
 
ff6046
         case BUS_UNSET: