YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | BlueZ - Bluetooth protocol stack for Linux |
Ron Shaffer | 2d0a034 | 2010-05-28 11:53:46 -0400 | [diff] [blame] | 3 | Copyright (c) 2000-2001, 2010, Code Aurora Forum. All rights reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 15 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 19 | |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 20 | ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, |
| 21 | COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | SOFTWARE IS DISCLAIMED. |
| 23 | */ |
| 24 | |
| 25 | /* Bluetooth HCI connection handling. */ |
| 26 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/module.h> |
| 28 | |
| 29 | #include <linux/types.h> |
| 30 | #include <linux/errno.h> |
| 31 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #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 Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 42 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <asm/unaligned.h> |
| 44 | |
| 45 | #include <net/bluetooth/bluetooth.h> |
| 46 | #include <net/bluetooth/hci_core.h> |
| 47 | |
Ville Tervo | fcd89c0 | 2011-02-10 22:38:47 -0300 | [diff] [blame] | 48 | static void hci_le_connect(struct hci_conn *conn) |
| 49 | { |
| 50 | struct hci_dev *hdev = conn->hdev; |
| 51 | struct hci_cp_le_create_conn cp; |
| 52 | |
| 53 | conn->state = BT_CONNECT; |
| 54 | conn->out = 1; |
Vinicius Costa Gomes | b92a622 | 2011-02-10 22:38:52 -0300 | [diff] [blame] | 55 | conn->link_mode |= HCI_LM_MASTER; |
Vinicius Costa Gomes | 7b5c0d5 | 2011-06-09 18:50:50 -0300 | [diff] [blame] | 56 | conn->sec_level = BT_SECURITY_LOW; |
Ville Tervo | fcd89c0 | 2011-02-10 22:38:47 -0300 | [diff] [blame] | 57 | |
| 58 | memset(&cp, 0, sizeof(cp)); |
Anderson Lizardo | 0e83391 | 2011-07-27 18:40:09 -0300 | [diff] [blame] | 59 | cp.scan_interval = cpu_to_le16(0x0060); |
| 60 | cp.scan_window = cpu_to_le16(0x0030); |
Ville Tervo | fcd89c0 | 2011-02-10 22:38:47 -0300 | [diff] [blame] | 61 | bacpy(&cp.peer_addr, &conn->dst); |
Andre Guedes | 6d3ce0e7 | 2011-05-31 14:20:57 -0300 | [diff] [blame] | 62 | cp.peer_addr_type = conn->dst_type; |
Anderson Lizardo | 0e83391 | 2011-07-27 18:40:09 -0300 | [diff] [blame] | 63 | cp.conn_interval_min = cpu_to_le16(0x0028); |
| 64 | cp.conn_interval_max = cpu_to_le16(0x0038); |
| 65 | cp.supervision_timeout = cpu_to_le16(0x002a); |
| 66 | cp.min_ce_len = cpu_to_le16(0x0000); |
| 67 | cp.max_ce_len = cpu_to_le16(0x0000); |
Ville Tervo | fcd89c0 | 2011-02-10 22:38:47 -0300 | [diff] [blame] | 68 | |
| 69 | hci_send_cmd(hdev, HCI_OP_LE_CREATE_CONN, sizeof(cp), &cp); |
| 70 | } |
| 71 | |
| 72 | static void hci_le_connect_cancel(struct hci_conn *conn) |
| 73 | { |
| 74 | hci_send_cmd(conn->hdev, HCI_OP_LE_CREATE_CONN_CANCEL, 0, NULL); |
| 75 | } |
| 76 | |
Marcel Holtmann | 4c67bc7 | 2006-10-15 17:30:56 +0200 | [diff] [blame] | 77 | void hci_acl_connect(struct hci_conn *conn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | { |
| 79 | struct hci_dev *hdev = conn->hdev; |
| 80 | struct inquiry_entry *ie; |
| 81 | struct hci_cp_create_conn cp; |
| 82 | |
| 83 | BT_DBG("%p", conn); |
| 84 | |
| 85 | conn->state = BT_CONNECT; |
Marcel Holtmann | a874641 | 2008-07-14 20:13:46 +0200 | [diff] [blame] | 86 | conn->out = 1; |
| 87 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | conn->link_mode = HCI_LM_MASTER; |
| 89 | |
Marcel Holtmann | 4c67bc7 | 2006-10-15 17:30:56 +0200 | [diff] [blame] | 90 | conn->attempt++; |
| 91 | |
Marcel Holtmann | e4e8e37 | 2008-07-14 20:13:47 +0200 | [diff] [blame] | 92 | conn->link_policy = hdev->link_policy; |
| 93 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | memset(&cp, 0, sizeof(cp)); |
| 95 | bacpy(&cp.bdaddr, &conn->dst); |
| 96 | cp.pscan_rep_mode = 0x02; |
| 97 | |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 98 | ie = hci_inquiry_cache_lookup(hdev, &conn->dst); |
| 99 | if (ie) { |
Marcel Holtmann | 41a9621 | 2008-07-14 20:13:48 +0200 | [diff] [blame] | 100 | if (inquiry_entry_age(ie) <= INQUIRY_ENTRY_AGE_MAX) { |
| 101 | cp.pscan_rep_mode = ie->data.pscan_rep_mode; |
| 102 | cp.pscan_mode = ie->data.pscan_mode; |
| 103 | cp.clock_offset = ie->data.clock_offset | |
| 104 | cpu_to_le16(0x8000); |
| 105 | } |
| 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | memcpy(conn->dev_class, ie->data.dev_class, 3); |
Marcel Holtmann | 41a9621 | 2008-07-14 20:13:48 +0200 | [diff] [blame] | 108 | conn->ssp_mode = ie->data.ssp_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | } |
| 110 | |
Marcel Holtmann | a874641 | 2008-07-14 20:13:46 +0200 | [diff] [blame] | 111 | cp.pkt_type = cpu_to_le16(conn->pkt_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | if (lmp_rswitch_capable(hdev) && !(hdev->link_mode & HCI_LM_MASTER)) |
Marcel Holtmann | b6a0dc8 | 2007-10-20 14:55:10 +0200 | [diff] [blame] | 113 | cp.role_switch = 0x01; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | else |
Marcel Holtmann | b6a0dc8 | 2007-10-20 14:55:10 +0200 | [diff] [blame] | 115 | cp.role_switch = 0x00; |
Marcel Holtmann | 4c67bc7 | 2006-10-15 17:30:56 +0200 | [diff] [blame] | 116 | |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 117 | hci_send_cmd(hdev, HCI_OP_CREATE_CONN, sizeof(cp), &cp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | } |
| 119 | |
Marcel Holtmann | 6ac5934 | 2006-09-26 09:43:48 +0200 | [diff] [blame] | 120 | static void hci_acl_connect_cancel(struct hci_conn *conn) |
| 121 | { |
| 122 | struct hci_cp_create_conn_cancel cp; |
| 123 | |
| 124 | BT_DBG("%p", conn); |
| 125 | |
Andrei Emeltchenko | d095c1e | 2011-12-01 14:33:27 +0200 | [diff] [blame] | 126 | if (conn->hdev->hci_ver < BLUETOOTH_VER_1_2) |
Marcel Holtmann | 6ac5934 | 2006-09-26 09:43:48 +0200 | [diff] [blame] | 127 | return; |
| 128 | |
| 129 | bacpy(&cp.bdaddr, &conn->dst); |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 130 | hci_send_cmd(conn->hdev, HCI_OP_CREATE_CONN_CANCEL, sizeof(cp), &cp); |
Marcel Holtmann | 6ac5934 | 2006-09-26 09:43:48 +0200 | [diff] [blame] | 131 | } |
| 132 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | void hci_acl_disconn(struct hci_conn *conn, __u8 reason) |
| 134 | { |
| 135 | struct hci_cp_disconnect cp; |
| 136 | |
| 137 | BT_DBG("%p", conn); |
| 138 | |
| 139 | conn->state = BT_DISCONN; |
| 140 | |
YOSHIFUJI Hideaki | aca3192 | 2007-03-25 20:12:50 -0700 | [diff] [blame] | 141 | cp.handle = cpu_to_le16(conn->handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | cp.reason = reason; |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 143 | hci_send_cmd(conn->hdev, HCI_OP_DISCONNECT, sizeof(cp), &cp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | } |
| 145 | |
| 146 | void hci_add_sco(struct hci_conn *conn, __u16 handle) |
| 147 | { |
| 148 | struct hci_dev *hdev = conn->hdev; |
| 149 | struct hci_cp_add_sco cp; |
| 150 | |
| 151 | BT_DBG("%p", conn); |
| 152 | |
| 153 | conn->state = BT_CONNECT; |
| 154 | conn->out = 1; |
| 155 | |
Marcel Holtmann | efc7688 | 2009-02-06 09:13:37 +0100 | [diff] [blame] | 156 | conn->attempt++; |
| 157 | |
YOSHIFUJI Hideaki | aca3192 | 2007-03-25 20:12:50 -0700 | [diff] [blame] | 158 | cp.handle = cpu_to_le16(handle); |
Marcel Holtmann | a874641 | 2008-07-14 20:13:46 +0200 | [diff] [blame] | 159 | cp.pkt_type = cpu_to_le16(conn->pkt_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 161 | hci_send_cmd(hdev, HCI_OP_ADD_SCO, sizeof(cp), &cp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | } |
| 163 | |
Marcel Holtmann | b6a0dc8 | 2007-10-20 14:55:10 +0200 | [diff] [blame] | 164 | void hci_setup_sync(struct hci_conn *conn, __u16 handle) |
| 165 | { |
| 166 | struct hci_dev *hdev = conn->hdev; |
| 167 | struct hci_cp_setup_sync_conn cp; |
| 168 | |
| 169 | BT_DBG("%p", conn); |
| 170 | |
| 171 | conn->state = BT_CONNECT; |
| 172 | conn->out = 1; |
| 173 | |
Marcel Holtmann | efc7688 | 2009-02-06 09:13:37 +0100 | [diff] [blame] | 174 | conn->attempt++; |
| 175 | |
Marcel Holtmann | b6a0dc8 | 2007-10-20 14:55:10 +0200 | [diff] [blame] | 176 | cp.handle = cpu_to_le16(handle); |
Marcel Holtmann | a874641 | 2008-07-14 20:13:46 +0200 | [diff] [blame] | 177 | cp.pkt_type = cpu_to_le16(conn->pkt_type); |
Marcel Holtmann | b6a0dc8 | 2007-10-20 14:55:10 +0200 | [diff] [blame] | 178 | |
| 179 | cp.tx_bandwidth = cpu_to_le32(0x00001f40); |
| 180 | cp.rx_bandwidth = cpu_to_le32(0x00001f40); |
| 181 | cp.max_latency = cpu_to_le16(0xffff); |
| 182 | cp.voice_setting = cpu_to_le16(hdev->voice_setting); |
| 183 | cp.retrans_effort = 0xff; |
| 184 | |
| 185 | hci_send_cmd(hdev, HCI_OP_SETUP_SYNC_CONN, sizeof(cp), &cp); |
| 186 | } |
| 187 | |
Claudio Takahasi | 2ce603e | 2011-02-16 20:44:53 -0200 | [diff] [blame] | 188 | void hci_le_conn_update(struct hci_conn *conn, u16 min, u16 max, |
| 189 | u16 latency, u16 to_multiplier) |
| 190 | { |
| 191 | struct hci_cp_le_conn_update cp; |
| 192 | struct hci_dev *hdev = conn->hdev; |
| 193 | |
| 194 | memset(&cp, 0, sizeof(cp)); |
| 195 | |
| 196 | cp.handle = cpu_to_le16(conn->handle); |
| 197 | cp.conn_interval_min = cpu_to_le16(min); |
| 198 | cp.conn_interval_max = cpu_to_le16(max); |
| 199 | cp.conn_latency = cpu_to_le16(latency); |
| 200 | cp.supervision_timeout = cpu_to_le16(to_multiplier); |
| 201 | cp.min_ce_len = cpu_to_le16(0x0001); |
| 202 | cp.max_ce_len = cpu_to_le16(0x0001); |
| 203 | |
| 204 | hci_send_cmd(hdev, HCI_OP_LE_CONN_UPDATE, sizeof(cp), &cp); |
| 205 | } |
| 206 | EXPORT_SYMBOL(hci_le_conn_update); |
| 207 | |
Vinicius Costa Gomes | a7a595f | 2011-06-09 18:50:47 -0300 | [diff] [blame] | 208 | void hci_le_start_enc(struct hci_conn *conn, __le16 ediv, __u8 rand[8], |
| 209 | __u8 ltk[16]) |
| 210 | { |
| 211 | struct hci_dev *hdev = conn->hdev; |
| 212 | struct hci_cp_le_start_enc cp; |
| 213 | |
| 214 | BT_DBG("%p", conn); |
| 215 | |
| 216 | memset(&cp, 0, sizeof(cp)); |
| 217 | |
| 218 | cp.handle = cpu_to_le16(conn->handle); |
| 219 | memcpy(cp.ltk, ltk, sizeof(cp.ltk)); |
| 220 | cp.ediv = ediv; |
Anderson Briglia | 51beabd | 2011-09-19 14:41:09 -0400 | [diff] [blame] | 221 | memcpy(cp.rand, rand, sizeof(cp.rand)); |
Vinicius Costa Gomes | a7a595f | 2011-06-09 18:50:47 -0300 | [diff] [blame] | 222 | |
| 223 | hci_send_cmd(hdev, HCI_OP_LE_START_ENC, sizeof(cp), &cp); |
| 224 | } |
| 225 | EXPORT_SYMBOL(hci_le_start_enc); |
| 226 | |
| 227 | void hci_le_ltk_reply(struct hci_conn *conn, u8 ltk[16]) |
| 228 | { |
| 229 | struct hci_dev *hdev = conn->hdev; |
| 230 | struct hci_cp_le_ltk_reply cp; |
| 231 | |
| 232 | BT_DBG("%p", conn); |
| 233 | |
| 234 | memset(&cp, 0, sizeof(cp)); |
| 235 | |
| 236 | cp.handle = cpu_to_le16(conn->handle); |
| 237 | memcpy(cp.ltk, ltk, sizeof(ltk)); |
| 238 | |
| 239 | hci_send_cmd(hdev, HCI_OP_LE_LTK_REPLY, sizeof(cp), &cp); |
| 240 | } |
| 241 | EXPORT_SYMBOL(hci_le_ltk_reply); |
| 242 | |
| 243 | void hci_le_ltk_neg_reply(struct hci_conn *conn) |
| 244 | { |
| 245 | struct hci_dev *hdev = conn->hdev; |
| 246 | struct hci_cp_le_ltk_neg_reply cp; |
| 247 | |
| 248 | BT_DBG("%p", conn); |
| 249 | |
| 250 | memset(&cp, 0, sizeof(cp)); |
| 251 | |
| 252 | cp.handle = cpu_to_le16(conn->handle); |
| 253 | |
| 254 | hci_send_cmd(hdev, HCI_OP_LE_LTK_NEG_REPLY, sizeof(cp), &cp); |
| 255 | } |
| 256 | |
Marcel Holtmann | e73439d | 2010-07-26 10:06:00 -0400 | [diff] [blame] | 257 | /* Device _must_ be locked */ |
| 258 | void hci_sco_setup(struct hci_conn *conn, __u8 status) |
| 259 | { |
| 260 | struct hci_conn *sco = conn->link; |
| 261 | |
| 262 | BT_DBG("%p", conn); |
| 263 | |
| 264 | if (!sco) |
| 265 | return; |
| 266 | |
| 267 | if (!status) { |
| 268 | if (lmp_esco_capable(conn->hdev)) |
| 269 | hci_setup_sync(sco, conn->handle); |
| 270 | else |
| 271 | hci_add_sco(sco, conn->handle); |
| 272 | } else { |
| 273 | hci_proto_connect_cfm(sco, status); |
| 274 | hci_conn_del(sco); |
| 275 | } |
| 276 | } |
| 277 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | static void hci_conn_timeout(unsigned long arg) |
| 279 | { |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 280 | struct hci_conn *conn = (void *) arg; |
| 281 | struct hci_dev *hdev = conn->hdev; |
Marcel Holtmann | 2950f21 | 2009-02-12 14:02:50 +0100 | [diff] [blame] | 282 | __u8 reason; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | |
| 284 | BT_DBG("conn %p state %d", conn, conn->state); |
| 285 | |
| 286 | if (atomic_read(&conn->refcnt)) |
| 287 | return; |
| 288 | |
| 289 | hci_dev_lock(hdev); |
Marcel Holtmann | 6ac5934 | 2006-09-26 09:43:48 +0200 | [diff] [blame] | 290 | |
| 291 | switch (conn->state) { |
| 292 | case BT_CONNECT: |
Marcel Holtmann | 769be97 | 2008-07-14 20:13:49 +0200 | [diff] [blame] | 293 | case BT_CONNECT2: |
Ville Tervo | fcd89c0 | 2011-02-10 22:38:47 -0300 | [diff] [blame] | 294 | if (conn->out) { |
| 295 | if (conn->type == ACL_LINK) |
| 296 | hci_acl_connect_cancel(conn); |
| 297 | else if (conn->type == LE_LINK) |
| 298 | hci_le_connect_cancel(conn); |
| 299 | } |
Marcel Holtmann | 6ac5934 | 2006-09-26 09:43:48 +0200 | [diff] [blame] | 300 | break; |
Marcel Holtmann | 769be97 | 2008-07-14 20:13:49 +0200 | [diff] [blame] | 301 | case BT_CONFIG: |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 302 | case BT_CONNECTED: |
Marcel Holtmann | 2950f21 | 2009-02-12 14:02:50 +0100 | [diff] [blame] | 303 | reason = hci_proto_disconn_ind(conn); |
| 304 | hci_acl_disconn(conn, reason); |
Marcel Holtmann | 6ac5934 | 2006-09-26 09:43:48 +0200 | [diff] [blame] | 305 | break; |
| 306 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | conn->state = BT_CLOSED; |
Marcel Holtmann | 6ac5934 | 2006-09-26 09:43:48 +0200 | [diff] [blame] | 308 | break; |
| 309 | } |
| 310 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | hci_dev_unlock(hdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | } |
| 313 | |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 314 | static void hci_conn_idle(unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | { |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 316 | struct hci_conn *conn = (void *) arg; |
| 317 | |
| 318 | BT_DBG("conn %p mode %d", conn, conn->mode); |
| 319 | |
| 320 | hci_conn_enter_sniff_mode(conn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | } |
| 322 | |
Johan Hedberg | 9f61656 | 2011-04-28 11:28:54 -0700 | [diff] [blame] | 323 | static void hci_conn_auto_accept(unsigned long arg) |
| 324 | { |
| 325 | struct hci_conn *conn = (void *) arg; |
| 326 | struct hci_dev *hdev = conn->hdev; |
| 327 | |
| 328 | hci_dev_lock(hdev); |
| 329 | |
| 330 | hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_REPLY, sizeof(conn->dst), |
| 331 | &conn->dst); |
| 332 | |
| 333 | hci_dev_unlock(hdev); |
| 334 | } |
| 335 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | struct hci_conn *hci_conn_add(struct hci_dev *hdev, int type, bdaddr_t *dst) |
| 337 | { |
| 338 | struct hci_conn *conn; |
| 339 | |
| 340 | BT_DBG("%s dst %s", hdev->name, batostr(dst)); |
| 341 | |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 342 | conn = kzalloc(sizeof(struct hci_conn), GFP_ATOMIC); |
| 343 | if (!conn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | |
| 346 | bacpy(&conn->dst, dst); |
Marcel Holtmann | a874641 | 2008-07-14 20:13:46 +0200 | [diff] [blame] | 347 | conn->hdev = hdev; |
| 348 | conn->type = type; |
| 349 | conn->mode = HCI_CM_ACTIVE; |
| 350 | conn->state = BT_OPEN; |
Andrei Emeltchenko | 93f19c9 | 2009-09-03 12:34:19 +0300 | [diff] [blame] | 351 | conn->auth_type = HCI_AT_GENERAL_BONDING; |
Johan Hedberg | 17fa4b9 | 2011-01-25 13:28:33 +0200 | [diff] [blame] | 352 | conn->io_capability = hdev->io_capability; |
Johan Hedberg | a958355 | 2011-02-19 12:06:01 -0300 | [diff] [blame] | 353 | conn->remote_auth = 0xff; |
Waldemar Rymarkiewicz | 13d3931 | 2011-04-28 12:07:55 +0200 | [diff] [blame] | 354 | conn->key_type = 0xff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 356 | conn->power_save = 1; |
Marcel Holtmann | 052b30b | 2009-04-26 20:01:22 +0200 | [diff] [blame] | 357 | conn->disc_timeout = HCI_DISCONN_TIMEOUT; |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 358 | |
Marcel Holtmann | a874641 | 2008-07-14 20:13:46 +0200 | [diff] [blame] | 359 | switch (type) { |
| 360 | case ACL_LINK: |
| 361 | conn->pkt_type = hdev->pkt_type & ACL_PTYPE_MASK; |
| 362 | break; |
| 363 | case SCO_LINK: |
| 364 | if (lmp_esco_capable(hdev)) |
Marcel Holtmann | efc7688 | 2009-02-06 09:13:37 +0100 | [diff] [blame] | 365 | conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) | |
| 366 | (hdev->esco_type & EDR_ESCO_MASK); |
Marcel Holtmann | a874641 | 2008-07-14 20:13:46 +0200 | [diff] [blame] | 367 | else |
| 368 | conn->pkt_type = hdev->pkt_type & SCO_PTYPE_MASK; |
| 369 | break; |
| 370 | case ESCO_LINK: |
Marcel Holtmann | efc7688 | 2009-02-06 09:13:37 +0100 | [diff] [blame] | 371 | conn->pkt_type = hdev->esco_type & ~EDR_ESCO_MASK; |
Marcel Holtmann | a874641 | 2008-07-14 20:13:46 +0200 | [diff] [blame] | 372 | break; |
| 373 | } |
| 374 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | skb_queue_head_init(&conn->data_q); |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 376 | |
Gustavo F. Padovan | 2c33c06 | 2011-12-14 13:02:51 -0200 | [diff] [blame] | 377 | INIT_LIST_HEAD(&conn->chan_list);; |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 378 | |
Pavel Emelyanov | b24b8a2 | 2008-01-23 21:20:07 -0800 | [diff] [blame] | 379 | setup_timer(&conn->disc_timer, hci_conn_timeout, (unsigned long)conn); |
| 380 | setup_timer(&conn->idle_timer, hci_conn_idle, (unsigned long)conn); |
Johan Hedberg | 9f61656 | 2011-04-28 11:28:54 -0700 | [diff] [blame] | 381 | setup_timer(&conn->auto_accept_timer, hci_conn_auto_accept, |
| 382 | (unsigned long) conn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | |
| 384 | atomic_set(&conn->refcnt, 0); |
| 385 | |
| 386 | hci_dev_hold(hdev); |
| 387 | |
| 388 | tasklet_disable(&hdev->tx_task); |
| 389 | |
| 390 | hci_conn_hash_add(hdev, conn); |
| 391 | if (hdev->notify) |
| 392 | hdev->notify(hdev, HCI_NOTIFY_CONN_ADD); |
| 393 | |
Marcel Holtmann | 9eba32b | 2009-08-22 14:19:26 -0700 | [diff] [blame] | 394 | atomic_set(&conn->devref, 0); |
| 395 | |
Marcel Holtmann | a67e899 | 2009-05-02 18:24:06 -0700 | [diff] [blame] | 396 | hci_conn_init_sysfs(conn); |
| 397 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | tasklet_enable(&hdev->tx_task); |
| 399 | |
| 400 | return conn; |
| 401 | } |
| 402 | |
| 403 | int hci_conn_del(struct hci_conn *conn) |
| 404 | { |
| 405 | struct hci_dev *hdev = conn->hdev; |
| 406 | |
| 407 | BT_DBG("%s conn %p handle %d", hdev->name, conn, conn->handle); |
| 408 | |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 409 | del_timer(&conn->idle_timer); |
| 410 | |
| 411 | del_timer(&conn->disc_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | |
Johan Hedberg | 9f61656 | 2011-04-28 11:28:54 -0700 | [diff] [blame] | 413 | del_timer(&conn->auto_accept_timer); |
| 414 | |
Marcel Holtmann | 5b7f990 | 2007-07-11 09:51:55 +0200 | [diff] [blame] | 415 | if (conn->type == ACL_LINK) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | struct hci_conn *sco = conn->link; |
| 417 | if (sco) |
| 418 | sco->link = NULL; |
| 419 | |
| 420 | /* Unacked frames */ |
| 421 | hdev->acl_cnt += conn->sent; |
Ville Tervo | 6ed58ec | 2011-02-10 22:38:48 -0300 | [diff] [blame] | 422 | } else if (conn->type == LE_LINK) { |
| 423 | if (hdev->le_pkts) |
| 424 | hdev->le_cnt += conn->sent; |
| 425 | else |
| 426 | hdev->acl_cnt += conn->sent; |
Marcel Holtmann | 5b7f990 | 2007-07-11 09:51:55 +0200 | [diff] [blame] | 427 | } else { |
| 428 | struct hci_conn *acl = conn->link; |
| 429 | if (acl) { |
| 430 | acl->link = NULL; |
| 431 | hci_conn_put(acl); |
| 432 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | } |
| 434 | |
| 435 | tasklet_disable(&hdev->tx_task); |
Marcel Holtmann | 7d0db0a | 2008-07-14 20:13:51 +0200 | [diff] [blame] | 436 | |
Gustavo F. Padovan | 2c33c06 | 2011-12-14 13:02:51 -0200 | [diff] [blame] | 437 | hci_chan_list_flush(conn); |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 438 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | hci_conn_hash_del(hdev, conn); |
| 440 | if (hdev->notify) |
| 441 | hdev->notify(hdev, HCI_NOTIFY_CONN_DEL); |
Marcel Holtmann | 7d0db0a | 2008-07-14 20:13:51 +0200 | [diff] [blame] | 442 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | tasklet_enable(&hdev->tx_task); |
Marcel Holtmann | 7d0db0a | 2008-07-14 20:13:51 +0200 | [diff] [blame] | 444 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | skb_queue_purge(&conn->data_q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | |
Marcel Holtmann | 9eba32b | 2009-08-22 14:19:26 -0700 | [diff] [blame] | 447 | hci_conn_put_device(conn); |
Dave Young | 2ae9a6b | 2009-02-21 16:13:34 +0800 | [diff] [blame] | 448 | |
Marcel Holtmann | 384943e | 2009-05-08 18:20:43 -0700 | [diff] [blame] | 449 | hci_dev_put(hdev); |
| 450 | |
Tomas Targownik | 163f4da | 2011-06-30 16:30:44 -0300 | [diff] [blame] | 451 | if (conn->handle == 0) |
| 452 | kfree(conn); |
| 453 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | return 0; |
| 455 | } |
| 456 | |
| 457 | struct hci_dev *hci_get_route(bdaddr_t *dst, bdaddr_t *src) |
| 458 | { |
| 459 | int use_src = bacmp(src, BDADDR_ANY); |
Luiz Augusto von Dentz | 8035ded | 2011-11-01 10:58:56 +0200 | [diff] [blame] | 460 | struct hci_dev *hdev = NULL, *d; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | |
| 462 | BT_DBG("%s -> %s", batostr(src), batostr(dst)); |
| 463 | |
| 464 | read_lock_bh(&hci_dev_list_lock); |
| 465 | |
Luiz Augusto von Dentz | 8035ded | 2011-11-01 10:58:56 +0200 | [diff] [blame] | 466 | list_for_each_entry(d, &hci_dev_list, list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | if (!test_bit(HCI_UP, &d->flags) || test_bit(HCI_RAW, &d->flags)) |
| 468 | continue; |
| 469 | |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 470 | /* Simple routing: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | * No source address - find interface with bdaddr != dst |
| 472 | * Source address - find interface with bdaddr == src |
| 473 | */ |
| 474 | |
| 475 | if (use_src) { |
| 476 | if (!bacmp(&d->bdaddr, src)) { |
| 477 | hdev = d; break; |
| 478 | } |
| 479 | } else { |
| 480 | if (bacmp(&d->bdaddr, dst)) { |
| 481 | hdev = d; break; |
| 482 | } |
| 483 | } |
| 484 | } |
| 485 | |
| 486 | if (hdev) |
| 487 | hdev = hci_dev_hold(hdev); |
| 488 | |
| 489 | read_unlock_bh(&hci_dev_list_lock); |
| 490 | return hdev; |
| 491 | } |
| 492 | EXPORT_SYMBOL(hci_get_route); |
| 493 | |
Ville Tervo | fcd89c0 | 2011-02-10 22:38:47 -0300 | [diff] [blame] | 494 | /* Create SCO, ACL or LE connection. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | * Device _must_ be locked */ |
Marcel Holtmann | 8c1b235 | 2009-01-15 21:58:04 +0100 | [diff] [blame] | 496 | struct hci_conn *hci_connect(struct hci_dev *hdev, int type, bdaddr_t *dst, __u8 sec_level, __u8 auth_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | { |
| 498 | struct hci_conn *acl; |
Marcel Holtmann | 5b7f990 | 2007-07-11 09:51:55 +0200 | [diff] [blame] | 499 | struct hci_conn *sco; |
Ville Tervo | fcd89c0 | 2011-02-10 22:38:47 -0300 | [diff] [blame] | 500 | struct hci_conn *le; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | |
| 502 | BT_DBG("%s dst %s", hdev->name, batostr(dst)); |
| 503 | |
Ville Tervo | fcd89c0 | 2011-02-10 22:38:47 -0300 | [diff] [blame] | 504 | if (type == LE_LINK) { |
Andre Guedes | eda42b5 | 2011-05-31 14:20:56 -0300 | [diff] [blame] | 505 | struct adv_entry *entry; |
| 506 | |
Ville Tervo | fcd89c0 | 2011-02-10 22:38:47 -0300 | [diff] [blame] | 507 | le = hci_conn_hash_lookup_ba(hdev, LE_LINK, dst); |
Anderson Briglia | 15c4794 | 2011-02-21 15:09:23 -0300 | [diff] [blame] | 508 | if (le) |
Ville Tervo | 30e7627 | 2011-02-22 16:10:53 -0300 | [diff] [blame] | 509 | return ERR_PTR(-EBUSY); |
Andre Guedes | eda42b5 | 2011-05-31 14:20:56 -0300 | [diff] [blame] | 510 | |
| 511 | entry = hci_find_adv_entry(hdev, dst); |
| 512 | if (!entry) |
| 513 | return ERR_PTR(-EHOSTUNREACH); |
| 514 | |
Anderson Briglia | 15c4794 | 2011-02-21 15:09:23 -0300 | [diff] [blame] | 515 | le = hci_conn_add(hdev, LE_LINK, dst); |
Ville Tervo | fcd89c0 | 2011-02-10 22:38:47 -0300 | [diff] [blame] | 516 | if (!le) |
Ville Tervo | 30e7627 | 2011-02-22 16:10:53 -0300 | [diff] [blame] | 517 | return ERR_PTR(-ENOMEM); |
Andre Guedes | 893d675 | 2011-05-31 14:20:55 -0300 | [diff] [blame] | 518 | |
Andre Guedes | eda42b5 | 2011-05-31 14:20:56 -0300 | [diff] [blame] | 519 | le->dst_type = entry->bdaddr_type; |
| 520 | |
Andre Guedes | 893d675 | 2011-05-31 14:20:55 -0300 | [diff] [blame] | 521 | hci_le_connect(le); |
Ville Tervo | fcd89c0 | 2011-02-10 22:38:47 -0300 | [diff] [blame] | 522 | |
| 523 | hci_conn_hold(le); |
| 524 | |
| 525 | return le; |
| 526 | } |
| 527 | |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 528 | acl = hci_conn_hash_lookup_ba(hdev, ACL_LINK, dst); |
| 529 | if (!acl) { |
| 530 | acl = hci_conn_add(hdev, ACL_LINK, dst); |
| 531 | if (!acl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | return NULL; |
| 533 | } |
| 534 | |
| 535 | hci_conn_hold(acl); |
| 536 | |
Marcel Holtmann | 09ab6f4 | 2008-09-09 07:19:20 +0200 | [diff] [blame] | 537 | if (acl->state == BT_OPEN || acl->state == BT_CLOSED) { |
Johan Hedberg | 765c2a9 | 2011-01-19 12:06:52 +0530 | [diff] [blame] | 538 | acl->sec_level = BT_SECURITY_LOW; |
| 539 | acl->pending_sec_level = sec_level; |
Marcel Holtmann | 09ab6f4 | 2008-09-09 07:19:20 +0200 | [diff] [blame] | 540 | acl->auth_type = auth_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | hci_acl_connect(acl); |
Marcel Holtmann | 09ab6f4 | 2008-09-09 07:19:20 +0200 | [diff] [blame] | 542 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | |
Marcel Holtmann | 5b7f990 | 2007-07-11 09:51:55 +0200 | [diff] [blame] | 544 | if (type == ACL_LINK) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | return acl; |
Marcel Holtmann | 5b7f990 | 2007-07-11 09:51:55 +0200 | [diff] [blame] | 546 | |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 547 | sco = hci_conn_hash_lookup_ba(hdev, type, dst); |
| 548 | if (!sco) { |
| 549 | sco = hci_conn_add(hdev, type, dst); |
| 550 | if (!sco) { |
Marcel Holtmann | 5b7f990 | 2007-07-11 09:51:55 +0200 | [diff] [blame] | 551 | hci_conn_put(acl); |
| 552 | return NULL; |
| 553 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | } |
Marcel Holtmann | 5b7f990 | 2007-07-11 09:51:55 +0200 | [diff] [blame] | 555 | |
| 556 | acl->link = sco; |
| 557 | sco->link = acl; |
| 558 | |
| 559 | hci_conn_hold(sco); |
| 560 | |
| 561 | if (acl->state == BT_CONNECTED && |
Marcel Holtmann | b6a0dc8 | 2007-10-20 14:55:10 +0200 | [diff] [blame] | 562 | (sco->state == BT_OPEN || sco->state == BT_CLOSED)) { |
Nick Pelly | c390216 | 2009-11-13 14:16:32 -0800 | [diff] [blame] | 563 | acl->power_save = 1; |
Jaikumar Ganesh | 14b12d0 | 2011-05-23 18:06:04 -0700 | [diff] [blame] | 564 | hci_conn_enter_active_mode(acl, BT_POWER_FORCE_ACTIVE_ON); |
Nick Pelly | c390216 | 2009-11-13 14:16:32 -0800 | [diff] [blame] | 565 | |
Marcel Holtmann | e73439d | 2010-07-26 10:06:00 -0400 | [diff] [blame] | 566 | if (test_bit(HCI_CONN_MODE_CHANGE_PEND, &acl->pend)) { |
| 567 | /* defer SCO setup until mode change completed */ |
| 568 | set_bit(HCI_CONN_SCO_SETUP_PEND, &acl->pend); |
| 569 | return sco; |
| 570 | } |
| 571 | |
| 572 | hci_sco_setup(acl, 0x00); |
Marcel Holtmann | b6a0dc8 | 2007-10-20 14:55:10 +0200 | [diff] [blame] | 573 | } |
Marcel Holtmann | 5b7f990 | 2007-07-11 09:51:55 +0200 | [diff] [blame] | 574 | |
| 575 | return sco; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | } |
| 577 | EXPORT_SYMBOL(hci_connect); |
| 578 | |
Marcel Holtmann | e7c29cb | 2008-09-09 07:19:20 +0200 | [diff] [blame] | 579 | /* Check link security requirement */ |
| 580 | int hci_conn_check_link_mode(struct hci_conn *conn) |
| 581 | { |
| 582 | BT_DBG("conn %p", conn); |
| 583 | |
| 584 | if (conn->ssp_mode > 0 && conn->hdev->ssp_mode > 0 && |
| 585 | !(conn->link_mode & HCI_LM_ENCRYPT)) |
| 586 | return 0; |
| 587 | |
| 588 | return 1; |
| 589 | } |
| 590 | EXPORT_SYMBOL(hci_conn_check_link_mode); |
| 591 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | /* Authenticate remote device */ |
Marcel Holtmann | 0684e5f | 2009-02-09 02:48:38 +0100 | [diff] [blame] | 593 | static int hci_conn_auth(struct hci_conn *conn, __u8 sec_level, __u8 auth_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | { |
| 595 | BT_DBG("conn %p", conn); |
| 596 | |
Johan Hedberg | 765c2a9 | 2011-01-19 12:06:52 +0530 | [diff] [blame] | 597 | if (conn->pending_sec_level > sec_level) |
| 598 | sec_level = conn->pending_sec_level; |
| 599 | |
Marcel Holtmann | 96a3183 | 2009-02-12 16:23:03 +0100 | [diff] [blame] | 600 | if (sec_level > conn->sec_level) |
Johan Hedberg | 765c2a9 | 2011-01-19 12:06:52 +0530 | [diff] [blame] | 601 | conn->pending_sec_level = sec_level; |
Marcel Holtmann | 96a3183 | 2009-02-12 16:23:03 +0100 | [diff] [blame] | 602 | else if (conn->link_mode & HCI_LM_AUTH) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | return 1; |
| 604 | |
Johan Hedberg | 65cf686 | 2011-01-19 12:06:49 +0530 | [diff] [blame] | 605 | /* Make sure we preserve an existing MITM requirement*/ |
| 606 | auth_type |= (conn->auth_type & 0x01); |
| 607 | |
Marcel Holtmann | 96a3183 | 2009-02-12 16:23:03 +0100 | [diff] [blame] | 608 | conn->auth_type = auth_type; |
| 609 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->pend)) { |
| 611 | struct hci_cp_auth_requested cp; |
YOSHIFUJI Hideaki | aca3192 | 2007-03-25 20:12:50 -0700 | [diff] [blame] | 612 | cp.handle = cpu_to_le16(conn->handle); |
Marcel Holtmann | 40be492 | 2008-07-14 20:13:50 +0200 | [diff] [blame] | 613 | hci_send_cmd(conn->hdev, HCI_OP_AUTH_REQUESTED, |
| 614 | sizeof(cp), &cp); |
Waldemar Rymarkiewicz | 19f8def | 2011-05-31 15:49:25 +0200 | [diff] [blame] | 615 | if (conn->key_type != 0xff) |
| 616 | set_bit(HCI_CONN_REAUTH_PEND, &conn->pend); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | } |
Marcel Holtmann | 8c1b235 | 2009-01-15 21:58:04 +0100 | [diff] [blame] | 618 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | return 0; |
| 620 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | |
Waldemar Rymarkiewicz | 13d3931 | 2011-04-28 12:07:55 +0200 | [diff] [blame] | 622 | /* Encrypt the the link */ |
| 623 | static void hci_conn_encrypt(struct hci_conn *conn) |
| 624 | { |
| 625 | BT_DBG("conn %p", conn); |
| 626 | |
| 627 | if (!test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &conn->pend)) { |
| 628 | struct hci_cp_set_conn_encrypt cp; |
| 629 | cp.handle = cpu_to_le16(conn->handle); |
| 630 | cp.encrypt = 0x01; |
| 631 | hci_send_cmd(conn->hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp), |
| 632 | &cp); |
| 633 | } |
| 634 | } |
| 635 | |
Marcel Holtmann | 8c1b235 | 2009-01-15 21:58:04 +0100 | [diff] [blame] | 636 | /* Enable security */ |
Marcel Holtmann | 0684e5f | 2009-02-09 02:48:38 +0100 | [diff] [blame] | 637 | int hci_conn_security(struct hci_conn *conn, __u8 sec_level, __u8 auth_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | { |
| 639 | BT_DBG("conn %p", conn); |
| 640 | |
Waldemar Rymarkiewicz | 13d3931 | 2011-04-28 12:07:55 +0200 | [diff] [blame] | 641 | /* For sdp we don't need the link key. */ |
Marcel Holtmann | 8c1b235 | 2009-01-15 21:58:04 +0100 | [diff] [blame] | 642 | if (sec_level == BT_SECURITY_SDP) |
| 643 | return 1; |
| 644 | |
Waldemar Rymarkiewicz | 13d3931 | 2011-04-28 12:07:55 +0200 | [diff] [blame] | 645 | /* For non 2.1 devices and low security level we don't need the link |
| 646 | key. */ |
Marcel Holtmann | 3fdca1e | 2009-04-28 09:04:55 -0700 | [diff] [blame] | 647 | if (sec_level == BT_SECURITY_LOW && |
| 648 | (!conn->ssp_mode || !conn->hdev->ssp_mode)) |
| 649 | return 1; |
Marcel Holtmann | 8c1b235 | 2009-01-15 21:58:04 +0100 | [diff] [blame] | 650 | |
Waldemar Rymarkiewicz | 13d3931 | 2011-04-28 12:07:55 +0200 | [diff] [blame] | 651 | /* For other security levels we need the link key. */ |
| 652 | if (!(conn->link_mode & HCI_LM_AUTH)) |
| 653 | goto auth; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | |
Waldemar Rymarkiewicz | 13d3931 | 2011-04-28 12:07:55 +0200 | [diff] [blame] | 655 | /* An authenticated combination key has sufficient security for any |
| 656 | security level. */ |
| 657 | if (conn->key_type == HCI_LK_AUTH_COMBINATION) |
| 658 | goto encrypt; |
| 659 | |
| 660 | /* An unauthenticated combination key has sufficient security for |
| 661 | security level 1 and 2. */ |
| 662 | if (conn->key_type == HCI_LK_UNAUTH_COMBINATION && |
| 663 | (sec_level == BT_SECURITY_MEDIUM || |
| 664 | sec_level == BT_SECURITY_LOW)) |
| 665 | goto encrypt; |
| 666 | |
| 667 | /* A combination key has always sufficient security for the security |
| 668 | levels 1 or 2. High security level requires the combination key |
| 669 | is generated using maximum PIN code length (16). |
| 670 | For pre 2.1 units. */ |
| 671 | if (conn->key_type == HCI_LK_COMBINATION && |
| 672 | (sec_level != BT_SECURITY_HIGH || |
| 673 | conn->pin_length == 16)) |
| 674 | goto encrypt; |
| 675 | |
| 676 | auth: |
Arek Lichwa | 4dff523 | 2011-10-26 11:23:22 +0200 | [diff] [blame] | 677 | if (test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &conn->pend)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | return 0; |
| 679 | |
Luiz Augusto von Dentz | 6fdf658 | 2011-06-13 15:37:35 +0300 | [diff] [blame] | 680 | if (!hci_conn_auth(conn, sec_level, auth_type)) |
| 681 | return 0; |
Marcel Holtmann | 8c1b235 | 2009-01-15 21:58:04 +0100 | [diff] [blame] | 682 | |
Waldemar Rymarkiewicz | 13d3931 | 2011-04-28 12:07:55 +0200 | [diff] [blame] | 683 | encrypt: |
| 684 | if (conn->link_mode & HCI_LM_ENCRYPT) |
| 685 | return 1; |
| 686 | |
| 687 | hci_conn_encrypt(conn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | return 0; |
| 689 | } |
Marcel Holtmann | 8c1b235 | 2009-01-15 21:58:04 +0100 | [diff] [blame] | 690 | EXPORT_SYMBOL(hci_conn_security); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | |
Waldemar Rymarkiewicz | b3b1b06 | 2011-05-06 09:42:31 +0200 | [diff] [blame] | 692 | /* Check secure link requirement */ |
| 693 | int hci_conn_check_secure(struct hci_conn *conn, __u8 sec_level) |
| 694 | { |
| 695 | BT_DBG("conn %p", conn); |
| 696 | |
| 697 | if (sec_level != BT_SECURITY_HIGH) |
| 698 | return 1; /* Accept if non-secure is required */ |
| 699 | |
Waldemar Rymarkiewicz | ef4177e | 2011-06-02 14:24:52 +0200 | [diff] [blame] | 700 | if (conn->sec_level == BT_SECURITY_HIGH) |
Waldemar Rymarkiewicz | b3b1b06 | 2011-05-06 09:42:31 +0200 | [diff] [blame] | 701 | return 1; |
| 702 | |
| 703 | return 0; /* Reject not secure link */ |
| 704 | } |
| 705 | EXPORT_SYMBOL(hci_conn_check_secure); |
| 706 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | /* Change link key */ |
| 708 | int hci_conn_change_link_key(struct hci_conn *conn) |
| 709 | { |
| 710 | BT_DBG("conn %p", conn); |
| 711 | |
| 712 | if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->pend)) { |
| 713 | struct hci_cp_change_conn_link_key cp; |
YOSHIFUJI Hideaki | aca3192 | 2007-03-25 20:12:50 -0700 | [diff] [blame] | 714 | cp.handle = cpu_to_le16(conn->handle); |
Marcel Holtmann | 40be492 | 2008-07-14 20:13:50 +0200 | [diff] [blame] | 715 | hci_send_cmd(conn->hdev, HCI_OP_CHANGE_CONN_LINK_KEY, |
| 716 | sizeof(cp), &cp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | } |
Marcel Holtmann | 8c1b235 | 2009-01-15 21:58:04 +0100 | [diff] [blame] | 718 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | return 0; |
| 720 | } |
| 721 | EXPORT_SYMBOL(hci_conn_change_link_key); |
| 722 | |
| 723 | /* Switch role */ |
Marcel Holtmann | 8c1b235 | 2009-01-15 21:58:04 +0100 | [diff] [blame] | 724 | int hci_conn_switch_role(struct hci_conn *conn, __u8 role) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | { |
| 726 | BT_DBG("conn %p", conn); |
| 727 | |
| 728 | if (!role && conn->link_mode & HCI_LM_MASTER) |
| 729 | return 1; |
| 730 | |
| 731 | if (!test_and_set_bit(HCI_CONN_RSWITCH_PEND, &conn->pend)) { |
| 732 | struct hci_cp_switch_role cp; |
| 733 | bacpy(&cp.bdaddr, &conn->dst); |
| 734 | cp.role = role; |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 735 | hci_send_cmd(conn->hdev, HCI_OP_SWITCH_ROLE, sizeof(cp), &cp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | } |
Marcel Holtmann | 8c1b235 | 2009-01-15 21:58:04 +0100 | [diff] [blame] | 737 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | return 0; |
| 739 | } |
| 740 | EXPORT_SYMBOL(hci_conn_switch_role); |
| 741 | |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 742 | /* Enter active mode */ |
Jaikumar Ganesh | 14b12d0 | 2011-05-23 18:06:04 -0700 | [diff] [blame] | 743 | void hci_conn_enter_active_mode(struct hci_conn *conn, __u8 force_active) |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 744 | { |
| 745 | struct hci_dev *hdev = conn->hdev; |
| 746 | |
| 747 | BT_DBG("conn %p mode %d", conn, conn->mode); |
| 748 | |
| 749 | if (test_bit(HCI_RAW, &hdev->flags)) |
| 750 | return; |
| 751 | |
Jaikumar Ganesh | 14b12d0 | 2011-05-23 18:06:04 -0700 | [diff] [blame] | 752 | if (conn->mode != HCI_CM_SNIFF) |
| 753 | goto timer; |
| 754 | |
| 755 | if (!conn->power_save && !force_active) |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 756 | goto timer; |
| 757 | |
| 758 | if (!test_and_set_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->pend)) { |
| 759 | struct hci_cp_exit_sniff_mode cp; |
YOSHIFUJI Hideaki | aca3192 | 2007-03-25 20:12:50 -0700 | [diff] [blame] | 760 | cp.handle = cpu_to_le16(conn->handle); |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 761 | hci_send_cmd(hdev, HCI_OP_EXIT_SNIFF_MODE, sizeof(cp), &cp); |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 762 | } |
| 763 | |
| 764 | timer: |
| 765 | if (hdev->idle_timeout > 0) |
| 766 | mod_timer(&conn->idle_timer, |
| 767 | jiffies + msecs_to_jiffies(hdev->idle_timeout)); |
| 768 | } |
| 769 | |
| 770 | /* Enter sniff mode */ |
| 771 | void hci_conn_enter_sniff_mode(struct hci_conn *conn) |
| 772 | { |
| 773 | struct hci_dev *hdev = conn->hdev; |
| 774 | |
| 775 | BT_DBG("conn %p mode %d", conn, conn->mode); |
| 776 | |
| 777 | if (test_bit(HCI_RAW, &hdev->flags)) |
| 778 | return; |
| 779 | |
| 780 | if (!lmp_sniff_capable(hdev) || !lmp_sniff_capable(conn)) |
| 781 | return; |
| 782 | |
| 783 | if (conn->mode != HCI_CM_ACTIVE || !(conn->link_policy & HCI_LP_SNIFF)) |
| 784 | return; |
| 785 | |
| 786 | if (lmp_sniffsubr_capable(hdev) && lmp_sniffsubr_capable(conn)) { |
| 787 | struct hci_cp_sniff_subrate cp; |
YOSHIFUJI Hideaki | aca3192 | 2007-03-25 20:12:50 -0700 | [diff] [blame] | 788 | cp.handle = cpu_to_le16(conn->handle); |
| 789 | cp.max_latency = cpu_to_le16(0); |
| 790 | cp.min_remote_timeout = cpu_to_le16(0); |
| 791 | cp.min_local_timeout = cpu_to_le16(0); |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 792 | hci_send_cmd(hdev, HCI_OP_SNIFF_SUBRATE, sizeof(cp), &cp); |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 793 | } |
| 794 | |
| 795 | if (!test_and_set_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->pend)) { |
| 796 | struct hci_cp_sniff_mode cp; |
YOSHIFUJI Hideaki | aca3192 | 2007-03-25 20:12:50 -0700 | [diff] [blame] | 797 | cp.handle = cpu_to_le16(conn->handle); |
| 798 | cp.max_interval = cpu_to_le16(hdev->sniff_max_interval); |
| 799 | cp.min_interval = cpu_to_le16(hdev->sniff_min_interval); |
| 800 | cp.attempt = cpu_to_le16(4); |
| 801 | cp.timeout = cpu_to_le16(1); |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 802 | hci_send_cmd(hdev, HCI_OP_SNIFF_MODE, sizeof(cp), &cp); |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 803 | } |
| 804 | } |
| 805 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | /* Drop all connection on the device */ |
| 807 | void hci_conn_hash_flush(struct hci_dev *hdev) |
| 808 | { |
| 809 | struct hci_conn_hash *h = &hdev->conn_hash; |
Gustavo F. Padovan | 3e9c40a | 2011-12-14 22:52:31 -0200 | [diff] [blame^] | 810 | struct hci_conn *c; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | |
| 812 | BT_DBG("hdev %s", hdev->name); |
| 813 | |
Gustavo F. Padovan | 3e9c40a | 2011-12-14 22:52:31 -0200 | [diff] [blame^] | 814 | list_for_each_entry(c, &h->list, list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | c->state = BT_CLOSED; |
| 816 | |
Andrei Emeltchenko | 9f5a0d7 | 2011-11-07 14:20:25 +0200 | [diff] [blame] | 817 | hci_proto_disconn_cfm(c, HCI_ERROR_LOCAL_HOST_TERM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | hci_conn_del(c); |
| 819 | } |
| 820 | } |
| 821 | |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 822 | /* Check pending connect attempts */ |
| 823 | void hci_conn_check_pending(struct hci_dev *hdev) |
| 824 | { |
| 825 | struct hci_conn *conn; |
| 826 | |
| 827 | BT_DBG("hdev %s", hdev->name); |
| 828 | |
| 829 | hci_dev_lock(hdev); |
| 830 | |
| 831 | conn = hci_conn_hash_lookup_state(hdev, ACL_LINK, BT_CONNECT2); |
| 832 | if (conn) |
| 833 | hci_acl_connect(conn); |
| 834 | |
| 835 | hci_dev_unlock(hdev); |
| 836 | } |
| 837 | |
Marcel Holtmann | 9eba32b | 2009-08-22 14:19:26 -0700 | [diff] [blame] | 838 | void hci_conn_hold_device(struct hci_conn *conn) |
| 839 | { |
| 840 | atomic_inc(&conn->devref); |
| 841 | } |
| 842 | EXPORT_SYMBOL(hci_conn_hold_device); |
| 843 | |
| 844 | void hci_conn_put_device(struct hci_conn *conn) |
| 845 | { |
| 846 | if (atomic_dec_and_test(&conn->devref)) |
| 847 | hci_conn_del_sysfs(conn); |
| 848 | } |
| 849 | EXPORT_SYMBOL(hci_conn_put_device); |
| 850 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | int hci_get_conn_list(void __user *arg) |
| 852 | { |
Luiz Augusto von Dentz | 8035ded | 2011-11-01 10:58:56 +0200 | [diff] [blame] | 853 | register struct hci_conn *c; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | struct hci_conn_list_req req, *cl; |
| 855 | struct hci_conn_info *ci; |
| 856 | struct hci_dev *hdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | int n = 0, size, err; |
| 858 | |
| 859 | if (copy_from_user(&req, arg, sizeof(req))) |
| 860 | return -EFAULT; |
| 861 | |
| 862 | if (!req.conn_num || req.conn_num > (PAGE_SIZE * 2) / sizeof(*ci)) |
| 863 | return -EINVAL; |
| 864 | |
| 865 | size = sizeof(req) + req.conn_num * sizeof(*ci); |
| 866 | |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 867 | cl = kmalloc(size, GFP_KERNEL); |
| 868 | if (!cl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | return -ENOMEM; |
| 870 | |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 871 | hdev = hci_dev_get(req.dev_id); |
| 872 | if (!hdev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | kfree(cl); |
| 874 | return -ENODEV; |
| 875 | } |
| 876 | |
| 877 | ci = cl->conn_info; |
| 878 | |
| 879 | hci_dev_lock_bh(hdev); |
Luiz Augusto von Dentz | 8035ded | 2011-11-01 10:58:56 +0200 | [diff] [blame] | 880 | list_for_each_entry(c, &hdev->conn_hash.list, list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | bacpy(&(ci + n)->bdaddr, &c->dst); |
| 882 | (ci + n)->handle = c->handle; |
| 883 | (ci + n)->type = c->type; |
| 884 | (ci + n)->out = c->out; |
| 885 | (ci + n)->state = c->state; |
| 886 | (ci + n)->link_mode = c->link_mode; |
| 887 | if (++n >= req.conn_num) |
| 888 | break; |
| 889 | } |
| 890 | hci_dev_unlock_bh(hdev); |
| 891 | |
| 892 | cl->dev_id = hdev->id; |
| 893 | cl->conn_num = n; |
| 894 | size = sizeof(req) + n * sizeof(*ci); |
| 895 | |
| 896 | hci_dev_put(hdev); |
| 897 | |
| 898 | err = copy_to_user(arg, cl, size); |
| 899 | kfree(cl); |
| 900 | |
| 901 | return err ? -EFAULT : 0; |
| 902 | } |
| 903 | |
| 904 | int hci_get_conn_info(struct hci_dev *hdev, void __user *arg) |
| 905 | { |
| 906 | struct hci_conn_info_req req; |
| 907 | struct hci_conn_info ci; |
| 908 | struct hci_conn *conn; |
| 909 | char __user *ptr = arg + sizeof(req); |
| 910 | |
| 911 | if (copy_from_user(&req, arg, sizeof(req))) |
| 912 | return -EFAULT; |
| 913 | |
| 914 | hci_dev_lock_bh(hdev); |
| 915 | conn = hci_conn_hash_lookup_ba(hdev, req.type, &req.bdaddr); |
| 916 | if (conn) { |
| 917 | bacpy(&ci.bdaddr, &conn->dst); |
| 918 | ci.handle = conn->handle; |
| 919 | ci.type = conn->type; |
| 920 | ci.out = conn->out; |
| 921 | ci.state = conn->state; |
| 922 | ci.link_mode = conn->link_mode; |
| 923 | } |
| 924 | hci_dev_unlock_bh(hdev); |
| 925 | |
| 926 | if (!conn) |
| 927 | return -ENOENT; |
| 928 | |
| 929 | return copy_to_user(ptr, &ci, sizeof(ci)) ? -EFAULT : 0; |
| 930 | } |
Marcel Holtmann | 40be492 | 2008-07-14 20:13:50 +0200 | [diff] [blame] | 931 | |
| 932 | int hci_get_auth_info(struct hci_dev *hdev, void __user *arg) |
| 933 | { |
| 934 | struct hci_auth_info_req req; |
| 935 | struct hci_conn *conn; |
| 936 | |
| 937 | if (copy_from_user(&req, arg, sizeof(req))) |
| 938 | return -EFAULT; |
| 939 | |
| 940 | hci_dev_lock_bh(hdev); |
| 941 | conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &req.bdaddr); |
| 942 | if (conn) |
| 943 | req.type = conn->auth_type; |
| 944 | hci_dev_unlock_bh(hdev); |
| 945 | |
| 946 | if (!conn) |
| 947 | return -ENOENT; |
| 948 | |
| 949 | return copy_to_user(arg, &req, sizeof(req)) ? -EFAULT : 0; |
| 950 | } |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 951 | |
| 952 | struct hci_chan *hci_chan_create(struct hci_conn *conn) |
| 953 | { |
| 954 | struct hci_dev *hdev = conn->hdev; |
| 955 | struct hci_chan *chan; |
| 956 | |
| 957 | BT_DBG("%s conn %p", hdev->name, conn); |
| 958 | |
| 959 | chan = kzalloc(sizeof(struct hci_chan), GFP_ATOMIC); |
| 960 | if (!chan) |
| 961 | return NULL; |
| 962 | |
| 963 | chan->conn = conn; |
| 964 | skb_queue_head_init(&chan->data_q); |
| 965 | |
| 966 | tasklet_disable(&hdev->tx_task); |
Gustavo F. Padovan | 2c33c06 | 2011-12-14 13:02:51 -0200 | [diff] [blame] | 967 | list_add(&conn->chan_list, &chan->list); |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 968 | tasklet_enable(&hdev->tx_task); |
| 969 | |
| 970 | return chan; |
| 971 | } |
| 972 | |
| 973 | int hci_chan_del(struct hci_chan *chan) |
| 974 | { |
| 975 | struct hci_conn *conn = chan->conn; |
| 976 | struct hci_dev *hdev = conn->hdev; |
| 977 | |
| 978 | BT_DBG("%s conn %p chan %p", hdev->name, conn, chan); |
| 979 | |
| 980 | tasklet_disable(&hdev->tx_task); |
Gustavo F. Padovan | 2c33c06 | 2011-12-14 13:02:51 -0200 | [diff] [blame] | 981 | list_del(&chan->list); |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 982 | tasklet_enable(&hdev->tx_task); |
| 983 | |
| 984 | skb_queue_purge(&chan->data_q); |
| 985 | kfree(chan); |
| 986 | |
| 987 | return 0; |
| 988 | } |
| 989 | |
Gustavo F. Padovan | 2c33c06 | 2011-12-14 13:02:51 -0200 | [diff] [blame] | 990 | void hci_chan_list_flush(struct hci_conn *conn) |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 991 | { |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 992 | struct hci_chan *chan, *tmp; |
| 993 | |
| 994 | BT_DBG("conn %p", conn); |
| 995 | |
Gustavo F. Padovan | 2c33c06 | 2011-12-14 13:02:51 -0200 | [diff] [blame] | 996 | list_for_each_entry_safe(chan, tmp, &conn->chan_list, list) |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 997 | hci_chan_del(chan); |
| 998 | } |