blob: 797a30bec6fddecb1add0205ca38df2d04abb0c6 [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
3 Copyright (C) 2000-2001 Qualcomm Incorporated
4
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 connection 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>
42#include <asm/uaccess.h>
43#include <asm/unaligned.h>
44
45#include <net/bluetooth/bluetooth.h>
46#include <net/bluetooth/hci_core.h>
47
48#ifndef CONFIG_BT_HCI_CORE_DEBUG
49#undef BT_DBG
50#define BT_DBG(D...)
51#endif
52
Marcel Holtmann4c67bc72006-10-15 17:30:56 +020053void hci_acl_connect(struct hci_conn *conn)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
55 struct hci_dev *hdev = conn->hdev;
56 struct inquiry_entry *ie;
57 struct hci_cp_create_conn cp;
58
59 BT_DBG("%p", conn);
60
61 conn->state = BT_CONNECT;
62 conn->out = 1;
63 conn->link_mode = HCI_LM_MASTER;
64
Marcel Holtmann4c67bc72006-10-15 17:30:56 +020065 conn->attempt++;
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 memset(&cp, 0, sizeof(cp));
68 bacpy(&cp.bdaddr, &conn->dst);
69 cp.pscan_rep_mode = 0x02;
70
71 if ((ie = hci_inquiry_cache_lookup(hdev, &conn->dst)) &&
72 inquiry_entry_age(ie) <= INQUIRY_ENTRY_AGE_MAX) {
73 cp.pscan_rep_mode = ie->data.pscan_rep_mode;
74 cp.pscan_mode = ie->data.pscan_mode;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -070075 cp.clock_offset = ie->data.clock_offset | cpu_to_le16(0x8000);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 memcpy(conn->dev_class, ie->data.dev_class, 3);
77 }
78
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -070079 cp.pkt_type = cpu_to_le16(hdev->pkt_type & ACL_PTYPE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 if (lmp_rswitch_capable(hdev) && !(hdev->link_mode & HCI_LM_MASTER))
81 cp.role_switch = 0x01;
82 else
83 cp.role_switch = 0x00;
Marcel Holtmann4c67bc72006-10-15 17:30:56 +020084
Marcel Holtmanna9de9242007-10-20 13:33:56 +020085 hci_send_cmd(hdev, HCI_OP_CREATE_CONN, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
Marcel Holtmann6ac59342006-09-26 09:43:48 +020088static void hci_acl_connect_cancel(struct hci_conn *conn)
89{
90 struct hci_cp_create_conn_cancel cp;
91
92 BT_DBG("%p", conn);
93
94 if (conn->hdev->hci_ver < 2)
95 return;
96
97 bacpy(&cp.bdaddr, &conn->dst);
Marcel Holtmanna9de9242007-10-20 13:33:56 +020098 hci_send_cmd(conn->hdev, HCI_OP_CREATE_CONN_CANCEL, sizeof(cp), &cp);
Marcel Holtmann6ac59342006-09-26 09:43:48 +020099}
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101void hci_acl_disconn(struct hci_conn *conn, __u8 reason)
102{
103 struct hci_cp_disconnect cp;
104
105 BT_DBG("%p", conn);
106
107 conn->state = BT_DISCONN;
108
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700109 cp.handle = cpu_to_le16(conn->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 cp.reason = reason;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200111 hci_send_cmd(conn->hdev, HCI_OP_DISCONNECT, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
114void hci_add_sco(struct hci_conn *conn, __u16 handle)
115{
116 struct hci_dev *hdev = conn->hdev;
117 struct hci_cp_add_sco cp;
118
119 BT_DBG("%p", conn);
120
121 conn->state = BT_CONNECT;
122 conn->out = 1;
123
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700124 cp.handle = cpu_to_le16(handle);
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200125 cp.pkt_type = cpu_to_le16(hdev->pkt_type & SCO_PTYPE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200127 hci_send_cmd(hdev, HCI_OP_ADD_SCO, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
130static void hci_conn_timeout(unsigned long arg)
131{
Marcel Holtmann04837f62006-07-03 10:02:33 +0200132 struct hci_conn *conn = (void *) arg;
133 struct hci_dev *hdev = conn->hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 BT_DBG("conn %p state %d", conn, conn->state);
136
137 if (atomic_read(&conn->refcnt))
138 return;
139
140 hci_dev_lock(hdev);
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200141
142 switch (conn->state) {
143 case BT_CONNECT:
144 hci_acl_connect_cancel(conn);
145 break;
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900146 case BT_CONNECTED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 hci_acl_disconn(conn, 0x13);
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200148 break;
149 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 conn->state = BT_CLOSED;
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200151 break;
152 }
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
Marcel Holtmann04837f62006-07-03 10:02:33 +0200157static void hci_conn_idle(unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Marcel Holtmann04837f62006-07-03 10:02:33 +0200159 struct hci_conn *conn = (void *) arg;
160
161 BT_DBG("conn %p mode %d", conn, conn->mode);
162
163 hci_conn_enter_sniff_mode(conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
166struct hci_conn *hci_conn_add(struct hci_dev *hdev, int type, bdaddr_t *dst)
167{
168 struct hci_conn *conn;
169
170 BT_DBG("%s dst %s", hdev->name, batostr(dst));
171
Marcel Holtmann04837f62006-07-03 10:02:33 +0200172 conn = kzalloc(sizeof(struct hci_conn), GFP_ATOMIC);
173 if (!conn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 bacpy(&conn->dst, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 conn->hdev = hdev;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200178 conn->type = type;
179 conn->mode = HCI_CM_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 conn->state = BT_OPEN;
181
Marcel Holtmann04837f62006-07-03 10:02:33 +0200182 conn->power_save = 1;
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 skb_queue_head_init(&conn->data_q);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200185
186 init_timer(&conn->disc_timer);
187 conn->disc_timer.function = hci_conn_timeout;
188 conn->disc_timer.data = (unsigned long) conn;
189
190 init_timer(&conn->idle_timer);
191 conn->idle_timer.function = hci_conn_idle;
192 conn->idle_timer.data = (unsigned long) conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 atomic_set(&conn->refcnt, 0);
195
196 hci_dev_hold(hdev);
197
198 tasklet_disable(&hdev->tx_task);
199
200 hci_conn_hash_add(hdev, conn);
201 if (hdev->notify)
202 hdev->notify(hdev, HCI_NOTIFY_CONN_ADD);
203
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200204 hci_conn_add_sysfs(conn);
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 tasklet_enable(&hdev->tx_task);
207
208 return conn;
209}
210
211int hci_conn_del(struct hci_conn *conn)
212{
213 struct hci_dev *hdev = conn->hdev;
214
215 BT_DBG("%s conn %p handle %d", hdev->name, conn, conn->handle);
216
Marcel Holtmann04837f62006-07-03 10:02:33 +0200217 del_timer(&conn->idle_timer);
218
219 del_timer(&conn->disc_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200221 if (conn->type == ACL_LINK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 struct hci_conn *sco = conn->link;
223 if (sco)
224 sco->link = NULL;
225
226 /* Unacked frames */
227 hdev->acl_cnt += conn->sent;
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200228 } else {
229 struct hci_conn *acl = conn->link;
230 if (acl) {
231 acl->link = NULL;
232 hci_conn_put(acl);
233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
235
236 tasklet_disable(&hdev->tx_task);
237
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200238 hci_conn_del_sysfs(conn);
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 hci_conn_hash_del(hdev, conn);
241 if (hdev->notify)
242 hdev->notify(hdev, HCI_NOTIFY_CONN_DEL);
243
244 tasklet_enable(&hdev->tx_task);
245
246 skb_queue_purge(&conn->data_q);
247
248 hci_dev_put(hdev);
249
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200250 /* will free via device release */
251 put_device(&conn->dev);
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return 0;
254}
255
256struct hci_dev *hci_get_route(bdaddr_t *dst, bdaddr_t *src)
257{
258 int use_src = bacmp(src, BDADDR_ANY);
259 struct hci_dev *hdev = NULL;
260 struct list_head *p;
261
262 BT_DBG("%s -> %s", batostr(src), batostr(dst));
263
264 read_lock_bh(&hci_dev_list_lock);
265
266 list_for_each(p, &hci_dev_list) {
267 struct hci_dev *d = list_entry(p, struct hci_dev, list);
268
269 if (!test_bit(HCI_UP, &d->flags) || test_bit(HCI_RAW, &d->flags))
270 continue;
271
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900272 /* Simple routing:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 * No source address - find interface with bdaddr != dst
274 * Source address - find interface with bdaddr == src
275 */
276
277 if (use_src) {
278 if (!bacmp(&d->bdaddr, src)) {
279 hdev = d; break;
280 }
281 } else {
282 if (bacmp(&d->bdaddr, dst)) {
283 hdev = d; break;
284 }
285 }
286 }
287
288 if (hdev)
289 hdev = hci_dev_hold(hdev);
290
291 read_unlock_bh(&hci_dev_list_lock);
292 return hdev;
293}
294EXPORT_SYMBOL(hci_get_route);
295
296/* Create SCO or ACL connection.
297 * Device _must_ be locked */
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200298struct hci_conn *hci_connect(struct hci_dev *hdev, int type, bdaddr_t *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 struct hci_conn *acl;
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200301 struct hci_conn *sco;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 BT_DBG("%s dst %s", hdev->name, batostr(dst));
304
305 if (!(acl = hci_conn_hash_lookup_ba(hdev, ACL_LINK, dst))) {
306 if (!(acl = hci_conn_add(hdev, ACL_LINK, dst)))
307 return NULL;
308 }
309
310 hci_conn_hold(acl);
311
312 if (acl->state == BT_OPEN || acl->state == BT_CLOSED)
313 hci_acl_connect(acl);
314
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200315 if (type == ACL_LINK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return acl;
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200317
318 if (!(sco = hci_conn_hash_lookup_ba(hdev, type, dst))) {
319 if (!(sco = hci_conn_add(hdev, type, dst))) {
320 hci_conn_put(acl);
321 return NULL;
322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200324
325 acl->link = sco;
326 sco->link = acl;
327
328 hci_conn_hold(sco);
329
330 if (acl->state == BT_CONNECTED &&
331 (sco->state == BT_OPEN || sco->state == BT_CLOSED))
332 hci_add_sco(sco, acl->handle);
333
334 return sco;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336EXPORT_SYMBOL(hci_connect);
337
338/* Authenticate remote device */
339int hci_conn_auth(struct hci_conn *conn)
340{
341 BT_DBG("conn %p", conn);
342
343 if (conn->link_mode & HCI_LM_AUTH)
344 return 1;
345
346 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->pend)) {
347 struct hci_cp_auth_requested cp;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700348 cp.handle = cpu_to_le16(conn->handle);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200349 hci_send_cmd(conn->hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
351 return 0;
352}
353EXPORT_SYMBOL(hci_conn_auth);
354
355/* Enable encryption */
356int hci_conn_encrypt(struct hci_conn *conn)
357{
358 BT_DBG("conn %p", conn);
359
360 if (conn->link_mode & HCI_LM_ENCRYPT)
361 return 1;
362
363 if (test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &conn->pend))
364 return 0;
365
366 if (hci_conn_auth(conn)) {
367 struct hci_cp_set_conn_encrypt cp;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700368 cp.handle = cpu_to_le16(conn->handle);
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900369 cp.encrypt = 1;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200370 hci_send_cmd(conn->hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372 return 0;
373}
374EXPORT_SYMBOL(hci_conn_encrypt);
375
376/* Change link key */
377int hci_conn_change_link_key(struct hci_conn *conn)
378{
379 BT_DBG("conn %p", conn);
380
381 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->pend)) {
382 struct hci_cp_change_conn_link_key cp;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700383 cp.handle = cpu_to_le16(conn->handle);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200384 hci_send_cmd(conn->hdev, HCI_OP_CHANGE_CONN_LINK_KEY, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
386 return 0;
387}
388EXPORT_SYMBOL(hci_conn_change_link_key);
389
390/* Switch role */
391int hci_conn_switch_role(struct hci_conn *conn, uint8_t role)
392{
393 BT_DBG("conn %p", conn);
394
395 if (!role && conn->link_mode & HCI_LM_MASTER)
396 return 1;
397
398 if (!test_and_set_bit(HCI_CONN_RSWITCH_PEND, &conn->pend)) {
399 struct hci_cp_switch_role cp;
400 bacpy(&cp.bdaddr, &conn->dst);
401 cp.role = role;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200402 hci_send_cmd(conn->hdev, HCI_OP_SWITCH_ROLE, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
404 return 0;
405}
406EXPORT_SYMBOL(hci_conn_switch_role);
407
Marcel Holtmann04837f62006-07-03 10:02:33 +0200408/* Enter active mode */
409void hci_conn_enter_active_mode(struct hci_conn *conn)
410{
411 struct hci_dev *hdev = conn->hdev;
412
413 BT_DBG("conn %p mode %d", conn, conn->mode);
414
415 if (test_bit(HCI_RAW, &hdev->flags))
416 return;
417
418 if (conn->mode != HCI_CM_SNIFF || !conn->power_save)
419 goto timer;
420
421 if (!test_and_set_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->pend)) {
422 struct hci_cp_exit_sniff_mode cp;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700423 cp.handle = cpu_to_le16(conn->handle);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200424 hci_send_cmd(hdev, HCI_OP_EXIT_SNIFF_MODE, sizeof(cp), &cp);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200425 }
426
427timer:
428 if (hdev->idle_timeout > 0)
429 mod_timer(&conn->idle_timer,
430 jiffies + msecs_to_jiffies(hdev->idle_timeout));
431}
432
433/* Enter sniff mode */
434void hci_conn_enter_sniff_mode(struct hci_conn *conn)
435{
436 struct hci_dev *hdev = conn->hdev;
437
438 BT_DBG("conn %p mode %d", conn, conn->mode);
439
440 if (test_bit(HCI_RAW, &hdev->flags))
441 return;
442
443 if (!lmp_sniff_capable(hdev) || !lmp_sniff_capable(conn))
444 return;
445
446 if (conn->mode != HCI_CM_ACTIVE || !(conn->link_policy & HCI_LP_SNIFF))
447 return;
448
449 if (lmp_sniffsubr_capable(hdev) && lmp_sniffsubr_capable(conn)) {
450 struct hci_cp_sniff_subrate cp;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700451 cp.handle = cpu_to_le16(conn->handle);
452 cp.max_latency = cpu_to_le16(0);
453 cp.min_remote_timeout = cpu_to_le16(0);
454 cp.min_local_timeout = cpu_to_le16(0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200455 hci_send_cmd(hdev, HCI_OP_SNIFF_SUBRATE, sizeof(cp), &cp);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200456 }
457
458 if (!test_and_set_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->pend)) {
459 struct hci_cp_sniff_mode cp;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700460 cp.handle = cpu_to_le16(conn->handle);
461 cp.max_interval = cpu_to_le16(hdev->sniff_max_interval);
462 cp.min_interval = cpu_to_le16(hdev->sniff_min_interval);
463 cp.attempt = cpu_to_le16(4);
464 cp.timeout = cpu_to_le16(1);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200465 hci_send_cmd(hdev, HCI_OP_SNIFF_MODE, sizeof(cp), &cp);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200466 }
467}
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469/* Drop all connection on the device */
470void hci_conn_hash_flush(struct hci_dev *hdev)
471{
472 struct hci_conn_hash *h = &hdev->conn_hash;
473 struct list_head *p;
474
475 BT_DBG("hdev %s", hdev->name);
476
477 p = h->list.next;
478 while (p != &h->list) {
479 struct hci_conn *c;
480
481 c = list_entry(p, struct hci_conn, list);
482 p = p->next;
483
484 c->state = BT_CLOSED;
485
486 hci_proto_disconn_ind(c, 0x16);
487 hci_conn_del(c);
488 }
489}
490
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200491/* Check pending connect attempts */
492void hci_conn_check_pending(struct hci_dev *hdev)
493{
494 struct hci_conn *conn;
495
496 BT_DBG("hdev %s", hdev->name);
497
498 hci_dev_lock(hdev);
499
500 conn = hci_conn_hash_lookup_state(hdev, ACL_LINK, BT_CONNECT2);
501 if (conn)
502 hci_acl_connect(conn);
503
504 hci_dev_unlock(hdev);
505}
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507int hci_get_conn_list(void __user *arg)
508{
509 struct hci_conn_list_req req, *cl;
510 struct hci_conn_info *ci;
511 struct hci_dev *hdev;
512 struct list_head *p;
513 int n = 0, size, err;
514
515 if (copy_from_user(&req, arg, sizeof(req)))
516 return -EFAULT;
517
518 if (!req.conn_num || req.conn_num > (PAGE_SIZE * 2) / sizeof(*ci))
519 return -EINVAL;
520
521 size = sizeof(req) + req.conn_num * sizeof(*ci);
522
Jesper Juhl12fe2c52006-01-10 13:08:21 -0800523 if (!(cl = kmalloc(size, GFP_KERNEL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return -ENOMEM;
525
526 if (!(hdev = hci_dev_get(req.dev_id))) {
527 kfree(cl);
528 return -ENODEV;
529 }
530
531 ci = cl->conn_info;
532
533 hci_dev_lock_bh(hdev);
534 list_for_each(p, &hdev->conn_hash.list) {
535 register struct hci_conn *c;
536 c = list_entry(p, struct hci_conn, list);
537
538 bacpy(&(ci + n)->bdaddr, &c->dst);
539 (ci + n)->handle = c->handle;
540 (ci + n)->type = c->type;
541 (ci + n)->out = c->out;
542 (ci + n)->state = c->state;
543 (ci + n)->link_mode = c->link_mode;
544 if (++n >= req.conn_num)
545 break;
546 }
547 hci_dev_unlock_bh(hdev);
548
549 cl->dev_id = hdev->id;
550 cl->conn_num = n;
551 size = sizeof(req) + n * sizeof(*ci);
552
553 hci_dev_put(hdev);
554
555 err = copy_to_user(arg, cl, size);
556 kfree(cl);
557
558 return err ? -EFAULT : 0;
559}
560
561int hci_get_conn_info(struct hci_dev *hdev, void __user *arg)
562{
563 struct hci_conn_info_req req;
564 struct hci_conn_info ci;
565 struct hci_conn *conn;
566 char __user *ptr = arg + sizeof(req);
567
568 if (copy_from_user(&req, arg, sizeof(req)))
569 return -EFAULT;
570
571 hci_dev_lock_bh(hdev);
572 conn = hci_conn_hash_lookup_ba(hdev, req.type, &req.bdaddr);
573 if (conn) {
574 bacpy(&ci.bdaddr, &conn->dst);
575 ci.handle = conn->handle;
576 ci.type = conn->type;
577 ci.out = conn->out;
578 ci.state = conn->state;
579 ci.link_mode = conn->link_mode;
580 }
581 hci_dev_unlock_bh(hdev);
582
583 if (!conn)
584 return -ENOENT;
585
586 return copy_to_user(ptr, &ci, sizeof(ci)) ? -EFAULT : 0;
587}