% !TEX root = btstack_gettingstarted.tex \pagebreak \section{Protocols} \label{section:protocols_profiles} BTstack is a modular dual-mode Bluetooth stack, supporting both Bluetooth Basic Rate/Enhanced Date Rate (BR/EDR) as well as Bluetooth Low Energy (LE). The BR/EDR technology, also known as Classic Bluetooth, provides a robust wireless connection between devices designed for high data rates. In contrast, the LE technology has a lower throughput but also lower energy consumption, faster connection setup, and the ability to connect to more devices in parallel. Whether Classic or LE, a Bluetooth device implements one or more Bluetooth profiles. A Bluetooth profile specifies how one or more Bluetooth protocols are used to achieve its goals. For example, every Bluetooth device must implement the Generic Access Profile (GAP), which defines how devices find each other and how they establish a connection. This profile mainly make use of the Host Controller Interface (HCI) protocol, the lowest protocol in the stack hierarchy which implements a command interface to the Bluetooth chipset. In addition to GAP, a popular Classic Bluetooth example would be a peripheral devices that can be connected via the Serial Port Profile (SPP). SPP basically specifies that a compatible device should provide a Service Discovery Protocol (SDP) record containing an RFCOMM channel number, which will be used for the actual communication. Similarly, for every LE device, the Generic Attribute Profile (GATT) profile must be implemented in addition to GAP. GATT is built on top of the Attribute Protocol (ATT), and defines how one device can interact with GATT Services on a remote device. So far, the most popular use of BTstack is in peripheral devices that can be connected via SPP (Android 2.0 or higher) and GATT (Android 4.3 or higher, and iOS 5 or higher). If higher data rates are required between a peripheral and iOS device, the iAP1 and iAP2 protocols of the Made for iPhone program can be used instead of GATT. Please contact us directly for information on BTstack and MFi. In the following, we first explain how the various Bluetooth protocols are used in BTstack. In the next chapter, we go over the profiles. % \item Classic Bluetooth applications % \item Low Energy (LE) Bluetooth applications % \item Dual-mode applications (using both Classic and LE technologies) % \item Made for iPhone applications (MFi) % \end{itemize} \begin{figure}[htbp] % figure placement: here, top, bottom, or page \centering \includegraphics[width=0.9\textwidth]{picts/btstack-protocols.pdf} \caption{BTstack Protocol Architecture} \label{fig:BTstackProtocolArchitecture} \end{figure} % As depicted in Figure \ref{fig:BTstackProtocolArchitecture}, BTstack implements following Bluetooth technologies: % \begin{itemize} % \item Classic Bluetooth: % \begin{itemize} % \item protocols: HCI, L2CAP, RFCOMM, SDP, BNEP % \item profiles: GAP, SPP, PAN (PAN User (PANU)) % \end{itemize} % \item Bluetooth Low Energy: % \begin{itemize} % \item protocols: HCI, L2CAP-LE, SMP, ATT % \item profiles: GAP-LE, GATT % \end{itemize} % \end{itemize} \subsection{HCI - Host Controller Interface} The HCI protocol provides a command interface to the Bluetooth chipset. In BTstack, the HCI implementation also keeps track of all active connections and handles the fragmentation and re-assembly of higher layer (L2CAP) packets. Please note, that an application rarely has to send HCI commands on its own. Instead, BTstack provides convenience functions in GAP and higher level protocols use HCI automatically. E.g. to set the name, you can call \emph{gap\_set\_local\_name()} before powering up. The main use of HCI commands in application is during the startup phase to configure special features that are not available via the GAP API yet. However, as many features of the GAP Classic can be achieved by sending a single HCI command, not all GAP convenience functions are listed in \path{src/gap.h}. If there's no special GAP function, please consider sending the HCI command directly, as explained in the following. \subsubsection{Defining custom HCI command templates} Each HCI command is assigned a 2-byte OpCode used to uniquely identify different types of commands. The OpCode parameter is divided into two fields, called the OpCode Group Field (OGF) and OpCode Command Field (OCF), see \BluetoothSpecification{} - Core Version 4.0, Volume 2, Part E, Chapter 5.4. Listing \ref{hciCmdOGF} shows the OGFs provided by BTstack in \path{src/hci.h} file. For all existing Bluetooth commands and their OCFs see \BluetoothSpecificationURL{} - Core Version 4.0, Volume 2, Part E, Chapter 7. In a HCI command packet, the OpCode is followed by parameter total length, and the actual parameters. BTstack provides the \emph{hci\_cmd\_t} struct as a compact format to define HCI command packets, see Listing \ref{HCIcmdTemplate}, and \path{include/btstack/hci_cmds.h} file in the source code. The OpCode of a command can be calculated using the OPCODE macro. \begin{lstlisting}[caption= Supported OpCode Group Fields., label=hciCmdOGF] #define OGF_LINK_CONTROL 0x01 #define OGF_LINK_POLICY 0x02 #define OGF_CONTROLLER_BASEBAND 0x03 #define OGF_INFORMATIONAL_PARAMETERS 0x04 #define OGF_LE_CONTROLLER 0x08 #define OGF_BTSTACK 0x3d #define OGF_VENDOR 0x3f \end{lstlisting} \begin{lstlisting}[caption = hci\_cmds.h defines HCI command template., label=HCIcmdTemplate] // Calculate combined ogf/ocf value. #define OPCODE(ogf, ocf) (ocf | ogf << 10) // Compact HCI Command packet description. typedef struct { uint16_t opcode; const char *format; } hci_cmd_t; extern const hci_cmd_t hci_write_local_name; ... \end{lstlisting} Listing \ref{HCIcmdExample} illustrates the \emph{hci\_write\_local\_name} HCI command template from \mbox{BTstack} library. It uses OGF\_CONTROLLER\_BASEBAND as OGF, 0x13 as OCF, and has one parameter with format "N" indicating a null terminated UTF-8 string. Table \ref{table:hciformat} lists the format specifiers supported by BTstack. Check \path{src/hci_cmds.c} for other predefined HCI commands and info on their parameters. \begin{lstlisting}[caption= Example of HCI command template., label=HCIcmdExample] // Sets local Bluetooth name const hci_cmd_t hci_write_local_name = { OPCODE(OGF_CONTROLLER_BASEBAND, 0x13), "N" // Local name (UTF-8, Null Terminated, max 248 octets) }; \end{lstlisting} \begin{table*}\centering \caption{Supported Format Specifiers of HCI Command Parameter} \begin{tabular}{cl}\toprule Format Specifier & Description\\ \midrule 1,2,3,4 & one to four byte value\\ A & 31 bytes advertising data \\ B & Bluetooth Baseband Address \\ D & 8 byte data block \\ E & Extended Inquiry Information 240 octets \\ H & HCI connection handle \\ N & Name up to 248 chars, UTF8 string, null terminated \\ P & 16 byte Pairing code, e.g. PIN code or link key \\ S & Service Record (Data Element Sequence)\\ \bottomrule \label{table:hciformat} \end{tabular} \end{table*} \subsubsection{Sending HCI command based on a template} \label{subsubsection:sendinghci} \begin{lstlisting}[caption= Send hci\_write\_local\_name command that takes a string as a parameter., label=HCIcmdExampleLocalName] if (hci_can_send_packet_now(HCI_COMMAND_DATA_PACKET)){ hci_send_cmd(&hci_write_local_name, "BTstack Demo"); } \end{lstlisting} You can use the \emph{hci\_send\_cmd} function to send HCI command based on a template and a list of parameters. However, it is necessary to check that the outgoing packet buffer is empty and that the Bluetooth module is ready to receive the next command - most modern Bluetooth modules only allow to send a single HCI command. This can be done by calling \emph{hci\_can\_send\_command\_packet\_now()} function, which returns true, if it is ok to send. Listing \ref{HCIcmdExampleLocalName} illustrates how to manually set the device name with the HCI Write Local Name command. Please note, that an application rarely has to send HCI commands on its own. Instead, BTstack provides convenience functions in GAP and higher level protocols use HCI automatically. \subsection{L2CAP - Logical Link Control and Adaptation Protocol} The L2CAP protocol supports higher level protocol multiplexing and packet fragmentation. It provides the base for the RFCOMM and BNEP protocols. For all profiles that are officially supported by BTstack, L2CAP does not need to be used directly. For testing or the development of custom protocols, it's helpful to be able to access and provide L2CAP services however. \subsubsection{Access an L2CAP service on a remote device} L2CAP is based around the concept of channels. A channel is a logical connection on top of a baseband connection. Each channel is bound to a single protocol in a many-to-one fashion. Multiple channels can be bound to the same protocol, but a channel cannot be bound to multiple protocols. Multiple channels can share the same baseband connection. \begin{lstlisting}[caption=L2CAP handler for outgoing L2CAP channel.,label=L2CAPremoteService] btstack_packet_handler_t l2cap_packet_handler; void btstack_setup(){ ... l2cap_init(); } void create_outgoing_l2cap_channel(bd_addr_t address, uint16_t psm, uint16_t mtu){ l2cap_create_channel_internal(NULL, l2cap_packet_handler, remote_bd_addr, psm, mtu); } void l2cap_packet_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){ if (packet_type == HCI_EVENT_PACKET && packet[0] == L2CAP_EVENT_CHANNEL_OPENED){ if (packet[2]) { printf("Connection failed\n\r"); return; } printf("Connected\n\r"); } if (packet_type == L2CAP_DATA_PACKET){ // handle L2CAP data packet return; } } \end{lstlisting} To communicate with an L2CAP service on a remote device, the application on a local Bluetooth device initiates the L2CAP layer using the \emph{l2cap\_init} function, and then creates an outgoing L2CAP channel to the PSM of a remote device using the \emph{l2cap\_create\_channel\_internal} function. The \emph{l2cap\_-create\_channel\_internal} function will initiate a new baseband connection if it does not already exist. The packet handler that is given as an input parameter of the L2CAP create channel function will be assigned to the new outgoing L2CAP channel. This handler receives the L2CAP\_EVENT\_CHANNEL\_OPENED and L2CAP\_EVENT\_CHAN-NEL\_CLOSED events and L2CAP data packets, as shown in Listing \ref{L2CAPremoteService}. \subsubsection{Provide an L2CAP service} To provide an L2CAP service, the application on a local Bluetooth device must init the L2CAP layer and register the service with \emph{l2cap\_register\_service\_internal}. From there on, it can wait for incoming L2CAP connections. The application can accept or deny an incoming connection by calling the \emph{l2cap\_accept\_connection\_internal} and \emph{l2cap\_deny\_connection\_internal} functions respectively. If a connection is accepted and the incoming L2CAP channel gets successfully opened, the L2CAP service can send L2CAP data packets to the connected device with \emph{l2cap\_send\_internal}. \begin{lstlisting}[caption=Providing an L2CAP service., label=L2CAPService] void btstack_setup(){ ... l2cap_init(); l2cap_register_service_internal(NULL, packet_handler, 0x11,100); } void packet_handler (uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){ ... if (packet_type == L2CAP_DATA_PACKET){ // handle L2CAP data packet return; } switch(event){ ... case L2CAP_EVENT_INCOMING_CONNECTION: bt_flip_addr(event_addr, &packet[2]); handle = READ_BT_16(packet, 8); psm = READ_BT_16(packet, 10); local_cid = READ_BT_16(packet, 12); printf("L2CAP incoming connection requested."); l2cap_accept_connection_internal(local_cid); break; case L2CAP_EVENT_CHANNEL_OPENED: bt_flip_addr(event_addr, &packet[3]); psm = READ_BT_16(packet, 11); local_cid = READ_BT_16(packet, 13); handle = READ_BT_16(packet, 9); if (packet[2] == 0) { printf("Channel successfully opened."); } else { printf("L2CAP connection failed. status code."); } break; case L2CAP_EVENT_CREDITS: case DAEMON_EVENT_HCI_PACKET_SENT: tryToSend(); break; case L2CAP_EVENT_CHANNEL_CLOSED: break; } } \end{lstlisting} Sending of L2CAP data packets may fail due to a full internal BTstack outgoing packet buffer, or if the ACL buffers in the Bluetooth module become full, i.e., if the application is sending faster than the packets can be transferred over the air. In such case, the application can try sending again upon reception of DAEMON\_EVENT\_HCI\_PACKET\_SENT or L2CAP\_EVENT\_CREDITS event. The first event signals that the internal BTstack outgoing buffer became free again, the second one signals the same for ACL buffers in the Bluetooth chipset. Listing \ref{L2CAPService} provides L2CAP service example code. % \todo{\textbf{L2CAP and Security Levels}} \\ \subsubsection{L2CAP LE - L2CAP Low Energy Protocol} In addition to the full L2CAP implementation in the \emph{src} folder, BTstack provides an optimized v\emph{l2cap\_le} implementation in the \emph{ble} folder. This L2CAP LE variant can be used for single-mode devices and provides the base for the ATT and SMP protocols. \subsection{RFCOMM - Radio Frequency Communication Protocol} The Radio frequency communication (RFCOMM) protocol provides emulation of serial ports over the L2CAP protocol. and reassembly. It is the base for the Serial Port Profile and other profiles used for telecommunication like Head-Set Profile, Hands-Free Profile, Object Exchange (OBEX) etc. \subsubsection{RFCOMM flow control.} \label{section:flowcontrol} RFCOMM has a mandatory credit-based flow-control. This means that two devices that established RFCOMM connection, use credits to keep track of how many more RFCOMM data packets can be sent to each. If a device has no (outgoing) credits left, it cannot send another RFCOMM packet, the transmission must be paused. During the connection establishment, initial credits are provided. BTstack tracks the number of credits in both directions. If no outgoing credits are available, the RFCOMM send function will return an error, and you can try later. For incoming data, BTstack provides channels and services with and without automatic credit management via different functions to create/register them respectively. If the management of credits is automatic, the new credits are provided when needed relying on ACL flow control - this is only useful if there is not much data transmitted and/or only one physical connection is used. If the management of credits is manual, credits are provided by the application such that it can manage its receive buffers explicitly. % \todo{\textbf{RFCOMM port configuration for both local and remote}}\\ % \todo{\textbf{RFCOMM modem and line status control/information}}\\ % \todo{\textbf{RFCOMM\_AGGREGATE\_FLOW\_OFF example}}\\ % \todo{\textbf{RFCOMM and Security Levels}}\\ \subsubsection{Access an RFCOMM service on a remote device} \label{subsubsection:rfcommlient} To communicate with an RFCOMM service on a remote device, the application on a local Bluetooth device initiates the RFCOMM layer using the \emph{rfcomm\_init} function, and then creates an outgoing RFCOMM channel to a given server channel on a remote device using the \emph{rfcomm\_create\_channel\_internal} function. The \emph{rfcomm\_create\_channel\_intern-al} function will initiate a new L2CAP connection for the RFCOMM multiplexer, if it does not already exist. The channel will automatically provide enough credits to the remote side. To provide credits manually, you have to create the RFCOMM connection by calling \emph{rfcomm\_create\_channel\_with\_initial\_credits\_internal} - see Section \ref{sec:manualCredits}. The packet handler that is given as an input parameter of the RFCOMM create channel function will be assigned to the new outgoing \mbox{RFCOMM} channel. This handler receives the RFCOMM\_EVENT\_OPEN\_CHAN-NEL\_COMPLETE and RFCOMM\_EVENT\_CHANNEL\_CLOSED events, and RFCOMM data packets, as shown in Listing \ref{RFCOMMremoteService}. \subsubsection{Provide an RFCOMM service} \label{section:rfcomm_service} To provide an RFCOMM service, the application on a local Bluetooth device must first init the L2CAP and RFCOMM layers and then register the service with \emph{rfcomm\_register\_service\_internal}. From there on, it can wait for incoming RFCOMM connections. The application can accept or deny an incoming connection by calling the \emph{rfcomm\_accept\_connection-\_internal} and \emph{rfcomm\_deny\_connection\_internal} functions respectively. If a connection is accepted and the incoming RFCOMM channel gets successfully opened, the RFCOMM service can send RFCOMM data packets to the connected device with \emph{rfcomm\_send\_internal} and receive data packets by the packet handler provided by the \emph{rfcomm\_register\_service\_internal} call. Sending of RFCOMM data packets may fail due to a full internal BTstack outgoing packet buffer, or if the ACL buffers in the Bluetooth module become full, i.e., if the application is sending faster than the packets can be transferred over the air. In such case, the application can try sending again upon reception of DAEMON\_EVENT\_HCI\_PACKET\_SENT or RFCOMM\_EVENT\_CREDITS event. The first event signals that the internal BTstack outgoing buffer became free again, the second one signals that the remote side allowed to send another packet. Listing \ref{RFCOMMService} provides the RFCOMM service example code. \begin{lstlisting}[caption= RFCOMM service with automatic credit management. , label=automaticFlowControl] void btstack_setup(void){ ... // init RFCOMM rfcomm_init(); rfcomm_register_packet_handler(packet_handler); rfcomm_register_service_internal(NULL, rfcomm_channel_nr, 100); } \end{lstlisting} \subsubsection{Living with a single output buffer} \label{section:single_buffer} % l2cap checks hci_can_send_packet now Outgoing packets, both commands and data, are not queued in BTstack. This section explains the consequences of this design decision for sending data and why it is not as bad as it sounds. \noindent\begin{minipage}{\textwidth} \begin{lstlisting}[caption=Preparing and sending data., label=SingleOutputBufferTryToSend] void prepareData(void){ ... } void tryToSend(void){ if (!dataLen) return; if (!rfcomm_channel_id) return; int err = rfcomm_send_internal(rfcomm_channel_id, dataBuffer, dataLen); switch (err){ case 0: // packet is sent prepare next one prepareData(); break; case RFCOMM_NO_OUTGOING_CREDITS: case BTSTACK_ACL_BUFFERS_FULL: break; default: printf("rfcomm_send_internal() -> err %d\n\r", err); break; } } \end{lstlisting} \begin{lstlisting}[ caption= Managing the speed of RFCOMM packet generation., label=SingleOutputBufferTryPH] void packet_handler (uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){ ... switch(event){ case RFCOMM_EVENT_OPEN_CHANNEL_COMPLETE: if (status) { printf("RFCOMM channel open failed."); } else { rfcomm_channel_id = READ_BT_16(packet, 12); rfcomm_mtu = READ_BT_16(packet, 14); printf("RFCOMM channel opened, mtu = %u.", rfcomm_mtu); } break; case RFCOMM_EVENT_CREDITS: case DAEMON_EVENT_HCI_PACKET_SENT: tryToSend(); break; case RFCOMM_EVENT_CHANNEL_CLOSED: rfcomm_channel_id = 0; break; ... } } \end{lstlisting} \end{minipage} Independent from the number of output buffers, packet generation has to be adapted to the remote receiver and/or maximal link speed. Therefore, a packet can only be generated when it can get sent. With this assumption, the single output buffer design does not impose additional restrictions. In the following, we show how this is used for adapting the RFCOMM send rate. BTstack returns BTSTACK\_ACL\_BUFFERS\_FULL, if the outgoing buffer is full and RFCOMM\_NO\_OUTGOING\_CREDITS, if no outgoing credits are available. In Listing \ref{SingleOutputBufferTryToSend}, we show how to resend data packets when credits or outgoing buffers become available. RFCOMM's mandatory credit-based flow-control imposes an additional constraint on sending a data packet - at least one new RFCOMM credit must be available. BTstack signals the availability of a credit by sending an RFCOMM credit (RFCOMM\_EVENT\_CREDITS) event. These two events represent two orthogonal mechanisms that deal with flow control. Taking these mechanisms in account, the application should try to send data packets when one of these two events is received, see Listing \ref{SingleOutputBufferTryPH} for a RFCOMM example. If the management of credits is manual, credits are provided by the application such that it can manage its receive buffers explicitly, see Listing \ref{explicitFlowControl}. Manual credit management is recommended when received RFCOMM data cannot be processed immediately. In the SPP flow control example in Section \ref{example:sppflowcontrol}, delayed processing of received data is simulated with the help of a periodic timer. To provide new credits, you call the \emph{rfcomm\_grant\_credits} function with the RFCOMM channel ID and the number of credits as shown in Listing \ref{NewCredits}. Please note that providing single credits effectively reduces the credit-based (sliding window) flow control to a stop-and-wait flow-control that limits the data throughput substantially. On the plus side, it allows for a minimal memory footprint. If possible, multiple RFCOMM buffers should be used to avoid pauses while the sender has to wait for a new credit. \subsubsection{Slowing down RFCOMM data reception} \label{sec:manualCredits} RFCOMM's credit-based flow-control can be used to adapt, i.e., slow down the RFCOMM data to your processing speed. For incoming data, BTstack provides channels and services with and without automatic credit management. If the management of credits is automatic, see Listing \ref{automaticFlowControl}, new credits are provided when needed relying on ACL flow control. This is only useful if there is not much data transmitted and/or only one physical connection is used \begin{lstlisting}[float, caption=RFCOMM handler for outgoing RFCOMM channel., label=RFCOMMremoteService] void init_rfcomm(){ ... rfcomm_init(); rfcomm_register_packet_handler(packet_handler); } void create_rfcomm_channel(uint8_t packet_type, uint8_t *packet, uint16_t size){ rfcomm_create_channel_internal(connection, addr, rfcomm_channel); } void rfcomm_packet_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){ if (packet_type == HCI_EVENT_PACKET && packet[0] == RFCOMM_EVENT_OPEN_CHANNEL_COMPLETE){ if (packet[2]) { printf("Connection failed\n\r"); return; } printf("Connected\n\r"); } if (packet_type == RFCOMM_DATA_PACKET){ // handle RFCOMM data packets return; } } \end{lstlisting} \begin{lstlisting}[float, caption=Providing RFCOMM service., label=RFCOMMService] void btstack_setup(){ ... rfcomm_init(); rfcomm_register_service_internal(NULL, rfcomm_channel_nr, mtu); } void packet_handler(uint8_t packet_type, uint8_t *packet, uint16_t size){ if (packet_type == RFCOMM_DATA_PACKET){ // handle RFCOMM data packets return; } ... switch (event) { ... case RFCOMM_EVENT_INCOMING_CONNECTION: //data: event(8), len(8), address(48), channel(8), rfcomm_cid(16) bt_flip_addr(event_addr, &packet[2]); rfcomm_channel_nr = packet[8]; rfcomm_channel_id = READ_BT_16(packet, 9); rfcomm_accept_connection_internal(rfcomm_channel_id); break; case RFCOMM_EVENT_OPEN_CHANNEL_COMPLETE: // data: event(8), len(8), status (8), address (48), handle(16), server channel(8), rfcomm_cid(16), max frame size(16) if (packet[2]) { printf("RFCOMM channel open failed."); break; } // data: event(8), len(8), status (8), address (48), handle (16), server channel(8), rfcomm_cid(16), max frame size(16) rfcomm_channel_id = READ_BT_16(packet, 12); mtu = READ_BT_16(packet, 14); printf("RFCOMM channel open succeeded."); break; case RFCOMM_EVENT_CREDITS: case DAEMON_EVENT_HCI_PACKET_SENT: tryToSend(); break; case RFCOMM_EVENT_CHANNEL_CLOSED: printf("Channel closed."); rfcomm_channel_id = 0; break; } } \end{lstlisting} % \noindent\begin{minipage}\textwidth \begin{lstlisting}[ caption= RFCOMM service with manual credit management. , label=explicitFlowControl] void btstack_setup(void){ ... // init RFCOMM rfcomm_init(); rfcomm_register_packet_handler(packet_handler); // reserved channel, mtu=100, 1 credit rfcomm_register_service_with_initial_credits_internal(NULL, rfcomm_channel_nr, 100, 1); } \end{lstlisting} \begin{lstlisting}[caption= Providing new credits , label=NewCredits] void processing(){ // process incoming data packet ... // provide new credit rfcomm_grant_credits(rfcomm_channel_id, 1); } \end{lstlisting} \subsection{SDP - Service Discovery Protocol} The SDP protocol allows to announce services and discover services provided by a remote Bluetooth device. \subsubsection{Create and announce SDP records} BTstack contains a complete SDP server and allows to register SDP records. An SDP record is a list of SDP Attribute \emph{\{ID, Value\}} pairs that are stored in a Data Element Sequence (DES). The Attribute ID is a 16-bit number, the value can be of other simple types like integers or strings or can itselff contain other DES. To create an SDP record for an SPP service, you can call \emph{sdp\_create\_spp\_service} from \path{src/sdp_util.c} with a pointer to a buffer to store the record, the \mbox{RFCOMM} server channel number, and a record name. For other types of records, you can use the other functions in \path{src/sdp_util.c}, using the data element \emph{de\_*} functions. Listing \ref{sdpCreate} shows how an SDP record containing two SDP attributes can be created. First, a DES is created and then the Service Record Handle and Service Class ID List attributes are added to it. The Service Record Handle attribute is added by calling the \emph{de\_add\_number} function twice: the first time to add 0x0000 as attribute ID, and the second time to add the actual record handle (here 0x1000) as attribute value. The Service Class ID List attribute has ID 0x0001, and it requires a list of UUIDs as attribute value. To create the list, \emph{de\_push\_sequence} is called, which "opens" a sub-DES. The returned pointer is used to add elements to this sub-DES. After adding all UUIDs, the sub-DES is "closed" with \emph{de\_pop\_sequence}. \subsubsection{Query remote SDP service} \label{subsection:querysdp} BTstack provides an SDP client to query SDP services of a remote device. The SDP Client API is shown in Appendix \ref{appendix:api_sdp_client}. The \emph{sdp\_client\_query} function initiates an L2CAP connection to the remote SDP server. Upon connect, a \emph{Service Search Attribute} request with a \emph{Service Search Pattern} and a \emph{Attribute ID List} is sent. The result of the \emph{Service Search Attribute} query contains a list of \emph{Service Records}, and each of them contains the requested attributes. These records are handled by the SDP parser. The parser delivers SDP\_PARSER\_ATTRIBUTE\_VALUE and SDP\_PARSER\_COMPLETE events via a registered callback. The SDP\_PARSER\_ATTRIBUTE\_VALUE event delivers the attribute value byte by byte. On top of this, you can implement specific SDP queries. For example, BTstack provides a query for RFCOMM service name and channel number. This information is needed, e.g., if you want to connect to a remote SPP service. The query delivers all matching RFCOMM services, including its name and the channel number, as well as a query complete event via a registered callback, as shown in Listing \ref{SDPClientRFCOMM}. \begin{lstlisting}[caption=Searching RFCOMM services on a remote device., label=SDPClientRFCOMM ] bd_addr_t remote = {0x04,0x0C,0xCE,0xE4,0x85,0xD3}; void packet_handler (void * connection, uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){ if (packet_type != HCI_EVENT_PACKET) return; uint8_t event = packet[0]; switch (event) { case BTSTACK_EVENT_STATE: // bt stack activated, get started if (packet[2] == HCI_STATE_WORKING){ sdp_query_rfcomm_channel_and_name_for_uuid(remote, 0x0003); } break; default: break; } } static void btstack_setup(){ ... // init L2CAP l2cap_init(); l2cap_register_packet_handler(packet_handler); } void handle_query_rfcomm_event(sdp_query_event_t * event, void * context){ sdp_query_rfcomm_service_event_t * ve; switch (event->type){ case SDP_QUERY_RFCOMM_SERVICE: ve = (sdp_query_rfcomm_service_event_t*) event; printf("Service name: '%s', RFCOMM port %u\n", ve->service_name, ve->channel_nr); break; case SDP_QUERY_COMPLETE: report_found_services(); printf("Client query response done with status %d. \n", ce->status); break; } } int main(void){ hw_setup(); btstack_setup(); // register callback to receive matching RFCOMM Services and // query complete event sdp_query_rfcomm_register_callback(handle_query_rfcomm_event, NULL); // turn on! hci_power_control(HCI_POWER_ON); // go! run_loop_execute(); return 0; } \end{lstlisting} \begin{lstlisting}[caption=Creating record with the data element (\emph{de\_*}) functions., label=sdpCreate] uint8_t des_buffer[200]; uint8_t* attribute; de_create_sequence(service); // 0x0000 "Service Record Handle" de_add_number(des_buffer, DE_UINT, DE_SIZE_16, SDP_ServiceRecordHandle); de_add_number(des_buffer, DE_UINT, DE_SIZE_32, 0x10001); // 0x0001 "Service Class ID List" de_add_number(des_buffer, DE_UINT, DE_SIZE_16, SDP_ServiceClassIDList); attribute = de_push_sequence(des_buffer); { de_add_number(attribute, DE_UUID, DE_SIZE_16, 0x1101 ); } de_pop_sequence(des_buffer, attribute); \end{lstlisting} % \end{minipage} \subsection{BNEP - Bluetooth Network Encapsulation Protocol} The BNEP protocol is used to transport control and data packets over standard network protocols such as TCP, IPv4 or IPv6. It is built on top of L2CAP, and it specifies a minimum L2CAP MTU of 1691 bytes. \subsubsection{Receive BNEP events} To receive BNEP events, please register a packet handler with \emph{bnep\_register\_packet\_handler}. \subsubsection{Access a BNEP service on a remote device} \label{subsubsection:bnepclient} To connect to a remote BNEP service, you need to know its UUID. The set of available UUIDs can be queried by a SDP query for the PAN profile. Please see Section \ref{section:pan_profile} for details. With the remote UUID, you can create a connection using the \emph{bnep\_connect} function. You'll receive a \emph{BNEP\_EVENT\_OPEN\_CHANNEL\_COMPLETE} on success or failure. After the connection was opened successfully, you can send and receive Ethernet packets. Before sending an Ethernet frame with \emph{bnep\_send}, \emph{bnep\_can\_send-\_packet\_now} needs to return true. Ethernet frames are received via the registered packet handler with packet type \emph{BNEP\_DATA\_PACKET}. BTstack BNEP implementation supports both network protocol filter and multicast filters with \emph{bnep\_set\_net\_type\_filter} and \emph{bnep\_set\_multicast\_filter} respectively. Finally, to close a BNEP connection, you can call \emph{bnep\_disconnect}. \subsubsection{Provide BNEP service} \label{subsubsection:bnepserver} To provide a BNEP service, call \emph{bnep\_register\_service} with the provided service UUID and a max frame size. A \emph{BNEP\_EVENT\_INCOMING\_CONNECTION} event will mark that an incoming connection is established. At this point you can start sending and receiving Ethernet packets as described in the previous section. \subsection{ATT - Attribute Protocol} The ATT protocol is used by an ATT client to read and write attribute values stored on an ATT server. In addition, the ATT server can notify the client about attribute value changes. An attribute has a handle, a type, and a set of properties, see Section \ref{section:GATTServer}. The Generic Attribute (GATT) profile is built upon ATT and provides higher level organization of the ATT attributes into GATT Services and GATT Characteristics. In BTstack, the complete ATT client functionality is included within the GATT Client. On the server side, one ore more GATT profiles are converted ahead of time into the corresponding ATT attribute database and provided by the \emph{att\_server} implementation. The constant data are automatically served by the ATT server upon client request. To receive the dynamic data, such is characteristic value, the application needs to register read and/or write callback. In addition, notifications and indications can be sent. Please see Section \ref{section:GATTClient} for more. %\begin{lstlisting}[caption= ATT client registers packet handler for constant data and write callback for dynamic values of characteristics., label=ATTClientHanlder] % %// write requests %static int att_write_callback(uint16_t con_handle, uint16_t att_handle, uint16_t transaction_mode, uint16_t offset, uint8_t *buffer, uint16_t buffer_size); % %static void app_packet_handler (uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size); % %int btstack_main(int argc, const char * argv[]){ % ... % // setup ATT server % att_server_init(att_read_callback, NULL, att_write_callback); % att_server_register_packet_handler(app_packet_handler); %} %\end{lstlisting} \subsection{SMP - Security Manager Protocol } \label{section:smp} The SMP protocol allows to setup authenticated and encrypted LE connection. After initialization and configuration, SMP handles security related functions on it's own but emits events when feedback from the main app or the user is required. The two main tasks of the SMP protocol are: bonding and identity resolving. \subsubsection{Initialization} To activate the security manager, call \emph{sm\_init()}. If you're creating a product, you should also call \emph{sm\_set\_ir()} and \emph{sm\_set\_er()} with a fixed random 16 byte number to create the IR and ER key seeds. If possible use a unique random number per device instead of deriving it from the product serial number or something similar. The encryption key generated by the BLE peripheral will be ultimately derived from the ER key seed. See \BluetoothSpecificationURL{} - Bluetooth Core V4.0, Vol 3, Part G, 5.2.2 for more details on deriving the different keys. The IR key is used to identify a device if private, resolvable Bluetooth addresses are used. \subsubsection{Configuration} To receive events from the Security Manager, a callback is necessary. How to register this packet handler depends on your application configuration. When \emph{att\_server} is used to provide a GATT/ATT service, \emph{att\_server} registers itself as the Security Manager packet handler. Security Manager events are then received by the application via the \emph{att\_server} packet handler. If \emph{att\_server} is not used, you can directly register your packet handler with the security manager by calling \emph{sm\_register\_packet\_handler}. The default SMP configuration in BTstack is to be as open as possible: \begin{itemize} \item accept all Short Term Key (STK) Generation methods, \item accept encryption key size from 7..16 bytes, \item expect no authentication requirements, and \item IO Capabilities set to \emph{IO\_CAPABILITY\_NO\_INPUT\_NO\_OUTPUT}. \end{itemize} You can configure these items by calling following functions respectively: \begin{itemize} \item \emph{sm\_set\_accepted\_stk\_generation\_methods} \item \emph{sm\_set\_encryption\_key\_size\_range} \item \emph{sm\_set\_authentication\_requirements} \item \emph{sm\_set\_io\_capabilities} \end{itemize} \subsubsection{Identity Resolving} Identity resolving is the process of matching a private, resolvable Bluetooth address to a previously paired device using its Identity Resolving (IR) key. After an LE connection gets established, BTstack automatically tries to resolve the address of this device. During this lookup, BTstack will emit the following events: \begin{itemize} \item \emph{SM\_IDENTITY\_RESOLVING\_STARTED} to mark the start of a lookup, \end{itemize} and later: \begin{itemize} \item \emph{SM\_IDENTITY\_RESOLVING\_SUCCEEDED} on lookup success, or \item \emph{SM\_IDENTITY\_RESOLVING\_FAILED} on lookup failure. \end{itemize} \subsubsection{Bonding process} In Bluetooth LE, there are three main methods of establishing an encrypted connection. From the most to the least secure, these are: Out-of-Band (OOB) Data , Passkey, and Just Works. With OOB data, there needs to be a pre-shared secret 16 byte key. In most cases, this is not an option, especially since popular OS like iOS don't provide a way to specify it. It some applications, where both sides of a Bluetooth link are developed together, this could provide a viable option. To provide OOB data, you can register an OOB data callback with \emph{sm\_register\_oob\_data\_callback}. Depending on the authentication requirements, available OOB data, and the enabled STK generation methods, BTstack will request feedback from the app in the form of an event: \begin{itemize} \item \emph{SM\_PASSKEY\_INPUT\_NUMBER}: request user to input a passkey \item \emph{SM\_PASSKEY\_DISPLAY\_NUMBER}: show a passkey to the user \item \emph{SM\_JUST\_WORKS\_REQUEST}: request a user to accept a Just Works pairing \end{itemize} To stop the bonding process, \emph{sm\_bonding\_decline} should be called. Otherwise, \emph{sm\_just\_works\_confirm} or \emph{sm\_passkey\_input} can be called. After the bonding process, \emph{SM\_PASSKEY\_DISPLAY\_CANCEL} is emitted to update the user interface. % /subsubsection {Authorization} % SM_AUTHORIZATION_REQUEST % SM_AUTHORIZATION_RESULT % ------ \section{Profiles} In the following, we explain how the various Bluetooth profiles are used in BTstack. \subsection{GAP - Generic Access Profile: Classic} The GAP profile defines how devices find each other and establish a secure connection for other profiles. As mentioned before, the GAP functionality is split between \path{src/gap.h} and \path{src/hci.h}. Please check both. \subsubsection{Become discoverable} A remote unconnected Bluetooth device must be set as "discoverable" in order to be seen by a device performing the inquiry scan. To become discoverable, an application can call \emph{hci\_discoverable\_control} with input parameter 1. If you want to provide a helpful name for your device, the application can set its local name by calling $gap\_set\_local\_name$. To save energy, you may set the device as undiscoverable again, once a connection is established. See Listing \ref{Discoverable} for an example. \begin{lstlisting}[caption=Setting device as discoverable. OFF by default., label=Discoverable] int main(void){ ... // make discoverable hci_discoverable_control(1); run_loop_execute(); return 0; } void packet_handler (uint8_t packet_type, uint8_t *packet, uint16_t size){ ... switch(state){ case W4_CHANNEL_COMPLETE: // if connection is successful, make device undiscoverable hci_discoverable_control(0); ... } } \end{lstlisting} \subsubsection{Discover remote devices} \label{section:DiscoverRemoteDevices} To scan for remote devices, the \emph{hci\_inquiry} command is used. Found remote devices are reported as a part of HCI\_EVENT\_INQUIRY\_RESULT, HCI\_EVENT-\_INQUIRY\_RESULT\_WITH\_RSSI, or HCI\_EVENT\_EXTENDED\_INQUIRY\_RE-SPONSE events. Each response contains at least the Bluetooth address, the class of device, the page scan repetition mode, and the clock offset of found device. The latter events add information about the received signal strength or provide the Extended Inquiry Result (EIR). A code snippet is shown in Listing \ref{DiscoverDevices}. By default, neither RSSI values nor EIR are reported. If the Bluetooth device implements Bluetooth Specification 2.1 or higher, the \emph{hci\_write\_inquiry\_mode} command enables reporting of this advanced features (0 for standard results, 1 for RSSI, 2 for RSSI and EIR). A complete GAP inquiry example is provided in Section \ref{example:gapinquiry}. \begin{lstlisting}[float, caption=Discovering remote Bluetooth devices., label=DiscoverDevices] void print_inquiry_results(uint8_t *packet){ int event = packet[0]; int numResponses = packet[2]; uint16_t classOfDevice, clockOffset; uint8_t rssi, pageScanRepetitionMode; for (i=0; i