aboutsummaryrefslogtreecommitdiff
path: root/src/Mgmt.h
blob: dfd5b95e9e4db009022e7a499cc225051ac85264 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
// Copyright 2017 Paul Nettle. 
// 
// This file is part of Gobbledegook. 
// 
// Gobbledegook is free software: you can redistribute it and/or modify 
// it under the terms of the GNU General Public License as published by 
// the Free Software Foundation, either version 3 of the License, or 
// (at your option) any later version. 
// 
// Gobbledegook is distributed in the hope that it will be useful, 
// but WITHOUT ANY WARRANTY; without even the implied warranty of 
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
// GNU General Public License for more details. 
// 
// You should have received a copy of the GNU General Public License 
// along with Gobbledegook.  If not, see <http://www.gnu.org/licenses/>. 
 
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
// 
// >> 
// >>>  INSIDE THIS FILE 
// >> 
// 
// This file contains various functions for interacting with Bluetooth Management interface, which provides adapter configuration. 
// 
// >> 
// >>>  DISCUSSION 
// >> 
// 
// We only cover the basics here. If there are configuration features you need that aren't supported (such as configuring BR/EDR), 
// then this would be a good place for them. 
// 
// Note that this class relies on the `HciAdapter`, which is a very primitive implementation. Use with caution. 
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
 
#pragma once
 
#include <stdint.h>
#include <string>
 
#include "HciAdapter.h"
#include "Utils.h"
 
namespace ggk {
 
struct Mgmt
{
// 
// Constants 
// 
 
// The length of the controller's name (not including null terminator) 
static const int kMaxNameLength = 248;
 
// The length of the controller's short name (not including null terminator) 
static const int kMaxShortNameLength = 10;
 
// 
// Types 
// 
 
// HCI Controller Settings 
enum EHciControllerSettings
{
EHciPowered = (1<<0),
EHciConnectable = (1<<1),
EHciFastConnectable = (1<<2),
EHciDiscoverable = (1<<3),
EHciBondable = (1<<4),
EHciLinkLevelSecurity = (1<<5),
EHciSecureSimplePairing = (1<<6),
EHciBasicRate_EnhancedDataRate = (1<<7),
EHciHighSpeed = (1<<8),
EHciLowEnergy = (1<<9),
EHciAdvertising = (1<<10),
EHciSecureConnections = (1<<11),
EHciDebugKeys = (1<<12),
EHciPrivacy = (1<<13),
EHciControllerConfiguration = (1<<14),
EHciStaticAddress = (1<<15)
};
 
// The comments documenting these fields are very high level. There is a lot of detailed information not present, for example 
// some values are not available at all times. This is fully documented in: 
// 
//     https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/doc/mgmt-api.txt 
struct ControllerInformation
{
uint8_t address[6];         // The Bluetooth address 
uint8_t bluetoothVersion;   // Bluetooth version 
uint16_t manufacturer;      // The manufacturer 
uint32_t supportedSettings; // Bits for various supported settings (see EHciControllerSettings) 
uint32_t currentSettings;   // Bits for various currently configured settings (see EHciControllerSettings) 
uint8_t classOfDevice[3];   // Um, yeah. That. 
char name[249];             // Null terminated name 
char shortName[11];         // Null terminated short name 
 
void toHost()
{
manufacturer = Utils::endianToHost(manufacturer);
supportedSettings = Utils::endianToHost(supportedSettings);
currentSettings = Utils::endianToHost(currentSettings);
}
} __attribute__((packed));
 
// Construct the Mgmt device 
// 
// Set `controllerIndex` to the zero-based index of the device as recognized by the OS. If this parameter is omitted, the index 
// of the first device (0) will be used. 
Mgmt(uint16_t controllerIndex = kDefaultControllerIndex);
 
// Returns the version information: 
// 
//    bits 0-15 = revision 
//    bits 16-23 = version 
// 
//    ... or -1 on error 
int getVersion();
 
// Returns information about the controller (address, name, current settings, etc.) 
// 
// See the definition for MgmtControllerInformation for details. 
// 
//    ... or nullptr on error 
ControllerInformation *getControllerInformation();
 
// Set the adapter name and short name 
// 
// The inputs `name` and `shortName` may be truncated prior to setting them on the adapter. To ensure that `name` and 
// `shortName` conform to length specifications prior to calling this method, see the constants `kMaxNameLength` and 
// `kMaxShortNameLength`. In addition, the static methods `truncateName()` and `truncateShortName()` may be helpful. 
// 
// Returns true on success, otherwise false 
bool setName(std::string name, std::string shortName);
 
// Set a setting state to 'newState' 
// 
// Many settings are set the same way, this is just a convenience routine to handle them all 
// 
// Returns true on success, otherwise false 
bool setState(const char *pSettingName, uint16_t commandCode, uint16_t controllerId, uint8_t newState);
 
// Set the powered state to `newState` (true = powered on, false = powered off) 
// 
// Returns true on success, otherwise false 
bool setPowered(bool newState);
 
// Set the BR/EDR state to `newState` (true = enabled, false = disabled) 
// 
// Returns true on success, otherwise false 
bool setBredr(bool newState);
 
// Set the Secure Connection state (0 = disabled, 1 = enabled, 2 = secure connections only mode) 
// 
// Returns true on success, otherwise false 
bool setSecureConnections(uint8_t newState);
 
// Set the bondable state to `newState` (true = enabled, false = disabled) 
// 
// Returns true on success, otherwise false 
bool setBondable(bool newState);
 
// Set the connectable state to `newState` (true = enabled, false = disabled) 
// 
// Returns true on success, otherwise false 
bool setConnectable(bool newState);
 
// Set the LE state to `newState` (true = enabled, false = disabled) 
// 
// Returns true on success, otherwise false 
bool setLE(bool newState);
 
// Set the advertising state to `newState` (0 = disabled, 1 = enabled (with consideration towards the connectable setting), 
// 2 = enabled in connectable mode). 
// 
// Returns true on success, otherwise false 
bool setAdvertising(uint8_t newState);
 
// 
// Utilitarian 
// 
 
// Transforms a "Current_Settings" value (4 octets as defined by the Bluetooth Management API specification) into a human- 
// readable string of flags and settings. 
static std::string controllerSettingsString(uint32_t bits);
 
// Truncates the string `name` to the maximum allowed length for an adapter name. If `name` needs no truncation, a copy of 
// `name` is returned. 
static std::string truncateName(const std::string &name);
 
// Truncates the string `name` to the maximum allowed length for an adapter short-name. If `name` needs no truncation, a copy 
// of `name` is returned. 
static std::string truncateShortName(const std::string &name);
 
private:
 
// 
// Data members 
// 
 
// Our adapter - we use this to connect to the HCI socket to talk to the adapter 
HciAdapter hciAdapter;
 
// Our controller information, updated each time the controller information is received 
ControllerInformation controllerInfo;
 
// The default controller index (the first device) 
uint16_t controllerIndex;
 
// Default controller index 
static const uint16_t kDefaultControllerIndex = 0;
 
// A constant referring to a 'non-controller' (for commands that do not require a controller index) 
static const uint16_t kNonController = 0xffff;
};
 
}// namespace ggk