blob: 0d9bbf38c60d90ab891d038eef8c54bdfaa81297 [file] [log] [blame]
Hemant Gupta2dc99992014-04-18 12:54:08 +05301/******************************************************************************
2 *
Jakub Pawlowski5b790fe2017-09-18 09:00:20 -07003 * Copyright 2014 The Android Open Source Project
4 * Copyright 2003-2012 Broadcom Corporation
Hemant Gupta2dc99992014-04-18 12:54:08 +05305 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at:
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *
18 ******************************************************************************/
19
20/******************************************************************************
21 *
22 * This file contains action functions for MCE.
23 *
24 ******************************************************************************/
25
Hemant Gupta2dc99992014-04-18 12:54:08 +053026#include <arpa/inet.h>
Myles Watsoncd1fd072016-11-09 13:17:43 -080027#include <hardware/bluetooth.h>
Hemant Gupta2dc99992014-04-18 12:54:08 +053028
Myles Watsoncd1fd072016-11-09 13:17:43 -080029#include <string.h>
Pavlin Radoslavov258c2532015-09-27 20:59:05 -070030#include "bt_common.h"
Myles Watsoncd1fd072016-11-09 13:17:43 -080031#include "bt_types.h"
Hemant Gupta2dc99992014-04-18 12:54:08 +053032#include "bta_api.h"
33#include "bta_mce_api.h"
34#include "bta_mce_int.h"
Myles Watsoncd1fd072016-11-09 13:17:43 -080035#include "bta_sys.h"
Hemant Gupta2dc99992014-04-18 12:54:08 +053036#include "btm_api.h"
37#include "btm_int.h"
38#include "sdp_api.h"
Myles Watsoncd1fd072016-11-09 13:17:43 -080039#include "utl.h"
Hemant Gupta2dc99992014-04-18 12:54:08 +053040
Jakub Pawlowski819e2ec2017-07-10 09:56:09 -070041using bluetooth::Uuid;
42
Hemant Gupta2dc99992014-04-18 12:54:08 +053043/*****************************************************************************
Myles Watson8af480e2016-11-09 10:40:23 -080044 * Constants
45 ****************************************************************************/
Hemant Gupta2dc99992014-04-18 12:54:08 +053046
Jakub Pawlowski819e2ec2017-07-10 09:56:09 -070047static const Uuid bta_mce_mas_uuid =
48 Uuid::From16Bit(UUID_SERVCLASS_MESSAGE_ACCESS);
Hemant Gupta2dc99992014-04-18 12:54:08 +053049
50/*******************************************************************************
Myles Watson8af480e2016-11-09 10:40:23 -080051 *
52 * Function bta_mce_search_cback
53 *
54 * Description Callback from btm after search is completed
55 *
56 * Returns void
57 *
58 ******************************************************************************/
Hemant Gupta2dc99992014-04-18 12:54:08 +053059
Myles Watsoncd1fd072016-11-09 13:17:43 -080060static void bta_mce_search_cback(uint16_t result, void* user_data) {
61 tSDP_DISC_REC* p_rec = NULL;
62 tBTA_MCE_MAS_DISCOVERY_COMP evt_data;
63 int found = 0;
Hemant Gupta2dc99992014-04-18 12:54:08 +053064
Myles Watsoncd1fd072016-11-09 13:17:43 -080065 APPL_TRACE_DEBUG("bta_mce_start_discovery_cback res: 0x%x", result);
Hemant Gupta2dc99992014-04-18 12:54:08 +053066
Myles Watsoncd1fd072016-11-09 13:17:43 -080067 bta_mce_cb.sdp_active = BTA_MCE_SDP_ACT_NONE;
Hemant Gupta2dc99992014-04-18 12:54:08 +053068
Myles Watsoncd1fd072016-11-09 13:17:43 -080069 if (bta_mce_cb.p_dm_cback == NULL) return;
Hemant Gupta2dc99992014-04-18 12:54:08 +053070
Myles Watsoncd1fd072016-11-09 13:17:43 -080071 evt_data.status = BTA_MCE_FAILURE;
Jakub Pawlowski98b1b942017-06-16 10:54:34 -070072 evt_data.remote_addr = bta_mce_cb.remote_addr;
Myles Watsoncd1fd072016-11-09 13:17:43 -080073 evt_data.num_mas = 0;
Hemant Gupta2dc99992014-04-18 12:54:08 +053074
Myles Watsoncd1fd072016-11-09 13:17:43 -080075 if (result == SDP_SUCCESS || result == SDP_DB_FULL) {
76 do {
77 tSDP_DISC_ATTR* p_attr;
78 tSDP_PROTOCOL_ELEM pe;
Hemant Gupta2dc99992014-04-18 12:54:08 +053079
Jakub Pawlowski819e2ec2017-07-10 09:56:09 -070080 p_rec = SDP_FindServiceUUIDInDb(p_bta_mce_cfg->p_sdp_db, bta_mce_mas_uuid,
81 p_rec);
Hemant Gupta2dc99992014-04-18 12:54:08 +053082
Myles Watsoncd1fd072016-11-09 13:17:43 -080083 APPL_TRACE_DEBUG("p_rec:%p", p_rec);
Hemant Gupta2dc99992014-04-18 12:54:08 +053084
Myles Watsoncd1fd072016-11-09 13:17:43 -080085 if (p_rec == NULL) break;
Hemant Gupta2dc99992014-04-18 12:54:08 +053086
Myles Watsoncd1fd072016-11-09 13:17:43 -080087 if (!SDP_FindProtocolListElemInRec(p_rec, UUID_PROTOCOL_RFCOMM, &pe))
88 continue;
Hemant Gupta2dc99992014-04-18 12:54:08 +053089
Myles Watsoncd1fd072016-11-09 13:17:43 -080090 evt_data.mas[found].scn = pe.params[0];
Hemant Gupta2dc99992014-04-18 12:54:08 +053091
Marie Janssenf33b6f42016-11-22 15:01:42 -080092 p_attr = SDP_FindAttributeInRec(p_rec, ATTR_ID_SERVICE_NAME);
93 if (p_attr == NULL) continue;
Hemant Gupta2dc99992014-04-18 12:54:08 +053094
Myles Watsoncd1fd072016-11-09 13:17:43 -080095 evt_data.mas[found].p_srv_name = (char*)p_attr->attr_value.v.array;
96 evt_data.mas[found].srv_name_len =
97 SDP_DISC_ATTR_LEN(p_attr->attr_len_type);
Hemant Gupta2dc99992014-04-18 12:54:08 +053098
Marie Janssenf33b6f42016-11-22 15:01:42 -080099 p_attr = SDP_FindAttributeInRec(p_rec, ATTR_ID_MAS_INSTANCE_ID);
100 if (p_attr == NULL) break;
Hemant Gupta2dc99992014-04-18 12:54:08 +0530101
Myles Watsoncd1fd072016-11-09 13:17:43 -0800102 evt_data.mas[found].instance_id = p_attr->attr_value.v.u8;
Hemant Gupta2dc99992014-04-18 12:54:08 +0530103
Marie Janssenf33b6f42016-11-22 15:01:42 -0800104 p_attr = SDP_FindAttributeInRec(p_rec, ATTR_ID_SUPPORTED_MSG_TYPE);
105 if (p_attr == NULL) break;
Hemant Gupta2dc99992014-04-18 12:54:08 +0530106
Myles Watsoncd1fd072016-11-09 13:17:43 -0800107 evt_data.mas[found].msg_type = p_attr->attr_value.v.u8;
Hemant Gupta2dc99992014-04-18 12:54:08 +0530108
Myles Watsoncd1fd072016-11-09 13:17:43 -0800109 found++;
110 } while (p_rec != NULL && found < BTA_MCE_MAX_MAS_INSTANCES);
Hemant Gupta2dc99992014-04-18 12:54:08 +0530111
Myles Watsoncd1fd072016-11-09 13:17:43 -0800112 evt_data.num_mas = found;
113 evt_data.status = BTA_MCE_SUCCESS;
114 }
Hemant Gupta2dc99992014-04-18 12:54:08 +0530115
Myles Watson8d749042017-09-19 10:01:28 -0700116 tBTA_MCE bta_mce;
117 bta_mce.mas_disc_comp = evt_data;
118 bta_mce_cb.p_dm_cback(BTA_MCE_MAS_DISCOVERY_COMP_EVT, &bta_mce, user_data);
Hemant Gupta2dc99992014-04-18 12:54:08 +0530119}
120
121/*******************************************************************************
Myles Watson8af480e2016-11-09 10:40:23 -0800122 *
123 * Function bta_mce_enable
124 *
125 * Description Initializes the MCE I/F
126 *
127 * Returns void
128 *
129 ******************************************************************************/
Myles Watsoncd1fd072016-11-09 13:17:43 -0800130void bta_mce_enable(tBTA_MCE_MSG* p_data) {
131 tBTA_MCE_STATUS status = BTA_MCE_SUCCESS;
132 bta_mce_cb.p_dm_cback = p_data->enable.p_cback;
Myles Watson8d749042017-09-19 10:01:28 -0700133 tBTA_MCE bta_mce;
134 bta_mce.status = status;
135 bta_mce_cb.p_dm_cback(BTA_MCE_ENABLE_EVT, &bta_mce, NULL);
Hemant Gupta2dc99992014-04-18 12:54:08 +0530136}
137
138/*******************************************************************************
Myles Watson8af480e2016-11-09 10:40:23 -0800139 *
140 * Function bta_mce_get_remote_mas_instances
141 *
142 * Description Discovers MAS instances on remote device
143 *
144 * Returns void
145 *
146 ******************************************************************************/
Myles Watsoncd1fd072016-11-09 13:17:43 -0800147void bta_mce_get_remote_mas_instances(tBTA_MCE_MSG* p_data) {
148 if (p_data == NULL) {
Hemant Gupta2dc99992014-04-18 12:54:08 +0530149 APPL_TRACE_DEBUG("MCE control block handle is null");
150 return;
Myles Watsoncd1fd072016-11-09 13:17:43 -0800151 }
152 tBTA_MCE_STATUS status = BTA_MCE_FAILURE;
Hemant Gupta2dc99992014-04-18 12:54:08 +0530153
Myles Watsoncd1fd072016-11-09 13:17:43 -0800154 APPL_TRACE_DEBUG("%s in, sdp_active:%d", __func__, bta_mce_cb.sdp_active);
Hemant Gupta2dc99992014-04-18 12:54:08 +0530155
Myles Watsoncd1fd072016-11-09 13:17:43 -0800156 if (bta_mce_cb.sdp_active != BTA_MCE_SDP_ACT_NONE) {
157 /* SDP is still in progress */
158 status = BTA_MCE_BUSY;
Myles Watson8d749042017-09-19 10:01:28 -0700159 if (bta_mce_cb.p_dm_cback) {
160 tBTA_MCE bta_mce;
161 bta_mce.status = status;
162 bta_mce_cb.p_dm_cback(BTA_MCE_MAS_DISCOVERY_COMP_EVT, &bta_mce, NULL);
163 }
Hemant Gupta2dc99992014-04-18 12:54:08 +0530164
Myles Watsoncd1fd072016-11-09 13:17:43 -0800165 return;
166 }
Hemant Gupta2dc99992014-04-18 12:54:08 +0530167
Myles Watsoncd1fd072016-11-09 13:17:43 -0800168 bta_mce_cb.sdp_active = BTA_MCE_SDP_ACT_YES;
Jakub Pawlowski98b1b942017-06-16 10:54:34 -0700169 bta_mce_cb.remote_addr = p_data->get_rmt_mas.bd_addr;
Hemant Gupta2dc99992014-04-18 12:54:08 +0530170
Myles Watsoncd1fd072016-11-09 13:17:43 -0800171 SDP_InitDiscoveryDb(p_bta_mce_cfg->p_sdp_db, p_bta_mce_cfg->sdp_db_size, 1,
Jakub Pawlowski819e2ec2017-07-10 09:56:09 -0700172 &bta_mce_mas_uuid, 0, NULL);
Hemant Gupta2dc99992014-04-18 12:54:08 +0530173
Jakub Pawlowski98b1b942017-06-16 10:54:34 -0700174 if (!SDP_ServiceSearchAttributeRequest2(p_data->get_rmt_mas.bd_addr,
175 p_bta_mce_cfg->p_sdp_db,
176 bta_mce_search_cback, NULL)) {
Myles Watsoncd1fd072016-11-09 13:17:43 -0800177 bta_mce_cb.sdp_active = BTA_MCE_SDP_ACT_NONE;
Hemant Gupta2dc99992014-04-18 12:54:08 +0530178
Myles Watsoncd1fd072016-11-09 13:17:43 -0800179 /* failed to start SDP. report the failure right away */
Myles Watson8d749042017-09-19 10:01:28 -0700180 if (bta_mce_cb.p_dm_cback) {
181 tBTA_MCE bta_mce;
182 bta_mce.status = status;
183 bta_mce_cb.p_dm_cback(BTA_MCE_MAS_DISCOVERY_COMP_EVT, &bta_mce, NULL);
184 }
Myles Watsoncd1fd072016-11-09 13:17:43 -0800185 }
186 /*
187 else report the result when the cback is called
188 */
Hemant Gupta2dc99992014-04-18 12:54:08 +0530189}