-
Notifications
You must be signed in to change notification settings - Fork 232
/
Copy pathHAPSession.h
462 lines (415 loc) · 16.2 KB
/
HAPSession.h
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
// Copyright (c) 2015-2019 The HomeKit ADK Contributors
//
// Licensed under the Apache License, Version 2.0 (the “License”);
// you may not use this file except in compliance with the License.
// See [CONTRIBUTORS.md] for the list of HomeKit ADK project authors.
#ifndef HAP_SESSION_H
#define HAP_SESSION_H
#ifdef __cplusplus
extern "C" {
#endif
#include "HAP+Internal.h"
#if __has_feature(nullability)
#pragma clang assume_nonnull begin
#endif
/**
* Session key.
*/
typedef struct {
/** Value. */
uint8_t bytes[CHACHA20_POLY1305_KEY_BYTES];
} HAPSessionKey;
HAP_STATIC_ASSERT(sizeof(HAPSessionKey) == CHACHA20_POLY1305_KEY_BYTES, HAPSessionKey);
/**
* HAP session channel state.
*/
typedef struct {
HAPSessionKey key; /**< Encryption key. */
uint64_t nonce; /**< Nonce. */
} HAPSessionChannelState;
/**
* Bluetooth LE specific parameters. Part of #HAPSession structure.
*/
typedef struct {
/**@cond */
HAPAccessoryServerRef* server; /**< Accessory server. */
HAPSessionRef* session; /**< Session. */
bool isTerminal; /**< True if LE link must be disconnected. No more requests are accepted. */
HAPPlatformTimerRef linkTimer; /**< On expiry, the LE link is disconnected. */
HAPTime linkTimerDeadline; /**< Timeout of link timer, if timer is active. */
/**
* On expiry, the current Pairing procedure times out.
*/
HAPPlatformTimerRef pairingProcedureTimer;
/**
* Whether or not it is safe to disconnect.
*
* - After a BLE response packet has been sent, it may take a certain time until the packet is fully transmitted.
* If a disconnect is requested before that happens, certain BLE stacks may drop the packet.
* Therefore, a timer is used to delay pending disconnects until we assume that the packet has been sent.
*/
bool isSafeToDisconnect;
/**
* On expiry, it is safe to disconnect.
*/
HAPPlatformTimerRef safeToDisconnectTimer;
/**@endcond */
} HAPBLESession;
/**
* HAP session.
*/
typedef struct {
/**@cond */
HAPAccessoryServerRef* server;
/**
* HAP session state.
*/
struct {
/** Whether the security session is active. */
bool active : 1;
/** Whether the security session originated from a transient Pair Setup procedure (Software Authentication). */
bool isTransient : 1;
/**
* Key-value store key of the pairing, if applicable.
*
* - For sessions from a transient Pair Setup procedure (Software Authentication), this is a value < 0.
*/
int pairingID;
/**
* Shared secret, if applicable.
*
* - This is used to derive the BLE Broadcast Encryption Key.
*
* - For sessions from a transient Pair Setup procedure (Software Authentication), this is uninitialized.
*/
uint8_t cv_KEY[X25519_BYTES];
/** Accessory to controller state. */
struct {
/** Control channel encryption. */
HAPSessionChannelState controlChannel;
} accessoryToController;
/** Controller to accessory state. */
struct {
/** Control channel encryption. */
HAPSessionChannelState controlChannel;
} controllerToAccessory;
} hap;
struct {
/**
* Pair Setup procedure state.
*/
struct {
uint8_t state; /**< State. */
uint8_t method; /**< Method. */
uint8_t error; /**< Error code. */
} pairSetup;
/**
* Pair Verify procedure state.
*/
struct {
uint8_t state; /**< State. */
uint8_t method; /**< Method. */
uint8_t error; /**< Error code. */
uint8_t SessionKey[CHACHA20_POLY1305_KEY_BYTES]; // Session Key for the Pair Verify procedure.
uint8_t cv_PK[X25519_BYTES]; // PK
uint8_t cv_SK[X25519_SCALAR_BYTES]; // SK
uint8_t cv_KEY[X25519_BYTES]; // Key (SK, CTRL PK)
int pairingID;
uint8_t Controller_cv_PK[X25519_BYTES]; // CTRL PK
} pairVerify;
/**
* Pairings state.
*/
struct {
uint8_t state; /**< State. */
uint8_t method; /**< Method. */
uint8_t error; /**< Error code. */
// Remove pairing.
HAPPairingID removedPairingID;
size_t removedPairingIDLength;
} pairings;
} state;
/**
* Type of the underlying transport.
*/
HAPTransportType transportType;
/**
* Transport-specific parameters, depending on #transport_type.
*/
union {
HAPBLESession ble; /**< Bluetooth LE specific parameters. */
} _;
/**@endcond */
} HAPSession;
HAP_STATIC_ASSERT(sizeof(HAPSessionRef) >= sizeof(HAPSession), HAPSession);
/**
* Pairing procedure.
*/
HAP_ENUM_BEGIN(uint8_t, HAPPairingProcedureType) { /**
* Pair Verify.
*/
kHAPPairingProcedureType_PairVerify,
/**
* Pairing Pairings.
*/
kHAPPairingProcedureType_PairingPairings
} HAP_ENUM_END(uint8_t, HAPPairingProcedureType);
/**
* Initializes a session.
*
* - The session must be destroyed using #hm_session_deinit once it is no
* longer needed to ensure that the accessory state is cleaned up.
*
* - While the session is in use, it must be retained in the same memory location.
*
* @param server Accessory server that the session belongs to.
* @param[out] session Session to initialize.
* @param transportType Transport type.
*/
void HAPSessionCreate(HAPAccessoryServerRef* server, HAPSessionRef* session, HAPTransportType transportType);
/**
* Destroys a session, cleaning up state in the accessory server.
*
* @param server Accessory server that the session belongs to.
* @param session Session to destroy.
*/
void HAPSessionRelease(HAPAccessoryServerRef* server, HAPSessionRef* session);
/**
* Invalidates a session so that all future requests are rejected until the session is destroyed.
*
* - Multiple invocations are okay and do nothing.
*
* @param server Accessory server that the session belongs to.
* @param session Session to destroy.
* @param terminateLink Whether or not the underlying connection should also be terminated.
*/
void HAPSessionInvalidate(HAPAccessoryServerRef* server, HAPSessionRef* session, bool terminateLink);
/**
* Returns whether a secured HAP session has been established.
*
* @param session Session to query.
*
* @return true If a secured HAP session has been established.
* @return false Otherwise.
*/
HAP_RESULT_USE_CHECK
bool HAPSessionIsSecured(const HAPSessionRef* session);
/**
* Returns whether a secured HAP session is transient (Software Authentication).
*
* @param session Session to query.
*
* @return true If a secured HAP session is transient.
* @return false Otherwise.
*/
HAP_RESULT_USE_CHECK
bool HAPSessionIsTransient(const HAPSessionRef* session);
/**
* Returns whether the controller of a HAP session has administrator privileges.
*
* @param session Session to query.
*
* @return true If the controller of the HAP session has administrator privileges.
* @return false Otherwise.
*/
HAP_RESULT_USE_CHECK
bool HAPSessionControllerIsAdmin(const HAPSessionRef* session);
/**
* Processes a Pair Setup write request.
*
* @param server Accessory server.
* @param session The session over which the request has been received.
* @param requestReader TLV reader for parsing the value.
*
* @return kHAPError_None If successful.
* @return kHAPError_InvalidState If the request cannot be processed in the current state.
* @return kHAPError_InvalidData If the controller sent a malformed request.
* @return kHAPError_OutOfResources If request reader does not have enough free memory.
*/
HAP_RESULT_USE_CHECK
HAPError HAPSessionHandlePairSetupWrite(
HAPAccessoryServerRef* server,
HAPSessionRef* session,
HAPTLVReaderRef* requestReader);
/**
* Processes a Pair Setup read request.
*
* @param server Accessory server.
* @param session The session over which the response will be sent.
* @param responseWriter TLV writer for serializing the response.
*
* @return kHAPError_None If successful.
* @return kHAPError_Unknown If communication with Apple Authentication Coprocessor failed.
* @return kHAPError_InvalidState If the request cannot be processed in the current state.
* @return kHAPError_OutOfResources If response writer does not have enough capacity.
*/
HAP_RESULT_USE_CHECK
HAPError HAPSessionHandlePairSetupRead(
HAPAccessoryServerRef* server,
HAPSessionRef* session,
HAPTLVWriterRef* responseWriter);
/**
* Processes a Pair Verify write request.
*
* @param server Accessory server.
* @param session The session over which the request has been received.
* @param requestReader TLV reader for parsing the value.
*
* @return kHAPError_None If successful.
* @return kHAPError_InvalidState If the request cannot be processed in the current state.
* @return kHAPError_InvalidData If the controller sent a malformed request.
* @return kHAPError_OutOfResources If request reader does not have enough free memory.
*/
HAP_RESULT_USE_CHECK
HAPError HAPSessionHandlePairVerifyWrite(
HAPAccessoryServerRef* server,
HAPSessionRef* session,
HAPTLVReaderRef* requestReader);
/**
* Processes a Pair Verify read request.
*
* @param server Accessory server.
* @param session The session over which the response will be sent.
* @param responseWriter TLV writer for serializing the response.
*
* @return kHAPError_None If successful.
* @return kHAPError_InvalidState If the request cannot be processed in the current state.
* @return kHAPError_OutOfResources If response writer does not have enough capacity.
*/
HAP_RESULT_USE_CHECK
HAPError HAPSessionHandlePairVerifyRead(
HAPAccessoryServerRef* server,
HAPSessionRef* session,
HAPTLVWriterRef* responseWriter);
/**
* Processes a Pairings write request.
*
* @param server Accessory server.
* @param session The session over which the request has been received.
* @param requestReader TLV reader for parsing the value.
*
* @return kHAPError_None If successful.
* @return kHAPError_InvalidState If the request cannot be processed in the current state.
*/
HAP_RESULT_USE_CHECK
HAPError HAPSessionHandlePairingsWrite(
HAPAccessoryServerRef* server,
HAPSessionRef* session,
HAPTLVReaderRef* requestReader);
/**
* Processes a Pairings read request.
*
* @param server Accessory server.
* @param session The session over which the response will be sent.
* @param responseWriter TLV writer for serializing the response.
*
* @return kHAPError_None If successful.
* @return kHAPError_InvalidState If the request cannot be processed in the current state.
* @return kHAPError_OutOfResources If response writer does not have enough capacity.
*/
HAP_RESULT_USE_CHECK
HAPError HAPSessionHandlePairingsRead(
HAPAccessoryServerRef* server,
HAPSessionRef* session,
HAPTLVWriterRef* responseWriter);
/**
* Encrypt a control message to be sent over a HomeKit session.
*
* The length of the encrypted message is `<plaintext message length> + CHACHA20_POLY1305_TAG_BYTES` bytes.
*
* @param server Accessory server.
* @param session The session over which the message will be sent.
* @param[out] encryptedBytes Encrypted message.
* @param plaintextBytes Plaintext message.
* @param numPlaintextBytes Plaintext message length.
*
* @return kHAPError_None If successful.
* @return kHAPError_InvalidState If the session is not encrypted.
*/
HAP_RESULT_USE_CHECK
HAPError HAPSessionEncryptControlMessage(
const HAPAccessoryServerRef* server,
HAPSessionRef* session,
void* encryptedBytes,
const void* plaintextBytes,
size_t numPlaintextBytes);
/**
* Encrypt a control message with additional authenticated data to be sent over a HomeKit session.
*
* The length of the encrypted message is `<plaintext message length> + CHACHA20_POLY1305_TAG_BYTES` bytes.
*
* @param server Accessory server.
* @param session The session over which the message will be sent.
* @param[out] encryptedBytes Encrypted message.
* @param plaintextBytes Plaintext message.
* @param numPlaintextBytes Plaintext message length.
* @param aadBytes Additional authenticated data.
* @param numAADBytes Additional authenticated data length.
*
* @return kHAPError_None If successful.
* @return kHAPError_InvalidState If the session is not encrypted.
*/
HAP_RESULT_USE_CHECK
HAPError HAPSessionEncryptControlMessageWithAAD(
const HAPAccessoryServerRef* server,
HAPSessionRef* session,
void* encryptedBytes,
const void* plaintextBytes,
size_t numPlaintextBytes,
const void* aadBytes,
size_t numAADBytes);
/**
* Decrypts a control message received over a HomeKit session.
*
* The length of the decrypted message is `<encrypted message length> - CHACHA20_POLY1305_TAG_BYTES` bytes.
*
* @param server Accessory server.
* @param session The session over which the message has been received.
* @param[out] plaintextBytes Plaintext message.
* @param encryptedBytes Encrypted message.
* @param numEncryptedBytes Encrypted message length.
*
* @return kHAPError_None If successful.
* @return kHAPError_InvalidState If the session is not encrypted.
* @return kHAPError_InvalidData If the controller sent a malformed request, or decryption failed.
*/
HAP_RESULT_USE_CHECK
HAPError HAPSessionDecryptControlMessage(
const HAPAccessoryServerRef* server,
HAPSessionRef* session,
void* plaintextBytes,
const void* encryptedBytes,
size_t numEncryptedBytes);
/**
* Decrypts a control message with additional authenticated data received over a HomeKit session.
*
* The length of the decrypted message is `<encrypted message length> - CHACHA20_POLY1305_TAG_BYTES` bytes.
*
* @param server Accessory server.
* @param session The session over which the message has been received.
* @param[out] plaintextBytes Plaintext message.
* @param encryptedBytes Encrypted message.
* @param numEncryptedBytes Encrypted message length.
* @param aadBytes Additional authenticated data.
* @param numAADBytes Additional authenticated data length.
*
* @return kHAPError_None If successful.
* @return kHAPError_InvalidState If the session is not encrypted.
* @return kHAPError_InvalidData If the controller sent a malformed request, or decryption failed.
*/
HAP_RESULT_USE_CHECK
HAPError HAPSessionDecryptControlMessageWithAAD(
const HAPAccessoryServerRef* server,
HAPSessionRef* session,
void* plaintextBytes,
const void* encryptedBytes,
size_t numEncryptedBytes,
const void* aadBytes,
size_t numAADBytes);
#if __has_feature(nullability)
#pragma clang assume_nonnull end
#endif
#ifdef __cplusplus
}
#endif
#endif