summaryrefslogtreecommitdiff
path: root/gdbus
diff options
context:
space:
mode:
authorAndrei Emeltchenko <andrei.emeltchenko@intel.com>2014-08-11 10:50:44 +0300
committerJohan Hedberg <johan.hedberg@intel.com>2014-08-11 16:31:57 +0300
commit9af26f7fc856203d1b4a90b6de255929abd451ff (patch)
treeb51cf79793bc4ecd707db4648d29cabe45f4d8f3 /gdbus
parent08d255bf1401f1e9f0d647aeea0ec73f65f18029 (diff)
downloadbluez-9af26f7fc856203d1b4a90b6de255929abd451ff.tar.gz
gdbus: Fix use after free
Refactor filter_data_remove_callback so that we do not iterate over freed pointer.
Diffstat (limited to 'gdbus')
-rw-r--r--gdbus/watch.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/gdbus/watch.c b/gdbus/watch.c
index 0f99f4f1a..474d3d4c1 100644
--- a/gdbus/watch.c
+++ b/gdbus/watch.c
@@ -362,6 +362,7 @@ static void service_data_free(struct service_data *data)
callback->data = NULL;
}
+/* Returns TRUE if data is freed */
static gboolean filter_data_remove_callback(struct filter_data *data,
struct filter_callback *cb)
{
@@ -383,7 +384,7 @@ static gboolean filter_data_remove_callback(struct filter_data *data,
/* Don't remove the filter if other callbacks exist or data is lock
* processing callbacks */
if (data->callbacks || data->lock)
- return TRUE;
+ return FALSE;
if (data->registered && !remove_match(data))
return FALSE;
@@ -405,7 +406,9 @@ static DBusHandlerResult signal_filter(DBusConnection *connection,
if (cb->signal_func && !cb->signal_func(connection, message,
cb->user_data)) {
- filter_data_remove_callback(data, cb);
+ if (filter_data_remove_callback(data, cb))
+ break;
+
continue;
}
@@ -489,7 +492,9 @@ static DBusHandlerResult service_filter(DBusConnection *connection,
/* Only auto remove if it is a bus name watch */
if (data->argument[0] == ':' &&
(cb->conn_func == NULL || cb->disc_func == NULL)) {
- filter_data_remove_callback(data, cb);
+ if (filter_data_remove_callback(data, cb))
+ break;
+
continue;
}