blob: 3bf3f4d59bccd6d194d2cdbbcc9d066bd997592e [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 <linux/module.h>
28
29#include <linux/types.h>
30#include <linux/errno.h>
31#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/slab.h>
33#include <linux/poll.h>
34#include <linux/fcntl.h>
35#include <linux/init.h>
36#include <linux/skbuff.h>
37#include <linux/interrupt.h>
38#include <linux/notifier.h>
39#include <net/sock.h>
40
41#include <asm/system.h>
Andrei Emeltchenko70f230202010-12-01 16:58:25 +020042#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/unaligned.h>
44
45#include <net/bluetooth/bluetooth.h>
46#include <net/bluetooth/hci_core.h>
47
Rusty Russelleb939922011-12-19 14:08:01 +000048static bool enable_le;
Andre Guedese6100a22011-06-30 19:20:54 -030049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/* Handle HCI Event packets */
51
Marcel Holtmanna9de9242007-10-20 13:33:56 +020052static void hci_cc_inquiry_cancel(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
Marcel Holtmanna9de9242007-10-20 13:33:56 +020054 __u8 status = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Marcel Holtmanna9de9242007-10-20 13:33:56 +020056 BT_DBG("%s status 0x%x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Andre Guedese6d465c2011-11-09 17:14:26 -030058 if (status) {
59 hci_dev_lock(hdev);
60 mgmt_stop_discovery_failed(hdev, status);
61 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +020062 return;
Andre Guedese6d465c2011-11-09 17:14:26 -030063 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Andre Guedes89352e72011-11-04 14:16:53 -030065 clear_bit(HCI_INQUIRY, &hdev->flags);
66
Johan Hedberg56e5cb82011-11-08 20:40:16 +020067 hci_dev_lock(hdev);
Johan Hedbergff9ef572012-01-04 14:23:45 +020068 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
Johan Hedberg56e5cb82011-11-08 20:40:16 +020069 hci_dev_unlock(hdev);
Marcel Holtmann6bd57412006-11-18 22:14:22 +010070
Johan Hedberg23bb5762010-12-21 23:01:27 +020071 hci_req_complete(hdev, HCI_OP_INQUIRY_CANCEL, status);
Marcel Holtmann6bd57412006-11-18 22:14:22 +010072
Marcel Holtmanna9de9242007-10-20 13:33:56 +020073 hci_conn_check_pending(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
75
Marcel Holtmanna9de9242007-10-20 13:33:56 +020076static void hci_cc_exit_periodic_inq(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Marcel Holtmanna9de9242007-10-20 13:33:56 +020078 __u8 status = *((__u8 *) skb->data);
79
80 BT_DBG("%s status 0x%x", hdev->name, status);
81
82 if (status)
83 return;
84
Marcel Holtmanna9de9242007-10-20 13:33:56 +020085 hci_conn_check_pending(hdev);
86}
87
88static void hci_cc_remote_name_req_cancel(struct hci_dev *hdev, struct sk_buff *skb)
89{
90 BT_DBG("%s", hdev->name);
91}
92
93static void hci_cc_role_discovery(struct hci_dev *hdev, struct sk_buff *skb)
94{
95 struct hci_rp_role_discovery *rp = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Marcel Holtmanna9de9242007-10-20 13:33:56 +020098 BT_DBG("%s status 0x%x", hdev->name, rp->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200100 if (rp->status)
101 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200103 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200105 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
106 if (conn) {
107 if (rp->role)
108 conn->link_mode &= ~HCI_LM_MASTER;
109 else
110 conn->link_mode |= HCI_LM_MASTER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200112
113 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200116static void hci_cc_read_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
117{
118 struct hci_rp_read_link_policy *rp = (void *) skb->data;
119 struct hci_conn *conn;
120
121 BT_DBG("%s status 0x%x", hdev->name, rp->status);
122
123 if (rp->status)
124 return;
125
126 hci_dev_lock(hdev);
127
128 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
129 if (conn)
130 conn->link_policy = __le16_to_cpu(rp->policy);
131
132 hci_dev_unlock(hdev);
133}
134
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200135static void hci_cc_write_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200137 struct hci_rp_write_link_policy *rp = (void *) skb->data;
138 struct hci_conn *conn;
139 void *sent;
140
141 BT_DBG("%s status 0x%x", hdev->name, rp->status);
142
143 if (rp->status)
144 return;
145
146 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LINK_POLICY);
147 if (!sent)
148 return;
149
150 hci_dev_lock(hdev);
151
152 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200153 if (conn)
Harvey Harrison83985312008-05-02 16:25:46 -0700154 conn->link_policy = get_unaligned_le16(sent + 2);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200155
156 hci_dev_unlock(hdev);
157}
158
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200159static void hci_cc_read_def_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
160{
161 struct hci_rp_read_def_link_policy *rp = (void *) skb->data;
162
163 BT_DBG("%s status 0x%x", hdev->name, rp->status);
164
165 if (rp->status)
166 return;
167
168 hdev->link_policy = __le16_to_cpu(rp->policy);
169}
170
171static void hci_cc_write_def_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
172{
173 __u8 status = *((__u8 *) skb->data);
174 void *sent;
175
176 BT_DBG("%s status 0x%x", hdev->name, status);
177
178 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_DEF_LINK_POLICY);
179 if (!sent)
180 return;
181
182 if (!status)
183 hdev->link_policy = get_unaligned_le16(sent);
184
Johan Hedberg23bb5762010-12-21 23:01:27 +0200185 hci_req_complete(hdev, HCI_OP_WRITE_DEF_LINK_POLICY, status);
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
192 BT_DBG("%s status 0x%x", hdev->name, status);
193
Gustavo F. Padovan10572132011-03-16 15:36:29 -0300194 clear_bit(HCI_RESET, &hdev->flags);
195
Johan Hedberg23bb5762010-12-21 23:01:27 +0200196 hci_req_complete(hdev, HCI_OP_RESET, status);
Andre Guedesd23264a2011-11-25 20:53:38 -0300197
Johan Hedberg7005ff1782012-01-18 16:14:43 +0200198 /* Reset all flags, except persistent ones */
Hemant Gupta95947a32012-01-23 15:36:11 +0530199 hdev->dev_flags &= BIT(HCI_MGMT) | BIT(HCI_SETUP) | BIT(HCI_AUTO_OFF) |
200 BIT(HCI_LINK_KEYS) | BIT(HCI_DEBUG_KEYS);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200201}
202
203static void hci_cc_write_local_name(struct hci_dev *hdev, struct sk_buff *skb)
204{
205 __u8 status = *((__u8 *) skb->data);
206 void *sent;
207
208 BT_DBG("%s status 0x%x", hdev->name, status);
209
210 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LOCAL_NAME);
211 if (!sent)
212 return;
213
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200214 hci_dev_lock(hdev);
215
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200216 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200217 mgmt_set_local_name_complete(hdev, sent, status);
Johan Hedbergb312b1612011-03-16 14:29:37 +0200218
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200219 if (status == 0)
220 memcpy(hdev->dev_name, sent, HCI_MAX_NAME_LENGTH);
Johan Hedbergb312b1612011-03-16 14:29:37 +0200221
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200222 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200223}
224
225static void hci_cc_read_local_name(struct hci_dev *hdev, struct sk_buff *skb)
226{
227 struct hci_rp_read_local_name *rp = (void *) skb->data;
228
229 BT_DBG("%s status 0x%x", hdev->name, rp->status);
230
231 if (rp->status)
232 return;
233
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200234 memcpy(hdev->dev_name, rp->name, HCI_MAX_NAME_LENGTH);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200235}
236
237static void hci_cc_write_auth_enable(struct hci_dev *hdev, struct sk_buff *skb)
238{
239 __u8 status = *((__u8 *) skb->data);
240 void *sent;
241
242 BT_DBG("%s status 0x%x", hdev->name, status);
243
244 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_AUTH_ENABLE);
245 if (!sent)
246 return;
247
248 if (!status) {
249 __u8 param = *((__u8 *) sent);
250
251 if (param == AUTH_ENABLED)
252 set_bit(HCI_AUTH, &hdev->flags);
253 else
254 clear_bit(HCI_AUTH, &hdev->flags);
255 }
256
Johan Hedberg23bb5762010-12-21 23:01:27 +0200257 hci_req_complete(hdev, HCI_OP_WRITE_AUTH_ENABLE, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200258}
259
260static void hci_cc_write_encrypt_mode(struct hci_dev *hdev, struct sk_buff *skb)
261{
262 __u8 status = *((__u8 *) skb->data);
263 void *sent;
264
265 BT_DBG("%s status 0x%x", hdev->name, status);
266
267 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_ENCRYPT_MODE);
268 if (!sent)
269 return;
270
271 if (!status) {
272 __u8 param = *((__u8 *) sent);
273
274 if (param)
275 set_bit(HCI_ENCRYPT, &hdev->flags);
276 else
277 clear_bit(HCI_ENCRYPT, &hdev->flags);
278 }
279
Johan Hedberg23bb5762010-12-21 23:01:27 +0200280 hci_req_complete(hdev, HCI_OP_WRITE_ENCRYPT_MODE, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200281}
282
283static void hci_cc_write_scan_enable(struct hci_dev *hdev, struct sk_buff *skb)
284{
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200285 __u8 param, status = *((__u8 *) skb->data);
286 int old_pscan, old_iscan;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200287 void *sent;
288
289 BT_DBG("%s status 0x%x", hdev->name, status);
290
291 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SCAN_ENABLE);
292 if (!sent)
293 return;
294
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200295 param = *((__u8 *) sent);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200296
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200297 hci_dev_lock(hdev);
298
Johan Hedberg2d7cee52011-11-07 22:16:03 +0200299 if (status != 0) {
Johan Hedberg744cf192011-11-08 20:40:14 +0200300 mgmt_write_scan_failed(hdev, param, status);
Johan Hedberg2d7cee52011-11-07 22:16:03 +0200301 hdev->discov_timeout = 0;
302 goto done;
303 }
304
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200305 old_pscan = test_and_clear_bit(HCI_PSCAN, &hdev->flags);
306 old_iscan = test_and_clear_bit(HCI_ISCAN, &hdev->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200307
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200308 if (param & SCAN_INQUIRY) {
309 set_bit(HCI_ISCAN, &hdev->flags);
310 if (!old_iscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200311 mgmt_discoverable(hdev, 1);
Johan Hedberg16ab91a2011-11-07 22:16:02 +0200312 if (hdev->discov_timeout > 0) {
313 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
314 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
315 to);
316 }
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200317 } else if (old_iscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200318 mgmt_discoverable(hdev, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200319
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200320 if (param & SCAN_PAGE) {
321 set_bit(HCI_PSCAN, &hdev->flags);
322 if (!old_pscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200323 mgmt_connectable(hdev, 1);
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200324 } else if (old_pscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200325 mgmt_connectable(hdev, 0);
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200326
327done:
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200328 hci_dev_unlock(hdev);
Johan Hedberg23bb5762010-12-21 23:01:27 +0200329 hci_req_complete(hdev, HCI_OP_WRITE_SCAN_ENABLE, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200330}
331
332static void hci_cc_read_class_of_dev(struct hci_dev *hdev, struct sk_buff *skb)
333{
334 struct hci_rp_read_class_of_dev *rp = (void *) skb->data;
335
336 BT_DBG("%s status 0x%x", hdev->name, rp->status);
337
338 if (rp->status)
339 return;
340
341 memcpy(hdev->dev_class, rp->dev_class, 3);
342
343 BT_DBG("%s class 0x%.2x%.2x%.2x", hdev->name,
344 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
345}
346
347static void hci_cc_write_class_of_dev(struct hci_dev *hdev, struct sk_buff *skb)
348{
349 __u8 status = *((__u8 *) skb->data);
350 void *sent;
351
352 BT_DBG("%s status 0x%x", hdev->name, status);
353
Marcel Holtmannf383f272008-07-14 20:13:47 +0200354 if (status)
355 return;
356
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200357 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_CLASS_OF_DEV);
358 if (!sent)
359 return;
360
Marcel Holtmannf383f272008-07-14 20:13:47 +0200361 memcpy(hdev->dev_class, sent, 3);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200362}
363
364static void hci_cc_read_voice_setting(struct hci_dev *hdev, struct sk_buff *skb)
365{
366 struct hci_rp_read_voice_setting *rp = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 __u16 setting;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200368
369 BT_DBG("%s status 0x%x", hdev->name, rp->status);
370
371 if (rp->status)
372 return;
373
374 setting = __le16_to_cpu(rp->voice_setting);
375
Marcel Holtmannf383f272008-07-14 20:13:47 +0200376 if (hdev->voice_setting == setting)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200377 return;
378
379 hdev->voice_setting = setting;
380
381 BT_DBG("%s voice setting 0x%04x", hdev->name, setting);
382
Gustavo F. Padovan3c547112011-12-14 22:58:44 -0200383 if (hdev->notify)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200384 hdev->notify(hdev, HCI_NOTIFY_VOICE_SETTING);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200385}
386
387static void hci_cc_write_voice_setting(struct hci_dev *hdev, struct sk_buff *skb)
388{
389 __u8 status = *((__u8 *) skb->data);
Marcel Holtmannf383f272008-07-14 20:13:47 +0200390 __u16 setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 void *sent;
392
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200393 BT_DBG("%s status 0x%x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Marcel Holtmannf383f272008-07-14 20:13:47 +0200395 if (status)
396 return;
397
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200398 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_VOICE_SETTING);
399 if (!sent)
400 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Marcel Holtmannf383f272008-07-14 20:13:47 +0200402 setting = get_unaligned_le16(sent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Marcel Holtmannf383f272008-07-14 20:13:47 +0200404 if (hdev->voice_setting == setting)
405 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Marcel Holtmannf383f272008-07-14 20:13:47 +0200407 hdev->voice_setting = setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Marcel Holtmannf383f272008-07-14 20:13:47 +0200409 BT_DBG("%s voice setting 0x%04x", hdev->name, setting);
410
Gustavo F. Padovan3c547112011-12-14 22:58:44 -0200411 if (hdev->notify)
Marcel Holtmannf383f272008-07-14 20:13:47 +0200412 hdev->notify(hdev, HCI_NOTIFY_VOICE_SETTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200415static void hci_cc_host_buffer_size(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200417 __u8 status = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200419 BT_DBG("%s status 0x%x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Johan Hedberg23bb5762010-12-21 23:01:27 +0200421 hci_req_complete(hdev, HCI_OP_HOST_BUFFER_SIZE, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
Marcel Holtmann333140b2008-07-14 20:13:48 +0200424static void hci_cc_read_ssp_mode(struct hci_dev *hdev, struct sk_buff *skb)
425{
426 struct hci_rp_read_ssp_mode *rp = (void *) skb->data;
427
428 BT_DBG("%s status 0x%x", hdev->name, rp->status);
429
430 if (rp->status)
431 return;
432
Johan Hedberg84bde9d2012-01-25 14:21:06 +0200433 if (rp->mode)
434 set_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
435 else
436 clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
Marcel Holtmann333140b2008-07-14 20:13:48 +0200437}
438
439static void hci_cc_write_ssp_mode(struct hci_dev *hdev, struct sk_buff *skb)
440{
441 __u8 status = *((__u8 *) skb->data);
442 void *sent;
443
444 BT_DBG("%s status 0x%x", hdev->name, status);
445
446 if (status)
447 return;
448
449 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SSP_MODE);
450 if (!sent)
451 return;
452
Johan Hedberg84bde9d2012-01-25 14:21:06 +0200453 if (*((u8 *) sent))
454 set_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
455 else
456 clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
Marcel Holtmann333140b2008-07-14 20:13:48 +0200457}
458
Johan Hedbergd5859e22011-01-25 01:19:58 +0200459static u8 hci_get_inquiry_mode(struct hci_dev *hdev)
460{
461 if (hdev->features[6] & LMP_EXT_INQ)
462 return 2;
463
464 if (hdev->features[3] & LMP_RSSI_INQ)
465 return 1;
466
467 if (hdev->manufacturer == 11 && hdev->hci_rev == 0x00 &&
468 hdev->lmp_subver == 0x0757)
469 return 1;
470
471 if (hdev->manufacturer == 15) {
472 if (hdev->hci_rev == 0x03 && hdev->lmp_subver == 0x6963)
473 return 1;
474 if (hdev->hci_rev == 0x09 && hdev->lmp_subver == 0x6963)
475 return 1;
476 if (hdev->hci_rev == 0x00 && hdev->lmp_subver == 0x6965)
477 return 1;
478 }
479
480 if (hdev->manufacturer == 31 && hdev->hci_rev == 0x2005 &&
481 hdev->lmp_subver == 0x1805)
482 return 1;
483
484 return 0;
485}
486
487static void hci_setup_inquiry_mode(struct hci_dev *hdev)
488{
489 u8 mode;
490
491 mode = hci_get_inquiry_mode(hdev);
492
493 hci_send_cmd(hdev, HCI_OP_WRITE_INQUIRY_MODE, 1, &mode);
494}
495
496static void hci_setup_event_mask(struct hci_dev *hdev)
497{
498 /* The second byte is 0xff instead of 0x9f (two reserved bits
499 * disabled) since a Broadcom 1.2 dongle doesn't respond to the
500 * command otherwise */
501 u8 events[8] = { 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00 };
502
Ville Tervo6de6c182011-05-27 11:16:21 +0300503 /* CSR 1.1 dongles does not accept any bitfield so don't try to set
504 * any event mask for pre 1.2 devices */
Andrei Emeltchenko5a13b092011-12-01 14:33:28 +0200505 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
Ville Tervo6de6c182011-05-27 11:16:21 +0300506 return;
507
508 events[4] |= 0x01; /* Flow Specification Complete */
509 events[4] |= 0x02; /* Inquiry Result with RSSI */
510 events[4] |= 0x04; /* Read Remote Extended Features Complete */
511 events[5] |= 0x08; /* Synchronous Connection Complete */
512 events[5] |= 0x10; /* Synchronous Connection Changed */
Johan Hedbergd5859e22011-01-25 01:19:58 +0200513
514 if (hdev->features[3] & LMP_RSSI_INQ)
515 events[4] |= 0x04; /* Inquiry Result with RSSI */
516
517 if (hdev->features[5] & LMP_SNIFF_SUBR)
518 events[5] |= 0x20; /* Sniff Subrating */
519
520 if (hdev->features[5] & LMP_PAUSE_ENC)
521 events[5] |= 0x80; /* Encryption Key Refresh Complete */
522
523 if (hdev->features[6] & LMP_EXT_INQ)
524 events[5] |= 0x40; /* Extended Inquiry Result */
525
526 if (hdev->features[6] & LMP_NO_FLUSH)
527 events[7] |= 0x01; /* Enhanced Flush Complete */
528
529 if (hdev->features[7] & LMP_LSTO)
530 events[6] |= 0x80; /* Link Supervision Timeout Changed */
531
532 if (hdev->features[6] & LMP_SIMPLE_PAIR) {
533 events[6] |= 0x01; /* IO Capability Request */
534 events[6] |= 0x02; /* IO Capability Response */
535 events[6] |= 0x04; /* User Confirmation Request */
536 events[6] |= 0x08; /* User Passkey Request */
537 events[6] |= 0x10; /* Remote OOB Data Request */
538 events[6] |= 0x20; /* Simple Pairing Complete */
539 events[7] |= 0x04; /* User Passkey Notification */
540 events[7] |= 0x08; /* Keypress Notification */
541 events[7] |= 0x10; /* Remote Host Supported
542 * Features Notification */
543 }
544
545 if (hdev->features[4] & LMP_LE)
546 events[7] |= 0x20; /* LE Meta-Event */
547
548 hci_send_cmd(hdev, HCI_OP_SET_EVENT_MASK, sizeof(events), events);
549}
550
Andre Guedese6100a22011-06-30 19:20:54 -0300551static void hci_set_le_support(struct hci_dev *hdev)
552{
553 struct hci_cp_write_le_host_supported cp;
554
555 memset(&cp, 0, sizeof(cp));
556
557 if (enable_le) {
558 cp.le = 1;
559 cp.simul = !!(hdev->features[6] & LMP_SIMUL_LE_BR);
560 }
561
562 hci_send_cmd(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(cp), &cp);
563}
564
Johan Hedbergd5859e22011-01-25 01:19:58 +0200565static void hci_setup(struct hci_dev *hdev)
566{
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200567 if (hdev->dev_type != HCI_BREDR)
568 return;
569
Johan Hedbergd5859e22011-01-25 01:19:58 +0200570 hci_setup_event_mask(hdev);
571
Andrei Emeltchenkod095c1e2011-12-01 14:33:27 +0200572 if (hdev->hci_ver > BLUETOOTH_VER_1_1)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200573 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_COMMANDS, 0, NULL);
574
575 if (hdev->features[6] & LMP_SIMPLE_PAIR) {
576 u8 mode = 0x01;
577 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, sizeof(mode), &mode);
578 }
579
580 if (hdev->features[3] & LMP_RSSI_INQ)
581 hci_setup_inquiry_mode(hdev);
582
583 if (hdev->features[7] & LMP_INQ_TX_PWR)
584 hci_send_cmd(hdev, HCI_OP_READ_INQ_RSP_TX_POWER, 0, NULL);
Andre Guedes971e3a42011-06-30 19:20:52 -0300585
586 if (hdev->features[7] & LMP_EXTFEATURES) {
587 struct hci_cp_read_local_ext_features cp;
588
589 cp.page = 0x01;
590 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_EXT_FEATURES,
591 sizeof(cp), &cp);
592 }
Andre Guedese6100a22011-06-30 19:20:54 -0300593
594 if (hdev->features[4] & LMP_LE)
595 hci_set_le_support(hdev);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200596}
597
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200598static void hci_cc_read_local_version(struct hci_dev *hdev, struct sk_buff *skb)
599{
600 struct hci_rp_read_local_version *rp = (void *) skb->data;
601
602 BT_DBG("%s status 0x%x", hdev->name, rp->status);
603
604 if (rp->status)
605 return;
606
607 hdev->hci_ver = rp->hci_ver;
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200608 hdev->hci_rev = __le16_to_cpu(rp->hci_rev);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200609 hdev->lmp_ver = rp->lmp_ver;
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200610 hdev->manufacturer = __le16_to_cpu(rp->manufacturer);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200611 hdev->lmp_subver = __le16_to_cpu(rp->lmp_subver);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200612
613 BT_DBG("%s manufacturer %d hci ver %d:%d", hdev->name,
614 hdev->manufacturer,
615 hdev->hci_ver, hdev->hci_rev);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200616
617 if (test_bit(HCI_INIT, &hdev->flags))
618 hci_setup(hdev);
619}
620
621static void hci_setup_link_policy(struct hci_dev *hdev)
622{
623 u16 link_policy = 0;
624
625 if (hdev->features[0] & LMP_RSWITCH)
626 link_policy |= HCI_LP_RSWITCH;
627 if (hdev->features[0] & LMP_HOLD)
628 link_policy |= HCI_LP_HOLD;
629 if (hdev->features[0] & LMP_SNIFF)
630 link_policy |= HCI_LP_SNIFF;
631 if (hdev->features[1] & LMP_PARK)
632 link_policy |= HCI_LP_PARK;
633
634 link_policy = cpu_to_le16(link_policy);
635 hci_send_cmd(hdev, HCI_OP_WRITE_DEF_LINK_POLICY,
636 sizeof(link_policy), &link_policy);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200637}
638
639static void hci_cc_read_local_commands(struct hci_dev *hdev, struct sk_buff *skb)
640{
641 struct hci_rp_read_local_commands *rp = (void *) skb->data;
642
643 BT_DBG("%s status 0x%x", hdev->name, rp->status);
644
645 if (rp->status)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200646 goto done;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200647
648 memcpy(hdev->commands, rp->commands, sizeof(hdev->commands));
Johan Hedbergd5859e22011-01-25 01:19:58 +0200649
650 if (test_bit(HCI_INIT, &hdev->flags) && (hdev->commands[5] & 0x10))
651 hci_setup_link_policy(hdev);
652
653done:
654 hci_req_complete(hdev, HCI_OP_READ_LOCAL_COMMANDS, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200655}
656
657static void hci_cc_read_local_features(struct hci_dev *hdev, struct sk_buff *skb)
658{
659 struct hci_rp_read_local_features *rp = (void *) skb->data;
660
661 BT_DBG("%s status 0x%x", hdev->name, rp->status);
662
663 if (rp->status)
664 return;
665
666 memcpy(hdev->features, rp->features, 8);
667
668 /* Adjust default settings according to features
669 * supported by device. */
670
671 if (hdev->features[0] & LMP_3SLOT)
672 hdev->pkt_type |= (HCI_DM3 | HCI_DH3);
673
674 if (hdev->features[0] & LMP_5SLOT)
675 hdev->pkt_type |= (HCI_DM5 | HCI_DH5);
676
677 if (hdev->features[1] & LMP_HV2) {
678 hdev->pkt_type |= (HCI_HV2);
679 hdev->esco_type |= (ESCO_HV2);
680 }
681
682 if (hdev->features[1] & LMP_HV3) {
683 hdev->pkt_type |= (HCI_HV3);
684 hdev->esco_type |= (ESCO_HV3);
685 }
686
687 if (hdev->features[3] & LMP_ESCO)
688 hdev->esco_type |= (ESCO_EV3);
689
690 if (hdev->features[4] & LMP_EV4)
691 hdev->esco_type |= (ESCO_EV4);
692
693 if (hdev->features[4] & LMP_EV5)
694 hdev->esco_type |= (ESCO_EV5);
695
Marcel Holtmannefc76882009-02-06 09:13:37 +0100696 if (hdev->features[5] & LMP_EDR_ESCO_2M)
697 hdev->esco_type |= (ESCO_2EV3);
698
699 if (hdev->features[5] & LMP_EDR_ESCO_3M)
700 hdev->esco_type |= (ESCO_3EV3);
701
702 if (hdev->features[5] & LMP_EDR_3S_ESCO)
703 hdev->esco_type |= (ESCO_2EV5 | ESCO_3EV5);
704
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200705 BT_DBG("%s features 0x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x", hdev->name,
706 hdev->features[0], hdev->features[1],
707 hdev->features[2], hdev->features[3],
708 hdev->features[4], hdev->features[5],
709 hdev->features[6], hdev->features[7]);
710}
711
Andre Guedes971e3a42011-06-30 19:20:52 -0300712static void hci_cc_read_local_ext_features(struct hci_dev *hdev,
713 struct sk_buff *skb)
714{
715 struct hci_rp_read_local_ext_features *rp = (void *) skb->data;
716
717 BT_DBG("%s status 0x%x", hdev->name, rp->status);
718
719 if (rp->status)
720 return;
721
Andre Guedesb5b32b62011-12-30 10:34:04 -0300722 switch (rp->page) {
723 case 0:
724 memcpy(hdev->features, rp->features, 8);
725 break;
726 case 1:
727 memcpy(hdev->host_features, rp->features, 8);
728 break;
729 }
Andre Guedes971e3a42011-06-30 19:20:52 -0300730
731 hci_req_complete(hdev, HCI_OP_READ_LOCAL_EXT_FEATURES, rp->status);
732}
733
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200734static void hci_cc_read_flow_control_mode(struct hci_dev *hdev,
735 struct sk_buff *skb)
736{
737 struct hci_rp_read_flow_control_mode *rp = (void *) skb->data;
738
739 BT_DBG("%s status 0x%x", hdev->name, rp->status);
740
741 if (rp->status)
742 return;
743
744 hdev->flow_ctl_mode = rp->mode;
745
746 hci_req_complete(hdev, HCI_OP_READ_FLOW_CONTROL_MODE, rp->status);
747}
748
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200749static void hci_cc_read_buffer_size(struct hci_dev *hdev, struct sk_buff *skb)
750{
751 struct hci_rp_read_buffer_size *rp = (void *) skb->data;
752
753 BT_DBG("%s status 0x%x", hdev->name, rp->status);
754
755 if (rp->status)
756 return;
757
758 hdev->acl_mtu = __le16_to_cpu(rp->acl_mtu);
759 hdev->sco_mtu = rp->sco_mtu;
760 hdev->acl_pkts = __le16_to_cpu(rp->acl_max_pkt);
761 hdev->sco_pkts = __le16_to_cpu(rp->sco_max_pkt);
762
763 if (test_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks)) {
764 hdev->sco_mtu = 64;
765 hdev->sco_pkts = 8;
766 }
767
768 hdev->acl_cnt = hdev->acl_pkts;
769 hdev->sco_cnt = hdev->sco_pkts;
770
771 BT_DBG("%s acl mtu %d:%d sco mtu %d:%d", hdev->name,
772 hdev->acl_mtu, hdev->acl_pkts,
773 hdev->sco_mtu, hdev->sco_pkts);
774}
775
776static void hci_cc_read_bd_addr(struct hci_dev *hdev, struct sk_buff *skb)
777{
778 struct hci_rp_read_bd_addr *rp = (void *) skb->data;
779
780 BT_DBG("%s status 0x%x", hdev->name, rp->status);
781
782 if (!rp->status)
783 bacpy(&hdev->bdaddr, &rp->bdaddr);
784
Johan Hedberg23bb5762010-12-21 23:01:27 +0200785 hci_req_complete(hdev, HCI_OP_READ_BD_ADDR, rp->status);
786}
787
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200788static void hci_cc_read_data_block_size(struct hci_dev *hdev,
789 struct sk_buff *skb)
790{
791 struct hci_rp_read_data_block_size *rp = (void *) skb->data;
792
793 BT_DBG("%s status 0x%x", hdev->name, rp->status);
794
795 if (rp->status)
796 return;
797
798 hdev->block_mtu = __le16_to_cpu(rp->max_acl_len);
799 hdev->block_len = __le16_to_cpu(rp->block_len);
800 hdev->num_blocks = __le16_to_cpu(rp->num_blocks);
801
802 hdev->block_cnt = hdev->num_blocks;
803
804 BT_DBG("%s blk mtu %d cnt %d len %d", hdev->name, hdev->block_mtu,
805 hdev->block_cnt, hdev->block_len);
806
807 hci_req_complete(hdev, HCI_OP_READ_DATA_BLOCK_SIZE, rp->status);
808}
809
Johan Hedberg23bb5762010-12-21 23:01:27 +0200810static void hci_cc_write_ca_timeout(struct hci_dev *hdev, struct sk_buff *skb)
811{
812 __u8 status = *((__u8 *) skb->data);
813
814 BT_DBG("%s status 0x%x", hdev->name, status);
815
816 hci_req_complete(hdev, HCI_OP_WRITE_CA_TIMEOUT, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200817}
818
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300819static void hci_cc_read_local_amp_info(struct hci_dev *hdev,
820 struct sk_buff *skb)
821{
822 struct hci_rp_read_local_amp_info *rp = (void *) skb->data;
823
824 BT_DBG("%s status 0x%x", hdev->name, rp->status);
825
826 if (rp->status)
827 return;
828
829 hdev->amp_status = rp->amp_status;
830 hdev->amp_total_bw = __le32_to_cpu(rp->total_bw);
831 hdev->amp_max_bw = __le32_to_cpu(rp->max_bw);
832 hdev->amp_min_latency = __le32_to_cpu(rp->min_latency);
833 hdev->amp_max_pdu = __le32_to_cpu(rp->max_pdu);
834 hdev->amp_type = rp->amp_type;
835 hdev->amp_pal_cap = __le16_to_cpu(rp->pal_cap);
836 hdev->amp_assoc_size = __le16_to_cpu(rp->max_assoc_size);
837 hdev->amp_be_flush_to = __le32_to_cpu(rp->be_flush_to);
838 hdev->amp_max_flush_to = __le32_to_cpu(rp->max_flush_to);
839
840 hci_req_complete(hdev, HCI_OP_READ_LOCAL_AMP_INFO, rp->status);
841}
842
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200843static void hci_cc_delete_stored_link_key(struct hci_dev *hdev,
844 struct sk_buff *skb)
845{
846 __u8 status = *((__u8 *) skb->data);
847
848 BT_DBG("%s status 0x%x", hdev->name, status);
849
850 hci_req_complete(hdev, HCI_OP_DELETE_STORED_LINK_KEY, status);
851}
852
Johan Hedbergd5859e22011-01-25 01:19:58 +0200853static void hci_cc_set_event_mask(struct hci_dev *hdev, struct sk_buff *skb)
854{
855 __u8 status = *((__u8 *) skb->data);
856
857 BT_DBG("%s status 0x%x", hdev->name, status);
858
859 hci_req_complete(hdev, HCI_OP_SET_EVENT_MASK, status);
860}
861
862static void hci_cc_write_inquiry_mode(struct hci_dev *hdev,
863 struct sk_buff *skb)
864{
865 __u8 status = *((__u8 *) skb->data);
866
867 BT_DBG("%s status 0x%x", hdev->name, status);
868
869 hci_req_complete(hdev, HCI_OP_WRITE_INQUIRY_MODE, status);
870}
871
872static void hci_cc_read_inq_rsp_tx_power(struct hci_dev *hdev,
873 struct sk_buff *skb)
874{
875 __u8 status = *((__u8 *) skb->data);
876
877 BT_DBG("%s status 0x%x", hdev->name, status);
878
879 hci_req_complete(hdev, HCI_OP_READ_INQ_RSP_TX_POWER, status);
880}
881
882static void hci_cc_set_event_flt(struct hci_dev *hdev, struct sk_buff *skb)
883{
884 __u8 status = *((__u8 *) skb->data);
885
886 BT_DBG("%s status 0x%x", hdev->name, status);
887
888 hci_req_complete(hdev, HCI_OP_SET_EVENT_FLT, status);
889}
890
Johan Hedberg980e1a52011-01-22 06:10:07 +0200891static void hci_cc_pin_code_reply(struct hci_dev *hdev, struct sk_buff *skb)
892{
893 struct hci_rp_pin_code_reply *rp = (void *) skb->data;
894 struct hci_cp_pin_code_reply *cp;
895 struct hci_conn *conn;
896
897 BT_DBG("%s status 0x%x", hdev->name, rp->status);
898
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200899 hci_dev_lock(hdev);
900
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200901 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200902 mgmt_pin_code_reply_complete(hdev, &rp->bdaddr, rp->status);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200903
904 if (rp->status != 0)
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200905 goto unlock;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200906
907 cp = hci_sent_cmd_data(hdev, HCI_OP_PIN_CODE_REPLY);
908 if (!cp)
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200909 goto unlock;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200910
911 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
912 if (conn)
913 conn->pin_length = cp->pin_len;
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200914
915unlock:
916 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200917}
918
919static void hci_cc_pin_code_neg_reply(struct hci_dev *hdev, struct sk_buff *skb)
920{
921 struct hci_rp_pin_code_neg_reply *rp = (void *) skb->data;
922
923 BT_DBG("%s status 0x%x", hdev->name, rp->status);
924
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200925 hci_dev_lock(hdev);
926
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200927 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200928 mgmt_pin_code_neg_reply_complete(hdev, &rp->bdaddr,
Johan Hedberg980e1a52011-01-22 06:10:07 +0200929 rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200930
931 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200932}
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200933
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300934static void hci_cc_le_read_buffer_size(struct hci_dev *hdev,
935 struct sk_buff *skb)
936{
937 struct hci_rp_le_read_buffer_size *rp = (void *) skb->data;
938
939 BT_DBG("%s status 0x%x", hdev->name, rp->status);
940
941 if (rp->status)
942 return;
943
944 hdev->le_mtu = __le16_to_cpu(rp->le_mtu);
945 hdev->le_pkts = rp->le_max_pkt;
946
947 hdev->le_cnt = hdev->le_pkts;
948
949 BT_DBG("%s le mtu %d:%d", hdev->name, hdev->le_mtu, hdev->le_pkts);
950
951 hci_req_complete(hdev, HCI_OP_LE_READ_BUFFER_SIZE, rp->status);
952}
Johan Hedberg980e1a52011-01-22 06:10:07 +0200953
Johan Hedberga5c29682011-02-19 12:05:57 -0300954static void hci_cc_user_confirm_reply(struct hci_dev *hdev, struct sk_buff *skb)
955{
956 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
957
958 BT_DBG("%s status 0x%x", hdev->name, rp->status);
959
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200960 hci_dev_lock(hdev);
961
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200962 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg272d90d2012-02-09 15:26:12 +0200963 mgmt_user_confirm_reply_complete(hdev, &rp->bdaddr, ACL_LINK,
964 0, rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200965
966 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -0300967}
968
969static void hci_cc_user_confirm_neg_reply(struct hci_dev *hdev,
970 struct sk_buff *skb)
971{
972 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
973
974 BT_DBG("%s status 0x%x", hdev->name, rp->status);
975
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200976 hci_dev_lock(hdev);
977
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200978 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200979 mgmt_user_confirm_neg_reply_complete(hdev, &rp->bdaddr,
Johan Hedberg272d90d2012-02-09 15:26:12 +0200980 ACL_LINK, 0,
Johan Hedberga5c29682011-02-19 12:05:57 -0300981 rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200982
983 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -0300984}
985
Brian Gix1143d452011-11-23 08:28:34 -0800986static void hci_cc_user_passkey_reply(struct hci_dev *hdev, struct sk_buff *skb)
987{
988 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
989
990 BT_DBG("%s status 0x%x", hdev->name, rp->status);
991
992 hci_dev_lock(hdev);
993
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200994 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg272d90d2012-02-09 15:26:12 +0200995 mgmt_user_passkey_reply_complete(hdev, &rp->bdaddr, ACL_LINK,
996 0, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -0800997
998 hci_dev_unlock(hdev);
999}
1000
1001static void hci_cc_user_passkey_neg_reply(struct hci_dev *hdev,
1002 struct sk_buff *skb)
1003{
1004 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
1005
1006 BT_DBG("%s status 0x%x", hdev->name, rp->status);
1007
1008 hci_dev_lock(hdev);
1009
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001010 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Brian Gix1143d452011-11-23 08:28:34 -08001011 mgmt_user_passkey_neg_reply_complete(hdev, &rp->bdaddr,
Johan Hedberg272d90d2012-02-09 15:26:12 +02001012 ACL_LINK, 0,
Brian Gix1143d452011-11-23 08:28:34 -08001013 rp->status);
1014
1015 hci_dev_unlock(hdev);
1016}
1017
Szymon Jancc35938b2011-03-22 13:12:21 +01001018static void hci_cc_read_local_oob_data_reply(struct hci_dev *hdev,
1019 struct sk_buff *skb)
1020{
1021 struct hci_rp_read_local_oob_data *rp = (void *) skb->data;
1022
1023 BT_DBG("%s status 0x%x", hdev->name, rp->status);
1024
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001025 hci_dev_lock(hdev);
Johan Hedberg744cf192011-11-08 20:40:14 +02001026 mgmt_read_local_oob_data_reply_complete(hdev, rp->hash,
Szymon Jancc35938b2011-03-22 13:12:21 +01001027 rp->randomizer, rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001028 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01001029}
1030
Andre Guedes07f7fa52011-12-02 21:13:31 +09001031static void hci_cc_le_set_scan_param(struct hci_dev *hdev, struct sk_buff *skb)
1032{
1033 __u8 status = *((__u8 *) skb->data);
1034
1035 BT_DBG("%s status 0x%x", hdev->name, status);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001036
1037 hci_req_complete(hdev, HCI_OP_LE_SET_SCAN_PARAM, status);
Andre Guedes3fd24152012-02-03 17:48:01 -03001038
1039 if (status) {
1040 hci_dev_lock(hdev);
1041 mgmt_start_discovery_failed(hdev, status);
1042 hci_dev_unlock(hdev);
1043 return;
1044 }
Andre Guedes07f7fa52011-12-02 21:13:31 +09001045}
1046
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001047static void hci_cc_le_set_scan_enable(struct hci_dev *hdev,
1048 struct sk_buff *skb)
1049{
1050 struct hci_cp_le_set_scan_enable *cp;
1051 __u8 status = *((__u8 *) skb->data);
1052
1053 BT_DBG("%s status 0x%x", hdev->name, status);
1054
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001055 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_SCAN_ENABLE);
1056 if (!cp)
1057 return;
1058
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001059 switch (cp->enable) {
1060 case LE_SCANNING_ENABLED:
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001061 hci_req_complete(hdev, HCI_OP_LE_SET_SCAN_ENABLE, status);
1062
Andre Guedes3fd24152012-02-03 17:48:01 -03001063 if (status) {
1064 hci_dev_lock(hdev);
1065 mgmt_start_discovery_failed(hdev, status);
1066 hci_dev_unlock(hdev);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001067 return;
Andre Guedes3fd24152012-02-03 17:48:01 -03001068 }
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001069
Andre Guedesd23264a2011-11-25 20:53:38 -03001070 set_bit(HCI_LE_SCAN, &hdev->dev_flags);
1071
Gustavo F. Padovandb323f22011-06-20 16:39:29 -03001072 cancel_delayed_work_sync(&hdev->adv_work);
Andre Guedesa8f13c82011-09-09 18:56:24 -03001073
1074 hci_dev_lock(hdev);
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001075 hci_adv_entries_clear(hdev);
Andre Guedesc5990082012-02-03 17:47:57 -03001076 hci_discovery_set_state(hdev, DISCOVERY_LE_SCAN);
Andre Guedesa8f13c82011-09-09 18:56:24 -03001077 hci_dev_unlock(hdev);
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001078 break;
1079
1080 case LE_SCANNING_DISABLED:
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001081 if (status)
1082 return;
1083
Andre Guedesd23264a2011-11-25 20:53:38 -03001084 clear_bit(HCI_LE_SCAN, &hdev->dev_flags);
1085
Andre Guedesc5990082012-02-03 17:47:57 -03001086 hci_dev_lock(hdev);
1087 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1088 hci_dev_unlock(hdev);
1089
Andre Guedesd0843292012-01-02 19:18:11 -03001090 schedule_delayed_work(&hdev->adv_work, ADV_CLEAR_TIMEOUT);
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001091 break;
1092
1093 default:
1094 BT_ERR("Used reserved LE_Scan_Enable param %d", cp->enable);
1095 break;
Andre Guedes35815082011-05-26 16:23:53 -03001096 }
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001097}
1098
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001099static void hci_cc_le_ltk_reply(struct hci_dev *hdev, struct sk_buff *skb)
1100{
1101 struct hci_rp_le_ltk_reply *rp = (void *) skb->data;
1102
1103 BT_DBG("%s status 0x%x", hdev->name, rp->status);
1104
1105 if (rp->status)
1106 return;
1107
1108 hci_req_complete(hdev, HCI_OP_LE_LTK_REPLY, rp->status);
1109}
1110
1111static void hci_cc_le_ltk_neg_reply(struct hci_dev *hdev, struct sk_buff *skb)
1112{
1113 struct hci_rp_le_ltk_neg_reply *rp = (void *) skb->data;
1114
1115 BT_DBG("%s status 0x%x", hdev->name, rp->status);
1116
1117 if (rp->status)
1118 return;
1119
1120 hci_req_complete(hdev, HCI_OP_LE_LTK_NEG_REPLY, rp->status);
1121}
1122
Andre Guedesf9b49302011-06-30 19:20:53 -03001123static inline void hci_cc_write_le_host_supported(struct hci_dev *hdev,
1124 struct sk_buff *skb)
1125{
1126 struct hci_cp_read_local_ext_features cp;
1127 __u8 status = *((__u8 *) skb->data);
1128
1129 BT_DBG("%s status 0x%x", hdev->name, status);
1130
1131 if (status)
1132 return;
1133
1134 cp.page = 0x01;
1135 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_EXT_FEATURES, sizeof(cp), &cp);
1136}
1137
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001138static inline void hci_cs_inquiry(struct hci_dev *hdev, __u8 status)
1139{
1140 BT_DBG("%s status 0x%x", hdev->name, status);
1141
1142 if (status) {
Johan Hedberg23bb5762010-12-21 23:01:27 +02001143 hci_req_complete(hdev, HCI_OP_INQUIRY, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001144 hci_conn_check_pending(hdev);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001145 hci_dev_lock(hdev);
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001146 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Andre Guedes7a135102011-11-09 17:14:25 -03001147 mgmt_start_discovery_failed(hdev, status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001148 hci_dev_unlock(hdev);
Johan Hedberg314b2382011-04-27 10:29:57 -04001149 return;
1150 }
1151
Andre Guedes89352e72011-11-04 14:16:53 -03001152 set_bit(HCI_INQUIRY, &hdev->flags);
1153
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001154 hci_dev_lock(hdev);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001155 hci_discovery_set_state(hdev, DISCOVERY_INQUIRY);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001156 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001157}
1158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159static inline void hci_cs_create_conn(struct hci_dev *hdev, __u8 status)
1160{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001161 struct hci_cp_create_conn *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001164 BT_DBG("%s status 0x%x", hdev->name, status);
1165
1166 cp = hci_sent_cmd_data(hdev, HCI_OP_CREATE_CONN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 if (!cp)
1168 return;
1169
1170 hci_dev_lock(hdev);
1171
1172 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
1173
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001174 BT_DBG("%s bdaddr %s conn %p", hdev->name, batostr(&cp->bdaddr), conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 if (status) {
1177 if (conn && conn->state == BT_CONNECT) {
Marcel Holtmann4c67bc72006-10-15 17:30:56 +02001178 if (status != 0x0c || conn->attempt > 2) {
1179 conn->state = BT_CLOSED;
1180 hci_proto_connect_cfm(conn, status);
1181 hci_conn_del(conn);
1182 } else
1183 conn->state = BT_CONNECT2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 }
1185 } else {
1186 if (!conn) {
1187 conn = hci_conn_add(hdev, ACL_LINK, &cp->bdaddr);
1188 if (conn) {
Johan Hedberga0c808b2012-01-16 09:49:58 +02001189 conn->out = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 conn->link_mode |= HCI_LM_MASTER;
1191 } else
Gustavo F. Padovan893ef972010-07-18 15:13:37 -03001192 BT_ERR("No memory for new connection");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 }
1194 }
1195
1196 hci_dev_unlock(hdev);
1197}
1198
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001199static void hci_cs_add_sco(struct hci_dev *hdev, __u8 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001201 struct hci_cp_add_sco *cp;
1202 struct hci_conn *acl, *sco;
1203 __u16 handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001205 BT_DBG("%s status 0x%x", hdev->name, status);
1206
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001207 if (!status)
1208 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001210 cp = hci_sent_cmd_data(hdev, HCI_OP_ADD_SCO);
1211 if (!cp)
1212 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001214 handle = __le16_to_cpu(cp->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001216 BT_DBG("%s handle %d", hdev->name, handle);
Marcel Holtmann6bd57412006-11-18 22:14:22 +01001217
1218 hci_dev_lock(hdev);
1219
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001220 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001221 if (acl) {
1222 sco = acl->link;
1223 if (sco) {
1224 sco->state = BT_CLOSED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001225
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001226 hci_proto_connect_cfm(sco, status);
1227 hci_conn_del(sco);
1228 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001229 }
Marcel Holtmann6bd57412006-11-18 22:14:22 +01001230
1231 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232}
1233
Marcel Holtmannf8558552008-07-14 20:13:49 +02001234static void hci_cs_auth_requested(struct hci_dev *hdev, __u8 status)
1235{
1236 struct hci_cp_auth_requested *cp;
1237 struct hci_conn *conn;
1238
1239 BT_DBG("%s status 0x%x", hdev->name, status);
1240
1241 if (!status)
1242 return;
1243
1244 cp = hci_sent_cmd_data(hdev, HCI_OP_AUTH_REQUESTED);
1245 if (!cp)
1246 return;
1247
1248 hci_dev_lock(hdev);
1249
1250 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1251 if (conn) {
1252 if (conn->state == BT_CONFIG) {
1253 hci_proto_connect_cfm(conn, status);
1254 hci_conn_put(conn);
1255 }
1256 }
1257
1258 hci_dev_unlock(hdev);
1259}
1260
1261static void hci_cs_set_conn_encrypt(struct hci_dev *hdev, __u8 status)
1262{
1263 struct hci_cp_set_conn_encrypt *cp;
1264 struct hci_conn *conn;
1265
1266 BT_DBG("%s status 0x%x", hdev->name, status);
1267
1268 if (!status)
1269 return;
1270
1271 cp = hci_sent_cmd_data(hdev, HCI_OP_SET_CONN_ENCRYPT);
1272 if (!cp)
1273 return;
1274
1275 hci_dev_lock(hdev);
1276
1277 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1278 if (conn) {
1279 if (conn->state == BT_CONFIG) {
1280 hci_proto_connect_cfm(conn, status);
1281 hci_conn_put(conn);
1282 }
1283 }
1284
1285 hci_dev_unlock(hdev);
1286}
1287
Johan Hedberg127178d2010-11-18 22:22:29 +02001288static int hci_outgoing_auth_needed(struct hci_dev *hdev,
Szymon Janc138d22e2011-02-17 16:44:23 +01001289 struct hci_conn *conn)
Johan Hedberg392599b2010-11-18 22:22:28 +02001290{
Johan Hedberg392599b2010-11-18 22:22:28 +02001291 if (conn->state != BT_CONFIG || !conn->out)
1292 return 0;
1293
Johan Hedberg765c2a92011-01-19 12:06:52 +05301294 if (conn->pending_sec_level == BT_SECURITY_SDP)
Johan Hedberg392599b2010-11-18 22:22:28 +02001295 return 0;
1296
1297 /* Only request authentication for SSP connections or non-SSP
Vinicius Costa Gomese9bf2bf2011-09-02 14:51:20 -03001298 * devices with sec_level HIGH or if MITM protection is requested */
Johan Hedbergaa64a8b2012-01-18 21:33:12 +02001299 if (!hci_conn_ssp_enabled(conn) &&
Vinicius Costa Gomese9bf2bf2011-09-02 14:51:20 -03001300 conn->pending_sec_level != BT_SECURITY_HIGH &&
1301 !(conn->auth_type & 0x01))
Johan Hedberg392599b2010-11-18 22:22:28 +02001302 return 0;
1303
Johan Hedberg392599b2010-11-18 22:22:28 +02001304 return 1;
1305}
1306
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001307static inline int hci_resolve_name(struct hci_dev *hdev, struct inquiry_entry *e)
1308{
1309 struct hci_cp_remote_name_req cp;
1310
1311 memset(&cp, 0, sizeof(cp));
1312
1313 bacpy(&cp.bdaddr, &e->data.bdaddr);
1314 cp.pscan_rep_mode = e->data.pscan_rep_mode;
1315 cp.pscan_mode = e->data.pscan_mode;
1316 cp.clock_offset = e->data.clock_offset;
1317
1318 return hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
1319}
1320
Johan Hedbergb644ba32012-01-17 21:48:47 +02001321static bool hci_resolve_next_name(struct hci_dev *hdev)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001322{
1323 struct discovery_state *discov = &hdev->discovery;
1324 struct inquiry_entry *e;
1325
Johan Hedbergb644ba32012-01-17 21:48:47 +02001326 if (list_empty(&discov->resolve))
1327 return false;
1328
1329 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
1330 if (hci_resolve_name(hdev, e) == 0) {
1331 e->name_state = NAME_PENDING;
1332 return true;
1333 }
1334
1335 return false;
1336}
1337
1338static void hci_check_pending_name(struct hci_dev *hdev, struct hci_conn *conn,
1339 bdaddr_t *bdaddr, u8 *name, u8 name_len)
1340{
1341 struct discovery_state *discov = &hdev->discovery;
1342 struct inquiry_entry *e;
1343
1344 if (conn && !test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
1345 mgmt_device_connected(hdev, bdaddr, ACL_LINK, 0x00,
1346 name, name_len, conn->dev_class);
1347
1348 if (discov->state == DISCOVERY_STOPPED)
1349 return;
1350
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001351 if (discov->state == DISCOVERY_STOPPING)
1352 goto discov_complete;
1353
1354 if (discov->state != DISCOVERY_RESOLVING)
1355 return;
1356
1357 e = hci_inquiry_cache_lookup_resolve(hdev, bdaddr, NAME_PENDING);
1358 if (e) {
1359 e->name_state = NAME_KNOWN;
1360 list_del(&e->list);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001361 if (name)
1362 mgmt_remote_name(hdev, bdaddr, ACL_LINK, 0x00,
1363 e->data.rssi, name, name_len);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001364 }
1365
Johan Hedbergb644ba32012-01-17 21:48:47 +02001366 if (hci_resolve_next_name(hdev))
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001367 return;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001368
1369discov_complete:
1370 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1371}
1372
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001373static void hci_cs_remote_name_req(struct hci_dev *hdev, __u8 status)
1374{
Johan Hedberg127178d2010-11-18 22:22:29 +02001375 struct hci_cp_remote_name_req *cp;
1376 struct hci_conn *conn;
1377
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001378 BT_DBG("%s status 0x%x", hdev->name, status);
Johan Hedberg127178d2010-11-18 22:22:29 +02001379
1380 /* If successful wait for the name req complete event before
1381 * checking for the need to do authentication */
1382 if (!status)
1383 return;
1384
1385 cp = hci_sent_cmd_data(hdev, HCI_OP_REMOTE_NAME_REQ);
1386 if (!cp)
1387 return;
1388
1389 hci_dev_lock(hdev);
1390
1391 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001392
1393 if (test_bit(HCI_MGMT, &hdev->dev_flags))
1394 hci_check_pending_name(hdev, conn, &cp->bdaddr, NULL, 0);
1395
Johan Hedberg79c6c702011-04-28 11:28:55 -07001396 if (!conn)
1397 goto unlock;
1398
1399 if (!hci_outgoing_auth_needed(hdev, conn))
1400 goto unlock;
1401
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001402 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02001403 struct hci_cp_auth_requested cp;
1404 cp.handle = __cpu_to_le16(conn->handle);
1405 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
1406 }
1407
Johan Hedberg79c6c702011-04-28 11:28:55 -07001408unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02001409 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001410}
1411
Marcel Holtmann769be972008-07-14 20:13:49 +02001412static void hci_cs_read_remote_features(struct hci_dev *hdev, __u8 status)
1413{
1414 struct hci_cp_read_remote_features *cp;
1415 struct hci_conn *conn;
1416
1417 BT_DBG("%s status 0x%x", hdev->name, status);
1418
1419 if (!status)
1420 return;
1421
1422 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_FEATURES);
1423 if (!cp)
1424 return;
1425
1426 hci_dev_lock(hdev);
1427
1428 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1429 if (conn) {
1430 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001431 hci_proto_connect_cfm(conn, status);
1432 hci_conn_put(conn);
1433 }
1434 }
1435
1436 hci_dev_unlock(hdev);
1437}
1438
1439static void hci_cs_read_remote_ext_features(struct hci_dev *hdev, __u8 status)
1440{
1441 struct hci_cp_read_remote_ext_features *cp;
1442 struct hci_conn *conn;
1443
1444 BT_DBG("%s status 0x%x", hdev->name, status);
1445
1446 if (!status)
1447 return;
1448
1449 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES);
1450 if (!cp)
1451 return;
1452
1453 hci_dev_lock(hdev);
1454
1455 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1456 if (conn) {
1457 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001458 hci_proto_connect_cfm(conn, status);
1459 hci_conn_put(conn);
1460 }
1461 }
1462
1463 hci_dev_unlock(hdev);
1464}
1465
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001466static void hci_cs_setup_sync_conn(struct hci_dev *hdev, __u8 status)
1467{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001468 struct hci_cp_setup_sync_conn *cp;
1469 struct hci_conn *acl, *sco;
1470 __u16 handle;
1471
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001472 BT_DBG("%s status 0x%x", hdev->name, status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001473
1474 if (!status)
1475 return;
1476
1477 cp = hci_sent_cmd_data(hdev, HCI_OP_SETUP_SYNC_CONN);
1478 if (!cp)
1479 return;
1480
1481 handle = __le16_to_cpu(cp->handle);
1482
1483 BT_DBG("%s handle %d", hdev->name, handle);
1484
1485 hci_dev_lock(hdev);
1486
1487 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001488 if (acl) {
1489 sco = acl->link;
1490 if (sco) {
1491 sco->state = BT_CLOSED;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001492
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001493 hci_proto_connect_cfm(sco, status);
1494 hci_conn_del(sco);
1495 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001496 }
1497
1498 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001499}
1500
1501static void hci_cs_sniff_mode(struct hci_dev *hdev, __u8 status)
1502{
1503 struct hci_cp_sniff_mode *cp;
1504 struct hci_conn *conn;
1505
1506 BT_DBG("%s status 0x%x", hdev->name, status);
1507
1508 if (!status)
1509 return;
1510
1511 cp = hci_sent_cmd_data(hdev, HCI_OP_SNIFF_MODE);
1512 if (!cp)
1513 return;
1514
1515 hci_dev_lock(hdev);
1516
1517 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001518 if (conn) {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001519 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001520
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001521 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001522 hci_sco_setup(conn, status);
1523 }
1524
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001525 hci_dev_unlock(hdev);
1526}
1527
1528static void hci_cs_exit_sniff_mode(struct hci_dev *hdev, __u8 status)
1529{
1530 struct hci_cp_exit_sniff_mode *cp;
1531 struct hci_conn *conn;
1532
1533 BT_DBG("%s status 0x%x", hdev->name, status);
1534
1535 if (!status)
1536 return;
1537
1538 cp = hci_sent_cmd_data(hdev, HCI_OP_EXIT_SNIFF_MODE);
1539 if (!cp)
1540 return;
1541
1542 hci_dev_lock(hdev);
1543
1544 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001545 if (conn) {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001546 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001547
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001548 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001549 hci_sco_setup(conn, status);
1550 }
1551
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001552 hci_dev_unlock(hdev);
1553}
1554
Johan Hedberg88c3df12012-02-09 14:27:38 +02001555static void hci_cs_disconnect(struct hci_dev *hdev, u8 status)
1556{
1557 struct hci_cp_disconnect *cp;
1558 struct hci_conn *conn;
1559
1560 if (!status)
1561 return;
1562
1563 cp = hci_sent_cmd_data(hdev, HCI_OP_DISCONNECT);
1564 if (!cp)
1565 return;
1566
1567 hci_dev_lock(hdev);
1568
1569 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1570 if (conn)
1571 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
1572 conn->dst_type, status);
1573
1574 hci_dev_unlock(hdev);
1575}
1576
Ville Tervofcd89c02011-02-10 22:38:47 -03001577static void hci_cs_le_create_conn(struct hci_dev *hdev, __u8 status)
1578{
1579 struct hci_cp_le_create_conn *cp;
1580 struct hci_conn *conn;
1581
1582 BT_DBG("%s status 0x%x", hdev->name, status);
1583
1584 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_CREATE_CONN);
1585 if (!cp)
1586 return;
1587
1588 hci_dev_lock(hdev);
1589
1590 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->peer_addr);
1591
1592 BT_DBG("%s bdaddr %s conn %p", hdev->name, batostr(&cp->peer_addr),
1593 conn);
1594
1595 if (status) {
1596 if (conn && conn->state == BT_CONNECT) {
1597 conn->state = BT_CLOSED;
1598 hci_proto_connect_cfm(conn, status);
1599 hci_conn_del(conn);
1600 }
1601 } else {
1602 if (!conn) {
1603 conn = hci_conn_add(hdev, LE_LINK, &cp->peer_addr);
Andre Guedes29b79882011-05-31 14:20:54 -03001604 if (conn) {
1605 conn->dst_type = cp->peer_addr_type;
Johan Hedberga0c808b2012-01-16 09:49:58 +02001606 conn->out = true;
Andre Guedes29b79882011-05-31 14:20:54 -03001607 } else {
Ville Tervofcd89c02011-02-10 22:38:47 -03001608 BT_ERR("No memory for new connection");
Andre Guedes29b79882011-05-31 14:20:54 -03001609 }
Ville Tervofcd89c02011-02-10 22:38:47 -03001610 }
1611 }
1612
1613 hci_dev_unlock(hdev);
1614}
1615
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001616static void hci_cs_le_start_enc(struct hci_dev *hdev, u8 status)
1617{
1618 BT_DBG("%s status 0x%x", hdev->name, status);
1619}
1620
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001621static inline void hci_inquiry_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1622{
1623 __u8 status = *((__u8 *) skb->data);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001624 struct discovery_state *discov = &hdev->discovery;
1625 struct inquiry_entry *e;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001626
1627 BT_DBG("%s status %d", hdev->name, status);
1628
Johan Hedberg23bb5762010-12-21 23:01:27 +02001629 hci_req_complete(hdev, HCI_OP_INQUIRY, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001630
1631 hci_conn_check_pending(hdev);
Andre Guedes89352e72011-11-04 14:16:53 -03001632
1633 if (!test_and_clear_bit(HCI_INQUIRY, &hdev->flags))
1634 return;
1635
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001636 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001637 return;
1638
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001639 hci_dev_lock(hdev);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001640
1641 if (discov->state != DISCOVERY_INQUIRY)
1642 goto unlock;
1643
1644 if (list_empty(&discov->resolve)) {
1645 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1646 goto unlock;
1647 }
1648
1649 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
1650 if (e && hci_resolve_name(hdev, e) == 0) {
1651 e->name_state = NAME_PENDING;
1652 hci_discovery_set_state(hdev, DISCOVERY_RESOLVING);
1653 } else {
1654 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1655 }
1656
1657unlock:
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001658 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001659}
1660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661static inline void hci_inquiry_result_evt(struct hci_dev *hdev, struct sk_buff *skb)
1662{
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001663 struct inquiry_data data;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001664 struct inquiry_info *info = (void *) (skb->data + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 int num_rsp = *((__u8 *) skb->data);
1666
1667 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
1668
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001669 if (!num_rsp)
1670 return;
1671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001673
Johan Hedberge17acd42011-03-30 23:57:16 +03001674 for (; num_rsp; num_rsp--, info++) {
Johan Hedberg31754052012-01-04 13:39:52 +02001675 bool name_known;
1676
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 bacpy(&data.bdaddr, &info->bdaddr);
1678 data.pscan_rep_mode = info->pscan_rep_mode;
1679 data.pscan_period_mode = info->pscan_period_mode;
1680 data.pscan_mode = info->pscan_mode;
1681 memcpy(data.dev_class, info->dev_class, 3);
1682 data.clock_offset = info->clock_offset;
1683 data.rssi = 0x00;
Marcel Holtmann41a96212008-07-14 20:13:48 +02001684 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02001685
1686 name_known = hci_inquiry_cache_update(hdev, &data, false);
Johan Hedberg48264f02011-11-09 13:58:58 +02001687 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Andre Guedes7d262f82012-01-10 18:20:49 -03001688 info->dev_class, 0, !name_known,
1689 NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 hci_dev_unlock(hdev);
1693}
1694
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001695static inline void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001697 struct hci_ev_conn_complete *ev = (void *) skb->data;
1698 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001700 BT_DBG("%s", hdev->name);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001703
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001704 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann94992372009-04-19 19:30:03 +02001705 if (!conn) {
1706 if (ev->link_type != SCO_LINK)
1707 goto unlock;
1708
1709 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
1710 if (!conn)
1711 goto unlock;
1712
1713 conn->type = SCO_LINK;
1714 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001715
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001716 if (!ev->status) {
1717 conn->handle = __le16_to_cpu(ev->handle);
Marcel Holtmann769be972008-07-14 20:13:49 +02001718
1719 if (conn->type == ACL_LINK) {
1720 conn->state = BT_CONFIG;
1721 hci_conn_hold(conn);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001722 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Marcel Holtmann769be972008-07-14 20:13:49 +02001723 } else
1724 conn->state = BT_CONNECTED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001725
Marcel Holtmann9eba32b2009-08-22 14:19:26 -07001726 hci_conn_hold_device(conn);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02001727 hci_conn_add_sysfs(conn);
1728
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001729 if (test_bit(HCI_AUTH, &hdev->flags))
1730 conn->link_mode |= HCI_LM_AUTH;
1731
1732 if (test_bit(HCI_ENCRYPT, &hdev->flags))
1733 conn->link_mode |= HCI_LM_ENCRYPT;
1734
1735 /* Get remote features */
1736 if (conn->type == ACL_LINK) {
1737 struct hci_cp_read_remote_features cp;
1738 cp.handle = ev->handle;
Marcel Holtmann769be972008-07-14 20:13:49 +02001739 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_FEATURES,
1740 sizeof(cp), &cp);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001741 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001742
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001743 /* Set packet type for incoming connection */
Andrei Emeltchenkod095c1e2011-12-01 14:33:27 +02001744 if (!conn->out && hdev->hci_ver < BLUETOOTH_VER_2_0) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001745 struct hci_cp_change_conn_ptype cp;
1746 cp.handle = ev->handle;
Marcel Holtmanna8746412008-07-14 20:13:46 +02001747 cp.pkt_type = cpu_to_le16(conn->pkt_type);
1748 hci_send_cmd(hdev, HCI_OP_CHANGE_CONN_PTYPE,
1749 sizeof(cp), &cp);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001750 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02001751 } else {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001752 conn->state = BT_CLOSED;
Johan Hedberg17d5c042011-01-22 06:09:08 +02001753 if (conn->type == ACL_LINK)
Johan Hedberg744cf192011-11-08 20:40:14 +02001754 mgmt_connect_failed(hdev, &ev->bdaddr, conn->type,
Johan Hedberg48264f02011-11-09 13:58:58 +02001755 conn->dst_type, ev->status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02001756 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001757
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001758 if (conn->type == ACL_LINK)
1759 hci_sco_setup(conn, ev->status);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001760
Marcel Holtmann769be972008-07-14 20:13:49 +02001761 if (ev->status) {
1762 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001763 hci_conn_del(conn);
Marcel Holtmannc89b6e62009-01-15 21:57:03 +01001764 } else if (ev->link_type != ACL_LINK)
1765 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001766
1767unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001769
1770 hci_conn_check_pending(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771}
1772
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773static inline void hci_conn_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
1774{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001775 struct hci_ev_conn_request *ev = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 int mask = hdev->link_mode;
1777
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001778 BT_DBG("%s bdaddr %s type 0x%x", hdev->name,
1779 batostr(&ev->bdaddr), ev->link_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
1781 mask |= hci_proto_connect_ind(hdev, &ev->bdaddr, ev->link_type);
1782
Szymon Janc138d22e2011-02-17 16:44:23 +01001783 if ((mask & HCI_LM_ACCEPT) &&
1784 !hci_blacklist_lookup(hdev, &ev->bdaddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 /* Connection accepted */
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02001786 struct inquiry_entry *ie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
1789 hci_dev_lock(hdev);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001790
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02001791 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
1792 if (ie)
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02001793 memcpy(ie->data.dev_class, ev->dev_class, 3);
1794
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
1796 if (!conn) {
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02001797 conn = hci_conn_add(hdev, ev->link_type, &ev->bdaddr);
1798 if (!conn) {
Gustavo F. Padovan893ef972010-07-18 15:13:37 -03001799 BT_ERR("No memory for new connection");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 hci_dev_unlock(hdev);
1801 return;
1802 }
1803 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001804
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 memcpy(conn->dev_class, ev->dev_class, 3);
1806 conn->state = BT_CONNECT;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001807
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 hci_dev_unlock(hdev);
1809
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001810 if (ev->link_type == ACL_LINK || !lmp_esco_capable(hdev)) {
1811 struct hci_cp_accept_conn_req cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001813 bacpy(&cp.bdaddr, &ev->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001815 if (lmp_rswitch_capable(hdev) && (mask & HCI_LM_MASTER))
1816 cp.role = 0x00; /* Become master */
1817 else
1818 cp.role = 0x01; /* Remain slave */
1819
1820 hci_send_cmd(hdev, HCI_OP_ACCEPT_CONN_REQ,
1821 sizeof(cp), &cp);
1822 } else {
1823 struct hci_cp_accept_sync_conn_req cp;
1824
1825 bacpy(&cp.bdaddr, &ev->bdaddr);
Marcel Holtmanna8746412008-07-14 20:13:46 +02001826 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001827
1828 cp.tx_bandwidth = cpu_to_le32(0x00001f40);
1829 cp.rx_bandwidth = cpu_to_le32(0x00001f40);
1830 cp.max_latency = cpu_to_le16(0xffff);
1831 cp.content_format = cpu_to_le16(hdev->voice_setting);
1832 cp.retrans_effort = 0xff;
1833
1834 hci_send_cmd(hdev, HCI_OP_ACCEPT_SYNC_CONN_REQ,
1835 sizeof(cp), &cp);
1836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 } else {
1838 /* Connection rejected */
1839 struct hci_cp_reject_conn_req cp;
1840
1841 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +02001842 cp.reason = HCI_ERROR_REJ_BAD_ADDR;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001843 hci_send_cmd(hdev, HCI_OP_REJECT_CONN_REQ, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 }
1845}
1846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847static inline void hci_disconn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1848{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001849 struct hci_ev_disconn_complete *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02001850 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
1852 BT_DBG("%s status %d", hdev->name, ev->status);
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 hci_dev_lock(hdev);
1855
Marcel Holtmann04837f62006-07-03 10:02:33 +02001856 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergf7520542011-01-20 12:34:39 +02001857 if (!conn)
1858 goto unlock;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02001859
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001860 if (ev->status == 0)
1861 conn->state = BT_CLOSED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Johan Hedbergb644ba32012-01-17 21:48:47 +02001863 if (test_and_clear_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags) &&
1864 (conn->type == ACL_LINK || conn->type == LE_LINK)) {
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001865 if (ev->status != 0)
Johan Hedberg88c3df12012-02-09 14:27:38 +02001866 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
1867 conn->dst_type, ev->status);
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001868 else
Johan Hedbergafc747a2012-01-15 18:11:07 +02001869 mgmt_device_disconnected(hdev, &conn->dst, conn->type,
Johan Hedberg48264f02011-11-09 13:58:58 +02001870 conn->dst_type);
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001871 }
Johan Hedbergf7520542011-01-20 12:34:39 +02001872
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001873 if (ev->status == 0) {
1874 hci_proto_disconn_cfm(conn, ev->reason);
1875 hci_conn_del(conn);
1876 }
Johan Hedbergf7520542011-01-20 12:34:39 +02001877
1878unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 hci_dev_unlock(hdev);
1880}
1881
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001882static inline void hci_auth_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1883{
1884 struct hci_ev_auth_complete *ev = (void *) skb->data;
1885 struct hci_conn *conn;
1886
1887 BT_DBG("%s status %d", hdev->name, ev->status);
1888
1889 hci_dev_lock(hdev);
1890
1891 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001892 if (!conn)
1893 goto unlock;
1894
1895 if (!ev->status) {
Johan Hedbergaa64a8b2012-01-18 21:33:12 +02001896 if (!hci_conn_ssp_enabled(conn) &&
1897 test_bit(HCI_CONN_REAUTH_PEND, &conn->flags)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001898 BT_INFO("re-auth of legacy device is not possible.");
Johan Hedberg2a611692011-02-19 12:06:00 -03001899 } else {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001900 conn->link_mode |= HCI_LM_AUTH;
1901 conn->sec_level = conn->pending_sec_level;
Johan Hedberg2a611692011-02-19 12:06:00 -03001902 }
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001903 } else {
Johan Hedberg744cf192011-11-08 20:40:14 +02001904 mgmt_auth_failed(hdev, &conn->dst, ev->status);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001905 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001906
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001907 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
1908 clear_bit(HCI_CONN_REAUTH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001909
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001910 if (conn->state == BT_CONFIG) {
Johan Hedbergaa64a8b2012-01-18 21:33:12 +02001911 if (!ev->status && hci_conn_ssp_enabled(conn)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001912 struct hci_cp_set_conn_encrypt cp;
1913 cp.handle = ev->handle;
1914 cp.encrypt = 0x01;
1915 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
1916 &cp);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001917 } else {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001918 conn->state = BT_CONNECTED;
1919 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001920 hci_conn_put(conn);
1921 }
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001922 } else {
1923 hci_auth_cfm(conn, ev->status);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001924
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001925 hci_conn_hold(conn);
1926 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
1927 hci_conn_put(conn);
1928 }
1929
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001930 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001931 if (!ev->status) {
1932 struct hci_cp_set_conn_encrypt cp;
1933 cp.handle = ev->handle;
1934 cp.encrypt = 0x01;
1935 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
1936 &cp);
1937 } else {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001938 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001939 hci_encrypt_cfm(conn, ev->status, 0x00);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001940 }
1941 }
1942
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001943unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001944 hci_dev_unlock(hdev);
1945}
1946
1947static inline void hci_remote_name_evt(struct hci_dev *hdev, struct sk_buff *skb)
1948{
Johan Hedberg127178d2010-11-18 22:22:29 +02001949 struct hci_ev_remote_name *ev = (void *) skb->data;
1950 struct hci_conn *conn;
1951
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001952 BT_DBG("%s", hdev->name);
1953
1954 hci_conn_check_pending(hdev);
Johan Hedberg127178d2010-11-18 22:22:29 +02001955
1956 hci_dev_lock(hdev);
1957
1958 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001959
1960 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
1961 goto check_auth;
1962
1963 if (ev->status == 0)
1964 hci_check_pending_name(hdev, conn, &ev->bdaddr, ev->name,
1965 strnlen(ev->name, HCI_MAX_NAME_LENGTH));
1966 else
1967 hci_check_pending_name(hdev, conn, &ev->bdaddr, NULL, 0);
1968
1969check_auth:
Johan Hedberg79c6c702011-04-28 11:28:55 -07001970 if (!conn)
1971 goto unlock;
1972
1973 if (!hci_outgoing_auth_needed(hdev, conn))
1974 goto unlock;
1975
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001976 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02001977 struct hci_cp_auth_requested cp;
1978 cp.handle = __cpu_to_le16(conn->handle);
1979 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
1980 }
1981
Johan Hedberg79c6c702011-04-28 11:28:55 -07001982unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02001983 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001984}
1985
1986static inline void hci_encrypt_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
1987{
1988 struct hci_ev_encrypt_change *ev = (void *) skb->data;
1989 struct hci_conn *conn;
1990
1991 BT_DBG("%s status %d", hdev->name, ev->status);
1992
1993 hci_dev_lock(hdev);
1994
1995 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
1996 if (conn) {
1997 if (!ev->status) {
Marcel Holtmannae293192008-07-14 20:13:45 +02001998 if (ev->encrypt) {
1999 /* Encryption implies authentication */
2000 conn->link_mode |= HCI_LM_AUTH;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002001 conn->link_mode |= HCI_LM_ENCRYPT;
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002002 conn->sec_level = conn->pending_sec_level;
Marcel Holtmannae293192008-07-14 20:13:45 +02002003 } else
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002004 conn->link_mode &= ~HCI_LM_ENCRYPT;
2005 }
2006
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002007 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002008
Marcel Holtmannf8558552008-07-14 20:13:49 +02002009 if (conn->state == BT_CONFIG) {
2010 if (!ev->status)
2011 conn->state = BT_CONNECTED;
2012
2013 hci_proto_connect_cfm(conn, ev->status);
2014 hci_conn_put(conn);
2015 } else
2016 hci_encrypt_cfm(conn, ev->status, ev->encrypt);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002017 }
2018
2019 hci_dev_unlock(hdev);
2020}
2021
2022static inline void hci_change_link_key_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
2023{
2024 struct hci_ev_change_link_key_complete *ev = (void *) skb->data;
2025 struct hci_conn *conn;
2026
2027 BT_DBG("%s status %d", hdev->name, ev->status);
2028
2029 hci_dev_lock(hdev);
2030
2031 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2032 if (conn) {
2033 if (!ev->status)
2034 conn->link_mode |= HCI_LM_SECURE;
2035
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002036 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002037
2038 hci_key_change_cfm(conn, ev->status);
2039 }
2040
2041 hci_dev_unlock(hdev);
2042}
2043
2044static inline void hci_remote_features_evt(struct hci_dev *hdev, struct sk_buff *skb)
2045{
2046 struct hci_ev_remote_features *ev = (void *) skb->data;
2047 struct hci_conn *conn;
2048
2049 BT_DBG("%s status %d", hdev->name, ev->status);
2050
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002051 hci_dev_lock(hdev);
2052
2053 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02002054 if (!conn)
2055 goto unlock;
Marcel Holtmann769be972008-07-14 20:13:49 +02002056
Johan Hedbergccd556f2010-11-10 17:11:51 +02002057 if (!ev->status)
2058 memcpy(conn->features, ev->features, 8);
2059
2060 if (conn->state != BT_CONFIG)
2061 goto unlock;
2062
2063 if (!ev->status && lmp_ssp_capable(hdev) && lmp_ssp_capable(conn)) {
2064 struct hci_cp_read_remote_ext_features cp;
2065 cp.handle = ev->handle;
2066 cp.page = 0x01;
2067 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES,
Marcel Holtmann769be972008-07-14 20:13:49 +02002068 sizeof(cp), &cp);
Johan Hedberg392599b2010-11-18 22:22:28 +02002069 goto unlock;
2070 }
2071
Johan Hedberg127178d2010-11-18 22:22:29 +02002072 if (!ev->status) {
2073 struct hci_cp_remote_name_req cp;
2074 memset(&cp, 0, sizeof(cp));
2075 bacpy(&cp.bdaddr, &conn->dst);
2076 cp.pscan_rep_mode = 0x02;
2077 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002078 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
2079 mgmt_device_connected(hdev, &conn->dst, conn->type,
2080 conn->dst_type, NULL, 0,
2081 conn->dev_class);
Johan Hedberg392599b2010-11-18 22:22:28 +02002082
Johan Hedberg127178d2010-11-18 22:22:29 +02002083 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02002084 conn->state = BT_CONNECTED;
2085 hci_proto_connect_cfm(conn, ev->status);
2086 hci_conn_put(conn);
Marcel Holtmann769be972008-07-14 20:13:49 +02002087 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002088
Johan Hedbergccd556f2010-11-10 17:11:51 +02002089unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002090 hci_dev_unlock(hdev);
2091}
2092
2093static inline void hci_remote_version_evt(struct hci_dev *hdev, struct sk_buff *skb)
2094{
2095 BT_DBG("%s", hdev->name);
2096}
2097
2098static inline void hci_qos_setup_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
2099{
2100 BT_DBG("%s", hdev->name);
2101}
2102
2103static inline void hci_cmd_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
2104{
2105 struct hci_ev_cmd_complete *ev = (void *) skb->data;
2106 __u16 opcode;
2107
2108 skb_pull(skb, sizeof(*ev));
2109
2110 opcode = __le16_to_cpu(ev->opcode);
2111
2112 switch (opcode) {
2113 case HCI_OP_INQUIRY_CANCEL:
2114 hci_cc_inquiry_cancel(hdev, skb);
2115 break;
2116
2117 case HCI_OP_EXIT_PERIODIC_INQ:
2118 hci_cc_exit_periodic_inq(hdev, skb);
2119 break;
2120
2121 case HCI_OP_REMOTE_NAME_REQ_CANCEL:
2122 hci_cc_remote_name_req_cancel(hdev, skb);
2123 break;
2124
2125 case HCI_OP_ROLE_DISCOVERY:
2126 hci_cc_role_discovery(hdev, skb);
2127 break;
2128
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002129 case HCI_OP_READ_LINK_POLICY:
2130 hci_cc_read_link_policy(hdev, skb);
2131 break;
2132
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002133 case HCI_OP_WRITE_LINK_POLICY:
2134 hci_cc_write_link_policy(hdev, skb);
2135 break;
2136
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002137 case HCI_OP_READ_DEF_LINK_POLICY:
2138 hci_cc_read_def_link_policy(hdev, skb);
2139 break;
2140
2141 case HCI_OP_WRITE_DEF_LINK_POLICY:
2142 hci_cc_write_def_link_policy(hdev, skb);
2143 break;
2144
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002145 case HCI_OP_RESET:
2146 hci_cc_reset(hdev, skb);
2147 break;
2148
2149 case HCI_OP_WRITE_LOCAL_NAME:
2150 hci_cc_write_local_name(hdev, skb);
2151 break;
2152
2153 case HCI_OP_READ_LOCAL_NAME:
2154 hci_cc_read_local_name(hdev, skb);
2155 break;
2156
2157 case HCI_OP_WRITE_AUTH_ENABLE:
2158 hci_cc_write_auth_enable(hdev, skb);
2159 break;
2160
2161 case HCI_OP_WRITE_ENCRYPT_MODE:
2162 hci_cc_write_encrypt_mode(hdev, skb);
2163 break;
2164
2165 case HCI_OP_WRITE_SCAN_ENABLE:
2166 hci_cc_write_scan_enable(hdev, skb);
2167 break;
2168
2169 case HCI_OP_READ_CLASS_OF_DEV:
2170 hci_cc_read_class_of_dev(hdev, skb);
2171 break;
2172
2173 case HCI_OP_WRITE_CLASS_OF_DEV:
2174 hci_cc_write_class_of_dev(hdev, skb);
2175 break;
2176
2177 case HCI_OP_READ_VOICE_SETTING:
2178 hci_cc_read_voice_setting(hdev, skb);
2179 break;
2180
2181 case HCI_OP_WRITE_VOICE_SETTING:
2182 hci_cc_write_voice_setting(hdev, skb);
2183 break;
2184
2185 case HCI_OP_HOST_BUFFER_SIZE:
2186 hci_cc_host_buffer_size(hdev, skb);
2187 break;
2188
Marcel Holtmann333140b2008-07-14 20:13:48 +02002189 case HCI_OP_READ_SSP_MODE:
2190 hci_cc_read_ssp_mode(hdev, skb);
2191 break;
2192
2193 case HCI_OP_WRITE_SSP_MODE:
2194 hci_cc_write_ssp_mode(hdev, skb);
2195 break;
2196
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002197 case HCI_OP_READ_LOCAL_VERSION:
2198 hci_cc_read_local_version(hdev, skb);
2199 break;
2200
2201 case HCI_OP_READ_LOCAL_COMMANDS:
2202 hci_cc_read_local_commands(hdev, skb);
2203 break;
2204
2205 case HCI_OP_READ_LOCAL_FEATURES:
2206 hci_cc_read_local_features(hdev, skb);
2207 break;
2208
Andre Guedes971e3a42011-06-30 19:20:52 -03002209 case HCI_OP_READ_LOCAL_EXT_FEATURES:
2210 hci_cc_read_local_ext_features(hdev, skb);
2211 break;
2212
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002213 case HCI_OP_READ_BUFFER_SIZE:
2214 hci_cc_read_buffer_size(hdev, skb);
2215 break;
2216
2217 case HCI_OP_READ_BD_ADDR:
2218 hci_cc_read_bd_addr(hdev, skb);
2219 break;
2220
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +02002221 case HCI_OP_READ_DATA_BLOCK_SIZE:
2222 hci_cc_read_data_block_size(hdev, skb);
2223 break;
2224
Johan Hedberg23bb5762010-12-21 23:01:27 +02002225 case HCI_OP_WRITE_CA_TIMEOUT:
2226 hci_cc_write_ca_timeout(hdev, skb);
2227 break;
2228
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +02002229 case HCI_OP_READ_FLOW_CONTROL_MODE:
2230 hci_cc_read_flow_control_mode(hdev, skb);
2231 break;
2232
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +03002233 case HCI_OP_READ_LOCAL_AMP_INFO:
2234 hci_cc_read_local_amp_info(hdev, skb);
2235 break;
2236
Johan Hedbergb0916ea2011-01-10 13:44:55 +02002237 case HCI_OP_DELETE_STORED_LINK_KEY:
2238 hci_cc_delete_stored_link_key(hdev, skb);
2239 break;
2240
Johan Hedbergd5859e22011-01-25 01:19:58 +02002241 case HCI_OP_SET_EVENT_MASK:
2242 hci_cc_set_event_mask(hdev, skb);
2243 break;
2244
2245 case HCI_OP_WRITE_INQUIRY_MODE:
2246 hci_cc_write_inquiry_mode(hdev, skb);
2247 break;
2248
2249 case HCI_OP_READ_INQ_RSP_TX_POWER:
2250 hci_cc_read_inq_rsp_tx_power(hdev, skb);
2251 break;
2252
2253 case HCI_OP_SET_EVENT_FLT:
2254 hci_cc_set_event_flt(hdev, skb);
2255 break;
2256
Johan Hedberg980e1a52011-01-22 06:10:07 +02002257 case HCI_OP_PIN_CODE_REPLY:
2258 hci_cc_pin_code_reply(hdev, skb);
2259 break;
2260
2261 case HCI_OP_PIN_CODE_NEG_REPLY:
2262 hci_cc_pin_code_neg_reply(hdev, skb);
2263 break;
2264
Szymon Jancc35938b2011-03-22 13:12:21 +01002265 case HCI_OP_READ_LOCAL_OOB_DATA:
2266 hci_cc_read_local_oob_data_reply(hdev, skb);
2267 break;
2268
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002269 case HCI_OP_LE_READ_BUFFER_SIZE:
2270 hci_cc_le_read_buffer_size(hdev, skb);
2271 break;
2272
Johan Hedberga5c29682011-02-19 12:05:57 -03002273 case HCI_OP_USER_CONFIRM_REPLY:
2274 hci_cc_user_confirm_reply(hdev, skb);
2275 break;
2276
2277 case HCI_OP_USER_CONFIRM_NEG_REPLY:
2278 hci_cc_user_confirm_neg_reply(hdev, skb);
2279 break;
2280
Brian Gix1143d452011-11-23 08:28:34 -08002281 case HCI_OP_USER_PASSKEY_REPLY:
2282 hci_cc_user_passkey_reply(hdev, skb);
2283 break;
2284
2285 case HCI_OP_USER_PASSKEY_NEG_REPLY:
2286 hci_cc_user_passkey_neg_reply(hdev, skb);
Andre Guedes07f7fa52011-12-02 21:13:31 +09002287
2288 case HCI_OP_LE_SET_SCAN_PARAM:
2289 hci_cc_le_set_scan_param(hdev, skb);
Brian Gix1143d452011-11-23 08:28:34 -08002290 break;
2291
Andre Guedeseb9d91f2011-05-26 16:23:52 -03002292 case HCI_OP_LE_SET_SCAN_ENABLE:
2293 hci_cc_le_set_scan_enable(hdev, skb);
2294 break;
2295
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03002296 case HCI_OP_LE_LTK_REPLY:
2297 hci_cc_le_ltk_reply(hdev, skb);
2298 break;
2299
2300 case HCI_OP_LE_LTK_NEG_REPLY:
2301 hci_cc_le_ltk_neg_reply(hdev, skb);
2302 break;
2303
Andre Guedesf9b49302011-06-30 19:20:53 -03002304 case HCI_OP_WRITE_LE_HOST_SUPPORTED:
2305 hci_cc_write_le_host_supported(hdev, skb);
2306 break;
2307
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002308 default:
2309 BT_DBG("%s opcode 0x%x", hdev->name, opcode);
2310 break;
2311 }
2312
Ville Tervo6bd32322011-02-16 16:32:41 +02002313 if (ev->opcode != HCI_OP_NOP)
2314 del_timer(&hdev->cmd_timer);
2315
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002316 if (ev->ncmd) {
2317 atomic_set(&hdev->cmd_cnt, 1);
2318 if (!skb_queue_empty(&hdev->cmd_q))
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002319 queue_work(hdev->workqueue, &hdev->cmd_work);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002320 }
2321}
2322
2323static inline void hci_cmd_status_evt(struct hci_dev *hdev, struct sk_buff *skb)
2324{
2325 struct hci_ev_cmd_status *ev = (void *) skb->data;
2326 __u16 opcode;
2327
2328 skb_pull(skb, sizeof(*ev));
2329
2330 opcode = __le16_to_cpu(ev->opcode);
2331
2332 switch (opcode) {
2333 case HCI_OP_INQUIRY:
2334 hci_cs_inquiry(hdev, ev->status);
2335 break;
2336
2337 case HCI_OP_CREATE_CONN:
2338 hci_cs_create_conn(hdev, ev->status);
2339 break;
2340
2341 case HCI_OP_ADD_SCO:
2342 hci_cs_add_sco(hdev, ev->status);
2343 break;
2344
Marcel Holtmannf8558552008-07-14 20:13:49 +02002345 case HCI_OP_AUTH_REQUESTED:
2346 hci_cs_auth_requested(hdev, ev->status);
2347 break;
2348
2349 case HCI_OP_SET_CONN_ENCRYPT:
2350 hci_cs_set_conn_encrypt(hdev, ev->status);
2351 break;
2352
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002353 case HCI_OP_REMOTE_NAME_REQ:
2354 hci_cs_remote_name_req(hdev, ev->status);
2355 break;
2356
Marcel Holtmann769be972008-07-14 20:13:49 +02002357 case HCI_OP_READ_REMOTE_FEATURES:
2358 hci_cs_read_remote_features(hdev, ev->status);
2359 break;
2360
2361 case HCI_OP_READ_REMOTE_EXT_FEATURES:
2362 hci_cs_read_remote_ext_features(hdev, ev->status);
2363 break;
2364
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002365 case HCI_OP_SETUP_SYNC_CONN:
2366 hci_cs_setup_sync_conn(hdev, ev->status);
2367 break;
2368
2369 case HCI_OP_SNIFF_MODE:
2370 hci_cs_sniff_mode(hdev, ev->status);
2371 break;
2372
2373 case HCI_OP_EXIT_SNIFF_MODE:
2374 hci_cs_exit_sniff_mode(hdev, ev->status);
2375 break;
2376
Johan Hedberg8962ee72011-01-20 12:40:27 +02002377 case HCI_OP_DISCONNECT:
Johan Hedberg88c3df12012-02-09 14:27:38 +02002378 hci_cs_disconnect(hdev, ev->status);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002379 break;
2380
Ville Tervofcd89c02011-02-10 22:38:47 -03002381 case HCI_OP_LE_CREATE_CONN:
2382 hci_cs_le_create_conn(hdev, ev->status);
2383 break;
2384
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03002385 case HCI_OP_LE_START_ENC:
2386 hci_cs_le_start_enc(hdev, ev->status);
2387 break;
2388
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002389 default:
2390 BT_DBG("%s opcode 0x%x", hdev->name, opcode);
2391 break;
2392 }
2393
Ville Tervo6bd32322011-02-16 16:32:41 +02002394 if (ev->opcode != HCI_OP_NOP)
2395 del_timer(&hdev->cmd_timer);
2396
Gustavo F. Padovan10572132011-03-16 15:36:29 -03002397 if (ev->ncmd && !test_bit(HCI_RESET, &hdev->flags)) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002398 atomic_set(&hdev->cmd_cnt, 1);
2399 if (!skb_queue_empty(&hdev->cmd_q))
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002400 queue_work(hdev->workqueue, &hdev->cmd_work);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002401 }
2402}
2403
2404static inline void hci_role_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
2405{
2406 struct hci_ev_role_change *ev = (void *) skb->data;
2407 struct hci_conn *conn;
2408
2409 BT_DBG("%s status %d", hdev->name, ev->status);
2410
2411 hci_dev_lock(hdev);
2412
2413 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2414 if (conn) {
2415 if (!ev->status) {
2416 if (ev->role)
2417 conn->link_mode &= ~HCI_LM_MASTER;
2418 else
2419 conn->link_mode |= HCI_LM_MASTER;
2420 }
2421
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002422 clear_bit(HCI_CONN_RSWITCH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002423
2424 hci_role_switch_cfm(conn, ev->status, ev->role);
2425 }
2426
2427 hci_dev_unlock(hdev);
2428}
2429
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430static inline void hci_num_comp_pkts_evt(struct hci_dev *hdev, struct sk_buff *skb)
2431{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002432 struct hci_ev_num_comp_pkts *ev = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 int i;
2434
Andrei Emeltchenko32ac5b92011-12-19 16:31:29 +02002435 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_PACKET_BASED) {
2436 BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode);
2437 return;
2438 }
2439
Andrei Emeltchenkoc5993de2011-12-30 12:07:47 +02002440 if (skb->len < sizeof(*ev) || skb->len < sizeof(*ev) +
2441 ev->num_hndl * sizeof(struct hci_comp_pkts_info)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 BT_DBG("%s bad parameters", hdev->name);
2443 return;
2444 }
2445
Andrei Emeltchenkoc5993de2011-12-30 12:07:47 +02002446 BT_DBG("%s num_hndl %d", hdev->name, ev->num_hndl);
2447
Andrei Emeltchenko613a1c02011-12-19 16:31:30 +02002448 for (i = 0; i < ev->num_hndl; i++) {
2449 struct hci_comp_pkts_info *info = &ev->handles[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 struct hci_conn *conn;
2451 __u16 handle, count;
2452
Andrei Emeltchenko613a1c02011-12-19 16:31:30 +02002453 handle = __le16_to_cpu(info->handle);
2454 count = __le16_to_cpu(info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
2456 conn = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002457 if (!conn)
2458 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002460 conn->sent -= count;
2461
2462 switch (conn->type) {
2463 case ACL_LINK:
2464 hdev->acl_cnt += count;
2465 if (hdev->acl_cnt > hdev->acl_pkts)
2466 hdev->acl_cnt = hdev->acl_pkts;
2467 break;
2468
2469 case LE_LINK:
2470 if (hdev->le_pkts) {
2471 hdev->le_cnt += count;
2472 if (hdev->le_cnt > hdev->le_pkts)
2473 hdev->le_cnt = hdev->le_pkts;
2474 } else {
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002475 hdev->acl_cnt += count;
2476 if (hdev->acl_cnt > hdev->acl_pkts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 hdev->acl_cnt = hdev->acl_pkts;
2478 }
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002479 break;
2480
2481 case SCO_LINK:
2482 hdev->sco_cnt += count;
2483 if (hdev->sco_cnt > hdev->sco_pkts)
2484 hdev->sco_cnt = hdev->sco_pkts;
2485 break;
2486
2487 default:
2488 BT_ERR("Unknown type %d conn %p", conn->type, conn);
2489 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 }
2491 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002492
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002493 queue_work(hdev->workqueue, &hdev->tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494}
2495
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002496static inline void hci_num_comp_blocks_evt(struct hci_dev *hdev,
2497 struct sk_buff *skb)
2498{
2499 struct hci_ev_num_comp_blocks *ev = (void *) skb->data;
2500 int i;
2501
2502 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_BLOCK_BASED) {
2503 BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode);
2504 return;
2505 }
2506
2507 if (skb->len < sizeof(*ev) || skb->len < sizeof(*ev) +
2508 ev->num_hndl * sizeof(struct hci_comp_blocks_info)) {
2509 BT_DBG("%s bad parameters", hdev->name);
2510 return;
2511 }
2512
2513 BT_DBG("%s num_blocks %d num_hndl %d", hdev->name, ev->num_blocks,
2514 ev->num_hndl);
2515
2516 for (i = 0; i < ev->num_hndl; i++) {
2517 struct hci_comp_blocks_info *info = &ev->handles[i];
2518 struct hci_conn *conn;
2519 __u16 handle, block_count;
2520
2521 handle = __le16_to_cpu(info->handle);
2522 block_count = __le16_to_cpu(info->blocks);
2523
2524 conn = hci_conn_hash_lookup_handle(hdev, handle);
2525 if (!conn)
2526 continue;
2527
2528 conn->sent -= block_count;
2529
2530 switch (conn->type) {
2531 case ACL_LINK:
2532 hdev->block_cnt += block_count;
2533 if (hdev->block_cnt > hdev->num_blocks)
2534 hdev->block_cnt = hdev->num_blocks;
2535 break;
2536
2537 default:
2538 BT_ERR("Unknown type %d conn %p", conn->type, conn);
2539 break;
2540 }
2541 }
2542
2543 queue_work(hdev->workqueue, &hdev->tx_work);
2544}
2545
Marcel Holtmann04837f62006-07-03 10:02:33 +02002546static inline void hci_mode_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002548 struct hci_ev_mode_change *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002549 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550
2551 BT_DBG("%s status %d", hdev->name, ev->status);
2552
2553 hci_dev_lock(hdev);
2554
Marcel Holtmann04837f62006-07-03 10:02:33 +02002555 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2556 if (conn) {
2557 conn->mode = ev->mode;
2558 conn->interval = __le16_to_cpu(ev->interval);
2559
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002560 if (!test_and_clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags)) {
Marcel Holtmann04837f62006-07-03 10:02:33 +02002561 if (conn->mode == HCI_CM_ACTIVE)
Johan Hedberg58a681e2012-01-16 06:47:28 +02002562 set_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002563 else
Johan Hedberg58a681e2012-01-16 06:47:28 +02002564 clear_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002565 }
Marcel Holtmanne73439d2010-07-26 10:06:00 -04002566
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002567 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04002568 hci_sco_setup(conn, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002569 }
2570
2571 hci_dev_unlock(hdev);
2572}
2573
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574static inline void hci_pin_code_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
2575{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002576 struct hci_ev_pin_code_req *ev = (void *) skb->data;
2577 struct hci_conn *conn;
2578
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002579 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002580
2581 hci_dev_lock(hdev);
2582
2583 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Waldemar Rymarkiewiczb6f98042011-09-23 10:01:30 +02002584 if (!conn)
2585 goto unlock;
2586
2587 if (conn->state == BT_CONNECTED) {
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002588 hci_conn_hold(conn);
2589 conn->disc_timeout = HCI_PAIRING_TIMEOUT;
2590 hci_conn_put(conn);
2591 }
2592
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002593 if (!test_bit(HCI_PAIRABLE, &hdev->dev_flags))
Johan Hedberg03b555e2011-01-04 15:40:05 +02002594 hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
2595 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002596 else if (test_bit(HCI_MGMT, &hdev->dev_flags)) {
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02002597 u8 secure;
2598
2599 if (conn->pending_sec_level == BT_SECURITY_HIGH)
2600 secure = 1;
2601 else
2602 secure = 0;
2603
Johan Hedberg744cf192011-11-08 20:40:14 +02002604 mgmt_pin_code_request(hdev, &ev->bdaddr, secure);
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02002605 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02002606
Waldemar Rymarkiewiczb6f98042011-09-23 10:01:30 +02002607unlock:
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002608 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609}
2610
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611static inline void hci_link_key_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
2612{
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002613 struct hci_ev_link_key_req *ev = (void *) skb->data;
2614 struct hci_cp_link_key_reply cp;
2615 struct hci_conn *conn;
2616 struct link_key *key;
2617
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002618 BT_DBG("%s", hdev->name);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002619
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002620 if (!test_bit(HCI_LINK_KEYS, &hdev->dev_flags))
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002621 return;
2622
2623 hci_dev_lock(hdev);
2624
2625 key = hci_find_link_key(hdev, &ev->bdaddr);
2626 if (!key) {
2627 BT_DBG("%s link key not found for %s", hdev->name,
2628 batostr(&ev->bdaddr));
2629 goto not_found;
2630 }
2631
2632 BT_DBG("%s found key type %u for %s", hdev->name, key->type,
2633 batostr(&ev->bdaddr));
2634
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002635 if (!test_bit(HCI_DEBUG_KEYS, &hdev->dev_flags) &&
Waldemar Rymarkiewiczb6020ba2011-04-28 12:07:53 +02002636 key->type == HCI_LK_DEBUG_COMBINATION) {
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002637 BT_DBG("%s ignoring debug key", hdev->name);
2638 goto not_found;
2639 }
2640
2641 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002642 if (conn) {
2643 if (key->type == HCI_LK_UNAUTH_COMBINATION &&
2644 conn->auth_type != 0xff &&
2645 (conn->auth_type & 0x01)) {
2646 BT_DBG("%s ignoring unauthenticated key", hdev->name);
2647 goto not_found;
2648 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002649
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002650 if (key->type == HCI_LK_COMBINATION && key->pin_len < 16 &&
2651 conn->pending_sec_level == BT_SECURITY_HIGH) {
2652 BT_DBG("%s ignoring key unauthenticated for high \
2653 security", hdev->name);
2654 goto not_found;
2655 }
2656
2657 conn->key_type = key->type;
2658 conn->pin_length = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002659 }
2660
2661 bacpy(&cp.bdaddr, &ev->bdaddr);
2662 memcpy(cp.link_key, key->val, 16);
2663
2664 hci_send_cmd(hdev, HCI_OP_LINK_KEY_REPLY, sizeof(cp), &cp);
2665
2666 hci_dev_unlock(hdev);
2667
2668 return;
2669
2670not_found:
2671 hci_send_cmd(hdev, HCI_OP_LINK_KEY_NEG_REPLY, 6, &ev->bdaddr);
2672 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673}
2674
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675static inline void hci_link_key_notify_evt(struct hci_dev *hdev, struct sk_buff *skb)
2676{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002677 struct hci_ev_link_key_notify *ev = (void *) skb->data;
2678 struct hci_conn *conn;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002679 u8 pin_len = 0;
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002680
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002681 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002682
2683 hci_dev_lock(hdev);
2684
2685 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2686 if (conn) {
2687 hci_conn_hold(conn);
2688 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002689 pin_len = conn->pin_length;
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +02002690
2691 if (ev->key_type != HCI_LK_CHANGED_COMBINATION)
2692 conn->key_type = ev->key_type;
2693
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002694 hci_conn_put(conn);
2695 }
2696
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002697 if (test_bit(HCI_LINK_KEYS, &hdev->dev_flags))
Johan Hedbergd25e28a2011-04-28 11:28:59 -07002698 hci_add_link_key(hdev, conn, 1, &ev->bdaddr, ev->link_key,
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002699 ev->key_type, pin_len);
2700
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002701 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702}
2703
Marcel Holtmann04837f62006-07-03 10:02:33 +02002704static inline void hci_clock_offset_evt(struct hci_dev *hdev, struct sk_buff *skb)
2705{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002706 struct hci_ev_clock_offset *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002707 struct hci_conn *conn;
2708
2709 BT_DBG("%s status %d", hdev->name, ev->status);
2710
2711 hci_dev_lock(hdev);
2712
2713 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 if (conn && !ev->status) {
2715 struct inquiry_entry *ie;
2716
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002717 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2718 if (ie) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 ie->data.clock_offset = ev->clock_offset;
2720 ie->timestamp = jiffies;
2721 }
2722 }
2723
2724 hci_dev_unlock(hdev);
2725}
2726
Marcel Holtmanna8746412008-07-14 20:13:46 +02002727static inline void hci_pkt_type_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
2728{
2729 struct hci_ev_pkt_type_change *ev = (void *) skb->data;
2730 struct hci_conn *conn;
2731
2732 BT_DBG("%s status %d", hdev->name, ev->status);
2733
2734 hci_dev_lock(hdev);
2735
2736 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2737 if (conn && !ev->status)
2738 conn->pkt_type = __le16_to_cpu(ev->pkt_type);
2739
2740 hci_dev_unlock(hdev);
2741}
2742
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002743static inline void hci_pscan_rep_mode_evt(struct hci_dev *hdev, struct sk_buff *skb)
2744{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002745 struct hci_ev_pscan_rep_mode *ev = (void *) skb->data;
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002746 struct inquiry_entry *ie;
2747
2748 BT_DBG("%s", hdev->name);
2749
2750 hci_dev_lock(hdev);
2751
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002752 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
2753 if (ie) {
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002754 ie->data.pscan_rep_mode = ev->pscan_rep_mode;
2755 ie->timestamp = jiffies;
2756 }
2757
2758 hci_dev_unlock(hdev);
2759}
2760
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002761static inline void hci_inquiry_result_with_rssi_evt(struct hci_dev *hdev, struct sk_buff *skb)
2762{
2763 struct inquiry_data data;
2764 int num_rsp = *((__u8 *) skb->data);
Johan Hedberg31754052012-01-04 13:39:52 +02002765 bool name_known;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002766
2767 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
2768
2769 if (!num_rsp)
2770 return;
2771
2772 hci_dev_lock(hdev);
2773
2774 if ((skb->len - 1) / num_rsp != sizeof(struct inquiry_info_with_rssi)) {
Szymon Janc138d22e2011-02-17 16:44:23 +01002775 struct inquiry_info_with_rssi_and_pscan_mode *info;
2776 info = (void *) (skb->data + 1);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002777
Johan Hedberge17acd42011-03-30 23:57:16 +03002778 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002779 bacpy(&data.bdaddr, &info->bdaddr);
2780 data.pscan_rep_mode = info->pscan_rep_mode;
2781 data.pscan_period_mode = info->pscan_period_mode;
2782 data.pscan_mode = info->pscan_mode;
2783 memcpy(data.dev_class, info->dev_class, 3);
2784 data.clock_offset = info->clock_offset;
2785 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002786 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02002787
2788 name_known = hci_inquiry_cache_update(hdev, &data,
2789 false);
Johan Hedberg48264f02011-11-09 13:58:58 +02002790 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Johan Hedberge17acd42011-03-30 23:57:16 +03002791 info->dev_class, info->rssi,
Andre Guedes7d262f82012-01-10 18:20:49 -03002792 !name_known, NULL, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002793 }
2794 } else {
2795 struct inquiry_info_with_rssi *info = (void *) (skb->data + 1);
2796
Johan Hedberge17acd42011-03-30 23:57:16 +03002797 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002798 bacpy(&data.bdaddr, &info->bdaddr);
2799 data.pscan_rep_mode = info->pscan_rep_mode;
2800 data.pscan_period_mode = info->pscan_period_mode;
2801 data.pscan_mode = 0x00;
2802 memcpy(data.dev_class, info->dev_class, 3);
2803 data.clock_offset = info->clock_offset;
2804 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002805 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02002806 name_known = hci_inquiry_cache_update(hdev, &data,
2807 false);
Johan Hedberg48264f02011-11-09 13:58:58 +02002808 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Johan Hedberge17acd42011-03-30 23:57:16 +03002809 info->dev_class, info->rssi,
Andre Guedes7d262f82012-01-10 18:20:49 -03002810 !name_known, NULL, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002811 }
2812 }
2813
2814 hci_dev_unlock(hdev);
2815}
2816
2817static inline void hci_remote_ext_features_evt(struct hci_dev *hdev, struct sk_buff *skb)
2818{
Marcel Holtmann41a96212008-07-14 20:13:48 +02002819 struct hci_ev_remote_ext_features *ev = (void *) skb->data;
2820 struct hci_conn *conn;
2821
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002822 BT_DBG("%s", hdev->name);
Marcel Holtmann41a96212008-07-14 20:13:48 +02002823
Marcel Holtmann41a96212008-07-14 20:13:48 +02002824 hci_dev_lock(hdev);
2825
2826 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02002827 if (!conn)
2828 goto unlock;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002829
Johan Hedbergccd556f2010-11-10 17:11:51 +02002830 if (!ev->status && ev->page == 0x01) {
2831 struct inquiry_entry *ie;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002832
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002833 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2834 if (ie)
Johan Hedbergccd556f2010-11-10 17:11:51 +02002835 ie->data.ssp_mode = (ev->features[0] & 0x01);
Marcel Holtmann769be972008-07-14 20:13:49 +02002836
Johan Hedberg58a681e2012-01-16 06:47:28 +02002837 if (ev->features[0] & 0x01)
2838 set_bit(HCI_CONN_SSP_ENABLED, &conn->flags);
Marcel Holtmann41a96212008-07-14 20:13:48 +02002839 }
2840
Johan Hedbergccd556f2010-11-10 17:11:51 +02002841 if (conn->state != BT_CONFIG)
2842 goto unlock;
2843
Johan Hedberg127178d2010-11-18 22:22:29 +02002844 if (!ev->status) {
2845 struct hci_cp_remote_name_req cp;
2846 memset(&cp, 0, sizeof(cp));
2847 bacpy(&cp.bdaddr, &conn->dst);
2848 cp.pscan_rep_mode = 0x02;
2849 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002850 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
2851 mgmt_device_connected(hdev, &conn->dst, conn->type,
2852 conn->dst_type, NULL, 0,
2853 conn->dev_class);
Johan Hedberg392599b2010-11-18 22:22:28 +02002854
Johan Hedberg127178d2010-11-18 22:22:29 +02002855 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02002856 conn->state = BT_CONNECTED;
2857 hci_proto_connect_cfm(conn, ev->status);
2858 hci_conn_put(conn);
2859 }
2860
2861unlock:
Marcel Holtmann41a96212008-07-14 20:13:48 +02002862 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002863}
2864
2865static inline void hci_sync_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
2866{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002867 struct hci_ev_sync_conn_complete *ev = (void *) skb->data;
2868 struct hci_conn *conn;
2869
2870 BT_DBG("%s status %d", hdev->name, ev->status);
2871
2872 hci_dev_lock(hdev);
2873
2874 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann9dc0a3a2008-07-14 20:13:46 +02002875 if (!conn) {
2876 if (ev->link_type == ESCO_LINK)
2877 goto unlock;
2878
2879 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
2880 if (!conn)
2881 goto unlock;
2882
2883 conn->type = SCO_LINK;
2884 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002885
Marcel Holtmann732547f2009-04-19 19:14:14 +02002886 switch (ev->status) {
2887 case 0x00:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002888 conn->handle = __le16_to_cpu(ev->handle);
2889 conn->state = BT_CONNECTED;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02002890
Marcel Holtmann9eba32b2009-08-22 14:19:26 -07002891 hci_conn_hold_device(conn);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02002892 hci_conn_add_sysfs(conn);
Marcel Holtmann732547f2009-04-19 19:14:14 +02002893 break;
2894
Stephen Coe705e5712010-02-16 11:29:44 -05002895 case 0x11: /* Unsupported Feature or Parameter Value */
Marcel Holtmann732547f2009-04-19 19:14:14 +02002896 case 0x1c: /* SCO interval rejected */
Nick Pelly1038a002010-02-03 11:42:26 -08002897 case 0x1a: /* Unsupported Remote Feature */
Marcel Holtmann732547f2009-04-19 19:14:14 +02002898 case 0x1f: /* Unspecified error */
2899 if (conn->out && conn->attempt < 2) {
2900 conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) |
2901 (hdev->esco_type & EDR_ESCO_MASK);
2902 hci_setup_sync(conn, conn->link->handle);
2903 goto unlock;
2904 }
2905 /* fall through */
2906
2907 default:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002908 conn->state = BT_CLOSED;
Marcel Holtmann732547f2009-04-19 19:14:14 +02002909 break;
2910 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002911
2912 hci_proto_connect_cfm(conn, ev->status);
2913 if (ev->status)
2914 hci_conn_del(conn);
2915
2916unlock:
2917 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002918}
2919
2920static inline void hci_sync_conn_changed_evt(struct hci_dev *hdev, struct sk_buff *skb)
2921{
2922 BT_DBG("%s", hdev->name);
2923}
2924
Marcel Holtmann04837f62006-07-03 10:02:33 +02002925static inline void hci_sniff_subrate_evt(struct hci_dev *hdev, struct sk_buff *skb)
2926{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002927 struct hci_ev_sniff_subrate *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002928
2929 BT_DBG("%s status %d", hdev->name, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002930}
2931
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002932static inline void hci_extended_inquiry_result_evt(struct hci_dev *hdev, struct sk_buff *skb)
2933{
2934 struct inquiry_data data;
2935 struct extended_inquiry_info *info = (void *) (skb->data + 1);
2936 int num_rsp = *((__u8 *) skb->data);
2937
2938 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
2939
2940 if (!num_rsp)
2941 return;
2942
2943 hci_dev_lock(hdev);
2944
Johan Hedberge17acd42011-03-30 23:57:16 +03002945 for (; num_rsp; num_rsp--, info++) {
Johan Hedberg561aafb2012-01-04 13:31:59 +02002946 bool name_known;
2947
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002948 bacpy(&data.bdaddr, &info->bdaddr);
Szymon Janc138d22e2011-02-17 16:44:23 +01002949 data.pscan_rep_mode = info->pscan_rep_mode;
2950 data.pscan_period_mode = info->pscan_period_mode;
2951 data.pscan_mode = 0x00;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002952 memcpy(data.dev_class, info->dev_class, 3);
Szymon Janc138d22e2011-02-17 16:44:23 +01002953 data.clock_offset = info->clock_offset;
2954 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002955 data.ssp_mode = 0x01;
Johan Hedberg561aafb2012-01-04 13:31:59 +02002956
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002957 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg4ddb1932012-01-15 20:04:43 +02002958 name_known = eir_has_data_type(info->data,
2959 sizeof(info->data),
2960 EIR_NAME_COMPLETE);
Johan Hedberg561aafb2012-01-04 13:31:59 +02002961 else
2962 name_known = true;
2963
Johan Hedberg31754052012-01-04 13:39:52 +02002964 name_known = hci_inquiry_cache_update(hdev, &data, name_known);
Johan Hedberg48264f02011-11-09 13:58:58 +02002965 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Johan Hedberg561aafb2012-01-04 13:31:59 +02002966 info->dev_class, info->rssi,
Andre Guedes7d262f82012-01-10 18:20:49 -03002967 !name_known, info->data,
2968 sizeof(info->data));
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002969 }
2970
2971 hci_dev_unlock(hdev);
2972}
2973
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002974static inline u8 hci_get_auth_req(struct hci_conn *conn)
2975{
2976 /* If remote requests dedicated bonding follow that lead */
2977 if (conn->remote_auth == 0x02 || conn->remote_auth == 0x03) {
2978 /* If both remote and local IO capabilities allow MITM
2979 * protection then require it, otherwise don't */
2980 if (conn->remote_cap == 0x03 || conn->io_capability == 0x03)
2981 return 0x02;
2982 else
2983 return 0x03;
2984 }
2985
2986 /* If remote requests no-bonding follow that lead */
2987 if (conn->remote_auth == 0x00 || conn->remote_auth == 0x01)
Waldemar Rymarkiewicz58797bf2011-04-28 12:07:58 +02002988 return conn->remote_auth | (conn->auth_type & 0x01);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002989
2990 return conn->auth_type;
2991}
2992
Marcel Holtmann04936842008-07-14 20:13:48 +02002993static inline void hci_io_capa_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
2994{
2995 struct hci_ev_io_capa_request *ev = (void *) skb->data;
2996 struct hci_conn *conn;
2997
2998 BT_DBG("%s", hdev->name);
2999
3000 hci_dev_lock(hdev);
3001
3002 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003003 if (!conn)
3004 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02003005
Johan Hedberg03b555e2011-01-04 15:40:05 +02003006 hci_conn_hold(conn);
3007
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003008 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg03b555e2011-01-04 15:40:05 +02003009 goto unlock;
3010
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003011 if (test_bit(HCI_PAIRABLE, &hdev->dev_flags) ||
Johan Hedberg03b555e2011-01-04 15:40:05 +02003012 (conn->remote_auth & ~0x01) == HCI_AT_NO_BONDING) {
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003013 struct hci_cp_io_capability_reply cp;
3014
3015 bacpy(&cp.bdaddr, &ev->bdaddr);
Hemant Gupta7a7f1e72012-01-16 13:34:29 +05303016 /* Change the IO capability from KeyboardDisplay
3017 * to DisplayYesNo as it is not supported by BT spec. */
3018 cp.capability = (conn->io_capability == 0x04) ?
3019 0x01 : conn->io_capability;
Johan Hedberg7cbc9bd2011-04-28 11:29:04 -07003020 conn->auth_type = hci_get_auth_req(conn);
3021 cp.authentication = conn->auth_type;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003022
Johan Hedberg58a681e2012-01-16 06:47:28 +02003023 if ((conn->out || test_bit(HCI_CONN_REMOTE_OOB, &conn->flags)) &&
Szymon Jancce85ee12011-03-22 13:12:23 +01003024 hci_find_remote_oob_data(hdev, &conn->dst))
3025 cp.oob_data = 0x01;
3026 else
3027 cp.oob_data = 0x00;
3028
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003029 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_REPLY,
3030 sizeof(cp), &cp);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003031 } else {
3032 struct hci_cp_io_capability_neg_reply cp;
3033
3034 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +02003035 cp.reason = HCI_ERROR_PAIRING_NOT_ALLOWED;
Johan Hedberg03b555e2011-01-04 15:40:05 +02003036
3037 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_NEG_REPLY,
3038 sizeof(cp), &cp);
3039 }
3040
3041unlock:
3042 hci_dev_unlock(hdev);
3043}
3044
3045static inline void hci_io_capa_reply_evt(struct hci_dev *hdev, struct sk_buff *skb)
3046{
3047 struct hci_ev_io_capa_reply *ev = (void *) skb->data;
3048 struct hci_conn *conn;
3049
3050 BT_DBG("%s", hdev->name);
3051
3052 hci_dev_lock(hdev);
3053
3054 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3055 if (!conn)
3056 goto unlock;
3057
Johan Hedberg03b555e2011-01-04 15:40:05 +02003058 conn->remote_cap = ev->capability;
Johan Hedberg03b555e2011-01-04 15:40:05 +02003059 conn->remote_auth = ev->authentication;
Johan Hedberg58a681e2012-01-16 06:47:28 +02003060 if (ev->oob_data)
3061 set_bit(HCI_CONN_REMOTE_OOB, &conn->flags);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003062
3063unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02003064 hci_dev_unlock(hdev);
3065}
3066
Johan Hedberga5c29682011-02-19 12:05:57 -03003067static inline void hci_user_confirm_request_evt(struct hci_dev *hdev,
3068 struct sk_buff *skb)
3069{
3070 struct hci_ev_user_confirm_req *ev = (void *) skb->data;
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003071 int loc_mitm, rem_mitm, confirm_hint = 0;
Johan Hedberg7a828902011-04-28 11:28:53 -07003072 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03003073
3074 BT_DBG("%s", hdev->name);
3075
3076 hci_dev_lock(hdev);
3077
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003078 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg7a828902011-04-28 11:28:53 -07003079 goto unlock;
Johan Hedberga5c29682011-02-19 12:05:57 -03003080
Johan Hedberg7a828902011-04-28 11:28:53 -07003081 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3082 if (!conn)
3083 goto unlock;
3084
3085 loc_mitm = (conn->auth_type & 0x01);
3086 rem_mitm = (conn->remote_auth & 0x01);
3087
3088 /* If we require MITM but the remote device can't provide that
3089 * (it has NoInputNoOutput) then reject the confirmation
3090 * request. The only exception is when we're dedicated bonding
3091 * initiators (connect_cfm_cb set) since then we always have the MITM
3092 * bit set. */
3093 if (!conn->connect_cfm_cb && loc_mitm && conn->remote_cap == 0x03) {
3094 BT_DBG("Rejecting request: remote device can't provide MITM");
3095 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_NEG_REPLY,
3096 sizeof(ev->bdaddr), &ev->bdaddr);
3097 goto unlock;
3098 }
3099
3100 /* If no side requires MITM protection; auto-accept */
3101 if ((!loc_mitm || conn->remote_cap == 0x03) &&
3102 (!rem_mitm || conn->io_capability == 0x03)) {
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003103
3104 /* If we're not the initiators request authorization to
3105 * proceed from user space (mgmt_user_confirm with
3106 * confirm_hint set to 1). */
Johan Hedberg51a8efd2012-01-16 06:10:31 +02003107 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003108 BT_DBG("Confirming auto-accept as acceptor");
3109 confirm_hint = 1;
3110 goto confirm;
3111 }
3112
Johan Hedberg9f616562011-04-28 11:28:54 -07003113 BT_DBG("Auto-accept of user confirmation with %ums delay",
3114 hdev->auto_accept_delay);
3115
3116 if (hdev->auto_accept_delay > 0) {
3117 int delay = msecs_to_jiffies(hdev->auto_accept_delay);
3118 mod_timer(&conn->auto_accept_timer, jiffies + delay);
3119 goto unlock;
3120 }
3121
Johan Hedberg7a828902011-04-28 11:28:53 -07003122 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_REPLY,
3123 sizeof(ev->bdaddr), &ev->bdaddr);
3124 goto unlock;
3125 }
3126
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003127confirm:
Johan Hedberg272d90d2012-02-09 15:26:12 +02003128 mgmt_user_confirm_request(hdev, &ev->bdaddr, ACL_LINK, 0, ev->passkey,
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003129 confirm_hint);
Johan Hedberg7a828902011-04-28 11:28:53 -07003130
3131unlock:
Johan Hedberga5c29682011-02-19 12:05:57 -03003132 hci_dev_unlock(hdev);
3133}
3134
Brian Gix1143d452011-11-23 08:28:34 -08003135static inline void hci_user_passkey_request_evt(struct hci_dev *hdev,
3136 struct sk_buff *skb)
3137{
3138 struct hci_ev_user_passkey_req *ev = (void *) skb->data;
3139
3140 BT_DBG("%s", hdev->name);
3141
3142 hci_dev_lock(hdev);
3143
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003144 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg272d90d2012-02-09 15:26:12 +02003145 mgmt_user_passkey_request(hdev, &ev->bdaddr, ACL_LINK, 0);
Brian Gix1143d452011-11-23 08:28:34 -08003146
3147 hci_dev_unlock(hdev);
3148}
3149
Marcel Holtmann04936842008-07-14 20:13:48 +02003150static inline void hci_simple_pair_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
3151{
3152 struct hci_ev_simple_pair_complete *ev = (void *) skb->data;
3153 struct hci_conn *conn;
3154
3155 BT_DBG("%s", hdev->name);
3156
3157 hci_dev_lock(hdev);
3158
3159 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg2a611692011-02-19 12:06:00 -03003160 if (!conn)
3161 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02003162
Johan Hedberg2a611692011-02-19 12:06:00 -03003163 /* To avoid duplicate auth_failed events to user space we check
3164 * the HCI_CONN_AUTH_PEND flag which will be set if we
3165 * initiated the authentication. A traditional auth_complete
3166 * event gets always produced as initiator and is also mapped to
3167 * the mgmt_auth_failed event */
Johan Hedberg51a8efd2012-01-16 06:10:31 +02003168 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags) && ev->status != 0)
Johan Hedberg744cf192011-11-08 20:40:14 +02003169 mgmt_auth_failed(hdev, &conn->dst, ev->status);
Johan Hedberg2a611692011-02-19 12:06:00 -03003170
3171 hci_conn_put(conn);
3172
3173unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02003174 hci_dev_unlock(hdev);
3175}
3176
Marcel Holtmann41a96212008-07-14 20:13:48 +02003177static inline void hci_remote_host_features_evt(struct hci_dev *hdev, struct sk_buff *skb)
3178{
3179 struct hci_ev_remote_host_features *ev = (void *) skb->data;
3180 struct inquiry_entry *ie;
3181
3182 BT_DBG("%s", hdev->name);
3183
3184 hci_dev_lock(hdev);
3185
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02003186 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
3187 if (ie)
Marcel Holtmann41a96212008-07-14 20:13:48 +02003188 ie->data.ssp_mode = (ev->features[0] & 0x01);
3189
3190 hci_dev_unlock(hdev);
3191}
3192
Szymon Janc2763eda2011-03-22 13:12:22 +01003193static inline void hci_remote_oob_data_request_evt(struct hci_dev *hdev,
3194 struct sk_buff *skb)
3195{
3196 struct hci_ev_remote_oob_data_request *ev = (void *) skb->data;
3197 struct oob_data *data;
3198
3199 BT_DBG("%s", hdev->name);
3200
3201 hci_dev_lock(hdev);
3202
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003203 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Szymon Jance1ba1f12011-04-06 13:01:59 +02003204 goto unlock;
3205
Szymon Janc2763eda2011-03-22 13:12:22 +01003206 data = hci_find_remote_oob_data(hdev, &ev->bdaddr);
3207 if (data) {
3208 struct hci_cp_remote_oob_data_reply cp;
3209
3210 bacpy(&cp.bdaddr, &ev->bdaddr);
3211 memcpy(cp.hash, data->hash, sizeof(cp.hash));
3212 memcpy(cp.randomizer, data->randomizer, sizeof(cp.randomizer));
3213
3214 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_REPLY, sizeof(cp),
3215 &cp);
3216 } else {
3217 struct hci_cp_remote_oob_data_neg_reply cp;
3218
3219 bacpy(&cp.bdaddr, &ev->bdaddr);
3220 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_NEG_REPLY, sizeof(cp),
3221 &cp);
3222 }
3223
Szymon Jance1ba1f12011-04-06 13:01:59 +02003224unlock:
Szymon Janc2763eda2011-03-22 13:12:22 +01003225 hci_dev_unlock(hdev);
3226}
3227
Ville Tervofcd89c02011-02-10 22:38:47 -03003228static inline void hci_le_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
3229{
3230 struct hci_ev_le_conn_complete *ev = (void *) skb->data;
3231 struct hci_conn *conn;
3232
3233 BT_DBG("%s status %d", hdev->name, ev->status);
3234
3235 hci_dev_lock(hdev);
3236
3237 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &ev->bdaddr);
Ville Tervob62f3282011-02-10 22:38:50 -03003238 if (!conn) {
3239 conn = hci_conn_add(hdev, LE_LINK, &ev->bdaddr);
3240 if (!conn) {
3241 BT_ERR("No memory for new connection");
3242 hci_dev_unlock(hdev);
3243 return;
3244 }
Andre Guedes29b79882011-05-31 14:20:54 -03003245
3246 conn->dst_type = ev->bdaddr_type;
Ville Tervob62f3282011-02-10 22:38:50 -03003247 }
Ville Tervofcd89c02011-02-10 22:38:47 -03003248
3249 if (ev->status) {
Johan Hedberg48264f02011-11-09 13:58:58 +02003250 mgmt_connect_failed(hdev, &ev->bdaddr, conn->type,
3251 conn->dst_type, ev->status);
Ville Tervofcd89c02011-02-10 22:38:47 -03003252 hci_proto_connect_cfm(conn, ev->status);
3253 conn->state = BT_CLOSED;
3254 hci_conn_del(conn);
3255 goto unlock;
3256 }
3257
Johan Hedbergb644ba32012-01-17 21:48:47 +02003258 if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
3259 mgmt_device_connected(hdev, &ev->bdaddr, conn->type,
3260 conn->dst_type, NULL, 0, 0);
Vinicius Costa Gomes83bc71b2011-05-06 18:41:43 -03003261
Vinicius Costa Gomes7b5c0d52011-06-09 18:50:50 -03003262 conn->sec_level = BT_SECURITY_LOW;
Ville Tervofcd89c02011-02-10 22:38:47 -03003263 conn->handle = __le16_to_cpu(ev->handle);
3264 conn->state = BT_CONNECTED;
3265
3266 hci_conn_hold_device(conn);
3267 hci_conn_add_sysfs(conn);
3268
3269 hci_proto_connect_cfm(conn, ev->status);
3270
3271unlock:
3272 hci_dev_unlock(hdev);
3273}
3274
Andre Guedes9aa04c92011-05-26 16:23:51 -03003275static inline void hci_le_adv_report_evt(struct hci_dev *hdev,
3276 struct sk_buff *skb)
3277{
Andre Guedese95beb42011-09-26 20:48:35 -03003278 u8 num_reports = skb->data[0];
3279 void *ptr = &skb->data[1];
Andre Guedes3c9e9192012-01-10 18:20:50 -03003280 s8 rssi;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003281
3282 hci_dev_lock(hdev);
3283
Andre Guedese95beb42011-09-26 20:48:35 -03003284 while (num_reports--) {
3285 struct hci_ev_le_advertising_info *ev = ptr;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003286
Andre Guedes9aa04c92011-05-26 16:23:51 -03003287 hci_add_adv_entry(hdev, ev);
Andre Guedese95beb42011-09-26 20:48:35 -03003288
Andre Guedes3c9e9192012-01-10 18:20:50 -03003289 rssi = ev->data[ev->length];
3290 mgmt_device_found(hdev, &ev->bdaddr, LE_LINK, ev->bdaddr_type,
3291 NULL, rssi, 0, ev->data, ev->length);
3292
Andre Guedese95beb42011-09-26 20:48:35 -03003293 ptr += sizeof(*ev) + ev->length + 1;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003294 }
3295
3296 hci_dev_unlock(hdev);
3297}
3298
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003299static inline void hci_le_ltk_request_evt(struct hci_dev *hdev,
3300 struct sk_buff *skb)
3301{
3302 struct hci_ev_le_ltk_req *ev = (void *) skb->data;
3303 struct hci_cp_le_ltk_reply cp;
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003304 struct hci_cp_le_ltk_neg_reply neg;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003305 struct hci_conn *conn;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003306 struct smp_ltk *ltk;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003307
3308 BT_DBG("%s handle %d", hdev->name, cpu_to_le16(ev->handle));
3309
3310 hci_dev_lock(hdev);
3311
3312 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003313 if (conn == NULL)
3314 goto not_found;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003315
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003316 ltk = hci_find_ltk(hdev, ev->ediv, ev->random);
3317 if (ltk == NULL)
3318 goto not_found;
3319
3320 memcpy(cp.ltk, ltk->val, sizeof(ltk->val));
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003321 cp.handle = cpu_to_le16(conn->handle);
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003322
3323 if (ltk->authenticated)
3324 conn->sec_level = BT_SECURITY_HIGH;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003325
3326 hci_send_cmd(hdev, HCI_OP_LE_LTK_REPLY, sizeof(cp), &cp);
3327
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003328 if (ltk->type & HCI_SMP_STK) {
3329 list_del(&ltk->list);
3330 kfree(ltk);
3331 }
3332
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003333 hci_dev_unlock(hdev);
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003334
3335 return;
3336
3337not_found:
3338 neg.handle = ev->handle;
3339 hci_send_cmd(hdev, HCI_OP_LE_LTK_NEG_REPLY, sizeof(neg), &neg);
3340 hci_dev_unlock(hdev);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003341}
3342
Ville Tervofcd89c02011-02-10 22:38:47 -03003343static inline void hci_le_meta_evt(struct hci_dev *hdev, struct sk_buff *skb)
3344{
3345 struct hci_ev_le_meta *le_ev = (void *) skb->data;
3346
3347 skb_pull(skb, sizeof(*le_ev));
3348
3349 switch (le_ev->subevent) {
3350 case HCI_EV_LE_CONN_COMPLETE:
3351 hci_le_conn_complete_evt(hdev, skb);
3352 break;
3353
Andre Guedes9aa04c92011-05-26 16:23:51 -03003354 case HCI_EV_LE_ADVERTISING_REPORT:
3355 hci_le_adv_report_evt(hdev, skb);
3356 break;
3357
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003358 case HCI_EV_LE_LTK_REQ:
3359 hci_le_ltk_request_evt(hdev, skb);
3360 break;
3361
Ville Tervofcd89c02011-02-10 22:38:47 -03003362 default:
3363 break;
3364 }
3365}
3366
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367void hci_event_packet(struct hci_dev *hdev, struct sk_buff *skb)
3368{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003369 struct hci_event_hdr *hdr = (void *) skb->data;
3370 __u8 event = hdr->evt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371
3372 skb_pull(skb, HCI_EVENT_HDR_SIZE);
3373
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003374 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 case HCI_EV_INQUIRY_COMPLETE:
3376 hci_inquiry_complete_evt(hdev, skb);
3377 break;
3378
3379 case HCI_EV_INQUIRY_RESULT:
3380 hci_inquiry_result_evt(hdev, skb);
3381 break;
3382
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003383 case HCI_EV_CONN_COMPLETE:
3384 hci_conn_complete_evt(hdev, skb);
Marcel Holtmann21d9e302005-09-13 01:32:25 +02003385 break;
3386
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 case HCI_EV_CONN_REQUEST:
3388 hci_conn_request_evt(hdev, skb);
3389 break;
3390
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 case HCI_EV_DISCONN_COMPLETE:
3392 hci_disconn_complete_evt(hdev, skb);
3393 break;
3394
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 case HCI_EV_AUTH_COMPLETE:
3396 hci_auth_complete_evt(hdev, skb);
3397 break;
3398
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003399 case HCI_EV_REMOTE_NAME:
3400 hci_remote_name_evt(hdev, skb);
3401 break;
3402
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 case HCI_EV_ENCRYPT_CHANGE:
3404 hci_encrypt_change_evt(hdev, skb);
3405 break;
3406
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003407 case HCI_EV_CHANGE_LINK_KEY_COMPLETE:
3408 hci_change_link_key_complete_evt(hdev, skb);
3409 break;
3410
3411 case HCI_EV_REMOTE_FEATURES:
3412 hci_remote_features_evt(hdev, skb);
3413 break;
3414
3415 case HCI_EV_REMOTE_VERSION:
3416 hci_remote_version_evt(hdev, skb);
3417 break;
3418
3419 case HCI_EV_QOS_SETUP_COMPLETE:
3420 hci_qos_setup_complete_evt(hdev, skb);
3421 break;
3422
3423 case HCI_EV_CMD_COMPLETE:
3424 hci_cmd_complete_evt(hdev, skb);
3425 break;
3426
3427 case HCI_EV_CMD_STATUS:
3428 hci_cmd_status_evt(hdev, skb);
3429 break;
3430
3431 case HCI_EV_ROLE_CHANGE:
3432 hci_role_change_evt(hdev, skb);
3433 break;
3434
3435 case HCI_EV_NUM_COMP_PKTS:
3436 hci_num_comp_pkts_evt(hdev, skb);
3437 break;
3438
3439 case HCI_EV_MODE_CHANGE:
3440 hci_mode_change_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 break;
3442
3443 case HCI_EV_PIN_CODE_REQ:
3444 hci_pin_code_request_evt(hdev, skb);
3445 break;
3446
3447 case HCI_EV_LINK_KEY_REQ:
3448 hci_link_key_request_evt(hdev, skb);
3449 break;
3450
3451 case HCI_EV_LINK_KEY_NOTIFY:
3452 hci_link_key_notify_evt(hdev, skb);
3453 break;
3454
3455 case HCI_EV_CLOCK_OFFSET:
3456 hci_clock_offset_evt(hdev, skb);
3457 break;
3458
Marcel Holtmanna8746412008-07-14 20:13:46 +02003459 case HCI_EV_PKT_TYPE_CHANGE:
3460 hci_pkt_type_change_evt(hdev, skb);
3461 break;
3462
Marcel Holtmann85a1e932005-08-09 20:28:02 -07003463 case HCI_EV_PSCAN_REP_MODE:
3464 hci_pscan_rep_mode_evt(hdev, skb);
3465 break;
3466
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003467 case HCI_EV_INQUIRY_RESULT_WITH_RSSI:
3468 hci_inquiry_result_with_rssi_evt(hdev, skb);
3469 break;
3470
3471 case HCI_EV_REMOTE_EXT_FEATURES:
3472 hci_remote_ext_features_evt(hdev, skb);
3473 break;
3474
3475 case HCI_EV_SYNC_CONN_COMPLETE:
3476 hci_sync_conn_complete_evt(hdev, skb);
3477 break;
3478
3479 case HCI_EV_SYNC_CONN_CHANGED:
3480 hci_sync_conn_changed_evt(hdev, skb);
3481 break;
3482
Marcel Holtmann04837f62006-07-03 10:02:33 +02003483 case HCI_EV_SNIFF_SUBRATE:
3484 hci_sniff_subrate_evt(hdev, skb);
3485 break;
3486
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003487 case HCI_EV_EXTENDED_INQUIRY_RESULT:
3488 hci_extended_inquiry_result_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 break;
3490
Marcel Holtmann04936842008-07-14 20:13:48 +02003491 case HCI_EV_IO_CAPA_REQUEST:
3492 hci_io_capa_request_evt(hdev, skb);
3493 break;
3494
Johan Hedberg03b555e2011-01-04 15:40:05 +02003495 case HCI_EV_IO_CAPA_REPLY:
3496 hci_io_capa_reply_evt(hdev, skb);
3497 break;
3498
Johan Hedberga5c29682011-02-19 12:05:57 -03003499 case HCI_EV_USER_CONFIRM_REQUEST:
3500 hci_user_confirm_request_evt(hdev, skb);
3501 break;
3502
Brian Gix1143d452011-11-23 08:28:34 -08003503 case HCI_EV_USER_PASSKEY_REQUEST:
3504 hci_user_passkey_request_evt(hdev, skb);
3505 break;
3506
Marcel Holtmann04936842008-07-14 20:13:48 +02003507 case HCI_EV_SIMPLE_PAIR_COMPLETE:
3508 hci_simple_pair_complete_evt(hdev, skb);
3509 break;
3510
Marcel Holtmann41a96212008-07-14 20:13:48 +02003511 case HCI_EV_REMOTE_HOST_FEATURES:
3512 hci_remote_host_features_evt(hdev, skb);
3513 break;
3514
Ville Tervofcd89c02011-02-10 22:38:47 -03003515 case HCI_EV_LE_META:
3516 hci_le_meta_evt(hdev, skb);
3517 break;
3518
Szymon Janc2763eda2011-03-22 13:12:22 +01003519 case HCI_EV_REMOTE_OOB_DATA_REQUEST:
3520 hci_remote_oob_data_request_evt(hdev, skb);
3521 break;
3522
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02003523 case HCI_EV_NUM_COMP_BLOCKS:
3524 hci_num_comp_blocks_evt(hdev, skb);
3525 break;
3526
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003527 default:
3528 BT_DBG("%s event 0x%x", hdev->name, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 break;
3530 }
3531
3532 kfree_skb(skb);
3533 hdev->stat.evt_rx++;
3534}
3535
3536/* Generate internal stack event */
3537void hci_si_event(struct hci_dev *hdev, int type, int dlen, void *data)
3538{
3539 struct hci_event_hdr *hdr;
3540 struct hci_ev_stack_internal *ev;
3541 struct sk_buff *skb;
3542
3543 skb = bt_skb_alloc(HCI_EVENT_HDR_SIZE + sizeof(*ev) + dlen, GFP_ATOMIC);
3544 if (!skb)
3545 return;
3546
3547 hdr = (void *) skb_put(skb, HCI_EVENT_HDR_SIZE);
3548 hdr->evt = HCI_EV_STACK_INTERNAL;
3549 hdr->plen = sizeof(*ev) + dlen;
3550
3551 ev = (void *) skb_put(skb, sizeof(*ev) + dlen);
3552 ev->type = type;
3553 memcpy(ev->data, data, dlen);
3554
Marcel Holtmann576c7d82005-08-06 12:36:54 +02003555 bt_cb(skb)->incoming = 1;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07003556 __net_timestamp(skb);
Marcel Holtmann576c7d82005-08-06 12:36:54 +02003557
Marcel Holtmann0d48d932005-08-09 20:30:28 -07003558 bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 skb->dev = (void *) hdev;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02003560 hci_send_to_sock(hdev, skb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 kfree_skb(skb);
3562}
Andre Guedese6100a22011-06-30 19:20:54 -03003563
Gustavo F. Padovan669bb392011-10-11 15:57:01 -03003564module_param(enable_le, bool, 0644);
Andre Guedese6100a22011-06-30 19:20:54 -03003565MODULE_PARM_DESC(enable_le, "Enable LE support");