| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185 |
- /*
- * SPDX-FileCopyrightText: 2017-2021 Espressif Systems (Shanghai) CO LTD
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #include <string.h>
- #include <errno.h>
- #include "btc_ble_mesh_generic_model.h"
- #include "mesh/config.h"
- #include "mesh/model_opcode.h"
- #if CONFIG_BLE_MESH_GENERIC_CLIENT
- #include "mesh/generic_client.h"
- /* The followings are the macro definitions of Generic client
- * model message length, and a message is composed of 3 parts:
- * Opcode + Payload + MIC
- */
- /* Generic onoff client messages length */
- #define BLE_MESH_GEN_ONOFF_GET_MSG_LEN (2 + 0 + 4)
- #define BLE_MESH_GEN_ONOFF_SET_MSG_LEN (2 + 4 + 4)
- /* Generic level client messages length */
- #define BLE_MESH_GEN_LEVEL_GET_MSG_LEN (2 + 0 + 4)
- #define BLE_MESH_GEN_LEVEL_SET_MSG_LEN (2 + 5 + 4)
- #define BLE_MESH_GEN_DELTA_SET_MSG_LEN (2 + 7 + 4)
- #define BLE_MESH_GEN_MOVE_SET_MSG_LEN (2 + 5 + 4)
- /* Generic default transition time client messages length */
- #define BLE_MESH_GEN_DEF_TRANS_TIME_GET_MSG_LEN (2 + 0 + 4)
- #define BLE_MESH_GEN_DEF_TRANS_TIME_SET_MSG_LEN (2 + 1 + 4)
- /* Generic power onoff client messages length */
- #define BLE_MESH_GEN_ONPOWERUP_GET_MSG_LEN (2 + 0 + 4)
- #define BLE_MESH_GEN_ONPOWERUP_SET_MSG_LEN (2 + 1 + 4)
- /* Generic power level client messages length */
- #define BLE_MESH_GEN_POWER_LEVEL_GET_MSG_LEN (2 + 0 + 4)
- #define BLE_MESH_GEN_POWER_LEVEL_SET_MSG_LEN (2 + 5 + 4)
- #define BLE_MESH_GEN_POWER_LAST_GET_MSG_LEN (2 + 0 + 4)
- #define BLE_MESH_GEN_POWER_DEFAULT_GET_MSG_LEN (2 + 0 + 4)
- #define BLE_MESH_GEN_POWER_DEFAULT_SET_MSG_LEN (2 + 2 + 4)
- #define BLE_MESH_GEN_POWER_RANGE_GET_MSG_LEN (2 + 0 + 4)
- #define BLE_MESH_GEN_POWER_RANGE_SET_MSG_LEN (2 + 4 + 4)
- /* Generic battery client messages length */
- #define BLE_MESH_GEN_BATTERY_GET_MSG_LEN (2 + 0 + 4)
- /* Generic location client messages length */
- #define BLE_MESH_GEN_LOC_GLOBAL_GET_MSG_LEN (2 + 0 + 4)
- #define BLE_MESH_GEN_LOC_GLOBAL_SET_MSG_LEN (1 + 10 + 4)
- #define BLE_MESH_GEN_LOC_LOCAL_GET_MSG_LEN (2 + 0 + 4)
- #define BLE_MESH_GEN_LOC_LOCAL_SET_MSG_LEN (2 + 9 + 4)
- /* Generic property client messages length */
- #define BLE_MESH_GEN_USER_PROPERTIES_GET_MSG_LEN (2 + 0 + 4)
- #define BLE_MESH_GEN_USER_PROPERTY_GET_MSG_LEN (2 + 2 + 4)
- #define BLE_MESH_GEN_USER_PROPERTY_SET_MSG_LEN /* variable */
- #define BLE_MESH_GEN_ADMIN_PROPERTIES_GET_MSG_LEN (2 + 0 + 4)
- #define BLE_MESH_GEN_ADMIN_PROPERTY_GET_MSG_LEN (2 + 2 + 4)
- #define BLE_MESH_GEN_ADMIN_PROPERTY_SET_MSG_LEN /* variable */
- #define BLE_MESH_GEN_MANU_PROPERTIES_GET_MSG_LEN (2 + 0 + 4)
- #define BLE_MESH_GEN_MANU_PROPERTY_GET_MSG_LEN (2 + 2 + 4)
- #define BLE_MESH_GEN_MANU_PROPERTY_SET_MSG_LEN (1 + 3 + 4)
- #define BLE_MESH_GEN_CLIENT_PROPERTIES_GET_MSG_LEN (1 + 2 + 4)
- #define BLE_MESH_GEN_GET_STATE_MSG_LEN (2 + 2 + 4)
- static const bt_mesh_client_op_pair_t gen_op_pair[] = {
- { BLE_MESH_MODEL_OP_GEN_ONOFF_GET, BLE_MESH_MODEL_OP_GEN_ONOFF_STATUS },
- { BLE_MESH_MODEL_OP_GEN_ONOFF_SET, BLE_MESH_MODEL_OP_GEN_ONOFF_STATUS },
- { BLE_MESH_MODEL_OP_GEN_LEVEL_GET, BLE_MESH_MODEL_OP_GEN_LEVEL_STATUS },
- { BLE_MESH_MODEL_OP_GEN_LEVEL_SET, BLE_MESH_MODEL_OP_GEN_LEVEL_STATUS },
- { BLE_MESH_MODEL_OP_GEN_DELTA_SET, BLE_MESH_MODEL_OP_GEN_LEVEL_STATUS },
- { BLE_MESH_MODEL_OP_GEN_MOVE_SET, BLE_MESH_MODEL_OP_GEN_LEVEL_STATUS },
- { BLE_MESH_MODEL_OP_GEN_DEF_TRANS_TIME_GET, BLE_MESH_MODEL_OP_GEN_DEF_TRANS_TIME_STATUS },
- { BLE_MESH_MODEL_OP_GEN_DEF_TRANS_TIME_SET, BLE_MESH_MODEL_OP_GEN_DEF_TRANS_TIME_STATUS },
- { BLE_MESH_MODEL_OP_GEN_ONPOWERUP_GET, BLE_MESH_MODEL_OP_GEN_ONPOWERUP_STATUS },
- { BLE_MESH_MODEL_OP_GEN_ONPOWERUP_SET, BLE_MESH_MODEL_OP_GEN_ONPOWERUP_STATUS },
- { BLE_MESH_MODEL_OP_GEN_POWER_LEVEL_GET, BLE_MESH_MODEL_OP_GEN_POWER_LEVEL_STATUS },
- { BLE_MESH_MODEL_OP_GEN_POWER_LEVEL_SET, BLE_MESH_MODEL_OP_GEN_POWER_LEVEL_STATUS },
- { BLE_MESH_MODEL_OP_GEN_POWER_LAST_GET, BLE_MESH_MODEL_OP_GEN_POWER_LAST_STATUS },
- { BLE_MESH_MODEL_OP_GEN_POWER_DEFAULT_GET, BLE_MESH_MODEL_OP_GEN_POWER_DEFAULT_STATUS },
- { BLE_MESH_MODEL_OP_GEN_POWER_DEFAULT_SET, BLE_MESH_MODEL_OP_GEN_POWER_DEFAULT_STATUS },
- { BLE_MESH_MODEL_OP_GEN_POWER_RANGE_GET, BLE_MESH_MODEL_OP_GEN_POWER_RANGE_STATUS },
- { BLE_MESH_MODEL_OP_GEN_POWER_RANGE_SET, BLE_MESH_MODEL_OP_GEN_POWER_RANGE_STATUS },
- { BLE_MESH_MODEL_OP_GEN_BATTERY_GET, BLE_MESH_MODEL_OP_GEN_BATTERY_STATUS },
- { BLE_MESH_MODEL_OP_GEN_LOC_GLOBAL_GET, BLE_MESH_MODEL_OP_GEN_LOC_GLOBAL_STATUS },
- { BLE_MESH_MODEL_OP_GEN_LOC_GLOBAL_SET, BLE_MESH_MODEL_OP_GEN_LOC_GLOBAL_STATUS },
- { BLE_MESH_MODEL_OP_GEN_LOC_LOCAL_GET, BLE_MESH_MODEL_OP_GEN_LOC_LOCAL_STATUS },
- { BLE_MESH_MODEL_OP_GEN_LOC_LOCAL_SET, BLE_MESH_MODEL_OP_GEN_LOC_LOCAL_STATUS },
- { BLE_MESH_MODEL_OP_GEN_USER_PROPERTIES_GET, BLE_MESH_MODEL_OP_GEN_USER_PROPERTIES_STATUS },
- { BLE_MESH_MODEL_OP_GEN_USER_PROPERTY_GET, BLE_MESH_MODEL_OP_GEN_USER_PROPERTY_STATUS },
- { BLE_MESH_MODEL_OP_GEN_USER_PROPERTY_SET, BLE_MESH_MODEL_OP_GEN_USER_PROPERTY_STATUS },
- { BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTIES_GET, BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTIES_STATUS },
- { BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTY_GET, BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTY_STATUS },
- { BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTY_SET, BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTY_STATUS },
- { BLE_MESH_MODEL_OP_GEN_MANU_PROPERTIES_GET, BLE_MESH_MODEL_OP_GEN_MANU_PROPERTIES_STATUS },
- { BLE_MESH_MODEL_OP_GEN_MANU_PROPERTY_GET, BLE_MESH_MODEL_OP_GEN_MANU_PROPERTY_STATUS },
- { BLE_MESH_MODEL_OP_GEN_MANU_PROPERTY_SET, BLE_MESH_MODEL_OP_GEN_MANU_PROPERTY_STATUS },
- { BLE_MESH_MODEL_OP_GEN_CLIENT_PROPERTIES_GET, BLE_MESH_MODEL_OP_GEN_CLIENT_PROPERTIES_STATUS },
- };
- static bt_mesh_mutex_t generic_client_lock;
- static void timeout_handler(struct k_work *work)
- {
- struct k_delayed_work *timer = NULL;
- bt_mesh_client_node_t *node = NULL;
- struct bt_mesh_model *model = NULL;
- struct bt_mesh_msg_ctx ctx = {0};
- uint32_t opcode = 0U;
- BT_WARN("Receive generic status message timeout");
- bt_mesh_mutex_lock(&generic_client_lock);
- timer = CONTAINER_OF(work, struct k_delayed_work, work);
- if (timer && !k_delayed_work_free(timer)) {
- node = CONTAINER_OF(work, bt_mesh_client_node_t, timer.work);
- if (node) {
- memcpy(&ctx, &node->ctx, sizeof(ctx));
- opcode = node->opcode;
- model = node->model;
- bt_mesh_client_free_node(node);
- bt_mesh_generic_client_cb_evt_to_btc(
- opcode, BTC_BLE_MESH_EVT_GENERIC_CLIENT_TIMEOUT, model, &ctx, NULL, 0);
- }
- }
- bt_mesh_mutex_unlock(&generic_client_lock);
- }
- static void generic_status(struct bt_mesh_model *model,
- struct bt_mesh_msg_ctx *ctx,
- struct net_buf_simple *buf)
- {
- bt_mesh_client_node_t *node = NULL;
- uint8_t *val = NULL;
- uint8_t evt = 0xFF;
- size_t len = 0U;
- BT_DBG("len %d, bytes %s", buf->len, bt_hex(buf->data, buf->len));
- switch (ctx->recv_op) {
- case BLE_MESH_MODEL_OP_GEN_ONOFF_STATUS: {
- struct bt_mesh_gen_onoff_status *status = NULL;
- if (buf->len != 1 && buf->len != 3) {
- BT_ERR("Invalid Generic OnOff Status length %d", buf->len);
- return;
- }
- status = bt_mesh_calloc(sizeof(struct bt_mesh_gen_onoff_status));
- if (!status) {
- BT_ERR("%s, Out of memory", __func__);
- return;
- }
- status->present_onoff = net_buf_simple_pull_u8(buf);
- if (buf->len) {
- status->op_en = true;
- status->target_onoff = net_buf_simple_pull_u8(buf);
- status->remain_time = net_buf_simple_pull_u8(buf);
- }
- val = (uint8_t *)status;
- len = sizeof(struct bt_mesh_gen_onoff_status);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_LEVEL_STATUS: {
- struct bt_mesh_gen_level_status *status = NULL;
- if (buf->len != 2 && buf->len != 5) {
- BT_ERR("Invalid Generic Level Status length %d", buf->len);
- return;
- }
- status = bt_mesh_calloc(sizeof(struct bt_mesh_gen_level_status));
- if (!status) {
- BT_ERR("%s, Out of memory", __func__);
- return;
- }
- status->present_level = net_buf_simple_pull_le16(buf);
- if (buf->len) {
- status->op_en = true;
- status->target_level = net_buf_simple_pull_le16(buf);
- status->remain_time = net_buf_simple_pull_u8(buf);
- }
- val = (uint8_t *)status;
- len = sizeof(struct bt_mesh_gen_level_status);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_DEF_TRANS_TIME_STATUS: {
- struct bt_mesh_gen_def_trans_time_status *status = NULL;
- if (buf->len != 1) {
- BT_ERR("Invalid Generic Default Trans Time Status length %d", buf->len);
- return;
- }
- status = bt_mesh_calloc(sizeof(struct bt_mesh_gen_def_trans_time_status));
- if (!status) {
- BT_ERR("%s, Out of memory", __func__);
- return;
- }
- status->trans_time = net_buf_simple_pull_u8(buf);
- val = (uint8_t *)status;
- len = sizeof(struct bt_mesh_gen_def_trans_time_status);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_ONPOWERUP_STATUS: {
- struct bt_mesh_gen_onpowerup_status *status = NULL;
- if (buf->len != 1) {
- BT_ERR("Invalid Generic OnPowerUp Status length %d", buf->len);
- return;
- }
- status = bt_mesh_calloc(sizeof(struct bt_mesh_gen_onpowerup_status));
- if (!status) {
- BT_ERR("%s, Out of memory", __func__);
- return;
- }
- status->onpowerup = net_buf_simple_pull_u8(buf);
- val = (uint8_t *)status;
- len = sizeof(struct bt_mesh_gen_onpowerup_status);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_POWER_LEVEL_STATUS: {
- struct bt_mesh_gen_power_level_status *status = NULL;
- if (buf->len != 2 && buf->len != 5) {
- BT_ERR("Invalid Generic Power Level Status length %d", buf->len);
- return;
- }
- status = bt_mesh_calloc(sizeof(struct bt_mesh_gen_power_level_status));
- if (!status) {
- BT_ERR("%s, Out of memory", __func__);
- return;
- }
- status->present_power = net_buf_simple_pull_le16(buf);
- if (buf->len) {
- status->op_en = true;
- status->target_power = net_buf_simple_pull_le16(buf);
- status->remain_time = net_buf_simple_pull_u8(buf);
- }
- val = (uint8_t *)status;
- len = sizeof(struct bt_mesh_gen_power_level_status);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_POWER_LAST_STATUS: {
- struct bt_mesh_gen_power_last_status *status = NULL;
- if (buf->len != 2) {
- BT_ERR("Invalid Generic Power Last Status length %d", buf->len);
- return;
- }
- status = bt_mesh_calloc(sizeof(struct bt_mesh_gen_power_last_status));
- if (!status) {
- BT_ERR("%s, Out of memory", __func__);
- return;
- }
- status->power = net_buf_simple_pull_le16(buf);
- val = (uint8_t *)status;
- len = sizeof(struct bt_mesh_gen_power_last_status);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_POWER_DEFAULT_STATUS: {
- struct bt_mesh_gen_power_default_status *status = NULL;
- if (buf->len != 2) {
- BT_ERR("Invalid Generic Power Default Status length %d", buf->len);
- return;
- }
- status = bt_mesh_calloc(sizeof(struct bt_mesh_gen_power_default_status));
- if (!status) {
- BT_ERR("%s, Out of memory", __func__);
- return;
- }
- status->power = net_buf_simple_pull_le16(buf);
- val = (uint8_t *)status;
- len = sizeof(struct bt_mesh_gen_power_default_status);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_POWER_RANGE_STATUS: {
- struct bt_mesh_gen_power_range_status *status = NULL;
- if (buf->len != 5) {
- BT_ERR("Invalid Generic Power Range Status length %d", buf->len);
- return;
- }
- status = bt_mesh_calloc(sizeof(struct bt_mesh_gen_power_range_status));
- if (!status) {
- BT_ERR("%s, Out of memory", __func__);
- return;
- }
- status->status_code = net_buf_simple_pull_u8(buf);
- status->range_min = net_buf_simple_pull_le16(buf);
- status->range_max = net_buf_simple_pull_le16(buf);
- val = (uint8_t *)status;
- len = sizeof(struct bt_mesh_gen_power_range_status);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_BATTERY_STATUS: {
- struct bt_mesh_gen_battery_status *status = NULL;
- if (buf->len != 8) {
- BT_ERR("Invalid Generic Battery Status length %d", buf->len);
- return;
- }
- status = bt_mesh_calloc(sizeof(struct bt_mesh_gen_battery_status));
- if (!status) {
- BT_ERR("%s, Out of memory", __func__);
- return;
- }
- uint32_t value = 0;
- value = net_buf_simple_pull_le32(buf);
- status->battery_level = (uint8_t)value;
- status->time_to_discharge = (value >> 8);
- value = net_buf_simple_pull_le32(buf);
- status->time_to_charge = (value & 0xffffff);
- status->flags = (uint8_t)(value >> 24);
- val = (uint8_t *)status;
- len = sizeof(struct bt_mesh_gen_battery_status);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_LOC_GLOBAL_STATUS: {
- struct bt_mesh_gen_loc_global_status *status = NULL;
- if (buf->len != 10) {
- BT_ERR("Invalid Generic Location Global Status length %d", buf->len);
- return;
- }
- status = bt_mesh_calloc(sizeof(struct bt_mesh_gen_loc_global_status));
- if (!status) {
- BT_ERR("%s, Out of memory", __func__);
- return;
- }
- status->global_latitude = net_buf_simple_pull_le32(buf);
- status->global_longitude = net_buf_simple_pull_le32(buf);
- status->global_altitude = net_buf_simple_pull_le16(buf);
- val = (uint8_t *)status;
- len = sizeof(struct bt_mesh_gen_loc_global_status);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_LOC_LOCAL_STATUS: {
- struct bt_mesh_gen_loc_local_status *status = NULL;
- if (buf->len != 9) {
- BT_ERR("Invalid Generic Location Local Status length %d", buf->len);
- return;
- }
- status = bt_mesh_calloc(sizeof(struct bt_mesh_gen_loc_local_status));
- if (!status) {
- BT_ERR("%s, Out of memory", __func__);
- return;
- }
- status->local_north = net_buf_simple_pull_le16(buf);
- status->local_east = net_buf_simple_pull_le16(buf);
- status->local_altitude = net_buf_simple_pull_le16(buf);
- status->floor_number = net_buf_simple_pull_u8(buf);
- status->uncertainty = net_buf_simple_pull_le16(buf);
- val = (uint8_t *)status;
- len = sizeof(struct bt_mesh_gen_loc_local_status);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_USER_PROPERTIES_STATUS: {
- struct bt_mesh_gen_user_properties_status *status = NULL;
- status = bt_mesh_calloc(sizeof(struct bt_mesh_gen_user_properties_status));
- if (!status) {
- BT_ERR("%s, Out of memory", __func__);
- return;
- }
- status->user_property_ids = bt_mesh_alloc_buf(buf->len);
- if (!status->user_property_ids) {
- BT_ERR("%s, Out of memory", __func__);
- bt_mesh_free(status);
- return;
- }
- net_buf_simple_add_mem(status->user_property_ids, buf->data, buf->len);
- val = (uint8_t *)status;
- len = sizeof(struct bt_mesh_gen_user_properties_status);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_USER_PROPERTY_STATUS: {
- struct bt_mesh_gen_user_property_status *status = NULL;
- status = bt_mesh_calloc(sizeof(struct bt_mesh_gen_user_property_status));
- if (!status) {
- BT_ERR("%s, Out of memory", __func__);
- return;
- }
- status->user_property_id = net_buf_simple_pull_le16(buf);
- if (buf->len) {
- status->op_en = true;
- status->user_access = net_buf_simple_pull_u8(buf);
- status->user_property_value = bt_mesh_alloc_buf(buf->len);
- if (!status->user_property_value) {
- BT_ERR("%s, Out of memory", __func__);
- bt_mesh_free(status);
- return;
- }
- net_buf_simple_add_mem(status->user_property_value, buf->data, buf->len);
- }
- val = (uint8_t *)status;
- len = sizeof(struct bt_mesh_gen_user_property_status);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTIES_STATUS: {
- struct bt_mesh_gen_admin_properties_status *status = NULL;
- status = bt_mesh_calloc(sizeof(struct bt_mesh_gen_admin_properties_status));
- if (!status) {
- BT_ERR("%s, Out of memory", __func__);
- return;
- }
- status->admin_property_ids = bt_mesh_alloc_buf(buf->len);
- if (!status->admin_property_ids) {
- BT_ERR("%s, Out of memory", __func__);
- bt_mesh_free(status);
- return;
- }
- net_buf_simple_add_mem(status->admin_property_ids, buf->data, buf->len);
- val = (uint8_t *)status;
- len = sizeof(struct bt_mesh_gen_admin_properties_status);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTY_STATUS: {
- struct bt_mesh_gen_admin_property_status *status = NULL;
- status = bt_mesh_calloc(sizeof(struct bt_mesh_gen_admin_property_status));
- if (!status) {
- BT_ERR("%s, Out of memory", __func__);
- return;
- }
- status->admin_property_id = net_buf_simple_pull_le16(buf);
- if (buf->len) {
- status->op_en = true;
- status->admin_user_access = net_buf_simple_pull_u8(buf);
- status->admin_property_value = bt_mesh_alloc_buf(buf->len);
- if (!status->admin_property_value) {
- BT_ERR("%s, Out of memory", __func__);
- bt_mesh_free(status);
- return;
- }
- net_buf_simple_add_mem(status->admin_property_value, buf->data, buf->len);
- }
- val = (uint8_t *)status;
- len = sizeof(struct bt_mesh_gen_admin_property_status);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_MANU_PROPERTIES_STATUS: {
- struct bt_mesh_gen_manu_properties_status *status = NULL;
- status = bt_mesh_calloc(sizeof(struct bt_mesh_gen_manu_properties_status));
- if (!status) {
- BT_ERR("%s, Out of memory", __func__);
- return;
- }
- status->manu_property_ids = bt_mesh_alloc_buf(buf->len);
- if (!status->manu_property_ids) {
- BT_ERR("%s, Out of memory", __func__);
- bt_mesh_free(status);
- return;
- }
- net_buf_simple_add_mem(status->manu_property_ids, buf->data, buf->len);
- val = (uint8_t *)status;
- len = sizeof(struct bt_mesh_gen_manu_properties_status);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_MANU_PROPERTY_STATUS: {
- struct bt_mesh_gen_manu_property_status *status = NULL;
- status = bt_mesh_calloc(sizeof(struct bt_mesh_gen_manu_property_status));
- if (!status) {
- BT_ERR("%s, Out of memory", __func__);
- return;
- }
- status->manu_property_id = net_buf_simple_pull_le16(buf);
- if (buf->len) {
- status->op_en = true;
- status->manu_user_access = net_buf_simple_pull_u8(buf);
- status->manu_property_value = bt_mesh_alloc_buf(buf->len);
- if (!status->manu_property_value) {
- BT_ERR("%s, Out of memory", __func__);
- bt_mesh_free(status);
- return;
- }
- net_buf_simple_add_mem(status->manu_property_value, buf->data, buf->len);
- }
- val = (uint8_t *)status;
- len = sizeof(struct bt_mesh_gen_manu_property_status);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_CLIENT_PROPERTIES_STATUS: {
- struct bt_mesh_gen_client_properties_status *status = NULL;
- status = bt_mesh_calloc(sizeof(struct bt_mesh_gen_client_properties_status));
- if (!status) {
- BT_ERR("%s, Out of memory", __func__);
- return;
- }
- status->client_property_ids = bt_mesh_alloc_buf(buf->len);
- if (!status->client_property_ids) {
- BT_ERR("%s, Out of memory", __func__);
- bt_mesh_free(status);
- return;
- }
- net_buf_simple_add_mem(status->client_property_ids, buf->data, buf->len);
- val = (uint8_t *)status;
- len = sizeof(struct bt_mesh_gen_client_properties_status);
- break;
- }
- default:
- BT_ERR("Invalid Generic Status opcode 0x%04x", ctx->recv_op);
- return;
- }
- buf->data = val;
- buf->len = len;
- bt_mesh_mutex_lock(&generic_client_lock);
- node = bt_mesh_is_client_recv_publish_msg(model, ctx, buf, true);
- if (!node) {
- BT_DBG("Unexpected Generic Status 0x%04x", ctx->recv_op);
- } else {
- switch (node->opcode) {
- case BLE_MESH_MODEL_OP_GEN_ONOFF_GET:
- case BLE_MESH_MODEL_OP_GEN_LEVEL_GET:
- case BLE_MESH_MODEL_OP_GEN_DEF_TRANS_TIME_GET:
- case BLE_MESH_MODEL_OP_GEN_ONPOWERUP_GET:
- case BLE_MESH_MODEL_OP_GEN_POWER_LEVEL_GET:
- case BLE_MESH_MODEL_OP_GEN_POWER_LAST_GET:
- case BLE_MESH_MODEL_OP_GEN_POWER_DEFAULT_GET:
- case BLE_MESH_MODEL_OP_GEN_POWER_RANGE_GET:
- case BLE_MESH_MODEL_OP_GEN_BATTERY_GET:
- case BLE_MESH_MODEL_OP_GEN_LOC_GLOBAL_GET:
- case BLE_MESH_MODEL_OP_GEN_LOC_LOCAL_GET:
- case BLE_MESH_MODEL_OP_GEN_USER_PROPERTIES_GET:
- case BLE_MESH_MODEL_OP_GEN_USER_PROPERTY_GET:
- case BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTIES_GET:
- case BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTY_GET:
- case BLE_MESH_MODEL_OP_GEN_MANU_PROPERTIES_GET:
- case BLE_MESH_MODEL_OP_GEN_MANU_PROPERTY_GET:
- case BLE_MESH_MODEL_OP_GEN_CLIENT_PROPERTIES_GET:
- evt = BTC_BLE_MESH_EVT_GENERIC_CLIENT_GET_STATE;
- break;
- case BLE_MESH_MODEL_OP_GEN_ONOFF_SET:
- case BLE_MESH_MODEL_OP_GEN_LEVEL_SET:
- case BLE_MESH_MODEL_OP_GEN_DELTA_SET:
- case BLE_MESH_MODEL_OP_GEN_MOVE_SET:
- case BLE_MESH_MODEL_OP_GEN_DEF_TRANS_TIME_SET:
- case BLE_MESH_MODEL_OP_GEN_ONPOWERUP_SET:
- case BLE_MESH_MODEL_OP_GEN_POWER_LEVEL_SET:
- case BLE_MESH_MODEL_OP_GEN_POWER_DEFAULT_SET:
- case BLE_MESH_MODEL_OP_GEN_POWER_RANGE_SET:
- case BLE_MESH_MODEL_OP_GEN_LOC_GLOBAL_SET:
- case BLE_MESH_MODEL_OP_GEN_LOC_LOCAL_SET:
- case BLE_MESH_MODEL_OP_GEN_USER_PROPERTY_SET:
- case BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTY_SET:
- case BLE_MESH_MODEL_OP_GEN_MANU_PROPERTY_SET:
- evt = BTC_BLE_MESH_EVT_GENERIC_CLIENT_SET_STATE;
- break;
- default:
- break;
- }
- if (!k_delayed_work_free(&node->timer)) {
- uint32_t opcode = node->opcode;
- bt_mesh_client_free_node(node);
- bt_mesh_generic_client_cb_evt_to_btc(opcode, evt, model, ctx, val, len);
- }
- }
- bt_mesh_mutex_unlock(&generic_client_lock);
- switch (ctx->recv_op) {
- case BLE_MESH_MODEL_OP_GEN_USER_PROPERTIES_STATUS: {
- struct bt_mesh_gen_user_properties_status *status;
- status = (struct bt_mesh_gen_user_properties_status *)val;
- bt_mesh_free_buf(status->user_property_ids);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_USER_PROPERTY_STATUS: {
- struct bt_mesh_gen_user_property_status *status;
- status = (struct bt_mesh_gen_user_property_status *)val;
- bt_mesh_free_buf(status->user_property_value);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTIES_STATUS: {
- struct bt_mesh_gen_admin_properties_status *status;
- status = (struct bt_mesh_gen_admin_properties_status *)val;
- bt_mesh_free_buf(status->admin_property_ids);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTY_STATUS: {
- struct bt_mesh_gen_admin_property_status *status;
- status = (struct bt_mesh_gen_admin_property_status *)val;
- bt_mesh_free_buf(status->admin_property_value);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_MANU_PROPERTIES_STATUS: {
- struct bt_mesh_gen_manu_properties_status *status;
- status = (struct bt_mesh_gen_manu_properties_status *)val;
- bt_mesh_free_buf(status->manu_property_ids);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_MANU_PROPERTY_STATUS: {
- struct bt_mesh_gen_manu_property_status *status;
- status = (struct bt_mesh_gen_manu_property_status *)val;
- bt_mesh_free_buf(status->manu_property_value);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_CLIENT_PROPERTIES_STATUS: {
- struct bt_mesh_gen_client_properties_status *status;
- status = (struct bt_mesh_gen_client_properties_status *)val;
- bt_mesh_free_buf(status->client_property_ids);
- break;
- }
- default:
- break;
- }
- bt_mesh_free(val);
- }
- const struct bt_mesh_model_op bt_mesh_gen_onoff_cli_op[] = {
- { BLE_MESH_MODEL_OP_GEN_ONOFF_STATUS, 1, generic_status },
- BLE_MESH_MODEL_OP_END,
- };
- const struct bt_mesh_model_op bt_mesh_gen_level_cli_op[] = {
- { BLE_MESH_MODEL_OP_GEN_LEVEL_STATUS, 2, generic_status },
- BLE_MESH_MODEL_OP_END,
- };
- const struct bt_mesh_model_op bt_mesh_gen_def_trans_time_cli_op[] = {
- { BLE_MESH_MODEL_OP_GEN_DEF_TRANS_TIME_STATUS, 1, generic_status },
- BLE_MESH_MODEL_OP_END,
- };
- const struct bt_mesh_model_op bt_mesh_gen_power_onoff_cli_op[] = {
- { BLE_MESH_MODEL_OP_GEN_ONPOWERUP_STATUS, 1, generic_status },
- BLE_MESH_MODEL_OP_END,
- };
- const struct bt_mesh_model_op bt_mesh_gen_power_level_cli_op[] = {
- { BLE_MESH_MODEL_OP_GEN_POWER_LEVEL_STATUS, 2, generic_status },
- { BLE_MESH_MODEL_OP_GEN_POWER_LAST_STATUS, 2, generic_status },
- { BLE_MESH_MODEL_OP_GEN_POWER_DEFAULT_STATUS, 2, generic_status },
- { BLE_MESH_MODEL_OP_GEN_POWER_RANGE_STATUS, 5, generic_status },
- BLE_MESH_MODEL_OP_END,
- };
- const struct bt_mesh_model_op bt_mesh_gen_battery_cli_op[] = {
- { BLE_MESH_MODEL_OP_GEN_BATTERY_STATUS, 8, generic_status },
- BLE_MESH_MODEL_OP_END,
- };
- const struct bt_mesh_model_op bt_mesh_gen_location_cli_op[] = {
- { BLE_MESH_MODEL_OP_GEN_LOC_GLOBAL_STATUS, 10, generic_status },
- { BLE_MESH_MODEL_OP_GEN_LOC_LOCAL_STATUS, 9, generic_status },
- BLE_MESH_MODEL_OP_END,
- };
- const struct bt_mesh_model_op bt_mesh_gen_property_cli_op[] = {
- { BLE_MESH_MODEL_OP_GEN_USER_PROPERTIES_STATUS, 2, generic_status },
- { BLE_MESH_MODEL_OP_GEN_USER_PROPERTY_STATUS, 2, generic_status },
- { BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTIES_STATUS, 2, generic_status },
- { BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTY_STATUS, 2, generic_status },
- { BLE_MESH_MODEL_OP_GEN_MANU_PROPERTIES_STATUS, 2, generic_status },
- { BLE_MESH_MODEL_OP_GEN_MANU_PROPERTY_STATUS, 2, generic_status },
- { BLE_MESH_MODEL_OP_GEN_CLIENT_PROPERTIES_STATUS, 2, generic_status },
- BLE_MESH_MODEL_OP_END,
- };
- static int gen_get_state(bt_mesh_client_common_param_t *common, void *value)
- {
- NET_BUF_SIMPLE_DEFINE(msg, BLE_MESH_GEN_GET_STATE_MSG_LEN);
- bt_mesh_model_msg_init(&msg, common->opcode);
- if (value) {
- switch (common->opcode) {
- case BLE_MESH_MODEL_OP_GEN_USER_PROPERTY_GET: {
- struct bt_mesh_gen_user_property_get *get;
- get = (struct bt_mesh_gen_user_property_get *)value;
- net_buf_simple_add_le16(&msg, get->user_property_id);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTY_GET: {
- struct bt_mesh_gen_admin_property_get *get;
- get = (struct bt_mesh_gen_admin_property_get *)value;
- net_buf_simple_add_le16(&msg, get->admin_property_id);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_MANU_PROPERTY_GET: {
- struct bt_mesh_gen_manu_property_get *get;
- get = (struct bt_mesh_gen_manu_property_get *)value;
- net_buf_simple_add_le16(&msg, get->manu_property_id);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_CLIENT_PROPERTIES_GET: {
- struct bt_mesh_gen_client_properties_get *get;
- get = (struct bt_mesh_gen_client_properties_get *)value;
- net_buf_simple_add_le16(&msg, get->client_property_id);
- break;
- }
- default:
- BT_DBG("No parameters for Generic Get 0x%04x", common->opcode);
- break;
- }
- }
- return bt_mesh_client_send_msg(common, &msg, true, timeout_handler);
- }
- static int gen_set_state(bt_mesh_client_common_param_t *common,
- void *value, uint16_t value_len, bool need_ack)
- {
- struct net_buf_simple *msg = NULL;
- int err = 0;
- msg = bt_mesh_alloc_buf(value_len);
- if (!msg) {
- BT_ERR("%s, Out of memory", __func__);
- return -ENOMEM;
- }
- bt_mesh_model_msg_init(msg, common->opcode);
- switch (common->opcode) {
- case BLE_MESH_MODEL_OP_GEN_ONOFF_SET:
- case BLE_MESH_MODEL_OP_GEN_ONOFF_SET_UNACK: {
- struct bt_mesh_gen_onoff_set *set;
- set = (struct bt_mesh_gen_onoff_set *)value;
- net_buf_simple_add_u8(msg, set->onoff);
- net_buf_simple_add_u8(msg, set->tid);
- if (set->op_en) {
- net_buf_simple_add_u8(msg, set->trans_time);
- net_buf_simple_add_u8(msg, set->delay);
- }
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_LEVEL_SET:
- case BLE_MESH_MODEL_OP_GEN_LEVEL_SET_UNACK: {
- struct bt_mesh_gen_level_set *set;
- set = (struct bt_mesh_gen_level_set *)value;
- net_buf_simple_add_le16(msg, set->level);
- net_buf_simple_add_u8(msg, set->tid);
- if (set->op_en) {
- net_buf_simple_add_u8(msg, set->trans_time);
- net_buf_simple_add_u8(msg, set->delay);
- }
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_DELTA_SET:
- case BLE_MESH_MODEL_OP_GEN_DELTA_SET_UNACK: {
- struct bt_mesh_gen_delta_set *set;
- set = (struct bt_mesh_gen_delta_set *)value;
- net_buf_simple_add_le32(msg, set->delta_level);
- net_buf_simple_add_u8(msg, set->tid);
- if (set->op_en) {
- net_buf_simple_add_u8(msg, set->trans_time);
- net_buf_simple_add_u8(msg, set->delay);
- }
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_MOVE_SET:
- case BLE_MESH_MODEL_OP_GEN_MOVE_SET_UNACK: {
- struct bt_mesh_gen_move_set *set;
- set = (struct bt_mesh_gen_move_set *)value;
- net_buf_simple_add_le16(msg, set->delta_level);
- net_buf_simple_add_u8(msg, set->tid);
- if (set->op_en) {
- net_buf_simple_add_u8(msg, set->trans_time);
- net_buf_simple_add_u8(msg, set->delay);
- }
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_DEF_TRANS_TIME_SET:
- case BLE_MESH_MODEL_OP_GEN_DEF_TRANS_TIME_SET_UNACK: {
- struct bt_mesh_gen_def_trans_time_set *set;
- set = (struct bt_mesh_gen_def_trans_time_set *)value;
- net_buf_simple_add_u8(msg, set->trans_time);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_ONPOWERUP_SET:
- case BLE_MESH_MODEL_OP_GEN_ONPOWERUP_SET_UNACK: {
- struct bt_mesh_gen_onpowerup_set *set;
- set = (struct bt_mesh_gen_onpowerup_set *)value;
- net_buf_simple_add_u8(msg, set->onpowerup);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_POWER_LEVEL_SET:
- case BLE_MESH_MODEL_OP_GEN_POWER_LEVEL_SET_UNACK: {
- struct bt_mesh_gen_power_level_set *set;
- set = (struct bt_mesh_gen_power_level_set *)value;
- net_buf_simple_add_le16(msg, set->power);
- net_buf_simple_add_u8(msg, set->tid);
- if (set->op_en) {
- net_buf_simple_add_u8(msg, set->trans_time);
- net_buf_simple_add_u8(msg, set->delay);
- }
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_POWER_DEFAULT_SET:
- case BLE_MESH_MODEL_OP_GEN_POWER_DEFAULT_SET_UNACK: {
- struct bt_mesh_gen_power_default_set *set;
- set = (struct bt_mesh_gen_power_default_set *)value;
- net_buf_simple_add_le16(msg, set->power);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_POWER_RANGE_SET:
- case BLE_MESH_MODEL_OP_GEN_POWER_RANGE_SET_UNACK: {
- struct bt_mesh_gen_power_range_set *set;
- set = (struct bt_mesh_gen_power_range_set *)value;
- net_buf_simple_add_le16(msg, set->range_min);
- net_buf_simple_add_le16(msg, set->range_max);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_LOC_GLOBAL_SET:
- case BLE_MESH_MODEL_OP_GEN_LOC_GLOBAL_SET_UNACK: {
- struct bt_mesh_gen_loc_global_set *set;
- set = (struct bt_mesh_gen_loc_global_set *)value;
- net_buf_simple_add_le32(msg, set->global_latitude);
- net_buf_simple_add_le32(msg, set->global_longitude);
- net_buf_simple_add_le16(msg, set->global_altitude);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_LOC_LOCAL_SET:
- case BLE_MESH_MODEL_OP_GEN_LOC_LOCAL_SET_UNACK: {
- struct bt_mesh_gen_loc_local_set *set;
- set = (struct bt_mesh_gen_loc_local_set *)value;
- net_buf_simple_add_le16(msg, set->local_north);
- net_buf_simple_add_le16(msg, set->local_east);
- net_buf_simple_add_le16(msg, set->local_altitude);
- net_buf_simple_add_u8(msg, set->floor_number);
- net_buf_simple_add_le16(msg, set->uncertainty);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_USER_PROPERTY_SET:
- case BLE_MESH_MODEL_OP_GEN_USER_PROPERTY_SET_UNACK: {
- struct bt_mesh_gen_user_property_set *set;
- set = (struct bt_mesh_gen_user_property_set *)value;
- net_buf_simple_add_le16(msg, set->user_property_id);
- net_buf_simple_add_mem(msg, set->user_property_value->data, set->user_property_value->len);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTY_SET:
- case BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTY_SET_UNACK: {
- struct bt_mesh_gen_admin_property_set *set;
- set = (struct bt_mesh_gen_admin_property_set *)value;
- net_buf_simple_add_le16(msg, set->admin_property_id);
- net_buf_simple_add_u8(msg, set->admin_user_access);
- net_buf_simple_add_mem(msg, set->admin_property_value->data, set->admin_property_value->len);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_MANU_PROPERTY_SET:
- case BLE_MESH_MODEL_OP_GEN_MANU_PROPERTY_SET_UNACK: {
- struct bt_mesh_gen_manu_property_set *set;
- set = (struct bt_mesh_gen_manu_property_set *)value;
- net_buf_simple_add_le16(msg, set->manu_property_id);
- net_buf_simple_add_u8(msg, set->manu_user_access);
- break;
- }
- default:
- BT_ERR("Invalid Generic Set opcode 0x%04x", common->opcode);
- err = -EINVAL;
- goto end;
- }
- err = bt_mesh_client_send_msg(common, msg, need_ack, timeout_handler);
- end:
- bt_mesh_free_buf(msg);
- return err;
- }
- int bt_mesh_generic_client_get_state(bt_mesh_client_common_param_t *common, void *get)
- {
- bt_mesh_generic_client_t *client = NULL;
- if (!common || !common->model) {
- BT_ERR("%s, Invalid parameter", __func__);
- return -EINVAL;
- }
- client = (bt_mesh_generic_client_t *)common->model->user_data;
- if (!client || !client->internal_data) {
- BT_ERR("Invalid Generic client data");
- return -EINVAL;
- }
- switch (common->opcode) {
- case BLE_MESH_MODEL_OP_GEN_ONOFF_GET:
- case BLE_MESH_MODEL_OP_GEN_LEVEL_GET:
- case BLE_MESH_MODEL_OP_GEN_DEF_TRANS_TIME_GET:
- case BLE_MESH_MODEL_OP_GEN_ONPOWERUP_GET:
- case BLE_MESH_MODEL_OP_GEN_POWER_LEVEL_GET:
- case BLE_MESH_MODEL_OP_GEN_POWER_LAST_GET:
- case BLE_MESH_MODEL_OP_GEN_POWER_DEFAULT_GET:
- case BLE_MESH_MODEL_OP_GEN_POWER_RANGE_GET:
- case BLE_MESH_MODEL_OP_GEN_BATTERY_GET:
- case BLE_MESH_MODEL_OP_GEN_LOC_GLOBAL_GET:
- case BLE_MESH_MODEL_OP_GEN_LOC_LOCAL_GET:
- case BLE_MESH_MODEL_OP_GEN_USER_PROPERTIES_GET:
- case BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTIES_GET:
- case BLE_MESH_MODEL_OP_GEN_MANU_PROPERTIES_GET:
- break;
- case BLE_MESH_MODEL_OP_GEN_USER_PROPERTY_GET:
- if (!get) {
- BT_ERR("Invalid Generic User Property Get");
- return -EINVAL;
- }
- break;
- case BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTY_GET:
- if (!get) {
- BT_ERR("Invalid Generic Admin Property Get");
- return -EINVAL;
- }
- break;
- case BLE_MESH_MODEL_OP_GEN_MANU_PROPERTY_GET:
- if (!get) {
- BT_ERR("Invalid Generic Manu Property Get");
- return -EINVAL;
- }
- break;
- case BLE_MESH_MODEL_OP_GEN_CLIENT_PROPERTIES_GET:
- if (!get) {
- BT_ERR("Invalid Generic Client Properties Get");
- return -EINVAL;
- }
- break;
- default:
- BT_ERR("Invalid Generic Get opcode 0x%04x", common->opcode);
- return -EINVAL;
- }
- return gen_get_state(common, get);
- }
- int bt_mesh_generic_client_set_state(bt_mesh_client_common_param_t *common, void *set)
- {
- bt_mesh_generic_client_t *client = NULL;
- uint16_t length = 0U;
- bool need_ack = false;
- if (!common || !common->model || !set) {
- BT_ERR("%s, Invalid parameter", __func__);
- return -EINVAL;
- }
- client = (bt_mesh_generic_client_t *)common->model->user_data;
- if (!client || !client->internal_data) {
- BT_ERR("Invalid Generic client data");
- return -EINVAL;
- }
- switch (common->opcode) {
- case BLE_MESH_MODEL_OP_GEN_ONOFF_SET:
- need_ack = true;
- case BLE_MESH_MODEL_OP_GEN_ONOFF_SET_UNACK: {
- struct bt_mesh_gen_onoff_set *value;
- value = (struct bt_mesh_gen_onoff_set *)set;
- if (value->op_en) {
- if ((value->trans_time & 0x3F) > 0x3E) {
- BT_ERR("Invalid Generic OnOff Set transition time");
- return -EINVAL;
- }
- }
- length = BLE_MESH_GEN_ONOFF_SET_MSG_LEN;
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_LEVEL_SET:
- need_ack = true;
- case BLE_MESH_MODEL_OP_GEN_LEVEL_SET_UNACK: {
- struct bt_mesh_gen_level_set *value;
- value = (struct bt_mesh_gen_level_set *)set;
- if (value->op_en) {
- if ((value->trans_time & 0x3F) > 0x3E) {
- BT_ERR("Invalid Generic Level Set transition time");
- return -EINVAL;
- }
- }
- length = BLE_MESH_GEN_LEVEL_SET_MSG_LEN;
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_DELTA_SET:
- need_ack = true;
- case BLE_MESH_MODEL_OP_GEN_DELTA_SET_UNACK: {
- struct bt_mesh_gen_delta_set *value;
- value = (struct bt_mesh_gen_delta_set *)set;
- if (value->op_en) {
- if ((value->trans_time & 0x3F) > 0x3E) {
- BT_ERR("Invalid Generic Delta Set transition time");
- return -EINVAL;
- }
- }
- length = BLE_MESH_GEN_DELTA_SET_MSG_LEN;
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_MOVE_SET:
- need_ack = true;
- case BLE_MESH_MODEL_OP_GEN_MOVE_SET_UNACK: {
- struct bt_mesh_gen_move_set *value;
- value = (struct bt_mesh_gen_move_set *)set;
- if (value->op_en) {
- if ((value->trans_time & 0x3F) > 0x3E) {
- BT_ERR("Invalid Generic Move Set transition time");
- return -EINVAL;
- }
- }
- length = BLE_MESH_GEN_MOVE_SET_MSG_LEN;
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_DEF_TRANS_TIME_SET:
- need_ack = true;
- case BLE_MESH_MODEL_OP_GEN_DEF_TRANS_TIME_SET_UNACK: {
- uint8_t value = *(uint8_t *)set;
- if ((value & 0x3F) > 0x3E) {
- BT_ERR("Invalid Generic Default Trans Time Set transition time");
- return -EINVAL;
- }
- length = BLE_MESH_GEN_DEF_TRANS_TIME_SET_MSG_LEN;
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_ONPOWERUP_SET:
- need_ack = true;
- case BLE_MESH_MODEL_OP_GEN_ONPOWERUP_SET_UNACK:
- length = BLE_MESH_GEN_ONPOWERUP_SET_MSG_LEN;
- break;
- case BLE_MESH_MODEL_OP_GEN_POWER_LEVEL_SET:
- need_ack = true;
- case BLE_MESH_MODEL_OP_GEN_POWER_LEVEL_SET_UNACK: {
- struct bt_mesh_gen_power_level_set *value;
- value = (struct bt_mesh_gen_power_level_set *)set;
- if (value->op_en) {
- if ((value->trans_time & 0x3F) > 0x3E) {
- BT_ERR("Invalid Generic Power Level Set transition time");
- return -EINVAL;
- }
- }
- length = BLE_MESH_GEN_POWER_LEVEL_SET_MSG_LEN;
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_POWER_DEFAULT_SET:
- need_ack = true;
- case BLE_MESH_MODEL_OP_GEN_POWER_DEFAULT_SET_UNACK:
- length = BLE_MESH_GEN_POWER_DEFAULT_SET_MSG_LEN;
- break;
- case BLE_MESH_MODEL_OP_GEN_POWER_RANGE_SET:
- need_ack = true;
- case BLE_MESH_MODEL_OP_GEN_POWER_RANGE_SET_UNACK: {
- struct bt_mesh_gen_power_range_set *value;
- value = (struct bt_mesh_gen_power_range_set *)set;
- if (value->range_min > value->range_max) {
- BT_ERR("Generic Power Level Set range min is greater than range max");
- return -EINVAL;
- }
- length = BLE_MESH_GEN_POWER_RANGE_SET_MSG_LEN;
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_LOC_GLOBAL_SET:
- need_ack = true;
- case BLE_MESH_MODEL_OP_GEN_LOC_GLOBAL_SET_UNACK:
- length = BLE_MESH_GEN_LOC_GLOBAL_SET_MSG_LEN;
- break;
- case BLE_MESH_MODEL_OP_GEN_LOC_LOCAL_SET:
- need_ack = true;
- case BLE_MESH_MODEL_OP_GEN_LOC_LOCAL_SET_UNACK:
- length = BLE_MESH_GEN_LOC_LOCAL_SET_MSG_LEN;
- break;
- case BLE_MESH_MODEL_OP_GEN_USER_PROPERTY_SET:
- need_ack = true;
- case BLE_MESH_MODEL_OP_GEN_USER_PROPERTY_SET_UNACK: {
- struct bt_mesh_gen_user_property_set *value;
- value = (struct bt_mesh_gen_user_property_set *)set;
- if (!value->user_property_value) {
- BT_ERR("Invalid Generic User Property value");
- return -EINVAL;
- }
- length = (1 + 2 + value->user_property_value->len + 4);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTY_SET:
- need_ack = true;
- case BLE_MESH_MODEL_OP_GEN_ADMIN_PROPERTY_SET_UNACK: {
- struct bt_mesh_gen_admin_property_set *value;
- value = (struct bt_mesh_gen_admin_property_set *)set;
- if (!value->admin_property_value) {
- BT_ERR("Invalid Generic Admin Property value");
- return -EINVAL;
- }
- length = (1 + 2 + 1 + value->admin_property_value->len + 4);
- break;
- }
- case BLE_MESH_MODEL_OP_GEN_MANU_PROPERTY_SET:
- need_ack = true;
- case BLE_MESH_MODEL_OP_GEN_MANU_PROPERTY_SET_UNACK:
- length = BLE_MESH_GEN_MANU_PROPERTY_SET_MSG_LEN;
- break;
- default:
- BT_ERR("Invalid Generic Set opcode 0x%04x", common->opcode);
- return -EINVAL;
- }
- return gen_set_state(common, set, length, need_ack);
- }
- static int generic_client_init(struct bt_mesh_model *model)
- {
- generic_internal_data_t *internal = NULL;
- bt_mesh_generic_client_t *client = NULL;
- if (!model) {
- BT_ERR("Invalid Generic client model");
- return -EINVAL;
- }
- client = (bt_mesh_generic_client_t *)model->user_data;
- if (!client) {
- BT_ERR("No Generic client context provided");
- return -EINVAL;
- }
- if (client->internal_data) {
- BT_WARN("%s, Already", __func__);
- return -EALREADY;
- }
- internal = bt_mesh_calloc(sizeof(generic_internal_data_t));
- if (!internal) {
- BT_ERR("%s, Out of memory", __func__);
- return -ENOMEM;
- }
- sys_slist_init(&internal->queue);
- client->model = model;
- client->op_pair_size = ARRAY_SIZE(gen_op_pair);
- client->op_pair = gen_op_pair;
- client->internal_data = internal;
- bt_mesh_mutex_create(&generic_client_lock);
- return 0;
- }
- #if CONFIG_BLE_MESH_DEINIT
- static int generic_client_deinit(struct bt_mesh_model *model)
- {
- bt_mesh_generic_client_t *client = NULL;
- if (!model) {
- BT_ERR("Invalid Generic client model");
- return -EINVAL;
- }
- client = (bt_mesh_generic_client_t *)model->user_data;
- if (!client) {
- BT_ERR("No Generic client context provided");
- return -EINVAL;
- }
- if (client->internal_data) {
- /* Remove items from the list */
- bt_mesh_client_clear_list(client->internal_data);
- /* Free the allocated internal data */
- bt_mesh_free(client->internal_data);
- client->internal_data = NULL;
- }
- bt_mesh_mutex_free(&generic_client_lock);
- return 0;
- }
- #endif /* CONFIG_BLE_MESH_DEINIT */
- const struct bt_mesh_model_cb bt_mesh_generic_client_cb = {
- .init = generic_client_init,
- #if CONFIG_BLE_MESH_DEINIT
- .deinit = generic_client_deinit,
- #endif /* CONFIG_BLE_MESH_DEINIT */
- };
- #endif /* CONFIG_BLE_MESH_GENERIC_CLIENT */
|