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