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
|
// SPDX-License-Identifier: LGPL-2.1-or-later
/*
*
* BlueZ - Bluetooth protocol stack for Linux
*
* Copyright (C) 2011-2014 Intel Corporation
* Copyright (C) 2002-2010 Marcel Holtmann <marcel@holtmann.org>
*
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <string.h>
#include "src/shared/util.h"
#include "src/shared/queue.h"
#include "src/shared/crypto.h"
#include "keys.h"
static const uint8_t empty_key[16] = { 0x00, };
static const uint8_t empty_addr[6] = { 0x00, };
static struct bt_crypto *crypto;
struct irk_data {
uint8_t key[16];
uint8_t addr[6];
uint8_t addr_type;
};
static struct queue *irk_list;
void keys_setup(void)
{
crypto = bt_crypto_new();
irk_list = queue_new();
}
void keys_cleanup(void)
{
bt_crypto_unref(crypto);
queue_destroy(irk_list, free);
}
void keys_update_identity_key(const uint8_t key[16])
{
struct irk_data *irk;
irk = queue_peek_tail(irk_list);
if (irk && !memcmp(irk->key, empty_key, 16)) {
memcpy(irk->key, key, 16);
return;
}
irk = new0(struct irk_data, 1);
if (irk) {
memcpy(irk->key, key, 16);
if (!queue_push_tail(irk_list, irk))
free(irk);
}
}
void keys_update_identity_addr(const uint8_t addr[6], uint8_t addr_type)
{
struct irk_data *irk;
irk = queue_peek_tail(irk_list);
if (irk && !memcmp(irk->addr, empty_addr, 6)) {
memcpy(irk->addr, addr, 6);
irk->addr_type = addr_type;
return;
}
irk = new0(struct irk_data, 1);
if (irk) {
memcpy(irk->addr, addr, 6);
irk->addr_type = addr_type;
if (!queue_push_tail(irk_list, irk))
free(irk);
}
}
static bool match_resolve_irk(const void *data, const void *match_data)
{
const struct irk_data *irk = data;
const uint8_t *addr = match_data;
uint8_t local_hash[3];
bt_crypto_ah(crypto, irk->key, addr + 3, local_hash);
return !memcmp(addr, local_hash, 3);
}
bool keys_resolve_identity(const uint8_t addr[6], uint8_t ident[6],
uint8_t *ident_type)
{
struct irk_data *irk;
irk = queue_find(irk_list, match_resolve_irk, addr);
if (irk) {
memcpy(ident, irk->addr, 6);
*ident_type = irk->addr_type;
return true;
}
return false;
}
static bool match_key(const void *data, const void *match_data)
{
const struct irk_data *irk = data;
const uint8_t *key = match_data;
return !memcmp(irk->key, key, 16);
}
bool keys_add_identity(const uint8_t addr[6], uint8_t addr_type,
const uint8_t key[16])
{
struct irk_data *irk;
irk = queue_find(irk_list, match_key, key);
if (!irk) {
irk = new0(struct irk_data, 1);
memcpy(irk->key, key, 16);
queue_push_tail(irk_list, irk);
}
memcpy(irk->addr, addr, 6);
irk->addr_type = addr_type;
return true;
}
|