3 Copyright (C) Dean Camera, 2010.
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.com
10 Copyright 2010 Dean Camera (dean [at] fourwalledcubicle [dot] com)
12 Permission to use, copy, modify, distribute, and sell this
13 software and its documentation for any purpose is hereby granted
14 without fee, provided that the above copyright notice appear in
15 all copies and that both that the copyright notice and this
16 permission notice and warranty disclaimer appear in supporting
17 documentation, and that the name of the author not be used in
18 advertising or publicity pertaining to distribution of the
19 software without specific, written prior permission.
21 The author disclaim all warranties with regard to this
22 software, including all implied warranties of merchantability
23 and fitness. In no event shall the author be liable for any
24 special, indirect or consequential damages or any damages
25 whatsoever resulting from loss of use, data or profits, whether
26 in an action of contract, negligence or other tortious action,
27 arising out of or in connection with the use or performance of
31 #define INCLUDE_FROM_SERVICEDISCOVERYPROTOCOL_C
32 #include "ServiceDiscoveryProtocol.h"
34 /** Service attribute table list, containing a pointer to each service attribute table the device contains */
35 const ServiceAttributeTable_t
* SDP_Services_Table
[] PROGMEM
=
37 SerialPort_Attribute_Table
,
40 /** Base UUID value common to all standardized Bluetooth services */
41 const UUID_t BaseUUID PROGMEM
= {0x00000000, BASE_80BIT_UUID
};
43 /** Main Service Discovery Protocol packet processing routine. This function processes incomming SDP packets from
44 * a connected Bluetooth device, and sends back appropriate responses to allow other devices to determine the
45 * services the local device exposes.
47 * \param[in] Data Incomming packet data containing the SDP request
48 * \param[in] Channel Channel the request was issued to by the remote device
50 void SDP_ProcessPacket(void* Data
, Bluetooth_Channel_t
* const Channel
)
52 SDP_PDUHeader_t
* SDPHeader
= (SDP_PDUHeader_t
*)Data
;
53 SDPHeader
->ParameterLength
= SwapEndian_16(SDPHeader
->ParameterLength
);
55 BT_SDP_DEBUG(1, "SDP Packet Received");
56 BT_SDP_DEBUG(2, "-- PDU ID: 0x%02X", SDPHeader
->PDU
);
57 BT_SDP_DEBUG(2, "-- Param Length: 0x%04X", SDPHeader
->ParameterLength
);
59 switch (SDPHeader
->PDU
)
61 case SDP_PDU_SERVICESEARCHREQUEST
:
62 SDP_ProcessServiceSearch(SDPHeader
, Channel
);
64 case SDP_PDU_SERVICEATTRIBUTEREQUEST
:
65 SDP_ProcessServiceAttribute(SDPHeader
, Channel
);
67 case SDP_PDU_SERVICESEARCHATTRIBUTEREQUEST
:
68 SDP_ProcessServiceSearchAttribute(SDPHeader
, Channel
);
73 /** Internal processing routine for SDP Service Search Requests.
75 * \param[in] SDPHeader Pointer to the start of the issued SDP request
76 * \param[in] Channel Pointer to the Bluetooth channel structure the request was issued to
78 static void SDP_ProcessServiceSearch(const SDP_PDUHeader_t
* const SDPHeader
, Bluetooth_Channel_t
* const Channel
)
80 const void* CurrentParameter
= ((void*)SDPHeader
+ sizeof(SDP_PDUHeader_t
));
82 BT_SDP_DEBUG(1, "<< Service Search");
84 /* Retrieve the list of search UUIDs from the request */
85 uint8_t UUIDList
[12][UUID_SIZE_BYTES
];
86 uint8_t TotalUUIDs
= SDP_GetUUIDList(UUIDList
, &CurrentParameter
);
87 BT_SDP_DEBUG(2, "-- Total UUIDs: %d", TotalUUIDs
);
89 /* Retrieve the maximum service record reponse count from the request */
90 uint16_t MaxServiceRecordCount
= SDP_ReadData16(&CurrentParameter
);
91 BT_SDP_DEBUG(2, "-- Max Return Service Count: 0x%04X", MaxServiceRecordCount
);
95 SDP_PDUHeader_t SDPHeader
;
96 uint16_t TotalServiceRecordCount
;
97 uint16_t CurrentServiceRecordCount
;
98 uint8_t ResponseData
[100];
101 uint8_t AddedServiceHandles
= 0;
103 /* Create a pointer to the buffer to indicate the current location for response data to be added */
104 void* CurrResponsePos
= ResponsePacket
.ResponseData
;
106 /* Search through the global service list an item at a time */
107 for (uint8_t CurrTableItem
= 0; CurrTableItem
< (sizeof(SDP_Services_Table
) / sizeof(void*)); CurrTableItem
++)
109 /* Read in a pointer to the current UUID table entry's Attribute table */
110 ServiceAttributeTable_t
* CurrAttributeTable
= pgm_read_ptr(&SDP_Services_Table
[CurrTableItem
]);
112 if (!(SDP_SearchServiceTable(UUIDList
, TotalUUIDs
, CurrAttributeTable
)))
115 BT_SDP_DEBUG(2, " -- Found search match in table");
117 /* Retrieve a PROGMEM pointer to the value of the service's record handle */
118 const void* AttributeValue
= SDP_GetAttributeValue(CurrAttributeTable
, SDP_ATTRIBUTE_ID_SERVICERECORDHANDLE
);
120 /* Copy over the service record handle to the response list */
121 uint8_t AttrHeaderSize
;
122 uint8_t AttrSize
= SDP_GetLocalAttributeContainerSize(AttributeValue
, &AttrHeaderSize
);
123 memcpy_P(CurrResponsePos
, AttributeValue
+ AttrHeaderSize
, AttrSize
);
124 CurrResponsePos
+= AttrHeaderSize
+ AttrSize
;
126 AddedServiceHandles
++;
129 /* Continuation state - always zero */
130 SDP_WriteData8(&CurrResponsePos
, 0);
132 /* Fill out the service record count values in the returned packet */
133 ResponsePacket
.TotalServiceRecordCount
= SwapEndian_16(AddedServiceHandles
);
134 ResponsePacket
.CurrentServiceRecordCount
= ResponsePacket
.TotalServiceRecordCount
;
136 /* Calculate the total parameter length that is to be sent, including the fixed return parameters, the created service
137 handle list and the SDP continuation state */
138 uint16_t ParamLength
= (ResponsePacket
.CurrentServiceRecordCount
<< 2) +
139 sizeof(ResponsePacket
.CurrentServiceRecordCount
) +
140 sizeof(ResponsePacket
.TotalServiceRecordCount
) +
143 /* Fill in the response packet's header */
144 ResponsePacket
.SDPHeader
.PDU
= SDP_PDU_SERVICESEARCHRESPONSE
;
145 ResponsePacket
.SDPHeader
.TransactionID
= SDPHeader
->TransactionID
;
146 ResponsePacket
.SDPHeader
.ParameterLength
= SwapEndian_16(ParamLength
);
148 BT_SDP_DEBUG(1, ">> Service Search Response");
150 /* Send the completed response packet to the sender */
151 Bluetooth_SendPacket(&ResponsePacket
, (sizeof(ResponsePacket
.SDPHeader
) + ParamLength
), Channel
);
154 /** Internal processing routine for SDP Service Attribute Requests.
156 * \param[in] SDPHeader Pointer to the start of the issued SDP request
157 * \param[in] Channel Pointer to the Bluetooth channel structure the request was issued to
159 static void SDP_ProcessServiceAttribute(const SDP_PDUHeader_t
* const SDPHeader
, Bluetooth_Channel_t
* const Channel
)
161 const void* CurrentParameter
= ((void*)SDPHeader
+ sizeof(SDP_PDUHeader_t
));
163 BT_SDP_DEBUG(1, "<< Service Attribute");
165 /* Retrieve the service handle whose attributes are to be examined */
166 uint32_t ServiceHandle
= SDP_ReadData32(&CurrentParameter
);
167 BT_SDP_DEBUG(2, "-- Service Handle: 0x%08lX", ServiceHandle
);
169 /* Retrieve the maximum Attribute reponse size from the request */
170 uint16_t MaxAttributeSize
= SDP_ReadData16(&CurrentParameter
);
171 BT_SDP_DEBUG(2, "-- Max Return Attribute Bytes: 0x%04X", MaxAttributeSize
);
173 /* Retrieve the list of Attributes from the request */
174 uint16_t AttributeList
[8][2];
175 uint8_t TotalAttributes
= SDP_GetAttributeList(AttributeList
, &CurrentParameter
);
176 BT_SDP_DEBUG(2, "-- Total Attributes: %d", TotalAttributes
);
180 SDP_PDUHeader_t SDPHeader
;
181 uint16_t AttributeListByteCount
;
182 uint8_t ResponseData
[100];
185 /* Create a pointer to the buffer to indicate the current location for response data to be added */
186 void* CurrResponsePos
= ResponsePacket
.ResponseData
;
188 /* Clamp the maximum attribute size to the size of the allocated buffer */
189 if (MaxAttributeSize
> sizeof(ResponsePacket
.ResponseData
))
190 MaxAttributeSize
= sizeof(ResponsePacket
.ResponseData
);
192 uint16_t TotalResponseSize
= 0;
194 /* Search through the global UUID list an item at a time */
195 for (uint8_t CurrTableItem
= 0; CurrTableItem
< (sizeof(SDP_Services_Table
) / sizeof(void*)); CurrTableItem
++)
197 /* Read in a pointer to the current UUID table entry's Attribute table */
198 ServiceAttributeTable_t
* CurrAttributeTable
= pgm_read_ptr(&SDP_Services_Table
[CurrTableItem
]);
200 /* Retrieve a PROGMEM pointer to the value of the Service Record Handle */
201 const void* ServiceRecord
= SDP_GetAttributeValue(CurrAttributeTable
, SDP_ATTRIBUTE_ID_SERVICERECORDHANDLE
);
203 /* Get the size of the header for the Service Record Handle */
204 uint8_t AttrHeaderSize
;
205 SDP_GetLocalAttributeContainerSize(ServiceRecord
, &AttrHeaderSize
);
207 /* Retrieve the endian-swapped service handle of the current service being examined */
208 uint32_t CurrServiceHandle
= SwapEndian_32(pgm_read_dword(ServiceRecord
+ AttrHeaderSize
));
210 /* Check if the current service in the service table has the requested service handle */
211 if (ServiceHandle
== CurrServiceHandle
)
213 /* Add the listed attributes for the found UUID to the response */
214 TotalResponseSize
= SDP_AddListedAttributesToResponse(CurrAttributeTable
, AttributeList
, TotalAttributes
,
217 /* Requested service found, abort the search through the service table */
222 /* Continuation state - always zero */
223 SDP_WriteData8(&CurrResponsePos
, 0);
225 /* Set the total response list size to the size of the outer container plus its header size and continuation state */
226 ResponsePacket
.AttributeListByteCount
= SwapEndian_16(TotalResponseSize
);
228 /* Calculate the total parameter length that is to be sent, including the fixed return parameters, the created attribute
229 value list and the SDP continuation state */
230 uint16_t ParamLength
= (sizeof(ResponsePacket
.AttributeListByteCount
) + TotalResponseSize
+ sizeof(uint8_t));
232 /* Fill in the response packet's header */
233 ResponsePacket
.SDPHeader
.PDU
= SDP_PDU_SERVICEATTRIBUTERESPONSE
;
234 ResponsePacket
.SDPHeader
.TransactionID
= SDPHeader
->TransactionID
;
235 ResponsePacket
.SDPHeader
.ParameterLength
= SwapEndian_16(ParamLength
);
237 BT_SDP_DEBUG(1, ">> Service Attribute Response");
238 BT_SDP_DEBUG(2, "-- Param Len 0x%04X", ParamLength
);
240 /* Send the completed response packet to the sender */
241 Bluetooth_SendPacket(&ResponsePacket
, (sizeof(ResponsePacket
.SDPHeader
) + ParamLength
), Channel
);
244 /** Internal processing routine for SDP Service Search Attribute Requests.
246 * \param[in] SDPHeader Pointer to the start of the issued SDP request
247 * \param[in] Channel Pointer to the Bluetooth channel structure the request was issued to
249 static void SDP_ProcessServiceSearchAttribute(const SDP_PDUHeader_t
* const SDPHeader
, Bluetooth_Channel_t
* const Channel
)
251 const void* CurrentParameter
= ((void*)SDPHeader
+ sizeof(SDP_PDUHeader_t
));
253 BT_SDP_DEBUG(1, "<< Service Search Attribute");
255 /* Retrieve the list of search UUIDs from the request */
256 uint8_t UUIDList
[12][UUID_SIZE_BYTES
];
257 uint8_t TotalUUIDs
= SDP_GetUUIDList(UUIDList
, &CurrentParameter
);
258 BT_SDP_DEBUG(2, "-- Total UUIDs: %d", TotalUUIDs
);
260 /* Retrieve the maximum Attribute reponse size from the request */
261 uint16_t MaxAttributeSize
= SDP_ReadData16(&CurrentParameter
);
262 BT_SDP_DEBUG(2, "-- Max Return Attribute Bytes: 0x%04X", MaxAttributeSize
);
264 /* Retrieve the list of Attributes from the request */
265 uint16_t AttributeList
[8][2];
266 uint8_t TotalAttributes
= SDP_GetAttributeList(AttributeList
, &CurrentParameter
);
267 BT_SDP_DEBUG(2, "-- Total Attributes: %d", TotalAttributes
);
271 SDP_PDUHeader_t SDPHeader
;
272 uint16_t AttributeListByteCount
;
273 uint8_t ResponseData
[100];
276 /* Create a pointer to the buffer to indicate the current location for response data to be added */
277 void* CurrResponsePos
= ResponsePacket
.ResponseData
;
279 /* Clamp the maximum attribute size to the size of the allocated buffer */
280 if (MaxAttributeSize
> sizeof(ResponsePacket
.ResponseData
))
281 MaxAttributeSize
= sizeof(ResponsePacket
.ResponseData
);
283 /* Add the outer Data Element Sequence header for all of the retrieved Attributes */
284 uint16_t* TotalResponseSize
= SDP_AddSequence16(&CurrResponsePos
);
286 /* Search through the global service list an item at a time */
287 for (uint8_t CurrTableItem
= 0; CurrTableItem
< (sizeof(SDP_Services_Table
) / sizeof(void*)); CurrTableItem
++)
289 /* Read in a pointer to the current UUID table entry's Attribute table */
290 ServiceAttributeTable_t
* CurrAttributeTable
= pgm_read_ptr(&SDP_Services_Table
[CurrTableItem
]);
292 if (!(SDP_SearchServiceTable(UUIDList
, TotalUUIDs
, CurrAttributeTable
)))
295 BT_SDP_DEBUG(2, " -- Found search match in table");
297 /* Add the listed attributes for the found UUID to the response */
298 *TotalResponseSize
+= SDP_AddListedAttributesToResponse(CurrAttributeTable
, AttributeList
, TotalAttributes
,
302 /* Continuation state - always zero */
303 SDP_WriteData8(&CurrResponsePos
, 0);
305 /* Set the total response list size to the size of the outer container plus its header size and continuation state */
306 ResponsePacket
.AttributeListByteCount
= SwapEndian_16(3 + *TotalResponseSize
);
308 /* Calculate the total parameter length that is to be sent, including the fixed return parameters, the created attribute
309 value list and the SDP continuation state */
310 uint16_t ParamLength
= (sizeof(ResponsePacket
.AttributeListByteCount
) +
311 (3 + *TotalResponseSize
) +
314 /* Flip the endianness of the container's size */
315 *TotalResponseSize
= SwapEndian_16(*TotalResponseSize
);
317 /* Fill in the response packet's header */
318 ResponsePacket
.SDPHeader
.PDU
= SDP_PDU_SERVICESEARCHATTRIBUTERESPONSE
;
319 ResponsePacket
.SDPHeader
.TransactionID
= SDPHeader
->TransactionID
;
320 ResponsePacket
.SDPHeader
.ParameterLength
= SwapEndian_16(ParamLength
);
322 BT_SDP_DEBUG(1, ">> Service Search Attribute Response");
323 BT_SDP_DEBUG(2, "-- Param Len 0x%04X", ParamLength
);
325 /* Send the completed response packet to the sender */
326 Bluetooth_SendPacket(&ResponsePacket
, (sizeof(ResponsePacket
.SDPHeader
) + ParamLength
), Channel
);
329 /** Adds all the Attributes in the given service table to the response that appear in the Attribute table.
331 * \param[in] AttributeTable Pointer to an Attribute table for the service to examine
332 * \param[in] AttributeList Pointer to a list of Attribute ranges
333 * \param[in] TotalAttributes Number of Attributes stored in the Attribute list
334 * \param[out] BufferPos Pointer to the output buffer position where the retrieved attributes are to be stored
336 * \return Number of bytes added to the output buffer
338 static uint16_t SDP_AddListedAttributesToResponse(const ServiceAttributeTable_t
* AttributeTable
, uint16_t AttributeList
[][2],
339 const uint8_t TotalAttributes
, void** const BufferPos
)
341 uint16_t TotalResponseSize
;
343 /* Add an inner Data Element Sequence header for the current services's found Attributes */
344 uint16_t* AttributeListSize
= SDP_AddSequence16(BufferPos
);
346 /* Search through the list of Attributes one at a time looking for values in the current UUID's Attribute table */
347 for (uint8_t CurrAttribute
= 0; CurrAttribute
< TotalAttributes
; CurrAttribute
++)
349 uint16_t* AttributeIDRange
= AttributeList
[CurrAttribute
];
350 void* AttributeValue
;
352 /* Look through the current service's attribute list, examining all the attributes */
353 while ((AttributeValue
= pgm_read_ptr(&AttributeTable
->Data
)) != NULL
)
355 /* Get the current Attribute's ID from the current attribute table entry */
356 uint16_t CurrAttributeID
= pgm_read_word(&AttributeTable
->AttributeID
);
358 /* Check if the current Attribute's ID is within the current Attribute range */
359 if ((CurrAttributeID
>= AttributeIDRange
[0]) && (CurrAttributeID
<= AttributeIDRange
[1]))
361 /* Increment the current UUID's returned Attribute container size by the number of added bytes */
362 *AttributeListSize
+= SDP_AddAttributeToResponse(CurrAttributeID
, AttributeValue
, BufferPos
);
369 /* Record the total number of added bytes to the buffer */
370 TotalResponseSize
= 3 + *AttributeListSize
;
372 /* Fix endianness of the added attribute data element sequence */
373 *AttributeListSize
= SwapEndian_16(*AttributeListSize
);
375 return TotalResponseSize
;
378 /** Adds the given attribute ID and value to the reponse buffer, and advances the response buffer pointer past the added data.
380 * \param[in] AttributeID Attribute ID to add to the response buffer
381 * \param[in] AttributeValue Pointer to the start of the Attribute's value, located in PROGMEM
382 * \param[in, out] ResponseBuffer Pointer to a buffer where the Attribute and Attribute Value is to be added
384 * \return Number of bytes added to the response buffer
386 static uint16_t SDP_AddAttributeToResponse(const uint16_t AttributeID
, const void* AttributeValue
, void** ResponseBuffer
)
388 /* Retrieve the size of the attribute value from its container header */
389 uint8_t AttributeHeaderLength
;
390 uint16_t AttributeValueLength
= SDP_GetLocalAttributeContainerSize(AttributeValue
, &AttributeHeaderLength
);
392 BT_SDP_DEBUG(2, " -- Add Attribute (0x%04X) 0x%04X", (AttributeHeaderLength
+ AttributeValueLength
), AttributeID
);
394 /* Add a Data Element header to the response for the Attribute ID */
395 SDP_WriteData8(ResponseBuffer
, (SDP_DATATYPE_UnsignedInt
| SDP_DATASIZE_16Bit
));
397 /* Add the Attribute ID to the created Data Element */
398 SDP_WriteData16(ResponseBuffer
, AttributeID
);
400 /* Copy over the Attribute value Data Element container to the response */
401 memcpy_P(*ResponseBuffer
, AttributeValue
, AttributeHeaderLength
+ AttributeValueLength
);
402 *ResponseBuffer
+= AttributeHeaderLength
+ AttributeValueLength
;
404 return (sizeof(uint8_t) + sizeof(uint16_t) + AttributeHeaderLength
+ AttributeValueLength
);
407 /** Retrieves a pointer to the value of the given Attribute ID from the given Attribute table.
409 * \param[in] AttributeTable Pointer to the Attribute table to search in
410 * \param[in] AttributeID Attribute ID to search for within the table
412 * \return Pointer to the start of the Attribute's value if found within the table, NULL otherwise
414 static void* SDP_GetAttributeValue(const ServiceAttributeTable_t
* AttributeTable
, const uint16_t AttributeID
)
416 void* CurrTableItemData
;
418 /* Search through the current Attribute table, abort when the terminator item has been reached */
419 while ((CurrTableItemData
= pgm_read_ptr(&AttributeTable
->Data
)) != NULL
)
421 /* Check if the current Attribute ID matches the search ID - if so return a pointer to it */
422 if (pgm_read_word(&AttributeTable
->AttributeID
) == AttributeID
)
423 return CurrTableItemData
;
431 /** Retrieves the Attribute table for the given UUID list if it exists.
433 * \param[in] UUIDList List of UUIDs which must be matched within the service attribute table
434 * \param[in] TotalUUIDs Total number of UUIDs stored in the UUID list
435 * \param[in] CurrAttributeTable Pointer to the service attribute table to search through
437 * \return True if all the UUIDs given in the UUID list appear in the given attribute table, false otherwise
439 static bool SDP_SearchServiceTable(uint8_t UUIDList
[][UUID_SIZE_BYTES
], const uint8_t TotalUUIDs
,
440 const ServiceAttributeTable_t
* CurrAttributeTable
)
442 bool UUIDMatch
[TotalUUIDs
];
444 /* Set all the match flags to false (not matched) before starting the search */
445 memset(UUIDMatch
, false, sizeof(UUIDMatch
));
447 const void* CurrAttribute
;
449 /* Search through the current attribute table, checking each attribute value for UUID matches */
450 while ((CurrAttribute
= pgm_read_ptr(&CurrAttributeTable
->Data
)) != NULL
)
452 SDP_CheckUUIDMatch(UUIDList
, TotalUUIDs
, UUIDMatch
, CurrAttribute
);
453 CurrAttributeTable
++;
456 /* Determine how many UUID matches in the list we have found */
457 uint8_t UUIDMatches
= 0;
458 for (uint8_t i
= 0; i
< TotalUUIDs
; i
++)
464 /* If all UUIDs have been matched to the current service, return true */
465 return (UUIDMatches
== TotalUUIDs
);
468 /** Recursively upwraps the given locally stored attribute (in PROGMEM space), searching for UUIDs to match against
469 * the given UUID list. As matches are found, they are indicated in the UUIDMatch flag list.
471 * \param[in] UUIDList List of UUIDs which must be matched within the service attribute table
472 * \param[in] TotalUUIDs Total number of UUIDs stored in the UUID list
473 * \param[in, out] UUIDMatch Array of flags indicating which UUIDs in the list have already been matched
474 * \param[in] CurrAttribute Pointer to the current attribute to search through
476 * \return True if all the UUIDs given in the UUID list appear in the given attribute table, false otherwise
478 static void SDP_CheckUUIDMatch(uint8_t UUIDList
[][UUID_SIZE_BYTES
], const uint8_t TotalUUIDs
, bool UUIDMatch
[],
479 const void* CurrAttribute
)
481 uint8_t CurrAttributeType
= (pgm_read_byte(CurrAttribute
) & ~0x07);
483 /* Check the data type of the current attribute value - if UUID, compare, if Sequence, unwrap and recurse */
484 if (CurrAttributeType
== SDP_DATATYPE_UUID
)
486 /* Look for matches in the UUID list against the current attribute UUID value */
487 for (uint8_t i
= 0; i
< TotalUUIDs
; i
++)
489 /* Check if the current unmatched UUID is identical to the search UUID */
490 if (!(UUIDMatch
[i
]) && !(memcmp_P(UUIDList
[i
], (CurrAttribute
+ 1), UUID_SIZE_BYTES
)))
492 /* Indicate match found for the current attribute UUID and early-abort */
498 else if (CurrAttributeType
== SDP_DATATYPE_Sequence
)
500 uint8_t SequenceHeaderSize
;
501 uint16_t SequenceSize
= SDP_GetLocalAttributeContainerSize(CurrAttribute
, &SequenceHeaderSize
);
503 CurrAttribute
+= SequenceHeaderSize
;
505 /* Recursively unwrap the sequence container, and re-search its contents for UUIDs */
508 uint8_t InnerHeaderSize
;
509 uint16_t InnerSize
= SDP_GetLocalAttributeContainerSize(CurrAttribute
, &InnerHeaderSize
);
511 SDP_CheckUUIDMatch(UUIDList
, TotalUUIDs
, UUIDMatch
, CurrAttribute
);
513 SequenceSize
-= InnerHeaderSize
+ InnerSize
;
514 CurrAttribute
+= InnerHeaderSize
+ InnerSize
;
519 /** Reads in the collection of Attribute ranges from the input buffer's Data Element Sequence container, into the given
520 * Attribute list for later use. Once complete, the input buffer pointer is advanced to the end of the Attribute container.
522 * \param[out] AttributeList Pointer to a buffer where the list of Attribute ranges are to be stored
523 * \param[in] CurrentParameter Pointer to a Buffer containing a Data Element Sequence of Attribute and Attribute Range elements
525 * \return Total number of Attribute ranges stored in the Data Element Sequence
527 static uint8_t SDP_GetAttributeList(uint16_t AttributeList
[][2], const void** const CurrentParameter
)
529 uint8_t ElementHeaderSize
;
530 uint8_t TotalAttributes
= 0;
532 /* Retrieve the total size of the Attribute container, and unwrap the outer Data Element Sequence container */
533 uint16_t AttributeIDListLength
= SDP_GetDataElementSize(CurrentParameter
, &ElementHeaderSize
);
534 BT_SDP_DEBUG(2, "-- Total Attribute Length: 0x%04X", AttributeIDListLength
);
535 while (AttributeIDListLength
)
537 /* Retrieve the size of the next Attribute in the container and get a pointer to the next free Attribute element in the list */
538 uint16_t* CurrentAttributeRange
= AttributeList
[TotalAttributes
++];
539 uint8_t AttributeLength
= SDP_GetDataElementSize(CurrentParameter
, &ElementHeaderSize
);
541 /* Copy over the starting Attribute ID and (if it the current element is a range) the ending Attribute ID */
542 memcpy(&CurrentAttributeRange
[0], *CurrentParameter
, AttributeLength
);
544 /* If the element is not an Attribute Range, copy over the starting ID to the ending ID to make a range of 1 */
545 if (AttributeLength
== 2)
546 CurrentAttributeRange
[1] = CurrentAttributeRange
[0];
548 /* Swap the endianness of the attribute range values */
549 CurrentAttributeRange
[0] = SwapEndian_16(CurrentAttributeRange
[0]);
550 CurrentAttributeRange
[1] = SwapEndian_16(CurrentAttributeRange
[1]);
552 BT_SDP_DEBUG(2, "-- Attribute: 0x%04X-0x%04X", CurrentAttributeRange
[0], CurrentAttributeRange
[1]);
554 AttributeIDListLength
-= (AttributeLength
+ ElementHeaderSize
);
555 *CurrentParameter
+= AttributeLength
;
558 return TotalAttributes
;
561 /** Reads in the collection of UUIDs from the input buffer's Data Element Sequence container, into the given
562 * UUID list for later use. Once complete, the input buffer pointer is advanced to the end of the UUID container.
564 * \param[out] UUIDList Pointer to a buffer where the list of UUIDs are to be stored
565 * \param[in] CurrentParameter Pointer to a Buffer containing a Data Element Sequence of UUID elements
567 * \return Total number of UUIDs stored in the Data Element Sequence
569 static uint8_t SDP_GetUUIDList(uint8_t UUIDList
[][UUID_SIZE_BYTES
], const void** const CurrentParameter
)
571 uint8_t ElementHeaderSize
;
572 uint8_t TotalUUIDs
= 0;
574 /* Retrieve the total size of the UUID container, and unwrap the outer Data Element Sequence container */
575 uint16_t ServicePatternLength
= SDP_GetDataElementSize(CurrentParameter
, &ElementHeaderSize
);
576 BT_SDP_DEBUG(2, "-- Total UUID Length: 0x%04X", ServicePatternLength
);
577 while (ServicePatternLength
)
579 /* Retrieve the size of the next UUID in the container and get a pointer to the next free UUID element in the list */
580 uint8_t* CurrentUUID
= UUIDList
[TotalUUIDs
++];
581 uint8_t UUIDLength
= SDP_GetDataElementSize(CurrentParameter
, &ElementHeaderSize
);
583 /* Copy over UUID from the container to the free slot */
586 /* Copy over the base UUID value to the free UUID slot in the list */
587 memcpy_P(CurrentUUID
, &BaseUUID
, sizeof(BaseUUID
));
589 /* Copy over short UUID */
590 memcpy(CurrentUUID
+ (4 - UUIDLength
), *CurrentParameter
, UUIDLength
);
594 /* Copy over full UUID */
595 memcpy(CurrentUUID
, *CurrentParameter
, UUIDLength
);
598 BT_SDP_DEBUG(2, "-- UUID (%d): %02X%02X%02X%02X-%02X%02X-%02X%02X-%02X%02X-%02X%02X%02X%02X%02X%02X",
600 CurrentUUID
[0], CurrentUUID
[1], CurrentUUID
[2], CurrentUUID
[3],
601 CurrentUUID
[4], CurrentUUID
[5],
602 CurrentUUID
[6], CurrentUUID
[7],
603 CurrentUUID
[8], CurrentUUID
[9],
604 CurrentUUID
[10], CurrentUUID
[11], CurrentUUID
[12], CurrentUUID
[13], CurrentUUID
[14], CurrentUUID
[15]);
606 ServicePatternLength
-= (UUIDLength
+ ElementHeaderSize
);
607 *CurrentParameter
+= UUIDLength
;
613 /** Retrieves the total size of the given locally stored (in PROGMEM) attribute Data Element container.
615 * \param[in] AttributeData Pointer to the start of the Attribute container, located in PROGMEM
616 * \param[out] HeaderSize Pointer to a location where the header size of the data element is to be stored
618 * \return Size in bytes of the entire attribute container, including the header
620 static uint32_t SDP_GetLocalAttributeContainerSize(const void* const AttributeData
, uint8_t* const HeaderSize
)
622 /* Fetch the size of the Data Element structure from the header */
623 uint8_t SizeIndex
= (pgm_read_byte(AttributeData
) & 0x07);
625 uint32_t ElementValueSize
;
627 /* Convert the Data Element size index into a size in bytes */
630 case SDP_DATASIZE_Variable8Bit
:
631 *HeaderSize
= (1 + sizeof(uint8_t));
632 ElementValueSize
= pgm_read_byte(AttributeData
+ 1);
634 case SDP_DATASIZE_Variable16Bit
:
635 *HeaderSize
= (1 + sizeof(uint16_t));
636 ElementValueSize
= SwapEndian_16(pgm_read_word(AttributeData
+ 1));
638 case SDP_DATASIZE_Variable32Bit
:
639 *HeaderSize
= (1 + sizeof(uint32_t));
640 ElementValueSize
= SwapEndian_32(pgm_read_dword(AttributeData
+ 1));
644 ElementValueSize
= (1 << SizeIndex
);
648 return ElementValueSize
;
651 /** Retrieves the size of a Data Element container from the current input buffer, and advances the input buffer
652 * pointer to the start of the Data Element's contents.
654 * \param[in, out] DataElementHeader Pointer to the start of a Data Element header
655 * \param[out] ElementHeaderSize Size in bytes of the header that was skipped
657 * \return Size in bytes of the Data Element container's contents, minus the header
659 static uint32_t SDP_GetDataElementSize(const void** const DataElementHeader
, uint8_t* const ElementHeaderSize
)
661 /* Fetch the size of the Data Element structure from the header, increment the current buffer pos */
662 uint8_t SizeIndex
= (SDP_ReadData8(DataElementHeader
) & 0x07);
664 uint32_t ElementValueSize
;
666 /* Convert the Data Element size index into a size in bytes */
669 case SDP_DATASIZE_Variable8Bit
:
670 *ElementHeaderSize
= (1 + sizeof(uint8_t));
671 ElementValueSize
= SDP_ReadData8(DataElementHeader
);
673 case SDP_DATASIZE_Variable16Bit
:
674 *ElementHeaderSize
= (1 + sizeof(uint16_t));
675 ElementValueSize
= SDP_ReadData16(DataElementHeader
);
677 case SDP_DATASIZE_Variable32Bit
:
678 *ElementHeaderSize
= (1 + sizeof(uint32_t));
679 ElementValueSize
= SDP_ReadData32(DataElementHeader
);
682 *ElementHeaderSize
= 1;
683 ElementValueSize
= (1 << SizeIndex
);
687 return ElementValueSize
;