blob: 8980bd24b8c07ec70247cb4afc500fdfb00df325 [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"
Johan Hedberg2ceba532014-06-16 19:25:16 +030035#include "smp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037/* Handle HCI Event packets */
38
Marcel Holtmanna9de9242007-10-20 13:33:56 +020039static void hci_cc_inquiry_cancel(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040{
Marcel Holtmanna9de9242007-10-20 13:33:56 +020041 __u8 status = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +030043 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Andre Guedes82f47852013-04-30 15:29:34 -030045 if (status)
Marcel Holtmanna9de9242007-10-20 13:33:56 +020046 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Andre Guedes89352e72011-11-04 14:16:53 -030048 clear_bit(HCI_INQUIRY, &hdev->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +010049 smp_mb__after_atomic(); /* wake_up_bit advises about this barrier */
Andre Guedes3e13fa12013-03-27 20:04:56 -030050 wake_up_bit(&hdev->flags, HCI_INQUIRY);
Andre Guedes89352e72011-11-04 14:16:53 -030051
Johan Hedberg50143a42014-06-10 14:05:57 +030052 hci_dev_lock(hdev);
53 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
54 hci_dev_unlock(hdev);
55
Marcel Holtmanna9de9242007-10-20 13:33:56 +020056 hci_conn_check_pending(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
58
Andre Guedes4d934832012-03-21 00:03:35 -030059static void hci_cc_periodic_inq(struct hci_dev *hdev, struct sk_buff *skb)
60{
61 __u8 status = *((__u8 *) skb->data);
62
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +030063 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedesae854a72012-03-21 00:03:36 -030064
65 if (status)
66 return;
67
68 set_bit(HCI_PERIODIC_INQ, &hdev->dev_flags);
Andre Guedes4d934832012-03-21 00:03:35 -030069}
70
Marcel Holtmanna9de9242007-10-20 13:33:56 +020071static void hci_cc_exit_periodic_inq(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Marcel Holtmanna9de9242007-10-20 13:33:56 +020073 __u8 status = *((__u8 *) skb->data);
74
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +030075 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +020076
77 if (status)
78 return;
79
Andre Guedesae854a72012-03-21 00:03:36 -030080 clear_bit(HCI_PERIODIC_INQ, &hdev->dev_flags);
81
Marcel Holtmanna9de9242007-10-20 13:33:56 +020082 hci_conn_check_pending(hdev);
83}
84
Gustavo Padovan807deac2012-05-17 00:36:24 -030085static void hci_cc_remote_name_req_cancel(struct hci_dev *hdev,
86 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +020087{
88 BT_DBG("%s", hdev->name);
89}
90
91static void hci_cc_role_discovery(struct hci_dev *hdev, struct sk_buff *skb)
92{
93 struct hci_rp_role_discovery *rp = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +030096 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Marcel Holtmanna9de9242007-10-20 13:33:56 +020098 if (rp->status)
99 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200101 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200103 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
104 if (conn) {
105 if (rp->role)
Johan Hedberg4dae2792014-06-24 17:03:50 +0300106 clear_bit(HCI_CONN_MASTER, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200107 else
Johan Hedberg4dae2792014-06-24 17:03:50 +0300108 set_bit(HCI_CONN_MASTER, &conn->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200110
111 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200114static void hci_cc_read_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
115{
116 struct hci_rp_read_link_policy *rp = (void *) skb->data;
117 struct hci_conn *conn;
118
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300119 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200120
121 if (rp->status)
122 return;
123
124 hci_dev_lock(hdev);
125
126 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
127 if (conn)
128 conn->link_policy = __le16_to_cpu(rp->policy);
129
130 hci_dev_unlock(hdev);
131}
132
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200133static void hci_cc_write_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200135 struct hci_rp_write_link_policy *rp = (void *) skb->data;
136 struct hci_conn *conn;
137 void *sent;
138
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300139 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200140
141 if (rp->status)
142 return;
143
144 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LINK_POLICY);
145 if (!sent)
146 return;
147
148 hci_dev_lock(hdev);
149
150 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200151 if (conn)
Harvey Harrison83985312008-05-02 16:25:46 -0700152 conn->link_policy = get_unaligned_le16(sent + 2);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200153
154 hci_dev_unlock(hdev);
155}
156
Gustavo Padovan807deac2012-05-17 00:36:24 -0300157static void hci_cc_read_def_link_policy(struct hci_dev *hdev,
158 struct sk_buff *skb)
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200159{
160 struct hci_rp_read_def_link_policy *rp = (void *) skb->data;
161
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300162 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200163
164 if (rp->status)
165 return;
166
167 hdev->link_policy = __le16_to_cpu(rp->policy);
168}
169
Gustavo Padovan807deac2012-05-17 00:36:24 -0300170static void hci_cc_write_def_link_policy(struct hci_dev *hdev,
171 struct sk_buff *skb)
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200172{
173 __u8 status = *((__u8 *) skb->data);
174 void *sent;
175
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300176 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200177
Marcel Holtmann45296ac2014-07-05 10:48:01 +0200178 if (status)
179 return;
180
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200181 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_DEF_LINK_POLICY);
182 if (!sent)
183 return;
184
Marcel Holtmann45296ac2014-07-05 10:48:01 +0200185 hdev->link_policy = get_unaligned_le16(sent);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200186}
187
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200188static void hci_cc_reset(struct hci_dev *hdev, struct sk_buff *skb)
189{
190 __u8 status = *((__u8 *) skb->data);
191
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300192 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200193
Gustavo F. Padovan10572132011-03-16 15:36:29 -0300194 clear_bit(HCI_RESET, &hdev->flags);
195
Johan Hedberga297e972012-02-21 17:55:47 +0200196 /* Reset all non-persistent flags */
Johan Hedberg2cc6fb02013-03-15 17:06:57 -0500197 hdev->dev_flags &= ~HCI_PERSISTENT_MASK;
Andre Guedes69775ff2012-02-23 16:50:05 +0200198
199 hdev->discovery.state = DISCOVERY_STOPPED;
Johan Hedbergbbaf4442012-11-08 01:22:59 +0100200 hdev->inq_tx_power = HCI_TX_POWER_INVALID;
201 hdev->adv_tx_power = HCI_TX_POWER_INVALID;
Johan Hedberg3f0f5242012-11-08 01:23:00 +0100202
203 memset(hdev->adv_data, 0, sizeof(hdev->adv_data));
204 hdev->adv_data_len = 0;
Marcel Holtmannf8e808b2013-10-16 00:16:47 -0700205
206 memset(hdev->scan_rsp_data, 0, sizeof(hdev->scan_rsp_data));
207 hdev->scan_rsp_data_len = 0;
Marcel Holtmann06f5b772013-10-19 07:09:11 -0700208
Marcel Holtmann533553f2014-03-21 12:18:10 -0700209 hdev->le_scan_type = LE_SCAN_PASSIVE;
210
Marcel Holtmann06f5b772013-10-19 07:09:11 -0700211 hdev->ssp_debug_mode = 0;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200212}
213
214static void hci_cc_write_local_name(struct hci_dev *hdev, struct sk_buff *skb)
215{
216 __u8 status = *((__u8 *) skb->data);
217 void *sent;
218
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300219 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200220
221 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LOCAL_NAME);
222 if (!sent)
223 return;
224
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200225 hci_dev_lock(hdev);
226
Johan Hedbergf51d5b22012-02-22 18:17:32 +0200227 if (test_bit(HCI_MGMT, &hdev->dev_flags))
228 mgmt_set_local_name_complete(hdev, sent, status);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +0200229 else if (!status)
230 memcpy(hdev->dev_name, sent, HCI_MAX_NAME_LENGTH);
Johan Hedbergf51d5b22012-02-22 18:17:32 +0200231
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200232 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200233}
234
235static void hci_cc_read_local_name(struct hci_dev *hdev, struct sk_buff *skb)
236{
237 struct hci_rp_read_local_name *rp = (void *) skb->data;
238
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300239 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200240
241 if (rp->status)
242 return;
243
Johan Hedbergdb99b5f2012-02-22 20:14:22 +0200244 if (test_bit(HCI_SETUP, &hdev->dev_flags))
245 memcpy(hdev->dev_name, rp->name, HCI_MAX_NAME_LENGTH);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200246}
247
248static void hci_cc_write_auth_enable(struct hci_dev *hdev, struct sk_buff *skb)
249{
250 __u8 status = *((__u8 *) skb->data);
251 void *sent;
252
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300253 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200254
255 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_AUTH_ENABLE);
256 if (!sent)
257 return;
258
259 if (!status) {
260 __u8 param = *((__u8 *) sent);
261
262 if (param == AUTH_ENABLED)
263 set_bit(HCI_AUTH, &hdev->flags);
264 else
265 clear_bit(HCI_AUTH, &hdev->flags);
266 }
267
Johan Hedberg33ef95e2012-02-16 23:56:27 +0200268 if (test_bit(HCI_MGMT, &hdev->dev_flags))
269 mgmt_auth_enable_complete(hdev, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200270}
271
272static void hci_cc_write_encrypt_mode(struct hci_dev *hdev, struct sk_buff *skb)
273{
274 __u8 status = *((__u8 *) skb->data);
Marcel Holtmann45296ac2014-07-05 10:48:01 +0200275 __u8 param;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200276 void *sent;
277
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300278 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200279
Marcel Holtmann45296ac2014-07-05 10:48:01 +0200280 if (status)
281 return;
282
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200283 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_ENCRYPT_MODE);
284 if (!sent)
285 return;
286
Marcel Holtmann45296ac2014-07-05 10:48:01 +0200287 param = *((__u8 *) sent);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200288
Marcel Holtmann45296ac2014-07-05 10:48:01 +0200289 if (param)
290 set_bit(HCI_ENCRYPT, &hdev->flags);
291 else
292 clear_bit(HCI_ENCRYPT, &hdev->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200293}
294
295static void hci_cc_write_scan_enable(struct hci_dev *hdev, struct sk_buff *skb)
296{
Marcel Holtmann45296ac2014-07-05 10:48:01 +0200297 __u8 status = *((__u8 *) skb->data);
298 __u8 param;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200299 void *sent;
300
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300301 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200302
303 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SCAN_ENABLE);
304 if (!sent)
305 return;
306
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200307 param = *((__u8 *) sent);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200308
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200309 hci_dev_lock(hdev);
310
Mikel Astizfa1bd912012-08-09 09:52:29 +0200311 if (status) {
Johan Hedberg2d7cee52011-11-07 22:16:03 +0200312 hdev->discov_timeout = 0;
313 goto done;
314 }
315
Johan Hedbergbc6d2d02014-07-10 12:09:08 +0300316 if (param & SCAN_INQUIRY)
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200317 set_bit(HCI_ISCAN, &hdev->flags);
Johan Hedbergbc6d2d02014-07-10 12:09:08 +0300318 else
319 clear_bit(HCI_ISCAN, &hdev->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200320
Johan Hedberg031547d2014-07-10 12:09:06 +0300321 if (param & SCAN_PAGE)
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200322 set_bit(HCI_PSCAN, &hdev->flags);
Johan Hedbergbc6d2d02014-07-10 12:09:08 +0300323 else
324 clear_bit(HCI_ISCAN, &hdev->flags);
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200325
326done:
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200327 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200328}
329
330static void hci_cc_read_class_of_dev(struct hci_dev *hdev, struct sk_buff *skb)
331{
332 struct hci_rp_read_class_of_dev *rp = (void *) skb->data;
333
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300334 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200335
336 if (rp->status)
337 return;
338
339 memcpy(hdev->dev_class, rp->dev_class, 3);
340
341 BT_DBG("%s class 0x%.2x%.2x%.2x", hdev->name,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300342 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200343}
344
345static void hci_cc_write_class_of_dev(struct hci_dev *hdev, struct sk_buff *skb)
346{
347 __u8 status = *((__u8 *) skb->data);
348 void *sent;
349
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300350 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200351
352 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_CLASS_OF_DEV);
353 if (!sent)
354 return;
355
Marcel Holtmann7f9a9032012-02-22 18:38:01 +0100356 hci_dev_lock(hdev);
357
358 if (status == 0)
359 memcpy(hdev->dev_class, sent, 3);
360
361 if (test_bit(HCI_MGMT, &hdev->dev_flags))
362 mgmt_set_class_of_dev_complete(hdev, sent, status);
363
364 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200365}
366
367static void hci_cc_read_voice_setting(struct hci_dev *hdev, struct sk_buff *skb)
368{
369 struct hci_rp_read_voice_setting *rp = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 __u16 setting;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200371
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300372 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200373
374 if (rp->status)
375 return;
376
377 setting = __le16_to_cpu(rp->voice_setting);
378
Marcel Holtmannf383f272008-07-14 20:13:47 +0200379 if (hdev->voice_setting == setting)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200380 return;
381
382 hdev->voice_setting = setting;
383
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300384 BT_DBG("%s voice setting 0x%4.4x", hdev->name, setting);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200385
Gustavo F. Padovan3c547112011-12-14 22:58:44 -0200386 if (hdev->notify)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200387 hdev->notify(hdev, HCI_NOTIFY_VOICE_SETTING);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200388}
389
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300390static void hci_cc_write_voice_setting(struct hci_dev *hdev,
391 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200392{
393 __u8 status = *((__u8 *) skb->data);
Marcel Holtmannf383f272008-07-14 20:13:47 +0200394 __u16 setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 void *sent;
396
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300397 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Marcel Holtmannf383f272008-07-14 20:13:47 +0200399 if (status)
400 return;
401
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200402 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_VOICE_SETTING);
403 if (!sent)
404 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Marcel Holtmannf383f272008-07-14 20:13:47 +0200406 setting = get_unaligned_le16(sent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Marcel Holtmannf383f272008-07-14 20:13:47 +0200408 if (hdev->voice_setting == setting)
409 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Marcel Holtmannf383f272008-07-14 20:13:47 +0200411 hdev->voice_setting = setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300413 BT_DBG("%s voice setting 0x%4.4x", hdev->name, setting);
Marcel Holtmannf383f272008-07-14 20:13:47 +0200414
Gustavo F. Padovan3c547112011-12-14 22:58:44 -0200415 if (hdev->notify)
Marcel Holtmannf383f272008-07-14 20:13:47 +0200416 hdev->notify(hdev, HCI_NOTIFY_VOICE_SETTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
Marcel Holtmannb4cb9fb2013-10-14 13:56:16 -0700419static void hci_cc_read_num_supported_iac(struct hci_dev *hdev,
420 struct sk_buff *skb)
421{
422 struct hci_rp_read_num_supported_iac *rp = (void *) skb->data;
423
424 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
425
426 if (rp->status)
427 return;
428
429 hdev->num_iac = rp->num_iac;
430
431 BT_DBG("%s num iac %d", hdev->name, hdev->num_iac);
432}
433
Marcel Holtmann333140b2008-07-14 20:13:48 +0200434static void hci_cc_write_ssp_mode(struct hci_dev *hdev, struct sk_buff *skb)
435{
436 __u8 status = *((__u8 *) skb->data);
Johan Hedberg5ed8eb22012-10-25 00:09:51 +0300437 struct hci_cp_write_ssp_mode *sent;
Marcel Holtmann333140b2008-07-14 20:13:48 +0200438
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300439 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmann333140b2008-07-14 20:13:48 +0200440
Marcel Holtmann333140b2008-07-14 20:13:48 +0200441 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SSP_MODE);
442 if (!sent)
443 return;
444
Johan Hedberg5ed8eb22012-10-25 00:09:51 +0300445 if (!status) {
446 if (sent->mode)
Johan Hedbergcad718e2013-04-17 15:00:51 +0300447 hdev->features[1][0] |= LMP_HOST_SSP;
Johan Hedberg5ed8eb22012-10-25 00:09:51 +0300448 else
Johan Hedbergcad718e2013-04-17 15:00:51 +0300449 hdev->features[1][0] &= ~LMP_HOST_SSP;
Johan Hedberg5ed8eb22012-10-25 00:09:51 +0300450 }
451
Johan Hedberged2c4ee2012-02-17 00:56:28 +0200452 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg5ed8eb22012-10-25 00:09:51 +0300453 mgmt_ssp_enable_complete(hdev, sent->mode, status);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +0200454 else if (!status) {
Johan Hedberg5ed8eb22012-10-25 00:09:51 +0300455 if (sent->mode)
Johan Hedbergc0ecddc2012-02-22 12:38:31 +0200456 set_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
457 else
458 clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
459 }
Marcel Holtmann333140b2008-07-14 20:13:48 +0200460}
461
Marcel Holtmanneac83dc2014-01-10 02:07:23 -0800462static void hci_cc_write_sc_support(struct hci_dev *hdev, struct sk_buff *skb)
463{
464 u8 status = *((u8 *) skb->data);
465 struct hci_cp_write_sc_support *sent;
466
467 BT_DBG("%s status 0x%2.2x", hdev->name, status);
468
469 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SC_SUPPORT);
470 if (!sent)
471 return;
472
473 if (!status) {
474 if (sent->support)
475 hdev->features[1][0] |= LMP_HOST_SC;
476 else
477 hdev->features[1][0] &= ~LMP_HOST_SC;
478 }
479
480 if (test_bit(HCI_MGMT, &hdev->dev_flags))
481 mgmt_sc_enable_complete(hdev, sent->support, status);
482 else if (!status) {
483 if (sent->support)
484 set_bit(HCI_SC_ENABLED, &hdev->dev_flags);
485 else
486 clear_bit(HCI_SC_ENABLED, &hdev->dev_flags);
487 }
488}
489
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200490static void hci_cc_read_local_version(struct hci_dev *hdev, struct sk_buff *skb)
491{
492 struct hci_rp_read_local_version *rp = (void *) skb->data;
493
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300494 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200495
496 if (rp->status)
Johan Hedberg42c6b122013-03-05 20:37:49 +0200497 return;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200498
Marcel Holtmann0d5551f2013-10-18 12:04:50 -0700499 if (test_bit(HCI_SETUP, &hdev->dev_flags)) {
500 hdev->hci_ver = rp->hci_ver;
501 hdev->hci_rev = __le16_to_cpu(rp->hci_rev);
502 hdev->lmp_ver = rp->lmp_ver;
503 hdev->manufacturer = __le16_to_cpu(rp->manufacturer);
504 hdev->lmp_subver = __le16_to_cpu(rp->lmp_subver);
505 }
Johan Hedbergd5859e22011-01-25 01:19:58 +0200506}
507
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300508static void hci_cc_read_local_commands(struct hci_dev *hdev,
509 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200510{
511 struct hci_rp_read_local_commands *rp = (void *) skb->data;
512
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300513 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200514
Marcel Holtmann6a070e62013-10-31 04:54:33 -0700515 if (rp->status)
516 return;
517
518 if (test_bit(HCI_SETUP, &hdev->dev_flags))
Johan Hedberg2177bab2013-03-05 20:37:43 +0200519 memcpy(hdev->commands, rp->commands, sizeof(hdev->commands));
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200520}
521
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300522static void hci_cc_read_local_features(struct hci_dev *hdev,
523 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200524{
525 struct hci_rp_read_local_features *rp = (void *) skb->data;
526
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300527 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200528
529 if (rp->status)
530 return;
531
532 memcpy(hdev->features, rp->features, 8);
533
534 /* Adjust default settings according to features
535 * supported by device. */
536
Johan Hedbergcad718e2013-04-17 15:00:51 +0300537 if (hdev->features[0][0] & LMP_3SLOT)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200538 hdev->pkt_type |= (HCI_DM3 | HCI_DH3);
539
Johan Hedbergcad718e2013-04-17 15:00:51 +0300540 if (hdev->features[0][0] & LMP_5SLOT)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200541 hdev->pkt_type |= (HCI_DM5 | HCI_DH5);
542
Johan Hedbergcad718e2013-04-17 15:00:51 +0300543 if (hdev->features[0][1] & LMP_HV2) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200544 hdev->pkt_type |= (HCI_HV2);
545 hdev->esco_type |= (ESCO_HV2);
546 }
547
Johan Hedbergcad718e2013-04-17 15:00:51 +0300548 if (hdev->features[0][1] & LMP_HV3) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200549 hdev->pkt_type |= (HCI_HV3);
550 hdev->esco_type |= (ESCO_HV3);
551 }
552
Andre Guedes45db810f2012-07-24 15:03:49 -0300553 if (lmp_esco_capable(hdev))
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200554 hdev->esco_type |= (ESCO_EV3);
555
Johan Hedbergcad718e2013-04-17 15:00:51 +0300556 if (hdev->features[0][4] & LMP_EV4)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200557 hdev->esco_type |= (ESCO_EV4);
558
Johan Hedbergcad718e2013-04-17 15:00:51 +0300559 if (hdev->features[0][4] & LMP_EV5)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200560 hdev->esco_type |= (ESCO_EV5);
561
Johan Hedbergcad718e2013-04-17 15:00:51 +0300562 if (hdev->features[0][5] & LMP_EDR_ESCO_2M)
Marcel Holtmannefc76882009-02-06 09:13:37 +0100563 hdev->esco_type |= (ESCO_2EV3);
564
Johan Hedbergcad718e2013-04-17 15:00:51 +0300565 if (hdev->features[0][5] & LMP_EDR_ESCO_3M)
Marcel Holtmannefc76882009-02-06 09:13:37 +0100566 hdev->esco_type |= (ESCO_3EV3);
567
Johan Hedbergcad718e2013-04-17 15:00:51 +0300568 if (hdev->features[0][5] & LMP_EDR_3S_ESCO)
Marcel Holtmannefc76882009-02-06 09:13:37 +0100569 hdev->esco_type |= (ESCO_2EV5 | ESCO_3EV5);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200570}
571
Andre Guedes971e3a42011-06-30 19:20:52 -0300572static void hci_cc_read_local_ext_features(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300573 struct sk_buff *skb)
Andre Guedes971e3a42011-06-30 19:20:52 -0300574{
575 struct hci_rp_read_local_ext_features *rp = (void *) skb->data;
576
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300577 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Andre Guedes971e3a42011-06-30 19:20:52 -0300578
579 if (rp->status)
Johan Hedberg42c6b122013-03-05 20:37:49 +0200580 return;
Andre Guedes971e3a42011-06-30 19:20:52 -0300581
Marcel Holtmann57af75a2013-10-18 12:04:47 -0700582 if (hdev->max_page < rp->max_page)
583 hdev->max_page = rp->max_page;
Johan Hedbergd2c5d772013-04-17 15:00:52 +0300584
Johan Hedbergcad718e2013-04-17 15:00:51 +0300585 if (rp->page < HCI_MAX_PAGES)
586 memcpy(hdev->features[rp->page], rp->features, 8);
Andre Guedes971e3a42011-06-30 19:20:52 -0300587}
588
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200589static void hci_cc_read_flow_control_mode(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300590 struct sk_buff *skb)
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200591{
592 struct hci_rp_read_flow_control_mode *rp = (void *) skb->data;
593
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300594 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200595
Marcel Holtmann45296ac2014-07-05 10:48:01 +0200596 if (rp->status)
597 return;
598
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
Marcel Holtmanne30d3f52014-07-05 10:48:03 +0200634 if (rp->status)
635 return;
636
637 if (test_bit(HCI_INIT, &hdev->flags))
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200638 bacpy(&hdev->bdaddr, &rp->bdaddr);
Marcel Holtmanne30d3f52014-07-05 10:48:03 +0200639
640 if (test_bit(HCI_SETUP, &hdev->dev_flags))
641 bacpy(&hdev->setup_addr, &rp->bdaddr);
Johan Hedberg23bb5762010-12-21 23:01:27 +0200642}
643
Johan Hedbergf332ec62013-03-15 17:07:11 -0500644static void hci_cc_read_page_scan_activity(struct hci_dev *hdev,
645 struct sk_buff *skb)
646{
647 struct hci_rp_read_page_scan_activity *rp = (void *) skb->data;
648
649 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
650
Marcel Holtmann45296ac2014-07-05 10:48:01 +0200651 if (rp->status)
652 return;
653
654 if (test_bit(HCI_INIT, &hdev->flags)) {
Johan Hedbergf332ec62013-03-15 17:07:11 -0500655 hdev->page_scan_interval = __le16_to_cpu(rp->interval);
656 hdev->page_scan_window = __le16_to_cpu(rp->window);
657 }
658}
659
Johan Hedberg4a3ee762013-03-15 17:07:12 -0500660static void hci_cc_write_page_scan_activity(struct hci_dev *hdev,
661 struct sk_buff *skb)
662{
663 u8 status = *((u8 *) skb->data);
664 struct hci_cp_write_page_scan_activity *sent;
665
666 BT_DBG("%s status 0x%2.2x", hdev->name, status);
667
668 if (status)
669 return;
670
671 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY);
672 if (!sent)
673 return;
674
675 hdev->page_scan_interval = __le16_to_cpu(sent->interval);
676 hdev->page_scan_window = __le16_to_cpu(sent->window);
677}
678
Johan Hedbergf332ec62013-03-15 17:07:11 -0500679static void hci_cc_read_page_scan_type(struct hci_dev *hdev,
680 struct sk_buff *skb)
681{
682 struct hci_rp_read_page_scan_type *rp = (void *) skb->data;
683
684 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
685
Marcel Holtmann45296ac2014-07-05 10:48:01 +0200686 if (rp->status)
687 return;
688
689 if (test_bit(HCI_INIT, &hdev->flags))
Johan Hedbergf332ec62013-03-15 17:07:11 -0500690 hdev->page_scan_type = rp->type;
691}
692
Johan Hedberg4a3ee762013-03-15 17:07:12 -0500693static void hci_cc_write_page_scan_type(struct hci_dev *hdev,
694 struct sk_buff *skb)
695{
696 u8 status = *((u8 *) skb->data);
697 u8 *type;
698
699 BT_DBG("%s status 0x%2.2x", hdev->name, status);
700
701 if (status)
702 return;
703
704 type = hci_sent_cmd_data(hdev, HCI_OP_WRITE_PAGE_SCAN_TYPE);
705 if (type)
706 hdev->page_scan_type = *type;
707}
708
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200709static void hci_cc_read_data_block_size(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300710 struct sk_buff *skb)
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200711{
712 struct hci_rp_read_data_block_size *rp = (void *) skb->data;
713
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300714 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200715
716 if (rp->status)
717 return;
718
719 hdev->block_mtu = __le16_to_cpu(rp->max_acl_len);
720 hdev->block_len = __le16_to_cpu(rp->block_len);
721 hdev->num_blocks = __le16_to_cpu(rp->num_blocks);
722
723 hdev->block_cnt = hdev->num_blocks;
724
725 BT_DBG("%s blk mtu %d cnt %d len %d", hdev->name, hdev->block_mtu,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300726 hdev->block_cnt, hdev->block_len);
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200727}
728
Johan Hedberg33f35722014-06-28 17:54:06 +0300729static void hci_cc_read_clock(struct hci_dev *hdev, struct sk_buff *skb)
730{
731 struct hci_rp_read_clock *rp = (void *) skb->data;
732 struct hci_cp_read_clock *cp;
733 struct hci_conn *conn;
734
735 BT_DBG("%s", hdev->name);
736
737 if (skb->len < sizeof(*rp))
738 return;
739
740 if (rp->status)
741 return;
742
743 hci_dev_lock(hdev);
744
745 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_CLOCK);
746 if (!cp)
747 goto unlock;
748
749 if (cp->which == 0x00) {
750 hdev->clock = le32_to_cpu(rp->clock);
751 goto unlock;
752 }
753
754 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
755 if (conn) {
756 conn->clock = le32_to_cpu(rp->clock);
757 conn->clock_accuracy = le16_to_cpu(rp->accuracy);
758 }
759
760unlock:
761 hci_dev_unlock(hdev);
762}
763
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300764static void hci_cc_read_local_amp_info(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300765 struct sk_buff *skb)
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300766{
767 struct hci_rp_read_local_amp_info *rp = (void *) skb->data;
768
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300769 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300770
771 if (rp->status)
Andrei Emeltchenko8e2a0d92012-09-27 17:26:08 +0300772 goto a2mp_rsp;
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300773
774 hdev->amp_status = rp->amp_status;
775 hdev->amp_total_bw = __le32_to_cpu(rp->total_bw);
776 hdev->amp_max_bw = __le32_to_cpu(rp->max_bw);
777 hdev->amp_min_latency = __le32_to_cpu(rp->min_latency);
778 hdev->amp_max_pdu = __le32_to_cpu(rp->max_pdu);
779 hdev->amp_type = rp->amp_type;
780 hdev->amp_pal_cap = __le16_to_cpu(rp->pal_cap);
781 hdev->amp_assoc_size = __le16_to_cpu(rp->max_assoc_size);
782 hdev->amp_be_flush_to = __le32_to_cpu(rp->be_flush_to);
783 hdev->amp_max_flush_to = __le32_to_cpu(rp->max_flush_to);
784
Andrei Emeltchenko8e2a0d92012-09-27 17:26:08 +0300785a2mp_rsp:
786 a2mp_send_getinfo_rsp(hdev);
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300787}
788
Andrei Emeltchenko903e4542012-09-27 17:26:09 +0300789static void hci_cc_read_local_amp_assoc(struct hci_dev *hdev,
790 struct sk_buff *skb)
791{
792 struct hci_rp_read_local_amp_assoc *rp = (void *) skb->data;
793 struct amp_assoc *assoc = &hdev->loc_assoc;
794 size_t rem_len, frag_len;
795
796 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
797
798 if (rp->status)
799 goto a2mp_rsp;
800
801 frag_len = skb->len - sizeof(*rp);
802 rem_len = __le16_to_cpu(rp->rem_len);
803
804 if (rem_len > frag_len) {
Andrei Emeltchenko2e430be32012-09-28 14:44:23 +0300805 BT_DBG("frag_len %zu rem_len %zu", frag_len, rem_len);
Andrei Emeltchenko903e4542012-09-27 17:26:09 +0300806
807 memcpy(assoc->data + assoc->offset, rp->frag, frag_len);
808 assoc->offset += frag_len;
809
810 /* Read other fragments */
811 amp_read_loc_assoc_frag(hdev, rp->phy_handle);
812
813 return;
814 }
815
816 memcpy(assoc->data + assoc->offset, rp->frag, rem_len);
817 assoc->len = assoc->offset + rem_len;
818 assoc->offset = 0;
819
820a2mp_rsp:
821 /* Send A2MP Rsp when all fragments are received */
822 a2mp_send_getampassoc_rsp(hdev, rp->status);
Andrei Emeltchenko9495b2e2012-09-27 17:26:22 +0300823 a2mp_send_create_phy_link_req(hdev, rp->status);
Andrei Emeltchenko903e4542012-09-27 17:26:09 +0300824}
825
Johan Hedbergd5859e22011-01-25 01:19:58 +0200826static void hci_cc_read_inq_rsp_tx_power(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300827 struct sk_buff *skb)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200828{
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700829 struct hci_rp_read_inq_rsp_tx_power *rp = (void *) skb->data;
Johan Hedbergd5859e22011-01-25 01:19:58 +0200830
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300831 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200832
Marcel Holtmann45296ac2014-07-05 10:48:01 +0200833 if (rp->status)
834 return;
835
836 hdev->inq_tx_power = rp->tx_power;
Johan Hedbergd5859e22011-01-25 01:19:58 +0200837}
838
Johan Hedberg980e1a52011-01-22 06:10:07 +0200839static void hci_cc_pin_code_reply(struct hci_dev *hdev, struct sk_buff *skb)
840{
841 struct hci_rp_pin_code_reply *rp = (void *) skb->data;
842 struct hci_cp_pin_code_reply *cp;
843 struct hci_conn *conn;
844
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300845 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200846
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200847 hci_dev_lock(hdev);
848
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200849 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200850 mgmt_pin_code_reply_complete(hdev, &rp->bdaddr, rp->status);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200851
Mikel Astizfa1bd912012-08-09 09:52:29 +0200852 if (rp->status)
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200853 goto unlock;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200854
855 cp = hci_sent_cmd_data(hdev, HCI_OP_PIN_CODE_REPLY);
856 if (!cp)
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200857 goto unlock;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200858
859 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
860 if (conn)
861 conn->pin_length = cp->pin_len;
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200862
863unlock:
864 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200865}
866
867static void hci_cc_pin_code_neg_reply(struct hci_dev *hdev, struct sk_buff *skb)
868{
869 struct hci_rp_pin_code_neg_reply *rp = (void *) skb->data;
870
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300871 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200872
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200873 hci_dev_lock(hdev);
874
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200875 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200876 mgmt_pin_code_neg_reply_complete(hdev, &rp->bdaddr,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300877 rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200878
879 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200880}
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200881
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300882static void hci_cc_le_read_buffer_size(struct hci_dev *hdev,
883 struct sk_buff *skb)
884{
885 struct hci_rp_le_read_buffer_size *rp = (void *) skb->data;
886
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300887 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300888
889 if (rp->status)
890 return;
891
892 hdev->le_mtu = __le16_to_cpu(rp->le_mtu);
893 hdev->le_pkts = rp->le_max_pkt;
894
895 hdev->le_cnt = hdev->le_pkts;
896
897 BT_DBG("%s le mtu %d:%d", hdev->name, hdev->le_mtu, hdev->le_pkts);
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300898}
Johan Hedberg980e1a52011-01-22 06:10:07 +0200899
Johan Hedberg60e77322013-01-22 14:01:59 +0200900static void hci_cc_le_read_local_features(struct hci_dev *hdev,
901 struct sk_buff *skb)
902{
903 struct hci_rp_le_read_local_features *rp = (void *) skb->data;
904
905 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
906
Marcel Holtmann45296ac2014-07-05 10:48:01 +0200907 if (rp->status)
908 return;
909
910 memcpy(hdev->le_features, rp->features, 8);
Johan Hedberg60e77322013-01-22 14:01:59 +0200911}
912
Johan Hedberg8fa19092012-10-19 20:57:49 +0300913static void hci_cc_le_read_adv_tx_power(struct hci_dev *hdev,
914 struct sk_buff *skb)
915{
916 struct hci_rp_le_read_adv_tx_power *rp = (void *) skb->data;
917
918 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
919
Marcel Holtmann45296ac2014-07-05 10:48:01 +0200920 if (rp->status)
921 return;
922
923 hdev->adv_tx_power = rp->tx_power;
Johan Hedberg8fa19092012-10-19 20:57:49 +0300924}
925
Johan Hedberga5c29682011-02-19 12:05:57 -0300926static void hci_cc_user_confirm_reply(struct hci_dev *hdev, struct sk_buff *skb)
927{
928 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
929
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300930 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberga5c29682011-02-19 12:05:57 -0300931
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200932 hci_dev_lock(hdev);
933
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200934 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300935 mgmt_user_confirm_reply_complete(hdev, &rp->bdaddr, ACL_LINK, 0,
936 rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200937
938 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -0300939}
940
941static void hci_cc_user_confirm_neg_reply(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300942 struct sk_buff *skb)
Johan Hedberga5c29682011-02-19 12:05:57 -0300943{
944 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
945
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300946 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberga5c29682011-02-19 12:05:57 -0300947
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200948 hci_dev_lock(hdev);
949
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200950 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200951 mgmt_user_confirm_neg_reply_complete(hdev, &rp->bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300952 ACL_LINK, 0, rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200953
954 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -0300955}
956
Brian Gix1143d452011-11-23 08:28:34 -0800957static void hci_cc_user_passkey_reply(struct hci_dev *hdev, struct sk_buff *skb)
958{
959 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
960
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300961 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -0800962
963 hci_dev_lock(hdev);
964
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200965 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg272d90d2012-02-09 15:26:12 +0200966 mgmt_user_passkey_reply_complete(hdev, &rp->bdaddr, ACL_LINK,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300967 0, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -0800968
969 hci_dev_unlock(hdev);
970}
971
972static void hci_cc_user_passkey_neg_reply(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300973 struct sk_buff *skb)
Brian Gix1143d452011-11-23 08:28:34 -0800974{
975 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
976
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300977 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -0800978
979 hci_dev_lock(hdev);
980
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200981 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Brian Gix1143d452011-11-23 08:28:34 -0800982 mgmt_user_passkey_neg_reply_complete(hdev, &rp->bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300983 ACL_LINK, 0, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -0800984
985 hci_dev_unlock(hdev);
986}
987
Marcel Holtmann4d2d2792014-01-10 02:07:26 -0800988static void hci_cc_read_local_oob_data(struct hci_dev *hdev,
989 struct sk_buff *skb)
Szymon Jancc35938b2011-03-22 13:12:21 +0100990{
991 struct hci_rp_read_local_oob_data *rp = (void *) skb->data;
992
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300993 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Szymon Jancc35938b2011-03-22 13:12:21 +0100994
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200995 hci_dev_lock(hdev);
Marcel Holtmann4d2d2792014-01-10 02:07:26 -0800996 mgmt_read_local_oob_data_complete(hdev, rp->hash, rp->randomizer,
997 NULL, NULL, rp->status);
998 hci_dev_unlock(hdev);
999}
1000
1001static void hci_cc_read_local_oob_ext_data(struct hci_dev *hdev,
1002 struct sk_buff *skb)
1003{
1004 struct hci_rp_read_local_oob_ext_data *rp = (void *) skb->data;
1005
1006 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1007
1008 hci_dev_lock(hdev);
1009 mgmt_read_local_oob_data_complete(hdev, rp->hash192, rp->randomizer192,
1010 rp->hash256, rp->randomizer256,
1011 rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001012 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01001013}
1014
Marcel Holtmann7a4cd512014-02-19 19:52:13 -08001015
1016static void hci_cc_le_set_random_addr(struct hci_dev *hdev, struct sk_buff *skb)
1017{
1018 __u8 status = *((__u8 *) skb->data);
1019 bdaddr_t *sent;
1020
1021 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1022
Marcel Holtmann45296ac2014-07-05 10:48:01 +02001023 if (status)
1024 return;
1025
Marcel Holtmann7a4cd512014-02-19 19:52:13 -08001026 sent = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_RANDOM_ADDR);
1027 if (!sent)
1028 return;
1029
1030 hci_dev_lock(hdev);
1031
Marcel Holtmann45296ac2014-07-05 10:48:01 +02001032 bacpy(&hdev->random_addr, sent);
Marcel Holtmann7a4cd512014-02-19 19:52:13 -08001033
1034 hci_dev_unlock(hdev);
1035}
1036
Johan Hedbergc1d5dc42012-11-08 01:23:01 +01001037static void hci_cc_le_set_adv_enable(struct hci_dev *hdev, struct sk_buff *skb)
1038{
1039 __u8 *sent, status = *((__u8 *) skb->data);
1040
1041 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1042
Marcel Holtmann45296ac2014-07-05 10:48:01 +02001043 if (status)
Johan Hedbergc1d5dc42012-11-08 01:23:01 +01001044 return;
1045
Marcel Holtmann45296ac2014-07-05 10:48:01 +02001046 sent = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_ADV_ENABLE);
1047 if (!sent)
Johan Hedberg3c857752014-03-25 10:30:49 +02001048 return;
1049
Johan Hedbergc1d5dc42012-11-08 01:23:01 +01001050 hci_dev_lock(hdev);
1051
Johan Hedberg3c857752014-03-25 10:30:49 +02001052 /* If we're doing connection initation as peripheral. Set a
1053 * timeout in case something goes wrong.
1054 */
1055 if (*sent) {
1056 struct hci_conn *conn;
1057
Johan Hedberg66c417c2014-07-08 15:07:47 +03001058 set_bit(HCI_LE_ADV, &hdev->dev_flags);
1059
Johan Hedberg3c857752014-03-25 10:30:49 +02001060 conn = hci_conn_hash_lookup_state(hdev, LE_LINK, BT_CONNECT);
1061 if (conn)
1062 queue_delayed_work(hdev->workqueue,
1063 &conn->le_conn_timeout,
Johan Hedberg09ae2602014-07-06 13:41:15 +03001064 conn->conn_timeout);
Johan Hedberg66c417c2014-07-08 15:07:47 +03001065 } else {
1066 clear_bit(HCI_LE_ADV, &hdev->dev_flags);
Johan Hedberg3c857752014-03-25 10:30:49 +02001067 }
1068
Johan Hedberg04b4edc2013-03-15 17:07:01 -05001069 hci_dev_unlock(hdev);
Johan Hedbergc1d5dc42012-11-08 01:23:01 +01001070}
1071
Marcel Holtmann533553f2014-03-21 12:18:10 -07001072static void hci_cc_le_set_scan_param(struct hci_dev *hdev, struct sk_buff *skb)
1073{
1074 struct hci_cp_le_set_scan_param *cp;
1075 __u8 status = *((__u8 *) skb->data);
1076
1077 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1078
Marcel Holtmann45296ac2014-07-05 10:48:01 +02001079 if (status)
1080 return;
1081
Marcel Holtmann533553f2014-03-21 12:18:10 -07001082 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_SCAN_PARAM);
1083 if (!cp)
1084 return;
1085
1086 hci_dev_lock(hdev);
1087
Marcel Holtmann45296ac2014-07-05 10:48:01 +02001088 hdev->le_scan_type = cp->type;
Marcel Holtmann533553f2014-03-21 12:18:10 -07001089
1090 hci_dev_unlock(hdev);
1091}
1092
Johan Hedbergb9a63282014-03-25 10:51:52 +02001093static bool has_pending_adv_report(struct hci_dev *hdev)
1094{
1095 struct discovery_state *d = &hdev->discovery;
1096
1097 return bacmp(&d->last_adv_addr, BDADDR_ANY);
1098}
1099
1100static void clear_pending_adv_report(struct hci_dev *hdev)
1101{
1102 struct discovery_state *d = &hdev->discovery;
1103
1104 bacpy(&d->last_adv_addr, BDADDR_ANY);
1105 d->last_adv_data_len = 0;
1106}
1107
1108static void store_pending_adv_report(struct hci_dev *hdev, bdaddr_t *bdaddr,
Marcel Holtmannc70a7e42014-07-01 14:11:21 +02001109 u8 bdaddr_type, s8 rssi, u32 flags,
1110 u8 *data, u8 len)
Johan Hedbergb9a63282014-03-25 10:51:52 +02001111{
1112 struct discovery_state *d = &hdev->discovery;
1113
1114 bacpy(&d->last_adv_addr, bdaddr);
1115 d->last_adv_addr_type = bdaddr_type;
Johan Hedbergff5cd292014-03-25 14:40:52 +02001116 d->last_adv_rssi = rssi;
Marcel Holtmannc70a7e42014-07-01 14:11:21 +02001117 d->last_adv_flags = flags;
Johan Hedbergb9a63282014-03-25 10:51:52 +02001118 memcpy(d->last_adv_data, data, len);
1119 d->last_adv_data_len = len;
1120}
1121
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001122static void hci_cc_le_set_scan_enable(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001123 struct sk_buff *skb)
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001124{
1125 struct hci_cp_le_set_scan_enable *cp;
1126 __u8 status = *((__u8 *) skb->data);
1127
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001128 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001129
Marcel Holtmann45296ac2014-07-05 10:48:01 +02001130 if (status)
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001131 return;
1132
Marcel Holtmann45296ac2014-07-05 10:48:01 +02001133 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_SCAN_ENABLE);
1134 if (!cp)
Andre Guedes3fd319b2013-04-30 15:29:36 -03001135 return;
1136
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001137 switch (cp->enable) {
Andre Guedes76a388b2013-04-04 20:21:02 -03001138 case LE_SCAN_ENABLE:
Andre Guedesd23264a2011-11-25 20:53:38 -03001139 set_bit(HCI_LE_SCAN, &hdev->dev_flags);
Johan Hedbergb9a63282014-03-25 10:51:52 +02001140 if (hdev->le_scan_type == LE_SCAN_ACTIVE)
1141 clear_pending_adv_report(hdev);
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001142 break;
1143
Andre Guedes76a388b2013-04-04 20:21:02 -03001144 case LE_SCAN_DISABLE:
Johan Hedbergb9a63282014-03-25 10:51:52 +02001145 /* We do this here instead of when setting DISCOVERY_STOPPED
1146 * since the latter would potentially require waiting for
1147 * inquiry to stop too.
1148 */
1149 if (has_pending_adv_report(hdev)) {
1150 struct discovery_state *d = &hdev->discovery;
1151
1152 mgmt_device_found(hdev, &d->last_adv_addr, LE_LINK,
Johan Hedbergab0aa432014-03-26 14:17:12 +02001153 d->last_adv_addr_type, NULL,
Marcel Holtmannc70a7e42014-07-01 14:11:21 +02001154 d->last_adv_rssi, d->last_adv_flags,
Johan Hedbergab0aa432014-03-26 14:17:12 +02001155 d->last_adv_data,
Johan Hedbergb9a63282014-03-25 10:51:52 +02001156 d->last_adv_data_len, NULL, 0);
1157 }
1158
Johan Hedberg317ac8c2014-02-28 20:26:12 +02001159 /* Cancel this timer so that we don't try to disable scanning
1160 * when it's already disabled.
1161 */
1162 cancel_delayed_work(&hdev->le_scan_disable);
1163
Andre Guedesd23264a2011-11-25 20:53:38 -03001164 clear_bit(HCI_LE_SCAN, &hdev->dev_flags);
Johan Hedberge8bb6b92014-07-08 15:07:53 +03001165
Johan Hedberg81ad6fd2014-02-28 20:26:13 +02001166 /* The HCI_LE_SCAN_INTERRUPTED flag indicates that we
1167 * interrupted scanning due to a connect request. Mark
Johan Hedberge8bb6b92014-07-08 15:07:53 +03001168 * therefore discovery as stopped. If this was not
1169 * because of a connect request advertising might have
1170 * been disabled because of active scanning, so
1171 * re-enable it again if necessary.
Johan Hedberg81ad6fd2014-02-28 20:26:13 +02001172 */
1173 if (test_and_clear_bit(HCI_LE_SCAN_INTERRUPTED,
1174 &hdev->dev_flags))
1175 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
Johan Hedberge8bb6b92014-07-08 15:07:53 +03001176 else if (!test_bit(HCI_LE_ADV, &hdev->dev_flags) &&
Johan Hedberg34722272014-07-08 16:05:05 +03001177 hdev->discovery.state == DISCOVERY_FINDING)
Johan Hedberge8bb6b92014-07-08 15:07:53 +03001178 mgmt_reenable_advertising(hdev);
1179
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001180 break;
1181
1182 default:
1183 BT_ERR("Used reserved LE_Scan_Enable param %d", cp->enable);
1184 break;
Andre Guedes35815082011-05-26 16:23:53 -03001185 }
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001186}
1187
Johan Hedbergcf1d0812013-01-22 14:02:00 +02001188static void hci_cc_le_read_white_list_size(struct hci_dev *hdev,
1189 struct sk_buff *skb)
1190{
1191 struct hci_rp_le_read_white_list_size *rp = (void *) skb->data;
1192
1193 BT_DBG("%s status 0x%2.2x size %u", hdev->name, rp->status, rp->size);
1194
Marcel Holtmann45296ac2014-07-05 10:48:01 +02001195 if (rp->status)
1196 return;
1197
1198 hdev->le_white_list_size = rp->size;
Johan Hedbergcf1d0812013-01-22 14:02:00 +02001199}
1200
Marcel Holtmann0f36b582014-02-27 20:37:31 -08001201static void hci_cc_le_clear_white_list(struct hci_dev *hdev,
1202 struct sk_buff *skb)
1203{
1204 __u8 status = *((__u8 *) skb->data);
1205
1206 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1207
Marcel Holtmann45296ac2014-07-05 10:48:01 +02001208 if (status)
1209 return;
1210
Johan Hedbergdcc36c12014-07-09 12:59:13 +03001211 hci_bdaddr_list_clear(&hdev->le_white_list);
Marcel Holtmann0f36b582014-02-27 20:37:31 -08001212}
1213
1214static void hci_cc_le_add_to_white_list(struct hci_dev *hdev,
1215 struct sk_buff *skb)
1216{
1217 struct hci_cp_le_add_to_white_list *sent;
1218 __u8 status = *((__u8 *) skb->data);
1219
1220 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1221
Marcel Holtmann45296ac2014-07-05 10:48:01 +02001222 if (status)
1223 return;
1224
Marcel Holtmann0f36b582014-02-27 20:37:31 -08001225 sent = hci_sent_cmd_data(hdev, HCI_OP_LE_ADD_TO_WHITE_LIST);
1226 if (!sent)
1227 return;
1228
Johan Hedbergdcc36c12014-07-09 12:59:13 +03001229 hci_bdaddr_list_add(&hdev->le_white_list, &sent->bdaddr,
1230 sent->bdaddr_type);
Marcel Holtmann0f36b582014-02-27 20:37:31 -08001231}
1232
1233static void hci_cc_le_del_from_white_list(struct hci_dev *hdev,
1234 struct sk_buff *skb)
1235{
1236 struct hci_cp_le_del_from_white_list *sent;
1237 __u8 status = *((__u8 *) skb->data);
1238
1239 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1240
Marcel Holtmann45296ac2014-07-05 10:48:01 +02001241 if (status)
1242 return;
1243
Marcel Holtmann0f36b582014-02-27 20:37:31 -08001244 sent = hci_sent_cmd_data(hdev, HCI_OP_LE_DEL_FROM_WHITE_LIST);
1245 if (!sent)
1246 return;
1247
Johan Hedbergdcc36c12014-07-09 12:59:13 +03001248 hci_bdaddr_list_del(&hdev->le_white_list, &sent->bdaddr,
1249 sent->bdaddr_type);
Marcel Holtmann0f36b582014-02-27 20:37:31 -08001250}
1251
Johan Hedberg9b008c02013-01-22 14:02:01 +02001252static void hci_cc_le_read_supported_states(struct hci_dev *hdev,
1253 struct sk_buff *skb)
1254{
1255 struct hci_rp_le_read_supported_states *rp = (void *) skb->data;
1256
1257 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1258
Marcel Holtmann45296ac2014-07-05 10:48:01 +02001259 if (rp->status)
1260 return;
1261
1262 memcpy(hdev->le_states, rp->le_states, 8);
Johan Hedberg9b008c02013-01-22 14:02:01 +02001263}
1264
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001265static void hci_cc_write_le_host_supported(struct hci_dev *hdev,
1266 struct sk_buff *skb)
Andre Guedesf9b49302011-06-30 19:20:53 -03001267{
Johan Hedberg06199cf2012-02-22 16:37:11 +02001268 struct hci_cp_write_le_host_supported *sent;
Andre Guedesf9b49302011-06-30 19:20:53 -03001269 __u8 status = *((__u8 *) skb->data);
1270
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001271 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedesf9b49302011-06-30 19:20:53 -03001272
Marcel Holtmann45296ac2014-07-05 10:48:01 +02001273 if (status)
1274 return;
1275
Johan Hedberg06199cf2012-02-22 16:37:11 +02001276 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED);
Johan Hedberg8f984df2012-02-28 01:07:22 +02001277 if (!sent)
Andre Guedesf9b49302011-06-30 19:20:53 -03001278 return;
1279
Marcel Holtmann45296ac2014-07-05 10:48:01 +02001280 if (sent->le) {
1281 hdev->features[1][0] |= LMP_HOST_LE;
1282 set_bit(HCI_LE_ENABLED, &hdev->dev_flags);
1283 } else {
1284 hdev->features[1][0] &= ~LMP_HOST_LE;
1285 clear_bit(HCI_LE_ENABLED, &hdev->dev_flags);
1286 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
Johan Hedberg8f984df2012-02-28 01:07:22 +02001287 }
Marcel Holtmann45296ac2014-07-05 10:48:01 +02001288
1289 if (sent->simul)
1290 hdev->features[1][0] |= LMP_HOST_LE_BREDR;
1291 else
1292 hdev->features[1][0] &= ~LMP_HOST_LE_BREDR;
Andre Guedesf9b49302011-06-30 19:20:53 -03001293}
1294
Johan Hedberg56ed2cb2014-02-27 14:05:40 +02001295static void hci_cc_set_adv_param(struct hci_dev *hdev, struct sk_buff *skb)
1296{
1297 struct hci_cp_le_set_adv_param *cp;
1298 u8 status = *((u8 *) skb->data);
1299
1300 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1301
1302 if (status)
1303 return;
1304
1305 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_ADV_PARAM);
1306 if (!cp)
1307 return;
1308
1309 hci_dev_lock(hdev);
1310 hdev->adv_addr_type = cp->own_address_type;
1311 hci_dev_unlock(hdev);
1312}
1313
Andrei Emeltchenko93c284e2012-09-27 17:26:20 +03001314static void hci_cc_write_remote_amp_assoc(struct hci_dev *hdev,
1315 struct sk_buff *skb)
1316{
1317 struct hci_rp_write_remote_amp_assoc *rp = (void *) skb->data;
1318
1319 BT_DBG("%s status 0x%2.2x phy_handle 0x%2.2x",
1320 hdev->name, rp->status, rp->phy_handle);
1321
1322 if (rp->status)
1323 return;
1324
1325 amp_write_rem_assoc_continue(hdev, rp->phy_handle);
1326}
1327
Andrzej Kaczmarek5ae76a92014-05-08 15:32:08 +02001328static void hci_cc_read_rssi(struct hci_dev *hdev, struct sk_buff *skb)
1329{
1330 struct hci_rp_read_rssi *rp = (void *) skb->data;
1331 struct hci_conn *conn;
1332
1333 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1334
1335 if (rp->status)
1336 return;
1337
1338 hci_dev_lock(hdev);
1339
1340 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
1341 if (conn)
1342 conn->rssi = rp->rssi;
1343
1344 hci_dev_unlock(hdev);
1345}
1346
Andrzej Kaczmarek5a134fa2014-05-09 21:35:28 +02001347static void hci_cc_read_tx_power(struct hci_dev *hdev, struct sk_buff *skb)
1348{
1349 struct hci_cp_read_tx_power *sent;
1350 struct hci_rp_read_tx_power *rp = (void *) skb->data;
1351 struct hci_conn *conn;
1352
1353 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1354
1355 if (rp->status)
1356 return;
1357
1358 sent = hci_sent_cmd_data(hdev, HCI_OP_READ_TX_POWER);
1359 if (!sent)
1360 return;
1361
1362 hci_dev_lock(hdev);
1363
1364 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
Andrzej Kaczmarekd0455ed2014-05-14 13:43:05 +02001365 if (!conn)
1366 goto unlock;
Andrzej Kaczmarek5a134fa2014-05-09 21:35:28 +02001367
Andrzej Kaczmarekd0455ed2014-05-14 13:43:05 +02001368 switch (sent->type) {
1369 case 0x00:
1370 conn->tx_power = rp->tx_power;
1371 break;
1372 case 0x01:
1373 conn->max_tx_power = rp->tx_power;
1374 break;
1375 }
1376
1377unlock:
Andrzej Kaczmarek5a134fa2014-05-09 21:35:28 +02001378 hci_dev_unlock(hdev);
1379}
1380
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001381static void hci_cs_inquiry(struct hci_dev *hdev, __u8 status)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001382{
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001383 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001384
1385 if (status) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001386 hci_conn_check_pending(hdev);
Johan Hedberg314b2382011-04-27 10:29:57 -04001387 return;
1388 }
1389
Andre Guedes89352e72011-11-04 14:16:53 -03001390 set_bit(HCI_INQUIRY, &hdev->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001391}
1392
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001393static void hci_cs_create_conn(struct hci_dev *hdev, __u8 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001395 struct hci_cp_create_conn *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001398 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001399
1400 cp = hci_sent_cmd_data(hdev, HCI_OP_CREATE_CONN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 if (!cp)
1402 return;
1403
1404 hci_dev_lock(hdev);
1405
1406 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
1407
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001408 BT_DBG("%s bdaddr %pMR hcon %p", hdev->name, &cp->bdaddr, conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
1410 if (status) {
1411 if (conn && conn->state == BT_CONNECT) {
Marcel Holtmann4c67bc72006-10-15 17:30:56 +02001412 if (status != 0x0c || conn->attempt > 2) {
1413 conn->state = BT_CLOSED;
1414 hci_proto_connect_cfm(conn, status);
1415 hci_conn_del(conn);
1416 } else
1417 conn->state = BT_CONNECT2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 }
1419 } else {
1420 if (!conn) {
1421 conn = hci_conn_add(hdev, ACL_LINK, &cp->bdaddr);
1422 if (conn) {
Johan Hedberga0c808b2012-01-16 09:49:58 +02001423 conn->out = true;
Johan Hedberg4dae2792014-06-24 17:03:50 +03001424 set_bit(HCI_CONN_MASTER, &conn->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 } else
Gustavo F. Padovan893ef972010-07-18 15:13:37 -03001426 BT_ERR("No memory for new connection");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 }
1428 }
1429
1430 hci_dev_unlock(hdev);
1431}
1432
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001433static void hci_cs_add_sco(struct hci_dev *hdev, __u8 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001435 struct hci_cp_add_sco *cp;
1436 struct hci_conn *acl, *sco;
1437 __u16 handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001439 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001440
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001441 if (!status)
1442 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001444 cp = hci_sent_cmd_data(hdev, HCI_OP_ADD_SCO);
1445 if (!cp)
1446 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001448 handle = __le16_to_cpu(cp->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001450 BT_DBG("%s handle 0x%4.4x", hdev->name, handle);
Marcel Holtmann6bd57412006-11-18 22:14:22 +01001451
1452 hci_dev_lock(hdev);
1453
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001454 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001455 if (acl) {
1456 sco = acl->link;
1457 if (sco) {
1458 sco->state = BT_CLOSED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001459
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001460 hci_proto_connect_cfm(sco, status);
1461 hci_conn_del(sco);
1462 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001463 }
Marcel Holtmann6bd57412006-11-18 22:14:22 +01001464
1465 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466}
1467
Marcel Holtmannf8558552008-07-14 20:13:49 +02001468static void hci_cs_auth_requested(struct hci_dev *hdev, __u8 status)
1469{
1470 struct hci_cp_auth_requested *cp;
1471 struct hci_conn *conn;
1472
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001473 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannf8558552008-07-14 20:13:49 +02001474
1475 if (!status)
1476 return;
1477
1478 cp = hci_sent_cmd_data(hdev, HCI_OP_AUTH_REQUESTED);
1479 if (!cp)
1480 return;
1481
1482 hci_dev_lock(hdev);
1483
1484 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1485 if (conn) {
1486 if (conn->state == BT_CONFIG) {
1487 hci_proto_connect_cfm(conn, status);
David Herrmann76a68ba2013-04-06 20:28:37 +02001488 hci_conn_drop(conn);
Marcel Holtmannf8558552008-07-14 20:13:49 +02001489 }
1490 }
1491
1492 hci_dev_unlock(hdev);
1493}
1494
1495static void hci_cs_set_conn_encrypt(struct hci_dev *hdev, __u8 status)
1496{
1497 struct hci_cp_set_conn_encrypt *cp;
1498 struct hci_conn *conn;
1499
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001500 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannf8558552008-07-14 20:13:49 +02001501
1502 if (!status)
1503 return;
1504
1505 cp = hci_sent_cmd_data(hdev, HCI_OP_SET_CONN_ENCRYPT);
1506 if (!cp)
1507 return;
1508
1509 hci_dev_lock(hdev);
1510
1511 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1512 if (conn) {
1513 if (conn->state == BT_CONFIG) {
1514 hci_proto_connect_cfm(conn, status);
David Herrmann76a68ba2013-04-06 20:28:37 +02001515 hci_conn_drop(conn);
Marcel Holtmannf8558552008-07-14 20:13:49 +02001516 }
1517 }
1518
1519 hci_dev_unlock(hdev);
1520}
1521
Johan Hedberg127178d2010-11-18 22:22:29 +02001522static int hci_outgoing_auth_needed(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001523 struct hci_conn *conn)
Johan Hedberg392599b2010-11-18 22:22:28 +02001524{
Johan Hedberg392599b2010-11-18 22:22:28 +02001525 if (conn->state != BT_CONFIG || !conn->out)
1526 return 0;
1527
Johan Hedberg765c2a92011-01-19 12:06:52 +05301528 if (conn->pending_sec_level == BT_SECURITY_SDP)
Johan Hedberg392599b2010-11-18 22:22:28 +02001529 return 0;
1530
1531 /* Only request authentication for SSP connections or non-SSP
Johan Hedberg264b8b42014-01-08 16:40:39 +02001532 * devices with sec_level MEDIUM or HIGH or if MITM protection
1533 * is requested.
1534 */
Gustavo Padovan807deac2012-05-17 00:36:24 -03001535 if (!hci_conn_ssp_enabled(conn) && !(conn->auth_type & 0x01) &&
Johan Hedberg7e3691e2014-05-30 14:45:19 +03001536 conn->pending_sec_level != BT_SECURITY_FIPS &&
Johan Hedberg264b8b42014-01-08 16:40:39 +02001537 conn->pending_sec_level != BT_SECURITY_HIGH &&
1538 conn->pending_sec_level != BT_SECURITY_MEDIUM)
Johan Hedberg392599b2010-11-18 22:22:28 +02001539 return 0;
1540
Johan Hedberg392599b2010-11-18 22:22:28 +02001541 return 1;
1542}
1543
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001544static int hci_resolve_name(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001545 struct inquiry_entry *e)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001546{
1547 struct hci_cp_remote_name_req cp;
1548
1549 memset(&cp, 0, sizeof(cp));
1550
1551 bacpy(&cp.bdaddr, &e->data.bdaddr);
1552 cp.pscan_rep_mode = e->data.pscan_rep_mode;
1553 cp.pscan_mode = e->data.pscan_mode;
1554 cp.clock_offset = e->data.clock_offset;
1555
1556 return hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
1557}
1558
Johan Hedbergb644ba32012-01-17 21:48:47 +02001559static bool hci_resolve_next_name(struct hci_dev *hdev)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001560{
1561 struct discovery_state *discov = &hdev->discovery;
1562 struct inquiry_entry *e;
1563
Johan Hedbergb644ba32012-01-17 21:48:47 +02001564 if (list_empty(&discov->resolve))
1565 return false;
1566
1567 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
Ram Malovanyc8100892012-07-19 10:26:09 +03001568 if (!e)
1569 return false;
1570
Johan Hedbergb644ba32012-01-17 21:48:47 +02001571 if (hci_resolve_name(hdev, e) == 0) {
1572 e->name_state = NAME_PENDING;
1573 return true;
1574 }
1575
1576 return false;
1577}
1578
1579static void hci_check_pending_name(struct hci_dev *hdev, struct hci_conn *conn,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001580 bdaddr_t *bdaddr, u8 *name, u8 name_len)
Johan Hedbergb644ba32012-01-17 21:48:47 +02001581{
1582 struct discovery_state *discov = &hdev->discovery;
1583 struct inquiry_entry *e;
1584
1585 if (conn && !test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001586 mgmt_device_connected(hdev, bdaddr, ACL_LINK, 0x00, 0, name,
1587 name_len, conn->dev_class);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001588
1589 if (discov->state == DISCOVERY_STOPPED)
1590 return;
1591
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001592 if (discov->state == DISCOVERY_STOPPING)
1593 goto discov_complete;
1594
1595 if (discov->state != DISCOVERY_RESOLVING)
1596 return;
1597
1598 e = hci_inquiry_cache_lookup_resolve(hdev, bdaddr, NAME_PENDING);
Ram Malovany7cc83802012-07-19 10:26:10 +03001599 /* If the device was not found in a list of found devices names of which
1600 * are pending. there is no need to continue resolving a next name as it
1601 * will be done upon receiving another Remote Name Request Complete
1602 * Event */
1603 if (!e)
1604 return;
1605
1606 list_del(&e->list);
1607 if (name) {
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001608 e->name_state = NAME_KNOWN;
Ram Malovany7cc83802012-07-19 10:26:10 +03001609 mgmt_remote_name(hdev, bdaddr, ACL_LINK, 0x00,
1610 e->data.rssi, name, name_len);
Ram Malovanyc3e7c0d2012-07-19 10:26:11 +03001611 } else {
1612 e->name_state = NAME_NOT_KNOWN;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001613 }
1614
Johan Hedbergb644ba32012-01-17 21:48:47 +02001615 if (hci_resolve_next_name(hdev))
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001616 return;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001617
1618discov_complete:
1619 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1620}
1621
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001622static void hci_cs_remote_name_req(struct hci_dev *hdev, __u8 status)
1623{
Johan Hedberg127178d2010-11-18 22:22:29 +02001624 struct hci_cp_remote_name_req *cp;
1625 struct hci_conn *conn;
1626
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001627 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedberg127178d2010-11-18 22:22:29 +02001628
1629 /* If successful wait for the name req complete event before
1630 * checking for the need to do authentication */
1631 if (!status)
1632 return;
1633
1634 cp = hci_sent_cmd_data(hdev, HCI_OP_REMOTE_NAME_REQ);
1635 if (!cp)
1636 return;
1637
1638 hci_dev_lock(hdev);
1639
1640 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001641
1642 if (test_bit(HCI_MGMT, &hdev->dev_flags))
1643 hci_check_pending_name(hdev, conn, &cp->bdaddr, NULL, 0);
1644
Johan Hedberg79c6c702011-04-28 11:28:55 -07001645 if (!conn)
1646 goto unlock;
1647
1648 if (!hci_outgoing_auth_needed(hdev, conn))
1649 goto unlock;
1650
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001651 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johannes Bergc1f23a22013-10-07 18:19:16 +02001652 struct hci_cp_auth_requested auth_cp;
1653
1654 auth_cp.handle = __cpu_to_le16(conn->handle);
1655 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED,
1656 sizeof(auth_cp), &auth_cp);
Johan Hedberg127178d2010-11-18 22:22:29 +02001657 }
1658
Johan Hedberg79c6c702011-04-28 11:28:55 -07001659unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02001660 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001661}
1662
Marcel Holtmann769be972008-07-14 20:13:49 +02001663static void hci_cs_read_remote_features(struct hci_dev *hdev, __u8 status)
1664{
1665 struct hci_cp_read_remote_features *cp;
1666 struct hci_conn *conn;
1667
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001668 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmann769be972008-07-14 20:13:49 +02001669
1670 if (!status)
1671 return;
1672
1673 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_FEATURES);
1674 if (!cp)
1675 return;
1676
1677 hci_dev_lock(hdev);
1678
1679 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1680 if (conn) {
1681 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001682 hci_proto_connect_cfm(conn, status);
David Herrmann76a68ba2013-04-06 20:28:37 +02001683 hci_conn_drop(conn);
Marcel Holtmann769be972008-07-14 20:13:49 +02001684 }
1685 }
1686
1687 hci_dev_unlock(hdev);
1688}
1689
1690static void hci_cs_read_remote_ext_features(struct hci_dev *hdev, __u8 status)
1691{
1692 struct hci_cp_read_remote_ext_features *cp;
1693 struct hci_conn *conn;
1694
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001695 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmann769be972008-07-14 20:13:49 +02001696
1697 if (!status)
1698 return;
1699
1700 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES);
1701 if (!cp)
1702 return;
1703
1704 hci_dev_lock(hdev);
1705
1706 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1707 if (conn) {
1708 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001709 hci_proto_connect_cfm(conn, status);
David Herrmann76a68ba2013-04-06 20:28:37 +02001710 hci_conn_drop(conn);
Marcel Holtmann769be972008-07-14 20:13:49 +02001711 }
1712 }
1713
1714 hci_dev_unlock(hdev);
1715}
1716
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001717static void hci_cs_setup_sync_conn(struct hci_dev *hdev, __u8 status)
1718{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001719 struct hci_cp_setup_sync_conn *cp;
1720 struct hci_conn *acl, *sco;
1721 __u16 handle;
1722
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001723 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001724
1725 if (!status)
1726 return;
1727
1728 cp = hci_sent_cmd_data(hdev, HCI_OP_SETUP_SYNC_CONN);
1729 if (!cp)
1730 return;
1731
1732 handle = __le16_to_cpu(cp->handle);
1733
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001734 BT_DBG("%s handle 0x%4.4x", hdev->name, handle);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001735
1736 hci_dev_lock(hdev);
1737
1738 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001739 if (acl) {
1740 sco = acl->link;
1741 if (sco) {
1742 sco->state = BT_CLOSED;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001743
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001744 hci_proto_connect_cfm(sco, status);
1745 hci_conn_del(sco);
1746 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001747 }
1748
1749 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001750}
1751
1752static void hci_cs_sniff_mode(struct hci_dev *hdev, __u8 status)
1753{
1754 struct hci_cp_sniff_mode *cp;
1755 struct hci_conn *conn;
1756
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001757 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001758
1759 if (!status)
1760 return;
1761
1762 cp = hci_sent_cmd_data(hdev, HCI_OP_SNIFF_MODE);
1763 if (!cp)
1764 return;
1765
1766 hci_dev_lock(hdev);
1767
1768 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001769 if (conn) {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001770 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001771
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001772 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001773 hci_sco_setup(conn, status);
1774 }
1775
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001776 hci_dev_unlock(hdev);
1777}
1778
1779static void hci_cs_exit_sniff_mode(struct hci_dev *hdev, __u8 status)
1780{
1781 struct hci_cp_exit_sniff_mode *cp;
1782 struct hci_conn *conn;
1783
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001784 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001785
1786 if (!status)
1787 return;
1788
1789 cp = hci_sent_cmd_data(hdev, HCI_OP_EXIT_SNIFF_MODE);
1790 if (!cp)
1791 return;
1792
1793 hci_dev_lock(hdev);
1794
1795 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001796 if (conn) {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001797 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001798
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001799 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001800 hci_sco_setup(conn, status);
1801 }
1802
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001803 hci_dev_unlock(hdev);
1804}
1805
Johan Hedberg88c3df12012-02-09 14:27:38 +02001806static void hci_cs_disconnect(struct hci_dev *hdev, u8 status)
1807{
1808 struct hci_cp_disconnect *cp;
1809 struct hci_conn *conn;
1810
1811 if (!status)
1812 return;
1813
1814 cp = hci_sent_cmd_data(hdev, HCI_OP_DISCONNECT);
1815 if (!cp)
1816 return;
1817
1818 hci_dev_lock(hdev);
1819
1820 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1821 if (conn)
1822 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001823 conn->dst_type, status);
Johan Hedberg88c3df12012-02-09 14:27:38 +02001824
1825 hci_dev_unlock(hdev);
1826}
1827
Andrei Emeltchenkoa02226d2012-09-27 17:26:19 +03001828static void hci_cs_create_phylink(struct hci_dev *hdev, u8 status)
1829{
Andrei Emeltchenko93c284e2012-09-27 17:26:20 +03001830 struct hci_cp_create_phy_link *cp;
1831
Andrei Emeltchenkoa02226d2012-09-27 17:26:19 +03001832 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andrei Emeltchenko93c284e2012-09-27 17:26:20 +03001833
Andrei Emeltchenko93c284e2012-09-27 17:26:20 +03001834 cp = hci_sent_cmd_data(hdev, HCI_OP_CREATE_PHY_LINK);
1835 if (!cp)
1836 return;
1837
Andrei Emeltchenkoe58917b2012-10-31 15:46:33 +02001838 hci_dev_lock(hdev);
1839
1840 if (status) {
1841 struct hci_conn *hcon;
1842
1843 hcon = hci_conn_hash_lookup_handle(hdev, cp->phy_handle);
1844 if (hcon)
1845 hci_conn_del(hcon);
1846 } else {
1847 amp_write_remote_assoc(hdev, cp->phy_handle);
1848 }
1849
1850 hci_dev_unlock(hdev);
Andrei Emeltchenkoa02226d2012-09-27 17:26:19 +03001851}
1852
Andrei Emeltchenko0b26ab92012-09-27 17:26:24 +03001853static void hci_cs_accept_phylink(struct hci_dev *hdev, u8 status)
1854{
1855 struct hci_cp_accept_phy_link *cp;
1856
1857 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1858
1859 if (status)
1860 return;
1861
1862 cp = hci_sent_cmd_data(hdev, HCI_OP_ACCEPT_PHY_LINK);
1863 if (!cp)
1864 return;
1865
1866 amp_write_remote_assoc(hdev, cp->phy_handle);
1867}
1868
Johan Hedbergcb1d68f2014-02-28 12:54:16 +02001869static void hci_cs_le_create_conn(struct hci_dev *hdev, u8 status)
1870{
1871 struct hci_cp_le_create_conn *cp;
1872 struct hci_conn *conn;
1873
1874 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1875
1876 /* All connection failure handling is taken care of by the
1877 * hci_le_conn_failed function which is triggered by the HCI
1878 * request completion callbacks used for connecting.
1879 */
1880 if (status)
1881 return;
1882
1883 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_CREATE_CONN);
1884 if (!cp)
1885 return;
1886
1887 hci_dev_lock(hdev);
1888
1889 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->peer_addr);
1890 if (!conn)
1891 goto unlock;
1892
1893 /* Store the initiator and responder address information which
1894 * is needed for SMP. These values will not change during the
1895 * lifetime of the connection.
1896 */
1897 conn->init_addr_type = cp->own_address_type;
1898 if (cp->own_address_type == ADDR_LE_DEV_RANDOM)
1899 bacpy(&conn->init_addr, &hdev->random_addr);
1900 else
1901 bacpy(&conn->init_addr, &hdev->bdaddr);
1902
1903 conn->resp_addr_type = cp->peer_addr_type;
1904 bacpy(&conn->resp_addr, &cp->peer_addr);
1905
Johan Hedberg9489eca2014-02-28 17:45:46 +02001906 /* We don't want the connection attempt to stick around
1907 * indefinitely since LE doesn't have a page timeout concept
1908 * like BR/EDR. Set a timer for any connection that doesn't use
1909 * the white list for connecting.
1910 */
1911 if (cp->filter_policy == HCI_LE_USE_PEER_ADDR)
1912 queue_delayed_work(conn->hdev->workqueue,
1913 &conn->le_conn_timeout,
Johan Hedberg09ae2602014-07-06 13:41:15 +03001914 conn->conn_timeout);
Johan Hedberg9489eca2014-02-28 17:45:46 +02001915
Johan Hedbergcb1d68f2014-02-28 12:54:16 +02001916unlock:
1917 hci_dev_unlock(hdev);
1918}
1919
Johan Hedberg81d0c8a2014-03-24 14:39:04 +02001920static void hci_cs_le_start_enc(struct hci_dev *hdev, u8 status)
1921{
1922 struct hci_cp_le_start_enc *cp;
1923 struct hci_conn *conn;
1924
1925 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1926
1927 if (!status)
1928 return;
1929
1930 hci_dev_lock(hdev);
1931
1932 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_START_ENC);
1933 if (!cp)
1934 goto unlock;
1935
1936 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1937 if (!conn)
1938 goto unlock;
1939
1940 if (conn->state != BT_CONNECTED)
1941 goto unlock;
1942
1943 hci_disconnect(conn, HCI_ERROR_AUTH_FAILURE);
1944 hci_conn_drop(conn);
1945
1946unlock:
1947 hci_dev_unlock(hdev);
1948}
1949
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001950static void hci_inquiry_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001951{
1952 __u8 status = *((__u8 *) skb->data);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001953 struct discovery_state *discov = &hdev->discovery;
1954 struct inquiry_entry *e;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001955
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001956 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001957
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001958 hci_conn_check_pending(hdev);
Andre Guedes89352e72011-11-04 14:16:53 -03001959
1960 if (!test_and_clear_bit(HCI_INQUIRY, &hdev->flags))
1961 return;
1962
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001963 smp_mb__after_atomic(); /* wake_up_bit advises about this barrier */
Andre Guedes3e13fa12013-03-27 20:04:56 -03001964 wake_up_bit(&hdev->flags, HCI_INQUIRY);
1965
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001966 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001967 return;
1968
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001969 hci_dev_lock(hdev);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001970
Andre Guedes343f9352012-02-17 20:39:37 -03001971 if (discov->state != DISCOVERY_FINDING)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001972 goto unlock;
1973
1974 if (list_empty(&discov->resolve)) {
1975 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1976 goto unlock;
1977 }
1978
1979 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
1980 if (e && hci_resolve_name(hdev, e) == 0) {
1981 e->name_state = NAME_PENDING;
1982 hci_discovery_set_state(hdev, DISCOVERY_RESOLVING);
1983 } else {
1984 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1985 }
1986
1987unlock:
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001988 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001989}
1990
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001991static void hci_inquiry_result_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992{
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001993 struct inquiry_data data;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001994 struct inquiry_info *info = (void *) (skb->data + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 int num_rsp = *((__u8 *) skb->data);
1996
1997 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
1998
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001999 if (!num_rsp)
2000 return;
2001
Andre Guedes1519cc12012-03-21 00:03:38 -03002002 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
2003 return;
2004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07002006
Johan Hedberge17acd42011-03-30 23:57:16 +03002007 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmannaf589252014-07-01 14:11:20 +02002008 u32 flags;
Johan Hedberg31754052012-01-04 13:39:52 +02002009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 bacpy(&data.bdaddr, &info->bdaddr);
2011 data.pscan_rep_mode = info->pscan_rep_mode;
2012 data.pscan_period_mode = info->pscan_period_mode;
2013 data.pscan_mode = info->pscan_mode;
2014 memcpy(data.dev_class, info->dev_class, 3);
2015 data.clock_offset = info->clock_offset;
2016 data.rssi = 0x00;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002017 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02002018
Marcel Holtmannaf589252014-07-01 14:11:20 +02002019 flags = hci_inquiry_cache_update(hdev, &data, false);
2020
Johan Hedberg48264f02011-11-09 13:58:58 +02002021 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Marcel Holtmannaf589252014-07-01 14:11:20 +02002022 info->dev_class, 0, flags, NULL, 0, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07002024
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 hci_dev_unlock(hdev);
2026}
2027
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002028static void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002030 struct hci_ev_conn_complete *ev = (void *) skb->data;
2031 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002033 BT_DBG("%s", hdev->name);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07002034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07002036
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002037 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann94992372009-04-19 19:30:03 +02002038 if (!conn) {
2039 if (ev->link_type != SCO_LINK)
2040 goto unlock;
2041
2042 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
2043 if (!conn)
2044 goto unlock;
2045
2046 conn->type = SCO_LINK;
2047 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07002048
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002049 if (!ev->status) {
2050 conn->handle = __le16_to_cpu(ev->handle);
Marcel Holtmann769be972008-07-14 20:13:49 +02002051
2052 if (conn->type == ACL_LINK) {
2053 conn->state = BT_CONFIG;
2054 hci_conn_hold(conn);
Szymon Janca9ea3ed2012-07-19 14:46:08 +02002055
2056 if (!conn->out && !hci_conn_ssp_enabled(conn) &&
2057 !hci_find_link_key(hdev, &ev->bdaddr))
2058 conn->disc_timeout = HCI_PAIRING_TIMEOUT;
2059 else
2060 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Marcel Holtmann769be972008-07-14 20:13:49 +02002061 } else
2062 conn->state = BT_CONNECTED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002063
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02002064 hci_conn_add_sysfs(conn);
2065
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002066 if (test_bit(HCI_AUTH, &hdev->flags))
Johan Hedberg4dae2792014-06-24 17:03:50 +03002067 set_bit(HCI_CONN_AUTH, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002068
2069 if (test_bit(HCI_ENCRYPT, &hdev->flags))
Johan Hedberg4dae2792014-06-24 17:03:50 +03002070 set_bit(HCI_CONN_ENCRYPT, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002071
2072 /* Get remote features */
2073 if (conn->type == ACL_LINK) {
2074 struct hci_cp_read_remote_features cp;
2075 cp.handle = ev->handle;
Marcel Holtmann769be972008-07-14 20:13:49 +02002076 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_FEATURES,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002077 sizeof(cp), &cp);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07002078 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07002079
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002080 /* Set packet type for incoming connection */
Andrei Emeltchenkod095c1e2011-12-01 14:33:27 +02002081 if (!conn->out && hdev->hci_ver < BLUETOOTH_VER_2_0) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002082 struct hci_cp_change_conn_ptype cp;
2083 cp.handle = ev->handle;
Marcel Holtmanna8746412008-07-14 20:13:46 +02002084 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002085 hci_send_cmd(hdev, HCI_OP_CHANGE_CONN_PTYPE, sizeof(cp),
2086 &cp);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002087 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02002088 } else {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002089 conn->state = BT_CLOSED;
Johan Hedberg17d5c042011-01-22 06:09:08 +02002090 if (conn->type == ACL_LINK)
Marcel Holtmann64c7b772014-02-18 14:22:20 -08002091 mgmt_connect_failed(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002092 conn->dst_type, ev->status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02002093 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002094
Marcel Holtmanne73439d2010-07-26 10:06:00 -04002095 if (conn->type == ACL_LINK)
2096 hci_sco_setup(conn, ev->status);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07002097
Marcel Holtmann769be972008-07-14 20:13:49 +02002098 if (ev->status) {
2099 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002100 hci_conn_del(conn);
Marcel Holtmannc89b6e62009-01-15 21:57:03 +01002101 } else if (ev->link_type != ACL_LINK)
2102 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002103
2104unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002106
2107 hci_conn_check_pending(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108}
2109
Johan Hedberg70c46422014-07-09 12:59:17 +03002110static void hci_reject_conn(struct hci_dev *hdev, bdaddr_t *bdaddr)
2111{
2112 struct hci_cp_reject_conn_req cp;
2113
2114 bacpy(&cp.bdaddr, bdaddr);
2115 cp.reason = HCI_ERROR_REJ_BAD_ADDR;
2116 hci_send_cmd(hdev, HCI_OP_REJECT_CONN_REQ, sizeof(cp), &cp);
2117}
2118
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002119static void hci_conn_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002121 struct hci_ev_conn_request *ev = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 int mask = hdev->link_mode;
Johan Hedberg70c46422014-07-09 12:59:17 +03002123 struct inquiry_entry *ie;
2124 struct hci_conn *conn;
Frédéric Dalleau20714bf2012-11-21 10:51:12 +01002125 __u8 flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03002127 BT_DBG("%s bdaddr %pMR type 0x%x", hdev->name, &ev->bdaddr,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002128 ev->link_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
Frédéric Dalleau20714bf2012-11-21 10:51:12 +01002130 mask |= hci_proto_connect_ind(hdev, &ev->bdaddr, ev->link_type,
2131 &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Johan Hedberg70c46422014-07-09 12:59:17 +03002133 if (!(mask & HCI_LM_ACCEPT)) {
2134 hci_reject_conn(hdev, &ev->bdaddr);
2135 return;
2136 }
2137
Johan Hedberga55bd292014-07-09 12:59:19 +03002138 if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags)) {
2139 if (hci_bdaddr_list_lookup(&hdev->blacklist, &ev->bdaddr,
2140 BDADDR_BREDR)) {
2141 hci_reject_conn(hdev, &ev->bdaddr);
2142 return;
2143 }
2144 } else {
2145 if (!hci_bdaddr_list_lookup(&hdev->whitelist, &ev->bdaddr,
2146 BDADDR_BREDR)) {
2147 hci_reject_conn(hdev, &ev->bdaddr);
2148 return;
2149 }
Johan Hedberg70c46422014-07-09 12:59:17 +03002150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Johan Hedberg70c46422014-07-09 12:59:17 +03002152 /* Connection accepted */
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002153
Johan Hedberg70c46422014-07-09 12:59:17 +03002154 hci_dev_lock(hdev);
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02002155
Johan Hedberg70c46422014-07-09 12:59:17 +03002156 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
2157 if (ie)
2158 memcpy(ie->data.dev_class, ev->dev_class, 3);
2159
2160 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type,
2161 &ev->bdaddr);
2162 if (!conn) {
2163 conn = hci_conn_add(hdev, ev->link_type, &ev->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 if (!conn) {
Johan Hedberg70c46422014-07-09 12:59:17 +03002165 BT_ERR("No memory for new connection");
2166 hci_dev_unlock(hdev);
2167 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 }
Johan Hedberg70c46422014-07-09 12:59:17 +03002169 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002170
Johan Hedberg70c46422014-07-09 12:59:17 +03002171 memcpy(conn->dev_class, ev->dev_class, 3);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002172
Johan Hedberg70c46422014-07-09 12:59:17 +03002173 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
Johan Hedberg70c46422014-07-09 12:59:17 +03002175 if (ev->link_type == ACL_LINK ||
2176 (!(flags & HCI_PROTO_DEFER) && !lmp_esco_capable(hdev))) {
2177 struct hci_cp_accept_conn_req cp;
2178 conn->state = BT_CONNECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
2180 bacpy(&cp.bdaddr, &ev->bdaddr);
Johan Hedberg70c46422014-07-09 12:59:17 +03002181
2182 if (lmp_rswitch_capable(hdev) && (mask & HCI_LM_MASTER))
2183 cp.role = 0x00; /* Become master */
2184 else
2185 cp.role = 0x01; /* Remain slave */
2186
2187 hci_send_cmd(hdev, HCI_OP_ACCEPT_CONN_REQ, sizeof(cp), &cp);
2188 } else if (!(flags & HCI_PROTO_DEFER)) {
2189 struct hci_cp_accept_sync_conn_req cp;
2190 conn->state = BT_CONNECT;
2191
2192 bacpy(&cp.bdaddr, &ev->bdaddr);
2193 cp.pkt_type = cpu_to_le16(conn->pkt_type);
2194
2195 cp.tx_bandwidth = cpu_to_le32(0x00001f40);
2196 cp.rx_bandwidth = cpu_to_le32(0x00001f40);
2197 cp.max_latency = cpu_to_le16(0xffff);
2198 cp.content_format = cpu_to_le16(hdev->voice_setting);
2199 cp.retrans_effort = 0xff;
2200
2201 hci_send_cmd(hdev, HCI_OP_ACCEPT_SYNC_CONN_REQ, sizeof(cp),
2202 &cp);
2203 } else {
2204 conn->state = BT_CONNECT2;
2205 hci_proto_connect_cfm(conn, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 }
2207}
2208
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02002209static u8 hci_to_mgmt_reason(u8 err)
2210{
2211 switch (err) {
2212 case HCI_ERROR_CONNECTION_TIMEOUT:
2213 return MGMT_DEV_DISCONN_TIMEOUT;
2214 case HCI_ERROR_REMOTE_USER_TERM:
2215 case HCI_ERROR_REMOTE_LOW_RESOURCES:
2216 case HCI_ERROR_REMOTE_POWER_OFF:
2217 return MGMT_DEV_DISCONN_REMOTE;
2218 case HCI_ERROR_LOCAL_HOST_TERM:
2219 return MGMT_DEV_DISCONN_LOCAL_HOST;
2220 default:
2221 return MGMT_DEV_DISCONN_UNKNOWN;
2222 }
2223}
2224
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002225static void hci_disconn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002227 struct hci_ev_disconn_complete *ev = (void *) skb->data;
Andre Guedesabf54a52013-11-07 17:36:09 -03002228 u8 reason = hci_to_mgmt_reason(ev->reason);
Andre Guedes9fcb18e2014-02-26 20:21:48 -03002229 struct hci_conn_params *params;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002230 struct hci_conn *conn;
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02002231 bool mgmt_connected;
Andre Guedes38462202013-11-07 17:36:10 -03002232 u8 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002234 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 hci_dev_lock(hdev);
2237
Marcel Holtmann04837f62006-07-03 10:02:33 +02002238 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergf7520542011-01-20 12:34:39 +02002239 if (!conn)
2240 goto unlock;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02002241
Andre Guedesabf54a52013-11-07 17:36:09 -03002242 if (ev->status) {
2243 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
2244 conn->dst_type, ev->status);
2245 goto unlock;
Johan Hedberg37d9ef72011-11-10 15:54:39 +02002246 }
Johan Hedbergf7520542011-01-20 12:34:39 +02002247
Andre Guedes38462202013-11-07 17:36:10 -03002248 conn->state = BT_CLOSED;
2249
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02002250 mgmt_connected = test_and_clear_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags);
2251 mgmt_device_disconnected(hdev, &conn->dst, conn->type, conn->dst_type,
2252 reason, mgmt_connected);
Andre Guedesabf54a52013-11-07 17:36:09 -03002253
Johan Hedbergaf6a9c32014-06-24 13:15:53 +03002254 if (conn->type == ACL_LINK &&
2255 test_bit(HCI_CONN_FLUSH_KEY, &conn->flags))
Andre Guedes38462202013-11-07 17:36:10 -03002256 hci_remove_link_key(hdev, &conn->dst);
Johan Hedberg22102462013-10-05 12:01:06 +02002257
Andre Guedes9fcb18e2014-02-26 20:21:48 -03002258 params = hci_conn_params_lookup(hdev, &conn->dst, conn->dst_type);
2259 if (params) {
2260 switch (params->auto_connect) {
2261 case HCI_AUTO_CONN_LINK_LOSS:
2262 if (ev->reason != HCI_ERROR_CONNECTION_TIMEOUT)
2263 break;
2264 /* Fall through */
2265
2266 case HCI_AUTO_CONN_ALWAYS:
Johan Hedberg418025d2014-07-04 12:37:24 +03002267 list_del_init(&params->action);
2268 list_add(&params->action, &hdev->pend_le_conns);
2269 hci_update_background_scan(hdev);
Andre Guedes9fcb18e2014-02-26 20:21:48 -03002270 break;
2271
2272 default:
2273 break;
2274 }
2275 }
2276
Andre Guedes38462202013-11-07 17:36:10 -03002277 type = conn->type;
Johan Hedberg22102462013-10-05 12:01:06 +02002278
Andre Guedes38462202013-11-07 17:36:10 -03002279 hci_proto_disconn_cfm(conn, ev->reason);
2280 hci_conn_del(conn);
2281
2282 /* Re-enable advertising if necessary, since it might
2283 * have been disabled by the connection. From the
2284 * HCI_LE_Set_Advertise_Enable command description in
2285 * the core specification (v4.0):
2286 * "The Controller shall continue advertising until the Host
2287 * issues an LE_Set_Advertise_Enable command with
2288 * Advertising_Enable set to 0x00 (Advertising is disabled)
2289 * or until a connection is created or until the Advertising
2290 * is timed out due to Directed Advertising."
2291 */
2292 if (type == LE_LINK)
2293 mgmt_reenable_advertising(hdev);
Johan Hedbergf7520542011-01-20 12:34:39 +02002294
2295unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 hci_dev_unlock(hdev);
2297}
2298
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002299static void hci_auth_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002300{
2301 struct hci_ev_auth_complete *ev = (void *) skb->data;
2302 struct hci_conn *conn;
2303
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002304 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002305
2306 hci_dev_lock(hdev);
2307
2308 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002309 if (!conn)
2310 goto unlock;
2311
2312 if (!ev->status) {
Johan Hedbergaa64a8b2012-01-18 21:33:12 +02002313 if (!hci_conn_ssp_enabled(conn) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002314 test_bit(HCI_CONN_REAUTH_PEND, &conn->flags)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002315 BT_INFO("re-auth of legacy device is not possible.");
Johan Hedberg2a611692011-02-19 12:06:00 -03002316 } else {
Johan Hedberg4dae2792014-06-24 17:03:50 +03002317 set_bit(HCI_CONN_AUTH, &conn->flags);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002318 conn->sec_level = conn->pending_sec_level;
Johan Hedberg2a611692011-02-19 12:06:00 -03002319 }
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002320 } else {
Johan Hedbergbab73cb2012-02-09 16:07:29 +02002321 mgmt_auth_failed(hdev, &conn->dst, conn->type, conn->dst_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002322 ev->status);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002323 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002324
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002325 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
2326 clear_bit(HCI_CONN_REAUTH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002327
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002328 if (conn->state == BT_CONFIG) {
Johan Hedbergaa64a8b2012-01-18 21:33:12 +02002329 if (!ev->status && hci_conn_ssp_enabled(conn)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002330 struct hci_cp_set_conn_encrypt cp;
2331 cp.handle = ev->handle;
2332 cp.encrypt = 0x01;
2333 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03002334 &cp);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002335 } else {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002336 conn->state = BT_CONNECTED;
2337 hci_proto_connect_cfm(conn, ev->status);
David Herrmann76a68ba2013-04-06 20:28:37 +02002338 hci_conn_drop(conn);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002339 }
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002340 } else {
2341 hci_auth_cfm(conn, ev->status);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002342
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002343 hci_conn_hold(conn);
2344 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
David Herrmann76a68ba2013-04-06 20:28:37 +02002345 hci_conn_drop(conn);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002346 }
2347
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002348 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002349 if (!ev->status) {
2350 struct hci_cp_set_conn_encrypt cp;
2351 cp.handle = ev->handle;
2352 cp.encrypt = 0x01;
2353 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03002354 &cp);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002355 } else {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002356 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002357 hci_encrypt_cfm(conn, ev->status, 0x00);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002358 }
2359 }
2360
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002361unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002362 hci_dev_unlock(hdev);
2363}
2364
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002365static void hci_remote_name_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002366{
Johan Hedberg127178d2010-11-18 22:22:29 +02002367 struct hci_ev_remote_name *ev = (void *) skb->data;
2368 struct hci_conn *conn;
2369
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002370 BT_DBG("%s", hdev->name);
2371
2372 hci_conn_check_pending(hdev);
Johan Hedberg127178d2010-11-18 22:22:29 +02002373
2374 hci_dev_lock(hdev);
2375
2376 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002377
2378 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
2379 goto check_auth;
2380
2381 if (ev->status == 0)
2382 hci_check_pending_name(hdev, conn, &ev->bdaddr, ev->name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002383 strnlen(ev->name, HCI_MAX_NAME_LENGTH));
Johan Hedbergb644ba32012-01-17 21:48:47 +02002384 else
2385 hci_check_pending_name(hdev, conn, &ev->bdaddr, NULL, 0);
2386
2387check_auth:
Johan Hedberg79c6c702011-04-28 11:28:55 -07002388 if (!conn)
2389 goto unlock;
2390
2391 if (!hci_outgoing_auth_needed(hdev, conn))
2392 goto unlock;
2393
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002394 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02002395 struct hci_cp_auth_requested cp;
2396 cp.handle = __cpu_to_le16(conn->handle);
2397 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
2398 }
2399
Johan Hedberg79c6c702011-04-28 11:28:55 -07002400unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02002401 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002402}
2403
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002404static void hci_encrypt_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002405{
2406 struct hci_ev_encrypt_change *ev = (void *) skb->data;
2407 struct hci_conn *conn;
2408
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002409 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002410
2411 hci_dev_lock(hdev);
2412
2413 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Marcel Holtmanndc8357c2014-01-31 16:24:27 -08002414 if (!conn)
2415 goto unlock;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002416
Marcel Holtmanndc8357c2014-01-31 16:24:27 -08002417 if (!ev->status) {
2418 if (ev->encrypt) {
2419 /* Encryption implies authentication */
Johan Hedberg4dae2792014-06-24 17:03:50 +03002420 set_bit(HCI_CONN_AUTH, &conn->flags);
2421 set_bit(HCI_CONN_ENCRYPT, &conn->flags);
Marcel Holtmanndc8357c2014-01-31 16:24:27 -08002422 conn->sec_level = conn->pending_sec_level;
Marcel Holtmannabf76ba2014-01-31 16:24:28 -08002423
Marcel Holtmann914a6ff2014-02-01 11:52:02 -08002424 /* P-256 authentication key implies FIPS */
2425 if (conn->key_type == HCI_LK_AUTH_COMBINATION_P256)
Johan Hedberg4dae2792014-06-24 17:03:50 +03002426 set_bit(HCI_CONN_FIPS, &conn->flags);
Marcel Holtmann914a6ff2014-02-01 11:52:02 -08002427
Marcel Holtmannabf76ba2014-01-31 16:24:28 -08002428 if ((conn->type == ACL_LINK && ev->encrypt == 0x02) ||
2429 conn->type == LE_LINK)
2430 set_bit(HCI_CONN_AES_CCM, &conn->flags);
2431 } else {
Johan Hedberg4dae2792014-06-24 17:03:50 +03002432 clear_bit(HCI_CONN_ENCRYPT, &conn->flags);
Marcel Holtmannabf76ba2014-01-31 16:24:28 -08002433 clear_bit(HCI_CONN_AES_CCM, &conn->flags);
2434 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002435 }
2436
Marcel Holtmanndc8357c2014-01-31 16:24:27 -08002437 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
2438
2439 if (ev->status && conn->state == BT_CONNECTED) {
2440 hci_disconnect(conn, HCI_ERROR_AUTH_FAILURE);
2441 hci_conn_drop(conn);
2442 goto unlock;
2443 }
2444
2445 if (conn->state == BT_CONFIG) {
2446 if (!ev->status)
2447 conn->state = BT_CONNECTED;
2448
Marcel Holtmann40b552a2014-03-19 14:10:25 -07002449 /* In Secure Connections Only mode, do not allow any
2450 * connections that are not encrypted with AES-CCM
2451 * using a P-256 authenticated combination key.
2452 */
2453 if (test_bit(HCI_SC_ONLY, &hdev->dev_flags) &&
2454 (!test_bit(HCI_CONN_AES_CCM, &conn->flags) ||
2455 conn->key_type != HCI_LK_AUTH_COMBINATION_P256)) {
2456 hci_proto_connect_cfm(conn, HCI_ERROR_AUTH_FAILURE);
2457 hci_conn_drop(conn);
2458 goto unlock;
2459 }
2460
Marcel Holtmanndc8357c2014-01-31 16:24:27 -08002461 hci_proto_connect_cfm(conn, ev->status);
2462 hci_conn_drop(conn);
2463 } else
2464 hci_encrypt_cfm(conn, ev->status, ev->encrypt);
2465
Gustavo Padovana7d77232012-05-13 03:20:07 -03002466unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002467 hci_dev_unlock(hdev);
2468}
2469
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002470static void hci_change_link_key_complete_evt(struct hci_dev *hdev,
2471 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002472{
2473 struct hci_ev_change_link_key_complete *ev = (void *) skb->data;
2474 struct hci_conn *conn;
2475
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002476 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002477
2478 hci_dev_lock(hdev);
2479
2480 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2481 if (conn) {
2482 if (!ev->status)
Johan Hedberg4dae2792014-06-24 17:03:50 +03002483 set_bit(HCI_CONN_SECURE, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002484
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002485 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002486
2487 hci_key_change_cfm(conn, ev->status);
2488 }
2489
2490 hci_dev_unlock(hdev);
2491}
2492
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002493static void hci_remote_features_evt(struct hci_dev *hdev,
2494 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002495{
2496 struct hci_ev_remote_features *ev = (void *) skb->data;
2497 struct hci_conn *conn;
2498
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002499 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002500
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002501 hci_dev_lock(hdev);
2502
2503 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02002504 if (!conn)
2505 goto unlock;
Marcel Holtmann769be972008-07-14 20:13:49 +02002506
Johan Hedbergccd556f2010-11-10 17:11:51 +02002507 if (!ev->status)
Johan Hedbergcad718e2013-04-17 15:00:51 +03002508 memcpy(conn->features[0], ev->features, 8);
Johan Hedbergccd556f2010-11-10 17:11:51 +02002509
2510 if (conn->state != BT_CONFIG)
2511 goto unlock;
2512
2513 if (!ev->status && lmp_ssp_capable(hdev) && lmp_ssp_capable(conn)) {
2514 struct hci_cp_read_remote_ext_features cp;
2515 cp.handle = ev->handle;
2516 cp.page = 0x01;
2517 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002518 sizeof(cp), &cp);
Johan Hedberg392599b2010-11-18 22:22:28 +02002519 goto unlock;
2520 }
2521
Johan Hedberg671267b2012-05-12 16:11:50 -03002522 if (!ev->status && !test_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02002523 struct hci_cp_remote_name_req cp;
2524 memset(&cp, 0, sizeof(cp));
2525 bacpy(&cp.bdaddr, &conn->dst);
2526 cp.pscan_rep_mode = 0x02;
2527 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002528 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
2529 mgmt_device_connected(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002530 conn->dst_type, 0, NULL, 0,
2531 conn->dev_class);
Johan Hedberg392599b2010-11-18 22:22:28 +02002532
Johan Hedberg127178d2010-11-18 22:22:29 +02002533 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02002534 conn->state = BT_CONNECTED;
2535 hci_proto_connect_cfm(conn, ev->status);
David Herrmann76a68ba2013-04-06 20:28:37 +02002536 hci_conn_drop(conn);
Marcel Holtmann769be972008-07-14 20:13:49 +02002537 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002538
Johan Hedbergccd556f2010-11-10 17:11:51 +02002539unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002540 hci_dev_unlock(hdev);
2541}
2542
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002543static void hci_cmd_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002544{
2545 struct hci_ev_cmd_complete *ev = (void *) skb->data;
Johan Hedberg9238f362013-03-05 20:37:48 +02002546 u8 status = skb->data[sizeof(*ev)];
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002547 __u16 opcode;
2548
2549 skb_pull(skb, sizeof(*ev));
2550
2551 opcode = __le16_to_cpu(ev->opcode);
2552
2553 switch (opcode) {
2554 case HCI_OP_INQUIRY_CANCEL:
2555 hci_cc_inquiry_cancel(hdev, skb);
2556 break;
2557
Andre Guedes4d934832012-03-21 00:03:35 -03002558 case HCI_OP_PERIODIC_INQ:
2559 hci_cc_periodic_inq(hdev, skb);
2560 break;
2561
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002562 case HCI_OP_EXIT_PERIODIC_INQ:
2563 hci_cc_exit_periodic_inq(hdev, skb);
2564 break;
2565
2566 case HCI_OP_REMOTE_NAME_REQ_CANCEL:
2567 hci_cc_remote_name_req_cancel(hdev, skb);
2568 break;
2569
2570 case HCI_OP_ROLE_DISCOVERY:
2571 hci_cc_role_discovery(hdev, skb);
2572 break;
2573
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002574 case HCI_OP_READ_LINK_POLICY:
2575 hci_cc_read_link_policy(hdev, skb);
2576 break;
2577
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002578 case HCI_OP_WRITE_LINK_POLICY:
2579 hci_cc_write_link_policy(hdev, skb);
2580 break;
2581
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002582 case HCI_OP_READ_DEF_LINK_POLICY:
2583 hci_cc_read_def_link_policy(hdev, skb);
2584 break;
2585
2586 case HCI_OP_WRITE_DEF_LINK_POLICY:
2587 hci_cc_write_def_link_policy(hdev, skb);
2588 break;
2589
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002590 case HCI_OP_RESET:
2591 hci_cc_reset(hdev, skb);
2592 break;
2593
2594 case HCI_OP_WRITE_LOCAL_NAME:
2595 hci_cc_write_local_name(hdev, skb);
2596 break;
2597
2598 case HCI_OP_READ_LOCAL_NAME:
2599 hci_cc_read_local_name(hdev, skb);
2600 break;
2601
2602 case HCI_OP_WRITE_AUTH_ENABLE:
2603 hci_cc_write_auth_enable(hdev, skb);
2604 break;
2605
2606 case HCI_OP_WRITE_ENCRYPT_MODE:
2607 hci_cc_write_encrypt_mode(hdev, skb);
2608 break;
2609
2610 case HCI_OP_WRITE_SCAN_ENABLE:
2611 hci_cc_write_scan_enable(hdev, skb);
2612 break;
2613
2614 case HCI_OP_READ_CLASS_OF_DEV:
2615 hci_cc_read_class_of_dev(hdev, skb);
2616 break;
2617
2618 case HCI_OP_WRITE_CLASS_OF_DEV:
2619 hci_cc_write_class_of_dev(hdev, skb);
2620 break;
2621
2622 case HCI_OP_READ_VOICE_SETTING:
2623 hci_cc_read_voice_setting(hdev, skb);
2624 break;
2625
2626 case HCI_OP_WRITE_VOICE_SETTING:
2627 hci_cc_write_voice_setting(hdev, skb);
2628 break;
2629
Marcel Holtmannb4cb9fb2013-10-14 13:56:16 -07002630 case HCI_OP_READ_NUM_SUPPORTED_IAC:
2631 hci_cc_read_num_supported_iac(hdev, skb);
2632 break;
2633
Marcel Holtmann333140b2008-07-14 20:13:48 +02002634 case HCI_OP_WRITE_SSP_MODE:
2635 hci_cc_write_ssp_mode(hdev, skb);
2636 break;
2637
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08002638 case HCI_OP_WRITE_SC_SUPPORT:
2639 hci_cc_write_sc_support(hdev, skb);
2640 break;
2641
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002642 case HCI_OP_READ_LOCAL_VERSION:
2643 hci_cc_read_local_version(hdev, skb);
2644 break;
2645
2646 case HCI_OP_READ_LOCAL_COMMANDS:
2647 hci_cc_read_local_commands(hdev, skb);
2648 break;
2649
2650 case HCI_OP_READ_LOCAL_FEATURES:
2651 hci_cc_read_local_features(hdev, skb);
2652 break;
2653
Andre Guedes971e3a42011-06-30 19:20:52 -03002654 case HCI_OP_READ_LOCAL_EXT_FEATURES:
2655 hci_cc_read_local_ext_features(hdev, skb);
2656 break;
2657
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002658 case HCI_OP_READ_BUFFER_SIZE:
2659 hci_cc_read_buffer_size(hdev, skb);
2660 break;
2661
2662 case HCI_OP_READ_BD_ADDR:
2663 hci_cc_read_bd_addr(hdev, skb);
2664 break;
2665
Johan Hedbergf332ec62013-03-15 17:07:11 -05002666 case HCI_OP_READ_PAGE_SCAN_ACTIVITY:
2667 hci_cc_read_page_scan_activity(hdev, skb);
2668 break;
2669
Johan Hedberg4a3ee762013-03-15 17:07:12 -05002670 case HCI_OP_WRITE_PAGE_SCAN_ACTIVITY:
2671 hci_cc_write_page_scan_activity(hdev, skb);
2672 break;
2673
Johan Hedbergf332ec62013-03-15 17:07:11 -05002674 case HCI_OP_READ_PAGE_SCAN_TYPE:
2675 hci_cc_read_page_scan_type(hdev, skb);
2676 break;
2677
Johan Hedberg4a3ee762013-03-15 17:07:12 -05002678 case HCI_OP_WRITE_PAGE_SCAN_TYPE:
2679 hci_cc_write_page_scan_type(hdev, skb);
2680 break;
2681
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +02002682 case HCI_OP_READ_DATA_BLOCK_SIZE:
2683 hci_cc_read_data_block_size(hdev, skb);
2684 break;
2685
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +02002686 case HCI_OP_READ_FLOW_CONTROL_MODE:
2687 hci_cc_read_flow_control_mode(hdev, skb);
2688 break;
2689
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +03002690 case HCI_OP_READ_LOCAL_AMP_INFO:
2691 hci_cc_read_local_amp_info(hdev, skb);
2692 break;
2693
Johan Hedberg33f35722014-06-28 17:54:06 +03002694 case HCI_OP_READ_CLOCK:
2695 hci_cc_read_clock(hdev, skb);
2696 break;
2697
Andrei Emeltchenko903e4542012-09-27 17:26:09 +03002698 case HCI_OP_READ_LOCAL_AMP_ASSOC:
2699 hci_cc_read_local_amp_assoc(hdev, skb);
2700 break;
2701
Johan Hedbergd5859e22011-01-25 01:19:58 +02002702 case HCI_OP_READ_INQ_RSP_TX_POWER:
2703 hci_cc_read_inq_rsp_tx_power(hdev, skb);
2704 break;
2705
Johan Hedberg980e1a52011-01-22 06:10:07 +02002706 case HCI_OP_PIN_CODE_REPLY:
2707 hci_cc_pin_code_reply(hdev, skb);
2708 break;
2709
2710 case HCI_OP_PIN_CODE_NEG_REPLY:
2711 hci_cc_pin_code_neg_reply(hdev, skb);
2712 break;
2713
Szymon Jancc35938b2011-03-22 13:12:21 +01002714 case HCI_OP_READ_LOCAL_OOB_DATA:
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08002715 hci_cc_read_local_oob_data(hdev, skb);
2716 break;
2717
2718 case HCI_OP_READ_LOCAL_OOB_EXT_DATA:
2719 hci_cc_read_local_oob_ext_data(hdev, skb);
Szymon Jancc35938b2011-03-22 13:12:21 +01002720 break;
2721
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002722 case HCI_OP_LE_READ_BUFFER_SIZE:
2723 hci_cc_le_read_buffer_size(hdev, skb);
2724 break;
2725
Johan Hedberg60e77322013-01-22 14:01:59 +02002726 case HCI_OP_LE_READ_LOCAL_FEATURES:
2727 hci_cc_le_read_local_features(hdev, skb);
2728 break;
2729
Johan Hedberg8fa19092012-10-19 20:57:49 +03002730 case HCI_OP_LE_READ_ADV_TX_POWER:
2731 hci_cc_le_read_adv_tx_power(hdev, skb);
2732 break;
2733
Johan Hedberga5c29682011-02-19 12:05:57 -03002734 case HCI_OP_USER_CONFIRM_REPLY:
2735 hci_cc_user_confirm_reply(hdev, skb);
2736 break;
2737
2738 case HCI_OP_USER_CONFIRM_NEG_REPLY:
2739 hci_cc_user_confirm_neg_reply(hdev, skb);
2740 break;
2741
Brian Gix1143d452011-11-23 08:28:34 -08002742 case HCI_OP_USER_PASSKEY_REPLY:
2743 hci_cc_user_passkey_reply(hdev, skb);
2744 break;
2745
2746 case HCI_OP_USER_PASSKEY_NEG_REPLY:
2747 hci_cc_user_passkey_neg_reply(hdev, skb);
Szymon Janc16cde992012-04-13 12:32:42 +02002748 break;
Andre Guedes07f7fa52011-12-02 21:13:31 +09002749
Marcel Holtmann7a4cd512014-02-19 19:52:13 -08002750 case HCI_OP_LE_SET_RANDOM_ADDR:
2751 hci_cc_le_set_random_addr(hdev, skb);
2752 break;
2753
Johan Hedbergc1d5dc42012-11-08 01:23:01 +01002754 case HCI_OP_LE_SET_ADV_ENABLE:
2755 hci_cc_le_set_adv_enable(hdev, skb);
2756 break;
2757
Marcel Holtmann533553f2014-03-21 12:18:10 -07002758 case HCI_OP_LE_SET_SCAN_PARAM:
2759 hci_cc_le_set_scan_param(hdev, skb);
2760 break;
2761
Andre Guedeseb9d91f2011-05-26 16:23:52 -03002762 case HCI_OP_LE_SET_SCAN_ENABLE:
2763 hci_cc_le_set_scan_enable(hdev, skb);
2764 break;
2765
Johan Hedbergcf1d0812013-01-22 14:02:00 +02002766 case HCI_OP_LE_READ_WHITE_LIST_SIZE:
2767 hci_cc_le_read_white_list_size(hdev, skb);
2768 break;
2769
Marcel Holtmann0f36b582014-02-27 20:37:31 -08002770 case HCI_OP_LE_CLEAR_WHITE_LIST:
2771 hci_cc_le_clear_white_list(hdev, skb);
2772 break;
2773
2774 case HCI_OP_LE_ADD_TO_WHITE_LIST:
2775 hci_cc_le_add_to_white_list(hdev, skb);
2776 break;
2777
2778 case HCI_OP_LE_DEL_FROM_WHITE_LIST:
2779 hci_cc_le_del_from_white_list(hdev, skb);
2780 break;
2781
Johan Hedberg9b008c02013-01-22 14:02:01 +02002782 case HCI_OP_LE_READ_SUPPORTED_STATES:
2783 hci_cc_le_read_supported_states(hdev, skb);
2784 break;
2785
Andre Guedesf9b49302011-06-30 19:20:53 -03002786 case HCI_OP_WRITE_LE_HOST_SUPPORTED:
2787 hci_cc_write_le_host_supported(hdev, skb);
2788 break;
2789
Johan Hedberg56ed2cb2014-02-27 14:05:40 +02002790 case HCI_OP_LE_SET_ADV_PARAM:
2791 hci_cc_set_adv_param(hdev, skb);
2792 break;
2793
Andrei Emeltchenko93c284e2012-09-27 17:26:20 +03002794 case HCI_OP_WRITE_REMOTE_AMP_ASSOC:
2795 hci_cc_write_remote_amp_assoc(hdev, skb);
2796 break;
2797
Andrzej Kaczmarek5ae76a92014-05-08 15:32:08 +02002798 case HCI_OP_READ_RSSI:
2799 hci_cc_read_rssi(hdev, skb);
2800 break;
2801
Andrzej Kaczmarek5a134fa2014-05-09 21:35:28 +02002802 case HCI_OP_READ_TX_POWER:
2803 hci_cc_read_tx_power(hdev, skb);
2804 break;
2805
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002806 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002807 BT_DBG("%s opcode 0x%4.4x", hdev->name, opcode);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002808 break;
2809 }
2810
Johan Hedbergad82cdd2013-03-09 09:53:50 +02002811 if (opcode != HCI_OP_NOP)
Marcel Holtmann65cc2b42014-06-16 12:30:56 +02002812 cancel_delayed_work(&hdev->cmd_timer);
Ville Tervo6bd32322011-02-16 16:32:41 +02002813
Johan Hedbergad82cdd2013-03-09 09:53:50 +02002814 hci_req_cmd_complete(hdev, opcode, status);
Johan Hedberg9238f362013-03-05 20:37:48 +02002815
Szymon Jancdbccd792012-12-11 08:51:19 +01002816 if (ev->ncmd && !test_bit(HCI_RESET, &hdev->flags)) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002817 atomic_set(&hdev->cmd_cnt, 1);
2818 if (!skb_queue_empty(&hdev->cmd_q))
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002819 queue_work(hdev->workqueue, &hdev->cmd_work);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002820 }
2821}
2822
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002823static void hci_cmd_status_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002824{
2825 struct hci_ev_cmd_status *ev = (void *) skb->data;
2826 __u16 opcode;
2827
2828 skb_pull(skb, sizeof(*ev));
2829
2830 opcode = __le16_to_cpu(ev->opcode);
2831
2832 switch (opcode) {
2833 case HCI_OP_INQUIRY:
2834 hci_cs_inquiry(hdev, ev->status);
2835 break;
2836
2837 case HCI_OP_CREATE_CONN:
2838 hci_cs_create_conn(hdev, ev->status);
2839 break;
2840
2841 case HCI_OP_ADD_SCO:
2842 hci_cs_add_sco(hdev, ev->status);
2843 break;
2844
Marcel Holtmannf8558552008-07-14 20:13:49 +02002845 case HCI_OP_AUTH_REQUESTED:
2846 hci_cs_auth_requested(hdev, ev->status);
2847 break;
2848
2849 case HCI_OP_SET_CONN_ENCRYPT:
2850 hci_cs_set_conn_encrypt(hdev, ev->status);
2851 break;
2852
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002853 case HCI_OP_REMOTE_NAME_REQ:
2854 hci_cs_remote_name_req(hdev, ev->status);
2855 break;
2856
Marcel Holtmann769be972008-07-14 20:13:49 +02002857 case HCI_OP_READ_REMOTE_FEATURES:
2858 hci_cs_read_remote_features(hdev, ev->status);
2859 break;
2860
2861 case HCI_OP_READ_REMOTE_EXT_FEATURES:
2862 hci_cs_read_remote_ext_features(hdev, ev->status);
2863 break;
2864
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002865 case HCI_OP_SETUP_SYNC_CONN:
2866 hci_cs_setup_sync_conn(hdev, ev->status);
2867 break;
2868
2869 case HCI_OP_SNIFF_MODE:
2870 hci_cs_sniff_mode(hdev, ev->status);
2871 break;
2872
2873 case HCI_OP_EXIT_SNIFF_MODE:
2874 hci_cs_exit_sniff_mode(hdev, ev->status);
2875 break;
2876
Johan Hedberg8962ee72011-01-20 12:40:27 +02002877 case HCI_OP_DISCONNECT:
Johan Hedberg88c3df12012-02-09 14:27:38 +02002878 hci_cs_disconnect(hdev, ev->status);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002879 break;
2880
Andrei Emeltchenkoa02226d2012-09-27 17:26:19 +03002881 case HCI_OP_CREATE_PHY_LINK:
2882 hci_cs_create_phylink(hdev, ev->status);
2883 break;
2884
Andrei Emeltchenko0b26ab92012-09-27 17:26:24 +03002885 case HCI_OP_ACCEPT_PHY_LINK:
2886 hci_cs_accept_phylink(hdev, ev->status);
2887 break;
2888
Johan Hedbergcb1d68f2014-02-28 12:54:16 +02002889 case HCI_OP_LE_CREATE_CONN:
2890 hci_cs_le_create_conn(hdev, ev->status);
2891 break;
2892
Johan Hedberg81d0c8a2014-03-24 14:39:04 +02002893 case HCI_OP_LE_START_ENC:
2894 hci_cs_le_start_enc(hdev, ev->status);
2895 break;
2896
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002897 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002898 BT_DBG("%s opcode 0x%4.4x", hdev->name, opcode);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002899 break;
2900 }
2901
Johan Hedbergad82cdd2013-03-09 09:53:50 +02002902 if (opcode != HCI_OP_NOP)
Marcel Holtmann65cc2b42014-06-16 12:30:56 +02002903 cancel_delayed_work(&hdev->cmd_timer);
Ville Tervo6bd32322011-02-16 16:32:41 +02002904
Johan Hedberg02350a72013-04-03 21:50:29 +03002905 if (ev->status ||
2906 (hdev->sent_cmd && !bt_cb(hdev->sent_cmd)->req.event))
2907 hci_req_cmd_complete(hdev, opcode, ev->status);
Johan Hedberg9238f362013-03-05 20:37:48 +02002908
Gustavo F. Padovan10572132011-03-16 15:36:29 -03002909 if (ev->ncmd && !test_bit(HCI_RESET, &hdev->flags)) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002910 atomic_set(&hdev->cmd_cnt, 1);
2911 if (!skb_queue_empty(&hdev->cmd_q))
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002912 queue_work(hdev->workqueue, &hdev->cmd_work);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002913 }
2914}
2915
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002916static void hci_role_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002917{
2918 struct hci_ev_role_change *ev = (void *) skb->data;
2919 struct hci_conn *conn;
2920
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002921 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002922
2923 hci_dev_lock(hdev);
2924
2925 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2926 if (conn) {
2927 if (!ev->status) {
2928 if (ev->role)
Johan Hedberg4dae2792014-06-24 17:03:50 +03002929 clear_bit(HCI_CONN_MASTER, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002930 else
Johan Hedberg4dae2792014-06-24 17:03:50 +03002931 set_bit(HCI_CONN_MASTER, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002932 }
2933
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002934 clear_bit(HCI_CONN_RSWITCH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002935
2936 hci_role_switch_cfm(conn, ev->status, ev->role);
2937 }
2938
2939 hci_dev_unlock(hdev);
2940}
2941
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002942static void hci_num_comp_pkts_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002944 struct hci_ev_num_comp_pkts *ev = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 int i;
2946
Andrei Emeltchenko32ac5b92011-12-19 16:31:29 +02002947 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_PACKET_BASED) {
2948 BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode);
2949 return;
2950 }
2951
Andrei Emeltchenkoc5993de2011-12-30 12:07:47 +02002952 if (skb->len < sizeof(*ev) || skb->len < sizeof(*ev) +
Gustavo Padovan807deac2012-05-17 00:36:24 -03002953 ev->num_hndl * sizeof(struct hci_comp_pkts_info)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 BT_DBG("%s bad parameters", hdev->name);
2955 return;
2956 }
2957
Andrei Emeltchenkoc5993de2011-12-30 12:07:47 +02002958 BT_DBG("%s num_hndl %d", hdev->name, ev->num_hndl);
2959
Andrei Emeltchenko613a1c02011-12-19 16:31:30 +02002960 for (i = 0; i < ev->num_hndl; i++) {
2961 struct hci_comp_pkts_info *info = &ev->handles[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 struct hci_conn *conn;
2963 __u16 handle, count;
2964
Andrei Emeltchenko613a1c02011-12-19 16:31:30 +02002965 handle = __le16_to_cpu(info->handle);
2966 count = __le16_to_cpu(info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967
2968 conn = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002969 if (!conn)
2970 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002972 conn->sent -= count;
2973
2974 switch (conn->type) {
2975 case ACL_LINK:
2976 hdev->acl_cnt += count;
2977 if (hdev->acl_cnt > hdev->acl_pkts)
2978 hdev->acl_cnt = hdev->acl_pkts;
2979 break;
2980
2981 case LE_LINK:
2982 if (hdev->le_pkts) {
2983 hdev->le_cnt += count;
2984 if (hdev->le_cnt > hdev->le_pkts)
2985 hdev->le_cnt = hdev->le_pkts;
2986 } else {
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002987 hdev->acl_cnt += count;
2988 if (hdev->acl_cnt > hdev->acl_pkts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 hdev->acl_cnt = hdev->acl_pkts;
2990 }
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002991 break;
2992
2993 case SCO_LINK:
2994 hdev->sco_cnt += count;
2995 if (hdev->sco_cnt > hdev->sco_pkts)
2996 hdev->sco_cnt = hdev->sco_pkts;
2997 break;
2998
2999 default:
3000 BT_ERR("Unknown type %d conn %p", conn->type, conn);
3001 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 }
3003 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003004
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02003005 queue_work(hdev->workqueue, &hdev->tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006}
3007
Andrei Emeltchenko76ef7cf2012-10-10 17:38:29 +03003008static struct hci_conn *__hci_conn_lookup_handle(struct hci_dev *hdev,
3009 __u16 handle)
3010{
3011 struct hci_chan *chan;
3012
3013 switch (hdev->dev_type) {
3014 case HCI_BREDR:
3015 return hci_conn_hash_lookup_handle(hdev, handle);
3016 case HCI_AMP:
3017 chan = hci_chan_lookup_handle(hdev, handle);
3018 if (chan)
3019 return chan->conn;
3020 break;
3021 default:
3022 BT_ERR("%s unknown dev_type %d", hdev->name, hdev->dev_type);
3023 break;
3024 }
3025
3026 return NULL;
3027}
3028
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003029static void hci_num_comp_blocks_evt(struct hci_dev *hdev, struct sk_buff *skb)
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02003030{
3031 struct hci_ev_num_comp_blocks *ev = (void *) skb->data;
3032 int i;
3033
3034 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_BLOCK_BASED) {
3035 BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode);
3036 return;
3037 }
3038
3039 if (skb->len < sizeof(*ev) || skb->len < sizeof(*ev) +
Gustavo Padovan807deac2012-05-17 00:36:24 -03003040 ev->num_hndl * sizeof(struct hci_comp_blocks_info)) {
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02003041 BT_DBG("%s bad parameters", hdev->name);
3042 return;
3043 }
3044
3045 BT_DBG("%s num_blocks %d num_hndl %d", hdev->name, ev->num_blocks,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003046 ev->num_hndl);
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02003047
3048 for (i = 0; i < ev->num_hndl; i++) {
3049 struct hci_comp_blocks_info *info = &ev->handles[i];
Andrei Emeltchenko76ef7cf2012-10-10 17:38:29 +03003050 struct hci_conn *conn = NULL;
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02003051 __u16 handle, block_count;
3052
3053 handle = __le16_to_cpu(info->handle);
3054 block_count = __le16_to_cpu(info->blocks);
3055
Andrei Emeltchenko76ef7cf2012-10-10 17:38:29 +03003056 conn = __hci_conn_lookup_handle(hdev, handle);
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02003057 if (!conn)
3058 continue;
3059
3060 conn->sent -= block_count;
3061
3062 switch (conn->type) {
3063 case ACL_LINK:
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03003064 case AMP_LINK:
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02003065 hdev->block_cnt += block_count;
3066 if (hdev->block_cnt > hdev->num_blocks)
3067 hdev->block_cnt = hdev->num_blocks;
3068 break;
3069
3070 default:
3071 BT_ERR("Unknown type %d conn %p", conn->type, conn);
3072 break;
3073 }
3074 }
3075
3076 queue_work(hdev->workqueue, &hdev->tx_work);
3077}
3078
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003079static void hci_mode_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003081 struct hci_ev_mode_change *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02003082 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003084 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085
3086 hci_dev_lock(hdev);
3087
Marcel Holtmann04837f62006-07-03 10:02:33 +02003088 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
3089 if (conn) {
3090 conn->mode = ev->mode;
Marcel Holtmann04837f62006-07-03 10:02:33 +02003091
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003092 if (!test_and_clear_bit(HCI_CONN_MODE_CHANGE_PEND,
3093 &conn->flags)) {
Marcel Holtmann04837f62006-07-03 10:02:33 +02003094 if (conn->mode == HCI_CM_ACTIVE)
Johan Hedberg58a681e2012-01-16 06:47:28 +02003095 set_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann04837f62006-07-03 10:02:33 +02003096 else
Johan Hedberg58a681e2012-01-16 06:47:28 +02003097 clear_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann04837f62006-07-03 10:02:33 +02003098 }
Marcel Holtmanne73439d2010-07-26 10:06:00 -04003099
Johan Hedberg51a8efd2012-01-16 06:10:31 +02003100 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04003101 hci_sco_setup(conn, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02003102 }
3103
3104 hci_dev_unlock(hdev);
3105}
3106
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003107static void hci_pin_code_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02003109 struct hci_ev_pin_code_req *ev = (void *) skb->data;
3110 struct hci_conn *conn;
3111
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003112 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02003113
3114 hci_dev_lock(hdev);
3115
3116 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Waldemar Rymarkiewiczb6f98042011-09-23 10:01:30 +02003117 if (!conn)
3118 goto unlock;
3119
3120 if (conn->state == BT_CONNECTED) {
Marcel Holtmann052b30b2009-04-26 20:01:22 +02003121 hci_conn_hold(conn);
3122 conn->disc_timeout = HCI_PAIRING_TIMEOUT;
David Herrmann76a68ba2013-04-06 20:28:37 +02003123 hci_conn_drop(conn);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02003124 }
3125
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003126 if (!test_bit(HCI_PAIRABLE, &hdev->dev_flags))
Johan Hedberg03b555e2011-01-04 15:40:05 +02003127 hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003128 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003129 else if (test_bit(HCI_MGMT, &hdev->dev_flags)) {
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02003130 u8 secure;
3131
3132 if (conn->pending_sec_level == BT_SECURITY_HIGH)
3133 secure = 1;
3134 else
3135 secure = 0;
3136
Johan Hedberg744cf192011-11-08 20:40:14 +02003137 mgmt_pin_code_request(hdev, &ev->bdaddr, secure);
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02003138 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02003139
Waldemar Rymarkiewiczb6f98042011-09-23 10:01:30 +02003140unlock:
Marcel Holtmann052b30b2009-04-26 20:01:22 +02003141 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142}
3143
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003144static void hci_link_key_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145{
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003146 struct hci_ev_link_key_req *ev = (void *) skb->data;
3147 struct hci_cp_link_key_reply cp;
3148 struct hci_conn *conn;
3149 struct link_key *key;
3150
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003151 BT_DBG("%s", hdev->name);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003152
Andrei Emeltchenko034cbea2013-05-14 11:44:16 +03003153 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003154 return;
3155
3156 hci_dev_lock(hdev);
3157
3158 key = hci_find_link_key(hdev, &ev->bdaddr);
3159 if (!key) {
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03003160 BT_DBG("%s link key not found for %pMR", hdev->name,
3161 &ev->bdaddr);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003162 goto not_found;
3163 }
3164
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03003165 BT_DBG("%s found key type %u for %pMR", hdev->name, key->type,
3166 &ev->bdaddr);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003167
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003168 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02003169 if (conn) {
Marcel Holtmann66138ce2014-01-10 02:07:20 -08003170 if ((key->type == HCI_LK_UNAUTH_COMBINATION_P192 ||
3171 key->type == HCI_LK_UNAUTH_COMBINATION_P256) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03003172 conn->auth_type != 0xff && (conn->auth_type & 0x01)) {
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02003173 BT_DBG("%s ignoring unauthenticated key", hdev->name);
3174 goto not_found;
3175 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003176
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02003177 if (key->type == HCI_LK_COMBINATION && key->pin_len < 16 &&
Johan Hedbergf3fb0b52014-06-02 10:12:44 +03003178 (conn->pending_sec_level == BT_SECURITY_HIGH ||
3179 conn->pending_sec_level == BT_SECURITY_FIPS)) {
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003180 BT_DBG("%s ignoring key unauthenticated for high security",
3181 hdev->name);
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02003182 goto not_found;
3183 }
3184
3185 conn->key_type = key->type;
3186 conn->pin_length = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003187 }
3188
3189 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03003190 memcpy(cp.link_key, key->val, HCI_LINK_KEY_SIZE);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003191
3192 hci_send_cmd(hdev, HCI_OP_LINK_KEY_REPLY, sizeof(cp), &cp);
3193
3194 hci_dev_unlock(hdev);
3195
3196 return;
3197
3198not_found:
3199 hci_send_cmd(hdev, HCI_OP_LINK_KEY_NEG_REPLY, 6, &ev->bdaddr);
3200 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201}
3202
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003203static void hci_link_key_notify_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02003205 struct hci_ev_link_key_notify *ev = (void *) skb->data;
3206 struct hci_conn *conn;
Johan Hedberg7652ff62014-06-24 13:15:49 +03003207 struct link_key *key;
3208 bool persistent;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003209 u8 pin_len = 0;
Marcel Holtmann052b30b2009-04-26 20:01:22 +02003210
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003211 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02003212
3213 hci_dev_lock(hdev);
3214
3215 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3216 if (conn) {
3217 hci_conn_hold(conn);
3218 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003219 pin_len = conn->pin_length;
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +02003220
3221 if (ev->key_type != HCI_LK_CHANGED_COMBINATION)
3222 conn->key_type = ev->key_type;
3223
David Herrmann76a68ba2013-04-06 20:28:37 +02003224 hci_conn_drop(conn);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02003225 }
3226
Johan Hedberg7652ff62014-06-24 13:15:49 +03003227 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
3228 goto unlock;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003229
Johan Hedberg7652ff62014-06-24 13:15:49 +03003230 key = hci_add_link_key(hdev, conn, &ev->bdaddr, ev->link_key,
3231 ev->key_type, pin_len, &persistent);
3232 if (!key)
3233 goto unlock;
3234
3235 mgmt_new_link_key(hdev, key, persistent);
3236
Johan Hedberg6d5650c2014-06-24 13:15:51 +03003237 /* Keep debug keys around only if the HCI_KEEP_DEBUG_KEYS flag
3238 * is set. If it's not set simply remove the key from the kernel
3239 * list (we've still notified user space about it but with
3240 * store_hint being 0).
3241 */
3242 if (key->type == HCI_LK_DEBUG_COMBINATION &&
3243 !test_bit(HCI_KEEP_DEBUG_KEYS, &hdev->dev_flags)) {
3244 list_del(&key->list);
3245 kfree(key);
3246 } else if (conn) {
Johan Hedbergaf6a9c32014-06-24 13:15:53 +03003247 if (persistent)
3248 clear_bit(HCI_CONN_FLUSH_KEY, &conn->flags);
3249 else
3250 set_bit(HCI_CONN_FLUSH_KEY, &conn->flags);
Johan Hedberg6d5650c2014-06-24 13:15:51 +03003251 }
Johan Hedberg7652ff62014-06-24 13:15:49 +03003252
3253unlock:
Marcel Holtmann052b30b2009-04-26 20:01:22 +02003254 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255}
3256
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003257static void hci_clock_offset_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann04837f62006-07-03 10:02:33 +02003258{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003259 struct hci_ev_clock_offset *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02003260 struct hci_conn *conn;
3261
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003262 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02003263
3264 hci_dev_lock(hdev);
3265
3266 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 if (conn && !ev->status) {
3268 struct inquiry_entry *ie;
3269
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02003270 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
3271 if (ie) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 ie->data.clock_offset = ev->clock_offset;
3273 ie->timestamp = jiffies;
3274 }
3275 }
3276
3277 hci_dev_unlock(hdev);
3278}
3279
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003280static void hci_pkt_type_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna8746412008-07-14 20:13:46 +02003281{
3282 struct hci_ev_pkt_type_change *ev = (void *) skb->data;
3283 struct hci_conn *conn;
3284
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003285 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna8746412008-07-14 20:13:46 +02003286
3287 hci_dev_lock(hdev);
3288
3289 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
3290 if (conn && !ev->status)
3291 conn->pkt_type = __le16_to_cpu(ev->pkt_type);
3292
3293 hci_dev_unlock(hdev);
3294}
3295
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003296static void hci_pscan_rep_mode_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann85a1e932005-08-09 20:28:02 -07003297{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003298 struct hci_ev_pscan_rep_mode *ev = (void *) skb->data;
Marcel Holtmann85a1e932005-08-09 20:28:02 -07003299 struct inquiry_entry *ie;
3300
3301 BT_DBG("%s", hdev->name);
3302
3303 hci_dev_lock(hdev);
3304
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02003305 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
3306 if (ie) {
Marcel Holtmann85a1e932005-08-09 20:28:02 -07003307 ie->data.pscan_rep_mode = ev->pscan_rep_mode;
3308 ie->timestamp = jiffies;
3309 }
3310
3311 hci_dev_unlock(hdev);
3312}
3313
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003314static void hci_inquiry_result_with_rssi_evt(struct hci_dev *hdev,
3315 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003316{
3317 struct inquiry_data data;
3318 int num_rsp = *((__u8 *) skb->data);
3319
3320 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
3321
3322 if (!num_rsp)
3323 return;
3324
Andre Guedes1519cc12012-03-21 00:03:38 -03003325 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
3326 return;
3327
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003328 hci_dev_lock(hdev);
3329
3330 if ((skb->len - 1) / num_rsp != sizeof(struct inquiry_info_with_rssi)) {
Szymon Janc138d22e2011-02-17 16:44:23 +01003331 struct inquiry_info_with_rssi_and_pscan_mode *info;
3332 info = (void *) (skb->data + 1);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003333
Johan Hedberge17acd42011-03-30 23:57:16 +03003334 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmannaf589252014-07-01 14:11:20 +02003335 u32 flags;
3336
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003337 bacpy(&data.bdaddr, &info->bdaddr);
3338 data.pscan_rep_mode = info->pscan_rep_mode;
3339 data.pscan_period_mode = info->pscan_period_mode;
3340 data.pscan_mode = info->pscan_mode;
3341 memcpy(data.dev_class, info->dev_class, 3);
3342 data.clock_offset = info->clock_offset;
3343 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02003344 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02003345
Marcel Holtmannaf589252014-07-01 14:11:20 +02003346 flags = hci_inquiry_cache_update(hdev, &data, false);
3347
Johan Hedberg48264f02011-11-09 13:58:58 +02003348 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003349 info->dev_class, info->rssi,
Marcel Holtmannaf589252014-07-01 14:11:20 +02003350 flags, NULL, 0, NULL, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003351 }
3352 } else {
3353 struct inquiry_info_with_rssi *info = (void *) (skb->data + 1);
3354
Johan Hedberge17acd42011-03-30 23:57:16 +03003355 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmannaf589252014-07-01 14:11:20 +02003356 u32 flags;
3357
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003358 bacpy(&data.bdaddr, &info->bdaddr);
3359 data.pscan_rep_mode = info->pscan_rep_mode;
3360 data.pscan_period_mode = info->pscan_period_mode;
3361 data.pscan_mode = 0x00;
3362 memcpy(data.dev_class, info->dev_class, 3);
3363 data.clock_offset = info->clock_offset;
3364 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02003365 data.ssp_mode = 0x00;
Marcel Holtmannaf589252014-07-01 14:11:20 +02003366
3367 flags = hci_inquiry_cache_update(hdev, &data, false);
3368
Johan Hedberg48264f02011-11-09 13:58:58 +02003369 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003370 info->dev_class, info->rssi,
Marcel Holtmannaf589252014-07-01 14:11:20 +02003371 flags, NULL, 0, NULL, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003372 }
3373 }
3374
3375 hci_dev_unlock(hdev);
3376}
3377
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003378static void hci_remote_ext_features_evt(struct hci_dev *hdev,
3379 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003380{
Marcel Holtmann41a96212008-07-14 20:13:48 +02003381 struct hci_ev_remote_ext_features *ev = (void *) skb->data;
3382 struct hci_conn *conn;
3383
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003384 BT_DBG("%s", hdev->name);
Marcel Holtmann41a96212008-07-14 20:13:48 +02003385
Marcel Holtmann41a96212008-07-14 20:13:48 +02003386 hci_dev_lock(hdev);
3387
3388 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02003389 if (!conn)
3390 goto unlock;
Marcel Holtmann41a96212008-07-14 20:13:48 +02003391
Johan Hedbergcad718e2013-04-17 15:00:51 +03003392 if (ev->page < HCI_MAX_PAGES)
3393 memcpy(conn->features[ev->page], ev->features, 8);
3394
Johan Hedbergccd556f2010-11-10 17:11:51 +02003395 if (!ev->status && ev->page == 0x01) {
3396 struct inquiry_entry *ie;
Marcel Holtmann41a96212008-07-14 20:13:48 +02003397
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02003398 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
3399 if (ie)
Johan Hedberg02b7cc62012-02-28 02:28:43 +02003400 ie->data.ssp_mode = (ev->features[0] & LMP_HOST_SSP);
Marcel Holtmann769be972008-07-14 20:13:49 +02003401
Jaganath Kanakkasserybbb0ead2013-04-16 20:16:30 +05303402 if (ev->features[0] & LMP_HOST_SSP) {
Johan Hedberg58a681e2012-01-16 06:47:28 +02003403 set_bit(HCI_CONN_SSP_ENABLED, &conn->flags);
Jaganath Kanakkasserybbb0ead2013-04-16 20:16:30 +05303404 } else {
3405 /* It is mandatory by the Bluetooth specification that
3406 * Extended Inquiry Results are only used when Secure
3407 * Simple Pairing is enabled, but some devices violate
3408 * this.
3409 *
3410 * To make these devices work, the internal SSP
3411 * enabled flag needs to be cleared if the remote host
3412 * features do not indicate SSP support */
3413 clear_bit(HCI_CONN_SSP_ENABLED, &conn->flags);
3414 }
Marcel Holtmanneb9a8f32014-01-15 22:37:38 -08003415
3416 if (ev->features[0] & LMP_HOST_SC)
3417 set_bit(HCI_CONN_SC_ENABLED, &conn->flags);
Marcel Holtmann41a96212008-07-14 20:13:48 +02003418 }
3419
Johan Hedbergccd556f2010-11-10 17:11:51 +02003420 if (conn->state != BT_CONFIG)
3421 goto unlock;
3422
Johan Hedberg671267b2012-05-12 16:11:50 -03003423 if (!ev->status && !test_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02003424 struct hci_cp_remote_name_req cp;
3425 memset(&cp, 0, sizeof(cp));
3426 bacpy(&cp.bdaddr, &conn->dst);
3427 cp.pscan_rep_mode = 0x02;
3428 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
Johan Hedbergb644ba32012-01-17 21:48:47 +02003429 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
3430 mgmt_device_connected(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003431 conn->dst_type, 0, NULL, 0,
3432 conn->dev_class);
Johan Hedberg392599b2010-11-18 22:22:28 +02003433
Johan Hedberg127178d2010-11-18 22:22:29 +02003434 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02003435 conn->state = BT_CONNECTED;
3436 hci_proto_connect_cfm(conn, ev->status);
David Herrmann76a68ba2013-04-06 20:28:37 +02003437 hci_conn_drop(conn);
Johan Hedbergccd556f2010-11-10 17:11:51 +02003438 }
3439
3440unlock:
Marcel Holtmann41a96212008-07-14 20:13:48 +02003441 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003442}
3443
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003444static void hci_sync_conn_complete_evt(struct hci_dev *hdev,
3445 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003446{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003447 struct hci_ev_sync_conn_complete *ev = (void *) skb->data;
3448 struct hci_conn *conn;
3449
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003450 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003451
3452 hci_dev_lock(hdev);
3453
3454 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann9dc0a3a2008-07-14 20:13:46 +02003455 if (!conn) {
3456 if (ev->link_type == ESCO_LINK)
3457 goto unlock;
3458
3459 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
3460 if (!conn)
3461 goto unlock;
3462
3463 conn->type = SCO_LINK;
3464 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003465
Marcel Holtmann732547f2009-04-19 19:14:14 +02003466 switch (ev->status) {
3467 case 0x00:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003468 conn->handle = __le16_to_cpu(ev->handle);
3469 conn->state = BT_CONNECTED;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02003470
3471 hci_conn_add_sysfs(conn);
Marcel Holtmann732547f2009-04-19 19:14:14 +02003472 break;
3473
Nick Pelly81218d22014-06-30 11:25:01 +05303474 case 0x10: /* Connection Accept Timeout */
Frédéric Dalleau1a4c9582013-08-19 14:24:02 +02003475 case 0x0d: /* Connection Rejected due to Limited Resources */
Stephen Coe705e5712010-02-16 11:29:44 -05003476 case 0x11: /* Unsupported Feature or Parameter Value */
Marcel Holtmann732547f2009-04-19 19:14:14 +02003477 case 0x1c: /* SCO interval rejected */
Nick Pelly1038a002010-02-03 11:42:26 -08003478 case 0x1a: /* Unsupported Remote Feature */
Marcel Holtmann732547f2009-04-19 19:14:14 +02003479 case 0x1f: /* Unspecified error */
Andrew Earl27539bc2014-03-10 10:31:04 +00003480 case 0x20: /* Unsupported LMP Parameter value */
Frédéric Dalleau2dea6322013-08-19 14:24:03 +02003481 if (conn->out) {
Marcel Holtmann732547f2009-04-19 19:14:14 +02003482 conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) |
3483 (hdev->esco_type & EDR_ESCO_MASK);
Frédéric Dalleau2dea6322013-08-19 14:24:03 +02003484 if (hci_setup_sync(conn, conn->link->handle))
3485 goto unlock;
Marcel Holtmann732547f2009-04-19 19:14:14 +02003486 }
3487 /* fall through */
3488
3489 default:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003490 conn->state = BT_CLOSED;
Marcel Holtmann732547f2009-04-19 19:14:14 +02003491 break;
3492 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003493
3494 hci_proto_connect_cfm(conn, ev->status);
3495 if (ev->status)
3496 hci_conn_del(conn);
3497
3498unlock:
3499 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003500}
3501
Marcel Holtmannefdcf8e2013-10-15 10:31:12 -07003502static inline size_t eir_get_length(u8 *eir, size_t eir_len)
3503{
3504 size_t parsed = 0;
3505
3506 while (parsed < eir_len) {
3507 u8 field_len = eir[0];
3508
3509 if (field_len == 0)
3510 return parsed;
3511
3512 parsed += field_len + 1;
3513 eir += field_len + 1;
3514 }
3515
3516 return eir_len;
3517}
3518
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003519static void hci_extended_inquiry_result_evt(struct hci_dev *hdev,
3520 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003521{
3522 struct inquiry_data data;
3523 struct extended_inquiry_info *info = (void *) (skb->data + 1);
3524 int num_rsp = *((__u8 *) skb->data);
Vishal Agarwal9d939d92012-04-26 19:19:56 +05303525 size_t eir_len;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003526
3527 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
3528
3529 if (!num_rsp)
3530 return;
3531
Andre Guedes1519cc12012-03-21 00:03:38 -03003532 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
3533 return;
3534
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003535 hci_dev_lock(hdev);
3536
Johan Hedberge17acd42011-03-30 23:57:16 +03003537 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmannaf589252014-07-01 14:11:20 +02003538 u32 flags;
3539 bool name_known;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003540
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003541 bacpy(&data.bdaddr, &info->bdaddr);
Szymon Janc138d22e2011-02-17 16:44:23 +01003542 data.pscan_rep_mode = info->pscan_rep_mode;
3543 data.pscan_period_mode = info->pscan_period_mode;
3544 data.pscan_mode = 0x00;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003545 memcpy(data.dev_class, info->dev_class, 3);
Szymon Janc138d22e2011-02-17 16:44:23 +01003546 data.clock_offset = info->clock_offset;
3547 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02003548 data.ssp_mode = 0x01;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003549
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003550 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg4ddb1932012-01-15 20:04:43 +02003551 name_known = eir_has_data_type(info->data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003552 sizeof(info->data),
3553 EIR_NAME_COMPLETE);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003554 else
3555 name_known = true;
3556
Marcel Holtmannaf589252014-07-01 14:11:20 +02003557 flags = hci_inquiry_cache_update(hdev, &data, name_known);
3558
Vishal Agarwal9d939d92012-04-26 19:19:56 +05303559 eir_len = eir_get_length(info->data, sizeof(info->data));
Marcel Holtmannaf589252014-07-01 14:11:20 +02003560
Johan Hedberg48264f02011-11-09 13:58:58 +02003561 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Marcel Holtmannaf589252014-07-01 14:11:20 +02003562 info->dev_class, info->rssi,
3563 flags, info->data, eir_len, NULL, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003564 }
3565
3566 hci_dev_unlock(hdev);
3567}
3568
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003569static void hci_key_refresh_complete_evt(struct hci_dev *hdev,
3570 struct sk_buff *skb)
3571{
3572 struct hci_ev_key_refresh_complete *ev = (void *) skb->data;
3573 struct hci_conn *conn;
3574
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003575 BT_DBG("%s status 0x%2.2x handle 0x%4.4x", hdev->name, ev->status,
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003576 __le16_to_cpu(ev->handle));
3577
3578 hci_dev_lock(hdev);
3579
3580 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
3581 if (!conn)
3582 goto unlock;
3583
Johan Hedberg9eb1fbf2014-04-11 12:02:31 -07003584 /* For BR/EDR the necessary steps are taken through the
3585 * auth_complete event.
3586 */
3587 if (conn->type != LE_LINK)
3588 goto unlock;
3589
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003590 if (!ev->status)
3591 conn->sec_level = conn->pending_sec_level;
3592
3593 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
3594
3595 if (ev->status && conn->state == BT_CONNECTED) {
Andre Guedesbed71742013-01-30 11:50:56 -03003596 hci_disconnect(conn, HCI_ERROR_AUTH_FAILURE);
David Herrmann76a68ba2013-04-06 20:28:37 +02003597 hci_conn_drop(conn);
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003598 goto unlock;
3599 }
3600
3601 if (conn->state == BT_CONFIG) {
3602 if (!ev->status)
3603 conn->state = BT_CONNECTED;
3604
3605 hci_proto_connect_cfm(conn, ev->status);
David Herrmann76a68ba2013-04-06 20:28:37 +02003606 hci_conn_drop(conn);
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003607 } else {
3608 hci_auth_cfm(conn, ev->status);
3609
3610 hci_conn_hold(conn);
3611 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
David Herrmann76a68ba2013-04-06 20:28:37 +02003612 hci_conn_drop(conn);
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003613 }
3614
3615unlock:
3616 hci_dev_unlock(hdev);
3617}
3618
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003619static u8 hci_get_auth_req(struct hci_conn *conn)
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003620{
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003621 /* If remote requests no-bonding follow that lead */
Mikel Astizacabae92013-06-28 10:56:28 +02003622 if (conn->remote_auth == HCI_AT_NO_BONDING ||
3623 conn->remote_auth == HCI_AT_NO_BONDING_MITM)
Waldemar Rymarkiewicz58797bf2011-04-28 12:07:58 +02003624 return conn->remote_auth | (conn->auth_type & 0x01);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003625
Mikel Astizb7f94c82014-04-08 14:21:31 +02003626 /* If both remote and local have enough IO capabilities, require
3627 * MITM protection
3628 */
3629 if (conn->remote_cap != HCI_IO_NO_INPUT_OUTPUT &&
3630 conn->io_capability != HCI_IO_NO_INPUT_OUTPUT)
3631 return conn->remote_auth | 0x01;
3632
Timo Mueller7e741702014-04-08 14:21:33 +02003633 /* No MITM protection possible so ignore remote requirement */
3634 return (conn->remote_auth & ~0x01) | (conn->auth_type & 0x01);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003635}
3636
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003637static void hci_io_capa_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann04936842008-07-14 20:13:48 +02003638{
3639 struct hci_ev_io_capa_request *ev = (void *) skb->data;
3640 struct hci_conn *conn;
3641
3642 BT_DBG("%s", hdev->name);
3643
3644 hci_dev_lock(hdev);
3645
3646 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003647 if (!conn)
3648 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02003649
Johan Hedberg03b555e2011-01-04 15:40:05 +02003650 hci_conn_hold(conn);
3651
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003652 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg03b555e2011-01-04 15:40:05 +02003653 goto unlock;
3654
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003655 if (test_bit(HCI_PAIRABLE, &hdev->dev_flags) ||
Gustavo Padovan807deac2012-05-17 00:36:24 -03003656 (conn->remote_auth & ~0x01) == HCI_AT_NO_BONDING) {
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003657 struct hci_cp_io_capability_reply cp;
3658
3659 bacpy(&cp.bdaddr, &ev->bdaddr);
Hemant Gupta7a7f1e72012-01-16 13:34:29 +05303660 /* Change the IO capability from KeyboardDisplay
3661 * to DisplayYesNo as it is not supported by BT spec. */
3662 cp.capability = (conn->io_capability == 0x04) ?
Mikel Astiza7676312013-06-28 10:56:29 +02003663 HCI_IO_DISPLAY_YESNO : conn->io_capability;
Mikel Astizb7f94c82014-04-08 14:21:31 +02003664
3665 /* If we are initiators, there is no remote information yet */
3666 if (conn->remote_auth == 0xff) {
Mikel Astizb16c6602014-04-08 14:21:34 +02003667 /* Request MITM protection if our IO caps allow it
Johan Hedberg4ad51a72014-06-09 14:41:25 +03003668 * except for the no-bonding case.
Mikel Astizb16c6602014-04-08 14:21:34 +02003669 */
Mikel Astiz6fd6b912014-04-08 14:21:32 +02003670 if (conn->io_capability != HCI_IO_NO_INPUT_OUTPUT &&
Mikel Astizb16c6602014-04-08 14:21:34 +02003671 cp.authentication != HCI_AT_NO_BONDING)
Johan Hedberg6c538232014-07-11 15:32:23 +03003672 conn->auth_type |= 0x01;
3673
3674 cp.authentication = conn->auth_type;
Mikel Astizb7f94c82014-04-08 14:21:31 +02003675 } else {
3676 conn->auth_type = hci_get_auth_req(conn);
3677 cp.authentication = conn->auth_type;
3678 }
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003679
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003680 if (hci_find_remote_oob_data(hdev, &conn->dst) &&
3681 (conn->out || test_bit(HCI_CONN_REMOTE_OOB, &conn->flags)))
Szymon Jancce85ee12011-03-22 13:12:23 +01003682 cp.oob_data = 0x01;
3683 else
3684 cp.oob_data = 0x00;
3685
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003686 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003687 sizeof(cp), &cp);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003688 } else {
3689 struct hci_cp_io_capability_neg_reply cp;
3690
3691 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +02003692 cp.reason = HCI_ERROR_PAIRING_NOT_ALLOWED;
Johan Hedberg03b555e2011-01-04 15:40:05 +02003693
3694 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003695 sizeof(cp), &cp);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003696 }
3697
3698unlock:
3699 hci_dev_unlock(hdev);
3700}
3701
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003702static void hci_io_capa_reply_evt(struct hci_dev *hdev, struct sk_buff *skb)
Johan Hedberg03b555e2011-01-04 15:40:05 +02003703{
3704 struct hci_ev_io_capa_reply *ev = (void *) skb->data;
3705 struct hci_conn *conn;
3706
3707 BT_DBG("%s", hdev->name);
3708
3709 hci_dev_lock(hdev);
3710
3711 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3712 if (!conn)
3713 goto unlock;
3714
Johan Hedberg03b555e2011-01-04 15:40:05 +02003715 conn->remote_cap = ev->capability;
Johan Hedberg03b555e2011-01-04 15:40:05 +02003716 conn->remote_auth = ev->authentication;
Johan Hedberg58a681e2012-01-16 06:47:28 +02003717 if (ev->oob_data)
3718 set_bit(HCI_CONN_REMOTE_OOB, &conn->flags);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003719
3720unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02003721 hci_dev_unlock(hdev);
3722}
3723
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003724static void hci_user_confirm_request_evt(struct hci_dev *hdev,
3725 struct sk_buff *skb)
Johan Hedberga5c29682011-02-19 12:05:57 -03003726{
3727 struct hci_ev_user_confirm_req *ev = (void *) skb->data;
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003728 int loc_mitm, rem_mitm, confirm_hint = 0;
Johan Hedberg7a828902011-04-28 11:28:53 -07003729 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03003730
3731 BT_DBG("%s", hdev->name);
3732
3733 hci_dev_lock(hdev);
3734
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003735 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg7a828902011-04-28 11:28:53 -07003736 goto unlock;
Johan Hedberga5c29682011-02-19 12:05:57 -03003737
Johan Hedberg7a828902011-04-28 11:28:53 -07003738 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3739 if (!conn)
3740 goto unlock;
3741
3742 loc_mitm = (conn->auth_type & 0x01);
3743 rem_mitm = (conn->remote_auth & 0x01);
3744
3745 /* If we require MITM but the remote device can't provide that
Johan Hedberg6c538232014-07-11 15:32:23 +03003746 * (it has NoInputNoOutput) then reject the confirmation
3747 * request. We check the security level here since it doesn't
3748 * necessarily match conn->auth_type.
Mikel Astiz6fd6b912014-04-08 14:21:32 +02003749 */
Johan Hedberg6c538232014-07-11 15:32:23 +03003750 if (conn->pending_sec_level > BT_SECURITY_MEDIUM &&
3751 conn->remote_cap == HCI_IO_NO_INPUT_OUTPUT) {
Johan Hedberg7a828902011-04-28 11:28:53 -07003752 BT_DBG("Rejecting request: remote device can't provide MITM");
3753 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003754 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberg7a828902011-04-28 11:28:53 -07003755 goto unlock;
3756 }
3757
3758 /* If no side requires MITM protection; auto-accept */
Mikel Astiza7676312013-06-28 10:56:29 +02003759 if ((!loc_mitm || conn->remote_cap == HCI_IO_NO_INPUT_OUTPUT) &&
3760 (!rem_mitm || conn->io_capability == HCI_IO_NO_INPUT_OUTPUT)) {
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003761
3762 /* If we're not the initiators request authorization to
3763 * proceed from user space (mgmt_user_confirm with
Johan Hedbergba15a582014-06-09 13:58:14 +03003764 * confirm_hint set to 1). The exception is if neither
3765 * side had MITM in which case we do auto-accept.
3766 */
3767 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags) &&
3768 (loc_mitm || rem_mitm)) {
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003769 BT_DBG("Confirming auto-accept as acceptor");
3770 confirm_hint = 1;
3771 goto confirm;
3772 }
3773
Johan Hedberg9f616562011-04-28 11:28:54 -07003774 BT_DBG("Auto-accept of user confirmation with %ums delay",
Gustavo Padovan807deac2012-05-17 00:36:24 -03003775 hdev->auto_accept_delay);
Johan Hedberg9f616562011-04-28 11:28:54 -07003776
3777 if (hdev->auto_accept_delay > 0) {
3778 int delay = msecs_to_jiffies(hdev->auto_accept_delay);
Johan Hedberg7bc18d92013-10-16 18:11:39 +03003779 queue_delayed_work(conn->hdev->workqueue,
3780 &conn->auto_accept_work, delay);
Johan Hedberg9f616562011-04-28 11:28:54 -07003781 goto unlock;
3782 }
3783
Johan Hedberg7a828902011-04-28 11:28:53 -07003784 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003785 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberg7a828902011-04-28 11:28:53 -07003786 goto unlock;
3787 }
3788
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003789confirm:
Johan Hedberg39adbff2014-03-20 08:18:14 +02003790 mgmt_user_confirm_request(hdev, &ev->bdaddr, ACL_LINK, 0,
3791 le32_to_cpu(ev->passkey), confirm_hint);
Johan Hedberg7a828902011-04-28 11:28:53 -07003792
3793unlock:
Johan Hedberga5c29682011-02-19 12:05:57 -03003794 hci_dev_unlock(hdev);
3795}
3796
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003797static void hci_user_passkey_request_evt(struct hci_dev *hdev,
3798 struct sk_buff *skb)
Brian Gix1143d452011-11-23 08:28:34 -08003799{
3800 struct hci_ev_user_passkey_req *ev = (void *) skb->data;
3801
3802 BT_DBG("%s", hdev->name);
3803
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003804 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg272d90d2012-02-09 15:26:12 +02003805 mgmt_user_passkey_request(hdev, &ev->bdaddr, ACL_LINK, 0);
Brian Gix1143d452011-11-23 08:28:34 -08003806}
3807
Johan Hedberg92a25252012-09-06 18:39:26 +03003808static void hci_user_passkey_notify_evt(struct hci_dev *hdev,
3809 struct sk_buff *skb)
3810{
3811 struct hci_ev_user_passkey_notify *ev = (void *) skb->data;
3812 struct hci_conn *conn;
3813
3814 BT_DBG("%s", hdev->name);
3815
3816 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3817 if (!conn)
3818 return;
3819
3820 conn->passkey_notify = __le32_to_cpu(ev->passkey);
3821 conn->passkey_entered = 0;
3822
3823 if (test_bit(HCI_MGMT, &hdev->dev_flags))
3824 mgmt_user_passkey_notify(hdev, &conn->dst, conn->type,
3825 conn->dst_type, conn->passkey_notify,
3826 conn->passkey_entered);
3827}
3828
3829static void hci_keypress_notify_evt(struct hci_dev *hdev, struct sk_buff *skb)
3830{
3831 struct hci_ev_keypress_notify *ev = (void *) skb->data;
3832 struct hci_conn *conn;
3833
3834 BT_DBG("%s", hdev->name);
3835
3836 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3837 if (!conn)
3838 return;
3839
3840 switch (ev->type) {
3841 case HCI_KEYPRESS_STARTED:
3842 conn->passkey_entered = 0;
3843 return;
3844
3845 case HCI_KEYPRESS_ENTERED:
3846 conn->passkey_entered++;
3847 break;
3848
3849 case HCI_KEYPRESS_ERASED:
3850 conn->passkey_entered--;
3851 break;
3852
3853 case HCI_KEYPRESS_CLEARED:
3854 conn->passkey_entered = 0;
3855 break;
3856
3857 case HCI_KEYPRESS_COMPLETED:
3858 return;
3859 }
3860
3861 if (test_bit(HCI_MGMT, &hdev->dev_flags))
3862 mgmt_user_passkey_notify(hdev, &conn->dst, conn->type,
3863 conn->dst_type, conn->passkey_notify,
3864 conn->passkey_entered);
3865}
3866
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003867static void hci_simple_pair_complete_evt(struct hci_dev *hdev,
3868 struct sk_buff *skb)
Marcel Holtmann04936842008-07-14 20:13:48 +02003869{
3870 struct hci_ev_simple_pair_complete *ev = (void *) skb->data;
3871 struct hci_conn *conn;
3872
3873 BT_DBG("%s", hdev->name);
3874
3875 hci_dev_lock(hdev);
3876
3877 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg2a611692011-02-19 12:06:00 -03003878 if (!conn)
3879 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02003880
Johan Hedberg2a611692011-02-19 12:06:00 -03003881 /* To avoid duplicate auth_failed events to user space we check
3882 * the HCI_CONN_AUTH_PEND flag which will be set if we
3883 * initiated the authentication. A traditional auth_complete
3884 * event gets always produced as initiator and is also mapped to
3885 * the mgmt_auth_failed event */
Mikel Astizfa1bd912012-08-09 09:52:29 +02003886 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags) && ev->status)
Johan Hedbergbab73cb2012-02-09 16:07:29 +02003887 mgmt_auth_failed(hdev, &conn->dst, conn->type, conn->dst_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003888 ev->status);
Johan Hedberg2a611692011-02-19 12:06:00 -03003889
David Herrmann76a68ba2013-04-06 20:28:37 +02003890 hci_conn_drop(conn);
Johan Hedberg2a611692011-02-19 12:06:00 -03003891
3892unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02003893 hci_dev_unlock(hdev);
3894}
3895
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003896static void hci_remote_host_features_evt(struct hci_dev *hdev,
3897 struct sk_buff *skb)
Marcel Holtmann41a96212008-07-14 20:13:48 +02003898{
3899 struct hci_ev_remote_host_features *ev = (void *) skb->data;
3900 struct inquiry_entry *ie;
Johan Hedbergcad718e2013-04-17 15:00:51 +03003901 struct hci_conn *conn;
Marcel Holtmann41a96212008-07-14 20:13:48 +02003902
3903 BT_DBG("%s", hdev->name);
3904
3905 hci_dev_lock(hdev);
3906
Johan Hedbergcad718e2013-04-17 15:00:51 +03003907 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3908 if (conn)
3909 memcpy(conn->features[1], ev->features, 8);
3910
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02003911 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
3912 if (ie)
Johan Hedberg02b7cc62012-02-28 02:28:43 +02003913 ie->data.ssp_mode = (ev->features[0] & LMP_HOST_SSP);
Marcel Holtmann41a96212008-07-14 20:13:48 +02003914
3915 hci_dev_unlock(hdev);
3916}
3917
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003918static void hci_remote_oob_data_request_evt(struct hci_dev *hdev,
3919 struct sk_buff *skb)
Szymon Janc2763eda2011-03-22 13:12:22 +01003920{
3921 struct hci_ev_remote_oob_data_request *ev = (void *) skb->data;
3922 struct oob_data *data;
3923
3924 BT_DBG("%s", hdev->name);
3925
3926 hci_dev_lock(hdev);
3927
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003928 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Szymon Jance1ba1f12011-04-06 13:01:59 +02003929 goto unlock;
3930
Szymon Janc2763eda2011-03-22 13:12:22 +01003931 data = hci_find_remote_oob_data(hdev, &ev->bdaddr);
3932 if (data) {
Marcel Holtmann519ca9d2014-01-10 02:07:28 -08003933 if (test_bit(HCI_SC_ENABLED, &hdev->dev_flags)) {
3934 struct hci_cp_remote_oob_ext_data_reply cp;
Szymon Janc2763eda2011-03-22 13:12:22 +01003935
Marcel Holtmann519ca9d2014-01-10 02:07:28 -08003936 bacpy(&cp.bdaddr, &ev->bdaddr);
3937 memcpy(cp.hash192, data->hash192, sizeof(cp.hash192));
3938 memcpy(cp.randomizer192, data->randomizer192,
3939 sizeof(cp.randomizer192));
3940 memcpy(cp.hash256, data->hash256, sizeof(cp.hash256));
3941 memcpy(cp.randomizer256, data->randomizer256,
3942 sizeof(cp.randomizer256));
Szymon Janc2763eda2011-03-22 13:12:22 +01003943
Marcel Holtmann519ca9d2014-01-10 02:07:28 -08003944 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_EXT_DATA_REPLY,
3945 sizeof(cp), &cp);
3946 } else {
3947 struct hci_cp_remote_oob_data_reply cp;
3948
3949 bacpy(&cp.bdaddr, &ev->bdaddr);
3950 memcpy(cp.hash, data->hash192, sizeof(cp.hash));
3951 memcpy(cp.randomizer, data->randomizer192,
3952 sizeof(cp.randomizer));
3953
3954 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_REPLY,
3955 sizeof(cp), &cp);
3956 }
Szymon Janc2763eda2011-03-22 13:12:22 +01003957 } else {
3958 struct hci_cp_remote_oob_data_neg_reply cp;
3959
3960 bacpy(&cp.bdaddr, &ev->bdaddr);
Marcel Holtmann519ca9d2014-01-10 02:07:28 -08003961 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_NEG_REPLY,
3962 sizeof(cp), &cp);
Szymon Janc2763eda2011-03-22 13:12:22 +01003963 }
3964
Szymon Jance1ba1f12011-04-06 13:01:59 +02003965unlock:
Szymon Janc2763eda2011-03-22 13:12:22 +01003966 hci_dev_unlock(hdev);
3967}
3968
Andrei Emeltchenkod5e91192012-10-25 15:20:44 +03003969static void hci_phy_link_complete_evt(struct hci_dev *hdev,
3970 struct sk_buff *skb)
3971{
3972 struct hci_ev_phy_link_complete *ev = (void *) skb->data;
3973 struct hci_conn *hcon, *bredr_hcon;
3974
3975 BT_DBG("%s handle 0x%2.2x status 0x%2.2x", hdev->name, ev->phy_handle,
3976 ev->status);
3977
3978 hci_dev_lock(hdev);
3979
3980 hcon = hci_conn_hash_lookup_handle(hdev, ev->phy_handle);
3981 if (!hcon) {
3982 hci_dev_unlock(hdev);
3983 return;
3984 }
3985
3986 if (ev->status) {
3987 hci_conn_del(hcon);
3988 hci_dev_unlock(hdev);
3989 return;
3990 }
3991
3992 bredr_hcon = hcon->amp_mgr->l2cap_conn->hcon;
3993
3994 hcon->state = BT_CONNECTED;
3995 bacpy(&hcon->dst, &bredr_hcon->dst);
3996
3997 hci_conn_hold(hcon);
3998 hcon->disc_timeout = HCI_DISCONN_TIMEOUT;
David Herrmann76a68ba2013-04-06 20:28:37 +02003999 hci_conn_drop(hcon);
Andrei Emeltchenkod5e91192012-10-25 15:20:44 +03004000
Andrei Emeltchenkod5e91192012-10-25 15:20:44 +03004001 hci_conn_add_sysfs(hcon);
4002
Andrei Emeltchenkocf70ff22012-10-31 15:46:36 +02004003 amp_physical_cfm(bredr_hcon, hcon);
4004
Andrei Emeltchenkod5e91192012-10-25 15:20:44 +03004005 hci_dev_unlock(hdev);
Andrei Emeltchenkod5e91192012-10-25 15:20:44 +03004006}
4007
Andrei Emeltchenko27695fb2012-10-25 15:20:45 +03004008static void hci_loglink_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
4009{
4010 struct hci_ev_logical_link_complete *ev = (void *) skb->data;
4011 struct hci_conn *hcon;
4012 struct hci_chan *hchan;
4013 struct amp_mgr *mgr;
4014
4015 BT_DBG("%s log_handle 0x%4.4x phy_handle 0x%2.2x status 0x%2.2x",
4016 hdev->name, le16_to_cpu(ev->handle), ev->phy_handle,
4017 ev->status);
4018
4019 hcon = hci_conn_hash_lookup_handle(hdev, ev->phy_handle);
4020 if (!hcon)
4021 return;
4022
4023 /* Create AMP hchan */
4024 hchan = hci_chan_create(hcon);
4025 if (!hchan)
4026 return;
4027
4028 hchan->handle = le16_to_cpu(ev->handle);
4029
4030 BT_DBG("hcon %p mgr %p hchan %p", hcon, hcon->amp_mgr, hchan);
4031
4032 mgr = hcon->amp_mgr;
4033 if (mgr && mgr->bredr_chan) {
4034 struct l2cap_chan *bredr_chan = mgr->bredr_chan;
4035
4036 l2cap_chan_lock(bredr_chan);
4037
4038 bredr_chan->conn->mtu = hdev->block_mtu;
4039 l2cap_logical_cfm(bredr_chan, hchan, 0);
4040 hci_conn_hold(hcon);
4041
4042 l2cap_chan_unlock(bredr_chan);
4043 }
4044}
4045
Andrei Emeltchenko606e2a12012-10-31 15:46:31 +02004046static void hci_disconn_loglink_complete_evt(struct hci_dev *hdev,
4047 struct sk_buff *skb)
4048{
4049 struct hci_ev_disconn_logical_link_complete *ev = (void *) skb->data;
4050 struct hci_chan *hchan;
4051
4052 BT_DBG("%s log handle 0x%4.4x status 0x%2.2x", hdev->name,
4053 le16_to_cpu(ev->handle), ev->status);
4054
4055 if (ev->status)
4056 return;
4057
4058 hci_dev_lock(hdev);
4059
4060 hchan = hci_chan_lookup_handle(hdev, le16_to_cpu(ev->handle));
4061 if (!hchan)
4062 goto unlock;
4063
4064 amp_destroy_logical_link(hchan, ev->reason);
4065
4066unlock:
4067 hci_dev_unlock(hdev);
4068}
4069
Andrei Emeltchenko9eef6b32012-10-31 15:46:32 +02004070static void hci_disconn_phylink_complete_evt(struct hci_dev *hdev,
4071 struct sk_buff *skb)
4072{
4073 struct hci_ev_disconn_phy_link_complete *ev = (void *) skb->data;
4074 struct hci_conn *hcon;
4075
4076 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
4077
4078 if (ev->status)
4079 return;
4080
4081 hci_dev_lock(hdev);
4082
4083 hcon = hci_conn_hash_lookup_handle(hdev, ev->phy_handle);
4084 if (hcon) {
4085 hcon->state = BT_CLOSED;
4086 hci_conn_del(hcon);
4087 }
4088
4089 hci_dev_unlock(hdev);
4090}
4091
Gustavo Padovan6039aa72012-05-23 04:04:18 -03004092static void hci_le_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Ville Tervofcd89c02011-02-10 22:38:47 -03004093{
4094 struct hci_ev_le_conn_complete *ev = (void *) skb->data;
Johan Hedberg912b42e2014-07-03 19:33:49 +03004095 struct hci_conn_params *params;
Ville Tervofcd89c02011-02-10 22:38:47 -03004096 struct hci_conn *conn;
Johan Hedberg68d6f6d2014-02-18 21:41:32 +02004097 struct smp_irk *irk;
Johan Hedberg837d5022014-07-02 09:36:22 +03004098 u8 addr_type;
Ville Tervofcd89c02011-02-10 22:38:47 -03004099
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03004100 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Ville Tervofcd89c02011-02-10 22:38:47 -03004101
4102 hci_dev_lock(hdev);
4103
Johan Hedbergfbd96c12014-07-08 17:21:51 +03004104 /* All controllers implicitly stop advertising in the event of a
4105 * connection, so ensure that the state bit is cleared.
4106 */
4107 clear_bit(HCI_LE_ADV, &hdev->dev_flags);
4108
Andre Guedesb47a09b2012-07-27 15:10:15 -03004109 conn = hci_conn_hash_lookup_state(hdev, LE_LINK, BT_CONNECT);
Ville Tervob62f3282011-02-10 22:38:50 -03004110 if (!conn) {
4111 conn = hci_conn_add(hdev, LE_LINK, &ev->bdaddr);
4112 if (!conn) {
4113 BT_ERR("No memory for new connection");
Andre Guedes230fd162012-07-27 15:10:10 -03004114 goto unlock;
Ville Tervob62f3282011-02-10 22:38:50 -03004115 }
Andre Guedes29b79882011-05-31 14:20:54 -03004116
4117 conn->dst_type = ev->bdaddr_type;
Andre Guedesb9b343d2012-07-27 15:10:11 -03004118
4119 if (ev->role == LE_CONN_ROLE_MASTER) {
4120 conn->out = true;
Johan Hedberg4dae2792014-06-24 17:03:50 +03004121 set_bit(HCI_CONN_MASTER, &conn->flags);
Andre Guedesb9b343d2012-07-27 15:10:11 -03004122 }
Johan Hedbergcb1d68f2014-02-28 12:54:16 +02004123
4124 /* If we didn't have a hci_conn object previously
4125 * but we're in master role this must be something
4126 * initiated using a white list. Since white list based
4127 * connections are not "first class citizens" we don't
4128 * have full tracking of them. Therefore, we go ahead
4129 * with a "best effort" approach of determining the
4130 * initiator address based on the HCI_PRIVACY flag.
4131 */
4132 if (conn->out) {
4133 conn->resp_addr_type = ev->bdaddr_type;
4134 bacpy(&conn->resp_addr, &ev->bdaddr);
4135 if (test_bit(HCI_PRIVACY, &hdev->dev_flags)) {
4136 conn->init_addr_type = ADDR_LE_DEV_RANDOM;
4137 bacpy(&conn->init_addr, &hdev->rpa);
4138 } else {
4139 hci_copy_identity_address(hdev,
4140 &conn->init_addr,
4141 &conn->init_addr_type);
4142 }
Johan Hedbergcb1d68f2014-02-28 12:54:16 +02004143 }
Johan Hedberg9489eca2014-02-28 17:45:46 +02004144 } else {
4145 cancel_delayed_work(&conn->le_conn_timeout);
Ville Tervob62f3282011-02-10 22:38:50 -03004146 }
Ville Tervofcd89c02011-02-10 22:38:47 -03004147
Johan Hedberg80c24ab2014-03-24 20:21:51 +02004148 if (!conn->out) {
4149 /* Set the responder (our side) address type based on
4150 * the advertising address type.
4151 */
4152 conn->resp_addr_type = hdev->adv_addr_type;
4153 if (hdev->adv_addr_type == ADDR_LE_DEV_RANDOM)
4154 bacpy(&conn->resp_addr, &hdev->random_addr);
4155 else
4156 bacpy(&conn->resp_addr, &hdev->bdaddr);
4157
4158 conn->init_addr_type = ev->bdaddr_type;
4159 bacpy(&conn->init_addr, &ev->bdaddr);
Marcel Holtmanna720d732014-06-23 12:14:51 +02004160
4161 /* For incoming connections, set the default minimum
4162 * and maximum connection interval. They will be used
4163 * to check if the parameters are in range and if not
4164 * trigger the connection update procedure.
4165 */
4166 conn->le_conn_min_interval = hdev->le_conn_min_interval;
4167 conn->le_conn_max_interval = hdev->le_conn_max_interval;
Johan Hedberg80c24ab2014-03-24 20:21:51 +02004168 }
Johan Hedberg7be2edb2014-02-23 19:42:17 +02004169
Marcel Holtmannedb4b462014-02-18 15:13:43 -08004170 /* Lookup the identity address from the stored connection
4171 * address and address type.
4172 *
4173 * When establishing connections to an identity address, the
4174 * connection procedure will store the resolvable random
4175 * address first. Now if it can be converted back into the
4176 * identity address, start using the identity address from
4177 * now on.
4178 */
4179 irk = hci_get_irk(hdev, &conn->dst, conn->dst_type);
Johan Hedberg68d6f6d2014-02-18 21:41:32 +02004180 if (irk) {
4181 bacpy(&conn->dst, &irk->bdaddr);
4182 conn->dst_type = irk->addr_type;
4183 }
4184
Johan Hedberg837d5022014-07-02 09:36:22 +03004185 if (conn->dst_type == ADDR_LE_DEV_PUBLIC)
4186 addr_type = BDADDR_LE_PUBLIC;
4187 else
4188 addr_type = BDADDR_LE_RANDOM;
4189
4190 /* Drop the connection if he device is blocked */
Johan Hedbergdcc36c12014-07-09 12:59:13 +03004191 if (hci_bdaddr_list_lookup(&hdev->blacklist, &conn->dst, addr_type)) {
Johan Hedberg837d5022014-07-02 09:36:22 +03004192 hci_conn_drop(conn);
4193 goto unlock;
4194 }
4195
Andre Guedescd17dec2012-07-27 15:10:16 -03004196 if (ev->status) {
Andre Guedes06c053f2014-02-26 20:21:41 -03004197 hci_le_conn_failed(conn, ev->status);
Andre Guedescd17dec2012-07-27 15:10:16 -03004198 goto unlock;
4199 }
4200
Johan Hedbergb644ba32012-01-17 21:48:47 +02004201 if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
Marcel Holtmann01fdb0f2014-02-18 14:22:19 -08004202 mgmt_device_connected(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004203 conn->dst_type, 0, NULL, 0, NULL);
Vinicius Costa Gomes83bc71b2011-05-06 18:41:43 -03004204
Vinicius Costa Gomes7b5c0d52011-06-09 18:50:50 -03004205 conn->sec_level = BT_SECURITY_LOW;
Ville Tervofcd89c02011-02-10 22:38:47 -03004206 conn->handle = __le16_to_cpu(ev->handle);
4207 conn->state = BT_CONNECTED;
4208
Marcel Holtmanne04fde62014-06-23 11:40:04 +02004209 conn->le_conn_interval = le16_to_cpu(ev->interval);
4210 conn->le_conn_latency = le16_to_cpu(ev->latency);
4211 conn->le_supv_timeout = le16_to_cpu(ev->supervision_timeout);
4212
Ville Tervofcd89c02011-02-10 22:38:47 -03004213 hci_conn_add_sysfs(conn);
4214
4215 hci_proto_connect_cfm(conn, ev->status);
4216
Johan Hedberg912b42e2014-07-03 19:33:49 +03004217 params = hci_conn_params_lookup(hdev, &conn->dst, conn->dst_type);
Johan Hedberg223683a2014-07-06 15:44:23 +03004218 if (params)
Johan Hedberg95305ba2014-07-04 12:37:21 +03004219 list_del_init(&params->action);
Andre Guedesa4790db2014-02-26 20:21:47 -03004220
Ville Tervofcd89c02011-02-10 22:38:47 -03004221unlock:
Johan Hedberg223683a2014-07-06 15:44:23 +03004222 hci_update_background_scan(hdev);
Ville Tervofcd89c02011-02-10 22:38:47 -03004223 hci_dev_unlock(hdev);
4224}
4225
Marcel Holtmann1855d922014-06-23 11:40:05 +02004226static void hci_le_conn_update_complete_evt(struct hci_dev *hdev,
4227 struct sk_buff *skb)
4228{
4229 struct hci_ev_le_conn_update_complete *ev = (void *) skb->data;
4230 struct hci_conn *conn;
4231
4232 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
4233
4234 if (ev->status)
4235 return;
4236
4237 hci_dev_lock(hdev);
4238
4239 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
4240 if (conn) {
4241 conn->le_conn_interval = le16_to_cpu(ev->interval);
4242 conn->le_conn_latency = le16_to_cpu(ev->latency);
4243 conn->le_supv_timeout = le16_to_cpu(ev->supervision_timeout);
4244 }
4245
4246 hci_dev_unlock(hdev);
4247}
4248
Andre Guedesa4790db2014-02-26 20:21:47 -03004249/* This function requires the caller holds hdev->lock */
Johan Hedberg7e899c92014-07-07 12:45:55 +03004250static void check_pending_le_conn(struct hci_dev *hdev, bdaddr_t *addr,
Johan Hedberg1c1abca2014-07-07 12:45:53 +03004251 u8 addr_type, u8 adv_type)
Andre Guedesa4790db2014-02-26 20:21:47 -03004252{
4253 struct hci_conn *conn;
4254
Johan Hedberg1c1abca2014-07-07 12:45:53 +03004255 /* If the event is not connectable don't proceed further */
4256 if (adv_type != LE_ADV_IND && adv_type != LE_ADV_DIRECT_IND)
Johan Hedberg7e899c92014-07-07 12:45:55 +03004257 return;
Johan Hedberg1c1abca2014-07-07 12:45:53 +03004258
4259 /* Ignore if the device is blocked */
Johan Hedbergdcc36c12014-07-09 12:59:13 +03004260 if (hci_bdaddr_list_lookup(&hdev->blacklist, addr, addr_type))
Johan Hedberg7e899c92014-07-07 12:45:55 +03004261 return;
Johan Hedberg1c1abca2014-07-07 12:45:53 +03004262
4263 /* If we're connectable, always connect any ADV_DIRECT_IND event */
4264 if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags) &&
4265 adv_type == LE_ADV_DIRECT_IND)
4266 goto connect;
4267
4268 /* If we're not connectable only connect devices that we have in
4269 * our pend_le_conns list.
4270 */
Johan Hedberg501f8822014-07-04 12:37:26 +03004271 if (!hci_pend_le_action_lookup(&hdev->pend_le_conns, addr, addr_type))
Johan Hedberg7e899c92014-07-07 12:45:55 +03004272 return;
Andre Guedesa4790db2014-02-26 20:21:47 -03004273
Johan Hedberg1c1abca2014-07-07 12:45:53 +03004274connect:
Johan Hedbergcdd62752014-07-07 15:02:28 +03004275 /* Request connection in master = true role */
Andre Guedesa4790db2014-02-26 20:21:47 -03004276 conn = hci_connect_le(hdev, addr, addr_type, BT_SECURITY_LOW,
Johan Hedbergcdd62752014-07-07 15:02:28 +03004277 HCI_LE_AUTOCONN_TIMEOUT, true);
Andre Guedesa4790db2014-02-26 20:21:47 -03004278 if (!IS_ERR(conn))
Johan Hedberg7e899c92014-07-07 12:45:55 +03004279 return;
Andre Guedesa4790db2014-02-26 20:21:47 -03004280
4281 switch (PTR_ERR(conn)) {
4282 case -EBUSY:
4283 /* If hci_connect() returns -EBUSY it means there is already
4284 * an LE connection attempt going on. Since controllers don't
4285 * support more than one connection attempt at the time, we
4286 * don't consider this an error case.
4287 */
4288 break;
4289 default:
4290 BT_DBG("Failed to connect: err %ld", PTR_ERR(conn));
4291 }
4292}
4293
Johan Hedberg4af605d2014-03-24 10:48:00 +02004294static void process_adv_report(struct hci_dev *hdev, u8 type, bdaddr_t *bdaddr,
4295 u8 bdaddr_type, s8 rssi, u8 *data, u8 len)
4296{
Johan Hedbergb9a63282014-03-25 10:51:52 +02004297 struct discovery_state *d = &hdev->discovery;
Johan Hedberg1c1abca2014-07-07 12:45:53 +03004298 struct smp_irk *irk;
Johan Hedberg474ee062014-03-25 14:34:59 +02004299 bool match;
Marcel Holtmannc70a7e42014-07-01 14:11:21 +02004300 u32 flags;
Johan Hedbergb9a63282014-03-25 10:51:52 +02004301
Johan Hedberg1c1abca2014-07-07 12:45:53 +03004302 /* Check if we need to convert to identity address */
4303 irk = hci_get_irk(hdev, bdaddr, bdaddr_type);
4304 if (irk) {
4305 bdaddr = &irk->bdaddr;
4306 bdaddr_type = irk->addr_type;
4307 }
4308
4309 /* Check if we have been requested to connect to this device */
4310 check_pending_le_conn(hdev, bdaddr, bdaddr_type, type);
4311
Johan Hedberg0d2bf132014-07-02 22:42:02 +03004312 /* Passive scanning shouldn't trigger any device found events,
4313 * except for devices marked as CONN_REPORT for which we do send
4314 * device found events.
4315 */
Johan Hedbergca5c4be2014-03-25 10:30:46 +02004316 if (hdev->le_scan_type == LE_SCAN_PASSIVE) {
Johan Hedberg0d2bf132014-07-02 22:42:02 +03004317 struct hci_conn_params *param;
Johan Hedberg0d2bf132014-07-02 22:42:02 +03004318
Johan Hedberg0d2bf132014-07-02 22:42:02 +03004319 if (type == LE_ADV_DIRECT_IND)
4320 return;
4321
Johan Hedberga7545f22014-07-04 12:37:27 +03004322 param = hci_pend_le_action_lookup(&hdev->pend_le_reports,
4323 bdaddr, bdaddr_type);
4324 if (!param)
Johan Hedberg0d2bf132014-07-02 22:42:02 +03004325 return;
4326
4327 if (type == LE_ADV_NONCONN_IND || type == LE_ADV_SCAN_IND)
4328 flags = MGMT_DEV_FOUND_NOT_CONNECTABLE;
4329 else
4330 flags = 0;
4331 mgmt_device_found(hdev, bdaddr, LE_LINK, bdaddr_type, NULL,
4332 rssi, flags, data, len, NULL, 0);
Johan Hedberg97bf2e92014-07-04 12:37:16 +03004333 return;
Johan Hedbergca5c4be2014-03-25 10:30:46 +02004334 }
Johan Hedberg4af605d2014-03-24 10:48:00 +02004335
Marcel Holtmannc70a7e42014-07-01 14:11:21 +02004336 /* When receiving non-connectable or scannable undirected
4337 * advertising reports, this means that the remote device is
4338 * not connectable and then clearly indicate this in the
4339 * device found event.
4340 *
4341 * When receiving a scan response, then there is no way to
4342 * know if the remote device is connectable or not. However
4343 * since scan responses are merged with a previously seen
4344 * advertising report, the flags field from that report
4345 * will be used.
4346 *
4347 * In the really unlikely case that a controller get confused
4348 * and just sends a scan response event, then it is marked as
4349 * not connectable as well.
4350 */
4351 if (type == LE_ADV_NONCONN_IND || type == LE_ADV_SCAN_IND ||
4352 type == LE_ADV_SCAN_RSP)
4353 flags = MGMT_DEV_FOUND_NOT_CONNECTABLE;
4354 else
4355 flags = 0;
4356
Johan Hedbergb9a63282014-03-25 10:51:52 +02004357 /* If there's nothing pending either store the data from this
4358 * event or send an immediate device found event if the data
4359 * should not be stored for later.
4360 */
4361 if (!has_pending_adv_report(hdev)) {
4362 /* If the report will trigger a SCAN_REQ store it for
4363 * later merging.
4364 */
4365 if (type == LE_ADV_IND || type == LE_ADV_SCAN_IND) {
4366 store_pending_adv_report(hdev, bdaddr, bdaddr_type,
Marcel Holtmannc70a7e42014-07-01 14:11:21 +02004367 rssi, flags, data, len);
Johan Hedbergb9a63282014-03-25 10:51:52 +02004368 return;
4369 }
4370
4371 mgmt_device_found(hdev, bdaddr, LE_LINK, bdaddr_type, NULL,
Marcel Holtmannc70a7e42014-07-01 14:11:21 +02004372 rssi, flags, data, len, NULL, 0);
Johan Hedbergb9a63282014-03-25 10:51:52 +02004373 return;
4374 }
4375
Johan Hedberg474ee062014-03-25 14:34:59 +02004376 /* Check if the pending report is for the same device as the new one */
4377 match = (!bacmp(bdaddr, &d->last_adv_addr) &&
4378 bdaddr_type == d->last_adv_addr_type);
4379
Johan Hedbergb9a63282014-03-25 10:51:52 +02004380 /* If the pending data doesn't match this report or this isn't a
4381 * scan response (e.g. we got a duplicate ADV_IND) then force
4382 * sending of the pending data.
4383 */
Johan Hedberg474ee062014-03-25 14:34:59 +02004384 if (type != LE_ADV_SCAN_RSP || !match) {
4385 /* Send out whatever is in the cache, but skip duplicates */
4386 if (!match)
4387 mgmt_device_found(hdev, &d->last_adv_addr, LE_LINK,
Johan Hedbergff5cd292014-03-25 14:40:52 +02004388 d->last_adv_addr_type, NULL,
Marcel Holtmannc70a7e42014-07-01 14:11:21 +02004389 d->last_adv_rssi, d->last_adv_flags,
Johan Hedbergff5cd292014-03-25 14:40:52 +02004390 d->last_adv_data,
Johan Hedberg474ee062014-03-25 14:34:59 +02004391 d->last_adv_data_len, NULL, 0);
Johan Hedbergb9a63282014-03-25 10:51:52 +02004392
4393 /* If the new report will trigger a SCAN_REQ store it for
4394 * later merging.
4395 */
4396 if (type == LE_ADV_IND || type == LE_ADV_SCAN_IND) {
4397 store_pending_adv_report(hdev, bdaddr, bdaddr_type,
Marcel Holtmannc70a7e42014-07-01 14:11:21 +02004398 rssi, flags, data, len);
Johan Hedbergb9a63282014-03-25 10:51:52 +02004399 return;
4400 }
4401
4402 /* The advertising reports cannot be merged, so clear
4403 * the pending report and send out a device found event.
4404 */
4405 clear_pending_adv_report(hdev);
Johan Hedberg5c5b93e2014-03-29 08:39:53 +02004406 mgmt_device_found(hdev, bdaddr, LE_LINK, bdaddr_type, NULL,
Marcel Holtmannc70a7e42014-07-01 14:11:21 +02004407 rssi, flags, data, len, NULL, 0);
Johan Hedbergb9a63282014-03-25 10:51:52 +02004408 return;
4409 }
4410
4411 /* If we get here we've got a pending ADV_IND or ADV_SCAN_IND and
4412 * the new event is a SCAN_RSP. We can therefore proceed with
4413 * sending a merged device found event.
4414 */
4415 mgmt_device_found(hdev, &d->last_adv_addr, LE_LINK,
Marcel Holtmannc70a7e42014-07-01 14:11:21 +02004416 d->last_adv_addr_type, NULL, rssi, d->last_adv_flags,
Marcel Holtmann42bd6a52014-07-01 14:11:19 +02004417 d->last_adv_data, d->last_adv_data_len, data, len);
Johan Hedbergb9a63282014-03-25 10:51:52 +02004418 clear_pending_adv_report(hdev);
Johan Hedberg4af605d2014-03-24 10:48:00 +02004419}
4420
Gustavo Padovan6039aa72012-05-23 04:04:18 -03004421static void hci_le_adv_report_evt(struct hci_dev *hdev, struct sk_buff *skb)
Andre Guedes9aa04c92011-05-26 16:23:51 -03004422{
Andre Guedese95beb42011-09-26 20:48:35 -03004423 u8 num_reports = skb->data[0];
4424 void *ptr = &skb->data[1];
Andre Guedes9aa04c92011-05-26 16:23:51 -03004425
Andre Guedesa4790db2014-02-26 20:21:47 -03004426 hci_dev_lock(hdev);
4427
Andre Guedese95beb42011-09-26 20:48:35 -03004428 while (num_reports--) {
4429 struct hci_ev_le_advertising_info *ev = ptr;
Johan Hedberg4af605d2014-03-24 10:48:00 +02004430 s8 rssi;
Andre Guedesa4790db2014-02-26 20:21:47 -03004431
Andre Guedes3c9e9192012-01-10 18:20:50 -03004432 rssi = ev->data[ev->length];
Johan Hedberg4af605d2014-03-24 10:48:00 +02004433 process_adv_report(hdev, ev->evt_type, &ev->bdaddr,
4434 ev->bdaddr_type, rssi, ev->data, ev->length);
Andre Guedes3c9e9192012-01-10 18:20:50 -03004435
Andre Guedese95beb42011-09-26 20:48:35 -03004436 ptr += sizeof(*ev) + ev->length + 1;
Andre Guedes9aa04c92011-05-26 16:23:51 -03004437 }
Andre Guedesa4790db2014-02-26 20:21:47 -03004438
4439 hci_dev_unlock(hdev);
Andre Guedes9aa04c92011-05-26 16:23:51 -03004440}
4441
Gustavo Padovan6039aa72012-05-23 04:04:18 -03004442static void hci_le_ltk_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03004443{
4444 struct hci_ev_le_ltk_req *ev = (void *) skb->data;
4445 struct hci_cp_le_ltk_reply cp;
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03004446 struct hci_cp_le_ltk_neg_reply neg;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03004447 struct hci_conn *conn;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03004448 struct smp_ltk *ltk;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03004449
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03004450 BT_DBG("%s handle 0x%4.4x", hdev->name, __le16_to_cpu(ev->handle));
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03004451
4452 hci_dev_lock(hdev);
4453
4454 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03004455 if (conn == NULL)
4456 goto not_found;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03004457
Marcel Holtmannfe39c7b2014-02-27 16:00:28 -08004458 ltk = hci_find_ltk(hdev, ev->ediv, ev->rand, conn->out);
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03004459 if (ltk == NULL)
4460 goto not_found;
4461
4462 memcpy(cp.ltk, ltk->val, sizeof(ltk->val));
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03004463 cp.handle = cpu_to_le16(conn->handle);
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03004464
4465 if (ltk->authenticated)
Andre Guedesf8776212013-07-31 16:25:28 -03004466 conn->pending_sec_level = BT_SECURITY_HIGH;
4467 else
4468 conn->pending_sec_level = BT_SECURITY_MEDIUM;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03004469
Andre Guedes89cbb4d2013-07-31 16:25:29 -03004470 conn->enc_key_size = ltk->enc_size;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03004471
4472 hci_send_cmd(hdev, HCI_OP_LE_LTK_REPLY, sizeof(cp), &cp);
4473
Claudio Takahasi5981a882013-07-25 16:34:24 -03004474 /* Ref. Bluetooth Core SPEC pages 1975 and 2004. STK is a
4475 * temporary key used to encrypt a connection following
4476 * pairing. It is used during the Encrypted Session Setup to
4477 * distribute the keys. Later, security can be re-established
4478 * using a distributed LTK.
4479 */
Johan Hedberg2ceba532014-06-16 19:25:16 +03004480 if (ltk->type == SMP_STK) {
Johan Hedbergfe59a052014-07-01 19:14:12 +03004481 set_bit(HCI_CONN_STK_ENCRYPT, &conn->flags);
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03004482 list_del(&ltk->list);
4483 kfree(ltk);
Johan Hedbergfe59a052014-07-01 19:14:12 +03004484 } else {
4485 clear_bit(HCI_CONN_STK_ENCRYPT, &conn->flags);
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03004486 }
4487
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03004488 hci_dev_unlock(hdev);
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03004489
4490 return;
4491
4492not_found:
4493 neg.handle = ev->handle;
4494 hci_send_cmd(hdev, HCI_OP_LE_LTK_NEG_REPLY, sizeof(neg), &neg);
4495 hci_dev_unlock(hdev);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03004496}
4497
Andre Guedes8e75b462014-07-01 18:10:08 -03004498static void send_conn_param_neg_reply(struct hci_dev *hdev, u16 handle,
4499 u8 reason)
4500{
4501 struct hci_cp_le_conn_param_req_neg_reply cp;
4502
4503 cp.handle = cpu_to_le16(handle);
4504 cp.reason = reason;
4505
4506 hci_send_cmd(hdev, HCI_OP_LE_CONN_PARAM_REQ_NEG_REPLY, sizeof(cp),
4507 &cp);
4508}
4509
4510static void hci_le_remote_conn_param_req_evt(struct hci_dev *hdev,
4511 struct sk_buff *skb)
4512{
4513 struct hci_ev_le_remote_conn_param_req *ev = (void *) skb->data;
4514 struct hci_cp_le_conn_param_req_reply cp;
4515 struct hci_conn *hcon;
4516 u16 handle, min, max, latency, timeout;
4517
4518 handle = le16_to_cpu(ev->handle);
4519 min = le16_to_cpu(ev->interval_min);
4520 max = le16_to_cpu(ev->interval_max);
4521 latency = le16_to_cpu(ev->latency);
4522 timeout = le16_to_cpu(ev->timeout);
4523
4524 hcon = hci_conn_hash_lookup_handle(hdev, handle);
4525 if (!hcon || hcon->state != BT_CONNECTED)
4526 return send_conn_param_neg_reply(hdev, handle,
4527 HCI_ERROR_UNKNOWN_CONN_ID);
4528
4529 if (hci_check_conn_params(min, max, latency, timeout))
4530 return send_conn_param_neg_reply(hdev, handle,
4531 HCI_ERROR_INVALID_LL_PARAMS);
4532
Johan Hedberg348d50b2014-07-02 17:37:30 +03004533 if (test_bit(HCI_CONN_MASTER, &hcon->flags)) {
4534 struct hci_conn_params *params;
Johan Hedbergf4869e22014-07-02 17:37:32 +03004535 u8 store_hint;
Johan Hedberg348d50b2014-07-02 17:37:30 +03004536
4537 hci_dev_lock(hdev);
4538
4539 params = hci_conn_params_lookup(hdev, &hcon->dst,
4540 hcon->dst_type);
4541 if (params) {
4542 params->conn_min_interval = min;
4543 params->conn_max_interval = max;
4544 params->conn_latency = latency;
4545 params->supervision_timeout = timeout;
Johan Hedbergf4869e22014-07-02 17:37:32 +03004546 store_hint = 0x01;
4547 } else{
4548 store_hint = 0x00;
Johan Hedberg348d50b2014-07-02 17:37:30 +03004549 }
4550
4551 hci_dev_unlock(hdev);
4552
Johan Hedbergf4869e22014-07-02 17:37:32 +03004553 mgmt_new_conn_param(hdev, &hcon->dst, hcon->dst_type,
4554 store_hint, min, max, latency, timeout);
Johan Hedberg348d50b2014-07-02 17:37:30 +03004555 }
Andre Guedesffb5a8272014-07-01 18:10:11 -03004556
Andre Guedes8e75b462014-07-01 18:10:08 -03004557 cp.handle = ev->handle;
4558 cp.interval_min = ev->interval_min;
4559 cp.interval_max = ev->interval_max;
4560 cp.latency = ev->latency;
4561 cp.timeout = ev->timeout;
4562 cp.min_ce_len = 0;
4563 cp.max_ce_len = 0;
4564
4565 hci_send_cmd(hdev, HCI_OP_LE_CONN_PARAM_REQ_REPLY, sizeof(cp), &cp);
4566}
4567
Gustavo Padovan6039aa72012-05-23 04:04:18 -03004568static void hci_le_meta_evt(struct hci_dev *hdev, struct sk_buff *skb)
Ville Tervofcd89c02011-02-10 22:38:47 -03004569{
4570 struct hci_ev_le_meta *le_ev = (void *) skb->data;
4571
4572 skb_pull(skb, sizeof(*le_ev));
4573
4574 switch (le_ev->subevent) {
4575 case HCI_EV_LE_CONN_COMPLETE:
4576 hci_le_conn_complete_evt(hdev, skb);
4577 break;
4578
Marcel Holtmann1855d922014-06-23 11:40:05 +02004579 case HCI_EV_LE_CONN_UPDATE_COMPLETE:
4580 hci_le_conn_update_complete_evt(hdev, skb);
4581 break;
4582
Andre Guedes9aa04c92011-05-26 16:23:51 -03004583 case HCI_EV_LE_ADVERTISING_REPORT:
4584 hci_le_adv_report_evt(hdev, skb);
4585 break;
4586
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03004587 case HCI_EV_LE_LTK_REQ:
4588 hci_le_ltk_request_evt(hdev, skb);
4589 break;
4590
Andre Guedes8e75b462014-07-01 18:10:08 -03004591 case HCI_EV_LE_REMOTE_CONN_PARAM_REQ:
4592 hci_le_remote_conn_param_req_evt(hdev, skb);
4593 break;
4594
Ville Tervofcd89c02011-02-10 22:38:47 -03004595 default:
4596 break;
4597 }
4598}
4599
Andrei Emeltchenko9495b2e2012-09-27 17:26:22 +03004600static void hci_chan_selected_evt(struct hci_dev *hdev, struct sk_buff *skb)
4601{
4602 struct hci_ev_channel_selected *ev = (void *) skb->data;
4603 struct hci_conn *hcon;
4604
4605 BT_DBG("%s handle 0x%2.2x", hdev->name, ev->phy_handle);
4606
4607 skb_pull(skb, sizeof(*ev));
4608
4609 hcon = hci_conn_hash_lookup_handle(hdev, ev->phy_handle);
4610 if (!hcon)
4611 return;
4612
4613 amp_read_loc_assoc_final_data(hdev, hcon);
4614}
4615
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616void hci_event_packet(struct hci_dev *hdev, struct sk_buff *skb)
4617{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02004618 struct hci_event_hdr *hdr = (void *) skb->data;
4619 __u8 event = hdr->evt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620
Johan Hedbergb6ddb632013-04-02 13:34:31 +03004621 hci_dev_lock(hdev);
4622
4623 /* Received events are (currently) only needed when a request is
4624 * ongoing so avoid unnecessary memory allocation.
4625 */
Marcel Holtmann899de762014-07-11 05:51:58 +02004626 if (hci_req_pending(hdev)) {
Johan Hedbergb6ddb632013-04-02 13:34:31 +03004627 kfree_skb(hdev->recv_evt);
4628 hdev->recv_evt = skb_clone(skb, GFP_KERNEL);
4629 }
4630
4631 hci_dev_unlock(hdev);
4632
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 skb_pull(skb, HCI_EVENT_HDR_SIZE);
4634
Johan Hedberg02350a72013-04-03 21:50:29 +03004635 if (hdev->sent_cmd && bt_cb(hdev->sent_cmd)->req.event == event) {
Johannes Bergc1f23a22013-10-07 18:19:16 +02004636 struct hci_command_hdr *cmd_hdr = (void *) hdev->sent_cmd->data;
4637 u16 opcode = __le16_to_cpu(cmd_hdr->opcode);
Johan Hedberg02350a72013-04-03 21:50:29 +03004638
4639 hci_req_cmd_complete(hdev, opcode, 0);
4640 }
4641
Marcel Holtmanna9de9242007-10-20 13:33:56 +02004642 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643 case HCI_EV_INQUIRY_COMPLETE:
4644 hci_inquiry_complete_evt(hdev, skb);
4645 break;
4646
4647 case HCI_EV_INQUIRY_RESULT:
4648 hci_inquiry_result_evt(hdev, skb);
4649 break;
4650
Marcel Holtmanna9de9242007-10-20 13:33:56 +02004651 case HCI_EV_CONN_COMPLETE:
4652 hci_conn_complete_evt(hdev, skb);
Marcel Holtmann21d9e302005-09-13 01:32:25 +02004653 break;
4654
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655 case HCI_EV_CONN_REQUEST:
4656 hci_conn_request_evt(hdev, skb);
4657 break;
4658
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 case HCI_EV_DISCONN_COMPLETE:
4660 hci_disconn_complete_evt(hdev, skb);
4661 break;
4662
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663 case HCI_EV_AUTH_COMPLETE:
4664 hci_auth_complete_evt(hdev, skb);
4665 break;
4666
Marcel Holtmanna9de9242007-10-20 13:33:56 +02004667 case HCI_EV_REMOTE_NAME:
4668 hci_remote_name_evt(hdev, skb);
4669 break;
4670
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671 case HCI_EV_ENCRYPT_CHANGE:
4672 hci_encrypt_change_evt(hdev, skb);
4673 break;
4674
Marcel Holtmanna9de9242007-10-20 13:33:56 +02004675 case HCI_EV_CHANGE_LINK_KEY_COMPLETE:
4676 hci_change_link_key_complete_evt(hdev, skb);
4677 break;
4678
4679 case HCI_EV_REMOTE_FEATURES:
4680 hci_remote_features_evt(hdev, skb);
4681 break;
4682
Marcel Holtmanna9de9242007-10-20 13:33:56 +02004683 case HCI_EV_CMD_COMPLETE:
4684 hci_cmd_complete_evt(hdev, skb);
4685 break;
4686
4687 case HCI_EV_CMD_STATUS:
4688 hci_cmd_status_evt(hdev, skb);
4689 break;
4690
4691 case HCI_EV_ROLE_CHANGE:
4692 hci_role_change_evt(hdev, skb);
4693 break;
4694
4695 case HCI_EV_NUM_COMP_PKTS:
4696 hci_num_comp_pkts_evt(hdev, skb);
4697 break;
4698
4699 case HCI_EV_MODE_CHANGE:
4700 hci_mode_change_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701 break;
4702
4703 case HCI_EV_PIN_CODE_REQ:
4704 hci_pin_code_request_evt(hdev, skb);
4705 break;
4706
4707 case HCI_EV_LINK_KEY_REQ:
4708 hci_link_key_request_evt(hdev, skb);
4709 break;
4710
4711 case HCI_EV_LINK_KEY_NOTIFY:
4712 hci_link_key_notify_evt(hdev, skb);
4713 break;
4714
4715 case HCI_EV_CLOCK_OFFSET:
4716 hci_clock_offset_evt(hdev, skb);
4717 break;
4718
Marcel Holtmanna8746412008-07-14 20:13:46 +02004719 case HCI_EV_PKT_TYPE_CHANGE:
4720 hci_pkt_type_change_evt(hdev, skb);
4721 break;
4722
Marcel Holtmann85a1e932005-08-09 20:28:02 -07004723 case HCI_EV_PSCAN_REP_MODE:
4724 hci_pscan_rep_mode_evt(hdev, skb);
4725 break;
4726
Marcel Holtmanna9de9242007-10-20 13:33:56 +02004727 case HCI_EV_INQUIRY_RESULT_WITH_RSSI:
4728 hci_inquiry_result_with_rssi_evt(hdev, skb);
4729 break;
4730
4731 case HCI_EV_REMOTE_EXT_FEATURES:
4732 hci_remote_ext_features_evt(hdev, skb);
4733 break;
4734
4735 case HCI_EV_SYNC_CONN_COMPLETE:
4736 hci_sync_conn_complete_evt(hdev, skb);
4737 break;
4738
Marcel Holtmanna9de9242007-10-20 13:33:56 +02004739 case HCI_EV_EXTENDED_INQUIRY_RESULT:
4740 hci_extended_inquiry_result_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 break;
4742
Johan Hedberg1c2e0042012-06-08 23:31:13 +08004743 case HCI_EV_KEY_REFRESH_COMPLETE:
4744 hci_key_refresh_complete_evt(hdev, skb);
4745 break;
4746
Marcel Holtmann04936842008-07-14 20:13:48 +02004747 case HCI_EV_IO_CAPA_REQUEST:
4748 hci_io_capa_request_evt(hdev, skb);
4749 break;
4750
Johan Hedberg03b555e2011-01-04 15:40:05 +02004751 case HCI_EV_IO_CAPA_REPLY:
4752 hci_io_capa_reply_evt(hdev, skb);
4753 break;
4754
Johan Hedberga5c29682011-02-19 12:05:57 -03004755 case HCI_EV_USER_CONFIRM_REQUEST:
4756 hci_user_confirm_request_evt(hdev, skb);
4757 break;
4758
Brian Gix1143d452011-11-23 08:28:34 -08004759 case HCI_EV_USER_PASSKEY_REQUEST:
4760 hci_user_passkey_request_evt(hdev, skb);
4761 break;
4762
Johan Hedberg92a25252012-09-06 18:39:26 +03004763 case HCI_EV_USER_PASSKEY_NOTIFY:
4764 hci_user_passkey_notify_evt(hdev, skb);
4765 break;
4766
4767 case HCI_EV_KEYPRESS_NOTIFY:
4768 hci_keypress_notify_evt(hdev, skb);
4769 break;
4770
Marcel Holtmann04936842008-07-14 20:13:48 +02004771 case HCI_EV_SIMPLE_PAIR_COMPLETE:
4772 hci_simple_pair_complete_evt(hdev, skb);
4773 break;
4774
Marcel Holtmann41a96212008-07-14 20:13:48 +02004775 case HCI_EV_REMOTE_HOST_FEATURES:
4776 hci_remote_host_features_evt(hdev, skb);
4777 break;
4778
Ville Tervofcd89c02011-02-10 22:38:47 -03004779 case HCI_EV_LE_META:
4780 hci_le_meta_evt(hdev, skb);
4781 break;
4782
Andrei Emeltchenko9495b2e2012-09-27 17:26:22 +03004783 case HCI_EV_CHANNEL_SELECTED:
4784 hci_chan_selected_evt(hdev, skb);
4785 break;
4786
Szymon Janc2763eda2011-03-22 13:12:22 +01004787 case HCI_EV_REMOTE_OOB_DATA_REQUEST:
4788 hci_remote_oob_data_request_evt(hdev, skb);
4789 break;
4790
Andrei Emeltchenkod5e91192012-10-25 15:20:44 +03004791 case HCI_EV_PHY_LINK_COMPLETE:
4792 hci_phy_link_complete_evt(hdev, skb);
4793 break;
4794
Andrei Emeltchenko27695fb2012-10-25 15:20:45 +03004795 case HCI_EV_LOGICAL_LINK_COMPLETE:
4796 hci_loglink_complete_evt(hdev, skb);
4797 break;
4798
Andrei Emeltchenko606e2a12012-10-31 15:46:31 +02004799 case HCI_EV_DISCONN_LOGICAL_LINK_COMPLETE:
4800 hci_disconn_loglink_complete_evt(hdev, skb);
4801 break;
4802
Andrei Emeltchenko9eef6b32012-10-31 15:46:32 +02004803 case HCI_EV_DISCONN_PHY_LINK_COMPLETE:
4804 hci_disconn_phylink_complete_evt(hdev, skb);
4805 break;
4806
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02004807 case HCI_EV_NUM_COMP_BLOCKS:
4808 hci_num_comp_blocks_evt(hdev, skb);
4809 break;
4810
Marcel Holtmanna9de9242007-10-20 13:33:56 +02004811 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03004812 BT_DBG("%s event 0x%2.2x", hdev->name, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813 break;
4814 }
4815
4816 kfree_skb(skb);
4817 hdev->stat.evt_rx++;
4818}