2015-01-06 00:16:21 +08:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* BlueZ - Bluetooth protocol stack for Linux
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Intel Corporation. All rights reserved.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* 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 <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdbool.h>
|
2015-02-04 23:08:03 +08:00
|
|
|
#include <sys/uio.h>
|
2017-09-11 19:42:04 +08:00
|
|
|
#include <fcntl.h>
|
2017-11-09 22:29:39 +08:00
|
|
|
#include <string.h>
|
2015-01-06 00:16:21 +08:00
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
2017-12-19 20:21:59 +08:00
|
|
|
#include "src/shared/util.h"
|
2017-05-25 18:31:32 +08:00
|
|
|
#include "src/shared/queue.h"
|
2017-07-03 18:49:19 +08:00
|
|
|
#include "src/shared/io.h"
|
2017-11-09 22:29:39 +08:00
|
|
|
#include "src/shared/shell.h"
|
2015-03-01 14:21:46 +08:00
|
|
|
#include "gdbus/gdbus.h"
|
2015-01-06 00:16:21 +08:00
|
|
|
#include "gatt.h"
|
|
|
|
|
2017-05-25 18:31:32 +08:00
|
|
|
#define APP_PATH "/org/bluez/app"
|
2015-03-23 23:23:01 +08:00
|
|
|
#define PROFILE_INTERFACE "org.bluez.GattProfile1"
|
2017-06-26 17:32:57 +08:00
|
|
|
#define SERVICE_INTERFACE "org.bluez.GattService1"
|
2017-06-27 00:21:29 +08:00
|
|
|
#define CHRC_INTERFACE "org.bluez.GattCharacteristic1"
|
2017-06-28 18:44:58 +08:00
|
|
|
#define DESC_INTERFACE "org.bluez.GattDescriptor1"
|
2015-03-23 23:23:01 +08:00
|
|
|
|
2015-01-06 00:16:21 +08:00
|
|
|
/* String display constants */
|
|
|
|
#define COLORED_NEW COLOR_GREEN "NEW" COLOR_OFF
|
|
|
|
#define COLORED_CHG COLOR_YELLOW "CHG" COLOR_OFF
|
|
|
|
#define COLORED_DEL COLOR_RED "DEL" COLOR_OFF
|
|
|
|
|
2018-05-16 21:52:27 +08:00
|
|
|
#define MAX_ATTR_VAL_LEN 512
|
|
|
|
|
2017-06-28 18:44:58 +08:00
|
|
|
struct desc {
|
|
|
|
struct chrc *chrc;
|
|
|
|
char *path;
|
|
|
|
char *uuid;
|
|
|
|
char **flags;
|
|
|
|
int value_len;
|
2018-05-16 21:52:27 +08:00
|
|
|
unsigned int max_val_len;
|
2017-06-28 18:44:58 +08:00
|
|
|
uint8_t *value;
|
|
|
|
};
|
|
|
|
|
2017-06-27 00:21:29 +08:00
|
|
|
struct chrc {
|
|
|
|
struct service *service;
|
|
|
|
char *path;
|
|
|
|
char *uuid;
|
|
|
|
char **flags;
|
|
|
|
bool notifying;
|
|
|
|
GList *descs;
|
|
|
|
int value_len;
|
2018-05-16 21:52:27 +08:00
|
|
|
unsigned int max_val_len;
|
2017-06-27 00:21:29 +08:00
|
|
|
uint8_t *value;
|
2017-09-11 19:42:04 +08:00
|
|
|
uint16_t mtu;
|
|
|
|
struct io *write_io;
|
2017-09-18 19:45:13 +08:00
|
|
|
struct io *notify_io;
|
2018-03-20 22:05:19 +08:00
|
|
|
bool authorization_req;
|
|
|
|
bool authorized;
|
2017-06-27 00:21:29 +08:00
|
|
|
};
|
|
|
|
|
2017-06-26 17:32:57 +08:00
|
|
|
struct service {
|
|
|
|
DBusConnection *conn;
|
|
|
|
char *path;
|
|
|
|
char *uuid;
|
|
|
|
bool primary;
|
2017-06-27 00:21:29 +08:00
|
|
|
GList *chrcs;
|
2018-05-18 01:01:16 +08:00
|
|
|
GList *inc;
|
2017-06-26 17:32:57 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static GList *local_services;
|
2015-01-06 00:16:21 +08:00
|
|
|
static GList *services;
|
2015-01-06 00:34:01 +08:00
|
|
|
static GList *characteristics;
|
2015-01-06 00:50:34 +08:00
|
|
|
static GList *descriptors;
|
2015-03-23 23:23:01 +08:00
|
|
|
static GList *managers;
|
2017-05-25 18:31:32 +08:00
|
|
|
static GList *uuids;
|
2018-03-20 22:05:19 +08:00
|
|
|
static DBusMessage *pending_message = NULL;
|
2015-01-06 00:16:21 +08:00
|
|
|
|
2017-09-08 21:58:31 +08:00
|
|
|
struct pipe_io {
|
|
|
|
GDBusProxy *proxy;
|
|
|
|
struct io *io;
|
|
|
|
uint16_t mtu;
|
|
|
|
};
|
2017-07-02 23:29:22 +08:00
|
|
|
|
2017-09-08 21:58:31 +08:00
|
|
|
static struct pipe_io write_io;
|
|
|
|
static struct pipe_io notify_io;
|
2017-07-03 18:49:19 +08:00
|
|
|
|
2017-06-26 17:32:57 +08:00
|
|
|
static void print_service(struct service *service, const char *description)
|
|
|
|
{
|
|
|
|
const char *text;
|
|
|
|
|
2017-12-19 20:21:59 +08:00
|
|
|
text = bt_uuidstr_to_str(service->uuid);
|
2017-06-26 17:32:57 +08:00
|
|
|
if (!text)
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("%s%s%s%s Service\n\t%s\n\t%s\n",
|
2017-06-26 17:32:57 +08:00
|
|
|
description ? "[" : "",
|
|
|
|
description ? : "",
|
|
|
|
description ? "] " : "",
|
|
|
|
service->primary ? "Primary" :
|
|
|
|
"Secondary",
|
|
|
|
service->path, service->uuid);
|
|
|
|
else
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("%s%s%s%s Service\n\t%s\n\t%s\n\t%s\n",
|
2017-06-26 17:32:57 +08:00
|
|
|
description ? "[" : "",
|
|
|
|
description ? : "",
|
|
|
|
description ? "] " : "",
|
|
|
|
service->primary ? "Primary" :
|
|
|
|
"Secondary",
|
|
|
|
service->path, service->uuid, text);
|
|
|
|
}
|
|
|
|
|
2018-05-18 01:01:16 +08:00
|
|
|
static void print_inc_service(struct service *service, const char *description)
|
|
|
|
{
|
|
|
|
const char *text;
|
|
|
|
|
|
|
|
text = bt_uuidstr_to_str(service->uuid);
|
|
|
|
if (!text)
|
|
|
|
bt_shell_printf("%s%s%s%s Included Service\n\t%s\n\t%s\n",
|
|
|
|
description ? "[" : "",
|
|
|
|
description ? : "",
|
|
|
|
description ? "] " : "",
|
|
|
|
service->primary ? "Primary" :
|
|
|
|
"Secondary",
|
|
|
|
service->path, service->uuid);
|
|
|
|
else
|
|
|
|
bt_shell_printf("%s%s%s%s Included Service\n\t%s\n\t%s\n\t%s\n",
|
|
|
|
description ? "[" : "",
|
|
|
|
description ? : "",
|
|
|
|
description ? "] " : "",
|
|
|
|
service->primary ? "Primary" :
|
|
|
|
"Secondary",
|
|
|
|
service->path, service->uuid, text);
|
|
|
|
}
|
|
|
|
|
2017-06-26 17:32:57 +08:00
|
|
|
static void print_service_proxy(GDBusProxy *proxy, const char *description)
|
2015-01-06 00:16:21 +08:00
|
|
|
{
|
2017-06-26 17:32:57 +08:00
|
|
|
struct service service;
|
2015-01-06 00:16:21 +08:00
|
|
|
DBusMessageIter iter;
|
2017-06-26 17:32:57 +08:00
|
|
|
const char *uuid;
|
2015-01-06 00:16:21 +08:00
|
|
|
dbus_bool_t primary;
|
|
|
|
|
|
|
|
if (g_dbus_proxy_get_property(proxy, "UUID", &iter) == FALSE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
dbus_message_iter_get_basic(&iter, &uuid);
|
|
|
|
|
|
|
|
if (g_dbus_proxy_get_property(proxy, "Primary", &iter) == FALSE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
dbus_message_iter_get_basic(&iter, &primary);
|
|
|
|
|
2017-06-26 17:32:57 +08:00
|
|
|
service.path = (char *) g_dbus_proxy_get_path(proxy);
|
|
|
|
service.uuid = (char *) uuid;
|
|
|
|
service.primary = primary;
|
|
|
|
|
|
|
|
print_service(&service, description);
|
2015-01-06 00:16:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void gatt_add_service(GDBusProxy *proxy)
|
|
|
|
{
|
|
|
|
services = g_list_append(services, proxy);
|
|
|
|
|
2017-06-26 17:32:57 +08:00
|
|
|
print_service_proxy(proxy, COLORED_NEW);
|
2015-01-06 00:16:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void gatt_remove_service(GDBusProxy *proxy)
|
|
|
|
{
|
2015-11-12 22:13:33 +08:00
|
|
|
GList *l;
|
|
|
|
|
|
|
|
l = g_list_find(services, proxy);
|
|
|
|
if (!l)
|
|
|
|
return;
|
|
|
|
|
|
|
|
services = g_list_delete_link(services, l);
|
2015-01-06 00:16:21 +08:00
|
|
|
|
2017-06-26 17:32:57 +08:00
|
|
|
print_service_proxy(proxy, COLORED_DEL);
|
2015-01-06 00:16:21 +08:00
|
|
|
}
|
2015-01-06 00:34:01 +08:00
|
|
|
|
2017-06-27 00:21:29 +08:00
|
|
|
static void print_chrc(struct chrc *chrc, const char *description)
|
2015-01-06 00:34:01 +08:00
|
|
|
{
|
2017-06-27 00:21:29 +08:00
|
|
|
const char *text;
|
2015-01-06 00:34:01 +08:00
|
|
|
|
2017-12-19 20:21:59 +08:00
|
|
|
text = bt_uuidstr_to_str(chrc->uuid);
|
2015-01-06 00:34:01 +08:00
|
|
|
if (!text)
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("%s%s%sCharacteristic\n\t%s\n\t%s\n",
|
2016-09-20 22:00:49 +08:00
|
|
|
description ? "[" : "",
|
|
|
|
description ? : "",
|
|
|
|
description ? "] " : "",
|
2017-06-27 00:21:29 +08:00
|
|
|
chrc->path, chrc->uuid);
|
2016-09-20 22:00:49 +08:00
|
|
|
else
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("%s%s%sCharacteristic\n\t%s\n\t%s\n\t%s\n",
|
2016-09-20 22:00:49 +08:00
|
|
|
description ? "[" : "",
|
|
|
|
description ? : "",
|
|
|
|
description ? "] " : "",
|
2017-06-27 00:21:29 +08:00
|
|
|
chrc->path, chrc->uuid, text);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_characteristic(GDBusProxy *proxy, const char *description)
|
|
|
|
{
|
|
|
|
struct chrc chrc;
|
|
|
|
DBusMessageIter iter;
|
|
|
|
const char *uuid;
|
|
|
|
|
|
|
|
if (g_dbus_proxy_get_property(proxy, "UUID", &iter) == FALSE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
dbus_message_iter_get_basic(&iter, &uuid);
|
|
|
|
|
|
|
|
chrc.path = (char *) g_dbus_proxy_get_path(proxy);
|
|
|
|
chrc.uuid = (char *) uuid;
|
|
|
|
|
|
|
|
print_chrc(&chrc, description);
|
2015-01-06 00:34:01 +08:00
|
|
|
}
|
|
|
|
|
2017-06-27 00:21:29 +08:00
|
|
|
static gboolean chrc_is_child(GDBusProxy *characteristic)
|
2015-01-06 00:34:01 +08:00
|
|
|
{
|
|
|
|
DBusMessageIter iter;
|
2017-12-28 13:44:03 +08:00
|
|
|
const char *service;
|
2015-01-06 00:34:01 +08:00
|
|
|
|
|
|
|
if (!g_dbus_proxy_get_property(characteristic, "Service", &iter))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
dbus_message_iter_get_basic(&iter, &service);
|
|
|
|
|
2017-12-28 13:44:03 +08:00
|
|
|
return g_dbus_proxy_lookup(services, NULL, service,
|
|
|
|
"org.bluez.GattService1") != NULL;
|
2015-01-06 00:34:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void gatt_add_characteristic(GDBusProxy *proxy)
|
|
|
|
{
|
2017-06-27 00:21:29 +08:00
|
|
|
if (!chrc_is_child(proxy))
|
2015-01-06 00:34:01 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
characteristics = g_list_append(characteristics, proxy);
|
|
|
|
|
|
|
|
print_characteristic(proxy, COLORED_NEW);
|
|
|
|
}
|
|
|
|
|
2017-07-03 18:49:19 +08:00
|
|
|
static void notify_io_destroy(void)
|
|
|
|
{
|
2017-09-08 21:58:31 +08:00
|
|
|
io_destroy(notify_io.io);
|
|
|
|
memset(¬ify_io, 0, sizeof(notify_io));
|
2017-07-03 18:49:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void write_io_destroy(void)
|
|
|
|
{
|
2017-09-08 21:58:31 +08:00
|
|
|
io_destroy(write_io.io);
|
|
|
|
memset(&write_io, 0, sizeof(write_io));
|
2017-07-03 18:49:19 +08:00
|
|
|
}
|
|
|
|
|
2015-01-06 00:34:01 +08:00
|
|
|
void gatt_remove_characteristic(GDBusProxy *proxy)
|
|
|
|
{
|
2015-11-12 22:13:33 +08:00
|
|
|
GList *l;
|
|
|
|
|
|
|
|
l = g_list_find(characteristics, proxy);
|
|
|
|
if (!l)
|
2015-01-06 00:34:01 +08:00
|
|
|
return;
|
|
|
|
|
2015-11-12 22:13:33 +08:00
|
|
|
characteristics = g_list_delete_link(characteristics, l);
|
2015-01-06 00:34:01 +08:00
|
|
|
|
|
|
|
print_characteristic(proxy, COLORED_DEL);
|
2017-07-02 23:29:22 +08:00
|
|
|
|
2017-09-08 21:58:31 +08:00
|
|
|
if (write_io.proxy == proxy)
|
2017-07-03 18:49:19 +08:00
|
|
|
write_io_destroy();
|
2017-09-08 21:58:31 +08:00
|
|
|
else if (notify_io.proxy == proxy)
|
2017-07-03 18:49:19 +08:00
|
|
|
notify_io_destroy();
|
2015-01-06 00:34:01 +08:00
|
|
|
}
|
2015-01-06 00:50:34 +08:00
|
|
|
|
2017-06-28 18:44:58 +08:00
|
|
|
static void print_desc(struct desc *desc, const char *description)
|
2015-01-06 00:50:34 +08:00
|
|
|
{
|
2017-06-28 18:44:58 +08:00
|
|
|
const char *text;
|
2015-01-06 00:50:34 +08:00
|
|
|
|
2017-12-19 20:21:59 +08:00
|
|
|
text = bt_uuidstr_to_str(desc->uuid);
|
2015-01-06 00:50:34 +08:00
|
|
|
if (!text)
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("%s%s%sDescriptor\n\t%s\n\t%s\n",
|
2016-09-20 22:00:49 +08:00
|
|
|
description ? "[" : "",
|
|
|
|
description ? : "",
|
|
|
|
description ? "] " : "",
|
2017-06-28 18:44:58 +08:00
|
|
|
desc->path, desc->uuid);
|
2016-09-20 22:00:49 +08:00
|
|
|
else
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("%s%s%sDescriptor\n\t%s\n\t%s\n\t%s\n",
|
2016-09-20 22:00:49 +08:00
|
|
|
description ? "[" : "",
|
|
|
|
description ? : "",
|
|
|
|
description ? "] " : "",
|
2017-06-28 18:44:58 +08:00
|
|
|
desc->path, desc->uuid, text);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_descriptor(GDBusProxy *proxy, const char *description)
|
|
|
|
{
|
|
|
|
struct desc desc;
|
|
|
|
DBusMessageIter iter;
|
|
|
|
const char *uuid;
|
|
|
|
|
|
|
|
if (g_dbus_proxy_get_property(proxy, "UUID", &iter) == FALSE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
dbus_message_iter_get_basic(&iter, &uuid);
|
|
|
|
|
|
|
|
desc.path = (char *) g_dbus_proxy_get_path(proxy);
|
|
|
|
desc.uuid = (char *) uuid;
|
|
|
|
|
|
|
|
print_desc(&desc, description);
|
2015-01-06 00:50:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean descriptor_is_child(GDBusProxy *characteristic)
|
|
|
|
{
|
|
|
|
GList *l;
|
|
|
|
DBusMessageIter iter;
|
|
|
|
const char *service, *path;
|
|
|
|
|
|
|
|
if (!g_dbus_proxy_get_property(characteristic, "Characteristic", &iter))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
dbus_message_iter_get_basic(&iter, &service);
|
|
|
|
|
|
|
|
for (l = characteristics; l; l = g_list_next(l)) {
|
|
|
|
GDBusProxy *proxy = l->data;
|
|
|
|
|
|
|
|
path = g_dbus_proxy_get_path(proxy);
|
|
|
|
|
|
|
|
if (!strcmp(path, service))
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void gatt_add_descriptor(GDBusProxy *proxy)
|
|
|
|
{
|
|
|
|
if (!descriptor_is_child(proxy))
|
|
|
|
return;
|
|
|
|
|
|
|
|
descriptors = g_list_append(descriptors, proxy);
|
|
|
|
|
|
|
|
print_descriptor(proxy, COLORED_NEW);
|
|
|
|
}
|
|
|
|
|
|
|
|
void gatt_remove_descriptor(GDBusProxy *proxy)
|
|
|
|
{
|
2015-11-12 22:13:33 +08:00
|
|
|
GList *l;
|
|
|
|
|
|
|
|
l = g_list_find(descriptors, proxy);
|
|
|
|
if (!l)
|
2015-01-06 00:50:34 +08:00
|
|
|
return;
|
|
|
|
|
2015-11-12 22:13:33 +08:00
|
|
|
descriptors = g_list_delete_link(descriptors, l);
|
2015-01-06 00:50:34 +08:00
|
|
|
|
|
|
|
print_descriptor(proxy, COLORED_DEL);
|
|
|
|
}
|
2015-02-03 20:38:46 +08:00
|
|
|
|
|
|
|
static void list_attributes(const char *path, GList *source)
|
|
|
|
{
|
|
|
|
GList *l;
|
|
|
|
|
|
|
|
for (l = source; l; l = g_list_next(l)) {
|
|
|
|
GDBusProxy *proxy = l->data;
|
|
|
|
const char *proxy_path;
|
|
|
|
|
|
|
|
proxy_path = g_dbus_proxy_get_path(proxy);
|
|
|
|
|
|
|
|
if (!g_str_has_prefix(proxy_path, path))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (source == services) {
|
2017-06-26 17:32:57 +08:00
|
|
|
print_service_proxy(proxy, NULL);
|
2015-02-03 20:38:46 +08:00
|
|
|
list_attributes(proxy_path, characteristics);
|
|
|
|
} else if (source == characteristics) {
|
|
|
|
print_characteristic(proxy, NULL);
|
|
|
|
list_attributes(proxy_path, descriptors);
|
|
|
|
} else if (source == descriptors)
|
|
|
|
print_descriptor(proxy, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void gatt_list_attributes(const char *path)
|
|
|
|
{
|
|
|
|
list_attributes(path, services);
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
|
2015-02-03 20:38:46 +08:00
|
|
|
}
|
2015-02-05 21:49:11 +08:00
|
|
|
|
2017-03-14 19:09:06 +08:00
|
|
|
static GDBusProxy *select_attribute(const char *path)
|
2015-02-05 21:49:11 +08:00
|
|
|
{
|
|
|
|
GDBusProxy *proxy;
|
|
|
|
|
2017-12-28 13:44:03 +08:00
|
|
|
proxy = g_dbus_proxy_lookup(services, NULL, path,
|
|
|
|
"org.bluez.GattService1");
|
2015-02-05 21:49:11 +08:00
|
|
|
if (proxy)
|
|
|
|
return proxy;
|
|
|
|
|
2017-12-28 13:44:03 +08:00
|
|
|
proxy = g_dbus_proxy_lookup(characteristics, NULL, path,
|
|
|
|
"org.bluez.GattCharacteristic1");
|
2015-02-05 21:49:11 +08:00
|
|
|
if (proxy)
|
|
|
|
return proxy;
|
|
|
|
|
2017-12-28 13:44:03 +08:00
|
|
|
return g_dbus_proxy_lookup(descriptors, NULL, path,
|
|
|
|
"org.bluez.GattDescriptor1");
|
2015-02-05 21:49:11 +08:00
|
|
|
}
|
|
|
|
|
2017-03-14 19:46:21 +08:00
|
|
|
static GDBusProxy *select_proxy_by_uuid(GDBusProxy *parent, const char *uuid,
|
|
|
|
GList *source)
|
2017-03-14 19:09:06 +08:00
|
|
|
{
|
|
|
|
GList *l;
|
|
|
|
const char *value;
|
|
|
|
DBusMessageIter iter;
|
|
|
|
|
|
|
|
for (l = source; l; l = g_list_next(l)) {
|
|
|
|
GDBusProxy *proxy = l->data;
|
|
|
|
|
2017-03-14 19:46:21 +08:00
|
|
|
if (parent && !g_str_has_prefix(g_dbus_proxy_get_path(proxy),
|
|
|
|
g_dbus_proxy_get_path(parent)))
|
|
|
|
continue;
|
|
|
|
|
2017-03-14 19:09:06 +08:00
|
|
|
if (g_dbus_proxy_get_property(proxy, "UUID", &iter) == FALSE)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
dbus_message_iter_get_basic(&iter, &value);
|
|
|
|
|
|
|
|
if (strcasecmp(uuid, value) == 0)
|
|
|
|
return proxy;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-03-14 19:46:21 +08:00
|
|
|
static GDBusProxy *select_attribute_by_uuid(GDBusProxy *parent,
|
|
|
|
const char *uuid)
|
2017-03-14 19:09:06 +08:00
|
|
|
{
|
|
|
|
GDBusProxy *proxy;
|
|
|
|
|
2017-03-14 19:46:21 +08:00
|
|
|
proxy = select_proxy_by_uuid(parent, uuid, services);
|
2017-03-14 19:09:06 +08:00
|
|
|
if (proxy)
|
|
|
|
return proxy;
|
|
|
|
|
2017-03-14 19:46:21 +08:00
|
|
|
proxy = select_proxy_by_uuid(parent, uuid, characteristics);
|
2017-03-14 19:09:06 +08:00
|
|
|
if (proxy)
|
|
|
|
return proxy;
|
|
|
|
|
2017-03-14 19:46:21 +08:00
|
|
|
return select_proxy_by_uuid(parent, uuid, descriptors);
|
2017-03-14 19:09:06 +08:00
|
|
|
}
|
|
|
|
|
2017-03-14 19:46:21 +08:00
|
|
|
GDBusProxy *gatt_select_attribute(GDBusProxy *parent, const char *arg)
|
2017-03-14 19:09:06 +08:00
|
|
|
{
|
|
|
|
if (arg[0] == '/')
|
|
|
|
return select_attribute(arg);
|
|
|
|
|
2017-03-14 19:46:21 +08:00
|
|
|
if (parent) {
|
|
|
|
GDBusProxy *proxy = select_attribute_by_uuid(parent, arg);
|
|
|
|
if (proxy)
|
|
|
|
return proxy;
|
|
|
|
}
|
|
|
|
|
|
|
|
return select_attribute_by_uuid(parent, arg);
|
2017-03-14 19:09:06 +08:00
|
|
|
}
|
|
|
|
|
2015-02-05 21:49:11 +08:00
|
|
|
static char *attribute_generator(const char *text, int state, GList *source)
|
|
|
|
{
|
2017-12-28 13:44:18 +08:00
|
|
|
static int index;
|
2015-02-05 21:49:11 +08:00
|
|
|
|
|
|
|
if (!state) {
|
|
|
|
index = 0;
|
|
|
|
}
|
|
|
|
|
2017-12-28 13:44:18 +08:00
|
|
|
return g_dbus_proxy_path_lookup(source, &index, text);
|
2015-02-05 21:49:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
char *gatt_attribute_generator(const char *text, int state)
|
|
|
|
{
|
|
|
|
static GList *list = NULL;
|
|
|
|
|
|
|
|
if (!state) {
|
|
|
|
GList *list1;
|
|
|
|
|
|
|
|
if (list) {
|
|
|
|
g_list_free(list);
|
|
|
|
list = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
list1 = g_list_copy(characteristics);
|
|
|
|
list1 = g_list_concat(list1, g_list_copy(descriptors));
|
|
|
|
|
|
|
|
list = g_list_copy(services);
|
|
|
|
list = g_list_concat(list, list1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return attribute_generator(text, state, list);
|
|
|
|
}
|
2015-02-04 20:57:51 +08:00
|
|
|
|
|
|
|
static void read_reply(DBusMessage *message, void *user_data)
|
|
|
|
{
|
|
|
|
DBusError error;
|
|
|
|
DBusMessageIter iter, array;
|
|
|
|
uint8_t *value;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
dbus_error_init(&error);
|
|
|
|
|
|
|
|
if (dbus_set_error_from_message(&error, message) == TRUE) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Failed to read: %s\n", error.name);
|
2015-02-04 20:57:51 +08:00
|
|
|
dbus_error_free(&error);
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2015-02-04 20:57:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dbus_message_iter_init(message, &iter);
|
|
|
|
|
|
|
|
if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_ARRAY) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Invalid response to read\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2015-02-04 20:57:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dbus_message_iter_recurse(&iter, &array);
|
|
|
|
dbus_message_iter_get_fixed_array(&array, &value, &len);
|
|
|
|
|
|
|
|
if (len < 0) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Unable to parse value\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2015-02-04 20:57:51 +08:00
|
|
|
}
|
|
|
|
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_hexdump(value, len);
|
2018-02-23 22:34:58 +08:00
|
|
|
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
|
2015-02-04 20:57:51 +08:00
|
|
|
}
|
|
|
|
|
2016-05-08 22:24:14 +08:00
|
|
|
static void read_setup(DBusMessageIter *iter, void *user_data)
|
|
|
|
{
|
|
|
|
DBusMessageIter dict;
|
2018-04-26 20:31:59 +08:00
|
|
|
uint16_t *offset = user_data;
|
2016-05-08 22:24:14 +08:00
|
|
|
|
|
|
|
dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY,
|
|
|
|
DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
|
|
|
|
DBUS_TYPE_STRING_AS_STRING
|
|
|
|
DBUS_TYPE_VARIANT_AS_STRING
|
|
|
|
DBUS_DICT_ENTRY_END_CHAR_AS_STRING,
|
|
|
|
&dict);
|
2018-04-26 20:31:59 +08:00
|
|
|
|
|
|
|
g_dbus_dict_append_entry(&dict, "offset", DBUS_TYPE_UINT16, offset);
|
|
|
|
|
2016-05-08 22:24:14 +08:00
|
|
|
dbus_message_iter_close_container(iter, &dict);
|
|
|
|
}
|
|
|
|
|
2018-04-26 20:31:59 +08:00
|
|
|
static void read_attribute(GDBusProxy *proxy, uint16_t offset)
|
2015-02-04 20:57:51 +08:00
|
|
|
{
|
2016-05-08 22:24:14 +08:00
|
|
|
if (g_dbus_proxy_method_call(proxy, "ReadValue", read_setup, read_reply,
|
2018-04-26 20:31:59 +08:00
|
|
|
&offset, NULL) == FALSE) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Failed to read\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2015-02-04 20:57:51 +08:00
|
|
|
}
|
|
|
|
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Attempting to read %s\n", g_dbus_proxy_get_path(proxy));
|
2015-02-04 20:57:51 +08:00
|
|
|
}
|
|
|
|
|
2018-04-26 20:31:59 +08:00
|
|
|
void gatt_read_attribute(GDBusProxy *proxy, int argc, char *argv[])
|
2015-02-04 20:57:51 +08:00
|
|
|
{
|
|
|
|
const char *iface;
|
2018-04-26 20:31:59 +08:00
|
|
|
uint16_t offset = 0;
|
2015-02-04 20:57:51 +08:00
|
|
|
|
|
|
|
iface = g_dbus_proxy_get_interface(proxy);
|
|
|
|
if (!strcmp(iface, "org.bluez.GattCharacteristic1") ||
|
|
|
|
!strcmp(iface, "org.bluez.GattDescriptor1")) {
|
2018-04-26 20:31:59 +08:00
|
|
|
|
|
|
|
if (argc == 2)
|
|
|
|
offset = atoi(argv[1]);
|
|
|
|
|
|
|
|
read_attribute(proxy, offset);
|
2015-02-04 20:57:51 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Unable to read attribute %s\n",
|
2015-02-04 20:57:51 +08:00
|
|
|
g_dbus_proxy_get_path(proxy));
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2015-02-04 20:57:51 +08:00
|
|
|
}
|
2015-02-04 23:08:03 +08:00
|
|
|
|
|
|
|
static void write_reply(DBusMessage *message, void *user_data)
|
|
|
|
{
|
|
|
|
DBusError error;
|
|
|
|
|
|
|
|
dbus_error_init(&error);
|
|
|
|
|
|
|
|
if (dbus_set_error_from_message(&error, message) == TRUE) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Failed to write: %s\n", error.name);
|
2015-02-04 23:08:03 +08:00
|
|
|
dbus_error_free(&error);
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2015-02-04 23:08:03 +08:00
|
|
|
}
|
2018-02-23 22:34:58 +08:00
|
|
|
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
|
2015-02-04 23:08:03 +08:00
|
|
|
}
|
|
|
|
|
2018-04-26 20:32:00 +08:00
|
|
|
struct write_attribute_data {
|
|
|
|
struct iovec *iov;
|
|
|
|
uint16_t offset;
|
|
|
|
};
|
|
|
|
|
2015-02-04 23:08:03 +08:00
|
|
|
static void write_setup(DBusMessageIter *iter, void *user_data)
|
|
|
|
{
|
2018-04-26 20:32:00 +08:00
|
|
|
struct write_attribute_data *wd = user_data;
|
2016-05-08 22:24:14 +08:00
|
|
|
DBusMessageIter array, dict;
|
2015-02-04 23:08:03 +08:00
|
|
|
|
|
|
|
dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY, "y", &array);
|
|
|
|
dbus_message_iter_append_fixed_array(&array, DBUS_TYPE_BYTE,
|
2018-04-26 20:32:00 +08:00
|
|
|
&wd->iov->iov_base,
|
|
|
|
wd->iov->iov_len);
|
2015-02-04 23:08:03 +08:00
|
|
|
dbus_message_iter_close_container(iter, &array);
|
2016-05-08 22:24:14 +08:00
|
|
|
|
|
|
|
dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY,
|
|
|
|
DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
|
|
|
|
DBUS_TYPE_STRING_AS_STRING
|
|
|
|
DBUS_TYPE_VARIANT_AS_STRING
|
|
|
|
DBUS_DICT_ENTRY_END_CHAR_AS_STRING,
|
|
|
|
&dict);
|
2018-04-26 20:32:00 +08:00
|
|
|
|
|
|
|
g_dbus_dict_append_entry(&dict, "offset", DBUS_TYPE_UINT16,
|
|
|
|
&wd->offset);
|
|
|
|
|
2016-05-08 22:24:14 +08:00
|
|
|
dbus_message_iter_close_container(iter, &dict);
|
2015-02-04 23:08:03 +08:00
|
|
|
}
|
|
|
|
|
2018-04-26 20:32:00 +08:00
|
|
|
static void write_attribute(GDBusProxy *proxy, char *val_str, uint16_t offset)
|
2015-02-04 23:08:03 +08:00
|
|
|
{
|
|
|
|
struct iovec iov;
|
2018-04-26 20:32:00 +08:00
|
|
|
struct write_attribute_data wd;
|
2018-05-16 21:52:27 +08:00
|
|
|
uint8_t value[MAX_ATTR_VAL_LEN];
|
2015-02-04 23:08:03 +08:00
|
|
|
char *entry;
|
2015-07-08 03:20:33 +08:00
|
|
|
unsigned int i;
|
2015-02-04 23:08:03 +08:00
|
|
|
|
2018-04-26 20:32:00 +08:00
|
|
|
for (i = 0; (entry = strsep(&val_str, " \t")) != NULL; i++) {
|
2015-02-04 23:08:03 +08:00
|
|
|
long int val;
|
|
|
|
char *endptr = NULL;
|
|
|
|
|
|
|
|
if (*entry == '\0')
|
|
|
|
continue;
|
|
|
|
|
2015-07-08 03:20:33 +08:00
|
|
|
if (i >= G_N_ELEMENTS(value)) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Too much data\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2015-02-04 23:08:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
val = strtol(entry, &endptr, 0);
|
|
|
|
if (!endptr || *endptr != '\0' || val > UINT8_MAX) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Invalid value at index %d\n", i);
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2015-02-04 23:08:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
value[i] = val;
|
|
|
|
}
|
|
|
|
|
|
|
|
iov.iov_base = value;
|
|
|
|
iov.iov_len = i;
|
|
|
|
|
2017-07-02 23:29:22 +08:00
|
|
|
/* Write using the fd if it has been acquired and fit the MTU */
|
2017-09-08 21:58:31 +08:00
|
|
|
if (proxy == write_io.proxy && (write_io.io && write_io.mtu >= i)) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Attempting to write fd %d\n",
|
2017-09-08 21:58:31 +08:00
|
|
|
io_get_fd(write_io.io));
|
|
|
|
if (io_send(write_io.io, &iov, 1) < 0) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Failed to write: %s", strerror(errno));
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-07-02 23:29:22 +08:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-26 20:32:00 +08:00
|
|
|
wd.iov = &iov;
|
|
|
|
wd.offset = offset;
|
|
|
|
|
2015-02-04 23:08:03 +08:00
|
|
|
if (g_dbus_proxy_method_call(proxy, "WriteValue", write_setup,
|
2018-04-26 20:32:00 +08:00
|
|
|
write_reply, &wd, NULL) == FALSE) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Failed to write\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2015-02-04 23:08:03 +08:00
|
|
|
}
|
|
|
|
|
2018-03-01 17:11:17 +08:00
|
|
|
bt_shell_printf("Attempting to write %s\n",
|
|
|
|
g_dbus_proxy_get_path(proxy));
|
2015-02-04 23:08:03 +08:00
|
|
|
}
|
|
|
|
|
2018-04-26 20:32:00 +08:00
|
|
|
void gatt_write_attribute(GDBusProxy *proxy, int argc, char *argv[])
|
2015-02-04 23:08:03 +08:00
|
|
|
{
|
|
|
|
const char *iface;
|
2018-04-26 20:32:00 +08:00
|
|
|
uint16_t offset = 0;
|
2015-02-04 23:08:03 +08:00
|
|
|
|
|
|
|
iface = g_dbus_proxy_get_interface(proxy);
|
|
|
|
if (!strcmp(iface, "org.bluez.GattCharacteristic1") ||
|
|
|
|
!strcmp(iface, "org.bluez.GattDescriptor1")) {
|
2018-04-26 20:32:00 +08:00
|
|
|
|
|
|
|
if (argc > 2)
|
|
|
|
offset = atoi(argv[2]);
|
|
|
|
|
|
|
|
write_attribute(proxy, argv[1], offset);
|
2015-02-04 23:08:03 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Unable to write attribute %s\n",
|
2015-02-04 23:08:03 +08:00
|
|
|
g_dbus_proxy_get_path(proxy));
|
2018-02-23 22:34:58 +08:00
|
|
|
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2015-02-04 23:08:03 +08:00
|
|
|
}
|
2015-02-05 23:24:27 +08:00
|
|
|
|
2017-07-03 18:49:19 +08:00
|
|
|
static bool pipe_read(struct io *io, void *user_data)
|
|
|
|
{
|
2017-09-11 19:42:04 +08:00
|
|
|
struct chrc *chrc = user_data;
|
2018-05-16 21:52:27 +08:00
|
|
|
uint8_t buf[MAX_ATTR_VAL_LEN];
|
2017-07-03 18:49:19 +08:00
|
|
|
int fd = io_get_fd(io);
|
|
|
|
ssize_t bytes_read;
|
|
|
|
|
2017-09-11 19:42:04 +08:00
|
|
|
if (io != notify_io.io && !chrc)
|
2017-07-03 18:49:19 +08:00
|
|
|
return true;
|
|
|
|
|
|
|
|
bytes_read = read(fd, buf, sizeof(buf));
|
|
|
|
if (bytes_read < 0)
|
|
|
|
return false;
|
|
|
|
|
2017-09-11 19:42:04 +08:00
|
|
|
if (chrc)
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("[" COLORED_CHG "] Attribute %s written:\n",
|
2017-09-11 19:42:04 +08:00
|
|
|
chrc->path);
|
|
|
|
else
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("[" COLORED_CHG "] %s Notification:\n",
|
2017-09-11 19:42:04 +08:00
|
|
|
g_dbus_proxy_get_path(notify_io.proxy));
|
|
|
|
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_hexdump(buf, bytes_read);
|
2017-07-03 18:49:19 +08:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool pipe_hup(struct io *io, void *user_data)
|
|
|
|
{
|
2017-09-11 19:42:04 +08:00
|
|
|
struct chrc *chrc = user_data;
|
|
|
|
|
|
|
|
if (chrc) {
|
2018-02-06 18:01:19 +08:00
|
|
|
bt_shell_printf("Attribute %s %s pipe closed\n", chrc->path,
|
|
|
|
io == chrc->write_io ? "Write" : "Notify");
|
|
|
|
|
|
|
|
if (io == chrc->write_io) {
|
2017-09-11 19:42:04 +08:00
|
|
|
io_destroy(chrc->write_io);
|
|
|
|
chrc->write_io = NULL;
|
2018-02-06 18:01:19 +08:00
|
|
|
} else {
|
|
|
|
io_destroy(chrc->notify_io);
|
|
|
|
chrc->notify_io = NULL;
|
2017-09-11 19:42:04 +08:00
|
|
|
}
|
2018-02-06 18:01:19 +08:00
|
|
|
|
2017-09-11 19:42:04 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("%s closed\n", io == notify_io.io ? "Notify" : "Write");
|
2017-07-03 18:49:19 +08:00
|
|
|
|
2017-09-08 21:58:31 +08:00
|
|
|
if (io == notify_io.io)
|
2017-07-03 18:49:19 +08:00
|
|
|
notify_io_destroy();
|
|
|
|
else
|
|
|
|
write_io_destroy();
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-09-11 19:42:04 +08:00
|
|
|
static struct io *pipe_io_new(int fd, void *user_data)
|
2017-07-03 18:49:19 +08:00
|
|
|
{
|
|
|
|
struct io *io;
|
|
|
|
|
|
|
|
io = io_new(fd);
|
|
|
|
|
|
|
|
io_set_close_on_destroy(io, true);
|
|
|
|
|
2017-09-11 19:42:04 +08:00
|
|
|
io_set_read_handler(io, pipe_read, user_data, NULL);
|
2017-07-03 18:49:19 +08:00
|
|
|
|
2017-09-11 19:42:04 +08:00
|
|
|
io_set_disconnect_handler(io, pipe_hup, user_data, NULL);
|
2017-07-03 18:49:19 +08:00
|
|
|
|
|
|
|
return io;
|
|
|
|
}
|
|
|
|
|
2017-07-02 23:29:22 +08:00
|
|
|
static void acquire_write_reply(DBusMessage *message, void *user_data)
|
|
|
|
{
|
|
|
|
DBusError error;
|
2017-07-03 18:49:19 +08:00
|
|
|
int fd;
|
2017-07-02 23:29:22 +08:00
|
|
|
|
|
|
|
dbus_error_init(&error);
|
|
|
|
|
|
|
|
if (dbus_set_error_from_message(&error, message) == TRUE) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Failed to acquire write: %s\n", error.name);
|
2017-07-02 23:29:22 +08:00
|
|
|
dbus_error_free(&error);
|
2017-09-08 21:58:31 +08:00
|
|
|
write_io.proxy = NULL;
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-07-02 23:29:22 +08:00
|
|
|
}
|
|
|
|
|
2017-09-08 21:58:31 +08:00
|
|
|
if (write_io.io)
|
2017-07-03 18:49:19 +08:00
|
|
|
write_io_destroy();
|
2017-07-02 23:29:22 +08:00
|
|
|
|
2017-07-03 18:49:19 +08:00
|
|
|
if ((dbus_message_get_args(message, NULL, DBUS_TYPE_UNIX_FD, &fd,
|
2017-09-08 21:58:31 +08:00
|
|
|
DBUS_TYPE_UINT16, &write_io.mtu,
|
2017-07-02 23:29:22 +08:00
|
|
|
DBUS_TYPE_INVALID) == false)) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Invalid AcquireWrite response\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-07-02 23:29:22 +08:00
|
|
|
}
|
|
|
|
|
2018-03-01 17:11:17 +08:00
|
|
|
bt_shell_printf("AcquireWrite success: fd %d MTU %u\n", fd,
|
|
|
|
write_io.mtu);
|
2017-07-03 18:49:19 +08:00
|
|
|
|
2017-09-11 19:42:04 +08:00
|
|
|
write_io.io = pipe_io_new(fd, NULL);
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
|
2017-07-02 23:29:22 +08:00
|
|
|
}
|
|
|
|
|
2017-09-18 20:29:38 +08:00
|
|
|
static void acquire_setup(DBusMessageIter *iter, void *user_data)
|
|
|
|
{
|
|
|
|
DBusMessageIter dict;
|
|
|
|
|
|
|
|
dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY,
|
|
|
|
DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
|
|
|
|
DBUS_TYPE_STRING_AS_STRING
|
|
|
|
DBUS_TYPE_VARIANT_AS_STRING
|
|
|
|
DBUS_DICT_ENTRY_END_CHAR_AS_STRING,
|
|
|
|
&dict);
|
|
|
|
|
|
|
|
dbus_message_iter_close_container(iter, &dict);
|
|
|
|
}
|
|
|
|
|
2017-07-02 23:29:22 +08:00
|
|
|
void gatt_acquire_write(GDBusProxy *proxy, const char *arg)
|
|
|
|
{
|
|
|
|
const char *iface;
|
|
|
|
|
|
|
|
iface = g_dbus_proxy_get_interface(proxy);
|
|
|
|
if (strcmp(iface, "org.bluez.GattCharacteristic1")) {
|
2018-03-01 17:11:17 +08:00
|
|
|
bt_shell_printf("Unable to acquire write: %s not a"
|
|
|
|
" characteristic\n",
|
|
|
|
g_dbus_proxy_get_path(proxy));
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-07-02 23:29:22 +08:00
|
|
|
}
|
|
|
|
|
2017-09-18 20:29:38 +08:00
|
|
|
if (g_dbus_proxy_method_call(proxy, "AcquireWrite", acquire_setup,
|
2017-07-02 23:29:22 +08:00
|
|
|
acquire_write_reply, NULL, NULL) == FALSE) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Failed to AcquireWrite\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-07-02 23:29:22 +08:00
|
|
|
}
|
|
|
|
|
2017-09-08 21:58:31 +08:00
|
|
|
write_io.proxy = proxy;
|
2017-07-02 23:29:22 +08:00
|
|
|
}
|
|
|
|
|
2017-07-02 23:42:24 +08:00
|
|
|
void gatt_release_write(GDBusProxy *proxy, const char *arg)
|
|
|
|
{
|
2017-09-08 21:58:31 +08:00
|
|
|
if (proxy != write_io.proxy || !write_io.io) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Write not acquired\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-07-02 23:42:24 +08:00
|
|
|
}
|
|
|
|
|
2017-07-03 18:49:19 +08:00
|
|
|
write_io_destroy();
|
2018-02-23 22:34:58 +08:00
|
|
|
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
|
2017-07-03 18:49:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void acquire_notify_reply(DBusMessage *message, void *user_data)
|
|
|
|
{
|
|
|
|
DBusError error;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
dbus_error_init(&error);
|
|
|
|
|
|
|
|
if (dbus_set_error_from_message(&error, message) == TRUE) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Failed to acquire notify: %s\n", error.name);
|
2017-07-03 18:49:19 +08:00
|
|
|
dbus_error_free(&error);
|
2017-09-08 21:58:31 +08:00
|
|
|
write_io.proxy = NULL;
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-07-03 18:49:19 +08:00
|
|
|
}
|
|
|
|
|
2017-09-08 21:58:31 +08:00
|
|
|
if (notify_io.io) {
|
|
|
|
io_destroy(notify_io.io);
|
|
|
|
notify_io.io = NULL;
|
2017-07-03 18:49:19 +08:00
|
|
|
}
|
|
|
|
|
2017-09-08 21:58:31 +08:00
|
|
|
notify_io.mtu = 0;
|
2017-07-03 18:49:19 +08:00
|
|
|
|
|
|
|
if ((dbus_message_get_args(message, NULL, DBUS_TYPE_UNIX_FD, &fd,
|
2017-09-08 21:58:31 +08:00
|
|
|
DBUS_TYPE_UINT16, ¬ify_io.mtu,
|
2017-07-03 18:49:19 +08:00
|
|
|
DBUS_TYPE_INVALID) == false)) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Invalid AcquireNotify response\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-07-03 18:49:19 +08:00
|
|
|
}
|
|
|
|
|
2018-03-01 17:11:17 +08:00
|
|
|
bt_shell_printf("AcquireNotify success: fd %d MTU %u\n", fd,
|
|
|
|
notify_io.mtu);
|
2017-07-03 18:49:19 +08:00
|
|
|
|
2017-09-11 19:42:04 +08:00
|
|
|
notify_io.io = pipe_io_new(fd, NULL);
|
2018-02-23 22:34:58 +08:00
|
|
|
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
|
2017-07-03 18:49:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void gatt_acquire_notify(GDBusProxy *proxy, const char *arg)
|
|
|
|
{
|
|
|
|
const char *iface;
|
|
|
|
|
|
|
|
iface = g_dbus_proxy_get_interface(proxy);
|
|
|
|
if (strcmp(iface, "org.bluez.GattCharacteristic1")) {
|
2018-03-01 17:11:17 +08:00
|
|
|
bt_shell_printf("Unable to acquire notify: %s not a"
|
|
|
|
" characteristic\n",
|
|
|
|
g_dbus_proxy_get_path(proxy));
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-07-03 18:49:19 +08:00
|
|
|
}
|
|
|
|
|
2017-09-18 20:29:38 +08:00
|
|
|
if (g_dbus_proxy_method_call(proxy, "AcquireNotify", acquire_setup,
|
2017-07-03 18:49:19 +08:00
|
|
|
acquire_notify_reply, NULL, NULL) == FALSE) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Failed to AcquireNotify\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-07-03 18:49:19 +08:00
|
|
|
}
|
|
|
|
|
2017-09-08 21:58:31 +08:00
|
|
|
notify_io.proxy = proxy;
|
2017-07-02 23:42:24 +08:00
|
|
|
}
|
|
|
|
|
2017-07-03 19:06:06 +08:00
|
|
|
void gatt_release_notify(GDBusProxy *proxy, const char *arg)
|
|
|
|
{
|
2017-09-08 21:58:31 +08:00
|
|
|
if (proxy != notify_io.proxy || !notify_io.io) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Notify not acquired\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-07-03 19:06:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
notify_io_destroy();
|
2018-02-23 22:34:58 +08:00
|
|
|
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
|
2017-07-03 19:06:06 +08:00
|
|
|
}
|
|
|
|
|
2015-02-05 23:24:27 +08:00
|
|
|
static void notify_reply(DBusMessage *message, void *user_data)
|
|
|
|
{
|
|
|
|
bool enable = GPOINTER_TO_UINT(user_data);
|
|
|
|
DBusError error;
|
|
|
|
|
|
|
|
dbus_error_init(&error);
|
|
|
|
|
|
|
|
if (dbus_set_error_from_message(&error, message) == TRUE) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Failed to %s notify: %s\n",
|
2015-02-05 23:24:27 +08:00
|
|
|
enable ? "start" : "stop", error.name);
|
|
|
|
dbus_error_free(&error);
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2015-02-05 23:24:27 +08:00
|
|
|
}
|
|
|
|
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Notify %s\n", enable == TRUE ? "started" : "stopped");
|
2018-02-23 22:34:58 +08:00
|
|
|
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
|
2015-02-05 23:24:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void notify_attribute(GDBusProxy *proxy, bool enable)
|
|
|
|
{
|
|
|
|
const char *method;
|
|
|
|
|
|
|
|
if (enable == TRUE)
|
|
|
|
method = "StartNotify";
|
|
|
|
else
|
|
|
|
method = "StopNotify";
|
|
|
|
|
|
|
|
if (g_dbus_proxy_method_call(proxy, method, NULL, notify_reply,
|
|
|
|
GUINT_TO_POINTER(enable), NULL) == FALSE) {
|
2018-03-01 17:11:17 +08:00
|
|
|
bt_shell_printf("Failed to %s notify\n",
|
|
|
|
enable ? "start" : "stop");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2015-02-05 23:24:27 +08:00
|
|
|
}
|
2018-02-23 22:34:58 +08:00
|
|
|
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
|
2015-02-05 23:24:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void gatt_notify_attribute(GDBusProxy *proxy, bool enable)
|
|
|
|
{
|
|
|
|
const char *iface;
|
|
|
|
|
|
|
|
iface = g_dbus_proxy_get_interface(proxy);
|
|
|
|
if (!strcmp(iface, "org.bluez.GattCharacteristic1")) {
|
|
|
|
notify_attribute(proxy, enable);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Unable to notify attribute %s\n",
|
2015-02-05 23:24:27 +08:00
|
|
|
g_dbus_proxy_get_path(proxy));
|
2018-02-23 22:34:58 +08:00
|
|
|
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2015-02-05 23:24:27 +08:00
|
|
|
}
|
2015-03-23 23:23:01 +08:00
|
|
|
|
2017-05-25 18:31:32 +08:00
|
|
|
static void register_app_setup(DBusMessageIter *iter, void *user_data)
|
2015-03-23 23:23:01 +08:00
|
|
|
{
|
2017-05-25 18:31:32 +08:00
|
|
|
DBusMessageIter opt;
|
|
|
|
const char *path = "/";
|
2015-03-23 23:23:01 +08:00
|
|
|
|
|
|
|
dbus_message_iter_append_basic(iter, DBUS_TYPE_OBJECT_PATH, &path);
|
|
|
|
|
|
|
|
dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY,
|
|
|
|
DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
|
|
|
|
DBUS_TYPE_STRING_AS_STRING
|
|
|
|
DBUS_TYPE_VARIANT_AS_STRING
|
|
|
|
DBUS_DICT_ENTRY_END_CHAR_AS_STRING,
|
|
|
|
&opt);
|
|
|
|
dbus_message_iter_close_container(iter, &opt);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-05-25 18:31:32 +08:00
|
|
|
static void register_app_reply(DBusMessage *message, void *user_data)
|
2015-03-23 23:23:01 +08:00
|
|
|
{
|
|
|
|
DBusError error;
|
|
|
|
|
|
|
|
dbus_error_init(&error);
|
|
|
|
|
|
|
|
if (dbus_set_error_from_message(&error, message) == TRUE) {
|
2018-03-01 17:11:17 +08:00
|
|
|
bt_shell_printf("Failed to register application: %s\n",
|
|
|
|
error.name);
|
2015-03-23 23:23:01 +08:00
|
|
|
dbus_error_free(&error);
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2015-03-23 23:23:01 +08:00
|
|
|
}
|
|
|
|
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Application registered\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
|
2015-03-23 23:23:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void gatt_add_manager(GDBusProxy *proxy)
|
|
|
|
{
|
|
|
|
managers = g_list_append(managers, proxy);
|
|
|
|
}
|
|
|
|
|
|
|
|
void gatt_remove_manager(GDBusProxy *proxy)
|
|
|
|
{
|
|
|
|
managers = g_list_remove(managers, proxy);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int match_proxy(const void *a, const void *b)
|
|
|
|
{
|
|
|
|
GDBusProxy *proxy1 = (void *) a;
|
|
|
|
GDBusProxy *proxy2 = (void *) b;
|
|
|
|
|
|
|
|
return strcmp(g_dbus_proxy_get_path(proxy1),
|
|
|
|
g_dbus_proxy_get_path(proxy2));
|
|
|
|
}
|
|
|
|
|
|
|
|
static DBusMessage *release_profile(DBusConnection *conn,
|
|
|
|
DBusMessage *msg, void *user_data)
|
|
|
|
{
|
2017-05-25 18:31:32 +08:00
|
|
|
g_dbus_unregister_interface(conn, APP_PATH, PROFILE_INTERFACE);
|
2015-03-23 23:23:01 +08:00
|
|
|
|
|
|
|
return dbus_message_new_method_return(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const GDBusMethodTable methods[] = {
|
|
|
|
{ GDBUS_METHOD("Release", NULL, NULL, release_profile) },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2017-05-25 18:31:32 +08:00
|
|
|
static gboolean get_uuids(const GDBusPropertyTable *property,
|
|
|
|
DBusMessageIter *iter, void *data)
|
|
|
|
{
|
|
|
|
DBusMessageIter entry;
|
|
|
|
GList *uuid;
|
|
|
|
|
|
|
|
dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY,
|
|
|
|
DBUS_TYPE_STRING_AS_STRING, &entry);
|
|
|
|
|
|
|
|
for (uuid = uuids; uuid; uuid = g_list_next(uuid->next))
|
|
|
|
dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING,
|
|
|
|
&uuid->data);
|
|
|
|
|
|
|
|
dbus_message_iter_close_container(iter, &entry);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const GDBusPropertyTable properties[] = {
|
|
|
|
{ "UUIDs", "as", get_uuids },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2017-11-17 17:35:12 +08:00
|
|
|
void gatt_register_app(DBusConnection *conn, GDBusProxy *proxy,
|
|
|
|
int argc, char *argv[])
|
2015-03-23 23:23:01 +08:00
|
|
|
{
|
|
|
|
GList *l;
|
2017-11-17 17:35:12 +08:00
|
|
|
int i;
|
2015-03-23 23:23:01 +08:00
|
|
|
|
|
|
|
l = g_list_find_custom(managers, proxy, match_proxy);
|
|
|
|
if (!l) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Unable to find GattManager proxy\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2015-03-23 23:23:01 +08:00
|
|
|
}
|
|
|
|
|
2017-11-17 17:35:12 +08:00
|
|
|
for (i = 0; i < argc; i++)
|
|
|
|
uuids = g_list_append(uuids, g_strdup(argv[i]));
|
2017-05-25 18:31:32 +08:00
|
|
|
|
2017-06-26 17:38:34 +08:00
|
|
|
if (uuids) {
|
|
|
|
if (g_dbus_register_interface(conn, APP_PATH,
|
|
|
|
PROFILE_INTERFACE, methods,
|
|
|
|
NULL, properties, NULL,
|
|
|
|
NULL) == FALSE) {
|
2018-03-01 17:11:17 +08:00
|
|
|
bt_shell_printf("Failed to register application"
|
|
|
|
" object\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-06-26 17:38:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-25 18:31:32 +08:00
|
|
|
if (g_dbus_proxy_method_call(l->data, "RegisterApplication",
|
|
|
|
register_app_setup,
|
2017-11-17 17:35:12 +08:00
|
|
|
register_app_reply, NULL,
|
2015-03-23 23:23:01 +08:00
|
|
|
NULL) == FALSE) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Failed register application\n");
|
2017-05-25 18:31:32 +08:00
|
|
|
g_dbus_unregister_interface(conn, APP_PATH, PROFILE_INTERFACE);
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2015-03-23 23:23:01 +08:00
|
|
|
}
|
|
|
|
}
|
2015-03-23 23:44:47 +08:00
|
|
|
|
2017-05-25 18:31:32 +08:00
|
|
|
static void unregister_app_reply(DBusMessage *message, void *user_data)
|
2015-03-23 23:44:47 +08:00
|
|
|
{
|
|
|
|
DBusConnection *conn = user_data;
|
|
|
|
DBusError error;
|
|
|
|
|
|
|
|
dbus_error_init(&error);
|
|
|
|
|
|
|
|
if (dbus_set_error_from_message(&error, message) == TRUE) {
|
2018-03-01 17:11:17 +08:00
|
|
|
bt_shell_printf("Failed to unregister application: %s\n",
|
|
|
|
error.name);
|
2015-03-23 23:44:47 +08:00
|
|
|
dbus_error_free(&error);
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2015-03-23 23:44:47 +08:00
|
|
|
}
|
|
|
|
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Application unregistered\n");
|
2017-06-26 17:38:34 +08:00
|
|
|
|
|
|
|
if (!uuids)
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
|
2017-06-26 17:38:34 +08:00
|
|
|
|
2017-05-25 18:31:32 +08:00
|
|
|
g_list_free_full(uuids, g_free);
|
|
|
|
uuids = NULL;
|
|
|
|
|
|
|
|
g_dbus_unregister_interface(conn, APP_PATH, PROFILE_INTERFACE);
|
2018-02-23 22:34:58 +08:00
|
|
|
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
|
2015-03-23 23:44:47 +08:00
|
|
|
}
|
|
|
|
|
2017-05-25 18:31:32 +08:00
|
|
|
static void unregister_app_setup(DBusMessageIter *iter, void *user_data)
|
2015-03-23 23:44:47 +08:00
|
|
|
{
|
2017-05-25 18:31:32 +08:00
|
|
|
const char *path = "/";
|
2015-03-23 23:44:47 +08:00
|
|
|
|
|
|
|
dbus_message_iter_append_basic(iter, DBUS_TYPE_OBJECT_PATH, &path);
|
|
|
|
}
|
|
|
|
|
2017-05-25 18:31:32 +08:00
|
|
|
void gatt_unregister_app(DBusConnection *conn, GDBusProxy *proxy)
|
2015-03-23 23:44:47 +08:00
|
|
|
{
|
|
|
|
GList *l;
|
|
|
|
|
|
|
|
l = g_list_find_custom(managers, proxy, match_proxy);
|
|
|
|
if (!l) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Unable to find GattManager proxy\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2015-03-23 23:44:47 +08:00
|
|
|
}
|
|
|
|
|
2017-05-25 18:31:32 +08:00
|
|
|
if (g_dbus_proxy_method_call(l->data, "UnregisterApplication",
|
|
|
|
unregister_app_setup,
|
|
|
|
unregister_app_reply, conn,
|
2015-03-23 23:44:47 +08:00
|
|
|
NULL) == FALSE) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Failed unregister profile\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2015-03-23 23:44:47 +08:00
|
|
|
}
|
|
|
|
}
|
2017-06-26 17:32:57 +08:00
|
|
|
|
2017-06-28 18:44:58 +08:00
|
|
|
static void desc_free(void *data)
|
|
|
|
{
|
|
|
|
struct desc *desc = data;
|
|
|
|
|
|
|
|
g_free(desc->path);
|
|
|
|
g_free(desc->uuid);
|
|
|
|
g_strfreev(desc->flags);
|
|
|
|
g_free(desc->value);
|
|
|
|
g_free(desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void desc_unregister(void *data)
|
|
|
|
{
|
|
|
|
struct desc *desc = data;
|
|
|
|
|
|
|
|
print_desc(desc, COLORED_DEL);
|
|
|
|
|
|
|
|
g_dbus_unregister_interface(desc->chrc->service->conn, desc->path,
|
|
|
|
DESC_INTERFACE);
|
|
|
|
}
|
|
|
|
|
2017-06-27 00:21:29 +08:00
|
|
|
static void chrc_free(void *data)
|
|
|
|
{
|
|
|
|
struct chrc *chrc = data;
|
|
|
|
|
2017-06-28 18:44:58 +08:00
|
|
|
g_list_free_full(chrc->descs, desc_unregister);
|
2017-06-27 00:21:29 +08:00
|
|
|
g_free(chrc->path);
|
|
|
|
g_free(chrc->uuid);
|
|
|
|
g_strfreev(chrc->flags);
|
|
|
|
g_free(chrc->value);
|
|
|
|
g_free(chrc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void chrc_unregister(void *data)
|
|
|
|
{
|
|
|
|
struct chrc *chrc = data;
|
|
|
|
|
|
|
|
print_chrc(chrc, COLORED_DEL);
|
|
|
|
|
|
|
|
g_dbus_unregister_interface(chrc->service->conn, chrc->path,
|
|
|
|
CHRC_INTERFACE);
|
|
|
|
}
|
|
|
|
|
2018-05-18 01:01:16 +08:00
|
|
|
static void inc_unregister(void *data)
|
|
|
|
{
|
|
|
|
char *path = data;
|
|
|
|
|
|
|
|
g_free(path);
|
|
|
|
}
|
|
|
|
|
2017-06-26 17:32:57 +08:00
|
|
|
static void service_free(void *data)
|
|
|
|
{
|
|
|
|
struct service *service = data;
|
|
|
|
|
2017-06-27 00:21:29 +08:00
|
|
|
g_list_free_full(service->chrcs, chrc_unregister);
|
2018-05-18 01:01:16 +08:00
|
|
|
g_list_free_full(service->inc, inc_unregister);
|
2017-06-26 17:32:57 +08:00
|
|
|
g_free(service->path);
|
|
|
|
g_free(service->uuid);
|
|
|
|
g_free(service);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean service_get_uuid(const GDBusPropertyTable *property,
|
|
|
|
DBusMessageIter *iter, void *data)
|
|
|
|
{
|
|
|
|
struct service *service = data;
|
|
|
|
|
|
|
|
dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &service->uuid);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean service_get_primary(const GDBusPropertyTable *property,
|
|
|
|
DBusMessageIter *iter, void *data)
|
|
|
|
{
|
|
|
|
struct service *service = data;
|
|
|
|
dbus_bool_t primary;
|
|
|
|
|
|
|
|
primary = service->primary ? TRUE : FALSE;
|
|
|
|
|
|
|
|
dbus_message_iter_append_basic(iter, DBUS_TYPE_BOOLEAN, &primary);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2018-05-18 01:01:16 +08:00
|
|
|
|
|
|
|
static gboolean service_get_includes(const GDBusPropertyTable *property,
|
|
|
|
DBusMessageIter *iter, void *data)
|
|
|
|
{
|
|
|
|
DBusMessageIter array;
|
|
|
|
struct service *service = data;
|
|
|
|
char *inc = NULL;
|
|
|
|
GList *l;
|
|
|
|
|
|
|
|
if (service->inc) {
|
|
|
|
for (l = service->inc ; l; l = g_list_next(l)) {
|
|
|
|
|
|
|
|
inc = l->data;
|
|
|
|
dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY,
|
|
|
|
DBUS_TYPE_OBJECT_PATH_AS_STRING, &array);
|
|
|
|
|
|
|
|
dbus_message_iter_append_basic(&array,
|
|
|
|
DBUS_TYPE_OBJECT_PATH, &inc);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
dbus_message_iter_close_container(iter, &array);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean service_exist_includes(const GDBusPropertyTable *property,
|
|
|
|
void *data)
|
|
|
|
{
|
|
|
|
struct service *service = data;
|
|
|
|
|
|
|
|
if (service->inc)
|
|
|
|
return TRUE;
|
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-26 17:32:57 +08:00
|
|
|
static const GDBusPropertyTable service_properties[] = {
|
|
|
|
{ "UUID", "s", service_get_uuid },
|
|
|
|
{ "Primary", "b", service_get_primary },
|
2018-05-18 01:01:16 +08:00
|
|
|
{ "Includes", "ao", service_get_includes,
|
|
|
|
NULL, service_exist_includes },
|
2017-06-26 17:32:57 +08:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
static void service_set_primary(const char *input, void *user_data)
|
|
|
|
{
|
|
|
|
struct service *service = user_data;
|
|
|
|
|
|
|
|
if (!strcmp(input, "yes"))
|
|
|
|
service->primary = true;
|
|
|
|
else if (!strcmp(input, "no")) {
|
|
|
|
service->primary = false;
|
|
|
|
} else {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Invalid option: %s\n", input);
|
2017-06-26 17:32:57 +08:00
|
|
|
local_services = g_list_remove(local_services, service);
|
|
|
|
print_service(service, COLORED_DEL);
|
|
|
|
g_dbus_unregister_interface(service->conn, service->path,
|
|
|
|
SERVICE_INTERFACE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void gatt_register_service(DBusConnection *conn, GDBusProxy *proxy,
|
2017-11-17 17:35:12 +08:00
|
|
|
int argc, char *argv[])
|
2017-06-26 17:32:57 +08:00
|
|
|
{
|
|
|
|
struct service *service;
|
|
|
|
bool primary = true;
|
|
|
|
|
|
|
|
service = g_new0(struct service, 1);
|
|
|
|
service->conn = conn;
|
2017-12-08 18:52:48 +08:00
|
|
|
service->uuid = g_strdup(argv[1]);
|
2017-06-26 17:32:57 +08:00
|
|
|
service->path = g_strdup_printf("%s/service%p", APP_PATH, service);
|
|
|
|
service->primary = primary;
|
|
|
|
|
|
|
|
if (g_dbus_register_interface(conn, service->path,
|
|
|
|
SERVICE_INTERFACE, NULL, NULL,
|
|
|
|
service_properties, service,
|
|
|
|
service_free) == FALSE) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Failed to register service object\n");
|
2017-06-26 17:32:57 +08:00
|
|
|
service_free(service);
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-06-26 17:32:57 +08:00
|
|
|
}
|
|
|
|
|
2017-06-26 18:08:06 +08:00
|
|
|
print_service(service, COLORED_NEW);
|
2017-06-26 17:32:57 +08:00
|
|
|
|
|
|
|
local_services = g_list_append(local_services, service);
|
|
|
|
|
2018-05-18 01:01:16 +08:00
|
|
|
bt_shell_prompt_input(service->path, "Primary (yes/no):",
|
|
|
|
service_set_primary, service);
|
2018-02-23 22:34:58 +08:00
|
|
|
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
|
2017-06-26 17:32:57 +08:00
|
|
|
}
|
2017-06-26 18:08:06 +08:00
|
|
|
|
|
|
|
static struct service *service_find(const char *pattern)
|
|
|
|
{
|
|
|
|
GList *l;
|
|
|
|
|
|
|
|
for (l = local_services; l; l = g_list_next(l)) {
|
|
|
|
struct service *service = l->data;
|
|
|
|
|
|
|
|
/* match object path */
|
|
|
|
if (!strcmp(service->path, pattern))
|
|
|
|
return service;
|
|
|
|
|
|
|
|
/* match UUID */
|
|
|
|
if (!strcmp(service->uuid, pattern))
|
|
|
|
return service;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void gatt_unregister_service(DBusConnection *conn, GDBusProxy *proxy,
|
2017-11-17 17:35:12 +08:00
|
|
|
int argc, char *argv[])
|
2017-06-26 18:08:06 +08:00
|
|
|
{
|
|
|
|
struct service *service;
|
|
|
|
|
2017-12-08 18:52:48 +08:00
|
|
|
service = service_find(argv[1]);
|
2017-06-26 18:08:06 +08:00
|
|
|
if (!service) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Failed to unregister service object\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-06-26 18:08:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
local_services = g_list_remove(local_services, service);
|
|
|
|
|
|
|
|
print_service(service, COLORED_DEL);
|
|
|
|
|
|
|
|
g_dbus_unregister_interface(service->conn, service->path,
|
|
|
|
SERVICE_INTERFACE);
|
2018-02-23 22:34:58 +08:00
|
|
|
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
|
2017-06-26 18:08:06 +08:00
|
|
|
}
|
2017-06-27 00:21:29 +08:00
|
|
|
|
2018-05-18 01:01:16 +08:00
|
|
|
static char *inc_find(struct service *serv, char *path)
|
|
|
|
{
|
|
|
|
GList *lc;
|
|
|
|
|
|
|
|
for (lc = serv->inc; lc; lc = g_list_next(lc)) {
|
|
|
|
char *incp = lc->data;
|
|
|
|
/* match object path */
|
|
|
|
if (!strcmp(incp, path))
|
|
|
|
return incp;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void gatt_register_include(DBusConnection *conn, GDBusProxy *proxy,
|
|
|
|
int argc, char *argv[])
|
|
|
|
{
|
|
|
|
struct service *service, *inc_service;
|
|
|
|
char *inc_path;
|
|
|
|
|
|
|
|
if (!local_services) {
|
|
|
|
bt_shell_printf("No service registered\n");
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
service = g_list_last(local_services)->data;
|
|
|
|
|
|
|
|
|
|
|
|
inc_service = service_find(argv[1]);
|
|
|
|
if (!inc_service) {
|
|
|
|
bt_shell_printf("Failed to find service object\n");
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
inc_path = g_strdup(service->path);
|
|
|
|
|
|
|
|
inc_service->inc = g_list_append(inc_service->inc, inc_path);
|
|
|
|
|
|
|
|
print_service(inc_service, COLORED_NEW);
|
|
|
|
print_inc_service(service, COLORED_NEW);
|
|
|
|
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
void gatt_unregister_include(DBusConnection *conn, GDBusProxy *proxy,
|
|
|
|
int argc, char *argv[])
|
|
|
|
{
|
|
|
|
struct service *ser_inc, *service;
|
|
|
|
char *path = NULL;
|
|
|
|
|
|
|
|
service = service_find(argv[1]);
|
|
|
|
if (!service) {
|
|
|
|
bt_shell_printf("Failed to unregister include service"
|
|
|
|
" object\n");
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
ser_inc = service_find(argv[2]);
|
|
|
|
if (!ser_inc) {
|
|
|
|
bt_shell_printf("Failed to find include service object\n");
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
path = inc_find(service, ser_inc->path);
|
|
|
|
if (path) {
|
|
|
|
service->inc = g_list_remove(service->inc, path);
|
|
|
|
inc_unregister(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
2017-06-27 00:21:29 +08:00
|
|
|
static gboolean chrc_get_uuid(const GDBusPropertyTable *property,
|
|
|
|
DBusMessageIter *iter, void *data)
|
|
|
|
{
|
|
|
|
struct chrc *chrc = data;
|
|
|
|
|
|
|
|
dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &chrc->uuid);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean chrc_get_service(const GDBusPropertyTable *property,
|
|
|
|
DBusMessageIter *iter, void *data)
|
|
|
|
{
|
|
|
|
struct chrc *chrc = data;
|
|
|
|
|
|
|
|
dbus_message_iter_append_basic(iter, DBUS_TYPE_OBJECT_PATH,
|
|
|
|
&chrc->service->path);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean chrc_get_value(const GDBusPropertyTable *property,
|
|
|
|
DBusMessageIter *iter, void *data)
|
|
|
|
{
|
|
|
|
struct chrc *chrc = data;
|
|
|
|
DBusMessageIter array;
|
|
|
|
|
|
|
|
dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY, "y", &array);
|
|
|
|
|
|
|
|
dbus_message_iter_append_fixed_array(&array, DBUS_TYPE_BYTE,
|
|
|
|
&chrc->value, chrc->value_len);
|
|
|
|
|
|
|
|
dbus_message_iter_close_container(iter, &array);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean chrc_get_notifying(const GDBusPropertyTable *property,
|
|
|
|
DBusMessageIter *iter, void *data)
|
|
|
|
{
|
|
|
|
struct chrc *chrc = data;
|
|
|
|
dbus_bool_t value;
|
|
|
|
|
|
|
|
value = chrc->notifying ? TRUE : FALSE;
|
|
|
|
|
|
|
|
dbus_message_iter_append_basic(iter, DBUS_TYPE_BOOLEAN, &value);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean chrc_get_flags(const GDBusPropertyTable *property,
|
|
|
|
DBusMessageIter *iter, void *data)
|
|
|
|
{
|
|
|
|
struct chrc *chrc = data;
|
|
|
|
int i;
|
|
|
|
DBusMessageIter array;
|
|
|
|
|
|
|
|
dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY, "s", &array);
|
|
|
|
|
|
|
|
for (i = 0; chrc->flags[i]; i++)
|
|
|
|
dbus_message_iter_append_basic(&array, DBUS_TYPE_STRING,
|
|
|
|
&chrc->flags[i]);
|
|
|
|
|
|
|
|
dbus_message_iter_close_container(iter, &array);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2017-09-11 19:42:04 +08:00
|
|
|
static gboolean chrc_get_write_acquired(const GDBusPropertyTable *property,
|
|
|
|
DBusMessageIter *iter, void *data)
|
|
|
|
{
|
|
|
|
struct chrc *chrc = data;
|
|
|
|
dbus_bool_t value;
|
|
|
|
|
|
|
|
value = chrc->write_io ? TRUE : FALSE;
|
|
|
|
|
|
|
|
dbus_message_iter_append_basic(iter, DBUS_TYPE_BOOLEAN, &value);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean chrc_write_acquired_exists(const GDBusPropertyTable *property,
|
|
|
|
void *data)
|
|
|
|
{
|
|
|
|
struct chrc *chrc = data;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; chrc->flags[i]; i++) {
|
|
|
|
if (!strcmp("write-without-response", chrc->flags[i]))
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2017-09-18 19:45:13 +08:00
|
|
|
static gboolean chrc_get_notify_acquired(const GDBusPropertyTable *property,
|
|
|
|
DBusMessageIter *iter, void *data)
|
|
|
|
{
|
|
|
|
struct chrc *chrc = data;
|
|
|
|
dbus_bool_t value;
|
|
|
|
|
|
|
|
value = chrc->notify_io ? TRUE : FALSE;
|
|
|
|
|
|
|
|
dbus_message_iter_append_basic(iter, DBUS_TYPE_BOOLEAN, &value);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean chrc_notify_acquired_exists(const GDBusPropertyTable *property,
|
|
|
|
void *data)
|
|
|
|
{
|
|
|
|
struct chrc *chrc = data;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; chrc->flags[i]; i++) {
|
|
|
|
if (!strcmp("notify", chrc->flags[i]))
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2017-06-27 00:21:29 +08:00
|
|
|
static const GDBusPropertyTable chrc_properties[] = {
|
|
|
|
{ "UUID", "s", chrc_get_uuid, NULL, NULL },
|
|
|
|
{ "Service", "o", chrc_get_service, NULL, NULL },
|
|
|
|
{ "Value", "ay", chrc_get_value, NULL, NULL },
|
|
|
|
{ "Notifying", "b", chrc_get_notifying, NULL, NULL },
|
|
|
|
{ "Flags", "as", chrc_get_flags, NULL, NULL },
|
2017-09-11 19:42:04 +08:00
|
|
|
{ "WriteAcquired", "b", chrc_get_write_acquired, NULL,
|
|
|
|
chrc_write_acquired_exists },
|
2017-09-18 19:45:13 +08:00
|
|
|
{ "NotifyAcquired", "b", chrc_get_notify_acquired, NULL,
|
|
|
|
chrc_notify_acquired_exists },
|
2017-06-27 00:21:29 +08:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2018-03-26 20:43:06 +08:00
|
|
|
static const char *path_to_address(const char *path)
|
|
|
|
{
|
|
|
|
GDBusProxy *proxy;
|
|
|
|
DBusMessageIter iter;
|
|
|
|
const char *address = path;
|
|
|
|
|
|
|
|
proxy = bt_shell_get_env(path);
|
|
|
|
|
|
|
|
if (g_dbus_proxy_get_property(proxy, "Address", &iter))
|
|
|
|
dbus_message_iter_get_basic(&iter, &address);
|
|
|
|
|
|
|
|
return address;
|
|
|
|
}
|
|
|
|
|
2018-03-23 21:32:12 +08:00
|
|
|
static int parse_options(DBusMessageIter *iter, uint16_t *offset, uint16_t *mtu,
|
|
|
|
char **device, char **link)
|
2018-03-20 22:05:16 +08:00
|
|
|
{
|
|
|
|
DBusMessageIter dict;
|
|
|
|
|
|
|
|
if (dbus_message_iter_get_arg_type(iter) != DBUS_TYPE_ARRAY)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
dbus_message_iter_recurse(iter, &dict);
|
|
|
|
|
|
|
|
while (dbus_message_iter_get_arg_type(&dict) == DBUS_TYPE_DICT_ENTRY) {
|
|
|
|
const char *key;
|
|
|
|
DBusMessageIter value, entry;
|
|
|
|
int var;
|
|
|
|
|
|
|
|
dbus_message_iter_recurse(&dict, &entry);
|
|
|
|
dbus_message_iter_get_basic(&entry, &key);
|
|
|
|
|
|
|
|
dbus_message_iter_next(&entry);
|
|
|
|
dbus_message_iter_recurse(&entry, &value);
|
|
|
|
|
|
|
|
var = dbus_message_iter_get_arg_type(&value);
|
|
|
|
if (strcasecmp(key, "offset") == 0) {
|
|
|
|
if (var != DBUS_TYPE_UINT16)
|
|
|
|
return -EINVAL;
|
2018-03-23 21:32:12 +08:00
|
|
|
if (offset)
|
|
|
|
dbus_message_iter_get_basic(&value, offset);
|
|
|
|
} else if (strcasecmp(key, "MTU") == 0) {
|
|
|
|
if (var != DBUS_TYPE_UINT16)
|
|
|
|
return -EINVAL;
|
|
|
|
if (mtu)
|
|
|
|
dbus_message_iter_get_basic(&value, mtu);
|
|
|
|
} else if (strcasecmp(key, "device") == 0) {
|
|
|
|
if (var != DBUS_TYPE_OBJECT_PATH)
|
|
|
|
return -EINVAL;
|
|
|
|
if (device)
|
|
|
|
dbus_message_iter_get_basic(&value, device);
|
|
|
|
} else if (strcasecmp(key, "link") == 0) {
|
|
|
|
if (var != DBUS_TYPE_STRING)
|
|
|
|
return -EINVAL;
|
|
|
|
if (link)
|
|
|
|
dbus_message_iter_get_basic(&value, link);
|
2018-03-20 22:05:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dbus_message_iter_next(&dict);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-06-27 00:21:29 +08:00
|
|
|
static DBusMessage *read_value(DBusMessage *msg, uint8_t *value,
|
|
|
|
uint16_t value_len)
|
|
|
|
{
|
|
|
|
DBusMessage *reply;
|
|
|
|
DBusMessageIter iter, array;
|
|
|
|
|
|
|
|
reply = g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
|
|
|
|
|
|
|
|
dbus_message_iter_init_append(reply, &iter);
|
|
|
|
dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY, "y", &array);
|
|
|
|
dbus_message_iter_append_fixed_array(&array, DBUS_TYPE_BYTE,
|
|
|
|
&value, value_len);
|
|
|
|
dbus_message_iter_close_container(&iter, &array);
|
|
|
|
|
|
|
|
return reply;
|
|
|
|
}
|
|
|
|
|
2018-03-20 22:05:19 +08:00
|
|
|
struct authorize_attribute_data {
|
|
|
|
DBusConnection *conn;
|
|
|
|
void *attribute;
|
|
|
|
uint16_t offset;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void authorize_read_response(const char *input, void *user_data)
|
|
|
|
{
|
|
|
|
struct authorize_attribute_data *aad = user_data;
|
|
|
|
struct chrc *chrc = aad->attribute;
|
|
|
|
DBusMessage *reply;
|
|
|
|
char *err;
|
|
|
|
|
|
|
|
if (!strcmp(input, "no")) {
|
|
|
|
err = "org.bluez.Error.NotAuthorized";
|
|
|
|
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aad->offset > chrc->value_len) {
|
|
|
|
err = "org.bluez.Error.InvalidOffset";
|
|
|
|
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
reply = read_value(pending_message, &chrc->value[aad->offset],
|
|
|
|
chrc->value_len - aad->offset);
|
|
|
|
|
|
|
|
chrc->authorized = true;
|
|
|
|
|
|
|
|
g_dbus_send_message(aad->conn, reply);
|
|
|
|
|
|
|
|
g_free(aad);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
error:
|
|
|
|
g_dbus_send_error(aad->conn, pending_message, err, NULL);
|
|
|
|
g_free(aad);
|
|
|
|
}
|
|
|
|
|
2017-06-27 00:21:29 +08:00
|
|
|
static DBusMessage *chrc_read_value(DBusConnection *conn, DBusMessage *msg,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct chrc *chrc = user_data;
|
2018-03-20 22:05:16 +08:00
|
|
|
DBusMessageIter iter;
|
|
|
|
uint16_t offset = 0;
|
2018-03-23 21:32:12 +08:00
|
|
|
char *device, *link;
|
2018-03-20 22:05:19 +08:00
|
|
|
char *str;
|
2018-03-20 22:05:16 +08:00
|
|
|
|
|
|
|
dbus_message_iter_init(msg, &iter);
|
|
|
|
|
2018-03-23 21:32:12 +08:00
|
|
|
if (parse_options(&iter, &offset, NULL, &device, &link))
|
|
|
|
return g_dbus_create_error(msg,
|
|
|
|
"org.bluez.Error.InvalidArguments",
|
|
|
|
NULL);
|
|
|
|
|
2018-03-26 20:43:06 +08:00
|
|
|
bt_shell_printf("ReadValue: %s offset %u link %s\n",
|
|
|
|
path_to_address(device), offset, link);
|
2017-06-27 00:21:29 +08:00
|
|
|
|
2018-03-20 22:05:19 +08:00
|
|
|
if (chrc->authorization_req && offset == 0)
|
|
|
|
chrc->authorized = false;
|
|
|
|
|
|
|
|
if (chrc->authorization_req && !chrc->authorized) {
|
|
|
|
struct authorize_attribute_data *aad;
|
|
|
|
|
|
|
|
aad = g_new0(struct authorize_attribute_data, 1);
|
|
|
|
aad->conn = conn;
|
|
|
|
aad->attribute = chrc;
|
|
|
|
aad->offset = offset;
|
|
|
|
|
|
|
|
str = g_strdup_printf("Authorize attribute(%s) read (yes/no):",
|
|
|
|
chrc->path);
|
|
|
|
|
|
|
|
bt_shell_prompt_input("gatt", str, authorize_read_response,
|
|
|
|
aad);
|
2018-05-16 21:52:26 +08:00
|
|
|
g_free(str);
|
2018-03-20 22:05:19 +08:00
|
|
|
|
|
|
|
pending_message = dbus_message_ref(msg);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-03-20 22:05:18 +08:00
|
|
|
if (offset > chrc->value_len)
|
|
|
|
return g_dbus_create_error(msg, "org.bluez.Error.InvalidOffset",
|
|
|
|
NULL);
|
|
|
|
|
2018-03-20 22:05:16 +08:00
|
|
|
return read_value(msg, &chrc->value[offset], chrc->value_len - offset);
|
2017-06-27 00:21:29 +08:00
|
|
|
}
|
|
|
|
|
2018-05-16 21:52:27 +08:00
|
|
|
static int parse_value_arg(DBusMessageIter *iter, uint8_t **value, int *len,
|
|
|
|
int max_len)
|
2017-06-27 00:21:29 +08:00
|
|
|
{
|
|
|
|
DBusMessageIter array;
|
2018-04-26 20:31:58 +08:00
|
|
|
uint16_t offset = 0;
|
|
|
|
uint8_t *read_value;
|
|
|
|
int read_len;
|
2017-06-27 00:21:29 +08:00
|
|
|
|
|
|
|
if (dbus_message_iter_get_arg_type(iter) != DBUS_TYPE_ARRAY)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
dbus_message_iter_recurse(iter, &array);
|
2018-04-26 20:31:58 +08:00
|
|
|
dbus_message_iter_get_fixed_array(&array, &read_value, &read_len);
|
|
|
|
|
|
|
|
dbus_message_iter_next(iter);
|
|
|
|
if (parse_options(iter, &offset, NULL, NULL, NULL))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2018-05-16 21:52:27 +08:00
|
|
|
if ((offset + read_len) > max_len)
|
|
|
|
return -EOVERFLOW;
|
|
|
|
|
2018-04-26 20:31:58 +08:00
|
|
|
if ((offset + read_len) > *len) {
|
|
|
|
*len = offset + read_len;
|
|
|
|
*value = g_realloc(*value, *len);
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(*value + offset, read_value, read_len);
|
2017-06-27 00:21:29 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-20 22:05:19 +08:00
|
|
|
static void authorize_write_response(const char *input, void *user_data)
|
|
|
|
{
|
|
|
|
struct authorize_attribute_data *aad = user_data;
|
|
|
|
struct chrc *chrc = aad->attribute;
|
|
|
|
DBusMessageIter iter;
|
|
|
|
DBusMessage *reply;
|
|
|
|
char *err;
|
2018-05-16 21:52:27 +08:00
|
|
|
int errsv;
|
2018-03-20 22:05:19 +08:00
|
|
|
|
|
|
|
dbus_message_iter_init(pending_message, &iter);
|
|
|
|
|
|
|
|
if (!strcmp(input, "no")) {
|
|
|
|
err = "org.bluez.Error.NotAuthorized";
|
|
|
|
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
chrc->authorized = true;
|
|
|
|
|
2018-05-16 21:52:27 +08:00
|
|
|
errsv = parse_value_arg(&iter, &chrc->value, &chrc->value_len,
|
|
|
|
chrc->max_val_len);
|
|
|
|
if (errsv == -EINVAL) {
|
2018-03-20 22:05:19 +08:00
|
|
|
err = "org.bluez.Error.InvalidArguments";
|
|
|
|
|
2018-05-16 21:52:27 +08:00
|
|
|
goto error;
|
|
|
|
} else if (errsv == -EOVERFLOW) {
|
|
|
|
err = "org.bluez.Error.InvalidValueLength";
|
|
|
|
|
2018-03-20 22:05:19 +08:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
bt_shell_printf("[" COLORED_CHG "] Attribute %s written" , chrc->path);
|
|
|
|
|
|
|
|
g_dbus_emit_property_changed(aad->conn, chrc->path, CHRC_INTERFACE,
|
|
|
|
"Value");
|
|
|
|
|
|
|
|
reply = g_dbus_create_reply(pending_message, DBUS_TYPE_INVALID);
|
|
|
|
g_dbus_send_message(aad->conn, reply);
|
|
|
|
|
|
|
|
g_free(aad);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
error:
|
|
|
|
g_dbus_send_error(aad->conn, pending_message, err, NULL);
|
|
|
|
g_free(aad);
|
|
|
|
}
|
|
|
|
|
2017-06-27 00:21:29 +08:00
|
|
|
static DBusMessage *chrc_write_value(DBusConnection *conn, DBusMessage *msg,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct chrc *chrc = user_data;
|
|
|
|
DBusMessageIter iter;
|
2018-03-20 22:05:19 +08:00
|
|
|
char *str;
|
2018-05-16 21:52:27 +08:00
|
|
|
int errsv;
|
2017-06-27 00:21:29 +08:00
|
|
|
|
|
|
|
dbus_message_iter_init(msg, &iter);
|
|
|
|
|
2018-03-20 22:05:19 +08:00
|
|
|
if (chrc->authorization_req && !chrc->authorized) {
|
|
|
|
struct authorize_attribute_data *aad;
|
|
|
|
|
|
|
|
aad = g_new0(struct authorize_attribute_data, 1);
|
|
|
|
aad->conn = conn;
|
|
|
|
aad->attribute = chrc;
|
|
|
|
|
|
|
|
str = g_strdup_printf("Authorize attribute(%s) write (yes/no):",
|
|
|
|
chrc->path);
|
|
|
|
|
|
|
|
bt_shell_prompt_input("gatt", str, authorize_write_response,
|
|
|
|
aad);
|
2018-05-16 21:52:26 +08:00
|
|
|
g_free(str);
|
2018-03-20 22:05:19 +08:00
|
|
|
|
|
|
|
pending_message = dbus_message_ref(msg);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-05-16 21:52:27 +08:00
|
|
|
errsv = parse_value_arg(&iter, &chrc->value, &chrc->value_len,
|
|
|
|
chrc->max_val_len);
|
|
|
|
if (errsv == -EINVAL) {
|
2017-06-27 00:21:29 +08:00
|
|
|
return g_dbus_create_error(msg,
|
2018-05-16 21:52:27 +08:00
|
|
|
"org.bluez.Error.InvalidArguments", NULL);
|
|
|
|
} else if (errsv == -EOVERFLOW) {
|
|
|
|
return g_dbus_create_error(msg,
|
|
|
|
"org.bluez.Error.InvalidValueLength", NULL);
|
|
|
|
}
|
2017-06-27 00:21:29 +08:00
|
|
|
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("[" COLORED_CHG "] Attribute %s written" , chrc->path);
|
2017-06-27 00:21:29 +08:00
|
|
|
|
|
|
|
g_dbus_emit_property_changed(conn, chrc->path, CHRC_INTERFACE, "Value");
|
|
|
|
|
|
|
|
return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
|
|
|
|
}
|
|
|
|
|
2017-09-11 19:42:04 +08:00
|
|
|
static DBusMessage *chrc_create_pipe(struct chrc *chrc, DBusMessage *msg)
|
|
|
|
{
|
|
|
|
int pipefd[2];
|
|
|
|
struct io *io;
|
|
|
|
bool dir;
|
|
|
|
DBusMessage *reply;
|
|
|
|
|
|
|
|
if (pipe2(pipefd, O_DIRECT | O_NONBLOCK | O_CLOEXEC) < 0)
|
|
|
|
return g_dbus_create_error(msg, "org.bluez.Error.Failed", "%s",
|
|
|
|
strerror(errno));
|
|
|
|
|
|
|
|
dir = dbus_message_has_member(msg, "AcquireWrite");
|
|
|
|
|
|
|
|
io = pipe_io_new(pipefd[!dir], chrc);
|
|
|
|
if (!io) {
|
|
|
|
close(pipefd[0]);
|
|
|
|
close(pipefd[1]);
|
|
|
|
return g_dbus_create_error(msg, "org.bluez.Error.Failed", "%s",
|
|
|
|
strerror(errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
reply = g_dbus_create_reply(msg, DBUS_TYPE_UNIX_FD, &pipefd[dir],
|
|
|
|
DBUS_TYPE_UINT16, &chrc->mtu,
|
|
|
|
DBUS_TYPE_INVALID);
|
|
|
|
|
|
|
|
close(pipefd[dir]);
|
|
|
|
|
2017-09-18 19:45:13 +08:00
|
|
|
if (dir)
|
|
|
|
chrc->write_io = io;
|
|
|
|
else
|
|
|
|
chrc->notify_io = io;
|
2017-09-11 19:42:04 +08:00
|
|
|
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("[" COLORED_CHG "] Attribute %s %s pipe acquired\n",
|
2017-09-18 19:45:13 +08:00
|
|
|
chrc->path, dir ? "Write" : "Notify");
|
2017-09-11 19:42:04 +08:00
|
|
|
|
|
|
|
return reply;
|
|
|
|
}
|
|
|
|
|
|
|
|
static DBusMessage *chrc_acquire_write(DBusConnection *conn, DBusMessage *msg,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct chrc *chrc = user_data;
|
|
|
|
DBusMessageIter iter;
|
|
|
|
DBusMessage *reply;
|
2018-03-23 21:32:12 +08:00
|
|
|
char *device = NULL, *link= NULL;
|
2017-09-11 19:42:04 +08:00
|
|
|
|
|
|
|
dbus_message_iter_init(msg, &iter);
|
|
|
|
|
|
|
|
if (chrc->write_io)
|
|
|
|
return g_dbus_create_error(msg,
|
|
|
|
"org.bluez.Error.NotPermitted",
|
|
|
|
NULL);
|
|
|
|
|
2018-03-23 21:32:12 +08:00
|
|
|
if (parse_options(&iter, NULL, &chrc->mtu, &device, &link))
|
2017-09-11 19:42:04 +08:00
|
|
|
return g_dbus_create_error(msg,
|
|
|
|
"org.bluez.Error.InvalidArguments",
|
|
|
|
NULL);
|
|
|
|
|
2018-03-26 20:43:06 +08:00
|
|
|
bt_shell_printf("AcquireWrite: %s link %s\n", path_to_address(device),
|
|
|
|
link);
|
2018-03-23 21:32:12 +08:00
|
|
|
|
2017-09-11 19:42:04 +08:00
|
|
|
reply = chrc_create_pipe(chrc, msg);
|
|
|
|
|
|
|
|
if (chrc->write_io)
|
|
|
|
g_dbus_emit_property_changed(conn, chrc->path, CHRC_INTERFACE,
|
|
|
|
"WriteAcquired");
|
|
|
|
|
|
|
|
return reply;
|
|
|
|
}
|
|
|
|
|
2017-09-18 19:45:13 +08:00
|
|
|
static DBusMessage *chrc_acquire_notify(DBusConnection *conn, DBusMessage *msg,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct chrc *chrc = user_data;
|
|
|
|
DBusMessageIter iter;
|
|
|
|
DBusMessage *reply;
|
2018-03-23 21:32:12 +08:00
|
|
|
char *device = NULL, *link = NULL;
|
2017-09-18 19:45:13 +08:00
|
|
|
|
|
|
|
dbus_message_iter_init(msg, &iter);
|
|
|
|
|
|
|
|
if (chrc->notify_io)
|
|
|
|
return g_dbus_create_error(msg,
|
|
|
|
"org.bluez.Error.NotPermitted",
|
|
|
|
NULL);
|
|
|
|
|
2018-03-23 21:32:12 +08:00
|
|
|
if (parse_options(&iter, NULL, &chrc->mtu, &device, &link))
|
2017-09-18 19:45:13 +08:00
|
|
|
return g_dbus_create_error(msg,
|
|
|
|
"org.bluez.Error.InvalidArguments",
|
|
|
|
NULL);
|
|
|
|
|
2018-03-26 20:43:06 +08:00
|
|
|
bt_shell_printf("AcquireNotify: %s link %s\n", path_to_address(device),
|
|
|
|
link);
|
2018-03-23 21:32:12 +08:00
|
|
|
|
2017-09-18 19:45:13 +08:00
|
|
|
reply = chrc_create_pipe(chrc, msg);
|
|
|
|
|
|
|
|
if (chrc->notify_io)
|
|
|
|
g_dbus_emit_property_changed(conn, chrc->path, CHRC_INTERFACE,
|
|
|
|
"NotifyAcquired");
|
|
|
|
|
|
|
|
return reply;
|
|
|
|
}
|
|
|
|
|
2017-06-27 00:21:29 +08:00
|
|
|
static DBusMessage *chrc_start_notify(DBusConnection *conn, DBusMessage *msg,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct chrc *chrc = user_data;
|
|
|
|
|
|
|
|
if (!chrc->notifying)
|
|
|
|
return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
|
|
|
|
|
|
|
|
chrc->notifying = true;
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("[" COLORED_CHG "] Attribute %s notifications enabled",
|
2017-06-27 00:21:29 +08:00
|
|
|
chrc->path);
|
|
|
|
g_dbus_emit_property_changed(conn, chrc->path, CHRC_INTERFACE,
|
|
|
|
"Notifying");
|
|
|
|
|
|
|
|
return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
|
|
|
|
}
|
|
|
|
|
|
|
|
static DBusMessage *chrc_stop_notify(DBusConnection *conn, DBusMessage *msg,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct chrc *chrc = user_data;
|
|
|
|
|
|
|
|
if (chrc->notifying)
|
|
|
|
return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
|
|
|
|
|
|
|
|
chrc->notifying = false;
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("[" COLORED_CHG "] Attribute %s notifications disabled",
|
2017-06-27 00:21:29 +08:00
|
|
|
chrc->path);
|
|
|
|
g_dbus_emit_property_changed(conn, chrc->path, CHRC_INTERFACE,
|
|
|
|
"Notifying");
|
|
|
|
|
|
|
|
return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
|
|
|
|
}
|
|
|
|
|
2017-08-29 15:35:20 +08:00
|
|
|
static DBusMessage *chrc_confirm(DBusConnection *conn, DBusMessage *msg,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct chrc *chrc = user_data;
|
|
|
|
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Attribute %s indication confirm received", chrc->path);
|
2017-08-29 15:35:20 +08:00
|
|
|
|
|
|
|
return dbus_message_new_method_return(msg);
|
|
|
|
}
|
|
|
|
|
2017-06-27 00:21:29 +08:00
|
|
|
static const GDBusMethodTable chrc_methods[] = {
|
|
|
|
{ GDBUS_ASYNC_METHOD("ReadValue", GDBUS_ARGS({ "options", "a{sv}" }),
|
|
|
|
GDBUS_ARGS({ "value", "ay" }),
|
|
|
|
chrc_read_value) },
|
|
|
|
{ GDBUS_ASYNC_METHOD("WriteValue", GDBUS_ARGS({ "value", "ay" },
|
|
|
|
{ "options", "a{sv}" }),
|
|
|
|
NULL, chrc_write_value) },
|
2017-09-11 19:42:04 +08:00
|
|
|
{ GDBUS_METHOD("AcquireWrite", GDBUS_ARGS({ "options", "a{sv}" }),
|
|
|
|
NULL, chrc_acquire_write) },
|
2017-09-18 19:45:13 +08:00
|
|
|
{ GDBUS_METHOD("AcquireNotify", GDBUS_ARGS({ "options", "a{sv}" }),
|
|
|
|
NULL, chrc_acquire_notify) },
|
2017-06-27 00:21:29 +08:00
|
|
|
{ GDBUS_ASYNC_METHOD("StartNotify", NULL, NULL, chrc_start_notify) },
|
|
|
|
{ GDBUS_METHOD("StopNotify", NULL, NULL, chrc_stop_notify) },
|
2017-08-29 15:35:20 +08:00
|
|
|
{ GDBUS_METHOD("Confirm", NULL, NULL, chrc_confirm) },
|
2017-06-27 00:21:29 +08:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2017-06-28 18:44:58 +08:00
|
|
|
static uint8_t *str2bytearray(char *arg, int *val_len)
|
2017-06-27 00:21:29 +08:00
|
|
|
{
|
2018-05-16 21:52:27 +08:00
|
|
|
uint8_t value[MAX_ATTR_VAL_LEN];
|
2017-06-27 00:21:29 +08:00
|
|
|
char *entry;
|
|
|
|
unsigned int i;
|
|
|
|
|
2017-06-28 18:44:58 +08:00
|
|
|
for (i = 0; (entry = strsep(&arg, " \t")) != NULL; i++) {
|
2017-06-27 00:21:29 +08:00
|
|
|
long int val;
|
|
|
|
char *endptr = NULL;
|
|
|
|
|
|
|
|
if (*entry == '\0')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (i >= G_N_ELEMENTS(value)) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Too much data\n");
|
2017-06-28 18:44:58 +08:00
|
|
|
return NULL;
|
2017-06-27 00:21:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
val = strtol(entry, &endptr, 0);
|
|
|
|
if (!endptr || *endptr != '\0' || val > UINT8_MAX) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Invalid value at index %d\n", i);
|
2017-06-28 18:44:58 +08:00
|
|
|
return NULL;
|
2017-06-27 00:21:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
value[i] = val;
|
|
|
|
}
|
|
|
|
|
2017-06-28 18:44:58 +08:00
|
|
|
*val_len = i;
|
|
|
|
|
|
|
|
return g_memdup(value, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void chrc_set_value(const char *input, void *user_data)
|
|
|
|
{
|
|
|
|
struct chrc *chrc = user_data;
|
|
|
|
|
|
|
|
g_free(chrc->value);
|
|
|
|
|
|
|
|
chrc->value = str2bytearray((char *) input, &chrc->value_len);
|
2018-05-16 21:52:27 +08:00
|
|
|
|
|
|
|
if (!chrc->value) {
|
|
|
|
print_chrc(chrc, COLORED_DEL);
|
|
|
|
chrc_unregister(chrc);
|
|
|
|
}
|
|
|
|
|
|
|
|
chrc->max_val_len = chrc->value_len;
|
2017-06-27 00:21:29 +08:00
|
|
|
}
|
|
|
|
|
2017-11-17 17:35:12 +08:00
|
|
|
void gatt_register_chrc(DBusConnection *conn, GDBusProxy *proxy,
|
|
|
|
int argc, char *argv[])
|
2017-06-27 00:21:29 +08:00
|
|
|
{
|
|
|
|
struct service *service;
|
|
|
|
struct chrc *chrc;
|
|
|
|
|
|
|
|
if (!local_services) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("No service registered\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-06-27 00:21:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
service = g_list_last(local_services)->data;
|
|
|
|
|
|
|
|
chrc = g_new0(struct chrc, 1);
|
|
|
|
chrc->service = service;
|
2017-12-08 18:52:48 +08:00
|
|
|
chrc->uuid = g_strdup(argv[1]);
|
2017-06-27 00:21:29 +08:00
|
|
|
chrc->path = g_strdup_printf("%s/chrc%p", service->path, chrc);
|
2018-01-17 03:01:03 +08:00
|
|
|
chrc->flags = g_strsplit(argv[2], ",", -1);
|
2018-03-20 22:05:19 +08:00
|
|
|
chrc->authorization_req = argc > 3 ? true : false;
|
2017-06-27 00:21:29 +08:00
|
|
|
|
|
|
|
if (g_dbus_register_interface(conn, chrc->path, CHRC_INTERFACE,
|
|
|
|
chrc_methods, NULL, chrc_properties,
|
|
|
|
chrc, chrc_free) == FALSE) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Failed to register characteristic object\n");
|
2017-06-27 00:21:29 +08:00
|
|
|
chrc_free(chrc);
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-06-27 00:21:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
service->chrcs = g_list_append(service->chrcs, chrc);
|
|
|
|
|
|
|
|
print_chrc(chrc, COLORED_NEW);
|
|
|
|
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_prompt_input(chrc->path, "Enter value:", chrc_set_value, chrc);
|
2018-02-23 22:34:58 +08:00
|
|
|
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
|
2017-06-27 00:21:29 +08:00
|
|
|
}
|
2017-06-27 19:01:40 +08:00
|
|
|
|
|
|
|
static struct chrc *chrc_find(const char *pattern)
|
|
|
|
{
|
|
|
|
GList *l, *lc;
|
|
|
|
struct service *service;
|
|
|
|
struct chrc *chrc;
|
|
|
|
|
|
|
|
for (l = local_services; l; l = g_list_next(l)) {
|
|
|
|
service = l->data;
|
|
|
|
|
|
|
|
for (lc = service->chrcs; lc; lc = g_list_next(lc)) {
|
|
|
|
chrc = lc->data;
|
|
|
|
|
|
|
|
/* match object path */
|
|
|
|
if (!strcmp(chrc->path, pattern))
|
|
|
|
return chrc;
|
|
|
|
|
|
|
|
/* match UUID */
|
|
|
|
if (!strcmp(chrc->uuid, pattern))
|
|
|
|
return chrc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void gatt_unregister_chrc(DBusConnection *conn, GDBusProxy *proxy,
|
2017-11-17 17:35:12 +08:00
|
|
|
int argc, char *argv[])
|
2017-06-27 19:01:40 +08:00
|
|
|
{
|
|
|
|
struct chrc *chrc;
|
|
|
|
|
2017-12-08 18:52:48 +08:00
|
|
|
chrc = chrc_find(argv[1]);
|
2017-06-27 19:01:40 +08:00
|
|
|
if (!chrc) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Failed to unregister characteristic object\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-06-27 19:01:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
chrc->service->chrcs = g_list_remove(chrc->service->chrcs, chrc);
|
|
|
|
|
|
|
|
chrc_unregister(chrc);
|
2018-02-23 22:34:58 +08:00
|
|
|
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
|
2017-06-27 19:01:40 +08:00
|
|
|
}
|
2017-06-28 18:44:58 +08:00
|
|
|
|
|
|
|
static DBusMessage *desc_read_value(DBusConnection *conn, DBusMessage *msg,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct desc *desc = user_data;
|
2018-03-20 22:05:16 +08:00
|
|
|
DBusMessageIter iter;
|
|
|
|
uint16_t offset = 0;
|
2018-03-23 21:32:12 +08:00
|
|
|
char *device = NULL, *link = NULL;
|
2018-03-20 22:05:16 +08:00
|
|
|
|
|
|
|
dbus_message_iter_init(msg, &iter);
|
|
|
|
|
2018-03-23 21:32:12 +08:00
|
|
|
if (parse_options(&iter, &offset, NULL, &device, &link))
|
|
|
|
return g_dbus_create_error(msg,
|
|
|
|
"org.bluez.Error.InvalidArguments",
|
|
|
|
NULL);
|
|
|
|
|
2018-03-26 20:43:06 +08:00
|
|
|
bt_shell_printf("ReadValue: %s offset %u link %s\n",
|
|
|
|
path_to_address(device), offset, link);
|
2017-06-28 18:44:58 +08:00
|
|
|
|
2018-03-20 22:05:18 +08:00
|
|
|
if (offset > desc->value_len)
|
|
|
|
return g_dbus_create_error(msg, "org.bluez.Error.InvalidOffset",
|
|
|
|
NULL);
|
|
|
|
|
2018-03-20 22:05:16 +08:00
|
|
|
return read_value(msg, &desc->value[offset], desc->value_len - offset);
|
2017-06-28 18:44:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static DBusMessage *desc_write_value(DBusConnection *conn, DBusMessage *msg,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct desc *desc = user_data;
|
|
|
|
DBusMessageIter iter;
|
2018-03-23 21:32:12 +08:00
|
|
|
uint16_t offset = 0;
|
|
|
|
char *device = NULL, *link = NULL;
|
2017-06-28 18:44:58 +08:00
|
|
|
|
|
|
|
dbus_message_iter_init(msg, &iter);
|
|
|
|
|
2018-05-16 21:52:27 +08:00
|
|
|
if (parse_value_arg(&iter, &desc->value, &desc->value_len,
|
|
|
|
desc->max_val_len))
|
2017-06-28 18:44:58 +08:00
|
|
|
return g_dbus_create_error(msg,
|
|
|
|
"org.bluez.Error.InvalidArguments",
|
|
|
|
NULL);
|
|
|
|
|
2018-03-23 21:32:12 +08:00
|
|
|
dbus_message_iter_next(&iter);
|
|
|
|
|
|
|
|
if (parse_options(&iter, &offset, NULL, &device, &link))
|
|
|
|
return g_dbus_create_error(msg,
|
|
|
|
"org.bluez.Error.InvalidArguments",
|
|
|
|
NULL);
|
|
|
|
|
2018-03-26 20:43:06 +08:00
|
|
|
bt_shell_printf("WriteValue: %s offset %u link %s\n",
|
|
|
|
path_to_address(device), offset, link);
|
2018-03-23 21:32:12 +08:00
|
|
|
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("[" COLORED_CHG "] Attribute %s written" , desc->path);
|
2017-06-28 18:44:58 +08:00
|
|
|
|
|
|
|
g_dbus_emit_property_changed(conn, desc->path, CHRC_INTERFACE, "Value");
|
|
|
|
|
|
|
|
return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const GDBusMethodTable desc_methods[] = {
|
|
|
|
{ GDBUS_ASYNC_METHOD("ReadValue", GDBUS_ARGS({ "options", "a{sv}" }),
|
|
|
|
GDBUS_ARGS({ "value", "ay" }),
|
|
|
|
desc_read_value) },
|
|
|
|
{ GDBUS_ASYNC_METHOD("WriteValue", GDBUS_ARGS({ "value", "ay" },
|
|
|
|
{ "options", "a{sv}" }),
|
|
|
|
NULL, desc_write_value) },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
static gboolean desc_get_uuid(const GDBusPropertyTable *property,
|
|
|
|
DBusMessageIter *iter, void *data)
|
|
|
|
{
|
|
|
|
struct desc *desc = data;
|
|
|
|
|
|
|
|
dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &desc->uuid);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean desc_get_chrc(const GDBusPropertyTable *property,
|
|
|
|
DBusMessageIter *iter, void *data)
|
|
|
|
{
|
|
|
|
struct desc *desc = data;
|
|
|
|
|
|
|
|
dbus_message_iter_append_basic(iter, DBUS_TYPE_OBJECT_PATH,
|
|
|
|
&desc->chrc->path);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean desc_get_value(const GDBusPropertyTable *property,
|
|
|
|
DBusMessageIter *iter, void *data)
|
|
|
|
{
|
|
|
|
struct desc *desc = data;
|
|
|
|
DBusMessageIter array;
|
|
|
|
|
|
|
|
dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY, "y", &array);
|
|
|
|
|
|
|
|
if (desc->value)
|
|
|
|
dbus_message_iter_append_fixed_array(&array, DBUS_TYPE_BYTE,
|
|
|
|
&desc->value,
|
|
|
|
desc->value_len);
|
|
|
|
|
|
|
|
dbus_message_iter_close_container(iter, &array);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean desc_get_flags(const GDBusPropertyTable *property,
|
|
|
|
DBusMessageIter *iter, void *data)
|
|
|
|
{
|
|
|
|
struct desc *desc = data;
|
|
|
|
int i;
|
|
|
|
DBusMessageIter array;
|
|
|
|
|
|
|
|
dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY, "s", &array);
|
|
|
|
|
|
|
|
for (i = 0; desc->flags[i]; i++)
|
|
|
|
dbus_message_iter_append_basic(&array, DBUS_TYPE_STRING,
|
|
|
|
&desc->flags[i]);
|
|
|
|
|
|
|
|
dbus_message_iter_close_container(iter, &array);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const GDBusPropertyTable desc_properties[] = {
|
|
|
|
{ "UUID", "s", desc_get_uuid, NULL, NULL },
|
|
|
|
{ "Characteristic", "o", desc_get_chrc, NULL, NULL },
|
|
|
|
{ "Value", "ay", desc_get_value, NULL, NULL },
|
|
|
|
{ "Flags", "as", desc_get_flags, NULL, NULL },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
static void desc_set_value(const char *input, void *user_data)
|
|
|
|
{
|
|
|
|
struct desc *desc = user_data;
|
|
|
|
|
|
|
|
g_free(desc->value);
|
|
|
|
|
|
|
|
desc->value = str2bytearray((char *) input, &desc->value_len);
|
2018-05-16 21:52:27 +08:00
|
|
|
|
|
|
|
if (!desc->value) {
|
|
|
|
print_desc(desc, COLORED_DEL);
|
|
|
|
desc_unregister(desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
desc->max_val_len = desc->value_len;
|
2017-06-28 18:44:58 +08:00
|
|
|
}
|
|
|
|
|
2017-11-17 17:35:12 +08:00
|
|
|
void gatt_register_desc(DBusConnection *conn, GDBusProxy *proxy,
|
|
|
|
int argc, char *argv[])
|
2017-06-28 18:44:58 +08:00
|
|
|
{
|
|
|
|
struct service *service;
|
|
|
|
struct desc *desc;
|
|
|
|
|
|
|
|
if (!local_services) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("No service registered\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-06-28 18:44:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
service = g_list_last(local_services)->data;
|
|
|
|
|
|
|
|
if (!service->chrcs) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("No characteristic registered\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-06-28 18:44:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
desc = g_new0(struct desc, 1);
|
|
|
|
desc->chrc = g_list_last(service->chrcs)->data;
|
2017-12-08 18:52:48 +08:00
|
|
|
desc->uuid = g_strdup(argv[1]);
|
2017-06-28 18:44:58 +08:00
|
|
|
desc->path = g_strdup_printf("%s/desc%p", desc->chrc->path, desc);
|
2018-01-17 03:01:03 +08:00
|
|
|
desc->flags = g_strsplit(argv[2], ",", -1);
|
2017-06-28 18:44:58 +08:00
|
|
|
|
|
|
|
if (g_dbus_register_interface(conn, desc->path, DESC_INTERFACE,
|
|
|
|
desc_methods, NULL, desc_properties,
|
|
|
|
desc, desc_free) == FALSE) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Failed to register descriptor object\n");
|
2017-06-28 18:44:58 +08:00
|
|
|
desc_free(desc);
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-06-28 18:44:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
desc->chrc->descs = g_list_append(desc->chrc->descs, desc);
|
|
|
|
|
|
|
|
print_desc(desc, COLORED_NEW);
|
|
|
|
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_prompt_input(desc->path, "Enter value:", desc_set_value, desc);
|
2018-02-23 22:34:58 +08:00
|
|
|
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
|
2017-06-28 18:44:58 +08:00
|
|
|
}
|
2017-06-28 19:36:39 +08:00
|
|
|
|
|
|
|
static struct desc *desc_find(const char *pattern)
|
|
|
|
{
|
|
|
|
GList *l, *lc, *ld;
|
|
|
|
struct service *service;
|
|
|
|
struct chrc *chrc;
|
|
|
|
struct desc *desc;
|
|
|
|
|
|
|
|
for (l = local_services; l; l = g_list_next(l)) {
|
|
|
|
service = l->data;
|
|
|
|
|
|
|
|
for (lc = service->chrcs; lc; lc = g_list_next(lc)) {
|
|
|
|
chrc = lc->data;
|
|
|
|
|
|
|
|
for (ld = chrc->descs; ld; ld = g_list_next(ld)) {
|
|
|
|
desc = ld->data;
|
|
|
|
|
|
|
|
/* match object path */
|
|
|
|
if (!strcmp(desc->path, pattern))
|
|
|
|
return desc;
|
|
|
|
|
|
|
|
/* match UUID */
|
|
|
|
if (!strcmp(desc->uuid, pattern))
|
|
|
|
return desc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void gatt_unregister_desc(DBusConnection *conn, GDBusProxy *proxy,
|
2017-11-17 17:35:12 +08:00
|
|
|
int argc, char *argv[])
|
2017-06-28 19:36:39 +08:00
|
|
|
{
|
|
|
|
struct desc *desc;
|
|
|
|
|
2017-12-08 18:52:48 +08:00
|
|
|
desc = desc_find(argv[1]);
|
2017-06-28 19:36:39 +08:00
|
|
|
if (!desc) {
|
2017-11-09 22:29:39 +08:00
|
|
|
bt_shell_printf("Failed to unregister descriptor object\n");
|
2018-02-23 22:34:58 +08:00
|
|
|
return bt_shell_noninteractive_quit(EXIT_FAILURE);
|
2017-06-28 19:36:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
desc->chrc->descs = g_list_remove(desc->chrc->descs, desc);
|
|
|
|
|
|
|
|
desc_unregister(desc);
|
2018-02-23 22:34:58 +08:00
|
|
|
|
|
|
|
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
|
2017-06-28 19:36:39 +08:00
|
|
|
}
|