From bbf5eef59916cd1230ef71dc7b9be055397b0074 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sat, 16 Apr 2005 15:54:26 +0000 Subject: Add framework for read_link_key() --- hcid/hcid.h | 1 + hcid/security.c | 26 ++++++++++++++++++-------- hcid/storage.c | 5 +++++ 3 files changed, 24 insertions(+), 8 deletions(-) (limited to 'hcid') diff --git a/hcid/hcid.h b/hcid/hcid.h index bcc43e4a..9c96d91a 100644 --- a/hcid/hcid.h +++ b/hcid/hcid.h @@ -112,3 +112,4 @@ gboolean hcid_dbus_init(void); int write_device_name(const bdaddr_t *local, const bdaddr_t *peer, const char *name); int write_link_key(const bdaddr_t *local, const bdaddr_t *peer, const unsigned char *key, const int type); +int read_link_key(const bdaddr_t *local, const bdaddr_t *peer, unsigned char *key); diff --git a/hcid/security.c b/hcid/security.c index 92353373..e66e030e 100644 --- a/hcid/security.c +++ b/hcid/security.c @@ -114,23 +114,33 @@ static struct link_key *get_link_key(bdaddr_t *sba, bdaddr_t *dba) static void link_key_request(int dev, bdaddr_t *sba, bdaddr_t *dba) { - struct link_key *key = get_link_key(sba, dba); + unsigned char key[16]; char sa[18], da[18]; + int err; ba2str(sba, sa); ba2str(dba, da); syslog(LOG_INFO, "link_key_request (sba=%s, dba=%s)", sa, da); - if (key) { + err = read_link_key(sba, dba, key); + if (err < 0) { + struct link_key *linkkey = get_link_key(sba, dba); + if (linkkey) { + memcpy(key, linkkey->key, 16); + linkkey->time = time(0); + err = 0; + } + } + + if (err < 0) { + /* Link key not found */ + hci_send_cmd(dev, OGF_LINK_CTL, OCF_LINK_KEY_NEG_REPLY, 6, dba); + } else { /* Link key found */ link_key_reply_cp lr; - memcpy(lr.link_key, key->key, 16); + memcpy(lr.link_key, key, 16); bacpy(&lr.bdaddr, dba); hci_send_cmd(dev, OGF_LINK_CTL, OCF_LINK_KEY_REPLY, - LINK_KEY_REPLY_CP_SIZE, &lr); - key->time = time(0); - } else { - /* Link key not found */ - hci_send_cmd(dev, OGF_LINK_CTL, OCF_LINK_KEY_NEG_REPLY, 6, dba); + LINK_KEY_REPLY_CP_SIZE, &lr); } } diff --git a/hcid/storage.c b/hcid/storage.c index a025e674..d38e6aef 100644 --- a/hcid/storage.c +++ b/hcid/storage.c @@ -220,3 +220,8 @@ int write_link_key(const bdaddr_t *local, const bdaddr_t *peer, const unsigned c { return 0; } + +int read_link_key(const bdaddr_t *local, const bdaddr_t *peer, unsigned char *key) +{ + return -ENOENT; +} -- cgit