OSDN Git Service

Merge "DO NOT MERGE: AVRCP: Check number of text attributes in response" into nyc-dev
[android-x86/system-bt.git] / stack / sdp / sdp_discovery.c
1 /******************************************************************************
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 SDP discovery functions
22  *
23  ******************************************************************************/
24
25 #include <stdlib.h>
26 #include <string.h>
27 #include <stdio.h>
28
29 #include "bt_target.h"
30 #include "bt_common.h"
31 #include "l2cdefs.h"
32 #include "hcidefs.h"
33 #include "hcimsgs.h"
34 #include "log/log.h"
35 #include "sdp_api.h"
36 #include "sdpint.h"
37 #include "btu.h"
38 #include "btm_api.h"
39
40
41 #ifndef SDP_DEBUG_RAW
42 #define SDP_DEBUG_RAW       FALSE
43 #endif
44
45 /********************************************************************************/
46 /*              L O C A L    F U N C T I O N     P R O T O T Y P E S            */
47 /********************************************************************************/
48 #if SDP_CLIENT_ENABLED == TRUE
49 static void process_service_search_rsp(tCONN_CB* p_ccb, uint8_t* p_reply,
50                                        uint8_t* p_reply_end);
51 static void process_service_attr_rsp(tCONN_CB* p_ccb, uint8_t* p_reply,
52                                      uint8_t* p_reply_end);
53 static void process_service_search_attr_rsp(tCONN_CB* p_ccb, uint8_t* p_reply,
54                                             uint8_t* p_reply_end);
55 static UINT8         *save_attr_seq (tCONN_CB *p_ccb, UINT8 *p, UINT8 *p_msg_end);
56 static tSDP_DISC_REC *add_record (tSDP_DISCOVERY_DB *p_db, BD_ADDR p_bda);
57 static UINT8         *add_attr (UINT8 *p, tSDP_DISCOVERY_DB *p_db, tSDP_DISC_REC *p_rec,
58                                 UINT16 attr_id, tSDP_DISC_ATTR *p_parent_attr, UINT8 nest_level);
59
60 /* Safety check in case we go crazy */
61 #define MAX_NEST_LEVELS     5
62
63 extern fixed_queue_t *btu_general_alarm_queue;
64
65 /*******************************************************************************
66 **
67 ** Function         sdpu_build_uuid_seq
68 **
69 ** Description      This function builds a UUID sequence from the list of
70 **                  passed UUIDs. It is also passed the address of the output
71 **                  buffer.
72 **
73 ** Returns          Pointer to next byte in the output buffer.
74 **
75 *******************************************************************************/
76 static UINT8 *sdpu_build_uuid_seq (UINT8 *p_out, UINT16 num_uuids, tSDP_UUID *p_uuid_list)
77 {
78     UINT16  xx;
79     UINT8   *p_len;
80
81     /* First thing is the data element header */
82     UINT8_TO_BE_STREAM  (p_out, (DATA_ELE_SEQ_DESC_TYPE << 3) | SIZE_IN_NEXT_BYTE);
83
84     /* Remember where the length goes. Leave space for it. */
85     p_len = p_out;
86     p_out += 1;
87
88     /* Now, loop through and put in all the UUID(s) */
89     for (xx = 0; xx < num_uuids; xx++, p_uuid_list++)
90     {
91         if (p_uuid_list->len == 2)
92         {
93             UINT8_TO_BE_STREAM  (p_out, (UUID_DESC_TYPE << 3) | SIZE_TWO_BYTES);
94             UINT16_TO_BE_STREAM (p_out, p_uuid_list->uu.uuid16);
95         }
96         else if (p_uuid_list->len == 4)
97         {
98             UINT8_TO_BE_STREAM  (p_out, (UUID_DESC_TYPE << 3) | SIZE_FOUR_BYTES);
99             UINT32_TO_BE_STREAM (p_out, p_uuid_list->uu.uuid32);
100         }
101         else
102         {
103             UINT8_TO_BE_STREAM (p_out, (UUID_DESC_TYPE << 3) | SIZE_SIXTEEN_BYTES);
104             ARRAY_TO_BE_STREAM (p_out, p_uuid_list->uu.uuid128, p_uuid_list->len);
105         }
106     }
107
108     /* Now, put in the length */
109     xx = (UINT16)(p_out - p_len - 1);
110     UINT8_TO_BE_STREAM (p_len, xx);
111
112     return (p_out);
113 }
114
115 /*******************************************************************************
116 **
117 ** Function         sdp_snd_service_search_req
118 **
119 ** Description      Send a service search request to the SDP server.
120 **
121 ** Returns          void
122 **
123 *******************************************************************************/
124 static void sdp_snd_service_search_req(tCONN_CB *p_ccb, UINT8 cont_len, UINT8 * p_cont)
125 {
126     UINT8           *p, *p_start, *p_param_len;
127     BT_HDR          *p_cmd = (BT_HDR *) osi_malloc(SDP_DATA_BUF_SIZE);
128     UINT16          param_len;
129
130     /* Prepare the buffer for sending the packet to L2CAP */
131     p_cmd->offset = L2CAP_MIN_OFFSET;
132     p = p_start = (UINT8 *)(p_cmd + 1) + L2CAP_MIN_OFFSET;
133
134     /* Build a service search request packet */
135     UINT8_TO_BE_STREAM  (p, SDP_PDU_SERVICE_SEARCH_REQ);
136     UINT16_TO_BE_STREAM (p, p_ccb->transaction_id);
137     p_ccb->transaction_id++;
138
139     /* Skip the length, we need to add it at the end */
140     p_param_len = p;
141     p += 2;
142
143     /* Build the UID sequence. */
144 #if (defined(SDP_BROWSE_PLUS) && SDP_BROWSE_PLUS == TRUE)
145     p = sdpu_build_uuid_seq (p, 1, &p_ccb->p_db->uuid_filters[p_ccb->cur_uuid_idx]);
146 #else
147     p = sdpu_build_uuid_seq (p, p_ccb->p_db->num_uuid_filters, p_ccb->p_db->uuid_filters);
148 #endif
149
150     /* Set max service record count */
151     UINT16_TO_BE_STREAM (p, sdp_cb.max_recs_per_search);
152
153     /* Set continuation state */
154     UINT8_TO_BE_STREAM (p, cont_len);
155
156     /* if this is not the first request */
157     if(cont_len && p_cont)
158     {
159         memcpy(p, p_cont, cont_len);
160         p += cont_len;
161     }
162
163     /* Go back and put the parameter length into the buffer */
164     param_len = (UINT16)(p - p_param_len - 2);
165     UINT16_TO_BE_STREAM (p_param_len, param_len);
166
167     p_ccb->disc_state = SDP_DISC_WAIT_HANDLES;
168
169     /* Set the length of the SDP data in the buffer */
170     p_cmd->len = (UINT16)(p - p_start);
171
172 #if (SDP_DEBUG_RAW == TRUE)
173     SDP_TRACE_WARNING("sdp_snd_service_search_req cont_len :%d disc_state:%d",cont_len, p_ccb->disc_state);
174 #endif
175
176
177     L2CA_DataWrite (p_ccb->connection_id, p_cmd);
178
179     /* Start inactivity timer */
180     alarm_set_on_queue(p_ccb->sdp_conn_timer, SDP_INACT_TIMEOUT_MS,
181                        sdp_conn_timer_timeout, p_ccb, btu_general_alarm_queue);
182 }
183
184 /*******************************************************************************
185 **
186 ** Function         sdp_disc_connected
187 **
188 ** Description      This function is called when an SDP discovery attempt is
189 **                  connected.
190 **
191 ** Returns          void
192 **
193 *******************************************************************************/
194 void sdp_disc_connected (tCONN_CB *p_ccb)
195 {
196     if (p_ccb->is_attr_search)
197     {
198         p_ccb->disc_state = SDP_DISC_WAIT_SEARCH_ATTR;
199
200         process_service_search_attr_rsp(p_ccb, NULL, NULL);
201     }
202     else
203     {
204         /* First step is to get a list of the handles from the server. */
205         /* We are not searching for a specific attribute, so we will   */
206         /* first search for the service, then get all attributes of it */
207
208         p_ccb->num_handles = 0;
209         sdp_snd_service_search_req(p_ccb, 0, NULL);
210     }
211
212 }
213
214 /*******************************************************************************
215 **
216 ** Function         sdp_disc_server_rsp
217 **
218 ** Description      This function is called when there is a response from
219 **                  the server.
220 **
221 ** Returns          void
222 **
223 *******************************************************************************/
224 void sdp_disc_server_rsp (tCONN_CB *p_ccb, BT_HDR *p_msg)
225 {
226     UINT8           *p, rsp_pdu;
227     BOOLEAN         invalid_pdu = TRUE;
228
229 #if (SDP_DEBUG_RAW == TRUE)
230     SDP_TRACE_WARNING("sdp_disc_server_rsp disc_state:%d", p_ccb->disc_state);
231 #endif
232
233     /* stop inactivity timer when we receive a response */
234     alarm_cancel(p_ccb->sdp_conn_timer);
235
236     /* Got a reply!! Check what we got back */
237     p = (UINT8 *)(p_msg + 1) + p_msg->offset;
238     uint8_t* p_end = p + p_msg->len;
239
240     BE_STREAM_TO_UINT8 (rsp_pdu, p);
241
242     p_msg->len--;
243
244     switch (rsp_pdu)
245     {
246     case SDP_PDU_SERVICE_SEARCH_RSP:
247         if (p_ccb->disc_state == SDP_DISC_WAIT_HANDLES)
248         {
249             process_service_search_rsp(p_ccb, p, p_end);
250             invalid_pdu = FALSE;
251         }
252         break;
253
254     case SDP_PDU_SERVICE_ATTR_RSP:
255         if (p_ccb->disc_state == SDP_DISC_WAIT_ATTR)
256         {
257             process_service_attr_rsp(p_ccb, p, p_end);
258             invalid_pdu = FALSE;
259         }
260         break;
261
262     case SDP_PDU_SERVICE_SEARCH_ATTR_RSP:
263         if (p_ccb->disc_state == SDP_DISC_WAIT_SEARCH_ATTR)
264         {
265             process_service_search_attr_rsp(p_ccb, p, p_end);
266             invalid_pdu = FALSE;
267         }
268         break;
269     }
270
271     if (invalid_pdu)
272     {
273         SDP_TRACE_WARNING ("SDP - Unexp. PDU: %d in state: %d", rsp_pdu, p_ccb->disc_state);
274         sdp_disconnect (p_ccb, SDP_GENERIC_ERROR);
275     }
276 }
277
278 /******************************************************************************
279 **
280 ** Function         process_service_search_rsp
281 **
282 ** Description      This function is called when there is a search response from
283 **                  the server.
284 **
285 ** Returns          void
286 **
287 *******************************************************************************/
288 static void process_service_search_rsp(tCONN_CB *p_ccb, UINT8 *p_reply,
289                                        uint8_t* p_reply_end) {
290     UINT16      xx;
291     UINT16      total, cur_handles, orig;
292     UINT8       cont_len;
293
294     /* Skip transaction, and param len */
295     p_reply += 4;
296     BE_STREAM_TO_UINT16 (total, p_reply);
297     BE_STREAM_TO_UINT16 (cur_handles, p_reply);
298
299     orig = p_ccb->num_handles;
300     p_ccb->num_handles += cur_handles;
301     if (p_ccb->num_handles == 0)
302     {
303         SDP_TRACE_WARNING ("SDP - Rcvd ServiceSearchRsp, no matches");
304         sdp_disconnect (p_ccb, SDP_NO_RECS_MATCH);
305         return;
306     }
307
308     /* Save the handles that match. We will can only process a certain number. */
309     if (total > sdp_cb.max_recs_per_search)
310         total = sdp_cb.max_recs_per_search;
311     if (p_ccb->num_handles > sdp_cb.max_recs_per_search)
312         p_ccb->num_handles = sdp_cb.max_recs_per_search;
313
314     for (xx = orig; xx < p_ccb->num_handles; xx++)
315         BE_STREAM_TO_UINT32 (p_ccb->handles[xx], p_reply);
316
317     BE_STREAM_TO_UINT8 (cont_len, p_reply);
318     if(cont_len != 0)
319     {
320         if(cont_len > SDP_MAX_CONTINUATION_LEN)
321         {
322             sdp_disconnect (p_ccb, SDP_INVALID_CONT_STATE);
323             return;
324         }
325         if (p_reply + cont_len > p_reply_end) {
326             android_errorWriteLog(0x534e4554, "68161546");
327             sdp_disconnect(p_ccb, SDP_INVALID_CONT_STATE);
328             return;
329         }
330         /* stay in the same state */
331         sdp_snd_service_search_req(p_ccb, cont_len, p_reply);
332     }
333     else
334     {
335         /* change state */
336         p_ccb->disc_state = SDP_DISC_WAIT_ATTR;
337
338         /* Kick off the first attribute request */
339         process_service_attr_rsp(p_ccb, NULL, NULL);
340     }
341 }
342
343 /*******************************************************************************
344 **
345 ** Function         sdp_copy_raw_data
346 **
347 ** Description      copy the raw data
348 **
349 **
350 ** Returns          void
351 **
352 *******************************************************************************/
353 #if (SDP_RAW_DATA_INCLUDED == TRUE)
354 static void sdp_copy_raw_data (tCONN_CB *p_ccb, BOOLEAN offset)
355 {
356     unsigned int    cpy_len;
357     UINT32          list_len;
358     UINT8           *p;
359     UINT8           type;
360
361 #if (SDP_DEBUG_RAW == TRUE)
362     UINT8 num_array[SDP_MAX_LIST_BYTE_COUNT];
363     UINT32 i;
364
365     for (i = 0; i < p_ccb->list_len; i++)
366     {
367         sprintf((char *)&num_array[i*2],"%02X",(UINT8)(p_ccb->rsp_list[i]));
368     }
369     SDP_TRACE_WARNING("result :%s",num_array);
370 #endif
371
372     if(p_ccb->p_db->raw_data)
373     {
374         cpy_len = p_ccb->p_db->raw_size - p_ccb->p_db->raw_used;
375         list_len = p_ccb->list_len;
376         p = &p_ccb->rsp_list[0];
377
378         if(offset)
379         {
380             type = *p++;
381             p = sdpu_get_len_from_type (p, type, &list_len);
382         }
383         if(list_len && list_len < cpy_len )
384         {
385             cpy_len = list_len;
386         }
387 #if (SDP_DEBUG_RAW == TRUE)
388         SDP_TRACE_WARNING("list_len :%d cpy_len:%d raw_size:%d raw_used:%d",
389             list_len, cpy_len, p_ccb->p_db->raw_size, p_ccb->p_db->raw_used);
390 #endif
391         memcpy (&p_ccb->p_db->raw_data[p_ccb->p_db->raw_used], p, cpy_len);
392         p_ccb->p_db->raw_used += cpy_len;
393     }
394 }
395 #endif
396
397 /*******************************************************************************
398 **
399 ** Function         process_service_attr_rsp
400 **
401 ** Description      This function is called when there is a attribute response from
402 **                  the server.
403 **
404 ** Returns          void
405 **
406 *******************************************************************************/
407 static void process_service_attr_rsp(tCONN_CB *p_ccb, UINT8 *p_reply,
408                                      uint8_t* p_reply_end) {
409     UINT8           *p_start, *p_param_len;
410     UINT16          param_len, list_byte_count;
411     BOOLEAN         cont_request_needed = FALSE;
412
413 #if (SDP_DEBUG_RAW == TRUE)
414     SDP_TRACE_WARNING("process_service_attr_rsp raw inc:%d",
415         SDP_RAW_DATA_INCLUDED);
416 #endif
417     /* If p_reply is NULL, we were called after the records handles were read */
418     if (p_reply)
419     {
420 #if (SDP_DEBUG_RAW == TRUE)
421         SDP_TRACE_WARNING("ID & len: 0x%02x-%02x-%02x-%02x",
422             p_reply[0], p_reply[1], p_reply[2], p_reply[3]);
423 #endif
424         /* Skip transaction ID and length */
425         p_reply += 4;
426
427         BE_STREAM_TO_UINT16 (list_byte_count, p_reply);
428 #if (SDP_DEBUG_RAW == TRUE)
429         SDP_TRACE_WARNING("list_byte_count:%d", list_byte_count);
430 #endif
431
432         /* Copy the response to the scratchpad. First, a safety check on the length */
433         if ((p_ccb->list_len + list_byte_count) > SDP_MAX_LIST_BYTE_COUNT)
434         {
435             sdp_disconnect (p_ccb, SDP_INVALID_PDU_SIZE);
436             return;
437         }
438
439 #if (SDP_DEBUG_RAW == TRUE)
440         SDP_TRACE_WARNING("list_len: %d, list_byte_count: %d",
441             p_ccb->list_len, list_byte_count);
442 #endif
443         if (p_ccb->rsp_list == NULL)
444             p_ccb->rsp_list = (UINT8 *)osi_malloc(SDP_MAX_LIST_BYTE_COUNT);
445         memcpy(&p_ccb->rsp_list[p_ccb->list_len], p_reply, list_byte_count);
446         p_ccb->list_len += list_byte_count;
447         p_reply         += list_byte_count;
448 #if (SDP_DEBUG_RAW == TRUE)
449         SDP_TRACE_WARNING("list_len: %d(attr_rsp)", p_ccb->list_len);
450
451         /* Check if we need to request a continuation */
452         SDP_TRACE_WARNING("*p_reply:%d(%d)", *p_reply, SDP_MAX_CONTINUATION_LEN);
453 #endif
454         if (*p_reply)
455         {
456             if (*p_reply > SDP_MAX_CONTINUATION_LEN)
457             {
458                 sdp_disconnect (p_ccb, SDP_INVALID_CONT_STATE);
459                 return;
460             }
461             cont_request_needed = TRUE;
462         }
463         else
464         {
465
466 #if (SDP_RAW_DATA_INCLUDED == TRUE)
467             SDP_TRACE_WARNING("process_service_attr_rsp");
468             sdp_copy_raw_data (p_ccb, FALSE);
469 #endif
470
471             /* Save the response in the database. Stop on any error */
472             if (!save_attr_seq (p_ccb, &p_ccb->rsp_list[0], &p_ccb->rsp_list[p_ccb->list_len]))
473             {
474                 sdp_disconnect (p_ccb, SDP_DB_FULL);
475                 return;
476             }
477             p_ccb->list_len = 0;
478             p_ccb->cur_handle++;
479         }
480     }
481
482     /* Now, ask for the next handle. Re-use the buffer we just got. */
483     if (p_ccb->cur_handle < p_ccb->num_handles)
484     {
485         BT_HDR  *p_msg = (BT_HDR *)osi_malloc(SDP_DATA_BUF_SIZE);
486         UINT8   *p;
487
488         p_msg->offset = L2CAP_MIN_OFFSET;
489         p = p_start = (UINT8 *)(p_msg + 1) + L2CAP_MIN_OFFSET;
490
491         /* Get all the attributes from the server */
492         UINT8_TO_BE_STREAM  (p, SDP_PDU_SERVICE_ATTR_REQ);
493         UINT16_TO_BE_STREAM (p, p_ccb->transaction_id);
494         p_ccb->transaction_id++;
495
496         /* Skip the length, we need to add it at the end */
497         p_param_len = p;
498         p += 2;
499
500         UINT32_TO_BE_STREAM (p, p_ccb->handles[p_ccb->cur_handle]);
501
502         /* Max attribute byte count */
503         UINT16_TO_BE_STREAM (p, sdp_cb.max_attr_list_size);
504
505         /* If no attribute filters, build a wildcard attribute sequence */
506         if (p_ccb->p_db->num_attr_filters)
507             p = sdpu_build_attrib_seq (p, p_ccb->p_db->attr_filters, p_ccb->p_db->num_attr_filters);
508         else
509             p = sdpu_build_attrib_seq (p, NULL, 0);
510
511         /* Was this a continuation request ? */
512         if (cont_request_needed)
513         {
514             if ((p_reply + *p_reply + 1) <= p_reply_end) {
515                 memcpy(p, p_reply, *p_reply + 1);
516                 p += *p_reply + 1;
517             } else {
518                 android_errorWriteLog(0x534e4554, "68161546");
519             }
520         }
521         else
522             UINT8_TO_BE_STREAM (p, 0);
523
524         /* Go back and put the parameter length into the buffer */
525         param_len = (UINT16)(p - p_param_len - 2);
526         UINT16_TO_BE_STREAM (p_param_len, param_len);
527
528         /* Set the length of the SDP data in the buffer */
529         p_msg->len = (UINT16)(p - p_start);
530
531
532         L2CA_DataWrite (p_ccb->connection_id, p_msg);
533
534         /* Start inactivity timer */
535         alarm_set_on_queue(p_ccb->sdp_conn_timer, SDP_INACT_TIMEOUT_MS,
536                            sdp_conn_timer_timeout, p_ccb,
537                            btu_general_alarm_queue);
538     }
539     else
540     {
541         sdp_disconnect (p_ccb, SDP_SUCCESS);
542         return;
543     }
544 }
545
546
547 /*******************************************************************************
548 **
549 ** Function         process_service_search_attr_rsp
550 **
551 ** Description      This function is called when there is a search attribute
552 **                  response from the server.
553 **
554 ** Returns          void
555 **
556 *******************************************************************************/
557 static void process_service_search_attr_rsp(tCONN_CB *p_ccb, UINT8 *p_reply,
558                                             uint8_t* p_reply_end) {
559     UINT8           *p, *p_start, *p_end, *p_param_len;
560     UINT8           type;
561     UINT32          seq_len;
562     UINT16          param_len, lists_byte_count = 0;
563     BOOLEAN         cont_request_needed = FALSE;
564
565 #if (SDP_DEBUG_RAW == TRUE)
566     SDP_TRACE_WARNING("process_service_search_attr_rsp");
567 #endif
568     /* If p_reply is NULL, we were called for the initial read */
569     if (p_reply)
570     {
571 #if (SDP_DEBUG_RAW == TRUE)
572         SDP_TRACE_WARNING("ID & len: 0x%02x-%02x-%02x-%02x",
573             p_reply[0], p_reply[1], p_reply[2], p_reply[3]);
574 #endif
575         /* Skip transaction ID and length */
576         p_reply += 4;
577
578         BE_STREAM_TO_UINT16 (lists_byte_count, p_reply);
579 #if (SDP_DEBUG_RAW == TRUE)
580         SDP_TRACE_WARNING("lists_byte_count:%d", lists_byte_count);
581 #endif
582
583         /* Copy the response to the scratchpad. First, a safety check on the length */
584         if ((p_ccb->list_len + lists_byte_count) > SDP_MAX_LIST_BYTE_COUNT)
585         {
586             sdp_disconnect (p_ccb, SDP_INVALID_PDU_SIZE);
587             return;
588         }
589
590 #if (SDP_DEBUG_RAW == TRUE)
591         SDP_TRACE_WARNING("list_len: %d, list_byte_count: %d",
592             p_ccb->list_len, lists_byte_count);
593 #endif
594         if (p_ccb->rsp_list == NULL)
595             p_ccb->rsp_list = (UINT8 *)osi_malloc(SDP_MAX_LIST_BYTE_COUNT);
596         memcpy (&p_ccb->rsp_list[p_ccb->list_len], p_reply, lists_byte_count);
597         p_ccb->list_len += lists_byte_count;
598         p_reply         += lists_byte_count;
599 #if (SDP_DEBUG_RAW == TRUE)
600         SDP_TRACE_WARNING("list_len: %d(search_attr_rsp)", p_ccb->list_len);
601
602         /* Check if we need to request a continuation */
603         SDP_TRACE_WARNING("*p_reply:%d(%d)", *p_reply, SDP_MAX_CONTINUATION_LEN);
604 #endif
605         if (*p_reply)
606         {
607             if (*p_reply > SDP_MAX_CONTINUATION_LEN)
608             {
609                 sdp_disconnect (p_ccb, SDP_INVALID_CONT_STATE);
610                 return;
611             }
612
613             cont_request_needed = TRUE;
614         }
615     }
616
617 #if (SDP_DEBUG_RAW == TRUE)
618     SDP_TRACE_WARNING("cont_request_needed:%d", cont_request_needed);
619 #endif
620     /* If continuation request (or first time request) */
621     if ((cont_request_needed) || (!p_reply))
622     {
623         BT_HDR  *p_msg = (BT_HDR *)osi_malloc(SDP_DATA_BUF_SIZE);
624         UINT8   *p;
625
626         p_msg->offset = L2CAP_MIN_OFFSET;
627         p = p_start = (UINT8 *)(p_msg + 1) + L2CAP_MIN_OFFSET;
628
629         /* Build a service search request packet */
630         UINT8_TO_BE_STREAM  (p, SDP_PDU_SERVICE_SEARCH_ATTR_REQ);
631         UINT16_TO_BE_STREAM (p, p_ccb->transaction_id);
632         p_ccb->transaction_id++;
633
634         /* Skip the length, we need to add it at the end */
635         p_param_len = p;
636         p += 2;
637
638         /* Build the UID sequence. */
639 #if (defined(SDP_BROWSE_PLUS) && SDP_BROWSE_PLUS == TRUE)
640         p = sdpu_build_uuid_seq (p, 1, &p_ccb->p_db->uuid_filters[p_ccb->cur_uuid_idx]);
641 #else
642         p = sdpu_build_uuid_seq (p, p_ccb->p_db->num_uuid_filters, p_ccb->p_db->uuid_filters);
643 #endif
644
645         /* Max attribute byte count */
646         UINT16_TO_BE_STREAM (p, sdp_cb.max_attr_list_size);
647
648         /* If no attribute filters, build a wildcard attribute sequence */
649         if (p_ccb->p_db->num_attr_filters)
650             p = sdpu_build_attrib_seq (p, p_ccb->p_db->attr_filters, p_ccb->p_db->num_attr_filters);
651         else
652             p = sdpu_build_attrib_seq (p, NULL, 0);
653
654         /* No continuation for first request */
655         if (p_reply)
656         {
657             if ((p_reply + *p_reply + 1) <= p_reply_end) {
658                 memcpy(p, p_reply, *p_reply + 1);
659                 p += *p_reply + 1;
660             } else {
661                 android_errorWriteLog(0x534e4554, "68161546");
662             }
663         }
664         else
665             UINT8_TO_BE_STREAM (p, 0);
666
667         /* Go back and put the parameter length into the buffer */
668         param_len = p - p_param_len - 2;
669         UINT16_TO_BE_STREAM (p_param_len, param_len);
670
671         /* Set the length of the SDP data in the buffer */
672         p_msg->len = p - p_start;
673
674
675         L2CA_DataWrite (p_ccb->connection_id, p_msg);
676
677         /* Start inactivity timer */
678         alarm_set_on_queue(p_ccb->sdp_conn_timer, SDP_INACT_TIMEOUT_MS,
679                            sdp_conn_timer_timeout, p_ccb,
680                            btu_general_alarm_queue);
681
682         return;
683     }
684
685
686     /*******************************************************************/
687     /* We now have the full response, which is a sequence of sequences */
688     /*******************************************************************/
689
690 #if (SDP_RAW_DATA_INCLUDED == TRUE)
691     SDP_TRACE_WARNING("process_service_search_attr_rsp");
692     sdp_copy_raw_data (p_ccb, TRUE);
693 #endif
694
695     p = &p_ccb->rsp_list[0];
696
697     /* The contents is a sequence of attribute sequences */
698     type = *p++;
699
700     if ((type >> 3) != DATA_ELE_SEQ_DESC_TYPE)
701     {
702         SDP_TRACE_WARNING ("SDP - Wrong type: 0x%02x in attr_rsp", type);
703         return;
704     }
705     p = sdpu_get_len_from_type (p, type, &seq_len);
706
707     p_end = &p_ccb->rsp_list[p_ccb->list_len];
708
709     if ((p + seq_len) != p_end)
710     {
711         sdp_disconnect (p_ccb, SDP_INVALID_CONT_STATE);
712         return;
713     }
714
715     while (p < p_end)
716     {
717         p = save_attr_seq (p_ccb, p, &p_ccb->rsp_list[p_ccb->list_len]);
718         if (!p)
719         {
720             sdp_disconnect (p_ccb, SDP_DB_FULL);
721             return;
722         }
723     }
724
725     /* Since we got everything we need, disconnect the call */
726     sdp_disconnect (p_ccb, SDP_SUCCESS);
727 }
728
729 /*******************************************************************************
730 **
731 ** Function         save_attr_seq
732 **
733 ** Description      This function is called when there is a response from
734 **                  the server.
735 **
736 ** Returns          pointer to next byte or NULL if error
737 **
738 *******************************************************************************/
739 static UINT8 *save_attr_seq (tCONN_CB *p_ccb, UINT8 *p, UINT8 *p_msg_end)
740 {
741     UINT32      seq_len, attr_len;
742     UINT16      attr_id;
743     UINT8       type, *p_seq_end;
744     tSDP_DISC_REC *p_rec;
745
746     type = *p++;
747
748     if ((type >> 3) != DATA_ELE_SEQ_DESC_TYPE)
749     {
750         SDP_TRACE_WARNING ("SDP - Wrong type: 0x%02x in attr_rsp", type);
751         return (NULL);
752     }
753
754     p = sdpu_get_len_from_type (p, type, &seq_len);
755     if ((p + seq_len) > p_msg_end)
756     {
757         SDP_TRACE_WARNING ("SDP - Bad len in attr_rsp %d", seq_len);
758         return (NULL);
759     }
760
761     /* Create a record */
762     p_rec = add_record (p_ccb->p_db, p_ccb->device_address);
763     if (!p_rec)
764     {
765         SDP_TRACE_WARNING ("SDP - DB full add_record");
766         return (NULL);
767     }
768
769     p_seq_end = p + seq_len;
770
771     while (p < p_seq_end)
772     {
773         /* First get the attribute ID */
774         type = *p++;
775         p = sdpu_get_len_from_type (p, type, &attr_len);
776         if (((type >> 3) != UINT_DESC_TYPE) || (attr_len != 2))
777         {
778             SDP_TRACE_WARNING ("SDP - Bad type: 0x%02x or len: %d in attr_rsp", type, attr_len);
779             return (NULL);
780         }
781         BE_STREAM_TO_UINT16 (attr_id, p);
782
783         /* Now, add the attribute value */
784         p = add_attr (p, p_ccb->p_db, p_rec, attr_id, NULL, 0);
785
786         if (!p)
787         {
788             SDP_TRACE_WARNING ("SDP - DB full add_attr");
789             return (NULL);
790         }
791     }
792
793     return (p);
794 }
795
796
797 /*******************************************************************************
798 **
799 ** Function         add_record
800 **
801 ** Description      This function allocates space for a record from the DB.
802 **
803 ** Returns          pointer to next byte in data stream
804 **
805 *******************************************************************************/
806 tSDP_DISC_REC *add_record (tSDP_DISCOVERY_DB *p_db, BD_ADDR p_bda)
807 {
808     tSDP_DISC_REC   *p_rec;
809
810     /* See if there is enough space in the database */
811     if (p_db->mem_free < sizeof (tSDP_DISC_REC))
812         return (NULL);
813
814     p_rec = (tSDP_DISC_REC *) p_db->p_free_mem;
815     p_db->p_free_mem += sizeof (tSDP_DISC_REC);
816     p_db->mem_free   -= sizeof (tSDP_DISC_REC);
817
818     p_rec->p_first_attr = NULL;
819     p_rec->p_next_rec   = NULL;
820
821     memcpy (p_rec->remote_bd_addr, p_bda, BD_ADDR_LEN);
822
823     /* Add the record to the end of chain */
824     if (!p_db->p_first_rec)
825         p_db->p_first_rec = p_rec;
826     else
827     {
828         tSDP_DISC_REC   *p_rec1 = p_db->p_first_rec;
829
830         while (p_rec1->p_next_rec)
831             p_rec1 = p_rec1->p_next_rec;
832
833         p_rec1->p_next_rec = p_rec;
834     }
835
836     return (p_rec);
837 }
838
839 #define SDP_ADDITIONAL_LIST_MASK        0x80
840 /*******************************************************************************
841 **
842 ** Function         add_attr
843 **
844 ** Description      This function allocates space for an attribute from the DB
845 **                  and copies the data into it.
846 **
847 ** Returns          pointer to next byte in data stream
848 **
849 *******************************************************************************/
850 static UINT8 *add_attr (UINT8 *p, tSDP_DISCOVERY_DB *p_db, tSDP_DISC_REC *p_rec,
851                         UINT16 attr_id, tSDP_DISC_ATTR *p_parent_attr, UINT8 nest_level)
852 {
853     tSDP_DISC_ATTR  *p_attr;
854     UINT32          attr_len;
855     UINT32          total_len;
856     UINT16          attr_type;
857     UINT16          id;
858     UINT8           type;
859     UINT8           *p_end;
860     UINT8           is_additional_list = nest_level & SDP_ADDITIONAL_LIST_MASK;
861
862     nest_level &= ~(SDP_ADDITIONAL_LIST_MASK);
863
864     type = *p++;
865     p = sdpu_get_len_from_type (p, type, &attr_len);
866
867     attr_len &= SDP_DISC_ATTR_LEN_MASK;
868     attr_type = (type >> 3) & 0x0f;
869
870     /* See if there is enough space in the database */
871     if (attr_len > 4)
872         total_len = attr_len - 4 + (UINT16)sizeof (tSDP_DISC_ATTR);
873     else
874         total_len = sizeof (tSDP_DISC_ATTR);
875
876     /* Ensure it is a multiple of 4 */
877     total_len = (total_len + 3) & ~3;
878
879     /* See if there is enough space in the database */
880     if (p_db->mem_free < total_len)
881         return (NULL);
882
883     p_attr                = (tSDP_DISC_ATTR *) p_db->p_free_mem;
884     p_attr->attr_id       = attr_id;
885     p_attr->attr_len_type = (UINT16)attr_len | (attr_type << 12);
886     p_attr->p_next_attr = NULL;
887
888     /* Store the attribute value */
889     switch (attr_type)
890     {
891     case UINT_DESC_TYPE:
892         if( (is_additional_list != 0) && (attr_len == 2) )
893         {
894             BE_STREAM_TO_UINT16 (id, p);
895             if(id != ATTR_ID_PROTOCOL_DESC_LIST)
896                 p -= 2;
897             else
898             {
899                 /* Reserve the memory for the attribute now, as we need to add sub-attributes */
900                 p_db->p_free_mem += sizeof (tSDP_DISC_ATTR);
901                 p_db->mem_free   -= sizeof (tSDP_DISC_ATTR);
902                 p_end             = p + attr_len;
903                 total_len         = 0;
904
905                 /* SDP_TRACE_DEBUG ("SDP - attr nest level:%d(list)", nest_level); */
906                 if (nest_level >= MAX_NEST_LEVELS)
907                 {
908                     SDP_TRACE_ERROR ("SDP - attr nesting too deep");
909                     return (p_end);
910                 }
911
912                 /* Now, add the list entry */
913                 p = add_attr (p, p_db, p_rec, ATTR_ID_PROTOCOL_DESC_LIST, p_attr, (UINT8)(nest_level + 1));
914
915                 break;
916             }
917         }
918         /* Case falls through */
919
920     case TWO_COMP_INT_DESC_TYPE:
921         switch (attr_len)
922         {
923         case 1:
924             p_attr->attr_value.v.u8 = *p++;
925             break;
926         case 2:
927             BE_STREAM_TO_UINT16 (p_attr->attr_value.v.u16, p);
928             break;
929         case 4:
930             BE_STREAM_TO_UINT32 (p_attr->attr_value.v.u32, p);
931             break;
932         default:
933             BE_STREAM_TO_ARRAY (p, p_attr->attr_value.v.array, (INT32)attr_len);
934             break;
935         }
936         break;
937
938     case UUID_DESC_TYPE:
939         switch (attr_len)
940         {
941         case 2:
942             BE_STREAM_TO_UINT16 (p_attr->attr_value.v.u16, p);
943             break;
944         case 4:
945             BE_STREAM_TO_UINT32 (p_attr->attr_value.v.u32, p);
946             if (p_attr->attr_value.v.u32 < 0x10000)
947             {
948                 attr_len = 2;
949                 p_attr->attr_len_type = (UINT16)attr_len | (attr_type << 12);
950                 p_attr->attr_value.v.u16 = (UINT16) p_attr->attr_value.v.u32;
951
952             }
953             break;
954         case 16:
955             /* See if we can compress his UUID down to 16 or 32bit UUIDs */
956             if (sdpu_is_base_uuid (p))
957             {
958                 if ((p[0] == 0) && (p[1] == 0))
959                 {
960                     p_attr->attr_len_type = (p_attr->attr_len_type & ~SDP_DISC_ATTR_LEN_MASK) | 2;
961                     p += 2;
962                     BE_STREAM_TO_UINT16 (p_attr->attr_value.v.u16, p);
963                     p += MAX_UUID_SIZE - 4;
964                 }
965                 else
966                 {
967                     p_attr->attr_len_type = (p_attr->attr_len_type & ~SDP_DISC_ATTR_LEN_MASK) | 4;
968                     BE_STREAM_TO_UINT32 (p_attr->attr_value.v.u32, p);
969                     p += MAX_UUID_SIZE - 4;
970                 }
971             }
972             else
973             {
974                  /* coverity[overrun-local] */
975                  /*
976                     Event overrun-local: Overrun of static array "p_attr->attr_value.v.array" of size 4 at position 15 with index variable "ijk"
977                     False-positive: SDP uses scratch buffer to hold the attribute value.
978                     The actual size of tSDP_DISC_ATVAL does not matter.
979                     If the array size in tSDP_DISC_ATVAL is increase, we would increase the system RAM usage unnecessarily
980                 */
981                 BE_STREAM_TO_ARRAY (p, p_attr->attr_value.v.array, (INT32)attr_len);
982             }
983             break;
984         default:
985             SDP_TRACE_WARNING ("SDP - bad len in UUID attr: %d", attr_len);
986             return (p + attr_len);
987         }
988         break;
989
990     case DATA_ELE_SEQ_DESC_TYPE:
991     case DATA_ELE_ALT_DESC_TYPE:
992         /* Reserve the memory for the attribute now, as we need to add sub-attributes */
993         p_db->p_free_mem += sizeof (tSDP_DISC_ATTR);
994         p_db->mem_free   -= sizeof (tSDP_DISC_ATTR);
995         p_end             = p + attr_len;
996         total_len         = 0;
997
998         /* SDP_TRACE_DEBUG ("SDP - attr nest level:%d", nest_level); */
999         if (nest_level >= MAX_NEST_LEVELS)
1000         {
1001             SDP_TRACE_ERROR ("SDP - attr nesting too deep");
1002             return (p_end);
1003         }
1004         if(is_additional_list != 0 || attr_id == ATTR_ID_ADDITION_PROTO_DESC_LISTS)
1005             nest_level |= SDP_ADDITIONAL_LIST_MASK;
1006         /* SDP_TRACE_DEBUG ("SDP - attr nest level:0x%x(finish)", nest_level); */
1007
1008         while (p < p_end)
1009         {
1010             /* Now, add the list entry */
1011             p = add_attr (p, p_db, p_rec, 0, p_attr, (UINT8)(nest_level + 1));
1012
1013             if (!p)
1014                 return (NULL);
1015         }
1016         break;
1017
1018     case TEXT_STR_DESC_TYPE:
1019     case URL_DESC_TYPE:
1020         BE_STREAM_TO_ARRAY (p, p_attr->attr_value.v.array, (INT32)attr_len);
1021         break;
1022
1023     case BOOLEAN_DESC_TYPE:
1024         switch (attr_len)
1025         {
1026         case 1:
1027             p_attr->attr_value.v.u8 = *p++;
1028             break;
1029         default:
1030             SDP_TRACE_WARNING ("SDP - bad len in boolean attr: %d", attr_len);
1031             return (p + attr_len);
1032         }
1033         break;
1034
1035     default:    /* switch (attr_type) */
1036         break;
1037     }
1038
1039     p_db->p_free_mem += total_len;
1040     p_db->mem_free   -= total_len;
1041
1042     /* Add the attribute to the end of the chain */
1043     if (!p_parent_attr)
1044     {
1045         if (!p_rec->p_first_attr)
1046             p_rec->p_first_attr = p_attr;
1047         else
1048         {
1049             tSDP_DISC_ATTR  *p_attr1 = p_rec->p_first_attr;
1050
1051             while (p_attr1->p_next_attr)
1052                 p_attr1 = p_attr1->p_next_attr;
1053
1054             p_attr1->p_next_attr = p_attr;
1055         }
1056     }
1057     else
1058     {
1059         if (!p_parent_attr->attr_value.v.p_sub_attr)
1060         {
1061             p_parent_attr->attr_value.v.p_sub_attr = p_attr;
1062             /* SDP_TRACE_DEBUG ("parent:0x%x(id:%d), ch:0x%x(id:%d)",
1063                 p_parent_attr, p_parent_attr->attr_id, p_attr, p_attr->attr_id); */
1064         }
1065         else
1066         {
1067             tSDP_DISC_ATTR  *p_attr1 = p_parent_attr->attr_value.v.p_sub_attr;
1068             /* SDP_TRACE_DEBUG ("parent:0x%x(id:%d), ch1:0x%x(id:%d)",
1069                 p_parent_attr, p_parent_attr->attr_id, p_attr1, p_attr1->attr_id); */
1070
1071             while (p_attr1->p_next_attr)
1072                 p_attr1 = p_attr1->p_next_attr;
1073
1074             p_attr1->p_next_attr = p_attr;
1075             /* SDP_TRACE_DEBUG ("new ch:0x%x(id:%d)", p_attr, p_attr->attr_id); */
1076         }
1077     }
1078
1079     return (p);
1080 }
1081
1082 #endif  /* CLIENT_ENABLED == TRUE */