blob: d2c6878a9d6a98af67aab41c84351ee3ed9404dd [file] [log] [blame]
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 BlueZ - Bluetooth protocol stack for Linux
Ron Shaffer2d0a0342010-05-28 11:53:46 -04003 Copyright (c) 2000-2001, 2010, Code Aurora Forum. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License version 2 as
9 published by the Free Software Foundation;
10
11 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
12 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
14 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090015 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
16 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090020 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
21 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 SOFTWARE IS DISCLAIMED.
23*/
24
25/* Bluetooth HCI event handling. */
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/unaligned.h>
28
29#include <net/bluetooth/bluetooth.h>
30#include <net/bluetooth/hci_core.h>
Mikel Astizf0d6a0e2012-08-09 09:52:30 +020031#include <net/bluetooth/mgmt.h>
Marcel Holtmann7ef9fbf2013-10-10 14:54:14 -070032
Marcel Holtmann70247282013-10-10 14:54:15 -070033#include "a2mp.h"
Marcel Holtmann7ef9fbf2013-10-10 14:54:14 -070034#include "amp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/* Handle HCI Event packets */
37
Marcel Holtmanna9de9242007-10-20 13:33:56 +020038static void hci_cc_inquiry_cancel(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
Marcel Holtmanna9de9242007-10-20 13:33:56 +020040 __u8 status = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +030042 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Andre Guedes82f47852013-04-30 15:29:34 -030044 if (status)
Marcel Holtmanna9de9242007-10-20 13:33:56 +020045 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Andre Guedes89352e72011-11-04 14:16:53 -030047 clear_bit(HCI_INQUIRY, &hdev->flags);
Andre Guedes3e13fa12013-03-27 20:04:56 -030048 smp_mb__after_clear_bit(); /* wake_up_bit advises about this barrier */
49 wake_up_bit(&hdev->flags, HCI_INQUIRY);
Andre Guedes89352e72011-11-04 14:16:53 -030050
Marcel Holtmanna9de9242007-10-20 13:33:56 +020051 hci_conn_check_pending(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052}
53
Andre Guedes4d934832012-03-21 00:03:35 -030054static void hci_cc_periodic_inq(struct hci_dev *hdev, struct sk_buff *skb)
55{
56 __u8 status = *((__u8 *) skb->data);
57
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +030058 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedesae854a72012-03-21 00:03:36 -030059
60 if (status)
61 return;
62
63 set_bit(HCI_PERIODIC_INQ, &hdev->dev_flags);
Andre Guedes4d934832012-03-21 00:03:35 -030064}
65
Marcel Holtmanna9de9242007-10-20 13:33:56 +020066static void hci_cc_exit_periodic_inq(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Marcel Holtmanna9de9242007-10-20 13:33:56 +020068 __u8 status = *((__u8 *) skb->data);
69
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +030070 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +020071
72 if (status)
73 return;
74
Andre Guedesae854a72012-03-21 00:03:36 -030075 clear_bit(HCI_PERIODIC_INQ, &hdev->dev_flags);
76
Marcel Holtmanna9de9242007-10-20 13:33:56 +020077 hci_conn_check_pending(hdev);
78}
79
Gustavo Padovan807deac2012-05-17 00:36:24 -030080static void hci_cc_remote_name_req_cancel(struct hci_dev *hdev,
81 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +020082{
83 BT_DBG("%s", hdev->name);
84}
85
86static void hci_cc_role_discovery(struct hci_dev *hdev, struct sk_buff *skb)
87{
88 struct hci_rp_role_discovery *rp = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +030091 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Marcel Holtmanna9de9242007-10-20 13:33:56 +020093 if (rp->status)
94 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Marcel Holtmanna9de9242007-10-20 13:33:56 +020096 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Marcel Holtmanna9de9242007-10-20 13:33:56 +020098 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
99 if (conn) {
100 if (rp->role)
101 conn->link_mode &= ~HCI_LM_MASTER;
102 else
103 conn->link_mode |= HCI_LM_MASTER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200105
106 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200109static void hci_cc_read_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
110{
111 struct hci_rp_read_link_policy *rp = (void *) skb->data;
112 struct hci_conn *conn;
113
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300114 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200115
116 if (rp->status)
117 return;
118
119 hci_dev_lock(hdev);
120
121 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
122 if (conn)
123 conn->link_policy = __le16_to_cpu(rp->policy);
124
125 hci_dev_unlock(hdev);
126}
127
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200128static void hci_cc_write_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200130 struct hci_rp_write_link_policy *rp = (void *) skb->data;
131 struct hci_conn *conn;
132 void *sent;
133
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300134 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200135
136 if (rp->status)
137 return;
138
139 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LINK_POLICY);
140 if (!sent)
141 return;
142
143 hci_dev_lock(hdev);
144
145 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200146 if (conn)
Harvey Harrison83985312008-05-02 16:25:46 -0700147 conn->link_policy = get_unaligned_le16(sent + 2);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200148
149 hci_dev_unlock(hdev);
150}
151
Gustavo Padovan807deac2012-05-17 00:36:24 -0300152static void hci_cc_read_def_link_policy(struct hci_dev *hdev,
153 struct sk_buff *skb)
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200154{
155 struct hci_rp_read_def_link_policy *rp = (void *) skb->data;
156
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300157 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200158
159 if (rp->status)
160 return;
161
162 hdev->link_policy = __le16_to_cpu(rp->policy);
163}
164
Gustavo Padovan807deac2012-05-17 00:36:24 -0300165static void hci_cc_write_def_link_policy(struct hci_dev *hdev,
166 struct sk_buff *skb)
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200167{
168 __u8 status = *((__u8 *) skb->data);
169 void *sent;
170
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300171 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200172
173 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_DEF_LINK_POLICY);
174 if (!sent)
175 return;
176
177 if (!status)
178 hdev->link_policy = get_unaligned_le16(sent);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200179}
180
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200181static void hci_cc_reset(struct hci_dev *hdev, struct sk_buff *skb)
182{
183 __u8 status = *((__u8 *) skb->data);
184
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300185 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200186
Gustavo F. Padovan10572132011-03-16 15:36:29 -0300187 clear_bit(HCI_RESET, &hdev->flags);
188
Johan Hedberga297e972012-02-21 17:55:47 +0200189 /* Reset all non-persistent flags */
Johan Hedberg2cc6fb02013-03-15 17:06:57 -0500190 hdev->dev_flags &= ~HCI_PERSISTENT_MASK;
Andre Guedes69775ff2012-02-23 16:50:05 +0200191
192 hdev->discovery.state = DISCOVERY_STOPPED;
Johan Hedbergbbaf4442012-11-08 01:22:59 +0100193 hdev->inq_tx_power = HCI_TX_POWER_INVALID;
194 hdev->adv_tx_power = HCI_TX_POWER_INVALID;
Johan Hedberg3f0f5242012-11-08 01:23:00 +0100195
196 memset(hdev->adv_data, 0, sizeof(hdev->adv_data));
197 hdev->adv_data_len = 0;
Marcel Holtmannf8e808b2013-10-16 00:16:47 -0700198
199 memset(hdev->scan_rsp_data, 0, sizeof(hdev->scan_rsp_data));
200 hdev->scan_rsp_data_len = 0;
Marcel Holtmann06f5b772013-10-19 07:09:11 -0700201
202 hdev->ssp_debug_mode = 0;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200203}
204
205static void hci_cc_write_local_name(struct hci_dev *hdev, struct sk_buff *skb)
206{
207 __u8 status = *((__u8 *) skb->data);
208 void *sent;
209
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300210 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200211
212 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LOCAL_NAME);
213 if (!sent)
214 return;
215
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200216 hci_dev_lock(hdev);
217
Johan Hedbergf51d5b22012-02-22 18:17:32 +0200218 if (test_bit(HCI_MGMT, &hdev->dev_flags))
219 mgmt_set_local_name_complete(hdev, sent, status);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +0200220 else if (!status)
221 memcpy(hdev->dev_name, sent, HCI_MAX_NAME_LENGTH);
Johan Hedbergf51d5b22012-02-22 18:17:32 +0200222
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200223 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200224}
225
226static void hci_cc_read_local_name(struct hci_dev *hdev, struct sk_buff *skb)
227{
228 struct hci_rp_read_local_name *rp = (void *) skb->data;
229
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300230 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200231
232 if (rp->status)
233 return;
234
Johan Hedbergdb99b5f2012-02-22 20:14:22 +0200235 if (test_bit(HCI_SETUP, &hdev->dev_flags))
236 memcpy(hdev->dev_name, rp->name, HCI_MAX_NAME_LENGTH);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200237}
238
239static void hci_cc_write_auth_enable(struct hci_dev *hdev, struct sk_buff *skb)
240{
241 __u8 status = *((__u8 *) skb->data);
242 void *sent;
243
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300244 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200245
246 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_AUTH_ENABLE);
247 if (!sent)
248 return;
249
250 if (!status) {
251 __u8 param = *((__u8 *) sent);
252
253 if (param == AUTH_ENABLED)
254 set_bit(HCI_AUTH, &hdev->flags);
255 else
256 clear_bit(HCI_AUTH, &hdev->flags);
257 }
258
Johan Hedberg33ef95e2012-02-16 23:56:27 +0200259 if (test_bit(HCI_MGMT, &hdev->dev_flags))
260 mgmt_auth_enable_complete(hdev, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200261}
262
263static void hci_cc_write_encrypt_mode(struct hci_dev *hdev, struct sk_buff *skb)
264{
265 __u8 status = *((__u8 *) skb->data);
266 void *sent;
267
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300268 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200269
270 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_ENCRYPT_MODE);
271 if (!sent)
272 return;
273
274 if (!status) {
275 __u8 param = *((__u8 *) sent);
276
277 if (param)
278 set_bit(HCI_ENCRYPT, &hdev->flags);
279 else
280 clear_bit(HCI_ENCRYPT, &hdev->flags);
281 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200282}
283
284static void hci_cc_write_scan_enable(struct hci_dev *hdev, struct sk_buff *skb)
285{
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200286 __u8 param, status = *((__u8 *) skb->data);
287 int old_pscan, old_iscan;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200288 void *sent;
289
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300290 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200291
292 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SCAN_ENABLE);
293 if (!sent)
294 return;
295
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200296 param = *((__u8 *) sent);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200297
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200298 hci_dev_lock(hdev);
299
Mikel Astizfa1bd912012-08-09 09:52:29 +0200300 if (status) {
Johan Hedberg744cf192011-11-08 20:40:14 +0200301 mgmt_write_scan_failed(hdev, param, status);
Johan Hedberg2d7cee52011-11-07 22:16:03 +0200302 hdev->discov_timeout = 0;
303 goto done;
304 }
305
Johan Hedberg0663ca22013-10-02 13:43:14 +0300306 /* We need to ensure that we set this back on if someone changed
307 * the scan mode through a raw HCI socket.
308 */
309 set_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
310
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200311 old_pscan = test_and_clear_bit(HCI_PSCAN, &hdev->flags);
312 old_iscan = test_and_clear_bit(HCI_ISCAN, &hdev->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200313
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200314 if (param & SCAN_INQUIRY) {
315 set_bit(HCI_ISCAN, &hdev->flags);
316 if (!old_iscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200317 mgmt_discoverable(hdev, 1);
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200318 } else if (old_iscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200319 mgmt_discoverable(hdev, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200320
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200321 if (param & SCAN_PAGE) {
322 set_bit(HCI_PSCAN, &hdev->flags);
323 if (!old_pscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200324 mgmt_connectable(hdev, 1);
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200325 } else if (old_pscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200326 mgmt_connectable(hdev, 0);
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200327
328done:
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200329 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200330}
331
332static void hci_cc_read_class_of_dev(struct hci_dev *hdev, struct sk_buff *skb)
333{
334 struct hci_rp_read_class_of_dev *rp = (void *) skb->data;
335
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300336 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200337
338 if (rp->status)
339 return;
340
341 memcpy(hdev->dev_class, rp->dev_class, 3);
342
343 BT_DBG("%s class 0x%.2x%.2x%.2x", hdev->name,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300344 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200345}
346
347static void hci_cc_write_class_of_dev(struct hci_dev *hdev, struct sk_buff *skb)
348{
349 __u8 status = *((__u8 *) skb->data);
350 void *sent;
351
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300352 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200353
354 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_CLASS_OF_DEV);
355 if (!sent)
356 return;
357
Marcel Holtmann7f9a9032012-02-22 18:38:01 +0100358 hci_dev_lock(hdev);
359
360 if (status == 0)
361 memcpy(hdev->dev_class, sent, 3);
362
363 if (test_bit(HCI_MGMT, &hdev->dev_flags))
364 mgmt_set_class_of_dev_complete(hdev, sent, status);
365
366 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200367}
368
369static void hci_cc_read_voice_setting(struct hci_dev *hdev, struct sk_buff *skb)
370{
371 struct hci_rp_read_voice_setting *rp = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 __u16 setting;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200373
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300374 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200375
376 if (rp->status)
377 return;
378
379 setting = __le16_to_cpu(rp->voice_setting);
380
Marcel Holtmannf383f272008-07-14 20:13:47 +0200381 if (hdev->voice_setting == setting)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200382 return;
383
384 hdev->voice_setting = setting;
385
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300386 BT_DBG("%s voice setting 0x%4.4x", hdev->name, setting);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200387
Gustavo F. Padovan3c547112011-12-14 22:58:44 -0200388 if (hdev->notify)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200389 hdev->notify(hdev, HCI_NOTIFY_VOICE_SETTING);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200390}
391
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300392static void hci_cc_write_voice_setting(struct hci_dev *hdev,
393 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200394{
395 __u8 status = *((__u8 *) skb->data);
Marcel Holtmannf383f272008-07-14 20:13:47 +0200396 __u16 setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 void *sent;
398
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300399 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Marcel Holtmannf383f272008-07-14 20:13:47 +0200401 if (status)
402 return;
403
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200404 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_VOICE_SETTING);
405 if (!sent)
406 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Marcel Holtmannf383f272008-07-14 20:13:47 +0200408 setting = get_unaligned_le16(sent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Marcel Holtmannf383f272008-07-14 20:13:47 +0200410 if (hdev->voice_setting == setting)
411 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Marcel Holtmannf383f272008-07-14 20:13:47 +0200413 hdev->voice_setting = setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300415 BT_DBG("%s voice setting 0x%4.4x", hdev->name, setting);
Marcel Holtmannf383f272008-07-14 20:13:47 +0200416
Gustavo F. Padovan3c547112011-12-14 22:58:44 -0200417 if (hdev->notify)
Marcel Holtmannf383f272008-07-14 20:13:47 +0200418 hdev->notify(hdev, HCI_NOTIFY_VOICE_SETTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Marcel Holtmannb4cb9fb2013-10-14 13:56:16 -0700421static void hci_cc_read_num_supported_iac(struct hci_dev *hdev,
422 struct sk_buff *skb)
423{
424 struct hci_rp_read_num_supported_iac *rp = (void *) skb->data;
425
426 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
427
428 if (rp->status)
429 return;
430
431 hdev->num_iac = rp->num_iac;
432
433 BT_DBG("%s num iac %d", hdev->name, hdev->num_iac);
434}
435
Marcel Holtmann333140b2008-07-14 20:13:48 +0200436static void hci_cc_write_ssp_mode(struct hci_dev *hdev, struct sk_buff *skb)
437{
438 __u8 status = *((__u8 *) skb->data);
Johan Hedberg5ed8eb22012-10-25 00:09:51 +0300439 struct hci_cp_write_ssp_mode *sent;
Marcel Holtmann333140b2008-07-14 20:13:48 +0200440
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300441 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmann333140b2008-07-14 20:13:48 +0200442
Marcel Holtmann333140b2008-07-14 20:13:48 +0200443 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SSP_MODE);
444 if (!sent)
445 return;
446
Johan Hedberg5ed8eb22012-10-25 00:09:51 +0300447 if (!status) {
448 if (sent->mode)
Johan Hedbergcad718e2013-04-17 15:00:51 +0300449 hdev->features[1][0] |= LMP_HOST_SSP;
Johan Hedberg5ed8eb22012-10-25 00:09:51 +0300450 else
Johan Hedbergcad718e2013-04-17 15:00:51 +0300451 hdev->features[1][0] &= ~LMP_HOST_SSP;
Johan Hedberg5ed8eb22012-10-25 00:09:51 +0300452 }
453
Johan Hedberged2c4ee2012-02-17 00:56:28 +0200454 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg5ed8eb22012-10-25 00:09:51 +0300455 mgmt_ssp_enable_complete(hdev, sent->mode, status);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +0200456 else if (!status) {
Johan Hedberg5ed8eb22012-10-25 00:09:51 +0300457 if (sent->mode)
Johan Hedbergc0ecddc2012-02-22 12:38:31 +0200458 set_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
459 else
460 clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
461 }
Marcel Holtmann333140b2008-07-14 20:13:48 +0200462}
463
Marcel Holtmanneac83dc2014-01-10 02:07:23 -0800464static void hci_cc_write_sc_support(struct hci_dev *hdev, struct sk_buff *skb)
465{
466 u8 status = *((u8 *) skb->data);
467 struct hci_cp_write_sc_support *sent;
468
469 BT_DBG("%s status 0x%2.2x", hdev->name, status);
470
471 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SC_SUPPORT);
472 if (!sent)
473 return;
474
475 if (!status) {
476 if (sent->support)
477 hdev->features[1][0] |= LMP_HOST_SC;
478 else
479 hdev->features[1][0] &= ~LMP_HOST_SC;
480 }
481
482 if (test_bit(HCI_MGMT, &hdev->dev_flags))
483 mgmt_sc_enable_complete(hdev, sent->support, status);
484 else if (!status) {
485 if (sent->support)
486 set_bit(HCI_SC_ENABLED, &hdev->dev_flags);
487 else
488 clear_bit(HCI_SC_ENABLED, &hdev->dev_flags);
489 }
490}
491
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200492static void hci_cc_read_local_version(struct hci_dev *hdev, struct sk_buff *skb)
493{
494 struct hci_rp_read_local_version *rp = (void *) skb->data;
495
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300496 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200497
498 if (rp->status)
Johan Hedberg42c6b122013-03-05 20:37:49 +0200499 return;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200500
Marcel Holtmann0d5551f2013-10-18 12:04:50 -0700501 if (test_bit(HCI_SETUP, &hdev->dev_flags)) {
502 hdev->hci_ver = rp->hci_ver;
503 hdev->hci_rev = __le16_to_cpu(rp->hci_rev);
504 hdev->lmp_ver = rp->lmp_ver;
505 hdev->manufacturer = __le16_to_cpu(rp->manufacturer);
506 hdev->lmp_subver = __le16_to_cpu(rp->lmp_subver);
507 }
Johan Hedbergd5859e22011-01-25 01:19:58 +0200508}
509
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300510static void hci_cc_read_local_commands(struct hci_dev *hdev,
511 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200512{
513 struct hci_rp_read_local_commands *rp = (void *) skb->data;
514
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300515 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200516
Marcel Holtmann6a070e62013-10-31 04:54:33 -0700517 if (rp->status)
518 return;
519
520 if (test_bit(HCI_SETUP, &hdev->dev_flags))
Johan Hedberg2177bab2013-03-05 20:37:43 +0200521 memcpy(hdev->commands, rp->commands, sizeof(hdev->commands));
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200522}
523
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300524static void hci_cc_read_local_features(struct hci_dev *hdev,
525 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200526{
527 struct hci_rp_read_local_features *rp = (void *) skb->data;
528
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300529 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200530
531 if (rp->status)
532 return;
533
534 memcpy(hdev->features, rp->features, 8);
535
536 /* Adjust default settings according to features
537 * supported by device. */
538
Johan Hedbergcad718e2013-04-17 15:00:51 +0300539 if (hdev->features[0][0] & LMP_3SLOT)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200540 hdev->pkt_type |= (HCI_DM3 | HCI_DH3);
541
Johan Hedbergcad718e2013-04-17 15:00:51 +0300542 if (hdev->features[0][0] & LMP_5SLOT)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200543 hdev->pkt_type |= (HCI_DM5 | HCI_DH5);
544
Johan Hedbergcad718e2013-04-17 15:00:51 +0300545 if (hdev->features[0][1] & LMP_HV2) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200546 hdev->pkt_type |= (HCI_HV2);
547 hdev->esco_type |= (ESCO_HV2);
548 }
549
Johan Hedbergcad718e2013-04-17 15:00:51 +0300550 if (hdev->features[0][1] & LMP_HV3) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200551 hdev->pkt_type |= (HCI_HV3);
552 hdev->esco_type |= (ESCO_HV3);
553 }
554
Andre Guedes45db810f2012-07-24 15:03:49 -0300555 if (lmp_esco_capable(hdev))
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200556 hdev->esco_type |= (ESCO_EV3);
557
Johan Hedbergcad718e2013-04-17 15:00:51 +0300558 if (hdev->features[0][4] & LMP_EV4)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200559 hdev->esco_type |= (ESCO_EV4);
560
Johan Hedbergcad718e2013-04-17 15:00:51 +0300561 if (hdev->features[0][4] & LMP_EV5)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200562 hdev->esco_type |= (ESCO_EV5);
563
Johan Hedbergcad718e2013-04-17 15:00:51 +0300564 if (hdev->features[0][5] & LMP_EDR_ESCO_2M)
Marcel Holtmannefc76882009-02-06 09:13:37 +0100565 hdev->esco_type |= (ESCO_2EV3);
566
Johan Hedbergcad718e2013-04-17 15:00:51 +0300567 if (hdev->features[0][5] & LMP_EDR_ESCO_3M)
Marcel Holtmannefc76882009-02-06 09:13:37 +0100568 hdev->esco_type |= (ESCO_3EV3);
569
Johan Hedbergcad718e2013-04-17 15:00:51 +0300570 if (hdev->features[0][5] & LMP_EDR_3S_ESCO)
Marcel Holtmannefc76882009-02-06 09:13:37 +0100571 hdev->esco_type |= (ESCO_2EV5 | ESCO_3EV5);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200572}
573
Andre Guedes971e3a42011-06-30 19:20:52 -0300574static void hci_cc_read_local_ext_features(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300575 struct sk_buff *skb)
Andre Guedes971e3a42011-06-30 19:20:52 -0300576{
577 struct hci_rp_read_local_ext_features *rp = (void *) skb->data;
578
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300579 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Andre Guedes971e3a42011-06-30 19:20:52 -0300580
581 if (rp->status)
Johan Hedberg42c6b122013-03-05 20:37:49 +0200582 return;
Andre Guedes971e3a42011-06-30 19:20:52 -0300583
Marcel Holtmann57af75a2013-10-18 12:04:47 -0700584 if (hdev->max_page < rp->max_page)
585 hdev->max_page = rp->max_page;
Johan Hedbergd2c5d772013-04-17 15:00:52 +0300586
Johan Hedbergcad718e2013-04-17 15:00:51 +0300587 if (rp->page < HCI_MAX_PAGES)
588 memcpy(hdev->features[rp->page], rp->features, 8);
Andre Guedes971e3a42011-06-30 19:20:52 -0300589}
590
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200591static void hci_cc_read_flow_control_mode(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300592 struct sk_buff *skb)
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200593{
594 struct hci_rp_read_flow_control_mode *rp = (void *) skb->data;
595
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300596 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200597
Johan Hedberg42c6b122013-03-05 20:37:49 +0200598 if (!rp->status)
599 hdev->flow_ctl_mode = rp->mode;
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200600}
601
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200602static void hci_cc_read_buffer_size(struct hci_dev *hdev, struct sk_buff *skb)
603{
604 struct hci_rp_read_buffer_size *rp = (void *) skb->data;
605
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300606 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200607
608 if (rp->status)
609 return;
610
611 hdev->acl_mtu = __le16_to_cpu(rp->acl_mtu);
612 hdev->sco_mtu = rp->sco_mtu;
613 hdev->acl_pkts = __le16_to_cpu(rp->acl_max_pkt);
614 hdev->sco_pkts = __le16_to_cpu(rp->sco_max_pkt);
615
616 if (test_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks)) {
617 hdev->sco_mtu = 64;
618 hdev->sco_pkts = 8;
619 }
620
621 hdev->acl_cnt = hdev->acl_pkts;
622 hdev->sco_cnt = hdev->sco_pkts;
623
Gustavo Padovan807deac2012-05-17 00:36:24 -0300624 BT_DBG("%s acl mtu %d:%d sco mtu %d:%d", hdev->name, hdev->acl_mtu,
625 hdev->acl_pkts, hdev->sco_mtu, hdev->sco_pkts);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200626}
627
628static void hci_cc_read_bd_addr(struct hci_dev *hdev, struct sk_buff *skb)
629{
630 struct hci_rp_read_bd_addr *rp = (void *) skb->data;
631
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300632 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200633
634 if (!rp->status)
635 bacpy(&hdev->bdaddr, &rp->bdaddr);
Johan Hedberg23bb5762010-12-21 23:01:27 +0200636}
637
Johan Hedbergf332ec62013-03-15 17:07:11 -0500638static void hci_cc_read_page_scan_activity(struct hci_dev *hdev,
639 struct sk_buff *skb)
640{
641 struct hci_rp_read_page_scan_activity *rp = (void *) skb->data;
642
643 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
644
645 if (test_bit(HCI_INIT, &hdev->flags) && !rp->status) {
646 hdev->page_scan_interval = __le16_to_cpu(rp->interval);
647 hdev->page_scan_window = __le16_to_cpu(rp->window);
648 }
649}
650
Johan Hedberg4a3ee762013-03-15 17:07:12 -0500651static void hci_cc_write_page_scan_activity(struct hci_dev *hdev,
652 struct sk_buff *skb)
653{
654 u8 status = *((u8 *) skb->data);
655 struct hci_cp_write_page_scan_activity *sent;
656
657 BT_DBG("%s status 0x%2.2x", hdev->name, status);
658
659 if (status)
660 return;
661
662 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY);
663 if (!sent)
664 return;
665
666 hdev->page_scan_interval = __le16_to_cpu(sent->interval);
667 hdev->page_scan_window = __le16_to_cpu(sent->window);
668}
669
Johan Hedbergf332ec62013-03-15 17:07:11 -0500670static void hci_cc_read_page_scan_type(struct hci_dev *hdev,
671 struct sk_buff *skb)
672{
673 struct hci_rp_read_page_scan_type *rp = (void *) skb->data;
674
675 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
676
677 if (test_bit(HCI_INIT, &hdev->flags) && !rp->status)
678 hdev->page_scan_type = rp->type;
679}
680
Johan Hedberg4a3ee762013-03-15 17:07:12 -0500681static void hci_cc_write_page_scan_type(struct hci_dev *hdev,
682 struct sk_buff *skb)
683{
684 u8 status = *((u8 *) skb->data);
685 u8 *type;
686
687 BT_DBG("%s status 0x%2.2x", hdev->name, status);
688
689 if (status)
690 return;
691
692 type = hci_sent_cmd_data(hdev, HCI_OP_WRITE_PAGE_SCAN_TYPE);
693 if (type)
694 hdev->page_scan_type = *type;
695}
696
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200697static void hci_cc_read_data_block_size(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300698 struct sk_buff *skb)
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200699{
700 struct hci_rp_read_data_block_size *rp = (void *) skb->data;
701
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300702 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200703
704 if (rp->status)
705 return;
706
707 hdev->block_mtu = __le16_to_cpu(rp->max_acl_len);
708 hdev->block_len = __le16_to_cpu(rp->block_len);
709 hdev->num_blocks = __le16_to_cpu(rp->num_blocks);
710
711 hdev->block_cnt = hdev->num_blocks;
712
713 BT_DBG("%s blk mtu %d cnt %d len %d", hdev->name, hdev->block_mtu,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300714 hdev->block_cnt, hdev->block_len);
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200715}
716
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300717static void hci_cc_read_local_amp_info(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300718 struct sk_buff *skb)
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300719{
720 struct hci_rp_read_local_amp_info *rp = (void *) skb->data;
721
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300722 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300723
724 if (rp->status)
Andrei Emeltchenko8e2a0d92012-09-27 17:26:08 +0300725 goto a2mp_rsp;
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300726
727 hdev->amp_status = rp->amp_status;
728 hdev->amp_total_bw = __le32_to_cpu(rp->total_bw);
729 hdev->amp_max_bw = __le32_to_cpu(rp->max_bw);
730 hdev->amp_min_latency = __le32_to_cpu(rp->min_latency);
731 hdev->amp_max_pdu = __le32_to_cpu(rp->max_pdu);
732 hdev->amp_type = rp->amp_type;
733 hdev->amp_pal_cap = __le16_to_cpu(rp->pal_cap);
734 hdev->amp_assoc_size = __le16_to_cpu(rp->max_assoc_size);
735 hdev->amp_be_flush_to = __le32_to_cpu(rp->be_flush_to);
736 hdev->amp_max_flush_to = __le32_to_cpu(rp->max_flush_to);
737
Andrei Emeltchenko8e2a0d92012-09-27 17:26:08 +0300738a2mp_rsp:
739 a2mp_send_getinfo_rsp(hdev);
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300740}
741
Andrei Emeltchenko903e4542012-09-27 17:26:09 +0300742static void hci_cc_read_local_amp_assoc(struct hci_dev *hdev,
743 struct sk_buff *skb)
744{
745 struct hci_rp_read_local_amp_assoc *rp = (void *) skb->data;
746 struct amp_assoc *assoc = &hdev->loc_assoc;
747 size_t rem_len, frag_len;
748
749 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
750
751 if (rp->status)
752 goto a2mp_rsp;
753
754 frag_len = skb->len - sizeof(*rp);
755 rem_len = __le16_to_cpu(rp->rem_len);
756
757 if (rem_len > frag_len) {
Andrei Emeltchenko2e430be32012-09-28 14:44:23 +0300758 BT_DBG("frag_len %zu rem_len %zu", frag_len, rem_len);
Andrei Emeltchenko903e4542012-09-27 17:26:09 +0300759
760 memcpy(assoc->data + assoc->offset, rp->frag, frag_len);
761 assoc->offset += frag_len;
762
763 /* Read other fragments */
764 amp_read_loc_assoc_frag(hdev, rp->phy_handle);
765
766 return;
767 }
768
769 memcpy(assoc->data + assoc->offset, rp->frag, rem_len);
770 assoc->len = assoc->offset + rem_len;
771 assoc->offset = 0;
772
773a2mp_rsp:
774 /* Send A2MP Rsp when all fragments are received */
775 a2mp_send_getampassoc_rsp(hdev, rp->status);
Andrei Emeltchenko9495b2e2012-09-27 17:26:22 +0300776 a2mp_send_create_phy_link_req(hdev, rp->status);
Andrei Emeltchenko903e4542012-09-27 17:26:09 +0300777}
778
Johan Hedbergd5859e22011-01-25 01:19:58 +0200779static void hci_cc_read_inq_rsp_tx_power(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300780 struct sk_buff *skb)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200781{
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700782 struct hci_rp_read_inq_rsp_tx_power *rp = (void *) skb->data;
Johan Hedbergd5859e22011-01-25 01:19:58 +0200783
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300784 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200785
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700786 if (!rp->status)
787 hdev->inq_tx_power = rp->tx_power;
Johan Hedbergd5859e22011-01-25 01:19:58 +0200788}
789
Johan Hedberg980e1a52011-01-22 06:10:07 +0200790static void hci_cc_pin_code_reply(struct hci_dev *hdev, struct sk_buff *skb)
791{
792 struct hci_rp_pin_code_reply *rp = (void *) skb->data;
793 struct hci_cp_pin_code_reply *cp;
794 struct hci_conn *conn;
795
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300796 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200797
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200798 hci_dev_lock(hdev);
799
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200800 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200801 mgmt_pin_code_reply_complete(hdev, &rp->bdaddr, rp->status);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200802
Mikel Astizfa1bd912012-08-09 09:52:29 +0200803 if (rp->status)
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200804 goto unlock;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200805
806 cp = hci_sent_cmd_data(hdev, HCI_OP_PIN_CODE_REPLY);
807 if (!cp)
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200808 goto unlock;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200809
810 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
811 if (conn)
812 conn->pin_length = cp->pin_len;
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200813
814unlock:
815 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200816}
817
818static void hci_cc_pin_code_neg_reply(struct hci_dev *hdev, struct sk_buff *skb)
819{
820 struct hci_rp_pin_code_neg_reply *rp = (void *) skb->data;
821
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300822 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200823
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200824 hci_dev_lock(hdev);
825
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200826 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200827 mgmt_pin_code_neg_reply_complete(hdev, &rp->bdaddr,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300828 rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200829
830 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200831}
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200832
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300833static void hci_cc_le_read_buffer_size(struct hci_dev *hdev,
834 struct sk_buff *skb)
835{
836 struct hci_rp_le_read_buffer_size *rp = (void *) skb->data;
837
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300838 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300839
840 if (rp->status)
841 return;
842
843 hdev->le_mtu = __le16_to_cpu(rp->le_mtu);
844 hdev->le_pkts = rp->le_max_pkt;
845
846 hdev->le_cnt = hdev->le_pkts;
847
848 BT_DBG("%s le mtu %d:%d", hdev->name, hdev->le_mtu, hdev->le_pkts);
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300849}
Johan Hedberg980e1a52011-01-22 06:10:07 +0200850
Johan Hedberg60e77322013-01-22 14:01:59 +0200851static void hci_cc_le_read_local_features(struct hci_dev *hdev,
852 struct sk_buff *skb)
853{
854 struct hci_rp_le_read_local_features *rp = (void *) skb->data;
855
856 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
857
858 if (!rp->status)
859 memcpy(hdev->le_features, rp->features, 8);
Johan Hedberg60e77322013-01-22 14:01:59 +0200860}
861
Johan Hedberg8fa19092012-10-19 20:57:49 +0300862static void hci_cc_le_read_adv_tx_power(struct hci_dev *hdev,
863 struct sk_buff *skb)
864{
865 struct hci_rp_le_read_adv_tx_power *rp = (void *) skb->data;
866
867 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
868
Johan Hedberg04b4edc2013-03-15 17:07:01 -0500869 if (!rp->status)
Johan Hedberg8fa19092012-10-19 20:57:49 +0300870 hdev->adv_tx_power = rp->tx_power;
Johan Hedberg8fa19092012-10-19 20:57:49 +0300871}
872
Johan Hedberga5c29682011-02-19 12:05:57 -0300873static void hci_cc_user_confirm_reply(struct hci_dev *hdev, struct sk_buff *skb)
874{
875 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
876
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300877 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberga5c29682011-02-19 12:05:57 -0300878
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200879 hci_dev_lock(hdev);
880
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200881 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300882 mgmt_user_confirm_reply_complete(hdev, &rp->bdaddr, ACL_LINK, 0,
883 rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200884
885 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -0300886}
887
888static void hci_cc_user_confirm_neg_reply(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300889 struct sk_buff *skb)
Johan Hedberga5c29682011-02-19 12:05:57 -0300890{
891 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
892
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300893 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberga5c29682011-02-19 12:05:57 -0300894
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200895 hci_dev_lock(hdev);
896
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200897 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200898 mgmt_user_confirm_neg_reply_complete(hdev, &rp->bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300899 ACL_LINK, 0, rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200900
901 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -0300902}
903
Brian Gix1143d452011-11-23 08:28:34 -0800904static void hci_cc_user_passkey_reply(struct hci_dev *hdev, struct sk_buff *skb)
905{
906 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
907
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300908 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -0800909
910 hci_dev_lock(hdev);
911
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200912 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg272d90d2012-02-09 15:26:12 +0200913 mgmt_user_passkey_reply_complete(hdev, &rp->bdaddr, ACL_LINK,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300914 0, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -0800915
916 hci_dev_unlock(hdev);
917}
918
919static void hci_cc_user_passkey_neg_reply(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300920 struct sk_buff *skb)
Brian Gix1143d452011-11-23 08:28:34 -0800921{
922 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
923
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300924 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -0800925
926 hci_dev_lock(hdev);
927
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200928 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Brian Gix1143d452011-11-23 08:28:34 -0800929 mgmt_user_passkey_neg_reply_complete(hdev, &rp->bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300930 ACL_LINK, 0, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -0800931
932 hci_dev_unlock(hdev);
933}
934
Marcel Holtmann4d2d2792014-01-10 02:07:26 -0800935static void hci_cc_read_local_oob_data(struct hci_dev *hdev,
936 struct sk_buff *skb)
Szymon Jancc35938b2011-03-22 13:12:21 +0100937{
938 struct hci_rp_read_local_oob_data *rp = (void *) skb->data;
939
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300940 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Szymon Jancc35938b2011-03-22 13:12:21 +0100941
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200942 hci_dev_lock(hdev);
Marcel Holtmann4d2d2792014-01-10 02:07:26 -0800943 mgmt_read_local_oob_data_complete(hdev, rp->hash, rp->randomizer,
944 NULL, NULL, rp->status);
945 hci_dev_unlock(hdev);
946}
947
948static void hci_cc_read_local_oob_ext_data(struct hci_dev *hdev,
949 struct sk_buff *skb)
950{
951 struct hci_rp_read_local_oob_ext_data *rp = (void *) skb->data;
952
953 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
954
955 hci_dev_lock(hdev);
956 mgmt_read_local_oob_data_complete(hdev, rp->hash192, rp->randomizer192,
957 rp->hash256, rp->randomizer256,
958 rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200959 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +0100960}
961
Johan Hedbergc1d5dc42012-11-08 01:23:01 +0100962static void hci_cc_le_set_adv_enable(struct hci_dev *hdev, struct sk_buff *skb)
963{
964 __u8 *sent, status = *((__u8 *) skb->data);
965
966 BT_DBG("%s status 0x%2.2x", hdev->name, status);
967
968 sent = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_ADV_ENABLE);
969 if (!sent)
970 return;
971
972 hci_dev_lock(hdev);
973
974 if (!status) {
975 if (*sent)
Johan Hedbergf3d3444a2013-10-05 12:01:04 +0200976 set_bit(HCI_ADVERTISING, &hdev->dev_flags);
Johan Hedbergc1d5dc42012-11-08 01:23:01 +0100977 else
Johan Hedbergf3d3444a2013-10-05 12:01:04 +0200978 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
Johan Hedbergc1d5dc42012-11-08 01:23:01 +0100979 }
980
Johan Hedberg04b4edc2013-03-15 17:07:01 -0500981 hci_dev_unlock(hdev);
Johan Hedbergc1d5dc42012-11-08 01:23:01 +0100982}
983
Andre Guedeseb9d91f2011-05-26 16:23:52 -0300984static void hci_cc_le_set_scan_enable(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300985 struct sk_buff *skb)
Andre Guedeseb9d91f2011-05-26 16:23:52 -0300986{
987 struct hci_cp_le_set_scan_enable *cp;
988 __u8 status = *((__u8 *) skb->data);
989
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300990 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedeseb9d91f2011-05-26 16:23:52 -0300991
Andre Guedeseb9d91f2011-05-26 16:23:52 -0300992 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_SCAN_ENABLE);
993 if (!cp)
994 return;
995
Andre Guedes3fd319b2013-04-30 15:29:36 -0300996 if (status)
997 return;
998
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +0200999 switch (cp->enable) {
Andre Guedes76a388b2013-04-04 20:21:02 -03001000 case LE_SCAN_ENABLE:
Andre Guedesd23264a2011-11-25 20:53:38 -03001001 set_bit(HCI_LE_SCAN, &hdev->dev_flags);
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001002 break;
1003
Andre Guedes76a388b2013-04-04 20:21:02 -03001004 case LE_SCAN_DISABLE:
Andre Guedesd23264a2011-11-25 20:53:38 -03001005 clear_bit(HCI_LE_SCAN, &hdev->dev_flags);
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001006 break;
1007
1008 default:
1009 BT_ERR("Used reserved LE_Scan_Enable param %d", cp->enable);
1010 break;
Andre Guedes35815082011-05-26 16:23:53 -03001011 }
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001012}
1013
Johan Hedbergcf1d0812013-01-22 14:02:00 +02001014static void hci_cc_le_read_white_list_size(struct hci_dev *hdev,
1015 struct sk_buff *skb)
1016{
1017 struct hci_rp_le_read_white_list_size *rp = (void *) skb->data;
1018
1019 BT_DBG("%s status 0x%2.2x size %u", hdev->name, rp->status, rp->size);
1020
1021 if (!rp->status)
1022 hdev->le_white_list_size = rp->size;
Johan Hedbergcf1d0812013-01-22 14:02:00 +02001023}
1024
Johan Hedberg9b008c02013-01-22 14:02:01 +02001025static void hci_cc_le_read_supported_states(struct hci_dev *hdev,
1026 struct sk_buff *skb)
1027{
1028 struct hci_rp_le_read_supported_states *rp = (void *) skb->data;
1029
1030 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1031
1032 if (!rp->status)
1033 memcpy(hdev->le_states, rp->le_states, 8);
Johan Hedberg9b008c02013-01-22 14:02:01 +02001034}
1035
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001036static void hci_cc_write_le_host_supported(struct hci_dev *hdev,
1037 struct sk_buff *skb)
Andre Guedesf9b49302011-06-30 19:20:53 -03001038{
Johan Hedberg06199cf2012-02-22 16:37:11 +02001039 struct hci_cp_write_le_host_supported *sent;
Andre Guedesf9b49302011-06-30 19:20:53 -03001040 __u8 status = *((__u8 *) skb->data);
1041
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001042 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedesf9b49302011-06-30 19:20:53 -03001043
Johan Hedberg06199cf2012-02-22 16:37:11 +02001044 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED);
Johan Hedberg8f984df2012-02-28 01:07:22 +02001045 if (!sent)
Andre Guedesf9b49302011-06-30 19:20:53 -03001046 return;
1047
Johan Hedberg8f984df2012-02-28 01:07:22 +02001048 if (!status) {
Johan Hedberg416a4ae2013-09-25 13:26:08 +03001049 if (sent->le) {
Johan Hedbergcad718e2013-04-17 15:00:51 +03001050 hdev->features[1][0] |= LMP_HOST_LE;
Johan Hedberg416a4ae2013-09-25 13:26:08 +03001051 set_bit(HCI_LE_ENABLED, &hdev->dev_flags);
1052 } else {
Johan Hedbergcad718e2013-04-17 15:00:51 +03001053 hdev->features[1][0] &= ~LMP_HOST_LE;
Johan Hedberg416a4ae2013-09-25 13:26:08 +03001054 clear_bit(HCI_LE_ENABLED, &hdev->dev_flags);
Johan Hedbergf3d3444a2013-10-05 12:01:04 +02001055 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
Johan Hedberg416a4ae2013-09-25 13:26:08 +03001056 }
Johan Hedberg53b2caa2012-10-24 21:11:59 +03001057
1058 if (sent->simul)
Johan Hedbergcad718e2013-04-17 15:00:51 +03001059 hdev->features[1][0] |= LMP_HOST_LE_BREDR;
Johan Hedberg53b2caa2012-10-24 21:11:59 +03001060 else
Johan Hedbergcad718e2013-04-17 15:00:51 +03001061 hdev->features[1][0] &= ~LMP_HOST_LE_BREDR;
Johan Hedberg8f984df2012-02-28 01:07:22 +02001062 }
Andre Guedesf9b49302011-06-30 19:20:53 -03001063}
1064
Andrei Emeltchenko93c284e2012-09-27 17:26:20 +03001065static void hci_cc_write_remote_amp_assoc(struct hci_dev *hdev,
1066 struct sk_buff *skb)
1067{
1068 struct hci_rp_write_remote_amp_assoc *rp = (void *) skb->data;
1069
1070 BT_DBG("%s status 0x%2.2x phy_handle 0x%2.2x",
1071 hdev->name, rp->status, rp->phy_handle);
1072
1073 if (rp->status)
1074 return;
1075
1076 amp_write_rem_assoc_continue(hdev, rp->phy_handle);
1077}
1078
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001079static void hci_cs_inquiry(struct hci_dev *hdev, __u8 status)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001080{
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001081 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001082
1083 if (status) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001084 hci_conn_check_pending(hdev);
Johan Hedberg314b2382011-04-27 10:29:57 -04001085 return;
1086 }
1087
Andre Guedes89352e72011-11-04 14:16:53 -03001088 set_bit(HCI_INQUIRY, &hdev->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001089}
1090
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001091static void hci_cs_create_conn(struct hci_dev *hdev, __u8 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001093 struct hci_cp_create_conn *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001096 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001097
1098 cp = hci_sent_cmd_data(hdev, HCI_OP_CREATE_CONN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 if (!cp)
1100 return;
1101
1102 hci_dev_lock(hdev);
1103
1104 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
1105
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001106 BT_DBG("%s bdaddr %pMR hcon %p", hdev->name, &cp->bdaddr, conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
1108 if (status) {
1109 if (conn && conn->state == BT_CONNECT) {
Marcel Holtmann4c67bc72006-10-15 17:30:56 +02001110 if (status != 0x0c || conn->attempt > 2) {
1111 conn->state = BT_CLOSED;
1112 hci_proto_connect_cfm(conn, status);
1113 hci_conn_del(conn);
1114 } else
1115 conn->state = BT_CONNECT2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 }
1117 } else {
1118 if (!conn) {
1119 conn = hci_conn_add(hdev, ACL_LINK, &cp->bdaddr);
1120 if (conn) {
Johan Hedberga0c808b2012-01-16 09:49:58 +02001121 conn->out = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 conn->link_mode |= HCI_LM_MASTER;
1123 } else
Gustavo F. Padovan893ef972010-07-18 15:13:37 -03001124 BT_ERR("No memory for new connection");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
1126 }
1127
1128 hci_dev_unlock(hdev);
1129}
1130
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001131static void hci_cs_add_sco(struct hci_dev *hdev, __u8 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001133 struct hci_cp_add_sco *cp;
1134 struct hci_conn *acl, *sco;
1135 __u16 handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001137 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001138
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001139 if (!status)
1140 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001142 cp = hci_sent_cmd_data(hdev, HCI_OP_ADD_SCO);
1143 if (!cp)
1144 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001146 handle = __le16_to_cpu(cp->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001148 BT_DBG("%s handle 0x%4.4x", hdev->name, handle);
Marcel Holtmann6bd57412006-11-18 22:14:22 +01001149
1150 hci_dev_lock(hdev);
1151
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001152 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001153 if (acl) {
1154 sco = acl->link;
1155 if (sco) {
1156 sco->state = BT_CLOSED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001157
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001158 hci_proto_connect_cfm(sco, status);
1159 hci_conn_del(sco);
1160 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001161 }
Marcel Holtmann6bd57412006-11-18 22:14:22 +01001162
1163 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164}
1165
Marcel Holtmannf8558552008-07-14 20:13:49 +02001166static void hci_cs_auth_requested(struct hci_dev *hdev, __u8 status)
1167{
1168 struct hci_cp_auth_requested *cp;
1169 struct hci_conn *conn;
1170
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001171 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannf8558552008-07-14 20:13:49 +02001172
1173 if (!status)
1174 return;
1175
1176 cp = hci_sent_cmd_data(hdev, HCI_OP_AUTH_REQUESTED);
1177 if (!cp)
1178 return;
1179
1180 hci_dev_lock(hdev);
1181
1182 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1183 if (conn) {
1184 if (conn->state == BT_CONFIG) {
1185 hci_proto_connect_cfm(conn, status);
David Herrmann76a68ba2013-04-06 20:28:37 +02001186 hci_conn_drop(conn);
Marcel Holtmannf8558552008-07-14 20:13:49 +02001187 }
1188 }
1189
1190 hci_dev_unlock(hdev);
1191}
1192
1193static void hci_cs_set_conn_encrypt(struct hci_dev *hdev, __u8 status)
1194{
1195 struct hci_cp_set_conn_encrypt *cp;
1196 struct hci_conn *conn;
1197
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001198 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannf8558552008-07-14 20:13:49 +02001199
1200 if (!status)
1201 return;
1202
1203 cp = hci_sent_cmd_data(hdev, HCI_OP_SET_CONN_ENCRYPT);
1204 if (!cp)
1205 return;
1206
1207 hci_dev_lock(hdev);
1208
1209 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1210 if (conn) {
1211 if (conn->state == BT_CONFIG) {
1212 hci_proto_connect_cfm(conn, status);
David Herrmann76a68ba2013-04-06 20:28:37 +02001213 hci_conn_drop(conn);
Marcel Holtmannf8558552008-07-14 20:13:49 +02001214 }
1215 }
1216
1217 hci_dev_unlock(hdev);
1218}
1219
Johan Hedberg127178d2010-11-18 22:22:29 +02001220static int hci_outgoing_auth_needed(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001221 struct hci_conn *conn)
Johan Hedberg392599b2010-11-18 22:22:28 +02001222{
Johan Hedberg392599b2010-11-18 22:22:28 +02001223 if (conn->state != BT_CONFIG || !conn->out)
1224 return 0;
1225
Johan Hedberg765c2a92011-01-19 12:06:52 +05301226 if (conn->pending_sec_level == BT_SECURITY_SDP)
Johan Hedberg392599b2010-11-18 22:22:28 +02001227 return 0;
1228
1229 /* Only request authentication for SSP connections or non-SSP
Johan Hedberg264b8b42014-01-08 16:40:39 +02001230 * devices with sec_level MEDIUM or HIGH or if MITM protection
1231 * is requested.
1232 */
Gustavo Padovan807deac2012-05-17 00:36:24 -03001233 if (!hci_conn_ssp_enabled(conn) && !(conn->auth_type & 0x01) &&
Johan Hedberg264b8b42014-01-08 16:40:39 +02001234 conn->pending_sec_level != BT_SECURITY_HIGH &&
1235 conn->pending_sec_level != BT_SECURITY_MEDIUM)
Johan Hedberg392599b2010-11-18 22:22:28 +02001236 return 0;
1237
Johan Hedberg392599b2010-11-18 22:22:28 +02001238 return 1;
1239}
1240
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001241static int hci_resolve_name(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001242 struct inquiry_entry *e)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001243{
1244 struct hci_cp_remote_name_req cp;
1245
1246 memset(&cp, 0, sizeof(cp));
1247
1248 bacpy(&cp.bdaddr, &e->data.bdaddr);
1249 cp.pscan_rep_mode = e->data.pscan_rep_mode;
1250 cp.pscan_mode = e->data.pscan_mode;
1251 cp.clock_offset = e->data.clock_offset;
1252
1253 return hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
1254}
1255
Johan Hedbergb644ba32012-01-17 21:48:47 +02001256static bool hci_resolve_next_name(struct hci_dev *hdev)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001257{
1258 struct discovery_state *discov = &hdev->discovery;
1259 struct inquiry_entry *e;
1260
Johan Hedbergb644ba32012-01-17 21:48:47 +02001261 if (list_empty(&discov->resolve))
1262 return false;
1263
1264 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
Ram Malovanyc8100892012-07-19 10:26:09 +03001265 if (!e)
1266 return false;
1267
Johan Hedbergb644ba32012-01-17 21:48:47 +02001268 if (hci_resolve_name(hdev, e) == 0) {
1269 e->name_state = NAME_PENDING;
1270 return true;
1271 }
1272
1273 return false;
1274}
1275
1276static void hci_check_pending_name(struct hci_dev *hdev, struct hci_conn *conn,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001277 bdaddr_t *bdaddr, u8 *name, u8 name_len)
Johan Hedbergb644ba32012-01-17 21:48:47 +02001278{
1279 struct discovery_state *discov = &hdev->discovery;
1280 struct inquiry_entry *e;
1281
1282 if (conn && !test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001283 mgmt_device_connected(hdev, bdaddr, ACL_LINK, 0x00, 0, name,
1284 name_len, conn->dev_class);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001285
1286 if (discov->state == DISCOVERY_STOPPED)
1287 return;
1288
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001289 if (discov->state == DISCOVERY_STOPPING)
1290 goto discov_complete;
1291
1292 if (discov->state != DISCOVERY_RESOLVING)
1293 return;
1294
1295 e = hci_inquiry_cache_lookup_resolve(hdev, bdaddr, NAME_PENDING);
Ram Malovany7cc83802012-07-19 10:26:10 +03001296 /* If the device was not found in a list of found devices names of which
1297 * are pending. there is no need to continue resolving a next name as it
1298 * will be done upon receiving another Remote Name Request Complete
1299 * Event */
1300 if (!e)
1301 return;
1302
1303 list_del(&e->list);
1304 if (name) {
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001305 e->name_state = NAME_KNOWN;
Ram Malovany7cc83802012-07-19 10:26:10 +03001306 mgmt_remote_name(hdev, bdaddr, ACL_LINK, 0x00,
1307 e->data.rssi, name, name_len);
Ram Malovanyc3e7c0d2012-07-19 10:26:11 +03001308 } else {
1309 e->name_state = NAME_NOT_KNOWN;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001310 }
1311
Johan Hedbergb644ba32012-01-17 21:48:47 +02001312 if (hci_resolve_next_name(hdev))
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001313 return;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001314
1315discov_complete:
1316 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1317}
1318
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001319static void hci_cs_remote_name_req(struct hci_dev *hdev, __u8 status)
1320{
Johan Hedberg127178d2010-11-18 22:22:29 +02001321 struct hci_cp_remote_name_req *cp;
1322 struct hci_conn *conn;
1323
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001324 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedberg127178d2010-11-18 22:22:29 +02001325
1326 /* If successful wait for the name req complete event before
1327 * checking for the need to do authentication */
1328 if (!status)
1329 return;
1330
1331 cp = hci_sent_cmd_data(hdev, HCI_OP_REMOTE_NAME_REQ);
1332 if (!cp)
1333 return;
1334
1335 hci_dev_lock(hdev);
1336
1337 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001338
1339 if (test_bit(HCI_MGMT, &hdev->dev_flags))
1340 hci_check_pending_name(hdev, conn, &cp->bdaddr, NULL, 0);
1341
Johan Hedberg79c6c702011-04-28 11:28:55 -07001342 if (!conn)
1343 goto unlock;
1344
1345 if (!hci_outgoing_auth_needed(hdev, conn))
1346 goto unlock;
1347
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001348 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johannes Bergc1f23a22013-10-07 18:19:16 +02001349 struct hci_cp_auth_requested auth_cp;
1350
1351 auth_cp.handle = __cpu_to_le16(conn->handle);
1352 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED,
1353 sizeof(auth_cp), &auth_cp);
Johan Hedberg127178d2010-11-18 22:22:29 +02001354 }
1355
Johan Hedberg79c6c702011-04-28 11:28:55 -07001356unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02001357 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001358}
1359
Marcel Holtmann769be972008-07-14 20:13:49 +02001360static void hci_cs_read_remote_features(struct hci_dev *hdev, __u8 status)
1361{
1362 struct hci_cp_read_remote_features *cp;
1363 struct hci_conn *conn;
1364
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001365 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmann769be972008-07-14 20:13:49 +02001366
1367 if (!status)
1368 return;
1369
1370 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_FEATURES);
1371 if (!cp)
1372 return;
1373
1374 hci_dev_lock(hdev);
1375
1376 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1377 if (conn) {
1378 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001379 hci_proto_connect_cfm(conn, status);
David Herrmann76a68ba2013-04-06 20:28:37 +02001380 hci_conn_drop(conn);
Marcel Holtmann769be972008-07-14 20:13:49 +02001381 }
1382 }
1383
1384 hci_dev_unlock(hdev);
1385}
1386
1387static void hci_cs_read_remote_ext_features(struct hci_dev *hdev, __u8 status)
1388{
1389 struct hci_cp_read_remote_ext_features *cp;
1390 struct hci_conn *conn;
1391
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001392 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmann769be972008-07-14 20:13:49 +02001393
1394 if (!status)
1395 return;
1396
1397 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES);
1398 if (!cp)
1399 return;
1400
1401 hci_dev_lock(hdev);
1402
1403 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1404 if (conn) {
1405 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001406 hci_proto_connect_cfm(conn, status);
David Herrmann76a68ba2013-04-06 20:28:37 +02001407 hci_conn_drop(conn);
Marcel Holtmann769be972008-07-14 20:13:49 +02001408 }
1409 }
1410
1411 hci_dev_unlock(hdev);
1412}
1413
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001414static void hci_cs_setup_sync_conn(struct hci_dev *hdev, __u8 status)
1415{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001416 struct hci_cp_setup_sync_conn *cp;
1417 struct hci_conn *acl, *sco;
1418 __u16 handle;
1419
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001420 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001421
1422 if (!status)
1423 return;
1424
1425 cp = hci_sent_cmd_data(hdev, HCI_OP_SETUP_SYNC_CONN);
1426 if (!cp)
1427 return;
1428
1429 handle = __le16_to_cpu(cp->handle);
1430
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001431 BT_DBG("%s handle 0x%4.4x", hdev->name, handle);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001432
1433 hci_dev_lock(hdev);
1434
1435 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001436 if (acl) {
1437 sco = acl->link;
1438 if (sco) {
1439 sco->state = BT_CLOSED;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001440
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001441 hci_proto_connect_cfm(sco, status);
1442 hci_conn_del(sco);
1443 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001444 }
1445
1446 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001447}
1448
1449static void hci_cs_sniff_mode(struct hci_dev *hdev, __u8 status)
1450{
1451 struct hci_cp_sniff_mode *cp;
1452 struct hci_conn *conn;
1453
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001454 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001455
1456 if (!status)
1457 return;
1458
1459 cp = hci_sent_cmd_data(hdev, HCI_OP_SNIFF_MODE);
1460 if (!cp)
1461 return;
1462
1463 hci_dev_lock(hdev);
1464
1465 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001466 if (conn) {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001467 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001468
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001469 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001470 hci_sco_setup(conn, status);
1471 }
1472
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001473 hci_dev_unlock(hdev);
1474}
1475
1476static void hci_cs_exit_sniff_mode(struct hci_dev *hdev, __u8 status)
1477{
1478 struct hci_cp_exit_sniff_mode *cp;
1479 struct hci_conn *conn;
1480
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001481 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001482
1483 if (!status)
1484 return;
1485
1486 cp = hci_sent_cmd_data(hdev, HCI_OP_EXIT_SNIFF_MODE);
1487 if (!cp)
1488 return;
1489
1490 hci_dev_lock(hdev);
1491
1492 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001493 if (conn) {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001494 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001495
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001496 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001497 hci_sco_setup(conn, status);
1498 }
1499
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001500 hci_dev_unlock(hdev);
1501}
1502
Johan Hedberg88c3df12012-02-09 14:27:38 +02001503static void hci_cs_disconnect(struct hci_dev *hdev, u8 status)
1504{
1505 struct hci_cp_disconnect *cp;
1506 struct hci_conn *conn;
1507
1508 if (!status)
1509 return;
1510
1511 cp = hci_sent_cmd_data(hdev, HCI_OP_DISCONNECT);
1512 if (!cp)
1513 return;
1514
1515 hci_dev_lock(hdev);
1516
1517 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1518 if (conn)
1519 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001520 conn->dst_type, status);
Johan Hedberg88c3df12012-02-09 14:27:38 +02001521
1522 hci_dev_unlock(hdev);
1523}
1524
Andrei Emeltchenkoa02226d2012-09-27 17:26:19 +03001525static void hci_cs_create_phylink(struct hci_dev *hdev, u8 status)
1526{
Andrei Emeltchenko93c284e2012-09-27 17:26:20 +03001527 struct hci_cp_create_phy_link *cp;
1528
Andrei Emeltchenkoa02226d2012-09-27 17:26:19 +03001529 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andrei Emeltchenko93c284e2012-09-27 17:26:20 +03001530
Andrei Emeltchenko93c284e2012-09-27 17:26:20 +03001531 cp = hci_sent_cmd_data(hdev, HCI_OP_CREATE_PHY_LINK);
1532 if (!cp)
1533 return;
1534
Andrei Emeltchenkoe58917b2012-10-31 15:46:33 +02001535 hci_dev_lock(hdev);
1536
1537 if (status) {
1538 struct hci_conn *hcon;
1539
1540 hcon = hci_conn_hash_lookup_handle(hdev, cp->phy_handle);
1541 if (hcon)
1542 hci_conn_del(hcon);
1543 } else {
1544 amp_write_remote_assoc(hdev, cp->phy_handle);
1545 }
1546
1547 hci_dev_unlock(hdev);
Andrei Emeltchenkoa02226d2012-09-27 17:26:19 +03001548}
1549
Andrei Emeltchenko0b26ab92012-09-27 17:26:24 +03001550static void hci_cs_accept_phylink(struct hci_dev *hdev, u8 status)
1551{
1552 struct hci_cp_accept_phy_link *cp;
1553
1554 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1555
1556 if (status)
1557 return;
1558
1559 cp = hci_sent_cmd_data(hdev, HCI_OP_ACCEPT_PHY_LINK);
1560 if (!cp)
1561 return;
1562
1563 amp_write_remote_assoc(hdev, cp->phy_handle);
1564}
1565
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001566static void hci_inquiry_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001567{
1568 __u8 status = *((__u8 *) skb->data);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001569 struct discovery_state *discov = &hdev->discovery;
1570 struct inquiry_entry *e;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001571
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001572 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001573
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001574 hci_conn_check_pending(hdev);
Andre Guedes89352e72011-11-04 14:16:53 -03001575
1576 if (!test_and_clear_bit(HCI_INQUIRY, &hdev->flags))
1577 return;
1578
Andre Guedes3e13fa12013-03-27 20:04:56 -03001579 smp_mb__after_clear_bit(); /* wake_up_bit advises about this barrier */
1580 wake_up_bit(&hdev->flags, HCI_INQUIRY);
1581
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001582 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001583 return;
1584
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001585 hci_dev_lock(hdev);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001586
Andre Guedes343f9352012-02-17 20:39:37 -03001587 if (discov->state != DISCOVERY_FINDING)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001588 goto unlock;
1589
1590 if (list_empty(&discov->resolve)) {
1591 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1592 goto unlock;
1593 }
1594
1595 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
1596 if (e && hci_resolve_name(hdev, e) == 0) {
1597 e->name_state = NAME_PENDING;
1598 hci_discovery_set_state(hdev, DISCOVERY_RESOLVING);
1599 } else {
1600 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1601 }
1602
1603unlock:
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001604 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001605}
1606
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001607static void hci_inquiry_result_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608{
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001609 struct inquiry_data data;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001610 struct inquiry_info *info = (void *) (skb->data + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 int num_rsp = *((__u8 *) skb->data);
1612
1613 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
1614
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001615 if (!num_rsp)
1616 return;
1617
Andre Guedes1519cc12012-03-21 00:03:38 -03001618 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
1619 return;
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001622
Johan Hedberge17acd42011-03-30 23:57:16 +03001623 for (; num_rsp; num_rsp--, info++) {
Johan Hedberg388fc8f2012-02-23 00:38:59 +02001624 bool name_known, ssp;
Johan Hedberg31754052012-01-04 13:39:52 +02001625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 bacpy(&data.bdaddr, &info->bdaddr);
1627 data.pscan_rep_mode = info->pscan_rep_mode;
1628 data.pscan_period_mode = info->pscan_period_mode;
1629 data.pscan_mode = info->pscan_mode;
1630 memcpy(data.dev_class, info->dev_class, 3);
1631 data.clock_offset = info->clock_offset;
1632 data.rssi = 0x00;
Marcel Holtmann41a96212008-07-14 20:13:48 +02001633 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02001634
Johan Hedberg388fc8f2012-02-23 00:38:59 +02001635 name_known = hci_inquiry_cache_update(hdev, &data, false, &ssp);
Johan Hedberg48264f02011-11-09 13:58:58 +02001636 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001637 info->dev_class, 0, !name_known, ssp, NULL,
1638 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 hci_dev_unlock(hdev);
1642}
1643
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001644static void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001646 struct hci_ev_conn_complete *ev = (void *) skb->data;
1647 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001649 BT_DBG("%s", hdev->name);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001650
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001652
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001653 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann94992372009-04-19 19:30:03 +02001654 if (!conn) {
1655 if (ev->link_type != SCO_LINK)
1656 goto unlock;
1657
1658 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
1659 if (!conn)
1660 goto unlock;
1661
1662 conn->type = SCO_LINK;
1663 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001664
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001665 if (!ev->status) {
1666 conn->handle = __le16_to_cpu(ev->handle);
Marcel Holtmann769be972008-07-14 20:13:49 +02001667
1668 if (conn->type == ACL_LINK) {
1669 conn->state = BT_CONFIG;
1670 hci_conn_hold(conn);
Szymon Janca9ea3ed2012-07-19 14:46:08 +02001671
1672 if (!conn->out && !hci_conn_ssp_enabled(conn) &&
1673 !hci_find_link_key(hdev, &ev->bdaddr))
1674 conn->disc_timeout = HCI_PAIRING_TIMEOUT;
1675 else
1676 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Marcel Holtmann769be972008-07-14 20:13:49 +02001677 } else
1678 conn->state = BT_CONNECTED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001679
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02001680 hci_conn_add_sysfs(conn);
1681
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001682 if (test_bit(HCI_AUTH, &hdev->flags))
1683 conn->link_mode |= HCI_LM_AUTH;
1684
1685 if (test_bit(HCI_ENCRYPT, &hdev->flags))
1686 conn->link_mode |= HCI_LM_ENCRYPT;
1687
1688 /* Get remote features */
1689 if (conn->type == ACL_LINK) {
1690 struct hci_cp_read_remote_features cp;
1691 cp.handle = ev->handle;
Marcel Holtmann769be972008-07-14 20:13:49 +02001692 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_FEATURES,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001693 sizeof(cp), &cp);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001694 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001695
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001696 /* Set packet type for incoming connection */
Andrei Emeltchenkod095c1e2011-12-01 14:33:27 +02001697 if (!conn->out && hdev->hci_ver < BLUETOOTH_VER_2_0) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001698 struct hci_cp_change_conn_ptype cp;
1699 cp.handle = ev->handle;
Marcel Holtmanna8746412008-07-14 20:13:46 +02001700 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001701 hci_send_cmd(hdev, HCI_OP_CHANGE_CONN_PTYPE, sizeof(cp),
1702 &cp);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001703 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02001704 } else {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001705 conn->state = BT_CLOSED;
Johan Hedberg17d5c042011-01-22 06:09:08 +02001706 if (conn->type == ACL_LINK)
Johan Hedberg744cf192011-11-08 20:40:14 +02001707 mgmt_connect_failed(hdev, &ev->bdaddr, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001708 conn->dst_type, ev->status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02001709 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001710
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001711 if (conn->type == ACL_LINK)
1712 hci_sco_setup(conn, ev->status);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001713
Marcel Holtmann769be972008-07-14 20:13:49 +02001714 if (ev->status) {
1715 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001716 hci_conn_del(conn);
Marcel Holtmannc89b6e62009-01-15 21:57:03 +01001717 } else if (ev->link_type != ACL_LINK)
1718 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001719
1720unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001722
1723 hci_conn_check_pending(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724}
1725
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001726static void hci_conn_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001728 struct hci_ev_conn_request *ev = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 int mask = hdev->link_mode;
Frédéric Dalleau20714bfe2012-11-21 10:51:12 +01001730 __u8 flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001732 BT_DBG("%s bdaddr %pMR type 0x%x", hdev->name, &ev->bdaddr,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001733 ev->link_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Frédéric Dalleau20714bfe2012-11-21 10:51:12 +01001735 mask |= hci_proto_connect_ind(hdev, &ev->bdaddr, ev->link_type,
1736 &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Szymon Janc138d22e2011-02-17 16:44:23 +01001738 if ((mask & HCI_LM_ACCEPT) &&
Marcel Holtmannb9ee0a72013-10-17 17:24:13 -07001739 !hci_blacklist_lookup(hdev, &ev->bdaddr, BDADDR_BREDR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 /* Connection accepted */
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02001741 struct inquiry_entry *ie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744 hci_dev_lock(hdev);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001745
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02001746 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
1747 if (ie)
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02001748 memcpy(ie->data.dev_class, ev->dev_class, 3);
1749
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03001750 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type,
1751 &ev->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 if (!conn) {
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02001753 conn = hci_conn_add(hdev, ev->link_type, &ev->bdaddr);
1754 if (!conn) {
Gustavo F. Padovan893ef972010-07-18 15:13:37 -03001755 BT_ERR("No memory for new connection");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 hci_dev_unlock(hdev);
1757 return;
1758 }
1759 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001760
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 memcpy(conn->dev_class, ev->dev_class, 3);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 hci_dev_unlock(hdev);
1764
Frédéric Dalleau20714bfe2012-11-21 10:51:12 +01001765 if (ev->link_type == ACL_LINK ||
1766 (!(flags & HCI_PROTO_DEFER) && !lmp_esco_capable(hdev))) {
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001767 struct hci_cp_accept_conn_req cp;
Frédéric Dalleau20714bfe2012-11-21 10:51:12 +01001768 conn->state = BT_CONNECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001770 bacpy(&cp.bdaddr, &ev->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001772 if (lmp_rswitch_capable(hdev) && (mask & HCI_LM_MASTER))
1773 cp.role = 0x00; /* Become master */
1774 else
1775 cp.role = 0x01; /* Remain slave */
1776
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001777 hci_send_cmd(hdev, HCI_OP_ACCEPT_CONN_REQ, sizeof(cp),
1778 &cp);
Frédéric Dalleau20714bfe2012-11-21 10:51:12 +01001779 } else if (!(flags & HCI_PROTO_DEFER)) {
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001780 struct hci_cp_accept_sync_conn_req cp;
Frédéric Dalleau20714bfe2012-11-21 10:51:12 +01001781 conn->state = BT_CONNECT;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001782
1783 bacpy(&cp.bdaddr, &ev->bdaddr);
Marcel Holtmanna8746412008-07-14 20:13:46 +02001784 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001785
Andrei Emeltchenko82781e62012-05-25 11:38:27 +03001786 cp.tx_bandwidth = __constant_cpu_to_le32(0x00001f40);
1787 cp.rx_bandwidth = __constant_cpu_to_le32(0x00001f40);
1788 cp.max_latency = __constant_cpu_to_le16(0xffff);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001789 cp.content_format = cpu_to_le16(hdev->voice_setting);
1790 cp.retrans_effort = 0xff;
1791
1792 hci_send_cmd(hdev, HCI_OP_ACCEPT_SYNC_CONN_REQ,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001793 sizeof(cp), &cp);
Frédéric Dalleau20714bfe2012-11-21 10:51:12 +01001794 } else {
1795 conn->state = BT_CONNECT2;
1796 hci_proto_connect_cfm(conn, 0);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 } else {
1799 /* Connection rejected */
1800 struct hci_cp_reject_conn_req cp;
1801
1802 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +02001803 cp.reason = HCI_ERROR_REJ_BAD_ADDR;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001804 hci_send_cmd(hdev, HCI_OP_REJECT_CONN_REQ, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 }
1806}
1807
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02001808static u8 hci_to_mgmt_reason(u8 err)
1809{
1810 switch (err) {
1811 case HCI_ERROR_CONNECTION_TIMEOUT:
1812 return MGMT_DEV_DISCONN_TIMEOUT;
1813 case HCI_ERROR_REMOTE_USER_TERM:
1814 case HCI_ERROR_REMOTE_LOW_RESOURCES:
1815 case HCI_ERROR_REMOTE_POWER_OFF:
1816 return MGMT_DEV_DISCONN_REMOTE;
1817 case HCI_ERROR_LOCAL_HOST_TERM:
1818 return MGMT_DEV_DISCONN_LOCAL_HOST;
1819 default:
1820 return MGMT_DEV_DISCONN_UNKNOWN;
1821 }
1822}
1823
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001824static void hci_disconn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001826 struct hci_ev_disconn_complete *ev = (void *) skb->data;
Andre Guedesabf54a52013-11-07 17:36:09 -03001827 u8 reason = hci_to_mgmt_reason(ev->reason);
Marcel Holtmann04837f62006-07-03 10:02:33 +02001828 struct hci_conn *conn;
Andre Guedes38462202013-11-07 17:36:10 -03001829 u8 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001831 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 hci_dev_lock(hdev);
1834
Marcel Holtmann04837f62006-07-03 10:02:33 +02001835 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergf7520542011-01-20 12:34:39 +02001836 if (!conn)
1837 goto unlock;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02001838
Andre Guedesabf54a52013-11-07 17:36:09 -03001839 if (ev->status) {
1840 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
1841 conn->dst_type, ev->status);
1842 goto unlock;
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001843 }
Johan Hedbergf7520542011-01-20 12:34:39 +02001844
Andre Guedes38462202013-11-07 17:36:10 -03001845 conn->state = BT_CLOSED;
1846
Andre Guedesabf54a52013-11-07 17:36:09 -03001847 if (test_and_clear_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
1848 mgmt_device_disconnected(hdev, &conn->dst, conn->type,
1849 conn->dst_type, reason);
1850
Andre Guedes38462202013-11-07 17:36:10 -03001851 if (conn->type == ACL_LINK && conn->flush_key)
1852 hci_remove_link_key(hdev, &conn->dst);
Johan Hedberg22102462013-10-05 12:01:06 +02001853
Andre Guedes38462202013-11-07 17:36:10 -03001854 type = conn->type;
Johan Hedberg22102462013-10-05 12:01:06 +02001855
Andre Guedes38462202013-11-07 17:36:10 -03001856 hci_proto_disconn_cfm(conn, ev->reason);
1857 hci_conn_del(conn);
1858
1859 /* Re-enable advertising if necessary, since it might
1860 * have been disabled by the connection. From the
1861 * HCI_LE_Set_Advertise_Enable command description in
1862 * the core specification (v4.0):
1863 * "The Controller shall continue advertising until the Host
1864 * issues an LE_Set_Advertise_Enable command with
1865 * Advertising_Enable set to 0x00 (Advertising is disabled)
1866 * or until a connection is created or until the Advertising
1867 * is timed out due to Directed Advertising."
1868 */
1869 if (type == LE_LINK)
1870 mgmt_reenable_advertising(hdev);
Johan Hedbergf7520542011-01-20 12:34:39 +02001871
1872unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 hci_dev_unlock(hdev);
1874}
1875
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001876static void hci_auth_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001877{
1878 struct hci_ev_auth_complete *ev = (void *) skb->data;
1879 struct hci_conn *conn;
1880
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001881 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001882
1883 hci_dev_lock(hdev);
1884
1885 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001886 if (!conn)
1887 goto unlock;
1888
1889 if (!ev->status) {
Johan Hedbergaa64a8b2012-01-18 21:33:12 +02001890 if (!hci_conn_ssp_enabled(conn) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03001891 test_bit(HCI_CONN_REAUTH_PEND, &conn->flags)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001892 BT_INFO("re-auth of legacy device is not possible.");
Johan Hedberg2a611692011-02-19 12:06:00 -03001893 } else {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001894 conn->link_mode |= HCI_LM_AUTH;
1895 conn->sec_level = conn->pending_sec_level;
Johan Hedberg2a611692011-02-19 12:06:00 -03001896 }
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001897 } else {
Johan Hedbergbab73cb2012-02-09 16:07:29 +02001898 mgmt_auth_failed(hdev, &conn->dst, conn->type, conn->dst_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001899 ev->status);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001900 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001901
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001902 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
1903 clear_bit(HCI_CONN_REAUTH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001904
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001905 if (conn->state == BT_CONFIG) {
Johan Hedbergaa64a8b2012-01-18 21:33:12 +02001906 if (!ev->status && hci_conn_ssp_enabled(conn)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001907 struct hci_cp_set_conn_encrypt cp;
1908 cp.handle = ev->handle;
1909 cp.encrypt = 0x01;
1910 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03001911 &cp);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001912 } else {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001913 conn->state = BT_CONNECTED;
1914 hci_proto_connect_cfm(conn, ev->status);
David Herrmann76a68ba2013-04-06 20:28:37 +02001915 hci_conn_drop(conn);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001916 }
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001917 } else {
1918 hci_auth_cfm(conn, ev->status);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001919
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001920 hci_conn_hold(conn);
1921 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
David Herrmann76a68ba2013-04-06 20:28:37 +02001922 hci_conn_drop(conn);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001923 }
1924
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001925 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001926 if (!ev->status) {
1927 struct hci_cp_set_conn_encrypt cp;
1928 cp.handle = ev->handle;
1929 cp.encrypt = 0x01;
1930 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03001931 &cp);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001932 } else {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001933 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001934 hci_encrypt_cfm(conn, ev->status, 0x00);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001935 }
1936 }
1937
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001938unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001939 hci_dev_unlock(hdev);
1940}
1941
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001942static void hci_remote_name_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001943{
Johan Hedberg127178d2010-11-18 22:22:29 +02001944 struct hci_ev_remote_name *ev = (void *) skb->data;
1945 struct hci_conn *conn;
1946
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001947 BT_DBG("%s", hdev->name);
1948
1949 hci_conn_check_pending(hdev);
Johan Hedberg127178d2010-11-18 22:22:29 +02001950
1951 hci_dev_lock(hdev);
1952
1953 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001954
1955 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
1956 goto check_auth;
1957
1958 if (ev->status == 0)
1959 hci_check_pending_name(hdev, conn, &ev->bdaddr, ev->name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001960 strnlen(ev->name, HCI_MAX_NAME_LENGTH));
Johan Hedbergb644ba32012-01-17 21:48:47 +02001961 else
1962 hci_check_pending_name(hdev, conn, &ev->bdaddr, NULL, 0);
1963
1964check_auth:
Johan Hedberg79c6c702011-04-28 11:28:55 -07001965 if (!conn)
1966 goto unlock;
1967
1968 if (!hci_outgoing_auth_needed(hdev, conn))
1969 goto unlock;
1970
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001971 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02001972 struct hci_cp_auth_requested cp;
1973 cp.handle = __cpu_to_le16(conn->handle);
1974 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
1975 }
1976
Johan Hedberg79c6c702011-04-28 11:28:55 -07001977unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02001978 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001979}
1980
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001981static void hci_encrypt_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001982{
1983 struct hci_ev_encrypt_change *ev = (void *) skb->data;
1984 struct hci_conn *conn;
1985
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001986 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001987
1988 hci_dev_lock(hdev);
1989
1990 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Marcel Holtmanndc8357c2014-01-31 16:24:27 -08001991 if (!conn)
1992 goto unlock;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001993
Marcel Holtmanndc8357c2014-01-31 16:24:27 -08001994 if (!ev->status) {
1995 if (ev->encrypt) {
1996 /* Encryption implies authentication */
1997 conn->link_mode |= HCI_LM_AUTH;
1998 conn->link_mode |= HCI_LM_ENCRYPT;
1999 conn->sec_level = conn->pending_sec_level;
Marcel Holtmannabf76ba2014-01-31 16:24:28 -08002000
Marcel Holtmann914a6ff2014-02-01 11:52:02 -08002001 /* P-256 authentication key implies FIPS */
2002 if (conn->key_type == HCI_LK_AUTH_COMBINATION_P256)
2003 conn->link_mode |= HCI_LM_FIPS;
2004
Marcel Holtmannabf76ba2014-01-31 16:24:28 -08002005 if ((conn->type == ACL_LINK && ev->encrypt == 0x02) ||
2006 conn->type == LE_LINK)
2007 set_bit(HCI_CONN_AES_CCM, &conn->flags);
2008 } else {
Marcel Holtmanndc8357c2014-01-31 16:24:27 -08002009 conn->link_mode &= ~HCI_LM_ENCRYPT;
Marcel Holtmannabf76ba2014-01-31 16:24:28 -08002010 clear_bit(HCI_CONN_AES_CCM, &conn->flags);
2011 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002012 }
2013
Marcel Holtmanndc8357c2014-01-31 16:24:27 -08002014 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
2015
2016 if (ev->status && conn->state == BT_CONNECTED) {
2017 hci_disconnect(conn, HCI_ERROR_AUTH_FAILURE);
2018 hci_conn_drop(conn);
2019 goto unlock;
2020 }
2021
2022 if (conn->state == BT_CONFIG) {
2023 if (!ev->status)
2024 conn->state = BT_CONNECTED;
2025
2026 hci_proto_connect_cfm(conn, ev->status);
2027 hci_conn_drop(conn);
2028 } else
2029 hci_encrypt_cfm(conn, ev->status, ev->encrypt);
2030
Gustavo Padovana7d77232012-05-13 03:20:07 -03002031unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002032 hci_dev_unlock(hdev);
2033}
2034
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002035static void hci_change_link_key_complete_evt(struct hci_dev *hdev,
2036 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002037{
2038 struct hci_ev_change_link_key_complete *ev = (void *) skb->data;
2039 struct hci_conn *conn;
2040
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002041 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002042
2043 hci_dev_lock(hdev);
2044
2045 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2046 if (conn) {
2047 if (!ev->status)
2048 conn->link_mode |= HCI_LM_SECURE;
2049
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002050 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002051
2052 hci_key_change_cfm(conn, ev->status);
2053 }
2054
2055 hci_dev_unlock(hdev);
2056}
2057
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002058static void hci_remote_features_evt(struct hci_dev *hdev,
2059 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002060{
2061 struct hci_ev_remote_features *ev = (void *) skb->data;
2062 struct hci_conn *conn;
2063
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002064 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002065
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002066 hci_dev_lock(hdev);
2067
2068 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02002069 if (!conn)
2070 goto unlock;
Marcel Holtmann769be972008-07-14 20:13:49 +02002071
Johan Hedbergccd556f2010-11-10 17:11:51 +02002072 if (!ev->status)
Johan Hedbergcad718e2013-04-17 15:00:51 +03002073 memcpy(conn->features[0], ev->features, 8);
Johan Hedbergccd556f2010-11-10 17:11:51 +02002074
2075 if (conn->state != BT_CONFIG)
2076 goto unlock;
2077
2078 if (!ev->status && lmp_ssp_capable(hdev) && lmp_ssp_capable(conn)) {
2079 struct hci_cp_read_remote_ext_features cp;
2080 cp.handle = ev->handle;
2081 cp.page = 0x01;
2082 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002083 sizeof(cp), &cp);
Johan Hedberg392599b2010-11-18 22:22:28 +02002084 goto unlock;
2085 }
2086
Johan Hedberg671267b2012-05-12 16:11:50 -03002087 if (!ev->status && !test_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02002088 struct hci_cp_remote_name_req cp;
2089 memset(&cp, 0, sizeof(cp));
2090 bacpy(&cp.bdaddr, &conn->dst);
2091 cp.pscan_rep_mode = 0x02;
2092 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002093 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
2094 mgmt_device_connected(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002095 conn->dst_type, 0, NULL, 0,
2096 conn->dev_class);
Johan Hedberg392599b2010-11-18 22:22:28 +02002097
Johan Hedberg127178d2010-11-18 22:22:29 +02002098 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02002099 conn->state = BT_CONNECTED;
2100 hci_proto_connect_cfm(conn, ev->status);
David Herrmann76a68ba2013-04-06 20:28:37 +02002101 hci_conn_drop(conn);
Marcel Holtmann769be972008-07-14 20:13:49 +02002102 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002103
Johan Hedbergccd556f2010-11-10 17:11:51 +02002104unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002105 hci_dev_unlock(hdev);
2106}
2107
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002108static void hci_cmd_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002109{
2110 struct hci_ev_cmd_complete *ev = (void *) skb->data;
Johan Hedberg9238f362013-03-05 20:37:48 +02002111 u8 status = skb->data[sizeof(*ev)];
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002112 __u16 opcode;
2113
2114 skb_pull(skb, sizeof(*ev));
2115
2116 opcode = __le16_to_cpu(ev->opcode);
2117
2118 switch (opcode) {
2119 case HCI_OP_INQUIRY_CANCEL:
2120 hci_cc_inquiry_cancel(hdev, skb);
2121 break;
2122
Andre Guedes4d934832012-03-21 00:03:35 -03002123 case HCI_OP_PERIODIC_INQ:
2124 hci_cc_periodic_inq(hdev, skb);
2125 break;
2126
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002127 case HCI_OP_EXIT_PERIODIC_INQ:
2128 hci_cc_exit_periodic_inq(hdev, skb);
2129 break;
2130
2131 case HCI_OP_REMOTE_NAME_REQ_CANCEL:
2132 hci_cc_remote_name_req_cancel(hdev, skb);
2133 break;
2134
2135 case HCI_OP_ROLE_DISCOVERY:
2136 hci_cc_role_discovery(hdev, skb);
2137 break;
2138
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002139 case HCI_OP_READ_LINK_POLICY:
2140 hci_cc_read_link_policy(hdev, skb);
2141 break;
2142
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002143 case HCI_OP_WRITE_LINK_POLICY:
2144 hci_cc_write_link_policy(hdev, skb);
2145 break;
2146
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002147 case HCI_OP_READ_DEF_LINK_POLICY:
2148 hci_cc_read_def_link_policy(hdev, skb);
2149 break;
2150
2151 case HCI_OP_WRITE_DEF_LINK_POLICY:
2152 hci_cc_write_def_link_policy(hdev, skb);
2153 break;
2154
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002155 case HCI_OP_RESET:
2156 hci_cc_reset(hdev, skb);
2157 break;
2158
2159 case HCI_OP_WRITE_LOCAL_NAME:
2160 hci_cc_write_local_name(hdev, skb);
2161 break;
2162
2163 case HCI_OP_READ_LOCAL_NAME:
2164 hci_cc_read_local_name(hdev, skb);
2165 break;
2166
2167 case HCI_OP_WRITE_AUTH_ENABLE:
2168 hci_cc_write_auth_enable(hdev, skb);
2169 break;
2170
2171 case HCI_OP_WRITE_ENCRYPT_MODE:
2172 hci_cc_write_encrypt_mode(hdev, skb);
2173 break;
2174
2175 case HCI_OP_WRITE_SCAN_ENABLE:
2176 hci_cc_write_scan_enable(hdev, skb);
2177 break;
2178
2179 case HCI_OP_READ_CLASS_OF_DEV:
2180 hci_cc_read_class_of_dev(hdev, skb);
2181 break;
2182
2183 case HCI_OP_WRITE_CLASS_OF_DEV:
2184 hci_cc_write_class_of_dev(hdev, skb);
2185 break;
2186
2187 case HCI_OP_READ_VOICE_SETTING:
2188 hci_cc_read_voice_setting(hdev, skb);
2189 break;
2190
2191 case HCI_OP_WRITE_VOICE_SETTING:
2192 hci_cc_write_voice_setting(hdev, skb);
2193 break;
2194
Marcel Holtmannb4cb9fb2013-10-14 13:56:16 -07002195 case HCI_OP_READ_NUM_SUPPORTED_IAC:
2196 hci_cc_read_num_supported_iac(hdev, skb);
2197 break;
2198
Marcel Holtmann333140b2008-07-14 20:13:48 +02002199 case HCI_OP_WRITE_SSP_MODE:
2200 hci_cc_write_ssp_mode(hdev, skb);
2201 break;
2202
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08002203 case HCI_OP_WRITE_SC_SUPPORT:
2204 hci_cc_write_sc_support(hdev, skb);
2205 break;
2206
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002207 case HCI_OP_READ_LOCAL_VERSION:
2208 hci_cc_read_local_version(hdev, skb);
2209 break;
2210
2211 case HCI_OP_READ_LOCAL_COMMANDS:
2212 hci_cc_read_local_commands(hdev, skb);
2213 break;
2214
2215 case HCI_OP_READ_LOCAL_FEATURES:
2216 hci_cc_read_local_features(hdev, skb);
2217 break;
2218
Andre Guedes971e3a42011-06-30 19:20:52 -03002219 case HCI_OP_READ_LOCAL_EXT_FEATURES:
2220 hci_cc_read_local_ext_features(hdev, skb);
2221 break;
2222
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002223 case HCI_OP_READ_BUFFER_SIZE:
2224 hci_cc_read_buffer_size(hdev, skb);
2225 break;
2226
2227 case HCI_OP_READ_BD_ADDR:
2228 hci_cc_read_bd_addr(hdev, skb);
2229 break;
2230
Johan Hedbergf332ec62013-03-15 17:07:11 -05002231 case HCI_OP_READ_PAGE_SCAN_ACTIVITY:
2232 hci_cc_read_page_scan_activity(hdev, skb);
2233 break;
2234
Johan Hedberg4a3ee762013-03-15 17:07:12 -05002235 case HCI_OP_WRITE_PAGE_SCAN_ACTIVITY:
2236 hci_cc_write_page_scan_activity(hdev, skb);
2237 break;
2238
Johan Hedbergf332ec62013-03-15 17:07:11 -05002239 case HCI_OP_READ_PAGE_SCAN_TYPE:
2240 hci_cc_read_page_scan_type(hdev, skb);
2241 break;
2242
Johan Hedberg4a3ee762013-03-15 17:07:12 -05002243 case HCI_OP_WRITE_PAGE_SCAN_TYPE:
2244 hci_cc_write_page_scan_type(hdev, skb);
2245 break;
2246
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +02002247 case HCI_OP_READ_DATA_BLOCK_SIZE:
2248 hci_cc_read_data_block_size(hdev, skb);
2249 break;
2250
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +02002251 case HCI_OP_READ_FLOW_CONTROL_MODE:
2252 hci_cc_read_flow_control_mode(hdev, skb);
2253 break;
2254
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +03002255 case HCI_OP_READ_LOCAL_AMP_INFO:
2256 hci_cc_read_local_amp_info(hdev, skb);
2257 break;
2258
Andrei Emeltchenko903e4542012-09-27 17:26:09 +03002259 case HCI_OP_READ_LOCAL_AMP_ASSOC:
2260 hci_cc_read_local_amp_assoc(hdev, skb);
2261 break;
2262
Johan Hedbergd5859e22011-01-25 01:19:58 +02002263 case HCI_OP_READ_INQ_RSP_TX_POWER:
2264 hci_cc_read_inq_rsp_tx_power(hdev, skb);
2265 break;
2266
Johan Hedberg980e1a52011-01-22 06:10:07 +02002267 case HCI_OP_PIN_CODE_REPLY:
2268 hci_cc_pin_code_reply(hdev, skb);
2269 break;
2270
2271 case HCI_OP_PIN_CODE_NEG_REPLY:
2272 hci_cc_pin_code_neg_reply(hdev, skb);
2273 break;
2274
Szymon Jancc35938b2011-03-22 13:12:21 +01002275 case HCI_OP_READ_LOCAL_OOB_DATA:
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08002276 hci_cc_read_local_oob_data(hdev, skb);
2277 break;
2278
2279 case HCI_OP_READ_LOCAL_OOB_EXT_DATA:
2280 hci_cc_read_local_oob_ext_data(hdev, skb);
Szymon Jancc35938b2011-03-22 13:12:21 +01002281 break;
2282
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002283 case HCI_OP_LE_READ_BUFFER_SIZE:
2284 hci_cc_le_read_buffer_size(hdev, skb);
2285 break;
2286
Johan Hedberg60e77322013-01-22 14:01:59 +02002287 case HCI_OP_LE_READ_LOCAL_FEATURES:
2288 hci_cc_le_read_local_features(hdev, skb);
2289 break;
2290
Johan Hedberg8fa19092012-10-19 20:57:49 +03002291 case HCI_OP_LE_READ_ADV_TX_POWER:
2292 hci_cc_le_read_adv_tx_power(hdev, skb);
2293 break;
2294
Johan Hedberga5c29682011-02-19 12:05:57 -03002295 case HCI_OP_USER_CONFIRM_REPLY:
2296 hci_cc_user_confirm_reply(hdev, skb);
2297 break;
2298
2299 case HCI_OP_USER_CONFIRM_NEG_REPLY:
2300 hci_cc_user_confirm_neg_reply(hdev, skb);
2301 break;
2302
Brian Gix1143d452011-11-23 08:28:34 -08002303 case HCI_OP_USER_PASSKEY_REPLY:
2304 hci_cc_user_passkey_reply(hdev, skb);
2305 break;
2306
2307 case HCI_OP_USER_PASSKEY_NEG_REPLY:
2308 hci_cc_user_passkey_neg_reply(hdev, skb);
Szymon Janc16cde992012-04-13 12:32:42 +02002309 break;
Andre Guedes07f7fa52011-12-02 21:13:31 +09002310
Johan Hedbergc1d5dc42012-11-08 01:23:01 +01002311 case HCI_OP_LE_SET_ADV_ENABLE:
2312 hci_cc_le_set_adv_enable(hdev, skb);
2313 break;
2314
Andre Guedeseb9d91f2011-05-26 16:23:52 -03002315 case HCI_OP_LE_SET_SCAN_ENABLE:
2316 hci_cc_le_set_scan_enable(hdev, skb);
2317 break;
2318
Johan Hedbergcf1d0812013-01-22 14:02:00 +02002319 case HCI_OP_LE_READ_WHITE_LIST_SIZE:
2320 hci_cc_le_read_white_list_size(hdev, skb);
2321 break;
2322
Johan Hedberg9b008c02013-01-22 14:02:01 +02002323 case HCI_OP_LE_READ_SUPPORTED_STATES:
2324 hci_cc_le_read_supported_states(hdev, skb);
2325 break;
2326
Andre Guedesf9b49302011-06-30 19:20:53 -03002327 case HCI_OP_WRITE_LE_HOST_SUPPORTED:
2328 hci_cc_write_le_host_supported(hdev, skb);
2329 break;
2330
Andrei Emeltchenko93c284e2012-09-27 17:26:20 +03002331 case HCI_OP_WRITE_REMOTE_AMP_ASSOC:
2332 hci_cc_write_remote_amp_assoc(hdev, skb);
2333 break;
2334
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002335 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002336 BT_DBG("%s opcode 0x%4.4x", hdev->name, opcode);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002337 break;
2338 }
2339
Johan Hedbergad82cdd2013-03-09 09:53:50 +02002340 if (opcode != HCI_OP_NOP)
Ville Tervo6bd32322011-02-16 16:32:41 +02002341 del_timer(&hdev->cmd_timer);
2342
Johan Hedbergad82cdd2013-03-09 09:53:50 +02002343 hci_req_cmd_complete(hdev, opcode, status);
Johan Hedberg9238f362013-03-05 20:37:48 +02002344
Szymon Jancdbccd792012-12-11 08:51:19 +01002345 if (ev->ncmd && !test_bit(HCI_RESET, &hdev->flags)) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002346 atomic_set(&hdev->cmd_cnt, 1);
2347 if (!skb_queue_empty(&hdev->cmd_q))
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002348 queue_work(hdev->workqueue, &hdev->cmd_work);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002349 }
2350}
2351
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002352static void hci_cmd_status_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002353{
2354 struct hci_ev_cmd_status *ev = (void *) skb->data;
2355 __u16 opcode;
2356
2357 skb_pull(skb, sizeof(*ev));
2358
2359 opcode = __le16_to_cpu(ev->opcode);
2360
2361 switch (opcode) {
2362 case HCI_OP_INQUIRY:
2363 hci_cs_inquiry(hdev, ev->status);
2364 break;
2365
2366 case HCI_OP_CREATE_CONN:
2367 hci_cs_create_conn(hdev, ev->status);
2368 break;
2369
2370 case HCI_OP_ADD_SCO:
2371 hci_cs_add_sco(hdev, ev->status);
2372 break;
2373
Marcel Holtmannf8558552008-07-14 20:13:49 +02002374 case HCI_OP_AUTH_REQUESTED:
2375 hci_cs_auth_requested(hdev, ev->status);
2376 break;
2377
2378 case HCI_OP_SET_CONN_ENCRYPT:
2379 hci_cs_set_conn_encrypt(hdev, ev->status);
2380 break;
2381
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002382 case HCI_OP_REMOTE_NAME_REQ:
2383 hci_cs_remote_name_req(hdev, ev->status);
2384 break;
2385
Marcel Holtmann769be972008-07-14 20:13:49 +02002386 case HCI_OP_READ_REMOTE_FEATURES:
2387 hci_cs_read_remote_features(hdev, ev->status);
2388 break;
2389
2390 case HCI_OP_READ_REMOTE_EXT_FEATURES:
2391 hci_cs_read_remote_ext_features(hdev, ev->status);
2392 break;
2393
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002394 case HCI_OP_SETUP_SYNC_CONN:
2395 hci_cs_setup_sync_conn(hdev, ev->status);
2396 break;
2397
2398 case HCI_OP_SNIFF_MODE:
2399 hci_cs_sniff_mode(hdev, ev->status);
2400 break;
2401
2402 case HCI_OP_EXIT_SNIFF_MODE:
2403 hci_cs_exit_sniff_mode(hdev, ev->status);
2404 break;
2405
Johan Hedberg8962ee72011-01-20 12:40:27 +02002406 case HCI_OP_DISCONNECT:
Johan Hedberg88c3df12012-02-09 14:27:38 +02002407 hci_cs_disconnect(hdev, ev->status);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002408 break;
2409
Andrei Emeltchenkoa02226d2012-09-27 17:26:19 +03002410 case HCI_OP_CREATE_PHY_LINK:
2411 hci_cs_create_phylink(hdev, ev->status);
2412 break;
2413
Andrei Emeltchenko0b26ab92012-09-27 17:26:24 +03002414 case HCI_OP_ACCEPT_PHY_LINK:
2415 hci_cs_accept_phylink(hdev, ev->status);
2416 break;
2417
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002418 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002419 BT_DBG("%s opcode 0x%4.4x", hdev->name, opcode);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002420 break;
2421 }
2422
Johan Hedbergad82cdd2013-03-09 09:53:50 +02002423 if (opcode != HCI_OP_NOP)
Ville Tervo6bd32322011-02-16 16:32:41 +02002424 del_timer(&hdev->cmd_timer);
2425
Johan Hedberg02350a72013-04-03 21:50:29 +03002426 if (ev->status ||
2427 (hdev->sent_cmd && !bt_cb(hdev->sent_cmd)->req.event))
2428 hci_req_cmd_complete(hdev, opcode, ev->status);
Johan Hedberg9238f362013-03-05 20:37:48 +02002429
Gustavo F. Padovan10572132011-03-16 15:36:29 -03002430 if (ev->ncmd && !test_bit(HCI_RESET, &hdev->flags)) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002431 atomic_set(&hdev->cmd_cnt, 1);
2432 if (!skb_queue_empty(&hdev->cmd_q))
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002433 queue_work(hdev->workqueue, &hdev->cmd_work);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002434 }
2435}
2436
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002437static void hci_role_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002438{
2439 struct hci_ev_role_change *ev = (void *) skb->data;
2440 struct hci_conn *conn;
2441
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002442 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002443
2444 hci_dev_lock(hdev);
2445
2446 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2447 if (conn) {
2448 if (!ev->status) {
2449 if (ev->role)
2450 conn->link_mode &= ~HCI_LM_MASTER;
2451 else
2452 conn->link_mode |= HCI_LM_MASTER;
2453 }
2454
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002455 clear_bit(HCI_CONN_RSWITCH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002456
2457 hci_role_switch_cfm(conn, ev->status, ev->role);
2458 }
2459
2460 hci_dev_unlock(hdev);
2461}
2462
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002463static void hci_num_comp_pkts_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002465 struct hci_ev_num_comp_pkts *ev = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 int i;
2467
Andrei Emeltchenko32ac5b92011-12-19 16:31:29 +02002468 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_PACKET_BASED) {
2469 BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode);
2470 return;
2471 }
2472
Andrei Emeltchenkoc5993de2011-12-30 12:07:47 +02002473 if (skb->len < sizeof(*ev) || skb->len < sizeof(*ev) +
Gustavo Padovan807deac2012-05-17 00:36:24 -03002474 ev->num_hndl * sizeof(struct hci_comp_pkts_info)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 BT_DBG("%s bad parameters", hdev->name);
2476 return;
2477 }
2478
Andrei Emeltchenkoc5993de2011-12-30 12:07:47 +02002479 BT_DBG("%s num_hndl %d", hdev->name, ev->num_hndl);
2480
Andrei Emeltchenko613a1c02011-12-19 16:31:30 +02002481 for (i = 0; i < ev->num_hndl; i++) {
2482 struct hci_comp_pkts_info *info = &ev->handles[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 struct hci_conn *conn;
2484 __u16 handle, count;
2485
Andrei Emeltchenko613a1c02011-12-19 16:31:30 +02002486 handle = __le16_to_cpu(info->handle);
2487 count = __le16_to_cpu(info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488
2489 conn = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002490 if (!conn)
2491 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002493 conn->sent -= count;
2494
2495 switch (conn->type) {
2496 case ACL_LINK:
2497 hdev->acl_cnt += count;
2498 if (hdev->acl_cnt > hdev->acl_pkts)
2499 hdev->acl_cnt = hdev->acl_pkts;
2500 break;
2501
2502 case LE_LINK:
2503 if (hdev->le_pkts) {
2504 hdev->le_cnt += count;
2505 if (hdev->le_cnt > hdev->le_pkts)
2506 hdev->le_cnt = hdev->le_pkts;
2507 } else {
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002508 hdev->acl_cnt += count;
2509 if (hdev->acl_cnt > hdev->acl_pkts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 hdev->acl_cnt = hdev->acl_pkts;
2511 }
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002512 break;
2513
2514 case SCO_LINK:
2515 hdev->sco_cnt += count;
2516 if (hdev->sco_cnt > hdev->sco_pkts)
2517 hdev->sco_cnt = hdev->sco_pkts;
2518 break;
2519
2520 default:
2521 BT_ERR("Unknown type %d conn %p", conn->type, conn);
2522 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 }
2524 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002525
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002526 queue_work(hdev->workqueue, &hdev->tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527}
2528
Andrei Emeltchenko76ef7cf2012-10-10 17:38:29 +03002529static struct hci_conn *__hci_conn_lookup_handle(struct hci_dev *hdev,
2530 __u16 handle)
2531{
2532 struct hci_chan *chan;
2533
2534 switch (hdev->dev_type) {
2535 case HCI_BREDR:
2536 return hci_conn_hash_lookup_handle(hdev, handle);
2537 case HCI_AMP:
2538 chan = hci_chan_lookup_handle(hdev, handle);
2539 if (chan)
2540 return chan->conn;
2541 break;
2542 default:
2543 BT_ERR("%s unknown dev_type %d", hdev->name, hdev->dev_type);
2544 break;
2545 }
2546
2547 return NULL;
2548}
2549
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002550static void hci_num_comp_blocks_evt(struct hci_dev *hdev, struct sk_buff *skb)
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002551{
2552 struct hci_ev_num_comp_blocks *ev = (void *) skb->data;
2553 int i;
2554
2555 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_BLOCK_BASED) {
2556 BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode);
2557 return;
2558 }
2559
2560 if (skb->len < sizeof(*ev) || skb->len < sizeof(*ev) +
Gustavo Padovan807deac2012-05-17 00:36:24 -03002561 ev->num_hndl * sizeof(struct hci_comp_blocks_info)) {
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002562 BT_DBG("%s bad parameters", hdev->name);
2563 return;
2564 }
2565
2566 BT_DBG("%s num_blocks %d num_hndl %d", hdev->name, ev->num_blocks,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002567 ev->num_hndl);
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002568
2569 for (i = 0; i < ev->num_hndl; i++) {
2570 struct hci_comp_blocks_info *info = &ev->handles[i];
Andrei Emeltchenko76ef7cf2012-10-10 17:38:29 +03002571 struct hci_conn *conn = NULL;
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002572 __u16 handle, block_count;
2573
2574 handle = __le16_to_cpu(info->handle);
2575 block_count = __le16_to_cpu(info->blocks);
2576
Andrei Emeltchenko76ef7cf2012-10-10 17:38:29 +03002577 conn = __hci_conn_lookup_handle(hdev, handle);
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002578 if (!conn)
2579 continue;
2580
2581 conn->sent -= block_count;
2582
2583 switch (conn->type) {
2584 case ACL_LINK:
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03002585 case AMP_LINK:
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002586 hdev->block_cnt += block_count;
2587 if (hdev->block_cnt > hdev->num_blocks)
2588 hdev->block_cnt = hdev->num_blocks;
2589 break;
2590
2591 default:
2592 BT_ERR("Unknown type %d conn %p", conn->type, conn);
2593 break;
2594 }
2595 }
2596
2597 queue_work(hdev->workqueue, &hdev->tx_work);
2598}
2599
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002600static void hci_mode_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002602 struct hci_ev_mode_change *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002603 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002605 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
2607 hci_dev_lock(hdev);
2608
Marcel Holtmann04837f62006-07-03 10:02:33 +02002609 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2610 if (conn) {
2611 conn->mode = ev->mode;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002612
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03002613 if (!test_and_clear_bit(HCI_CONN_MODE_CHANGE_PEND,
2614 &conn->flags)) {
Marcel Holtmann04837f62006-07-03 10:02:33 +02002615 if (conn->mode == HCI_CM_ACTIVE)
Johan Hedberg58a681e2012-01-16 06:47:28 +02002616 set_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002617 else
Johan Hedberg58a681e2012-01-16 06:47:28 +02002618 clear_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002619 }
Marcel Holtmanne73439d2010-07-26 10:06:00 -04002620
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002621 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04002622 hci_sco_setup(conn, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002623 }
2624
2625 hci_dev_unlock(hdev);
2626}
2627
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002628static void hci_pin_code_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002630 struct hci_ev_pin_code_req *ev = (void *) skb->data;
2631 struct hci_conn *conn;
2632
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002633 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002634
2635 hci_dev_lock(hdev);
2636
2637 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Waldemar Rymarkiewiczb6f98042011-09-23 10:01:30 +02002638 if (!conn)
2639 goto unlock;
2640
2641 if (conn->state == BT_CONNECTED) {
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002642 hci_conn_hold(conn);
2643 conn->disc_timeout = HCI_PAIRING_TIMEOUT;
David Herrmann76a68ba2013-04-06 20:28:37 +02002644 hci_conn_drop(conn);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002645 }
2646
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002647 if (!test_bit(HCI_PAIRABLE, &hdev->dev_flags))
Johan Hedberg03b555e2011-01-04 15:40:05 +02002648 hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002649 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002650 else if (test_bit(HCI_MGMT, &hdev->dev_flags)) {
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02002651 u8 secure;
2652
2653 if (conn->pending_sec_level == BT_SECURITY_HIGH)
2654 secure = 1;
2655 else
2656 secure = 0;
2657
Johan Hedberg744cf192011-11-08 20:40:14 +02002658 mgmt_pin_code_request(hdev, &ev->bdaddr, secure);
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02002659 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02002660
Waldemar Rymarkiewiczb6f98042011-09-23 10:01:30 +02002661unlock:
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002662 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663}
2664
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002665static void hci_link_key_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666{
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002667 struct hci_ev_link_key_req *ev = (void *) skb->data;
2668 struct hci_cp_link_key_reply cp;
2669 struct hci_conn *conn;
2670 struct link_key *key;
2671
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002672 BT_DBG("%s", hdev->name);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002673
Andrei Emeltchenko034cbea2013-05-14 11:44:16 +03002674 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002675 return;
2676
2677 hci_dev_lock(hdev);
2678
2679 key = hci_find_link_key(hdev, &ev->bdaddr);
2680 if (!key) {
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03002681 BT_DBG("%s link key not found for %pMR", hdev->name,
2682 &ev->bdaddr);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002683 goto not_found;
2684 }
2685
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03002686 BT_DBG("%s found key type %u for %pMR", hdev->name, key->type,
2687 &ev->bdaddr);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002688
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002689 if (!test_bit(HCI_DEBUG_KEYS, &hdev->dev_flags) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002690 key->type == HCI_LK_DEBUG_COMBINATION) {
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002691 BT_DBG("%s ignoring debug key", hdev->name);
2692 goto not_found;
2693 }
2694
2695 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002696 if (conn) {
Marcel Holtmann66138ce2014-01-10 02:07:20 -08002697 if ((key->type == HCI_LK_UNAUTH_COMBINATION_P192 ||
2698 key->type == HCI_LK_UNAUTH_COMBINATION_P256) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002699 conn->auth_type != 0xff && (conn->auth_type & 0x01)) {
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002700 BT_DBG("%s ignoring unauthenticated key", hdev->name);
2701 goto not_found;
2702 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002703
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002704 if (key->type == HCI_LK_COMBINATION && key->pin_len < 16 &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002705 conn->pending_sec_level == BT_SECURITY_HIGH) {
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03002706 BT_DBG("%s ignoring key unauthenticated for high security",
2707 hdev->name);
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002708 goto not_found;
2709 }
2710
2711 conn->key_type = key->type;
2712 conn->pin_length = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002713 }
2714
2715 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03002716 memcpy(cp.link_key, key->val, HCI_LINK_KEY_SIZE);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002717
2718 hci_send_cmd(hdev, HCI_OP_LINK_KEY_REPLY, sizeof(cp), &cp);
2719
2720 hci_dev_unlock(hdev);
2721
2722 return;
2723
2724not_found:
2725 hci_send_cmd(hdev, HCI_OP_LINK_KEY_NEG_REPLY, 6, &ev->bdaddr);
2726 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727}
2728
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002729static void hci_link_key_notify_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002731 struct hci_ev_link_key_notify *ev = (void *) skb->data;
2732 struct hci_conn *conn;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002733 u8 pin_len = 0;
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002734
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002735 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002736
2737 hci_dev_lock(hdev);
2738
2739 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2740 if (conn) {
2741 hci_conn_hold(conn);
2742 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002743 pin_len = conn->pin_length;
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +02002744
2745 if (ev->key_type != HCI_LK_CHANGED_COMBINATION)
2746 conn->key_type = ev->key_type;
2747
David Herrmann76a68ba2013-04-06 20:28:37 +02002748 hci_conn_drop(conn);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002749 }
2750
Andrei Emeltchenko034cbea2013-05-14 11:44:16 +03002751 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedbergd25e28a2011-04-28 11:28:59 -07002752 hci_add_link_key(hdev, conn, 1, &ev->bdaddr, ev->link_key,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002753 ev->key_type, pin_len);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002754
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002755 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756}
2757
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002758static void hci_clock_offset_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann04837f62006-07-03 10:02:33 +02002759{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002760 struct hci_ev_clock_offset *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002761 struct hci_conn *conn;
2762
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002763 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002764
2765 hci_dev_lock(hdev);
2766
2767 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 if (conn && !ev->status) {
2769 struct inquiry_entry *ie;
2770
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002771 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2772 if (ie) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 ie->data.clock_offset = ev->clock_offset;
2774 ie->timestamp = jiffies;
2775 }
2776 }
2777
2778 hci_dev_unlock(hdev);
2779}
2780
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002781static void hci_pkt_type_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna8746412008-07-14 20:13:46 +02002782{
2783 struct hci_ev_pkt_type_change *ev = (void *) skb->data;
2784 struct hci_conn *conn;
2785
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002786 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna8746412008-07-14 20:13:46 +02002787
2788 hci_dev_lock(hdev);
2789
2790 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2791 if (conn && !ev->status)
2792 conn->pkt_type = __le16_to_cpu(ev->pkt_type);
2793
2794 hci_dev_unlock(hdev);
2795}
2796
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002797static void hci_pscan_rep_mode_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002798{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002799 struct hci_ev_pscan_rep_mode *ev = (void *) skb->data;
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002800 struct inquiry_entry *ie;
2801
2802 BT_DBG("%s", hdev->name);
2803
2804 hci_dev_lock(hdev);
2805
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002806 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
2807 if (ie) {
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002808 ie->data.pscan_rep_mode = ev->pscan_rep_mode;
2809 ie->timestamp = jiffies;
2810 }
2811
2812 hci_dev_unlock(hdev);
2813}
2814
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002815static void hci_inquiry_result_with_rssi_evt(struct hci_dev *hdev,
2816 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002817{
2818 struct inquiry_data data;
2819 int num_rsp = *((__u8 *) skb->data);
Johan Hedberg388fc8f2012-02-23 00:38:59 +02002820 bool name_known, ssp;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002821
2822 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
2823
2824 if (!num_rsp)
2825 return;
2826
Andre Guedes1519cc12012-03-21 00:03:38 -03002827 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
2828 return;
2829
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002830 hci_dev_lock(hdev);
2831
2832 if ((skb->len - 1) / num_rsp != sizeof(struct inquiry_info_with_rssi)) {
Szymon Janc138d22e2011-02-17 16:44:23 +01002833 struct inquiry_info_with_rssi_and_pscan_mode *info;
2834 info = (void *) (skb->data + 1);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002835
Johan Hedberge17acd42011-03-30 23:57:16 +03002836 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002837 bacpy(&data.bdaddr, &info->bdaddr);
2838 data.pscan_rep_mode = info->pscan_rep_mode;
2839 data.pscan_period_mode = info->pscan_period_mode;
2840 data.pscan_mode = info->pscan_mode;
2841 memcpy(data.dev_class, info->dev_class, 3);
2842 data.clock_offset = info->clock_offset;
2843 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002844 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02002845
2846 name_known = hci_inquiry_cache_update(hdev, &data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002847 false, &ssp);
Johan Hedberg48264f02011-11-09 13:58:58 +02002848 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002849 info->dev_class, info->rssi,
2850 !name_known, ssp, NULL, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002851 }
2852 } else {
2853 struct inquiry_info_with_rssi *info = (void *) (skb->data + 1);
2854
Johan Hedberge17acd42011-03-30 23:57:16 +03002855 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002856 bacpy(&data.bdaddr, &info->bdaddr);
2857 data.pscan_rep_mode = info->pscan_rep_mode;
2858 data.pscan_period_mode = info->pscan_period_mode;
2859 data.pscan_mode = 0x00;
2860 memcpy(data.dev_class, info->dev_class, 3);
2861 data.clock_offset = info->clock_offset;
2862 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002863 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02002864 name_known = hci_inquiry_cache_update(hdev, &data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002865 false, &ssp);
Johan Hedberg48264f02011-11-09 13:58:58 +02002866 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002867 info->dev_class, info->rssi,
2868 !name_known, ssp, NULL, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002869 }
2870 }
2871
2872 hci_dev_unlock(hdev);
2873}
2874
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002875static void hci_remote_ext_features_evt(struct hci_dev *hdev,
2876 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002877{
Marcel Holtmann41a96212008-07-14 20:13:48 +02002878 struct hci_ev_remote_ext_features *ev = (void *) skb->data;
2879 struct hci_conn *conn;
2880
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002881 BT_DBG("%s", hdev->name);
Marcel Holtmann41a96212008-07-14 20:13:48 +02002882
Marcel Holtmann41a96212008-07-14 20:13:48 +02002883 hci_dev_lock(hdev);
2884
2885 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02002886 if (!conn)
2887 goto unlock;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002888
Johan Hedbergcad718e2013-04-17 15:00:51 +03002889 if (ev->page < HCI_MAX_PAGES)
2890 memcpy(conn->features[ev->page], ev->features, 8);
2891
Johan Hedbergccd556f2010-11-10 17:11:51 +02002892 if (!ev->status && ev->page == 0x01) {
2893 struct inquiry_entry *ie;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002894
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002895 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2896 if (ie)
Johan Hedberg02b7cc62012-02-28 02:28:43 +02002897 ie->data.ssp_mode = (ev->features[0] & LMP_HOST_SSP);
Marcel Holtmann769be972008-07-14 20:13:49 +02002898
Jaganath Kanakkasserybbb0ead2013-04-16 20:16:30 +05302899 if (ev->features[0] & LMP_HOST_SSP) {
Johan Hedberg58a681e2012-01-16 06:47:28 +02002900 set_bit(HCI_CONN_SSP_ENABLED, &conn->flags);
Jaganath Kanakkasserybbb0ead2013-04-16 20:16:30 +05302901 } else {
2902 /* It is mandatory by the Bluetooth specification that
2903 * Extended Inquiry Results are only used when Secure
2904 * Simple Pairing is enabled, but some devices violate
2905 * this.
2906 *
2907 * To make these devices work, the internal SSP
2908 * enabled flag needs to be cleared if the remote host
2909 * features do not indicate SSP support */
2910 clear_bit(HCI_CONN_SSP_ENABLED, &conn->flags);
2911 }
Marcel Holtmanneb9a8f32014-01-15 22:37:38 -08002912
2913 if (ev->features[0] & LMP_HOST_SC)
2914 set_bit(HCI_CONN_SC_ENABLED, &conn->flags);
Marcel Holtmann41a96212008-07-14 20:13:48 +02002915 }
2916
Johan Hedbergccd556f2010-11-10 17:11:51 +02002917 if (conn->state != BT_CONFIG)
2918 goto unlock;
2919
Johan Hedberg671267b2012-05-12 16:11:50 -03002920 if (!ev->status && !test_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02002921 struct hci_cp_remote_name_req cp;
2922 memset(&cp, 0, sizeof(cp));
2923 bacpy(&cp.bdaddr, &conn->dst);
2924 cp.pscan_rep_mode = 0x02;
2925 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002926 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
2927 mgmt_device_connected(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002928 conn->dst_type, 0, NULL, 0,
2929 conn->dev_class);
Johan Hedberg392599b2010-11-18 22:22:28 +02002930
Johan Hedberg127178d2010-11-18 22:22:29 +02002931 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02002932 conn->state = BT_CONNECTED;
2933 hci_proto_connect_cfm(conn, ev->status);
David Herrmann76a68ba2013-04-06 20:28:37 +02002934 hci_conn_drop(conn);
Johan Hedbergccd556f2010-11-10 17:11:51 +02002935 }
2936
2937unlock:
Marcel Holtmann41a96212008-07-14 20:13:48 +02002938 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002939}
2940
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002941static void hci_sync_conn_complete_evt(struct hci_dev *hdev,
2942 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002943{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002944 struct hci_ev_sync_conn_complete *ev = (void *) skb->data;
2945 struct hci_conn *conn;
2946
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002947 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002948
2949 hci_dev_lock(hdev);
2950
2951 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann9dc0a3a2008-07-14 20:13:46 +02002952 if (!conn) {
2953 if (ev->link_type == ESCO_LINK)
2954 goto unlock;
2955
2956 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
2957 if (!conn)
2958 goto unlock;
2959
2960 conn->type = SCO_LINK;
2961 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002962
Marcel Holtmann732547f2009-04-19 19:14:14 +02002963 switch (ev->status) {
2964 case 0x00:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002965 conn->handle = __le16_to_cpu(ev->handle);
2966 conn->state = BT_CONNECTED;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02002967
2968 hci_conn_add_sysfs(conn);
Marcel Holtmann732547f2009-04-19 19:14:14 +02002969 break;
2970
Frédéric Dalleau1a4c9582013-08-19 14:24:02 +02002971 case 0x0d: /* Connection Rejected due to Limited Resources */
Stephen Coe705e5712010-02-16 11:29:44 -05002972 case 0x11: /* Unsupported Feature or Parameter Value */
Marcel Holtmann732547f2009-04-19 19:14:14 +02002973 case 0x1c: /* SCO interval rejected */
Nick Pelly1038a002010-02-03 11:42:26 -08002974 case 0x1a: /* Unsupported Remote Feature */
Marcel Holtmann732547f2009-04-19 19:14:14 +02002975 case 0x1f: /* Unspecified error */
Frédéric Dalleau2dea6322013-08-19 14:24:03 +02002976 if (conn->out) {
Marcel Holtmann732547f2009-04-19 19:14:14 +02002977 conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) |
2978 (hdev->esco_type & EDR_ESCO_MASK);
Frédéric Dalleau2dea6322013-08-19 14:24:03 +02002979 if (hci_setup_sync(conn, conn->link->handle))
2980 goto unlock;
Marcel Holtmann732547f2009-04-19 19:14:14 +02002981 }
2982 /* fall through */
2983
2984 default:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002985 conn->state = BT_CLOSED;
Marcel Holtmann732547f2009-04-19 19:14:14 +02002986 break;
2987 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002988
2989 hci_proto_connect_cfm(conn, ev->status);
2990 if (ev->status)
2991 hci_conn_del(conn);
2992
2993unlock:
2994 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002995}
2996
Marcel Holtmannefdcf8e2013-10-15 10:31:12 -07002997static inline size_t eir_get_length(u8 *eir, size_t eir_len)
2998{
2999 size_t parsed = 0;
3000
3001 while (parsed < eir_len) {
3002 u8 field_len = eir[0];
3003
3004 if (field_len == 0)
3005 return parsed;
3006
3007 parsed += field_len + 1;
3008 eir += field_len + 1;
3009 }
3010
3011 return eir_len;
3012}
3013
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003014static void hci_extended_inquiry_result_evt(struct hci_dev *hdev,
3015 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003016{
3017 struct inquiry_data data;
3018 struct extended_inquiry_info *info = (void *) (skb->data + 1);
3019 int num_rsp = *((__u8 *) skb->data);
Vishal Agarwal9d939d92012-04-26 19:19:56 +05303020 size_t eir_len;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003021
3022 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
3023
3024 if (!num_rsp)
3025 return;
3026
Andre Guedes1519cc12012-03-21 00:03:38 -03003027 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
3028 return;
3029
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003030 hci_dev_lock(hdev);
3031
Johan Hedberge17acd42011-03-30 23:57:16 +03003032 for (; num_rsp; num_rsp--, info++) {
Johan Hedberg388fc8f2012-02-23 00:38:59 +02003033 bool name_known, ssp;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003034
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003035 bacpy(&data.bdaddr, &info->bdaddr);
Szymon Janc138d22e2011-02-17 16:44:23 +01003036 data.pscan_rep_mode = info->pscan_rep_mode;
3037 data.pscan_period_mode = info->pscan_period_mode;
3038 data.pscan_mode = 0x00;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003039 memcpy(data.dev_class, info->dev_class, 3);
Szymon Janc138d22e2011-02-17 16:44:23 +01003040 data.clock_offset = info->clock_offset;
3041 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02003042 data.ssp_mode = 0x01;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003043
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003044 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg4ddb1932012-01-15 20:04:43 +02003045 name_known = eir_has_data_type(info->data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003046 sizeof(info->data),
3047 EIR_NAME_COMPLETE);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003048 else
3049 name_known = true;
3050
Johan Hedberg388fc8f2012-02-23 00:38:59 +02003051 name_known = hci_inquiry_cache_update(hdev, &data, name_known,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003052 &ssp);
Vishal Agarwal9d939d92012-04-26 19:19:56 +05303053 eir_len = eir_get_length(info->data, sizeof(info->data));
Johan Hedberg48264f02011-11-09 13:58:58 +02003054 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003055 info->dev_class, info->rssi, !name_known,
Vishal Agarwal9d939d92012-04-26 19:19:56 +05303056 ssp, info->data, eir_len);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003057 }
3058
3059 hci_dev_unlock(hdev);
3060}
3061
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003062static void hci_key_refresh_complete_evt(struct hci_dev *hdev,
3063 struct sk_buff *skb)
3064{
3065 struct hci_ev_key_refresh_complete *ev = (void *) skb->data;
3066 struct hci_conn *conn;
3067
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003068 BT_DBG("%s status 0x%2.2x handle 0x%4.4x", hdev->name, ev->status,
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003069 __le16_to_cpu(ev->handle));
3070
3071 hci_dev_lock(hdev);
3072
3073 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
3074 if (!conn)
3075 goto unlock;
3076
3077 if (!ev->status)
3078 conn->sec_level = conn->pending_sec_level;
3079
3080 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
3081
3082 if (ev->status && conn->state == BT_CONNECTED) {
Andre Guedesbed71742013-01-30 11:50:56 -03003083 hci_disconnect(conn, HCI_ERROR_AUTH_FAILURE);
David Herrmann76a68ba2013-04-06 20:28:37 +02003084 hci_conn_drop(conn);
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003085 goto unlock;
3086 }
3087
3088 if (conn->state == BT_CONFIG) {
3089 if (!ev->status)
3090 conn->state = BT_CONNECTED;
3091
3092 hci_proto_connect_cfm(conn, ev->status);
David Herrmann76a68ba2013-04-06 20:28:37 +02003093 hci_conn_drop(conn);
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003094 } else {
3095 hci_auth_cfm(conn, ev->status);
3096
3097 hci_conn_hold(conn);
3098 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
David Herrmann76a68ba2013-04-06 20:28:37 +02003099 hci_conn_drop(conn);
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003100 }
3101
3102unlock:
3103 hci_dev_unlock(hdev);
3104}
3105
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003106static u8 hci_get_auth_req(struct hci_conn *conn)
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003107{
3108 /* If remote requests dedicated bonding follow that lead */
Mikel Astizacabae92013-06-28 10:56:28 +02003109 if (conn->remote_auth == HCI_AT_DEDICATED_BONDING ||
3110 conn->remote_auth == HCI_AT_DEDICATED_BONDING_MITM) {
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003111 /* If both remote and local IO capabilities allow MITM
3112 * protection then require it, otherwise don't */
Mikel Astizacabae92013-06-28 10:56:28 +02003113 if (conn->remote_cap == HCI_IO_NO_INPUT_OUTPUT ||
3114 conn->io_capability == HCI_IO_NO_INPUT_OUTPUT)
3115 return HCI_AT_DEDICATED_BONDING;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003116 else
Mikel Astizacabae92013-06-28 10:56:28 +02003117 return HCI_AT_DEDICATED_BONDING_MITM;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003118 }
3119
3120 /* If remote requests no-bonding follow that lead */
Mikel Astizacabae92013-06-28 10:56:28 +02003121 if (conn->remote_auth == HCI_AT_NO_BONDING ||
3122 conn->remote_auth == HCI_AT_NO_BONDING_MITM)
Waldemar Rymarkiewicz58797bf2011-04-28 12:07:58 +02003123 return conn->remote_auth | (conn->auth_type & 0x01);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003124
3125 return conn->auth_type;
3126}
3127
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003128static void hci_io_capa_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann04936842008-07-14 20:13:48 +02003129{
3130 struct hci_ev_io_capa_request *ev = (void *) skb->data;
3131 struct hci_conn *conn;
3132
3133 BT_DBG("%s", hdev->name);
3134
3135 hci_dev_lock(hdev);
3136
3137 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003138 if (!conn)
3139 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02003140
Johan Hedberg03b555e2011-01-04 15:40:05 +02003141 hci_conn_hold(conn);
3142
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003143 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg03b555e2011-01-04 15:40:05 +02003144 goto unlock;
3145
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003146 if (test_bit(HCI_PAIRABLE, &hdev->dev_flags) ||
Gustavo Padovan807deac2012-05-17 00:36:24 -03003147 (conn->remote_auth & ~0x01) == HCI_AT_NO_BONDING) {
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003148 struct hci_cp_io_capability_reply cp;
3149
3150 bacpy(&cp.bdaddr, &ev->bdaddr);
Hemant Gupta7a7f1e72012-01-16 13:34:29 +05303151 /* Change the IO capability from KeyboardDisplay
3152 * to DisplayYesNo as it is not supported by BT spec. */
3153 cp.capability = (conn->io_capability == 0x04) ?
Mikel Astiza7676312013-06-28 10:56:29 +02003154 HCI_IO_DISPLAY_YESNO : conn->io_capability;
Johan Hedberg7cbc9bd2011-04-28 11:29:04 -07003155 conn->auth_type = hci_get_auth_req(conn);
3156 cp.authentication = conn->auth_type;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003157
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003158 if (hci_find_remote_oob_data(hdev, &conn->dst) &&
3159 (conn->out || test_bit(HCI_CONN_REMOTE_OOB, &conn->flags)))
Szymon Jancce85ee12011-03-22 13:12:23 +01003160 cp.oob_data = 0x01;
3161 else
3162 cp.oob_data = 0x00;
3163
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003164 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003165 sizeof(cp), &cp);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003166 } else {
3167 struct hci_cp_io_capability_neg_reply cp;
3168
3169 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +02003170 cp.reason = HCI_ERROR_PAIRING_NOT_ALLOWED;
Johan Hedberg03b555e2011-01-04 15:40:05 +02003171
3172 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003173 sizeof(cp), &cp);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003174 }
3175
3176unlock:
3177 hci_dev_unlock(hdev);
3178}
3179
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003180static void hci_io_capa_reply_evt(struct hci_dev *hdev, struct sk_buff *skb)
Johan Hedberg03b555e2011-01-04 15:40:05 +02003181{
3182 struct hci_ev_io_capa_reply *ev = (void *) skb->data;
3183 struct hci_conn *conn;
3184
3185 BT_DBG("%s", hdev->name);
3186
3187 hci_dev_lock(hdev);
3188
3189 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3190 if (!conn)
3191 goto unlock;
3192
Johan Hedberg03b555e2011-01-04 15:40:05 +02003193 conn->remote_cap = ev->capability;
Johan Hedberg03b555e2011-01-04 15:40:05 +02003194 conn->remote_auth = ev->authentication;
Johan Hedberg58a681e2012-01-16 06:47:28 +02003195 if (ev->oob_data)
3196 set_bit(HCI_CONN_REMOTE_OOB, &conn->flags);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003197
3198unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02003199 hci_dev_unlock(hdev);
3200}
3201
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003202static void hci_user_confirm_request_evt(struct hci_dev *hdev,
3203 struct sk_buff *skb)
Johan Hedberga5c29682011-02-19 12:05:57 -03003204{
3205 struct hci_ev_user_confirm_req *ev = (void *) skb->data;
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003206 int loc_mitm, rem_mitm, confirm_hint = 0;
Johan Hedberg7a828902011-04-28 11:28:53 -07003207 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03003208
3209 BT_DBG("%s", hdev->name);
3210
3211 hci_dev_lock(hdev);
3212
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003213 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg7a828902011-04-28 11:28:53 -07003214 goto unlock;
Johan Hedberga5c29682011-02-19 12:05:57 -03003215
Johan Hedberg7a828902011-04-28 11:28:53 -07003216 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3217 if (!conn)
3218 goto unlock;
3219
3220 loc_mitm = (conn->auth_type & 0x01);
3221 rem_mitm = (conn->remote_auth & 0x01);
3222
3223 /* If we require MITM but the remote device can't provide that
3224 * (it has NoInputNoOutput) then reject the confirmation
3225 * request. The only exception is when we're dedicated bonding
3226 * initiators (connect_cfm_cb set) since then we always have the MITM
3227 * bit set. */
Mikel Astiza7676312013-06-28 10:56:29 +02003228 if (!conn->connect_cfm_cb && loc_mitm &&
3229 conn->remote_cap == HCI_IO_NO_INPUT_OUTPUT) {
Johan Hedberg7a828902011-04-28 11:28:53 -07003230 BT_DBG("Rejecting request: remote device can't provide MITM");
3231 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003232 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberg7a828902011-04-28 11:28:53 -07003233 goto unlock;
3234 }
3235
3236 /* If no side requires MITM protection; auto-accept */
Mikel Astiza7676312013-06-28 10:56:29 +02003237 if ((!loc_mitm || conn->remote_cap == HCI_IO_NO_INPUT_OUTPUT) &&
3238 (!rem_mitm || conn->io_capability == HCI_IO_NO_INPUT_OUTPUT)) {
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003239
3240 /* If we're not the initiators request authorization to
3241 * proceed from user space (mgmt_user_confirm with
3242 * confirm_hint set to 1). */
Johan Hedberg51a8efd2012-01-16 06:10:31 +02003243 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003244 BT_DBG("Confirming auto-accept as acceptor");
3245 confirm_hint = 1;
3246 goto confirm;
3247 }
3248
Johan Hedberg9f616562011-04-28 11:28:54 -07003249 BT_DBG("Auto-accept of user confirmation with %ums delay",
Gustavo Padovan807deac2012-05-17 00:36:24 -03003250 hdev->auto_accept_delay);
Johan Hedberg9f616562011-04-28 11:28:54 -07003251
3252 if (hdev->auto_accept_delay > 0) {
3253 int delay = msecs_to_jiffies(hdev->auto_accept_delay);
Johan Hedberg7bc18d92013-10-16 18:11:39 +03003254 queue_delayed_work(conn->hdev->workqueue,
3255 &conn->auto_accept_work, delay);
Johan Hedberg9f616562011-04-28 11:28:54 -07003256 goto unlock;
3257 }
3258
Johan Hedberg7a828902011-04-28 11:28:53 -07003259 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003260 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberg7a828902011-04-28 11:28:53 -07003261 goto unlock;
3262 }
3263
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003264confirm:
Johan Hedberg272d90d2012-02-09 15:26:12 +02003265 mgmt_user_confirm_request(hdev, &ev->bdaddr, ACL_LINK, 0, ev->passkey,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003266 confirm_hint);
Johan Hedberg7a828902011-04-28 11:28:53 -07003267
3268unlock:
Johan Hedberga5c29682011-02-19 12:05:57 -03003269 hci_dev_unlock(hdev);
3270}
3271
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003272static void hci_user_passkey_request_evt(struct hci_dev *hdev,
3273 struct sk_buff *skb)
Brian Gix1143d452011-11-23 08:28:34 -08003274{
3275 struct hci_ev_user_passkey_req *ev = (void *) skb->data;
3276
3277 BT_DBG("%s", hdev->name);
3278
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003279 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg272d90d2012-02-09 15:26:12 +02003280 mgmt_user_passkey_request(hdev, &ev->bdaddr, ACL_LINK, 0);
Brian Gix1143d452011-11-23 08:28:34 -08003281}
3282
Johan Hedberg92a25252012-09-06 18:39:26 +03003283static void hci_user_passkey_notify_evt(struct hci_dev *hdev,
3284 struct sk_buff *skb)
3285{
3286 struct hci_ev_user_passkey_notify *ev = (void *) skb->data;
3287 struct hci_conn *conn;
3288
3289 BT_DBG("%s", hdev->name);
3290
3291 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3292 if (!conn)
3293 return;
3294
3295 conn->passkey_notify = __le32_to_cpu(ev->passkey);
3296 conn->passkey_entered = 0;
3297
3298 if (test_bit(HCI_MGMT, &hdev->dev_flags))
3299 mgmt_user_passkey_notify(hdev, &conn->dst, conn->type,
3300 conn->dst_type, conn->passkey_notify,
3301 conn->passkey_entered);
3302}
3303
3304static void hci_keypress_notify_evt(struct hci_dev *hdev, struct sk_buff *skb)
3305{
3306 struct hci_ev_keypress_notify *ev = (void *) skb->data;
3307 struct hci_conn *conn;
3308
3309 BT_DBG("%s", hdev->name);
3310
3311 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3312 if (!conn)
3313 return;
3314
3315 switch (ev->type) {
3316 case HCI_KEYPRESS_STARTED:
3317 conn->passkey_entered = 0;
3318 return;
3319
3320 case HCI_KEYPRESS_ENTERED:
3321 conn->passkey_entered++;
3322 break;
3323
3324 case HCI_KEYPRESS_ERASED:
3325 conn->passkey_entered--;
3326 break;
3327
3328 case HCI_KEYPRESS_CLEARED:
3329 conn->passkey_entered = 0;
3330 break;
3331
3332 case HCI_KEYPRESS_COMPLETED:
3333 return;
3334 }
3335
3336 if (test_bit(HCI_MGMT, &hdev->dev_flags))
3337 mgmt_user_passkey_notify(hdev, &conn->dst, conn->type,
3338 conn->dst_type, conn->passkey_notify,
3339 conn->passkey_entered);
3340}
3341
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003342static void hci_simple_pair_complete_evt(struct hci_dev *hdev,
3343 struct sk_buff *skb)
Marcel Holtmann04936842008-07-14 20:13:48 +02003344{
3345 struct hci_ev_simple_pair_complete *ev = (void *) skb->data;
3346 struct hci_conn *conn;
3347
3348 BT_DBG("%s", hdev->name);
3349
3350 hci_dev_lock(hdev);
3351
3352 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg2a611692011-02-19 12:06:00 -03003353 if (!conn)
3354 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02003355
Johan Hedberg2a611692011-02-19 12:06:00 -03003356 /* To avoid duplicate auth_failed events to user space we check
3357 * the HCI_CONN_AUTH_PEND flag which will be set if we
3358 * initiated the authentication. A traditional auth_complete
3359 * event gets always produced as initiator and is also mapped to
3360 * the mgmt_auth_failed event */
Mikel Astizfa1bd912012-08-09 09:52:29 +02003361 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags) && ev->status)
Johan Hedbergbab73cb2012-02-09 16:07:29 +02003362 mgmt_auth_failed(hdev, &conn->dst, conn->type, conn->dst_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003363 ev->status);
Johan Hedberg2a611692011-02-19 12:06:00 -03003364
David Herrmann76a68ba2013-04-06 20:28:37 +02003365 hci_conn_drop(conn);
Johan Hedberg2a611692011-02-19 12:06:00 -03003366
3367unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02003368 hci_dev_unlock(hdev);
3369}
3370
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003371static void hci_remote_host_features_evt(struct hci_dev *hdev,
3372 struct sk_buff *skb)
Marcel Holtmann41a96212008-07-14 20:13:48 +02003373{
3374 struct hci_ev_remote_host_features *ev = (void *) skb->data;
3375 struct inquiry_entry *ie;
Johan Hedbergcad718e2013-04-17 15:00:51 +03003376 struct hci_conn *conn;
Marcel Holtmann41a96212008-07-14 20:13:48 +02003377
3378 BT_DBG("%s", hdev->name);
3379
3380 hci_dev_lock(hdev);
3381
Johan Hedbergcad718e2013-04-17 15:00:51 +03003382 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3383 if (conn)
3384 memcpy(conn->features[1], ev->features, 8);
3385
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02003386 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
3387 if (ie)
Johan Hedberg02b7cc62012-02-28 02:28:43 +02003388 ie->data.ssp_mode = (ev->features[0] & LMP_HOST_SSP);
Marcel Holtmann41a96212008-07-14 20:13:48 +02003389
3390 hci_dev_unlock(hdev);
3391}
3392
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003393static void hci_remote_oob_data_request_evt(struct hci_dev *hdev,
3394 struct sk_buff *skb)
Szymon Janc2763eda2011-03-22 13:12:22 +01003395{
3396 struct hci_ev_remote_oob_data_request *ev = (void *) skb->data;
3397 struct oob_data *data;
3398
3399 BT_DBG("%s", hdev->name);
3400
3401 hci_dev_lock(hdev);
3402
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003403 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Szymon Jance1ba1f12011-04-06 13:01:59 +02003404 goto unlock;
3405
Szymon Janc2763eda2011-03-22 13:12:22 +01003406 data = hci_find_remote_oob_data(hdev, &ev->bdaddr);
3407 if (data) {
Marcel Holtmann519ca9d2014-01-10 02:07:28 -08003408 if (test_bit(HCI_SC_ENABLED, &hdev->dev_flags)) {
3409 struct hci_cp_remote_oob_ext_data_reply cp;
Szymon Janc2763eda2011-03-22 13:12:22 +01003410
Marcel Holtmann519ca9d2014-01-10 02:07:28 -08003411 bacpy(&cp.bdaddr, &ev->bdaddr);
3412 memcpy(cp.hash192, data->hash192, sizeof(cp.hash192));
3413 memcpy(cp.randomizer192, data->randomizer192,
3414 sizeof(cp.randomizer192));
3415 memcpy(cp.hash256, data->hash256, sizeof(cp.hash256));
3416 memcpy(cp.randomizer256, data->randomizer256,
3417 sizeof(cp.randomizer256));
Szymon Janc2763eda2011-03-22 13:12:22 +01003418
Marcel Holtmann519ca9d2014-01-10 02:07:28 -08003419 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_EXT_DATA_REPLY,
3420 sizeof(cp), &cp);
3421 } else {
3422 struct hci_cp_remote_oob_data_reply cp;
3423
3424 bacpy(&cp.bdaddr, &ev->bdaddr);
3425 memcpy(cp.hash, data->hash192, sizeof(cp.hash));
3426 memcpy(cp.randomizer, data->randomizer192,
3427 sizeof(cp.randomizer));
3428
3429 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_REPLY,
3430 sizeof(cp), &cp);
3431 }
Szymon Janc2763eda2011-03-22 13:12:22 +01003432 } else {
3433 struct hci_cp_remote_oob_data_neg_reply cp;
3434
3435 bacpy(&cp.bdaddr, &ev->bdaddr);
Marcel Holtmann519ca9d2014-01-10 02:07:28 -08003436 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_NEG_REPLY,
3437 sizeof(cp), &cp);
Szymon Janc2763eda2011-03-22 13:12:22 +01003438 }
3439
Szymon Jance1ba1f12011-04-06 13:01:59 +02003440unlock:
Szymon Janc2763eda2011-03-22 13:12:22 +01003441 hci_dev_unlock(hdev);
3442}
3443
Andrei Emeltchenkod5e91192012-10-25 15:20:44 +03003444static void hci_phy_link_complete_evt(struct hci_dev *hdev,
3445 struct sk_buff *skb)
3446{
3447 struct hci_ev_phy_link_complete *ev = (void *) skb->data;
3448 struct hci_conn *hcon, *bredr_hcon;
3449
3450 BT_DBG("%s handle 0x%2.2x status 0x%2.2x", hdev->name, ev->phy_handle,
3451 ev->status);
3452
3453 hci_dev_lock(hdev);
3454
3455 hcon = hci_conn_hash_lookup_handle(hdev, ev->phy_handle);
3456 if (!hcon) {
3457 hci_dev_unlock(hdev);
3458 return;
3459 }
3460
3461 if (ev->status) {
3462 hci_conn_del(hcon);
3463 hci_dev_unlock(hdev);
3464 return;
3465 }
3466
3467 bredr_hcon = hcon->amp_mgr->l2cap_conn->hcon;
3468
3469 hcon->state = BT_CONNECTED;
3470 bacpy(&hcon->dst, &bredr_hcon->dst);
3471
3472 hci_conn_hold(hcon);
3473 hcon->disc_timeout = HCI_DISCONN_TIMEOUT;
David Herrmann76a68ba2013-04-06 20:28:37 +02003474 hci_conn_drop(hcon);
Andrei Emeltchenkod5e91192012-10-25 15:20:44 +03003475
Andrei Emeltchenkod5e91192012-10-25 15:20:44 +03003476 hci_conn_add_sysfs(hcon);
3477
Andrei Emeltchenkocf70ff22012-10-31 15:46:36 +02003478 amp_physical_cfm(bredr_hcon, hcon);
3479
Andrei Emeltchenkod5e91192012-10-25 15:20:44 +03003480 hci_dev_unlock(hdev);
Andrei Emeltchenkod5e91192012-10-25 15:20:44 +03003481}
3482
Andrei Emeltchenko27695fb2012-10-25 15:20:45 +03003483static void hci_loglink_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
3484{
3485 struct hci_ev_logical_link_complete *ev = (void *) skb->data;
3486 struct hci_conn *hcon;
3487 struct hci_chan *hchan;
3488 struct amp_mgr *mgr;
3489
3490 BT_DBG("%s log_handle 0x%4.4x phy_handle 0x%2.2x status 0x%2.2x",
3491 hdev->name, le16_to_cpu(ev->handle), ev->phy_handle,
3492 ev->status);
3493
3494 hcon = hci_conn_hash_lookup_handle(hdev, ev->phy_handle);
3495 if (!hcon)
3496 return;
3497
3498 /* Create AMP hchan */
3499 hchan = hci_chan_create(hcon);
3500 if (!hchan)
3501 return;
3502
3503 hchan->handle = le16_to_cpu(ev->handle);
3504
3505 BT_DBG("hcon %p mgr %p hchan %p", hcon, hcon->amp_mgr, hchan);
3506
3507 mgr = hcon->amp_mgr;
3508 if (mgr && mgr->bredr_chan) {
3509 struct l2cap_chan *bredr_chan = mgr->bredr_chan;
3510
3511 l2cap_chan_lock(bredr_chan);
3512
3513 bredr_chan->conn->mtu = hdev->block_mtu;
3514 l2cap_logical_cfm(bredr_chan, hchan, 0);
3515 hci_conn_hold(hcon);
3516
3517 l2cap_chan_unlock(bredr_chan);
3518 }
3519}
3520
Andrei Emeltchenko606e2a12012-10-31 15:46:31 +02003521static void hci_disconn_loglink_complete_evt(struct hci_dev *hdev,
3522 struct sk_buff *skb)
3523{
3524 struct hci_ev_disconn_logical_link_complete *ev = (void *) skb->data;
3525 struct hci_chan *hchan;
3526
3527 BT_DBG("%s log handle 0x%4.4x status 0x%2.2x", hdev->name,
3528 le16_to_cpu(ev->handle), ev->status);
3529
3530 if (ev->status)
3531 return;
3532
3533 hci_dev_lock(hdev);
3534
3535 hchan = hci_chan_lookup_handle(hdev, le16_to_cpu(ev->handle));
3536 if (!hchan)
3537 goto unlock;
3538
3539 amp_destroy_logical_link(hchan, ev->reason);
3540
3541unlock:
3542 hci_dev_unlock(hdev);
3543}
3544
Andrei Emeltchenko9eef6b32012-10-31 15:46:32 +02003545static void hci_disconn_phylink_complete_evt(struct hci_dev *hdev,
3546 struct sk_buff *skb)
3547{
3548 struct hci_ev_disconn_phy_link_complete *ev = (void *) skb->data;
3549 struct hci_conn *hcon;
3550
3551 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
3552
3553 if (ev->status)
3554 return;
3555
3556 hci_dev_lock(hdev);
3557
3558 hcon = hci_conn_hash_lookup_handle(hdev, ev->phy_handle);
3559 if (hcon) {
3560 hcon->state = BT_CLOSED;
3561 hci_conn_del(hcon);
3562 }
3563
3564 hci_dev_unlock(hdev);
3565}
3566
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003567static void hci_le_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Ville Tervofcd89c02011-02-10 22:38:47 -03003568{
3569 struct hci_ev_le_conn_complete *ev = (void *) skb->data;
3570 struct hci_conn *conn;
3571
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003572 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Ville Tervofcd89c02011-02-10 22:38:47 -03003573
3574 hci_dev_lock(hdev);
3575
Andre Guedesb47a09b2012-07-27 15:10:15 -03003576 conn = hci_conn_hash_lookup_state(hdev, LE_LINK, BT_CONNECT);
Ville Tervob62f3282011-02-10 22:38:50 -03003577 if (!conn) {
3578 conn = hci_conn_add(hdev, LE_LINK, &ev->bdaddr);
3579 if (!conn) {
3580 BT_ERR("No memory for new connection");
Andre Guedes230fd162012-07-27 15:10:10 -03003581 goto unlock;
Ville Tervob62f3282011-02-10 22:38:50 -03003582 }
Andre Guedes29b79882011-05-31 14:20:54 -03003583
3584 conn->dst_type = ev->bdaddr_type;
Andre Guedesb9b343d2012-07-27 15:10:11 -03003585
Marcel Holtmann880be4e2013-10-13 07:25:18 -07003586 /* The advertising parameters for own address type
3587 * define which source address and source address
3588 * type this connections has.
3589 */
3590 if (bacmp(&conn->src, BDADDR_ANY)) {
3591 conn->src_type = ADDR_LE_DEV_PUBLIC;
3592 } else {
3593 bacpy(&conn->src, &hdev->static_addr);
3594 conn->src_type = ADDR_LE_DEV_RANDOM;
3595 }
3596
Andre Guedesb9b343d2012-07-27 15:10:11 -03003597 if (ev->role == LE_CONN_ROLE_MASTER) {
3598 conn->out = true;
3599 conn->link_mode |= HCI_LM_MASTER;
3600 }
Ville Tervob62f3282011-02-10 22:38:50 -03003601 }
Ville Tervofcd89c02011-02-10 22:38:47 -03003602
Andre Guedescd17dec2012-07-27 15:10:16 -03003603 if (ev->status) {
3604 mgmt_connect_failed(hdev, &conn->dst, conn->type,
3605 conn->dst_type, ev->status);
3606 hci_proto_connect_cfm(conn, ev->status);
3607 conn->state = BT_CLOSED;
3608 hci_conn_del(conn);
3609 goto unlock;
3610 }
3611
Johan Hedbergb644ba32012-01-17 21:48:47 +02003612 if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
3613 mgmt_device_connected(hdev, &ev->bdaddr, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003614 conn->dst_type, 0, NULL, 0, NULL);
Vinicius Costa Gomes83bc71b2011-05-06 18:41:43 -03003615
Vinicius Costa Gomes7b5c0d52011-06-09 18:50:50 -03003616 conn->sec_level = BT_SECURITY_LOW;
Ville Tervofcd89c02011-02-10 22:38:47 -03003617 conn->handle = __le16_to_cpu(ev->handle);
3618 conn->state = BT_CONNECTED;
3619
Jukka Rissanen18722c22013-12-11 17:05:37 +02003620 if (test_bit(HCI_6LOWPAN_ENABLED, &hdev->dev_flags))
3621 set_bit(HCI_CONN_6LOWPAN, &conn->flags);
3622
Ville Tervofcd89c02011-02-10 22:38:47 -03003623 hci_conn_add_sysfs(conn);
3624
3625 hci_proto_connect_cfm(conn, ev->status);
3626
3627unlock:
3628 hci_dev_unlock(hdev);
3629}
3630
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003631static void hci_le_adv_report_evt(struct hci_dev *hdev, struct sk_buff *skb)
Andre Guedes9aa04c92011-05-26 16:23:51 -03003632{
Andre Guedese95beb42011-09-26 20:48:35 -03003633 u8 num_reports = skb->data[0];
3634 void *ptr = &skb->data[1];
Andre Guedes3c9e9192012-01-10 18:20:50 -03003635 s8 rssi;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003636
Andre Guedese95beb42011-09-26 20:48:35 -03003637 while (num_reports--) {
3638 struct hci_ev_le_advertising_info *ev = ptr;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003639
Andre Guedes3c9e9192012-01-10 18:20:50 -03003640 rssi = ev->data[ev->length];
3641 mgmt_device_found(hdev, &ev->bdaddr, LE_LINK, ev->bdaddr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003642 NULL, rssi, 0, 1, ev->data, ev->length);
Andre Guedes3c9e9192012-01-10 18:20:50 -03003643
Andre Guedese95beb42011-09-26 20:48:35 -03003644 ptr += sizeof(*ev) + ev->length + 1;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003645 }
Andre Guedes9aa04c92011-05-26 16:23:51 -03003646}
3647
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003648static void hci_le_ltk_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003649{
3650 struct hci_ev_le_ltk_req *ev = (void *) skb->data;
3651 struct hci_cp_le_ltk_reply cp;
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003652 struct hci_cp_le_ltk_neg_reply neg;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003653 struct hci_conn *conn;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003654 struct smp_ltk *ltk;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003655
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003656 BT_DBG("%s handle 0x%4.4x", hdev->name, __le16_to_cpu(ev->handle));
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003657
3658 hci_dev_lock(hdev);
3659
3660 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003661 if (conn == NULL)
3662 goto not_found;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003663
Johan Hedberg98a0b842014-01-30 19:40:00 -08003664 ltk = hci_find_ltk(hdev, ev->ediv, ev->random, conn->out);
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003665 if (ltk == NULL)
3666 goto not_found;
3667
3668 memcpy(cp.ltk, ltk->val, sizeof(ltk->val));
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003669 cp.handle = cpu_to_le16(conn->handle);
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003670
3671 if (ltk->authenticated)
Andre Guedesf8776212013-07-31 16:25:28 -03003672 conn->pending_sec_level = BT_SECURITY_HIGH;
3673 else
3674 conn->pending_sec_level = BT_SECURITY_MEDIUM;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003675
Andre Guedes89cbb4d2013-07-31 16:25:29 -03003676 conn->enc_key_size = ltk->enc_size;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003677
3678 hci_send_cmd(hdev, HCI_OP_LE_LTK_REPLY, sizeof(cp), &cp);
3679
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003680 if (ltk->type & HCI_SMP_STK) {
3681 list_del(&ltk->list);
3682 kfree(ltk);
3683 }
3684
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003685 hci_dev_unlock(hdev);
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003686
3687 return;
3688
3689not_found:
3690 neg.handle = ev->handle;
3691 hci_send_cmd(hdev, HCI_OP_LE_LTK_NEG_REPLY, sizeof(neg), &neg);
3692 hci_dev_unlock(hdev);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003693}
3694
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003695static void hci_le_meta_evt(struct hci_dev *hdev, struct sk_buff *skb)
Ville Tervofcd89c02011-02-10 22:38:47 -03003696{
3697 struct hci_ev_le_meta *le_ev = (void *) skb->data;
3698
3699 skb_pull(skb, sizeof(*le_ev));
3700
3701 switch (le_ev->subevent) {
3702 case HCI_EV_LE_CONN_COMPLETE:
3703 hci_le_conn_complete_evt(hdev, skb);
3704 break;
3705
Andre Guedes9aa04c92011-05-26 16:23:51 -03003706 case HCI_EV_LE_ADVERTISING_REPORT:
3707 hci_le_adv_report_evt(hdev, skb);
3708 break;
3709
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003710 case HCI_EV_LE_LTK_REQ:
3711 hci_le_ltk_request_evt(hdev, skb);
3712 break;
3713
Ville Tervofcd89c02011-02-10 22:38:47 -03003714 default:
3715 break;
3716 }
3717}
3718
Andrei Emeltchenko9495b2e2012-09-27 17:26:22 +03003719static void hci_chan_selected_evt(struct hci_dev *hdev, struct sk_buff *skb)
3720{
3721 struct hci_ev_channel_selected *ev = (void *) skb->data;
3722 struct hci_conn *hcon;
3723
3724 BT_DBG("%s handle 0x%2.2x", hdev->name, ev->phy_handle);
3725
3726 skb_pull(skb, sizeof(*ev));
3727
3728 hcon = hci_conn_hash_lookup_handle(hdev, ev->phy_handle);
3729 if (!hcon)
3730 return;
3731
3732 amp_read_loc_assoc_final_data(hdev, hcon);
3733}
3734
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735void hci_event_packet(struct hci_dev *hdev, struct sk_buff *skb)
3736{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003737 struct hci_event_hdr *hdr = (void *) skb->data;
3738 __u8 event = hdr->evt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739
Johan Hedbergb6ddb632013-04-02 13:34:31 +03003740 hci_dev_lock(hdev);
3741
3742 /* Received events are (currently) only needed when a request is
3743 * ongoing so avoid unnecessary memory allocation.
3744 */
3745 if (hdev->req_status == HCI_REQ_PEND) {
3746 kfree_skb(hdev->recv_evt);
3747 hdev->recv_evt = skb_clone(skb, GFP_KERNEL);
3748 }
3749
3750 hci_dev_unlock(hdev);
3751
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 skb_pull(skb, HCI_EVENT_HDR_SIZE);
3753
Johan Hedberg02350a72013-04-03 21:50:29 +03003754 if (hdev->sent_cmd && bt_cb(hdev->sent_cmd)->req.event == event) {
Johannes Bergc1f23a22013-10-07 18:19:16 +02003755 struct hci_command_hdr *cmd_hdr = (void *) hdev->sent_cmd->data;
3756 u16 opcode = __le16_to_cpu(cmd_hdr->opcode);
Johan Hedberg02350a72013-04-03 21:50:29 +03003757
3758 hci_req_cmd_complete(hdev, opcode, 0);
3759 }
3760
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003761 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 case HCI_EV_INQUIRY_COMPLETE:
3763 hci_inquiry_complete_evt(hdev, skb);
3764 break;
3765
3766 case HCI_EV_INQUIRY_RESULT:
3767 hci_inquiry_result_evt(hdev, skb);
3768 break;
3769
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003770 case HCI_EV_CONN_COMPLETE:
3771 hci_conn_complete_evt(hdev, skb);
Marcel Holtmann21d9e302005-09-13 01:32:25 +02003772 break;
3773
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 case HCI_EV_CONN_REQUEST:
3775 hci_conn_request_evt(hdev, skb);
3776 break;
3777
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 case HCI_EV_DISCONN_COMPLETE:
3779 hci_disconn_complete_evt(hdev, skb);
3780 break;
3781
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782 case HCI_EV_AUTH_COMPLETE:
3783 hci_auth_complete_evt(hdev, skb);
3784 break;
3785
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003786 case HCI_EV_REMOTE_NAME:
3787 hci_remote_name_evt(hdev, skb);
3788 break;
3789
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790 case HCI_EV_ENCRYPT_CHANGE:
3791 hci_encrypt_change_evt(hdev, skb);
3792 break;
3793
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003794 case HCI_EV_CHANGE_LINK_KEY_COMPLETE:
3795 hci_change_link_key_complete_evt(hdev, skb);
3796 break;
3797
3798 case HCI_EV_REMOTE_FEATURES:
3799 hci_remote_features_evt(hdev, skb);
3800 break;
3801
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003802 case HCI_EV_CMD_COMPLETE:
3803 hci_cmd_complete_evt(hdev, skb);
3804 break;
3805
3806 case HCI_EV_CMD_STATUS:
3807 hci_cmd_status_evt(hdev, skb);
3808 break;
3809
3810 case HCI_EV_ROLE_CHANGE:
3811 hci_role_change_evt(hdev, skb);
3812 break;
3813
3814 case HCI_EV_NUM_COMP_PKTS:
3815 hci_num_comp_pkts_evt(hdev, skb);
3816 break;
3817
3818 case HCI_EV_MODE_CHANGE:
3819 hci_mode_change_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820 break;
3821
3822 case HCI_EV_PIN_CODE_REQ:
3823 hci_pin_code_request_evt(hdev, skb);
3824 break;
3825
3826 case HCI_EV_LINK_KEY_REQ:
3827 hci_link_key_request_evt(hdev, skb);
3828 break;
3829
3830 case HCI_EV_LINK_KEY_NOTIFY:
3831 hci_link_key_notify_evt(hdev, skb);
3832 break;
3833
3834 case HCI_EV_CLOCK_OFFSET:
3835 hci_clock_offset_evt(hdev, skb);
3836 break;
3837
Marcel Holtmanna8746412008-07-14 20:13:46 +02003838 case HCI_EV_PKT_TYPE_CHANGE:
3839 hci_pkt_type_change_evt(hdev, skb);
3840 break;
3841
Marcel Holtmann85a1e932005-08-09 20:28:02 -07003842 case HCI_EV_PSCAN_REP_MODE:
3843 hci_pscan_rep_mode_evt(hdev, skb);
3844 break;
3845
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003846 case HCI_EV_INQUIRY_RESULT_WITH_RSSI:
3847 hci_inquiry_result_with_rssi_evt(hdev, skb);
3848 break;
3849
3850 case HCI_EV_REMOTE_EXT_FEATURES:
3851 hci_remote_ext_features_evt(hdev, skb);
3852 break;
3853
3854 case HCI_EV_SYNC_CONN_COMPLETE:
3855 hci_sync_conn_complete_evt(hdev, skb);
3856 break;
3857
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003858 case HCI_EV_EXTENDED_INQUIRY_RESULT:
3859 hci_extended_inquiry_result_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 break;
3861
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003862 case HCI_EV_KEY_REFRESH_COMPLETE:
3863 hci_key_refresh_complete_evt(hdev, skb);
3864 break;
3865
Marcel Holtmann04936842008-07-14 20:13:48 +02003866 case HCI_EV_IO_CAPA_REQUEST:
3867 hci_io_capa_request_evt(hdev, skb);
3868 break;
3869
Johan Hedberg03b555e2011-01-04 15:40:05 +02003870 case HCI_EV_IO_CAPA_REPLY:
3871 hci_io_capa_reply_evt(hdev, skb);
3872 break;
3873
Johan Hedberga5c29682011-02-19 12:05:57 -03003874 case HCI_EV_USER_CONFIRM_REQUEST:
3875 hci_user_confirm_request_evt(hdev, skb);
3876 break;
3877
Brian Gix1143d452011-11-23 08:28:34 -08003878 case HCI_EV_USER_PASSKEY_REQUEST:
3879 hci_user_passkey_request_evt(hdev, skb);
3880 break;
3881
Johan Hedberg92a25252012-09-06 18:39:26 +03003882 case HCI_EV_USER_PASSKEY_NOTIFY:
3883 hci_user_passkey_notify_evt(hdev, skb);
3884 break;
3885
3886 case HCI_EV_KEYPRESS_NOTIFY:
3887 hci_keypress_notify_evt(hdev, skb);
3888 break;
3889
Marcel Holtmann04936842008-07-14 20:13:48 +02003890 case HCI_EV_SIMPLE_PAIR_COMPLETE:
3891 hci_simple_pair_complete_evt(hdev, skb);
3892 break;
3893
Marcel Holtmann41a96212008-07-14 20:13:48 +02003894 case HCI_EV_REMOTE_HOST_FEATURES:
3895 hci_remote_host_features_evt(hdev, skb);
3896 break;
3897
Ville Tervofcd89c02011-02-10 22:38:47 -03003898 case HCI_EV_LE_META:
3899 hci_le_meta_evt(hdev, skb);
3900 break;
3901
Andrei Emeltchenko9495b2e2012-09-27 17:26:22 +03003902 case HCI_EV_CHANNEL_SELECTED:
3903 hci_chan_selected_evt(hdev, skb);
3904 break;
3905
Szymon Janc2763eda2011-03-22 13:12:22 +01003906 case HCI_EV_REMOTE_OOB_DATA_REQUEST:
3907 hci_remote_oob_data_request_evt(hdev, skb);
3908 break;
3909
Andrei Emeltchenkod5e91192012-10-25 15:20:44 +03003910 case HCI_EV_PHY_LINK_COMPLETE:
3911 hci_phy_link_complete_evt(hdev, skb);
3912 break;
3913
Andrei Emeltchenko27695fb2012-10-25 15:20:45 +03003914 case HCI_EV_LOGICAL_LINK_COMPLETE:
3915 hci_loglink_complete_evt(hdev, skb);
3916 break;
3917
Andrei Emeltchenko606e2a12012-10-31 15:46:31 +02003918 case HCI_EV_DISCONN_LOGICAL_LINK_COMPLETE:
3919 hci_disconn_loglink_complete_evt(hdev, skb);
3920 break;
3921
Andrei Emeltchenko9eef6b32012-10-31 15:46:32 +02003922 case HCI_EV_DISCONN_PHY_LINK_COMPLETE:
3923 hci_disconn_phylink_complete_evt(hdev, skb);
3924 break;
3925
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02003926 case HCI_EV_NUM_COMP_BLOCKS:
3927 hci_num_comp_blocks_evt(hdev, skb);
3928 break;
3929
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003930 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003931 BT_DBG("%s event 0x%2.2x", hdev->name, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 break;
3933 }
3934
3935 kfree_skb(skb);
3936 hdev->stat.evt_rx++;
3937}