2017-05-22 10:17:22 +03:00
|
|
|
/** @file
|
|
|
|
* @brief Bluetooth shell module
|
|
|
|
*
|
|
|
|
* Provide some Bluetooth shell commands that can be useful to applications.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2017 Intel Corporation
|
2018-09-25 15:16:55 +02:00
|
|
|
* Copyright (c) 2018 Nordic Semiconductor ASA
|
2017-05-22 10:17:22 +03:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2017-05-22 11:49:31 +03:00
|
|
|
#include <errno.h>
|
|
|
|
#include <zephyr/types.h>
|
|
|
|
#include <stddef.h>
|
2017-05-22 10:17:22 +03:00
|
|
|
#include <stdlib.h>
|
2017-05-22 11:49:31 +03:00
|
|
|
#include <string.h>
|
2019-06-26 10:33:49 -04:00
|
|
|
#include <sys/printk.h>
|
2019-06-26 10:33:41 -04:00
|
|
|
#include <sys/byteorder.h>
|
2017-05-22 11:49:31 +03:00
|
|
|
#include <zephyr.h>
|
|
|
|
|
2018-04-28 21:08:06 +03:00
|
|
|
#include <settings/settings.h>
|
|
|
|
|
2018-07-09 13:33:07 +03:00
|
|
|
#include <bluetooth/hci.h>
|
2017-05-22 11:49:31 +03:00
|
|
|
#include <bluetooth/bluetooth.h>
|
|
|
|
#include <bluetooth/conn.h>
|
|
|
|
#include <bluetooth/rfcomm.h>
|
|
|
|
#include <bluetooth/sdp.h>
|
|
|
|
|
2018-09-24 10:59:23 +03:00
|
|
|
#include <shell/shell.h>
|
2017-05-22 10:17:22 +03:00
|
|
|
|
2017-05-29 12:54:56 +03:00
|
|
|
#include "bt.h"
|
2017-06-06 13:58:55 +02:00
|
|
|
#include "ll.h"
|
2019-01-09 23:14:36 +05:30
|
|
|
#include "hci.h"
|
2017-05-29 12:54:56 +03:00
|
|
|
|
2017-08-09 09:21:11 +03:00
|
|
|
#define DEVICE_NAME CONFIG_BT_DEVICE_NAME
|
2017-05-22 11:49:31 +03:00
|
|
|
#define DEVICE_NAME_LEN (sizeof(DEVICE_NAME) - 1)
|
|
|
|
|
2018-07-16 15:11:08 +03:00
|
|
|
static u8_t selected_id = BT_ID_DEFAULT;
|
2018-09-24 10:59:23 +03:00
|
|
|
const struct shell *ctx_shell;
|
2018-07-16 15:11:08 +03:00
|
|
|
|
2018-01-04 11:44:50 +01:00
|
|
|
#if defined(CONFIG_BT_CONN)
|
|
|
|
struct bt_conn *default_conn;
|
|
|
|
|
2017-05-22 11:49:31 +03:00
|
|
|
/* Connection context for BR/EDR legacy pairing in sec mode 3 */
|
|
|
|
static struct bt_conn *pairing_conn;
|
2018-01-04 11:44:50 +01:00
|
|
|
#endif /* CONFIG_BT_CONN */
|
2017-05-22 11:49:31 +03:00
|
|
|
|
2018-06-26 13:50:14 +03:00
|
|
|
#define NAME_LEN 30
|
|
|
|
|
2019-01-07 16:51:22 +05:30
|
|
|
#if defined(CONFIG_BT_OBSERVER)
|
2018-06-26 13:50:14 +03:00
|
|
|
static bool data_cb(struct bt_data *data, void *user_data)
|
|
|
|
{
|
|
|
|
char *name = user_data;
|
|
|
|
|
|
|
|
switch (data->type) {
|
|
|
|
case BT_DATA_NAME_SHORTENED:
|
|
|
|
case BT_DATA_NAME_COMPLETE:
|
2019-02-11 17:14:19 +00:00
|
|
|
memcpy(name, data->data, MIN(data->data_len, NAME_LEN - 1));
|
2018-06-26 13:50:14 +03:00
|
|
|
return false;
|
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-22 11:49:31 +03:00
|
|
|
static void device_found(const bt_addr_le_t *addr, s8_t rssi, u8_t evtype,
|
|
|
|
struct net_buf_simple *buf)
|
|
|
|
{
|
|
|
|
char le_addr[BT_ADDR_LE_STR_LEN];
|
2018-06-26 13:50:14 +03:00
|
|
|
char name[NAME_LEN];
|
2017-05-22 11:49:31 +03:00
|
|
|
|
2018-09-11 19:09:03 -07:00
|
|
|
(void)memset(name, 0, sizeof(name));
|
2017-05-22 11:49:31 +03:00
|
|
|
|
2018-06-26 13:50:14 +03:00
|
|
|
bt_data_parse(buf, data_cb, name);
|
2017-05-22 11:49:31 +03:00
|
|
|
|
|
|
|
bt_addr_le_to_str(addr, le_addr, sizeof(le_addr));
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(ctx_shell, "[DEVICE]: %s, AD evt type %u, RSSI %i %s",
|
2018-09-24 10:59:23 +03:00
|
|
|
le_addr, evtype, rssi, name);
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
2019-01-07 16:51:22 +05:30
|
|
|
#endif /* CONFIG_BT_OBSERVER */
|
2017-05-22 11:49:31 +03:00
|
|
|
|
2018-01-04 11:44:50 +01:00
|
|
|
#if !defined(CONFIG_BT_CONN)
|
2018-09-24 10:59:23 +03:00
|
|
|
#if 0 /* FIXME: Add support for changing prompt */
|
2018-01-04 11:44:50 +01:00
|
|
|
static const char *current_prompt(void)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-09-24 10:59:23 +03:00
|
|
|
#endif
|
2018-01-04 11:44:50 +01:00
|
|
|
#endif /* !CONFIG_BT_CONN */
|
|
|
|
|
|
|
|
#if defined(CONFIG_BT_CONN)
|
2018-09-24 10:59:23 +03:00
|
|
|
#if 0 /* FIXME: Add support for changing prompt */
|
2018-01-04 11:44:50 +01:00
|
|
|
static const char *current_prompt(void)
|
|
|
|
{
|
|
|
|
static char str[BT_ADDR_LE_STR_LEN + 2];
|
|
|
|
static struct bt_conn_info info;
|
|
|
|
|
|
|
|
if (!default_conn) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bt_conn_get_info(default_conn, &info) < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (info.type != BT_CONN_TYPE_LE) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bt_addr_le_to_str(info.le.dst, str, sizeof(str) - 2);
|
|
|
|
strcat(str, "> ");
|
|
|
|
return str;
|
|
|
|
}
|
2018-09-24 10:59:23 +03:00
|
|
|
#endif
|
2018-01-04 11:44:50 +01:00
|
|
|
|
2018-09-25 14:24:25 +03:00
|
|
|
void conn_addr_str(struct bt_conn *conn, char *addr, size_t len)
|
2017-05-22 11:49:31 +03:00
|
|
|
{
|
|
|
|
struct bt_conn_info info;
|
|
|
|
|
|
|
|
if (bt_conn_get_info(conn, &info) < 0) {
|
|
|
|
addr[0] = '\0';
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (info.type) {
|
2017-08-09 09:21:11 +03:00
|
|
|
#if defined(CONFIG_BT_BREDR)
|
2017-05-22 11:49:31 +03:00
|
|
|
case BT_CONN_TYPE_BR:
|
|
|
|
bt_addr_to_str(info.br.dst, addr, len);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
case BT_CONN_TYPE_LE:
|
2018-08-23 12:07:56 +02:00
|
|
|
bt_addr_le_to_str(bt_conn_get_dst(conn), addr, len);
|
2017-05-22 11:49:31 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-04 11:44:50 +01:00
|
|
|
static void connected(struct bt_conn *conn, u8_t err)
|
|
|
|
{
|
|
|
|
char addr[BT_ADDR_LE_STR_LEN];
|
|
|
|
|
|
|
|
conn_addr_str(conn, addr, sizeof(addr));
|
|
|
|
|
|
|
|
if (err) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(ctx_shell, "Failed to connect to %s (%u)", addr,
|
2018-09-24 10:59:23 +03:00
|
|
|
err);
|
2018-01-04 11:44:50 +01:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(ctx_shell, "Connected: %s", addr);
|
2018-01-04 11:44:50 +01:00
|
|
|
|
|
|
|
if (!default_conn) {
|
|
|
|
default_conn = bt_conn_ref(conn);
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
|
|
|
/* clear connection reference for sec mode 3 pairing */
|
|
|
|
if (pairing_conn) {
|
|
|
|
bt_conn_unref(pairing_conn);
|
|
|
|
pairing_conn = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void disconnected(struct bt_conn *conn, u8_t reason)
|
|
|
|
{
|
|
|
|
char addr[BT_ADDR_LE_STR_LEN];
|
|
|
|
|
|
|
|
conn_addr_str(conn, addr, sizeof(addr));
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(ctx_shell, "Disconnected: %s (reason %u)", addr, reason);
|
2018-01-04 11:44:50 +01:00
|
|
|
|
|
|
|
if (default_conn == conn) {
|
|
|
|
bt_conn_unref(default_conn);
|
|
|
|
default_conn = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool le_param_req(struct bt_conn *conn, struct bt_le_conn_param *param)
|
|
|
|
{
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(ctx_shell, "LE conn param req: int (0x%04x, 0x%04x) lat %d"
|
|
|
|
" to %d", param->interval_min, param->interval_max,
|
|
|
|
param->latency, param->timeout);
|
2018-01-04 11:44:50 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void le_param_updated(struct bt_conn *conn, u16_t interval,
|
|
|
|
u16_t latency, u16_t timeout)
|
|
|
|
{
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(ctx_shell, "LE conn param updated: int 0x%04x lat %d "
|
2018-09-27 12:49:10 +03:00
|
|
|
"to %d", interval, latency, timeout);
|
2018-01-04 11:44:50 +01:00
|
|
|
}
|
|
|
|
|
2017-08-09 09:21:11 +03:00
|
|
|
#if defined(CONFIG_BT_SMP)
|
2017-05-22 11:49:31 +03:00
|
|
|
static void identity_resolved(struct bt_conn *conn, const bt_addr_le_t *rpa,
|
|
|
|
const bt_addr_le_t *identity)
|
|
|
|
{
|
|
|
|
char addr_identity[BT_ADDR_LE_STR_LEN];
|
|
|
|
char addr_rpa[BT_ADDR_LE_STR_LEN];
|
|
|
|
|
|
|
|
bt_addr_le_to_str(identity, addr_identity, sizeof(addr_identity));
|
|
|
|
bt_addr_le_to_str(rpa, addr_rpa, sizeof(addr_rpa));
|
|
|
|
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(ctx_shell, "Identity resolved %s -> %s", addr_rpa,
|
2018-09-24 10:59:23 +03:00
|
|
|
addr_identity);
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-08-09 09:21:11 +03:00
|
|
|
#if defined(CONFIG_BT_SMP) || defined(CONFIG_BT_BREDR)
|
2017-05-22 11:49:31 +03:00
|
|
|
static void security_changed(struct bt_conn *conn, bt_security_t level)
|
|
|
|
{
|
|
|
|
char addr[BT_ADDR_LE_STR_LEN];
|
|
|
|
|
|
|
|
conn_addr_str(conn, addr, sizeof(addr));
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(ctx_shell, "Security changed: %s level %u", addr, level);
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static struct bt_conn_cb conn_callbacks = {
|
|
|
|
.connected = connected,
|
|
|
|
.disconnected = disconnected,
|
|
|
|
.le_param_req = le_param_req,
|
|
|
|
.le_param_updated = le_param_updated,
|
2017-08-09 09:21:11 +03:00
|
|
|
#if defined(CONFIG_BT_SMP)
|
2017-05-22 11:49:31 +03:00
|
|
|
.identity_resolved = identity_resolved,
|
|
|
|
#endif
|
2017-08-09 09:21:11 +03:00
|
|
|
#if defined(CONFIG_BT_SMP) || defined(CONFIG_BT_BREDR)
|
2017-05-22 11:49:31 +03:00
|
|
|
.security_changed = security_changed,
|
|
|
|
#endif
|
|
|
|
};
|
2018-01-04 11:44:50 +01:00
|
|
|
#endif /* CONFIG_BT_CONN */
|
2017-05-22 11:49:31 +03:00
|
|
|
|
|
|
|
static int char2hex(const char *c, u8_t *x)
|
|
|
|
{
|
|
|
|
if (*c >= '0' && *c <= '9') {
|
|
|
|
*x = *c - '0';
|
|
|
|
} else if (*c >= 'a' && *c <= 'f') {
|
|
|
|
*x = *c - 'a' + 10;
|
|
|
|
} else if (*c >= 'A' && *c <= 'F') {
|
|
|
|
*x = *c - 'A' + 10;
|
|
|
|
} else {
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-09-13 13:28:56 +02:00
|
|
|
static int hexstr2array(const char *str, u8_t *array, u8_t size)
|
2017-05-22 11:49:31 +03:00
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
u8_t tmp;
|
|
|
|
|
2019-03-26 19:57:45 -06:00
|
|
|
if (strlen(str) != ((size * 2U) + (size - 1))) {
|
2017-05-22 11:49:31 +03:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2018-09-13 13:28:56 +02:00
|
|
|
for (i = size - 1, j = 1; *str != '\0'; str++, j++) {
|
2017-05-22 11:49:31 +03:00
|
|
|
if (!(j % 3) && (*str != ':')) {
|
|
|
|
return -EINVAL;
|
|
|
|
} else if (*str == ':') {
|
|
|
|
i--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-09-13 13:28:56 +02:00
|
|
|
array[i] = array[i] << 4;
|
2017-05-22 11:49:31 +03:00
|
|
|
|
|
|
|
if (char2hex(str, &tmp) < 0) {
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2018-09-13 13:28:56 +02:00
|
|
|
array[i] |= tmp;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-09-25 14:24:25 +03:00
|
|
|
int str2bt_addr(const char *str, bt_addr_t *addr)
|
2018-09-13 13:28:56 +02:00
|
|
|
{
|
|
|
|
return hexstr2array(str, addr->val, 6);
|
|
|
|
}
|
|
|
|
|
2017-05-22 11:49:31 +03:00
|
|
|
static int str2bt_addr_le(const char *str, const char *type, bt_addr_le_t *addr)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = str2bt_addr(str, &addr->a);
|
|
|
|
if (err < 0) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(type, "public") || !strcmp(type, "(public)")) {
|
|
|
|
addr->type = BT_ADDR_LE_PUBLIC;
|
|
|
|
} else if (!strcmp(type, "random") || !strcmp(type, "(random)")) {
|
|
|
|
addr->type = BT_ADDR_LE_RANDOM;
|
|
|
|
} else {
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void bt_ready(int err)
|
|
|
|
{
|
|
|
|
if (err) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(ctx_shell, "Bluetooth init failed (err %d)", err);
|
2017-05-22 11:49:31 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(ctx_shell, "Bluetooth initialized");
|
2017-05-22 11:49:31 +03:00
|
|
|
|
2018-04-28 21:08:06 +03:00
|
|
|
if (IS_ENABLED(CONFIG_SETTINGS)) {
|
|
|
|
settings_load();
|
|
|
|
}
|
|
|
|
|
2018-01-04 11:44:50 +01:00
|
|
|
#if defined(CONFIG_BT_CONN)
|
2017-05-29 12:54:56 +03:00
|
|
|
default_conn = NULL;
|
|
|
|
|
2017-05-22 11:49:31 +03:00
|
|
|
bt_conn_cb_register(&conn_callbacks);
|
2018-01-04 11:44:50 +01:00
|
|
|
#endif /* CONFIG_BT_CONN */
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_init(const struct shell *shell, size_t argc, char *argv[])
|
2017-05-22 11:49:31 +03:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
2019-01-10 14:21:48 +02:00
|
|
|
ctx_shell = shell;
|
2018-12-07 15:31:36 +08:00
|
|
|
|
2017-05-22 11:49:31 +03:00
|
|
|
err = bt_enable(bt_ready);
|
|
|
|
if (err) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "Bluetooth init failed (err %d)", err);
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
return err;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-07-09 13:33:07 +03:00
|
|
|
#if defined(CONFIG_BT_HCI)
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_hci_cmd(const struct shell *shell, size_t argc, char *argv[])
|
2018-07-09 13:33:07 +03:00
|
|
|
{
|
|
|
|
u8_t ogf;
|
|
|
|
u16_t ocf;
|
|
|
|
struct net_buf *buf = NULL, *rsp;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
ogf = strtoul(argv[1], NULL, 16);
|
|
|
|
ocf = strtoul(argv[2], NULL, 16);
|
|
|
|
|
|
|
|
if (argc > 3) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
buf = bt_hci_cmd_create(BT_OP(ogf, ocf), argc - 3);
|
|
|
|
|
|
|
|
for (i = 3; i < argc; i++) {
|
|
|
|
net_buf_add_u8(buf, strtoul(argv[i], NULL, 16));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
err = bt_hci_cmd_send_sync(BT_OP(ogf, ocf), buf, &rsp);
|
|
|
|
if (err) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "HCI command failed (err %d)", err);
|
2018-10-01 22:08:59 +02:00
|
|
|
return err;
|
2018-07-09 13:33:07 +03:00
|
|
|
} else {
|
2019-03-19 18:28:58 +02:00
|
|
|
shell_hexdump(shell, rsp->data, rsp->len);
|
2018-07-09 13:33:07 +03:00
|
|
|
net_buf_unref(rsp);
|
|
|
|
}
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return 0;
|
2018-07-09 13:33:07 +03:00
|
|
|
}
|
|
|
|
#endif /* CONFIG_BT_HCI */
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_name(const struct shell *shell, size_t argc, char *argv[])
|
2018-07-17 13:55:47 +03:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (argc < 2) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Bluetooth Local Name: %s", bt_get_name());
|
2018-07-17 13:55:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
err = bt_set_name(argv[1]);
|
|
|
|
if (err) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "Unable to set name %s (err %d)", argv[1],
|
|
|
|
err);
|
2018-10-01 22:08:59 +02:00
|
|
|
return err;
|
2018-07-17 13:55:47 +03:00
|
|
|
}
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return 0;
|
2018-07-17 13:55:47 +03:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_id_create(const struct shell *shell, size_t argc, char *argv[])
|
2018-07-16 15:11:08 +03:00
|
|
|
{
|
2018-07-17 10:35:52 +03:00
|
|
|
char addr_str[BT_ADDR_LE_STR_LEN];
|
2018-07-16 15:11:08 +03:00
|
|
|
bt_addr_le_t addr;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (argc > 1) {
|
|
|
|
err = str2bt_addr_le(argv[1], "random", &addr);
|
|
|
|
if (err) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "Invalid address");
|
2018-07-16 15:11:08 +03:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bt_addr_le_copy(&addr, BT_ADDR_LE_ANY);
|
|
|
|
}
|
|
|
|
|
|
|
|
err = bt_id_create(&addr, NULL);
|
|
|
|
if (err < 0) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "Creating new ID failed (err %d)", err);
|
2018-07-16 15:11:08 +03:00
|
|
|
}
|
|
|
|
|
2018-07-17 10:35:52 +03:00
|
|
|
bt_addr_le_to_str(&addr, addr_str, sizeof(addr_str));
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "New identity (%d) created: %s", err, addr_str);
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return 0;
|
2018-07-16 15:11:08 +03:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_id_reset(const struct shell *shell, size_t argc, char *argv[])
|
2018-07-16 15:11:08 +03:00
|
|
|
{
|
2018-07-17 10:35:52 +03:00
|
|
|
char addr_str[BT_ADDR_LE_STR_LEN];
|
2018-07-16 15:11:08 +03:00
|
|
|
bt_addr_le_t addr;
|
|
|
|
u8_t id;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (argc < 2) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "Identity identifier not specified");
|
2018-10-01 22:08:59 +02:00
|
|
|
return -ENOEXEC;
|
2018-07-16 15:11:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
id = strtol(argv[1], NULL, 10);
|
|
|
|
|
|
|
|
if (argc > 2) {
|
|
|
|
err = str2bt_addr_le(argv[2], "random", &addr);
|
|
|
|
if (err) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Invalid address");
|
2018-10-01 22:08:59 +02:00
|
|
|
return err;
|
2018-07-16 15:11:08 +03:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bt_addr_le_copy(&addr, BT_ADDR_LE_ANY);
|
|
|
|
}
|
|
|
|
|
|
|
|
err = bt_id_reset(id, &addr, NULL);
|
|
|
|
if (err < 0) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Resetting ID %u failed (err %d)", id, err);
|
2018-10-01 22:08:59 +02:00
|
|
|
return err;
|
2018-07-16 15:11:08 +03:00
|
|
|
}
|
|
|
|
|
2018-07-17 10:35:52 +03:00
|
|
|
bt_addr_le_to_str(&addr, addr_str, sizeof(addr_str));
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Identity %u reset: %s", id, addr_str);
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return 0;
|
2018-07-16 15:11:08 +03:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_id_delete(const struct shell *shell, size_t argc, char *argv[])
|
2018-08-02 12:34:39 +03:00
|
|
|
{
|
|
|
|
u8_t id;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (argc < 2) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "Identity identifier not specified");
|
2018-10-01 22:08:59 +02:00
|
|
|
return -ENOEXEC;
|
2018-08-02 12:34:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
id = strtol(argv[1], NULL, 10);
|
|
|
|
|
|
|
|
err = bt_id_delete(id);
|
|
|
|
if (err < 0) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "Deleting ID %u failed (err %d)", id, err);
|
2018-10-01 22:08:59 +02:00
|
|
|
return err;
|
2018-08-02 12:34:39 +03:00
|
|
|
}
|
|
|
|
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Identity %u deleted", id);
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return 0;
|
2018-08-02 12:34:39 +03:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_id_show(const struct shell *shell, size_t argc, char *argv[])
|
2018-07-16 15:11:08 +03:00
|
|
|
{
|
|
|
|
bt_addr_le_t addrs[CONFIG_BT_ID_MAX];
|
|
|
|
size_t i, count = CONFIG_BT_ID_MAX;
|
|
|
|
|
|
|
|
bt_id_get(addrs, &count);
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++) {
|
2018-07-17 10:35:52 +03:00
|
|
|
char addr_str[BT_ADDR_LE_STR_LEN];
|
|
|
|
|
|
|
|
bt_addr_le_to_str(&addrs[i], addr_str, sizeof(addr_str));
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "%s%zu: %s", i == selected_id ? "*" : " ", i,
|
2018-07-17 10:35:52 +03:00
|
|
|
addr_str);
|
2018-07-16 15:11:08 +03:00
|
|
|
}
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return 0;
|
2018-07-16 15:11:08 +03:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_id_select(const struct shell *shell, size_t argc, char *argv[])
|
2018-07-16 15:11:08 +03:00
|
|
|
{
|
2018-07-17 10:35:52 +03:00
|
|
|
char addr_str[BT_ADDR_LE_STR_LEN];
|
2018-07-16 15:11:08 +03:00
|
|
|
bt_addr_le_t addrs[CONFIG_BT_ID_MAX];
|
|
|
|
size_t count = CONFIG_BT_ID_MAX;
|
|
|
|
u8_t id;
|
|
|
|
|
|
|
|
id = strtol(argv[1], NULL, 10);
|
|
|
|
|
|
|
|
bt_id_get(addrs, &count);
|
|
|
|
if (count <= id) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "Invalid identity");
|
2018-10-01 22:08:59 +02:00
|
|
|
return -ENOEXEC;
|
2018-07-16 15:11:08 +03:00
|
|
|
}
|
|
|
|
|
2018-07-17 10:35:52 +03:00
|
|
|
bt_addr_le_to_str(&addrs[id], addr_str, sizeof(addr_str));
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Selected identity: %s", addr_str);
|
2018-07-16 15:11:08 +03:00
|
|
|
selected_id = id;
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return 0;
|
2018-07-16 15:11:08 +03:00
|
|
|
}
|
|
|
|
|
2019-01-07 16:51:22 +05:30
|
|
|
#if defined(CONFIG_BT_OBSERVER)
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_active_scan_on(const struct shell *shell, int dups)
|
2017-05-22 11:49:31 +03:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
struct bt_le_scan_param param = {
|
2017-05-28 23:11:54 +02:00
|
|
|
.type = BT_HCI_LE_SCAN_ACTIVE,
|
2017-05-22 11:49:31 +03:00
|
|
|
.filter_dup = BT_HCI_LE_SCAN_FILTER_DUP_ENABLE,
|
|
|
|
.interval = BT_GAP_SCAN_FAST_INTERVAL,
|
|
|
|
.window = BT_GAP_SCAN_FAST_WINDOW };
|
|
|
|
|
|
|
|
if (dups >= 0) {
|
|
|
|
param.filter_dup = dups;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = bt_le_scan_start(¶m, device_found);
|
|
|
|
if (err) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "Bluetooth set active scan failed "
|
2018-09-27 12:49:10 +03:00
|
|
|
"(err %d)", err);
|
2018-10-01 22:08:59 +02:00
|
|
|
return err;
|
2017-05-22 11:49:31 +03:00
|
|
|
} else {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Bluetooth active scan enabled");
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return 0;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_passive_scan_on(const struct shell *shell, int dups)
|
2017-05-22 11:49:31 +03:00
|
|
|
{
|
|
|
|
struct bt_le_scan_param param = {
|
|
|
|
.type = BT_HCI_LE_SCAN_PASSIVE,
|
|
|
|
.filter_dup = BT_HCI_LE_SCAN_FILTER_DUP_DISABLE,
|
|
|
|
.interval = 0x10,
|
|
|
|
.window = 0x10 };
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (dups >= 0) {
|
|
|
|
param.filter_dup = dups;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = bt_le_scan_start(¶m, device_found);
|
|
|
|
if (err) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "Bluetooth set passive scan failed "
|
2018-09-27 12:49:10 +03:00
|
|
|
"(err %d)", err);
|
2018-10-01 22:08:59 +02:00
|
|
|
return err;
|
2017-05-22 11:49:31 +03:00
|
|
|
} else {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Bluetooth passive scan enabled");
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return 0;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_scan_off(const struct shell *shell)
|
2017-05-22 11:49:31 +03:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = bt_le_scan_stop();
|
|
|
|
if (err) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "Stopping scanning failed (err %d)", err);
|
2018-10-01 22:08:59 +02:00
|
|
|
return err;
|
2017-05-22 11:49:31 +03:00
|
|
|
} else {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Scan successfully stopped");
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return 0;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_scan(const struct shell *shell, size_t argc, char *argv[])
|
2017-05-22 11:49:31 +03:00
|
|
|
{
|
|
|
|
const char *action;
|
|
|
|
int dups = -1;
|
|
|
|
|
|
|
|
/* Parse duplicate filtering data */
|
|
|
|
if (argc >= 3) {
|
|
|
|
const char *dup_filter = argv[2];
|
|
|
|
|
|
|
|
if (!strcmp(dup_filter, "dups")) {
|
|
|
|
dups = BT_HCI_LE_SCAN_FILTER_DUP_DISABLE;
|
|
|
|
} else if (!strcmp(dup_filter, "nodups")) {
|
|
|
|
dups = BT_HCI_LE_SCAN_FILTER_DUP_ENABLE;
|
|
|
|
} else {
|
2018-12-05 11:45:06 +01:00
|
|
|
shell_help(shell);
|
2019-03-25 11:03:59 +01:00
|
|
|
return SHELL_CMD_HELP_PRINTED;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
action = argv[1];
|
|
|
|
if (!strcmp(action, "on")) {
|
2018-10-01 22:08:59 +02:00
|
|
|
return cmd_active_scan_on(shell, dups);
|
2017-05-22 11:49:31 +03:00
|
|
|
} else if (!strcmp(action, "off")) {
|
2018-10-01 22:08:59 +02:00
|
|
|
return cmd_scan_off(shell);
|
2017-05-22 11:49:31 +03:00
|
|
|
} else if (!strcmp(action, "passive")) {
|
2018-10-01 22:08:59 +02:00
|
|
|
return cmd_passive_scan_on(shell, dups);
|
2017-05-22 11:49:31 +03:00
|
|
|
} else {
|
2018-12-05 11:45:06 +01:00
|
|
|
shell_help(shell);
|
2019-03-25 11:03:59 +01:00
|
|
|
return SHELL_CMD_HELP_PRINTED;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return 0;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
2019-01-07 16:51:22 +05:30
|
|
|
#endif /* CONFIG_BT_OBSERVER */
|
2017-05-22 11:49:31 +03:00
|
|
|
|
2019-01-07 16:51:22 +05:30
|
|
|
#if defined(CONFIG_BT_BROADCASTER)
|
2018-01-04 11:44:50 +01:00
|
|
|
static const struct bt_data ad_discov[] = {
|
|
|
|
BT_DATA_BYTES(BT_DATA_FLAGS, (BT_LE_AD_GENERAL | BT_LE_AD_NO_BREDR)),
|
|
|
|
};
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_advertise(const struct shell *shell, size_t argc, char *argv[])
|
2018-01-04 11:44:50 +01:00
|
|
|
{
|
|
|
|
struct bt_le_adv_param param;
|
2018-10-19 18:08:53 -07:00
|
|
|
const struct bt_data *ad;
|
|
|
|
size_t ad_len;
|
2018-01-04 11:44:50 +01:00
|
|
|
int err;
|
|
|
|
|
|
|
|
if (!strcmp(argv[1], "off")) {
|
|
|
|
if (bt_le_adv_stop() < 0) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "Failed to stop advertising");
|
2018-10-01 22:08:59 +02:00
|
|
|
return -ENOEXEC;
|
2018-01-04 11:44:50 +01:00
|
|
|
} else {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Advertising stopped");
|
2018-01-04 11:44:50 +01:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
return 0;
|
2018-01-04 11:44:50 +01:00
|
|
|
}
|
|
|
|
|
2018-07-16 15:11:08 +03:00
|
|
|
param.id = selected_id;
|
2018-01-04 11:44:50 +01:00
|
|
|
param.interval_min = BT_GAP_ADV_FAST_INT_MIN_2;
|
|
|
|
param.interval_max = BT_GAP_ADV_FAST_INT_MAX_2;
|
|
|
|
|
|
|
|
if (!strcmp(argv[1], "on")) {
|
2018-07-17 13:34:27 +03:00
|
|
|
param.options = (BT_LE_ADV_OPT_CONNECTABLE |
|
|
|
|
BT_LE_ADV_OPT_USE_NAME);
|
2018-01-04 11:44:50 +01:00
|
|
|
} else if (!strcmp(argv[1], "scan")) {
|
2018-07-17 13:34:27 +03:00
|
|
|
param.options = BT_LE_ADV_OPT_USE_NAME;
|
2018-01-04 11:44:50 +01:00
|
|
|
} else if (!strcmp(argv[1], "nconn")) {
|
2019-03-26 19:57:45 -06:00
|
|
|
param.options = 0U;
|
2018-01-04 11:44:50 +01:00
|
|
|
} else {
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Parse advertisement data */
|
|
|
|
if (argc >= 3) {
|
|
|
|
const char *mode = argv[2];
|
|
|
|
|
|
|
|
if (!strcmp(mode, "discov")) {
|
|
|
|
ad = ad_discov;
|
|
|
|
ad_len = ARRAY_SIZE(ad_discov);
|
|
|
|
} else if (!strcmp(mode, "non_discov")) {
|
|
|
|
ad = NULL;
|
|
|
|
ad_len = 0;
|
|
|
|
} else {
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ad = ad_discov;
|
|
|
|
ad_len = ARRAY_SIZE(ad_discov);
|
|
|
|
}
|
|
|
|
|
2018-10-19 18:08:53 -07:00
|
|
|
err = bt_le_adv_start(¶m, ad, ad_len, NULL, 0);
|
2018-01-04 11:44:50 +01:00
|
|
|
if (err < 0) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "Failed to start advertising (err %d)",
|
2018-09-24 10:59:23 +03:00
|
|
|
err);
|
2018-10-01 22:08:59 +02:00
|
|
|
return err;
|
2018-01-04 11:44:50 +01:00
|
|
|
} else {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Advertising started");
|
2018-01-04 11:44:50 +01:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
return 0;
|
2018-01-04 11:44:50 +01:00
|
|
|
|
|
|
|
fail:
|
2018-12-05 11:45:06 +01:00
|
|
|
shell_help(shell);
|
2018-10-01 22:08:59 +02:00
|
|
|
return -ENOEXEC;
|
2018-01-04 11:44:50 +01:00
|
|
|
}
|
|
|
|
|
2019-01-07 16:51:22 +05:30
|
|
|
#if defined(CONFIG_BT_PERIPHERAL)
|
|
|
|
static int cmd_directed_adv(const struct shell *shell,
|
|
|
|
size_t argc, char *argv[])
|
2017-05-22 11:49:31 +03:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
bt_addr_le_t addr;
|
|
|
|
struct bt_conn *conn;
|
2019-01-07 16:51:22 +05:30
|
|
|
struct bt_le_adv_param *param = BT_LE_ADV_CONN_DIR;
|
2017-05-22 11:49:31 +03:00
|
|
|
|
|
|
|
err = str2bt_addr_le(argv[1], argv[2], &addr);
|
|
|
|
if (err) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "Invalid peer address (err %d)", err);
|
2018-10-01 22:08:59 +02:00
|
|
|
return err;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2019-01-07 16:51:22 +05:30
|
|
|
if (argc == 3) {
|
|
|
|
goto connect;
|
|
|
|
}
|
2017-05-22 11:49:31 +03:00
|
|
|
|
2019-01-07 16:51:22 +05:30
|
|
|
if (strcmp(argv[3], "low")) {
|
|
|
|
shell_help(shell);
|
|
|
|
/* shell returns 1 when help is printed */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
param = BT_LE_ADV_CONN_DIR_LOW_DUTY;
|
|
|
|
|
|
|
|
connect:
|
|
|
|
conn = bt_conn_create_slave_le(&addr, param);
|
2017-05-22 11:49:31 +03:00
|
|
|
if (!conn) {
|
2019-01-07 16:51:22 +05:30
|
|
|
shell_error(shell, "Failed to start directed advertising");
|
2018-10-01 22:08:59 +02:00
|
|
|
return -ENOEXEC;
|
2017-05-22 11:49:31 +03:00
|
|
|
} else {
|
2019-01-07 16:51:22 +05:30
|
|
|
shell_print(shell, "Started directed advertising");
|
2017-05-22 11:49:31 +03:00
|
|
|
|
|
|
|
/* unref connection obj in advance as app user */
|
|
|
|
bt_conn_unref(conn);
|
|
|
|
}
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return 0;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
2019-01-07 16:51:22 +05:30
|
|
|
#endif /* CONFIG_BT_PERIPHERAL */
|
|
|
|
#endif /* CONFIG_BT_BROADCASTER */
|
2017-05-22 11:49:31 +03:00
|
|
|
|
2019-01-09 23:14:36 +05:30
|
|
|
#if defined(CONFIG_BT_CONN)
|
2019-01-07 16:51:22 +05:30
|
|
|
#if defined(CONFIG_BT_CENTRAL)
|
|
|
|
static int cmd_connect_le(const struct shell *shell, size_t argc, char *argv[])
|
2017-05-22 11:49:31 +03:00
|
|
|
{
|
|
|
|
int err;
|
2019-01-07 16:51:22 +05:30
|
|
|
bt_addr_le_t addr;
|
|
|
|
struct bt_conn *conn;
|
2017-05-22 11:49:31 +03:00
|
|
|
|
2019-01-07 16:51:22 +05:30
|
|
|
err = str2bt_addr_le(argv[1], argv[2], &addr);
|
|
|
|
if (err) {
|
|
|
|
shell_error(shell, "Invalid peer address (err %d)", err);
|
|
|
|
return err;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2019-01-07 16:51:22 +05:30
|
|
|
conn = bt_conn_create_le(&addr, BT_LE_CONN_PARAM_DEFAULT);
|
|
|
|
|
2017-05-22 11:49:31 +03:00
|
|
|
if (!conn) {
|
2019-01-07 16:51:22 +05:30
|
|
|
shell_error(shell, "Connection failed");
|
2018-10-01 22:08:59 +02:00
|
|
|
return -ENOEXEC;
|
2019-01-07 16:51:22 +05:30
|
|
|
} else {
|
2017-05-22 11:49:31 +03:00
|
|
|
|
2019-01-07 16:51:22 +05:30
|
|
|
shell_print(shell, "Connection pending");
|
2017-05-22 11:49:31 +03:00
|
|
|
|
2019-01-07 16:51:22 +05:30
|
|
|
/* unref connection obj in advance as app user */
|
|
|
|
bt_conn_unref(conn);
|
|
|
|
}
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return 0;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_auto_conn(const struct shell *shell, size_t argc, char *argv[])
|
2017-05-22 11:49:31 +03:00
|
|
|
{
|
|
|
|
bt_addr_le_t addr;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = str2bt_addr_le(argv[1], argv[2], &addr);
|
|
|
|
if (err) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "Invalid peer address (err %d)", err);
|
2018-10-01 22:08:59 +02:00
|
|
|
return err;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (argc < 4) {
|
2018-10-01 22:08:59 +02:00
|
|
|
return bt_le_set_auto_conn(&addr, BT_LE_CONN_PARAM_DEFAULT);
|
2017-05-22 11:49:31 +03:00
|
|
|
} else if (!strcmp(argv[3], "on")) {
|
2018-10-01 22:08:59 +02:00
|
|
|
return bt_le_set_auto_conn(&addr, BT_LE_CONN_PARAM_DEFAULT);
|
2017-05-22 11:49:31 +03:00
|
|
|
} else if (!strcmp(argv[3], "off")) {
|
2018-10-01 22:08:59 +02:00
|
|
|
return bt_le_set_auto_conn(&addr, NULL);
|
2017-05-22 11:49:31 +03:00
|
|
|
} else {
|
2018-12-05 11:45:06 +01:00
|
|
|
shell_help(shell);
|
2019-03-25 11:03:59 +01:00
|
|
|
return SHELL_CMD_HELP_PRINTED;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return 0;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
2019-01-07 16:51:22 +05:30
|
|
|
#endif /* CONFIG_BT_CENTRAL */
|
2017-05-22 11:49:31 +03:00
|
|
|
|
2019-01-07 16:51:22 +05:30
|
|
|
static int cmd_disconnect(const struct shell *shell, size_t argc, char *argv[])
|
2018-08-23 12:07:56 +02:00
|
|
|
{
|
|
|
|
struct bt_conn *conn;
|
2019-01-07 16:51:22 +05:30
|
|
|
int err;
|
2018-08-23 12:07:56 +02:00
|
|
|
|
2019-01-07 16:51:22 +05:30
|
|
|
if (default_conn && argc < 3) {
|
|
|
|
conn = bt_conn_ref(default_conn);
|
|
|
|
} else {
|
|
|
|
bt_addr_le_t addr;
|
2018-08-23 12:07:56 +02:00
|
|
|
|
2019-01-07 16:51:22 +05:30
|
|
|
if (argc < 3) {
|
|
|
|
shell_help(shell);
|
2019-03-25 11:03:59 +01:00
|
|
|
return SHELL_CMD_HELP_PRINTED;
|
2019-01-07 16:51:22 +05:30
|
|
|
}
|
2018-08-23 12:07:56 +02:00
|
|
|
|
2019-01-07 16:51:22 +05:30
|
|
|
err = str2bt_addr_le(argv[1], argv[2], &addr);
|
|
|
|
if (err) {
|
|
|
|
shell_error(shell, "Invalid peer address (err %d)",
|
|
|
|
err);
|
|
|
|
return err;
|
|
|
|
}
|
2018-11-09 14:40:59 +02:00
|
|
|
|
2019-01-07 16:51:22 +05:30
|
|
|
conn = bt_conn_lookup_addr_le(selected_id, &addr);
|
|
|
|
}
|
2018-11-09 14:40:59 +02:00
|
|
|
|
2018-08-23 12:07:56 +02:00
|
|
|
if (!conn) {
|
2019-01-07 16:51:22 +05:30
|
|
|
shell_error(shell, "Not connected");
|
2018-10-01 22:08:59 +02:00
|
|
|
return -ENOEXEC;
|
2019-01-07 16:51:22 +05:30
|
|
|
}
|
2018-08-23 12:07:56 +02:00
|
|
|
|
2019-01-07 16:51:22 +05:30
|
|
|
err = bt_conn_disconnect(conn, BT_HCI_ERR_REMOTE_USER_TERM_CONN);
|
|
|
|
if (err) {
|
|
|
|
shell_error(shell, "Disconnection failed (err %d)", err);
|
|
|
|
return err;
|
2018-08-23 12:07:56 +02:00
|
|
|
}
|
2018-10-01 22:08:59 +02:00
|
|
|
|
2019-01-07 16:51:22 +05:30
|
|
|
bt_conn_unref(conn);
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
return 0;
|
2018-08-23 12:07:56 +02:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_select(const struct shell *shell, size_t argc, char *argv[])
|
2017-05-22 11:49:31 +03:00
|
|
|
{
|
|
|
|
struct bt_conn *conn;
|
|
|
|
bt_addr_le_t addr;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = str2bt_addr_le(argv[1], argv[2], &addr);
|
|
|
|
if (err) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "Invalid peer address (err %d)", err);
|
2018-10-01 22:08:59 +02:00
|
|
|
return err;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-07-04 12:58:10 +03:00
|
|
|
conn = bt_conn_lookup_addr_le(BT_ID_DEFAULT, &addr);
|
2017-05-22 11:49:31 +03:00
|
|
|
if (!conn) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "No matching connection found");
|
2018-10-01 22:08:59 +02:00
|
|
|
return -ENOEXEC;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (default_conn) {
|
|
|
|
bt_conn_unref(default_conn);
|
|
|
|
}
|
|
|
|
|
|
|
|
default_conn = conn;
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return 0;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_conn_update(const struct shell *shell,
|
2018-09-24 10:59:23 +03:00
|
|
|
size_t argc, char *argv[])
|
2017-05-22 11:49:31 +03:00
|
|
|
{
|
|
|
|
struct bt_le_conn_param param;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
param.interval_min = strtoul(argv[1], NULL, 16);
|
|
|
|
param.interval_max = strtoul(argv[2], NULL, 16);
|
|
|
|
param.latency = strtoul(argv[3], NULL, 16);
|
|
|
|
param.timeout = strtoul(argv[4], NULL, 16);
|
|
|
|
|
|
|
|
err = bt_conn_le_param_update(default_conn, ¶m);
|
|
|
|
if (err) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "conn update failed (err %d).", err);
|
2017-05-22 11:49:31 +03:00
|
|
|
} else {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "conn update initiated.");
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return err;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2019-04-03 14:00:50 -04:00
|
|
|
#if defined(CONFIG_BT_CENTRAL)
|
2019-01-07 16:51:22 +05:30
|
|
|
static int cmd_chan_map(const struct shell *shell, size_t argc, char *argv[])
|
|
|
|
{
|
|
|
|
u8_t chan_map[5] = {};
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = hexstr2array(argv[1], chan_map, 5);
|
|
|
|
if (err) {
|
|
|
|
shell_error(shell, "Invalid channel map");
|
|
|
|
return -ENOEXEC;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = bt_le_set_chan_map(chan_map);
|
|
|
|
if (err) {
|
|
|
|
shell_error(shell, "Failed to set channel map (err %d)", err);
|
|
|
|
} else {
|
|
|
|
shell_print(shell, "Channel map set");
|
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
2019-04-03 14:00:50 -04:00
|
|
|
#endif /* CONFIG_BT_CENTRAL */
|
2019-01-07 16:51:22 +05:30
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_oob(const struct shell *shell, size_t argc, char *argv[])
|
2017-05-22 11:49:31 +03:00
|
|
|
{
|
2018-01-04 11:44:50 +01:00
|
|
|
char addr[BT_ADDR_LE_STR_LEN];
|
|
|
|
struct bt_le_oob oob;
|
|
|
|
int err;
|
2017-05-22 11:49:31 +03:00
|
|
|
|
2018-07-16 15:11:08 +03:00
|
|
|
err = bt_le_oob_get_local(selected_id, &oob);
|
2018-01-04 11:44:50 +01:00
|
|
|
if (err) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "OOB data failed");
|
2018-10-01 22:08:59 +02:00
|
|
|
return err;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-01-04 11:44:50 +01:00
|
|
|
bt_addr_le_to_str(&oob.addr, addr, sizeof(addr));
|
2017-05-22 11:49:31 +03:00
|
|
|
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "OOB data:");
|
|
|
|
shell_print(shell, " addr %s", addr);
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return 0;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_clear(const struct shell *shell, size_t argc, char *argv[])
|
2017-05-22 11:49:31 +03:00
|
|
|
{
|
2018-01-04 11:44:50 +01:00
|
|
|
bt_addr_le_t addr;
|
2017-05-22 11:49:31 +03:00
|
|
|
int err;
|
|
|
|
|
2018-01-04 11:44:50 +01:00
|
|
|
if (strcmp(argv[1], "all") == 0) {
|
2018-07-16 15:11:08 +03:00
|
|
|
err = bt_unpair(selected_id, NULL);
|
2018-01-04 11:44:50 +01:00
|
|
|
if (err) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "Failed to clear pairings (err %d)",
|
2018-09-24 10:59:23 +03:00
|
|
|
err);
|
2018-10-01 22:08:59 +02:00
|
|
|
return err;
|
2017-05-22 11:49:31 +03:00
|
|
|
} else {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Pairings successfully cleared");
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
return 0;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-01-04 11:44:50 +01:00
|
|
|
if (argc < 3) {
|
|
|
|
#if defined(CONFIG_BT_BREDR)
|
|
|
|
addr.type = BT_ADDR_LE_PUBLIC;
|
|
|
|
err = str2bt_addr(argv[1], &addr.a);
|
|
|
|
#else
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Both address and address type needed");
|
2018-10-01 22:08:59 +02:00
|
|
|
return -ENOEXEC;
|
2018-01-04 11:44:50 +01:00
|
|
|
#endif
|
2017-05-22 11:49:31 +03:00
|
|
|
} else {
|
2018-01-04 11:44:50 +01:00
|
|
|
err = str2bt_addr_le(argv[1], argv[2], &addr);
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-01-04 11:44:50 +01:00
|
|
|
if (err) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Invalid address");
|
2018-10-01 22:08:59 +02:00
|
|
|
return err;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-07-16 15:11:08 +03:00
|
|
|
err = bt_unpair(selected_id, &addr);
|
2018-01-04 11:44:50 +01:00
|
|
|
if (err) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "Failed to clear pairing (err %d)", err);
|
2017-05-22 11:49:31 +03:00
|
|
|
} else {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Pairing successfully cleared");
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return err;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
2018-01-04 11:44:50 +01:00
|
|
|
#endif /* CONFIG_BT_CONN */
|
2017-05-22 11:49:31 +03:00
|
|
|
|
2018-01-04 11:44:50 +01:00
|
|
|
#if defined(CONFIG_BT_SMP) || defined(CONFIG_BT_BREDR)
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_security(const struct shell *shell, size_t argc, char *argv[])
|
2017-05-22 11:49:31 +03:00
|
|
|
{
|
2018-01-04 11:44:50 +01:00
|
|
|
int err, sec;
|
2017-05-22 11:49:31 +03:00
|
|
|
|
2018-01-04 11:44:50 +01:00
|
|
|
if (!default_conn) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "Not connected");
|
2018-10-01 22:08:59 +02:00
|
|
|
return -ENOEXEC;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-01-04 11:44:50 +01:00
|
|
|
sec = *argv[1] - '0';
|
|
|
|
|
|
|
|
err = bt_conn_security(default_conn, sec);
|
|
|
|
if (err) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "Setting security failed (err %d)", err);
|
2018-01-04 11:44:50 +01:00
|
|
|
}
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return err;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_bondable(const struct shell *shell, size_t argc, char *argv[])
|
2018-09-18 09:44:57 +02:00
|
|
|
{
|
|
|
|
const char *bondable;
|
|
|
|
|
|
|
|
bondable = argv[1];
|
|
|
|
if (!strcmp(bondable, "on")) {
|
|
|
|
bt_set_bondable(true);
|
|
|
|
} else if (!strcmp(bondable, "off")) {
|
|
|
|
bt_set_bondable(false);
|
|
|
|
} else {
|
2018-12-05 11:45:06 +01:00
|
|
|
shell_help(shell);
|
2019-03-25 11:03:59 +01:00
|
|
|
return SHELL_CMD_HELP_PRINTED;
|
2018-09-18 09:44:57 +02:00
|
|
|
}
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return 0;
|
2018-09-18 09:44:57 +02:00
|
|
|
}
|
|
|
|
|
2017-05-22 11:49:31 +03:00
|
|
|
static void auth_passkey_display(struct bt_conn *conn, unsigned int passkey)
|
|
|
|
{
|
|
|
|
char addr[BT_ADDR_LE_STR_LEN];
|
|
|
|
char passkey_str[7];
|
|
|
|
|
|
|
|
bt_addr_le_to_str(bt_conn_get_dst(conn), addr, sizeof(addr));
|
|
|
|
|
2018-09-27 12:49:10 +03:00
|
|
|
snprintk(passkey_str, 7, "%06u", passkey);
|
2017-05-22 11:49:31 +03:00
|
|
|
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(ctx_shell, "Passkey for %s: %s", addr, passkey_str);
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void auth_passkey_confirm(struct bt_conn *conn, unsigned int passkey)
|
|
|
|
{
|
|
|
|
char addr[BT_ADDR_LE_STR_LEN];
|
|
|
|
char passkey_str[7];
|
|
|
|
|
|
|
|
bt_addr_le_to_str(bt_conn_get_dst(conn), addr, sizeof(addr));
|
|
|
|
|
2018-09-27 12:49:10 +03:00
|
|
|
snprintk(passkey_str, 7, "%06u", passkey);
|
2017-05-22 11:49:31 +03:00
|
|
|
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(ctx_shell, "Confirm passkey for %s: %s", addr, passkey_str);
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void auth_passkey_entry(struct bt_conn *conn)
|
|
|
|
{
|
|
|
|
char addr[BT_ADDR_LE_STR_LEN];
|
|
|
|
|
|
|
|
bt_addr_le_to_str(bt_conn_get_dst(conn), addr, sizeof(addr));
|
|
|
|
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(ctx_shell, "Enter passkey for %s", addr);
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void auth_cancel(struct bt_conn *conn)
|
|
|
|
{
|
|
|
|
char addr[BT_ADDR_LE_STR_LEN];
|
|
|
|
|
|
|
|
conn_addr_str(conn, addr, sizeof(addr));
|
|
|
|
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(ctx_shell, "Pairing cancelled: %s", addr);
|
2017-05-22 11:49:31 +03:00
|
|
|
|
|
|
|
/* clear connection reference for sec mode 3 pairing */
|
|
|
|
if (pairing_conn) {
|
|
|
|
bt_conn_unref(pairing_conn);
|
|
|
|
pairing_conn = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void auth_pairing_confirm(struct bt_conn *conn)
|
|
|
|
{
|
|
|
|
char addr[BT_ADDR_LE_STR_LEN];
|
|
|
|
|
|
|
|
bt_addr_le_to_str(bt_conn_get_dst(conn), addr, sizeof(addr));
|
|
|
|
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(ctx_shell, "Confirm pairing for %s", addr);
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-07-31 10:48:32 +03:00
|
|
|
static void auth_pairing_complete(struct bt_conn *conn, bool bonded)
|
|
|
|
{
|
|
|
|
char addr[BT_ADDR_LE_STR_LEN];
|
|
|
|
|
|
|
|
bt_addr_le_to_str(bt_conn_get_dst(conn), addr, sizeof(addr));
|
|
|
|
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(ctx_shell, "%s with %s", bonded ? "Bonded" : "Paired",
|
|
|
|
addr);
|
2018-07-31 10:48:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void auth_pairing_failed(struct bt_conn *conn)
|
|
|
|
{
|
|
|
|
char addr[BT_ADDR_LE_STR_LEN];
|
|
|
|
|
|
|
|
bt_addr_le_to_str(bt_conn_get_dst(conn), addr, sizeof(addr));
|
|
|
|
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(ctx_shell, "Pairing failed with %s", addr);
|
2018-07-31 10:48:32 +03:00
|
|
|
}
|
|
|
|
|
2017-08-09 09:21:11 +03:00
|
|
|
#if defined(CONFIG_BT_BREDR)
|
2017-05-22 11:49:31 +03:00
|
|
|
static void auth_pincode_entry(struct bt_conn *conn, bool highsec)
|
|
|
|
{
|
|
|
|
char addr[BT_ADDR_STR_LEN];
|
|
|
|
struct bt_conn_info info;
|
|
|
|
|
|
|
|
if (bt_conn_get_info(conn, &info) < 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (info.type != BT_CONN_TYPE_BR) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bt_addr_to_str(info.br.dst, addr, sizeof(addr));
|
|
|
|
|
|
|
|
if (highsec) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(ctx_shell, "Enter 16 digits wide PIN code for %s",
|
|
|
|
addr);
|
2017-05-22 11:49:31 +03:00
|
|
|
} else {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(ctx_shell, "Enter PIN code for %s", addr);
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Save connection info since in security mode 3 (link level enforced
|
|
|
|
* security) PIN request callback is called before connected callback
|
|
|
|
*/
|
|
|
|
if (!default_conn && !pairing_conn) {
|
|
|
|
pairing_conn = bt_conn_ref(conn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static struct bt_conn_auth_cb auth_cb_display = {
|
|
|
|
.passkey_display = auth_passkey_display,
|
|
|
|
.passkey_entry = NULL,
|
|
|
|
.passkey_confirm = NULL,
|
2017-08-09 09:21:11 +03:00
|
|
|
#if defined(CONFIG_BT_BREDR)
|
2017-05-22 11:49:31 +03:00
|
|
|
.pincode_entry = auth_pincode_entry,
|
|
|
|
#endif
|
|
|
|
.cancel = auth_cancel,
|
|
|
|
.pairing_confirm = auth_pairing_confirm,
|
2018-07-31 10:48:32 +03:00
|
|
|
.pairing_failed = auth_pairing_failed,
|
|
|
|
.pairing_complete = auth_pairing_complete,
|
2017-05-22 11:49:31 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct bt_conn_auth_cb auth_cb_display_yes_no = {
|
|
|
|
.passkey_display = auth_passkey_display,
|
|
|
|
.passkey_entry = NULL,
|
|
|
|
.passkey_confirm = auth_passkey_confirm,
|
2017-08-09 09:21:11 +03:00
|
|
|
#if defined(CONFIG_BT_BREDR)
|
2017-05-22 11:49:31 +03:00
|
|
|
.pincode_entry = auth_pincode_entry,
|
|
|
|
#endif
|
|
|
|
.cancel = auth_cancel,
|
|
|
|
.pairing_confirm = auth_pairing_confirm,
|
2018-07-31 10:48:32 +03:00
|
|
|
.pairing_failed = auth_pairing_failed,
|
|
|
|
.pairing_complete = auth_pairing_complete,
|
2017-05-22 11:49:31 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct bt_conn_auth_cb auth_cb_input = {
|
|
|
|
.passkey_display = NULL,
|
|
|
|
.passkey_entry = auth_passkey_entry,
|
|
|
|
.passkey_confirm = NULL,
|
2017-08-09 09:21:11 +03:00
|
|
|
#if defined(CONFIG_BT_BREDR)
|
2017-05-22 11:49:31 +03:00
|
|
|
.pincode_entry = auth_pincode_entry,
|
|
|
|
#endif
|
|
|
|
.cancel = auth_cancel,
|
|
|
|
.pairing_confirm = auth_pairing_confirm,
|
2018-07-31 10:48:32 +03:00
|
|
|
.pairing_failed = auth_pairing_failed,
|
|
|
|
.pairing_complete = auth_pairing_complete,
|
2017-05-22 11:49:31 +03:00
|
|
|
};
|
|
|
|
|
2018-07-31 10:50:54 +03:00
|
|
|
static struct bt_conn_auth_cb auth_cb_confirm = {
|
|
|
|
#if defined(CONFIG_BT_BREDR)
|
|
|
|
.pincode_entry = auth_pincode_entry,
|
|
|
|
#endif
|
|
|
|
.cancel = auth_cancel,
|
|
|
|
.pairing_confirm = auth_pairing_confirm,
|
|
|
|
.pairing_failed = auth_pairing_failed,
|
|
|
|
.pairing_complete = auth_pairing_complete,
|
|
|
|
};
|
|
|
|
|
2017-05-22 11:49:31 +03:00
|
|
|
static struct bt_conn_auth_cb auth_cb_all = {
|
|
|
|
.passkey_display = auth_passkey_display,
|
|
|
|
.passkey_entry = auth_passkey_entry,
|
|
|
|
.passkey_confirm = auth_passkey_confirm,
|
2017-08-09 09:21:11 +03:00
|
|
|
#if defined(CONFIG_BT_BREDR)
|
2017-05-22 11:49:31 +03:00
|
|
|
.pincode_entry = auth_pincode_entry,
|
|
|
|
#endif
|
|
|
|
.cancel = auth_cancel,
|
|
|
|
.pairing_confirm = auth_pairing_confirm,
|
2018-07-31 10:48:32 +03:00
|
|
|
.pairing_failed = auth_pairing_failed,
|
|
|
|
.pairing_complete = auth_pairing_complete,
|
2017-05-22 11:49:31 +03:00
|
|
|
};
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_auth(const struct shell *shell, size_t argc, char *argv[])
|
2017-05-22 11:49:31 +03:00
|
|
|
{
|
|
|
|
if (!strcmp(argv[1], "all")) {
|
|
|
|
bt_conn_auth_cb_register(&auth_cb_all);
|
|
|
|
} else if (!strcmp(argv[1], "input")) {
|
|
|
|
bt_conn_auth_cb_register(&auth_cb_input);
|
|
|
|
} else if (!strcmp(argv[1], "display")) {
|
|
|
|
bt_conn_auth_cb_register(&auth_cb_display);
|
|
|
|
} else if (!strcmp(argv[1], "yesno")) {
|
|
|
|
bt_conn_auth_cb_register(&auth_cb_display_yes_no);
|
2018-07-31 10:50:54 +03:00
|
|
|
} else if (!strcmp(argv[1], "confirm")) {
|
|
|
|
bt_conn_auth_cb_register(&auth_cb_confirm);
|
2017-05-22 11:49:31 +03:00
|
|
|
} else if (!strcmp(argv[1], "none")) {
|
|
|
|
bt_conn_auth_cb_register(NULL);
|
|
|
|
} else {
|
2018-12-05 11:45:06 +01:00
|
|
|
shell_help(shell);
|
2019-03-25 11:03:59 +01:00
|
|
|
return SHELL_CMD_HELP_PRINTED;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return 0;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_auth_cancel(const struct shell *shell,
|
2018-09-24 10:59:23 +03:00
|
|
|
size_t argc, char *argv[])
|
2017-05-22 11:49:31 +03:00
|
|
|
{
|
|
|
|
struct bt_conn *conn;
|
|
|
|
|
|
|
|
if (default_conn) {
|
|
|
|
conn = default_conn;
|
|
|
|
} else if (pairing_conn) {
|
|
|
|
conn = pairing_conn;
|
|
|
|
} else {
|
|
|
|
conn = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!conn) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Not connected");
|
2018-10-01 22:08:59 +02:00
|
|
|
return -ENOEXEC;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bt_conn_auth_cancel(conn);
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return 0;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_auth_passkey_confirm(const struct shell *shell,
|
2018-09-24 10:59:23 +03:00
|
|
|
size_t argc, char *argv[])
|
2017-05-22 11:49:31 +03:00
|
|
|
{
|
|
|
|
if (!default_conn) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Not connected");
|
2018-10-01 22:08:59 +02:00
|
|
|
return -ENOEXEC;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bt_conn_auth_passkey_confirm(default_conn);
|
2018-10-01 22:08:59 +02:00
|
|
|
return 0;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_auth_pairing_confirm(const struct shell *shell,
|
2018-09-24 10:59:23 +03:00
|
|
|
size_t argc, char *argv[])
|
2017-05-22 11:49:31 +03:00
|
|
|
{
|
|
|
|
if (!default_conn) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Not connected");
|
2018-10-01 22:08:59 +02:00
|
|
|
return -ENOEXEC;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bt_conn_auth_pairing_confirm(default_conn);
|
2018-10-01 22:08:59 +02:00
|
|
|
return 0;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
2018-07-30 20:30:26 +03:00
|
|
|
#if defined(CONFIG_BT_FIXED_PASSKEY)
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_fixed_passkey(const struct shell *shell,
|
2018-09-24 10:59:23 +03:00
|
|
|
size_t argc, char *argv[])
|
2018-07-30 20:30:26 +03:00
|
|
|
{
|
|
|
|
unsigned int passkey;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (argc < 2) {
|
|
|
|
bt_passkey_set(BT_PASSKEY_INVALID);
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Fixed passkey cleared");
|
2018-10-01 22:08:59 +02:00
|
|
|
return 0;
|
2018-07-30 20:30:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
passkey = atoi(argv[1]);
|
|
|
|
if (passkey > 999999) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Passkey should be between 0-999999");
|
2018-10-01 22:08:59 +02:00
|
|
|
return -ENOEXEC;
|
2018-07-30 20:30:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
err = bt_passkey_set(passkey);
|
|
|
|
if (err) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Setting fixed passkey failed (err %d)",
|
|
|
|
err);
|
2018-07-30 20:30:26 +03:00
|
|
|
}
|
2018-10-01 22:08:59 +02:00
|
|
|
|
|
|
|
return err;
|
2018-07-30 20:30:26 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_auth_passkey(const struct shell *shell,
|
2018-09-24 10:59:23 +03:00
|
|
|
size_t argc, char *argv[])
|
2017-05-22 11:49:31 +03:00
|
|
|
{
|
|
|
|
unsigned int passkey;
|
|
|
|
|
|
|
|
if (!default_conn) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Not connected");
|
2018-10-01 22:08:59 +02:00
|
|
|
return -ENOEXEC;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
passkey = atoi(argv[1]);
|
|
|
|
if (passkey > 999999) {
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_print(shell, "Passkey should be between 0-999999");
|
2018-10-18 14:52:46 +02:00
|
|
|
return -EINVAL;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bt_conn_auth_passkey_entry(default_conn, passkey);
|
2018-10-01 22:08:59 +02:00
|
|
|
return 0;
|
2017-05-22 11:49:31 +03:00
|
|
|
}
|
2017-08-09 09:21:11 +03:00
|
|
|
#endif /* CONFIG_BT_SMP) || CONFIG_BT_BREDR */
|
2017-05-22 11:49:31 +03:00
|
|
|
|
2018-09-27 12:49:10 +03:00
|
|
|
|
2017-05-22 11:49:31 +03:00
|
|
|
#define HELP_NONE "[none]"
|
|
|
|
#define HELP_ADDR_LE "<address: XX:XX:XX:XX:XX:XX> <type: (public|random)>"
|
2017-05-22 10:17:22 +03:00
|
|
|
|
2019-02-13 14:53:29 +01:00
|
|
|
SHELL_STATIC_SUBCMD_SET_CREATE(bt_cmds,
|
2018-11-12 16:15:35 +02:00
|
|
|
SHELL_CMD_ARG(init, NULL, HELP_ADDR_LE, cmd_init, 1, 0),
|
2018-07-09 13:33:07 +03:00
|
|
|
#if defined(CONFIG_BT_HCI)
|
2018-11-12 16:15:35 +02:00
|
|
|
SHELL_CMD_ARG(hci-cmd, NULL, "<ogf> <ocf> [data]", cmd_hci_cmd, 3, 1),
|
2018-07-09 13:33:07 +03:00
|
|
|
#endif
|
2018-11-12 16:15:35 +02:00
|
|
|
SHELL_CMD_ARG(id-create, NULL, "[addr]", cmd_id_create, 1, 1),
|
|
|
|
SHELL_CMD_ARG(id-reset, NULL, "<id> [addr]", cmd_id_reset, 2, 1),
|
|
|
|
SHELL_CMD_ARG(id-delete, NULL, "<id>", cmd_id_delete, 2, 0),
|
|
|
|
SHELL_CMD_ARG(id-show, NULL, HELP_NONE, cmd_id_show, 1, 0),
|
|
|
|
SHELL_CMD_ARG(id-select, NULL, "<id>", cmd_id_select, 2, 0),
|
|
|
|
SHELL_CMD_ARG(name, NULL, "[name]", cmd_name, 1, 1),
|
2019-01-07 16:51:22 +05:30
|
|
|
#if defined(CONFIG_BT_OBSERVER)
|
2018-11-12 16:15:35 +02:00
|
|
|
SHELL_CMD_ARG(scan, NULL,
|
|
|
|
"<value: on, passive, off> <dup filter: dups, nodups>",
|
2019-03-25 11:08:53 +01:00
|
|
|
cmd_scan, 2, 1),
|
2019-01-07 16:51:22 +05:30
|
|
|
#endif /* CONFIG_BT_OBSERVER */
|
|
|
|
#if defined(CONFIG_BT_BROADCASTER)
|
2018-11-12 16:15:35 +02:00
|
|
|
SHELL_CMD_ARG(advertise, NULL,
|
|
|
|
"<type: off, on, scan, nconn> <mode: discov, non_discov>",
|
2018-12-18 11:48:59 +01:00
|
|
|
cmd_advertise, 2, 1),
|
2019-01-07 16:51:22 +05:30
|
|
|
#if defined(CONFIG_BT_PERIPHERAL)
|
|
|
|
SHELL_CMD_ARG(directed-adv, NULL, HELP_ADDR_LE " [mode: low]",
|
|
|
|
cmd_directed_adv, 1, 1),
|
|
|
|
#endif /* CONFIG_BT_PERIPHERAL */
|
|
|
|
#endif /* CONFIG_BT_BROADCASTER */
|
2018-01-04 11:44:50 +01:00
|
|
|
#if defined(CONFIG_BT_CONN)
|
2019-01-07 16:51:22 +05:30
|
|
|
#if defined(CONFIG_BT_CENTRAL)
|
2018-11-12 16:15:35 +02:00
|
|
|
SHELL_CMD_ARG(connect, NULL, HELP_ADDR_LE, cmd_connect_le, 3, 0),
|
|
|
|
SHELL_CMD_ARG(auto-conn, NULL, HELP_ADDR_LE, cmd_auto_conn, 3, 0),
|
2019-01-07 16:51:22 +05:30
|
|
|
#endif /* CONFIG_BT_CENTRAL */
|
2019-06-04 17:06:43 +02:00
|
|
|
SHELL_CMD_ARG(disconnect, NULL, HELP_NONE, cmd_disconnect, 1, 2),
|
2018-11-12 16:15:35 +02:00
|
|
|
SHELL_CMD_ARG(select, NULL, HELP_ADDR_LE, cmd_select, 3, 0),
|
|
|
|
SHELL_CMD_ARG(conn-update, NULL, "<min> <max> <latency> <timeout>",
|
|
|
|
cmd_conn_update, 5, 0),
|
2019-01-07 16:51:22 +05:30
|
|
|
#if defined(CONFIG_BT_CENTRAL)
|
2018-11-12 16:15:35 +02:00
|
|
|
SHELL_CMD_ARG(channel-map, NULL, "<channel-map: XX:XX:XX:XX:XX> (36-0)",
|
|
|
|
cmd_chan_map, 2, 1),
|
2019-01-07 16:51:22 +05:30
|
|
|
#endif /* CONFIG_BT_CENTRAL */
|
|
|
|
SHELL_CMD_ARG(oob, NULL, NULL, cmd_oob, 1, 0),
|
2019-07-10 12:12:16 +02:00
|
|
|
SHELL_CMD_ARG(clear, NULL, "<remote: addr, all>", cmd_clear, 2, 1),
|
2017-08-09 09:21:11 +03:00
|
|
|
#if defined(CONFIG_BT_SMP) || defined(CONFIG_BT_BREDR)
|
2018-11-12 16:15:35 +02:00
|
|
|
SHELL_CMD_ARG(security, NULL, "<security level: 0, 1, 2, 3>",
|
|
|
|
cmd_security, 2, 0),
|
|
|
|
SHELL_CMD_ARG(bondable, NULL, "<bondable: on, off>", cmd_bondable,
|
|
|
|
2, 0),
|
|
|
|
SHELL_CMD_ARG(auth, NULL,
|
|
|
|
"<method: all, input, display, yesno, confirm, none>",
|
|
|
|
cmd_auth, 2, 0),
|
|
|
|
SHELL_CMD_ARG(auth-cancel, NULL, HELP_NONE, cmd_auth_cancel, 1, 0),
|
|
|
|
SHELL_CMD_ARG(auth-passkey, NULL, "<passkey>", cmd_auth_passkey, 2, 0),
|
|
|
|
SHELL_CMD_ARG(auth-passkey-confirm, NULL, HELP_NONE,
|
|
|
|
cmd_auth_passkey_confirm, 1, 0),
|
|
|
|
SHELL_CMD_ARG(auth-pairing-confirm, NULL, HELP_NONE,
|
|
|
|
cmd_auth_pairing_confirm, 1, 0),
|
2018-07-30 20:30:26 +03:00
|
|
|
#if defined(CONFIG_BT_FIXED_PASSKEY)
|
2018-11-12 16:15:35 +02:00
|
|
|
SHELL_CMD_ARG(fixed-passkey, NULL, "[passkey]", cmd_fixed_passkey,
|
|
|
|
1, 1),
|
2018-07-30 20:30:26 +03:00
|
|
|
#endif
|
2017-08-09 09:21:11 +03:00
|
|
|
#endif /* CONFIG_BT_SMP || CONFIG_BT_BREDR) */
|
2018-01-04 11:44:50 +01:00
|
|
|
#endif /* CONFIG_BT_CONN */
|
2019-01-09 23:14:36 +05:30
|
|
|
#if defined(CONFIG_BT_HCI_MESH_EXT)
|
|
|
|
SHELL_CMD(mesh_adv, NULL, "<on, off>", cmd_mesh_adv),
|
|
|
|
#endif /* CONFIG_BT_HCI_MESH_EXT */
|
2017-08-14 13:45:13 +02:00
|
|
|
#if defined(CONFIG_BT_CTLR_ADV_EXT)
|
2019-01-07 16:51:22 +05:30
|
|
|
#if defined(CONFIG_BT_BROADCASTER)
|
2018-11-12 16:15:35 +02:00
|
|
|
SHELL_CMD_ARG(advx, NULL, "<on off> [coded] [anon] [txp]", cmd_advx,
|
|
|
|
2, 3),
|
2019-01-07 16:51:22 +05:30
|
|
|
#endif /* CONFIG_BT_BROADCASTER */
|
|
|
|
#if defined(CONFIG_BT_OBSERVER)
|
2018-11-12 16:15:35 +02:00
|
|
|
SHELL_CMD_ARG(scanx, NULL, "<on passive off> [coded]", cmd_scanx,
|
|
|
|
2, 1),
|
2019-01-07 16:51:22 +05:30
|
|
|
#endif /* CONFIG_BT_OBSERVER */
|
2017-09-27 13:00:38 +02:00
|
|
|
#endif /* CONFIG_BT_CTLR_ADV_EXT */
|
2018-09-25 15:16:55 +02:00
|
|
|
#if defined(CONFIG_BT_LL_SW)
|
2018-11-12 16:15:35 +02:00
|
|
|
SHELL_CMD_ARG(ll-addr, NULL, "<random|public>", cmd_ll_addr_get, 2, 0),
|
2018-09-25 15:16:55 +02:00
|
|
|
#endif
|
2017-09-27 13:00:38 +02:00
|
|
|
#if defined(CONFIG_BT_CTLR_DTM)
|
2018-11-12 16:15:35 +02:00
|
|
|
SHELL_CMD_ARG(test_tx, NULL, "<chan> <len> <type> <phy>", cmd_test_tx,
|
|
|
|
5, 0),
|
|
|
|
SHELL_CMD_ARG(test_rx, NULL, "<chan> <phy> <mod_idx>", cmd_test_rx,
|
|
|
|
4, 0),
|
|
|
|
SHELL_CMD_ARG(test_end, NULL, HELP_NONE, cmd_test_end, 1, 0),
|
2017-08-14 13:45:13 +02:00
|
|
|
#endif /* CONFIG_BT_CTLR_ADV_EXT */
|
2019-01-09 23:14:36 +05:30
|
|
|
#if defined(CONFIG_BT_LL_SW_SPLIT)
|
|
|
|
SHELL_CMD(ull_reset, NULL, HELP_NONE, cmd_ull_reset),
|
|
|
|
#endif /* CONFIG_BT_LL_SW_SPLIT */
|
2018-09-24 10:59:23 +03:00
|
|
|
SHELL_SUBCMD_SET_END
|
2019-02-13 14:53:29 +01:00
|
|
|
);
|
2017-05-22 10:17:22 +03:00
|
|
|
|
2018-10-01 22:08:59 +02:00
|
|
|
static int cmd_bt(const struct shell *shell, size_t argc, char **argv)
|
2018-09-24 10:59:23 +03:00
|
|
|
{
|
|
|
|
if (argc == 1) {
|
2018-12-05 11:45:06 +01:00
|
|
|
shell_help(shell);
|
2019-03-25 11:03:59 +01:00
|
|
|
return SHELL_CMD_HELP_PRINTED;
|
2018-09-24 10:59:23 +03:00
|
|
|
}
|
|
|
|
|
2018-11-12 15:15:20 +02:00
|
|
|
shell_error(shell, "%s unknown parameter: %s", argv[0], argv[1]);
|
2018-10-02 16:18:38 +03:00
|
|
|
|
2018-10-18 14:52:46 +02:00
|
|
|
return -EINVAL;
|
2018-09-24 10:59:23 +03:00
|
|
|
}
|
|
|
|
|
2019-03-25 11:05:59 +01:00
|
|
|
SHELL_CMD_REGISTER(bt, &bt_cmds, "Bluetooth shell commands", cmd_bt);
|