OSDN Git Service

SDP: Pass the bounds to process_service_*_rsp
[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         SDP_TRACE_WARNING(
388           "%s: list_len:%d cpy_len:%d p:%p p_ccb:%p p_db:%p raw_size:%d "
389           "raw_used:%d raw_data:%p",
390           __func__, list_len, cpy_len, p, p_ccb, p_ccb->p_db,
391           p_ccb->p_db->raw_size, p_ccb->p_db->raw_used, p_ccb->p_db->raw_data);
392         memcpy (&p_ccb->p_db->raw_data[p_ccb->p_db->raw_used], p, cpy_len);
393         p_ccb->p_db->raw_used += cpy_len;
394     }
395 }
396 #endif
397
398 /*******************************************************************************
399 **
400 ** Function         process_service_attr_rsp
401 **
402 ** Description      This function is called when there is a attribute response from
403 **                  the server.
404 **
405 ** Returns          void
406 **
407 *******************************************************************************/
408 static void process_service_attr_rsp(tCONN_CB *p_ccb, UINT8 *p_reply,
409                                      uint8_t* p_reply_end) {
410     UINT8           *p_start, *p_param_len;
411     UINT16          param_len, list_byte_count;
412     BOOLEAN         cont_request_needed = FALSE;
413
414 #if (SDP_DEBUG_RAW == TRUE)
415     SDP_TRACE_WARNING("process_service_attr_rsp raw inc:%d",
416         SDP_RAW_DATA_INCLUDED);
417 #endif
418     /* If p_reply is NULL, we were called after the records handles were read */
419     if (p_reply)
420     {
421 #if (SDP_DEBUG_RAW == TRUE)
422         SDP_TRACE_WARNING("ID & len: 0x%02x-%02x-%02x-%02x",
423             p_reply[0], p_reply[1], p_reply[2], p_reply[3]);
424 #endif
425         /* Skip transaction ID and length */
426         p_reply += 4;
427
428         BE_STREAM_TO_UINT16 (list_byte_count, p_reply);
429 #if (SDP_DEBUG_RAW == TRUE)
430         SDP_TRACE_WARNING("list_byte_count:%d", list_byte_count);
431 #endif
432
433         /* Copy the response to the scratchpad. First, a safety check on the length */
434         if ((p_ccb->list_len + list_byte_count) > SDP_MAX_LIST_BYTE_COUNT)
435         {
436             sdp_disconnect (p_ccb, SDP_INVALID_PDU_SIZE);
437             return;
438         }
439
440 #if (SDP_DEBUG_RAW == TRUE)
441         SDP_TRACE_WARNING("list_len: %d, list_byte_count: %d",
442             p_ccb->list_len, list_byte_count);
443 #endif
444         if (p_ccb->rsp_list == NULL)
445             p_ccb->rsp_list = (UINT8 *)osi_malloc(SDP_MAX_LIST_BYTE_COUNT);
446         memcpy(&p_ccb->rsp_list[p_ccb->list_len], p_reply, list_byte_count);
447         p_ccb->list_len += list_byte_count;
448         p_reply         += list_byte_count;
449 #if (SDP_DEBUG_RAW == TRUE)
450         SDP_TRACE_WARNING("list_len: %d(attr_rsp)", p_ccb->list_len);
451
452         /* Check if we need to request a continuation */
453         SDP_TRACE_WARNING("*p_reply:%d(%d)", *p_reply, SDP_MAX_CONTINUATION_LEN);
454 #endif
455         if (*p_reply)
456         {
457             if (*p_reply > SDP_MAX_CONTINUATION_LEN)
458             {
459                 sdp_disconnect (p_ccb, SDP_INVALID_CONT_STATE);
460                 return;
461             }
462             cont_request_needed = TRUE;
463         }
464         else
465         {
466
467 #if (SDP_RAW_DATA_INCLUDED == TRUE)
468             SDP_TRACE_WARNING("process_service_attr_rsp");
469             sdp_copy_raw_data (p_ccb, FALSE);
470 #endif
471
472             /* Save the response in the database. Stop on any error */
473             if (!save_attr_seq (p_ccb, &p_ccb->rsp_list[0], &p_ccb->rsp_list[p_ccb->list_len]))
474             {
475                 sdp_disconnect (p_ccb, SDP_DB_FULL);
476                 return;
477             }
478             p_ccb->list_len = 0;
479             p_ccb->cur_handle++;
480         }
481     }
482
483     /* Now, ask for the next handle. Re-use the buffer we just got. */
484     if (p_ccb->cur_handle < p_ccb->num_handles)
485     {
486         BT_HDR  *p_msg = (BT_HDR *)osi_malloc(SDP_DATA_BUF_SIZE);
487         UINT8   *p;
488
489         p_msg->offset = L2CAP_MIN_OFFSET;
490         p = p_start = (UINT8 *)(p_msg + 1) + L2CAP_MIN_OFFSET;
491
492         /* Get all the attributes from the server */
493         UINT8_TO_BE_STREAM  (p, SDP_PDU_SERVICE_ATTR_REQ);
494         UINT16_TO_BE_STREAM (p, p_ccb->transaction_id);
495         p_ccb->transaction_id++;
496
497         /* Skip the length, we need to add it at the end */
498         p_param_len = p;
499         p += 2;
500
501         UINT32_TO_BE_STREAM (p, p_ccb->handles[p_ccb->cur_handle]);
502
503         /* Max attribute byte count */
504         UINT16_TO_BE_STREAM (p, sdp_cb.max_attr_list_size);
505
506         /* If no attribute filters, build a wildcard attribute sequence */
507         if (p_ccb->p_db->num_attr_filters)
508             p = sdpu_build_attrib_seq (p, p_ccb->p_db->attr_filters, p_ccb->p_db->num_attr_filters);
509         else
510             p = sdpu_build_attrib_seq (p, NULL, 0);
511
512         /* Was this a continuation request ? */
513         if (cont_request_needed)
514         {
515             if ((p_reply + *p_reply + 1) <= p_reply_end) {
516                 memcpy(p, p_reply, *p_reply + 1);
517                 p += *p_reply + 1;
518             } else {
519                 android_errorWriteLog(0x534e4554, "68161546");
520             }
521         }
522         else
523             UINT8_TO_BE_STREAM (p, 0);
524
525         /* Go back and put the parameter length into the buffer */
526         param_len = (UINT16)(p - p_param_len - 2);
527         UINT16_TO_BE_STREAM (p_param_len, param_len);
528
529         /* Set the length of the SDP data in the buffer */
530         p_msg->len = (UINT16)(p - p_start);
531
532
533         L2CA_DataWrite (p_ccb->connection_id, p_msg);
534
535         /* Start inactivity timer */
536         alarm_set_on_queue(p_ccb->sdp_conn_timer, SDP_INACT_TIMEOUT_MS,
537                            sdp_conn_timer_timeout, p_ccb,
538                            btu_general_alarm_queue);
539     }
540     else
541     {
542         sdp_disconnect (p_ccb, SDP_SUCCESS);
543         return;
544     }
545 }
546
547
548 /*******************************************************************************
549 **
550 ** Function         process_service_search_attr_rsp
551 **
552 ** Description      This function is called when there is a search attribute
553 **                  response from the server.
554 **
555 ** Returns          void
556 **
557 *******************************************************************************/
558 static void process_service_search_attr_rsp(tCONN_CB *p_ccb, UINT8 *p_reply,
559                                             uint8_t* p_reply_end) {
560     UINT8           *p, *p_start, *p_end, *p_param_len;
561     UINT8           type;
562     UINT32          seq_len;
563     UINT16          param_len, lists_byte_count = 0;
564     BOOLEAN         cont_request_needed = FALSE;
565
566 #if (SDP_DEBUG_RAW == TRUE)
567     SDP_TRACE_WARNING("process_service_search_attr_rsp");
568 #endif
569     /* If p_reply is NULL, we were called for the initial read */
570     if (p_reply)
571     {
572 #if (SDP_DEBUG_RAW == TRUE)
573         SDP_TRACE_WARNING("ID & len: 0x%02x-%02x-%02x-%02x",
574             p_reply[0], p_reply[1], p_reply[2], p_reply[3]);
575 #endif
576         /* Skip transaction ID and length */
577         p_reply += 4;
578
579         BE_STREAM_TO_UINT16 (lists_byte_count, p_reply);
580 #if (SDP_DEBUG_RAW == TRUE)
581         SDP_TRACE_WARNING("lists_byte_count:%d", lists_byte_count);
582 #endif
583
584         /* Copy the response to the scratchpad. First, a safety check on the length */
585         if ((p_ccb->list_len + lists_byte_count) > SDP_MAX_LIST_BYTE_COUNT)
586         {
587             sdp_disconnect (p_ccb, SDP_INVALID_PDU_SIZE);
588             return;
589         }
590
591 #if (SDP_DEBUG_RAW == TRUE)
592         SDP_TRACE_WARNING("list_len: %d, list_byte_count: %d",
593             p_ccb->list_len, lists_byte_count);
594 #endif
595         if (p_ccb->rsp_list == NULL)
596             p_ccb->rsp_list = (UINT8 *)osi_malloc(SDP_MAX_LIST_BYTE_COUNT);
597         memcpy (&p_ccb->rsp_list[p_ccb->list_len], p_reply, lists_byte_count);
598         p_ccb->list_len += lists_byte_count;
599         p_reply         += lists_byte_count;
600 #if (SDP_DEBUG_RAW == TRUE)
601         SDP_TRACE_WARNING("list_len: %d(search_attr_rsp)", p_ccb->list_len);
602
603         /* Check if we need to request a continuation */
604         SDP_TRACE_WARNING("*p_reply:%d(%d)", *p_reply, SDP_MAX_CONTINUATION_LEN);
605 #endif
606         if (*p_reply)
607         {
608             if (*p_reply > SDP_MAX_CONTINUATION_LEN)
609             {
610                 sdp_disconnect (p_ccb, SDP_INVALID_CONT_STATE);
611                 return;
612             }
613
614             cont_request_needed = TRUE;
615         }
616     }
617
618 #if (SDP_DEBUG_RAW == TRUE)
619     SDP_TRACE_WARNING("cont_request_needed:%d", cont_request_needed);
620 #endif
621     /* If continuation request (or first time request) */
622     if ((cont_request_needed) || (!p_reply))
623     {
624         BT_HDR  *p_msg = (BT_HDR *)osi_malloc(SDP_DATA_BUF_SIZE);
625         UINT8   *p;
626
627         p_msg->offset = L2CAP_MIN_OFFSET;
628         p = p_start = (UINT8 *)(p_msg + 1) + L2CAP_MIN_OFFSET;
629
630         /* Build a service search request packet */
631         UINT8_TO_BE_STREAM  (p, SDP_PDU_SERVICE_SEARCH_ATTR_REQ);
632         UINT16_TO_BE_STREAM (p, p_ccb->transaction_id);
633         p_ccb->transaction_id++;
634
635         /* Skip the length, we need to add it at the end */
636         p_param_len = p;
637         p += 2;
638
639         /* Build the UID sequence. */
640 #if (defined(SDP_BROWSE_PLUS) && SDP_BROWSE_PLUS == TRUE)
641         p = sdpu_build_uuid_seq (p, 1, &p_ccb->p_db->uuid_filters[p_ccb->cur_uuid_idx]);
642 #else
643         p = sdpu_build_uuid_seq (p, p_ccb->p_db->num_uuid_filters, p_ccb->p_db->uuid_filters);
644 #endif
645
646         /* Max attribute byte count */
647         UINT16_TO_BE_STREAM (p, sdp_cb.max_attr_list_size);
648
649         /* If no attribute filters, build a wildcard attribute sequence */
650         if (p_ccb->p_db->num_attr_filters)
651             p = sdpu_build_attrib_seq (p, p_ccb->p_db->attr_filters, p_ccb->p_db->num_attr_filters);
652         else
653             p = sdpu_build_attrib_seq (p, NULL, 0);
654
655         /* No continuation for first request */
656         if (p_reply)
657         {
658             if ((p_reply + *p_reply + 1) <= p_reply_end) {
659                 memcpy(p, p_reply, *p_reply + 1);
660                 p += *p_reply + 1;
661             } else {
662                 android_errorWriteLog(0x534e4554, "68161546");
663             }
664         }
665         else
666             UINT8_TO_BE_STREAM (p, 0);
667
668         /* Go back and put the parameter length into the buffer */
669         param_len = p - p_param_len - 2;
670         UINT16_TO_BE_STREAM (p_param_len, param_len);
671
672         /* Set the length of the SDP data in the buffer */
673         p_msg->len = p - p_start;
674
675
676         L2CA_DataWrite (p_ccb->connection_id, p_msg);
677
678         /* Start inactivity timer */
679         alarm_set_on_queue(p_ccb->sdp_conn_timer, SDP_INACT_TIMEOUT_MS,
680                            sdp_conn_timer_timeout, p_ccb,
681                            btu_general_alarm_queue);
682
683         return;
684     }
685
686
687     /*******************************************************************/
688     /* We now have the full response, which is a sequence of sequences */
689     /*******************************************************************/
690
691 #if (SDP_RAW_DATA_INCLUDED == TRUE)
692     SDP_TRACE_WARNING("process_service_search_attr_rsp");
693     sdp_copy_raw_data (p_ccb, TRUE);
694 #endif
695
696     p = &p_ccb->rsp_list[0];
697
698     /* The contents is a sequence of attribute sequences */
699     type = *p++;
700
701     if ((type >> 3) != DATA_ELE_SEQ_DESC_TYPE)
702     {
703         SDP_TRACE_WARNING ("SDP - Wrong type: 0x%02x in attr_rsp", type);
704         return;
705     }
706     p = sdpu_get_len_from_type (p, type, &seq_len);
707
708     p_end = &p_ccb->rsp_list[p_ccb->list_len];
709
710     if ((p + seq_len) != p_end)
711     {
712         sdp_disconnect (p_ccb, SDP_INVALID_CONT_STATE);
713         return;
714     }
715
716     while (p < p_end)
717     {
718         p = save_attr_seq (p_ccb, p, &p_ccb->rsp_list[p_ccb->list_len]);
719         if (!p)
720         {
721             sdp_disconnect (p_ccb, SDP_DB_FULL);
722             return;
723         }
724     }
725
726     /* Since we got everything we need, disconnect the call */
727     sdp_disconnect (p_ccb, SDP_SUCCESS);
728 }
729
730 /*******************************************************************************
731 **
732 ** Function         save_attr_seq
733 **
734 ** Description      This function is called when there is a response from
735 **                  the server.
736 **
737 ** Returns          pointer to next byte or NULL if error
738 **
739 *******************************************************************************/
740 static UINT8 *save_attr_seq (tCONN_CB *p_ccb, UINT8 *p, UINT8 *p_msg_end)
741 {
742     UINT32      seq_len, attr_len;
743     UINT16      attr_id;
744     UINT8       type, *p_seq_end;
745     tSDP_DISC_REC *p_rec;
746
747     type = *p++;
748
749     if ((type >> 3) != DATA_ELE_SEQ_DESC_TYPE)
750     {
751         SDP_TRACE_WARNING ("SDP - Wrong type: 0x%02x in attr_rsp", type);
752         return (NULL);
753     }
754
755     p = sdpu_get_len_from_type (p, type, &seq_len);
756     if ((p + seq_len) > p_msg_end)
757     {
758         SDP_TRACE_WARNING ("SDP - Bad len in attr_rsp %d", seq_len);
759         return (NULL);
760     }
761
762     /* Create a record */
763     p_rec = add_record (p_ccb->p_db, p_ccb->device_address);
764     if (!p_rec)
765     {
766         SDP_TRACE_WARNING ("SDP - DB full add_record");
767         return (NULL);
768     }
769
770     p_seq_end = p + seq_len;
771
772     while (p < p_seq_end)
773     {
774         /* First get the attribute ID */
775         type = *p++;
776         p = sdpu_get_len_from_type (p, type, &attr_len);
777         if (((type >> 3) != UINT_DESC_TYPE) || (attr_len != 2))
778         {
779             SDP_TRACE_WARNING ("SDP - Bad type: 0x%02x or len: %d in attr_rsp", type, attr_len);
780             return (NULL);
781         }
782         BE_STREAM_TO_UINT16 (attr_id, p);
783
784         /* Now, add the attribute value */
785         p = add_attr (p, p_ccb->p_db, p_rec, attr_id, NULL, 0);
786
787         if (!p)
788         {
789             SDP_TRACE_WARNING ("SDP - DB full add_attr");
790             return (NULL);
791         }
792     }
793
794     return (p);
795 }
796
797
798 /*******************************************************************************
799 **
800 ** Function         add_record
801 **
802 ** Description      This function allocates space for a record from the DB.
803 **
804 ** Returns          pointer to next byte in data stream
805 **
806 *******************************************************************************/
807 tSDP_DISC_REC *add_record (tSDP_DISCOVERY_DB *p_db, BD_ADDR p_bda)
808 {
809     tSDP_DISC_REC   *p_rec;
810
811     /* See if there is enough space in the database */
812     if (p_db->mem_free < sizeof (tSDP_DISC_REC))
813         return (NULL);
814
815     p_rec = (tSDP_DISC_REC *) p_db->p_free_mem;
816     p_db->p_free_mem += sizeof (tSDP_DISC_REC);
817     p_db->mem_free   -= sizeof (tSDP_DISC_REC);
818
819     p_rec->p_first_attr = NULL;
820     p_rec->p_next_rec   = NULL;
821
822     memcpy (p_rec->remote_bd_addr, p_bda, BD_ADDR_LEN);
823
824     /* Add the record to the end of chain */
825     if (!p_db->p_first_rec)
826         p_db->p_first_rec = p_rec;
827     else
828     {
829         tSDP_DISC_REC   *p_rec1 = p_db->p_first_rec;
830
831         while (p_rec1->p_next_rec)
832             p_rec1 = p_rec1->p_next_rec;
833
834         p_rec1->p_next_rec = p_rec;
835     }
836
837     return (p_rec);
838 }
839
840 #define SDP_ADDITIONAL_LIST_MASK        0x80
841 /*******************************************************************************
842 **
843 ** Function         add_attr
844 **
845 ** Description      This function allocates space for an attribute from the DB
846 **                  and copies the data into it.
847 **
848 ** Returns          pointer to next byte in data stream
849 **
850 *******************************************************************************/
851 static UINT8 *add_attr (UINT8 *p, tSDP_DISCOVERY_DB *p_db, tSDP_DISC_REC *p_rec,
852                         UINT16 attr_id, tSDP_DISC_ATTR *p_parent_attr, UINT8 nest_level)
853 {
854     tSDP_DISC_ATTR  *p_attr;
855     UINT32          attr_len;
856     UINT32          total_len;
857     UINT16          attr_type;
858     UINT16          id;
859     UINT8           type;
860     UINT8           *p_end;
861     UINT8           is_additional_list = nest_level & SDP_ADDITIONAL_LIST_MASK;
862
863     nest_level &= ~(SDP_ADDITIONAL_LIST_MASK);
864
865     type = *p++;
866     p = sdpu_get_len_from_type (p, type, &attr_len);
867
868     attr_len &= SDP_DISC_ATTR_LEN_MASK;
869     attr_type = (type >> 3) & 0x0f;
870
871     /* See if there is enough space in the database */
872     if (attr_len > 4)
873         total_len = attr_len - 4 + (UINT16)sizeof (tSDP_DISC_ATTR);
874     else
875         total_len = sizeof (tSDP_DISC_ATTR);
876
877     /* Ensure it is a multiple of 4 */
878     total_len = (total_len + 3) & ~3;
879
880     /* See if there is enough space in the database */
881     if (p_db->mem_free < total_len)
882         return (NULL);
883
884     p_attr                = (tSDP_DISC_ATTR *) p_db->p_free_mem;
885     p_attr->attr_id       = attr_id;
886     p_attr->attr_len_type = (UINT16)attr_len | (attr_type << 12);
887     p_attr->p_next_attr = NULL;
888
889     /* Store the attribute value */
890     switch (attr_type)
891     {
892     case UINT_DESC_TYPE:
893         if( (is_additional_list != 0) && (attr_len == 2) )
894         {
895             BE_STREAM_TO_UINT16 (id, p);
896             if(id != ATTR_ID_PROTOCOL_DESC_LIST)
897                 p -= 2;
898             else
899             {
900                 /* Reserve the memory for the attribute now, as we need to add sub-attributes */
901                 p_db->p_free_mem += sizeof (tSDP_DISC_ATTR);
902                 p_db->mem_free   -= sizeof (tSDP_DISC_ATTR);
903                 p_end             = p + attr_len;
904                 total_len         = 0;
905
906                 /* SDP_TRACE_DEBUG ("SDP - attr nest level:%d(list)", nest_level); */
907                 if (nest_level >= MAX_NEST_LEVELS)
908                 {
909                     SDP_TRACE_ERROR ("SDP - attr nesting too deep");
910                     return (p_end);
911                 }
912
913                 /* Now, add the list entry */
914                 p = add_attr (p, p_db, p_rec, ATTR_ID_PROTOCOL_DESC_LIST, p_attr, (UINT8)(nest_level + 1));
915
916                 break;
917             }
918         }
919         /* Case falls through */
920
921     case TWO_COMP_INT_DESC_TYPE:
922         switch (attr_len)
923         {
924         case 1:
925             p_attr->attr_value.v.u8 = *p++;
926             break;
927         case 2:
928             BE_STREAM_TO_UINT16 (p_attr->attr_value.v.u16, p);
929             break;
930         case 4:
931             BE_STREAM_TO_UINT32 (p_attr->attr_value.v.u32, p);
932             break;
933         default:
934             BE_STREAM_TO_ARRAY (p, p_attr->attr_value.v.array, (INT32)attr_len);
935             break;
936         }
937         break;
938
939     case UUID_DESC_TYPE:
940         switch (attr_len)
941         {
942         case 2:
943             BE_STREAM_TO_UINT16 (p_attr->attr_value.v.u16, p);
944             break;
945         case 4:
946             BE_STREAM_TO_UINT32 (p_attr->attr_value.v.u32, p);
947             if (p_attr->attr_value.v.u32 < 0x10000)
948             {
949                 attr_len = 2;
950                 p_attr->attr_len_type = (UINT16)attr_len | (attr_type << 12);
951                 p_attr->attr_value.v.u16 = (UINT16) p_attr->attr_value.v.u32;
952
953             }
954             break;
955         case 16:
956             /* See if we can compress his UUID down to 16 or 32bit UUIDs */
957             if (sdpu_is_base_uuid (p))
958             {
959                 if ((p[0] == 0) && (p[1] == 0))
960                 {
961                     p_attr->attr_len_type = (p_attr->attr_len_type & ~SDP_DISC_ATTR_LEN_MASK) | 2;
962                     p += 2;
963                     BE_STREAM_TO_UINT16 (p_attr->attr_value.v.u16, p);
964                     p += MAX_UUID_SIZE - 4;
965                 }
966                 else
967                 {
968                     p_attr->attr_len_type = (p_attr->attr_len_type & ~SDP_DISC_ATTR_LEN_MASK) | 4;
969                     BE_STREAM_TO_UINT32 (p_attr->attr_value.v.u32, p);
970                     p += MAX_UUID_SIZE - 4;
971                 }
972             }
973             else
974             {
975                  /* coverity[overrun-local] */
976                  /*
977                     Event overrun-local: Overrun of static array "p_attr->attr_value.v.array" of size 4 at position 15 with index variable "ijk"
978                     False-positive: SDP uses scratch buffer to hold the attribute value.
979                     The actual size of tSDP_DISC_ATVAL does not matter.
980                     If the array size in tSDP_DISC_ATVAL is increase, we would increase the system RAM usage unnecessarily
981                 */
982                 BE_STREAM_TO_ARRAY (p, p_attr->attr_value.v.array, (INT32)attr_len);
983             }
984             break;
985         default:
986             SDP_TRACE_WARNING ("SDP - bad len in UUID attr: %d", attr_len);
987             return (p + attr_len);
988         }
989         break;
990
991     case DATA_ELE_SEQ_DESC_TYPE:
992     case DATA_ELE_ALT_DESC_TYPE:
993         /* Reserve the memory for the attribute now, as we need to add sub-attributes */
994         p_db->p_free_mem += sizeof (tSDP_DISC_ATTR);
995         p_db->mem_free   -= sizeof (tSDP_DISC_ATTR);
996         p_end             = p + attr_len;
997         total_len         = 0;
998
999         /* SDP_TRACE_DEBUG ("SDP - attr nest level:%d", nest_level); */
1000         if (nest_level >= MAX_NEST_LEVELS)
1001         {
1002             SDP_TRACE_ERROR ("SDP - attr nesting too deep");
1003             return (p_end);
1004         }
1005         if(is_additional_list != 0 || attr_id == ATTR_ID_ADDITION_PROTO_DESC_LISTS)
1006             nest_level |= SDP_ADDITIONAL_LIST_MASK;
1007         /* SDP_TRACE_DEBUG ("SDP - attr nest level:0x%x(finish)", nest_level); */
1008
1009         while (p < p_end)
1010         {
1011             /* Now, add the list entry */
1012             p = add_attr (p, p_db, p_rec, 0, p_attr, (UINT8)(nest_level + 1));
1013
1014             if (!p)
1015                 return (NULL);
1016         }
1017         break;
1018
1019     case TEXT_STR_DESC_TYPE:
1020     case URL_DESC_TYPE:
1021         BE_STREAM_TO_ARRAY (p, p_attr->attr_value.v.array, (INT32)attr_len);
1022         break;
1023
1024     case BOOLEAN_DESC_TYPE:
1025         switch (attr_len)
1026         {
1027         case 1:
1028             p_attr->attr_value.v.u8 = *p++;
1029             break;
1030         default:
1031             SDP_TRACE_WARNING ("SDP - bad len in boolean attr: %d", attr_len);
1032             return (p + attr_len);
1033         }
1034         break;
1035
1036     default:    /* switch (attr_type) */
1037         break;
1038     }
1039
1040     p_db->p_free_mem += total_len;
1041     p_db->mem_free   -= total_len;
1042
1043     /* Add the attribute to the end of the chain */
1044     if (!p_parent_attr)
1045     {
1046         if (!p_rec->p_first_attr)
1047             p_rec->p_first_attr = p_attr;
1048         else
1049         {
1050             tSDP_DISC_ATTR  *p_attr1 = p_rec->p_first_attr;
1051
1052             while (p_attr1->p_next_attr)
1053                 p_attr1 = p_attr1->p_next_attr;
1054
1055             p_attr1->p_next_attr = p_attr;
1056         }
1057     }
1058     else
1059     {
1060         if (!p_parent_attr->attr_value.v.p_sub_attr)
1061         {
1062             p_parent_attr->attr_value.v.p_sub_attr = p_attr;
1063             /* SDP_TRACE_DEBUG ("parent:0x%x(id:%d), ch:0x%x(id:%d)",
1064                 p_parent_attr, p_parent_attr->attr_id, p_attr, p_attr->attr_id); */
1065         }
1066         else
1067         {
1068             tSDP_DISC_ATTR  *p_attr1 = p_parent_attr->attr_value.v.p_sub_attr;
1069             /* SDP_TRACE_DEBUG ("parent:0x%x(id:%d), ch1:0x%x(id:%d)",
1070                 p_parent_attr, p_parent_attr->attr_id, p_attr1, p_attr1->attr_id); */
1071
1072             while (p_attr1->p_next_attr)
1073                 p_attr1 = p_attr1->p_next_attr;
1074
1075             p_attr1->p_next_attr = p_attr;
1076             /* SDP_TRACE_DEBUG ("new ch:0x%x(id:%d)", p_attr, p_attr->attr_id); */
1077         }
1078     }
1079
1080     return (p);
1081 }
1082
1083 #endif  /* CLIENT_ENABLED == TRUE */