xref: /btstack/src/btstack_util.h (revision cbabbca4a7fa732ad17883f978d96eafa4681d7d)
1eb886013SMatthias Ringwald /*
2eb886013SMatthias Ringwald  * Copyright (C) 2014 BlueKitchen GmbH
3eb886013SMatthias Ringwald  *
4eb886013SMatthias Ringwald  * Redistribution and use in source and binary forms, with or without
5eb886013SMatthias Ringwald  * modification, are permitted provided that the following conditions
6eb886013SMatthias Ringwald  * are met:
7eb886013SMatthias Ringwald  *
8eb886013SMatthias Ringwald  * 1. Redistributions of source code must retain the above copyright
9eb886013SMatthias Ringwald  *    notice, this list of conditions and the following disclaimer.
10eb886013SMatthias Ringwald  * 2. Redistributions in binary form must reproduce the above copyright
11eb886013SMatthias Ringwald  *    notice, this list of conditions and the following disclaimer in the
12eb886013SMatthias Ringwald  *    documentation and/or other materials provided with the distribution.
13eb886013SMatthias Ringwald  * 3. Neither the name of the copyright holders nor the names of
14eb886013SMatthias Ringwald  *    contributors may be used to endorse or promote products derived
15eb886013SMatthias Ringwald  *    from this software without specific prior written permission.
16eb886013SMatthias Ringwald  * 4. Any redistribution, use, or modification is done solely for
17eb886013SMatthias Ringwald  *    personal benefit and not for any commercial purpose or for
18eb886013SMatthias Ringwald  *    monetary gain.
19eb886013SMatthias Ringwald  *
20eb886013SMatthias Ringwald  * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
21eb886013SMatthias Ringwald  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22eb886013SMatthias Ringwald  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23eb886013SMatthias Ringwald  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS
24eb886013SMatthias Ringwald  * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25eb886013SMatthias Ringwald  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26eb886013SMatthias Ringwald  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
27eb886013SMatthias Ringwald  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
28eb886013SMatthias Ringwald  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29eb886013SMatthias Ringwald  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
30eb886013SMatthias Ringwald  * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31eb886013SMatthias Ringwald  * SUCH DAMAGE.
32eb886013SMatthias Ringwald  *
33eb886013SMatthias Ringwald  * Please inquire about commercial licensing options at
34eb886013SMatthias Ringwald  * [email protected]
35eb886013SMatthias Ringwald  *
36eb886013SMatthias Ringwald  */
37eb886013SMatthias Ringwald 
38eb886013SMatthias Ringwald /*
39eb886013SMatthias Ringwald  *  btstack_util.h
40eb886013SMatthias Ringwald  *
41eb886013SMatthias Ringwald  *  General utility functions
42eb886013SMatthias Ringwald  *
43eb886013SMatthias Ringwald  *  Created by Matthias Ringwald on 7/23/09.
44eb886013SMatthias Ringwald  */
45eb886013SMatthias Ringwald 
46bf1b35bfSMatthias Ringwald #ifndef __BTSTACK_UTIL_H
47bf1b35bfSMatthias Ringwald #define __BTSTACK_UTIL_H
48eb886013SMatthias Ringwald 
49eb886013SMatthias Ringwald 
50eb886013SMatthias Ringwald #if defined __cplusplus
51eb886013SMatthias Ringwald extern "C" {
52eb886013SMatthias Ringwald #endif
53eb886013SMatthias Ringwald 
54eb886013SMatthias Ringwald #include <stdint.h>
55*cbabbca4SMatthias Ringwald #include <string.h>
56*cbabbca4SMatthias Ringwald 
578974fcd6SMatthias Ringwald #include "bluetooth.h"
588974fcd6SMatthias Ringwald #include "btstack_defines.h"
598d471f5cSMatthias Ringwald #include "btstack_linked_list.h"
60eb886013SMatthias Ringwald 
618974fcd6SMatthias Ringwald // will be moved to daemon/btstack_device_name_db.h
62eb886013SMatthias Ringwald 
63eb886013SMatthias Ringwald /**
64eb886013SMatthias Ringwald  * @brief The device name type
65eb886013SMatthias Ringwald  */
66eb886013SMatthias Ringwald #define DEVICE_NAME_LEN 248
67eb886013SMatthias Ringwald typedef uint8_t device_name_t[DEVICE_NAME_LEN+1];
68eb886013SMatthias Ringwald 
69caed94dfSMatthias Ringwald // helper for little endian format
70*cbabbca4SMatthias Ringwald static inline uint16_t little_endian_read_16(const uint8_t * buffer, int pos){
71*cbabbca4SMatthias Ringwald 	return ((uint16_t) buffer[pos]) | (((uint16_t)buffer[(pos)+1]) << 8);
72*cbabbca4SMatthias Ringwald }
73*cbabbca4SMatthias Ringwald static inline uint32_t little_endian_read_24(const uint8_t * buffer, int pos){
74*cbabbca4SMatthias Ringwald 	return ((uint32_t) buffer[pos]) | (((uint32_t)buffer[(pos)+1]) << 8) | (((uint32_t)buffer[(pos)+2]) << 16);
75*cbabbca4SMatthias Ringwald }
76*cbabbca4SMatthias Ringwald static inline uint32_t little_endian_read_32(const uint8_t * buffer, int pos){
77*cbabbca4SMatthias Ringwald 	return ((uint32_t) buffer[pos]) | (((uint32_t)buffer[(pos)+1]) << 8) | (((uint32_t)buffer[(pos)+2]) << 16) | (((uint32_t) buffer[(pos)+3]) << 24);
78*cbabbca4SMatthias Ringwald }
79f8fbdce0SMatthias Ringwald void little_endian_store_16(uint8_t *buffer, uint16_t pos, uint16_t value);
80f8fbdce0SMatthias Ringwald void little_endian_store_32(uint8_t *buffer, uint16_t pos, uint32_t value);
81caed94dfSMatthias Ringwald 
82caed94dfSMatthias Ringwald // helper for big endian format
83*cbabbca4SMatthias Ringwald static inline uint32_t big_endian_read_16( const uint8_t * buffer, int pos) {
84*cbabbca4SMatthias Ringwald 	return ((uint16_t) buffer[(pos)+1]) | (((uint16_t)buffer[ pos   ]) << 8);
85*cbabbca4SMatthias Ringwald }
86*cbabbca4SMatthias Ringwald 
87*cbabbca4SMatthias Ringwald static inline uint32_t big_endian_read_32( const uint8_t * buffer, int pos) {
88*cbabbca4SMatthias Ringwald 	return ((uint32_t) buffer[(pos)+3]) | (((uint32_t)buffer[(pos)+2]) << 8) | (((uint32_t)buffer[(pos)+1]) << 16) | (((uint32_t) buffer[pos]) << 24);
89*cbabbca4SMatthias Ringwald }
90eb886013SMatthias Ringwald 
91f8fbdce0SMatthias Ringwald void big_endian_store_16(uint8_t *buffer, uint16_t pos, uint16_t value);
92f8fbdce0SMatthias Ringwald void big_endian_store_32(uint8_t *buffer, uint16_t pos, uint32_t value);
93eb886013SMatthias Ringwald 
94eb886013SMatthias Ringwald // hack: compilation with the android ndk causes an error as there's a swap64 macro
95eb886013SMatthias Ringwald #ifdef swap64
96eb886013SMatthias Ringwald #undef swap64
97eb886013SMatthias Ringwald #endif
98eb886013SMatthias Ringwald 
99caed94dfSMatthias Ringwald /**
100caed94dfSMatthias Ringwald  * @brief Copy from source to destination and reverse byte order
101caed94dfSMatthias Ringwald  */
102eb886013SMatthias Ringwald void swapX  (const uint8_t *src, uint8_t * dst, int len);
103bf1b35bfSMatthias Ringwald void swap24 (const uint8_t *src, uint8_t * dst);
104bf1b35bfSMatthias Ringwald void swap48 (const uint8_t *src, uint8_t * dst);
105bf1b35bfSMatthias Ringwald void swap56 (const uint8_t *src, uint8_t * dst);
106bf1b35bfSMatthias Ringwald void swap64 (const uint8_t *src, uint8_t * dst);
107bf1b35bfSMatthias Ringwald void swap128(const uint8_t *src, uint8_t * dst);
108eb886013SMatthias Ringwald 
109caed94dfSMatthias Ringwald void bt_flip_addr(bd_addr_t dest, bd_addr_t src);
110caed94dfSMatthias Ringwald 
111caed94dfSMatthias Ringwald /**
112caed94dfSMatthias Ringwald  * @brief 4-bit nibble
113caed94dfSMatthias Ringwald  * @return ASCII character for 4-bit nibble
114caed94dfSMatthias Ringwald  */
115eb886013SMatthias Ringwald char char_for_nibble(int nibble);
116eb886013SMatthias Ringwald 
117caed94dfSMatthias Ringwald /**
118caed94dfSMatthias Ringwald  * @brief Compare two Bluetooth addresses
119caed94dfSMatthias Ringwald  * @param a
120caed94dfSMatthias Ringwald  * @param b
121caed94dfSMatthias Ringwald  * @return true if equal
122caed94dfSMatthias Ringwald  */
123*cbabbca4SMatthias Ringwald static inline int bd_addr_cmp(bd_addr_t a, bd_addr_t b){
124*cbabbca4SMatthias Ringwald 	return memcmp(a,b, BD_ADDR_LEN);
125*cbabbca4SMatthias Ringwald }
126caed94dfSMatthias Ringwald 
127caed94dfSMatthias Ringwald /**
128caed94dfSMatthias Ringwald  * @brief Copy Bluetooth address
129*cbabbca4SMatthias Ringwald s * @param dest
130caed94dfSMatthias Ringwald  * @param src
131caed94dfSMatthias Ringwald  */
132*cbabbca4SMatthias Ringwald static inline void bd_addr_copy(bd_addr_t dest, bd_addr_t src){
133*cbabbca4SMatthias Ringwald 	memcpy(dest,src,BD_ADDR_LEN);
134*cbabbca4SMatthias Ringwald }
135caed94dfSMatthias Ringwald 
136caed94dfSMatthias Ringwald /**
137caed94dfSMatthias Ringwald  * @brief Use printf to write hexdump as single line of data
138caed94dfSMatthias Ringwald  */
139caed94dfSMatthias Ringwald void printf_hexdump(const void *data, int size);
140caed94dfSMatthias Ringwald 
141caed94dfSMatthias Ringwald // move to btstack_debug.h
142caed94dfSMatthias Ringwald // void log_info_hexdump(..) either log or hci_dump or off
143caed94dfSMatthias Ringwald void log_key(const char * name, sm_key_t key);
144caed94dfSMatthias Ringwald 
145caed94dfSMatthias Ringwald //
146caed94dfSMatthias Ringwald void hexdump(const void *data, int size);
147caed94dfSMatthias Ringwald void hexdumpf(const void *data, int size);
148caed94dfSMatthias Ringwald 
149caed94dfSMatthias Ringwald /**
150caed94dfSMatthias Ringwald  * @brief Create human readable representation for UUID128
151caed94dfSMatthias Ringwald  * @note uses fixed global buffer
152caed94dfSMatthias Ringwald  * @return pointer to UUID128 string
153caed94dfSMatthias Ringwald  */
154caed94dfSMatthias Ringwald char * uuid128_to_str(uint8_t * uuid);
155caed94dfSMatthias Ringwald 
156caed94dfSMatthias Ringwald /**
157caed94dfSMatthias Ringwald  * @brief Create human readable represenationt of Bluetooth address
158caed94dfSMatthias Ringwald  * @note uses fixed global buffer
159caed94dfSMatthias Ringwald  * @return pointer to Bluetooth address string
160caed94dfSMatthias Ringwald  */
161eb886013SMatthias Ringwald char * bd_addr_to_str(bd_addr_t addr);
162caed94dfSMatthias Ringwald 
163caed94dfSMatthias Ringwald /**
164caed94dfSMatthias Ringwald  * @brief Parse Bluetooth address
165caed94dfSMatthias Ringwald  * @param address_string
166caed94dfSMatthias Ringwald  * @param buffer for parsed address
167caed94dfSMatthias Ringwald  * @return 1 if string was parsed successfully
168caed94dfSMatthias Ringwald  */
169caed94dfSMatthias Ringwald int sscan_bd_addr(uint8_t * addr_string, bd_addr_t addr);
170caed94dfSMatthias Ringwald 
171eb886013SMatthias Ringwald 
172e1a125dfSMatthias Ringwald void uuid_add_bluetooth_prefix(uint8_t *uuid, uint32_t shortUUID);
173e1a125dfSMatthias Ringwald int  uuid_has_bluetooth_prefix(uint8_t * uuid128);
174eb886013SMatthias Ringwald 
175eb886013SMatthias Ringwald #if defined __cplusplus
176eb886013SMatthias Ringwald }
177eb886013SMatthias Ringwald #endif
178eb886013SMatthias Ringwald 
179bf1b35bfSMatthias Ringwald #endif // __BTSTACK_UTIL_H
180