projects
/
platform
/
upstream
/
ofono.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1e0c418
)
gdbus: Fix match rule for NameOwnerChanged
author
Alban Crequy
<alban.crequy@collabora.co.uk>
Tue, 15 Jul 2014 10:29:41 +0000
(11:29 +0100)
committer
Marcel Holtmann
<marcel@holtmann.org>
Mon, 15 Sep 2014 16:03:46 +0000
(18:03 +0200)
When subscribing to the D-Bus signal NameOwnerChanged from the bus driver,
specify the object path and the sender in the match rule. Otherwise, random
connections on the bus could impersonate the bus driver.
gdbus/watch.c
patch
|
blob
|
history
diff --git
a/gdbus/watch.c
b/gdbus/watch.c
index 2f5e8657e6a3a0ac8077389911bbfd2e13d67254..0d0054c11ea9c948c7612b9b2890ae99454aeb6f 100644
(file)
--- a/
gdbus/watch.c
+++ b/
gdbus/watch.c
@@
-703,7
+703,8
@@
guint g_dbus_add_service_watch(DBusConnection *connection, const char *name,
if (name == NULL)
return 0;
- data = filter_data_get(connection, service_filter, NULL, NULL,
+ data = filter_data_get(connection, service_filter,
+ DBUS_SERVICE_DBUS, DBUS_PATH_DBUS,
DBUS_INTERFACE_DBUS, "NameOwnerChanged",
name);
if (data == NULL)