mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-27 06:04:32 +08:00
cbeca2fba1
If current storage does not exist in node.json, the Mesh Private Beacon will be disabled.
200 lines
6.3 KiB
C
200 lines
6.3 KiB
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
*
|
|
* BlueZ - Bluetooth protocol stack for Linux
|
|
*
|
|
* Copyright (C) 2018-2019 Intel Corporation. All rights reserved.
|
|
*
|
|
*
|
|
*/
|
|
|
|
#define MIN_COMP_SIZE 14
|
|
|
|
struct mesh_config;
|
|
|
|
struct mesh_config_sub {
|
|
bool virt;
|
|
union {
|
|
uint16_t grp;
|
|
uint8_t label[16];
|
|
} addr;
|
|
};
|
|
|
|
struct mesh_config_pub {
|
|
bool virt;
|
|
uint32_t period;
|
|
uint16_t addr;
|
|
uint16_t idx;
|
|
uint16_t interval;
|
|
uint8_t ttl;
|
|
uint8_t credential;
|
|
uint8_t cnt;
|
|
uint8_t virt_addr[16];
|
|
};
|
|
|
|
struct mesh_config_model {
|
|
struct mesh_config_sub *subs;
|
|
struct mesh_config_pub *pub;
|
|
uint16_t *bindings;
|
|
uint32_t id;
|
|
bool vendor;
|
|
bool sub_enabled;
|
|
bool pub_enabled;
|
|
uint32_t num_bindings;
|
|
uint32_t num_subs;
|
|
};
|
|
|
|
struct mesh_config_element {
|
|
struct l_queue *models;
|
|
uint16_t location;
|
|
uint8_t index;
|
|
};
|
|
|
|
struct mesh_config_modes {
|
|
struct {
|
|
uint16_t interval;
|
|
uint8_t cnt;
|
|
uint8_t state;
|
|
} relay;
|
|
uint8_t lpn;
|
|
uint8_t friend;
|
|
uint8_t proxy;
|
|
uint8_t beacon;
|
|
uint8_t mpb;
|
|
uint8_t mpb_period;
|
|
};
|
|
|
|
struct mesh_config_netkey {
|
|
uint16_t idx;
|
|
uint8_t key[16];
|
|
uint8_t new_key[16];
|
|
uint8_t phase;
|
|
};
|
|
|
|
struct mesh_config_appkey {
|
|
uint16_t net_idx;
|
|
uint16_t app_idx;
|
|
uint8_t key[16];
|
|
uint8_t new_key[16];
|
|
};
|
|
|
|
struct mesh_config_transmit {
|
|
uint16_t interval;
|
|
uint8_t count;
|
|
};
|
|
|
|
struct mesh_config_comp_page {
|
|
uint16_t len;
|
|
uint8_t page_num;
|
|
uint8_t data[];
|
|
};
|
|
|
|
struct mesh_config_node {
|
|
struct l_queue *elements;
|
|
struct l_queue *netkeys;
|
|
struct l_queue *appkeys;
|
|
struct l_queue *pages;
|
|
uint32_t seq_number;
|
|
uint32_t iv_index;
|
|
bool iv_update;
|
|
uint16_t cid;
|
|
uint16_t pid;
|
|
uint16_t vid;
|
|
uint16_t crpl;
|
|
uint16_t unicast;
|
|
struct mesh_config_transmit *net_transmit;
|
|
struct mesh_config_modes modes;
|
|
uint8_t ttl;
|
|
uint8_t dev_key[16];
|
|
uint8_t token[8];
|
|
};
|
|
|
|
typedef void (*mesh_config_status_func_t)(void *user_data, bool result);
|
|
typedef bool (*mesh_config_node_func_t)(struct mesh_config_node *node,
|
|
const uint8_t uuid[16],
|
|
struct mesh_config *cfg,
|
|
void *user_data);
|
|
|
|
bool mesh_config_load_nodes(const char *cfgdir_name, mesh_config_node_func_t cb,
|
|
void *user_data);
|
|
void mesh_config_release(struct mesh_config *cfg);
|
|
void mesh_config_destroy_nvm(struct mesh_config *cfg);
|
|
bool mesh_config_save(struct mesh_config *cfg, bool no_wait,
|
|
mesh_config_status_func_t cb, void *user_data);
|
|
void mesh_config_reset(struct mesh_config *cfg, struct mesh_config_node *node);
|
|
struct mesh_config *mesh_config_create(const char *cfgdir_name,
|
|
const uint8_t uuid[16],
|
|
struct mesh_config_node *node);
|
|
|
|
bool mesh_config_write_net_transmit(struct mesh_config *cfg, uint8_t cnt,
|
|
uint16_t interval);
|
|
bool mesh_config_write_device_key(struct mesh_config *cfg, uint8_t *key);
|
|
bool mesh_config_write_candidate(struct mesh_config *cfg, uint8_t *key);
|
|
bool mesh_config_read_candidate(struct mesh_config *cfg, uint8_t *key);
|
|
bool mesh_config_finalize_candidate(struct mesh_config *cfg);
|
|
bool mesh_config_write_token(struct mesh_config *cfg, uint8_t *token);
|
|
bool mesh_config_write_network_key(struct mesh_config *cfg, uint16_t idx,
|
|
uint8_t *key, uint8_t *new_key, int phase);
|
|
bool mesh_config_write_app_key(struct mesh_config *cfg, uint16_t net_idx,
|
|
uint16_t app_idx, uint8_t *key, uint8_t *new_key);
|
|
bool mesh_config_write_seq_number(struct mesh_config *cfg, uint32_t seq,
|
|
bool cache);
|
|
bool mesh_config_write_unicast(struct mesh_config *cfg, uint16_t unicast);
|
|
bool mesh_config_write_relay_mode(struct mesh_config *cfg, uint8_t mode,
|
|
uint8_t count, uint16_t interval);
|
|
bool mesh_config_write_mpb(struct mesh_config *cfg, uint8_t mode,
|
|
uint8_t period);
|
|
bool mesh_config_write_ttl(struct mesh_config *cfg, uint8_t ttl);
|
|
bool mesh_config_write_mode(struct mesh_config *cfg, const char *keyword,
|
|
int value);
|
|
bool mesh_config_write_mode_ex(struct mesh_config *cfg, const char *keyword,
|
|
int value, bool save);
|
|
bool mesh_config_comp_page_add(struct mesh_config *cfg, uint8_t page,
|
|
uint8_t *data, uint16_t size);
|
|
void mesh_config_comp_page_del(struct mesh_config *cfg, uint8_t page);
|
|
bool mesh_config_model_binding_add(struct mesh_config *cfg, uint16_t ele_addr,
|
|
uint32_t mod_id, bool vendor,
|
|
uint16_t app_idx);
|
|
bool mesh_config_model_binding_del(struct mesh_config *cfg, uint16_t ele_addr,
|
|
uint32_t mod_id, bool vendor,
|
|
uint16_t app_idx);
|
|
bool mesh_config_model_pub_add(struct mesh_config *cfg, uint16_t ele_addr,
|
|
uint32_t mod_id, bool vendor,
|
|
struct mesh_config_pub *pub);
|
|
bool mesh_config_model_pub_del(struct mesh_config *cfg, uint16_t ele_addr,
|
|
uint32_t mod_id, bool vendor);
|
|
bool mesh_config_model_sub_add(struct mesh_config *cfg, uint16_t ele_addr,
|
|
uint32_t mod_id, bool vendor,
|
|
struct mesh_config_sub *sub);
|
|
bool mesh_config_model_sub_del(struct mesh_config *cfg, uint16_t ele_addr,
|
|
uint32_t mod_id, bool vendor,
|
|
struct mesh_config_sub *sub);
|
|
bool mesh_config_model_sub_del_all(struct mesh_config *cfg, uint16_t ele_addr,
|
|
uint32_t mod_id, bool vendor);
|
|
bool mesh_config_model_pub_enable(struct mesh_config *cfg, uint16_t ele_addr,
|
|
uint32_t mod_id, bool vendor,
|
|
bool enable);
|
|
bool mesh_config_model_sub_enable(struct mesh_config *cfg, uint16_t ele_addr,
|
|
uint32_t mod_id, bool vendor,
|
|
bool enable);
|
|
bool mesh_config_app_key_add(struct mesh_config *cfg, uint16_t net_idx,
|
|
uint16_t app_idx, const uint8_t key[16]);
|
|
bool mesh_config_app_key_update(struct mesh_config *cfg, uint16_t app_idx,
|
|
const uint8_t key[16]);
|
|
bool mesh_config_app_key_del(struct mesh_config *cfg, uint16_t net_idx,
|
|
uint16_t idx);
|
|
bool mesh_config_net_key_add(struct mesh_config *cfg, uint16_t net_idx,
|
|
const uint8_t key[16]);
|
|
bool mesh_config_net_key_update(struct mesh_config *cfg, uint16_t idx,
|
|
const uint8_t key[16]);
|
|
bool mesh_config_net_key_del(struct mesh_config *cfg, uint16_t net_idx);
|
|
bool mesh_config_net_key_set_phase(struct mesh_config *cfg, uint16_t idx,
|
|
uint8_t phase);
|
|
bool mesh_config_write_address(struct mesh_config *cfg, uint16_t address);
|
|
bool mesh_config_write_iv_index(struct mesh_config *cfg, uint32_t idx,
|
|
bool update);
|
|
bool mesh_config_update_company_id(struct mesh_config *cfg, uint16_t cid);
|
|
bool mesh_config_update_product_id(struct mesh_config *cfg, uint16_t pid);
|
|
bool mesh_config_update_version_id(struct mesh_config *cfg, uint16_t vid);
|
|
bool mesh_config_update_crpl(struct mesh_config *cfg, uint16_t crpl);
|