Mesh: Handle timeout for missing request
[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 for Vendor Features */
239                 bluetooth_mesh_node_features_t *vendor_event = \
240                         g_malloc0(sizeof(bluetooth_mesh_node_features_t));
241
242                 _bt_mesh_util_convert_hex_to_string((uint8_t *) req->net_uuid, 16,
243                         vendor_event->net_uuid,
244                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
245                 vendor_event->unicast = req->addr;
246                  __bt_mesh_handle_pending_dev_config_request_info(
247                         BLUETOOTH_ERROR_TIMEOUT, BT_MESH_NODE_GET_VENDOR_FEATURES,
248                                 vendor_event, sizeof(bluetooth_mesh_node_features_t));
249                 g_free(vendor_event);
250
251                 /* Send event with timeout for Node Browse */
252                 event_mesh_devkey_message_t *event = \
253                         g_malloc0(sizeof(event_mesh_devkey_message_t));
254                 memcpy(event->net_uuid.uuid, req->net_uuid, 16);
255                 event->source = req->addr;
256
257                  __bt_mesh_handle_pending_dev_config_request_info(
258                         BLUETOOTH_ERROR_TIMEOUT, BT_MESH_NODE_BROWSE,
259                                 event, sizeof(event_mesh_devkey_message_t));
260
261                 g_free(event);
262                 break;
263         }
264         case MESH_OPCODE_CONFIG_MODEL_SUB_GET:
265         case MESH_OPCODE_CONFIG_VEND_MODEL_SUB_GET:
266                 BT_INFO("Mesh: Command TimedOut: Model Subscription list get");
267                 /* Send event with timeout */
268                  __bt_mesh_handle_pending_dev_config_request_info(
269                         BLUETOOTH_ERROR_TIMEOUT,
270                                 BT_MESH_MODEL_GET_SUBSCRIPTION_LIST, req->data,
271                                         sizeof(bluetooth_mesh_model_configure_t));
272         break;
273         case MESH_OPCODE_NETKEY_ADD:
274         case MESH_OPCODE_NETKEY_UPDATE:
275         case MESH_OPCODE_NETKEY_DELETE:
276         case MESH_OPCODE_APPKEY_ADD:
277         case MESH_OPCODE_APPKEY_UPDATE:
278         case MESH_OPCODE_APPKEY_DELETE:
279                 /* Send event with timeout */
280                  __bt_mesh_handle_pending_dev_config_request_info(
281                         BLUETOOTH_ERROR_TIMEOUT,
282                                 BT_MESH_NODE_CONFIGURE_KEY, req->data,
283                                         sizeof(bluetooth_mesh_key_configure_t));
284                 break;
285         case MESH_OPCODE_CONFIG_DEFAULT_TTL_GET:
286         case MESH_OPCODE_CONFIG_DEFAULT_TTL_SET:
287                 /* Send event with timeout */
288                  __bt_mesh_handle_pending_dev_config_request_info(
289                         BLUETOOTH_ERROR_TIMEOUT,
290                                 BT_MESH_NODE_TTL_EXECUTE, req->data,
291                                         sizeof(bluetooth_mesh_node_ttl_info_t));
292                 break;
293         case MESH_OPCODE_CONFIG_MODEL_SUB_ADD:
294         case MESH_OPCODE_CONFIG_MODEL_SUB_DELETE:
295         case MESH_OPCODE_CONFIG_MODEL_SUB_OVERWRITE:
296                 /* Send event with timeout */
297                  __bt_mesh_handle_pending_dev_config_request_info(
298                         BLUETOOTH_ERROR_TIMEOUT,
299                                 BT_MESH_MODEL_CONFIG_GROUP_SUB, req->data,
300                                         sizeof(bluetooth_mesh_model_configure_t));
301                 break;
302         case MESH_OPCODE_CONFIG_MODEL_SUB_VIRT_ADD:
303         case MESH_OPCODE_CONFIG_MODEL_SUB_VIRT_DELETE:
304         case MESH_OPCODE_CONFIG_MODEL_SUB_VIRT_OVERWRITE:
305                 /* Send event with timeout */
306                  __bt_mesh_handle_pending_dev_config_request_info(
307                         BLUETOOTH_ERROR_TIMEOUT,
308                                 BT_MESH_MODEL_CONFIG_VIRTUAL_GROUP_SUB, req->data,
309                                         sizeof(bluetooth_mesh_model_configure_t));
310                 break;
311         case MESH_OPCODE_CONFIG_MODEL_SUB_DELETE_ALL:
312                 /* Send event with timeout */
313                  __bt_mesh_handle_pending_dev_config_request_info(
314                         BLUETOOTH_ERROR_TIMEOUT,
315                                 BT_MESH_MODEL_CONFIG_VIRTUAL_GROUP_SUB, req->data,
316                                         sizeof(bluetooth_mesh_model_configure_t));
317                 /* Send event with timeout */
318                  __bt_mesh_handle_pending_dev_config_request_info(
319                         BLUETOOTH_ERROR_TIMEOUT,
320                                 BT_MESH_MODEL_CONFIG_GROUP_SUB, req->data,
321                                         sizeof(bluetooth_mesh_model_configure_t));
322                 break;
323         case MESH_OPCODE_CONFIG_MODEL_PUB_GET:
324                 /* Send event with timeout */
325                 __bt_mesh_handle_pending_dev_config_request_info(
326                         BLUETOOTH_ERROR_TIMEOUT,
327                                 BT_MESH_MODEL_GET_PUBLICATION, req->data,
328                                 sizeof(bluetooth_mesh_model_configure_t));
329                 break;
330         case MESH_OPCODE_CONFIG_MODEL_PUB_SET:
331                 /* Send event with timeout */
332                 __bt_mesh_handle_pending_dev_config_request_info(
333                         BLUETOOTH_ERROR_TIMEOUT,
334                                 BT_MESH_MODEL_SET_PUBLICATION, req->data,
335                                 sizeof(bluetooth_mesh_model_configure_t));
336                 break;
337         case MESH_OPCODE_MODEL_APP_BIND:
338         case MESH_OPCODE_MODEL_APP_UNBIND:
339                 /* Send event with timeout */
340                 __bt_mesh_handle_pending_dev_config_request_info(
341                         BLUETOOTH_ERROR_TIMEOUT,
342                                 BT_MESH_MODEL_CONFIGURE_APPKEY, req->data,
343                                 sizeof(bluetooth_mesh_model_configure_t));
344                 break;
345         default:
346                 break;
347         }
348         BT_INFO("Mesh: Number of pending requests [%u] Remove the req",
349                 l_queue_length(pending_requests));
350         l_queue_remove(pending_requests, req);
351         __mesh_request_remove(req);
352 }
353
354 static void __bt_mesh_add_request(uint32_t opcode, uint16_t dest,
355                         uint8_t net_uuid[], void *data)
356 {
357         struct mesh_pending_request *req;
358         const struct mesh_config_cmd *cmd;
359         char uuid_str[33];
360
361         cmd = __mesh_get_command(opcode);
362         if (!cmd)
363                 return;
364         _bt_mesh_util_convert_hex_to_string((uint8_t *) net_uuid, 16, uuid_str,
365                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
366         BT_INFO("Mesh: Net UUID[%s]", uuid_str);
367
368         BT_INFO("Mesh: Adding command opcode [0x%2.2x] response [0x%2.2x]",
369                         cmd->opcode, cmd->response);
370         req = l_new(struct mesh_pending_request, 1);
371         req->cmd = cmd;
372         req->addr = dest;
373         req->data = data;
374         memcpy(req->net_uuid, net_uuid, 16);
375         req->timer = l_timeout_create(MESH_DEFAULT_RESPONSE_TIMEOUT,
376                         __bt_mesh_wait_response_timeout, req, NULL);
377
378         if (!pending_requests)
379                 pending_requests = l_queue_new();
380         l_queue_push_tail(pending_requests, req);
381         BT_INFO("Mesh: Number of pending requests [%u]", l_queue_length(pending_requests));
382 }
383
384 static struct mesh_pending_request *__bt_mesh_get_request_by_response(
385                 uint16_t addr, uint8_t net_uuid[],
386                         uint32_t response)
387 {
388         const struct l_queue_entry *entry;
389         char uuid_str[33];
390         char uuid_str1[33];
391
392         BT_INFO("Mesh: Number of pending requests [%u]", l_queue_length(pending_requests));
393         entry = l_queue_get_entries(pending_requests);
394
395         for (; entry; entry = entry->next) {
396                 struct mesh_pending_request *req = entry->data;
397
398                 /* Test */
399                 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);
400                 BT_INFO("Mesh: Current req addr [0x%2.2x] res [0x%2.2x]", addr, response);
401                 _bt_mesh_util_convert_hex_to_string((uint8_t *) net_uuid, 16, uuid_str,
402                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
403                 BT_INFO("Mesh: Net UUID[%s]", uuid_str);
404
405                 _bt_mesh_util_convert_hex_to_string((uint8_t *) req->net_uuid, 16, uuid_str1,
406                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
407                 BT_INFO("Mesh: Net UUID1[%s]", uuid_str1);
408                 if (!memcmp(net_uuid, req->net_uuid, 16) &&
409                                 req->addr == addr &&
410                                 req->cmd->response == response)
411                         return req;
412         }
413
414         return NULL;
415 }
416
417 bool _bt_mesh_check_pending_request(uint32_t opcode,
418                 uint16_t dest, uint8_t net_uuid[])
419 {
420         const struct mesh_config_cmd *cmd;
421         cmd = __mesh_get_command(opcode);
422
423         if (!cmd)
424                 return false;
425
426         if (__bt_mesh_get_request_by_response(dest,
427                                 net_uuid, cmd->response)) {
428                 BT_ERR("Mesh:Another command is pending\n");
429                 return true;
430         }
431         return false;
432 }
433
434 static uint32_t __bt_mesh_print_model_identifier(uint8_t *data,
435                 bool vendor, const char *offset)
436 {
437         uint32_t mod_id;
438
439         if (!vendor) {
440                 mod_id = l_get_le16(data);
441                 BT_INFO("%sModel ID\t%4.4x\n", offset, mod_id);
442                 mod_id = MESH_VENDOR_ID_MASK | mod_id;
443         } else {
444                 mod_id = l_get_le16(data + 2);
445                 BT_INFO("%sModel ID\t%4.4x %4.4x\n", offset,
446                                 l_get_le16(data), mod_id);
447                 mod_id = l_get_le16(data) << 16 | mod_id;
448         }
449
450         return mod_id;
451 }
452
453 static void __bt_mesh_print_device_composition_data(
454                 uint8_t *data, uint16_t len)
455 {
456         uint16_t features;
457         int i = 0;
458
459         BT_INFO("Mesh: Received composion:\n");
460
461         /* skip page -- We only support Page Zero */
462         data++;
463         len--;
464
465         BT_INFO("\tCID: %4.4x", l_get_le16(&data[0]));
466         BT_INFO("\tPID: %4.4x", l_get_le16(&data[2]));
467         BT_INFO("\tVID: %4.4x", l_get_le16(&data[4]));
468         BT_INFO("\tCRPL: %4.4x", l_get_le16(&data[6]));
469
470         features = l_get_le16(&data[8]);
471         data += 10;
472         len -= 10;
473
474         BT_INFO("\tFeature support:\n");
475         BT_INFO("\t\trelay: %s\n", (features & MESH_FEATURE_RELAY) ?
476                         "yes" : "no");
477         BT_INFO("\t\tproxy: %s\n", (features & MESH_FEATURE_PROXY) ?
478                         "yes" : "no");
479         BT_INFO("\t\tfriend: %s\n", (features & MESH_FEATURE_FRIEND) ?
480                         "yes" : "no");
481         BT_INFO("\t\tlpn: %s\n", (features & MESH_FEATURE_LPN) ?
482                         "yes" : "no");
483         while (len) {
484                 uint8_t m, v;
485
486                 BT_INFO("\t Element %d:\n", i);
487                 BT_INFO("\t\tlocation: %4.4x\n", l_get_le16(data));
488                 data += 2;
489                 len -= 2;
490
491                 m = *data++;
492                 v = *data++;
493                 len -= 2;
494
495                 if (m)
496                         BT_INFO("\t\tSIG defined models:\n");
497
498                 while (len >= 2 && m--) {
499                         __bt_mesh_print_model_identifier(data, false, "\t\t  ");
500                         data += 2;
501                         len -= 2;
502                 }
503
504                 if (v)
505                         BT_INFO("\t\t Vendor defined models:\n");
506
507                 while (len >= 4 && v--) {
508                         __bt_mesh_print_model_identifier(data, true, "\t\t  ");
509                         data += 4;
510                         len -= 4;
511                 }
512
513                 i++;
514         }
515 }
516
517 static void __bt_mesh_send_model_publication_status_event(
518                 int event, int result,
519                         bluetooth_mesh_model_configure_t *evt)
520 {
521         GVariant *out_var = NULL, *param = NULL;
522         GArray *info = NULL;
523
524         if (BLUETOOTH_ERROR_NONE == result) {
525                 BT_INFO("Mesh: Model ID [0x%4.4x]", evt->model);
526                 BT_INFO("Mesh: Model Publication Address [0x%2.2x]", evt->pub_addr);
527                 /* Send event */
528                 info = g_array_new(FALSE, FALSE, sizeof(gchar));
529                 g_array_append_vals(info, evt,
530                                 sizeof(bluetooth_mesh_model_configure_t));
531
532                 out_var = g_variant_new_from_data((const GVariantType *)"ay",
533                                 info->data, info->len,
534                                 TRUE, NULL, NULL);
535
536                 param = g_variant_new("(iv)", result, out_var);
537                 _bt_send_event(BT_MESH_EVENT, event,
538                                 param);
539         }
540 }
541
542 static void __bt_mesh_send_model_subscription_configure_event(
543                 int event, int result,
544                         bluetooth_mesh_model_configure_t *evt)
545 {
546         GVariant *out_var = NULL, *param = NULL;
547         GArray *info = NULL;
548
549         if (BLUETOOTH_ERROR_NONE == result) {
550                 /* Send event */
551                 info = g_array_new(FALSE, FALSE, sizeof(gchar));
552                 g_array_append_vals(info, evt,
553                                 sizeof(bluetooth_mesh_model_configure_t));
554
555                 out_var = g_variant_new_from_data((const GVariantType *)"ay",
556                                 info->data, info->len,
557                                 TRUE, NULL, NULL);
558
559                 param = g_variant_new("(iv)", result, out_var);
560                 _bt_send_event(BT_MESH_EVENT, event,
561                                 param);
562         }
563 }
564
565 static void __bt_mesh_send_model_get_subscription_list_event(
566         int result, bluetooth_mesh_model_configure_t *evt)
567 {
568         GVariant  *param = NULL;
569         GVariantBuilder *builder = NULL;
570         int i;
571         char *net_uuid;
572
573         if (BLUETOOTH_ERROR_NONE == result) {
574                 BT_INFO("Mesh: Total Subscriptions bound to model [%d]",
575                                 evt->sublist_count);
576                 BT_INFO("Mesh: Network [%s]", evt->net_uuid);
577                 builder = g_variant_builder_new(G_VARIANT_TYPE("aq"));
578                 for (i = 0; i < evt->sublist_count; i++) {
579                         BT_INFO("Mesh: Subscription Address [0x%2.2x]",
580                                 *evt->sub_list[i]);
581                         g_variant_builder_add(builder, "q", *evt->sub_list[i]);
582                 }
583
584                 net_uuid = g_strdup(evt->net_uuid);
585                 param = g_variant_new("(isqiui(aq))", result, net_uuid,
586                                 evt->primary_unicast, evt->elem_index, evt->model,
587                                 evt->sublist_count, builder);
588
589                 g_variant_builder_unref(builder);
590
591                 /* Send event */
592                 _bt_send_event(BT_MESH_EVENT,
593                                 BLUETOOTH_EVENT_MESH_MODEL_SUBSCRIPTION_LIST,
594                                 param);
595
596                 if (evt->sublist_count) {
597                         /* Free List data */
598                         for (int i = 0; i < evt->sublist_count; i++)
599                                 g_free(evt->sub_list[i]);
600                         g_free(evt->sub_list);
601                 }
602                 g_free(net_uuid);
603                 BT_INFO("freed net uuid");
604         }
605 }
606
607 static void __bt_mesh_send_model_get_appkey_list_event(int result,
608                 bluetooth_mesh_model_configure_t *evt)
609 {
610         GVariant  *param = NULL;
611         GVariantBuilder *builder = NULL;
612         char *net_uuid;
613         int i;
614
615         if (BLUETOOTH_ERROR_NONE == result) {
616                 builder = g_variant_builder_new(G_VARIANT_TYPE("aq"));
617                 BT_INFO("Mesh: Total AppKeys bound to model [%d]",
618                                 evt->appkeylist_count);
619                 BT_INFO("Mesh: Network [%s]", evt->net_uuid);
620                 for (i = 0; i < evt->appkeylist_count; i++)
621                         g_variant_builder_add(builder, "q", *evt->appkey_list[i]);
622                 net_uuid = g_strdup(evt->net_uuid);
623                 param = g_variant_new("(isqiui(aq))", result, net_uuid,
624                                 evt->primary_unicast, evt->elem_index, evt->model,
625                                 evt->appkeylist_count, builder);
626
627                 g_variant_builder_unref(builder);
628
629                 /* Send event */
630                 _bt_send_event(BT_MESH_EVENT,
631                                 BLUETOOTH_EVENT_MESH_MODEL_APPKEY_LIST,
632                                 param);
633
634                 if (evt->appkeylist_count) {
635                         for (int i = 0; i < evt->appkeylist_count; i++)
636                                 g_free(evt->appkey_list[i]);
637
638                         g_free(evt->appkey_list);
639                 }
640                 /* Free List data */
641                 g_free(net_uuid);
642         }
643 }
644
645 static void __bt_mesh_send_model_configure_appkey_event(int result,
646                 bluetooth_mesh_model_configure_t *evt)
647 {
648         GVariant *out_var = NULL, *param = NULL;
649         GArray *info = NULL;
650
651         if (BLUETOOTH_ERROR_NONE == result) {
652                 /* Send event */
653                 info = g_array_new(FALSE, FALSE, sizeof(gchar));
654                 g_array_append_vals(info, evt, sizeof(bluetooth_mesh_model_configure_t));
655
656                 out_var = g_variant_new_from_data((const GVariantType *)"ay",
657                                 info->data, info->len,
658                                 TRUE, NULL, NULL);
659
660                 param = g_variant_new("(iv)", result, out_var);
661                 _bt_send_event(BT_MESH_EVENT,
662                                 BLUETOOTH_EVENT_MESH_MODEL_APPKEY_BIND,
663                                 param);
664         }
665 }
666
667 static void __bt_mesh_send_node_ttl_configuration_event(int result,
668                 bluetooth_mesh_node_ttl_info_t *ttl_evt)
669 {
670         GVariant *out_var = NULL, *param = NULL;
671         GArray *info = NULL;
672
673         if (BLUETOOTH_ERROR_NONE == result) {
674                 /* Send event */
675                 info = g_array_new(FALSE, FALSE, sizeof(gchar));
676                 g_array_append_vals(info, ttl_evt,
677                         sizeof(bluetooth_mesh_node_ttl_info_t));
678
679                 out_var = g_variant_new_from_data((const GVariantType *)"ay",
680                                 info->data, info->len,
681                                 TRUE, NULL, NULL);
682
683                 param = g_variant_new("(iv)", result, out_var);
684                 _bt_send_event(BT_MESH_EVENT,
685                                 BLUETOOTH_EVENT_MESH_NODE_TTL_CONFIGURED,
686                                 param);
687         }
688 }
689
690 static void __bt_mesh_send_node_key_configuration_event(int result,
691                 bluetooth_mesh_key_configure_t *key_evt)
692 {
693         GVariant *out_var = NULL, *param = NULL;
694         GArray *info = NULL;
695
696         if (BLUETOOTH_ERROR_NONE == result) {
697                 /* Send event */
698                 info = g_array_new(FALSE, FALSE, sizeof(gchar));
699                 g_array_append_vals(info, key_evt,
700                         sizeof(bluetooth_mesh_key_configure_t));
701
702                 out_var = g_variant_new_from_data((const GVariantType *)"ay",
703                                 info->data, info->len,
704                                 TRUE, NULL, NULL);
705
706                 param = g_variant_new("(iv)", result, out_var);
707                 _bt_send_event(BT_MESH_EVENT,
708                                 BLUETOOTH_EVENT_MESH_NODE_KEY_CONFIGURED,
709                                 param);
710         }
711 }
712
713 static void __bt_mesh_send_node_get_vendor_features_event(int result,
714                 bluetooth_mesh_node_features_t *features_evt)
715 {
716         GVariant *out_var = NULL, *param = NULL;
717         GArray *info = NULL;
718
719         if (BLUETOOTH_ERROR_NONE == result) {
720                 /* Send event */
721                 info = g_array_new(FALSE, FALSE, sizeof(gchar));
722                 g_array_append_vals(info, features_evt,
723                                 sizeof(bluetooth_mesh_node_features_t));
724
725                 out_var = g_variant_new_from_data((const GVariantType *)"ay",
726                                 info->data, info->len,
727                                 TRUE, NULL, NULL);
728
729                 param = g_variant_new("(iv)", result, out_var);
730                 _bt_send_event(BT_MESH_EVENT,
731                                 BLUETOOTH_EVENT_MESH_NODE_VENDOR_FEATURES,
732                                 param);
733         }
734 }
735
736 static void __bt_mesh_send_node_browsed_event(int result,
737                 bluetooth_mesh_node_discover_t *browse_evt)
738 {
739         GVariant *out_var = NULL, *param = NULL;
740         GArray *info = NULL;
741
742         if (BLUETOOTH_ERROR_NONE == result) {
743                 /* Send event */
744                 info = g_array_new(FALSE, FALSE, sizeof(gchar));
745                 g_array_append_vals(info, browse_evt,
746                                 sizeof(bluetooth_mesh_node_discover_t));
747
748                 out_var = g_variant_new_from_data((const GVariantType *)"ay",
749                                 info->data, info->len,
750                                 TRUE, NULL, NULL);
751
752                 param = g_variant_new("(iv)", result, out_var);
753                 _bt_send_event(BT_MESH_EVENT,
754                                 BLUETOOTH_EVENT_MESH_NODE_BROWSED,
755                                 param);
756         }
757 }
758
759 static void __bt_mesh_handle_pending_dev_config_request_info(int result,
760                 int service_function, void *param, unsigned int size)
761 {
762         GSList *l;
763         GArray *out_param;
764         invocation_info_t *req_info = NULL;
765
766         for (l = _bt_get_invocation_list(); l != NULL; ) {
767                 req_info = l->data;
768                 l = g_slist_next(l);
769                 if (req_info == NULL ||
770                                 req_info->service_function != service_function)
771                         continue;
772
773                 switch (service_function) {
774                 case BT_MESH_NODE_GET_VENDOR_FEATURES: {
775                         bluetooth_mesh_node_features_t *event;
776                         bluetooth_mesh_node_features_t *req;
777
778                         event = (bluetooth_mesh_node_features_t*) param;
779                         req = (bluetooth_mesh_node_features_t*)req_info->user_data;
780
781                         BT_DBG("Request Sender: [%s]", req_info->sender);
782                         /* Match Network and Remote Node unicast*/
783                         if (!g_strcmp0(event->net_uuid, req->net_uuid) && event->unicast == req->unicast) {
784                                 event->unicast = req->unicast;
785                                 event->elem_count = req->elem_count;
786
787                                 /* Send Event */
788                                 __bt_mesh_send_node_get_vendor_features_event(result, event);
789
790                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
791                                 g_array_append_vals(out_param, event, sizeof(bluetooth_mesh_node_features_t));
792
793                                 /* Return DBUS Invocation*/
794                                 _bt_service_method_return(req_info->context, out_param, result);
795                                 _bt_free_info_from_invocation_list(req_info);
796                                 g_array_free(out_param, TRUE);
797                         }
798                         break;
799                 }
800                 case BT_MESH_NODE_BROWSE: {
801                         bluetooth_mesh_node_discover_t *node;
802                         event_mesh_devkey_message_t *event;
803                         uint16_t remote_addr;
804                         uint8_t elem_count;
805                         uint8_t dev_uuid[16];
806                         char net_uuid[BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1];
807
808                         event = (event_mesh_devkey_message_t*) param;
809                         node = (bluetooth_mesh_node_discover_t*)req_info->user_data;
810                         BT_INFO("Mesh: Request Node UUID [%s]", node->dev_uuid);
811                         BT_INFO("Mesh: Request Network UUID [%s]", node->net_uuid);
812
813                         _bt_mesh_util_convert_hex_to_string((uint8_t *) event->net_uuid.uuid, 16, net_uuid,
814                                         BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
815
816                         _bt_mesh_util_convert_string_to_hex(node->dev_uuid, strlen(node->dev_uuid), dev_uuid, 16);
817
818                         /* Get Unicast from pending request's Dev UUID and match with event */
819                         if (_bt_mesh_node_get_unicast_from_dev_uuid(event->net_uuid.uuid, dev_uuid, &remote_addr)) {
820
821                                 BT_DBG("Request Sender: [%s]", req_info->sender);
822                                 /* Match Network and Remote Node unicast*/
823                                 if (!g_strcmp0(node->net_uuid, net_uuid) && remote_addr == event->source) {
824                                         _bt_mesh_node_get_element_count(event->net_uuid.uuid, remote_addr, &elem_count);
825                                         node->unicast = event->source;
826                                         node->count = elem_count;
827                                         BT_INFO("Mesh: Browse event for Node: Unicast [0x%2.2x] Element Count [%d]",
828                                                 node->unicast, elem_count);
829                                         /* Send Event */
830                                         __bt_mesh_send_node_browsed_event(result, node);
831
832                                         out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
833                                         g_array_append_vals(out_param, node, sizeof(bluetooth_mesh_node_discover_t));
834
835                                         /* Return DBUS Invocation*/
836                                         _bt_service_method_return(req_info->context, out_param, result);
837                                         _bt_free_info_from_invocation_list(req_info);
838                                         g_array_free(out_param, TRUE);
839
840                                 }
841                         }
842                         break;
843                 }
844                 case BT_MESH_NODE_CONFIGURE_KEY: {
845                         bluetooth_mesh_key_configure_t *event;
846                         bluetooth_mesh_key_configure_t *req;
847
848                         event = (bluetooth_mesh_key_configure_t*) param;
849                         req = (bluetooth_mesh_key_configure_t*)req_info->user_data;
850
851                         if (!g_strcmp0(req->net_uuid, event->net_uuid) &&
852                                 req->primary_unicast == event->primary_unicast &&
853                                 req->is_netkey == event->is_netkey) {
854                                 /* Send Event */
855                                 __bt_mesh_send_node_key_configuration_event(result, event);
856
857                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
858                                 g_array_append_vals(out_param, event, sizeof(bluetooth_mesh_key_configure_t));
859
860                                 /* Return DBUS Invocation*/
861                                 _bt_service_method_return(req_info->context, out_param, result);
862                                 _bt_free_info_from_invocation_list(req_info);
863                                 g_array_free(out_param, TRUE);
864                         }
865                         break;
866                 }
867                 case BT_MESH_NODE_TTL_EXECUTE: {
868                         bluetooth_mesh_node_ttl_info_t *event;
869                         bluetooth_mesh_node_ttl_info_t *req;
870
871                         event = (bluetooth_mesh_node_ttl_info_t*) param;
872                         req = (bluetooth_mesh_node_ttl_info_t*)req_info->user_data;
873                         req->ttl = event->ttl;
874
875                         if (!g_strcmp0(req->net_uuid, event->net_uuid) &&
876                                 req->unicast == event->unicast) {
877                                 /* Send Event */
878                                 __bt_mesh_send_node_ttl_configuration_event(result, req);
879
880                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
881                                 g_array_append_vals(out_param, req, sizeof(bluetooth_mesh_node_ttl_info_t));
882
883                                 /* Return DBUS Invocation*/
884                                 _bt_service_method_return(req_info->context, out_param, result);
885                                 _bt_free_info_from_invocation_list(req_info);
886                                 g_array_free(out_param, TRUE);
887                         }
888                         break;
889                 }
890                 case BT_MESH_MODEL_CONFIGURE_APPKEY: {
891                         bluetooth_mesh_model_configure_t *event;
892                         bluetooth_mesh_model_configure_t *req;
893
894                         event = (bluetooth_mesh_model_configure_t*) param;
895                         req = (bluetooth_mesh_model_configure_t*)req_info->user_data;
896
897                         if (!g_strcmp0(req->net_uuid, event->net_uuid) &&
898                                 req->primary_unicast == event->primary_unicast) {
899                                 /* Send Event */
900                                 __bt_mesh_send_model_configure_appkey_event(result, req);
901
902                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
903                                 g_array_append_vals(out_param, req, sizeof(bluetooth_mesh_model_configure_t));
904
905                                 /* Return DBUS Invocation*/
906                                 _bt_service_method_return(req_info->context, out_param, result);
907                                 _bt_free_info_from_invocation_list(req_info);
908                                 g_array_free(out_param, TRUE);
909                         }
910
911                         break;
912                 }
913                 case BT_MESH_MODEL_GET_APPKEY_LIST: {
914                         bluetooth_mesh_model_configure_t *event;
915                         bluetooth_mesh_model_configure_t *req;
916
917                         event = (bluetooth_mesh_model_configure_t*) param;
918                         req = (bluetooth_mesh_model_configure_t*)req_info->user_data;
919
920                         if (!g_strcmp0(req->net_uuid, event->net_uuid) &&
921                                 req->primary_unicast == event->primary_unicast) {
922                                 /* Send Event */
923                                 __bt_mesh_send_model_get_appkey_list_event(result, event);
924
925                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
926                                 g_array_append_vals(out_param, req, sizeof(bluetooth_mesh_model_configure_t));
927
928                                 /* Return DBUS Invocation*/
929                                 _bt_service_method_return(req_info->context, out_param, result);
930                                 _bt_free_info_from_invocation_list(req_info);
931                                 g_array_free(out_param, TRUE);
932                         }
933                         break;
934                 }
935                 case BT_MESH_MODEL_GET_SUBSCRIPTION_LIST: {
936                         bluetooth_mesh_model_configure_t *event;
937                         bluetooth_mesh_model_configure_t *req;
938
939                         BT_INFO("Mesh: Handle event for BT_MESH_MODEL_GET_SUBSCRIPTION_LIST");
940                         event = (bluetooth_mesh_model_configure_t*) param;
941                         req = (bluetooth_mesh_model_configure_t*)req_info->user_data;
942
943                         if (!g_strcmp0(req->net_uuid, event->net_uuid) &&
944                                 req->primary_unicast == event->primary_unicast) {
945                                 /* Send Event */
946                                 __bt_mesh_send_model_get_subscription_list_event(result, event);
947
948                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
949                                 g_array_append_vals(out_param, req, sizeof(bluetooth_mesh_model_configure_t));
950
951                                 /* Return DBUS Invocation*/
952                                 _bt_service_method_return(req_info->context, out_param, result);
953                                 _bt_free_info_from_invocation_list(req_info);
954                                 g_array_free(out_param, TRUE);
955                         }
956                         break;
957                 }
958                 case BT_MESH_MODEL_CONFIG_GROUP_SUB: {
959                         bluetooth_mesh_model_configure_t *event;
960                         bluetooth_mesh_model_configure_t *req;
961
962                         event = (bluetooth_mesh_model_configure_t*) param;
963                         req = (bluetooth_mesh_model_configure_t*)req_info->user_data;
964                         BT_INFO("Mesh: Event Network [%s] Req Network [%s]",
965                                 event->net_uuid, req->net_uuid);
966
967                         BT_INFO("Mesh: Event Unicast [0x%4.4x] Req Unicast [0x%4.4x]",
968                                 event->primary_unicast, req->primary_unicast);
969
970                         if (!g_strcmp0(req->net_uuid, event->net_uuid) &&
971                                 req->primary_unicast == event->primary_unicast) {
972
973                                 req->sub_addr = event->sub_addr;
974                                 BT_INFO("Mesh: Send event for Model Subscription");
975                                 /* Send Event */
976                                 __bt_mesh_send_model_subscription_configure_event(
977                                         BLUETOOTH_EVENT_MESH_MODEL_SUBSCRIPTION_CONFGURED,
978                                                 result, req);
979
980                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
981                                 g_array_append_vals(out_param, req, sizeof(bluetooth_mesh_model_configure_t));
982
983                                 /* Return DBUS Invocation*/
984                                 _bt_service_method_return(req_info->context, out_param, result);
985                                 _bt_free_info_from_invocation_list(req_info);
986                                 g_array_free(out_param, TRUE);
987                         }
988                         break;
989                 }
990                 case BT_MESH_MODEL_CONFIG_VIRTUAL_GROUP_SUB: {
991                         bluetooth_mesh_model_configure_t *event;
992                         bluetooth_mesh_model_configure_t *req;
993
994                         event = (bluetooth_mesh_model_configure_t*) param;
995                         req = (bluetooth_mesh_model_configure_t*)req_info->user_data;
996                         BT_INFO("Mesh: Event Network [%s] Req Network [%s]",
997                                 event->net_uuid, req->net_uuid);
998
999                         BT_INFO("Mesh: Event Unicast [0x%4.4x] Req Unicast [0x%4.4x]",
1000                                 event->primary_unicast, req->primary_unicast);
1001                         if (!g_strcmp0(req->net_uuid, event->net_uuid) &&
1002                                 req->primary_unicast == event->primary_unicast) {
1003                                 /* Send Event */
1004                                 __bt_mesh_send_model_subscription_configure_event( \
1005                                         BLUETOOTH_EVENT_MESH_MODEL_VIRTUAL_SUBSCRIPTION_CONFGURED, \
1006                                                 result, req);
1007
1008                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
1009                                 g_array_append_vals(out_param, req, sizeof(bluetooth_mesh_model_configure_t));
1010
1011                                 /* Return DBUS Invocation*/
1012                                 _bt_service_method_return(req_info->context, out_param, result);
1013                                 _bt_free_info_from_invocation_list(req_info);
1014                                 g_array_free(out_param, TRUE);
1015
1016                         }
1017                         break;
1018                 }
1019                 case BT_MESH_MODEL_GET_PUBLICATION: {
1020                         BT_INFO("Mesh: Event for Model Get Publication Request");
1021                         bluetooth_mesh_model_configure_t *event;
1022                         bluetooth_mesh_model_configure_t *req;
1023
1024                         event = (bluetooth_mesh_model_configure_t*) param;
1025                         req = (bluetooth_mesh_model_configure_t*)req_info->user_data;
1026
1027                         if (!g_strcmp0(req->net_uuid, event->net_uuid) &&
1028                                         req->primary_unicast == event->primary_unicast) {
1029                                 /* Send Event */
1030                                 BT_INFO("Mesh: Send Model Publication status for Get Request");
1031                                 __bt_mesh_send_model_publication_status_event( \
1032                                                 BLUETOOTH_EVENT_MESH_MODEL_PUBLICATION_STATUS, \
1033                                                 result, event);
1034
1035                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
1036                                 g_array_append_vals(out_param, req, sizeof(bluetooth_mesh_model_configure_t));
1037
1038                                 /* Return DBUS Invocation*/
1039                                 _bt_service_method_return(req_info->context, out_param, result);
1040                                 _bt_free_info_from_invocation_list(req_info);
1041                                 g_array_free(out_param, TRUE);
1042                         }
1043                         break;
1044                 }
1045                 case BT_MESH_MODEL_SET_PUBLICATION: {
1046                         BT_INFO("Mesh: Event for Model Set Publication Request");
1047                         bluetooth_mesh_model_configure_t *event;
1048                         bluetooth_mesh_model_configure_t *req;
1049
1050                         event = (bluetooth_mesh_model_configure_t*) param;
1051                         req = (bluetooth_mesh_model_configure_t*)req_info->user_data;
1052
1053                         if (!g_strcmp0(req->net_uuid, event->net_uuid) &&
1054                                 req->primary_unicast == event->primary_unicast) {
1055                                 /* Send Event */
1056                                 BT_INFO("Mesh: Send Model Publication status for Set Request");
1057                                 __bt_mesh_send_model_publication_status_event( \
1058                                         BLUETOOTH_EVENT_MESH_MODEL_PUBLICATION_STATUS, \
1059                                                 result, req);
1060
1061                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
1062                                 g_array_append_vals(out_param, req, sizeof(bluetooth_mesh_model_configure_t));
1063
1064                                 /* Return DBUS Invocation*/
1065                                 _bt_service_method_return(req_info->context, out_param, result);
1066                                 _bt_free_info_from_invocation_list(req_info);
1067                                 g_array_free(out_param, TRUE);
1068                         }
1069                         break;
1070                 }
1071                 default:
1072                         BT_DBG("Unknown function(%d)", service_function);
1073                         break;
1074                 }
1075         }
1076 }
1077
1078 const char *__mesh_status_to_string(uint8_t err)
1079 {
1080         switch (err) {
1081         case MESH_STATUS_SUCCESS: return "Success";
1082         case MESH_STATUS_INVALID_ADDRESS: return "Invalid Address";
1083         case MESH_STATUS_INVALID_MODEL: return "Invalid Model";
1084         case MESH_STATUS_INVALID_APPKEY: return "Invalid AppKey";
1085         case MESH_STATUS_INVALID_NETKEY: return "Invalid NetKey";
1086         case MESH_STATUS_INSUFF_RESOURCES: return "Insufficient Resources";
1087         case MESH_STATUS_IDX_ALREADY_STORED: return "Key Idx Already Stored";
1088         case MESH_STATUS_INVALID_PUB_PARAM: return "Invalid Publish Parameters";
1089         case MESH_STATUS_NOT_SUB_MOD: return "Not a Subscribe Model";
1090         case MESH_STATUS_STORAGE_FAIL: return "Storage Failure";
1091         case MESH_STATUS_FEATURE_NO_SUPPORT: return "Feature Not Supported";
1092         case MESH_STATUS_CANNOT_UPDATE: return "Cannot Update";
1093         case MESH_STATUS_CANNOT_REMOVE: return "Cannot Remove";
1094         case MESH_STATUS_CANNOT_BIND: return "Cannot bind";
1095         case MESH_STATUS_UNABLE_CHANGE_STATE: return "Unable to change state";
1096         case MESH_STATUS_CANNOT_SET: return "Cannot set";
1097         case MESH_STATUS_UNSPECIFIED_ERROR: return "Unspecified error";
1098         case MESH_STATUS_INVALID_BINDING: return "Invalid Binding";
1099
1100         default: return "Unknown";
1101         }
1102 }
1103
1104 static void __mesh_handle_model_subscription_event(int result,
1105                 bluetooth_mesh_model_configure_t *param,
1106                         const struct mesh_config_cmd *cmd)
1107 {
1108         BT_INFO("Mesh: Model Subscription Event: Request [%d]", cmd->opcode);
1109         switch (cmd->opcode) {
1110         /* Fall through */
1111         case MESH_OPCODE_CONFIG_MODEL_SUB_ADD:
1112         case MESH_OPCODE_CONFIG_MODEL_SUB_DELETE:
1113         case MESH_OPCODE_CONFIG_MODEL_SUB_OVERWRITE:
1114                 /* Model Bind/UnBind Event */
1115         BT_INFO("Mesh: Handle Event for Request: BT_MESH_MODEL_CONFIG_GROUP_SUB");
1116         __bt_mesh_handle_pending_dev_config_request_info(result,
1117                         BT_MESH_MODEL_CONFIG_GROUP_SUB, param,
1118                                 sizeof(bluetooth_mesh_model_configure_t));
1119                 break;
1120         case MESH_OPCODE_CONFIG_MODEL_SUB_VIRT_ADD:
1121         case MESH_OPCODE_CONFIG_MODEL_SUB_VIRT_DELETE:
1122         case MESH_OPCODE_CONFIG_MODEL_SUB_VIRT_OVERWRITE:
1123         BT_INFO("Mesh: Handle Event for Request: BT_MESH_MODEL_CONFIG_VIRTUAL_GROUP_SUB");
1124         __bt_mesh_handle_pending_dev_config_request_info(result,
1125                         BT_MESH_MODEL_CONFIG_VIRTUAL_GROUP_SUB, param,
1126                                 sizeof(bluetooth_mesh_model_configure_t));
1127                 break;
1128         case MESH_OPCODE_CONFIG_MODEL_SUB_DELETE_ALL:
1129         BT_INFO("Mesh: Handle Event for Request: MESH_OPCODE_CONFIG_MODEL_SUB_DELETE_ALL");
1130         __bt_mesh_handle_pending_dev_config_request_info(result,
1131                         BT_MESH_MODEL_CONFIG_GROUP_SUB, param,
1132                                 sizeof(bluetooth_mesh_model_configure_t));
1133         __bt_mesh_handle_pending_dev_config_request_info(result,
1134                         BT_MESH_MODEL_CONFIG_VIRTUAL_GROUP_SUB, param,
1135                                 sizeof(bluetooth_mesh_model_configure_t));
1136                 break;
1137         default:
1138                 break;
1139         }
1140 }
1141
1142 void _bt_mesh_config_client_devkey_msg_handler(
1143                 event_mesh_devkey_message_t *event)
1144 {
1145         uint32_t opcode;
1146         const struct mesh_config_cmd *cmd;
1147         uint16_t data_len = event->data_len;
1148         uint8_t *data = event->data;
1149         int result = BLUETOOTH_ERROR_NONE;
1150         uint16_t app_idx;
1151         uint16_t addr;
1152         uint16_t net_idx;
1153         uint16_t elem_addr;
1154         uint16_t ele_addr;
1155         uint32_t mod_id;
1156         int n;
1157         struct mesh_pending_request *req;
1158
1159         if (_bt_mesh_util_opcode_get(data, data_len, &opcode, &n)) {
1160                 BT_INFO("Mesh: Opcode of response data [0x%2.2x], actual data len [%d]", opcode, n);
1161                 data_len -= n;
1162                 data += n;
1163         } else
1164                 return;
1165
1166         BT_INFO("Mesh: Received %s (len %u) opcode [0x%2.2x]",
1167                 __mesh_get_opcode_string(opcode), data_len, opcode);
1168
1169         req = __bt_mesh_get_request_by_response(event->source,
1170                 event->net_uuid.uuid, (opcode & ~MESH_OPCODE_UNRELIABLE));
1171         if (req) {
1172                 BT_INFO("Mesh: Got Config Request");
1173                 cmd = req->cmd;
1174                 __mesh_request_remove(req);
1175                 l_queue_remove(pending_requests, req);
1176         } else
1177                 cmd = NULL;
1178
1179
1180         switch (opcode & ~MESH_OPCODE_UNRELIABLE) {
1181         default:
1182                 return;
1183         case MESH_OPCODE_CONFIG_MODEL_PUB_STATUS: {
1184                 if (data_len != 12 && data_len != 14)
1185                         break;
1186                 bluetooth_mesh_model_configure_t param;
1187                 memset(&param, 0x00, sizeof(bluetooth_mesh_model_configure_t));
1188
1189                 _bt_mesh_util_convert_hex_to_string((uint8_t *) event->net_uuid.uuid, 16, param.net_uuid,
1190                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
1191
1192                 BT_INFO("\nNode %4.4x Model Publication status %s\n",
1193                                 event->source, __mesh_status_to_string(data[0]));
1194
1195                 if (data[0] != MESH_STATUS_SUCCESS)
1196                         result = BLUETOOTH_ERROR_INTERNAL;
1197
1198                 /* Extract Element Address */
1199                 ele_addr = l_get_le16(data + 1);
1200
1201                 /* Extract Model ID */
1202                 if (data_len == 14) {
1203                         /* vendor Model */
1204                         mod_id = l_get_le16(data + 10 + 2);
1205                         mod_id = l_get_le16(data) << 16 | mod_id;
1206                 } else {
1207                         /* BT SIG Model */
1208                         mod_id = l_get_le16(data + 10);
1209                         mod_id = MESH_VENDOR_ID_MASK | mod_id;
1210                 }
1211
1212                 param.model = mod_id;
1213                 BT_INFO("Model ID\t%4.4x\n", mod_id);
1214
1215                 param.primary_unicast = event->source;
1216                 param.elem_index = ele_addr - event->source;
1217                 /* Extract Publish Address */
1218                 param.pub_addr = l_get_le16(data + 3);
1219                 BT_INFO("Mesh: Pub Address [0x%2.2x]", param.pub_addr);
1220
1221                 /* Extract Appkey Index */
1222                 param.appkey_idx =  l_get_le16(data + 5);
1223                 BT_INFO("Mesh: AppKey Idx [0x%2.2x]", param.appkey_idx);
1224
1225                 /* Extract TTL */
1226                 param.ttl = data[6];
1227                 BT_INFO("Mesh: TTL [0x%x]", param.ttl);
1228
1229                 /* Extract Period */
1230                 param.period = data[7];
1231                 if (!cmd)
1232                         break;
1233
1234                 if (cmd->opcode == MESH_OPCODE_CONFIG_MODEL_PUB_GET)
1235                         __bt_mesh_handle_pending_dev_config_request_info(result,
1236                                 BT_MESH_MODEL_GET_PUBLICATION, &param,
1237                                 sizeof(bluetooth_mesh_model_configure_t));
1238                 else
1239                         __bt_mesh_handle_pending_dev_config_request_info(result,
1240                                 BT_MESH_MODEL_SET_PUBLICATION, &param,
1241                                 sizeof(bluetooth_mesh_model_configure_t));
1242                 break;
1243         }
1244         case MESH_OPCODE_CONFIG_MODEL_SUB_STATUS: {
1245                 if (data_len != 7 && data_len != 9)
1246                         break;
1247                 bluetooth_mesh_model_configure_t param;
1248                 memset(&param, 0x00, sizeof(bluetooth_mesh_model_configure_t));
1249
1250                 _bt_mesh_util_convert_hex_to_string(
1251                         (uint8_t *) event->net_uuid.uuid, 16, param.net_uuid,
1252                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
1253
1254                 BT_INFO("\nNode %4.4x Subscription status %s\n",
1255                                 event->source, __mesh_status_to_string(data[0]));
1256
1257                 if (data[0] != MESH_STATUS_SUCCESS)
1258                         result = BLUETOOTH_ERROR_INTERNAL;
1259
1260                 if (!cmd) {
1261                         BT_INFO("Mesh: Command not found!!");
1262                         break;
1263                 }
1264
1265                 ele_addr = l_get_le16(data + 1);
1266                 addr = l_get_le16(data + 3);
1267                 BT_INFO("Element Addr\t%4.4x\n", ele_addr);
1268                 BT_INFO("Message Source Addr\t%4.4x\n", event->source);
1269
1270                 if (data_len == 9) {
1271                         /* vendor Model */
1272                         mod_id = l_get_le16(data + 5 + 2);
1273                         mod_id = l_get_le16(data) << 16 | mod_id;
1274                 } else {
1275                         /* BT SIG Model */
1276                         mod_id = l_get_le16(data + 5);
1277                         mod_id = MESH_VENDOR_ID_MASK | mod_id;
1278                 }
1279
1280                 param.primary_unicast = event->source;
1281                 param.elem_index = ele_addr - event->source;
1282                 /* Subscription address, unassigned address in case of Delete All command */
1283                 param.sub_addr = addr;
1284                 param.model = mod_id;
1285                 BT_INFO("Subscr Addr\t%4.4x\n", addr);
1286                 BT_INFO("Model ID\t%4.4x\n", mod_id);
1287
1288                 if (cmd)
1289                         __mesh_handle_model_subscription_event(result, &param, cmd);
1290
1291                 break;
1292         }
1293         case MESH_OPCODE_CONFIG_DEFAULT_TTL_STATUS: {
1294                 if (data_len != 1)
1295                         break;
1296                 bluetooth_mesh_node_ttl_info_t param;
1297                 memset(&param, 0x00, sizeof(bluetooth_mesh_node_ttl_info_t));
1298
1299                 BT_INFO("Node %4.4x Default TTL %d", event->source, data[0]);
1300                  _bt_mesh_util_convert_hex_to_string(
1301                         (uint8_t *) event->net_uuid.uuid, 16, param.net_uuid,
1302                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
1303                 param.unicast = event->source;
1304                 param.ttl = data[0];
1305
1306                 if (!_bt_mesh_network_save_remote_node_ttl(event->net_uuid.uuid,
1307                                 event->source,  data[0])) {
1308                         result = BLUETOOTH_ERROR_INTERNAL;
1309                         BT_INFO("Failed to save node TTL");
1310                 }
1311
1312                 /* Remote Node TTL event */
1313                 __bt_mesh_handle_pending_dev_config_request_info(result,
1314                         BT_MESH_NODE_TTL_EXECUTE, &param,
1315                                 sizeof(bluetooth_mesh_node_ttl_info_t));
1316                 break;
1317         }
1318         case MESH_OPCODE_MODEL_APP_STATUS: {
1319                 if (data_len != 7 && data_len != 9)
1320                         break;
1321                 bluetooth_mesh_model_configure_t param;
1322                 memset(&param, 0x00, sizeof(bluetooth_mesh_model_configure_t));
1323
1324                  _bt_mesh_util_convert_hex_to_string(
1325                         (uint8_t *) event->net_uuid.uuid, 16, param.net_uuid,
1326                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
1327                 BT_INFO("Node %4.4x: Model App status %s\n", event->source,
1328                         __mesh_status_to_string(data[0]));
1329
1330                 if (data[0] != MESH_STATUS_SUCCESS)
1331                         result = BLUETOOTH_ERROR_INTERNAL;
1332
1333                 elem_addr = l_get_le16(data + 1);
1334                 app_idx = l_get_le16(data + 3);
1335
1336                 BT_INFO("Element Addr\t%4.4x", elem_addr);
1337                 if (data_len == 9) {
1338                         /* vendor Model */
1339                         mod_id = l_get_le16(data + 5 + 2);
1340                         mod_id = l_get_le16(data) << 16 | mod_id;
1341                 } else {
1342                         /* BT SIG Model */
1343                         mod_id = l_get_le16(data + 5);
1344                         mod_id = MESH_VENDOR_ID_MASK | mod_id;
1345                 }
1346
1347                 param.primary_unicast = event->source;
1348                 param.elem_index = elem_addr - event->source;
1349                 param.appkey_idx = app_idx;
1350                 param.model = mod_id;
1351                 BT_INFO("AppIdx\t\t%u (0x%3.3x)\n ", app_idx, app_idx);
1352
1353                 /* Model Bind/UnBind Event */
1354                 __bt_mesh_handle_pending_dev_config_request_info(result,
1355                         BT_MESH_MODEL_CONFIGURE_APPKEY, &param,
1356                                 sizeof(bluetooth_mesh_model_configure_t));
1357                 break;
1358         }
1359         case MESH_OPCODE_MODEL_APP_LIST: {
1360                 if (data_len < 5)
1361                         break;
1362                 GArray *garray;
1363                 int total = 0;
1364                 bluetooth_mesh_model_configure_t param;
1365                 memset(&param, 0x00, sizeof(bluetooth_mesh_model_configure_t));
1366
1367                 _bt_mesh_util_convert_hex_to_string(
1368                         (uint8_t *) event->net_uuid.uuid, 16, param.net_uuid,
1369                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
1370
1371                 garray = g_array_new(FALSE, FALSE, sizeof(gchar));
1372
1373                 BT_INFO("\nNode %4.4x Model AppIdx status %s\n",
1374                                 event->source, __mesh_status_to_string(data[0]));
1375
1376                 BT_INFO("Element Addr\t%4.4x\n", l_get_le16(data + 1));
1377                 BT_INFO("Model ID\t%4.4x\n", l_get_le16(data + 3));
1378
1379                 elem_addr = l_get_le16(data + 1);
1380                 /* BT SIG Model */
1381                 mod_id = l_get_le16(data + 3);
1382                 mod_id = MESH_VENDOR_ID_MASK | mod_id;
1383
1384                 param.primary_unicast = event->source;
1385                 param.elem_index = elem_addr - event->source;
1386                 param.model = mod_id;
1387
1388                 data += 5;
1389                 data_len -= 5;
1390
1391                 while (data_len >= 3) {
1392                         app_idx = l_get_le16(data) & 0xfff;
1393                         g_array_append_vals(garray, &app_idx, sizeof(uint16_t));
1394                         BT_INFO("\t%u (0x%3.3x)\n", app_idx, app_idx);
1395
1396                         app_idx = l_get_le16(data + 1) >> 4;
1397                         g_array_append_vals(garray, &app_idx, sizeof(uint16_t));
1398                         BT_INFO("\t%u (0x%3.3x)\n", app_idx, app_idx);
1399                         data += 3;
1400                         data_len -= 3;
1401                 }
1402
1403                 if (data_len == 2) {
1404                         app_idx = l_get_le16(data) & 0xfff;
1405                         g_array_append_vals(garray, &app_idx, sizeof(uint16_t));
1406                         BT_INFO("\t %u (0x%3.3x)\n", app_idx, app_idx);
1407                 }
1408                 total = garray->len / sizeof(uint16_t);
1409                 param.appkey_list = (uint16_t **)g_malloc0(sizeof(uint16_t*) * garray->len);
1410                 param.appkeylist_count = total;
1411                 for (int i = 0; i < total; i++) {
1412                         param.appkey_list[i] = g_malloc(sizeof(uint16_t));
1413                         *param.appkey_list[i] = g_array_index(garray, uint16_t, i);
1414                 }
1415                 g_array_free(garray, TRUE);
1416
1417                 __bt_mesh_handle_pending_dev_config_request_info(result,
1418                         BT_MESH_MODEL_GET_APPKEY_LIST, &param,
1419                                 sizeof(bluetooth_mesh_model_configure_t));
1420                 break;
1421         }
1422         case MESH_OPCODE_CONFIG_MODEL_SUB_LIST: {
1423                 if (data_len < 5)
1424                         break;
1425                 int total = 0;
1426                 int i = 0;
1427                 bluetooth_mesh_model_configure_t param;
1428                 memset(&param, 0x00, sizeof(bluetooth_mesh_model_configure_t));
1429
1430                 _bt_mesh_util_convert_hex_to_string((uint8_t *) event->net_uuid.uuid, 16, param.net_uuid,
1431                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
1432
1433                 BT_INFO("\nNode %4.4x BT SIG Model Subscription List status %s\n",
1434                                 event->source, __mesh_status_to_string(data[0]));
1435
1436                 BT_INFO("Element Addr\t%4.4x\n", l_get_le16(data + 1));
1437                 elem_addr = l_get_le16(data + 1);
1438
1439                 /* BT SIG Model */
1440                 mod_id = l_get_le16(data + 3);
1441                 mod_id = MESH_VENDOR_ID_MASK | mod_id;
1442                 BT_INFO("Model ID\t%4.4x\n", mod_id);
1443
1444                 param.primary_unicast = event->source;
1445                 param.elem_index = elem_addr - event->source;
1446                 param.model = mod_id;
1447                 BT_INFO("Mesh: Data length of All Models Together [%d]", data_len - 5);
1448                 total = (data_len -  5)/2;
1449                 param.sublist_count = total;
1450                 BT_INFO("Mesh: Total Number of subscriptions [%d]", total);
1451                 if (total) {
1452                         param.sub_list = (uint16_t **)g_malloc0(sizeof(uint16_t*) * total);
1453
1454                         i = 5;
1455                         for (int k = 0; i < data_len; k++, i += 2) {
1456                                 BT_INFO("Mesh: Subscription Addr \t\t%4.4x\n ", l_get_le16(data + i));
1457                                 param.sub_list[k] = g_malloc(sizeof(uint16_t));
1458                                 *param.sub_list[k] = l_get_le16(data + i);
1459                         }
1460                 }
1461                 __bt_mesh_handle_pending_dev_config_request_info(result,
1462                         BT_MESH_MODEL_GET_SUBSCRIPTION_LIST, &param,
1463                                 sizeof(bluetooth_mesh_model_configure_t));
1464                 break;
1465         }
1466         case MESH_OPCODE_CONFIG_VEND_MODEL_SUB_LIST: {
1467                 if (data_len < 7)
1468                         break;
1469                 int total = 0;
1470                 int i = 0;
1471                 bluetooth_mesh_model_configure_t param;
1472                 memset(&param, 0x00, sizeof(bluetooth_mesh_model_configure_t));
1473
1474                 _bt_mesh_util_convert_hex_to_string(
1475                         (uint8_t *) event->net_uuid.uuid, 16, param.net_uuid,
1476                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
1477
1478                 BT_INFO("\nNode %4.4x Vendor Model Subscription List status %s\n",
1479                                 event->source, __mesh_status_to_string(data[0]));
1480
1481                 BT_INFO("Element Addr\t%4.4x\n", l_get_le16(data + 1));
1482                 elem_addr = l_get_le16(data + 1);
1483
1484                 /* VENDOR Model */
1485                 mod_id = l_get_le16(data + 5);
1486                 mod_id = l_get_le16(data + 3) << 16 | mod_id;
1487
1488                 BT_INFO("Model ID\t%4.4x\n", mod_id);
1489
1490                 param.primary_unicast = event->source;
1491                 param.elem_index = elem_addr - event->source;
1492                 param.model = mod_id;
1493
1494                 BT_INFO("Mesh: Data length of All Models Together [%d]", data_len - 7);
1495                 total = (data_len -  7)/2;
1496                 param.sublist_count = total;
1497
1498                 BT_INFO("Mesh: Total Number of subscriptions [%d]", total);
1499                 if (total) {
1500                         param.sub_list = (uint16_t **)g_malloc0(sizeof(uint16_t*) * total);
1501
1502                         i = 7;
1503                         for (int k = 0; i < data_len; k++, i += 2) {
1504                                 BT_INFO("Mesh: Subscription Addr \t\t%4.4x\n ", l_get_le16(data + i));
1505                                 param.sub_list[k] = g_malloc(sizeof(uint16_t));
1506                                 *param.sub_list[k] = l_get_le16(data + i);
1507                         }
1508                 }
1509                 __bt_mesh_handle_pending_dev_config_request_info(result,
1510                         BT_MESH_MODEL_GET_SUBSCRIPTION_LIST, &param,
1511                                 sizeof(bluetooth_mesh_model_configure_t));
1512                 break;
1513         }
1514         case MESH_OPCODE_DEV_COMP_STATUS: {
1515                 if (data_len < MESH_MINIMUM_COMPOSITION_LEN)
1516                         break;
1517                 bluetooth_mesh_node_features_t features;
1518                 memset(&features, 0x00, sizeof(bluetooth_mesh_node_features_t));
1519                 BT_INFO("Mesh: Got Response for Device Composition Data");
1520                 __bt_mesh_print_device_composition_data(data, data_len);
1521
1522                 if (!_bt_mesh_network_save_remote_node_composition(
1523                         event->net_uuid.uuid, event->source, data, data_len)) {
1524                         result = BLUETOOTH_ERROR_INTERNAL;
1525                         BT_INFO("Failed to save node composition!");
1526                 }
1527                 /* Browse Remote Node event */
1528                 __bt_mesh_handle_pending_dev_config_request_info(result,
1529                         BT_MESH_NODE_BROWSE, event, sizeof(event_mesh_devkey_message_t));
1530
1531                 /* Vendor Features Discover event */
1532                 _bt_mesh_util_convert_hex_to_string(
1533                         (uint8_t *) event->net_uuid.uuid, 16, features.net_uuid,
1534                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
1535                 features.unicast = event->source;
1536                 BT_INFO("Mesh: Net UUID [%s]", features.net_uuid);
1537
1538                 BT_INFO("Mesh: Composition status for node unicast [0x%2.2x]",
1539                         event->source);
1540                 if (!_bt_mesh_node_get_vendor_features(event->net_uuid.uuid,
1541                         event->source, &features)) {
1542                         BT_ERR("Mesh: Failed to get Vendor Specific Infor for [0x%2.2x]",
1543                                 event->source);
1544                         result = BLUETOOTH_ERROR_INTERNAL;
1545                 } else {
1546                         BT_INFO("Mesh: Got Feature informations for [0x%2.2x]",
1547                                 event->source);
1548                 }
1549                 __bt_mesh_handle_pending_dev_config_request_info(result,
1550                         BT_MESH_NODE_GET_VENDOR_FEATURES, &features,
1551                                 sizeof(bluetooth_mesh_node_features_t));
1552                 break;
1553         }
1554         case MESH_OPCODE_NETKEY_STATUS: {
1555                 if (data_len != 3)
1556                         break;
1557
1558                 bluetooth_mesh_key_configure_t param;
1559                 memset(&param, 0x00, sizeof(bluetooth_mesh_key_configure_t));
1560
1561                 BT_INFO("Mesh: Node %4.4x NetKey status %s",
1562                         event->source,  __mesh_status_to_string(data[0]));
1563                 net_idx = l_get_le16(data + 1) & 0xfff;
1564
1565                 BT_INFO("\tNetKey %u (0x%3.3x)", net_idx, net_idx);
1566
1567                 if (data[0] != 0)
1568                         result = BLUETOOTH_ERROR_INTERNAL;
1569
1570                 if (!cmd)
1571                         break;
1572
1573                 _bt_mesh_util_convert_hex_to_string(
1574                         (uint8_t *) event->net_uuid.uuid, 16, param.net_uuid,
1575                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
1576                 param.primary_unicast = event->source;
1577                 param.netkey_idx = net_idx;
1578                 param.is_netkey = true;
1579
1580                 BT_INFO("Mesh: Resp recvd from node unicast [0x%4.4x]", event->source);
1581                 if (cmd->opcode == MESH_OPCODE_NETKEY_ADD) {
1582                         BT_INFO("Mesh: Resp recvd: MESH_OPCODE_NETKEY_ADD");
1583                         if (result == BLUETOOTH_ERROR_NONE) {
1584                                 if (!_bt_mesh_network_save_remote_node_netkey(
1585                                                         event->net_uuid.uuid, event->source, net_idx)) {
1586                                         result = BLUETOOTH_ERROR_INTERNAL;
1587                                         BT_INFO("Failed to save node Netkey!");
1588                                 }
1589                         }
1590                         param.op = BLUETOOTH_MESH_NODE_KEY_ADD;
1591                 } else if (cmd->opcode == MESH_OPCODE_NETKEY_DELETE) {
1592                         BT_INFO("Mesh: Resp recvd: MESH_OPCODE_NETKEY_DELETE");
1593                         if (result == BLUETOOTH_ERROR_NONE) {
1594                                 if (!_bt_mesh_network_delete_remote_node_netkey(
1595                                                         event->net_uuid.uuid, event->source, net_idx)) {
1596                                         result = BLUETOOTH_ERROR_INTERNAL;
1597                                         BT_INFO("Failed to delete node Netkey!");
1598                                 }
1599                         }
1600                         param.op = BLUETOOTH_MESH_NODE_KEY_DELETE;
1601                 } else if (cmd->opcode == MESH_OPCODE_NETKEY_UPDATE) {
1602                         BT_INFO("Mesh: Resp recvd: MESH_OPCODE_NETKEY_UPDATE");
1603                         param.op = BLUETOOTH_MESH_NODE_KEY_UPDATE;
1604                 }
1605                 /* Node Net Key Configure event */
1606                 __bt_mesh_handle_pending_dev_config_request_info(result,
1607                         BT_MESH_NODE_CONFIGURE_KEY,
1608                                 &param, sizeof(bluetooth_mesh_key_configure_t));
1609                 break;
1610         }
1611         case MESH_OPCODE_APPKEY_STATUS: {
1612                 if (data_len != 4)
1613                         break;
1614
1615                 bluetooth_mesh_key_configure_t param;
1616                 memset(&param, 0x00, sizeof(bluetooth_mesh_key_configure_t));
1617
1618                 BT_INFO("Mesh: Node %4.4x AppKey status %s\n", event->source,
1619                                 __mesh_status_to_string(data[0]));
1620                 net_idx = l_get_le16(data + 1) & 0xfff;
1621                 app_idx = l_get_le16(data + 2) >> 4;
1622
1623                 BT_INFO("NetKey\t%u (0x%3.3x)\n", net_idx, net_idx);
1624                 BT_INFO("AppKey\t%u (0x%3.3x)\n", app_idx, app_idx);
1625
1626                 if (data[0] != MESH_STATUS_SUCCESS)
1627                         result = BLUETOOTH_ERROR_INTERNAL;
1628
1629                 if (!cmd)
1630                         break;
1631
1632                 _bt_mesh_util_convert_hex_to_string(
1633                         (uint8_t *) event->net_uuid.uuid, 16, param.net_uuid,
1634                                 BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
1635
1636                 param.primary_unicast = event->source;
1637                 param.netkey_idx = net_idx;
1638                 param.appkey_idx = app_idx;
1639                 param.is_netkey = false;
1640
1641                 if (cmd->opcode == MESH_OPCODE_APPKEY_ADD) {
1642                         BT_INFO("Mesh: Resp recvd: MESH_OPCODE_APPKEY_ADD");
1643                         if (result == BLUETOOTH_ERROR_NONE) {
1644                                 if (!_bt_mesh_network_save_remote_node_appkey(
1645                                                 event->net_uuid.uuid, event->source,
1646                                                 net_idx, app_idx)) {
1647                                         result = BLUETOOTH_ERROR_INTERNAL;
1648                                         BT_INFO("Failed to save node Appkey!");
1649                                 }
1650                         }
1651                         param.op = BLUETOOTH_MESH_NODE_KEY_ADD;
1652                 } else if (cmd->opcode == MESH_OPCODE_APPKEY_DELETE) {
1653                         BT_INFO("Mesh: Resp recvd: MESH_OPCODE_APPKEY_DELETE");
1654                         if (result == BLUETOOTH_ERROR_NONE) {
1655                                 if (!_bt_mesh_network_delete_remote_node_appkey(
1656                                                 event->net_uuid.uuid, event->source,
1657                                                 net_idx, app_idx)) {
1658                                         result = BLUETOOTH_ERROR_INTERNAL;
1659                                         BT_INFO("Failed to delete node Appkey!");
1660                                 }
1661                         }
1662                         param.op = BLUETOOTH_MESH_NODE_KEY_DELETE;
1663                 } else if (cmd->opcode == MESH_OPCODE_APPKEY_UPDATE) {
1664                         BT_INFO("Mesh: Resp recvd: MESH_OPCODE_APPKEY_UPDATE");
1665                         param.op = BLUETOOTH_MESH_NODE_KEY_UPDATE;
1666                 }
1667
1668                 /* Node App Key Configure event */
1669                 __bt_mesh_handle_pending_dev_config_request_info(result,
1670                         BT_MESH_NODE_CONFIGURE_KEY,
1671                                 &param, sizeof(bluetooth_mesh_key_configure_t));
1672                 break;
1673         }
1674         }
1675 }
1676
1677 static gboolean __bt_mesh_vendor_feature_event_handler(gpointer data)
1678 {
1679         bluetooth_mesh_node_features_t *result = (bluetooth_mesh_node_features_t*) data;
1680         __bt_mesh_handle_pending_dev_config_request_info(
1681                 BLUETOOTH_ERROR_NONE,
1682                         BT_MESH_NODE_GET_VENDOR_FEATURES,
1683                                 result, sizeof(bluetooth_mesh_node_features_t));
1684         g_free(result);
1685         return FALSE;
1686 }
1687
1688 int _bt_mesh_node_discover_vendor_features(const char *app_cred, const char *sender,
1689                 bluetooth_mesh_node_features_t *req)
1690 {
1691         int ret = OAL_STATUS_SUCCESS;
1692         uint16_t dest;
1693         uint16_t netkey_idx;
1694         uint16_t data_len;
1695         oal_uuid_t net_uuid;
1696         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
1697
1698         BT_INFO("Mesh: Vendor features for Network UUID [%s]", req->net_uuid);
1699         _bt_mesh_util_convert_string_to_hex(req->net_uuid,
1700                         strlen(req->net_uuid), net_uuid.uuid, 16);
1701         /* Check if Node's vendor features are already svaed or not */
1702         if (_bt_mesh_node_get_vendor_features(net_uuid.uuid, req->unicast, req)) {
1703                 BT_INFO("Mesh: Vendor Features already available for Node: Unicast [0x%.2x]",
1704                                 req->unicast);
1705                 /* Schedule event ot Application */
1706                 bluetooth_mesh_node_features_t *event = \
1707                         g_memdup(req, sizeof(bluetooth_mesh_node_features_t));
1708                 g_idle_add(__bt_mesh_vendor_feature_event_handler, (gpointer) event);
1709                 return BLUETOOTH_ERROR_NONE;
1710         }
1711
1712         /* If Scanning is going on */
1713         if (_bt_mesh_is_provisioning() ||
1714                         _bt_mesh_is_scanning()) {
1715                 BT_ERR("Device is buzy..");
1716                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1717         }
1718
1719         _bt_mesh_util_convert_string_to_hex(req->net_uuid,
1720                         strlen(req->net_uuid), net_uuid.uuid, 16);
1721
1722         dest = req->unicast;
1723         BT_INFO("Mesh: Get Vendor Features for Remote Node Unicast [0x%2.2x]", dest);
1724
1725         /* Check pending request */
1726         if (_bt_mesh_check_pending_request(MESH_OPCODE_DEV_COMP_GET,
1727                                 dest, net_uuid.uuid)) {
1728                 BT_ERR("Device is buzy..");
1729                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1730         }
1731
1732         BT_INFO("Mesh: Browse Remote Node: Unicast [0x%2.2x]", dest);
1733         /* Get Subnet index of the rmeote node for TX encryption */
1734         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid, dest);
1735         if (netkey_idx == MESH_NET_IDX_INVALID)
1736                 return BLUETOOTH_ERROR_INTERNAL;
1737
1738         data_len = _bt_mesh_util_opcode_set(MESH_OPCODE_DEV_COMP_GET,
1739                         buffer);
1740
1741         /* By default, use page 0 */
1742         buffer[data_len++] = 0;
1743         ret = mesh_conf_send_message(&net_uuid, dest, true,
1744                         netkey_idx, buffer, data_len);
1745
1746         if (ret != OAL_STATUS_SUCCESS) {
1747                 BT_ERR("ret: %d", ret);
1748                 return BLUETOOTH_ERROR_INTERNAL;
1749         }
1750
1751         /* Queue the request with timeout */
1752         __bt_mesh_add_request(MESH_OPCODE_DEV_COMP_GET,
1753                         dest, net_uuid.uuid, NULL);
1754         return BLUETOOTH_ERROR_NONE;
1755 }
1756
1757 int _bt_mesh_browse_remote_node(const char *app_cred,
1758         const char *sender,
1759                 bluetooth_mesh_node_discover_t *req)
1760 {
1761         int ret = OAL_STATUS_SUCCESS;
1762         uint16_t dest;
1763         uint16_t netkey_idx;
1764         uint16_t data_len;
1765         oal_uuid_t net_uuid;
1766         oal_uuid_t dev_uuid;
1767         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
1768
1769         /* If Scanning is going on */
1770         if (_bt_mesh_is_provisioning() ||
1771                         _bt_mesh_is_scanning()) {
1772                 BT_ERR("Device is buzy..");
1773                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1774         }
1775
1776         _bt_mesh_util_convert_string_to_hex(req->net_uuid,
1777                 strlen(req->net_uuid), net_uuid.uuid, 16);
1778         _bt_mesh_util_convert_string_to_hex(req->dev_uuid,
1779                 strlen(req->dev_uuid), dev_uuid.uuid, 16);
1780
1781         BT_INFO("Mesh: Browse Node UUID [%s]", req->dev_uuid);
1782
1783         /* Get Remote Node unicast address from Dev UUID */
1784         if (!_bt_mesh_node_get_unicast_from_dev_uuid(net_uuid.uuid,
1785                         dev_uuid.uuid, &dest))
1786                 return BLUETOOTH_ERROR_INTERNAL;
1787
1788         BT_INFO("Mesh: Browse Remote Node: Unicast [0x%2.2x]", dest);
1789         /* Check pending request */
1790         if (_bt_mesh_check_pending_request(MESH_OPCODE_DEV_COMP_GET,
1791                         dest, net_uuid.uuid)) {
1792                 BT_ERR("Device is buzy..");
1793                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1794         }
1795
1796         /* Get Subnet index of the rmeote node for TX encryption */
1797         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid, dest);
1798         if (netkey_idx == MESH_NET_IDX_INVALID)
1799                 return BLUETOOTH_ERROR_INTERNAL;
1800
1801         data_len = _bt_mesh_util_opcode_set(MESH_OPCODE_DEV_COMP_GET, buffer);
1802
1803         /* By default, use page 0 */
1804         buffer[data_len++] = 0;
1805         ret = mesh_conf_send_message(&net_uuid, dest, true,
1806                         netkey_idx, buffer, data_len);
1807
1808         if (ret != OAL_STATUS_SUCCESS) {
1809                 BT_ERR("ret: %d", ret);
1810                 return BLUETOOTH_ERROR_INTERNAL;
1811         }
1812
1813         /* Queue the request with timeout */
1814         __bt_mesh_add_request(MESH_OPCODE_DEV_COMP_GET,
1815                         dest, net_uuid.uuid, NULL);
1816         return BLUETOOTH_ERROR_NONE;
1817 }
1818
1819 int _bt_mesh_model_configure_group_subscription(const char *app_cred,
1820                 const char *sender, bluetooth_mesh_model_configure_t *req)
1821 {
1822         int ret = OAL_STATUS_SUCCESS;
1823         uint16_t netkey_idx;
1824         oal_uuid_t net_uuid;
1825         uint16_t data_len;
1826         uint32_t opcode = 0;
1827         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
1828
1829         /* If Scanning is going on */
1830         if (_bt_mesh_is_provisioning() ||
1831                         _bt_mesh_is_scanning()) {
1832                 BT_ERR("Device is buzy..");
1833                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1834         }
1835
1836         BT_INFO("Mesh: group Subscription Req: [%d]", req->op);
1837         if (req->op != BLUETOOTH_MESH_MODEL_SUB_DELETE_ALL) {
1838                 BT_INFO("Mesh: group Subscription Addr [0x%2.2x]", req->sub_addr);
1839
1840                 /* Subscriptio address sanity check */
1841                 if (!MESH_IS_GROUP(req->sub_addr) ||
1842                                 MESH_IS_VIRTUAL(req->sub_addr)) {
1843                         BT_ERR("Mesh: Bad subscription address [0x%2.2x\n]",
1844                                 req->sub_addr);
1845                         return BLUETOOTH_ERROR_INVALID_PARAM;
1846                 }
1847         } else
1848                 BT_INFO("Mesh: group Subscription Req: Delete All");
1849
1850         _bt_mesh_util_convert_string_to_hex(req->net_uuid,
1851                 strlen(req->net_uuid), net_uuid.uuid, 16);
1852         /* Get Subnet index of the remote node for TX encryption */
1853         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid,
1854                                 req->primary_unicast);
1855         if (netkey_idx == MESH_NET_IDX_INVALID)
1856                 return BLUETOOTH_ERROR_INTERNAL;
1857
1858
1859         if (req->op == BLUETOOTH_MESH_MODEL_SUB_ADD)
1860                 opcode = MESH_OPCODE_CONFIG_MODEL_SUB_ADD;
1861         else if (req->op == BLUETOOTH_MESH_MODEL_SUB_DELETE)
1862                 opcode = MESH_OPCODE_CONFIG_MODEL_SUB_DELETE;
1863         else if (req->op == BLUETOOTH_MESH_MODEL_SUB_DELETE_ALL)
1864                 opcode = MESH_OPCODE_CONFIG_MODEL_SUB_DELETE_ALL;
1865         else if (req->op == BLUETOOTH_MESH_MODEL_SUB_OVERWRITE)
1866                 opcode = MESH_OPCODE_CONFIG_MODEL_SUB_OVERWRITE;
1867
1868         /* Check pending request */
1869         if (_bt_mesh_check_pending_request(opcode,
1870                                 req->primary_unicast, net_uuid.uuid)) {
1871                 BT_ERR("Device is buzy..");
1872                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1873         }
1874
1875         data_len = _bt_mesh_util_opcode_set(opcode, buffer);
1876
1877         BT_INFO("Mesh: Group Subscription Primary unicast [0x%2.2x]",
1878                         req->primary_unicast);
1879         /* Element Address */
1880         l_put_le16((req->primary_unicast + req->elem_index),
1881                         buffer + data_len);
1882         data_len += 2;
1883
1884         /* Subscription address */
1885         if (req->op != BLUETOOTH_MESH_MODEL_SUB_DELETE_ALL) {
1886                 l_put_le16(req->sub_addr, buffer + data_len);
1887                 data_len += 2;
1888         }
1889
1890         BT_INFO("Mesh: Group Subscription Model ID [0x%4.4x]", req->model);
1891         /* Insert Model ID */
1892          if (req->model >= 0xFFFF0000) {
1893                 /* 1st 2 octet Company ID is 0xFFFF means, it is BT SIG Model*/
1894                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
1895                 data_len += 2;
1896         } else {
1897                 /* Vendor Model, 1st 2 octetes: Company ID, next 2 octets: Vendor Model ID */
1898                 l_put_le16(req->model & 0xFFFF0000, buffer + data_len);
1899                 data_len += 2;
1900                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
1901                 data_len += 2;
1902         }
1903
1904         ret = mesh_conf_send_message(&net_uuid, req->primary_unicast, true,
1905                         netkey_idx, buffer, data_len);
1906
1907         if (ret != OAL_STATUS_SUCCESS) {
1908                 BT_ERR("ret: %d", ret);
1909                 return BLUETOOTH_ERROR_INTERNAL;
1910         }
1911
1912         BT_INFO("Mesh: Group Subscription Command sent successfully");
1913         /* Queue the request with timeout */
1914         __bt_mesh_add_request(opcode, req->primary_unicast,
1915                 net_uuid.uuid,
1916                         g_memdup(req, sizeof(bluetooth_mesh_model_configure_t)));
1917
1918         return BLUETOOTH_ERROR_NONE;
1919 }
1920
1921 int _bt_mesh_model_configure_virtual_group_subscription(
1922                 const char *app_cred, const char *sender,
1923                         bluetooth_mesh_model_configure_t *req)
1924 {
1925         int ret = OAL_STATUS_SUCCESS;
1926         uint16_t netkey_idx;
1927         oal_uuid_t net_uuid;
1928         uint16_t data_len;
1929         uint32_t opcode = 0;
1930         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
1931
1932         /* If Scanning is going on */
1933         if (_bt_mesh_is_provisioning() ||
1934                         _bt_mesh_is_scanning()) {
1935                 BT_ERR("Device is buzy..");
1936                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1937         }
1938
1939         _bt_mesh_util_convert_string_to_hex(req->net_uuid,
1940                 strlen(req->net_uuid), net_uuid.uuid, 16);
1941
1942         BT_INFO("Mesh: Virtual Group Subscription Req: [%d] Group Addr [0x%2.2x]",
1943                         req->op, req->sub_addr);
1944
1945         if (req->op != BLUETOOTH_MESH_MODEL_SUB_DELETE_ALL) {
1946                 /* Subscription address sanity check */
1947                 if (MESH_IS_GROUP(req->sub_addr) ||
1948                                 !(MESH_IS_VIRTUAL(req->sub_addr))) {
1949                         BT_ERR("Mesh: Bad Virtual Group subscription address [0x%2.2x\n]",
1950                                 req->sub_addr);
1951                         return BLUETOOTH_ERROR_INVALID_PARAM;
1952                 }
1953         } else
1954                 BT_INFO("Mesh: Virtual Group Subscription Req: Delete All");
1955
1956         /* Get Subnet index of the remote node for TX encryption */
1957         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid,
1958                                 req->primary_unicast);
1959         if (netkey_idx == MESH_NET_IDX_INVALID)
1960                 return BLUETOOTH_ERROR_INTERNAL;
1961
1962         if (req->op == BLUETOOTH_MESH_MODEL_SUB_ADD)
1963                 opcode = MESH_OPCODE_CONFIG_MODEL_SUB_VIRT_ADD;
1964         else if (req->op == BLUETOOTH_MESH_MODEL_SUB_DELETE)
1965                 opcode = MESH_OPCODE_CONFIG_MODEL_SUB_VIRT_DELETE;
1966         else if (req->op == BLUETOOTH_MESH_MODEL_SUB_OVERWRITE)
1967                 opcode = MESH_OPCODE_CONFIG_MODEL_SUB_VIRT_OVERWRITE;
1968         else if (req->op == BLUETOOTH_MESH_MODEL_SUB_DELETE_ALL)
1969                 opcode = MESH_OPCODE_CONFIG_MODEL_SUB_DELETE_ALL;
1970
1971         /* Check pending request */
1972         if (_bt_mesh_check_pending_request(opcode,
1973                                 req->primary_unicast, net_uuid.uuid)) {
1974                 BT_ERR("Device is buzy..");
1975                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1976         }
1977
1978         data_len = _bt_mesh_util_opcode_set(opcode, buffer);
1979
1980         /* Element Address */
1981         l_put_le16((req->primary_unicast + req->elem_index), buffer + data_len);
1982         data_len += 2;
1983
1984         /* Subscription address */
1985         if (req->op != BLUETOOTH_MESH_MODEL_SUB_DELETE_ALL) {
1986                 uint8_t label_uuid[16];
1987                 if (!_bt_mesh_network_get_label_uuid_from_sub_addr(
1988                         net_uuid.uuid, req->sub_addr, label_uuid)) {
1989                         BT_ERR("Mesh: Virtual Group Label UUID Not found");
1990                         return BLUETOOTH_ERROR_INVALID_PARAM;
1991                 }
1992                 memcpy(buffer + data_len, label_uuid, 16);
1993                 data_len += 16;
1994         }
1995
1996         BT_INFO("Mesh: Virtual Group Subscription Model ID [0x%4.4x]", req->model);
1997         /* Insert Model ID */
1998          if (req->model >= 0xFFFF0000) {
1999                 /* 1st 2 octet Company ID is 0xFFFF means, it is BT SIG Model*/
2000                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
2001                 data_len += 2;
2002         } else {
2003                 /* Vendor Model, 1st 2 octetes: Company ID, next 2 octets: Vendor Model ID */
2004                 l_put_le16(req->model & 0xFFFF0000, buffer + data_len);
2005                 data_len += 2;
2006                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
2007                 data_len += 2;
2008         }
2009
2010         ret = mesh_conf_send_message(&net_uuid,
2011                         req->primary_unicast, true,
2012                                 netkey_idx, buffer, data_len);
2013
2014         if (ret != OAL_STATUS_SUCCESS) {
2015                 BT_ERR("ret: %d", ret);
2016                 return BLUETOOTH_ERROR_INTERNAL;
2017         }
2018
2019         BT_INFO("Mesh: Virtual Group Subscription Command sent successfully");
2020         /* Queue the request with timeout */
2021         __bt_mesh_add_request(opcode, req->primary_unicast,
2022                 net_uuid.uuid,
2023                         g_memdup(req, sizeof(bluetooth_mesh_model_configure_t)));
2024
2025         return BLUETOOTH_ERROR_NONE;
2026 }
2027
2028 int _bt_mesh_model_get_publication(const char *app_cred, const char *sender,
2029                 bluetooth_mesh_model_configure_t *req)
2030 {
2031         int ret = OAL_STATUS_SUCCESS;
2032         uint16_t netkey_idx;
2033         oal_uuid_t net_uuid;
2034         uint16_t data_len;
2035         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
2036
2037         /* If Scanning is going on */
2038         if (_bt_mesh_is_provisioning() ||
2039                         _bt_mesh_is_scanning()) {
2040                 BT_ERR("Device is buzy..");
2041                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2042         }
2043
2044         _bt_mesh_util_convert_string_to_hex(req->net_uuid,
2045                 strlen(req->net_uuid), net_uuid.uuid, 16);
2046
2047         /* Check pending request */
2048         if (_bt_mesh_check_pending_request(MESH_OPCODE_CONFIG_MODEL_PUB_GET,
2049                                 req->primary_unicast, net_uuid.uuid)) {
2050                 BT_ERR("Device is buzy..");
2051                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2052         }
2053
2054         /* Get Subnet index of the remote node for TX encryption */
2055         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid, req->primary_unicast);
2056         if (netkey_idx == MESH_NET_IDX_INVALID)
2057                 return BLUETOOTH_ERROR_INTERNAL;
2058
2059         /* Set Opcode */
2060         data_len = _bt_mesh_util_opcode_set(MESH_OPCODE_CONFIG_MODEL_PUB_GET, buffer);
2061
2062         /* Element Address */
2063         l_put_le16((req->primary_unicast + req->elem_index), buffer + data_len);
2064         data_len += 2;
2065
2066         /* Insert Model ID */
2067         if (req->model >= 0xFFFF0000) {
2068                 /* 1st 2 octet Company ID is 0xFFFF means, it is BT SIG Model*/
2069                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
2070                 data_len += 2;
2071         } else {
2072                 /* Vendor Model, 1st 2 octetes: Company ID, next 2 octets: Vendor Model ID */
2073                 l_put_le16(req->model & 0xFFFF0000, buffer + data_len);
2074                 data_len += 2;
2075                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
2076                 data_len += 2;
2077         }
2078
2079         ret = mesh_conf_send_message(&net_uuid, req->primary_unicast, true, netkey_idx, buffer, data_len);
2080
2081         if (ret != OAL_STATUS_SUCCESS) {
2082                 BT_ERR("ret: %d", ret);
2083                 return BLUETOOTH_ERROR_INTERNAL;
2084         }
2085
2086         /* Queue the request with timeout */
2087         __bt_mesh_add_request(MESH_OPCODE_CONFIG_MODEL_PUB_GET, req->primary_unicast, net_uuid.uuid,
2088                         g_memdup(req, sizeof(bluetooth_mesh_model_configure_t)));
2089
2090         return BLUETOOTH_ERROR_NONE;
2091 }
2092
2093 int _bt_mesh_model_set_publication(const char *app_cred, const char *sender,
2094                 bluetooth_mesh_model_configure_t *req)
2095 {
2096         int ret = OAL_STATUS_SUCCESS;
2097         uint16_t netkey_idx;
2098         oal_uuid_t net_uuid;
2099         uint16_t data_len;
2100         uint32_t opcode = 0;
2101         uint8_t label_uuid[16];
2102         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
2103
2104         /* If Scanning is going on */
2105         if (_bt_mesh_is_provisioning() ||
2106                         _bt_mesh_is_scanning()) {
2107                 BT_ERR("Device is buzy..");
2108                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2109         }
2110
2111         _bt_mesh_util_convert_string_to_hex(req->net_uuid, strlen(req->net_uuid), net_uuid.uuid, 16);
2112
2113         if (req->pub_addr == MESH_ALL_NODES_ADDRESS)
2114                 BT_INFO("Mesh: Setting Publication to ALL Node Address");
2115
2116         if (!MESH_IS_GROUP(req->pub_addr) && !MESH_IS_VIRTUAL(req->pub_addr) &&
2117                         req->pub_addr != MESH_UNASSIGNED_ADDRESS) {
2118                 BT_ERR("Mesh: Bad Publication address %x\n", req->pub_addr);
2119                 return BLUETOOTH_ERROR_INVALID_PARAM;
2120         }
2121
2122         if (req->pub_addr != MESH_UNASSIGNED_ADDRESS) {
2123                 if (MESH_IS_VIRTUAL(req->pub_addr)) {
2124                         if (!_bt_mesh_network_get_label_uuid_from_sub_addr(
2125                                         net_uuid.uuid, req->pub_addr, label_uuid))
2126                                 return BLUETOOTH_ERROR_INVALID_PARAM;
2127                         opcode = MESH_OPCODE_CONFIG_MODEL_PUB_VIRT_SET;
2128
2129                 } else if (MESH_IS_GROUP(req->pub_addr))
2130                         opcode = MESH_OPCODE_CONFIG_MODEL_PUB_SET;
2131         }
2132
2133         /* Check pending request */
2134         if (_bt_mesh_check_pending_request(opcode,
2135                                 req->primary_unicast, net_uuid.uuid)) {
2136                 BT_ERR("Device is buzy..");
2137                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2138         }
2139
2140         /* Get Subnet index of the remote node for TX encryption */
2141         netkey_idx = _bt_mesh_node_get_subnet_idx(
2142                                 net_uuid.uuid, req->primary_unicast);
2143         if (netkey_idx == MESH_NET_IDX_INVALID)
2144                 return BLUETOOTH_ERROR_INTERNAL;
2145
2146         /* Set opcode */
2147         data_len = _bt_mesh_util_opcode_set(opcode, buffer);
2148
2149         /* Element Address */
2150         l_put_le16((req->primary_unicast + req->elem_index), buffer + data_len);
2151         data_len += 2;
2152
2153         /* Fill Publication Address */
2154         if (MESH_IS_VIRTUAL(req->pub_addr)) {
2155                 memcpy(buffer + data_len, label_uuid, 16);
2156                 data_len += 16;
2157         } else {
2158                 l_put_le16(req->pub_addr, buffer + data_len);
2159                 data_len += 2;
2160         }
2161
2162         /* AppKey index + credential (set to 0) */
2163         l_put_le16(req->appkey_idx, buffer + data_len);
2164         data_len += 2;
2165
2166         /* Fill TTL */
2167         buffer[data_len++] = req->ttl;
2168         /* Publish period  step count and step resolution */
2169         buffer[data_len++] = req->period;
2170         /* Publish retransmit count & interval steps */
2171         buffer[data_len++] = req->retransmit;
2172
2173         /* Insert Model ID */
2174         if (req->model >= 0xFFFF0000) {
2175                 /* 1st 2 octet Company ID is 0xFFFF means, it is BT SIG Model*/
2176                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
2177                 data_len += 2;
2178         } else {
2179                 /* Vendor Model, 1st 2 octetes: Company ID, next 2 octets: Vendor Model ID */
2180                 l_put_le16(req->model & 0xFFFF0000, buffer + data_len);
2181                 data_len += 2;
2182                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
2183                 data_len += 2;
2184         }
2185
2186         ret = mesh_conf_send_message(&net_uuid,
2187                         req->primary_unicast, true,
2188                                 netkey_idx, buffer, data_len);
2189
2190         if (ret != OAL_STATUS_SUCCESS) {
2191                 BT_ERR("ret: %d", ret);
2192                 return BLUETOOTH_ERROR_INTERNAL;
2193         }
2194
2195         /* Queue the request with timeout */
2196         __bt_mesh_add_request(opcode, req->primary_unicast, net_uuid.uuid,
2197                         g_memdup(req, sizeof(bluetooth_mesh_model_configure_t)));
2198
2199         return BLUETOOTH_ERROR_NONE;
2200 }
2201
2202 int _bt_mesh_node_model_get_subscription_list(const char *app_cred, const char *sender,
2203                 bluetooth_mesh_model_configure_t *req)
2204 {
2205         int ret = OAL_STATUS_SUCCESS;
2206         uint16_t netkey_idx;
2207         oal_uuid_t net_uuid;
2208         uint16_t data_len;
2209         uint32_t opcode = 0;
2210         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
2211
2212         /* If Scanning is going on */
2213         if (_bt_mesh_is_provisioning() ||
2214                         _bt_mesh_is_scanning()) {
2215                 BT_ERR("Device is buzy..");
2216                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2217         }
2218
2219         _bt_mesh_util_convert_string_to_hex(req->net_uuid, strlen(req->net_uuid), net_uuid.uuid, 16);
2220
2221         /* Insert Model ID */
2222         if (req->model >= 0xFFFF0000)
2223                 /* 1st 2 octet Company ID is 0xFFFF means, it is BT SIG Model*/
2224                 opcode = MESH_OPCODE_CONFIG_MODEL_SUB_GET;
2225         else
2226                 /* Vendor Model, 1st 2 octetes: Company ID, next 2 octets: Vendor Model ID */
2227                 opcode = MESH_OPCODE_CONFIG_VEND_MODEL_SUB_GET;
2228
2229         /* Check pending request */
2230         if (_bt_mesh_check_pending_request(opcode,
2231                                 req->primary_unicast, net_uuid.uuid)) {
2232                 BT_ERR("Device is buzy..");
2233                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2234         }
2235         /* Get Subnet index of the remote node for TX encryption */
2236         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid, req->primary_unicast);
2237         if (netkey_idx == MESH_NET_IDX_INVALID)
2238                 return BLUETOOTH_ERROR_INTERNAL;
2239
2240         data_len = _bt_mesh_util_opcode_set(opcode, buffer);
2241         /* Element Address */
2242         l_put_le16((req->primary_unicast + req->elem_index), buffer + data_len);
2243         data_len += 2;
2244
2245         /* Insert Model ID */
2246         if (opcode == MESH_OPCODE_CONFIG_MODEL_SUB_GET) {
2247                 BT_INFO("Mesh: Get Subscription List for BT SIG Model");
2248                 /* 1st 2 octet Company ID is 0xFFFF means, it is BT SIG Model*/
2249                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
2250                 data_len += 2;
2251         } else {
2252                 BT_INFO("Mesh: Get Subscription List for Vendor Model");
2253                 /* Vendor Model, 1st 2 octetes: Company ID, next 2 octets: Vendor Model ID */
2254                 l_put_le16(req->model & 0xFFFF0000, buffer + data_len);
2255                 data_len += 2;
2256                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
2257                 data_len += 2;
2258         }
2259
2260         ret = mesh_conf_send_message(&net_uuid,
2261                 req->primary_unicast, true, netkey_idx, buffer, data_len);
2262
2263         if (ret != OAL_STATUS_SUCCESS) {
2264                 BT_ERR("ret: %d", ret);
2265                 return BLUETOOTH_ERROR_INTERNAL;
2266         }
2267
2268         /* Queue the request with timeout */
2269         __bt_mesh_add_request(opcode, req->primary_unicast, net_uuid.uuid,
2270                         g_memdup(req, sizeof(bluetooth_mesh_model_configure_t)));
2271
2272         return BLUETOOTH_ERROR_NONE;
2273 }
2274
2275 int _bt_mesh_node_model_get_appkey_list(const char *app_cred, const char *sender,
2276                 bluetooth_mesh_model_configure_t *req)
2277 {
2278         int ret = OAL_STATUS_SUCCESS;
2279         uint16_t netkey_idx;
2280         oal_uuid_t net_uuid;
2281         uint16_t data_len;
2282         uint32_t opcode = 0;
2283         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
2284
2285         /* If Scanning is going on */
2286         if (_bt_mesh_is_provisioning() ||
2287                         _bt_mesh_is_scanning()) {
2288                 BT_ERR("Device is buzy..");
2289                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2290         }
2291
2292         _bt_mesh_util_convert_string_to_hex(req->net_uuid,
2293                 strlen(req->net_uuid), net_uuid.uuid, 16);
2294
2295         /* Insert Model ID */
2296         if (req->model >= 0xFFFF0000)
2297                 /* 1st 2 octet Company ID is 0xFFFF means, it is BT SIG Model*/
2298                 opcode = MESH_OPCODE_MODEL_APP_GET;
2299         else
2300                 /* Vendor Model, 1st 2 octetes: Company ID, next 2 octets: Vendor Model ID */
2301                 opcode = MESH_OPCODE_VENDOR_MODEL_APP_GET;
2302
2303         /* Check pending request */
2304         if (_bt_mesh_check_pending_request(opcode,
2305                                 req->primary_unicast, net_uuid.uuid)) {
2306                 BT_ERR("Device is buzy..");
2307                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2308         }
2309         /* Get Subnet index of the remote node for TX encryption */
2310         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid, req->primary_unicast);
2311         if (netkey_idx == MESH_NET_IDX_INVALID)
2312                 return BLUETOOTH_ERROR_INTERNAL;
2313
2314         data_len = _bt_mesh_util_opcode_set(opcode, buffer);
2315         /* Element Address */
2316         l_put_le16((req->primary_unicast + req->elem_index), buffer + data_len);
2317         data_len += 2;
2318
2319
2320         /* Insert Model ID */
2321         if (opcode == MESH_OPCODE_MODEL_APP_GET) {
2322                 /* 1st 2 octet Company ID is 0xFFFF means, it is BT SIG Model*/
2323                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
2324                 data_len += 2;
2325         } else {
2326                 /* Vendor Model, 1st 2 octetes: Company ID, next 2 octets: Vendor Model ID */
2327                 l_put_le16(req->model & 0xFFFF0000, buffer + data_len);
2328                 data_len += 2;
2329                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
2330                 data_len += 2;
2331         }
2332
2333         ret = mesh_conf_send_message(&net_uuid, req->primary_unicast, true, netkey_idx, buffer, data_len);
2334
2335         if (ret != OAL_STATUS_SUCCESS) {
2336                 BT_ERR("ret: %d", ret);
2337                 return BLUETOOTH_ERROR_INTERNAL;
2338         }
2339
2340         /* Queue the request with timeout */
2341         __bt_mesh_add_request(opcode, req->primary_unicast, net_uuid.uuid,
2342                         g_memdup(req, sizeof(bluetooth_mesh_model_configure_t)));
2343
2344         return BLUETOOTH_ERROR_NONE;
2345 }
2346
2347 int _bt_mesh_network_reset_node(const char *app_cred, const char *sender,
2348                 bluetooth_mesh_node_info_t *node)
2349 {
2350         int ret = OAL_STATUS_SUCCESS;
2351         uint16_t netkey_idx;
2352         oal_uuid_t net_uuid;
2353         uint16_t data_len;
2354         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
2355
2356         /* If Scanning is going on */
2357         if (_bt_mesh_is_provisioning() ||
2358                         _bt_mesh_is_scanning()) {
2359                 BT_ERR("Device is buzy..");
2360                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2361         }
2362
2363         _bt_mesh_util_convert_string_to_hex(node->net_uuid,
2364                         strlen(node->net_uuid), net_uuid.uuid, 16);
2365
2366         /* Check pending request */
2367         if (_bt_mesh_check_pending_request(MESH_OPCODE_NODE_RESET,
2368                                 node->primary_unicast, net_uuid.uuid)) {
2369                 BT_ERR("Device is buzy..");
2370                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2371         }
2372         BT_INFO("Mesh: Reset a remote Node [0x%2.2x] Elem Cnt [0x%2.2x]",
2373                         node->primary_unicast, node->num_elements);
2374         /* Get Subnet index of the remote node for TX encryption */
2375         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid, node->primary_unicast);
2376         if (netkey_idx == MESH_NET_IDX_INVALID)
2377                 return BLUETOOTH_ERROR_INTERNAL;
2378
2379         data_len = _bt_mesh_util_opcode_set(MESH_OPCODE_NODE_RESET, buffer);
2380
2381         /* Send Node Reset command 5 times to ensure reliability */
2382         for (int i = 0; i < 5; i++)
2383                 ret = mesh_conf_send_message(&net_uuid, node->primary_unicast,
2384                                 true, netkey_idx, buffer, data_len);
2385
2386         if (ret != OAL_STATUS_SUCCESS) {
2387                 BT_ERR("Mesh: Node Reset Failed!: %d", ret);
2388                 return BLUETOOTH_ERROR_INTERNAL;
2389         }
2390
2391         BT_INFO("Mesh: Node reset Done, Send Delete req: Unicast[0x%2.2x]",
2392                         node->primary_unicast);
2393
2394         ret = mesh_delete_remote_node(&net_uuid, node->primary_unicast,
2395                         node->num_elements);
2396         if (ret != OAL_STATUS_SUCCESS) {
2397                 BT_ERR("Mesh: Remote Node Deletion Failed!: %d", ret);
2398                 return BLUETOOTH_ERROR_INTERNAL;
2399         }
2400
2401         return _bt_mesh_network_remove_node_configuration(node);
2402 }
2403
2404 int _bt_mesh_node_model_appkey_execute(const char *app_cred, const char *sender,
2405                 bluetooth_mesh_model_configure_t *req)
2406 {
2407         int ret = OAL_STATUS_SUCCESS;
2408         uint16_t netkey_idx;
2409         oal_uuid_t net_uuid;
2410         uint16_t data_len;
2411         uint32_t opcode = 0;
2412         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
2413
2414         /* If Scanning is going on */
2415         if (_bt_mesh_is_provisioning() ||
2416                         _bt_mesh_is_scanning()) {
2417                 BT_ERR("Device is buzy..");
2418                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2419         }
2420
2421         _bt_mesh_util_convert_string_to_hex(req->net_uuid, strlen(req->net_uuid), net_uuid.uuid, 16);
2422
2423         /* Check pending request */
2424         if (_bt_mesh_check_pending_request(req->is_bind ? MESH_OPCODE_MODEL_APP_BIND : MESH_OPCODE_MODEL_APP_UNBIND,
2425                                 req->primary_unicast, net_uuid.uuid)) {
2426                 BT_ERR("Device is buzy..");
2427                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2428         }
2429         /* Get Subnet index of the remote node for TX encryption */
2430         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid, req->primary_unicast);
2431         if (netkey_idx == MESH_NET_IDX_INVALID)
2432                 return BLUETOOTH_ERROR_INTERNAL;
2433
2434         if (req->is_bind)
2435                 opcode = MESH_OPCODE_MODEL_APP_BIND;
2436         else
2437                 opcode = MESH_OPCODE_MODEL_APP_UNBIND;
2438
2439         data_len = _bt_mesh_util_opcode_set(opcode, buffer);
2440         /* Element Address */
2441         l_put_le16((req->primary_unicast + req->elem_index), buffer + data_len);
2442         data_len += 2;
2443
2444         /* AppKey Index  */
2445         l_put_le16(req->appkey_idx, buffer + data_len);
2446         data_len += 2;
2447
2448         /* Insert Model ID */
2449         if (req->model >= 0xFFFF0000) {
2450                 /* 1st 2 octet Company ID is 0xFFFF means, it is BT SIG Model*/
2451                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
2452                 data_len += 2;
2453         } else {
2454                 /* Vendor Model, 1st 2 octetes: Company ID, next 2 octets: Vendor Model ID */
2455                 l_put_le16(req->model & 0xFFFF0000, buffer + data_len);
2456                 data_len += 2;
2457                 l_put_le16(req->model & 0x0000FFFF, buffer + data_len);
2458                 data_len += 2;
2459         }
2460
2461         ret = mesh_conf_send_message(&net_uuid, req->primary_unicast, true, netkey_idx, buffer, data_len);
2462
2463         if (ret != OAL_STATUS_SUCCESS) {
2464                 BT_ERR("ret: %d", ret);
2465                 return BLUETOOTH_ERROR_INTERNAL;
2466         }
2467
2468         /* Queue the request with timeout */
2469         __bt_mesh_add_request(opcode, req->primary_unicast, net_uuid.uuid,
2470                         g_memdup(req, sizeof(bluetooth_mesh_model_configure_t)));
2471
2472         return BLUETOOTH_ERROR_NONE;
2473 }
2474
2475 int _bt_mesh_ttl_execute_remote_node(const char *app_cred, const char *sender,
2476                 bluetooth_mesh_node_ttl_info_t *req)
2477 {
2478         int ret = OAL_STATUS_SUCCESS;
2479         uint16_t netkey_idx;
2480         uint16_t data_len;
2481         oal_uuid_t net_uuid;
2482         uint32_t opcode = 0;
2483         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
2484
2485         /* If Scanning is going on */
2486         if (_bt_mesh_is_provisioning() ||
2487                         _bt_mesh_is_scanning()) {
2488                 BT_ERR("Device is buzy..");
2489                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2490         }
2491
2492         _bt_mesh_util_convert_string_to_hex(req->net_uuid, strlen(req->net_uuid), net_uuid.uuid, 16);
2493
2494         /* Check pending request */
2495         if (_bt_mesh_check_pending_request(req->is_set ? MESH_OPCODE_CONFIG_DEFAULT_TTL_SET : MESH_OPCODE_CONFIG_DEFAULT_TTL_GET,
2496                                 req->unicast, net_uuid.uuid)) {
2497                 BT_ERR("Device is buzy..");
2498                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2499         }
2500
2501         /* Get Subnet index of the rmeote node for TX encryption */
2502         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid, req->unicast);
2503         if (netkey_idx == MESH_NET_IDX_INVALID)
2504                 return BLUETOOTH_ERROR_INTERNAL;
2505
2506         if (req->is_set) {
2507                 opcode = MESH_OPCODE_CONFIG_DEFAULT_TTL_SET;
2508                 data_len = _bt_mesh_util_opcode_set(MESH_OPCODE_CONFIG_DEFAULT_TTL_SET, buffer);
2509                 buffer[data_len++] = req->ttl;
2510         } else {
2511                 opcode = MESH_OPCODE_CONFIG_DEFAULT_TTL_GET;
2512                 data_len = _bt_mesh_util_opcode_set(MESH_OPCODE_CONFIG_DEFAULT_TTL_GET, buffer);
2513         }
2514
2515         ret = mesh_conf_send_message(&net_uuid, req->unicast, true, netkey_idx, buffer, data_len);
2516
2517         if (ret != OAL_STATUS_SUCCESS) {
2518                 BT_ERR("ret: %d", ret);
2519                 return BLUETOOTH_ERROR_INTERNAL;
2520         }
2521
2522         /* Queue the request with timeout */
2523         __bt_mesh_add_request(opcode, req->unicast, net_uuid.uuid,
2524                         g_memdup(req, sizeof(bluetooth_mesh_node_ttl_info_t)));
2525         return BLUETOOTH_ERROR_NONE;
2526 }
2527
2528 static bool __bt_mesh_check_pending_key_cmd(uint16_t dest, bool is_netkey,
2529                 bluetooth_mesh_node_key_conf_e op,  uint8_t net_uuid[], uint32_t *opcode)
2530 {
2531         const struct mesh_config_cmd *cmd;
2532
2533         if (is_netkey) {
2534                 switch (op) {
2535                 case BLUETOOTH_MESH_NODE_KEY_ADD:
2536                         cmd = __mesh_get_command(MESH_OPCODE_NETKEY_ADD);
2537                         if (!cmd)
2538                                 return false;
2539                         if (__bt_mesh_get_request_by_response(dest, net_uuid, cmd->response)) {
2540                                 BT_ERR("Mesh:Another Key Configuration command is pending\n");
2541                                 return true;
2542                         }
2543                         *opcode = MESH_OPCODE_NETKEY_ADD;
2544                         return false;
2545                 case BLUETOOTH_MESH_NODE_KEY_DELETE:
2546                         cmd = __mesh_get_command(MESH_OPCODE_NETKEY_DELETE);
2547                         if (!cmd)
2548                                 return false;
2549                         if (__bt_mesh_get_request_by_response(dest, net_uuid, cmd->response)) {
2550                                 BT_ERR("Mesh:Another Key Configuration command is pending\n");
2551                                 return true;
2552                         }
2553                         *opcode = MESH_OPCODE_NETKEY_DELETE;
2554                         return false;
2555                 case BLUETOOTH_MESH_NODE_KEY_UPDATE:
2556                         cmd = __mesh_get_command(MESH_OPCODE_NETKEY_UPDATE);
2557                         if (!cmd)
2558                                 return false;
2559                         if (__bt_mesh_get_request_by_response(dest, net_uuid, cmd->response)) {
2560                                 BT_ERR("Mesh:Another Key Configuration command is pending\n");
2561                                 return true;
2562                         }
2563                         *opcode = MESH_OPCODE_NETKEY_UPDATE;
2564                         return false;
2565                 }
2566         } else {
2567                 switch (op) {
2568                 case BLUETOOTH_MESH_NODE_KEY_ADD:
2569                         cmd = __mesh_get_command(MESH_OPCODE_APPKEY_ADD);
2570                         if (!cmd)
2571                                 return false;
2572                         if (__bt_mesh_get_request_by_response(dest, net_uuid, cmd->response)) {
2573                                 BT_ERR("Mesh:Another Key Configuration command is pending\n");
2574                                 return true;
2575                         }
2576                         *opcode = MESH_OPCODE_APPKEY_ADD;
2577                         return false;
2578                 case BLUETOOTH_MESH_NODE_KEY_DELETE:
2579                         cmd = __mesh_get_command(MESH_OPCODE_APPKEY_DELETE);
2580                         if (!cmd)
2581                                 return false;
2582                         if (__bt_mesh_get_request_by_response(dest, net_uuid, cmd->response)) {
2583                                 BT_ERR("Mesh:Another Key Configuration command is pending\n");
2584                                 return true;
2585                         }
2586                         *opcode = MESH_OPCODE_APPKEY_DELETE;
2587                         return false;
2588                 case BLUETOOTH_MESH_NODE_KEY_UPDATE:
2589                         cmd = __mesh_get_command(MESH_OPCODE_APPKEY_UPDATE);
2590                         if (!cmd)
2591                                 return false;
2592                         if (__bt_mesh_get_request_by_response(dest, net_uuid, cmd->response)) {
2593                                 BT_ERR("Mesh:Another Key Configuration command is pending\n");
2594                                 return true;
2595                         }
2596                         *opcode = MESH_OPCODE_APPKEY_UPDATE;
2597                         return false;
2598                 }
2599         }
2600         return false;
2601 }
2602
2603 int _bt_mesh_node_configure_key(const char *app_cred, const char *sender,
2604                 bluetooth_mesh_key_configure_t *req)
2605 {
2606         int ret = OAL_STATUS_SUCCESS;
2607         uint16_t netkey_idx;
2608         uint16_t bound_netkey_idx = 0x0000;
2609         oal_uuid_t net_uuid;
2610         uint32_t opcode = 0;
2611         bool update;
2612         uint16_t data_len;
2613         uint8_t buffer[MESH_CONFIG_BUFFER_MAX_LEN];
2614
2615         /* If Scanning is going on */
2616         if (_bt_mesh_is_provisioning() ||
2617                         _bt_mesh_is_scanning()) {
2618                 BT_ERR("Device is buzy..");
2619                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2620         }
2621
2622         _bt_mesh_util_convert_string_to_hex(req->net_uuid, strlen(req->net_uuid), net_uuid.uuid, 16);
2623
2624         if (req->is_netkey && !_bt_mesh_keys_subnet_exists(net_uuid.uuid, req->netkey_idx)) {
2625                 BT_ERR("Local Subnet not found..");
2626                 return BLUETOOTH_ERROR_INVALID_PARAM;
2627         }
2628
2629         /* For Appkey Configuration, check for available bound netkey */
2630         if (!req->is_netkey) {
2631                 bound_netkey_idx = _bt_mesh_keys_get_bound_key(net_uuid.uuid, req->appkey_idx);
2632                 if (bound_netkey_idx == MESH_NET_IDX_INVALID) {
2633                         BT_ERR("Local AppKey not found..");
2634                         return BLUETOOTH_ERROR_INVALID_PARAM;
2635                 }
2636         }
2637
2638         /* Check pending request */
2639         if (__bt_mesh_check_pending_key_cmd(req->primary_unicast,
2640                                 req->is_netkey, req->op, net_uuid.uuid, &opcode)) {
2641                 BT_ERR("Device is buzy..");
2642                 return BLUETOOTH_ERROR_DEVICE_BUSY;
2643         }
2644
2645         /* Get Subnet index of the rmeote node for TX encryption */
2646         netkey_idx = _bt_mesh_node_get_subnet_idx(net_uuid.uuid, req->primary_unicast);
2647         if (netkey_idx == MESH_NET_IDX_INVALID)
2648                 return BLUETOOTH_ERROR_INTERNAL;
2649
2650         /* Handle Key (App/Net) Delete Commands: Configuration Message  */
2651         if (opcode == MESH_OPCODE_NETKEY_DELETE || opcode == MESH_OPCODE_APPKEY_DELETE) {
2652                 data_len = _bt_mesh_util_opcode_set(opcode, buffer);
2653                 if (req->is_netkey) {
2654                         l_put_le16(req->netkey_idx, buffer + data_len);
2655                         data_len += 2;
2656                 } else {
2657                         buffer[data_len] = bound_netkey_idx;
2658                         buffer[data_len + 1] = ((bound_netkey_idx >> 8) & 0xf) | ((req->appkey_idx << 4) & 0xf0);
2659                         buffer[data_len + 2] = req->appkey_idx >> 4;
2660
2661                         data_len += 3;
2662                 }
2663                 ret = mesh_conf_send_message(&net_uuid, req->primary_unicast, true, netkey_idx, buffer, data_len);
2664         } else {
2665                 /* Handle Key (App/Net) Update & Add Commands: Key Config message  */
2666                 update = (opcode == MESH_OPCODE_NETKEY_UPDATE || opcode == MESH_OPCODE_APPKEY_UPDATE);
2667                 ret = mesh_conf_send_key_message(&net_uuid, req->primary_unicast, req->is_netkey,
2668                                 update, req->is_netkey ? req->netkey_idx : req->appkey_idx, netkey_idx);
2669         }
2670         if (ret != OAL_STATUS_SUCCESS) {
2671                 BT_ERR("ret: %d", ret);
2672                 return BLUETOOTH_ERROR_INTERNAL;
2673         }
2674
2675         /* Queue the request with timeout */
2676         __bt_mesh_add_request(opcode, req->primary_unicast,  net_uuid.uuid,
2677                 g_memdup(req, sizeof(bluetooth_mesh_key_configure_t)));
2678         return BLUETOOTH_ERROR_NONE;
2679 }