| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577 |
- // SPDX-License-Identifier: GPL-2.0-or-later
- /*
- *
- * BlueZ - Bluetooth protocol stack for Linux
- *
- * Copyright (C) 2004-2010 Marcel Holtmann <marcel@holtmann.org>
- *
- *
- */
- #ifdef HAVE_CONFIG_H
- #include <config.h>
- #endif
- #define _GNU_SOURCE
- #include <stdio.h>
- #include <stdbool.h>
- #include <errno.h>
- #include <unistd.h>
- #include <netinet/in.h>
- #include <glib.h>
- #include "lib/bluetooth.h"
- #include "lib/bnep.h"
- #include "lib/sdp.h"
- #include "gdbus/gdbus.h"
- #include "btio/btio.h"
- #include "src/log.h"
- #include "src/dbus-common.h"
- #include "src/adapter.h"
- #include "src/device.h"
- #include "src/profile.h"
- #include "src/service.h"
- #include "src/error.h"
- #include "lib/uuid.h"
- #include "bnep.h"
- #include "connection.h"
- #define NETWORK_PEER_INTERFACE "org.bluez.Network1"
- #define BNEP_INTERFACE "bnep%d"
- typedef enum {
- CONNECTED,
- CONNECTING,
- DISCONNECTED
- } conn_state;
- struct network_peer {
- struct btd_device *device;
- GSList *connections;
- };
- struct network_conn {
- struct btd_service *service;
- char dev[16]; /* Interface name */
- uint16_t id; /* Role: Service Class Identifier */
- conn_state state;
- GIOChannel *io;
- guint dc_id;
- struct network_peer *peer;
- DBusMessage *connect;
- struct bnep *session;
- };
- static GSList *peers = NULL;
- static uint16_t get_pan_srv_id(const char *svc)
- {
- if (!strcasecmp(svc, "panu") || !strcasecmp(svc, PANU_UUID))
- return BNEP_SVC_PANU;
- if (!strcasecmp(svc, "nap") || !strcasecmp(svc, NAP_UUID))
- return BNEP_SVC_NAP;
- if (!strcasecmp(svc, "gn") || !strcasecmp(svc, GN_UUID))
- return BNEP_SVC_GN;
- return 0;
- }
- static struct network_peer *find_peer(GSList *list, struct btd_device *device)
- {
- for (; list; list = list->next) {
- struct network_peer *peer = list->data;
- if (peer->device == device)
- return peer;
- }
- return NULL;
- }
- static struct network_conn *find_connection_by_state(GSList *list,
- conn_state state)
- {
- for (; list; list = list->next) {
- struct network_conn *nc = list->data;
- if (nc->state == state)
- return nc;
- }
- return NULL;
- }
- static void bnep_disconn_cb(gpointer data)
- {
- struct network_conn *nc = data;
- DBusConnection *conn = btd_get_dbus_connection();
- const char *path = device_get_path(nc->peer->device);
- g_dbus_emit_property_changed(conn, path,
- NETWORK_PEER_INTERFACE, "Connected");
- g_dbus_emit_property_changed(conn, path,
- NETWORK_PEER_INTERFACE, "Interface");
- g_dbus_emit_property_changed(conn, path,
- NETWORK_PEER_INTERFACE, "UUID");
- device_remove_disconnect_watch(nc->peer->device, nc->dc_id);
- nc->dc_id = 0;
- btd_service_disconnecting_complete(nc->service, 0);
- info("%s disconnected", nc->dev);
- nc->state = DISCONNECTED;
- memset(nc->dev, 0, sizeof(nc->dev));
- strncpy(nc->dev, BNEP_INTERFACE, 16);
- nc->dev[15] = '\0';
- bnep_free(nc->session);
- nc->session = NULL;
- }
- static void local_connect_cb(struct network_conn *nc, int err)
- {
- DBusConnection *conn = btd_get_dbus_connection();
- const char *pdev = nc->dev;
- if (err < 0) {
- DBusMessage *reply = btd_error_failed(nc->connect,
- strerror(-err));
- g_dbus_send_message(conn, reply);
- } else {
- g_dbus_send_reply(conn, nc->connect, DBUS_TYPE_STRING, &pdev,
- DBUS_TYPE_INVALID);
- }
- dbus_message_unref(nc->connect);
- nc->connect = NULL;
- }
- static void cancel_connection(struct network_conn *nc, int err)
- {
- btd_service_connecting_complete(nc->service, err);
- if (nc->connect)
- local_connect_cb(nc, err);
- if (nc->io) {
- g_io_channel_shutdown(nc->io, FALSE, NULL);
- g_io_channel_unref(nc->io);
- nc->io = NULL;
- }
- if (nc->state == CONNECTED)
- bnep_disconnect(nc->session);
- bnep_free(nc->session);
- nc->session = NULL;
- nc->state = DISCONNECTED;
- }
- static void connection_destroy(DBusConnection *conn, void *user_data)
- {
- struct network_conn *nc = user_data;
- cancel_connection(nc, -EIO);
- }
- static void disconnect_cb(struct btd_device *device, gboolean removal,
- void *user_data)
- {
- struct network_conn *nc = user_data;
- info("Network: disconnect %s", device_get_path(nc->peer->device));
- connection_destroy(NULL, user_data);
- }
- static void bnep_conn_cb(char *iface, int err, void *data)
- {
- struct network_conn *nc = data;
- const char *path;
- DBusConnection *conn;
- DBG("");
- if (err < 0) {
- error("connect failed %s", strerror(-err));
- goto failed;
- }
- memcpy(nc->dev, iface, sizeof(nc->dev));
- info("%s connected", nc->dev);
- btd_service_connecting_complete(nc->service, 0);
- if (nc->connect)
- local_connect_cb(nc, 0);
- conn = btd_get_dbus_connection();
- path = device_get_path(nc->peer->device);
- g_dbus_emit_property_changed(conn, path,
- NETWORK_PEER_INTERFACE, "Connected");
- g_dbus_emit_property_changed(conn, path,
- NETWORK_PEER_INTERFACE, "Interface");
- g_dbus_emit_property_changed(conn, path,
- NETWORK_PEER_INTERFACE, "UUID");
- nc->state = CONNECTED;
- nc->dc_id = device_add_disconnect_watch(nc->peer->device, disconnect_cb,
- nc, NULL);
- return;
- failed:
- cancel_connection(nc, -EIO);
- }
- static void connect_cb(GIOChannel *chan, GError *err, gpointer data)
- {
- struct network_conn *nc = data;
- int sk, perr;
- if (err) {
- error("%s", err->message);
- goto failed;
- }
- sk = g_io_channel_unix_get_fd(nc->io);
- nc->session = bnep_new(sk, BNEP_SVC_PANU, nc->id, BNEP_INTERFACE);
- if (!nc->session)
- goto failed;
- perr = bnep_connect(nc->session, bnep_conn_cb, bnep_disconn_cb, nc, nc);
- if (perr < 0) {
- error("bnep connect(): %s (%d)", strerror(-perr), -perr);
- goto failed;
- }
- if (nc->io) {
- g_io_channel_unref(nc->io);
- nc->io = NULL;
- }
- return;
- failed:
- cancel_connection(nc, -EIO);
- }
- static DBusMessage *local_connect(DBusConnection *conn,
- DBusMessage *msg, void *data)
- {
- struct network_peer *peer = data;
- struct btd_service *service;
- struct network_conn *nc;
- const char *svc;
- uint16_t id;
- int err;
- char uuid_str[MAX_LEN_UUID_STR];
- bt_uuid_t uuid16, uuid128;
- if (dbus_message_get_args(msg, NULL, DBUS_TYPE_STRING, &svc,
- DBUS_TYPE_INVALID) == FALSE)
- return btd_error_invalid_args(msg);
- id = get_pan_srv_id(svc);
- bt_uuid16_create(&uuid16, id);
- bt_uuid_to_uuid128(&uuid16, &uuid128);
- if (bt_uuid_to_string(&uuid128, uuid_str, MAX_LEN_UUID_STR) < 0)
- return btd_error_invalid_args(msg);
- service = btd_device_get_service(peer->device, uuid_str);
- if (service == NULL)
- return btd_error_not_supported(msg);
- nc = btd_service_get_user_data(service);
- if (nc->connect != NULL)
- return btd_error_busy(msg);
- err = connection_connect(nc->service);
- if (err < 0)
- return btd_error_failed(msg, strerror(-err));
- nc->connect = dbus_message_ref(msg);
- return NULL;
- }
- /* Connect and initiate BNEP session */
- int connection_connect(struct btd_service *svc)
- {
- struct network_conn *nc = btd_service_get_user_data(svc);
- struct network_peer *peer = nc->peer;
- uint16_t id = get_pan_srv_id(btd_service_get_profile(svc)->remote_uuid);
- GError *err = NULL;
- const bdaddr_t *src;
- const bdaddr_t *dst;
- DBG("id %u", id);
- if (nc->state != DISCONNECTED)
- return -EALREADY;
- src = btd_adapter_get_address(device_get_adapter(peer->device));
- dst = device_get_address(peer->device);
- nc->io = bt_io_connect(connect_cb, nc,
- NULL, &err,
- BT_IO_OPT_SOURCE_BDADDR, src,
- BT_IO_OPT_DEST_BDADDR, dst,
- BT_IO_OPT_PSM, BNEP_PSM,
- BT_IO_OPT_SEC_LEVEL, BT_IO_SEC_MEDIUM,
- BT_IO_OPT_OMTU, BNEP_MTU,
- BT_IO_OPT_IMTU, BNEP_MTU,
- BT_IO_OPT_INVALID);
- if (!nc->io)
- return -EIO;
- nc->state = CONNECTING;
- return 0;
- }
- int connection_disconnect(struct btd_service *svc)
- {
- struct network_conn *nc = btd_service_get_user_data(svc);
- if (nc->state == DISCONNECTED)
- return 0;
- connection_destroy(NULL, nc);
- return 0;
- }
- static DBusMessage *local_disconnect(DBusConnection *conn,
- DBusMessage *msg, void *data)
- {
- struct network_peer *peer = data;
- GSList *l;
- for (l = peer->connections; l; l = l->next) {
- struct network_conn *nc = l->data;
- int err;
- if (nc->state == DISCONNECTED)
- continue;
- err = connection_disconnect(nc->service);
- if (err < 0)
- return btd_error_failed(msg, strerror(-err));
- return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
- }
- return btd_error_not_connected(msg);
- }
- static gboolean
- network_property_get_connected(const GDBusPropertyTable *property,
- DBusMessageIter *iter, void *data)
- {
- struct network_peer *peer = data;
- struct network_conn *nc;
- dbus_bool_t connected;
- nc = find_connection_by_state(peer->connections, CONNECTED);
- connected = nc != NULL ? TRUE : FALSE;
- dbus_message_iter_append_basic(iter, DBUS_TYPE_BOOLEAN, &connected);
- return TRUE;
- }
- static gboolean network_property_exists(const GDBusPropertyTable *property,
- void *data)
- {
- struct network_peer *peer = data;
- struct network_conn *nc;
- nc = find_connection_by_state(peer->connections, CONNECTED);
- if (nc == NULL)
- return FALSE;
- return TRUE;
- }
- static gboolean
- network_property_get_interface(const GDBusPropertyTable *property,
- DBusMessageIter *iter, void *data)
- {
- struct network_peer *peer = data;
- struct network_conn *nc;
- const char *iface;
- nc = find_connection_by_state(peer->connections, CONNECTED);
- if (nc == NULL)
- return FALSE;
- iface = nc->dev;
- dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &iface);
- return TRUE;
- }
- static gboolean network_property_get_uuid(const GDBusPropertyTable *property,
- DBusMessageIter *iter, void *data)
- {
- struct network_peer *peer = data;
- struct network_conn *nc;
- char uuid_str[MAX_LEN_UUID_STR];
- const char *uuid = uuid_str;
- bt_uuid_t uuid16, uuid128;
- nc = find_connection_by_state(peer->connections, CONNECTED);
- if (nc == NULL)
- return FALSE;
- bt_uuid16_create(&uuid16, nc->id);
- bt_uuid_to_uuid128(&uuid16, &uuid128);
- bt_uuid_to_string(&uuid128, uuid_str, MAX_LEN_UUID_STR);
- dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &uuid);
- return TRUE;
- }
- static void connection_free(void *data)
- {
- struct network_conn *nc = data;
- if (nc->dc_id)
- device_remove_disconnect_watch(nc->peer->device, nc->dc_id);
- connection_destroy(NULL, nc);
- if (nc->connect)
- dbus_message_unref(nc->connect);
- btd_service_unref(nc->service);
- g_free(nc);
- }
- static void peer_free(struct network_peer *peer)
- {
- g_slist_free_full(peer->connections, connection_free);
- btd_device_unref(peer->device);
- g_free(peer);
- }
- static void path_unregister(void *data)
- {
- struct network_peer *peer = data;
- DBG("Unregistered interface %s on path %s",
- NETWORK_PEER_INTERFACE, device_get_path(peer->device));
- peers = g_slist_remove(peers, peer);
- peer_free(peer);
- }
- static const GDBusMethodTable connection_methods[] = {
- { GDBUS_ASYNC_METHOD("Connect",
- GDBUS_ARGS({"uuid", "s"}),
- GDBUS_ARGS({"interface", "s"}),
- local_connect) },
- { GDBUS_METHOD("Disconnect",
- NULL, NULL, local_disconnect) },
- { }
- };
- static const GDBusPropertyTable connection_properties[] = {
- { "Connected", "b", network_property_get_connected },
- { "Interface", "s", network_property_get_interface, NULL,
- network_property_exists },
- { "UUID", "s", network_property_get_uuid, NULL,
- network_property_exists },
- { }
- };
- void connection_unregister(struct btd_service *svc)
- {
- struct btd_device *device = btd_service_get_device(svc);
- struct network_conn *conn = btd_service_get_user_data(svc);
- struct network_peer *peer = conn->peer;
- uint16_t id = get_pan_srv_id(btd_service_get_profile(svc)->remote_uuid);
- DBG("%s id %u", device_get_path(device), id);
- peer->connections = g_slist_remove(peer->connections, conn);
- connection_free(conn);
- if (peer->connections != NULL)
- return;
- g_dbus_unregister_interface(btd_get_dbus_connection(),
- device_get_path(device),
- NETWORK_PEER_INTERFACE);
- }
- static struct network_peer *create_peer(struct btd_device *device)
- {
- struct network_peer *peer;
- const char *path;
- peer = g_new0(struct network_peer, 1);
- peer->device = btd_device_ref(device);
- path = device_get_path(device);
- if (g_dbus_register_interface(btd_get_dbus_connection(), path,
- NETWORK_PEER_INTERFACE,
- connection_methods,
- NULL, connection_properties,
- peer, path_unregister) == FALSE) {
- error("D-Bus failed to register %s interface",
- NETWORK_PEER_INTERFACE);
- peer_free(peer);
- return NULL;
- }
- DBG("Registered interface %s on path %s",
- NETWORK_PEER_INTERFACE, path);
- return peer;
- }
- int connection_register(struct btd_service *svc)
- {
- struct btd_device *device = btd_service_get_device(svc);
- struct network_peer *peer;
- struct network_conn *nc;
- uint16_t id = get_pan_srv_id(btd_service_get_profile(svc)->remote_uuid);
- DBG("%s id %u", device_get_path(device), id);
- peer = find_peer(peers, device);
- if (!peer) {
- peer = create_peer(device);
- if (!peer)
- return -1;
- peers = g_slist_append(peers, peer);
- }
- nc = g_new0(struct network_conn, 1);
- nc->id = id;
- nc->service = btd_service_ref(svc);
- nc->state = DISCONNECTED;
- nc->peer = peer;
- btd_service_set_user_data(svc, nc);
- DBG("id %u registered", id);
- peer->connections = g_slist_append(peer->connections, nc);
- return 0;
- }
|