core: refactor setting of D-Bus properties via NMManager

- Also if the target object is the NMManager instance itself,
  re-fetch the manager via nm_bus_manager_get_registered_object().
  This way, we only set the property on the manager, if
  it's also exported according to the bus-manager. Also,
  we don't treat the manager instance special.

- Move fetching the object (nm_bus_manager_get_registered_object())
  from do_set_property_check() to prop_set_auth_done_cb(). Otherwise,
  we fetch the object first, but there is no guarantee that the object
  is still exported after the asynchronous authentication succeeds.
This commit is contained in:
Thomas Haller
2015-09-15 11:34:00 +02:00
parent a55c87a2c0
commit a33fc00239
3 changed files with 56 additions and 41 deletions

View File

@@ -555,6 +555,19 @@ nm_exported_object_get_interfaces (NMExportedObject *self)
return priv->interfaces; return priv->interfaces;
} }
GDBusInterfaceSkeleton *
nm_exported_object_get_interface_by_type (NMExportedObject *self, GType interface_type)
{
GSList *interfaces;
interfaces = nm_exported_object_get_interfaces (self);
for (; interfaces; interfaces = interfaces->next) {
if (G_TYPE_CHECK_INSTANCE_TYPE (interfaces->data, interface_type))
return interfaces->data;
}
return NULL;
}
static void static void
nm_exported_object_init (NMExportedObject *self) nm_exported_object_init (NMExportedObject *self)
{ {

View File

@@ -53,6 +53,7 @@ const char *nm_exported_object_get_path (NMExportedObject *self);
gboolean nm_exported_object_is_exported (NMExportedObject *self); gboolean nm_exported_object_is_exported (NMExportedObject *self);
void nm_exported_object_unexport (NMExportedObject *self); void nm_exported_object_unexport (NMExportedObject *self);
GSList * nm_exported_object_get_interfaces (NMExportedObject *self); GSList * nm_exported_object_get_interfaces (NMExportedObject *self);
GDBusInterfaceSkeleton *nm_exported_object_get_interface_by_type (NMExportedObject *self, GType interface_type);
G_END_DECLS G_END_DECLS

View File

@@ -56,6 +56,7 @@
#include "NetworkManagerUtils.h" #include "NetworkManagerUtils.h"
#include "nmdbus-manager.h" #include "nmdbus-manager.h"
#include "nmdbus-device.h"
static void add_device (NMManager *self, NMDevice *device, gboolean try_assume); static void add_device (NMManager *self, NMDevice *device, gboolean try_assume);
@@ -4404,8 +4405,8 @@ typedef struct {
const char *permission; const char *permission;
const char *audit_op; const char *audit_op;
char *audit_prop_value; char *audit_prop_value;
GObject *object; GType interface_type;
const char *property; const char *glib_propname;
gboolean set_enable; gboolean set_enable;
} PropertyFilterData; } PropertyFilterData;
@@ -4416,7 +4417,6 @@ free_property_filter_data (PropertyFilterData *pfd)
g_object_unref (pfd->connection); g_object_unref (pfd->connection);
g_object_unref (pfd->message); g_object_unref (pfd->message);
g_clear_object (&pfd->subject); g_clear_object (&pfd->subject);
g_clear_object (&pfd->object);
g_free (pfd->audit_prop_value); g_free (pfd->audit_prop_value);
g_slice_free (PropertyFilterData, pfd); g_slice_free (PropertyFilterData, pfd);
} }
@@ -4431,21 +4431,46 @@ prop_set_auth_done_cb (NMAuthChain *chain,
NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (pfd->self); NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (pfd->self);
NMAuthCallResult result; NMAuthCallResult result;
GDBusMessage *reply; GDBusMessage *reply;
const char *error_message;
NMExportedObject *object;
priv->auth_chains = g_slist_remove (priv->auth_chains, chain); priv->auth_chains = g_slist_remove (priv->auth_chains, chain);
result = nm_auth_chain_get_result (chain, pfd->permission); result = nm_auth_chain_get_result (chain, pfd->permission);
if (error || (result != NM_AUTH_CALL_RESULT_YES)) { if (error || (result != NM_AUTH_CALL_RESULT_YES)) {
reply = g_dbus_message_new_method_error (pfd->message, reply = g_dbus_message_new_method_error (pfd->message,
NM_PERM_DENIED_ERROR, NM_PERM_DENIED_ERROR,
"Not authorized to perform this operation"); (error_message = "Not authorized to perform this operation"));
nm_audit_log_control_op (pfd->audit_op, pfd->audit_prop_value, FALSE, pfd->subject, error ? error->message : NULL); if (error)
} else { error_message = error->message;
g_object_set (pfd->object, pfd->property, pfd->set_enable, NULL); goto done;
reply = g_dbus_message_new_method_reply (pfd->message);
g_dbus_message_set_body (reply, g_variant_new_tuple (NULL, 0));
nm_audit_log_control_op (pfd->audit_op, pfd->audit_prop_value, TRUE, pfd->subject, NULL);
} }
object = nm_bus_manager_get_registered_object (priv->dbus_mgr,
g_dbus_message_get_path (pfd->message));
if (!object) {
reply = g_dbus_message_new_method_error (pfd->message,
"org.freedesktop.DBus.Error.UnknownObject",
(error_message = "Object doesn't exist."));
goto done;
}
/* do some extra type checking... */
if (!nm_exported_object_get_interface_by_type (object, pfd->interface_type)) {
reply = g_dbus_message_new_method_error (pfd->message,
"org.freedesktop.DBus.Error.InvalidArgs",
(error_message = "Object is of unexpected type."));
goto done;
}
/* ... but set the property on the @object itself. It would be correct to set the property
* on the skeleton interface, but as it is now, the result is the same. */
g_object_set (object, pfd->glib_propname, pfd->set_enable, NULL);
reply = g_dbus_message_new_method_reply (pfd->message);
g_dbus_message_set_body (reply, g_variant_new_tuple (NULL, 0));
error_message = NULL;
done:
nm_audit_log_control_op (pfd->audit_op, pfd->audit_prop_value, !error_message, pfd->subject, error_message);
g_dbus_connection_send_message (pfd->connection, reply, g_dbus_connection_send_message (pfd->connection, reply,
G_DBUS_SEND_MESSAGE_FLAGS_NONE, G_DBUS_SEND_MESSAGE_FLAGS_NONE,
NULL, NULL); NULL, NULL);
@@ -4464,30 +4489,6 @@ do_set_property_check (gpointer user_data)
NMAuthChain *chain; NMAuthChain *chain;
const char *error_message = NULL; const char *error_message = NULL;
if (!pfd->object) {
NMExportedObject *object;
object = nm_bus_manager_get_registered_object (nm_bus_manager_get (),
g_dbus_message_get_path (pfd->message));
if (!object) {
reply = g_dbus_message_new_method_error (pfd->message,
"org.freedesktop.DBus.Error.UnknownObject",
(error_message = "Object doesn't exist."));
goto out;
}
/* If we lookup the object, we expect the object to be of a certain type.
* Only NMDevice type have settable properties. */
if (!NM_IS_DEVICE (object)) {
reply = g_dbus_message_new_method_error (pfd->message,
"org.freedesktop.DBus.Error.InvalidArgs",
(error_message = "Object is of unexpected type."));
goto out;
}
pfd->object = g_object_ref (object);
}
pfd->subject = nm_auth_subject_new_unix_process_from_message (pfd->connection, pfd->message); pfd->subject = nm_auth_subject_new_unix_process_from_message (pfd->connection, pfd->message);
if (!pfd->subject) { if (!pfd->subject) {
reply = g_dbus_message_new_method_error (pfd->message, reply = g_dbus_message_new_method_error (pfd->message,
@@ -4534,7 +4535,7 @@ prop_filter (GDBusConnection *connection,
const char *glib_propname = NULL, *permission = NULL; const char *glib_propname = NULL, *permission = NULL;
const char *audit_op = NULL; const char *audit_op = NULL;
gboolean set_enable; gboolean set_enable;
GObject *object = NULL; GType interface_type = G_TYPE_INVALID;
PropertyFilterData *pfd; PropertyFilterData *pfd;
self = g_weak_ref_get (user_data); self = g_weak_ref_get (user_data);
@@ -4580,8 +4581,7 @@ prop_filter (GDBusConnection *connection,
audit_op = NM_AUDIT_OP_RADIO_CONTROL; audit_op = NM_AUDIT_OP_RADIO_CONTROL;
} else } else
return message; return message;
interface_type = NMDBUS_TYPE_MANAGER_SKELETON;
object = g_object_ref (self);
} else if (!strcmp (propiface, NM_DBUS_INTERFACE_DEVICE)) { } else if (!strcmp (propiface, NM_DBUS_INTERFACE_DEVICE)) {
if (!strcmp (propname, "Autoconnect")) { if (!strcmp (propname, "Autoconnect")) {
glib_propname = NM_DEVICE_AUTOCONNECT; glib_propname = NM_DEVICE_AUTOCONNECT;
@@ -4589,6 +4589,7 @@ prop_filter (GDBusConnection *connection,
audit_op = NM_AUDIT_OP_DEVICE_AUTOCONNECT; audit_op = NM_AUDIT_OP_DEVICE_AUTOCONNECT;
} else } else
return message; return message;
interface_type = NMDBUS_TYPE_DEVICE_SKELETON;
} else } else
return message; return message;
@@ -4602,11 +4603,11 @@ prop_filter (GDBusConnection *connection,
pfd->connection = g_object_ref (connection); pfd->connection = g_object_ref (connection);
pfd->message = message; pfd->message = message;
pfd->permission = permission; pfd->permission = permission;
pfd->object = object; pfd->interface_type = interface_type;
pfd->property = glib_propname; pfd->glib_propname = glib_propname;
pfd->set_enable = set_enable; pfd->set_enable = set_enable;
pfd->audit_op = audit_op; pfd->audit_op = audit_op;
pfd->audit_prop_value = g_strdup_printf ("%s:%d", pfd->property, pfd->set_enable); pfd->audit_prop_value = g_strdup_printf ("%s:%d", pfd->glib_propname, pfd->set_enable);
g_idle_add (do_set_property_check, pfd); g_idle_add (do_set_property_check, pfd);
return NULL; return NULL;
@@ -4996,7 +4997,7 @@ nm_manager_init (NMManager *manager)
static void static void
get_property (GObject *object, guint prop_id, get_property (GObject *object, guint prop_id,
GValue *value, GParamSpec *pspec) GValue *value, GParamSpec *pspec)
{ {
NMManager *self = NM_MANAGER (object); NMManager *self = NM_MANAGER (object);
NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self); NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);