e8c552aaf5f9a5ed79f815956d6190ec57422272
[platform/core/connectivity/bluetooth-frwk.git] / bt-service / services / mesh / bt-service-mesh-config-client.c
1 /*
2  * Bluetooth-frwk
3  *
4  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
5  *
6  * @author: Anupam Roy <anupam.r@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *              http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21 #include <glib.h>
22 #include <dlog.h>
23 #include <fcntl.h>
24 #include <dirent.h>
25 #include <errno.h>
26 #include <limits.h>
27 #include <stdio.h>
28 #include <unistd.h>
29 #include <sys/stat.h>
30 #include <ell/ell.h>
31
32 #include "bt-service-common.h"
33 #include "bt-service-core-adapter.h"
34 #include "bt-service-event-receiver.h"
35 #include "bt-request-handler.h"
36 #include "bluetooth-api.h"
37
38 #include "bluetooth-api.h"
39 #include "bluetooth-mesh-api.h"
40 #include "bt-internal-types.h"
41 #include "bt-service-util.h"
42 #include "bt-service-common.h"
43 #include "bt-service-core-adapter.h"
44 #include "bt-service-event-receiver.h"
45 #include "bt-request-handler.h"
46 #include "bluetooth-api.h"
47
48 #include "bluetooth-api.h"
49 #include "bluetooth-mesh-api.h"
50 #include "bt-internal-types.h"
51 #include "bt-service-util.h"
52 #include "bt-service-common.h"
53 #include "bt-service-event.h"
54
55 #include "bt-service-mesh-network.h"
56 #include "bt-service-mesh-cdb.h"
57 #include "bt-service-mesh-nodes.h"
58 #include "bt-service-mesh-keys.h"
59 #include "bt-service-mesh-util.h"
60
61 #include <oal-hardware.h>
62 #include <oal-manager.h>
63 #include <oal-event.h>
64 #include <oal-adapter-mgr.h>
65 #include <oal-device-mgr.h>
66 #include <oal-mesh.h>
67
68 #include "bt-internal-types.h"
69
70 #define MESH_CONFIG_BUFFER_MAX_LEN 100
71
72
73 static void __bt_mesh_send_node_browsed_event(int result,
74                 bluetooth_mesh_node_discover_t *browse_evt);
75 static void __bt_mesh_handle_pending_dev_config_request_info(int result,
76                 int service_function, void *param,
77                         unsigned int size);
78
79 struct mesh_config_cmd {
80         uint32_t opcode;
81         uint32_t response;
82         const char *descriptor;
83 };
84
85 static struct l_queue *pending_requests;
86
87 struct mesh_pending_request {
88         struct l_timeout *timer;
89         const struct mesh_config_cmd *cmd;
90         uint8_t net_uuid[16];
91         uint16_t addr;
92         void *data;
93 };
94
95 static struct mesh_config_cmd commands[] = {
96         { MESH_OPCODE_APPKEY_ADD, MESH_OPCODE_APPKEY_STATUS, "AppKeyAdd" },
97         { MESH_OPCODE_APPKEY_DELETE, MESH_OPCODE_APPKEY_STATUS, "AppKeyDelete" },
98         { MESH_OPCODE_APPKEY_GET, MESH_OPCODE_APPKEY_LIST, "AppKeyGet" },
99         { MESH_OPCODE_APPKEY_LIST, MESH_RESPONSE_NONE, "AppKeyList" },
100         { MESH_OPCODE_APPKEY_STATUS, MESH_RESPONSE_NONE, "AppKeyStatus" },
101         { MESH_OPCODE_APPKEY_UPDATE, MESH_OPCODE_APPKEY_STATUS, "AppKeyUpdate" },
102         { MESH_OPCODE_DEV_COMP_GET, MESH_OPCODE_DEV_COMP_STATUS, "DeviceCompositionGet" },
103         { MESH_OPCODE_DEV_COMP_STATUS, MESH_RESPONSE_NONE, "DeviceCompositionStatus" },
104         { MESH_OPCODE_CONFIG_BEACON_GET, MESH_OPCODE_CONFIG_BEACON_STATUS, "BeaconGet" },
105         { MESH_OPCODE_CONFIG_BEACON_SET, MESH_OPCODE_CONFIG_BEACON_STATUS, "BeaconSet" },
106         { MESH_OPCODE_CONFIG_BEACON_STATUS, MESH_RESPONSE_NONE, "BeaconStatus" },
107         { MESH_OPCODE_CONFIG_DEFAULT_TTL_GET, MESH_OPCODE_CONFIG_DEFAULT_TTL_STATUS,
108                 "DefaultTTLGet" },
109         { MESH_OPCODE_CONFIG_DEFAULT_TTL_SET, MESH_OPCODE_CONFIG_DEFAULT_TTL_STATUS,
110                 "DefaultTTLSet" },
111         { MESH_OPCODE_CONFIG_DEFAULT_TTL_STATUS, MESH_RESPONSE_NONE, "DefaultTTLStatus" },
112         { MESH_OPCODE_CONFIG_FRIEND_GET, MESH_OPCODE_CONFIG_FRIEND_STATUS, "FriendGet" },
113         { MESH_OPCODE_CONFIG_FRIEND_SET, MESH_OPCODE_CONFIG_FRIEND_STATUS, "FrienSet" },
114         { MESH_OPCODE_CONFIG_FRIEND_STATUS, MESH_RESPONSE_NONE, "FriendStatus" },
115         { MESH_OPCODE_CONFIG_PROXY_GET, MESH_OPCODE_CONFIG_PROXY_STATUS, "ProxyGet" },
116         { MESH_OPCODE_CONFIG_PROXY_SET, MESH_OPCODE_CONFIG_PROXY_STATUS, "ProxySet" },
117         { MESH_OPCODE_CONFIG_PROXY_STATUS, MESH_RESPONSE_NONE, "ProxyStatus" },
118         { MESH_OPCODE_CONFIG_KEY_REFRESH_PHASE_GET, MESH_OPCODE_CONFIG_KEY_REFRESH_PHASE_STATUS,
119                 "KeyRefreshPhaseGet" },
120         { MESH_OPCODE_CONFIG_KEY_REFRESH_PHASE_SET, MESH_OPCODE_CONFIG_KEY_REFRESH_PHASE_STATUS,
121                 "KeyRefreshPhaseSet" },
122         { MESH_OPCODE_CONFIG_KEY_REFRESH_PHASE_STATUS, MESH_RESPONSE_NONE,
123                 "KeyRefreshPhaseStatus" },
124         { MESH_OPCODE_CONFIG_MODEL_PUB_GET, MESH_OPCODE_CONFIG_MODEL_PUB_STATUS, "ModelPubGet" },
125         { MESH_OPCODE_CONFIG_MODEL_PUB_SET, MESH_OPCODE_CONFIG_MODEL_PUB_STATUS, "ModelPubSet" },
126         { MESH_OPCODE_CONFIG_MODEL_PUB_STATUS, MESH_RESPONSE_NONE, "ModelPubStatus" },
127         { MESH_OPCODE_CONFIG_MODEL_PUB_VIRT_SET, MESH_OPCODE_CONFIG_MODEL_PUB_STATUS,
128                 "ModelPubVirtualSet" },
129         { MESH_OPCODE_CONFIG_MODEL_SUB_ADD, MESH_OPCODE_CONFIG_MODEL_SUB_STATUS, "ModelSubAdd" },
130         { MESH_OPCODE_CONFIG_MODEL_SUB_DELETE, MESH_OPCODE_CONFIG_MODEL_SUB_STATUS,
131                 "ModelSubDelete" },
132         { MESH_OPCODE_CONFIG_MODEL_SUB_DELETE_ALL, MESH_OPCODE_CONFIG_MODEL_SUB_STATUS,
133                 "ModelSubDeleteAll" },
134         { MESH_OPCODE_CONFIG_MODEL_SUB_OVERWRITE, MESH_OPCODE_CONFIG_MODEL_SUB_STATUS,
135                 "ModelSubOverwrite" },
136         { MESH_OPCODE_CONFIG_MODEL_SUB_STATUS, MESH_RESPONSE_NONE, "ModelSubStatus" },
137         { MESH_OPCODE_CONFIG_MODEL_SUB_VIRT_ADD, MESH_OPCODE_CONFIG_MODEL_SUB_STATUS,
138                 "ModelSubVirtAdd" },
139         { MESH_OPCODE_CONFIG_MODEL_SUB_VIRT_DELETE, MESH_OPCODE_CONFIG_MODEL_SUB_STATUS,
140                 "ModelSubVirtDelete" },
141         { MESH_OPCODE_CONFIG_MODEL_SUB_VIRT_OVERWRITE, MESH_OPCODE_CONFIG_MODEL_SUB_STATUS,
142                 "ModelSubVirtOverwrite" },
143         { MESH_OPCODE_CONFIG_NETWORK_TRANSMIT_GET, MESH_OPCODE_CONFIG_NETWORK_TRANSMIT_STATUS,
144                 "NetworkTransmitGet" },
145         { MESH_OPCODE_CONFIG_NETWORK_TRANSMIT_SET, MESH_OPCODE_CONFIG_NETWORK_TRANSMIT_STATUS,
146                 "NetworkTransmitSet" },
147         { MESH_OPCODE_CONFIG_NETWORK_TRANSMIT_STATUS, MESH_RESPONSE_NONE,
148                 "NetworkTransmitStatus" },
149         { MESH_OPCODE_CONFIG_RELAY_GET, MESH_OPCODE_CONFIG_RELAY_STATUS, "RelayGet" },
150         { MESH_OPCODE_CONFIG_RELAY_SET, MESH_OPCODE_CONFIG_RELAY_STATUS, "RelaySet" },
151         { MESH_OPCODE_CONFIG_RELAY_STATUS, MESH_RESPONSE_NONE, "RelayStatus" },
152         { MESH_OPCODE_CONFIG_MODEL_SUB_GET, MESH_OPCODE_CONFIG_MODEL_SUB_LIST, "ModelSubGet" },
153         { MESH_OPCODE_CONFIG_MODEL_SUB_LIST, MESH_RESPONSE_NONE, "ModelSubList" },
154         { MESH_OPCODE_CONFIG_VEND_MODEL_SUB_GET, MESH_OPCODE_CONFIG_VEND_MODEL_SUB_LIST,
155                 "VendorModelSubGet" },
156         { MESH_OPCODE_CONFIG_VEND_MODEL_SUB_LIST, MESH_RESPONSE_NONE, "VendorModelSubList" },
157         { MESH_OPCODE_CONFIG_POLL_TIMEOUT_LIST, MESH_OPCODE_CONFIG_POLL_TIMEOUT_STATUS,
158                 "PollTimeoutList" },
159         { MESH_OPCODE_CONFIG_POLL_TIMEOUT_STATUS, MESH_RESPONSE_NONE, "PollTimeoutStatus" },
160         { MESH_OPCODE_CONFIG_HEARTBEAT_PUB_GET, MESH_OPCODE_CONFIG_HEARTBEAT_PUB_STATUS,
161                 "HeartbeatPubGet" },
162         { MESH_OPCODE_CONFIG_HEARTBEAT_PUB_SET, MESH_OPCODE_CONFIG_HEARTBEAT_PUB_STATUS,
163                 "HeartbeatPubSet" },
164         { MESH_OPCODE_CONFIG_HEARTBEAT_PUB_STATUS, MESH_RESPONSE_NONE, "HeartbeatPubStatus" },
165         { MESH_OPCODE_CONFIG_HEARTBEAT_SUB_GET, MESH_OPCODE_CONFIG_HEARTBEAT_SUB_STATUS,
166                 "HeartbeatSubGet" },
167         { MESH_OPCODE_CONFIG_HEARTBEAT_SUB_SET, MESH_OPCODE_CONFIG_HEARTBEAT_SUB_STATUS,
168                 "HeartbeatSubSet" },
169         { MESH_OPCODE_CONFIG_HEARTBEAT_SUB_STATUS, MESH_RESPONSE_NONE, "HeartbeatSubStatus" },
170         { MESH_OPCODE_MODEL_APP_BIND, MESH_OPCODE_MODEL_APP_STATUS, "ModelAppBind" },
171         { MESH_OPCODE_MODEL_APP_STATUS, MESH_RESPONSE_NONE, "ModelAppStatus" },
172         { MESH_OPCODE_MODEL_APP_UNBIND, MESH_OPCODE_MODEL_APP_STATUS, "ModelAppUnbind" },
173         { MESH_OPCODE_NETKEY_ADD, MESH_OPCODE_NETKEY_STATUS, "NetKeyAdd" },
174         { MESH_OPCODE_NETKEY_DELETE, MESH_OPCODE_NETKEY_STATUS, "NetKeyDelete" },
175         { MESH_OPCODE_NETKEY_GET, MESH_OPCODE_NETKEY_LIST, "NetKeyGet" },
176         { MESH_OPCODE_NETKEY_LIST, MESH_RESPONSE_NONE, "NetKeyList" },
177         { MESH_OPCODE_NETKEY_STATUS, MESH_RESPONSE_NONE, "NetKeyStatus" },
178         { MESH_OPCODE_NETKEY_UPDATE, MESH_OPCODE_NETKEY_STATUS, "NetKeyUpdate" },
179         { MESH_OPCODE_NODE_IDENTITY_GET, MESH_OPCODE_NODE_IDENTITY_STATUS, "NodeIdentityGet" },
180         { MESH_OPCODE_NODE_IDENTITY_SET, MESH_OPCODE_NODE_IDENTITY_STATUS, "NodeIdentitySet" },
181         { MESH_OPCODE_NODE_IDENTITY_STATUS, MESH_RESPONSE_NONE, "NodeIdentityStatus" },
182         { MESH_OPCODE_NODE_RESET, MESH_OPCODE_NODE_RESET_STATUS, "NodeReset" },
183         { MESH_OPCODE_NODE_RESET_STATUS, MESH_RESPONSE_NONE, "NodeResetStatus" },
184         { MESH_OPCODE_MODEL_APP_GET, MESH_OPCODE_MODEL_APP_LIST, "ModelAppGet" },
185         { MESH_OPCODE_MODEL_APP_LIST, MESH_RESPONSE_NONE, "ModelAppList" },
186         { MESH_OPCODE_VENDOR_MODEL_APP_GET, MESH_OPCODE_VENDOR_MODEL_APP_LIST, "VendorModelAppGet" },
187         { MESH_OPCODE_VENDOR_MODEL_APP_LIST, MESH_RESPONSE_NONE, "VendorModelAppList" }
188 };
189
190
191 static const struct mesh_config_cmd *__mesh_get_command(uint32_t opcode)
192 {
193         uint32_t n;
194
195         for (n = 0; n < L_ARRAY_SIZE(commands); n++) {
196                 if (opcode == commands[n].opcode)
197                         return &commands[n];
198         }
199
200         return NULL;
201 }
202
203 static const char *__mesh_get_opcode_string(uint32_t opcode)
204 {
205         const struct mesh_config_cmd *cmd;
206
207         cmd = __mesh_get_command(opcode);
208         if (!cmd)
209                 return "Unknown Command Received";
210
211         return cmd->descriptor;
212 }
213
214 static void __mesh_request_remove(void *a)
215 {
216         struct mesh_pending_request *req = a;
217
218         if (req->data)
219                 l_free(req->data);
220         l_timeout_remove(req->timer);
221         l_free(req);
222 }
223
224 static void __bt_mesh_wait_response_timeout(
225                 struct l_timeout *timeout, void *user_data)
226 {
227         struct mesh_pending_request *req = user_data;
228
229         BT_INFO("Mesh: No response for \"%s\" from %4.4x\n",
230                         req->cmd->descriptor, req->addr);
231
232         /* Node reset case: delete the remote even if there is no response */
233         /* TODO Reset the remote node, as no response is expected on reset command */
234
235
236         switch(req->cmd->opcode) {
237         case MESH_OPCODE_DEV_COMP_GET: {
238                 /* Send event with timeout */
239                 event_mesh_devkey_message_t *event = \
240                         g_malloc0(sizeof(event_mesh_devkey_message_t));
241                 memcpy(event->net_uuid.uuid, req->net_uuid, 16);
242                 event->source = req->addr;
243                  __bt_mesh_handle_pending_dev_config_request_info(
244                         BLUETOOTH_ERROR_TIMEOUT, BT_MESH_NODE_BROWSE,
245                                 event, sizeof(event_mesh_devkey_message_t));
246                 g_free(event);
247                 break;
248         }
249         case MESH_OPCODE_NETKEY_ADD:
250         case MESH_OPCODE_NETKEY_UPDATE:
251         case MESH_OPCODE_NETKEY_DELETE:
252         case MESH_OPCODE_APPKEY_ADD:
253         case MESH_OPCODE_APPKEY_UPDATE:
254         case MESH_OPCODE_APPKEY_DELETE:
255                 /* Send event with timeout */
256                  __bt_mesh_handle_pending_dev_config_request_info(
257                         BLUETOOTH_ERROR_TIMEOUT,
258                                 BT_MESH_NODE_CONFIGURE_KEY, req->data,
259                                         sizeof(bluetooth_mesh_key_configure_t));
260                 break;
261         case MESH_OPCODE_CONFIG_DEFAULT_TTL_GET:
262         case MESH_OPCODE_CONFIG_DEFAULT_TTL_SET:
263                 /* Send event with timeout */
264                  __bt_mesh_handle_pending_dev_config_request_info(
265                         BLUETOOTH_ERROR_TIMEOUT,
266                                 BT_MESH_NODE_TTL_EXECUTE, req->data,
267                                         sizeof(bluetooth_mesh_node_ttl_info_t));
268                 break;
269         default:
270                 break;
271         }
272         BT_INFO("Mesh: Number of pending requests [%u] Remove the req",
273                 l_queue_length(pending_requests));
274         l_queue_remove(pending_requests, req);
275         __mesh_request_remove(req);
276 }
277
278 static void __bt_mesh_add_request(uint32_t opcode, uint16_t dest,
279                         uint8_t net_uuid[], void *data)
280 {
281         struct mesh_pending_request *req;
282         const struct mesh_config_cmd *cmd;
283         char uuid_str[33];
284
285         cmd = __mesh_get_command(opcode);
286         if (!cmd)
287                 return;
288         _bt_mesh_util_convert_hex_to_string((uint8_t *) net_uuid, 16, uuid_str,
289                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
290         BT_INFO("Mesh: Net UUID[%s]",uuid_str);
291
292         BT_INFO("Mesh: Adding command opcode [0x%2.2x] response [0x%2.2x]",
293                         cmd->opcode, cmd->response);
294         req = l_new(struct mesh_pending_request, 1);
295         req->cmd = cmd;
296         req->addr = dest;
297         req->data = data;
298         memcpy(req->net_uuid, net_uuid, 16);
299         req->timer = l_timeout_create(MESH_DEFAULT_RESPONSE_TIMEOUT,
300                         __bt_mesh_wait_response_timeout, req, NULL);
301
302         if (!pending_requests)
303                 pending_requests = l_queue_new();
304         l_queue_push_tail(pending_requests, req);
305         BT_INFO("Mesh: Number of pending requests [%u]", l_queue_length(pending_requests));
306 }
307
308 static struct mesh_pending_request *__bt_mesh_get_request_by_response(
309                 uint16_t addr, uint8_t net_uuid[],
310                         uint32_t response)
311 {
312         const struct l_queue_entry *entry;
313         char uuid_str[33];
314         char uuid_str1[33];
315
316         BT_INFO("Mesh: Number of pending requests [%u]", l_queue_length(pending_requests));
317         entry = l_queue_get_entries(pending_requests);
318
319         for (; entry; entry = entry->next) {
320                 struct mesh_pending_request *req = entry->data;
321
322                 /* Test */
323                 BT_INFO("Mesh: Req addr [0x%2.2x] req opcode [0x%2.2x] res [0x%2.2x]", req->addr, req->cmd->opcode, req->cmd->response);
324                 BT_INFO("Mesh: Current req addr [0x%2.2x] res [0x%2.2x]", addr, response);
325                 _bt_mesh_util_convert_hex_to_string((uint8_t *) net_uuid, 16, uuid_str,
326                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
327                 BT_INFO("Mesh: Net UUID[%s]",uuid_str);
328
329                 _bt_mesh_util_convert_hex_to_string((uint8_t *) req->net_uuid, 16, uuid_str1,
330                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
331                 BT_INFO("Mesh: Net UUID1[%s]",uuid_str1);
332                 if (!memcmp(net_uuid, req->net_uuid, 16) &&
333                                 req->addr == addr &&
334                                 req->cmd->response == response)
335                         return req;
336         }
337
338         return NULL;
339 }
340
341 bool _bt_mesh_check_pending_request(uint32_t opcode,
342                 uint16_t dest, uint8_t net_uuid[])
343 {
344         const struct mesh_config_cmd *cmd;
345         cmd = __mesh_get_command(opcode);
346
347         if (!cmd)
348                 return false;
349
350         if (__bt_mesh_get_request_by_response(dest,
351                                 net_uuid, cmd->response)) {
352                 BT_ERR("Mesh:Another command is pending\n");
353                 return true;
354         }
355         return false;
356 }
357
358 static uint32_t __bt_mesh_print_model_identifier(uint8_t *data,
359                 bool vendor, const char *offset)
360 {
361         uint32_t mod_id;
362
363         if (!vendor) {
364                 mod_id = l_get_le16(data);
365                 BT_INFO("%sModel ID\t%4.4x\n", offset, mod_id);
366                 mod_id = MESH_VENDOR_ID_MASK | mod_id;
367         } else {
368                 mod_id = l_get_le16(data + 2);
369                 BT_INFO("%sModel ID\t%4.4x %4.4x\n", offset,
370                                 l_get_le16(data), mod_id);
371                 mod_id = l_get_le16(data) << 16 | mod_id;
372         }
373
374         return mod_id;
375 }
376
377 static void __bt_mesh_print_device_composition_data(
378                 uint8_t *data, uint16_t len)
379 {
380         uint16_t features;
381         int i = 0;
382
383         BT_INFO("Mesh: Received composion:\n");
384
385         /* skip page -- We only support Page Zero */
386         data++;
387         len--;
388
389         BT_INFO("\tCID: %4.4x", l_get_le16(&data[0]));
390         BT_INFO("\tPID: %4.4x", l_get_le16(&data[2]));
391         BT_INFO("\tVID: %4.4x", l_get_le16(&data[4]));
392         BT_INFO("\tCRPL: %4.4x", l_get_le16(&data[6]));
393
394         features = l_get_le16(&data[8]);
395         data += 10;
396         len -= 10;
397
398         BT_INFO("\tFeature support:\n");
399         BT_INFO("\t\trelay: %s\n", (features & MESH_FEATURE_RELAY) ?
400                         "yes" : "no");
401         BT_INFO("\t\tproxy: %s\n", (features & MESH_FEATURE_PROXY) ?
402                         "yes" : "no");
403         BT_INFO("\t\tfriend: %s\n", (features & MESH_FEATURE_FRIEND) ?
404                         "yes" : "no");
405         BT_INFO("\t\tlpn: %s\n", (features & MESH_FEATURE_LPN) ?
406                         "yes" : "no");
407         while (len) {
408                 uint8_t m, v;
409
410                 BT_INFO("\t Element %d:\n", i);
411                 BT_INFO("\t\tlocation: %4.4x\n", l_get_le16(data));
412                 data += 2;
413                 len -= 2;
414
415                 m = *data++;
416                 v = *data++;
417                 len -= 2;
418
419                 if (m)
420                         BT_INFO("\t\tSIG defined models:\n");
421
422                 while (len >= 2 && m--) {
423                         __bt_mesh_print_model_identifier(data, false, "\t\t  ");
424                         data += 2;
425                         len -= 2;
426                 }
427
428                 if (v)
429                         BT_INFO("\t\t Vendor defined models:\n");
430
431                 while (len >= 4 && v--) {
432                         __bt_mesh_print_model_identifier(data, true, "\t\t  ");
433                         data += 4;
434                         len -= 4;
435                 }
436
437                 i++;
438         }
439 }
440
441 static void __bt_mesh_send_model_publication_status_event(
442                 int event, int result,
443                         bluetooth_mesh_model_configure_t *evt)
444 {
445         GVariant *out_var = NULL, *param = NULL;
446         GArray *info = NULL;
447
448         if (BLUETOOTH_ERROR_NONE == result) {
449                 /* Send event */
450                 info = g_array_new(FALSE, FALSE, sizeof(gchar));
451                 g_array_append_vals(info, evt,
452                                 sizeof(bluetooth_mesh_model_configure_t));
453
454                 out_var = g_variant_new_from_data((const GVariantType *)"ay",
455                                 info->data, info->len,
456                                 TRUE, NULL, NULL);
457
458                 param = g_variant_new("(iv)", result, out_var);
459                 _bt_send_event(BT_MESH_EVENT, event,
460                                 param);
461         }
462 }
463
464 static void __bt_mesh_send_model_subscription_configure_event(
465                 int event, int result,
466                         bluetooth_mesh_model_configure_t *evt)
467 {
468         GVariant *out_var = NULL, *param = NULL;
469         GArray *info = NULL;
470
471         if (BLUETOOTH_ERROR_NONE == result) {
472                 /* Send event */
473                 info = g_array_new(FALSE, FALSE, sizeof(gchar));
474                 g_array_append_vals(info, evt,
475                                 sizeof(bluetooth_mesh_model_configure_t));
476
477                 out_var = g_variant_new_from_data((const GVariantType *)"ay",
478                                 info->data, info->len,
479                                 TRUE, NULL, NULL);
480
481                 param = g_variant_new("(iv)", result, out_var);
482                 _bt_send_event(BT_MESH_EVENT, event,
483                                 param);
484         }
485 }
486
487 static void __bt_mesh_send_model_get_subscription_list_event(
488         int result, bluetooth_mesh_model_configure_t *evt)
489 {
490         GVariant  *param = NULL;
491         GVariantBuilder *builder = NULL;
492         int i;
493
494         if (BLUETOOTH_ERROR_NONE == result) {
495                 if (evt->sublist_count) {
496                         builder = g_variant_builder_new(G_VARIANT_TYPE("aq"));
497                         for (i = 0; i < evt->sublist_count; i++)
498                                 g_variant_builder_add(builder, "q", *evt->sub_list[i]);
499
500                         param = g_variant_new("(isqiui(aq))", result, evt->net_uuid,
501                                         evt->primary_unicast, evt->elem_index, evt->model,
502                                         evt->sublist_count, builder);
503
504                         g_variant_builder_unref(builder);
505                 }
506                 /* Send event */
507                 _bt_send_event(BT_MESH_EVENT,
508                                 BLUETOOTH_EVENT_MESH_MODEL_SUBSCRIPTION_LIST,
509                                 param);
510
511                 if (evt->sublist_count) {
512                         /* Free List data */
513                         for (int i = 0; i < evt->sublist_count; i++)
514                                 g_free(evt->sub_list[i]);
515                         g_free(evt->sub_list);
516                 }
517         }
518 }
519
520 static void __bt_mesh_send_model_get_appkey_list_event(int result,
521                 bluetooth_mesh_model_configure_t *evt)
522 {
523         GVariant  *param = NULL;
524         GVariantBuilder *builder = NULL;
525         int i;
526
527         if (BLUETOOTH_ERROR_NONE == result) {
528
529                 if (evt->appkeylist_count) {
530                         builder = g_variant_builder_new(G_VARIANT_TYPE("aq"));
531                         for (i = 0; i < evt->appkeylist_count; i++)
532                                 g_variant_builder_add(builder, "q", *evt->appkey_list[i]);
533
534                         param = g_variant_new("(isqiui(aq))", result, evt->net_uuid,
535                                         evt->primary_unicast, evt->elem_index, evt->model,
536                                         evt->appkeylist_count, builder);
537
538                         g_variant_builder_unref(builder);
539                 }
540
541                 /* Send event */
542                 _bt_send_event(BT_MESH_EVENT,
543                                 BLUETOOTH_EVENT_MESH_MODEL_APPKEY_LIST,
544                                 param);
545
546                 if (evt->appkeylist_count) {
547                         /* Free List data */
548                         for (int i = 0; i < evt->appkeylist_count; i++)
549                                 g_free(evt->appkey_list[i]);
550                         g_free(evt->appkey_list);
551                 }
552         }
553 }
554
555 static void __bt_mesh_send_model_configure_appkey_event(int result,
556                 bluetooth_mesh_model_configure_t *evt)
557 {
558         GVariant *out_var = NULL, *param = NULL;
559         GArray *info = NULL;
560
561         if (BLUETOOTH_ERROR_NONE == result) {
562                 /* Send event */
563                 info = g_array_new(FALSE, FALSE, sizeof(gchar));
564                 g_array_append_vals(info, evt, sizeof(bluetooth_mesh_model_configure_t));
565
566                 out_var = g_variant_new_from_data((const GVariantType *)"ay",
567                                 info->data, info->len,
568                                 TRUE, NULL, NULL);
569
570                 param = g_variant_new("(iv)", result, out_var);
571                 _bt_send_event(BT_MESH_EVENT,
572                                 BLUETOOTH_EVENT_MESH_NODE_MODEL_APPKEY_BIND,
573                                 param);
574         }
575 }
576
577 static void __bt_mesh_send_node_ttl_configuration_event(int result,
578                 bluetooth_mesh_node_ttl_info_t *ttl_evt)
579 {
580         GVariant *out_var = NULL, *param = NULL;
581         GArray *info = NULL;
582
583         if (BLUETOOTH_ERROR_NONE == result) {
584                 /* Send event */
585                 info = g_array_new(FALSE, FALSE, sizeof(gchar));
586                 g_array_append_vals(info, ttl_evt,
587                         sizeof(bluetooth_mesh_node_ttl_info_t));
588
589                 out_var = g_variant_new_from_data((const GVariantType *)"ay",
590                                 info->data, info->len,
591                                 TRUE, NULL, NULL);
592
593                 param = g_variant_new("(iv)", result, out_var);
594                 _bt_send_event(BT_MESH_EVENT,
595                                 BLUETOOTH_EVENT_MESH_NODE_TTL_CONFIGURED,
596                                 param);
597         }
598 }
599
600 static void __bt_mesh_send_node_key_configuration_event(int result,
601                 bluetooth_mesh_key_configure_t *key_evt)
602 {
603         GVariant *out_var = NULL, *param = NULL;
604         GArray *info = NULL;
605
606         if (BLUETOOTH_ERROR_NONE == result) {
607                 /* Send event */
608                 info = g_array_new(FALSE, FALSE, sizeof(gchar));
609                 g_array_append_vals(info, key_evt,
610                         sizeof(bluetooth_mesh_key_configure_t));
611
612                 out_var = g_variant_new_from_data((const GVariantType *)"ay",
613                                 info->data, info->len,
614                                 TRUE, NULL, NULL);
615
616                 param = g_variant_new("(iv)", result, out_var);
617                 _bt_send_event(BT_MESH_EVENT,
618                                 BLUETOOTH_EVENT_MESH_NODE_KEY_CONFIGURED,
619                                 param);
620         }
621 }
622
623 static void __bt_mesh_send_node_get_vendor_features_event(int result,
624                 bluetooth_mesh_node_features_t *features_evt)
625 {
626         GVariant *out_var = NULL, *param = NULL;
627         GArray *info = NULL;
628
629         if (BLUETOOTH_ERROR_NONE == result) {
630                 /* Send event */
631                 info = g_array_new(FALSE, FALSE, sizeof(gchar));
632                 g_array_append_vals(info, features_evt,
633                                 sizeof(bluetooth_mesh_node_features_t));
634
635                 out_var = g_variant_new_from_data((const GVariantType *)"ay",
636                                 info->data, info->len,
637                                 TRUE, NULL, NULL);
638
639                 param = g_variant_new("(iv)", result, out_var);
640                 _bt_send_event(BT_MESH_EVENT,
641                                 BLUETOOTH_EVENT_MESH_NODE_VENDOR_FEATURES,
642                                 param);
643         }
644 }
645
646 static void __bt_mesh_send_node_browsed_event(int result,
647                 bluetooth_mesh_node_discover_t *browse_evt)
648 {
649         GVariant *out_var = NULL, *param = NULL;
650         GArray *info = NULL;
651
652         if (BLUETOOTH_ERROR_NONE == result) {
653                 /* Send event */
654                 info = g_array_new(FALSE, FALSE, sizeof(gchar));
655                 g_array_append_vals(info, browse_evt,
656                                 sizeof(bluetooth_mesh_node_discover_t));
657
658                 out_var = g_variant_new_from_data((const GVariantType *)"ay",
659                                 info->data, info->len,
660                                 TRUE, NULL, NULL);
661
662                 param = g_variant_new("(iv)", result, out_var);
663                 _bt_send_event(BT_MESH_EVENT,
664                                 BLUETOOTH_EVENT_MESH_NODE_BROWSED,
665                                 param);
666         }
667 }
668
669 static void __bt_mesh_handle_pending_dev_config_request_info(int result,
670                 int service_function, void *param, unsigned int size)
671 {
672         GSList *l;
673         GArray *out_param;
674         invocation_info_t *req_info = NULL;
675
676         for (l = _bt_get_invocation_list(); l != NULL; ) {
677                 req_info = l->data;
678                 l = g_slist_next(l);
679                 if (req_info == NULL ||
680                                 req_info->service_function != service_function)
681                         continue;
682
683                 switch (service_function) {
684                 case BT_MESH_NODE_GET_VENDOR_FEATURES: {
685                         bluetooth_mesh_node_features_t *event;
686                         bluetooth_mesh_node_features_t *req;
687
688                         event = (bluetooth_mesh_node_features_t*) param;
689                         req = (bluetooth_mesh_node_features_t*)req_info->user_data;
690
691                         BT_DBG("Request Sender: [%s]", req_info->sender);
692                         /* Match Network and Remote Node unicast*/
693                         if (!g_strcmp0(event->net_uuid, req->net_uuid) && event->unicast == req->unicast) {
694                                 event->unicast = req->unicast;
695                                 event->elem_count = req->elem_count;
696
697                                 /* Send Event */
698                                 __bt_mesh_send_node_get_vendor_features_event(result, event);
699
700                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
701                                 g_array_append_vals(out_param, event, sizeof(bluetooth_mesh_node_features_t));
702
703                                 /* Return DBUS Invocation*/
704                                 _bt_service_method_return(req_info->context, out_param, result);
705                                 _bt_free_info_from_invocation_list(req_info);
706                                 g_array_free(out_param, TRUE);
707                         }
708                         break;
709                 }
710                 case BT_MESH_NODE_BROWSE: {
711                         bluetooth_mesh_node_discover_t *node;
712                         event_mesh_devkey_message_t *event;
713                         uint16_t remote_addr;
714                         uint8_t elem_count;
715                         uint8_t dev_uuid[16];
716                         char net_uuid[BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1];
717
718                         event = (event_mesh_devkey_message_t*) param;
719                         node = (bluetooth_mesh_node_discover_t*)req_info->user_data;
720                         BT_INFO("Mesh: Request Node UUID [%s]", node->dev_uuid);
721                         BT_INFO("Mesh: Request Network UUID [%s]", node->net_uuid);
722
723                         _bt_mesh_util_convert_hex_to_string((uint8_t *) event->net_uuid.uuid, 16, net_uuid,
724                                         BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
725
726                         _bt_mesh_util_convert_string_to_hex(node->dev_uuid, strlen(node->dev_uuid), dev_uuid, 16);
727
728                         /* Get Unicast from pending request's Dev UUID and match with event */
729                         if (_bt_mesh_node_get_unicast_from_dev_uuid(event->net_uuid.uuid, dev_uuid, &remote_addr)) {
730
731                                 BT_DBG("Request Sender: [%s]", req_info->sender);
732                                 /* Match Network and Remote Node unicast*/
733                                 if (!g_strcmp0(node->net_uuid, net_uuid) && remote_addr == event->source) {
734                                         _bt_mesh_node_get_element_count(event->net_uuid.uuid, remote_addr, &elem_count);
735                                         node->unicast = event->source;
736                                         node->count = elem_count;
737                                         /* Send Event */
738                                         __bt_mesh_send_node_browsed_event(result, node);
739
740                                         out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
741                                         g_array_append_vals(out_param, node, sizeof(bluetooth_mesh_node_discover_t));
742
743                                         /* Return DBUS Invocation*/
744                                         _bt_service_method_return(req_info->context, out_param, result);
745                                         _bt_free_info_from_invocation_list(req_info);
746                                         g_array_free(out_param, TRUE);
747
748                                 }
749                         }
750                         break;
751                 }
752                 case BT_MESH_NODE_CONFIGURE_KEY: {
753                         bluetooth_mesh_key_configure_t *event;
754                         bluetooth_mesh_key_configure_t *req;
755
756                         event = (bluetooth_mesh_key_configure_t*) param;
757                         req = (bluetooth_mesh_key_configure_t*)req_info->user_data;
758
759                         if (!g_strcmp0(req->net_uuid, event->net_uuid) &&
760                                 req->primary_unicast == event->primary_unicast &&
761                                 req->is_netkey == event->is_netkey) {
762                                 /* Send Event */
763                                 __bt_mesh_send_node_key_configuration_event(result, event);
764
765                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
766                                 g_array_append_vals(out_param, event, sizeof(bluetooth_mesh_key_configure_t));
767
768                                 /* Return DBUS Invocation*/
769                                 _bt_service_method_return(req_info->context, out_param, result);
770                                 _bt_free_info_from_invocation_list(req_info);
771                                 g_array_free(out_param, TRUE);
772                         }
773                         break;
774                 }
775                 case BT_MESH_NODE_TTL_EXECUTE: {
776                         bluetooth_mesh_node_ttl_info_t *event;
777                         bluetooth_mesh_node_ttl_info_t *req;
778
779                         event = (bluetooth_mesh_node_ttl_info_t*) param;
780                         req = (bluetooth_mesh_node_ttl_info_t*)req_info->user_data;
781                         req->ttl = event->ttl;
782
783                         if (!g_strcmp0(req->net_uuid, event->net_uuid) &&
784                                 req->unicast == event->unicast) {
785                                 /* Send Event */
786                                 __bt_mesh_send_node_ttl_configuration_event(result, req);
787
788                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
789                                 g_array_append_vals(out_param, req, sizeof(bluetooth_mesh_node_ttl_info_t));
790
791                                 /* Return DBUS Invocation*/
792                                 _bt_service_method_return(req_info->context, out_param, result);
793                                 _bt_free_info_from_invocation_list(req_info);
794                                 g_array_free(out_param, TRUE);
795                         }
796                         break;
797                 }
798                 case BT_MESH_MODEL_CONFIGURE_APPKEY: {
799                         bluetooth_mesh_model_configure_t *event;
800                         bluetooth_mesh_model_configure_t *req;
801
802                         event = (bluetooth_mesh_model_configure_t*) param;
803                         req = (bluetooth_mesh_model_configure_t*)req_info->user_data;
804
805                         if (!g_strcmp0(req->net_uuid, event->net_uuid) &&
806                                 req->primary_unicast == event->primary_unicast) {
807                                 /* Send Event */
808                                 __bt_mesh_send_model_configure_appkey_event(result, req);
809
810                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
811                                 g_array_append_vals(out_param, req, sizeof(bluetooth_mesh_model_configure_t));
812
813                                 /* Return DBUS Invocation*/
814                                 _bt_service_method_return(req_info->context, out_param, result);
815                                 _bt_free_info_from_invocation_list(req_info);
816                                 g_array_free(out_param, TRUE);
817                         }
818
819                         break;
820                 }
821                 case BT_MESH_MODEL_GET_APPKEY_LIST: {
822                         bluetooth_mesh_model_configure_t *event;
823                         bluetooth_mesh_model_configure_t *req;
824
825                         event = (bluetooth_mesh_model_configure_t*) param;
826                         req = (bluetooth_mesh_model_configure_t*)req_info->user_data;
827
828                         if (!g_strcmp0(req->net_uuid, event->net_uuid) &&
829                                 req->primary_unicast == event->primary_unicast) {
830                                 /* Send Event */
831                                 __bt_mesh_send_model_get_appkey_list_event(result, event);
832
833                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
834                                 g_array_append_vals(out_param, req, sizeof(bluetooth_mesh_model_configure_t));
835
836                                 /* Return DBUS Invocation*/
837                                 _bt_service_method_return(req_info->context, out_param, result);
838                                 _bt_free_info_from_invocation_list(req_info);
839                                 g_array_free(out_param, TRUE);
840                         }
841                         break;
842                 }
843                 case BT_MESH_MODEL_GET_SUBSCRIPTION_LIST: {
844                         bluetooth_mesh_model_configure_t *event;
845                         bluetooth_mesh_model_configure_t *req;
846
847                         event = (bluetooth_mesh_model_configure_t*) param;
848                         req = (bluetooth_mesh_model_configure_t*)req_info->user_data;
849
850                         if (!g_strcmp0(req->net_uuid, event->net_uuid) &&
851                                 req->primary_unicast == event->primary_unicast) {
852                                 /* Send Event */
853                                 __bt_mesh_send_model_get_subscription_list_event(result, event);
854
855                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
856                                 g_array_append_vals(out_param, req, sizeof(bluetooth_mesh_model_configure_t));
857
858                                 /* Return DBUS Invocation*/
859                                 _bt_service_method_return(req_info->context, out_param, result);
860                                 _bt_free_info_from_invocation_list(req_info);
861                                 g_array_free(out_param, TRUE);
862                         }
863                         break;
864                 }
865                 case BT_MESH_MODEL_CONFIG_GROUP_SUB: {
866                         bluetooth_mesh_model_configure_t *event;
867                         bluetooth_mesh_model_configure_t *req;
868
869                         event = (bluetooth_mesh_model_configure_t*) param;
870                         req = (bluetooth_mesh_model_configure_t*)req_info->user_data;
871
872                         if (!g_strcmp0(req->net_uuid, event->net_uuid) &&
873                                 req->primary_unicast == event->primary_unicast) {
874
875                                 req->sub_addr = event->sub_addr;
876                                 /* Send Event */
877                                 __bt_mesh_send_model_subscription_configure_event(
878                                         BLUETOOTH_EVENT_MESH_MODEL_SUBSCRIPTION_CONFGURED,
879                                                 result, req);
880
881                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
882                                 g_array_append_vals(out_param, req, sizeof(bluetooth_mesh_model_configure_t));
883
884                                 /* Return DBUS Invocation*/
885                                 _bt_service_method_return(req_info->context, out_param, result);
886                                 _bt_free_info_from_invocation_list(req_info);
887                                 g_array_free(out_param, TRUE);
888                         }
889                         break;
890                 }
891                 case BT_MESH_MODEL_CONFIG_VIRTUAL_GROUP_SUB: {
892                         bluetooth_mesh_model_configure_t *event;
893                         bluetooth_mesh_model_configure_t *req;
894
895                         event = (bluetooth_mesh_model_configure_t*) param;
896                         req = (bluetooth_mesh_model_configure_t*)req_info->user_data;
897
898                         if (!g_strcmp0(req->net_uuid, event->net_uuid) &&
899                                 req->primary_unicast == event->primary_unicast) {
900                                 /* Send Event */
901                                 __bt_mesh_send_model_subscription_configure_event( \
902                                         BLUETOOTH_EVENT_MESH_MODEL_VIRTUAL_SUBSCRIPTION_CONFGURED, \
903                                                 result, req);
904
905                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
906                                 g_array_append_vals(out_param, req, sizeof(bluetooth_mesh_model_configure_t));
907
908                                 /* Return DBUS Invocation*/
909                                 _bt_service_method_return(req_info->context, out_param, result);
910                                 _bt_free_info_from_invocation_list(req_info);
911                                 g_array_free(out_param, TRUE);
912
913                         }
914                         break;
915                 }
916                 case BT_MESH_MODEL_GET_PUBLICATION: {
917                         bluetooth_mesh_model_configure_t *event;
918                         bluetooth_mesh_model_configure_t *req;
919
920                         event = (bluetooth_mesh_model_configure_t*) param;
921                         req = (bluetooth_mesh_model_configure_t*)req_info->user_data;
922
923                         if (!g_strcmp0(req->net_uuid, event->net_uuid) &&
924                                         req->primary_unicast == event->primary_unicast) {
925                                 /* Send Event */
926                                 __bt_mesh_send_model_publication_status_event( \
927                                                 BLUETOOTH_EVENT_MESH_MODEL_PUBLICATION_STATUS, \
928                                                 result, event);
929
930                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
931                                 g_array_append_vals(out_param, req, sizeof(bluetooth_mesh_model_configure_t));
932
933                                 /* Return DBUS Invocation*/
934                                 _bt_service_method_return(req_info->context, out_param, result);
935                                 _bt_free_info_from_invocation_list(req_info);
936                                 g_array_free(out_param, TRUE);
937                         }
938                         break;
939                 }
940                 case BT_MESH_MODEL_SET_PUBLICATION: {
941                         bluetooth_mesh_model_configure_t *event;
942                         bluetooth_mesh_model_configure_t *req;
943
944                         event = (bluetooth_mesh_model_configure_t*) param;
945                         req = (bluetooth_mesh_model_configure_t*)req_info->user_data;
946
947                         if (!g_strcmp0(req->net_uuid, event->net_uuid) &&
948                                 req->primary_unicast == event->primary_unicast) {
949                                 /* Send Event */
950                                 __bt_mesh_send_model_publication_status_event( \
951                                         BLUETOOTH_EVENT_MESH_MODEL_PUBLICATION_STATUS, \
952                                                 result, req);
953
954                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
955                                 g_array_append_vals(out_param, req, sizeof(bluetooth_mesh_model_configure_t));
956
957                                 /* Return DBUS Invocation*/
958                                 _bt_service_method_return(req_info->context, out_param, result);
959                                 _bt_free_info_from_invocation_list(req_info);
960                                 g_array_free(out_param, TRUE);
961                         }
962                         break;
963                 }
964                 default:
965                         BT_DBG("Unknown function(%d)", service_function);
966                         break;
967                 }
968         }
969 }
970
971 const char *__mesh_status_to_string(uint8_t err)
972 {
973         switch (err) {
974         case MESH_STATUS_SUCCESS: return "Success";
975         case MESH_STATUS_INVALID_ADDRESS: return "Invalid Address";
976         case MESH_STATUS_INVALID_MODEL: return "Invalid Model";
977         case MESH_STATUS_INVALID_APPKEY: return "Invalid AppKey";
978         case MESH_STATUS_INVALID_NETKEY: return "Invalid NetKey";
979         case MESH_STATUS_INSUFF_RESOURCES: return "Insufficient Resources";
980         case MESH_STATUS_IDX_ALREADY_STORED: return "Key Idx Already Stored";
981         case MESH_STATUS_INVALID_PUB_PARAM: return "Invalid Publish Parameters";
982         case MESH_STATUS_NOT_SUB_MOD: return "Not a Subscribe Model";
983         case MESH_STATUS_STORAGE_FAIL: return "Storage Failure";
984         case MESH_STATUS_FEATURE_NO_SUPPORT: return "Feature Not Supported";
985         case MESH_STATUS_CANNOT_UPDATE: return "Cannot Update";
986         case MESH_STATUS_CANNOT_REMOVE: return "Cannot Remove";
987         case MESH_STATUS_CANNOT_BIND: return "Cannot bind";
988         case MESH_STATUS_UNABLE_CHANGE_STATE: return "Unable to change state";
989         case MESH_STATUS_CANNOT_SET: return "Cannot set";
990         case MESH_STATUS_UNSPECIFIED_ERROR: return "Unspecified error";
991         case MESH_STATUS_INVALID_BINDING: return "Invalid Binding";
992
993         default: return "Unknown";
994         }
995 }
996
997 static void __mesh_handle_model_subscription_event(int result,
998                 bluetooth_mesh_model_configure_t *param,
999                         const struct mesh_config_cmd *cmd)
1000 {
1001         switch (cmd->opcode) {
1002         /* Fall through */
1003         case MESH_OPCODE_CONFIG_MODEL_SUB_ADD:
1004         case MESH_OPCODE_CONFIG_MODEL_SUB_DELETE:
1005         case MESH_OPCODE_CONFIG_MODEL_SUB_OVERWRITE:
1006         case MESH_OPCODE_CONFIG_MODEL_SUB_DELETE_ALL:
1007                 /* Model Bind/UnBind Event */
1008         __bt_mesh_handle_pending_dev_config_request_info(result,
1009                         BT_MESH_MODEL_CONFIG_GROUP_SUB, &param,
1010                                 sizeof(bluetooth_mesh_model_configure_t));
1011                 break;
1012         case MESH_OPCODE_CONFIG_MODEL_SUB_VIRT_ADD:
1013         case MESH_OPCODE_CONFIG_MODEL_SUB_VIRT_DELETE:
1014         case MESH_OPCODE_CONFIG_MODEL_SUB_VIRT_OVERWRITE:
1015         __bt_mesh_handle_pending_dev_config_request_info(result,
1016                         BT_MESH_MODEL_CONFIG_VIRTUAL_GROUP_SUB, &param,
1017                                 sizeof(bluetooth_mesh_model_configure_t));
1018                 break;
1019         default:
1020                 break;
1021         }
1022 }
1023
1024 void _bt_mesh_config_client_devkey_msg_handler(
1025                 event_mesh_devkey_message_t *event)
1026 {
1027         uint32_t opcode;
1028         const struct mesh_config_cmd *cmd;
1029         uint16_t data_len = event->data_len;
1030         uint8_t *data = event->data;
1031         int result = BLUETOOTH_ERROR_NONE;
1032         uint16_t app_idx;
1033         uint16_t addr;
1034         uint16_t net_idx;
1035         uint16_t elem_addr;
1036         uint16_t ele_addr;
1037         uint32_t mod_id;
1038         int n;
1039         struct mesh_pending_request *req;
1040
1041         if (_bt_mesh_util_opcode_get(data, data_len, &opcode, &n)) {
1042                 BT_INFO("Mesh: Opcode of response data [0x%2.2x], actual data len [%d]", opcode, n);
1043                 data_len -= n;
1044                 data += n;
1045         } else
1046                 return;
1047
1048         BT_INFO("Mesh: Received %s (len %u) opcode [0x%2.2x]",
1049                 __mesh_get_opcode_string(opcode), data_len, opcode);
1050
1051         req = __bt_mesh_get_request_by_response(event->source,
1052                 event->net_uuid.uuid, (opcode & ~MESH_OPCODE_UNRELIABLE));
1053         if (req) {
1054                 BT_INFO("Mesh: Got Config Request");
1055                 cmd = req->cmd;
1056                 __mesh_request_remove(req);
1057                 l_queue_remove(pending_requests, req);
1058         } else
1059                 cmd = NULL;
1060
1061
1062         switch (opcode & ~MESH_OPCODE_UNRELIABLE) {
1063                 default:
1064                         return;
1065         case MESH_OPCODE_CONFIG_MODEL_PUB_STATUS: {
1066                 if (data_len != 12 && data_len != 14)
1067                         break;
1068                 bluetooth_mesh_model_configure_t param;
1069                 memset(&param, 0x00, sizeof(bluetooth_mesh_model_configure_t));
1070
1071                 _bt_mesh_util_convert_hex_to_string((uint8_t *) event->net_uuid.uuid, 16, param.net_uuid,
1072                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
1073
1074                 BT_INFO("\nNode %4.4x Model Publication status %s\n",
1075                                 event->source, __mesh_status_to_string(data[0]));
1076
1077                 if (data[0] != MESH_STATUS_SUCCESS)
1078                         break;
1079
1080                 /* Extract Element Address */
1081                 ele_addr = l_get_le16(data + 1);
1082
1083                 /* Extract Model ID */
1084                 if (data_len == 14) {
1085                         /* vendor Model */
1086                         mod_id = l_get_le16(data + 10 + 2);
1087                         mod_id = l_get_le16(data) << 16 | mod_id;
1088                 } else {
1089                         /* BT SIG Model */
1090                         mod_id = l_get_le16(data + 10);
1091                         mod_id = MESH_VENDOR_ID_MASK | mod_id;
1092                 }
1093
1094                 param.primary_unicast = event->source;
1095                 param.elem_index = ele_addr - event->source;
1096                 /* Extract Publish Address */
1097                 param.pub_addr = l_get_le16(data + 3);
1098
1099                 /* Extract Appkey Index */
1100                 param.appkey_idx =  l_get_le16(data + 5);
1101
1102                 /* Extract TTL */
1103                 param.ttl = data[6];
1104
1105                 /* Extract Period */
1106                 param.period = data[7];
1107
1108                 if (cmd->opcode == MESH_OPCODE_CONFIG_MODEL_PUB_GET)
1109                         __bt_mesh_handle_pending_dev_config_request_info(result,
1110                                 BT_MESH_MODEL_GET_PUBLICATION, &param,
1111                                 sizeof(bluetooth_mesh_model_configure_t));
1112                 else
1113                         __bt_mesh_handle_pending_dev_config_request_info(result,
1114                                 BT_MESH_MODEL_SET_PUBLICATION, &param,
1115                                 sizeof(bluetooth_mesh_model_configure_t));
1116                 break;
1117         }
1118         case MESH_OPCODE_CONFIG_MODEL_SUB_STATUS: {
1119                 if (data_len != 7 && data_len != 9)
1120                         break;
1121                 bluetooth_mesh_model_configure_t param;
1122                 memset(&param, 0x00, sizeof(bluetooth_mesh_model_configure_t));
1123
1124                 _bt_mesh_util_convert_hex_to_string(
1125                         (uint8_t *) event->net_uuid.uuid, 16, param.net_uuid,
1126                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
1127
1128                 BT_INFO("\nNode %4.4x Subscription status %s\n",
1129                                 event->source, __mesh_status_to_string(data[0]));
1130
1131                 ele_addr = l_get_le16(data + 1);
1132                 addr = l_get_le16(data + 3);
1133                 BT_INFO("Element Addr\t%4.4x\n", ele_addr);
1134
1135                 if (data_len == 9) {
1136                         /* vendor Model */
1137                         mod_id = l_get_le16(data + 5 + 2);
1138                         mod_id = l_get_le16(data) << 16 | mod_id;
1139                 } else {
1140                         /* BT SIG Model */
1141                         mod_id = l_get_le16(data + 5);
1142                         mod_id = MESH_VENDOR_ID_MASK | mod_id;
1143                 }
1144
1145                 param.primary_unicast = event->source;
1146                 param.elem_index = ele_addr - event->source;
1147                 /* Subscription address, unassigned address in case of Delete All command */
1148                 param.sub_addr = addr;
1149                 param.model = mod_id;
1150                 BT_INFO("Subscr Addr\t%4.4x\n", addr);
1151                 __mesh_handle_model_subscription_event(result, &param, cmd);
1152                 break;
1153         }
1154         case MESH_OPCODE_CONFIG_DEFAULT_TTL_STATUS: {
1155                 if (data_len != 1)
1156                         break;
1157                 bluetooth_mesh_node_ttl_info_t param;
1158                 memset(&param, 0x00, sizeof(bluetooth_mesh_node_ttl_info_t));
1159
1160                 BT_INFO("Node %4.4x Default TTL %d", event->source, data[0]);
1161                  _bt_mesh_util_convert_hex_to_string(
1162                         (uint8_t *) event->net_uuid.uuid, 16, param.net_uuid,
1163                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
1164                 param.unicast = event->source;
1165                 param.ttl = data[0];
1166
1167                 if (!_bt_mesh_network_save_remote_node_ttl(event->net_uuid.uuid,
1168                                 event->source,  data[0])) {
1169                         result = BLUETOOTH_ERROR_INTERNAL;
1170                         BT_INFO("Failed to save node TTL");
1171                 }
1172
1173                 /* Remote Node TTL event */
1174                 __bt_mesh_handle_pending_dev_config_request_info(result,
1175                         BT_MESH_NODE_TTL_EXECUTE, &param,
1176                                 sizeof(bluetooth_mesh_node_ttl_info_t));
1177                 break;
1178         }
1179         case MESH_OPCODE_MODEL_APP_STATUS: {
1180                 if (data_len != 7 && data_len != 9)
1181                         break;
1182                 bluetooth_mesh_model_configure_t param;
1183                 memset(&param, 0x00, sizeof(bluetooth_mesh_model_configure_t));
1184
1185                  _bt_mesh_util_convert_hex_to_string(
1186                         (uint8_t *) event->net_uuid.uuid, 16, param.net_uuid,
1187                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
1188                 BT_INFO("Node %4.4x: Model App status %s\n", event->source,
1189                         __mesh_status_to_string(data[0]));
1190                 elem_addr = l_get_le16(data + 1);
1191                 app_idx = l_get_le16(data + 3);
1192
1193                 BT_INFO("Element Addr\t%4.4x", elem_addr);
1194                 if (data_len == 9) {
1195                         /* vendor Model */
1196                         mod_id = l_get_le16(data + 5 + 2);
1197                         mod_id = l_get_le16(data) << 16 | mod_id;
1198                 } else {
1199                         /* BT SIG Model */
1200                         mod_id = l_get_le16(data + 5);
1201                         mod_id = MESH_VENDOR_ID_MASK | mod_id;
1202                 }
1203
1204                 param.primary_unicast = event->source;
1205                 param.elem_index = elem_addr - event->source;
1206                 param.appkey_idx = app_idx;
1207                 param.model = mod_id;
1208                 BT_INFO("AppIdx\t\t%u (0x%3.3x)\n ", app_idx, app_idx);
1209
1210                 /* Model Bind/UnBind Event */
1211                 __bt_mesh_handle_pending_dev_config_request_info(result,
1212                         BT_MESH_MODEL_CONFIGURE_APPKEY, &param,
1213                                 sizeof(bluetooth_mesh_model_configure_t));
1214                 break;
1215         }
1216         case MESH_OPCODE_MODEL_APP_LIST: {
1217                 if (data_len < 5)
1218                         break;
1219                 GArray *garray;
1220                 int total = 0;
1221                 bluetooth_mesh_model_configure_t param;
1222                 memset(&param, 0x00, sizeof(bluetooth_mesh_model_configure_t));
1223
1224                 _bt_mesh_util_convert_hex_to_string(
1225                         (uint8_t *) event->net_uuid.uuid, 16, param.net_uuid,
1226                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
1227
1228                 garray = g_array_new(FALSE, FALSE, sizeof(gchar));
1229
1230                 BT_INFO("\nNode %4.4x Model AppIdx status %s\n",
1231                                 event->source, __mesh_status_to_string(data[0]));
1232
1233                 BT_INFO("Element Addr\t%4.4x\n", l_get_le16(data + 1));
1234                 BT_INFO("Model ID\t%4.4x\n", l_get_le16(data + 3));
1235
1236                 elem_addr = l_get_le16(data + 1);
1237                 /* BT SIG Model */
1238                 mod_id = l_get_le16(data + 3);
1239                 mod_id = MESH_VENDOR_ID_MASK | mod_id;
1240
1241                 param.primary_unicast = event->source;
1242                 param.elem_index = elem_addr - event->source;
1243                 param.model = mod_id;
1244
1245                 data += 5;
1246                 data_len -= 5;
1247
1248                 while (data_len >= 3) {
1249                         app_idx = l_get_le16(data) & 0xfff;
1250                         g_array_append_vals(garray, &app_idx, sizeof(uint16_t));
1251                         BT_INFO("\t%u (0x%3.3x)\n", app_idx, app_idx);
1252
1253                         app_idx = l_get_le16(data + 1) >> 4;
1254                         g_array_append_vals(garray, &app_idx, sizeof(uint16_t));
1255                         BT_INFO("\t%u (0x%3.3x)\n", app_idx, app_idx);
1256                         data += 3;
1257                         data_len -= 3;
1258                 }
1259
1260                 if (data_len == 2) {
1261                         app_idx = l_get_le16(data) & 0xfff;
1262                         g_array_append_vals(garray, &app_idx, sizeof(uint16_t));
1263                         BT_INFO("\t %u (0x%3.3x)\n", app_idx, app_idx);
1264                 }
1265                 total = garray->len / sizeof(uint16_t);
1266                 param.appkey_list = (uint16_t **)g_malloc0(sizeof(uint16_t*) * garray->len);
1267                 param.appkeylist_count = total;
1268                 for (int i = 0; i < total; i++) {
1269                         param.appkey_list[i] = g_malloc(sizeof(uint16_t));
1270                         *param.appkey_list[i] = g_array_index(garray, uint16_t, i);
1271                 }
1272                 g_array_free(garray, TRUE);
1273
1274                 __bt_mesh_handle_pending_dev_config_request_info(result,
1275                         BT_MESH_MODEL_GET_APPKEY_LIST, &param,
1276                                 sizeof(bluetooth_mesh_model_configure_t));
1277                 break;
1278         }
1279         case MESH_OPCODE_CONFIG_MODEL_SUB_LIST: {
1280                 if (data_len < 5)
1281                         break;
1282                 int total = 0;
1283                 int i = 0;
1284                 bluetooth_mesh_model_configure_t param;
1285                 memset(&param, 0x00, sizeof(bluetooth_mesh_model_configure_t));
1286
1287                 _bt_mesh_util_convert_hex_to_string((uint8_t *) event->net_uuid.uuid, 16, param.net_uuid,
1288                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
1289
1290                 BT_INFO("\nNode %4.4x BT SIG Model Subscription List status %s\n",
1291                                 event->source, __mesh_status_to_string(data[0]));
1292
1293                 BT_INFO("Element Addr\t%4.4x\n", l_get_le16(data + 1));
1294                 elem_addr = l_get_le16(data + 1);
1295
1296                 /* BT SIG Model */
1297                 mod_id = l_get_le16(data + 3);
1298                 mod_id = MESH_VENDOR_ID_MASK | mod_id;
1299                 BT_INFO("Model ID\t%4.4x\n", mod_id);
1300
1301                 param.primary_unicast = event->source;
1302                 param.elem_index = elem_addr - event->source;
1303                 param.model = mod_id;
1304
1305                 total = data_len -  5;
1306                 param.sublist_count = total;
1307                 if (total) {
1308                         param.sub_list = (uint16_t **)g_malloc0(sizeof(uint16_t*) * total);
1309
1310                         i = 5;
1311                         for (; i < data_len; i += 2) {
1312                                 BT_INFO("Subscription Addr \t\t%4.4x\n ", l_get_le16(data + i));
1313                                 param.sub_list[i] = g_malloc(sizeof(uint16_t));
1314                                 *param.sub_list[i] = l_get_le16(data + i);
1315                         }
1316                 }
1317                 __bt_mesh_handle_pending_dev_config_request_info(result,
1318                         BT_MESH_MODEL_GET_SUBSCRIPTION_LIST, &param,
1319                                 sizeof(bluetooth_mesh_model_configure_t));
1320                 break;
1321         }
1322         case MESH_OPCODE_CONFIG_VEND_MODEL_SUB_LIST: {
1323                 if (data_len < 7)
1324                         break;
1325                 int total = 0;
1326                 int i = 0;
1327                 bluetooth_mesh_model_configure_t param;
1328                 memset(&param, 0x00, sizeof(bluetooth_mesh_model_configure_t));
1329
1330                 _bt_mesh_util_convert_hex_to_string(
1331                         (uint8_t *) event->net_uuid.uuid, 16, param.net_uuid,
1332                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
1333
1334                 BT_INFO("\nNode %4.4x BT SIG Model Subscription List status %s\n",
1335                                 event->source, __mesh_status_to_string(data[0]));
1336
1337                 BT_INFO("Element Addr\t%4.4x\n", l_get_le16(data + 1));
1338                 elem_addr = l_get_le16(data + 1);
1339
1340                 /* VENDOR Model */
1341                 mod_id = l_get_le16(data + 5);
1342                 mod_id = l_get_le16(data + 3) << 16 | mod_id;
1343
1344                 BT_INFO("Model ID\t%4.4x\n", mod_id);
1345
1346                 param.primary_unicast = event->source;
1347                 param.elem_index = elem_addr - event->source;
1348                 param.model = mod_id;
1349
1350                 total = data_len -  7;
1351                 param.sublist_count = total;
1352                 if (total) {
1353                         param.sub_list = (uint16_t **)g_malloc0(sizeof(uint16_t*) * total);
1354
1355                         i = 7;
1356                         for (; i < data_len; i += 2) {
1357                                 BT_INFO("Subscription Addr \t\t%4.4x\n ", l_get_le16(data + i));
1358                                 param.sub_list[i] = g_malloc(sizeof(uint16_t));
1359                                 *param.sub_list[i] = l_get_le16(data + i);
1360                         }
1361                 }
1362                 __bt_mesh_handle_pending_dev_config_request_info(result,
1363                         BT_MESH_MODEL_GET_SUBSCRIPTION_LIST, &param,
1364                                 sizeof(bluetooth_mesh_model_configure_t));
1365                 break;
1366         }
1367         case MESH_OPCODE_DEV_COMP_STATUS: {
1368                 if (data_len < MESH_MINIMUM_COMPOSITION_LEN)
1369                         break;
1370                 bluetooth_mesh_node_features_t features;
1371                 memset(&features, 0x00, sizeof(bluetooth_mesh_node_features_t));
1372                 BT_INFO("Mesh: Got Response for Device Composition Data");
1373                 __bt_mesh_print_device_composition_data(data, data_len);
1374
1375                 if (!_bt_mesh_network_save_remote_node_composition(
1376                         event->net_uuid.uuid, event->source, data, data_len)) {
1377                         result = BLUETOOTH_ERROR_INTERNAL;
1378                         BT_INFO("Failed to save node composition!");
1379                 }
1380                 /* Browse Remote Node event */
1381                 __bt_mesh_handle_pending_dev_config_request_info(result,
1382                         BT_MESH_NODE_BROWSE, event, sizeof(event_mesh_devkey_message_t));
1383
1384                 /* Vendor Features Discover event */
1385                 _bt_mesh_util_convert_hex_to_string(
1386                         (uint8_t *) event->net_uuid.uuid, 16, features.net_uuid,
1387                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
1388                 features.unicast = event->source;
1389                 _bt_mesh_node_get_vendor_features(event->net_uuid.uuid,
1390                         event->source, &features);
1391
1392                 __bt_mesh_handle_pending_dev_config_request_info(result,
1393                         BT_MESH_NODE_GET_VENDOR_FEATURES, &features,
1394                                 sizeof(bluetooth_mesh_node_features_t));
1395                 break;
1396         }
1397         case MESH_OPCODE_NETKEY_STATUS: {
1398                 if (data_len != 3)
1399                         break;
1400
1401                 bluetooth_mesh_key_configure_t param;
1402                 memset(&param, 0x00, sizeof(bluetooth_mesh_key_configure_t));
1403
1404                 BT_INFO("Mesh: Node %4.4x NetKey status %s",
1405                         event->source,  __mesh_status_to_string(data[0]));
1406                 net_idx = l_get_le16(data + 1) & 0xfff;
1407
1408                 BT_INFO("\tNetKey %u (0x%3.3x)", net_idx, net_idx);
1409
1410                 if (data[0] != 0)
1411                         break;
1412
1413                 if (!cmd)
1414                         break;
1415
1416                 _bt_mesh_util_convert_hex_to_string(
1417                         (uint8_t *) event->net_uuid.uuid, 16, param.net_uuid,
1418                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
1419                 param.primary_unicast = event->source;
1420                 param.netkey_idx = net_idx;
1421                 param.is_netkey = true;
1422
1423                 if (cmd->opcode == MESH_OPCODE_NETKEY_ADD) {
1424                         BT_INFO("Mesh: Resp recvd: MESH_OPCODE_NETKEY_ADD");
1425                         if (!_bt_mesh_network_save_remote_node_netkey(
1426                                         event->net_uuid.uuid, event->source, net_idx)) {
1427                                 result = BLUETOOTH_ERROR_INTERNAL;
1428                                 BT_INFO("Failed to save node Netkey!");
1429                         }
1430                         param.op = BLUETOOTH_MESH_NODE_KEY_ADD;
1431                 } else if (cmd->opcode == MESH_OPCODE_NETKEY_DELETE) {
1432                         if (!_bt_mesh_network_delete_remote_node_netkey(
1433                                         event->net_uuid.uuid, event->source, net_idx)) {
1434                                 result = BLUETOOTH_ERROR_INTERNAL;
1435                                 BT_INFO("Failed to delete node Netkey!");
1436                         }
1437                         param.op = BLUETOOTH_MESH_NODE_KEY_DELETE;
1438                 } else if (cmd->opcode == MESH_OPCODE_NETKEY_UPDATE) {
1439                         BT_INFO("Mesh: Resp recvd: MESH_OPCODE_NETKEY_UPDATE");
1440                         param.op = BLUETOOTH_MESH_NODE_KEY_UPDATE;
1441                 }
1442                 /* Node Net Key Configure event */
1443                 __bt_mesh_handle_pending_dev_config_request_info(result,
1444                         BT_MESH_NODE_CONFIGURE_KEY,
1445                                 &param, sizeof(bluetooth_mesh_key_configure_t));
1446                 break;
1447         }
1448         case MESH_OPCODE_APPKEY_STATUS: {
1449                 if (data_len != 4)
1450                         break;
1451
1452                 bluetooth_mesh_key_configure_t param;
1453                 memset(&param, 0x00, sizeof(bluetooth_mesh_key_configure_t));
1454
1455                 BT_INFO("Mesh: Node %4.4x AppKey status %s\n", event->source,
1456                                 __mesh_status_to_string(data[0]));
1457                 net_idx = l_get_le16(data + 1) & 0xfff;
1458                 app_idx = l_get_le16(data + 2) >> 4;
1459
1460                 BT_INFO("NetKey\t%u (0x%3.3x)\n", net_idx, net_idx);
1461                 BT_INFO("AppKey\t%u (0x%3.3x)\n", app_idx, app_idx);
1462
1463                 if (data[0] != MESH_STATUS_SUCCESS)
1464                         break;
1465
1466                 if (!cmd)
1467                         break;
1468
1469                 _bt_mesh_util_convert_hex_to_string(
1470                         (uint8_t *) event->net_uuid.uuid, 16, param.net_uuid,
1471                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
1472
1473                 param.primary_unicast = event->source;
1474                 param.netkey_idx = net_idx;
1475                 param.appkey_idx = app_idx;
1476                 param.is_netkey = false;
1477
1478                 if (cmd->opcode == MESH_OPCODE_APPKEY_ADD) {
1479                         BT_INFO("Mesh: Resp recvd: MESH_OPCODE_APPKEY_ADD");
1480                         if (!_bt_mesh_network_save_remote_node_appkey(
1481                                 event->net_uuid.uuid, event->source,
1482                                         net_idx, app_idx)) {
1483                                 result = BLUETOOTH_ERROR_INTERNAL;
1484                                 BT_INFO("Failed to save node Appkey!");
1485                         }
1486                         param.op = BLUETOOTH_MESH_NODE_KEY_ADD;
1487                 } else if (cmd->opcode == MESH_OPCODE_APPKEY_DELETE) {
1488                         BT_INFO("Mesh: Resp recvd: MESH_OPCODE_APPKEY_DELETE");
1489                         if (!_bt_mesh_network_delete_remote_node_appkey(
1490                                 event->net_uuid.uuid, event->source,
1491                                         net_idx, app_idx)) {
1492                                 result = BLUETOOTH_ERROR_INTERNAL;
1493                                 BT_INFO("Failed to delete node Appkey!");
1494                         }
1495                         param.op = BLUETOOTH_MESH_NODE_KEY_DELETE;
1496                 } else if (cmd->opcode == MESH_OPCODE_APPKEY_UPDATE) {
1497                         BT_INFO("Mesh: Resp recvd: MESH_OPCODE_APPKEY_UPDATE");
1498                         param.op = BLUETOOTH_MESH_NODE_KEY_UPDATE;
1499                 }
1500
1501                 /* Node App Key Configure event */
1502                 __bt_mesh_handle_pending_dev_config_request_info(result,
1503                         BT_MESH_NODE_CONFIGURE_KEY,
1504                                 &param, sizeof(bluetooth_mesh_key_configure_t));
1505                 break;
1506         }
1507         }
1508 }
1509
1510 static gboolean __bt_mesh_vendor_feature_event_handler(gpointer data)
1511 {
1512         bluetooth_mesh_node_features_t *result = (bluetooth_mesh_node_features_t*) data;
1513         __bt_mesh_handle_pending_dev_config_request_info(
1514                 BLUETOOTH_ERROR_NONE,
1515                         BT_MESH_NODE_GET_VENDOR_FEATURES,
1516                                 result, sizeof(bluetooth_mesh_node_features_t));
1517         g_free(result);
1518         return FALSE;
1519 }
1520
1521 int _bt_mesh_node_discover_vendor_features(const char *app_cred, const char *sender,
1522                 bluetooth_mesh_node_features_t *req)
1523 {
1524         int ret = OAL_STATUS_SUCCESS;
1525         uint16_t dest;
1526         uint16_t netkey_idx;
1527         uint16_t data_len;
1528         oal_uuid_t net_uuid;
1529         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
1530
1531         _bt_mesh_util_convert_string_to_hex(req->net_uuid,
1532                         strlen(req->net_uuid), net_uuid.uuid, 16);
1533         /* Check if Node's vendor features are already svaed or not */
1534         if (_bt_mesh_node_get_vendor_features(net_uuid.uuid, req->unicast, req)) {
1535                 /* Schedule event ot Application */
1536                 bluetooth_mesh_node_features_t *event = \
1537                         g_memdup(req, sizeof(bluetooth_mesh_node_features_t));
1538                 g_idle_add(__bt_mesh_vendor_feature_event_handler, (gpointer) event);
1539                 return BLUETOOTH_ERROR_NONE;
1540         }
1541
1542         /* If Scanning is going on */
1543         if (_bt_mesh_is_provisioning() ||
1544                         _bt_mesh_is_scanning()) {
1545                 BT_ERR("Device is buzy..");
1546                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1547         }
1548
1549         _bt_mesh_util_convert_string_to_hex(req->net_uuid,
1550                         strlen(req->net_uuid), net_uuid.uuid, 16);
1551
1552         dest = req->unicast;
1553
1554         /* Check pending request */
1555         if (_bt_mesh_check_pending_request(MESH_OPCODE_DEV_COMP_GET,
1556                                 dest, net_uuid.uuid)) {
1557                 BT_ERR("Device is buzy..");
1558                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1559         }
1560
1561         /* Get Subnet index of the rmeote node for TX encryption */
1562         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid, dest);
1563         if (netkey_idx == MESH_NET_IDX_INVALID)
1564                 return BLUETOOTH_ERROR_INTERNAL;
1565
1566         data_len = _bt_mesh_util_opcode_set(MESH_OPCODE_DEV_COMP_GET,
1567                         buffer);
1568
1569         /* By default, use page 0 */
1570         buffer[data_len++] = 0;
1571         ret = mesh_conf_send_message(&net_uuid, dest, true,
1572                         netkey_idx, buffer, data_len);
1573
1574         if (ret != OAL_STATUS_SUCCESS) {
1575                 BT_ERR("ret: %d", ret);
1576                 return BLUETOOTH_ERROR_INTERNAL;
1577         }
1578
1579         /* Queue the request with timeout */
1580         __bt_mesh_add_request(MESH_OPCODE_DEV_COMP_GET,
1581                         dest, net_uuid.uuid, NULL);
1582         return BLUETOOTH_ERROR_NONE;
1583 }
1584
1585 int _bt_mesh_browse_remote_node(const char *app_cred,
1586         const char *sender,
1587                 bluetooth_mesh_node_discover_t *req)
1588 {
1589         int ret = OAL_STATUS_SUCCESS;
1590         uint16_t dest;
1591         uint16_t netkey_idx;
1592         uint16_t data_len;
1593         oal_uuid_t net_uuid;
1594         oal_uuid_t dev_uuid;
1595         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
1596
1597         /* If Scanning is going on */
1598         if (_bt_mesh_is_provisioning() ||
1599                         _bt_mesh_is_scanning()) {
1600                 BT_ERR("Device is buzy..");
1601                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1602         }
1603
1604         _bt_mesh_util_convert_string_to_hex(req->net_uuid,
1605                 strlen(req->net_uuid), net_uuid.uuid, 16);
1606         _bt_mesh_util_convert_string_to_hex(req->dev_uuid,
1607                 strlen(req->dev_uuid), dev_uuid.uuid, 16);
1608
1609         BT_INFO("Mesh: Browse Node UUID [%s]", req->dev_uuid);
1610
1611         /* Get Remote Node unicast address from Dev UUID */
1612         if (!_bt_mesh_node_get_unicast_from_dev_uuid(net_uuid.uuid,
1613                         dev_uuid.uuid, &dest))
1614                 return BLUETOOTH_ERROR_INTERNAL;
1615
1616         /* Check pending request */
1617         if (_bt_mesh_check_pending_request(MESH_OPCODE_DEV_COMP_GET,
1618                         dest, net_uuid.uuid)) {
1619                 BT_ERR("Device is buzy..");
1620                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1621         }
1622
1623         /* Get Subnet index of the rmeote node for TX encryption */
1624         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid, dest);
1625         if (netkey_idx == MESH_NET_IDX_INVALID)
1626                 return BLUETOOTH_ERROR_INTERNAL;
1627
1628         data_len = _bt_mesh_util_opcode_set(MESH_OPCODE_DEV_COMP_GET, buffer);
1629
1630         /* By default, use page 0 */
1631         buffer[data_len++] = 0;
1632         ret = mesh_conf_send_message(&net_uuid, dest, true,
1633                         netkey_idx, buffer, data_len);
1634
1635         if (ret != OAL_STATUS_SUCCESS) {
1636                 BT_ERR("ret: %d", ret);
1637                 return BLUETOOTH_ERROR_INTERNAL;
1638         }
1639
1640         /* Queue the request with timeout */
1641         __bt_mesh_add_request(MESH_OPCODE_DEV_COMP_GET,
1642                         dest, net_uuid.uuid, NULL);
1643         return BLUETOOTH_ERROR_NONE;
1644 }
1645
1646 int _bt_mesh_model_configure_group_subscription(const char *app_cred,
1647                 const char *sender, bluetooth_mesh_model_configure_t *req)
1648 {
1649         int ret = OAL_STATUS_SUCCESS;
1650         uint16_t netkey_idx;
1651         oal_uuid_t net_uuid;
1652         uint16_t data_len;
1653         uint32_t opcode = 0;
1654         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
1655
1656         /* If Scanning is going on */
1657         if (_bt_mesh_is_provisioning() ||
1658                         _bt_mesh_is_scanning()) {
1659                 BT_ERR("Device is buzy..");
1660                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1661         }
1662
1663         if (req->op != BLUETOOTH_MESH_MODEL_SUB_DELETE_ALL) {
1664                 /* Subscriptio address sanity check */
1665                 if ((!MESH_IS_GROUP(req->sub_addr) ||
1666                         MESH_IS_ALL_NODES(req->sub_addr)) ||
1667                                 MESH_IS_VIRTUAL(req->sub_addr)) {
1668                         BT_ERR("Mesh: Bad subscription address %x\n",
1669                                 req->sub_addr);
1670                         return BLUETOOTH_ERROR_INVALID_PARAM;
1671                 }
1672         }
1673
1674         /* Get Subnet index of the remote node for TX encryption */
1675         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid,
1676                                 req->primary_unicast);
1677         if (netkey_idx == MESH_NET_IDX_INVALID)
1678                 return BLUETOOTH_ERROR_INTERNAL;
1679
1680         _bt_mesh_util_convert_string_to_hex(req->net_uuid,
1681                 strlen(req->net_uuid), net_uuid.uuid, 16);
1682
1683         if (req->op == BLUETOOTH_MESH_MODEL_SUB_ADD)
1684                 opcode = MESH_OPCODE_CONFIG_MODEL_SUB_ADD;
1685         else if (req->op == BLUETOOTH_MESH_MODEL_SUB_DELETE)
1686                 opcode = MESH_OPCODE_CONFIG_MODEL_SUB_DELETE;
1687         else if (req->op == BLUETOOTH_MESH_MODEL_SUB_DELETE_ALL)
1688                 opcode = MESH_OPCODE_CONFIG_MODEL_SUB_DELETE_ALL;
1689         else if (req->op == BLUETOOTH_MESH_MODEL_SUB_OVERWRITE)
1690                 opcode = MESH_OPCODE_CONFIG_MODEL_SUB_OVERWRITE;
1691
1692         /* Check pending request */
1693         if (_bt_mesh_check_pending_request(opcode,
1694                                 req->primary_unicast, net_uuid.uuid)) {
1695                 BT_ERR("Device is buzy..");
1696                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1697         }
1698
1699         data_len = _bt_mesh_util_opcode_set(opcode, buffer);
1700
1701         /* Element Address */
1702         l_put_le16((req->primary_unicast + req->elem_index),
1703                         buffer + data_len);
1704         data_len += 2;
1705
1706         /* Subscription address */
1707         if (req->op != BLUETOOTH_MESH_MODEL_SUB_DELETE_ALL) {
1708                 l_put_le16(req->sub_addr, buffer + data_len);
1709                 data_len += 2;
1710         }
1711
1712         /* Insert Model ID */
1713          if (req->model >= 0xFFFF0000) {
1714                 /* 1st 2 octet Company ID is 0xFFFF means, it is BT SIG Model*/
1715                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
1716                 data_len += 2;
1717         } else {
1718                 /* Vendor Model, 1st 2 octetes: Company ID, next 2 octets: Vendor Model ID */
1719                 l_put_le16(req->model & 0xFFFF0000, buffer + data_len);
1720                 data_len += 2;
1721                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
1722                 data_len += 2;
1723         }
1724
1725         ret = mesh_conf_send_message(&net_uuid, req->primary_unicast, true,
1726                         netkey_idx, buffer, data_len);
1727
1728         if (ret != OAL_STATUS_SUCCESS) {
1729                 BT_ERR("ret: %d", ret);
1730                 return BLUETOOTH_ERROR_INTERNAL;
1731         }
1732
1733         /* Queue the request with timeout */
1734         __bt_mesh_add_request(opcode, req->primary_unicast,
1735                 net_uuid.uuid,
1736                         g_memdup(req, sizeof(bluetooth_mesh_model_configure_t)));
1737
1738         return BLUETOOTH_ERROR_NONE;
1739 }
1740
1741 int _bt_mesh_model_configure_virtual_group_subscription(
1742                 const char *app_cred, const char *sender,
1743                         bluetooth_mesh_model_configure_t *req)
1744 {
1745         int ret = OAL_STATUS_SUCCESS;
1746         uint16_t netkey_idx;
1747         oal_uuid_t net_uuid;
1748         uint16_t data_len;
1749         uint32_t opcode = 0;
1750         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
1751
1752         /* If Scanning is going on */
1753         if (_bt_mesh_is_provisioning() ||
1754                         _bt_mesh_is_scanning()) {
1755                 BT_ERR("Device is buzy..");
1756                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1757         }
1758
1759         _bt_mesh_util_convert_string_to_hex(req->net_uuid,
1760                 strlen(req->net_uuid), net_uuid.uuid, 16);
1761
1762         if (req->op != BLUETOOTH_MESH_MODEL_SUB_DELETE_ALL) {
1763                 /* Subscription address sanity check */
1764                 if ((MESH_IS_GROUP(req->sub_addr) ||
1765                         MESH_IS_ALL_NODES(req->sub_addr)) ||
1766                                 !(MESH_IS_VIRTUAL(req->sub_addr))) {
1767                         BT_ERR("Mesh: Bad Virtual subscription address %x\n",
1768                                 req->sub_addr);
1769                         return BLUETOOTH_ERROR_INVALID_PARAM;
1770                 }
1771         }
1772
1773         /* Get Subnet index of the remote node for TX encryption */
1774         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid,
1775                                 req->primary_unicast);
1776         if (netkey_idx == MESH_NET_IDX_INVALID)
1777                 return BLUETOOTH_ERROR_INTERNAL;
1778
1779         if (req->op == BLUETOOTH_MESH_MODEL_SUB_ADD)
1780                 opcode = MESH_OPCODE_CONFIG_MODEL_SUB_ADD;
1781         else if (req->op == BLUETOOTH_MESH_MODEL_SUB_DELETE)
1782                 opcode = MESH_OPCODE_CONFIG_MODEL_SUB_DELETE;
1783         else if (req->op == BLUETOOTH_MESH_MODEL_SUB_DELETE_ALL)
1784                 opcode = MESH_OPCODE_CONFIG_MODEL_SUB_DELETE_ALL;
1785         else if (req->op == BLUETOOTH_MESH_MODEL_SUB_OVERWRITE)
1786                 opcode = MESH_OPCODE_CONFIG_MODEL_SUB_OVERWRITE;
1787
1788         /* Check pending request */
1789         if (_bt_mesh_check_pending_request(opcode,
1790                                 req->primary_unicast, net_uuid.uuid)) {
1791                 BT_ERR("Device is buzy..");
1792                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1793         }
1794
1795         data_len = _bt_mesh_util_opcode_set(opcode, buffer);
1796
1797         /* Element Address */
1798         l_put_le16((req->primary_unicast + req->elem_index), buffer + data_len);
1799         data_len += 2;
1800
1801         /* Subscription address */
1802         if (req->op != BLUETOOTH_MESH_MODEL_SUB_DELETE_ALL) {
1803                 uint8_t label_uuid[16];
1804                 if (!_bt_mesh_network_get_label_uuid_from_sub_addr(
1805                         net_uuid.uuid, req->sub_addr, label_uuid)) {
1806                         BT_ERR("Mesh: Virtual Group Label UUID Not found");
1807                         return BLUETOOTH_ERROR_INVALID_PARAM;
1808                 }
1809                 memcpy(buffer + data_len, label_uuid, 16);
1810                 data_len += 16;
1811         }
1812
1813         /* Insert Model ID */
1814          if (req->model >= 0xFFFF0000) {
1815                 /* 1st 2 octet Company ID is 0xFFFF means, it is BT SIG Model*/
1816                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
1817                 data_len += 2;
1818         } else {
1819                 /* Vendor Model, 1st 2 octetes: Company ID, next 2 octets: Vendor Model ID */
1820                 l_put_le16(req->model & 0xFFFF0000, buffer + data_len);
1821                 data_len += 2;
1822                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
1823                 data_len += 2;
1824         }
1825
1826         ret = mesh_conf_send_message(&net_uuid,
1827                         req->primary_unicast, true,
1828                                 netkey_idx, buffer, data_len);
1829
1830         if (ret != OAL_STATUS_SUCCESS) {
1831                 BT_ERR("ret: %d", ret);
1832                 return BLUETOOTH_ERROR_INTERNAL;
1833         }
1834
1835         /* Queue the request with timeout */
1836         __bt_mesh_add_request(opcode, req->primary_unicast,
1837                 net_uuid.uuid,
1838                         g_memdup(req, sizeof(bluetooth_mesh_model_configure_t)));
1839
1840         return BLUETOOTH_ERROR_NONE;
1841 }
1842
1843 int _bt_mesh_model_get_publication(const char *app_cred, const char *sender,
1844                 bluetooth_mesh_model_configure_t *req)
1845 {
1846         int ret = OAL_STATUS_SUCCESS;
1847         uint16_t netkey_idx;
1848         oal_uuid_t net_uuid;
1849         uint16_t data_len;
1850         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
1851
1852         /* If Scanning is going on */
1853         if (_bt_mesh_is_provisioning() ||
1854                         _bt_mesh_is_scanning()) {
1855                 BT_ERR("Device is buzy..");
1856                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1857         }
1858
1859         _bt_mesh_util_convert_string_to_hex(req->net_uuid,
1860                 strlen(req->net_uuid), net_uuid.uuid, 16);
1861
1862         /* Check pending request */
1863         if (_bt_mesh_check_pending_request(MESH_OPCODE_CONFIG_MODEL_PUB_GET,
1864                                 req->primary_unicast, net_uuid.uuid)) {
1865                 BT_ERR("Device is buzy..");
1866                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1867         }
1868
1869         /* Get Subnet index of the remote node for TX encryption */
1870         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid, req->primary_unicast);
1871         if (netkey_idx == MESH_NET_IDX_INVALID)
1872                 return BLUETOOTH_ERROR_INTERNAL;
1873
1874         /* Set Opcode */
1875         data_len = _bt_mesh_util_opcode_set(MESH_OPCODE_CONFIG_MODEL_PUB_GET, buffer);
1876
1877         /* Element Address */
1878         l_put_le16((req->primary_unicast + req->elem_index), buffer + data_len);
1879         data_len += 2;
1880
1881         /* Insert Model ID */
1882         if (req->model >= 0xFFFF0000) {
1883                 /* 1st 2 octet Company ID is 0xFFFF means, it is BT SIG Model*/
1884                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
1885                 data_len += 2;
1886         } else {
1887                 /* Vendor Model, 1st 2 octetes: Company ID, next 2 octets: Vendor Model ID */
1888                 l_put_le16(req->model & 0xFFFF0000, buffer + data_len);
1889                 data_len += 2;
1890                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
1891                 data_len += 2;
1892         }
1893
1894         ret = mesh_conf_send_message(&net_uuid, req->primary_unicast, true, netkey_idx, buffer, data_len);
1895
1896         if (ret != OAL_STATUS_SUCCESS) {
1897                 BT_ERR("ret: %d", ret);
1898                 return BLUETOOTH_ERROR_INTERNAL;
1899         }
1900
1901         /* Queue the request with timeout */
1902         __bt_mesh_add_request(MESH_OPCODE_CONFIG_MODEL_PUB_GET, req->primary_unicast, net_uuid.uuid,
1903                         g_memdup(req, sizeof(bluetooth_mesh_model_configure_t)));
1904
1905         return BLUETOOTH_ERROR_NONE;
1906 }
1907
1908 int _bt_mesh_model_set_publication(const char *app_cred, const char *sender,
1909                 bluetooth_mesh_model_configure_t *req)
1910 {
1911         int ret = OAL_STATUS_SUCCESS;
1912         uint16_t netkey_idx;
1913         oal_uuid_t net_uuid;
1914         uint16_t data_len;
1915         uint32_t opcode = 0;
1916         uint8_t label_uuid[16];
1917         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
1918
1919         /* If Scanning is going on */
1920         if (_bt_mesh_is_provisioning() ||
1921                         _bt_mesh_is_scanning()) {
1922                 BT_ERR("Device is buzy..");
1923                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1924         }
1925
1926         _bt_mesh_util_convert_string_to_hex(req->net_uuid, strlen(req->net_uuid), net_uuid.uuid, 16);
1927
1928         if (req->pub_addr > MESH_ALL_NODES_ADDRESS)
1929                 return BLUETOOTH_ERROR_INVALID_PARAM;
1930
1931
1932         if (!MESH_IS_GROUP(req->pub_addr) && !MESH_IS_VIRTUAL(req->pub_addr) &&
1933                         req->pub_addr != MESH_UNASSIGNED_ADDRESS) {
1934                 BT_ERR("Mesh: Bad Publication address %x\n", req->pub_addr);
1935                 return BLUETOOTH_ERROR_INVALID_PARAM;
1936         }
1937
1938         if (req->pub_addr != MESH_UNASSIGNED_ADDRESS) {
1939                 if (MESH_IS_VIRTUAL(req->pub_addr)) {
1940                         if(!_bt_mesh_network_get_label_uuid_from_sub_addr(
1941                                         net_uuid.uuid, req->pub_addr, label_uuid))
1942                                 return BLUETOOTH_ERROR_INVALID_PARAM;
1943                         opcode = MESH_OPCODE_CONFIG_MODEL_PUB_VIRT_SET;
1944
1945                 } else if (MESH_IS_GROUP(req->pub_addr))
1946                         opcode = MESH_OPCODE_CONFIG_MODEL_PUB_SET;
1947         }
1948
1949         /* Check pending request */
1950         if (_bt_mesh_check_pending_request(opcode,
1951                                 req->primary_unicast, net_uuid.uuid)) {
1952                 BT_ERR("Device is buzy..");
1953                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1954         }
1955
1956         /* Get Subnet index of the remote node for TX encryption */
1957         netkey_idx = _bt_mesh_node_get_subnet_idx(
1958                                 net_uuid.uuid, req->primary_unicast);
1959         if (netkey_idx == MESH_NET_IDX_INVALID)
1960                 return BLUETOOTH_ERROR_INTERNAL;
1961
1962         /* Set opcode */
1963         data_len = _bt_mesh_util_opcode_set(opcode, buffer);
1964
1965         /* Element Address */
1966         l_put_le16((req->primary_unicast + req->elem_index), buffer + data_len);
1967         data_len += 2;
1968
1969         /* Fill Publication Address */
1970         if (MESH_IS_VIRTUAL(req->pub_addr)) {
1971                 memcpy(buffer + data_len, label_uuid, 16);
1972                 data_len += 16;
1973         } else {
1974                 l_put_le16(req->pub_addr, buffer + data_len);
1975                 data_len += 2;
1976         }
1977
1978         /* AppKey index + credential (set to 0) */
1979         l_put_le16(req->appkey_idx, buffer + data_len);
1980         data_len += 2;
1981
1982         /* Fill TTL */
1983         buffer[data_len++] = req->ttl;
1984         /* Publish period  step count and step resolution */
1985         buffer[data_len++] = req->period;
1986         /* Publish retransmit count & interval steps */
1987         buffer[data_len++] = req->retransmit;
1988
1989         /* Insert Model ID */
1990         if (req->model >= 0xFFFF0000) {
1991                 /* 1st 2 octet Company ID is 0xFFFF means, it is BT SIG Model*/
1992                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
1993                 data_len += 2;
1994         } else {
1995                 /* Vendor Model, 1st 2 octetes: Company ID, next 2 octets: Vendor Model ID */
1996                 l_put_le16(req->model & 0xFFFF0000, buffer + data_len);
1997                 data_len += 2;
1998                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
1999                 data_len += 2;
2000         }
2001
2002         ret = mesh_conf_send_message(&net_uuid,
2003                         req->primary_unicast, true,
2004                                 netkey_idx, buffer, data_len);
2005
2006         if (ret != OAL_STATUS_SUCCESS) {
2007                 BT_ERR("ret: %d", ret);
2008                 return BLUETOOTH_ERROR_INTERNAL;
2009         }
2010
2011         /* Queue the request with timeout */
2012         __bt_mesh_add_request(opcode, req->primary_unicast, net_uuid.uuid,
2013                         g_memdup(req, sizeof(bluetooth_mesh_model_configure_t)));
2014
2015         return BLUETOOTH_ERROR_NONE;
2016 }
2017
2018 int _bt_mesh_node_model_get_subscription_list(const char *app_cred, const char *sender,
2019                 bluetooth_mesh_model_configure_t *req)
2020 {
2021         int ret = OAL_STATUS_SUCCESS;
2022         uint16_t netkey_idx;
2023         oal_uuid_t net_uuid;
2024         uint16_t data_len;
2025         uint32_t opcode = 0;
2026         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
2027
2028         /* If Scanning is going on */
2029         if (_bt_mesh_is_provisioning() ||
2030                         _bt_mesh_is_scanning()) {
2031                 BT_ERR("Device is buzy..");
2032                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2033         }
2034
2035         _bt_mesh_util_convert_string_to_hex(req->net_uuid, strlen(req->net_uuid), net_uuid.uuid, 16);
2036
2037         /* Insert Model ID */
2038         if (req->model >= 0xFFFF0000)
2039                 /* 1st 2 octet Company ID is 0xFFFF means, it is BT SIG Model*/
2040                 opcode = MESH_OPCODE_CONFIG_MODEL_SUB_GET;
2041         else
2042                 /* Vendor Model, 1st 2 octetes: Company ID, next 2 octets: Vendor Model ID */
2043                 opcode = MESH_OPCODE_CONFIG_VEND_MODEL_SUB_GET;
2044
2045         /* Check pending request */
2046         if (_bt_mesh_check_pending_request(opcode,
2047                                 req->primary_unicast, net_uuid.uuid)) {
2048                 BT_ERR("Device is buzy..");
2049                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2050         }
2051         /* Get Subnet index of the remote node for TX encryption */
2052         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid, req->primary_unicast);
2053         if (netkey_idx == MESH_NET_IDX_INVALID)
2054                 return BLUETOOTH_ERROR_INTERNAL;
2055
2056         data_len = _bt_mesh_util_opcode_set(opcode, buffer);
2057         /* Element Address */
2058         l_put_le16((req->primary_unicast + req->elem_index), buffer + data_len);
2059         data_len += 2;
2060
2061
2062         /* Insert Model ID */
2063         if (opcode == MESH_OPCODE_CONFIG_MODEL_SUB_GET) {
2064                 /* 1st 2 octet Company ID is 0xFFFF means, it is BT SIG Model*/
2065                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
2066                 data_len += 2;
2067         } else {
2068                 /* Vendor Model, 1st 2 octetes: Company ID, next 2 octets: Vendor Model ID */
2069                 l_put_le16(req->model & 0xFFFF0000, buffer + data_len);
2070                 data_len += 2;
2071                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
2072                 data_len += 2;
2073         }
2074
2075         ret = mesh_conf_send_message(&net_uuid,
2076                 req->primary_unicast, true, netkey_idx, buffer, data_len);
2077
2078         if (ret != OAL_STATUS_SUCCESS) {
2079                 BT_ERR("ret: %d", ret);
2080                 return BLUETOOTH_ERROR_INTERNAL;
2081         }
2082
2083         /* Queue the request with timeout */
2084         __bt_mesh_add_request(opcode, req->primary_unicast, net_uuid.uuid,
2085                         g_memdup(req, sizeof(bluetooth_mesh_model_configure_t)));
2086
2087         return BLUETOOTH_ERROR_NONE;
2088 }
2089
2090 int _bt_mesh_node_model_get_appkey_list(const char *app_cred, const char *sender,
2091                 bluetooth_mesh_model_configure_t *req)
2092 {
2093         int ret = OAL_STATUS_SUCCESS;
2094         uint16_t netkey_idx;
2095         oal_uuid_t net_uuid;
2096         uint16_t data_len;
2097         uint32_t opcode = 0;
2098         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
2099
2100         /* If Scanning is going on */
2101         if (_bt_mesh_is_provisioning() ||
2102                         _bt_mesh_is_scanning()) {
2103                 BT_ERR("Device is buzy..");
2104                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2105         }
2106
2107         _bt_mesh_util_convert_string_to_hex(req->net_uuid,
2108                 strlen(req->net_uuid), net_uuid.uuid, 16);
2109
2110         /* Insert Model ID */
2111         if (req->model >= 0xFFFF0000)
2112                 /* 1st 2 octet Company ID is 0xFFFF means, it is BT SIG Model*/
2113                 opcode = MESH_OPCODE_MODEL_APP_GET;
2114         else
2115                 /* Vendor Model, 1st 2 octetes: Company ID, next 2 octets: Vendor Model ID */
2116                 opcode = MESH_OPCODE_VENDOR_MODEL_APP_GET;
2117
2118         /* Check pending request */
2119         if (_bt_mesh_check_pending_request(opcode,
2120                                 req->primary_unicast, net_uuid.uuid)) {
2121                 BT_ERR("Device is buzy..");
2122                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2123         }
2124         /* Get Subnet index of the remote node for TX encryption */
2125         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid, req->primary_unicast);
2126         if (netkey_idx == MESH_NET_IDX_INVALID)
2127                 return BLUETOOTH_ERROR_INTERNAL;
2128
2129         data_len = _bt_mesh_util_opcode_set(opcode, buffer);
2130         /* Element Address */
2131         l_put_le16((req->primary_unicast + req->elem_index), buffer + data_len);
2132         data_len += 2;
2133
2134
2135         /* Insert Model ID */
2136         if (opcode == MESH_OPCODE_MODEL_APP_GET) {
2137                 /* 1st 2 octet Company ID is 0xFFFF means, it is BT SIG Model*/
2138                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
2139                 data_len += 2;
2140         } else {
2141                 /* Vendor Model, 1st 2 octetes: Company ID, next 2 octets: Vendor Model ID */
2142                 l_put_le16(req->model & 0xFFFF0000, buffer + data_len);
2143                 data_len += 2;
2144                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
2145                 data_len += 2;
2146         }
2147
2148         ret = mesh_conf_send_message(&net_uuid, req->primary_unicast, true, netkey_idx, buffer, data_len);
2149
2150         if (ret != OAL_STATUS_SUCCESS) {
2151                 BT_ERR("ret: %d", ret);
2152                 return BLUETOOTH_ERROR_INTERNAL;
2153         }
2154
2155         /* Queue the request with timeout */
2156         __bt_mesh_add_request(opcode, req->primary_unicast, net_uuid.uuid,
2157                         g_memdup(req, sizeof(bluetooth_mesh_model_configure_t)));
2158
2159         return BLUETOOTH_ERROR_NONE;
2160 }
2161
2162 int _bt_mesh_node_model_appkey_execute(const char *app_cred, const char *sender,
2163                 bluetooth_mesh_model_configure_t *req)
2164 {
2165         int ret = OAL_STATUS_SUCCESS;
2166         uint16_t netkey_idx;
2167         oal_uuid_t net_uuid;
2168         uint16_t data_len;
2169         uint32_t opcode = 0;
2170         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
2171
2172         /* If Scanning is going on */
2173         if (_bt_mesh_is_provisioning() ||
2174                         _bt_mesh_is_scanning()) {
2175                 BT_ERR("Device is buzy..");
2176                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2177         }
2178
2179         _bt_mesh_util_convert_string_to_hex(req->net_uuid, strlen(req->net_uuid), net_uuid.uuid, 16);
2180
2181         /* Check pending request */
2182         if (_bt_mesh_check_pending_request(req->is_bind ? MESH_OPCODE_MODEL_APP_BIND : MESH_OPCODE_MODEL_APP_UNBIND,
2183                                 req->primary_unicast, net_uuid.uuid)) {
2184                 BT_ERR("Device is buzy..");
2185                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2186         }
2187         /* Get Subnet index of the remote node for TX encryption */
2188         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid, req->primary_unicast);
2189         if (netkey_idx == MESH_NET_IDX_INVALID)
2190                 return BLUETOOTH_ERROR_INTERNAL;
2191
2192         if (req->is_bind)
2193                 opcode = MESH_OPCODE_MODEL_APP_BIND;
2194         else
2195                 opcode = MESH_OPCODE_MODEL_APP_UNBIND;
2196
2197         data_len = _bt_mesh_util_opcode_set(opcode, buffer);
2198         /* Element Address */
2199         l_put_le16((req->primary_unicast + req->elem_index), buffer + data_len);
2200         data_len += 2;
2201
2202         /* AppKey Index  */
2203         l_put_le16(req->appkey_idx, buffer + data_len);
2204         data_len += 2;
2205
2206         /* Insert Model ID */
2207         if (req->model >= 0xFFFF0000) {
2208                 /* 1st 2 octet Company ID is 0xFFFF means, it is BT SIG Model*/
2209                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
2210                 data_len += 2;
2211         } else {
2212                 /* Vendor Model, 1st 2 octetes: Company ID, next 2 octets: Vendor Model ID */
2213                 l_put_le16(req->model & 0xFFFF0000, buffer + data_len);
2214                 data_len += 2;
2215                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
2216                 data_len += 2;
2217         }
2218
2219         ret = mesh_conf_send_message(&net_uuid, req->primary_unicast, true, netkey_idx, buffer, data_len);
2220
2221         if (ret != OAL_STATUS_SUCCESS) {
2222                 BT_ERR("ret: %d", ret);
2223                 return BLUETOOTH_ERROR_INTERNAL;
2224         }
2225
2226         /* Queue the request with timeout */
2227         __bt_mesh_add_request(opcode, req->primary_unicast, net_uuid.uuid,
2228                         g_memdup(req, sizeof(bluetooth_mesh_model_configure_t)));
2229
2230         return BLUETOOTH_ERROR_NONE;
2231 }
2232
2233 int _bt_mesh_ttl_execute_remote_node(const char *app_cred, const char *sender,
2234                 bluetooth_mesh_node_ttl_info_t *req)
2235 {
2236         int ret = OAL_STATUS_SUCCESS;
2237         uint16_t netkey_idx;
2238         uint16_t data_len;
2239         oal_uuid_t net_uuid;
2240         uint32_t opcode = 0;
2241         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
2242
2243         /* If Scanning is going on */
2244         if (_bt_mesh_is_provisioning() ||
2245                         _bt_mesh_is_scanning()) {
2246                 BT_ERR("Device is buzy..");
2247                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2248         }
2249
2250         _bt_mesh_util_convert_string_to_hex(req->net_uuid, strlen(req->net_uuid), net_uuid.uuid, 16);
2251
2252         /* Check pending request */
2253         if (_bt_mesh_check_pending_request(req->is_set ? MESH_OPCODE_CONFIG_DEFAULT_TTL_SET : MESH_OPCODE_CONFIG_DEFAULT_TTL_GET,
2254                                 req->unicast, net_uuid.uuid)) {
2255                 BT_ERR("Device is buzy..");
2256                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2257         }
2258
2259         /* Get Subnet index of the rmeote node for TX encryption */
2260         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid, req->unicast);
2261         if (netkey_idx == MESH_NET_IDX_INVALID)
2262                 return BLUETOOTH_ERROR_INTERNAL;
2263
2264         if (req->is_set) {
2265                 opcode = MESH_OPCODE_CONFIG_DEFAULT_TTL_SET;
2266                 data_len = _bt_mesh_util_opcode_set(MESH_OPCODE_CONFIG_DEFAULT_TTL_SET, buffer);
2267                 buffer[data_len++] = req->ttl;
2268         } else {
2269                 opcode = MESH_OPCODE_CONFIG_DEFAULT_TTL_GET;
2270                 data_len = _bt_mesh_util_opcode_set(MESH_OPCODE_CONFIG_DEFAULT_TTL_GET, buffer);
2271         }
2272
2273         ret = mesh_conf_send_message(&net_uuid, req->unicast, true, netkey_idx, buffer, data_len);
2274
2275         if (ret != OAL_STATUS_SUCCESS) {
2276                 BT_ERR("ret: %d", ret);
2277                 return BLUETOOTH_ERROR_INTERNAL;
2278         }
2279
2280         /* Queue the request with timeout */
2281         __bt_mesh_add_request(opcode, req->unicast, net_uuid.uuid,
2282                         g_memdup(req, sizeof(bluetooth_mesh_node_ttl_info_t)));
2283         return BLUETOOTH_ERROR_NONE;
2284 }
2285
2286 static bool __bt_mesh_check_pending_key_cmd(uint16_t dest, bool is_netkey,
2287                 bluetooth_mesh_node_key_conf_e op,  uint8_t net_uuid[], uint32_t *opcode)
2288 {
2289         const struct mesh_config_cmd *cmd;
2290
2291         if (is_netkey) {
2292                 switch(op) {
2293                 case BLUETOOTH_MESH_NODE_KEY_ADD:
2294                         cmd = __mesh_get_command(MESH_OPCODE_NETKEY_ADD);
2295                         if (!cmd)
2296                                 return false;
2297                         if (__bt_mesh_get_request_by_response(dest, net_uuid, cmd->response)) {
2298                                 BT_ERR("Mesh:Another Key Configuration command is pending\n");
2299                                 return true;
2300                         }
2301                         *opcode = MESH_OPCODE_NETKEY_ADD;
2302                         return false;
2303                 case BLUETOOTH_MESH_NODE_KEY_DELETE:
2304                         cmd = __mesh_get_command(MESH_OPCODE_NETKEY_DELETE);
2305                         if (!cmd)
2306                                 return false;
2307                         if (__bt_mesh_get_request_by_response(dest, net_uuid, cmd->response)) {
2308                                 BT_ERR("Mesh:Another Key Configuration command is pending\n");
2309                                 return true;
2310                         }
2311                         *opcode = MESH_OPCODE_NETKEY_DELETE;
2312                         return false;
2313                 case BLUETOOTH_MESH_NODE_KEY_UPDATE:
2314                         cmd = __mesh_get_command(MESH_OPCODE_NETKEY_UPDATE);
2315                         if (!cmd)
2316                                 return false;
2317                         if (__bt_mesh_get_request_by_response(dest, net_uuid, cmd->response)) {
2318                                 BT_ERR("Mesh:Another Key Configuration command is pending\n");
2319                                 return true;
2320                         }
2321                         *opcode = MESH_OPCODE_NETKEY_UPDATE;
2322                         return false;
2323                 }
2324         } else {
2325                 switch(op) {
2326                 case BLUETOOTH_MESH_NODE_KEY_ADD:
2327                         cmd = __mesh_get_command(MESH_OPCODE_APPKEY_ADD);
2328                         if (!cmd)
2329                                 return false;
2330                         if (__bt_mesh_get_request_by_response(dest, net_uuid, cmd->response)) {
2331                                 BT_ERR("Mesh:Another Key Configuration command is pending\n");
2332                                 return true;
2333                         }
2334                         *opcode = MESH_OPCODE_APPKEY_ADD;
2335                         return false;
2336                 case BLUETOOTH_MESH_NODE_KEY_DELETE:
2337                         cmd = __mesh_get_command(MESH_OPCODE_APPKEY_DELETE);
2338                         if (!cmd)
2339                                 return false;
2340                         if (__bt_mesh_get_request_by_response(dest, net_uuid, cmd->response)) {
2341                                 BT_ERR("Mesh:Another Key Configuration command is pending\n");
2342                                 return true;
2343                         }
2344                         *opcode = MESH_OPCODE_APPKEY_DELETE;
2345                         return false;
2346                 case BLUETOOTH_MESH_NODE_KEY_UPDATE:
2347                         cmd = __mesh_get_command(MESH_OPCODE_APPKEY_UPDATE);
2348                         if (!cmd)
2349                                 return false;
2350                         if (__bt_mesh_get_request_by_response(dest, net_uuid, cmd->response)) {
2351                                 BT_ERR("Mesh:Another Key Configuration command is pending\n");
2352                                 return true;
2353                         }
2354                         *opcode = MESH_OPCODE_APPKEY_UPDATE;
2355                         return false;
2356                 }
2357         }
2358         return false;
2359 }
2360
2361 int _bt_mesh_node_configure_key(const char *app_cred, const char *sender,
2362                 bluetooth_mesh_key_configure_t *req)
2363 {
2364         int ret = OAL_STATUS_SUCCESS;
2365         uint16_t netkey_idx;
2366         uint16_t bound_netkey_idx = 0x0000;
2367         oal_uuid_t net_uuid;
2368         uint32_t opcode = 0;
2369         bool update;
2370         uint16_t data_len;
2371         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
2372
2373         /* If Scanning is going on */
2374         if (_bt_mesh_is_provisioning() ||
2375                         _bt_mesh_is_scanning()) {
2376                 BT_ERR("Device is buzy..");
2377                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2378         }
2379
2380         _bt_mesh_util_convert_string_to_hex(req->net_uuid, strlen(req->net_uuid), net_uuid.uuid, 16);
2381
2382         if (req->is_netkey && !_bt_mesh_keys_subnet_exists(net_uuid.uuid, req->netkey_idx)) {
2383                 BT_ERR("Local Subnet not found..");
2384                 return BLUETOOTH_ERROR_INVALID_PARAM;
2385         }
2386
2387         /* For Appkey Configuration, check for available bound netkey */
2388         if (!req->is_netkey) {
2389                 bound_netkey_idx = _bt_mesh_keys_get_bound_key(net_uuid.uuid, req->appkey_idx);
2390                 if (bound_netkey_idx == MESH_NET_IDX_INVALID) {
2391                         BT_ERR("Local AppKey not found..");
2392                         return BLUETOOTH_ERROR_INVALID_PARAM;
2393                 }
2394         }
2395
2396         /* Check pending request */
2397         if (__bt_mesh_check_pending_key_cmd(req->primary_unicast,
2398                                 req->is_netkey, req->op, net_uuid.uuid, &opcode)) {
2399                 BT_ERR("Device is buzy..");
2400                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2401         }
2402
2403         /* Get Subnet index of the rmeote node for TX encryption */
2404         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid, req->primary_unicast);
2405         if (netkey_idx == MESH_NET_IDX_INVALID)
2406                 return BLUETOOTH_ERROR_INTERNAL;
2407
2408         /* Handle Key (App/Net) Delete Commands: Configuration Message  */
2409         if (opcode == MESH_OPCODE_NETKEY_DELETE || opcode == MESH_OPCODE_APPKEY_DELETE) {
2410                 data_len = _bt_mesh_util_opcode_set(opcode, buffer);
2411                 if (req->is_netkey) {
2412                         l_put_le16(req->netkey_idx, buffer + data_len);
2413                         data_len += 2;
2414                 } else {
2415                         buffer[data_len] = bound_netkey_idx;
2416                         buffer[data_len + 1] = ((bound_netkey_idx >> 8) & 0xf) | ((req->appkey_idx << 4) & 0xf0);
2417                         buffer[data_len + 2] = req->appkey_idx >> 4;
2418
2419                         data_len += 3;
2420                 }
2421                 ret = mesh_conf_send_message(&net_uuid, req->primary_unicast, true, netkey_idx, buffer, data_len);
2422         } else {
2423                 /* Handle Key (App/Net) Update & Add Commands: Key Config message  */
2424                 update = (opcode == MESH_OPCODE_NETKEY_UPDATE || opcode == MESH_OPCODE_APPKEY_UPDATE);
2425                 ret = mesh_conf_send_key_message(&net_uuid, req->primary_unicast, req->is_netkey,
2426                                 update, req->is_netkey? req->netkey_idx: req->appkey_idx, netkey_idx);
2427         }
2428         if (ret != OAL_STATUS_SUCCESS) {
2429                 BT_ERR("ret: %d", ret);
2430                 return BLUETOOTH_ERROR_INTERNAL;
2431         }
2432
2433         /* Queue the request with timeout */
2434         __bt_mesh_add_request(opcode, req->primary_unicast,  net_uuid.uuid,
2435                 g_memdup(req, sizeof(bluetooth_mesh_key_configure_t)));
2436         return BLUETOOTH_ERROR_NONE;
2437 }