You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1111 lines
25 KiB
1111 lines
25 KiB
/* |
|
* Copyright (c) 2017 Intel Corporation |
|
* Copyright (c) 2021 Lingao Meng |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
#include <zephyr/kernel.h> |
|
#include <zephyr/sys/byteorder.h> |
|
#include <zephyr/sys/iterable_sections.h> |
|
#include <zephyr/net/buf.h> |
|
#include <zephyr/bluetooth/bluetooth.h> |
|
#include <zephyr/bluetooth/conn.h> |
|
#include <zephyr/bluetooth/gatt.h> |
|
#include <zephyr/bluetooth/mesh.h> |
|
#include <zephyr/sys/util.h> |
|
|
|
#include <zephyr/bluetooth/hci.h> |
|
|
|
#include "common/bt_str.h" |
|
|
|
#include "mesh.h" |
|
#include "adv.h" |
|
#include "net.h" |
|
#include "rpl.h" |
|
#include "transport.h" |
|
#include "prov.h" |
|
#include "beacon.h" |
|
#include "foundation.h" |
|
#include "access.h" |
|
#include "proxy.h" |
|
#include "proxy_msg.h" |
|
#include "crypto.h" |
|
|
|
#define LOG_LEVEL CONFIG_BT_MESH_PROXY_LOG_LEVEL |
|
#include <zephyr/logging/log.h> |
|
LOG_MODULE_REGISTER(bt_mesh_gatt); |
|
|
|
/* Interval to update random value in (10 minutes). |
|
* |
|
* Defined in the Bluetooth Mesh Specification v1.1, Section 7.2.2.2.4. |
|
*/ |
|
#define PROXY_RANDOM_UPDATE_INTERVAL (10 * 60 * MSEC_PER_SEC) |
|
|
|
#if defined(CONFIG_BT_MESH_PROXY_USE_DEVICE_NAME) |
|
#define ADV_OPT_USE_NAME BT_LE_ADV_OPT_USE_NAME |
|
#else |
|
#define ADV_OPT_USE_NAME 0 |
|
#endif |
|
|
|
#define ADV_OPT_PROXY \ |
|
(BT_LE_ADV_OPT_CONNECTABLE | BT_LE_ADV_OPT_SCANNABLE | \ |
|
BT_LE_ADV_OPT_ONE_TIME | ADV_OPT_USE_IDENTITY | \ |
|
ADV_OPT_USE_NAME) |
|
|
|
static void proxy_send_beacons(struct k_work *work); |
|
static int proxy_send(struct bt_conn *conn, |
|
const void *data, uint16_t len, |
|
bt_gatt_complete_func_t end, void *user_data); |
|
|
|
static struct bt_mesh_proxy_client { |
|
struct bt_mesh_proxy_role *cli; |
|
uint16_t filter[CONFIG_BT_MESH_PROXY_FILTER_SIZE]; |
|
enum __packed { |
|
NONE, |
|
ACCEPT, |
|
REJECT, |
|
} filter_type; |
|
struct k_work send_beacons; |
|
} clients[CONFIG_BT_MAX_CONN] = { |
|
[0 ... (CONFIG_BT_MAX_CONN - 1)] = { |
|
.send_beacons = Z_WORK_INITIALIZER(proxy_send_beacons), |
|
}, |
|
}; |
|
|
|
static bool service_registered; |
|
|
|
static struct bt_mesh_proxy_client *find_client(struct bt_conn *conn) |
|
{ |
|
return &clients[bt_conn_index(conn)]; |
|
} |
|
|
|
static ssize_t gatt_recv(struct bt_conn *conn, |
|
const struct bt_gatt_attr *attr, const void *buf, |
|
uint16_t len, uint16_t offset, uint8_t flags) |
|
{ |
|
const uint8_t *data = buf; |
|
|
|
if (len < 1) { |
|
LOG_WRN("Too small Proxy PDU"); |
|
return -EINVAL; |
|
} |
|
|
|
if (PDU_TYPE(data) == BT_MESH_PROXY_PROV) { |
|
LOG_WRN("Proxy PDU type doesn't match GATT service"); |
|
return -EINVAL; |
|
} |
|
|
|
return bt_mesh_proxy_msg_recv(conn, buf, len); |
|
} |
|
|
|
/* Next subnet in queue to be advertised */ |
|
static struct bt_mesh_subnet *beacon_sub; |
|
|
|
static int filter_set(struct bt_mesh_proxy_client *client, |
|
struct net_buf_simple *buf) |
|
{ |
|
uint8_t type; |
|
|
|
if (buf->len < 1) { |
|
LOG_WRN("Too short Filter Set message"); |
|
return -EINVAL; |
|
} |
|
|
|
type = net_buf_simple_pull_u8(buf); |
|
LOG_DBG("type 0x%02x", type); |
|
|
|
switch (type) { |
|
case 0x00: |
|
(void)memset(client->filter, 0, sizeof(client->filter)); |
|
client->filter_type = ACCEPT; |
|
break; |
|
case 0x01: |
|
(void)memset(client->filter, 0, sizeof(client->filter)); |
|
client->filter_type = REJECT; |
|
break; |
|
default: |
|
LOG_WRN("Prohibited Filter Type 0x%02x", type); |
|
return -EINVAL; |
|
} |
|
|
|
return 0; |
|
} |
|
|
|
static void filter_add(struct bt_mesh_proxy_client *client, uint16_t addr) |
|
{ |
|
int i; |
|
|
|
LOG_DBG("addr 0x%04x", addr); |
|
|
|
if (addr == BT_MESH_ADDR_UNASSIGNED) { |
|
return; |
|
} |
|
|
|
for (i = 0; i < ARRAY_SIZE(client->filter); i++) { |
|
if (client->filter[i] == addr) { |
|
return; |
|
} |
|
} |
|
|
|
for (i = 0; i < ARRAY_SIZE(client->filter); i++) { |
|
if (client->filter[i] == BT_MESH_ADDR_UNASSIGNED) { |
|
client->filter[i] = addr; |
|
return; |
|
} |
|
} |
|
} |
|
|
|
static void filter_remove(struct bt_mesh_proxy_client *client, uint16_t addr) |
|
{ |
|
int i; |
|
|
|
LOG_DBG("addr 0x%04x", addr); |
|
|
|
if (addr == BT_MESH_ADDR_UNASSIGNED) { |
|
return; |
|
} |
|
|
|
for (i = 0; i < ARRAY_SIZE(client->filter); i++) { |
|
if (client->filter[i] == addr) { |
|
client->filter[i] = BT_MESH_ADDR_UNASSIGNED; |
|
return; |
|
} |
|
} |
|
} |
|
|
|
static void send_filter_status(struct bt_mesh_proxy_client *client, |
|
struct bt_mesh_net_rx *rx, |
|
struct net_buf_simple *buf) |
|
{ |
|
struct bt_mesh_net_tx tx = { |
|
.sub = rx->sub, |
|
.ctx = &rx->ctx, |
|
.src = bt_mesh_primary_addr(), |
|
}; |
|
uint16_t filter_size; |
|
int i, err; |
|
|
|
/* Configuration messages always have dst unassigned */ |
|
tx.ctx->addr = BT_MESH_ADDR_UNASSIGNED; |
|
|
|
net_buf_simple_reset(buf); |
|
net_buf_simple_reserve(buf, 10); |
|
|
|
net_buf_simple_add_u8(buf, CFG_FILTER_STATUS); |
|
|
|
if (client->filter_type == ACCEPT) { |
|
net_buf_simple_add_u8(buf, 0x00); |
|
} else { |
|
net_buf_simple_add_u8(buf, 0x01); |
|
} |
|
|
|
for (filter_size = 0U, i = 0; i < ARRAY_SIZE(client->filter); i++) { |
|
if (client->filter[i] != BT_MESH_ADDR_UNASSIGNED) { |
|
filter_size++; |
|
} |
|
} |
|
|
|
net_buf_simple_add_be16(buf, filter_size); |
|
|
|
LOG_DBG("%u bytes: %s", buf->len, bt_hex(buf->data, buf->len)); |
|
|
|
err = bt_mesh_net_encode(&tx, buf, BT_MESH_NONCE_PROXY); |
|
if (err) { |
|
LOG_ERR("Encoding Proxy cfg message failed (err %d)", err); |
|
return; |
|
} |
|
|
|
err = bt_mesh_proxy_msg_send(client->cli->conn, BT_MESH_PROXY_CONFIG, |
|
buf, NULL, NULL); |
|
if (err) { |
|
LOG_ERR("Failed to send proxy cfg message (err %d)", err); |
|
} |
|
} |
|
|
|
static void proxy_filter_recv(struct bt_conn *conn, |
|
struct bt_mesh_net_rx *rx, struct net_buf_simple *buf) |
|
{ |
|
struct bt_mesh_proxy_client *client; |
|
uint8_t opcode; |
|
|
|
client = find_client(conn); |
|
|
|
opcode = net_buf_simple_pull_u8(buf); |
|
switch (opcode) { |
|
case CFG_FILTER_SET: |
|
filter_set(client, buf); |
|
send_filter_status(client, rx, buf); |
|
break; |
|
case CFG_FILTER_ADD: |
|
while (buf->len >= 2) { |
|
uint16_t addr; |
|
|
|
addr = net_buf_simple_pull_be16(buf); |
|
filter_add(client, addr); |
|
} |
|
send_filter_status(client, rx, buf); |
|
break; |
|
case CFG_FILTER_REMOVE: |
|
while (buf->len >= 2) { |
|
uint16_t addr; |
|
|
|
addr = net_buf_simple_pull_be16(buf); |
|
filter_remove(client, addr); |
|
} |
|
send_filter_status(client, rx, buf); |
|
break; |
|
default: |
|
LOG_WRN("Unhandled configuration OpCode 0x%02x", opcode); |
|
break; |
|
} |
|
} |
|
|
|
static void proxy_cfg(struct bt_mesh_proxy_role *role) |
|
{ |
|
NET_BUF_SIMPLE_DEFINE(buf, BT_MESH_NET_MAX_PDU_LEN); |
|
struct bt_mesh_net_rx rx; |
|
int err; |
|
|
|
err = bt_mesh_net_decode(&role->buf, BT_MESH_NET_IF_PROXY_CFG, |
|
&rx, &buf); |
|
if (err) { |
|
LOG_ERR("Failed to decode Proxy Configuration (err %d)", err); |
|
return; |
|
} |
|
|
|
rx.local_match = 1U; |
|
|
|
if (bt_mesh_rpl_check(&rx, NULL)) { |
|
LOG_WRN("Replay: src 0x%04x dst 0x%04x seq 0x%06x", rx.ctx.addr, rx.ctx.recv_dst, |
|
rx.seq); |
|
return; |
|
} |
|
|
|
/* Remove network headers */ |
|
net_buf_simple_pull(&buf, BT_MESH_NET_HDR_LEN); |
|
|
|
LOG_DBG("%u bytes: %s", buf.len, bt_hex(buf.data, buf.len)); |
|
|
|
if (buf.len < 1) { |
|
LOG_WRN("Too short proxy configuration PDU"); |
|
return; |
|
} |
|
|
|
proxy_filter_recv(role->conn, &rx, &buf); |
|
} |
|
|
|
static void proxy_msg_recv(struct bt_mesh_proxy_role *role) |
|
{ |
|
switch (role->msg_type) { |
|
case BT_MESH_PROXY_NET_PDU: |
|
LOG_DBG("Mesh Network PDU"); |
|
bt_mesh_net_recv(&role->buf, 0, BT_MESH_NET_IF_PROXY); |
|
break; |
|
case BT_MESH_PROXY_BEACON: |
|
LOG_DBG("Mesh Beacon PDU"); |
|
bt_mesh_beacon_recv(&role->buf); |
|
break; |
|
case BT_MESH_PROXY_CONFIG: |
|
LOG_DBG("Mesh Configuration PDU"); |
|
proxy_cfg(role); |
|
break; |
|
default: |
|
LOG_WRN("Unhandled Message Type 0x%02x", role->msg_type); |
|
break; |
|
} |
|
} |
|
|
|
static int beacon_send(struct bt_mesh_proxy_client *client, |
|
struct bt_mesh_subnet *sub) |
|
{ |
|
int err; |
|
|
|
NET_BUF_SIMPLE_DEFINE(buf, 28); |
|
|
|
net_buf_simple_reserve(&buf, 1); |
|
err = bt_mesh_beacon_create(sub, &buf); |
|
if (err) { |
|
return err; |
|
} |
|
|
|
return bt_mesh_proxy_msg_send(client->cli->conn, BT_MESH_PROXY_BEACON, |
|
&buf, NULL, NULL); |
|
} |
|
|
|
static bool send_beacon_cb(struct bt_mesh_subnet *sub, void *cb_data) |
|
{ |
|
struct bt_mesh_proxy_client *client = cb_data; |
|
|
|
return beacon_send(client, sub) != 0; |
|
} |
|
|
|
static void proxy_send_beacons(struct k_work *work) |
|
{ |
|
struct bt_mesh_proxy_client *client; |
|
|
|
client = CONTAINER_OF(work, struct bt_mesh_proxy_client, send_beacons); |
|
|
|
(void)bt_mesh_subnet_find(send_beacon_cb, client); |
|
} |
|
|
|
void bt_mesh_proxy_beacon_send(struct bt_mesh_subnet *sub) |
|
{ |
|
int i; |
|
|
|
if (!sub) { |
|
/* NULL means we send on all subnets */ |
|
bt_mesh_subnet_foreach(bt_mesh_proxy_beacon_send); |
|
return; |
|
} |
|
|
|
for (i = 0; i < ARRAY_SIZE(clients); i++) { |
|
if (clients[i].cli) { |
|
beacon_send(&clients[i], sub); |
|
} |
|
} |
|
} |
|
|
|
static void identity_enabled(struct bt_mesh_subnet *sub) |
|
{ |
|
sub->node_id = BT_MESH_NODE_IDENTITY_RUNNING; |
|
sub->node_id_start = k_uptime_get_32(); |
|
|
|
STRUCT_SECTION_FOREACH(bt_mesh_proxy_cb, cb) { |
|
if (cb->identity_enabled) { |
|
cb->identity_enabled(sub->net_idx); |
|
} |
|
} |
|
} |
|
|
|
static void node_id_start(struct bt_mesh_subnet *sub) |
|
{ |
|
#if defined(CONFIG_BT_MESH_PRIV_BEACONS) |
|
sub->priv_beacon_ctx.node_id = false; |
|
#endif |
|
|
|
identity_enabled(sub); |
|
} |
|
|
|
static void private_node_id_start(struct bt_mesh_subnet *sub) |
|
{ |
|
#if defined(CONFIG_BT_MESH_PRIV_BEACONS) |
|
sub->priv_beacon_ctx.node_id = true; |
|
#endif |
|
|
|
identity_enabled(sub); |
|
} |
|
|
|
void bt_mesh_proxy_identity_start(struct bt_mesh_subnet *sub, bool private) |
|
{ |
|
if (private) { |
|
private_node_id_start(sub); |
|
} else { |
|
node_id_start(sub); |
|
} |
|
|
|
/* Prioritize the recently enabled subnet */ |
|
beacon_sub = sub; |
|
} |
|
|
|
void bt_mesh_proxy_identity_stop(struct bt_mesh_subnet *sub) |
|
{ |
|
sub->node_id = BT_MESH_NODE_IDENTITY_STOPPED; |
|
sub->node_id_start = 0U; |
|
|
|
STRUCT_SECTION_FOREACH(bt_mesh_proxy_cb, cb) { |
|
if (cb->identity_disabled) { |
|
cb->identity_disabled(sub->net_idx); |
|
} |
|
} |
|
} |
|
|
|
int bt_mesh_proxy_identity_enable(void) |
|
{ |
|
LOG_DBG(""); |
|
|
|
if (!bt_mesh_is_provisioned()) { |
|
return -EAGAIN; |
|
} |
|
|
|
if (bt_mesh_subnet_foreach(node_id_start)) { |
|
bt_mesh_adv_gatt_update(); |
|
} |
|
|
|
return 0; |
|
} |
|
|
|
int bt_mesh_proxy_private_identity_enable(void) |
|
{ |
|
LOG_DBG(""); |
|
|
|
if (!IS_ENABLED(CONFIG_BT_MESH_PRIV_BEACONS)) { |
|
return -ENOTSUP; |
|
} |
|
|
|
if (!bt_mesh_is_provisioned()) { |
|
return -EAGAIN; |
|
} |
|
|
|
if (bt_mesh_subnet_foreach(private_node_id_start)) { |
|
bt_mesh_adv_gatt_update(); |
|
} |
|
|
|
return 0; |
|
} |
|
|
|
#define ENC_ID_LEN 19 |
|
#define NET_ID_LEN 11 |
|
|
|
#define NODE_ID_TIMEOUT (CONFIG_BT_MESH_NODE_ID_TIMEOUT * MSEC_PER_SEC) |
|
|
|
static uint8_t proxy_svc_data[ENC_ID_LEN] = { |
|
BT_UUID_16_ENCODE(BT_UUID_MESH_PROXY_VAL), |
|
}; |
|
|
|
static const struct bt_data enc_id_ad[] = { |
|
BT_DATA_BYTES(BT_DATA_FLAGS, (BT_LE_AD_GENERAL | BT_LE_AD_NO_BREDR)), |
|
BT_DATA_BYTES(BT_DATA_UUID16_ALL, |
|
BT_UUID_16_ENCODE(BT_UUID_MESH_PROXY_VAL)), |
|
BT_DATA(BT_DATA_SVC_DATA16, proxy_svc_data, ENC_ID_LEN), |
|
}; |
|
|
|
static const struct bt_data net_id_ad[] = { |
|
BT_DATA_BYTES(BT_DATA_FLAGS, (BT_LE_AD_GENERAL | BT_LE_AD_NO_BREDR)), |
|
BT_DATA_BYTES(BT_DATA_UUID16_ALL, |
|
BT_UUID_16_ENCODE(BT_UUID_MESH_PROXY_VAL)), |
|
BT_DATA(BT_DATA_SVC_DATA16, proxy_svc_data, NET_ID_LEN), |
|
}; |
|
|
|
static int randomize_bt_addr(void) |
|
{ |
|
/* TODO: There appears to be no way to force an RPA/NRPA refresh. */ |
|
return 0; |
|
} |
|
|
|
static int enc_id_adv(struct bt_mesh_subnet *sub, uint8_t type, |
|
uint8_t hash[16], int32_t duration) |
|
{ |
|
struct bt_le_adv_param slow_adv_param = { |
|
.options = ADV_OPT_PROXY, |
|
ADV_SLOW_INT, |
|
}; |
|
struct bt_le_adv_param fast_adv_param = { |
|
.options = ADV_OPT_PROXY, |
|
ADV_FAST_INT, |
|
}; |
|
int err; |
|
|
|
err = bt_mesh_encrypt(sub->keys[SUBNET_KEY_TX_IDX(sub)].identity, hash, hash); |
|
if (err) { |
|
return err; |
|
} |
|
|
|
/* Section 7.2.2.2.4: The AdvA field shall be regenerated whenever the Random field is |
|
* regenerated. |
|
*/ |
|
err = randomize_bt_addr(); |
|
if (err) { |
|
LOG_ERR("AdvA refresh failed: %d", err); |
|
return err; |
|
} |
|
|
|
proxy_svc_data[2] = type; |
|
memcpy(&proxy_svc_data[3], &hash[8], 8); |
|
|
|
err = bt_mesh_adv_gatt_start( |
|
type == BT_MESH_ID_TYPE_PRIV_NET ? &slow_adv_param : &fast_adv_param, |
|
duration, enc_id_ad, ARRAY_SIZE(enc_id_ad), NULL, 0); |
|
if (err) { |
|
LOG_WRN("Failed to advertise using type 0x%02x (err %d)", type, err); |
|
return err; |
|
} |
|
|
|
return 0; |
|
} |
|
|
|
static int node_id_adv(struct bt_mesh_subnet *sub, int32_t duration) |
|
{ |
|
uint8_t *random = &proxy_svc_data[11]; |
|
uint8_t tmp[16]; |
|
int err; |
|
|
|
LOG_DBG("0x%03x", sub->net_idx); |
|
|
|
err = bt_rand(random, 8); |
|
if (err) { |
|
return err; |
|
} |
|
|
|
memset(&tmp[0], 0x00, 6); |
|
memcpy(&tmp[6], random, 8); |
|
sys_put_be16(bt_mesh_primary_addr(), &tmp[14]); |
|
|
|
return enc_id_adv(sub, BT_MESH_ID_TYPE_NODE, tmp, duration); |
|
} |
|
|
|
static int priv_node_id_adv(struct bt_mesh_subnet *sub, int32_t duration) |
|
{ |
|
uint8_t *random = &proxy_svc_data[11]; |
|
uint8_t tmp[16]; |
|
int err; |
|
|
|
LOG_DBG("0x%03x", sub->net_idx); |
|
|
|
err = bt_rand(random, 8); |
|
if (err) { |
|
return err; |
|
} |
|
|
|
memset(&tmp[0], 0x00, 5); |
|
tmp[5] = 0x03; |
|
memcpy(&tmp[6], random, 8); |
|
sys_put_be16(bt_mesh_primary_addr(), &tmp[14]); |
|
|
|
return enc_id_adv(sub, BT_MESH_ID_TYPE_PRIV_NODE, tmp, duration); |
|
} |
|
|
|
static int priv_net_id_adv(struct bt_mesh_subnet *sub, int32_t duration) |
|
{ |
|
uint8_t *random = &proxy_svc_data[11]; |
|
uint8_t tmp[16]; |
|
int err; |
|
|
|
LOG_DBG("0x%03x", sub->net_idx); |
|
|
|
err = bt_rand(random, 8); |
|
if (err) { |
|
return err; |
|
} |
|
|
|
memcpy(&tmp[0], sub->keys[SUBNET_KEY_TX_IDX(sub)].net_id, 8); |
|
memcpy(&tmp[8], random, 8); |
|
|
|
return enc_id_adv(sub, BT_MESH_ID_TYPE_PRIV_NET, tmp, duration); |
|
} |
|
|
|
static int net_id_adv(struct bt_mesh_subnet *sub, int32_t duration) |
|
{ |
|
struct bt_le_adv_param slow_adv_param = { |
|
.options = ADV_OPT_PROXY, |
|
ADV_SLOW_INT, |
|
}; |
|
int err; |
|
|
|
proxy_svc_data[2] = BT_MESH_ID_TYPE_NET; |
|
|
|
LOG_DBG("Advertising with NetId %s", bt_hex(sub->keys[SUBNET_KEY_TX_IDX(sub)].net_id, 8)); |
|
|
|
memcpy(proxy_svc_data + 3, sub->keys[SUBNET_KEY_TX_IDX(sub)].net_id, 8); |
|
|
|
err = bt_mesh_adv_gatt_start(&slow_adv_param, duration, net_id_ad, |
|
ARRAY_SIZE(net_id_ad), NULL, 0); |
|
if (err) { |
|
LOG_WRN("Failed to advertise using Network ID (err %d)", err); |
|
return err; |
|
} |
|
|
|
return 0; |
|
} |
|
|
|
static bool advertise_subnet(struct bt_mesh_subnet *sub) |
|
{ |
|
if (sub->net_idx == BT_MESH_KEY_UNUSED) { |
|
return false; |
|
} |
|
|
|
return (sub->node_id == BT_MESH_NODE_IDENTITY_RUNNING || |
|
#if defined(CONFIG_BT_MESH_OD_PRIV_PROXY_SRV) |
|
sub->solicited || |
|
#endif |
|
bt_mesh_gatt_proxy_get() == BT_MESH_GATT_PROXY_ENABLED || |
|
bt_mesh_priv_gatt_proxy_get() == BT_MESH_GATT_PROXY_ENABLED); |
|
} |
|
|
|
static struct bt_mesh_subnet *next_sub(void) |
|
{ |
|
struct bt_mesh_subnet *sub = NULL; |
|
|
|
if (!beacon_sub) { |
|
beacon_sub = bt_mesh_subnet_next(NULL); |
|
if (!beacon_sub) { |
|
/* No valid subnets */ |
|
return NULL; |
|
} |
|
} |
|
|
|
sub = beacon_sub; |
|
do { |
|
if (advertise_subnet(sub)) { |
|
beacon_sub = sub; |
|
return sub; |
|
} |
|
|
|
sub = bt_mesh_subnet_next(sub); |
|
} while (sub != beacon_sub); |
|
|
|
/* No subnets to advertise on */ |
|
return NULL; |
|
} |
|
|
|
static bool sub_count_cb(struct bt_mesh_subnet *sub, void *cb_data) |
|
{ |
|
int *count = cb_data; |
|
|
|
if (advertise_subnet(sub)) { |
|
(*count)++; |
|
} |
|
|
|
/* Don't stop until we've visited all subnets. |
|
* We're only using the "find" variant of the subnet iteration to get a context parameter. |
|
*/ |
|
return false; |
|
} |
|
|
|
static int sub_count(void) |
|
{ |
|
int count = 0; |
|
|
|
(void)bt_mesh_subnet_find(sub_count_cb, &count); |
|
|
|
return count; |
|
} |
|
|
|
#if defined(CONFIG_BT_MESH_OD_PRIV_PROXY_SRV) |
|
static void gatt_proxy_solicited(struct bt_mesh_subnet *sub) |
|
{ |
|
int64_t now = k_uptime_get(); |
|
int64_t timeout = 0; |
|
int32_t remaining; |
|
|
|
if (sub->priv_net_id_sent > 0) { |
|
timeout = sub->priv_net_id_sent + MSEC_PER_SEC * bt_mesh_od_priv_proxy_get(); |
|
} |
|
|
|
remaining = MIN(timeout - now, INT32_MAX); |
|
if ((timeout > 0 && now > timeout) || (remaining / MSEC_PER_SEC < 1)) { |
|
LOG_DBG("Advertising Private Network ID timed out " |
|
"after solicitation"); |
|
sub->priv_net_id_sent = 0; |
|
sub->solicited = false; |
|
} else { |
|
LOG_DBG("Advertising Private Network ID for %ds" |
|
"(%d remaining)", |
|
bt_mesh_od_priv_proxy_get(), |
|
remaining / MSEC_PER_SEC); |
|
priv_net_id_adv(sub, remaining); |
|
|
|
if (!sub->priv_net_id_sent) { |
|
sub->priv_net_id_sent = now; |
|
} |
|
} |
|
} |
|
#endif |
|
|
|
static int gatt_proxy_advertise(struct bt_mesh_subnet *sub) |
|
{ |
|
int32_t remaining = SYS_FOREVER_MS; |
|
int subnet_count; |
|
int err = -EBUSY; |
|
bool planned = false; |
|
|
|
LOG_DBG(""); |
|
|
|
if (!bt_mesh_proxy_has_avail_conn()) { |
|
LOG_DBG("Connectable advertising deferred (max connections)"); |
|
return -ENOMEM; |
|
} |
|
|
|
sub = beacon_sub ? beacon_sub : bt_mesh_subnet_next(beacon_sub); |
|
if (!sub) { |
|
LOG_WRN("No subnets to advertise on"); |
|
return -ENOENT; |
|
} |
|
|
|
subnet_count = sub_count(); |
|
LOG_DBG("sub_count %u", subnet_count); |
|
if (subnet_count > 1) { |
|
int32_t max_timeout; |
|
|
|
/* We use NODE_ID_TIMEOUT as a starting point since it may |
|
* be less than 60 seconds. Divide this period into at least |
|
* 6 slices, but make sure that a slice is at least one |
|
* second long (to avoid excessive rotation). |
|
*/ |
|
max_timeout = NODE_ID_TIMEOUT / MAX(subnet_count, 6); |
|
max_timeout = MAX(max_timeout, 1 * MSEC_PER_SEC); |
|
|
|
if (remaining > max_timeout || remaining == SYS_FOREVER_MS) { |
|
remaining = max_timeout; |
|
} |
|
} |
|
|
|
for (int i = 0; i < subnet_count; i++) { |
|
|
|
if (sub->node_id == BT_MESH_NODE_IDENTITY_RUNNING) { |
|
uint32_t active = k_uptime_get_32() - sub->node_id_start; |
|
bool priv_node_id = false; |
|
|
|
if (active < NODE_ID_TIMEOUT) { |
|
remaining = MIN(remaining, NODE_ID_TIMEOUT - active); |
|
LOG_DBG("Node ID active for %u ms, %d ms remaining", |
|
active, remaining); |
|
#if defined(CONFIG_BT_MESH_PRIV_BEACONS) |
|
priv_node_id = sub->priv_beacon_ctx.node_id; |
|
#endif |
|
if (priv_node_id) { |
|
err = priv_node_id_adv(sub, remaining); |
|
} else { |
|
err = node_id_adv(sub, remaining); |
|
} |
|
planned = true; |
|
} else { |
|
bt_mesh_proxy_identity_stop(sub); |
|
LOG_DBG("Node ID stopped"); |
|
} |
|
} |
|
|
|
/* Mesh Profile Specification v1.0.1, section 7.2.2.2.1 |
|
* A node that does not support the Proxy feature or |
|
* has the GATT Proxy state disabled shall not advertise with Network ID. |
|
*/ |
|
if (sub->node_id == BT_MESH_NODE_IDENTITY_STOPPED) { |
|
if (IS_ENABLED(CONFIG_BT_MESH_PRIV_BEACONS) && |
|
(bt_mesh_priv_gatt_proxy_get() == BT_MESH_GATT_PROXY_ENABLED)) { |
|
/* Bluetooth mesh specification v1.1, section 7.2.2.2.4: The Random |
|
* field should be updated every 10 minutes. Limit advertising to |
|
* 10 minutes to ensure regeneration of a new random value at least |
|
* that often. |
|
*/ |
|
if (remaining == SYS_FOREVER_MS || |
|
remaining > PROXY_RANDOM_UPDATE_INTERVAL) { |
|
remaining = PROXY_RANDOM_UPDATE_INTERVAL; |
|
} |
|
|
|
err = priv_net_id_adv(sub, remaining); |
|
planned = true; |
|
} else if (bt_mesh_gatt_proxy_get() == BT_MESH_FEATURE_ENABLED) { |
|
err = net_id_adv(sub, remaining); |
|
planned = true; |
|
} |
|
|
|
#if defined(CONFIG_BT_MESH_OD_PRIV_PROXY_SRV) |
|
else if (bt_mesh_od_priv_proxy_get() > 0 && |
|
sub->solicited) { |
|
gatt_proxy_solicited(sub); |
|
} |
|
#endif |
|
} |
|
|
|
beacon_sub = bt_mesh_subnet_next(sub); |
|
|
|
if (planned) { |
|
LOG_DBG("Advertising %d ms for net_idx 0x%04x", remaining, sub->net_idx); |
|
return err; |
|
} |
|
|
|
sub = beacon_sub; |
|
} |
|
|
|
return 0; |
|
} |
|
|
|
static void subnet_evt(struct bt_mesh_subnet *sub, enum bt_mesh_key_evt evt) |
|
{ |
|
if (evt == BT_MESH_KEY_DELETED) { |
|
if (sub == beacon_sub) { |
|
beacon_sub = NULL; |
|
} |
|
} else { |
|
bt_mesh_proxy_beacon_send(sub); |
|
bt_mesh_adv_gatt_update(); |
|
} |
|
} |
|
|
|
BT_MESH_SUBNET_CB_DEFINE(gatt_services) = { |
|
.evt_handler = subnet_evt, |
|
}; |
|
|
|
static void proxy_ccc_changed(const struct bt_gatt_attr *attr, uint16_t value) |
|
{ |
|
LOG_DBG("value 0x%04x", value); |
|
} |
|
|
|
static ssize_t proxy_ccc_write(struct bt_conn *conn, |
|
const struct bt_gatt_attr *attr, uint16_t value) |
|
{ |
|
struct bt_mesh_proxy_client *client; |
|
|
|
LOG_DBG("value: 0x%04x", value); |
|
|
|
if (value != BT_GATT_CCC_NOTIFY) { |
|
LOG_WRN("Client wrote 0x%04x instead enabling notify", value); |
|
return BT_GATT_ERR(BT_ATT_ERR_VALUE_NOT_ALLOWED); |
|
} |
|
|
|
client = find_client(conn); |
|
if (client->filter_type == NONE) { |
|
client->filter_type = ACCEPT; |
|
k_work_submit(&client->send_beacons); |
|
} |
|
|
|
return sizeof(value); |
|
} |
|
|
|
/* Mesh Proxy Service Declaration */ |
|
static struct _bt_gatt_ccc proxy_ccc = |
|
BT_GATT_CCC_INITIALIZER(proxy_ccc_changed, proxy_ccc_write, NULL); |
|
|
|
static struct bt_gatt_attr proxy_attrs[] = { |
|
BT_GATT_PRIMARY_SERVICE(BT_UUID_MESH_PROXY), |
|
|
|
BT_GATT_CHARACTERISTIC(BT_UUID_MESH_PROXY_DATA_IN, |
|
BT_GATT_CHRC_WRITE_WITHOUT_RESP, |
|
BT_GATT_PERM_WRITE, |
|
NULL, gatt_recv, NULL), |
|
|
|
BT_GATT_CHARACTERISTIC(BT_UUID_MESH_PROXY_DATA_OUT, |
|
BT_GATT_CHRC_NOTIFY, |
|
BT_GATT_PERM_NONE, |
|
NULL, NULL, NULL), |
|
BT_GATT_CCC_MANAGED(&proxy_ccc, |
|
BT_GATT_PERM_READ | BT_GATT_PERM_WRITE), |
|
}; |
|
|
|
static struct bt_gatt_service proxy_svc = BT_GATT_SERVICE(proxy_attrs); |
|
|
|
static void svc_reg_work_handler(struct k_work *work) |
|
{ |
|
(void)bt_gatt_service_register(&proxy_svc); |
|
service_registered = true; |
|
|
|
for (int i = 0; i < ARRAY_SIZE(clients); i++) { |
|
if (clients[i].cli) { |
|
clients[i].filter_type = ACCEPT; |
|
} |
|
} |
|
|
|
bt_mesh_adv_gatt_update(); |
|
} |
|
|
|
static struct k_work svc_reg_work = Z_WORK_INITIALIZER(svc_reg_work_handler); |
|
|
|
int bt_mesh_proxy_gatt_enable(void) |
|
{ |
|
LOG_DBG(""); |
|
|
|
if (!bt_mesh_is_provisioned()) { |
|
return -ENOTSUP; |
|
} |
|
|
|
if (service_registered) { |
|
return -EBUSY; |
|
} |
|
|
|
return k_work_submit(&svc_reg_work); |
|
} |
|
|
|
void bt_mesh_proxy_gatt_disconnect(void) |
|
{ |
|
int i; |
|
|
|
LOG_DBG(""); |
|
|
|
for (i = 0; i < ARRAY_SIZE(clients); i++) { |
|
struct bt_mesh_proxy_client *client = &clients[i]; |
|
|
|
if (client->cli && (client->filter_type == ACCEPT || |
|
client->filter_type == REJECT)) { |
|
client->filter_type = NONE; |
|
bt_conn_disconnect(client->cli->conn, |
|
BT_HCI_ERR_REMOTE_USER_TERM_CONN); |
|
} |
|
} |
|
} |
|
|
|
int bt_mesh_proxy_gatt_disable(void) |
|
{ |
|
LOG_DBG(""); |
|
|
|
if (!service_registered) { |
|
return -EALREADY; |
|
} |
|
|
|
bt_mesh_proxy_gatt_disconnect(); |
|
|
|
bt_gatt_service_unregister(&proxy_svc); |
|
service_registered = false; |
|
|
|
return 0; |
|
} |
|
|
|
void bt_mesh_proxy_addr_add(struct net_buf_simple *buf, uint16_t addr) |
|
{ |
|
struct bt_mesh_proxy_client *client; |
|
struct bt_mesh_proxy_role *cli = |
|
CONTAINER_OF(buf, struct bt_mesh_proxy_role, buf); |
|
|
|
client = find_client(cli->conn); |
|
|
|
LOG_DBG("filter_type %u addr 0x%04x", client->filter_type, addr); |
|
|
|
if (client->filter_type == ACCEPT) { |
|
filter_add(client, addr); |
|
} else if (client->filter_type == REJECT) { |
|
filter_remove(client, addr); |
|
} |
|
} |
|
|
|
static bool client_filter_match(struct bt_mesh_proxy_client *client, |
|
uint16_t addr) |
|
{ |
|
int i; |
|
|
|
LOG_DBG("filter_type %u addr 0x%04x", client->filter_type, addr); |
|
|
|
if (client->filter_type == REJECT) { |
|
for (i = 0; i < ARRAY_SIZE(client->filter); i++) { |
|
if (client->filter[i] == addr) { |
|
return false; |
|
} |
|
} |
|
|
|
return true; |
|
} |
|
|
|
if (addr == BT_MESH_ADDR_ALL_NODES) { |
|
return true; |
|
} |
|
|
|
if (client->filter_type == ACCEPT) { |
|
for (i = 0; i < ARRAY_SIZE(client->filter); i++) { |
|
if (client->filter[i] == addr) { |
|
return true; |
|
} |
|
} |
|
} |
|
|
|
return false; |
|
} |
|
|
|
bool bt_mesh_proxy_relay(struct net_buf *buf, uint16_t dst) |
|
{ |
|
bool relayed = false; |
|
int i; |
|
|
|
LOG_DBG("%u bytes to dst 0x%04x", buf->len, dst); |
|
|
|
for (i = 0; i < ARRAY_SIZE(clients); i++) { |
|
struct bt_mesh_proxy_client *client = &clients[i]; |
|
|
|
if (!client->cli) { |
|
continue; |
|
} |
|
|
|
if (!client_filter_match(client, dst)) { |
|
continue; |
|
} |
|
|
|
if (bt_mesh_proxy_relay_send(client->cli->conn, buf)) { |
|
continue; |
|
} |
|
|
|
relayed = true; |
|
} |
|
|
|
return relayed; |
|
} |
|
|
|
static void solicitation_reset(struct bt_mesh_subnet *sub) |
|
{ |
|
#if defined(CONFIG_BT_MESH_OD_PRIV_PROXY_SRV) |
|
sub->solicited = false; |
|
sub->priv_net_id_sent = 0; |
|
#endif |
|
} |
|
|
|
static void gatt_connected(struct bt_conn *conn, uint8_t err) |
|
{ |
|
struct bt_mesh_proxy_client *client; |
|
struct bt_conn_info info; |
|
|
|
bt_conn_get_info(conn, &info); |
|
if (info.role != BT_CONN_ROLE_PERIPHERAL || !service_registered || |
|
info.id != BT_ID_DEFAULT) { |
|
return; |
|
} |
|
|
|
LOG_DBG("conn %p err 0x%02x", (void *)conn, err); |
|
|
|
client = find_client(conn); |
|
|
|
client->filter_type = NONE; |
|
(void)memset(client->filter, 0, sizeof(client->filter)); |
|
client->cli = bt_mesh_proxy_role_setup(conn, proxy_send, |
|
proxy_msg_recv); |
|
|
|
/* If connection was formed after Proxy Solicitation we need to stop future |
|
* Private Network ID advertisements |
|
*/ |
|
bt_mesh_subnet_foreach(solicitation_reset); |
|
|
|
/* Try to re-enable advertising in case it's possible */ |
|
if (bt_mesh_proxy_has_avail_conn()) { |
|
bt_mesh_adv_gatt_update(); |
|
} |
|
} |
|
|
|
static void gatt_disconnected(struct bt_conn *conn, uint8_t reason) |
|
{ |
|
struct bt_conn_info info; |
|
struct bt_mesh_proxy_client *client; |
|
|
|
bt_conn_get_info(conn, &info); |
|
if (info.role != BT_CONN_ROLE_PERIPHERAL || info.id != BT_ID_DEFAULT) { |
|
return; |
|
} |
|
|
|
if (!service_registered && bt_mesh_is_provisioned()) { |
|
(void)bt_mesh_proxy_gatt_enable(); |
|
return; |
|
} |
|
|
|
client = find_client(conn); |
|
if (client->cli) { |
|
bt_mesh_proxy_role_cleanup(client->cli); |
|
client->cli = NULL; |
|
} |
|
} |
|
|
|
static int proxy_send(struct bt_conn *conn, |
|
const void *data, uint16_t len, |
|
bt_gatt_complete_func_t end, void *user_data) |
|
{ |
|
LOG_DBG("%u bytes: %s", len, bt_hex(data, len)); |
|
|
|
struct bt_gatt_notify_params params = { |
|
.data = data, |
|
.len = len, |
|
.attr = &proxy_attrs[3], |
|
.user_data = user_data, |
|
.func = end, |
|
}; |
|
|
|
return bt_gatt_notify_cb(conn, ¶ms); |
|
} |
|
|
|
int bt_mesh_proxy_adv_start(void) |
|
{ |
|
LOG_DBG(""); |
|
|
|
if (!service_registered || !bt_mesh_is_provisioned()) { |
|
return -ENOTSUP; |
|
} |
|
|
|
return gatt_proxy_advertise(next_sub()); |
|
} |
|
|
|
BT_CONN_CB_DEFINE(conn_callbacks) = { |
|
.connected = gatt_connected, |
|
.disconnected = gatt_disconnected, |
|
};
|
|
|