blob: ea4d5ffc115136cfc8e34281baa27f93d2ae2b81 [file] [log] [blame]
Andrei Emeltchenko903e4542012-09-27 17:26:09 +03001/*
2 Copyright (c) 2011,2012 Intel Corp.
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License version 2 and
6 only version 2 as published by the Free Software Foundation.
7
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12*/
13
14#include <net/bluetooth/bluetooth.h>
15#include <net/bluetooth/hci.h>
16#include <net/bluetooth/hci_core.h>
17#include <net/bluetooth/a2mp.h>
18#include <net/bluetooth/amp.h>
Dmitry Kasatkinba221bb2012-09-27 17:26:17 +030019#include <crypto/hash.h>
Andrei Emeltchenko903e4542012-09-27 17:26:09 +030020
Andrei Emeltchenko52c0d6e2012-09-27 17:26:12 +030021/* Remote AMP Controllers interface */
22static void amp_ctrl_get(struct amp_ctrl *ctrl)
23{
24 BT_DBG("ctrl %p orig refcnt %d", ctrl,
25 atomic_read(&ctrl->kref.refcount));
26
27 kref_get(&ctrl->kref);
28}
29
30static void amp_ctrl_destroy(struct kref *kref)
31{
32 struct amp_ctrl *ctrl = container_of(kref, struct amp_ctrl, kref);
33
34 BT_DBG("ctrl %p", ctrl);
35
36 kfree(ctrl->assoc);
37 kfree(ctrl);
38}
39
40int amp_ctrl_put(struct amp_ctrl *ctrl)
41{
42 BT_DBG("ctrl %p orig refcnt %d", ctrl,
43 atomic_read(&ctrl->kref.refcount));
44
45 return kref_put(&ctrl->kref, &amp_ctrl_destroy);
46}
47
48struct amp_ctrl *amp_ctrl_add(struct amp_mgr *mgr)
49{
50 struct amp_ctrl *ctrl;
51
52 ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
53 if (!ctrl)
54 return NULL;
55
56 mutex_lock(&mgr->amp_ctrls_lock);
57 list_add(&ctrl->list, &mgr->amp_ctrls);
58 mutex_unlock(&mgr->amp_ctrls_lock);
59
60 kref_init(&ctrl->kref);
61
62 BT_DBG("mgr %p ctrl %p", mgr, ctrl);
63
64 return ctrl;
65}
66
67void amp_ctrl_list_flush(struct amp_mgr *mgr)
68{
69 struct amp_ctrl *ctrl, *n;
70
71 BT_DBG("mgr %p", mgr);
72
73 mutex_lock(&mgr->amp_ctrls_lock);
74 list_for_each_entry_safe(ctrl, n, &mgr->amp_ctrls, list) {
75 list_del(&ctrl->list);
76 amp_ctrl_put(ctrl);
77 }
78 mutex_unlock(&mgr->amp_ctrls_lock);
79}
80
81struct amp_ctrl *amp_ctrl_lookup(struct amp_mgr *mgr, u8 id)
82{
83 struct amp_ctrl *ctrl;
84
85 BT_DBG("mgr %p id %d", mgr, id);
86
87 mutex_lock(&mgr->amp_ctrls_lock);
88 list_for_each_entry(ctrl, &mgr->amp_ctrls, list) {
89 if (ctrl->id == id) {
90 amp_ctrl_get(ctrl);
91 mutex_unlock(&mgr->amp_ctrls_lock);
92 return ctrl;
93 }
94 }
95 mutex_unlock(&mgr->amp_ctrls_lock);
96
97 return NULL;
98}
99
Andrei Emeltchenko3161ae12012-09-27 17:26:11 +0300100/* Physical Link interface */
101static u8 __next_handle(struct amp_mgr *mgr)
102{
103 if (++mgr->handle == 0)
104 mgr->handle = 1;
105
106 return mgr->handle;
107}
108
109struct hci_conn *phylink_add(struct hci_dev *hdev, struct amp_mgr *mgr,
110 u8 remote_id)
111{
112 bdaddr_t *dst = mgr->l2cap_conn->dst;
113 struct hci_conn *hcon;
114
115 hcon = hci_conn_add(hdev, AMP_LINK, dst);
116 if (!hcon)
117 return NULL;
118
119 hcon->state = BT_CONNECT;
120 hcon->out = true;
121 hcon->attempt++;
122 hcon->handle = __next_handle(mgr);
123 hcon->remote_id = remote_id;
124 hcon->amp_mgr = mgr;
125
126 return hcon;
127}
128
Dmitry Kasatkinba221bb2012-09-27 17:26:17 +0300129/* AMP crypto key generation interface */
130static int hmac_sha256(u8 *key, u8 ksize, char *plaintext, u8 psize, u8 *output)
131{
132 int ret = 0;
133 struct crypto_shash *tfm;
134
135 if (!ksize)
136 return -EINVAL;
137
138 tfm = crypto_alloc_shash("hmac(sha256)", 0, 0);
139 if (IS_ERR(tfm)) {
140 BT_DBG("crypto_alloc_ahash failed: err %ld", PTR_ERR(tfm));
141 return PTR_ERR(tfm);
142 }
143
144 ret = crypto_shash_setkey(tfm, key, ksize);
145 if (ret) {
146 BT_DBG("crypto_ahash_setkey failed: err %d", ret);
147 } else {
148 struct {
149 struct shash_desc shash;
150 char ctx[crypto_shash_descsize(tfm)];
151 } desc;
152
153 desc.shash.tfm = tfm;
154 desc.shash.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
155
156 ret = crypto_shash_digest(&desc.shash, plaintext, psize,
157 output);
158 }
159
160 crypto_free_shash(tfm);
161 return ret;
162}
163
Andrei Emeltchenko903e4542012-09-27 17:26:09 +0300164void amp_read_loc_assoc_frag(struct hci_dev *hdev, u8 phy_handle)
165{
166 struct hci_cp_read_local_amp_assoc cp;
167 struct amp_assoc *loc_assoc = &hdev->loc_assoc;
168
169 BT_DBG("%s handle %d", hdev->name, phy_handle);
170
171 cp.phy_handle = phy_handle;
172 cp.max_len = cpu_to_le16(hdev->amp_assoc_size);
173 cp.len_so_far = cpu_to_le16(loc_assoc->offset);
174
175 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_AMP_ASSOC, sizeof(cp), &cp);
176}
177
178void amp_read_loc_assoc(struct hci_dev *hdev, struct amp_mgr *mgr)
179{
180 struct hci_cp_read_local_amp_assoc cp;
181
182 memset(&hdev->loc_assoc, 0, sizeof(struct amp_assoc));
183 memset(&cp, 0, sizeof(cp));
184
185 cp.max_len = cpu_to_le16(hdev->amp_assoc_size);
186
187 mgr->state = READ_LOC_AMP_ASSOC;
188 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_AMP_ASSOC, sizeof(cp), &cp);
189}