OSDN Git Service

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