/* * * BlueZ - Bluetooth protocol stack for Linux * * Copyright (C) 2004-2007 Marcel Holtmann * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * */ #ifdef HAVE_CONFIG_H #include #endif #include #include #include #include #include #include #include #include #include #include #include #include #include "hcid.h" #include "dbus.h" #include "dbus-common.h" #include "dbus-error.h" #include "dbus-security.h" #include "dbus-service.h" #include "dbus-manager.h" #include "dbus-hci.h" #include "sdp-xml.h" static int default_adapter_id = -1; static uint32_t next_handle = 0x10000; static DBusHandlerResult interface_version(DBusConnection *conn, DBusMessage *msg, void *data) { DBusMessage *reply; dbus_uint32_t version = 0; if (!dbus_message_has_signature(msg, DBUS_TYPE_INVALID_AS_STRING)) return error_invalid_arguments(conn, msg); reply = dbus_message_new_method_return(msg); if (!reply) return DBUS_HANDLER_RESULT_NEED_MEMORY; dbus_message_append_args(reply, DBUS_TYPE_UINT32, &version, DBUS_TYPE_INVALID); return send_message_and_unref(conn, reply); } static DBusHandlerResult default_adapter(DBusConnection *conn, DBusMessage *msg, void *data) { DBusMessage *reply; char path[MAX_PATH_LENGTH], *path_ptr = path; if (!dbus_message_has_signature(msg, DBUS_TYPE_INVALID_AS_STRING)) return error_invalid_arguments(conn, msg); if (default_adapter_id < 0) return error_no_such_adapter(conn, msg); reply = dbus_message_new_method_return(msg); if (!reply) return DBUS_HANDLER_RESULT_NEED_MEMORY; snprintf(path, sizeof(path), "%s/hci%d", BASE_PATH, default_adapter_id); dbus_message_append_args(reply, DBUS_TYPE_STRING, &path_ptr, DBUS_TYPE_INVALID); return send_message_and_unref(conn, reply); } static DBusHandlerResult find_adapter(DBusConnection *conn, DBusMessage *msg, void *data) { DBusMessage *reply; char path[MAX_PATH_LENGTH], *path_ptr = path; const char *pattern; int dev_id; if (!dbus_message_get_args(msg, NULL, DBUS_TYPE_STRING, &pattern, DBUS_TYPE_INVALID)) return error_invalid_arguments(conn, msg); dev_id = hci_devid(pattern); if (dev_id < 0) return error_no_such_adapter(conn, msg); reply = dbus_message_new_method_return(msg); if (!reply) return DBUS_HANDLER_RESULT_NEED_MEMORY; snprintf(path, sizeof(path), "%s/hci%d", BASE_PATH, dev_id); dbus_message_append_args(reply, DBUS_TYPE_STRING, &path_ptr, DBUS_TYPE_INVALID); return send_message_and_unref(conn, reply); } static DBusHandlerResult list_adapters(DBusConnection *conn, DBusMessage *msg, void *data) { DBusMessageIter iter; DBusMessageIter array_iter; DBusMessage *reply; struct hci_dev_list_req *dl; struct hci_dev_req *dr; int i, sk; if (!dbus_message_has_signature(msg, DBUS_TYPE_INVALID_AS_STRING)) return error_invalid_arguments(conn, msg); sk = socket(AF_BLUETOOTH, SOCK_RAW, BTPROTO_HCI); if (sk < 0) return error_failed(conn, msg, errno); dl = malloc(HCI_MAX_DEV * sizeof(*dr) + sizeof(*dl)); if (!dl) { close(sk); return error_out_of_memory(conn, msg); } dl->dev_num = HCI_MAX_DEV; dr = dl->dev_req; if (ioctl(sk, HCIGETDEVLIST, dl) < 0) { int err = errno; close(sk); free(dl); return error_failed(conn, msg, err); } dr = dl->dev_req; reply = dbus_message_new_method_return(msg); if (!reply) { close(sk); free(dl); return DBUS_HANDLER_RESULT_NEED_MEMORY; } dbus_message_iter_init_append(reply, &iter); dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY, DBUS_TYPE_STRING_AS_STRING, &array_iter); for (i = 0; i < dl->dev_num; i++, dr++) { char path[MAX_PATH_LENGTH], *path_ptr = path; struct hci_dev_info di; if (hci_devinfo(dr->dev_id, &di) < 0) continue; snprintf(path, sizeof(path), "%s/%s", BASE_PATH, di.name); dbus_message_iter_append_basic(&array_iter, DBUS_TYPE_STRING, &path_ptr); } dbus_message_iter_close_container(&iter, &array_iter); free(dl); close(sk); return send_message_and_unref(conn, reply); } static DBusHandlerResult find_service(DBusConnection *conn, DBusMessage *msg, void *data) { DBusMessage *reply; const char *pattern, *path; if (!dbus_message_get_args(msg, NULL, DBUS_TYPE_STRING, &pattern, DBUS_TYPE_INVALID)) return error_invalid_arguments(conn, msg); path = search_service(conn, pattern); if (!path) return error_no_such_service(conn, msg); reply = dbus_message_new_method_return(msg); if (!reply) return DBUS_HANDLER_RESULT_NEED_MEMORY; dbus_message_append_args(reply, DBUS_TYPE_STRING, &path, DBUS_TYPE_INVALID); return send_message_and_unref(conn, reply); } static DBusHandlerResult list_services(DBusConnection *conn, DBusMessage *msg, void *data) { DBusMessage *reply; DBusMessageIter iter; DBusMessageIter array_iter; if (!dbus_message_has_signature(msg, DBUS_TYPE_INVALID_AS_STRING)) return error_invalid_arguments(conn, msg); reply = dbus_message_new_method_return(msg); if (!reply) return DBUS_HANDLER_RESULT_NEED_MEMORY; dbus_message_iter_init_append(reply, &iter); dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY, DBUS_TYPE_STRING_AS_STRING, &array_iter); append_available_services(&array_iter); dbus_message_iter_close_container(&iter, &array_iter); return send_message_and_unref(conn, reply); } static sdp_buf_t *service_record_extract(DBusMessageIter *iter) { sdp_buf_t *sdp_buf; const uint8_t *buff; int len = -1; dbus_message_iter_get_fixed_array(iter, &buff, &len); if (len < 0) return NULL; sdp_buf = malloc(sizeof(sdp_buf_t)); if (!sdp_buf) return NULL; memset(sdp_buf, 0, sizeof(sdp_buf_t)); sdp_buf->data = malloc(len); sdp_buf->data_size = len; sdp_buf->buf_size = len; memcpy(sdp_buf->data, buff, len); return sdp_buf; } static DBusHandlerResult add_service_record(DBusConnection *conn, DBusMessage *msg, void *data) { struct service *service; DBusMessageIter iter, array_iter; DBusMessage *reply; struct binary_record *rec; const char *path; int err; if (!hcid_dbus_use_experimental()) return error_unknown_method(conn, msg); /* Check if it is an array of bytes */ if (strcmp(dbus_message_get_signature(msg), "say")) return error_invalid_arguments(conn, msg); dbus_message_iter_init(msg, &iter); dbus_message_iter_get_basic(&iter, &path); if (!dbus_connection_get_object_path_data(conn, path, (void *) &service)) { /* If failed the path is invalid! */ return error_invalid_arguments(conn, msg); } if (!service || strcmp(dbus_message_get_sender(msg), service->bus_name)) return error_not_authorized(conn, msg); dbus_message_iter_next(&iter); dbus_message_iter_recurse(&iter, &array_iter); reply = dbus_message_new_method_return(msg); if (!reply) return DBUS_HANDLER_RESULT_NEED_MEMORY; rec = binary_record_new(); if (!rec) return DBUS_HANDLER_RESULT_NEED_MEMORY; rec->buf = service_record_extract(&array_iter); if (!rec->buf) { binary_record_free(rec); dbus_message_unref(reply); return error_invalid_arguments(conn, msg); } /* Assign a new handle */ rec->ext_handle = next_handle++; if (service->bus_name) { uint32_t handle = 0; if (register_sdp_record(rec->buf->data, rec->buf->data_size, &handle) < 0) { err = errno; error("Service record registration failed: %s (%d)", strerror(err), err); goto fail; } rec->handle = handle; } service->records = g_slist_append(service->records, rec); dbus_message_append_args(reply, DBUS_TYPE_UINT32, &rec->ext_handle, DBUS_TYPE_INVALID); return send_message_and_unref(conn, reply); fail: binary_record_free(rec); dbus_message_unref(reply); return error_failed(conn, msg, err); } static DBusHandlerResult add_service_record_xml(DBusConnection *conn, DBusMessage *msg, void *data) { struct service *service; DBusMessage *reply; struct binary_record *rec; sdp_record_t *sdp_rec; const char *path; const char *record; int err; if (!hcid_dbus_use_experimental()) return error_unknown_method(conn, msg); if (!dbus_message_get_args(msg, NULL, DBUS_TYPE_STRING, &path, DBUS_TYPE_STRING, &record, DBUS_TYPE_INVALID)) return error_invalid_arguments(conn, msg); if (!dbus_connection_get_object_path_data(conn, path, (void *) &service)) { /* If failed the path is invalid! */ return error_invalid_arguments(conn, msg); } if (!service || strcmp(dbus_message_get_sender(msg), service->bus_name)) return error_not_authorized(conn, msg); reply = dbus_message_new_method_return(msg); if (!reply) return DBUS_HANDLER_RESULT_NEED_MEMORY; sdp_rec = sdp_xml_parse_record(record, strlen(record)); if (!sdp_rec) { error("Parsing of XML service record failed"); dbus_message_unref(reply); return error_invalid_arguments(conn, msg); } /* TODO: Is this correct? We remove the record handle attribute (if it exists) so SDP server assigns a new one */ sdp_attr_remove(sdp_rec, 0x0); rec = binary_record_new(); if (!rec) { sdp_record_free(sdp_rec); dbus_message_unref(reply); return DBUS_HANDLER_RESULT_NEED_MEMORY; } rec->buf = malloc(sizeof(sdp_buf_t)); if (!rec->buf) { sdp_record_free(sdp_rec); binary_record_free(rec); dbus_message_unref(reply); return DBUS_HANDLER_RESULT_NEED_MEMORY; } /* Generate binary record */ if (sdp_gen_record_pdu(sdp_rec, rec->buf) != 0) { sdp_record_free(sdp_rec); binary_record_free(rec); dbus_message_unref(reply); return DBUS_HANDLER_RESULT_NEED_MEMORY; } sdp_record_free(sdp_rec); /* Assign a new handle */ rec->ext_handle = next_handle++; if (service->bus_name) { uint32_t handle = 0; if (register_sdp_record(rec->buf->data, rec->buf->data_size, &handle) < 0) { err = errno; error("Service record registration failed: %s (%d)", strerror(err), err); goto fail; } rec->handle = handle; } service->records = g_slist_append(service->records, rec); dbus_message_append_args(reply, DBUS_TYPE_UINT32, &rec->ext_handle, DBUS_TYPE_INVALID); return send_message_and_unref(conn, reply); fail: binary_record_free(rec); dbus_message_unref(reply); return error_failed(conn, msg, err); } static DBusHandlerResult remove_service_record(DBusConnection *conn, DBusMessage *msg, void *data) { struct service *service; struct binary_record *rec; DBusMessage *reply; GSList *l; const char *path; uint32_t handle; if (!hcid_dbus_use_experimental()) return error_unknown_method(conn, msg); if (!dbus_message_get_args(msg, NULL, DBUS_TYPE_STRING, &path, DBUS_TYPE_UINT32, &handle, DBUS_TYPE_INVALID)) return error_invalid_arguments(conn, msg); if (!dbus_connection_get_object_path_data(conn, path, (void *) &service)) { /* If failed the path is invalid! */ return error_invalid_arguments(conn, msg); } if (!service || strcmp(dbus_message_get_sender(msg), service->bus_name)) return error_not_authorized(conn, msg); l = g_slist_find_custom(service->records, &handle, (GCompareFunc) binary_record_cmp); if (!l) return error_record_does_not_exist(conn, msg); reply = dbus_message_new_method_return(msg); if (!reply) return DBUS_HANDLER_RESULT_NEED_MEMORY; rec = l->data; service->records = g_slist_remove(service->records, rec); /* If the service is running: remove it from the from sdpd */ if (service->bus_name && rec->handle != 0xffffffff) { if (unregister_sdp_record(rec->handle) < 0) { error("Service record unregistration failed: %s (%d)", strerror(errno), errno); } } binary_record_free(rec); return send_message_and_unref(conn, reply); } static struct service_data methods[] = { { "InterfaceVersion", interface_version }, { "DefaultAdapter", default_adapter }, { "FindAdapter", find_adapter }, { "ListAdapters", list_adapters }, { "FindService", find_service }, { "ListServices", list_services }, { "AddServiceRecord", add_service_record }, { "AddServiceRecordFromXML", add_service_record_xml }, { "RemoveServiceRecord", remove_service_record }, { NULL, NULL } }; DBusHandlerResult handle_manager_method(DBusConnection *conn, DBusMessage *msg, void *data) { service_handler_func_t handler; const char *iface, *name; iface = dbus_message_get_interface(msg); name = dbus_message_get_member(msg); if (!strcmp(DBUS_INTERFACE_INTROSPECTABLE, iface) && !strcmp("Introspect", name)) { return simple_introspect(conn, msg, data); } else if (!strcmp(iface, MANAGER_INTERFACE)) { handler = find_service_handler(methods, msg); if (handler) return handler(conn, msg, data); else return DBUS_HANDLER_RESULT_NOT_YET_HANDLED; } if (!strcmp(iface, SECURITY_INTERFACE)) return handle_security_method(conn, msg, data); return error_unknown_method(conn, msg); } int get_default_adapter(void) { return default_adapter_id; } void set_default_adapter(int new_default) { default_adapter_id = new_default; }