blob: 3a046b693aae2ffd2ab781a304c540749925d4f3 [file] [log] [blame]
The Android Open Source Project5738f832012-12-12 16:00:35 -08001/******************************************************************************
2 *
3 * Copyright (C) 1999-2012 Broadcom Corporation
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 ******************************************************************************/
18
19/******************************************************************************
20 *
21 * This file contains internally used SDP definitions
22 *
23 ******************************************************************************/
24
Myles Watson911d1ae2016-11-28 16:44:40 -080025#ifndef SDP_INT_H
26#define SDP_INT_H
The Android Open Source Project5738f832012-12-12 16:00:35 -080027
28#include "bt_target.h"
Myles Watson911d1ae2016-11-28 16:44:40 -080029#include "l2c_api.h"
Pavlin Radoslavov78bcff72015-12-04 17:36:34 -080030#include "osi/include/alarm.h"
The Android Open Source Project5738f832012-12-12 16:00:35 -080031#include "sdp_api.h"
The Android Open Source Project5738f832012-12-12 16:00:35 -080032
The Android Open Source Project5738f832012-12-12 16:00:35 -080033/* Continuation length - we use a 2-byte offset */
Myles Watson911d1ae2016-11-28 16:44:40 -080034#define SDP_CONTINUATION_LEN 2
35#define SDP_MAX_CONTINUATION_LEN 16 /* As per the spec */
The Android Open Source Project5738f832012-12-12 16:00:35 -080036
37/* Timeout definitions. */
Myles Watson911d1ae2016-11-28 16:44:40 -080038#define SDP_INACT_TIMEOUT_MS (30 * 1000) /* Inactivity timeout (in ms) */
The Android Open Source Project5738f832012-12-12 16:00:35 -080039
40/* Define the Out-Flow default values. */
Myles Watson911d1ae2016-11-28 16:44:40 -080041#define SDP_OFLOW_QOS_FLAG 0
42#define SDP_OFLOW_SERV_TYPE 0
43#define SDP_OFLOW_TOKEN_RATE 0
44#define SDP_OFLOW_TOKEN_BUCKET_SIZE 0
45#define SDP_OFLOW_PEAK_BANDWIDTH 0
46#define SDP_OFLOW_LATENCY 0
47#define SDP_OFLOW_DELAY_VARIATION 0
The Android Open Source Project5738f832012-12-12 16:00:35 -080048
49/* Define the In-Flow default values. */
Myles Watson911d1ae2016-11-28 16:44:40 -080050#define SDP_IFLOW_QOS_FLAG 0
51#define SDP_IFLOW_SERV_TYPE 0
52#define SDP_IFLOW_TOKEN_RATE 0
53#define SDP_IFLOW_TOKEN_BUCKET_SIZE 0
54#define SDP_IFLOW_PEAK_BANDWIDTH 0
55#define SDP_IFLOW_LATENCY 0
56#define SDP_IFLOW_DELAY_VARIATION 0
The Android Open Source Project5738f832012-12-12 16:00:35 -080057
Myles Watson911d1ae2016-11-28 16:44:40 -080058#define SDP_LINK_TO 0
The Android Open Source Project5738f832012-12-12 16:00:35 -080059
60/* Define the type of device notification. */
61/* (Inquiry Scan and Page Scan) */
Myles Watson911d1ae2016-11-28 16:44:40 -080062#define SDP_DEVICE_NOTI_LEN \
63 (sizeof(BT_HDR) + HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_WRITE_PARAM1)
The Android Open Source Project5738f832012-12-12 16:00:35 -080064
Myles Watson911d1ae2016-11-28 16:44:40 -080065#define SDP_DEVICE_NOTI_FLAG 0x03
The Android Open Source Project5738f832012-12-12 16:00:35 -080066
67/* Define the Protocol Data Unit (PDU) types.
68*/
Myles Watson911d1ae2016-11-28 16:44:40 -080069#define SDP_PDU_ERROR_RESPONSE 0x01
70#define SDP_PDU_SERVICE_SEARCH_REQ 0x02
71#define SDP_PDU_SERVICE_SEARCH_RSP 0x03
72#define SDP_PDU_SERVICE_ATTR_REQ 0x04
73#define SDP_PDU_SERVICE_ATTR_RSP 0x05
74#define SDP_PDU_SERVICE_SEARCH_ATTR_REQ 0x06
75#define SDP_PDU_SERVICE_SEARCH_ATTR_RSP 0x07
The Android Open Source Project5738f832012-12-12 16:00:35 -080076
77/* Max UUIDs and attributes we support per sequence */
Myles Watson911d1ae2016-11-28 16:44:40 -080078#define MAX_UUIDS_PER_SEQ 16
79#define MAX_ATTR_PER_SEQ 16
The Android Open Source Project5738f832012-12-12 16:00:35 -080080
81/* Max length we support for any attribute */
The Android Open Source Project5738f832012-12-12 16:00:35 -080082#ifdef SDP_MAX_ATTR_LEN
83#define MAX_ATTR_LEN SDP_MAX_ATTR_LEN
84#else
Myles Watson911d1ae2016-11-28 16:44:40 -080085#define MAX_ATTR_LEN 256
The Android Open Source Project5738f832012-12-12 16:00:35 -080086#endif
The Android Open Source Project5738f832012-12-12 16:00:35 -080087
88/* Internal UUID sequence representation */
Myles Watson911d1ae2016-11-28 16:44:40 -080089typedef struct {
90 uint16_t len;
91 uint8_t value[MAX_UUID_SIZE];
The Android Open Source Project5738f832012-12-12 16:00:35 -080092} tUID_ENT;
93
Myles Watson911d1ae2016-11-28 16:44:40 -080094typedef struct {
95 uint16_t num_uids;
96 tUID_ENT uuid_entry[MAX_UUIDS_PER_SEQ];
The Android Open Source Project5738f832012-12-12 16:00:35 -080097} tSDP_UUID_SEQ;
98
The Android Open Source Project5738f832012-12-12 16:00:35 -080099/* Internal attribute sequence definitions */
Myles Watson911d1ae2016-11-28 16:44:40 -0800100typedef struct {
101 uint16_t start;
102 uint16_t end;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800103} tATT_ENT;
104
Myles Watson911d1ae2016-11-28 16:44:40 -0800105typedef struct {
106 uint16_t num_attr;
107 tATT_ENT attr_entry[MAX_ATTR_PER_SEQ];
The Android Open Source Project5738f832012-12-12 16:00:35 -0800108} tSDP_ATTR_SEQ;
109
The Android Open Source Project5738f832012-12-12 16:00:35 -0800110/* Define the attribute element of the SDP database record */
Myles Watson911d1ae2016-11-28 16:44:40 -0800111typedef struct {
112 uint32_t len; /* Number of bytes in the entry */
113 uint8_t* value_ptr; /* Points to attr_pad */
114 uint16_t id;
115 uint8_t type;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800116} tSDP_ATTRIBUTE;
117
118/* An SDP record consists of a handle, and 1 or more attributes */
Myles Watson911d1ae2016-11-28 16:44:40 -0800119typedef struct {
120 uint32_t record_handle;
121 uint32_t free_pad_ptr;
122 uint16_t num_attributes;
123 tSDP_ATTRIBUTE attribute[SDP_MAX_REC_ATTR];
124 uint8_t attr_pad[SDP_MAX_PAD_LEN];
The Android Open Source Project5738f832012-12-12 16:00:35 -0800125} tSDP_RECORD;
126
The Android Open Source Project5738f832012-12-12 16:00:35 -0800127/* Define the SDP database */
Myles Watson911d1ae2016-11-28 16:44:40 -0800128typedef struct {
129 uint32_t
130 di_primary_handle; /* Device ID Primary record or NULL if nonexistent */
131 uint16_t num_records;
132 tSDP_RECORD record[SDP_MAX_RECORDS];
The Android Open Source Project5738f832012-12-12 16:00:35 -0800133} tSDP_DB;
134
Myles Watson911d1ae2016-11-28 16:44:40 -0800135enum {
136 SDP_IS_SEARCH,
137 SDP_IS_ATTR_SEARCH,
The Android Open Source Project5738f832012-12-12 16:00:35 -0800138};
139
Marie Janssend19e0782016-07-15 12:48:27 -0700140#if (SDP_SERVER_ENABLED == TRUE)
The Android Open Source Project5738f832012-12-12 16:00:35 -0800141/* Continuation information for the SDP server response */
Myles Watson911d1ae2016-11-28 16:44:40 -0800142typedef struct {
143 uint16_t next_attr_index; /* attr index for next continuation response */
144 uint16_t next_attr_start_id; /* attr id to start with for the attr index in
145 next cont. response */
146 tSDP_RECORD* prev_sdp_rec; /* last sdp record that was completely sent in the
147 response */
148 bool last_attr_seq_desc_sent; /* whether attr seq length has been sent
149 previously */
150 uint16_t attr_offset; /* offset within the attr to keep trak of partial
151 attributes in the responses */
The Android Open Source Project5738f832012-12-12 16:00:35 -0800152} tSDP_CONT_INFO;
Myles Watson911d1ae2016-11-28 16:44:40 -0800153#endif /* SDP_SERVER_ENABLED == TRUE */
The Android Open Source Project5738f832012-12-12 16:00:35 -0800154
155/* Define the SDP Connection Control Block */
Myles Watson911d1ae2016-11-28 16:44:40 -0800156typedef struct {
157#define SDP_STATE_IDLE 0
158#define SDP_STATE_CONN_SETUP 1
159#define SDP_STATE_CFG_SETUP 2
160#define SDP_STATE_CONNECTED 3
161 uint8_t con_state;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800162
Myles Watson911d1ae2016-11-28 16:44:40 -0800163#define SDP_FLAGS_IS_ORIG 0x01
164#define SDP_FLAGS_HIS_CFG_DONE 0x02
165#define SDP_FLAGS_MY_CFG_DONE 0x04
166 uint8_t con_flags;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800167
Jakub Pawlowski9e030fd2017-06-24 17:30:18 -0700168 RawAddress device_address;
Myles Watson911d1ae2016-11-28 16:44:40 -0800169 alarm_t* sdp_conn_timer;
170 uint16_t rem_mtu_size;
171 uint16_t connection_id;
172 uint16_t list_len; /* length of the response in the GKI buffer */
173 uint8_t* rsp_list; /* pointer to GKI buffer holding response */
The Android Open Source Project5738f832012-12-12 16:00:35 -0800174
Myles Watson911d1ae2016-11-28 16:44:40 -0800175 tSDP_DISCOVERY_DB* p_db; /* Database to save info into */
176 tSDP_DISC_CMPL_CB* p_cb; /* Callback for discovery done */
177 tSDP_DISC_CMPL_CB2*
178 p_cb2; /* Callback for discovery done piggy back with the user data */
179 void* user_data; /* piggy back user data */
180 uint32_t
181 handles[SDP_MAX_DISC_SERVER_RECS]; /* Discovered server record handles */
182 uint16_t num_handles; /* Number of server handles */
183 uint16_t cur_handle; /* Current handle being processed */
184 uint16_t transaction_id;
185 uint16_t disconnect_reason; /* Disconnect reason */
Marie Janssend19e0782016-07-15 12:48:27 -0700186#if (SDP_BROWSE_PLUS == TRUE)
Myles Watson911d1ae2016-11-28 16:44:40 -0800187 uint16_t cur_uuid_idx;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800188#endif
189
Myles Watson911d1ae2016-11-28 16:44:40 -0800190#define SDP_DISC_WAIT_CONN 0
191#define SDP_DISC_WAIT_HANDLES 1
192#define SDP_DISC_WAIT_ATTR 2
193#define SDP_DISC_WAIT_SEARCH_ATTR 3
194#define SDP_DISC_WAIT_CANCEL 5
The Android Open Source Project5738f832012-12-12 16:00:35 -0800195
Myles Watson911d1ae2016-11-28 16:44:40 -0800196 uint8_t disc_state;
197 uint8_t is_attr_search;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800198
Marie Janssend19e0782016-07-15 12:48:27 -0700199#if (SDP_SERVER_ENABLED == TRUE)
Myles Watson911d1ae2016-11-28 16:44:40 -0800200 uint16_t cont_offset; /* Continuation state data in the server response */
201 tSDP_CONT_INFO cont_info; /* structure to hold continuation information for
202 the server response */
203#endif /* SDP_SERVER_ENABLED == TRUE */
The Android Open Source Project5738f832012-12-12 16:00:35 -0800204
205} tCONN_CB;
206
The Android Open Source Project5738f832012-12-12 16:00:35 -0800207/* The main SDP control block */
Myles Watson911d1ae2016-11-28 16:44:40 -0800208typedef struct {
209 tL2CAP_CFG_INFO l2cap_my_cfg; /* My L2CAP config */
210 tCONN_CB ccb[SDP_MAX_CONNECTIONS];
Marie Janssend19e0782016-07-15 12:48:27 -0700211#if (SDP_SERVER_ENABLED == TRUE)
Myles Watson911d1ae2016-11-28 16:44:40 -0800212 tSDP_DB server_db;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800213#endif
Myles Watson911d1ae2016-11-28 16:44:40 -0800214 tL2CAP_APPL_INFO reg_info; /* L2CAP Registration info */
215 uint16_t max_attr_list_size; /* Max attribute list size to use */
216 uint16_t max_recs_per_search; /* Max records we want per seaarch */
217 uint8_t trace_level;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800218} tSDP_CB;
219
The Android Open Source Project5738f832012-12-12 16:00:35 -0800220/* Global SDP data */
Myles Watson911d1ae2016-11-28 16:44:40 -0800221extern tSDP_CB sdp_cb;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800222
Pavlin Radoslavovb2a292b2016-10-14 19:34:48 -0700223/* Functions provided by sdp_main.cc */
Myles Watson911d1ae2016-11-28 16:44:40 -0800224extern void sdp_init(void);
225extern void sdp_disconnect(tCONN_CB* p_ccb, uint16_t reason);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800226
Marie Janssend19e0782016-07-15 12:48:27 -0700227#if (SDP_DEBUG == TRUE)
Myles Watson911d1ae2016-11-28 16:44:40 -0800228extern uint16_t sdp_set_max_attr_list_size(uint16_t max_size);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800229#endif
230
Pavlin Radoslavovb2a292b2016-10-14 19:34:48 -0700231/* Functions provided by sdp_conn.cc
The Android Open Source Project5738f832012-12-12 16:00:35 -0800232*/
Myles Watson911d1ae2016-11-28 16:44:40 -0800233extern void sdp_conn_rcv_l2e_conn_ind(BT_HDR* p_msg);
234extern void sdp_conn_rcv_l2e_conn_cfm(BT_HDR* p_msg);
235extern void sdp_conn_rcv_l2e_disc(BT_HDR* p_msg);
236extern void sdp_conn_rcv_l2e_config_ind(BT_HDR* p_msg);
237extern void sdp_conn_rcv_l2e_config_cfm(BT_HDR* p_msg);
238extern void sdp_conn_rcv_l2e_conn_failed(BT_HDR* p_msg);
239extern void sdp_conn_rcv_l2e_connected(BT_HDR* p_msg);
240extern void sdp_conn_rcv_l2e_conn_failed(BT_HDR* p_msg);
241extern void sdp_conn_rcv_l2e_data(BT_HDR* p_msg);
242extern void sdp_conn_timer_timeout(void* data);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800243
Jakub Pawlowski9e030fd2017-06-24 17:30:18 -0700244extern tCONN_CB* sdp_conn_originate(const RawAddress& p_bd_addr);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800245
Pavlin Radoslavovb2a292b2016-10-14 19:34:48 -0700246/* Functions provided by sdp_utils.cc
The Android Open Source Project5738f832012-12-12 16:00:35 -0800247*/
Myles Watson911d1ae2016-11-28 16:44:40 -0800248extern tCONN_CB* sdpu_find_ccb_by_cid(uint16_t cid);
249extern tCONN_CB* sdpu_find_ccb_by_db(tSDP_DISCOVERY_DB* p_db);
250extern tCONN_CB* sdpu_allocate_ccb(void);
251extern void sdpu_release_ccb(tCONN_CB* p_ccb);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800252
Myles Watson911d1ae2016-11-28 16:44:40 -0800253extern uint8_t* sdpu_build_attrib_seq(uint8_t* p_out, uint16_t* p_attr,
254 uint16_t num_attrs);
255extern uint8_t* sdpu_build_attrib_entry(uint8_t* p_out, tSDP_ATTRIBUTE* p_attr);
256extern void sdpu_build_n_send_error(tCONN_CB* p_ccb, uint16_t trans_num,
257 uint16_t error_code, char* p_error_text);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800258
Myles Watson911d1ae2016-11-28 16:44:40 -0800259extern uint8_t* sdpu_extract_attr_seq(uint8_t* p, uint16_t param_len,
260 tSDP_ATTR_SEQ* p_seq);
261extern uint8_t* sdpu_extract_uid_seq(uint8_t* p, uint16_t param_len,
262 tSDP_UUID_SEQ* p_seq);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800263
Myles Watson911d1ae2016-11-28 16:44:40 -0800264extern uint8_t* sdpu_get_len_from_type(uint8_t* p, uint8_t type,
265 uint32_t* p_len);
266extern bool sdpu_is_base_uuid(uint8_t* p_uuid);
267extern bool sdpu_compare_uuid_arrays(uint8_t* p_uuid1, uint32_t len1,
268 uint8_t* p_uuid2, uint16_t len2);
269extern bool sdpu_compare_bt_uuids(tBT_UUID* p_uuid1, tBT_UUID* p_uuid2);
270extern bool sdpu_compare_uuid_with_attr(tBT_UUID* p_btuuid,
271 tSDP_DISC_ATTR* p_attr);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800272
Myles Watson911d1ae2016-11-28 16:44:40 -0800273extern void sdpu_sort_attr_list(uint16_t num_attr, tSDP_DISCOVERY_DB* p_db);
274extern uint16_t sdpu_get_list_len(tSDP_UUID_SEQ* uid_seq,
275 tSDP_ATTR_SEQ* attr_seq);
276extern uint16_t sdpu_get_attrib_seq_len(tSDP_RECORD* p_rec,
277 tSDP_ATTR_SEQ* attr_seq);
278extern uint16_t sdpu_get_attrib_entry_len(tSDP_ATTRIBUTE* p_attr);
279extern uint8_t* sdpu_build_partial_attrib_entry(uint8_t* p_out,
280 tSDP_ATTRIBUTE* p_attr,
281 uint16_t len, uint16_t* offset);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800282
Pavlin Radoslavovb2a292b2016-10-14 19:34:48 -0700283/* Functions provided by sdp_db.cc
The Android Open Source Project5738f832012-12-12 16:00:35 -0800284*/
Myles Watson911d1ae2016-11-28 16:44:40 -0800285extern tSDP_RECORD* sdp_db_service_search(tSDP_RECORD* p_rec,
286 tSDP_UUID_SEQ* p_seq);
287extern tSDP_RECORD* sdp_db_find_record(uint32_t handle);
288extern tSDP_ATTRIBUTE* sdp_db_find_attr_in_rec(tSDP_RECORD* p_rec,
289 uint16_t start_attr,
290 uint16_t end_attr);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800291
Pavlin Radoslavovb2a292b2016-10-14 19:34:48 -0700292/* Functions provided by sdp_server.cc
The Android Open Source Project5738f832012-12-12 16:00:35 -0800293*/
Marie Janssend19e0782016-07-15 12:48:27 -0700294#if (SDP_SERVER_ENABLED == TRUE)
Myles Watson911d1ae2016-11-28 16:44:40 -0800295extern void sdp_server_handle_client_req(tCONN_CB* p_ccb, BT_HDR* p_msg);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800296#else
297#define sdp_server_handle_client_req(p_ccb, p_msg)
298#endif
299
Pavlin Radoslavovb2a292b2016-10-14 19:34:48 -0700300/* Functions provided by sdp_discovery.cc
The Android Open Source Project5738f832012-12-12 16:00:35 -0800301*/
Myles Watson911d1ae2016-11-28 16:44:40 -0800302extern void sdp_disc_connected(tCONN_CB* p_ccb);
303extern void sdp_disc_server_rsp(tCONN_CB* p_ccb, BT_HDR* p_msg);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800304
The Android Open Source Project5738f832012-12-12 16:00:35 -0800305#endif