xref: /libbtbb/lib/src/pcap-common.h (revision 6887217ed018f03f055bea4de69184c36643b69f)
1 /* -*- c -*- */
2 /*
3  * Copyright 2014 Christopher D. Kilgour techie AT whiterocker.com
4  *
5  * This file is part of libbtbb
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2, or (at your option)
10  * any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with libbtbb; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22 #ifndef PCAP_COMMON_DOT_H
23 #define PCAP_COMMON_DOT_H
24 
25 /* pull definitions for BT DLTs and pseudoheaders from libpcap, if possible */
26 #if defined(ENABLE_PCAP)
27 // #include <pcap/pcap.h>
28 // #include <pcap/bluetooth.h>
29 #define DLT_PPI 192
30 #define DLT_USER0 147
31 #endif /* ENABLE_PCAP */
32 
33 #if defined( __APPLE__ )
34 #include <CoreServices/CoreServices.h>
35 #define htobe32 EndianU32_NtoB
36 #define be32toh EndianU32_BtoN
37 #define le32toh EndianU32_LtoN
38 #define htobe64 EndianU64_NtoB
39 #define be64toh EndianU64_BtoN
40 #define htole16 EndianU16_NtoL
41 #define htole32 EndianU32_NtoL
42 #else
43 #include <endian.h>
44 #endif
45 
46 #if !defined( htole16 ) /* will be defined under Linux when endian.h already included */
47 #if defined( __GNUC__ )
48 #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
49 inline uint16_t htole16(uint16_t host_16bits) { return host_16bits; }
50 inline uint16_t le16toh(uint16_t little_endian_16bits) { return little_endian_16bits; }
51 inline uint32_t htole32(uint32_t host_32bits) { return host_32bits; }
52 inline uint32_t le32toh(uint32_t little_endian_32bits) { return little_endian_32bits; }
53 inline uint64_t htole64(uint64_t host_64bits) { return host_64bits; }
54 inline uint64_t le64toh(uint64_t little_endian_64bits) { return little_endian_64bits; }
55 #else
56 #error "FIXME: need to support big-endian under GNU"
57 #endif /* __BYTE_ORDER__ */
58 #else /* not GNU C */
59 #error "FIXME: need to support non-GNU compiler"
60 #endif /* __GNUC__ */
61 #endif /* htole16 */
62 
63 #define MIN(X, Y) (((X) < (Y)) ? (X) : (Y))
64 
65 /* --------------------------------- BR/EDR ----------------------------- */
66 
67 #if !defined( DLT_BLUETOOTH_BREDR_BB )
68 #define DLT_BLUETOOTH_BREDR_BB 255
69 #endif
70 typedef struct __attribute__((packed)) _pcap_bluetooth_bredr_bb_header {
71         uint8_t rf_channel;
72         int8_t signal_power;
73         int8_t noise_power;
74         uint8_t access_code_offenses;
75         uint8_t payload_transport_rate;
76         uint8_t corrected_header_bits;
77         int16_t corrected_payload_bits;
78         uint32_t lap;
79         uint32_t ref_lap_uap;
80         uint32_t bt_header;
81         uint16_t flags;
82         uint8_t  br_edr_payload[0];
83 } pcap_bluetooth_bredr_bb_header;
84 
85 #define BREDR_DEWHITENED        0x0001
86 #define BREDR_SIGPOWER_VALID    0x0002
87 #define BREDR_NOISEPOWER_VALID  0x0004
88 #define BREDR_PAYLOAD_DECRYPTED 0x0008
89 #define BREDR_REFLAP_VALID      0x0010
90 #define BREDR_PAYLOAD_PRESENT   0x0020
91 #define BREDR_CHANNEL_ALIASED   0x0040
92 #define BREDR_REFUAP_VALID      0x0080
93 #define BREDR_HEC_CHECKED       0x0100
94 #define BREDR_HEC_VALID         0x0200
95 #define BREDR_CRC_CHECKED       0x0400
96 #define BREDR_CRC_VALID         0x0800
97 #define BREDR_MIC_CHECKED       0x1000
98 #define BREDR_MIC_VALID         0x2000
99 
100 #define BREDR_MAX_PAYLOAD       400
101 
102 /* --------------------------------- Low Energy ---------------------------- */
103 
104 #if !defined( DLT_BLUETOOTH_LE_LL_WITH_PHDR )
105 #define DLT_BLUETOOTH_LE_LL_WITH_PHDR 256
106 #endif
107 typedef struct __attribute__((packed)) _pcap_bluetooth_le_ll_header {
108         uint8_t rf_channel;
109         int8_t signal_power;
110         int8_t noise_power;
111         uint8_t access_address_offenses;
112         uint32_t ref_access_address;
113         uint16_t flags;
114         uint8_t le_packet[0];
115 } pcap_bluetooth_le_ll_header;
116 
117 #define LE_DEWHITENED        0x0001
118 #define LE_SIGPOWER_VALID    0x0002
119 #define LE_NOISEPOWER_VALID  0x0004
120 #define LE_PACKET_DECRYPTED  0x0008
121 #define LE_REF_AA_VALID      0x0010
122 #define LE_AA_OFFENSES_VALID 0x0020
123 #define LE_CHANNEL_ALIASED   0x0040
124 #define LE_CRC_CHECKED       0x0400
125 #define LE_CRC_VALID         0x0800
126 #define LE_MIC_CHECKED       0x1000
127 #define LE_MIC_VALID         0x2000
128 
129 #define LE_MAX_PAYLOAD       48
130 
131 #endif /* PCAP_COMMON_DOT_H */
132