OSDN Git Service

[automerger] Add PDU size checks in process_service_search_attr_rsp am: 3181bdee7d...
[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 (p_reply + 4 /* transaction ID and length */ + sizeof(lists_byte_count) >
572             p_reply_end) {
573             android_errorWriteLog(0x534e4554, "79884292");
574             sdp_disconnect(p_ccb, SDP_INVALID_PDU_SIZE);
575             return;
576         }
577
578 #if (SDP_DEBUG_RAW == TRUE)
579         SDP_TRACE_WARNING("ID & len: 0x%02x-%02x-%02x-%02x",
580             p_reply[0], p_reply[1], p_reply[2], p_reply[3]);
581 #endif
582         /* Skip transaction ID and length */
583         p_reply += 4;
584
585         BE_STREAM_TO_UINT16 (lists_byte_count, p_reply);
586 #if (SDP_DEBUG_RAW == TRUE)
587         SDP_TRACE_WARNING("lists_byte_count:%d", lists_byte_count);
588 #endif
589
590         /* Copy the response to the scratchpad. First, a safety check on the length */
591         if ((p_ccb->list_len + lists_byte_count) > SDP_MAX_LIST_BYTE_COUNT)
592         {
593             sdp_disconnect (p_ccb, SDP_INVALID_PDU_SIZE);
594             return;
595         }
596
597 #if (SDP_DEBUG_RAW == TRUE)
598         SDP_TRACE_WARNING("list_len: %d, list_byte_count: %d",
599             p_ccb->list_len, lists_byte_count);
600 #endif
601
602         if (p_reply + lists_byte_count + 1 /* continuation */ > p_reply_end) {
603             android_errorWriteLog(0x534e4554, "79884292");
604             sdp_disconnect(p_ccb, SDP_INVALID_PDU_SIZE);
605             return;
606         }
607
608         if (p_ccb->rsp_list == NULL)
609             p_ccb->rsp_list = (UINT8 *)osi_malloc(SDP_MAX_LIST_BYTE_COUNT);
610         memcpy (&p_ccb->rsp_list[p_ccb->list_len], p_reply, lists_byte_count);
611         p_ccb->list_len += lists_byte_count;
612         p_reply         += lists_byte_count;
613 #if (SDP_DEBUG_RAW == TRUE)
614         SDP_TRACE_WARNING("list_len: %d(search_attr_rsp)", p_ccb->list_len);
615
616         /* Check if we need to request a continuation */
617         SDP_TRACE_WARNING("*p_reply:%d(%d)", *p_reply, SDP_MAX_CONTINUATION_LEN);
618 #endif
619         if (*p_reply)
620         {
621             if (*p_reply > SDP_MAX_CONTINUATION_LEN)
622             {
623                 sdp_disconnect (p_ccb, SDP_INVALID_CONT_STATE);
624                 return;
625             }
626
627             cont_request_needed = TRUE;
628         }
629     }
630
631 #if (SDP_DEBUG_RAW == TRUE)
632     SDP_TRACE_WARNING("cont_request_needed:%d", cont_request_needed);
633 #endif
634     /* If continuation request (or first time request) */
635     if ((cont_request_needed) || (!p_reply))
636     {
637         BT_HDR  *p_msg = (BT_HDR *)osi_malloc(SDP_DATA_BUF_SIZE);
638         UINT8   *p;
639
640         p_msg->offset = L2CAP_MIN_OFFSET;
641         p = p_start = (UINT8 *)(p_msg + 1) + L2CAP_MIN_OFFSET;
642
643         /* Build a service search request packet */
644         UINT8_TO_BE_STREAM  (p, SDP_PDU_SERVICE_SEARCH_ATTR_REQ);
645         UINT16_TO_BE_STREAM (p, p_ccb->transaction_id);
646         p_ccb->transaction_id++;
647
648         /* Skip the length, we need to add it at the end */
649         p_param_len = p;
650         p += 2;
651
652         /* Build the UID sequence. */
653 #if (defined(SDP_BROWSE_PLUS) && SDP_BROWSE_PLUS == TRUE)
654         p = sdpu_build_uuid_seq (p, 1, &p_ccb->p_db->uuid_filters[p_ccb->cur_uuid_idx]);
655 #else
656         p = sdpu_build_uuid_seq (p, p_ccb->p_db->num_uuid_filters, p_ccb->p_db->uuid_filters);
657 #endif
658
659         /* Max attribute byte count */
660         UINT16_TO_BE_STREAM (p, sdp_cb.max_attr_list_size);
661
662         /* If no attribute filters, build a wildcard attribute sequence */
663         if (p_ccb->p_db->num_attr_filters)
664             p = sdpu_build_attrib_seq (p, p_ccb->p_db->attr_filters, p_ccb->p_db->num_attr_filters);
665         else
666             p = sdpu_build_attrib_seq (p, NULL, 0);
667
668         /* No continuation for first request */
669         if (p_reply)
670         {
671             if ((p_reply + *p_reply + 1) <= p_reply_end) {
672                 memcpy(p, p_reply, *p_reply + 1);
673                 p += *p_reply + 1;
674             } else {
675                 android_errorWriteLog(0x534e4554, "68161546");
676             }
677         }
678         else
679             UINT8_TO_BE_STREAM (p, 0);
680
681         /* Go back and put the parameter length into the buffer */
682         param_len = p - p_param_len - 2;
683         UINT16_TO_BE_STREAM (p_param_len, param_len);
684
685         /* Set the length of the SDP data in the buffer */
686         p_msg->len = p - p_start;
687
688
689         L2CA_DataWrite (p_ccb->connection_id, p_msg);
690
691         /* Start inactivity timer */
692         alarm_set_on_queue(p_ccb->sdp_conn_timer, SDP_INACT_TIMEOUT_MS,
693                            sdp_conn_timer_timeout, p_ccb,
694                            btu_general_alarm_queue);
695
696         return;
697     }
698
699
700     /*******************************************************************/
701     /* We now have the full response, which is a sequence of sequences */
702     /*******************************************************************/
703
704 #if (SDP_RAW_DATA_INCLUDED == TRUE)
705     SDP_TRACE_WARNING("process_service_search_attr_rsp");
706     sdp_copy_raw_data (p_ccb, TRUE);
707 #endif
708
709     p = &p_ccb->rsp_list[0];
710
711     /* The contents is a sequence of attribute sequences */
712     type = *p++;
713
714     if ((type >> 3) != DATA_ELE_SEQ_DESC_TYPE)
715     {
716         SDP_TRACE_WARNING ("SDP - Wrong type: 0x%02x in attr_rsp", type);
717         return;
718     }
719     p = sdpu_get_len_from_type (p, type, &seq_len);
720
721     p_end = &p_ccb->rsp_list[p_ccb->list_len];
722
723     if ((p + seq_len) != p_end)
724     {
725         sdp_disconnect (p_ccb, SDP_INVALID_CONT_STATE);
726         return;
727     }
728
729     while (p < p_end)
730     {
731         p = save_attr_seq (p_ccb, p, &p_ccb->rsp_list[p_ccb->list_len]);
732         if (!p)
733         {
734             sdp_disconnect (p_ccb, SDP_DB_FULL);
735             return;
736         }
737     }
738
739     /* Since we got everything we need, disconnect the call */
740     sdp_disconnect (p_ccb, SDP_SUCCESS);
741 }
742
743 /*******************************************************************************
744 **
745 ** Function         save_attr_seq
746 **
747 ** Description      This function is called when there is a response from
748 **                  the server.
749 **
750 ** Returns          pointer to next byte or NULL if error
751 **
752 *******************************************************************************/
753 static UINT8 *save_attr_seq (tCONN_CB *p_ccb, UINT8 *p, UINT8 *p_msg_end)
754 {
755     UINT32      seq_len, attr_len;
756     UINT16      attr_id;
757     UINT8       type, *p_seq_end;
758     tSDP_DISC_REC *p_rec;
759
760     type = *p++;
761
762     if ((type >> 3) != DATA_ELE_SEQ_DESC_TYPE)
763     {
764         SDP_TRACE_WARNING ("SDP - Wrong type: 0x%02x in attr_rsp", type);
765         return (NULL);
766     }
767
768     p = sdpu_get_len_from_type (p, type, &seq_len);
769     if ((p + seq_len) > p_msg_end)
770     {
771         SDP_TRACE_WARNING ("SDP - Bad len in attr_rsp %d", seq_len);
772         return (NULL);
773     }
774
775     /* Create a record */
776     p_rec = add_record (p_ccb->p_db, p_ccb->device_address);
777     if (!p_rec)
778     {
779         SDP_TRACE_WARNING ("SDP - DB full add_record");
780         return (NULL);
781     }
782
783     p_seq_end = p + seq_len;
784
785     while (p < p_seq_end)
786     {
787         /* First get the attribute ID */
788         type = *p++;
789         p = sdpu_get_len_from_type (p, type, &attr_len);
790         if (((type >> 3) != UINT_DESC_TYPE) || (attr_len != 2))
791         {
792             SDP_TRACE_WARNING ("SDP - Bad type: 0x%02x or len: %d in attr_rsp", type, attr_len);
793             return (NULL);
794         }
795         BE_STREAM_TO_UINT16 (attr_id, p);
796
797         /* Now, add the attribute value */
798         p = add_attr (p, p_ccb->p_db, p_rec, attr_id, NULL, 0);
799
800         if (!p)
801         {
802             SDP_TRACE_WARNING ("SDP - DB full add_attr");
803             return (NULL);
804         }
805     }
806
807     return (p);
808 }
809
810
811 /*******************************************************************************
812 **
813 ** Function         add_record
814 **
815 ** Description      This function allocates space for a record from the DB.
816 **
817 ** Returns          pointer to next byte in data stream
818 **
819 *******************************************************************************/
820 tSDP_DISC_REC *add_record (tSDP_DISCOVERY_DB *p_db, BD_ADDR p_bda)
821 {
822     tSDP_DISC_REC   *p_rec;
823
824     /* See if there is enough space in the database */
825     if (p_db->mem_free < sizeof (tSDP_DISC_REC))
826         return (NULL);
827
828     p_rec = (tSDP_DISC_REC *) p_db->p_free_mem;
829     p_db->p_free_mem += sizeof (tSDP_DISC_REC);
830     p_db->mem_free   -= sizeof (tSDP_DISC_REC);
831
832     p_rec->p_first_attr = NULL;
833     p_rec->p_next_rec   = NULL;
834
835     memcpy (p_rec->remote_bd_addr, p_bda, BD_ADDR_LEN);
836
837     /* Add the record to the end of chain */
838     if (!p_db->p_first_rec)
839         p_db->p_first_rec = p_rec;
840     else
841     {
842         tSDP_DISC_REC   *p_rec1 = p_db->p_first_rec;
843
844         while (p_rec1->p_next_rec)
845             p_rec1 = p_rec1->p_next_rec;
846
847         p_rec1->p_next_rec = p_rec;
848     }
849
850     return (p_rec);
851 }
852
853 #define SDP_ADDITIONAL_LIST_MASK        0x80
854 /*******************************************************************************
855 **
856 ** Function         add_attr
857 **
858 ** Description      This function allocates space for an attribute from the DB
859 **                  and copies the data into it.
860 **
861 ** Returns          pointer to next byte in data stream
862 **
863 *******************************************************************************/
864 static UINT8 *add_attr (UINT8 *p, tSDP_DISCOVERY_DB *p_db, tSDP_DISC_REC *p_rec,
865                         UINT16 attr_id, tSDP_DISC_ATTR *p_parent_attr, UINT8 nest_level)
866 {
867     tSDP_DISC_ATTR  *p_attr;
868     UINT32          attr_len;
869     UINT32          total_len;
870     UINT16          attr_type;
871     UINT16          id;
872     UINT8           type;
873     UINT8           *p_end;
874     UINT8           is_additional_list = nest_level & SDP_ADDITIONAL_LIST_MASK;
875
876     nest_level &= ~(SDP_ADDITIONAL_LIST_MASK);
877
878     type = *p++;
879     p = sdpu_get_len_from_type (p, type, &attr_len);
880
881     attr_len &= SDP_DISC_ATTR_LEN_MASK;
882     attr_type = (type >> 3) & 0x0f;
883
884     /* See if there is enough space in the database */
885     if (attr_len > 4)
886         total_len = attr_len - 4 + (UINT16)sizeof (tSDP_DISC_ATTR);
887     else
888         total_len = sizeof (tSDP_DISC_ATTR);
889
890     /* Ensure it is a multiple of 4 */
891     total_len = (total_len + 3) & ~3;
892
893     /* See if there is enough space in the database */
894     if (p_db->mem_free < total_len)
895         return (NULL);
896
897     p_attr                = (tSDP_DISC_ATTR *) p_db->p_free_mem;
898     p_attr->attr_id       = attr_id;
899     p_attr->attr_len_type = (UINT16)attr_len | (attr_type << 12);
900     p_attr->p_next_attr = NULL;
901
902     /* Store the attribute value */
903     switch (attr_type)
904     {
905     case UINT_DESC_TYPE:
906         if( (is_additional_list != 0) && (attr_len == 2) )
907         {
908             BE_STREAM_TO_UINT16 (id, p);
909             if(id != ATTR_ID_PROTOCOL_DESC_LIST)
910                 p -= 2;
911             else
912             {
913                 /* Reserve the memory for the attribute now, as we need to add sub-attributes */
914                 p_db->p_free_mem += sizeof (tSDP_DISC_ATTR);
915                 p_db->mem_free   -= sizeof (tSDP_DISC_ATTR);
916                 p_end             = p + attr_len;
917                 total_len         = 0;
918
919                 /* SDP_TRACE_DEBUG ("SDP - attr nest level:%d(list)", nest_level); */
920                 if (nest_level >= MAX_NEST_LEVELS)
921                 {
922                     SDP_TRACE_ERROR ("SDP - attr nesting too deep");
923                     return (p_end);
924                 }
925
926                 /* Now, add the list entry */
927                 p = add_attr (p, p_db, p_rec, ATTR_ID_PROTOCOL_DESC_LIST, p_attr, (UINT8)(nest_level + 1));
928
929                 break;
930             }
931         }
932         /* Case falls through */
933
934     case TWO_COMP_INT_DESC_TYPE:
935         switch (attr_len)
936         {
937         case 1:
938             p_attr->attr_value.v.u8 = *p++;
939             break;
940         case 2:
941             BE_STREAM_TO_UINT16 (p_attr->attr_value.v.u16, p);
942             break;
943         case 4:
944             BE_STREAM_TO_UINT32 (p_attr->attr_value.v.u32, p);
945             break;
946         default:
947             BE_STREAM_TO_ARRAY (p, p_attr->attr_value.v.array, (INT32)attr_len);
948             break;
949         }
950         break;
951
952     case UUID_DESC_TYPE:
953         switch (attr_len)
954         {
955         case 2:
956             BE_STREAM_TO_UINT16 (p_attr->attr_value.v.u16, p);
957             break;
958         case 4:
959             BE_STREAM_TO_UINT32 (p_attr->attr_value.v.u32, p);
960             if (p_attr->attr_value.v.u32 < 0x10000)
961             {
962                 attr_len = 2;
963                 p_attr->attr_len_type = (UINT16)attr_len | (attr_type << 12);
964                 p_attr->attr_value.v.u16 = (UINT16) p_attr->attr_value.v.u32;
965
966             }
967             break;
968         case 16:
969             /* See if we can compress his UUID down to 16 or 32bit UUIDs */
970             if (sdpu_is_base_uuid (p))
971             {
972                 if ((p[0] == 0) && (p[1] == 0))
973                 {
974                     p_attr->attr_len_type = (p_attr->attr_len_type & ~SDP_DISC_ATTR_LEN_MASK) | 2;
975                     p += 2;
976                     BE_STREAM_TO_UINT16 (p_attr->attr_value.v.u16, p);
977                     p += MAX_UUID_SIZE - 4;
978                 }
979                 else
980                 {
981                     p_attr->attr_len_type = (p_attr->attr_len_type & ~SDP_DISC_ATTR_LEN_MASK) | 4;
982                     BE_STREAM_TO_UINT32 (p_attr->attr_value.v.u32, p);
983                     p += MAX_UUID_SIZE - 4;
984                 }
985             }
986             else
987             {
988                  /* coverity[overrun-local] */
989                  /*
990                     Event overrun-local: Overrun of static array "p_attr->attr_value.v.array" of size 4 at position 15 with index variable "ijk"
991                     False-positive: SDP uses scratch buffer to hold the attribute value.
992                     The actual size of tSDP_DISC_ATVAL does not matter.
993                     If the array size in tSDP_DISC_ATVAL is increase, we would increase the system RAM usage unnecessarily
994                 */
995                 BE_STREAM_TO_ARRAY (p, p_attr->attr_value.v.array, (INT32)attr_len);
996             }
997             break;
998         default:
999             SDP_TRACE_WARNING ("SDP - bad len in UUID attr: %d", attr_len);
1000             return (p + attr_len);
1001         }
1002         break;
1003
1004     case DATA_ELE_SEQ_DESC_TYPE:
1005     case DATA_ELE_ALT_DESC_TYPE:
1006         /* Reserve the memory for the attribute now, as we need to add sub-attributes */
1007         p_db->p_free_mem += sizeof (tSDP_DISC_ATTR);
1008         p_db->mem_free   -= sizeof (tSDP_DISC_ATTR);
1009         p_end             = p + attr_len;
1010         total_len         = 0;
1011
1012         /* SDP_TRACE_DEBUG ("SDP - attr nest level:%d", nest_level); */
1013         if (nest_level >= MAX_NEST_LEVELS)
1014         {
1015             SDP_TRACE_ERROR ("SDP - attr nesting too deep");
1016             return (p_end);
1017         }
1018         if(is_additional_list != 0 || attr_id == ATTR_ID_ADDITION_PROTO_DESC_LISTS)
1019             nest_level |= SDP_ADDITIONAL_LIST_MASK;
1020         /* SDP_TRACE_DEBUG ("SDP - attr nest level:0x%x(finish)", nest_level); */
1021
1022         while (p < p_end)
1023         {
1024             /* Now, add the list entry */
1025             p = add_attr (p, p_db, p_rec, 0, p_attr, (UINT8)(nest_level + 1));
1026
1027             if (!p)
1028                 return (NULL);
1029         }
1030         break;
1031
1032     case TEXT_STR_DESC_TYPE:
1033     case URL_DESC_TYPE:
1034         BE_STREAM_TO_ARRAY (p, p_attr->attr_value.v.array, (INT32)attr_len);
1035         break;
1036
1037     case BOOLEAN_DESC_TYPE:
1038         switch (attr_len)
1039         {
1040         case 1:
1041             p_attr->attr_value.v.u8 = *p++;
1042             break;
1043         default:
1044             SDP_TRACE_WARNING ("SDP - bad len in boolean attr: %d", attr_len);
1045             return (p + attr_len);
1046         }
1047         break;
1048
1049     default:    /* switch (attr_type) */
1050         break;
1051     }
1052
1053     p_db->p_free_mem += total_len;
1054     p_db->mem_free   -= total_len;
1055
1056     /* Add the attribute to the end of the chain */
1057     if (!p_parent_attr)
1058     {
1059         if (!p_rec->p_first_attr)
1060             p_rec->p_first_attr = p_attr;
1061         else
1062         {
1063             tSDP_DISC_ATTR  *p_attr1 = p_rec->p_first_attr;
1064
1065             while (p_attr1->p_next_attr)
1066                 p_attr1 = p_attr1->p_next_attr;
1067
1068             p_attr1->p_next_attr = p_attr;
1069         }
1070     }
1071     else
1072     {
1073         if (!p_parent_attr->attr_value.v.p_sub_attr)
1074         {
1075             p_parent_attr->attr_value.v.p_sub_attr = p_attr;
1076             /* SDP_TRACE_DEBUG ("parent:0x%x(id:%d), ch:0x%x(id:%d)",
1077                 p_parent_attr, p_parent_attr->attr_id, p_attr, p_attr->attr_id); */
1078         }
1079         else
1080         {
1081             tSDP_DISC_ATTR  *p_attr1 = p_parent_attr->attr_value.v.p_sub_attr;
1082             /* SDP_TRACE_DEBUG ("parent:0x%x(id:%d), ch1:0x%x(id:%d)",
1083                 p_parent_attr, p_parent_attr->attr_id, p_attr1, p_attr1->attr_id); */
1084
1085             while (p_attr1->p_next_attr)
1086                 p_attr1 = p_attr1->p_next_attr;
1087
1088             p_attr1->p_next_attr = p_attr;
1089             /* SDP_TRACE_DEBUG ("new ch:0x%x(id:%d)", p_attr, p_attr->attr_id); */
1090         }
1091     }
1092
1093     return (p);
1094 }
1095
1096 #endif  /* CLIENT_ENABLED == TRUE */