summaryrefslogtreecommitdiffstats
path: root/hcid
diff options
context:
space:
mode:
authorClaudio Takahasi <claudio.takahasi@openbossa.org>2006-10-27 14:57:58 +0000
committerClaudio Takahasi <claudio.takahasi@openbossa.org>2006-10-27 14:57:58 +0000
commit81cc3f9c484d17b71db155f07c23fac21282d550 (patch)
treeccdf980b8b338778cb0835cddd3665a330c589b9 /hcid
parentc761480865c6b65e370e2bba750c86c226a7fc3f (diff)
Added service authorization skeleton
Diffstat (limited to 'hcid')
-rw-r--r--hcid/dbus-security.c15
-rw-r--r--hcid/dbus-service.c54
2 files changed, 46 insertions, 23 deletions
diff --git a/hcid/dbus-security.c b/hcid/dbus-security.c
index aff0a3f0..4f8523c4 100644
--- a/hcid/dbus-security.c
+++ b/hcid/dbus-security.c
@@ -385,11 +385,26 @@ static DBusHandlerResult unregister_default_agent(DBusConnection *conn,
return send_message_and_unref(conn, reply);
}
+static DBusHandlerResult authorize_service(DBusConnection *conn,
+ DBusMessage *msg, void *data)
+{
+ return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
+}
+
+static DBusHandlerResult cancel_service_authorization(DBusConnection *conn,
+ DBusMessage *msg, void *data)
+{
+ return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
+}
+
+
static struct service_data sec_services[] = {
{ "RegisterDefaultPasskeyAgent", register_default_agent },
{ "UnregisterDefaultPasskeyAgent", unregister_default_agent },
{ "RegisterPasskeyAgent", register_agent },
{ "UnregisterPasskeyAgent", unregister_agent },
+ { "Authorize", authorize_service },
+ { "CancelAuthorization", cancel_service_authorization },
{ NULL, NULL }
};
diff --git a/hcid/dbus-service.c b/hcid/dbus-service.c
index fbffe9ee..32077f7d 100644
--- a/hcid/dbus-service.c
+++ b/hcid/dbus-service.c
@@ -503,37 +503,45 @@ static DBusHandlerResult msg_func_services(DBusConnection *conn,
DBusPendingCall *pending;
DBusMessage *forward;
struct service_call *call_data;
+ const char *iface;
- handler = find_service_handler(services_methods, msg);
- if (handler)
- return handler(conn, msg, data);
+ iface = dbus_message_get_interface(msg);
- forward = dbus_message_copy(msg);
- if(!forward)
- return DBUS_HANDLER_RESULT_NEED_MEMORY;
+ if (strcmp("org.bluez.Service", iface) == 0) {
- dbus_message_set_destination(forward, agent->id);
- dbus_message_set_path(forward, dbus_message_get_path(msg));
+ handler = find_service_handler(services_methods, msg);
+ if (handler)
+ return handler(conn, msg, data);
- call_data = malloc(sizeof(struct service_call));
- if (!call_data) {
- dbus_message_unref(forward);
- return DBUS_HANDLER_RESULT_NEED_MEMORY;
- }
+ forward = dbus_message_copy(msg);
+ if(!forward)
+ return DBUS_HANDLER_RESULT_NEED_MEMORY;
- call_data->conn = dbus_connection_ref(conn);
- call_data->msg = dbus_message_ref(msg);
+ dbus_message_set_destination(forward, agent->id);
+ dbus_message_set_path(forward, dbus_message_get_path(msg));
- if (dbus_connection_send_with_reply(conn, forward, &pending, -1) == FALSE) {
- service_call_free(call_data);
- dbus_message_unref(forward);
- return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
- }
+ call_data = malloc(sizeof(struct service_call));
+ if (!call_data) {
+ dbus_message_unref(forward);
+ return DBUS_HANDLER_RESULT_NEED_MEMORY;
+ }
- dbus_pending_call_set_notify(pending, forward_reply, call_data, service_call_free);
- dbus_message_unref(forward);
+ call_data->conn = dbus_connection_ref(conn);
+ call_data->msg = dbus_message_ref(msg);
- return DBUS_HANDLER_RESULT_HANDLED;
+ if (dbus_connection_send_with_reply(conn, forward, &pending, -1) == FALSE) {
+ service_call_free(call_data);
+ dbus_message_unref(forward);
+ return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
+ }
+
+ dbus_pending_call_set_notify(pending, forward_reply, call_data, service_call_free);
+
+ return send_message_and_unref(conn, forward);
+ } else if (strcmp("org.bluez.Security", iface) == 0)
+ return handle_security_method(conn, msg, data);
+ else
+ return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
}
static const DBusObjectPathVTable services_vtable = {