mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2025-01-26 22:33:29 +08:00
1012 lines
24 KiB
C
1012 lines
24 KiB
C
/*
|
|
*
|
|
* BlueZ - Bluetooth protocol stack for Linux
|
|
*
|
|
* Copyright (C) 2004-2007 Marcel Holtmann <marcel@holtmann.org>
|
|
*
|
|
*
|
|
* 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 <config.h>
|
|
#endif
|
|
|
|
#include <errno.h>
|
|
#include <ctype.h>
|
|
#include <dirent.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <bluetooth/bluetooth.h>
|
|
#include <bluetooth/hci.h>
|
|
#include <bluetooth/hci_lib.h>
|
|
#include <bluetooth/bnep.h>
|
|
#include <bluetooth/sdp.h>
|
|
#include <bluetooth/sdp_lib.h>
|
|
|
|
#include <glib.h>
|
|
|
|
#include "dbus.h"
|
|
#include "dbus-helper.h"
|
|
#include "logging.h"
|
|
#include "textfile.h"
|
|
|
|
#define NETWORK_MANAGER_INTERFACE "org.bluez.network.Manager"
|
|
|
|
#include "error.h"
|
|
#include "bridge.h"
|
|
#include "manager.h"
|
|
#include "common.h"
|
|
|
|
#define MAX_NAME_SIZE 256
|
|
|
|
struct pending_reply {
|
|
DBusConnection *conn;
|
|
DBusMessage *msg;
|
|
bdaddr_t src; /* Source address */
|
|
bdaddr_t dst; /* Destination address */
|
|
char *addr; /* Destination address */
|
|
char *path; /* D-Bus object path */
|
|
char *adapter_path; /* Default adapter path */
|
|
uint16_t id; /* Role */
|
|
};
|
|
|
|
static struct network_conf *conf = NULL;/* Network service configuration */
|
|
static GSList *server_paths = NULL; /* Network registered servers paths */
|
|
static GSList *connection_paths = NULL; /* Network registered connections paths */
|
|
static int default_index = -1; /* Network default connection path index */
|
|
static int net_uid = 0; /* Network objects identifier */
|
|
|
|
static DBusConnection *connection = NULL;
|
|
|
|
static void pending_reply_free(struct pending_reply *pr)
|
|
{
|
|
|
|
if (pr->addr)
|
|
g_free(pr->addr);
|
|
if (pr->path)
|
|
g_free(pr->path);
|
|
if (pr->adapter_path)
|
|
g_free(pr->adapter_path);
|
|
if (pr->msg)
|
|
dbus_message_unref(pr->msg);
|
|
if (pr->conn)
|
|
dbus_connection_unref(pr->conn);
|
|
}
|
|
|
|
static DBusHandlerResult create_path(DBusConnection *conn,
|
|
DBusMessage *msg, const char *path,
|
|
const char *sname)
|
|
{
|
|
DBusMessage *reply;
|
|
|
|
/* emit signal when it is a new path */
|
|
if (sname) {
|
|
dbus_connection_emit_signal(conn, NETWORK_PATH,
|
|
NETWORK_MANAGER_INTERFACE,
|
|
sname, DBUS_TYPE_STRING, &path,
|
|
DBUS_TYPE_INVALID);
|
|
}
|
|
|
|
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_paths(DBusConnection *conn, DBusMessage *msg,
|
|
GSList *list)
|
|
{
|
|
DBusMessage *reply;
|
|
DBusMessageIter iter;
|
|
DBusMessageIter array_iter;
|
|
|
|
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);
|
|
|
|
for (; list; list = list->next) {
|
|
dbus_message_iter_append_basic(&array_iter,
|
|
DBUS_TYPE_STRING,
|
|
&list->data);
|
|
}
|
|
dbus_message_iter_close_container(&iter, &array_iter);
|
|
|
|
return send_message_and_unref(conn, reply);
|
|
}
|
|
|
|
static const char * last_connection_used(DBusConnection *conn)
|
|
{
|
|
const char *path = NULL;
|
|
GSList *l;
|
|
int i;
|
|
|
|
for (i = g_slist_length (connection_paths) -1; i > -1; i--) {
|
|
path = g_slist_nth_data (connection_paths, i);
|
|
if (connection_is_connected(path))
|
|
break;
|
|
}
|
|
|
|
/* No connection connected fallback to last connection */
|
|
if (i == -1) {
|
|
l = g_slist_last(connection_paths);
|
|
path = l->data;
|
|
}
|
|
|
|
return path;
|
|
}
|
|
|
|
static DBusHandlerResult remove_path(DBusConnection *conn,
|
|
DBusMessage *msg, GSList **list,
|
|
const char *sname)
|
|
{
|
|
const char *path;
|
|
DBusMessage *reply;
|
|
DBusError derr;
|
|
GSList *l;
|
|
|
|
dbus_error_init(&derr);
|
|
if (!dbus_message_get_args(msg, &derr,
|
|
DBUS_TYPE_STRING, &path,
|
|
DBUS_TYPE_INVALID)) {
|
|
err_invalid_args(conn, msg, derr.message);
|
|
dbus_error_free(&derr);
|
|
return DBUS_HANDLER_RESULT_HANDLED;
|
|
}
|
|
|
|
l = g_slist_find_custom(*list, path, (GCompareFunc) strcmp);
|
|
if (!l)
|
|
return err_does_not_exist(conn, msg, "Path doesn't exist");
|
|
|
|
/* Remove references from the storage */
|
|
if (*list == connection_paths) {
|
|
if (connection_has_pending(path))
|
|
return err_failed(conn, msg, "Connection is Busy");
|
|
|
|
connection_remove_stored(path);
|
|
/* Reset default connection */
|
|
if (l == g_slist_nth(*list, default_index)) {
|
|
const char *dpath;
|
|
|
|
dpath = last_connection_used(conn);
|
|
connection_store(dpath, TRUE);
|
|
}
|
|
}
|
|
|
|
g_free(l->data);
|
|
*list = g_slist_remove(*list, l->data);
|
|
|
|
reply = dbus_message_new_method_return(msg);
|
|
if (!reply)
|
|
return DBUS_HANDLER_RESULT_NEED_MEMORY;
|
|
|
|
if (!dbus_connection_destroy_object_path(conn, path))
|
|
error("Network path unregister failed");
|
|
|
|
dbus_connection_emit_signal(conn, NETWORK_PATH,
|
|
NETWORK_MANAGER_INTERFACE,
|
|
sname, DBUS_TYPE_STRING, &path,
|
|
DBUS_TYPE_INVALID);
|
|
|
|
return send_message_and_unref(conn, reply);
|
|
}
|
|
|
|
static void pan_record_reply(DBusPendingCall *call, void *data)
|
|
{
|
|
struct pending_reply *pr = data;
|
|
DBusMessage *reply = dbus_pending_call_steal_reply(call);
|
|
DBusError derr;
|
|
int len, scanned;
|
|
uint8_t *rec_bin;
|
|
sdp_data_t *d;
|
|
sdp_record_t *rec = NULL;
|
|
char name[MAX_NAME_SIZE], *desc = NULL;
|
|
|
|
dbus_error_init(&derr);
|
|
if (dbus_set_error_from_message(&derr, reply)) {
|
|
if (dbus_error_has_name(&derr,
|
|
"org.bluez.Error.ConnectionAttemptFailed"))
|
|
err_connection_failed(pr->conn, pr->msg, derr.message);
|
|
else
|
|
err_not_supported(pr->conn, pr->msg);
|
|
|
|
error("GetRemoteServiceRecord failed: %s(%s)", derr.name,
|
|
derr.message);
|
|
goto fail;
|
|
}
|
|
|
|
if (!dbus_message_get_args(reply, &derr,
|
|
DBUS_TYPE_ARRAY, DBUS_TYPE_BYTE, &rec_bin, &len,
|
|
DBUS_TYPE_INVALID)) {
|
|
err_not_supported(pr->conn, pr->msg);
|
|
error("%s: %s", derr.name, derr.message);
|
|
goto fail;
|
|
}
|
|
|
|
if (len == 0) {
|
|
err_not_supported(pr->conn, pr->msg);
|
|
error("Invalid PAN service record length");
|
|
goto fail;
|
|
}
|
|
|
|
rec = sdp_extract_pdu(rec_bin, &scanned);
|
|
|
|
/* Concat remote name and service name */
|
|
memset(name, 0, MAX_NAME_SIZE);
|
|
if (read_remote_name(&pr->src, &pr->dst, name, MAX_NAME_SIZE) < 0)
|
|
len = 0;
|
|
else
|
|
len = strlen(name);
|
|
|
|
d = sdp_data_get(rec, SDP_ATTR_SVCNAME_PRIMARY);
|
|
if (d) {
|
|
snprintf(name + len, MAX_NAME_SIZE - len,
|
|
len ? " (%.*s)" : "%.*s", d->unitSize, d->val.str);
|
|
}
|
|
|
|
/* Extract service description from record */
|
|
d = sdp_data_get(rec, SDP_ATTR_SVCDESC_PRIMARY);
|
|
if (d) {
|
|
desc = g_new0(char, d->unitSize);
|
|
snprintf(desc, d->unitSize, "%.*s",
|
|
d->unitSize, d->val.str);
|
|
}
|
|
|
|
if (connection_register(pr->path, &pr->src, &pr->dst, pr->id, name,
|
|
desc) < 0) {
|
|
err_failed(pr->conn, pr->msg, "D-Bus path registration failed");
|
|
goto fail;
|
|
}
|
|
|
|
connection_store(pr->path, FALSE);
|
|
connection_paths = g_slist_append(connection_paths, g_strdup(pr->path));
|
|
|
|
create_path(pr->conn, pr->msg, pr->path, "ConnectionCreated");
|
|
fail:
|
|
|
|
if (desc)
|
|
g_free(desc);
|
|
|
|
sdp_record_free(rec);
|
|
dbus_error_free(&derr);
|
|
pending_reply_free(pr);
|
|
dbus_message_unref(reply);
|
|
}
|
|
|
|
static int get_record(struct pending_reply *pr, uint32_t handle,
|
|
DBusPendingCallNotifyFunction cb)
|
|
{
|
|
DBusMessage *msg;
|
|
DBusPendingCall *pending;
|
|
|
|
msg = dbus_message_new_method_call("org.bluez", pr->adapter_path,
|
|
"org.bluez.Adapter", "GetRemoteServiceRecord");
|
|
if (!msg)
|
|
return -1;
|
|
|
|
dbus_message_append_args(msg,
|
|
DBUS_TYPE_STRING, &pr->addr,
|
|
DBUS_TYPE_UINT32, &handle,
|
|
DBUS_TYPE_INVALID);
|
|
|
|
if (dbus_connection_send_with_reply(pr->conn, msg, &pending, -1) == FALSE) {
|
|
error("Can't send D-Bus message.");
|
|
dbus_message_unref(msg);
|
|
return -1;
|
|
}
|
|
|
|
dbus_pending_call_set_notify(pending, cb, pr, NULL);
|
|
dbus_message_unref(msg);
|
|
dbus_pending_call_unref(pending);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void pan_handle_reply(DBusPendingCall *call, void *data)
|
|
{
|
|
struct pending_reply *pr = data;
|
|
DBusMessage *reply = dbus_pending_call_steal_reply(call);
|
|
DBusError derr;
|
|
uint32_t *phandle;
|
|
int len;
|
|
|
|
dbus_error_init(&derr);
|
|
if (dbus_set_error_from_message(&derr, reply)) {
|
|
if (dbus_error_has_name(&derr,
|
|
"org.bluez.Error.ConnectionAttemptFailed"))
|
|
err_connection_failed(pr->conn, pr->msg, derr.message);
|
|
else
|
|
err_not_supported(pr->conn, pr->msg);
|
|
|
|
error("GetRemoteServiceHandles: %s(%s)", derr.name,
|
|
derr.message);
|
|
goto fail;
|
|
}
|
|
|
|
if (!dbus_message_get_args(reply, &derr,
|
|
DBUS_TYPE_ARRAY, DBUS_TYPE_UINT32, &phandle,
|
|
&len, DBUS_TYPE_INVALID)) {
|
|
err_not_supported(pr->conn, pr->msg);
|
|
error("%s: %s", derr.name, derr.message);
|
|
goto fail;
|
|
}
|
|
|
|
if (!len) {
|
|
err_not_supported(pr->conn, pr->msg);
|
|
goto fail;
|
|
}
|
|
|
|
if (get_record(pr, *phandle, pan_record_reply) < 0) {
|
|
err_not_supported(pr->conn, pr->msg);
|
|
goto fail;
|
|
}
|
|
|
|
dbus_message_unref(reply);
|
|
return;
|
|
fail:
|
|
dbus_error_free(&derr);
|
|
pending_reply_free(pr);
|
|
}
|
|
|
|
static int get_handles(struct pending_reply *pr,
|
|
DBusPendingCallNotifyFunction cb)
|
|
{
|
|
DBusMessage *msg;
|
|
DBusPendingCall *pending;
|
|
const char *uuid;
|
|
|
|
msg = dbus_message_new_method_call("org.bluez", pr->adapter_path,
|
|
"org.bluez.Adapter", "GetRemoteServiceHandles");
|
|
if (!msg)
|
|
return -1;
|
|
|
|
uuid = bnep_uuid(pr->id);
|
|
dbus_message_append_args(msg,
|
|
DBUS_TYPE_STRING, &pr->addr,
|
|
DBUS_TYPE_STRING, &uuid,
|
|
DBUS_TYPE_INVALID);
|
|
|
|
if (dbus_connection_send_with_reply(pr->conn, msg, &pending, -1) == FALSE) {
|
|
error("Can't send D-Bus message.");
|
|
dbus_message_unref(msg);
|
|
return -1;
|
|
}
|
|
|
|
dbus_pending_call_set_notify(pending, cb, pr, NULL);
|
|
dbus_message_unref(msg);
|
|
dbus_pending_call_unref(pending);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static DBusHandlerResult list_servers(DBusConnection *conn, DBusMessage *msg,
|
|
void *data)
|
|
{
|
|
return list_paths(conn, msg, server_paths);
|
|
}
|
|
|
|
static DBusHandlerResult find_server(DBusConnection *conn,
|
|
DBusMessage *msg, void *data)
|
|
{
|
|
DBusError derr;
|
|
const char *pattern;
|
|
const char *path;
|
|
GSList *list;
|
|
DBusMessage *reply;
|
|
|
|
dbus_error_init(&derr);
|
|
if (!dbus_message_get_args(msg, &derr,
|
|
DBUS_TYPE_STRING, &pattern,
|
|
DBUS_TYPE_INVALID)) {
|
|
err_invalid_args(conn, msg, derr.message);
|
|
dbus_error_free(&derr);
|
|
return DBUS_HANDLER_RESULT_HANDLED;
|
|
}
|
|
|
|
for (list = server_paths; list; list = list->next) {
|
|
path = (const char *) list->data;
|
|
if (server_find_data(path, pattern) == 0)
|
|
break;
|
|
}
|
|
|
|
if (list == NULL) {
|
|
err_failed(conn, msg, "No such server");
|
|
return DBUS_HANDLER_RESULT_HANDLED;
|
|
}
|
|
|
|
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_connections(DBusConnection *conn,
|
|
DBusMessage *msg, void *data)
|
|
{
|
|
return list_paths(conn, msg, connection_paths);
|
|
}
|
|
|
|
static GSList * find_connection_pattern(DBusConnection *conn,
|
|
const char *pattern)
|
|
{
|
|
const char *path;
|
|
GSList *list;
|
|
|
|
if (pattern == NULL)
|
|
return NULL;
|
|
|
|
for (list = connection_paths; list; list = list->next) {
|
|
path = (const char *) list->data;
|
|
if (connection_find_data(path, pattern) == 0)
|
|
break;
|
|
}
|
|
|
|
return list;
|
|
}
|
|
|
|
static DBusHandlerResult find_connection(DBusConnection *conn,
|
|
DBusMessage *msg, void *data)
|
|
{
|
|
DBusError derr;
|
|
const char *pattern;
|
|
const char *path;
|
|
GSList *list;
|
|
DBusMessage *reply;
|
|
|
|
dbus_error_init(&derr);
|
|
if (!dbus_message_get_args(msg, &derr,
|
|
DBUS_TYPE_STRING, &pattern,
|
|
DBUS_TYPE_INVALID)) {
|
|
err_invalid_args(conn, msg, derr.message);
|
|
dbus_error_free(&derr);
|
|
return DBUS_HANDLER_RESULT_HANDLED;
|
|
}
|
|
|
|
list = find_connection_pattern(conn, pattern);
|
|
|
|
if (list == NULL) {
|
|
err_failed(conn, msg, "No such connection");
|
|
return DBUS_HANDLER_RESULT_HANDLED;
|
|
}
|
|
|
|
path = list->data;
|
|
|
|
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 create_connection(DBusConnection *conn,
|
|
DBusMessage *msg, void *data)
|
|
{
|
|
struct pending_reply *pr;
|
|
DBusError derr;
|
|
const char *addr;
|
|
const char *str;
|
|
bdaddr_t src;
|
|
uint16_t id;
|
|
int dev_id;
|
|
char key[32];
|
|
GSList *l;
|
|
|
|
dbus_error_init(&derr);
|
|
if (!dbus_message_get_args(msg, &derr,
|
|
DBUS_TYPE_STRING, &addr,
|
|
DBUS_TYPE_STRING, &str,
|
|
DBUS_TYPE_INVALID)) {
|
|
err_invalid_args(conn, msg, derr.message);
|
|
dbus_error_free(&derr);
|
|
return DBUS_HANDLER_RESULT_HANDLED;
|
|
}
|
|
|
|
id = bnep_service_id(str);
|
|
if (id != BNEP_SVC_GN && id != BNEP_SVC_NAP && id != BNEP_SVC_PANU)
|
|
return err_invalid_args(conn, msg, "Not supported");
|
|
|
|
snprintf(key, 32, "%s#%s", addr, bnep_name(id));
|
|
|
|
/* Checks if the connection was already been made */
|
|
for (l = connection_paths; l; l = l->next) {
|
|
if (connection_find_data(l->data, key) == 0) {
|
|
err_already_exists(conn, msg,
|
|
"Connection Already exists");
|
|
return DBUS_HANDLER_RESULT_HANDLED;
|
|
}
|
|
}
|
|
|
|
bacpy(&src, BDADDR_ANY);
|
|
dev_id = hci_get_route(NULL);
|
|
if ((dev_id < 0) || (hci_devba(dev_id, &src) < 0))
|
|
return err_failed(conn, msg, "Adapter not available");
|
|
|
|
pr = g_new0(struct pending_reply, 1);
|
|
pr->conn = dbus_connection_ref(conn);
|
|
pr->msg = dbus_message_ref(msg);
|
|
bacpy(&pr->src, &src);
|
|
str2ba(addr, &pr->dst);
|
|
pr->addr = g_strdup(addr);
|
|
pr->id = id;
|
|
pr->path = g_new0(char, MAX_PATH_LENGTH);
|
|
snprintf(pr->path, MAX_PATH_LENGTH,
|
|
NETWORK_PATH"/connection%d", net_uid++);
|
|
|
|
pr->adapter_path = g_malloc0(16);
|
|
snprintf(pr->adapter_path, 16, "/org/bluez/hci%d", dev_id);
|
|
|
|
if (get_handles(pr, pan_handle_reply) < 0)
|
|
return err_not_supported(conn, msg);
|
|
|
|
return DBUS_HANDLER_RESULT_HANDLED;
|
|
}
|
|
|
|
static DBusHandlerResult remove_connection(DBusConnection *conn,
|
|
DBusMessage *msg, void *data)
|
|
{
|
|
return remove_path(conn, msg, &connection_paths, "ConnectionRemoved");
|
|
}
|
|
|
|
static DBusHandlerResult last_connection(DBusConnection *conn,
|
|
DBusMessage *msg, void *data)
|
|
{
|
|
const char *path;
|
|
DBusMessage *reply;
|
|
|
|
if (connection_paths == NULL ||
|
|
g_slist_length (connection_paths) == 0) {
|
|
err_does_not_exist(conn, msg, "No such connection");
|
|
return DBUS_HANDLER_RESULT_HANDLED;
|
|
}
|
|
|
|
path = last_connection_used(conn);
|
|
|
|
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 default_connection(DBusConnection *conn,
|
|
DBusMessage *msg, void *data)
|
|
{
|
|
const char *path;
|
|
DBusMessage *reply;
|
|
|
|
if (connection_paths == NULL ||
|
|
g_slist_length (connection_paths) == 0) {
|
|
err_does_not_exist(conn, msg, "No such connection");
|
|
return DBUS_HANDLER_RESULT_HANDLED;
|
|
}
|
|
|
|
path = g_slist_nth_data (connection_paths, default_index);
|
|
|
|
if (path == NULL) {
|
|
path = last_connection_used(conn);
|
|
connection_store(path, TRUE);
|
|
}
|
|
|
|
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 change_default_connection(DBusConnection *conn,
|
|
DBusMessage *msg, void *data)
|
|
{
|
|
const char *path;
|
|
const char *pattern;
|
|
DBusMessage *reply;
|
|
DBusError derr;
|
|
GSList *list;
|
|
|
|
dbus_error_init(&derr);
|
|
if (!dbus_message_get_args(msg, &derr,
|
|
DBUS_TYPE_STRING, &pattern,
|
|
DBUS_TYPE_INVALID)) {
|
|
err_invalid_args(conn, msg, derr.message);
|
|
dbus_error_free(&derr);
|
|
return DBUS_HANDLER_RESULT_HANDLED;
|
|
}
|
|
|
|
if (connection_paths == NULL ||
|
|
g_slist_length (connection_paths) == 0) {
|
|
err_does_not_exist(conn, msg, "No such connection");
|
|
return DBUS_HANDLER_RESULT_HANDLED;
|
|
}
|
|
|
|
list = g_slist_find_custom(connection_paths, pattern, (GCompareFunc) strcmp);
|
|
|
|
/* Find object path via pattern */
|
|
if (list == NULL) {
|
|
list = find_connection_pattern(conn, pattern);
|
|
|
|
if (list == NULL) {
|
|
err_failed(conn, msg, "No such connection");
|
|
return DBUS_HANDLER_RESULT_HANDLED;
|
|
}
|
|
else
|
|
path = list->data;
|
|
}
|
|
else
|
|
path = list->data;
|
|
|
|
default_index = g_slist_position (connection_paths, list);
|
|
connection_store(path, TRUE);
|
|
|
|
dbus_connection_emit_signal(connection, NETWORK_PATH,
|
|
NETWORK_MANAGER_INTERFACE,
|
|
"DefaultConnectionChanged",
|
|
DBUS_TYPE_STRING, &path,
|
|
DBUS_TYPE_INVALID);
|
|
|
|
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 void manager_unregister(DBusConnection *conn, void *data)
|
|
{
|
|
info("Unregistered manager path");
|
|
|
|
if (server_paths) {
|
|
g_slist_foreach(server_paths, (GFunc)g_free, NULL);
|
|
g_slist_free(server_paths);
|
|
server_paths = NULL;
|
|
}
|
|
|
|
if (connection_paths) {
|
|
g_slist_foreach(connection_paths, (GFunc)g_free, NULL);
|
|
g_slist_free(connection_paths);
|
|
connection_paths = NULL;
|
|
}
|
|
|
|
bnep_kill_all_connections();
|
|
}
|
|
|
|
static void parse_stored_connection(char *key, char *value, void *data)
|
|
{
|
|
bdaddr_t dst, *src = data;
|
|
char path[MAX_PATH_LENGTH];
|
|
char addr[18];
|
|
const char *ptr;
|
|
char *name;
|
|
int len, id;
|
|
|
|
/* Format: XX:XX:XX:XX:XX:XX#{NAP, GN} name:description */
|
|
|
|
/* Parsing the key: address#role */
|
|
ptr = strchr(key, '#');
|
|
|
|
/* Empty address or invalid len */
|
|
if (!ptr || ((ptr - key) != 17))
|
|
return;
|
|
|
|
memset(addr, 0, 18);
|
|
strncpy(addr, key, 17);
|
|
str2ba(addr, &dst);
|
|
|
|
/* Empty role */
|
|
if (++ptr == NULL)
|
|
return;
|
|
|
|
if (strcasecmp("nap", ptr) == 0)
|
|
id = BNEP_SVC_NAP;
|
|
else if (strcasecmp("gn", ptr) == 0)
|
|
id = BNEP_SVC_GN;
|
|
else
|
|
return;
|
|
|
|
snprintf(path, MAX_PATH_LENGTH,
|
|
NETWORK_PATH"/connection%d", net_uid++);
|
|
|
|
/* Parsing the value: name and description */
|
|
ptr = strchr(value, ':');
|
|
|
|
/* Empty name */
|
|
if (!ptr)
|
|
return;
|
|
|
|
len = ptr-value;
|
|
name = g_malloc0(len + 1);
|
|
strncpy(name, value, len);
|
|
|
|
/* Empty description */
|
|
if (++ptr == NULL) {
|
|
g_free(name);
|
|
return;
|
|
}
|
|
|
|
if (connection_register(path, src, &dst, id, name, ptr) == 0) {
|
|
char *rpath = g_strdup(path);
|
|
connection_paths = g_slist_append(connection_paths, rpath);
|
|
}
|
|
|
|
g_free(name);
|
|
}
|
|
|
|
static void register_connections_stored(const char *adapter)
|
|
{
|
|
char filename[PATH_MAX + 1];
|
|
char *pattern;
|
|
struct stat st;
|
|
GSList *list;
|
|
bdaddr_t src;
|
|
bdaddr_t default_src;
|
|
int dev_id;
|
|
|
|
create_name(filename, PATH_MAX, STORAGEDIR, adapter, "network");
|
|
|
|
str2ba(adapter, &src);
|
|
|
|
if (stat(filename, &st) < 0)
|
|
return;
|
|
|
|
if (!(st.st_mode & __S_IFREG))
|
|
return;
|
|
|
|
textfile_foreach(filename, parse_stored_connection, &src);
|
|
|
|
/* Check default connection for current default adapter */
|
|
bacpy(&default_src, BDADDR_ANY);
|
|
dev_id = hci_get_route(&default_src);
|
|
if (dev_id < 0)
|
|
return;
|
|
|
|
hci_devba(dev_id, &default_src);
|
|
if (bacmp(&default_src, &src) != 0)
|
|
return;
|
|
|
|
pattern = textfile_get(filename, "default");
|
|
if (!pattern)
|
|
return;
|
|
|
|
list = find_connection_pattern(connection, pattern);
|
|
if (!list)
|
|
return;
|
|
default_index = g_slist_position(connection_paths, list);
|
|
}
|
|
|
|
static void register_server(uint16_t id)
|
|
{
|
|
char path[MAX_PATH_LENGTH];
|
|
bdaddr_t src;
|
|
int dev_id;
|
|
|
|
snprintf(path, MAX_PATH_LENGTH, NETWORK_PATH"/%s", bnep_name(id));
|
|
|
|
if (g_slist_find_custom(server_paths, path,
|
|
(GCompareFunc) strcmp))
|
|
return;
|
|
|
|
bacpy(&src, BDADDR_ANY);
|
|
|
|
dev_id = hci_get_route(NULL);
|
|
|
|
if (dev_id >= 0)
|
|
hci_devba(dev_id, &src);
|
|
|
|
if (server_register(path, &src, id) < 0)
|
|
return;
|
|
|
|
if (bacmp(&src, BDADDR_ANY) != 0)
|
|
server_store(path);
|
|
|
|
server_paths = g_slist_append(server_paths, g_strdup(path));
|
|
}
|
|
|
|
static void register_servers_stored(const char *adapter, const char *profile)
|
|
{
|
|
char filename[PATH_MAX + 1];
|
|
char path[MAX_PATH_LENGTH];
|
|
uint16_t id;
|
|
struct stat s;
|
|
bdaddr_t src;
|
|
|
|
if (strcmp(profile, "nap") == 0)
|
|
id = BNEP_SVC_NAP;
|
|
else if (strcmp(profile, "gn") == 0)
|
|
id = BNEP_SVC_GN;
|
|
else
|
|
id = BNEP_SVC_PANU;
|
|
|
|
create_name(filename, PATH_MAX, STORAGEDIR, adapter, profile);
|
|
|
|
str2ba(adapter, &src);
|
|
|
|
if (stat (filename, &s) == 0 && (s.st_mode & __S_IFREG)) {
|
|
snprintf(path, MAX_PATH_LENGTH,
|
|
NETWORK_PATH"/%s", profile);
|
|
if (server_register_from_file(path, &src, id, filename) == 0) {
|
|
server_paths = g_slist_append(server_paths,
|
|
g_strdup(path));
|
|
}
|
|
}
|
|
}
|
|
|
|
static void register_stored(void)
|
|
{
|
|
char dirname[PATH_MAX + 1];
|
|
struct dirent *de;
|
|
DIR *dir;
|
|
|
|
snprintf(dirname, PATH_MAX, "%s", STORAGEDIR);
|
|
|
|
dir = opendir(dirname);
|
|
if (!dir)
|
|
return;
|
|
|
|
while ((de = readdir(dir)) != NULL) {
|
|
if (!isdigit(de->d_name[0]))
|
|
continue;
|
|
|
|
/* Connection objects */
|
|
register_connections_stored(de->d_name);
|
|
|
|
/* NAP objects */
|
|
register_servers_stored(de->d_name, "nap");
|
|
|
|
/* GN objects */
|
|
register_servers_stored(de->d_name, "gn");
|
|
|
|
/* PANU objects */
|
|
register_servers_stored(de->d_name, "panu");
|
|
}
|
|
|
|
closedir(dir);
|
|
}
|
|
|
|
static DBusMethodVTable manager_methods[] = {
|
|
{ "ListServers", list_servers, "", "as" },
|
|
{ "FindServer", find_server, "s", "s" },
|
|
{ "ListConnections", list_connections, "", "as" },
|
|
{ "FindConnection", find_connection, "s", "s" },
|
|
{ "CreateConnection", create_connection, "ss", "s" },
|
|
{ "RemoveConnection", remove_connection, "s", "" },
|
|
{ "LastConnection", last_connection, "", "s" },
|
|
{ "DefaultConnection", default_connection, "", "s" },
|
|
{ "ChangeDefaultConnection", change_default_connection, "s", "s"},
|
|
{ NULL, NULL, NULL, NULL }
|
|
};
|
|
|
|
static DBusSignalVTable manager_signals[] = {
|
|
{ "ConnectionCreated", "s" },
|
|
{ "ConnectionRemoved", "s" },
|
|
{ "DefaultConnectionChanged", "s" },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
int network_init(DBusConnection *conn, struct network_conf *service_conf)
|
|
{
|
|
conf = service_conf;
|
|
|
|
if (bridge_init() < 0) {
|
|
error("Can't init bridge module");
|
|
return -1;
|
|
}
|
|
|
|
if (bridge_create(conf->server.panu_iface) < 0)
|
|
error("Can't create PANU bridge");
|
|
|
|
if (bridge_create(conf->server.gn_iface) < 0)
|
|
error("Can't create GN bridge");
|
|
|
|
if (bridge_create(conf->server.nap_iface) < 0)
|
|
error("Can't create NAP bridge");
|
|
|
|
if (bnep_init()) {
|
|
error("Can't init bnep module");
|
|
return -1;
|
|
}
|
|
|
|
/*
|
|
* There is one socket to handle the incomming connections. NAP,
|
|
* GN and PANU servers share the same PSM. The initial BNEP message
|
|
* (setup connection request) contains the destination service
|
|
* field that defines which service the source is connecting to.
|
|
*/
|
|
if (server_init(conn, conf->iface_prefix, &conf->server) < 0)
|
|
return -1;
|
|
|
|
if (connection_init(conn, conf->iface_prefix, &conf->conn) < 0)
|
|
return -1;
|
|
|
|
if (!dbus_connection_create_object_path(conn, NETWORK_PATH,
|
|
NULL, manager_unregister)) {
|
|
error("D-Bus failed to create %s path", NETWORK_PATH);
|
|
return -1;
|
|
}
|
|
|
|
if (!dbus_connection_register_interface(conn, NETWORK_PATH,
|
|
NETWORK_MANAGER_INTERFACE,
|
|
manager_methods,
|
|
manager_signals, NULL)) {
|
|
error("Failed to register %s interface to %s",
|
|
NETWORK_MANAGER_INTERFACE, NETWORK_PATH);
|
|
dbus_connection_destroy_object_path(connection, NETWORK_PATH);
|
|
return -1;
|
|
}
|
|
|
|
connection = dbus_connection_ref(conn);
|
|
|
|
info("Registered manager path:%s", NETWORK_PATH);
|
|
|
|
register_stored();
|
|
|
|
/* Register PANU, GN and NAP servers if they don't exist */
|
|
register_server(BNEP_SVC_PANU);
|
|
register_server(BNEP_SVC_GN);
|
|
register_server(BNEP_SVC_NAP);
|
|
|
|
return 0;
|
|
}
|
|
|
|
void network_exit(void)
|
|
{
|
|
server_exit();
|
|
dbus_connection_destroy_object_path(connection, NETWORK_PATH);
|
|
|
|
dbus_connection_unref(connection);
|
|
|
|
connection = NULL;
|
|
|
|
if (bridge_remove("pan0") < 0)
|
|
error("Can't remove bridge");
|
|
|
|
bnep_cleanup();
|
|
bridge_cleanup();
|
|
}
|
|
|
|
static inline int create_filename(char *buf, size_t size,
|
|
bdaddr_t *bdaddr, const char *name)
|
|
{
|
|
char addr[18];
|
|
|
|
ba2str(bdaddr, addr);
|
|
|
|
return create_name(buf, size, STORAGEDIR, addr, name);
|
|
}
|