From 5057b6a0e488af6495146cfe96e93eb5e7beb66b Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Thu, 14 Mar 2024 19:18:15 +0000 Subject: [PATCH 07/18] gdbusprivate: Add symbolic constants for the message bus itself Using these is a bit more clearly correct than repeating them everywhere. To avoid excessive diffstat in a branch for a bug fix, I'm not immediately replacing all existing occurrences of the same literals with these names. The names of these constants are chosen to be consistent with libdbus, despite using somewhat outdated terminology (D-Bus now uses the term "well-known bus name" for what used to be called a service name, reserving the word "service" to mean specifically the programs that have .service files and participate in service activation). Signed-off-by: Simon McVittie CVE: CVE-2024-34397 Upstream-Status: Backport [https://gitlab.gnome.org/GNOME/glib/-/commit/5057b6a0e488af6495146cfe96e93eb5e7beb66b] Signed-off-by: Peter Marko --- gio/gdbusprivate.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gio/gdbusprivate.h b/gio/gdbusprivate.h index 72d2c32a9..ac737bd7a 100644 --- a/gio/gdbusprivate.h +++ b/gio/gdbusprivate.h @@ -29,6 +29,11 @@ G_BEGIN_DECLS +/* Bus name, interface and object path of the message bus itself */ +#define DBUS_SERVICE_DBUS "org.freedesktop.DBus" +#define DBUS_INTERFACE_DBUS DBUS_SERVICE_DBUS +#define DBUS_PATH_DBUS "/org/freedesktop/DBus" + /* ---------------------------------------------------------------------------------------------------- */ typedef struct GDBusWorker GDBusWorker; -- 2.30.2