| 
									
										
										
										
											2010-12-08 00:21:06 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |    BlueZ - Bluetooth protocol stack for Linux | 
					
						
							| 
									
										
										
										
											2012-02-17 14:50:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:06 +02:00
										 |  |  |    Copyright (C) 2010  Nokia Corporation | 
					
						
							| 
									
										
										
										
											2012-02-17 14:50:39 +02:00
										 |  |  |    Copyright (C) 2011-2012 Intel Corporation | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:06 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |    This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |    it under the terms of the GNU General Public License version 2 as | 
					
						
							|  |  |  |    published by the Free Software Foundation; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | 
					
						
							|  |  |  |    OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. | 
					
						
							|  |  |  |    IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY | 
					
						
							|  |  |  |    CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES | 
					
						
							|  |  |  |    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
					
						
							|  |  |  |    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 
					
						
							|  |  |  |    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, | 
					
						
							|  |  |  |    COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS | 
					
						
							|  |  |  |    SOFTWARE IS DISCLAIMED. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Bluetooth HCI Management interface */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-27 09:12:25 -04:00
										 |  |  | #include <linux/module.h>
 | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:06 +02:00
										 |  |  | #include <asm/unaligned.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <net/bluetooth/bluetooth.h>
 | 
					
						
							|  |  |  | #include <net/bluetooth/hci_core.h>
 | 
					
						
							| 
									
										
										
										
											2014-05-20 09:45:47 +03:00
										 |  |  | #include <net/bluetooth/l2cap.h>
 | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:06 +02:00
										 |  |  | #include <net/bluetooth/mgmt.h>
 | 
					
						
							| 
									
										
										
										
											2013-10-10 14:54:16 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "smp.h"
 | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-17 14:39:28 +02:00
										 |  |  | #define MGMT_VERSION	1
 | 
					
						
							| 
									
										
										
										
											2014-06-28 12:36:10 +02:00
										 |  |  | #define MGMT_REVISION	7
 | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:04 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-13 16:59:33 +02:00
										 |  |  | static const u16 mgmt_commands[] = { | 
					
						
							|  |  |  | 	MGMT_OP_READ_INDEX_LIST, | 
					
						
							|  |  |  | 	MGMT_OP_READ_INFO, | 
					
						
							|  |  |  | 	MGMT_OP_SET_POWERED, | 
					
						
							|  |  |  | 	MGMT_OP_SET_DISCOVERABLE, | 
					
						
							|  |  |  | 	MGMT_OP_SET_CONNECTABLE, | 
					
						
							|  |  |  | 	MGMT_OP_SET_FAST_CONNECTABLE, | 
					
						
							| 
									
										
										
										
											2014-07-30 09:22:23 +03:00
										 |  |  | 	MGMT_OP_SET_BONDABLE, | 
					
						
							| 
									
										
										
										
											2012-02-13 16:59:33 +02:00
										 |  |  | 	MGMT_OP_SET_LINK_SECURITY, | 
					
						
							|  |  |  | 	MGMT_OP_SET_SSP, | 
					
						
							|  |  |  | 	MGMT_OP_SET_HS, | 
					
						
							|  |  |  | 	MGMT_OP_SET_LE, | 
					
						
							|  |  |  | 	MGMT_OP_SET_DEV_CLASS, | 
					
						
							|  |  |  | 	MGMT_OP_SET_LOCAL_NAME, | 
					
						
							|  |  |  | 	MGMT_OP_ADD_UUID, | 
					
						
							|  |  |  | 	MGMT_OP_REMOVE_UUID, | 
					
						
							|  |  |  | 	MGMT_OP_LOAD_LINK_KEYS, | 
					
						
							|  |  |  | 	MGMT_OP_LOAD_LONG_TERM_KEYS, | 
					
						
							|  |  |  | 	MGMT_OP_DISCONNECT, | 
					
						
							|  |  |  | 	MGMT_OP_GET_CONNECTIONS, | 
					
						
							|  |  |  | 	MGMT_OP_PIN_CODE_REPLY, | 
					
						
							|  |  |  | 	MGMT_OP_PIN_CODE_NEG_REPLY, | 
					
						
							|  |  |  | 	MGMT_OP_SET_IO_CAPABILITY, | 
					
						
							|  |  |  | 	MGMT_OP_PAIR_DEVICE, | 
					
						
							|  |  |  | 	MGMT_OP_CANCEL_PAIR_DEVICE, | 
					
						
							|  |  |  | 	MGMT_OP_UNPAIR_DEVICE, | 
					
						
							|  |  |  | 	MGMT_OP_USER_CONFIRM_REPLY, | 
					
						
							|  |  |  | 	MGMT_OP_USER_CONFIRM_NEG_REPLY, | 
					
						
							|  |  |  | 	MGMT_OP_USER_PASSKEY_REPLY, | 
					
						
							|  |  |  | 	MGMT_OP_USER_PASSKEY_NEG_REPLY, | 
					
						
							|  |  |  | 	MGMT_OP_READ_LOCAL_OOB_DATA, | 
					
						
							|  |  |  | 	MGMT_OP_ADD_REMOTE_OOB_DATA, | 
					
						
							|  |  |  | 	MGMT_OP_REMOVE_REMOTE_OOB_DATA, | 
					
						
							|  |  |  | 	MGMT_OP_START_DISCOVERY, | 
					
						
							|  |  |  | 	MGMT_OP_STOP_DISCOVERY, | 
					
						
							|  |  |  | 	MGMT_OP_CONFIRM_NAME, | 
					
						
							|  |  |  | 	MGMT_OP_BLOCK_DEVICE, | 
					
						
							|  |  |  | 	MGMT_OP_UNBLOCK_DEVICE, | 
					
						
							| 
									
										
										
										
											2012-03-11 20:00:29 -07:00
										 |  |  | 	MGMT_OP_SET_DEVICE_ID, | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:10 +03:00
										 |  |  | 	MGMT_OP_SET_ADVERTISING, | 
					
						
							| 
									
										
										
										
											2013-10-02 13:43:14 +03:00
										 |  |  | 	MGMT_OP_SET_BREDR, | 
					
						
							| 
									
										
										
										
											2013-10-02 04:41:30 -07:00
										 |  |  | 	MGMT_OP_SET_STATIC_ADDRESS, | 
					
						
							| 
									
										
										
										
											2013-10-11 14:44:58 -07:00
										 |  |  | 	MGMT_OP_SET_SCAN_PARAMS, | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:22 -08:00
										 |  |  | 	MGMT_OP_SET_SECURE_CONN, | 
					
						
							| 
									
										
										
										
											2014-01-31 11:55:22 -08:00
										 |  |  | 	MGMT_OP_SET_DEBUG_KEYS, | 
					
						
							| 
									
										
										
										
											2014-02-23 19:42:27 +02:00
										 |  |  | 	MGMT_OP_SET_PRIVACY, | 
					
						
							| 
									
										
										
										
											2014-02-18 10:19:35 +02:00
										 |  |  | 	MGMT_OP_LOAD_IRKS, | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:03 +02:00
										 |  |  | 	MGMT_OP_GET_CONN_INFO, | 
					
						
							| 
									
										
										
										
											2014-06-28 17:54:07 +03:00
										 |  |  | 	MGMT_OP_GET_CLOCK_INFO, | 
					
						
							| 
									
										
										
										
											2014-06-29 19:44:03 +02:00
										 |  |  | 	MGMT_OP_ADD_DEVICE, | 
					
						
							|  |  |  | 	MGMT_OP_REMOVE_DEVICE, | 
					
						
							| 
									
										
										
										
											2014-07-02 17:37:29 +03:00
										 |  |  | 	MGMT_OP_LOAD_CONN_PARAM, | 
					
						
							| 
									
										
										
										
											2014-07-02 22:10:52 +02:00
										 |  |  | 	MGMT_OP_READ_UNCONF_INDEX_LIST, | 
					
						
							| 
									
										
										
										
											2014-07-04 00:46:56 +02:00
										 |  |  | 	MGMT_OP_READ_CONFIG_INFO, | 
					
						
							| 
									
										
										
										
											2014-07-04 18:11:55 +02:00
										 |  |  | 	MGMT_OP_SET_EXTERNAL_CONFIG, | 
					
						
							| 
									
										
										
										
											2014-07-06 12:11:15 +02:00
										 |  |  | 	MGMT_OP_SET_PUBLIC_ADDRESS, | 
					
						
							| 
									
										
										
										
											2012-02-13 16:59:33 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const u16 mgmt_events[] = { | 
					
						
							|  |  |  | 	MGMT_EV_CONTROLLER_ERROR, | 
					
						
							|  |  |  | 	MGMT_EV_INDEX_ADDED, | 
					
						
							|  |  |  | 	MGMT_EV_INDEX_REMOVED, | 
					
						
							|  |  |  | 	MGMT_EV_NEW_SETTINGS, | 
					
						
							|  |  |  | 	MGMT_EV_CLASS_OF_DEV_CHANGED, | 
					
						
							|  |  |  | 	MGMT_EV_LOCAL_NAME_CHANGED, | 
					
						
							|  |  |  | 	MGMT_EV_NEW_LINK_KEY, | 
					
						
							|  |  |  | 	MGMT_EV_NEW_LONG_TERM_KEY, | 
					
						
							|  |  |  | 	MGMT_EV_DEVICE_CONNECTED, | 
					
						
							|  |  |  | 	MGMT_EV_DEVICE_DISCONNECTED, | 
					
						
							|  |  |  | 	MGMT_EV_CONNECT_FAILED, | 
					
						
							|  |  |  | 	MGMT_EV_PIN_CODE_REQUEST, | 
					
						
							|  |  |  | 	MGMT_EV_USER_CONFIRM_REQUEST, | 
					
						
							|  |  |  | 	MGMT_EV_USER_PASSKEY_REQUEST, | 
					
						
							|  |  |  | 	MGMT_EV_AUTH_FAILED, | 
					
						
							|  |  |  | 	MGMT_EV_DEVICE_FOUND, | 
					
						
							|  |  |  | 	MGMT_EV_DISCOVERING, | 
					
						
							|  |  |  | 	MGMT_EV_DEVICE_BLOCKED, | 
					
						
							|  |  |  | 	MGMT_EV_DEVICE_UNBLOCKED, | 
					
						
							|  |  |  | 	MGMT_EV_DEVICE_UNPAIRED, | 
					
						
							| 
									
										
										
										
											2012-09-06 18:39:26 +03:00
										 |  |  | 	MGMT_EV_PASSKEY_NOTIFY, | 
					
						
							| 
									
										
										
										
											2014-02-21 21:35:30 -08:00
										 |  |  | 	MGMT_EV_NEW_IRK, | 
					
						
							| 
									
										
										
										
											2014-03-09 12:19:17 -07:00
										 |  |  | 	MGMT_EV_NEW_CSRK, | 
					
						
							| 
									
										
										
										
											2014-06-29 22:28:34 +02:00
										 |  |  | 	MGMT_EV_DEVICE_ADDED, | 
					
						
							|  |  |  | 	MGMT_EV_DEVICE_REMOVED, | 
					
						
							| 
									
										
										
										
											2014-07-01 18:10:11 -03:00
										 |  |  | 	MGMT_EV_NEW_CONN_PARAM, | 
					
						
							| 
									
										
										
										
											2014-07-02 21:30:54 +02:00
										 |  |  | 	MGMT_EV_UNCONF_INDEX_ADDED, | 
					
						
							| 
									
										
										
										
											2014-07-02 21:30:55 +02:00
										 |  |  | 	MGMT_EV_UNCONF_INDEX_REMOVED, | 
					
						
							| 
									
										
										
										
											2014-07-04 19:06:23 +02:00
										 |  |  | 	MGMT_EV_NEW_CONFIG_OPTIONS, | 
					
						
							| 
									
										
										
										
											2012-02-13 16:59:33 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-01 14:32:37 -08:00
										 |  |  | #define CACHE_TIMEOUT	msecs_to_jiffies(2 * 1000)
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | struct pending_cmd { | 
					
						
							|  |  |  | 	struct list_head list; | 
					
						
							| 
									
										
										
										
											2011-11-09 13:58:56 +02:00
										 |  |  | 	u16 opcode; | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 	int index; | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:19 +01:00
										 |  |  | 	void *param; | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 	struct sock *sk; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | 	void *user_data; | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-11 18:10:00 +02:00
										 |  |  | /* HCI to MGMT error code conversion table */ | 
					
						
							|  |  |  | static u8 mgmt_status_table[] = { | 
					
						
							|  |  |  | 	MGMT_STATUS_SUCCESS, | 
					
						
							|  |  |  | 	MGMT_STATUS_UNKNOWN_COMMAND,	/* Unknown Command */ | 
					
						
							|  |  |  | 	MGMT_STATUS_NOT_CONNECTED,	/* No Connection */ | 
					
						
							|  |  |  | 	MGMT_STATUS_FAILED,		/* Hardware Failure */ | 
					
						
							|  |  |  | 	MGMT_STATUS_CONNECT_FAILED,	/* Page Timeout */ | 
					
						
							|  |  |  | 	MGMT_STATUS_AUTH_FAILED,	/* Authentication Failed */ | 
					
						
							| 
									
										
										
										
											2014-01-13 17:15:53 +02:00
										 |  |  | 	MGMT_STATUS_AUTH_FAILED,	/* PIN or Key Missing */ | 
					
						
							| 
									
										
										
										
											2011-11-11 18:10:00 +02:00
										 |  |  | 	MGMT_STATUS_NO_RESOURCES,	/* Memory Full */ | 
					
						
							|  |  |  | 	MGMT_STATUS_TIMEOUT,		/* Connection Timeout */ | 
					
						
							|  |  |  | 	MGMT_STATUS_NO_RESOURCES,	/* Max Number of Connections */ | 
					
						
							|  |  |  | 	MGMT_STATUS_NO_RESOURCES,	/* Max Number of SCO Connections */ | 
					
						
							|  |  |  | 	MGMT_STATUS_ALREADY_CONNECTED,	/* ACL Connection Exists */ | 
					
						
							|  |  |  | 	MGMT_STATUS_BUSY,		/* Command Disallowed */ | 
					
						
							|  |  |  | 	MGMT_STATUS_NO_RESOURCES,	/* Rejected Limited Resources */ | 
					
						
							|  |  |  | 	MGMT_STATUS_REJECTED,		/* Rejected Security */ | 
					
						
							|  |  |  | 	MGMT_STATUS_REJECTED,		/* Rejected Personal */ | 
					
						
							|  |  |  | 	MGMT_STATUS_TIMEOUT,		/* Host Timeout */ | 
					
						
							|  |  |  | 	MGMT_STATUS_NOT_SUPPORTED,	/* Unsupported Feature */ | 
					
						
							|  |  |  | 	MGMT_STATUS_INVALID_PARAMS,	/* Invalid Parameters */ | 
					
						
							|  |  |  | 	MGMT_STATUS_DISCONNECTED,	/* OE User Ended Connection */ | 
					
						
							|  |  |  | 	MGMT_STATUS_NO_RESOURCES,	/* OE Low Resources */ | 
					
						
							|  |  |  | 	MGMT_STATUS_DISCONNECTED,	/* OE Power Off */ | 
					
						
							|  |  |  | 	MGMT_STATUS_DISCONNECTED,	/* Connection Terminated */ | 
					
						
							|  |  |  | 	MGMT_STATUS_BUSY,		/* Repeated Attempts */ | 
					
						
							|  |  |  | 	MGMT_STATUS_REJECTED,		/* Pairing Not Allowed */ | 
					
						
							|  |  |  | 	MGMT_STATUS_FAILED,		/* Unknown LMP PDU */ | 
					
						
							|  |  |  | 	MGMT_STATUS_NOT_SUPPORTED,	/* Unsupported Remote Feature */ | 
					
						
							|  |  |  | 	MGMT_STATUS_REJECTED,		/* SCO Offset Rejected */ | 
					
						
							|  |  |  | 	MGMT_STATUS_REJECTED,		/* SCO Interval Rejected */ | 
					
						
							|  |  |  | 	MGMT_STATUS_REJECTED,		/* Air Mode Rejected */ | 
					
						
							|  |  |  | 	MGMT_STATUS_INVALID_PARAMS,	/* Invalid LMP Parameters */ | 
					
						
							|  |  |  | 	MGMT_STATUS_FAILED,		/* Unspecified Error */ | 
					
						
							|  |  |  | 	MGMT_STATUS_NOT_SUPPORTED,	/* Unsupported LMP Parameter Value */ | 
					
						
							|  |  |  | 	MGMT_STATUS_FAILED,		/* Role Change Not Allowed */ | 
					
						
							|  |  |  | 	MGMT_STATUS_TIMEOUT,		/* LMP Response Timeout */ | 
					
						
							|  |  |  | 	MGMT_STATUS_FAILED,		/* LMP Error Transaction Collision */ | 
					
						
							|  |  |  | 	MGMT_STATUS_FAILED,		/* LMP PDU Not Allowed */ | 
					
						
							|  |  |  | 	MGMT_STATUS_REJECTED,		/* Encryption Mode Not Accepted */ | 
					
						
							|  |  |  | 	MGMT_STATUS_FAILED,		/* Unit Link Key Used */ | 
					
						
							|  |  |  | 	MGMT_STATUS_NOT_SUPPORTED,	/* QoS Not Supported */ | 
					
						
							|  |  |  | 	MGMT_STATUS_TIMEOUT,		/* Instant Passed */ | 
					
						
							|  |  |  | 	MGMT_STATUS_NOT_SUPPORTED,	/* Pairing Not Supported */ | 
					
						
							|  |  |  | 	MGMT_STATUS_FAILED,		/* Transaction Collision */ | 
					
						
							|  |  |  | 	MGMT_STATUS_INVALID_PARAMS,	/* Unacceptable Parameter */ | 
					
						
							|  |  |  | 	MGMT_STATUS_REJECTED,		/* QoS Rejected */ | 
					
						
							|  |  |  | 	MGMT_STATUS_NOT_SUPPORTED,	/* Classification Not Supported */ | 
					
						
							|  |  |  | 	MGMT_STATUS_REJECTED,		/* Insufficient Security */ | 
					
						
							|  |  |  | 	MGMT_STATUS_INVALID_PARAMS,	/* Parameter Out Of Range */ | 
					
						
							|  |  |  | 	MGMT_STATUS_BUSY,		/* Role Switch Pending */ | 
					
						
							|  |  |  | 	MGMT_STATUS_FAILED,		/* Slot Violation */ | 
					
						
							|  |  |  | 	MGMT_STATUS_FAILED,		/* Role Switch Failed */ | 
					
						
							|  |  |  | 	MGMT_STATUS_INVALID_PARAMS,	/* EIR Too Large */ | 
					
						
							|  |  |  | 	MGMT_STATUS_NOT_SUPPORTED,	/* Simple Pairing Not Supported */ | 
					
						
							|  |  |  | 	MGMT_STATUS_BUSY,		/* Host Busy Pairing */ | 
					
						
							|  |  |  | 	MGMT_STATUS_REJECTED,		/* Rejected, No Suitable Channel */ | 
					
						
							|  |  |  | 	MGMT_STATUS_BUSY,		/* Controller Busy */ | 
					
						
							|  |  |  | 	MGMT_STATUS_INVALID_PARAMS,	/* Unsuitable Connection Interval */ | 
					
						
							|  |  |  | 	MGMT_STATUS_TIMEOUT,		/* Directed Advertising Timeout */ | 
					
						
							|  |  |  | 	MGMT_STATUS_AUTH_FAILED,	/* Terminated Due to MIC Failure */ | 
					
						
							|  |  |  | 	MGMT_STATUS_CONNECT_FAILED,	/* Connection Establishment Failed */ | 
					
						
							|  |  |  | 	MGMT_STATUS_CONNECT_FAILED,	/* MAC Connection Failed */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static u8 mgmt_status(u8 hci_status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (hci_status < ARRAY_SIZE(mgmt_status_table)) | 
					
						
							|  |  |  | 		return mgmt_status_table[hci_status]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return MGMT_STATUS_FAILED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-04 19:06:22 +02:00
										 |  |  | static int mgmt_event(u16 event, struct hci_dev *hdev, void *data, u16 data_len, | 
					
						
							|  |  |  | 		      struct sock *skip_sk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct sk_buff *skb; | 
					
						
							|  |  |  | 	struct mgmt_hdr *hdr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	skb = alloc_skb(sizeof(*hdr) + data_len, GFP_KERNEL); | 
					
						
							|  |  |  | 	if (!skb) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hdr = (void *) skb_put(skb, sizeof(*hdr)); | 
					
						
							|  |  |  | 	hdr->opcode = cpu_to_le16(event); | 
					
						
							|  |  |  | 	if (hdev) | 
					
						
							|  |  |  | 		hdr->index = cpu_to_le16(hdev->id); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		hdr->index = cpu_to_le16(MGMT_INDEX_NONE); | 
					
						
							|  |  |  | 	hdr->len = cpu_to_le16(data_len); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (data) | 
					
						
							|  |  |  | 		memcpy(skb_put(skb, data_len), data, data_len); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Time stamp */ | 
					
						
							|  |  |  | 	__net_timestamp(skb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_send_to_control(skb, skip_sk); | 
					
						
							|  |  |  | 	kfree_skb(skb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-25 19:05:48 +01:00
										 |  |  | static int cmd_status(struct sock *sk, u16 index, u16 cmd, u8 status) | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:06 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct sk_buff *skb; | 
					
						
							|  |  |  | 	struct mgmt_hdr *hdr; | 
					
						
							|  |  |  | 	struct mgmt_ev_cmd_status *ev; | 
					
						
							| 
									
										
										
										
											2011-10-14 19:20:01 -03:00
										 |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-28 14:10:08 +01:00
										 |  |  | 	BT_DBG("sock %p, index %u, cmd %u, status %u", sk, index, cmd, status); | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-07 19:05:46 -03:00
										 |  |  | 	skb = alloc_skb(sizeof(*hdr) + sizeof(*ev), GFP_KERNEL); | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:06 +02:00
										 |  |  | 	if (!skb) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hdr = (void *) skb_put(skb, sizeof(*hdr)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-12 10:52:35 -07:00
										 |  |  | 	hdr->opcode = cpu_to_le16(MGMT_EV_CMD_STATUS); | 
					
						
							| 
									
										
										
										
											2011-02-25 19:05:48 +01:00
										 |  |  | 	hdr->index = cpu_to_le16(index); | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:06 +02:00
										 |  |  | 	hdr->len = cpu_to_le16(sizeof(*ev)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ev = (void *) skb_put(skb, sizeof(*ev)); | 
					
						
							|  |  |  | 	ev->status = status; | 
					
						
							| 
									
										
										
										
											2012-03-14 18:08:46 +02:00
										 |  |  | 	ev->opcode = cpu_to_le16(cmd); | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 19:20:01 -03:00
										 |  |  | 	err = sock_queue_rcv_skb(sk, skb); | 
					
						
							|  |  |  | 	if (err < 0) | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:06 +02:00
										 |  |  | 		kfree_skb(skb); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 19:20:01 -03:00
										 |  |  | 	return err; | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:06 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-18 15:07:59 +02:00
										 |  |  | static int cmd_complete(struct sock *sk, u16 index, u16 cmd, u8 status, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			void *rp, size_t rp_len) | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:04 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct sk_buff *skb; | 
					
						
							|  |  |  | 	struct mgmt_hdr *hdr; | 
					
						
							|  |  |  | 	struct mgmt_ev_cmd_complete *ev; | 
					
						
							| 
									
										
										
										
											2011-10-14 19:20:01 -03:00
										 |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:04 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("sock %p", sk); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-07 19:05:46 -03:00
										 |  |  | 	skb = alloc_skb(sizeof(*hdr) + sizeof(*ev) + rp_len, GFP_KERNEL); | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:04 +02:00
										 |  |  | 	if (!skb) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hdr = (void *) skb_put(skb, sizeof(*hdr)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-12 10:52:35 -07:00
										 |  |  | 	hdr->opcode = cpu_to_le16(MGMT_EV_CMD_COMPLETE); | 
					
						
							| 
									
										
										
										
											2011-02-25 19:05:48 +01:00
										 |  |  | 	hdr->index = cpu_to_le16(index); | 
					
						
							| 
									
										
										
										
											2011-01-22 06:46:43 +02:00
										 |  |  | 	hdr->len = cpu_to_le16(sizeof(*ev) + rp_len); | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:04 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-22 06:46:43 +02:00
										 |  |  | 	ev = (void *) skb_put(skb, sizeof(*ev) + rp_len); | 
					
						
							| 
									
										
										
										
											2012-03-14 18:08:46 +02:00
										 |  |  | 	ev->opcode = cpu_to_le16(cmd); | 
					
						
							| 
									
										
										
										
											2012-02-18 15:07:59 +02:00
										 |  |  | 	ev->status = status; | 
					
						
							| 
									
										
										
										
											2011-02-28 14:09:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (rp) | 
					
						
							|  |  |  | 		memcpy(ev->data, rp, rp_len); | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:04 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 19:20:01 -03:00
										 |  |  | 	err = sock_queue_rcv_skb(sk, skb); | 
					
						
							|  |  |  | 	if (err < 0) | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:04 +02:00
										 |  |  | 		kfree_skb(skb); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-22 11:59:01 +01:00
										 |  |  | 	return err; | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:04 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | static int read_version(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							|  |  |  | 			u16 data_len) | 
					
						
							| 
									
										
										
										
											2011-01-22 06:46:43 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_rp_read_version rp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("sock %p", sk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rp.version = MGMT_VERSION; | 
					
						
							| 
									
										
										
										
											2014-03-12 10:52:35 -07:00
										 |  |  | 	rp.revision = cpu_to_le16(MGMT_REVISION); | 
					
						
							| 
									
										
										
										
											2011-01-22 06:46:43 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-18 15:07:59 +02:00
										 |  |  | 	return cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_VERSION, 0, &rp, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			    sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2011-01-22 06:46:43 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | static int read_commands(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							|  |  |  | 			 u16 data_len) | 
					
						
							| 
									
										
										
										
											2012-02-13 16:59:33 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_rp_read_commands *rp; | 
					
						
							| 
									
										
										
										
											2012-03-14 18:08:46 +02:00
										 |  |  | 	const u16 num_commands = ARRAY_SIZE(mgmt_commands); | 
					
						
							|  |  |  | 	const u16 num_events = ARRAY_SIZE(mgmt_events); | 
					
						
							| 
									
										
										
										
											2012-03-14 18:54:15 +02:00
										 |  |  | 	__le16 *opcode; | 
					
						
							| 
									
										
										
										
											2012-02-13 16:59:33 +02:00
										 |  |  | 	size_t rp_size; | 
					
						
							|  |  |  | 	int i, err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("sock %p", sk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rp_size = sizeof(*rp) + ((num_commands + num_events) * sizeof(u16)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rp = kmalloc(rp_size, GFP_KERNEL); | 
					
						
							|  |  |  | 	if (!rp) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-12 10:52:35 -07:00
										 |  |  | 	rp->num_commands = cpu_to_le16(num_commands); | 
					
						
							|  |  |  | 	rp->num_events = cpu_to_le16(num_events); | 
					
						
							| 
									
										
										
										
											2012-02-13 16:59:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0, opcode = rp->opcodes; i < num_commands; i++, opcode++) | 
					
						
							|  |  |  | 		put_unaligned_le16(mgmt_commands[i], opcode); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < num_events; i++, opcode++) | 
					
						
							|  |  |  | 		put_unaligned_le16(mgmt_events[i], opcode); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-18 15:07:59 +02:00
										 |  |  | 	err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_COMMANDS, 0, rp, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			   rp_size); | 
					
						
							| 
									
										
										
										
											2012-02-13 16:59:33 +02:00
										 |  |  | 	kfree(rp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | static int read_index_list(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							|  |  |  | 			   u16 data_len) | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:05 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_rp_read_index_list *rp; | 
					
						
							| 
									
										
										
										
											2011-11-01 10:58:56 +02:00
										 |  |  | 	struct hci_dev *d; | 
					
						
							| 
									
										
										
										
											2011-01-22 06:46:43 +02:00
										 |  |  | 	size_t rp_len; | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:05 +02:00
										 |  |  | 	u16 count; | 
					
						
							| 
									
										
										
										
											2012-10-19 20:10:46 +03:00
										 |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:05 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("sock %p", sk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	read_lock(&hci_dev_list_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	count = 0; | 
					
						
							| 
									
										
										
										
											2012-07-19 17:03:40 +03:00
										 |  |  | 	list_for_each_entry(d, &hci_dev_list, list) { | 
					
						
							| 
									
										
										
										
											2014-07-02 22:10:52 +02:00
										 |  |  | 		if (d->dev_type == HCI_BREDR && | 
					
						
							|  |  |  | 		    !test_bit(HCI_UNCONFIGURED, &d->dev_flags)) | 
					
						
							| 
									
										
										
										
											2013-10-06 08:25:01 -07:00
										 |  |  | 			count++; | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:05 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-22 06:46:43 +02:00
										 |  |  | 	rp_len = sizeof(*rp) + (2 * count); | 
					
						
							|  |  |  | 	rp = kmalloc(rp_len, GFP_ATOMIC); | 
					
						
							|  |  |  | 	if (!rp) { | 
					
						
							| 
									
										
										
										
											2011-01-14 00:18:49 +01:00
										 |  |  | 		read_unlock(&hci_dev_list_lock); | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:05 +02:00
										 |  |  | 		return -ENOMEM; | 
					
						
							| 
									
										
										
										
											2011-01-14 00:18:49 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-19 20:10:46 +03:00
										 |  |  | 	count = 0; | 
					
						
							| 
									
										
										
										
											2011-11-01 10:58:56 +02:00
										 |  |  | 	list_for_each_entry(d, &hci_dev_list, list) { | 
					
						
							| 
									
										
										
										
											2014-07-02 22:10:52 +02:00
										 |  |  | 		if (test_bit(HCI_SETUP, &d->dev_flags) || | 
					
						
							| 
									
										
										
										
											2014-07-06 12:11:14 +02:00
										 |  |  | 		    test_bit(HCI_CONFIG, &d->dev_flags) || | 
					
						
							| 
									
										
										
										
											2014-07-02 22:10:52 +02:00
										 |  |  | 		    test_bit(HCI_USER_CHANNEL, &d->dev_flags)) | 
					
						
							| 
									
										
										
										
											2010-12-15 13:53:18 +02:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-02 22:10:52 +02:00
										 |  |  | 		/* Devices marked as raw-only are neither configured
 | 
					
						
							|  |  |  | 		 * nor unconfigured controllers. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (test_bit(HCI_QUIRK_RAW_DEVICE, &d->quirks)) | 
					
						
							| 
									
										
										
										
											2014-06-29 12:13:05 +02:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-02 22:10:52 +02:00
										 |  |  | 		if (d->dev_type == HCI_BREDR && | 
					
						
							|  |  |  | 		    !test_bit(HCI_UNCONFIGURED, &d->dev_flags)) { | 
					
						
							| 
									
										
										
										
											2013-10-06 08:25:01 -07:00
										 |  |  | 			rp->index[count++] = cpu_to_le16(d->id); | 
					
						
							|  |  |  | 			BT_DBG("Added hci%u", d->id); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:05 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-19 20:10:46 +03:00
										 |  |  | 	rp->num_controllers = cpu_to_le16(count); | 
					
						
							|  |  |  | 	rp_len = sizeof(*rp) + (2 * count); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:05 +02:00
										 |  |  | 	read_unlock(&hci_dev_list_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-18 15:07:59 +02:00
										 |  |  | 	err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST, 0, rp, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			   rp_len); | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-22 06:46:43 +02:00
										 |  |  | 	kfree(rp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:05 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-02 22:10:52 +02:00
										 |  |  | static int read_unconf_index_list(struct sock *sk, struct hci_dev *hdev, | 
					
						
							|  |  |  | 				  void *data, u16 data_len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_rp_read_unconf_index_list *rp; | 
					
						
							|  |  |  | 	struct hci_dev *d; | 
					
						
							|  |  |  | 	size_t rp_len; | 
					
						
							|  |  |  | 	u16 count; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("sock %p", sk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	read_lock(&hci_dev_list_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	count = 0; | 
					
						
							|  |  |  | 	list_for_each_entry(d, &hci_dev_list, list) { | 
					
						
							|  |  |  | 		if (d->dev_type == HCI_BREDR && | 
					
						
							|  |  |  | 		    test_bit(HCI_UNCONFIGURED, &d->dev_flags)) | 
					
						
							|  |  |  | 			count++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rp_len = sizeof(*rp) + (2 * count); | 
					
						
							|  |  |  | 	rp = kmalloc(rp_len, GFP_ATOMIC); | 
					
						
							|  |  |  | 	if (!rp) { | 
					
						
							|  |  |  | 		read_unlock(&hci_dev_list_lock); | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	count = 0; | 
					
						
							|  |  |  | 	list_for_each_entry(d, &hci_dev_list, list) { | 
					
						
							|  |  |  | 		if (test_bit(HCI_SETUP, &d->dev_flags) || | 
					
						
							| 
									
										
										
										
											2014-07-06 12:11:14 +02:00
										 |  |  | 		    test_bit(HCI_CONFIG, &d->dev_flags) || | 
					
						
							| 
									
										
										
										
											2014-07-02 22:10:52 +02:00
										 |  |  | 		    test_bit(HCI_USER_CHANNEL, &d->dev_flags)) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* Devices marked as raw-only are neither configured
 | 
					
						
							|  |  |  | 		 * nor unconfigured controllers. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (test_bit(HCI_QUIRK_RAW_DEVICE, &d->quirks)) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (d->dev_type == HCI_BREDR && | 
					
						
							|  |  |  | 		    test_bit(HCI_UNCONFIGURED, &d->dev_flags)) { | 
					
						
							|  |  |  | 			rp->index[count++] = cpu_to_le16(d->id); | 
					
						
							|  |  |  | 			BT_DBG("Added hci%u", d->id); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rp->num_controllers = cpu_to_le16(count); | 
					
						
							|  |  |  | 	rp_len = sizeof(*rp) + (2 * count); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	read_unlock(&hci_dev_list_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_UNCONF_INDEX_LIST, | 
					
						
							|  |  |  | 			   0, rp, rp_len); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	kfree(rp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-04 18:11:55 +02:00
										 |  |  | static bool is_configured(struct hci_dev *hdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) && | 
					
						
							|  |  |  | 	    !test_bit(HCI_EXT_CONFIGURED, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks) && | 
					
						
							|  |  |  | 	    !bacmp(&hdev->public_addr, BDADDR_ANY)) | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-04 16:54:37 +02:00
										 |  |  | static __le32 get_missing_options(struct hci_dev *hdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 options = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-04 18:11:55 +02:00
										 |  |  | 	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) && | 
					
						
							|  |  |  | 	    !test_bit(HCI_EXT_CONFIGURED, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2014-07-04 17:23:33 +02:00
										 |  |  | 		options |= MGMT_OPTION_EXTERNAL_CONFIG; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-04 16:54:37 +02:00
										 |  |  | 	if (test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks) && | 
					
						
							|  |  |  | 	    !bacmp(&hdev->public_addr, BDADDR_ANY)) | 
					
						
							|  |  |  | 		options |= MGMT_OPTION_PUBLIC_ADDRESS; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return cpu_to_le32(options); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-04 19:06:23 +02:00
										 |  |  | static int new_options(struct hci_dev *hdev, struct sock *skip) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__le32 options = get_missing_options(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return mgmt_event(MGMT_EV_NEW_CONFIG_OPTIONS, hdev, &options, | 
					
						
							|  |  |  | 			  sizeof(options), skip); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-04 18:11:55 +02:00
										 |  |  | static int send_options_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__le32 options = get_missing_options(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return cmd_complete(sk, hdev->id, opcode, 0, &options, | 
					
						
							|  |  |  | 			    sizeof(options)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-04 00:46:56 +02:00
										 |  |  | static int read_config_info(struct sock *sk, struct hci_dev *hdev, | 
					
						
							|  |  |  | 			    void *data, u16 data_len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_rp_read_config_info rp; | 
					
						
							| 
									
										
										
										
											2014-07-04 16:54:37 +02:00
										 |  |  | 	u32 options = 0; | 
					
						
							| 
									
										
										
										
											2014-07-04 00:46:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("sock %p %s", sk, hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(&rp, 0, sizeof(rp)); | 
					
						
							|  |  |  | 	rp.manufacturer = cpu_to_le16(hdev->manufacturer); | 
					
						
							| 
									
										
										
										
											2014-07-04 16:54:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-04 17:23:33 +02:00
										 |  |  | 	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks)) | 
					
						
							|  |  |  | 		options |= MGMT_OPTION_EXTERNAL_CONFIG; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-04 00:46:56 +02:00
										 |  |  | 	if (hdev->set_bdaddr) | 
					
						
							| 
									
										
										
										
											2014-07-04 16:54:37 +02:00
										 |  |  | 		options |= MGMT_OPTION_PUBLIC_ADDRESS; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rp.supported_options = cpu_to_le32(options); | 
					
						
							|  |  |  | 	rp.missing_options = get_missing_options(hdev); | 
					
						
							| 
									
										
										
										
											2014-07-04 00:46:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return cmd_complete(sk, hdev->id, MGMT_OP_READ_CONFIG_INFO, 0, &rp, | 
					
						
							|  |  |  | 			    sizeof(rp)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | static u32 get_supported_settings(struct hci_dev *hdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 settings = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	settings |= MGMT_SETTING_POWERED; | 
					
						
							| 
									
										
										
										
											2014-07-30 09:22:23 +03:00
										 |  |  | 	settings |= MGMT_SETTING_BONDABLE; | 
					
						
							| 
									
										
										
										
											2014-01-31 11:55:21 -08:00
										 |  |  | 	settings |= MGMT_SETTING_DEBUG_KEYS; | 
					
						
							| 
									
										
										
										
											2014-07-08 16:07:34 +03:00
										 |  |  | 	settings |= MGMT_SETTING_CONNECTABLE; | 
					
						
							|  |  |  | 	settings |= MGMT_SETTING_DISCOVERABLE; | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-24 15:03:46 -03:00
										 |  |  | 	if (lmp_bredr_capable(hdev)) { | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:06 -05:00
										 |  |  | 		if (hdev->hci_ver >= BLUETOOTH_VER_1_2) | 
					
						
							|  |  |  | 			settings |= MGMT_SETTING_FAST_CONNECTABLE; | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | 		settings |= MGMT_SETTING_BREDR; | 
					
						
							|  |  |  | 		settings |= MGMT_SETTING_LINK_SECURITY; | 
					
						
							| 
									
										
										
										
											2013-10-11 09:48:47 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (lmp_ssp_capable(hdev)) { | 
					
						
							|  |  |  | 			settings |= MGMT_SETTING_SSP; | 
					
						
							|  |  |  | 			settings |= MGMT_SETTING_HS; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:22 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:27 -08:00
										 |  |  | 		if (lmp_sc_capable(hdev) || | 
					
						
							| 
									
										
										
										
											2014-06-21 04:53:17 +02:00
										 |  |  | 		    test_bit(HCI_FORCE_SC, &hdev->dbg_flags)) | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:22 -08:00
										 |  |  | 			settings |= MGMT_SETTING_SECURE_CONN; | 
					
						
							| 
									
										
										
										
											2013-10-01 22:59:22 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-20 21:47:49 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:09 +03:00
										 |  |  | 	if (lmp_le_capable(hdev)) { | 
					
						
							| 
									
										
										
										
											2012-05-03 07:12:31 +02:00
										 |  |  | 		settings |= MGMT_SETTING_LE; | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:09 +03:00
										 |  |  | 		settings |= MGMT_SETTING_ADVERTISING; | 
					
						
							| 
									
										
										
										
											2014-02-22 19:06:35 +02:00
										 |  |  | 		settings |= MGMT_SETTING_PRIVACY; | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:09 +03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-04 17:23:33 +02:00
										 |  |  | 	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) || | 
					
						
							|  |  |  | 	    hdev->set_bdaddr) | 
					
						
							| 
									
										
										
										
											2014-07-04 00:46:56 +02:00
										 |  |  | 		settings |= MGMT_SETTING_CONFIGURATION; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | 	return settings; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static u32 get_current_settings(struct hci_dev *hdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 settings = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 17:15:41 +02:00
										 |  |  | 	if (hdev_is_powered(hdev)) | 
					
						
							| 
									
										
										
										
											2012-02-21 12:14:25 +01:00
										 |  |  | 		settings |= MGMT_SETTING_POWERED; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 16:01:30 +02:00
										 |  |  | 	if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | 		settings |= MGMT_SETTING_CONNECTABLE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:08 -05:00
										 |  |  | 	if (test_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		settings |= MGMT_SETTING_FAST_CONNECTABLE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 16:01:30 +02:00
										 |  |  | 	if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | 		settings |= MGMT_SETTING_DISCOVERABLE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-30 09:22:22 +03:00
										 |  |  | 	if (test_bit(HCI_BONDABLE, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2014-07-30 09:22:23 +03:00
										 |  |  | 		settings |= MGMT_SETTING_BONDABLE; | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-02 13:43:13 +03:00
										 |  |  | 	if (test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | 		settings |= MGMT_SETTING_BREDR; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-22 16:37:11 +02:00
										 |  |  | 	if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | 		settings |= MGMT_SETTING_LE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-22 11:58:37 +02:00
										 |  |  | 	if (test_bit(HCI_LINK_SECURITY, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | 		settings |= MGMT_SETTING_LINK_SECURITY; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-25 14:21:06 +02:00
										 |  |  | 	if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | 		settings |= MGMT_SETTING_SSP; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-20 23:50:38 +02:00
										 |  |  | 	if (test_bit(HCI_HS_ENABLED, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		settings |= MGMT_SETTING_HS; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-05 12:01:04 +02:00
										 |  |  | 	if (test_bit(HCI_ADVERTISING, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:09 +03:00
										 |  |  | 		settings |= MGMT_SETTING_ADVERTISING; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:22 -08:00
										 |  |  | 	if (test_bit(HCI_SC_ENABLED, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		settings |= MGMT_SETTING_SECURE_CONN; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-24 13:15:50 +03:00
										 |  |  | 	if (test_bit(HCI_KEEP_DEBUG_KEYS, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2014-01-31 11:55:21 -08:00
										 |  |  | 		settings |= MGMT_SETTING_DEBUG_KEYS; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-22 19:06:35 +02:00
										 |  |  | 	if (test_bit(HCI_PRIVACY, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		settings |= MGMT_SETTING_PRIVACY; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | 	return settings; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:38 +02:00
										 |  |  | #define PNP_INFO_SVCLASS_ID		0x1200
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-27 00:31:33 +02:00
										 |  |  | static u8 *create_uuid16_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u8 *ptr = data, *uuids_start = NULL; | 
					
						
							|  |  |  | 	struct bt_uuid *uuid; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (len < 4) | 
					
						
							|  |  |  | 		return ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_for_each_entry(uuid, &hdev->uuids, list) { | 
					
						
							|  |  |  | 		u16 uuid16; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (uuid->size != 16) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		uuid16 = get_unaligned_le16(&uuid->uuid[12]); | 
					
						
							|  |  |  | 		if (uuid16 < 0x1100) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (uuid16 == PNP_INFO_SVCLASS_ID) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!uuids_start) { | 
					
						
							|  |  |  | 			uuids_start = ptr; | 
					
						
							|  |  |  | 			uuids_start[0] = 1; | 
					
						
							|  |  |  | 			uuids_start[1] = EIR_UUID16_ALL; | 
					
						
							|  |  |  | 			ptr += 2; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* Stop if not enough space to put next UUID */ | 
					
						
							|  |  |  | 		if ((ptr - data) + sizeof(u16) > len) { | 
					
						
							|  |  |  | 			uuids_start[1] = EIR_UUID16_SOME; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		*ptr++ = (uuid16 & 0x00ff); | 
					
						
							|  |  |  | 		*ptr++ = (uuid16 & 0xff00) >> 8; | 
					
						
							|  |  |  | 		uuids_start[0] += sizeof(uuid16); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-27 00:31:34 +02:00
										 |  |  | static u8 *create_uuid32_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u8 *ptr = data, *uuids_start = NULL; | 
					
						
							|  |  |  | 	struct bt_uuid *uuid; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (len < 6) | 
					
						
							|  |  |  | 		return ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_for_each_entry(uuid, &hdev->uuids, list) { | 
					
						
							|  |  |  | 		if (uuid->size != 32) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!uuids_start) { | 
					
						
							|  |  |  | 			uuids_start = ptr; | 
					
						
							|  |  |  | 			uuids_start[0] = 1; | 
					
						
							|  |  |  | 			uuids_start[1] = EIR_UUID32_ALL; | 
					
						
							|  |  |  | 			ptr += 2; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* Stop if not enough space to put next UUID */ | 
					
						
							|  |  |  | 		if ((ptr - data) + sizeof(u32) > len) { | 
					
						
							|  |  |  | 			uuids_start[1] = EIR_UUID32_SOME; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		memcpy(ptr, &uuid->uuid[12], sizeof(u32)); | 
					
						
							|  |  |  | 		ptr += sizeof(u32); | 
					
						
							|  |  |  | 		uuids_start[0] += sizeof(u32); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-27 00:31:35 +02:00
										 |  |  | static u8 *create_uuid128_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u8 *ptr = data, *uuids_start = NULL; | 
					
						
							|  |  |  | 	struct bt_uuid *uuid; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (len < 18) | 
					
						
							|  |  |  | 		return ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_for_each_entry(uuid, &hdev->uuids, list) { | 
					
						
							|  |  |  | 		if (uuid->size != 128) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!uuids_start) { | 
					
						
							|  |  |  | 			uuids_start = ptr; | 
					
						
							|  |  |  | 			uuids_start[0] = 1; | 
					
						
							|  |  |  | 			uuids_start[1] = EIR_UUID128_ALL; | 
					
						
							|  |  |  | 			ptr += 2; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* Stop if not enough space to put next UUID */ | 
					
						
							|  |  |  | 		if ((ptr - data) + 16 > len) { | 
					
						
							|  |  |  | 			uuids_start[1] = EIR_UUID128_SOME; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		memcpy(ptr, uuid->uuid, 16); | 
					
						
							|  |  |  | 		ptr += 16; | 
					
						
							|  |  |  | 		uuids_start[0] += 16; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-19 23:38:20 +03:00
										 |  |  | static struct pending_cmd *mgmt_pending_find(u16 opcode, struct hci_dev *hdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_for_each_entry(cmd, &hdev->mgmt_pending, list) { | 
					
						
							|  |  |  | 		if (cmd->opcode == opcode) | 
					
						
							|  |  |  | 			return cmd; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 17:54:07 +03:00
										 |  |  | static struct pending_cmd *mgmt_pending_find_data(u16 opcode, | 
					
						
							|  |  |  | 						  struct hci_dev *hdev, | 
					
						
							|  |  |  | 						  const void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_for_each_entry(cmd, &hdev->mgmt_pending, list) { | 
					
						
							|  |  |  | 		if (cmd->user_data != data) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		if (cmd->opcode == opcode) | 
					
						
							|  |  |  | 			return cmd; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-16 00:16:48 -07:00
										 |  |  | static u8 create_scan_rsp_data(struct hci_dev *hdev, u8 *ptr) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-10-16 00:16:49 -07:00
										 |  |  | 	u8 ad_len = 0; | 
					
						
							|  |  |  | 	size_t name_len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	name_len = strlen(hdev->dev_name); | 
					
						
							|  |  |  | 	if (name_len > 0) { | 
					
						
							|  |  |  | 		size_t max_len = HCI_MAX_AD_LENGTH - ad_len - 2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (name_len > max_len) { | 
					
						
							|  |  |  | 			name_len = max_len; | 
					
						
							|  |  |  | 			ptr[1] = EIR_NAME_SHORT; | 
					
						
							|  |  |  | 		} else | 
					
						
							|  |  |  | 			ptr[1] = EIR_NAME_COMPLETE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ptr[0] = name_len + 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		memcpy(ptr + 2, hdev->dev_name, name_len); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ad_len += (name_len + 2); | 
					
						
							|  |  |  | 		ptr += (name_len + 2); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ad_len; | 
					
						
							| 
									
										
										
										
											2013-10-16 00:16:48 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void update_scan_rsp_data(struct hci_request *req) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct hci_dev *hdev = req->hdev; | 
					
						
							|  |  |  | 	struct hci_cp_le_set_scan_rsp_data cp; | 
					
						
							|  |  |  | 	u8 len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-19 23:38:15 +03:00
										 |  |  | 	if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2013-10-16 00:16:48 -07:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(&cp, 0, sizeof(cp)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	len = create_scan_rsp_data(hdev, cp.data); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-16 15:31:07 +03:00
										 |  |  | 	if (hdev->scan_rsp_data_len == len && | 
					
						
							|  |  |  | 	    memcmp(cp.data, hdev->scan_rsp_data, len) == 0) | 
					
						
							| 
									
										
										
										
											2013-10-16 00:16:48 -07:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-16 15:31:07 +03:00
										 |  |  | 	memcpy(hdev->scan_rsp_data, cp.data, sizeof(cp.data)); | 
					
						
							|  |  |  | 	hdev->scan_rsp_data_len = len; | 
					
						
							| 
									
										
										
										
											2013-10-16 00:16:48 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	cp.length = len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_req_add(req, HCI_OP_LE_SET_SCAN_RSP_DATA, sizeof(cp), &cp); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-20 19:00:07 +03:00
										 |  |  | static u8 get_adv_discov_flags(struct hci_dev *hdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* If there's a pending mgmt command the flags will not yet have
 | 
					
						
							|  |  |  | 	 * their final values, so check for this first. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	cmd = mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev); | 
					
						
							|  |  |  | 	if (cmd) { | 
					
						
							|  |  |  | 		struct mgmt_mode *cp = cmd->param; | 
					
						
							|  |  |  | 		if (cp->val == 0x01) | 
					
						
							|  |  |  | 			return LE_AD_GENERAL; | 
					
						
							|  |  |  | 		else if (cp->val == 0x02) | 
					
						
							|  |  |  | 			return LE_AD_LIMITED; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		if (test_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags)) | 
					
						
							|  |  |  | 			return LE_AD_LIMITED; | 
					
						
							|  |  |  | 		else if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags)) | 
					
						
							|  |  |  | 			return LE_AD_GENERAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-16 00:16:46 -07:00
										 |  |  | static u8 create_adv_data(struct hci_dev *hdev, u8 *ptr) | 
					
						
							| 
									
										
										
										
											2013-10-15 06:33:52 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	u8 ad_len = 0, flags = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-20 19:00:07 +03:00
										 |  |  | 	flags |= get_adv_discov_flags(hdev); | 
					
						
							| 
									
										
										
										
											2013-10-15 06:33:52 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-30 11:16:50 -08:00
										 |  |  | 	if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2013-10-15 06:33:52 -07:00
										 |  |  | 		flags |= LE_AD_NO_BREDR; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (flags) { | 
					
						
							|  |  |  | 		BT_DBG("adv flags 0x%02x", flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ptr[0] = 2; | 
					
						
							|  |  |  | 		ptr[1] = EIR_FLAGS; | 
					
						
							|  |  |  | 		ptr[2] = flags; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ad_len += 3; | 
					
						
							|  |  |  | 		ptr += 3; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (hdev->adv_tx_power != HCI_TX_POWER_INVALID) { | 
					
						
							|  |  |  | 		ptr[0] = 2; | 
					
						
							|  |  |  | 		ptr[1] = EIR_TX_POWER; | 
					
						
							|  |  |  | 		ptr[2] = (u8) hdev->adv_tx_power; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ad_len += 3; | 
					
						
							|  |  |  | 		ptr += 3; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ad_len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-16 00:16:50 -07:00
										 |  |  | static void update_adv_data(struct hci_request *req) | 
					
						
							| 
									
										
										
										
											2013-10-15 06:33:52 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct hci_dev *hdev = req->hdev; | 
					
						
							|  |  |  | 	struct hci_cp_le_set_adv_data cp; | 
					
						
							|  |  |  | 	u8 len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-19 23:38:16 +03:00
										 |  |  | 	if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2013-10-15 06:33:52 -07:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(&cp, 0, sizeof(cp)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-16 00:16:46 -07:00
										 |  |  | 	len = create_adv_data(hdev, cp.data); | 
					
						
							| 
									
										
										
										
											2013-10-15 06:33:52 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (hdev->adv_data_len == len && | 
					
						
							|  |  |  | 	    memcmp(cp.data, hdev->adv_data, len) == 0) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memcpy(hdev->adv_data, cp.data, sizeof(cp.data)); | 
					
						
							|  |  |  | 	hdev->adv_data_len = len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cp.length = len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_req_add(req, HCI_OP_LE_SET_ADV_DATA, sizeof(cp), &cp); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-10 12:09:08 +03:00
										 |  |  | int mgmt_update_adv_data(struct hci_dev *hdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct hci_request req; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_req_init(&req, hdev); | 
					
						
							|  |  |  | 	update_adv_data(&req); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return hci_req_run(&req, NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:38 +02:00
										 |  |  | static void create_eir(struct hci_dev *hdev, u8 *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u8 *ptr = data; | 
					
						
							|  |  |  | 	size_t name_len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	name_len = strlen(hdev->dev_name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (name_len > 0) { | 
					
						
							|  |  |  | 		/* EIR Data type */ | 
					
						
							|  |  |  | 		if (name_len > 48) { | 
					
						
							|  |  |  | 			name_len = 48; | 
					
						
							|  |  |  | 			ptr[1] = EIR_NAME_SHORT; | 
					
						
							|  |  |  | 		} else | 
					
						
							|  |  |  | 			ptr[1] = EIR_NAME_COMPLETE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* EIR Data length */ | 
					
						
							|  |  |  | 		ptr[0] = name_len + 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		memcpy(ptr + 2, hdev->dev_name, name_len); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ptr += (name_len + 2); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-08 01:22:59 +01:00
										 |  |  | 	if (hdev->inq_tx_power != HCI_TX_POWER_INVALID) { | 
					
						
							| 
									
										
										
										
											2012-03-11 19:27:21 -07:00
										 |  |  | 		ptr[0] = 2; | 
					
						
							|  |  |  | 		ptr[1] = EIR_TX_POWER; | 
					
						
							|  |  |  | 		ptr[2] = (u8) hdev->inq_tx_power; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ptr += 3; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-11 19:32:12 -07:00
										 |  |  | 	if (hdev->devid_source > 0) { | 
					
						
							|  |  |  | 		ptr[0] = 9; | 
					
						
							|  |  |  | 		ptr[1] = EIR_DEVICE_ID; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		put_unaligned_le16(hdev->devid_source, ptr + 2); | 
					
						
							|  |  |  | 		put_unaligned_le16(hdev->devid_vendor, ptr + 4); | 
					
						
							|  |  |  | 		put_unaligned_le16(hdev->devid_product, ptr + 6); | 
					
						
							|  |  |  | 		put_unaligned_le16(hdev->devid_version, ptr + 8); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ptr += 10; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-27 00:31:33 +02:00
										 |  |  | 	ptr = create_uuid16_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data)); | 
					
						
							| 
									
										
										
										
											2013-01-27 00:31:34 +02:00
										 |  |  | 	ptr = create_uuid32_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data)); | 
					
						
							| 
									
										
										
										
											2013-01-27 00:31:35 +02:00
										 |  |  | 	ptr = create_uuid128_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data)); | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:38 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | static void update_eir(struct hci_request *req) | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:38 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	struct hci_dev *hdev = req->hdev; | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:38 +02:00
										 |  |  | 	struct hci_cp_write_eir cp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-23 13:30:41 +02:00
										 |  |  | 	if (!hdev_is_powered(hdev)) | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2012-02-22 22:06:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-24 21:12:01 +03:00
										 |  |  | 	if (!lmp_ext_inq_capable(hdev)) | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-25 14:21:06 +02:00
										 |  |  | 	if (!test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-08 23:11:15 +02:00
										 |  |  | 	if (test_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	memset(&cp, 0, sizeof(cp)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	create_eir(hdev, cp.data); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (memcmp(cp.data, hdev->eir, sizeof(cp.data)) == 0) | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	memcpy(hdev->eir, cp.data, sizeof(cp.data)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp); | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:38 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static u8 get_service_classes(struct hci_dev *hdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct bt_uuid *uuid; | 
					
						
							|  |  |  | 	u8 val = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_for_each_entry(uuid, &hdev->uuids, list) | 
					
						
							|  |  |  | 		val |= uuid->svc_hint; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return val; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | static void update_class(struct hci_request *req) | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:38 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	struct hci_dev *hdev = req->hdev; | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:38 +02:00
										 |  |  | 	u8 cod[3]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-23 13:30:41 +02:00
										 |  |  | 	if (!hdev_is_powered(hdev)) | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2012-02-22 22:06:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-19 23:38:17 +03:00
										 |  |  | 	if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-08 23:11:15 +02:00
										 |  |  | 	if (test_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	cod[0] = hdev->minor_class; | 
					
						
							|  |  |  | 	cod[1] = hdev->major_class; | 
					
						
							|  |  |  | 	cod[2] = get_service_classes(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 06:33:53 -07:00
										 |  |  | 	if (test_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		cod[1] |= 0x20; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:38 +02:00
										 |  |  | 	if (memcmp(cod, hdev->dev_class, 3) == 0) | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	hci_req_add(req, HCI_OP_WRITE_CLASS_OF_DEV, sizeof(cod), cod); | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:38 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-25 19:56:31 +02:00
										 |  |  | static bool get_connectable(struct hci_dev *hdev) | 
					
						
							| 
									
										
										
										
											2014-02-22 19:06:33 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* If there's a pending mgmt command the flag will not yet have
 | 
					
						
							|  |  |  | 	 * it's final value, so check for this first. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	cmd = mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev); | 
					
						
							|  |  |  | 	if (cmd) { | 
					
						
							|  |  |  | 		struct mgmt_mode *cp = cmd->param; | 
					
						
							| 
									
										
										
										
											2014-02-25 19:56:31 +02:00
										 |  |  | 		return cp->val; | 
					
						
							| 
									
										
										
										
											2014-02-22 19:06:33 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-25 19:56:31 +02:00
										 |  |  | 	return test_bit(HCI_CONNECTABLE, &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2014-02-22 19:06:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 15:07:50 +03:00
										 |  |  | static void disable_advertising(struct hci_request *req) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u8 enable = 0x00; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), &enable); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-22 19:06:33 +02:00
										 |  |  | static void enable_advertising(struct hci_request *req) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct hci_dev *hdev = req->hdev; | 
					
						
							|  |  |  | 	struct hci_cp_le_set_adv_param cp; | 
					
						
							| 
									
										
										
										
											2014-02-23 19:42:23 +02:00
										 |  |  | 	u8 own_addr_type, enable = 0x01; | 
					
						
							| 
									
										
										
										
											2014-02-25 19:56:31 +02:00
										 |  |  | 	bool connectable; | 
					
						
							| 
									
										
										
										
											2014-02-22 19:06:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 15:07:50 +03:00
										 |  |  | 	if (hci_conn_num(hdev, LE_LINK) > 0) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (test_bit(HCI_LE_ADV, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		disable_advertising(req); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 15:07:49 +03:00
										 |  |  | 	/* Clear the HCI_LE_ADV bit temporarily so that the
 | 
					
						
							| 
									
										
										
										
											2014-02-28 12:54:14 +02:00
										 |  |  | 	 * hci_update_random_address knows that it's safe to go ahead | 
					
						
							|  |  |  | 	 * and write a new random address. The flag will be set back on | 
					
						
							|  |  |  | 	 * as soon as the SET_ADV_ENABLE HCI command completes. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2014-07-08 15:07:49 +03:00
										 |  |  | 	clear_bit(HCI_LE_ADV, &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2014-02-28 12:54:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-25 19:56:31 +02:00
										 |  |  | 	connectable = get_connectable(hdev); | 
					
						
							| 
									
										
										
										
											2014-02-23 19:42:23 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-25 19:56:31 +02:00
										 |  |  | 	/* Set require_privacy to true only when non-connectable
 | 
					
						
							|  |  |  | 	 * advertising is used. In that case it is fine to use a | 
					
						
							|  |  |  | 	 * non-resolvable private address. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (hci_update_random_address(req, !connectable, &own_addr_type) < 0) | 
					
						
							| 
									
										
										
										
											2014-02-23 19:42:23 +02:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-23 20:25:55 -08:00
										 |  |  | 	memset(&cp, 0, sizeof(cp)); | 
					
						
							| 
									
										
										
										
											2014-07-26 13:59:57 +02:00
										 |  |  | 	cp.min_interval = cpu_to_le16(hdev->le_adv_min_interval); | 
					
						
							|  |  |  | 	cp.max_interval = cpu_to_le16(hdev->le_adv_max_interval); | 
					
						
							| 
									
										
										
										
											2014-02-25 19:56:31 +02:00
										 |  |  | 	cp.type = connectable ? LE_ADV_IND : LE_ADV_NONCONN_IND; | 
					
						
							| 
									
										
										
										
											2014-02-23 19:42:23 +02:00
										 |  |  | 	cp.own_address_type = own_addr_type; | 
					
						
							| 
									
										
										
										
											2014-02-22 19:06:33 +02:00
										 |  |  | 	cp.channel_map = hdev->le_adv_channel_map; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_req_add(req, HCI_OP_LE_SET_ADV_PARAM, sizeof(cp), &cp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), &enable); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:39 +02:00
										 |  |  | static void service_cache_off(struct work_struct *work) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct hci_dev *hdev = container_of(work, struct hci_dev, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 					    service_cache.work); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	struct hci_request req; | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-08 23:11:15 +02:00
										 |  |  | 	if (!test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:39 +02:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	hci_req_init(&req, hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:39 +02:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	update_eir(&req); | 
					
						
							|  |  |  | 	update_class(&req); | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:39 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	hci_req_run(&req, NULL); | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:39 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-23 19:42:20 +02:00
										 |  |  | static void rpa_expired(struct work_struct *work) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct hci_dev *hdev = container_of(work, struct hci_dev, | 
					
						
							|  |  |  | 					    rpa_expired.work); | 
					
						
							|  |  |  | 	struct hci_request req; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG(""); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	set_bit(HCI_RPA_EXPIRED, &hdev->dev_flags); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 15:07:50 +03:00
										 |  |  | 	if (!test_bit(HCI_ADVERTISING, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2014-02-23 19:42:20 +02:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* The generation of a new RPA and programming it into the
 | 
					
						
							|  |  |  | 	 * controller happens in the enable_advertising() function. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	hci_req_init(&req, hdev); | 
					
						
							|  |  |  | 	enable_advertising(&req); | 
					
						
							|  |  |  | 	hci_req_run(&req, NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:17:26 +02:00
										 |  |  | static void mgmt_init_hdev(struct sock *sk, struct hci_dev *hdev) | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:39 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-03-02 19:55:56 +02:00
										 |  |  | 	if (test_and_set_bit(HCI_MGMT, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2012-02-28 06:17:26 +02:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-02 19:55:56 +02:00
										 |  |  | 	INIT_DELAYED_WORK(&hdev->service_cache, service_cache_off); | 
					
						
							| 
									
										
										
										
											2014-02-23 19:42:20 +02:00
										 |  |  | 	INIT_DELAYED_WORK(&hdev->rpa_expired, rpa_expired); | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-02 19:55:56 +02:00
										 |  |  | 	/* Non-mgmt controlled devices get this bit set
 | 
					
						
							|  |  |  | 	 * implicitly so that pairing works for them, however | 
					
						
							|  |  |  | 	 * for mgmt we require user-space to explicitly enable | 
					
						
							|  |  |  | 	 * it | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2014-07-30 09:22:22 +03:00
										 |  |  | 	clear_bit(HCI_BONDABLE, &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:39 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 17:18:30 +02:00
										 |  |  | static int read_controller_info(struct sock *sk, struct hci_dev *hdev, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				void *data, u16 data_len) | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:06 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-01-22 06:46:43 +02:00
										 |  |  | 	struct mgmt_rp_read_info rp; | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("sock %p %s", sk, hdev->name); | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:36 +02:00
										 |  |  | 	memset(&rp, 0, sizeof(rp)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | 	bacpy(&rp.bdaddr, &hdev->bdaddr); | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | 	rp.version = hdev->hci_ver; | 
					
						
							| 
									
										
										
										
											2012-03-14 18:08:46 +02:00
										 |  |  | 	rp.manufacturer = cpu_to_le16(hdev->manufacturer); | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	rp.supported_settings = cpu_to_le32(get_supported_settings(hdev)); | 
					
						
							|  |  |  | 	rp.current_settings = cpu_to_le32(get_current_settings(hdev)); | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-22 06:46:43 +02:00
										 |  |  | 	memcpy(rp.dev_class, hdev->dev_class, 3); | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:36 +02:00
										 |  |  | 	memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name)); | 
					
						
							| 
									
										
										
										
											2012-02-22 21:46:22 +02:00
										 |  |  | 	memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name)); | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	return cmd_complete(sk, hdev->id, MGMT_OP_READ_INFO, 0, &rp, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			    sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:06 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | static void mgmt_pending_free(struct pending_cmd *cmd) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	sock_put(cmd->sk); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:19 +01:00
										 |  |  | 	kfree(cmd->param); | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 	kfree(cmd); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:55 -03:00
										 |  |  | static struct pending_cmd *mgmt_pending_add(struct sock *sk, u16 opcode, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 					    struct hci_dev *hdev, void *data, | 
					
						
							|  |  |  | 					    u16 len) | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 17:54:05 +03:00
										 |  |  | 	cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 	if (!cmd) | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:55 -03:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	cmd->opcode = opcode; | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	cmd->index = hdev->id; | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-07 19:05:45 -03:00
										 |  |  | 	cmd->param = kmalloc(len, GFP_KERNEL); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:19 +01:00
										 |  |  | 	if (!cmd->param) { | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 		kfree(cmd); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:55 -03:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:20 +01:00
										 |  |  | 	if (data) | 
					
						
							|  |  |  | 		memcpy(cmd->param, data, len); | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	cmd->sk = sk; | 
					
						
							|  |  |  | 	sock_hold(sk); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	list_add(&cmd->list, &hdev->mgmt_pending); | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:55 -03:00
										 |  |  | 	return cmd; | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:14 +02:00
										 |  |  | static void mgmt_pending_foreach(u16 opcode, struct hci_dev *hdev, | 
					
						
							| 
									
										
										
										
											2012-05-23 04:04:21 -03:00
										 |  |  | 				 void (*cb)(struct pending_cmd *cmd, | 
					
						
							|  |  |  | 					    void *data), | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 void *data) | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-02-01 11:21:30 -03:00
										 |  |  | 	struct pending_cmd *cmd, *tmp; | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-01 11:21:30 -03:00
										 |  |  | 	list_for_each_entry_safe(cmd, tmp, &hdev->mgmt_pending, list) { | 
					
						
							| 
									
										
										
										
											2011-11-03 14:40:33 +02:00
										 |  |  | 		if (opcode > 0 && cmd->opcode != opcode) | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		cb(cmd, data); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-19 12:06:02 -03:00
										 |  |  | static void mgmt_pending_remove(struct pending_cmd *cmd) | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	list_del(&cmd->list); | 
					
						
							|  |  |  | 	mgmt_pending_free(cmd); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | static int send_settings_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev) | 
					
						
							| 
									
										
										
										
											2011-11-11 16:18:52 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | 	__le32 settings = cpu_to_le32(get_current_settings(hdev)); | 
					
						
							| 
									
										
										
										
											2011-11-11 16:18:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-18 15:07:59 +02:00
										 |  |  | 	return cmd_complete(sk, hdev->id, opcode, 0, &settings, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			    sizeof(settings)); | 
					
						
							| 
									
										
										
										
											2011-11-11 16:18:52 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-24 14:52:22 +02:00
										 |  |  | static void clean_up_hci_complete(struct hci_dev *hdev, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	BT_DBG("%s status 0x%02x", hdev->name, status); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-28 09:33:44 +02:00
										 |  |  | 	if (hci_conn_count(hdev) == 0) { | 
					
						
							|  |  |  | 		cancel_delayed_work(&hdev->power_off); | 
					
						
							| 
									
										
										
										
											2014-02-24 14:52:22 +02:00
										 |  |  | 		queue_work(hdev->req_workqueue, &hdev->power_off.work); | 
					
						
							| 
									
										
										
										
											2014-02-28 09:33:44 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-24 14:52:22 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 16:05:06 +03:00
										 |  |  | static bool hci_stop_discovery(struct hci_request *req) | 
					
						
							| 
									
										
										
										
											2014-06-10 14:05:58 +03:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct hci_dev *hdev = req->hdev; | 
					
						
							|  |  |  | 	struct hci_cp_remote_name_req_cancel cp; | 
					
						
							|  |  |  | 	struct inquiry_entry *e; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (hdev->discovery.state) { | 
					
						
							|  |  |  | 	case DISCOVERY_FINDING: | 
					
						
							|  |  |  | 		if (test_bit(HCI_INQUIRY, &hdev->flags)) { | 
					
						
							|  |  |  | 			hci_req_add(req, HCI_OP_INQUIRY_CANCEL, 0, NULL); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			cancel_delayed_work(&hdev->le_scan_disable); | 
					
						
							|  |  |  | 			hci_req_add_le_scan_disable(req); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 16:05:06 +03:00
										 |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2014-06-10 14:05:58 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	case DISCOVERY_RESOLVING: | 
					
						
							|  |  |  | 		e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, | 
					
						
							|  |  |  | 						     NAME_PENDING); | 
					
						
							|  |  |  | 		if (!e) | 
					
						
							| 
									
										
										
										
											2014-07-08 16:05:06 +03:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2014-06-10 14:05:58 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		bacpy(&cp.bdaddr, &e->data.bdaddr); | 
					
						
							|  |  |  | 		hci_req_add(req, HCI_OP_REMOTE_NAME_REQ_CANCEL, sizeof(cp), | 
					
						
							|  |  |  | 			    &cp); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 16:05:06 +03:00
										 |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2014-06-10 14:05:58 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		/* Passive scanning */ | 
					
						
							| 
									
										
										
										
											2014-07-08 16:05:06 +03:00
										 |  |  | 		if (test_bit(HCI_LE_SCAN, &hdev->dev_flags)) { | 
					
						
							| 
									
										
										
										
											2014-06-10 14:05:58 +03:00
										 |  |  | 			hci_req_add_le_scan_disable(req); | 
					
						
							| 
									
										
										
										
											2014-07-08 16:05:06 +03:00
										 |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-10 14:05:58 +03:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-07-08 16:05:06 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return false; | 
					
						
							| 
									
										
										
										
											2014-06-10 14:05:58 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-24 14:52:22 +02:00
										 |  |  | static int clean_up_hci_state(struct hci_dev *hdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct hci_request req; | 
					
						
							|  |  |  | 	struct hci_conn *conn; | 
					
						
							| 
									
										
										
										
											2014-07-08 16:05:06 +03:00
										 |  |  | 	bool discov_stopped; | 
					
						
							|  |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2014-02-24 14:52:22 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	hci_req_init(&req, hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (test_bit(HCI_ISCAN, &hdev->flags) || | 
					
						
							|  |  |  | 	    test_bit(HCI_PSCAN, &hdev->flags)) { | 
					
						
							|  |  |  | 		u8 scan = 0x00; | 
					
						
							|  |  |  | 		hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 15:07:51 +03:00
										 |  |  | 	if (test_bit(HCI_LE_ADV, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2014-02-24 14:52:22 +02:00
										 |  |  | 		disable_advertising(&req); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 16:05:06 +03:00
										 |  |  | 	discov_stopped = hci_stop_discovery(&req); | 
					
						
							| 
									
										
										
										
											2014-02-24 14:52:22 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	list_for_each_entry(conn, &hdev->conn_hash.list, list) { | 
					
						
							|  |  |  | 		struct hci_cp_disconnect dc; | 
					
						
							| 
									
										
										
										
											2014-02-27 14:35:12 +02:00
										 |  |  | 		struct hci_cp_reject_conn_req rej; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		switch (conn->state) { | 
					
						
							|  |  |  | 		case BT_CONNECTED: | 
					
						
							|  |  |  | 		case BT_CONFIG: | 
					
						
							|  |  |  | 			dc.handle = cpu_to_le16(conn->handle); | 
					
						
							|  |  |  | 			dc.reason = 0x15; /* Terminated due to Power Off */ | 
					
						
							|  |  |  | 			hci_req_add(&req, HCI_OP_DISCONNECT, sizeof(dc), &dc); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case BT_CONNECT: | 
					
						
							|  |  |  | 			if (conn->type == LE_LINK) | 
					
						
							|  |  |  | 				hci_req_add(&req, HCI_OP_LE_CREATE_CONN_CANCEL, | 
					
						
							|  |  |  | 					    0, NULL); | 
					
						
							|  |  |  | 			else if (conn->type == ACL_LINK) | 
					
						
							|  |  |  | 				hci_req_add(&req, HCI_OP_CREATE_CONN_CANCEL, | 
					
						
							|  |  |  | 					    6, &conn->dst); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case BT_CONNECT2: | 
					
						
							|  |  |  | 			bacpy(&rej.bdaddr, &conn->dst); | 
					
						
							|  |  |  | 			rej.reason = 0x15; /* Terminated due to Power Off */ | 
					
						
							|  |  |  | 			if (conn->type == ACL_LINK) | 
					
						
							|  |  |  | 				hci_req_add(&req, HCI_OP_REJECT_CONN_REQ, | 
					
						
							|  |  |  | 					    sizeof(rej), &rej); | 
					
						
							|  |  |  | 			else if (conn->type == SCO_LINK) | 
					
						
							|  |  |  | 				hci_req_add(&req, HCI_OP_REJECT_SYNC_CONN_REQ, | 
					
						
							|  |  |  | 					    sizeof(rej), &rej); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-24 14:52:22 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 16:05:06 +03:00
										 |  |  | 	err = hci_req_run(&req, clean_up_hci_complete); | 
					
						
							|  |  |  | 	if (!err && discov_stopped) | 
					
						
							|  |  |  | 		hci_discovery_set_state(hdev, DISCOVERY_STOPPING); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							| 
									
										
										
										
											2014-02-24 14:52:22 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int set_powered(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 		       u16 len) | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_mode *cp = data; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:55 -03:00
										 |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2012-02-21 14:13:02 +02:00
										 |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("request for %s", hdev->name); | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-09 16:05:19 +02:00
										 |  |  | 	if (cp->val != 0x00 && cp->val != 0x01) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:06 +03:00
										 |  |  | 	if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev)) { | 
					
						
							|  |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED, | 
					
						
							|  |  |  | 				 MGMT_STATUS_BUSY); | 
					
						
							|  |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 12:14:25 +01:00
										 |  |  | 	if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags)) { | 
					
						
							|  |  |  | 		cancel_delayed_work(&hdev->power_off); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (cp->val) { | 
					
						
							| 
									
										
										
										
											2013-01-09 15:29:40 +02:00
										 |  |  | 			mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev, | 
					
						
							|  |  |  | 					 data, len); | 
					
						
							|  |  |  | 			err = mgmt_powered(hdev, 1); | 
					
						
							| 
									
										
										
										
											2012-02-21 12:14:25 +01:00
										 |  |  | 			goto failed; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 14:13:02 +02:00
										 |  |  | 	if (!!cp->val == hdev_is_powered(hdev)) { | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | 		err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev); | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev, data, len); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:55 -03:00
										 |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 		goto failed; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:55 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-24 14:52:22 +02:00
										 |  |  | 	if (cp->val) { | 
					
						
							| 
									
										
										
										
											2013-01-14 22:33:51 +02:00
										 |  |  | 		queue_work(hdev->req_workqueue, &hdev->power_on); | 
					
						
							| 
									
										
										
										
											2014-02-24 14:52:22 +02:00
										 |  |  | 		err = 0; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		/* Disconnect connections, stop scans, etc */ | 
					
						
							|  |  |  | 		err = clean_up_hci_state(hdev); | 
					
						
							| 
									
										
										
										
											2014-02-28 09:33:44 +02:00
										 |  |  | 		if (!err) | 
					
						
							|  |  |  | 			queue_delayed_work(hdev->req_workqueue, &hdev->power_off, | 
					
						
							|  |  |  | 					   HCI_POWER_OFF_TIMEOUT); | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-24 14:52:22 +02:00
										 |  |  | 		/* ENODATA means there were no HCI commands queued */ | 
					
						
							|  |  |  | 		if (err == -ENODATA) { | 
					
						
							| 
									
										
										
										
											2014-02-28 09:33:44 +02:00
										 |  |  | 			cancel_delayed_work(&hdev->power_off); | 
					
						
							| 
									
										
										
										
											2014-02-24 14:52:22 +02:00
										 |  |  | 			queue_work(hdev->req_workqueue, &hdev->power_off.work); | 
					
						
							|  |  |  | 			err = 0; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | failed: | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:55 -03:00
										 |  |  | 	return err; | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 16:55:31 +02:00
										 |  |  | static int new_settings(struct hci_dev *hdev, struct sock *skip) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__le32 ev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ev = cpu_to_le32(get_current_settings(hdev)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return mgmt_event(MGMT_EV_NEW_SETTINGS, hdev, &ev, sizeof(ev), skip); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-09 13:28:26 +03:00
										 |  |  | int mgmt_new_settings(struct hci_dev *hdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return new_settings(hdev, NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:07 +03:00
										 |  |  | struct cmd_lookup { | 
					
						
							|  |  |  | 	struct sock *sk; | 
					
						
							|  |  |  | 	struct hci_dev *hdev; | 
					
						
							|  |  |  | 	u8 mgmt_status; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void settings_rsp(struct pending_cmd *cmd, void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct cmd_lookup *match = data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	send_settings_rsp(cmd->sk, cmd->opcode, match->hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_del(&cmd->list); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (match->sk == NULL) { | 
					
						
							|  |  |  | 		match->sk = cmd->sk; | 
					
						
							|  |  |  | 		sock_hold(match->sk); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_pending_free(cmd); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void cmd_status_rsp(struct pending_cmd *cmd, void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u8 *status = data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd_status(cmd->sk, cmd->index, cmd->opcode, *status); | 
					
						
							|  |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-02 15:45:22 +03:00
										 |  |  | static u8 mgmt_bredr_support(struct hci_dev *hdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!lmp_bredr_capable(hdev)) | 
					
						
							|  |  |  | 		return MGMT_STATUS_NOT_SUPPORTED; | 
					
						
							|  |  |  | 	else if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		return MGMT_STATUS_REJECTED; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return MGMT_STATUS_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static u8 mgmt_le_support(struct hci_dev *hdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!lmp_le_capable(hdev)) | 
					
						
							|  |  |  | 		return MGMT_STATUS_NOT_SUPPORTED; | 
					
						
							|  |  |  | 	else if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		return MGMT_STATUS_REJECTED; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return MGMT_STATUS_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-14 21:15:27 +03:00
										 |  |  | static void set_discoverable_complete(struct hci_dev *hdev, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 	struct mgmt_mode *cp; | 
					
						
							| 
									
										
										
										
											2013-10-15 06:33:57 -07:00
										 |  |  | 	struct hci_request req; | 
					
						
							| 
									
										
										
										
											2013-10-14 21:15:27 +03:00
										 |  |  | 	bool changed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("status 0x%02x", status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev); | 
					
						
							|  |  |  | 	if (!cmd) | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (status) { | 
					
						
							|  |  |  | 		u8 mgmt_err = mgmt_status(status); | 
					
						
							|  |  |  | 		cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err); | 
					
						
							| 
									
										
										
										
											2013-10-15 09:13:39 -07:00
										 |  |  | 		clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2013-10-14 21:15:27 +03:00
										 |  |  | 		goto remove_cmd; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cp = cmd->param; | 
					
						
							| 
									
										
										
										
											2013-10-15 08:11:02 -07:00
										 |  |  | 	if (cp->val) { | 
					
						
							| 
									
										
										
										
											2013-10-14 21:15:27 +03:00
										 |  |  | 		changed = !test_and_set_bit(HCI_DISCOVERABLE, | 
					
						
							|  |  |  | 					    &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2013-10-15 08:11:02 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (hdev->discov_timeout > 0) { | 
					
						
							|  |  |  | 			int to = msecs_to_jiffies(hdev->discov_timeout * 1000); | 
					
						
							|  |  |  | 			queue_delayed_work(hdev->workqueue, &hdev->discov_off, | 
					
						
							|  |  |  | 					   to); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2013-10-14 21:15:27 +03:00
										 |  |  | 		changed = test_and_clear_bit(HCI_DISCOVERABLE, | 
					
						
							|  |  |  | 					     &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2013-10-15 08:11:02 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-10-14 21:15:27 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	send_settings_rsp(cmd->sk, MGMT_OP_SET_DISCOVERABLE, hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (changed) | 
					
						
							|  |  |  | 		new_settings(hdev, cmd->sk); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 06:33:57 -07:00
										 |  |  | 	/* When the discoverable mode gets changed, make sure
 | 
					
						
							|  |  |  | 	 * that class of device has the limited discoverable | 
					
						
							| 
									
										
										
										
											2014-08-01 11:13:31 +03:00
										 |  |  | 	 * bit correctly set. Also update page scan based on whitelist | 
					
						
							|  |  |  | 	 * entries. | 
					
						
							| 
									
										
										
										
											2013-10-15 06:33:57 -07:00
										 |  |  | 	 */ | 
					
						
							|  |  |  | 	hci_req_init(&req, hdev); | 
					
						
							| 
									
										
										
										
											2014-08-01 11:13:31 +03:00
										 |  |  | 	hci_update_page_scan(hdev, &req); | 
					
						
							| 
									
										
										
										
											2013-10-15 06:33:57 -07:00
										 |  |  | 	update_class(&req); | 
					
						
							|  |  |  | 	hci_req_run(&req, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-14 21:15:27 +03:00
										 |  |  | remove_cmd: | 
					
						
							|  |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int set_discoverable(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			    u16 len) | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_cp_set_discoverable *cp = data; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:55 -03:00
										 |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2013-10-14 21:15:27 +03:00
										 |  |  | 	struct hci_request req; | 
					
						
							| 
									
										
										
										
											2012-02-21 16:01:30 +02:00
										 |  |  | 	u16 timeout; | 
					
						
							| 
									
										
										
										
											2013-10-20 19:00:07 +03:00
										 |  |  | 	u8 scan; | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("request for %s", hdev->name); | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-20 19:00:07 +03:00
										 |  |  | 	if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags) && | 
					
						
							|  |  |  | 	    !test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2012-10-24 21:11:58 +03:00
										 |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE, | 
					
						
							| 
									
										
										
										
											2013-10-20 19:00:07 +03:00
										 |  |  | 				  MGMT_STATUS_REJECTED); | 
					
						
							| 
									
										
										
										
											2012-10-24 21:11:58 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 09:13:39 -07:00
										 |  |  | 	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02) | 
					
						
							| 
									
										
										
										
											2013-01-09 16:05:19 +02:00
										 |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-12 20:31:08 -07:00
										 |  |  | 	timeout = __le16_to_cpu(cp->timeout); | 
					
						
							| 
									
										
										
										
											2013-10-15 09:13:39 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Disabling discoverable requires that no timeout is set,
 | 
					
						
							|  |  |  | 	 * and enabling limited discoverable requires a timeout. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if ((cp->val == 0x00 && timeout > 0) || | 
					
						
							|  |  |  | 	    (cp->val == 0x02 && timeout == 0)) | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 16:01:30 +02:00
										 |  |  | 	if (!hdev_is_powered(hdev) && timeout > 0) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_NOT_POWERED); | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) || | 
					
						
							| 
									
										
										
										
											2012-05-17 00:36:20 -03:00
										 |  |  | 	    mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_BUSY); | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 16:01:30 +02:00
										 |  |  | 	if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_REJECTED); | 
					
						
							| 
									
										
										
										
											2012-02-21 16:01:30 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!hdev_is_powered(hdev)) { | 
					
						
							| 
									
										
										
										
											2012-02-21 19:40:05 +02:00
										 |  |  | 		bool changed = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 09:13:39 -07:00
										 |  |  | 		/* Setting limited discoverable when powered off is
 | 
					
						
							|  |  |  | 		 * not a valid operation since it requires a timeout | 
					
						
							|  |  |  | 		 * and so no need to check HCI_LIMITED_DISCOVERABLE. | 
					
						
							|  |  |  | 		 */ | 
					
						
							| 
									
										
										
										
											2012-02-21 19:40:05 +02:00
										 |  |  | 		if (!!cp->val != test_bit(HCI_DISCOVERABLE, &hdev->dev_flags)) { | 
					
						
							|  |  |  | 			change_bit(HCI_DISCOVERABLE, &hdev->dev_flags); | 
					
						
							|  |  |  | 			changed = true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 16:01:30 +02:00
										 |  |  | 		err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev); | 
					
						
							| 
									
										
										
										
											2012-02-21 19:40:05 +02:00
										 |  |  | 		if (err < 0) | 
					
						
							|  |  |  | 			goto failed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (changed) | 
					
						
							|  |  |  | 			err = new_settings(hdev, sk); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 16:01:30 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 09:13:39 -07:00
										 |  |  | 	/* If the current mode is the same, then just update the timeout
 | 
					
						
							|  |  |  | 	 * value with the new value. And if only the timeout gets updated, | 
					
						
							|  |  |  | 	 * then no need for any HCI transactions. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (!!cp->val == test_bit(HCI_DISCOVERABLE, &hdev->dev_flags) && | 
					
						
							|  |  |  | 	    (cp->val == 0x02) == test_bit(HCI_LIMITED_DISCOVERABLE, | 
					
						
							|  |  |  | 					  &hdev->dev_flags)) { | 
					
						
							| 
									
										
										
										
											2013-10-15 08:28:51 -07:00
										 |  |  | 		cancel_delayed_work(&hdev->discov_off); | 
					
						
							|  |  |  | 		hdev->discov_timeout = timeout; | 
					
						
							| 
									
										
										
										
											2012-02-22 18:21:00 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 08:28:51 -07:00
										 |  |  | 		if (cp->val && hdev->discov_timeout > 0) { | 
					
						
							|  |  |  | 			int to = msecs_to_jiffies(hdev->discov_timeout * 1000); | 
					
						
							| 
									
										
										
										
											2012-02-22 18:21:00 +01:00
										 |  |  | 			queue_delayed_work(hdev->workqueue, &hdev->discov_off, | 
					
						
							| 
									
										
										
										
											2013-10-15 08:28:51 -07:00
										 |  |  | 					   to); | 
					
						
							| 
									
										
										
										
											2012-02-22 18:21:00 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | 		err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev); | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, hdev, data, len); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:55 -03:00
										 |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | 		goto failed; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:55 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 09:13:39 -07:00
										 |  |  | 	/* Cancel any potential discoverable timeout that might be
 | 
					
						
							|  |  |  | 	 * still active and store new timeout value. The arming of | 
					
						
							|  |  |  | 	 * the timeout happens in the complete handler. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	cancel_delayed_work(&hdev->discov_off); | 
					
						
							|  |  |  | 	hdev->discov_timeout = timeout; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-19 23:38:22 +03:00
										 |  |  | 	/* Limited discoverable mode */ | 
					
						
							|  |  |  | 	if (cp->val == 0x02) | 
					
						
							|  |  |  | 		set_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-14 21:15:27 +03:00
										 |  |  | 	hci_req_init(&req, hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-20 19:00:07 +03:00
										 |  |  | 	/* The procedure for LE-only controllers is much simpler - just
 | 
					
						
							|  |  |  | 	 * update the advertising data. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		goto update_ad; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | 	scan = SCAN_PAGE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 09:13:39 -07:00
										 |  |  | 	if (cp->val) { | 
					
						
							|  |  |  | 		struct hci_cp_write_current_iac_lap hci_cp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (cp->val == 0x02) { | 
					
						
							|  |  |  | 			/* Limited discoverable mode */ | 
					
						
							| 
									
										
										
										
											2013-10-23 08:28:01 -07:00
										 |  |  | 			hci_cp.num_iac = min_t(u8, hdev->num_iac, 2); | 
					
						
							| 
									
										
										
										
											2013-10-15 09:13:39 -07:00
										 |  |  | 			hci_cp.iac_lap[0] = 0x00;	/* LIAC */ | 
					
						
							|  |  |  | 			hci_cp.iac_lap[1] = 0x8b; | 
					
						
							|  |  |  | 			hci_cp.iac_lap[2] = 0x9e; | 
					
						
							|  |  |  | 			hci_cp.iac_lap[3] = 0x33;	/* GIAC */ | 
					
						
							|  |  |  | 			hci_cp.iac_lap[4] = 0x8b; | 
					
						
							|  |  |  | 			hci_cp.iac_lap[5] = 0x9e; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			/* General discoverable mode */ | 
					
						
							|  |  |  | 			hci_cp.num_iac = 1; | 
					
						
							|  |  |  | 			hci_cp.iac_lap[0] = 0x33;	/* GIAC */ | 
					
						
							|  |  |  | 			hci_cp.iac_lap[1] = 0x8b; | 
					
						
							|  |  |  | 			hci_cp.iac_lap[2] = 0x9e; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		hci_req_add(&req, HCI_OP_WRITE_CURRENT_IAC_LAP, | 
					
						
							|  |  |  | 			    (hci_cp.num_iac * 3) + 1, &hci_cp); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | 		scan |= SCAN_INQUIRY; | 
					
						
							| 
									
										
										
										
											2013-10-15 09:13:39 -07:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 09:13:39 -07:00
										 |  |  | 	hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, sizeof(scan), &scan); | 
					
						
							| 
									
										
										
										
											2013-10-14 21:15:27 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-20 19:00:07 +03:00
										 |  |  | update_ad: | 
					
						
							|  |  |  | 	update_adv_data(&req); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-14 21:15:27 +03:00
										 |  |  | 	err = hci_req_run(&req, set_discoverable_complete); | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | 	if (err < 0) | 
					
						
							| 
									
										
										
										
											2011-02-19 12:06:02 -03:00
										 |  |  | 		mgmt_pending_remove(cmd); | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | failed: | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:09 -05:00
										 |  |  | static void write_fast_connectable(struct hci_request *req, bool enable) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:13 -05:00
										 |  |  | 	struct hci_dev *hdev = req->hdev; | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:09 -05:00
										 |  |  | 	struct hci_cp_write_page_scan_activity acp; | 
					
						
							|  |  |  | 	u8 type; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-21 16:51:53 +03:00
										 |  |  | 	if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:14 -05:00
										 |  |  | 	if (hdev->hci_ver < BLUETOOTH_VER_1_2) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:09 -05:00
										 |  |  | 	if (enable) { | 
					
						
							|  |  |  | 		type = PAGE_SCAN_TYPE_INTERLACED; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* 160 msec page scan interval */ | 
					
						
							| 
									
										
										
										
											2014-03-12 10:52:35 -07:00
										 |  |  | 		acp.interval = cpu_to_le16(0x0100); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:09 -05:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		type = PAGE_SCAN_TYPE_STANDARD;	/* default */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* default 1.28 sec page scan */ | 
					
						
							| 
									
										
										
										
											2014-03-12 10:52:35 -07:00
										 |  |  | 		acp.interval = cpu_to_le16(0x0800); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:09 -05:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-12 10:52:35 -07:00
										 |  |  | 	acp.window = cpu_to_le16(0x0012); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:09 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:13 -05:00
										 |  |  | 	if (__cpu_to_le16(hdev->page_scan_interval) != acp.interval || | 
					
						
							|  |  |  | 	    __cpu_to_le16(hdev->page_scan_window) != acp.window) | 
					
						
							|  |  |  | 		hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY, | 
					
						
							|  |  |  | 			    sizeof(acp), &acp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (hdev->page_scan_type != type) | 
					
						
							|  |  |  | 		hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_TYPE, 1, &type); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:09 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:04 -05:00
										 |  |  | static void set_connectable_complete(struct hci_dev *hdev, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2013-10-14 16:20:04 +03:00
										 |  |  | 	struct mgmt_mode *cp; | 
					
						
							| 
									
										
										
										
											2014-07-10 12:09:08 +03:00
										 |  |  | 	bool conn_changed, discov_changed; | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:04 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("status 0x%02x", status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev); | 
					
						
							|  |  |  | 	if (!cmd) | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-14 16:20:05 +03:00
										 |  |  | 	if (status) { | 
					
						
							|  |  |  | 		u8 mgmt_err = mgmt_status(status); | 
					
						
							|  |  |  | 		cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err); | 
					
						
							|  |  |  | 		goto remove_cmd; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-14 16:20:04 +03:00
										 |  |  | 	cp = cmd->param; | 
					
						
							| 
									
										
										
										
											2014-07-10 12:09:08 +03:00
										 |  |  | 	if (cp->val) { | 
					
						
							|  |  |  | 		conn_changed = !test_and_set_bit(HCI_CONNECTABLE, | 
					
						
							|  |  |  | 						 &hdev->dev_flags); | 
					
						
							|  |  |  | 		discov_changed = false; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		conn_changed = test_and_clear_bit(HCI_CONNECTABLE, | 
					
						
							|  |  |  | 						  &hdev->dev_flags); | 
					
						
							|  |  |  | 		discov_changed = test_and_clear_bit(HCI_DISCOVERABLE, | 
					
						
							|  |  |  | 						    &hdev->dev_flags); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-10-14 16:20:04 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:04 -05:00
										 |  |  | 	send_settings_rsp(cmd->sk, MGMT_OP_SET_CONNECTABLE, hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-10 12:09:08 +03:00
										 |  |  | 	if (conn_changed || discov_changed) { | 
					
						
							| 
									
										
										
										
											2013-10-14 16:20:04 +03:00
										 |  |  | 		new_settings(hdev, cmd->sk); | 
					
						
							| 
									
										
										
										
											2014-08-01 11:13:31 +03:00
										 |  |  | 		hci_update_page_scan(hdev, NULL); | 
					
						
							| 
									
										
										
										
											2014-07-10 12:09:08 +03:00
										 |  |  | 		if (discov_changed) | 
					
						
							|  |  |  | 			mgmt_update_adv_data(hdev); | 
					
						
							| 
									
										
										
										
											2014-07-07 14:40:22 +03:00
										 |  |  | 		hci_update_background_scan(hdev); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-10-14 16:20:04 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-14 16:20:05 +03:00
										 |  |  | remove_cmd: | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:04 -05:00
										 |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-19 23:38:18 +03:00
										 |  |  | static int set_connectable_update_settings(struct hci_dev *hdev, | 
					
						
							|  |  |  | 					   struct sock *sk, u8 val) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	bool changed = false; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!!val != test_bit(HCI_CONNECTABLE, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		changed = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (val) { | 
					
						
							|  |  |  | 		set_bit(HCI_CONNECTABLE, &hdev->dev_flags); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		clear_bit(HCI_CONNECTABLE, &hdev->dev_flags); | 
					
						
							|  |  |  | 		clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev); | 
					
						
							|  |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 16:35:34 +03:00
										 |  |  | 	if (changed) { | 
					
						
							| 
									
										
										
										
											2014-08-01 11:13:31 +03:00
										 |  |  | 		hci_update_page_scan(hdev, NULL); | 
					
						
							| 
									
										
										
										
											2014-07-08 16:35:34 +03:00
										 |  |  | 		hci_update_background_scan(hdev); | 
					
						
							| 
									
										
										
										
											2013-10-19 23:38:18 +03:00
										 |  |  | 		return new_settings(hdev, sk); | 
					
						
							| 
									
										
										
										
											2014-07-08 16:35:34 +03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-10-19 23:38:18 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			   u16 len) | 
					
						
							| 
									
										
										
										
											2010-12-30 00:18:33 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_mode *cp = data; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:55 -03:00
										 |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:04 -05:00
										 |  |  | 	struct hci_request req; | 
					
						
							| 
									
										
										
										
											2013-10-14 21:15:24 +03:00
										 |  |  | 	u8 scan; | 
					
						
							| 
									
										
										
										
											2010-12-30 00:18:33 +02:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("request for %s", hdev->name); | 
					
						
							| 
									
										
										
										
											2010-12-30 00:18:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-14 21:15:24 +03:00
										 |  |  | 	if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags) && | 
					
						
							|  |  |  | 	    !test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2012-10-24 21:11:58 +03:00
										 |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE, | 
					
						
							| 
									
										
										
										
											2013-10-14 21:15:24 +03:00
										 |  |  | 				  MGMT_STATUS_REJECTED); | 
					
						
							| 
									
										
										
										
											2012-10-24 21:11:58 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-09 16:05:19 +02:00
										 |  |  | 	if (cp->val != 0x00 && cp->val != 0x01) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2010-12-30 00:18:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 14:13:02 +02:00
										 |  |  | 	if (!hdev_is_powered(hdev)) { | 
					
						
							| 
									
										
										
										
											2013-10-19 23:38:18 +03:00
										 |  |  | 		err = set_connectable_update_settings(hdev, sk, cp->val); | 
					
						
							| 
									
										
										
										
											2010-12-30 00:18:33 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) || | 
					
						
							| 
									
										
										
										
											2012-05-17 00:36:20 -03:00
										 |  |  | 	    mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_BUSY); | 
					
						
							| 
									
										
										
										
											2010-12-30 00:18:33 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, hdev, data, len); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:55 -03:00
										 |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							| 
									
										
										
										
											2010-12-30 00:18:33 +02:00
										 |  |  | 		goto failed; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:55 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-12-30 00:18:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-14 16:20:03 +03:00
										 |  |  | 	hci_req_init(&req, hdev); | 
					
						
							| 
									
										
										
										
											2010-12-30 00:18:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-20 19:00:07 +03:00
										 |  |  | 	/* If BR/EDR is not enabled and we disable advertising as a
 | 
					
						
							|  |  |  | 	 * by-product of disabling connectable, we need to update the | 
					
						
							|  |  |  | 	 * advertising flags. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) { | 
					
						
							|  |  |  | 		if (!cp->val) { | 
					
						
							|  |  |  | 			clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags); | 
					
						
							|  |  |  | 			clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		update_adv_data(&req); | 
					
						
							|  |  |  | 	} else if (cp->val != test_bit(HCI_PSCAN, &hdev->flags)) { | 
					
						
							| 
									
										
										
										
											2013-10-14 16:20:03 +03:00
										 |  |  | 		if (cp->val) { | 
					
						
							|  |  |  | 			scan = SCAN_PAGE; | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2014-07-28 20:53:58 +03:00
										 |  |  | 			/* If we don't have any whitelist entries just
 | 
					
						
							|  |  |  | 			 * disable all scanning. If there are entries | 
					
						
							|  |  |  | 			 * and we had both page and inquiry scanning | 
					
						
							|  |  |  | 			 * enabled then fall back to only page scanning. | 
					
						
							|  |  |  | 			 * Otherwise no changes are needed. | 
					
						
							|  |  |  | 			 */ | 
					
						
							|  |  |  | 			if (list_empty(&hdev->whitelist)) | 
					
						
							|  |  |  | 				scan = SCAN_DISABLED; | 
					
						
							|  |  |  | 			else if (test_bit(HCI_ISCAN, &hdev->flags)) | 
					
						
							|  |  |  | 				scan = SCAN_PAGE; | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				goto no_scan_update; | 
					
						
							| 
									
										
										
										
											2013-10-14 16:20:03 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (test_bit(HCI_ISCAN, &hdev->flags) && | 
					
						
							| 
									
										
										
										
											2013-10-14 16:38:45 -07:00
										 |  |  | 			    hdev->discov_timeout > 0) | 
					
						
							| 
									
										
										
										
											2013-10-14 16:20:03 +03:00
										 |  |  | 				cancel_delayed_work(&hdev->discov_off); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:04 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-14 16:20:03 +03:00
										 |  |  | 		hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:04 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-28 20:53:58 +03:00
										 |  |  | no_scan_update: | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:14 -05:00
										 |  |  | 	/* If we're going from non-connectable to connectable or
 | 
					
						
							|  |  |  | 	 * vice-versa when fast connectable is enabled ensure that fast | 
					
						
							|  |  |  | 	 * connectable gets disabled. write_fast_connectable won't do | 
					
						
							|  |  |  | 	 * anything if the page scan parameters are already what they | 
					
						
							|  |  |  | 	 * should be. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (cp->val || test_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:10 -05:00
										 |  |  | 		write_fast_connectable(&req, false); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-10 10:51:27 +03:00
										 |  |  | 	/* Update the advertising parameters if necessary */ | 
					
						
							|  |  |  | 	if (test_bit(HCI_ADVERTISING, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2013-10-14 21:15:24 +03:00
										 |  |  | 		enable_advertising(&req); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:04 -05:00
										 |  |  | 	err = hci_req_run(&req, set_connectable_complete); | 
					
						
							| 
									
										
										
										
											2013-10-14 16:20:03 +03:00
										 |  |  | 	if (err < 0) { | 
					
						
							| 
									
										
										
										
											2011-02-19 12:06:02 -03:00
										 |  |  | 		mgmt_pending_remove(cmd); | 
					
						
							| 
									
										
										
										
											2013-10-14 16:20:03 +03:00
										 |  |  | 		if (err == -ENODATA) | 
					
						
							| 
									
										
										
										
											2013-10-19 23:38:19 +03:00
										 |  |  | 			err = set_connectable_update_settings(hdev, sk, | 
					
						
							|  |  |  | 							      cp->val); | 
					
						
							| 
									
										
										
										
											2013-10-14 16:20:03 +03:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-12-30 00:18:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | failed: | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2010-12-30 00:18:33 +02:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-30 09:22:23 +03:00
										 |  |  | static int set_bondable(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			u16 len) | 
					
						
							| 
									
										
										
										
											2011-01-26 13:11:03 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_mode *cp = data; | 
					
						
							| 
									
										
										
										
											2013-10-06 16:11:57 -07:00
										 |  |  | 	bool changed; | 
					
						
							| 
									
										
										
										
											2011-01-26 13:11:03 +02:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("request for %s", hdev->name); | 
					
						
							| 
									
										
										
										
											2011-01-26 13:11:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-09 16:05:19 +02:00
										 |  |  | 	if (cp->val != 0x00 && cp->val != 0x01) | 
					
						
							| 
									
										
										
										
											2014-07-30 09:22:23 +03:00
										 |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_BONDABLE, | 
					
						
							| 
									
										
										
										
											2013-01-09 16:05:19 +02:00
										 |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2011-01-26 13:11:03 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (cp->val) | 
					
						
							| 
									
										
										
										
											2014-07-30 09:22:22 +03:00
										 |  |  | 		changed = !test_and_set_bit(HCI_BONDABLE, &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2011-01-26 13:11:03 +02:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2014-07-30 09:22:22 +03:00
										 |  |  | 		changed = test_and_clear_bit(HCI_BONDABLE, &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2011-01-26 13:11:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-30 09:22:23 +03:00
										 |  |  | 	err = send_settings_rsp(sk, MGMT_OP_SET_BONDABLE, hdev); | 
					
						
							| 
									
										
										
										
											2011-01-26 13:11:03 +02:00
										 |  |  | 	if (err < 0) | 
					
						
							| 
									
										
										
										
											2013-10-06 16:11:57 -07:00
										 |  |  | 		goto unlock; | 
					
						
							| 
									
										
										
										
											2011-01-26 13:11:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 16:11:57 -07:00
										 |  |  | 	if (changed) | 
					
						
							|  |  |  | 		err = new_settings(hdev, sk); | 
					
						
							| 
									
										
										
										
											2011-01-26 13:11:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 16:11:57 -07:00
										 |  |  | unlock: | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-01-26 13:11:03 +02:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | static int set_link_security(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							|  |  |  | 			     u16 len) | 
					
						
							| 
									
										
										
										
											2012-02-16 23:56:27 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_mode *cp = data; | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2013-10-02 15:45:22 +03:00
										 |  |  | 	u8 val, status; | 
					
						
							| 
									
										
										
										
											2012-02-16 23:56:27 +02:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("request for %s", hdev->name); | 
					
						
							| 
									
										
										
										
											2012-02-16 23:56:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-02 15:45:22 +03:00
										 |  |  | 	status = mgmt_bredr_support(hdev); | 
					
						
							|  |  |  | 	if (status) | 
					
						
							| 
									
										
										
										
											2012-10-24 21:11:58 +03:00
										 |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY, | 
					
						
							| 
									
										
										
										
											2013-10-02 15:45:22 +03:00
										 |  |  | 				  status); | 
					
						
							| 
									
										
										
										
											2012-10-24 21:11:58 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-09 16:05:19 +02:00
										 |  |  | 	if (cp->val != 0x00 && cp->val != 0x01) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-16 23:56:27 +02:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 14:13:02 +02:00
										 |  |  | 	if (!hdev_is_powered(hdev)) { | 
					
						
							| 
									
										
										
										
											2012-02-22 11:58:37 +02:00
										 |  |  | 		bool changed = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!!cp->val != test_bit(HCI_LINK_SECURITY, | 
					
						
							| 
									
										
										
										
											2012-05-17 00:36:20 -03:00
										 |  |  | 					  &hdev->dev_flags)) { | 
					
						
							| 
									
										
										
										
											2012-02-22 11:58:37 +02:00
										 |  |  | 			change_bit(HCI_LINK_SECURITY, &hdev->dev_flags); | 
					
						
							|  |  |  | 			changed = true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev); | 
					
						
							|  |  |  | 		if (err < 0) | 
					
						
							|  |  |  | 			goto failed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (changed) | 
					
						
							|  |  |  | 			err = new_settings(hdev, sk); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-16 23:56:27 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (mgmt_pending_find(MGMT_OP_SET_LINK_SECURITY, hdev)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_BUSY); | 
					
						
							| 
									
										
										
										
											2012-02-16 23:56:27 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	val = !!cp->val; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (test_bit(HCI_AUTH, &hdev->flags) == val) { | 
					
						
							|  |  |  | 		err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev); | 
					
						
							|  |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_SET_LINK_SECURITY, hdev, data, len); | 
					
						
							|  |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, sizeof(val), &val); | 
					
						
							|  |  |  | 	if (err < 0) { | 
					
						
							|  |  |  | 		mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | failed: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int set_ssp(struct sock *sk, struct hci_dev *hdev, void *data, u16 len) | 
					
						
							| 
									
										
										
										
											2012-02-17 00:56:28 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_mode *cp = data; | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2013-10-10 03:08:10 -07:00
										 |  |  | 	u8 status; | 
					
						
							| 
									
										
										
										
											2012-02-17 00:56:28 +02:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("request for %s", hdev->name); | 
					
						
							| 
									
										
										
										
											2012-02-17 00:56:28 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-02 21:31:52 -07:00
										 |  |  | 	status = mgmt_bredr_support(hdev); | 
					
						
							|  |  |  | 	if (status) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP, status); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-09 15:29:38 +02:00
										 |  |  | 	if (!lmp_ssp_capable(hdev)) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP, | 
					
						
							|  |  |  | 				  MGMT_STATUS_NOT_SUPPORTED); | 
					
						
							| 
									
										
										
										
											2012-02-17 00:56:28 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-09 16:05:19 +02:00
										 |  |  | 	if (cp->val != 0x00 && cp->val != 0x01) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-09 15:29:38 +02:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2012-02-22 16:35:26 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 14:13:02 +02:00
										 |  |  | 	if (!hdev_is_powered(hdev)) { | 
					
						
							| 
									
										
										
										
											2013-10-10 03:08:11 -07:00
										 |  |  | 		bool changed; | 
					
						
							| 
									
										
										
										
											2012-02-22 12:38:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-10 03:08:11 -07:00
										 |  |  | 		if (cp->val) { | 
					
						
							|  |  |  | 			changed = !test_and_set_bit(HCI_SSP_ENABLED, | 
					
						
							|  |  |  | 						    &hdev->dev_flags); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			changed = test_and_clear_bit(HCI_SSP_ENABLED, | 
					
						
							|  |  |  | 						     &hdev->dev_flags); | 
					
						
							|  |  |  | 			if (!changed) | 
					
						
							|  |  |  | 				changed = test_and_clear_bit(HCI_HS_ENABLED, | 
					
						
							|  |  |  | 							     &hdev->dev_flags); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				clear_bit(HCI_HS_ENABLED, &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2012-02-22 12:38:31 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev); | 
					
						
							|  |  |  | 		if (err < 0) | 
					
						
							|  |  |  | 			goto failed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (changed) | 
					
						
							|  |  |  | 			err = new_settings(hdev, sk); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-17 00:56:28 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-10 03:08:11 -07:00
										 |  |  | 	if (mgmt_pending_find(MGMT_OP_SET_SSP, hdev) || | 
					
						
							|  |  |  | 	    mgmt_pending_find(MGMT_OP_SET_HS, hdev)) { | 
					
						
							| 
									
										
										
										
											2012-03-16 16:02:56 +01:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_SET_SSP, | 
					
						
							|  |  |  | 				 MGMT_STATUS_BUSY); | 
					
						
							| 
									
										
										
										
											2012-02-17 00:56:28 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-10 03:08:10 -07:00
										 |  |  | 	if (!!cp->val == test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) { | 
					
						
							| 
									
										
										
										
											2012-02-17 00:56:28 +02:00
										 |  |  | 		err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev); | 
					
						
							|  |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_SET_SSP, hdev, data, len); | 
					
						
							|  |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-24 14:00:27 +03:00
										 |  |  | 	if (!cp->val && test_bit(HCI_USE_DEBUG_KEYS, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE, | 
					
						
							|  |  |  | 			     sizeof(cp->val), &cp->val); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-10 03:08:10 -07:00
										 |  |  | 	err = hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, 1, &cp->val); | 
					
						
							| 
									
										
										
										
											2012-02-17 00:56:28 +02:00
										 |  |  | 	if (err < 0) { | 
					
						
							|  |  |  | 		mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | failed: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int set_hs(struct sock *sk, struct hci_dev *hdev, void *data, u16 len) | 
					
						
							| 
									
										
										
										
											2012-02-20 23:50:38 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_mode *cp = data; | 
					
						
							| 
									
										
										
										
											2013-10-01 22:59:23 -07:00
										 |  |  | 	bool changed; | 
					
						
							| 
									
										
										
										
											2013-10-02 15:45:22 +03:00
										 |  |  | 	u8 status; | 
					
						
							| 
									
										
										
										
											2013-10-01 22:59:23 -07:00
										 |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2012-02-20 23:50:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("request for %s", hdev->name); | 
					
						
							| 
									
										
										
										
											2012-02-20 23:50:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-02 15:45:22 +03:00
										 |  |  | 	status = mgmt_bredr_support(hdev); | 
					
						
							|  |  |  | 	if (status) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_HS, status); | 
					
						
							| 
									
										
										
										
											2012-02-20 23:50:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-10 03:08:11 -07:00
										 |  |  | 	if (!lmp_ssp_capable(hdev)) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_HS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_NOT_SUPPORTED); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_HS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_REJECTED); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-09 16:05:19 +02:00
										 |  |  | 	if (cp->val != 0x00 && cp->val != 0x01) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_HS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-01 22:59:23 -07:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-02 00:27:02 -07:00
										 |  |  | 	if (cp->val) { | 
					
						
							| 
									
										
										
										
											2013-10-01 22:59:23 -07:00
										 |  |  | 		changed = !test_and_set_bit(HCI_HS_ENABLED, &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2013-10-02 00:27:02 -07:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		if (hdev_is_powered(hdev)) { | 
					
						
							|  |  |  | 			err = cmd_status(sk, hdev->id, MGMT_OP_SET_HS, | 
					
						
							|  |  |  | 					 MGMT_STATUS_REJECTED); | 
					
						
							|  |  |  | 			goto unlock; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-01 22:59:23 -07:00
										 |  |  | 		changed = test_and_clear_bit(HCI_HS_ENABLED, &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2013-10-02 00:27:02 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-10-01 22:59:23 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	err = send_settings_rsp(sk, MGMT_OP_SET_HS, hdev); | 
					
						
							|  |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (changed) | 
					
						
							|  |  |  | 		err = new_settings(hdev, sk); | 
					
						
							| 
									
										
										
										
											2012-02-20 23:50:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-01 22:59:23 -07:00
										 |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 	return err; | 
					
						
							| 
									
										
										
										
											2012-02-20 23:50:38 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:08 +03:00
										 |  |  | static void le_enable_complete(struct hci_dev *hdev, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct cmd_lookup match = { NULL, hdev }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (status) { | 
					
						
							|  |  |  | 		u8 mgmt_err = mgmt_status(status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, cmd_status_rsp, | 
					
						
							|  |  |  | 				     &mgmt_err); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, settings_rsp, &match); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	new_settings(hdev, match.sk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (match.sk) | 
					
						
							|  |  |  | 		sock_put(match.sk); | 
					
						
							| 
									
										
										
										
											2013-10-15 06:33:52 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Make sure the controller has a good default for
 | 
					
						
							|  |  |  | 	 * advertising data. Restrict the update to when LE | 
					
						
							|  |  |  | 	 * has actually been enabled. During power on, the | 
					
						
							|  |  |  | 	 * update in powered_update_hci will take care of it. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) { | 
					
						
							|  |  |  | 		struct hci_request req; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		hci_req_init(&req, hdev); | 
					
						
							| 
									
										
										
										
											2013-10-16 00:16:50 -07:00
										 |  |  | 		update_adv_data(&req); | 
					
						
							| 
									
										
										
										
											2013-10-16 00:16:48 -07:00
										 |  |  | 		update_scan_rsp_data(&req); | 
					
						
							| 
									
										
										
										
											2013-10-15 06:33:52 -07:00
										 |  |  | 		hci_req_run(&req, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-07 15:19:50 +03:00
										 |  |  | 		hci_update_background_scan(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 06:33:52 -07:00
										 |  |  | 		hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:08 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len) | 
					
						
							| 
									
										
										
										
											2012-02-22 16:37:11 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_mode *cp = data; | 
					
						
							|  |  |  | 	struct hci_cp_write_le_host_supported hci_cp; | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:08 +03:00
										 |  |  | 	struct hci_request req; | 
					
						
							| 
									
										
										
										
											2012-02-22 16:37:11 +02:00
										 |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2012-02-28 00:57:24 +02:00
										 |  |  | 	u8 val, enabled; | 
					
						
							| 
									
										
										
										
											2012-02-22 16:37:11 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("request for %s", hdev->name); | 
					
						
							| 
									
										
										
										
											2012-02-22 16:37:11 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-09 15:29:38 +02:00
										 |  |  | 	if (!lmp_le_capable(hdev)) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_LE, | 
					
						
							|  |  |  | 				  MGMT_STATUS_NOT_SUPPORTED); | 
					
						
							| 
									
										
										
										
											2012-02-29 19:55:35 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-09 16:05:19 +02:00
										 |  |  | 	if (cp->val != 0x00 && cp->val != 0x01) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_LE, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-19 18:35:21 +03:00
										 |  |  | 	/* LE-only devices do not allow toggling LE on/off */ | 
					
						
							| 
									
										
										
										
											2013-10-02 13:43:13 +03:00
										 |  |  | 	if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2013-04-19 18:35:21 +03:00
										 |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_LE, | 
					
						
							|  |  |  | 				  MGMT_STATUS_REJECTED); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-09 15:29:38 +02:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2012-02-22 16:37:11 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	val = !!cp->val; | 
					
						
							| 
									
										
										
										
											2012-11-23 16:50:51 -02:00
										 |  |  | 	enabled = lmp_host_le_capable(hdev); | 
					
						
							| 
									
										
										
										
											2012-02-22 16:37:11 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 00:57:24 +02:00
										 |  |  | 	if (!hdev_is_powered(hdev) || val == enabled) { | 
					
						
							| 
									
										
										
										
											2012-02-22 16:37:11 +02:00
										 |  |  | 		bool changed = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (val != test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) { | 
					
						
							|  |  |  | 			change_bit(HCI_LE_ENABLED, &hdev->dev_flags); | 
					
						
							|  |  |  | 			changed = true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-05 12:01:04 +02:00
										 |  |  | 		if (!val && test_bit(HCI_ADVERTISING, &hdev->dev_flags)) { | 
					
						
							|  |  |  | 			clear_bit(HCI_ADVERTISING, &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:09 +03:00
										 |  |  | 			changed = true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-22 16:37:11 +02:00
										 |  |  | 		err = send_settings_rsp(sk, MGMT_OP_SET_LE, hdev); | 
					
						
							|  |  |  | 		if (err < 0) | 
					
						
							| 
									
										
										
										
											2012-02-29 19:55:35 -08:00
										 |  |  | 			goto unlock; | 
					
						
							| 
									
										
										
										
											2012-02-22 16:37:11 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (changed) | 
					
						
							|  |  |  | 			err = new_settings(hdev, sk); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-29 19:55:35 -08:00
										 |  |  | 		goto unlock; | 
					
						
							| 
									
										
										
										
											2012-02-22 16:37:11 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:10 +03:00
										 |  |  | 	if (mgmt_pending_find(MGMT_OP_SET_LE, hdev) || | 
					
						
							|  |  |  | 	    mgmt_pending_find(MGMT_OP_SET_ADVERTISING, hdev)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_SET_LE, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_BUSY); | 
					
						
							| 
									
										
										
										
											2012-02-29 19:55:35 -08:00
										 |  |  | 		goto unlock; | 
					
						
							| 
									
										
										
										
											2012-02-22 16:37:11 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_SET_LE, hdev, data, len); | 
					
						
							|  |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							| 
									
										
										
										
											2012-02-29 19:55:35 -08:00
										 |  |  | 		goto unlock; | 
					
						
							| 
									
										
										
										
											2012-02-22 16:37:11 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 06:33:52 -07:00
										 |  |  | 	hci_req_init(&req, hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-22 16:37:11 +02:00
										 |  |  | 	memset(&hci_cp, 0, sizeof(hci_cp)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (val) { | 
					
						
							|  |  |  | 		hci_cp.le = val; | 
					
						
							| 
									
										
										
										
											2014-07-24 20:04:16 +02:00
										 |  |  | 		hci_cp.simul = 0x00; | 
					
						
							| 
									
										
										
										
											2013-10-15 06:33:52 -07:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2014-07-08 15:07:51 +03:00
										 |  |  | 		if (test_bit(HCI_LE_ADV, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2013-10-15 06:33:52 -07:00
										 |  |  | 			disable_advertising(&req); | 
					
						
							| 
									
										
										
										
											2012-02-22 16:37:11 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:08 +03:00
										 |  |  | 	hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(hci_cp), | 
					
						
							|  |  |  | 		    &hci_cp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = hci_req_run(&req, le_enable_complete); | 
					
						
							| 
									
										
										
										
											2012-04-12 20:33:21 +05:30
										 |  |  | 	if (err < 0) | 
					
						
							| 
									
										
										
										
											2012-02-22 16:37:11 +02:00
										 |  |  | 		mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-29 19:55:35 -08:00
										 |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2012-02-22 16:37:11 +02:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:54 -05:00
										 |  |  | /* This is a helper function to test for pending mgmt commands that can
 | 
					
						
							|  |  |  |  * cause CoD or EIR HCI commands. We can only allow one such pending | 
					
						
							|  |  |  |  * mgmt command at a time since otherwise we cannot easily track what | 
					
						
							|  |  |  |  * the current values are, will be, and based on that calculate if a new | 
					
						
							|  |  |  |  * HCI command needs to be sent and if yes with what value. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static bool pending_eir_or_class(struct hci_dev *hdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_for_each_entry(cmd, &hdev->mgmt_pending, list) { | 
					
						
							|  |  |  | 		switch (cmd->opcode) { | 
					
						
							|  |  |  | 		case MGMT_OP_ADD_UUID: | 
					
						
							|  |  |  | 		case MGMT_OP_REMOVE_UUID: | 
					
						
							|  |  |  | 		case MGMT_OP_SET_DEV_CLASS: | 
					
						
							|  |  |  | 		case MGMT_OP_SET_POWERED: | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-27 00:31:29 +02:00
										 |  |  | static const u8 bluetooth_base_uuid[] = { | 
					
						
							|  |  |  | 			0xfb, 0x34, 0x9b, 0x5f, 0x80, 0x00, 0x00, 0x80, | 
					
						
							|  |  |  | 			0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static u8 get_uuid_size(const u8 *uuid) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 val; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (memcmp(uuid, bluetooth_base_uuid, 12)) | 
					
						
							|  |  |  | 		return 128; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	val = get_unaligned_le32(&uuid[12]); | 
					
						
							|  |  |  | 	if (val > 0xffff) | 
					
						
							|  |  |  | 		return 32; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 16; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:55 -05:00
										 |  |  | static void mgmt_class_complete(struct hci_dev *hdev, u16 mgmt_op, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_find(mgmt_op, hdev); | 
					
						
							|  |  |  | 	if (!cmd) | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd_complete(cmd->sk, cmd->index, cmd->opcode, mgmt_status(status), | 
					
						
							|  |  |  | 		     hdev->dev_class, 3); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void add_uuid_complete(struct hci_dev *hdev, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	BT_DBG("status 0x%02x", status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_class_complete(hdev, MGMT_OP_ADD_UUID, status); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int add_uuid(struct sock *sk, struct hci_dev *hdev, void *data, u16 len) | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_cp_add_uuid *cp = data; | 
					
						
							| 
									
										
										
										
											2012-02-23 23:09:40 +02:00
										 |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	struct hci_request req; | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 	struct bt_uuid *uuid; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("request for %s", hdev->name); | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:54 -05:00
										 |  |  | 	if (pending_eir_or_class(hdev)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_ADD_UUID, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_BUSY); | 
					
						
							| 
									
										
										
										
											2012-02-23 22:54:38 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-07 19:05:44 -03:00
										 |  |  | 	uuid = kmalloc(sizeof(*uuid), GFP_KERNEL); | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 	if (!uuid) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memcpy(uuid->uuid, cp->uuid, 16); | 
					
						
							| 
									
										
										
										
											2011-01-13 21:56:52 +02:00
										 |  |  | 	uuid->svc_hint = cp->svc_hint; | 
					
						
							| 
									
										
										
										
											2013-01-27 00:31:29 +02:00
										 |  |  | 	uuid->size = get_uuid_size(cp->uuid); | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-27 00:31:27 +02:00
										 |  |  | 	list_add_tail(&uuid->list, &hdev->uuids); | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	hci_req_init(&req, hdev); | 
					
						
							| 
									
										
										
										
											2011-01-13 21:56:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	update_class(&req); | 
					
						
							|  |  |  | 	update_eir(&req); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:55 -05:00
										 |  |  | 	err = hci_req_run(&req, add_uuid_complete); | 
					
						
							|  |  |  | 	if (err < 0) { | 
					
						
							|  |  |  | 		if (err != -ENODATA) | 
					
						
							|  |  |  | 			goto failed; | 
					
						
							| 
									
										
										
										
											2011-03-28 14:07:23 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_UUID, 0, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				   hdev->dev_class, 3); | 
					
						
							| 
									
										
										
										
											2012-02-23 23:09:40 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_ADD_UUID, hdev, data, len); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	if (!cmd) { | 
					
						
							| 
									
										
										
										
											2012-02-23 23:09:40 +02:00
										 |  |  | 		err = -ENOMEM; | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = 0; | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | failed: | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-23 23:24:30 +02:00
										 |  |  | static bool enable_service_cache(struct hci_dev *hdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!hdev_is_powered(hdev)) | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!test_and_set_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) { | 
					
						
							| 
									
										
										
										
											2013-01-14 22:33:52 +02:00
										 |  |  | 		queue_delayed_work(hdev->workqueue, &hdev->service_cache, | 
					
						
							|  |  |  | 				   CACHE_TIMEOUT); | 
					
						
							| 
									
										
										
										
											2012-02-23 23:24:30 +02:00
										 |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:55 -05:00
										 |  |  | static void remove_uuid_complete(struct hci_dev *hdev, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	BT_DBG("status 0x%02x", status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_class_complete(hdev, MGMT_OP_REMOVE_UUID, status); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int remove_uuid(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							| 
									
										
										
										
											2012-05-17 00:36:20 -03:00
										 |  |  | 		       u16 len) | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_cp_remove_uuid *cp = data; | 
					
						
							| 
									
										
										
										
											2012-02-23 23:09:40 +02:00
										 |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2013-01-27 00:31:30 +02:00
										 |  |  | 	struct bt_uuid *match, *tmp; | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 	u8 bt_uuid_any[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	struct hci_request req; | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 	int err, found; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("request for %s", hdev->name); | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:54 -05:00
										 |  |  | 	if (pending_eir_or_class(hdev)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_BUSY); | 
					
						
							| 
									
										
										
										
											2012-02-23 22:54:38 +02:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 	if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) { | 
					
						
							| 
									
										
										
										
											2014-02-18 17:14:32 +02:00
										 |  |  | 		hci_uuids_clear(hdev); | 
					
						
							| 
									
										
										
										
											2012-02-23 21:30:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-23 23:24:30 +02:00
										 |  |  | 		if (enable_service_cache(hdev)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 			err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 					   0, hdev->dev_class, 3); | 
					
						
							| 
									
										
										
										
											2012-02-23 23:24:30 +02:00
										 |  |  | 			goto unlock; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-02-23 21:30:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-23 21:33:16 +02:00
										 |  |  | 		goto update_class; | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	found = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-27 00:31:30 +02:00
										 |  |  | 	list_for_each_entry_safe(match, tmp, &hdev->uuids, list) { | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 		if (memcmp(match->uuid, cp->uuid, 16) != 0) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		list_del(&match->list); | 
					
						
							| 
									
										
										
										
											2012-11-08 10:25:26 +01:00
										 |  |  | 		kfree(match); | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 		found++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (found == 0) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_INVALID_PARAMS); | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-23 21:33:16 +02:00
										 |  |  | update_class: | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	hci_req_init(&req, hdev); | 
					
						
							| 
									
										
										
										
											2011-01-13 21:56:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	update_class(&req); | 
					
						
							|  |  |  | 	update_eir(&req); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:55 -05:00
										 |  |  | 	err = hci_req_run(&req, remove_uuid_complete); | 
					
						
							|  |  |  | 	if (err < 0) { | 
					
						
							|  |  |  | 		if (err != -ENODATA) | 
					
						
							|  |  |  | 			goto unlock; | 
					
						
							| 
									
										
										
										
											2011-03-28 14:07:23 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID, 0, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				   hdev->dev_class, 3); | 
					
						
							| 
									
										
										
										
											2012-02-23 23:09:40 +02:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_UUID, hdev, data, len); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	if (!cmd) { | 
					
						
							| 
									
										
										
										
											2012-02-23 23:09:40 +02:00
										 |  |  | 		err = -ENOMEM; | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = 0; | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:55 -05:00
										 |  |  | static void set_class_complete(struct hci_dev *hdev, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	BT_DBG("status 0x%02x", status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_class_complete(hdev, MGMT_OP_SET_DEV_CLASS, status); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int set_dev_class(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			 u16 len) | 
					
						
							| 
									
										
										
										
											2011-01-13 21:56:52 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_cp_set_dev_class *cp = data; | 
					
						
							| 
									
										
										
										
											2012-02-23 23:09:40 +02:00
										 |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	struct hci_request req; | 
					
						
							| 
									
										
										
										
											2011-01-13 21:56:52 +02:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("request for %s", hdev->name); | 
					
						
							| 
									
										
										
										
											2011-01-13 21:56:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-02 23:37:29 -07:00
										 |  |  | 	if (!lmp_bredr_capable(hdev)) | 
					
						
							| 
									
										
										
										
											2013-01-09 15:29:38 +02:00
										 |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_NOT_SUPPORTED); | 
					
						
							| 
									
										
										
										
											2011-01-13 21:56:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:54 -05:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2013-01-09 15:29:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:54 -05:00
										 |  |  | 	if (pending_eir_or_class(hdev)) { | 
					
						
							|  |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, | 
					
						
							|  |  |  | 				 MGMT_STATUS_BUSY); | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-23 22:54:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:54 -05:00
										 |  |  | 	if ((cp->minor & 0x03) != 0 || (cp->major & 0xe0) != 0) { | 
					
						
							|  |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, | 
					
						
							|  |  |  | 				 MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-01-09 15:29:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-22 22:11:32 +02:00
										 |  |  | 	hdev->major_class = cp->major; | 
					
						
							|  |  |  | 	hdev->minor_class = cp->minor; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 14:32:24 +02:00
										 |  |  | 	if (!hdev_is_powered(hdev)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				   hdev->dev_class, 3); | 
					
						
							| 
									
										
										
										
											2012-02-21 14:32:24 +02:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	hci_req_init(&req, hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-08 23:11:15 +02:00
										 |  |  | 	if (test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) { | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:39 +02:00
										 |  |  | 		hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 		cancel_delayed_work_sync(&hdev->service_cache); | 
					
						
							|  |  |  | 		hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 		update_eir(&req); | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:39 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	update_class(&req); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:55 -05:00
										 |  |  | 	err = hci_req_run(&req, set_class_complete); | 
					
						
							|  |  |  | 	if (err < 0) { | 
					
						
							|  |  |  | 		if (err != -ENODATA) | 
					
						
							|  |  |  | 			goto unlock; | 
					
						
							| 
									
										
										
										
											2011-01-13 21:56:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				   hdev->dev_class, 3); | 
					
						
							| 
									
										
										
										
											2012-02-23 23:09:40 +02:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_SET_DEV_CLASS, hdev, data, len); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	if (!cmd) { | 
					
						
							| 
									
										
										
										
											2012-02-23 23:09:40 +02:00
										 |  |  | 		err = -ENOMEM; | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = 0; | 
					
						
							| 
									
										
										
										
											2011-01-13 21:56:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 14:32:24 +02:00
										 |  |  | unlock: | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-01-13 21:56:52 +02:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int load_link_keys(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							| 
									
										
										
										
											2012-05-17 00:36:20 -03:00
										 |  |  | 			  u16 len) | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_cp_load_link_keys *cp = data; | 
					
						
							| 
									
										
										
										
											2014-07-03 13:52:27 +03:00
										 |  |  | 	const u16 max_key_count = ((U16_MAX - sizeof(*cp)) / | 
					
						
							|  |  |  | 				   sizeof(struct mgmt_link_key_info)); | 
					
						
							| 
									
										
										
										
											2011-02-25 19:05:48 +01:00
										 |  |  | 	u16 key_count, expected_len; | 
					
						
							| 
									
										
										
										
											2014-01-31 11:55:21 -08:00
										 |  |  | 	bool changed; | 
					
						
							| 
									
										
										
										
											2011-08-25 20:02:29 -03:00
										 |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-02 21:16:07 -07:00
										 |  |  | 	BT_DBG("request for %s", hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!lmp_bredr_capable(hdev)) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_NOT_SUPPORTED); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-12 20:31:08 -07:00
										 |  |  | 	key_count = __le16_to_cpu(cp->key_count); | 
					
						
							| 
									
										
										
										
											2014-07-03 13:52:27 +03:00
										 |  |  | 	if (key_count > max_key_count) { | 
					
						
							|  |  |  | 		BT_ERR("load_link_keys: too big key_count value %u", | 
					
						
							|  |  |  | 		       key_count); | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-07 23:13:38 +02:00
										 |  |  | 	expected_len = sizeof(*cp) + key_count * | 
					
						
							|  |  |  | 					sizeof(struct mgmt_link_key_info); | 
					
						
							| 
									
										
										
										
											2011-08-25 20:02:29 -03:00
										 |  |  | 	if (expected_len != len) { | 
					
						
							| 
									
										
										
										
											2011-11-07 23:13:38 +02:00
										 |  |  | 		BT_ERR("load_link_keys: expected %u bytes, got %u bytes", | 
					
						
							| 
									
										
										
										
											2014-03-07 15:04:13 +02:00
										 |  |  | 		       expected_len, len); | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:13 +02:00
										 |  |  | 	if (cp->debug_keys != 0x00 && cp->debug_keys != 0x01) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("%s debug_keys %u key_count %u", hdev->name, cp->debug_keys, | 
					
						
							| 
									
										
										
										
											2012-05-17 00:36:20 -03:00
										 |  |  | 	       key_count); | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:19 +02:00
										 |  |  | 	for (i = 0; i < key_count; i++) { | 
					
						
							|  |  |  | 		struct mgmt_link_key_info *key = &cp->keys[i]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:25 -08:00
										 |  |  | 		if (key->addr.type != BDADDR_BREDR || key->type > 0x08) | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:19 +02:00
										 |  |  | 			return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, | 
					
						
							|  |  |  | 					  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	hci_link_keys_clear(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (cp->debug_keys) | 
					
						
							| 
									
										
										
										
											2014-06-24 13:15:50 +03:00
										 |  |  | 		changed = !test_and_set_bit(HCI_KEEP_DEBUG_KEYS, | 
					
						
							|  |  |  | 					    &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2014-06-24 13:15:50 +03:00
										 |  |  | 		changed = test_and_clear_bit(HCI_KEEP_DEBUG_KEYS, | 
					
						
							|  |  |  | 					     &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2014-01-31 11:55:21 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (changed) | 
					
						
							|  |  |  | 		new_settings(hdev, NULL); | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-25 20:02:29 -03:00
										 |  |  | 	for (i = 0; i < key_count; i++) { | 
					
						
							| 
									
										
										
										
											2011-11-07 23:13:38 +02:00
										 |  |  | 		struct mgmt_link_key_info *key = &cp->keys[i]; | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-24 14:00:26 +03:00
										 |  |  | 		/* Always ignore debug keys and require a new pairing if
 | 
					
						
							|  |  |  | 		 * the user wants to use them. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (key->type == HCI_LK_DEBUG_COMBINATION) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-24 13:15:49 +03:00
										 |  |  | 		hci_add_link_key(hdev, NULL, &key->addr.bdaddr, key->val, | 
					
						
							|  |  |  | 				 key->type, key->pin_len, NULL); | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, 0, NULL, 0); | 
					
						
							| 
									
										
										
										
											2011-11-11 16:18:54 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-25 20:02:29 -03:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 17:21:16 +02:00
										 |  |  | static int device_unpaired(struct hci_dev *hdev, bdaddr_t *bdaddr, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			   u8 addr_type, struct sock *skip_sk) | 
					
						
							| 
									
										
										
										
											2012-02-09 17:21:16 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_ev_device_unpaired ev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bacpy(&ev.addr.bdaddr, bdaddr); | 
					
						
							|  |  |  | 	ev.addr.type = addr_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return mgmt_event(MGMT_EV_DEVICE_UNPAIRED, hdev, &ev, sizeof(ev), | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			  skip_sk); | 
					
						
							| 
									
										
										
										
											2012-02-09 17:21:16 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int unpair_device(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			 u16 len) | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-09 13:50:12 +02:00
										 |  |  | 	struct mgmt_cp_unpair_device *cp = data; | 
					
						
							|  |  |  | 	struct mgmt_rp_unpair_device rp; | 
					
						
							| 
									
										
										
										
											2011-11-10 15:54:38 +02:00
										 |  |  | 	struct hci_cp_disconnect dc; | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 	struct hci_conn *conn; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-10 15:54:38 +02:00
										 |  |  | 	memset(&rp, 0, sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2012-02-09 13:50:12 +02:00
										 |  |  | 	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr); | 
					
						
							|  |  |  | 	rp.addr.type = cp->addr.type; | 
					
						
							| 
									
										
										
										
											2011-11-10 15:54:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:19 +02:00
										 |  |  | 	if (!bdaddr_type_is_valid(cp->addr.type)) | 
					
						
							|  |  |  | 		return cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, | 
					
						
							|  |  |  | 				    MGMT_STATUS_INVALID_PARAMS, | 
					
						
							|  |  |  | 				    &rp, sizeof(rp)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:20 +02:00
										 |  |  | 	if (cp->disconnect != 0x00 && cp->disconnect != 0x01) | 
					
						
							|  |  |  | 		return cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, | 
					
						
							|  |  |  | 				    MGMT_STATUS_INVALID_PARAMS, | 
					
						
							|  |  |  | 				    &rp, sizeof(rp)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:19 +02:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-22 22:53:34 +02:00
										 |  |  | 	if (!hdev_is_powered(hdev)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				   MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2012-02-22 22:53:34 +02:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-18 17:14:31 +02:00
										 |  |  | 	if (cp->addr.type == BDADDR_BREDR) { | 
					
						
							| 
									
										
										
										
											2012-02-09 13:50:12 +02:00
										 |  |  | 		err = hci_remove_link_key(hdev, &cp->addr.bdaddr); | 
					
						
							| 
									
										
										
										
											2014-02-18 17:14:31 +02:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		u8 addr_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (cp->addr.type == BDADDR_LE_PUBLIC) | 
					
						
							|  |  |  | 			addr_type = ADDR_LE_DEV_PUBLIC; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			addr_type = ADDR_LE_DEV_RANDOM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-18 17:14:35 +02:00
										 |  |  | 		hci_remove_irk(hdev, &cp->addr.bdaddr, addr_type); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 20:21:52 -03:00
										 |  |  | 		hci_conn_params_del(hdev, &cp->addr.bdaddr, addr_type); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-18 17:14:31 +02:00
										 |  |  | 		err = hci_remove_ltk(hdev, &cp->addr.bdaddr, addr_type); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-02 21:08:03 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 	if (err < 0) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				   MGMT_STATUS_NOT_PAIRED, &rp, sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-22 22:53:34 +02:00
										 |  |  | 	if (cp->disconnect) { | 
					
						
							| 
									
										
										
										
											2012-04-24 21:02:49 -03:00
										 |  |  | 		if (cp->addr.type == BDADDR_BREDR) | 
					
						
							| 
									
										
										
										
											2012-02-22 22:53:34 +02:00
										 |  |  | 			conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, | 
					
						
							| 
									
										
										
										
											2012-05-17 00:36:20 -03:00
										 |  |  | 						       &cp->addr.bdaddr); | 
					
						
							| 
									
										
										
										
											2012-02-22 22:53:34 +02:00
										 |  |  | 		else | 
					
						
							|  |  |  | 			conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, | 
					
						
							| 
									
										
										
										
											2012-05-17 00:36:20 -03:00
										 |  |  | 						       &cp->addr.bdaddr); | 
					
						
							| 
									
										
										
										
											2012-02-22 22:53:34 +02:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		conn = NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-09 13:50:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-10 15:54:38 +02:00
										 |  |  | 	if (!conn) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, 0, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				   &rp, sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2012-02-09 17:21:16 +02:00
										 |  |  | 		device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, sk); | 
					
						
							| 
									
										
										
										
											2011-11-10 15:54:38 +02:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 13:50:12 +02:00
										 |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_UNPAIR_DEVICE, hdev, cp, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			       sizeof(*cp)); | 
					
						
							| 
									
										
										
										
											2011-11-10 15:54:38 +02:00
										 |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-14 18:08:46 +02:00
										 |  |  | 	dc.handle = cpu_to_le16(conn->handle); | 
					
						
							| 
									
										
										
										
											2011-11-10 15:54:38 +02:00
										 |  |  | 	dc.reason = 0x13; /* Remote User Terminated Connection */ | 
					
						
							|  |  |  | 	err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc); | 
					
						
							|  |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | unlock: | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int disconnect(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 		      u16 len) | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_cp_disconnect *cp = data; | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:21 +02:00
										 |  |  | 	struct mgmt_rp_disconnect rp; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:55 -03:00
										 |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 	struct hci_conn *conn; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG(""); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:21 +02:00
										 |  |  | 	memset(&rp, 0, sizeof(rp)); | 
					
						
							|  |  |  | 	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr); | 
					
						
							|  |  |  | 	rp.addr.type = cp->addr.type; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:19 +02:00
										 |  |  | 	if (!bdaddr_type_is_valid(cp->addr.type)) | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:21 +02:00
										 |  |  | 		return cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT, | 
					
						
							|  |  |  | 				    MGMT_STATUS_INVALID_PARAMS, | 
					
						
							|  |  |  | 				    &rp, sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!test_bit(HCI_UP, &hdev->flags)) { | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:21 +02:00
										 |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT, | 
					
						
							|  |  |  | 				   MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	if (mgmt_pending_find(MGMT_OP_DISCONNECT, hdev)) { | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:21 +02:00
										 |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT, | 
					
						
							|  |  |  | 				   MGMT_STATUS_BUSY, &rp, sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-24 21:02:49 -03:00
										 |  |  | 	if (cp->addr.type == BDADDR_BREDR) | 
					
						
							| 
									
										
										
										
											2012-05-23 04:04:21 -03:00
										 |  |  | 		conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, | 
					
						
							|  |  |  | 					       &cp->addr.bdaddr); | 
					
						
							| 
									
										
										
										
											2012-02-09 14:27:38 +02:00
										 |  |  | 	else | 
					
						
							|  |  |  | 		conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr); | 
					
						
							| 
									
										
										
										
											2011-05-06 18:41:44 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-13 05:32:43 +05:30
										 |  |  | 	if (!conn || conn->state == BT_OPEN || conn->state == BT_CLOSED) { | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:21 +02:00
										 |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT, | 
					
						
							|  |  |  | 				   MGMT_STATUS_NOT_CONNECTED, &rp, sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, hdev, data, len); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:55 -03:00
										 |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 		goto failed; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:55 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-18 20:33:33 +03:00
										 |  |  | 	err = hci_disconnect(conn, HCI_ERROR_REMOTE_USER_TERM); | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 	if (err < 0) | 
					
						
							| 
									
										
										
										
											2011-02-19 12:06:02 -03:00
										 |  |  | 		mgmt_pending_remove(cmd); | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | failed: | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-24 21:02:50 -03:00
										 |  |  | static u8 link_to_bdaddr(u8 link_type, u8 addr_type) | 
					
						
							| 
									
										
										
										
											2011-11-07 23:13:39 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	switch (link_type) { | 
					
						
							|  |  |  | 	case LE_LINK: | 
					
						
							| 
									
										
										
										
											2011-11-09 13:58:58 +02:00
										 |  |  | 		switch (addr_type) { | 
					
						
							|  |  |  | 		case ADDR_LE_DEV_PUBLIC: | 
					
						
							| 
									
										
										
										
											2012-04-24 21:02:49 -03:00
										 |  |  | 			return BDADDR_LE_PUBLIC; | 
					
						
							| 
									
										
										
										
											2012-04-03 08:46:54 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-09 13:58:58 +02:00
										 |  |  | 		default: | 
					
						
							| 
									
										
										
										
											2012-04-03 08:46:54 -03:00
										 |  |  | 			/* Fallback to LE Random address type */ | 
					
						
							| 
									
										
										
										
											2012-04-24 21:02:49 -03:00
										 |  |  | 			return BDADDR_LE_RANDOM; | 
					
						
							| 
									
										
										
										
											2011-11-09 13:58:58 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-04-03 08:46:54 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-07 23:13:39 +02:00
										 |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2012-04-03 08:46:54 -03:00
										 |  |  | 		/* Fallback to BR/EDR type */ | 
					
						
							| 
									
										
										
										
											2012-04-24 21:02:49 -03:00
										 |  |  | 		return BDADDR_BREDR; | 
					
						
							| 
									
										
										
										
											2011-11-07 23:13:39 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | static int get_connections(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							|  |  |  | 			   u16 data_len) | 
					
						
							| 
									
										
										
										
											2011-01-21 13:56:35 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_rp_get_connections *rp; | 
					
						
							| 
									
										
										
										
											2011-11-01 10:58:56 +02:00
										 |  |  | 	struct hci_conn *c; | 
					
						
							| 
									
										
										
										
											2011-01-22 06:46:43 +02:00
										 |  |  | 	size_t rp_len; | 
					
						
							| 
									
										
										
										
											2012-02-23 09:52:28 +02:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 	u16 i; | 
					
						
							| 
									
										
										
										
											2011-01-21 13:56:35 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG(""); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2011-01-21 13:56:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-22 22:41:18 +02:00
										 |  |  | 	if (!hdev_is_powered(hdev)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_GET_CONNECTIONS, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_NOT_POWERED); | 
					
						
							| 
									
										
										
										
											2012-02-22 22:41:18 +02:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-23 09:52:28 +02:00
										 |  |  | 	i = 0; | 
					
						
							| 
									
										
										
										
											2012-01-17 21:48:47 +02:00
										 |  |  | 	list_for_each_entry(c, &hdev->conn_hash.list, list) { | 
					
						
							|  |  |  | 		if (test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags)) | 
					
						
							| 
									
										
										
										
											2012-02-23 09:52:28 +02:00
										 |  |  | 			i++; | 
					
						
							| 
									
										
										
										
											2011-01-21 13:56:35 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-23 09:52:28 +02:00
										 |  |  | 	rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info)); | 
					
						
							| 
									
										
										
										
											2012-06-07 19:05:44 -03:00
										 |  |  | 	rp = kmalloc(rp_len, GFP_KERNEL); | 
					
						
							| 
									
										
										
										
											2011-01-22 06:46:43 +02:00
										 |  |  | 	if (!rp) { | 
					
						
							| 
									
										
										
										
											2011-01-21 13:56:35 +02:00
										 |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	i = 0; | 
					
						
							| 
									
										
										
										
											2011-11-07 23:13:39 +02:00
										 |  |  | 	list_for_each_entry(c, &hdev->conn_hash.list, list) { | 
					
						
							| 
									
										
										
										
											2012-01-17 21:48:47 +02:00
										 |  |  | 		if (!test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags)) | 
					
						
							|  |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2011-11-07 23:13:39 +02:00
										 |  |  | 		bacpy(&rp->addr[i].bdaddr, &c->dst); | 
					
						
							| 
									
										
										
										
											2012-04-24 21:02:50 -03:00
										 |  |  | 		rp->addr[i].type = link_to_bdaddr(c->type, c->dst_type); | 
					
						
							| 
									
										
										
										
											2012-04-03 08:46:54 -03:00
										 |  |  | 		if (c->type == SCO_LINK || c->type == ESCO_LINK) | 
					
						
							| 
									
										
										
										
											2011-11-07 23:13:39 +02:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 		i++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-14 18:08:46 +02:00
										 |  |  | 	rp->conn_count = cpu_to_le16(i); | 
					
						
							| 
									
										
										
										
											2012-02-23 09:52:28 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-07 23:13:39 +02:00
										 |  |  | 	/* Recalculate length in case of filtered SCO connections, etc */ | 
					
						
							|  |  |  | 	rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info)); | 
					
						
							| 
									
										
										
										
											2011-01-21 13:56:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CONNECTIONS, 0, rp, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			   rp_len); | 
					
						
							| 
									
										
										
										
											2011-01-21 13:56:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-22 06:46:43 +02:00
										 |  |  | 	kfree(rp); | 
					
						
							| 
									
										
										
										
											2012-02-22 22:41:18 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-01-21 13:56:35 +02:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int send_pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				   struct mgmt_cp_pin_code_neg_reply *cp) | 
					
						
							| 
									
										
										
										
											2011-06-01 17:28:48 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, hdev, cp, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			       sizeof(*cp)); | 
					
						
							| 
									
										
										
										
											2011-06-01 17:28:48 +02:00
										 |  |  | 	if (!cmd) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-17 14:24:57 +02:00
										 |  |  | 	err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			   sizeof(cp->addr.bdaddr), &cp->addr.bdaddr); | 
					
						
							| 
									
										
										
										
											2011-06-01 17:28:48 +02:00
										 |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int pin_code_reply(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			  u16 len) | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-06-01 17:28:48 +02:00
										 |  |  | 	struct hci_conn *conn; | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_cp_pin_code_reply *cp = data; | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 	struct hci_cp_pin_code_reply reply; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:55 -03:00
										 |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG(""); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 14:13:02 +02:00
										 |  |  | 	if (!hdev_is_powered(hdev)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_NOT_POWERED); | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-17 14:24:57 +02:00
										 |  |  | 	conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->addr.bdaddr); | 
					
						
							| 
									
										
										
										
											2011-06-01 17:28:48 +02:00
										 |  |  | 	if (!conn) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_NOT_CONNECTED); | 
					
						
							| 
									
										
										
										
											2011-06-01 17:28:48 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) { | 
					
						
							| 
									
										
										
										
											2012-02-17 14:24:57 +02:00
										 |  |  | 		struct mgmt_cp_pin_code_neg_reply ncp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		memcpy(&ncp.addr, &cp->addr, sizeof(ncp.addr)); | 
					
						
							| 
									
										
										
										
											2011-06-01 17:28:48 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		BT_ERR("PIN code is not 16 bytes long"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = send_pin_code_neg_reply(sk, hdev, &ncp); | 
					
						
							| 
									
										
										
										
											2011-06-01 17:28:48 +02:00
										 |  |  | 		if (err >= 0) | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 			err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 					 MGMT_STATUS_INVALID_PARAMS); | 
					
						
							| 
									
										
										
										
											2011-06-01 17:28:48 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-01 00:37:10 -03:00
										 |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, hdev, data, len); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:55 -03:00
										 |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 		goto failed; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:55 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-17 14:24:57 +02:00
										 |  |  | 	bacpy(&reply.bdaddr, &cp->addr.bdaddr); | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 	reply.pin_len = cp->pin_len; | 
					
						
							| 
									
										
										
										
											2011-06-01 17:28:47 +02:00
										 |  |  | 	memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code)); | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply); | 
					
						
							|  |  |  | 	if (err < 0) | 
					
						
							| 
									
										
										
										
											2011-02-19 12:06:02 -03:00
										 |  |  | 		mgmt_pending_remove(cmd); | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | failed: | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | static int set_io_capability(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							|  |  |  | 			     u16 len) | 
					
						
							| 
									
										
										
										
											2011-01-25 13:28:33 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_cp_set_io_capability *cp = data; | 
					
						
							| 
									
										
										
										
											2011-01-25 13:28:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG(""); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 15:14:48 +03:00
										 |  |  | 	if (cp->io_capability > SMP_IO_KEYBOARD_DISPLAY) | 
					
						
							|  |  |  | 		return cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY, | 
					
						
							|  |  |  | 				    MGMT_STATUS_INVALID_PARAMS, NULL, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2011-01-25 13:28:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	hdev->io_capability = cp->io_capability; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("%s IO capability set to 0x%02x", hdev->name, | 
					
						
							| 
									
										
										
										
											2012-05-17 00:36:20 -03:00
										 |  |  | 	       hdev->io_capability); | 
					
						
							| 
									
										
										
										
											2011-01-25 13:28:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-01-25 13:28:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 	return cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY, 0, NULL, | 
					
						
							|  |  |  | 			    0); | 
					
						
							| 
									
										
										
										
											2011-01-25 13:28:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-23 04:04:18 -03:00
										 |  |  | static struct pending_cmd *find_pairing(struct hci_conn *conn) | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct hci_dev *hdev = conn->hdev; | 
					
						
							| 
									
										
										
										
											2011-11-01 10:58:56 +02:00
										 |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	list_for_each_entry(cmd, &hdev->mgmt_pending, list) { | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | 		if (cmd->opcode != MGMT_OP_PAIR_DEVICE) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (cmd->user_data != conn) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return cmd; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pairing_complete(struct pending_cmd *cmd, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_rp_pair_device rp; | 
					
						
							|  |  |  | 	struct hci_conn *conn = cmd->user_data; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-20 12:54:16 +02:00
										 |  |  | 	bacpy(&rp.addr.bdaddr, &conn->dst); | 
					
						
							|  |  |  | 	rp.addr.type = link_to_bdaddr(conn->type, conn->dst_type); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-18 15:07:59 +02:00
										 |  |  | 	cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE, status, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 		     &rp, sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* So we don't get further callbacks for this connection */ | 
					
						
							|  |  |  | 	conn->connect_cfm_cb = NULL; | 
					
						
							|  |  |  | 	conn->security_cfm_cb = NULL; | 
					
						
							|  |  |  | 	conn->disconn_cfm_cb = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-06 20:28:37 +02:00
										 |  |  | 	hci_conn_drop(conn); | 
					
						
							| 
									
										
										
										
											2014-08-17 23:28:57 +03:00
										 |  |  | 	hci_conn_put(conn); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-19 12:06:02 -03:00
										 |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-18 21:41:34 +02:00
										 |  |  | void mgmt_smp_complete(struct hci_conn *conn, bool complete) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u8 status = complete ? MGMT_STATUS_SUCCESS : MGMT_STATUS_FAILED; | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = find_pairing(conn); | 
					
						
							|  |  |  | 	if (cmd) | 
					
						
							|  |  |  | 		pairing_complete(cmd, status); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | static void pairing_complete_cb(struct hci_conn *conn, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("status %u", status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = find_pairing(conn); | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:16 +02:00
										 |  |  | 	if (!cmd) | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | 		BT_DBG("Unable to find a pending command"); | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:16 +02:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2012-02-18 15:20:03 +02:00
										 |  |  | 		pairing_complete(cmd, mgmt_status(status)); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-18 21:41:34 +02:00
										 |  |  | static void le_pairing_complete_cb(struct hci_conn *conn, u8 status) | 
					
						
							| 
									
										
										
										
											2012-06-07 20:27:35 +05:30
										 |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("status %u", status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!status) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = find_pairing(conn); | 
					
						
							|  |  |  | 	if (!cmd) | 
					
						
							|  |  |  | 		BT_DBG("Unable to find a pending command"); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		pairing_complete(cmd, mgmt_status(status)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 		       u16 len) | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_cp_pair_device *cp = data; | 
					
						
							| 
									
										
										
										
											2011-11-11 00:07:35 +02:00
										 |  |  | 	struct mgmt_rp_pair_device rp; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 	u8 sec_level, auth_type; | 
					
						
							|  |  |  | 	struct hci_conn *conn; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG(""); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 12:48:07 +01:00
										 |  |  | 	memset(&rp, 0, sizeof(rp)); | 
					
						
							|  |  |  | 	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr); | 
					
						
							|  |  |  | 	rp.addr.type = cp->addr.type; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:19 +02:00
										 |  |  | 	if (!bdaddr_type_is_valid(cp->addr.type)) | 
					
						
							|  |  |  | 		return cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE, | 
					
						
							|  |  |  | 				    MGMT_STATUS_INVALID_PARAMS, | 
					
						
							|  |  |  | 				    &rp, sizeof(rp)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 15:14:48 +03:00
										 |  |  | 	if (cp->io_cap > SMP_IO_KEYBOARD_DISPLAY) | 
					
						
							|  |  |  | 		return cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE, | 
					
						
							|  |  |  | 				    MGMT_STATUS_INVALID_PARAMS, | 
					
						
							|  |  |  | 				    &rp, sizeof(rp)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-22 22:41:18 +02:00
										 |  |  | 	if (!hdev_is_powered(hdev)) { | 
					
						
							| 
									
										
										
										
											2013-01-18 12:48:07 +01:00
										 |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE, | 
					
						
							|  |  |  | 				   MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2012-02-22 22:41:18 +02:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-02 14:51:22 -03:00
										 |  |  | 	sec_level = BT_SECURITY_MEDIUM; | 
					
						
							| 
									
										
										
										
											2014-04-08 14:21:32 +02:00
										 |  |  | 	auth_type = HCI_AT_DEDICATED_BONDING; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 20:21:45 -03:00
										 |  |  | 	if (cp->addr.type == BDADDR_BREDR) { | 
					
						
							| 
									
										
										
										
											2014-02-26 20:21:44 -03:00
										 |  |  | 		conn = hci_connect_acl(hdev, &cp->addr.bdaddr, sec_level, | 
					
						
							|  |  |  | 				       auth_type); | 
					
						
							| 
									
										
										
										
											2014-02-26 20:21:45 -03:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		u8 addr_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* Convert from L2CAP channel address type to HCI address type
 | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (cp->addr.type == BDADDR_LE_PUBLIC) | 
					
						
							|  |  |  | 			addr_type = ADDR_LE_DEV_PUBLIC; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			addr_type = ADDR_LE_DEV_RANDOM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-30 12:34:40 +02:00
										 |  |  | 		/* When pairing a new device, it is expected to remember
 | 
					
						
							|  |  |  | 		 * this device for future connections. Adding the connection | 
					
						
							|  |  |  | 		 * parameter information ahead of time allows tracking | 
					
						
							|  |  |  | 		 * of the slave preferred values and will speed up any | 
					
						
							|  |  |  | 		 * further connection establishment. | 
					
						
							|  |  |  | 		 * | 
					
						
							|  |  |  | 		 * If connection parameters already exist, then they | 
					
						
							|  |  |  | 		 * will be kept and this function does nothing. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		hci_conn_params_add(hdev, &cp->addr.bdaddr, addr_type); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 20:21:45 -03:00
										 |  |  | 		conn = hci_connect_le(hdev, &cp->addr.bdaddr, addr_type, | 
					
						
							| 
									
										
										
										
											2014-07-16 11:42:28 +03:00
										 |  |  | 				      sec_level, HCI_LE_CONN_TIMEOUT, | 
					
						
							|  |  |  | 				      HCI_ROLE_MASTER); | 
					
						
							| 
									
										
										
										
											2014-02-26 20:21:45 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-08-19 21:06:54 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-22 16:10:53 -03:00
										 |  |  | 	if (IS_ERR(conn)) { | 
					
						
							| 
									
										
										
										
											2012-05-30 15:39:22 +02:00
										 |  |  | 		int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (PTR_ERR(conn) == -EBUSY) | 
					
						
							|  |  |  | 			status = MGMT_STATUS_BUSY; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			status = MGMT_STATUS_CONNECT_FAILED; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE, | 
					
						
							| 
									
										
										
										
											2012-05-30 15:39:22 +02:00
										 |  |  | 				   status, &rp, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				   sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (conn->connect_cfm_cb) { | 
					
						
							| 
									
										
										
										
											2013-04-06 20:28:37 +02:00
										 |  |  | 		hci_conn_drop(conn); | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				   MGMT_STATUS_BUSY, &rp, sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							| 
									
										
										
										
											2013-04-06 20:28:37 +02:00
										 |  |  | 		hci_conn_drop(conn); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-19 21:06:54 -03:00
										 |  |  | 	/* For LE, just connecting isn't a proof that the pairing finished */ | 
					
						
							| 
									
										
										
										
											2014-02-18 21:41:34 +02:00
										 |  |  | 	if (cp->addr.type == BDADDR_BREDR) { | 
					
						
							| 
									
										
										
										
											2011-08-19 21:06:54 -03:00
										 |  |  | 		conn->connect_cfm_cb = pairing_complete_cb; | 
					
						
							| 
									
										
										
										
											2014-02-18 21:41:34 +02:00
										 |  |  | 		conn->security_cfm_cb = pairing_complete_cb; | 
					
						
							|  |  |  | 		conn->disconn_cfm_cb = pairing_complete_cb; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		conn->connect_cfm_cb = le_pairing_complete_cb; | 
					
						
							|  |  |  | 		conn->security_cfm_cb = le_pairing_complete_cb; | 
					
						
							|  |  |  | 		conn->disconn_cfm_cb = le_pairing_complete_cb; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-08-19 21:06:54 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | 	conn->io_capability = cp->io_cap; | 
					
						
							| 
									
										
										
										
											2014-08-17 23:28:57 +03:00
										 |  |  | 	cmd->user_data = hci_conn_get(conn); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-30 08:35:48 +03:00
										 |  |  | 	if ((conn->state == BT_CONNECTED || conn->state == BT_CONFIG) && | 
					
						
							| 
									
										
										
										
											2014-07-17 15:35:38 +03:00
										 |  |  | 	    hci_conn_security(conn, sec_level, auth_type, true)) | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | 		pairing_complete(cmd, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | static int cancel_pair_device(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							|  |  |  | 			      u16 len) | 
					
						
							| 
									
										
										
										
											2012-02-02 04:02:29 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-28 17:18:30 +02:00
										 |  |  | 	struct mgmt_addr_info *addr = data; | 
					
						
							| 
									
										
										
										
											2012-02-02 04:02:29 +02:00
										 |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 	struct hci_conn *conn; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG(""); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-22 22:41:18 +02:00
										 |  |  | 	if (!hdev_is_powered(hdev)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_NOT_POWERED); | 
					
						
							| 
									
										
										
										
											2012-02-22 22:41:18 +02:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-02 04:02:29 +02:00
										 |  |  | 	cmd = mgmt_pending_find(MGMT_OP_PAIR_DEVICE, hdev); | 
					
						
							|  |  |  | 	if (!cmd) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_INVALID_PARAMS); | 
					
						
							| 
									
										
										
										
											2012-02-02 04:02:29 +02:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	conn = cmd->user_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (bacmp(&addr->bdaddr, &conn->dst) != 0) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_INVALID_PARAMS); | 
					
						
							| 
									
										
										
										
											2012-02-02 04:02:29 +02:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pairing_complete(cmd, MGMT_STATUS_CANCELLED); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	err = cmd_complete(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, 0, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			   addr, sizeof(*addr)); | 
					
						
							| 
									
										
										
										
											2012-02-02 04:02:29 +02:00
										 |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int user_pairing_resp(struct sock *sk, struct hci_dev *hdev, | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:15 -05:00
										 |  |  | 			     struct mgmt_addr_info *addr, u16 mgmt_op, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			     u16 hci_op, __le32 passkey) | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2011-11-16 13:53:13 -08:00
										 |  |  | 	struct hci_conn *conn; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 14:13:02 +02:00
										 |  |  | 	if (!hdev_is_powered(hdev)) { | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:16 -05:00
										 |  |  | 		err = cmd_complete(sk, hdev->id, mgmt_op, | 
					
						
							|  |  |  | 				   MGMT_STATUS_NOT_POWERED, addr, | 
					
						
							|  |  |  | 				   sizeof(*addr)); | 
					
						
							| 
									
										
										
										
											2011-11-16 13:53:13 -08:00
										 |  |  | 		goto done; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:15 -05:00
										 |  |  | 	if (addr->type == BDADDR_BREDR) | 
					
						
							|  |  |  | 		conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &addr->bdaddr); | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:15 -05:00
										 |  |  | 		conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &addr->bdaddr); | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!conn) { | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:16 -05:00
										 |  |  | 		err = cmd_complete(sk, hdev->id, mgmt_op, | 
					
						
							|  |  |  | 				   MGMT_STATUS_NOT_CONNECTED, addr, | 
					
						
							|  |  |  | 				   sizeof(*addr)); | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | 		goto done; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-11-16 13:53:14 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:15 -05:00
										 |  |  | 	if (addr->type == BDADDR_LE_PUBLIC || addr->type == BDADDR_LE_RANDOM) { | 
					
						
							| 
									
										
										
										
											2011-12-21 16:12:13 -08:00
										 |  |  | 		err = smp_user_confirm_reply(conn, mgmt_op, passkey); | 
					
						
							|  |  |  | 		if (!err) | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:16 -05:00
										 |  |  | 			err = cmd_complete(sk, hdev->id, mgmt_op, | 
					
						
							|  |  |  | 					   MGMT_STATUS_SUCCESS, addr, | 
					
						
							|  |  |  | 					   sizeof(*addr)); | 
					
						
							| 
									
										
										
										
											2011-12-21 16:12:13 -08:00
										 |  |  | 		else | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:16 -05:00
										 |  |  | 			err = cmd_complete(sk, hdev->id, mgmt_op, | 
					
						
							|  |  |  | 					   MGMT_STATUS_FAILED, addr, | 
					
						
							|  |  |  | 					   sizeof(*addr)); | 
					
						
							| 
									
										
										
										
											2011-11-16 13:53:14 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		goto done; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:15 -05:00
										 |  |  | 	cmd = mgmt_pending_add(sk, mgmt_op, hdev, addr, sizeof(*addr)); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							| 
									
										
										
										
											2011-11-16 13:53:13 -08:00
										 |  |  | 		goto done; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-16 13:53:13 -08:00
										 |  |  | 	/* Continue with pairing via HCI */ | 
					
						
							| 
									
										
										
										
											2011-11-23 08:28:33 -08:00
										 |  |  | 	if (hci_op == HCI_OP_USER_PASSKEY_REPLY) { | 
					
						
							|  |  |  | 		struct hci_cp_user_passkey_reply cp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:15 -05:00
										 |  |  | 		bacpy(&cp.bdaddr, &addr->bdaddr); | 
					
						
							| 
									
										
										
										
											2011-11-23 08:28:33 -08:00
										 |  |  | 		cp.passkey = passkey; | 
					
						
							|  |  |  | 		err = hci_send_cmd(hdev, hci_op, sizeof(cp), &cp); | 
					
						
							|  |  |  | 	} else | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:15 -05:00
										 |  |  | 		err = hci_send_cmd(hdev, hci_op, sizeof(addr->bdaddr), | 
					
						
							|  |  |  | 				   &addr->bdaddr); | 
					
						
							| 
									
										
										
										
											2011-11-23 08:28:33 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-19 12:06:02 -03:00
										 |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		mgmt_pending_remove(cmd); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-16 13:53:13 -08:00
										 |  |  | done: | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-09 16:11:51 +05:30
										 |  |  | static int pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev, | 
					
						
							|  |  |  | 			      void *data, u16 len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_cp_pin_code_neg_reply *cp = data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG(""); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:15 -05:00
										 |  |  | 	return user_pairing_resp(sk, hdev, &cp->addr, | 
					
						
							| 
									
										
										
										
											2012-07-09 16:11:51 +05:30
										 |  |  | 				MGMT_OP_PIN_CODE_NEG_REPLY, | 
					
						
							|  |  |  | 				HCI_OP_PIN_CODE_NEG_REPLY, 0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | static int user_confirm_reply(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							|  |  |  | 			      u16 len) | 
					
						
							| 
									
										
										
										
											2011-11-16 13:53:13 -08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_cp_user_confirm_reply *cp = data; | 
					
						
							| 
									
										
										
										
											2011-11-16 13:53:13 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG(""); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (len != sizeof(*cp)) | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_USER_CONFIRM_REPLY, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							| 
									
										
										
										
											2011-11-16 13:53:13 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:15 -05:00
										 |  |  | 	return user_pairing_resp(sk, hdev, &cp->addr, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_OP_USER_CONFIRM_REPLY, | 
					
						
							|  |  |  | 				 HCI_OP_USER_CONFIRM_REPLY, 0); | 
					
						
							| 
									
										
										
										
											2011-11-16 13:53:13 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int user_confirm_neg_reply(struct sock *sk, struct hci_dev *hdev, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				  void *data, u16 len) | 
					
						
							| 
									
										
										
										
											2011-11-16 13:53:13 -08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:41 +02:00
										 |  |  | 	struct mgmt_cp_user_confirm_neg_reply *cp = data; | 
					
						
							| 
									
										
										
										
											2011-11-16 13:53:13 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG(""); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:15 -05:00
										 |  |  | 	return user_pairing_resp(sk, hdev, &cp->addr, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_OP_USER_CONFIRM_NEG_REPLY, | 
					
						
							|  |  |  | 				 HCI_OP_USER_CONFIRM_NEG_REPLY, 0); | 
					
						
							| 
									
										
										
										
											2011-11-16 13:53:13 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | static int user_passkey_reply(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							|  |  |  | 			      u16 len) | 
					
						
							| 
									
										
										
										
											2011-11-23 08:28:33 -08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_cp_user_passkey_reply *cp = data; | 
					
						
							| 
									
										
										
										
											2011-11-23 08:28:33 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG(""); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:15 -05:00
										 |  |  | 	return user_pairing_resp(sk, hdev, &cp->addr, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_OP_USER_PASSKEY_REPLY, | 
					
						
							|  |  |  | 				 HCI_OP_USER_PASSKEY_REPLY, cp->passkey); | 
					
						
							| 
									
										
										
										
											2011-11-23 08:28:33 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int user_passkey_neg_reply(struct sock *sk, struct hci_dev *hdev, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				  void *data, u16 len) | 
					
						
							| 
									
										
										
										
											2011-11-23 08:28:33 -08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_cp_user_passkey_neg_reply *cp = data; | 
					
						
							| 
									
										
										
										
											2011-11-23 08:28:33 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG(""); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:15 -05:00
										 |  |  | 	return user_pairing_resp(sk, hdev, &cp->addr, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_OP_USER_PASSKEY_NEG_REPLY, | 
					
						
							|  |  |  | 				 HCI_OP_USER_PASSKEY_NEG_REPLY, 0); | 
					
						
							| 
									
										
										
										
											2011-11-23 08:28:33 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:00 -05:00
										 |  |  | static void update_name(struct hci_request *req) | 
					
						
							| 
									
										
										
										
											2012-03-03 00:19:06 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:00 -05:00
										 |  |  | 	struct hci_dev *hdev = req->hdev; | 
					
						
							| 
									
										
										
										
											2012-03-03 00:19:06 +02:00
										 |  |  | 	struct hci_cp_write_local_name cp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:00 -05:00
										 |  |  | 	memcpy(cp.name, hdev->dev_name, sizeof(cp.name)); | 
					
						
							| 
									
										
										
										
											2012-03-03 00:19:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	hci_req_add(req, HCI_OP_WRITE_LOCAL_NAME, sizeof(cp), &cp); | 
					
						
							| 
									
										
										
										
											2012-03-03 00:19:06 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:00 -05:00
										 |  |  | static void set_name_complete(struct hci_dev *hdev, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_cp_set_local_name *cp; | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("status 0x%02x", status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev); | 
					
						
							|  |  |  | 	if (!cmd) | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cp = cmd->param; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (status) | 
					
						
							|  |  |  | 		cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, | 
					
						
							|  |  |  | 			   mgmt_status(status)); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0, | 
					
						
							|  |  |  | 			     cp, sizeof(*cp)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			  u16 len) | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:37 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-03-03 00:19:06 +02:00
										 |  |  | 	struct mgmt_cp_set_local_name *cp = data; | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:37 +02:00
										 |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	struct hci_request req; | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:37 +02:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG(""); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:03 -05:00
										 |  |  | 	/* If the old values are the same as the new ones just return a
 | 
					
						
							|  |  |  | 	 * direct command complete event. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (!memcmp(hdev->dev_name, cp->name, sizeof(hdev->dev_name)) && | 
					
						
							|  |  |  | 	    !memcmp(hdev->short_name, cp->short_name, | 
					
						
							|  |  |  | 		    sizeof(hdev->short_name))) { | 
					
						
							|  |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0, | 
					
						
							|  |  |  | 				   data, len); | 
					
						
							|  |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-03 00:19:06 +02:00
										 |  |  | 	memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name)); | 
					
						
							| 
									
										
										
										
											2012-02-22 21:06:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 14:32:24 +02:00
										 |  |  | 	if (!hdev_is_powered(hdev)) { | 
					
						
							| 
									
										
										
										
											2012-03-03 00:19:06 +02:00
										 |  |  | 		memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name)); | 
					
						
							| 
									
										
										
										
											2012-02-22 21:06:55 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				   data, len); | 
					
						
							| 
									
										
										
										
											2012-02-22 21:06:55 +02:00
										 |  |  | 		if (err < 0) | 
					
						
							|  |  |  | 			goto failed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		err = mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, data, len, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 sk); | 
					
						
							| 
									
										
										
										
											2012-02-22 21:06:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 14:32:24 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-22 21:06:55 +02:00
										 |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len); | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:37 +02:00
										 |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:00 -05:00
										 |  |  | 	memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	hci_req_init(&req, hdev); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:02 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (lmp_bredr_capable(hdev)) { | 
					
						
							|  |  |  | 		update_name(&req); | 
					
						
							|  |  |  | 		update_eir(&req); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-16 00:16:49 -07:00
										 |  |  | 	/* The name is stored in the scan response data and so
 | 
					
						
							|  |  |  | 	 * no need to udpate the advertising data here. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:02 -05:00
										 |  |  | 	if (lmp_le_capable(hdev)) | 
					
						
							| 
									
										
										
										
											2013-10-16 00:16:49 -07:00
										 |  |  | 		update_scan_rsp_data(&req); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:02 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:00 -05:00
										 |  |  | 	err = hci_req_run(&req, set_name_complete); | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:37 +02:00
										 |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | failed: | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:37 +02:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 17:18:30 +02:00
										 |  |  | static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			       void *data, u16 data_len) | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 14:13:02 +02:00
										 |  |  | 	if (!hdev_is_powered(hdev)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_NOT_POWERED); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-24 15:03:48 -03:00
										 |  |  | 	if (!lmp_ssp_capable(hdev)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_NOT_SUPPORTED); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	if (mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_BUSY); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:26 -08:00
										 |  |  | 	if (test_bit(HCI_SC_ENABLED, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_EXT_DATA, | 
					
						
							|  |  |  | 				   0, NULL); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			       void *data, u16 len) | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:22 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("%s ", hdev->name); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:30 -08:00
										 |  |  | 	if (len == MGMT_ADD_REMOTE_OOB_DATA_SIZE) { | 
					
						
							|  |  |  | 		struct mgmt_cp_add_remote_oob_data *cp = data; | 
					
						
							|  |  |  | 		u8 status; | 
					
						
							| 
									
										
										
										
											2012-02-19 13:16:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:30 -08:00
										 |  |  | 		err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr, | 
					
						
							|  |  |  | 					      cp->hash, cp->randomizer); | 
					
						
							|  |  |  | 		if (err < 0) | 
					
						
							|  |  |  | 			status = MGMT_STATUS_FAILED; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			status = MGMT_STATUS_SUCCESS; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA, | 
					
						
							|  |  |  | 				   status, &cp->addr, sizeof(cp->addr)); | 
					
						
							|  |  |  | 	} else if (len == MGMT_ADD_REMOTE_OOB_EXT_DATA_SIZE) { | 
					
						
							|  |  |  | 		struct mgmt_cp_add_remote_oob_ext_data *cp = data; | 
					
						
							|  |  |  | 		u8 status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		err = hci_add_remote_oob_ext_data(hdev, &cp->addr.bdaddr, | 
					
						
							|  |  |  | 						  cp->hash192, | 
					
						
							|  |  |  | 						  cp->randomizer192, | 
					
						
							|  |  |  | 						  cp->hash256, | 
					
						
							|  |  |  | 						  cp->randomizer256); | 
					
						
							|  |  |  | 		if (err < 0) | 
					
						
							|  |  |  | 			status = MGMT_STATUS_FAILED; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			status = MGMT_STATUS_SUCCESS; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA, | 
					
						
							|  |  |  | 				   status, &cp->addr, sizeof(cp->addr)); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		BT_ERR("add_remote_oob_data: invalid length of %u bytes", len); | 
					
						
							|  |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA, | 
					
						
							|  |  |  | 				 MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:22 +01:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev, | 
					
						
							| 
									
										
										
										
											2012-05-17 00:36:20 -03:00
										 |  |  | 				  void *data, u16 len) | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:22 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_cp_remove_remote_oob_data *cp = data; | 
					
						
							| 
									
										
										
										
											2012-02-19 13:16:14 +02:00
										 |  |  | 	u8 status; | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:22 +01:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 15:44:09 +02:00
										 |  |  | 	err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:22 +01:00
										 |  |  | 	if (err < 0) | 
					
						
							| 
									
										
										
										
											2012-02-19 13:16:14 +02:00
										 |  |  | 		status = MGMT_STATUS_INVALID_PARAMS; | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:22 +01:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2012-12-13 15:11:21 +01:00
										 |  |  | 		status = MGMT_STATUS_SUCCESS; | 
					
						
							| 
									
										
										
										
											2012-02-19 13:16:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			   status, &cp->addr, sizeof(cp->addr)); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:22 +01:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:30 -03:00
										 |  |  | static int mgmt_start_discovery_failed(struct hci_dev *hdev, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 	u8 type; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_discovery_set_state(hdev, DISCOVERY_STOPPED); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev); | 
					
						
							|  |  |  | 	if (!cmd) | 
					
						
							|  |  |  | 		return -ENOENT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	type = hdev->discovery.type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = cmd_complete(cmd->sk, hdev->id, cmd->opcode, mgmt_status(status), | 
					
						
							|  |  |  | 			   &type, sizeof(type)); | 
					
						
							|  |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:28 -03:00
										 |  |  | static void start_discovery_complete(struct hci_dev *hdev, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-03-27 20:55:19 +01:00
										 |  |  | 	unsigned long timeout = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:28 -03:00
										 |  |  | 	BT_DBG("status %d", status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (status) { | 
					
						
							|  |  |  | 		hci_dev_lock(hdev); | 
					
						
							|  |  |  | 		mgmt_start_discovery_failed(hdev, status); | 
					
						
							|  |  |  | 		hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 	hci_discovery_set_state(hdev, DISCOVERY_FINDING); | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (hdev->discovery.type) { | 
					
						
							|  |  |  | 	case DISCOV_TYPE_LE: | 
					
						
							| 
									
										
										
										
											2014-03-27 20:55:21 +01:00
										 |  |  | 		timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT); | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:28 -03:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case DISCOV_TYPE_INTERLEAVED: | 
					
						
							| 
									
										
										
										
											2014-03-27 20:55:20 +01:00
										 |  |  | 		timeout = msecs_to_jiffies(hdev->discov_interleaved_timeout); | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:28 -03:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case DISCOV_TYPE_BREDR: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		BT_ERR("Invalid discovery type %d", hdev->discovery.type); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-03-27 20:55:19 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!timeout) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	queue_delayed_work(hdev->workqueue, &hdev->le_scan_disable, timeout); | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:28 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int start_discovery(struct sock *sk, struct hci_dev *hdev, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			   void *data, u16 len) | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:56 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_cp_start_discovery *cp = data; | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:56 -04:00
										 |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:28 -03:00
										 |  |  | 	struct hci_cp_le_set_scan_param param_cp; | 
					
						
							|  |  |  | 	struct hci_cp_le_set_scan_enable enable_cp; | 
					
						
							|  |  |  | 	struct hci_cp_inquiry inq_cp; | 
					
						
							|  |  |  | 	struct hci_request req; | 
					
						
							|  |  |  | 	/* General inquiry access code (GIAC) */ | 
					
						
							|  |  |  | 	u8 lap[3] = { 0x33, 0x8b, 0x9e }; | 
					
						
							| 
									
										
										
										
											2014-02-23 19:42:24 +02:00
										 |  |  | 	u8 status, own_addr_type; | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:56 -04:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:56 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:56 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 14:13:02 +02:00
										 |  |  | 	if (!hdev_is_powered(hdev)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_NOT_POWERED); | 
					
						
							| 
									
										
										
										
											2011-11-07 23:13:37 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-21 00:03:37 -03:00
										 |  |  | 	if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags)) { | 
					
						
							|  |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY, | 
					
						
							|  |  |  | 				 MGMT_STATUS_BUSY); | 
					
						
							|  |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-04 14:23:45 +02:00
										 |  |  | 	if (hdev->discovery.state != DISCOVERY_STOPPED) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_BUSY); | 
					
						
							| 
									
										
										
										
											2012-01-04 14:23:45 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, hdev, NULL, 0); | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:56 -04:00
										 |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-17 20:39:36 -03:00
										 |  |  | 	hdev->discovery.type = cp->type; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:28 -03:00
										 |  |  | 	hci_req_init(&req, hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-17 20:39:36 -03:00
										 |  |  | 	switch (hdev->discovery.type) { | 
					
						
							| 
									
										
										
										
											2012-02-17 20:39:35 -03:00
										 |  |  | 	case DISCOV_TYPE_BREDR: | 
					
						
							| 
									
										
										
										
											2013-10-02 15:45:22 +03:00
										 |  |  | 		status = mgmt_bredr_support(hdev); | 
					
						
							|  |  |  | 		if (status) { | 
					
						
							| 
									
										
										
										
											2013-01-10 14:54:09 +02:00
										 |  |  | 			err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY, | 
					
						
							| 
									
										
										
										
											2013-10-02 15:45:22 +03:00
										 |  |  | 					 status); | 
					
						
							| 
									
										
										
										
											2013-01-10 14:54:09 +02:00
										 |  |  | 			mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 			goto failed; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:28 -03:00
										 |  |  | 		if (test_bit(HCI_INQUIRY, &hdev->flags)) { | 
					
						
							|  |  |  | 			err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY, | 
					
						
							|  |  |  | 					 MGMT_STATUS_BUSY); | 
					
						
							|  |  |  | 			mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 			goto failed; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		hci_inquiry_cache_flush(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		memset(&inq_cp, 0, sizeof(inq_cp)); | 
					
						
							|  |  |  | 		memcpy(&inq_cp.lap, lap, sizeof(inq_cp.lap)); | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:31 -03:00
										 |  |  | 		inq_cp.length = DISCOV_BREDR_INQUIRY_LEN; | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:28 -03:00
										 |  |  | 		hci_req_add(&req, HCI_OP_INQUIRY, sizeof(inq_cp), &inq_cp); | 
					
						
							| 
									
										
										
										
											2012-02-17 20:39:35 -03:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case DISCOV_TYPE_LE: | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:28 -03:00
										 |  |  | 	case DISCOV_TYPE_INTERLEAVED: | 
					
						
							| 
									
										
										
										
											2013-10-02 15:45:22 +03:00
										 |  |  | 		status = mgmt_le_support(hdev); | 
					
						
							|  |  |  | 		if (status) { | 
					
						
							| 
									
										
										
										
											2013-01-10 14:54:09 +02:00
										 |  |  | 			err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY, | 
					
						
							| 
									
										
										
										
											2013-10-02 15:45:22 +03:00
										 |  |  | 					 status); | 
					
						
							| 
									
										
										
										
											2013-01-10 14:54:09 +02:00
										 |  |  | 			mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 			goto failed; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:28 -03:00
										 |  |  | 		if (hdev->discovery.type == DISCOV_TYPE_INTERLEAVED && | 
					
						
							| 
									
										
										
										
											2013-10-02 13:43:13 +03:00
										 |  |  | 		    !test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) { | 
					
						
							| 
									
										
										
										
											2013-01-10 14:54:09 +02:00
										 |  |  | 			err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY, | 
					
						
							|  |  |  | 					 MGMT_STATUS_NOT_SUPPORTED); | 
					
						
							|  |  |  | 			mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 			goto failed; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 15:07:53 +03:00
										 |  |  | 		if (test_bit(HCI_LE_ADV, &hdev->dev_flags)) { | 
					
						
							|  |  |  | 			/* Don't let discovery abort an outgoing
 | 
					
						
							|  |  |  | 			 * connection attempt that's using directed | 
					
						
							|  |  |  | 			 * advertising. | 
					
						
							|  |  |  | 			 */ | 
					
						
							|  |  |  | 			if (hci_conn_hash_lookup_state(hdev, LE_LINK, | 
					
						
							|  |  |  | 						       BT_CONNECT)) { | 
					
						
							|  |  |  | 				err = cmd_status(sk, hdev->id, | 
					
						
							|  |  |  | 						 MGMT_OP_START_DISCOVERY, | 
					
						
							|  |  |  | 						 MGMT_STATUS_REJECTED); | 
					
						
							|  |  |  | 				mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 				goto failed; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			disable_advertising(&req); | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:28 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 20:21:50 -03:00
										 |  |  | 		/* If controller is scanning, it means the background scanning
 | 
					
						
							|  |  |  | 		 * is running. Thus, we should temporarily stop it in order to | 
					
						
							|  |  |  | 		 * set the discovery scanning parameters. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (test_bit(HCI_LE_SCAN, &hdev->dev_flags)) | 
					
						
							|  |  |  | 			hci_req_add_le_scan_disable(&req); | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:28 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		memset(¶m_cp, 0, sizeof(param_cp)); | 
					
						
							| 
									
										
										
										
											2014-02-23 19:42:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-23 20:25:54 -08:00
										 |  |  | 		/* All active scans will be done with either a resolvable
 | 
					
						
							|  |  |  | 		 * private address (when privacy feature has been enabled) | 
					
						
							|  |  |  | 		 * or unresolvable private address. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		err = hci_update_random_address(&req, true, &own_addr_type); | 
					
						
							| 
									
										
										
										
											2014-02-23 19:42:24 +02:00
										 |  |  | 		if (err < 0) { | 
					
						
							|  |  |  | 			err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY, | 
					
						
							|  |  |  | 					 MGMT_STATUS_FAILED); | 
					
						
							|  |  |  | 			mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 			goto failed; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:28 -03:00
										 |  |  | 		param_cp.type = LE_SCAN_ACTIVE; | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:31 -03:00
										 |  |  | 		param_cp.interval = cpu_to_le16(DISCOV_LE_SCAN_INT); | 
					
						
							|  |  |  | 		param_cp.window = cpu_to_le16(DISCOV_LE_SCAN_WIN); | 
					
						
							| 
									
										
										
										
											2014-02-23 19:42:24 +02:00
										 |  |  | 		param_cp.own_address_type = own_addr_type; | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:28 -03:00
										 |  |  | 		hci_req_add(&req, HCI_OP_LE_SET_SCAN_PARAM, sizeof(param_cp), | 
					
						
							|  |  |  | 			    ¶m_cp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		memset(&enable_cp, 0, sizeof(enable_cp)); | 
					
						
							|  |  |  | 		enable_cp.enable = LE_SCAN_ENABLE; | 
					
						
							|  |  |  | 		enable_cp.filter_dup = LE_SCAN_FILTER_DUP_ENABLE; | 
					
						
							|  |  |  | 		hci_req_add(&req, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(enable_cp), | 
					
						
							|  |  |  | 			    &enable_cp); | 
					
						
							| 
									
										
										
										
											2012-02-17 20:39:38 -03:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-17 20:39:35 -03:00
										 |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2013-01-10 14:54:09 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY, | 
					
						
							|  |  |  | 				 MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 		mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 		goto failed; | 
					
						
							| 
									
										
										
										
											2012-02-17 20:39:35 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-03 17:48:01 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:28 -03:00
										 |  |  | 	err = hci_req_run(&req, start_discovery_complete); | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:56 -04:00
										 |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		mgmt_pending_remove(cmd); | 
					
						
							| 
									
										
										
										
											2012-01-04 14:23:45 +02:00
										 |  |  | 	else | 
					
						
							|  |  |  | 		hci_discovery_set_state(hdev, DISCOVERY_STARTING); | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:56 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | failed: | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:56 -04:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:35 -03:00
										 |  |  | static int mgmt_stop_discovery_failed(struct hci_dev *hdev, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev); | 
					
						
							|  |  |  | 	if (!cmd) | 
					
						
							|  |  |  | 		return -ENOENT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = cmd_complete(cmd->sk, hdev->id, cmd->opcode, mgmt_status(status), | 
					
						
							|  |  |  | 			   &hdev->discovery.type, sizeof(hdev->discovery.type)); | 
					
						
							|  |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:33 -03:00
										 |  |  | static void stop_discovery_complete(struct hci_dev *hdev, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	BT_DBG("status %d", status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (status) { | 
					
						
							|  |  |  | 		mgmt_stop_discovery_failed(hdev, status); | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_discovery_set_state(hdev, DISCOVERY_STOPPED); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			  u16 len) | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:56 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-20 23:25:18 +02:00
										 |  |  | 	struct mgmt_cp_stop_discovery *mgmt_cp = data; | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:56 -04:00
										 |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:33 -03:00
										 |  |  | 	struct hci_request req; | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:56 -04:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:56 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:56 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-04 15:44:20 +02:00
										 |  |  | 	if (!hci_discovery_active(hdev)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				   MGMT_STATUS_REJECTED, &mgmt_cp->type, | 
					
						
							|  |  |  | 				   sizeof(mgmt_cp->type)); | 
					
						
							| 
									
										
										
										
											2012-02-20 23:25:18 +02:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (hdev->discovery.type != mgmt_cp->type) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				   MGMT_STATUS_INVALID_PARAMS, &mgmt_cp->type, | 
					
						
							|  |  |  | 				   sizeof(mgmt_cp->type)); | 
					
						
							| 
									
										
										
										
											2012-01-04 15:44:20 +02:00
										 |  |  | 		goto unlock; | 
					
						
							| 
									
										
										
										
											2012-01-04 14:23:45 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, NULL, 0); | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:56 -04:00
										 |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							| 
									
										
										
										
											2012-01-04 15:44:20 +02:00
										 |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:33 -03:00
										 |  |  | 	hci_req_init(&req, hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-10 14:05:58 +03:00
										 |  |  | 	hci_stop_discovery(&req); | 
					
						
							| 
									
										
										
										
											2012-03-20 15:15:36 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-10 14:05:58 +03:00
										 |  |  | 	err = hci_req_run(&req, stop_discovery_complete); | 
					
						
							|  |  |  | 	if (!err) { | 
					
						
							|  |  |  | 		hci_discovery_set_state(hdev, DISCOVERY_STOPPING); | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:33 -03:00
										 |  |  | 		goto unlock; | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:56 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-10 14:05:58 +03:00
										 |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* If no HCI commands were sent we're done */ | 
					
						
							|  |  |  | 	if (err == -ENODATA) { | 
					
						
							|  |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY, 0, | 
					
						
							|  |  |  | 				   &mgmt_cp->type, sizeof(mgmt_cp->type)); | 
					
						
							|  |  |  | 		hci_discovery_set_state(hdev, DISCOVERY_STOPPED); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:56 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-04 15:44:20 +02:00
										 |  |  | unlock: | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:56 -04:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			u16 len) | 
					
						
							| 
									
										
										
										
											2012-01-04 13:31:59 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_cp_confirm_name *cp = data; | 
					
						
							| 
									
										
										
										
											2012-01-04 13:31:59 +02:00
										 |  |  | 	struct inquiry_entry *e; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							| 
									
										
										
										
											2012-01-04 13:31:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-04 15:44:20 +02:00
										 |  |  | 	if (!hci_discovery_active(hdev)) { | 
					
						
							| 
									
										
										
										
											2014-02-27 16:47:28 +01:00
										 |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, | 
					
						
							|  |  |  | 				   MGMT_STATUS_FAILED, &cp->addr, | 
					
						
							|  |  |  | 				   sizeof(cp->addr)); | 
					
						
							| 
									
										
										
										
											2012-01-04 15:44:20 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-17 14:27:06 +02:00
										 |  |  | 	e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr); | 
					
						
							| 
									
										
										
										
											2012-01-04 13:31:59 +02:00
										 |  |  | 	if (!e) { | 
					
						
							| 
									
										
										
										
											2014-02-27 16:47:28 +01:00
										 |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, | 
					
						
							|  |  |  | 				   MGMT_STATUS_INVALID_PARAMS, &cp->addr, | 
					
						
							|  |  |  | 				   sizeof(cp->addr)); | 
					
						
							| 
									
										
										
										
											2012-01-04 13:31:59 +02:00
										 |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (cp->name_known) { | 
					
						
							|  |  |  | 		e->name_state = NAME_KNOWN; | 
					
						
							|  |  |  | 		list_del(&e->list); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		e->name_state = NAME_NEEDED; | 
					
						
							| 
									
										
										
										
											2012-01-09 00:53:02 +02:00
										 |  |  | 		hci_inquiry_cache_update_resolve(hdev, e); | 
					
						
							| 
									
										
										
										
											2012-01-04 13:31:59 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-09 15:29:33 +02:00
										 |  |  | 	err = cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, 0, &cp->addr, | 
					
						
							|  |  |  | 			   sizeof(cp->addr)); | 
					
						
							| 
									
										
										
										
											2012-01-04 13:31:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | failed: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int block_device(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			u16 len) | 
					
						
							| 
									
										
										
										
											2011-06-15 12:01:15 +03:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_cp_block_device *cp = data; | 
					
						
							| 
									
										
										
										
											2012-02-19 12:58:54 +02:00
										 |  |  | 	u8 status; | 
					
						
							| 
									
										
										
										
											2011-06-15 12:01:15 +03:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							| 
									
										
										
										
											2011-06-15 12:01:15 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:19 +02:00
										 |  |  | 	if (!bdaddr_type_is_valid(cp->addr.type)) | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:22 +02:00
										 |  |  | 		return cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, | 
					
						
							|  |  |  | 				    MGMT_STATUS_INVALID_PARAMS, | 
					
						
							|  |  |  | 				    &cp->addr, sizeof(cp->addr)); | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2011-08-25 16:48:02 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-09 12:59:13 +03:00
										 |  |  | 	err = hci_bdaddr_list_add(&hdev->blacklist, &cp->addr.bdaddr, | 
					
						
							|  |  |  | 				  cp->addr.type); | 
					
						
							| 
									
										
										
										
											2014-07-01 22:09:47 +03:00
										 |  |  | 	if (err < 0) { | 
					
						
							| 
									
										
										
										
											2012-02-19 12:58:54 +02:00
										 |  |  | 		status = MGMT_STATUS_FAILED; | 
					
						
							| 
									
										
										
										
											2014-07-01 22:09:47 +03:00
										 |  |  | 		goto done; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_event(MGMT_EV_DEVICE_BLOCKED, hdev, &cp->addr, sizeof(cp->addr), | 
					
						
							|  |  |  | 		   sk); | 
					
						
							|  |  |  | 	status = MGMT_STATUS_SUCCESS; | 
					
						
							| 
									
										
										
										
											2012-02-19 12:58:54 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-01 22:09:47 +03:00
										 |  |  | done: | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	err = cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			   &cp->addr, sizeof(cp->addr)); | 
					
						
							| 
									
										
										
										
											2011-08-25 16:48:02 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-06-15 12:01:15 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			  u16 len) | 
					
						
							| 
									
										
										
										
											2011-06-15 12:01:15 +03:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_cp_unblock_device *cp = data; | 
					
						
							| 
									
										
										
										
											2012-02-19 12:58:54 +02:00
										 |  |  | 	u8 status; | 
					
						
							| 
									
										
										
										
											2011-06-15 12:01:15 +03:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							| 
									
										
										
										
											2011-06-15 12:01:15 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:19 +02:00
										 |  |  | 	if (!bdaddr_type_is_valid(cp->addr.type)) | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:22 +02:00
										 |  |  | 		return cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, | 
					
						
							|  |  |  | 				    MGMT_STATUS_INVALID_PARAMS, | 
					
						
							|  |  |  | 				    &cp->addr, sizeof(cp->addr)); | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							| 
									
										
										
										
											2011-08-25 16:48:02 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-09 12:59:13 +03:00
										 |  |  | 	err = hci_bdaddr_list_del(&hdev->blacklist, &cp->addr.bdaddr, | 
					
						
							|  |  |  | 				  cp->addr.type); | 
					
						
							| 
									
										
										
										
											2014-07-01 22:09:47 +03:00
										 |  |  | 	if (err < 0) { | 
					
						
							| 
									
										
										
										
											2012-02-19 12:58:54 +02:00
										 |  |  | 		status = MGMT_STATUS_INVALID_PARAMS; | 
					
						
							| 
									
										
										
										
											2014-07-01 22:09:47 +03:00
										 |  |  | 		goto done; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, hdev, &cp->addr, sizeof(cp->addr), | 
					
						
							|  |  |  | 		   sk); | 
					
						
							|  |  |  | 	status = MGMT_STATUS_SUCCESS; | 
					
						
							| 
									
										
										
										
											2012-02-19 12:58:54 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-01 22:09:47 +03:00
										 |  |  | done: | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	err = cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			   &cp->addr, sizeof(cp->addr)); | 
					
						
							| 
									
										
										
										
											2011-08-25 16:48:02 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 13:03:21 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2011-06-15 12:01:15 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-11 20:00:29 -07:00
										 |  |  | static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							|  |  |  | 			 u16 len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_cp_set_device_id *cp = data; | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	struct hci_request req; | 
					
						
							| 
									
										
										
										
											2012-03-11 20:00:29 -07:00
										 |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2012-03-16 16:02:57 +01:00
										 |  |  | 	__u16 source; | 
					
						
							| 
									
										
										
										
											2012-03-11 20:00:29 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-16 16:02:57 +01:00
										 |  |  | 	source = __le16_to_cpu(cp->source); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (source > 0x0002) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-11 20:00:29 -07:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-16 16:02:57 +01:00
										 |  |  | 	hdev->devid_source = source; | 
					
						
							| 
									
										
										
										
											2012-03-11 20:00:29 -07:00
										 |  |  | 	hdev->devid_vendor = __le16_to_cpu(cp->vendor); | 
					
						
							|  |  |  | 	hdev->devid_product = __le16_to_cpu(cp->product); | 
					
						
							|  |  |  | 	hdev->devid_version = __le16_to_cpu(cp->version); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0, NULL, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	hci_req_init(&req, hdev); | 
					
						
							|  |  |  | 	update_eir(&req); | 
					
						
							|  |  |  | 	hci_req_run(&req, NULL); | 
					
						
							| 
									
										
										
										
											2012-03-11 20:00:29 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:10 +03:00
										 |  |  | static void set_advertising_complete(struct hci_dev *hdev, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct cmd_lookup match = { NULL, hdev }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (status) { | 
					
						
							|  |  |  | 		u8 mgmt_err = mgmt_status(status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev, | 
					
						
							|  |  |  | 				     cmd_status_rsp, &mgmt_err); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 15:07:48 +03:00
										 |  |  | 	if (test_bit(HCI_LE_ADV, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		set_bit(HCI_ADVERTISING, &hdev->dev_flags); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		clear_bit(HCI_ADVERTISING, &hdev->dev_flags); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:10 +03:00
										 |  |  | 	mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev, settings_rsp, | 
					
						
							|  |  |  | 			     &match); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	new_settings(hdev, match.sk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (match.sk) | 
					
						
							|  |  |  | 		sock_put(match.sk); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-10 09:47:53 -07:00
										 |  |  | static int set_advertising(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							|  |  |  | 			   u16 len) | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:10 +03:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_mode *cp = data; | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 	struct hci_request req; | 
					
						
							| 
									
										
										
										
											2013-10-02 15:45:22 +03:00
										 |  |  | 	u8 val, enabled, status; | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:10 +03:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("request for %s", hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-02 15:45:22 +03:00
										 |  |  | 	status = mgmt_le_support(hdev); | 
					
						
							|  |  |  | 	if (status) | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:10 +03:00
										 |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING, | 
					
						
							| 
									
										
										
										
											2013-10-02 15:45:22 +03:00
										 |  |  | 				  status); | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:10 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (cp->val != 0x00 && cp->val != 0x01) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	val = !!cp->val; | 
					
						
							| 
									
										
										
										
											2013-10-05 12:01:04 +02:00
										 |  |  | 	enabled = test_bit(HCI_ADVERTISING, &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:10 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-08 15:52:18 +02:00
										 |  |  | 	/* The following conditions are ones which mean that we should
 | 
					
						
							|  |  |  | 	 * not do any HCI communication but directly send a mgmt | 
					
						
							|  |  |  | 	 * response to user space (after toggling the flag if | 
					
						
							|  |  |  | 	 * necessary). | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (!hdev_is_powered(hdev) || val == enabled || | 
					
						
							| 
									
										
										
										
											2014-07-08 15:07:53 +03:00
										 |  |  | 	    hci_conn_num(hdev, LE_LINK) > 0 || | 
					
						
							|  |  |  | 	    (test_bit(HCI_LE_SCAN, &hdev->dev_flags) && | 
					
						
							|  |  |  | 	     hdev->le_scan_type == LE_SCAN_ACTIVE)) { | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:10 +03:00
										 |  |  | 		bool changed = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-05 12:01:04 +02:00
										 |  |  | 		if (val != test_bit(HCI_ADVERTISING, &hdev->dev_flags)) { | 
					
						
							|  |  |  | 			change_bit(HCI_ADVERTISING, &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:10 +03:00
										 |  |  | 			changed = true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		err = send_settings_rsp(sk, MGMT_OP_SET_ADVERTISING, hdev); | 
					
						
							|  |  |  | 		if (err < 0) | 
					
						
							|  |  |  | 			goto unlock; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (changed) | 
					
						
							|  |  |  | 			err = new_settings(hdev, sk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (mgmt_pending_find(MGMT_OP_SET_ADVERTISING, hdev) || | 
					
						
							|  |  |  | 	    mgmt_pending_find(MGMT_OP_SET_LE, hdev)) { | 
					
						
							|  |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING, | 
					
						
							|  |  |  | 				 MGMT_STATUS_BUSY); | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_SET_ADVERTISING, hdev, data, len); | 
					
						
							|  |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_req_init(&req, hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 02:55:21 -07:00
										 |  |  | 	if (val) | 
					
						
							|  |  |  | 		enable_advertising(&req); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		disable_advertising(&req); | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:10 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	err = hci_req_run(&req, set_advertising_complete); | 
					
						
							|  |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-02 04:41:30 -07:00
										 |  |  | static int set_static_address(struct sock *sk, struct hci_dev *hdev, | 
					
						
							|  |  |  | 			      void *data, u16 len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_cp_set_static_address *cp = data; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-02 22:10:32 -07:00
										 |  |  | 	if (!lmp_le_capable(hdev)) | 
					
						
							| 
									
										
										
										
											2013-10-02 04:41:30 -07:00
										 |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS, | 
					
						
							| 
									
										
										
										
											2013-10-02 22:10:32 -07:00
										 |  |  | 				  MGMT_STATUS_NOT_SUPPORTED); | 
					
						
							| 
									
										
										
										
											2013-10-02 04:41:30 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (hdev_is_powered(hdev)) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_REJECTED); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (bacmp(&cp->bdaddr, BDADDR_ANY)) { | 
					
						
							|  |  |  | 		if (!bacmp(&cp->bdaddr, BDADDR_NONE)) | 
					
						
							|  |  |  | 			return cmd_status(sk, hdev->id, | 
					
						
							|  |  |  | 					  MGMT_OP_SET_STATIC_ADDRESS, | 
					
						
							|  |  |  | 					  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* Two most significant bits shall be set */ | 
					
						
							|  |  |  | 		if ((cp->bdaddr.b[5] & 0xc0) != 0xc0) | 
					
						
							|  |  |  | 			return cmd_status(sk, hdev->id, | 
					
						
							|  |  |  | 					  MGMT_OP_SET_STATIC_ADDRESS, | 
					
						
							|  |  |  | 					  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bacpy(&hdev->static_addr, &cp->bdaddr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = cmd_complete(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS, 0, NULL, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 08:23:20 -07:00
										 |  |  | static int set_scan_params(struct sock *sk, struct hci_dev *hdev, | 
					
						
							|  |  |  | 			   void *data, u16 len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_cp_set_scan_params *cp = data; | 
					
						
							|  |  |  | 	__u16 interval, window; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!lmp_le_capable(hdev)) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_NOT_SUPPORTED); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	interval = __le16_to_cpu(cp->interval); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (interval < 0x0004 || interval > 0x4000) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	window = __le16_to_cpu(cp->window); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (window < 0x0004 || window > 0x4000) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-14 09:55:32 -07:00
										 |  |  | 	if (window > interval) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 08:23:20 -07:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hdev->le_scan_interval = interval; | 
					
						
							|  |  |  | 	hdev->le_scan_window = window; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = cmd_complete(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS, 0, NULL, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 20:21:56 -03:00
										 |  |  | 	/* If background scan is running, restart it so new parameters are
 | 
					
						
							|  |  |  | 	 * loaded. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (test_bit(HCI_LE_SCAN, &hdev->dev_flags) && | 
					
						
							|  |  |  | 	    hdev->discovery.state == DISCOVERY_STOPPED) { | 
					
						
							|  |  |  | 		struct hci_request req; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		hci_req_init(&req, hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		hci_req_add_le_scan_disable(&req); | 
					
						
							|  |  |  | 		hci_req_add_le_passive_scan(&req); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		hci_req_run(&req, NULL); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 08:23:20 -07:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:05 -05:00
										 |  |  | static void fast_connectable_complete(struct hci_dev *hdev, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("status 0x%02x", status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev); | 
					
						
							|  |  |  | 	if (!cmd) | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (status) { | 
					
						
							|  |  |  | 		cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE, | 
					
						
							|  |  |  | 			   mgmt_status(status)); | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:08 -05:00
										 |  |  | 		struct mgmt_mode *cp = cmd->param; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (cp->val) | 
					
						
							|  |  |  | 			set_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			clear_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:05 -05:00
										 |  |  | 		send_settings_rsp(cmd->sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev); | 
					
						
							|  |  |  | 		new_settings(hdev, cmd->sk); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				void *data, u16 len) | 
					
						
							| 
									
										
										
										
											2011-06-22 13:11:56 +03:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	struct mgmt_mode *cp = data; | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:05 -05:00
										 |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 	struct hci_request req; | 
					
						
							| 
									
										
										
										
											2011-06-22 13:11:56 +03:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							| 
									
										
										
										
											2011-06-22 13:11:56 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-02 13:43:13 +03:00
										 |  |  | 	if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags) || | 
					
						
							|  |  |  | 	    hdev->hci_ver < BLUETOOTH_VER_1_2) | 
					
						
							| 
									
										
										
										
											2012-10-24 21:11:58 +03:00
										 |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE, | 
					
						
							|  |  |  | 				  MGMT_STATUS_NOT_SUPPORTED); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-09 16:05:19 +02:00
										 |  |  | 	if (cp->val != 0x00 && cp->val != 0x01) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 16:40:33 +02:00
										 |  |  | 	if (!hdev_is_powered(hdev)) | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				  MGMT_STATUS_NOT_POWERED); | 
					
						
							| 
									
										
										
										
											2012-02-21 16:40:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags)) | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				  MGMT_STATUS_REJECTED); | 
					
						
							| 
									
										
										
										
											2011-06-22 13:11:56 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:07 -05:00
										 |  |  | 	if (mgmt_pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev)) { | 
					
						
							|  |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE, | 
					
						
							|  |  |  | 				 MGMT_STATUS_BUSY); | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:08 -05:00
										 |  |  | 	if (!!cp->val == test_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags)) { | 
					
						
							|  |  |  | 		err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE, | 
					
						
							|  |  |  | 					hdev); | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:05 -05:00
										 |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev, | 
					
						
							|  |  |  | 			       data, len); | 
					
						
							|  |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							| 
									
										
										
										
											2011-06-22 13:11:56 +03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:05 -05:00
										 |  |  | 	hci_req_init(&req, hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:09 -05:00
										 |  |  | 	write_fast_connectable(&req, cp->val); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:05 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	err = hci_req_run(&req, fast_connectable_complete); | 
					
						
							| 
									
										
										
										
											2011-06-22 13:11:56 +03:00
										 |  |  | 	if (err < 0) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_FAILED); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:05 -05:00
										 |  |  | 		mgmt_pending_remove(cmd); | 
					
						
							| 
									
										
										
										
											2011-06-22 13:11:56 +03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:05 -05:00
										 |  |  | unlock: | 
					
						
							| 
									
										
										
										
											2011-06-22 13:11:56 +03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:05 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-22 13:11:56 +03:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-02 13:43:14 +03:00
										 |  |  | static void set_bredr_complete(struct hci_dev *hdev, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("status 0x%02x", status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_find(MGMT_OP_SET_BREDR, hdev); | 
					
						
							|  |  |  | 	if (!cmd) | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (status) { | 
					
						
							|  |  |  | 		u8 mgmt_err = mgmt_status(status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* We need to restore the flag if related HCI commands
 | 
					
						
							|  |  |  | 		 * failed. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		clear_bit(HCI_BREDR_ENABLED, &hdev->dev_flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		send_settings_rsp(cmd->sk, MGMT_OP_SET_BREDR, hdev); | 
					
						
							|  |  |  | 		new_settings(hdev, cmd->sk); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int set_bredr(struct sock *sk, struct hci_dev *hdev, void *data, u16 len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_mode *cp = data; | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 	struct hci_request req; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("request for %s", hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!lmp_bredr_capable(hdev) || !lmp_le_capable(hdev)) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR, | 
					
						
							|  |  |  | 				  MGMT_STATUS_NOT_SUPPORTED); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR, | 
					
						
							|  |  |  | 				  MGMT_STATUS_REJECTED); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (cp->val != 0x00 && cp->val != 0x01) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (cp->val == test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) { | 
					
						
							|  |  |  | 		err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev); | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!hdev_is_powered(hdev)) { | 
					
						
							|  |  |  | 		if (!cp->val) { | 
					
						
							|  |  |  | 			clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags); | 
					
						
							|  |  |  | 			clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags); | 
					
						
							|  |  |  | 			clear_bit(HCI_LINK_SECURITY, &hdev->dev_flags); | 
					
						
							|  |  |  | 			clear_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags); | 
					
						
							|  |  |  | 			clear_bit(HCI_HS_ENABLED, &hdev->dev_flags); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		change_bit(HCI_BREDR_ENABLED, &hdev->dev_flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev); | 
					
						
							|  |  |  | 		if (err < 0) | 
					
						
							|  |  |  | 			goto unlock; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		err = new_settings(hdev, sk); | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Reject disabling when powered on */ | 
					
						
							|  |  |  | 	if (!cp->val) { | 
					
						
							|  |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR, | 
					
						
							|  |  |  | 				 MGMT_STATUS_REJECTED); | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (mgmt_pending_find(MGMT_OP_SET_BREDR, hdev)) { | 
					
						
							|  |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR, | 
					
						
							|  |  |  | 				 MGMT_STATUS_BUSY); | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_SET_BREDR, hdev, data, len); | 
					
						
							|  |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-16 00:16:50 -07:00
										 |  |  | 	/* We need to flip the bit already here so that update_adv_data
 | 
					
						
							| 
									
										
										
										
											2013-10-02 13:43:14 +03:00
										 |  |  | 	 * generates the correct flags. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	set_bit(HCI_BREDR_ENABLED, &hdev->dev_flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_req_init(&req, hdev); | 
					
						
							| 
									
										
										
										
											2013-10-14 21:15:26 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-01 11:13:31 +03:00
										 |  |  | 	write_fast_connectable(&req, false); | 
					
						
							|  |  |  | 	hci_update_page_scan(hdev, &req); | 
					
						
							| 
									
										
										
										
											2013-10-14 21:15:26 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-16 00:16:48 -07:00
										 |  |  | 	/* Since only the advertising data flags will change, there
 | 
					
						
							|  |  |  | 	 * is no need to update the scan response data. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2013-10-16 00:16:50 -07:00
										 |  |  | 	update_adv_data(&req); | 
					
						
							| 
									
										
										
										
											2013-10-14 21:15:26 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-02 13:43:14 +03:00
										 |  |  | 	err = hci_req_run(&req, set_bredr_complete); | 
					
						
							|  |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:23 -08:00
										 |  |  | static int set_secure_conn(struct sock *sk, struct hci_dev *hdev, | 
					
						
							|  |  |  | 			   void *data, u16 len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_mode *cp = data; | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2014-02-01 09:19:57 -08:00
										 |  |  | 	u8 val, status; | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:23 -08:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("request for %s", hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = mgmt_bredr_support(hdev); | 
					
						
							|  |  |  | 	if (status) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN, | 
					
						
							|  |  |  | 				  status); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:27 -08:00
										 |  |  | 	if (!lmp_sc_capable(hdev) && | 
					
						
							| 
									
										
										
										
											2014-06-21 04:53:17 +02:00
										 |  |  | 	    !test_bit(HCI_FORCE_SC, &hdev->dbg_flags)) | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:23 -08:00
										 |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN, | 
					
						
							|  |  |  | 				  MGMT_STATUS_NOT_SUPPORTED); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-01 09:19:57 -08:00
										 |  |  | 	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02) | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:23 -08:00
										 |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!hdev_is_powered(hdev)) { | 
					
						
							|  |  |  | 		bool changed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-01 09:19:57 -08:00
										 |  |  | 		if (cp->val) { | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:23 -08:00
										 |  |  | 			changed = !test_and_set_bit(HCI_SC_ENABLED, | 
					
						
							|  |  |  | 						    &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2014-02-01 09:19:57 -08:00
										 |  |  | 			if (cp->val == 0x02) | 
					
						
							|  |  |  | 				set_bit(HCI_SC_ONLY, &hdev->dev_flags); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				clear_bit(HCI_SC_ONLY, &hdev->dev_flags); | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:23 -08:00
										 |  |  | 			changed = test_and_clear_bit(HCI_SC_ENABLED, | 
					
						
							|  |  |  | 						     &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2014-02-01 09:19:57 -08:00
										 |  |  | 			clear_bit(HCI_SC_ONLY, &hdev->dev_flags); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:23 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev); | 
					
						
							|  |  |  | 		if (err < 0) | 
					
						
							|  |  |  | 			goto failed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (changed) | 
					
						
							|  |  |  | 			err = new_settings(hdev, sk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (mgmt_pending_find(MGMT_OP_SET_SECURE_CONN, hdev)) { | 
					
						
							|  |  |  | 		err = cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN, | 
					
						
							|  |  |  | 				 MGMT_STATUS_BUSY); | 
					
						
							|  |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-01 09:19:57 -08:00
										 |  |  | 	val = !!cp->val; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (val == test_bit(HCI_SC_ENABLED, &hdev->dev_flags) && | 
					
						
							|  |  |  | 	    (cp->val == 0x02) == test_bit(HCI_SC_ONLY, &hdev->dev_flags)) { | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:23 -08:00
										 |  |  | 		err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev); | 
					
						
							|  |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_SET_SECURE_CONN, hdev, data, len); | 
					
						
							|  |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-01 09:19:57 -08:00
										 |  |  | 	err = hci_send_cmd(hdev, HCI_OP_WRITE_SC_SUPPORT, 1, &val); | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:23 -08:00
										 |  |  | 	if (err < 0) { | 
					
						
							|  |  |  | 		mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 		goto failed; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-01 09:19:57 -08:00
										 |  |  | 	if (cp->val == 0x02) | 
					
						
							|  |  |  | 		set_bit(HCI_SC_ONLY, &hdev->dev_flags); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		clear_bit(HCI_SC_ONLY, &hdev->dev_flags); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:23 -08:00
										 |  |  | failed: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-31 11:55:22 -08:00
										 |  |  | static int set_debug_keys(struct sock *sk, struct hci_dev *hdev, | 
					
						
							|  |  |  | 			  void *data, u16 len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_mode *cp = data; | 
					
						
							| 
									
										
										
										
											2014-06-24 14:00:28 +03:00
										 |  |  | 	bool changed, use_changed; | 
					
						
							| 
									
										
										
										
											2014-01-31 11:55:22 -08:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("request for %s", hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-24 14:00:28 +03:00
										 |  |  | 	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02) | 
					
						
							| 
									
										
										
										
											2014-01-31 11:55:22 -08:00
										 |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_DEBUG_KEYS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (cp->val) | 
					
						
							| 
									
										
										
										
											2014-06-24 13:15:50 +03:00
										 |  |  | 		changed = !test_and_set_bit(HCI_KEEP_DEBUG_KEYS, | 
					
						
							|  |  |  | 					    &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2014-01-31 11:55:22 -08:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2014-06-24 13:15:50 +03:00
										 |  |  | 		changed = test_and_clear_bit(HCI_KEEP_DEBUG_KEYS, | 
					
						
							|  |  |  | 					     &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2014-01-31 11:55:22 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-24 14:00:28 +03:00
										 |  |  | 	if (cp->val == 0x02) | 
					
						
							|  |  |  | 		use_changed = !test_and_set_bit(HCI_USE_DEBUG_KEYS, | 
					
						
							|  |  |  | 						&hdev->dev_flags); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		use_changed = test_and_clear_bit(HCI_USE_DEBUG_KEYS, | 
					
						
							|  |  |  | 						 &hdev->dev_flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (hdev_is_powered(hdev) && use_changed && | 
					
						
							|  |  |  | 	    test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) { | 
					
						
							|  |  |  | 		u8 mode = (cp->val == 0x02) ? 0x01 : 0x00; | 
					
						
							|  |  |  | 		hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE, | 
					
						
							|  |  |  | 			     sizeof(mode), &mode); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-31 11:55:22 -08:00
										 |  |  | 	err = send_settings_rsp(sk, MGMT_OP_SET_DEBUG_KEYS, hdev); | 
					
						
							|  |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (changed) | 
					
						
							|  |  |  | 		err = new_settings(hdev, sk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-23 19:42:27 +02:00
										 |  |  | static int set_privacy(struct sock *sk, struct hci_dev *hdev, void *cp_data, | 
					
						
							|  |  |  | 		       u16 len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_cp_set_privacy *cp = cp_data; | 
					
						
							|  |  |  | 	bool changed; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("request for %s", hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!lmp_le_capable(hdev)) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY, | 
					
						
							|  |  |  | 				  MGMT_STATUS_NOT_SUPPORTED); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (cp->privacy != 0x00 && cp->privacy != 0x01) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (hdev_is_powered(hdev)) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY, | 
					
						
							|  |  |  | 				  MGMT_STATUS_REJECTED); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-24 11:10:30 +02:00
										 |  |  | 	/* If user space supports this command it is also expected to
 | 
					
						
							|  |  |  | 	 * handle IRKs. Therefore, set the HCI_RPA_RESOLVING flag. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	set_bit(HCI_RPA_RESOLVING, &hdev->dev_flags); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-23 19:42:27 +02:00
										 |  |  | 	if (cp->privacy) { | 
					
						
							|  |  |  | 		changed = !test_and_set_bit(HCI_PRIVACY, &hdev->dev_flags); | 
					
						
							|  |  |  | 		memcpy(hdev->irk, cp->irk, sizeof(hdev->irk)); | 
					
						
							|  |  |  | 		set_bit(HCI_RPA_EXPIRED, &hdev->dev_flags); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		changed = test_and_clear_bit(HCI_PRIVACY, &hdev->dev_flags); | 
					
						
							|  |  |  | 		memset(hdev->irk, 0, sizeof(hdev->irk)); | 
					
						
							|  |  |  | 		clear_bit(HCI_RPA_EXPIRED, &hdev->dev_flags); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = send_settings_rsp(sk, MGMT_OP_SET_PRIVACY, hdev); | 
					
						
							|  |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (changed) | 
					
						
							|  |  |  | 		err = new_settings(hdev, sk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-18 10:19:35 +02:00
										 |  |  | static bool irk_is_valid(struct mgmt_irk_info *irk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	switch (irk->addr.type) { | 
					
						
							|  |  |  | 	case BDADDR_LE_PUBLIC: | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case BDADDR_LE_RANDOM: | 
					
						
							|  |  |  | 		/* Two most significant bits shall be set */ | 
					
						
							|  |  |  | 		if ((irk->addr.bdaddr.b[5] & 0xc0) != 0xc0) | 
					
						
							|  |  |  | 			return false; | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int load_irks(struct sock *sk, struct hci_dev *hdev, void *cp_data, | 
					
						
							|  |  |  | 		     u16 len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_cp_load_irks *cp = cp_data; | 
					
						
							| 
									
										
										
										
											2014-07-03 13:52:27 +03:00
										 |  |  | 	const u16 max_irk_count = ((U16_MAX - sizeof(*cp)) / | 
					
						
							|  |  |  | 				   sizeof(struct mgmt_irk_info)); | 
					
						
							| 
									
										
										
										
											2014-02-18 10:19:35 +02:00
										 |  |  | 	u16 irk_count, expected_len; | 
					
						
							|  |  |  | 	int i, err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("request for %s", hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!lmp_le_capable(hdev)) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_NOT_SUPPORTED); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	irk_count = __le16_to_cpu(cp->irk_count); | 
					
						
							| 
									
										
										
										
											2014-07-03 13:52:27 +03:00
										 |  |  | 	if (irk_count > max_irk_count) { | 
					
						
							|  |  |  | 		BT_ERR("load_irks: too big irk_count value %u", irk_count); | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-18 10:19:35 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	expected_len = sizeof(*cp) + irk_count * sizeof(struct mgmt_irk_info); | 
					
						
							|  |  |  | 	if (expected_len != len) { | 
					
						
							|  |  |  | 		BT_ERR("load_irks: expected %u bytes, got %u bytes", | 
					
						
							| 
									
										
										
										
											2014-03-07 15:04:13 +02:00
										 |  |  | 		       expected_len, len); | 
					
						
							| 
									
										
										
										
											2014-02-18 10:19:35 +02:00
										 |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("%s irk_count %u", hdev->name, irk_count); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < irk_count; i++) { | 
					
						
							|  |  |  | 		struct mgmt_irk_info *key = &cp->irks[i]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!irk_is_valid(key)) | 
					
						
							|  |  |  | 			return cmd_status(sk, hdev->id, | 
					
						
							|  |  |  | 					  MGMT_OP_LOAD_IRKS, | 
					
						
							|  |  |  | 					  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_smp_irks_clear(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < irk_count; i++) { | 
					
						
							|  |  |  | 		struct mgmt_irk_info *irk = &cp->irks[i]; | 
					
						
							|  |  |  | 		u8 addr_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (irk->addr.type == BDADDR_LE_PUBLIC) | 
					
						
							|  |  |  | 			addr_type = ADDR_LE_DEV_PUBLIC; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			addr_type = ADDR_LE_DEV_RANDOM; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		hci_add_irk(hdev, &irk->addr.bdaddr, addr_type, irk->val, | 
					
						
							|  |  |  | 			    BDADDR_ANY); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	set_bit(HCI_RPA_RESOLVING, &hdev->dev_flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = cmd_complete(sk, hdev->id, MGMT_OP_LOAD_IRKS, 0, NULL, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:16 +02:00
										 |  |  | static bool ltk_is_valid(struct mgmt_ltk_info *key) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (key->master != 0x00 && key->master != 0x01) | 
					
						
							|  |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2014-02-16 12:59:05 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	switch (key->addr.type) { | 
					
						
							|  |  |  | 	case BDADDR_LE_PUBLIC: | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case BDADDR_LE_RANDOM: | 
					
						
							|  |  |  | 		/* Two most significant bits shall be set */ | 
					
						
							|  |  |  | 		if ((key->addr.bdaddr.b[5] & 0xc0) != 0xc0) | 
					
						
							|  |  |  | 			return false; | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return false; | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:16 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			       void *cp_data, u16 len) | 
					
						
							| 
									
										
										
										
											2012-02-02 21:08:02 -03:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_cp_load_long_term_keys *cp = cp_data; | 
					
						
							| 
									
										
										
										
											2014-07-03 13:52:27 +03:00
										 |  |  | 	const u16 max_key_count = ((U16_MAX - sizeof(*cp)) / | 
					
						
							|  |  |  | 				   sizeof(struct mgmt_ltk_info)); | 
					
						
							| 
									
										
										
										
											2012-02-02 21:08:02 -03:00
										 |  |  | 	u16 key_count, expected_len; | 
					
						
							| 
									
										
										
										
											2013-01-09 15:29:34 +02:00
										 |  |  | 	int i, err; | 
					
						
							| 
									
										
										
										
											2012-02-02 21:08:02 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-02 21:16:08 -07:00
										 |  |  | 	BT_DBG("request for %s", hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!lmp_le_capable(hdev)) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_NOT_SUPPORTED); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-12 20:31:08 -07:00
										 |  |  | 	key_count = __le16_to_cpu(cp->key_count); | 
					
						
							| 
									
										
										
										
											2014-07-03 13:52:27 +03:00
										 |  |  | 	if (key_count > max_key_count) { | 
					
						
							|  |  |  | 		BT_ERR("load_ltks: too big key_count value %u", key_count); | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-02 21:08:02 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	expected_len = sizeof(*cp) + key_count * | 
					
						
							|  |  |  | 					sizeof(struct mgmt_ltk_info); | 
					
						
							|  |  |  | 	if (expected_len != len) { | 
					
						
							|  |  |  | 		BT_ERR("load_keys: expected %u bytes, got %u bytes", | 
					
						
							| 
									
										
										
										
											2014-03-07 15:04:13 +02:00
										 |  |  | 		       expected_len, len); | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:14 +02:00
										 |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							| 
									
										
										
										
											2012-02-02 21:08:02 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	BT_DBG("%s key_count %u", hdev->name, key_count); | 
					
						
							| 
									
										
										
										
											2012-02-02 21:08:02 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:15 +02:00
										 |  |  | 	for (i = 0; i < key_count; i++) { | 
					
						
							|  |  |  | 		struct mgmt_ltk_info *key = &cp->keys[i]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:16 +02:00
										 |  |  | 		if (!ltk_is_valid(key)) | 
					
						
							| 
									
										
										
										
											2013-01-20 14:27:15 +02:00
										 |  |  | 			return cmd_status(sk, hdev->id, | 
					
						
							|  |  |  | 					  MGMT_OP_LOAD_LONG_TERM_KEYS, | 
					
						
							|  |  |  | 					  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-02 21:08:02 -03:00
										 |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_smp_ltks_clear(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < key_count; i++) { | 
					
						
							|  |  |  | 		struct mgmt_ltk_info *key = &cp->keys[i]; | 
					
						
							| 
									
										
										
										
											2014-05-23 13:19:53 +03:00
										 |  |  | 		u8 type, addr_type, authenticated; | 
					
						
							| 
									
										
										
										
											2013-10-13 03:57:38 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (key->addr.type == BDADDR_LE_PUBLIC) | 
					
						
							|  |  |  | 			addr_type = ADDR_LE_DEV_PUBLIC; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			addr_type = ADDR_LE_DEV_RANDOM; | 
					
						
							| 
									
										
										
										
											2012-02-02 21:08:02 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (key->master) | 
					
						
							| 
									
										
										
										
											2014-06-16 19:25:16 +03:00
										 |  |  | 			type = SMP_LTK; | 
					
						
							| 
									
										
										
										
											2012-02-02 21:08:02 -03:00
										 |  |  | 		else | 
					
						
							| 
									
										
										
										
											2014-06-16 19:25:16 +03:00
										 |  |  | 			type = SMP_LTK_SLAVE; | 
					
						
							| 
									
										
										
										
											2012-02-02 21:08:02 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-29 19:36:53 +03:00
										 |  |  | 		switch (key->type) { | 
					
						
							|  |  |  | 		case MGMT_LTK_UNAUTHENTICATED: | 
					
						
							| 
									
										
										
										
											2014-05-23 13:19:53 +03:00
										 |  |  | 			authenticated = 0x00; | 
					
						
							| 
									
										
										
										
											2014-05-29 19:36:53 +03:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case MGMT_LTK_AUTHENTICATED: | 
					
						
							| 
									
										
										
										
											2014-05-23 13:19:53 +03:00
										 |  |  | 			authenticated = 0x01; | 
					
						
							| 
									
										
										
										
											2014-05-29 19:36:53 +03:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-05-23 13:19:53 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-19 14:57:47 +02:00
										 |  |  | 		hci_add_ltk(hdev, &key->addr.bdaddr, addr_type, type, | 
					
						
							| 
									
										
										
										
											2014-05-23 13:19:53 +03:00
										 |  |  | 			    authenticated, key->val, key->enc_size, key->ediv, | 
					
						
							| 
									
										
										
										
											2014-02-19 14:57:47 +02:00
										 |  |  | 			    key->rand); | 
					
						
							| 
									
										
										
										
											2012-02-02 21:08:02 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-09 15:29:34 +02:00
										 |  |  | 	err = cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0, | 
					
						
							|  |  |  | 			   NULL, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-02 21:08:02 -03:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-09 15:29:34 +02:00
										 |  |  | 	return err; | 
					
						
							| 
									
										
										
										
											2012-02-02 21:08:02 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:03 +02:00
										 |  |  | struct cmd_conn_lookup { | 
					
						
							|  |  |  | 	struct hci_conn *conn; | 
					
						
							|  |  |  | 	bool valid_tx_power; | 
					
						
							|  |  |  | 	u8 mgmt_status; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void get_conn_info_complete(struct pending_cmd *cmd, void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct cmd_conn_lookup *match = data; | 
					
						
							|  |  |  | 	struct mgmt_cp_get_conn_info *cp; | 
					
						
							|  |  |  | 	struct mgmt_rp_get_conn_info rp; | 
					
						
							|  |  |  | 	struct hci_conn *conn = cmd->user_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (conn != match->conn) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cp = (struct mgmt_cp_get_conn_info *) cmd->param; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(&rp, 0, sizeof(rp)); | 
					
						
							|  |  |  | 	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr); | 
					
						
							|  |  |  | 	rp.addr.type = cp->addr.type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!match->mgmt_status) { | 
					
						
							|  |  |  | 		rp.rssi = conn->rssi; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:06 +02:00
										 |  |  | 		if (match->valid_tx_power) { | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:03 +02:00
										 |  |  | 			rp.tx_power = conn->tx_power; | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:06 +02:00
										 |  |  | 			rp.max_tx_power = conn->max_tx_power; | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:03 +02:00
										 |  |  | 			rp.tx_power = HCI_TX_POWER_INVALID; | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:06 +02:00
										 |  |  | 			rp.max_tx_power = HCI_TX_POWER_INVALID; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:03 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd_complete(cmd->sk, cmd->index, MGMT_OP_GET_CONN_INFO, | 
					
						
							|  |  |  | 		     match->mgmt_status, &rp, sizeof(rp)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_conn_drop(conn); | 
					
						
							| 
									
										
										
										
											2014-08-17 23:28:57 +03:00
										 |  |  | 	hci_conn_put(conn); | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:03 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void conn_info_refresh_complete(struct hci_dev *hdev, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct hci_cp_read_rssi *cp; | 
					
						
							|  |  |  | 	struct hci_conn *conn; | 
					
						
							|  |  |  | 	struct cmd_conn_lookup match; | 
					
						
							|  |  |  | 	u16 handle; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("status 0x%02x", status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* TX power data is valid in case request completed successfully,
 | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:06 +02:00
										 |  |  | 	 * otherwise we assume it's not valid. At the moment we assume that | 
					
						
							|  |  |  | 	 * either both or none of current and max values are valid to keep code | 
					
						
							|  |  |  | 	 * simple. | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:03 +02:00
										 |  |  | 	 */ | 
					
						
							|  |  |  | 	match.valid_tx_power = !status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Commands sent in request are either Read RSSI or Read Transmit Power
 | 
					
						
							|  |  |  | 	 * Level so we check which one was last sent to retrieve connection | 
					
						
							|  |  |  | 	 * handle.  Both commands have handle as first parameter so it's safe to | 
					
						
							|  |  |  | 	 * cast data on the same command struct. | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * First command sent is always Read RSSI and we fail only if it fails. | 
					
						
							|  |  |  | 	 * In other case we simply override error to indicate success as we | 
					
						
							|  |  |  | 	 * already remembered if TX power value is actually valid. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	cp = hci_sent_cmd_data(hdev, HCI_OP_READ_RSSI); | 
					
						
							|  |  |  | 	if (!cp) { | 
					
						
							|  |  |  | 		cp = hci_sent_cmd_data(hdev, HCI_OP_READ_TX_POWER); | 
					
						
							|  |  |  | 		status = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!cp) { | 
					
						
							|  |  |  | 		BT_ERR("invalid sent_cmd in response"); | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handle = __le16_to_cpu(cp->handle); | 
					
						
							|  |  |  | 	conn = hci_conn_hash_lookup_handle(hdev, handle); | 
					
						
							|  |  |  | 	if (!conn) { | 
					
						
							|  |  |  | 		BT_ERR("unknown handle (%d) in response", handle); | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	match.conn = conn; | 
					
						
							|  |  |  | 	match.mgmt_status = mgmt_status(status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Cache refresh is complete, now reply for mgmt request for given
 | 
					
						
							|  |  |  | 	 * connection only. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	mgmt_pending_foreach(MGMT_OP_GET_CONN_INFO, hdev, | 
					
						
							|  |  |  | 			     get_conn_info_complete, &match); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int get_conn_info(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							|  |  |  | 			 u16 len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_cp_get_conn_info *cp = data; | 
					
						
							|  |  |  | 	struct mgmt_rp_get_conn_info rp; | 
					
						
							|  |  |  | 	struct hci_conn *conn; | 
					
						
							|  |  |  | 	unsigned long conn_info_age; | 
					
						
							|  |  |  | 	int err = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(&rp, 0, sizeof(rp)); | 
					
						
							|  |  |  | 	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr); | 
					
						
							|  |  |  | 	rp.addr.type = cp->addr.type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!bdaddr_type_is_valid(cp->addr.type)) | 
					
						
							|  |  |  | 		return cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO, | 
					
						
							|  |  |  | 				    MGMT_STATUS_INVALID_PARAMS, | 
					
						
							|  |  |  | 				    &rp, sizeof(rp)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!hdev_is_powered(hdev)) { | 
					
						
							|  |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO, | 
					
						
							|  |  |  | 				   MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp)); | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (cp->addr.type == BDADDR_BREDR) | 
					
						
							|  |  |  | 		conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, | 
					
						
							|  |  |  | 					       &cp->addr.bdaddr); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!conn || conn->state != BT_CONNECTED) { | 
					
						
							|  |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO, | 
					
						
							|  |  |  | 				   MGMT_STATUS_NOT_CONNECTED, &rp, sizeof(rp)); | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* To avoid client trying to guess when to poll again for information we
 | 
					
						
							|  |  |  | 	 * calculate conn info age as random value between min/max set in hdev. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	conn_info_age = hdev->conn_info_min_age + | 
					
						
							|  |  |  | 			prandom_u32_max(hdev->conn_info_max_age - | 
					
						
							|  |  |  | 					hdev->conn_info_min_age); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Query controller to refresh cached values if they are too old or were
 | 
					
						
							|  |  |  | 	 * never read. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2014-05-16 16:48:57 +02:00
										 |  |  | 	if (time_after(jiffies, conn->conn_info_timestamp + | 
					
						
							|  |  |  | 		       msecs_to_jiffies(conn_info_age)) || | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:03 +02:00
										 |  |  | 	    !conn->conn_info_timestamp) { | 
					
						
							|  |  |  | 		struct hci_request req; | 
					
						
							|  |  |  | 		struct hci_cp_read_tx_power req_txp_cp; | 
					
						
							|  |  |  | 		struct hci_cp_read_rssi req_rssi_cp; | 
					
						
							|  |  |  | 		struct pending_cmd *cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		hci_req_init(&req, hdev); | 
					
						
							|  |  |  | 		req_rssi_cp.handle = cpu_to_le16(conn->handle); | 
					
						
							|  |  |  | 		hci_req_add(&req, HCI_OP_READ_RSSI, sizeof(req_rssi_cp), | 
					
						
							|  |  |  | 			    &req_rssi_cp); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:04 +02:00
										 |  |  | 		/* For LE links TX power does not change thus we don't need to
 | 
					
						
							|  |  |  | 		 * query for it once value is known. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (!bdaddr_type_is_le(cp->addr.type) || | 
					
						
							|  |  |  | 		    conn->tx_power == HCI_TX_POWER_INVALID) { | 
					
						
							|  |  |  | 			req_txp_cp.handle = cpu_to_le16(conn->handle); | 
					
						
							|  |  |  | 			req_txp_cp.type = 0x00; | 
					
						
							|  |  |  | 			hci_req_add(&req, HCI_OP_READ_TX_POWER, | 
					
						
							|  |  |  | 				    sizeof(req_txp_cp), &req_txp_cp); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:06 +02:00
										 |  |  | 		/* Max TX power needs to be read only once per connection */ | 
					
						
							|  |  |  | 		if (conn->max_tx_power == HCI_TX_POWER_INVALID) { | 
					
						
							|  |  |  | 			req_txp_cp.handle = cpu_to_le16(conn->handle); | 
					
						
							|  |  |  | 			req_txp_cp.type = 0x01; | 
					
						
							|  |  |  | 			hci_req_add(&req, HCI_OP_READ_TX_POWER, | 
					
						
							|  |  |  | 				    sizeof(req_txp_cp), &req_txp_cp); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:03 +02:00
										 |  |  | 		err = hci_req_run(&req, conn_info_refresh_complete); | 
					
						
							|  |  |  | 		if (err < 0) | 
					
						
							|  |  |  | 			goto unlock; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		cmd = mgmt_pending_add(sk, MGMT_OP_GET_CONN_INFO, hdev, | 
					
						
							|  |  |  | 				       data, len); | 
					
						
							|  |  |  | 		if (!cmd) { | 
					
						
							|  |  |  | 			err = -ENOMEM; | 
					
						
							|  |  |  | 			goto unlock; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		hci_conn_hold(conn); | 
					
						
							| 
									
										
										
										
											2014-08-17 23:28:57 +03:00
										 |  |  | 		cmd->user_data = hci_conn_get(conn); | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:03 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		conn->conn_info_timestamp = jiffies; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		/* Cache is valid, just reply with values cached in hci_conn */ | 
					
						
							|  |  |  | 		rp.rssi = conn->rssi; | 
					
						
							|  |  |  | 		rp.tx_power = conn->tx_power; | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:06 +02:00
										 |  |  | 		rp.max_tx_power = conn->max_tx_power; | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:03 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO, | 
					
						
							|  |  |  | 				   MGMT_STATUS_SUCCESS, &rp, sizeof(rp)); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 17:54:07 +03:00
										 |  |  | static void get_clock_info_complete(struct hci_dev *hdev, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_cp_get_clock_info *cp; | 
					
						
							|  |  |  | 	struct mgmt_rp_get_clock_info rp; | 
					
						
							|  |  |  | 	struct hci_cp_read_clock *hci_cp; | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 	struct hci_conn *conn; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("%s status %u", hdev->name, status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_cp = hci_sent_cmd_data(hdev, HCI_OP_READ_CLOCK); | 
					
						
							|  |  |  | 	if (!hci_cp) | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (hci_cp->which) { | 
					
						
							|  |  |  | 		u16 handle = __le16_to_cpu(hci_cp->handle); | 
					
						
							|  |  |  | 		conn = hci_conn_hash_lookup_handle(hdev, handle); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		conn = NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_find_data(MGMT_OP_GET_CLOCK_INFO, hdev, conn); | 
					
						
							|  |  |  | 	if (!cmd) | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cp = cmd->param; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(&rp, 0, sizeof(rp)); | 
					
						
							|  |  |  | 	memcpy(&rp.addr, &cp->addr, sizeof(rp.addr)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (status) | 
					
						
							|  |  |  | 		goto send_rsp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rp.local_clock = cpu_to_le32(hdev->clock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (conn) { | 
					
						
							|  |  |  | 		rp.piconet_clock = cpu_to_le32(conn->clock); | 
					
						
							|  |  |  | 		rp.accuracy = cpu_to_le16(conn->clock_accuracy); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | send_rsp: | 
					
						
							|  |  |  | 	cmd_complete(cmd->sk, cmd->index, cmd->opcode, mgmt_status(status), | 
					
						
							|  |  |  | 		     &rp, sizeof(rp)); | 
					
						
							|  |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							| 
									
										
										
										
											2014-08-17 23:28:57 +03:00
										 |  |  | 	if (conn) { | 
					
						
							| 
									
										
										
										
											2014-06-28 17:54:07 +03:00
										 |  |  | 		hci_conn_drop(conn); | 
					
						
							| 
									
										
										
										
											2014-08-17 23:28:57 +03:00
										 |  |  | 		hci_conn_put(conn); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-06-28 17:54:07 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int get_clock_info(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							|  |  |  | 			 u16 len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_cp_get_clock_info *cp = data; | 
					
						
							|  |  |  | 	struct mgmt_rp_get_clock_info rp; | 
					
						
							|  |  |  | 	struct hci_cp_read_clock hci_cp; | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 	struct hci_request req; | 
					
						
							|  |  |  | 	struct hci_conn *conn; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(&rp, 0, sizeof(rp)); | 
					
						
							|  |  |  | 	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr); | 
					
						
							|  |  |  | 	rp.addr.type = cp->addr.type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (cp->addr.type != BDADDR_BREDR) | 
					
						
							|  |  |  | 		return cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO, | 
					
						
							|  |  |  | 				    MGMT_STATUS_INVALID_PARAMS, | 
					
						
							|  |  |  | 				    &rp, sizeof(rp)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!hdev_is_powered(hdev)) { | 
					
						
							|  |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO, | 
					
						
							|  |  |  | 				   MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp)); | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) { | 
					
						
							|  |  |  | 		conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, | 
					
						
							|  |  |  | 					       &cp->addr.bdaddr); | 
					
						
							|  |  |  | 		if (!conn || conn->state != BT_CONNECTED) { | 
					
						
							|  |  |  | 			err = cmd_complete(sk, hdev->id, | 
					
						
							|  |  |  | 					   MGMT_OP_GET_CLOCK_INFO, | 
					
						
							|  |  |  | 					   MGMT_STATUS_NOT_CONNECTED, | 
					
						
							|  |  |  | 					   &rp, sizeof(rp)); | 
					
						
							|  |  |  | 			goto unlock; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		conn = NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_add(sk, MGMT_OP_GET_CLOCK_INFO, hdev, data, len); | 
					
						
							|  |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_req_init(&req, hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(&hci_cp, 0, sizeof(hci_cp)); | 
					
						
							|  |  |  | 	hci_req_add(&req, HCI_OP_READ_CLOCK, sizeof(hci_cp), &hci_cp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (conn) { | 
					
						
							|  |  |  | 		hci_conn_hold(conn); | 
					
						
							| 
									
										
										
										
											2014-08-17 23:28:57 +03:00
										 |  |  | 		cmd->user_data = hci_conn_get(conn); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:54:07 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		hci_cp.handle = cpu_to_le16(conn->handle); | 
					
						
							|  |  |  | 		hci_cp.which = 0x01; /* Piconet clock */ | 
					
						
							|  |  |  | 		hci_req_add(&req, HCI_OP_READ_CLOCK, sizeof(hci_cp), &hci_cp); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = hci_req_run(&req, get_clock_info_complete); | 
					
						
							|  |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 22:28:34 +02:00
										 |  |  | static void device_added(struct sock *sk, struct hci_dev *hdev, | 
					
						
							|  |  |  | 			 bdaddr_t *bdaddr, u8 type, u8 action) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_ev_device_added ev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bacpy(&ev.addr.bdaddr, bdaddr); | 
					
						
							|  |  |  | 	ev.addr.type = type; | 
					
						
							|  |  |  | 	ev.action = action; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_event(MGMT_EV_DEVICE_ADDED, hdev, &ev, sizeof(ev), sk); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 19:44:03 +02:00
										 |  |  | static int add_device(struct sock *sk, struct hci_dev *hdev, | 
					
						
							|  |  |  | 		      void *data, u16 len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_cp_add_device *cp = data; | 
					
						
							|  |  |  | 	u8 auto_conn, addr_type; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-09 12:59:14 +03:00
										 |  |  | 	if (!bdaddr_type_is_valid(cp->addr.type) || | 
					
						
							| 
									
										
										
										
											2014-06-29 19:44:03 +02:00
										 |  |  | 	    !bacmp(&cp->addr.bdaddr, BDADDR_ANY)) | 
					
						
							|  |  |  | 		return cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE, | 
					
						
							|  |  |  | 				    MGMT_STATUS_INVALID_PARAMS, | 
					
						
							|  |  |  | 				    &cp->addr, sizeof(cp->addr)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-23 21:55:23 +02:00
										 |  |  | 	if (cp->action != 0x00 && cp->action != 0x01 && cp->action != 0x02) | 
					
						
							| 
									
										
										
										
											2014-06-29 19:44:03 +02:00
										 |  |  | 		return cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE, | 
					
						
							|  |  |  | 				    MGMT_STATUS_INVALID_PARAMS, | 
					
						
							|  |  |  | 				    &cp->addr, sizeof(cp->addr)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-09 12:59:14 +03:00
										 |  |  | 	if (cp->addr.type == BDADDR_BREDR) { | 
					
						
							| 
									
										
										
										
											2014-07-23 21:55:23 +02:00
										 |  |  | 		/* Only incoming connections action is supported for now */ | 
					
						
							| 
									
										
										
										
											2014-07-09 12:59:14 +03:00
										 |  |  | 		if (cp->action != 0x01) { | 
					
						
							|  |  |  | 			err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE, | 
					
						
							|  |  |  | 					   MGMT_STATUS_INVALID_PARAMS, | 
					
						
							|  |  |  | 					   &cp->addr, sizeof(cp->addr)); | 
					
						
							|  |  |  | 			goto unlock; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		err = hci_bdaddr_list_add(&hdev->whitelist, &cp->addr.bdaddr, | 
					
						
							|  |  |  | 					  cp->addr.type); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							|  |  |  | 			goto unlock; | 
					
						
							| 
									
										
										
										
											2014-07-09 12:59:15 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-01 11:13:31 +03:00
										 |  |  | 		hci_update_page_scan(hdev, NULL); | 
					
						
							| 
									
										
										
										
											2014-07-09 12:59:15 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-09 12:59:14 +03:00
										 |  |  | 		goto added; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 19:44:03 +02:00
										 |  |  | 	if (cp->addr.type == BDADDR_LE_PUBLIC) | 
					
						
							|  |  |  | 		addr_type = ADDR_LE_DEV_PUBLIC; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		addr_type = ADDR_LE_DEV_RANDOM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-23 21:55:23 +02:00
										 |  |  | 	if (cp->action == 0x02) | 
					
						
							| 
									
										
										
										
											2014-06-29 19:44:03 +02:00
										 |  |  | 		auto_conn = HCI_AUTO_CONN_ALWAYS; | 
					
						
							| 
									
										
										
										
											2014-07-23 21:55:23 +02:00
										 |  |  | 	else if (cp->action == 0x01) | 
					
						
							|  |  |  | 		auto_conn = HCI_AUTO_CONN_DIRECT; | 
					
						
							| 
									
										
										
										
											2014-06-29 19:44:03 +02:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2014-07-02 17:37:27 +03:00
										 |  |  | 		auto_conn = HCI_AUTO_CONN_REPORT; | 
					
						
							| 
									
										
										
										
											2014-06-29 19:44:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-30 12:34:39 +02:00
										 |  |  | 	/* If the connection parameters don't exist for this device,
 | 
					
						
							|  |  |  | 	 * they will be created and configured with defaults. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2014-07-01 12:11:06 +02:00
										 |  |  | 	if (hci_conn_params_set(hdev, &cp->addr.bdaddr, addr_type, | 
					
						
							|  |  |  | 				auto_conn) < 0) { | 
					
						
							| 
									
										
										
										
											2014-06-29 19:44:03 +02:00
										 |  |  | 		err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE, | 
					
						
							|  |  |  | 				   MGMT_STATUS_FAILED, | 
					
						
							|  |  |  | 				   &cp->addr, sizeof(cp->addr)); | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-09 12:59:14 +03:00
										 |  |  | added: | 
					
						
							| 
									
										
										
										
											2014-06-29 22:28:34 +02:00
										 |  |  | 	device_added(sk, hdev, &cp->addr.bdaddr, cp->addr.type, cp->action); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 19:44:03 +02:00
										 |  |  | 	err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE, | 
					
						
							|  |  |  | 			   MGMT_STATUS_SUCCESS, &cp->addr, sizeof(cp->addr)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 22:28:34 +02:00
										 |  |  | static void device_removed(struct sock *sk, struct hci_dev *hdev, | 
					
						
							|  |  |  | 			   bdaddr_t *bdaddr, u8 type) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_ev_device_removed ev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bacpy(&ev.addr.bdaddr, bdaddr); | 
					
						
							|  |  |  | 	ev.addr.type = type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_event(MGMT_EV_DEVICE_REMOVED, hdev, &ev, sizeof(ev), sk); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 19:44:03 +02:00
										 |  |  | static int remove_device(struct sock *sk, struct hci_dev *hdev, | 
					
						
							|  |  |  | 			 void *data, u16 len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_cp_remove_device *cp = data; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) { | 
					
						
							| 
									
										
										
										
											2014-07-02 17:37:28 +03:00
										 |  |  | 		struct hci_conn_params *params; | 
					
						
							| 
									
										
										
										
											2014-06-29 19:44:03 +02:00
										 |  |  | 		u8 addr_type; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-09 12:59:14 +03:00
										 |  |  | 		if (!bdaddr_type_is_valid(cp->addr.type)) { | 
					
						
							| 
									
										
										
										
											2014-06-29 19:44:03 +02:00
										 |  |  | 			err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_DEVICE, | 
					
						
							|  |  |  | 					   MGMT_STATUS_INVALID_PARAMS, | 
					
						
							|  |  |  | 					   &cp->addr, sizeof(cp->addr)); | 
					
						
							|  |  |  | 			goto unlock; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-09 12:59:14 +03:00
										 |  |  | 		if (cp->addr.type == BDADDR_BREDR) { | 
					
						
							|  |  |  | 			err = hci_bdaddr_list_del(&hdev->whitelist, | 
					
						
							|  |  |  | 						  &cp->addr.bdaddr, | 
					
						
							|  |  |  | 						  cp->addr.type); | 
					
						
							|  |  |  | 			if (err) { | 
					
						
							|  |  |  | 				err = cmd_complete(sk, hdev->id, | 
					
						
							|  |  |  | 						   MGMT_OP_REMOVE_DEVICE, | 
					
						
							|  |  |  | 						   MGMT_STATUS_INVALID_PARAMS, | 
					
						
							|  |  |  | 						   &cp->addr, sizeof(cp->addr)); | 
					
						
							|  |  |  | 				goto unlock; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-01 11:13:31 +03:00
										 |  |  | 			hci_update_page_scan(hdev, NULL); | 
					
						
							| 
									
										
										
										
											2014-07-09 12:59:15 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-09 12:59:14 +03:00
										 |  |  | 			device_removed(sk, hdev, &cp->addr.bdaddr, | 
					
						
							|  |  |  | 				       cp->addr.type); | 
					
						
							|  |  |  | 			goto complete; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 19:44:03 +02:00
										 |  |  | 		if (cp->addr.type == BDADDR_LE_PUBLIC) | 
					
						
							|  |  |  | 			addr_type = ADDR_LE_DEV_PUBLIC; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			addr_type = ADDR_LE_DEV_RANDOM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-02 17:37:28 +03:00
										 |  |  | 		params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr, | 
					
						
							|  |  |  | 						addr_type); | 
					
						
							|  |  |  | 		if (!params) { | 
					
						
							|  |  |  | 			err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_DEVICE, | 
					
						
							|  |  |  | 					   MGMT_STATUS_INVALID_PARAMS, | 
					
						
							|  |  |  | 					   &cp->addr, sizeof(cp->addr)); | 
					
						
							|  |  |  | 			goto unlock; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (params->auto_connect == HCI_AUTO_CONN_DISABLED) { | 
					
						
							|  |  |  | 			err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_DEVICE, | 
					
						
							|  |  |  | 					   MGMT_STATUS_INVALID_PARAMS, | 
					
						
							|  |  |  | 					   &cp->addr, sizeof(cp->addr)); | 
					
						
							|  |  |  | 			goto unlock; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-04 16:17:23 +03:00
										 |  |  | 		list_del(¶ms->action); | 
					
						
							| 
									
										
										
										
											2014-07-02 17:37:28 +03:00
										 |  |  | 		list_del(¶ms->list); | 
					
						
							|  |  |  | 		kfree(params); | 
					
						
							| 
									
										
										
										
											2014-07-04 12:37:21 +03:00
										 |  |  | 		hci_update_background_scan(hdev); | 
					
						
							| 
									
										
										
										
											2014-06-29 22:28:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		device_removed(sk, hdev, &cp->addr.bdaddr, cp->addr.type); | 
					
						
							| 
									
										
										
										
											2014-06-29 19:44:03 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2014-07-06 13:06:51 +03:00
										 |  |  | 		struct hci_conn_params *p, *tmp; | 
					
						
							| 
									
										
										
										
											2014-07-09 12:59:14 +03:00
										 |  |  | 		struct bdaddr_list *b, *btmp; | 
					
						
							| 
									
										
										
										
											2014-07-06 13:06:51 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 19:44:03 +02:00
										 |  |  | 		if (cp->addr.type) { | 
					
						
							|  |  |  | 			err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_DEVICE, | 
					
						
							|  |  |  | 					   MGMT_STATUS_INVALID_PARAMS, | 
					
						
							|  |  |  | 					   &cp->addr, sizeof(cp->addr)); | 
					
						
							|  |  |  | 			goto unlock; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-09 12:59:14 +03:00
										 |  |  | 		list_for_each_entry_safe(b, btmp, &hdev->whitelist, list) { | 
					
						
							|  |  |  | 			device_removed(sk, hdev, &b->bdaddr, b->bdaddr_type); | 
					
						
							|  |  |  | 			list_del(&b->list); | 
					
						
							|  |  |  | 			kfree(b); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-01 11:13:31 +03:00
										 |  |  | 		hci_update_page_scan(hdev, NULL); | 
					
						
							| 
									
										
										
										
											2014-07-09 12:59:15 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-06 13:06:51 +03:00
										 |  |  | 		list_for_each_entry_safe(p, tmp, &hdev->le_conn_params, list) { | 
					
						
							|  |  |  | 			if (p->auto_connect == HCI_AUTO_CONN_DISABLED) | 
					
						
							|  |  |  | 				continue; | 
					
						
							|  |  |  | 			device_removed(sk, hdev, &p->addr, p->addr_type); | 
					
						
							|  |  |  | 			list_del(&p->action); | 
					
						
							|  |  |  | 			list_del(&p->list); | 
					
						
							|  |  |  | 			kfree(p); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		BT_DBG("All LE connection parameters were removed"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		hci_update_background_scan(hdev); | 
					
						
							| 
									
										
										
										
											2014-06-29 19:44:03 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-09 12:59:14 +03:00
										 |  |  | complete: | 
					
						
							| 
									
										
										
										
											2014-06-29 19:44:03 +02:00
										 |  |  | 	err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_DEVICE, | 
					
						
							|  |  |  | 			   MGMT_STATUS_SUCCESS, &cp->addr, sizeof(cp->addr)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-02 17:37:29 +03:00
										 |  |  | static int load_conn_param(struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							|  |  |  | 			   u16 len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_cp_load_conn_param *cp = data; | 
					
						
							| 
									
										
										
										
											2014-07-03 13:52:27 +03:00
										 |  |  | 	const u16 max_param_count = ((U16_MAX - sizeof(*cp)) / | 
					
						
							|  |  |  | 				     sizeof(struct mgmt_conn_param)); | 
					
						
							| 
									
										
										
										
											2014-07-02 17:37:29 +03:00
										 |  |  | 	u16 param_count, expected_len; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!lmp_le_capable(hdev)) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM, | 
					
						
							|  |  |  | 				  MGMT_STATUS_NOT_SUPPORTED); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	param_count = __le16_to_cpu(cp->param_count); | 
					
						
							| 
									
										
										
										
											2014-07-03 13:52:27 +03:00
										 |  |  | 	if (param_count > max_param_count) { | 
					
						
							|  |  |  | 		BT_ERR("load_conn_param: too big param_count value %u", | 
					
						
							|  |  |  | 		       param_count); | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-07-02 17:37:29 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	expected_len = sizeof(*cp) + param_count * | 
					
						
							|  |  |  | 					sizeof(struct mgmt_conn_param); | 
					
						
							|  |  |  | 	if (expected_len != len) { | 
					
						
							|  |  |  | 		BT_ERR("load_conn_param: expected %u bytes, got %u bytes", | 
					
						
							|  |  |  | 		       expected_len, len); | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("%s param_count %u", hdev->name, param_count); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_conn_params_clear_disabled(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < param_count; i++) { | 
					
						
							|  |  |  | 		struct mgmt_conn_param *param = &cp->params[i]; | 
					
						
							|  |  |  | 		struct hci_conn_params *hci_param; | 
					
						
							|  |  |  | 		u16 min, max, latency, timeout; | 
					
						
							|  |  |  | 		u8 addr_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		BT_DBG("Adding %pMR (type %u)", ¶m->addr.bdaddr, | 
					
						
							|  |  |  | 		       param->addr.type); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (param->addr.type == BDADDR_LE_PUBLIC) { | 
					
						
							|  |  |  | 			addr_type = ADDR_LE_DEV_PUBLIC; | 
					
						
							|  |  |  | 		} else if (param->addr.type == BDADDR_LE_RANDOM) { | 
					
						
							|  |  |  | 			addr_type = ADDR_LE_DEV_RANDOM; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			BT_ERR("Ignoring invalid connection parameters"); | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		min = le16_to_cpu(param->min_interval); | 
					
						
							|  |  |  | 		max = le16_to_cpu(param->max_interval); | 
					
						
							|  |  |  | 		latency = le16_to_cpu(param->latency); | 
					
						
							|  |  |  | 		timeout = le16_to_cpu(param->timeout); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		BT_DBG("min 0x%04x max 0x%04x latency 0x%04x timeout 0x%04x", | 
					
						
							|  |  |  | 		       min, max, latency, timeout); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (hci_check_conn_params(min, max, latency, timeout) < 0) { | 
					
						
							|  |  |  | 			BT_ERR("Ignoring invalid connection parameters"); | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		hci_param = hci_conn_params_add(hdev, ¶m->addr.bdaddr, | 
					
						
							|  |  |  | 						addr_type); | 
					
						
							|  |  |  | 		if (!hci_param) { | 
					
						
							|  |  |  | 			BT_ERR("Failed to add connection parameters"); | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		hci_param->conn_min_interval = min; | 
					
						
							|  |  |  | 		hci_param->conn_max_interval = max; | 
					
						
							|  |  |  | 		hci_param->conn_latency = latency; | 
					
						
							|  |  |  | 		hci_param->supervision_timeout = timeout; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return cmd_complete(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM, 0, NULL, 0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-04 18:11:55 +02:00
										 |  |  | static int set_external_config(struct sock *sk, struct hci_dev *hdev, | 
					
						
							|  |  |  | 			       void *data, u16 len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_cp_set_external_config *cp = data; | 
					
						
							|  |  |  | 	bool changed; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (hdev_is_powered(hdev)) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG, | 
					
						
							|  |  |  | 				  MGMT_STATUS_REJECTED); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (cp->config != 0x00 && cp->config != 0x01) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG, | 
					
						
							|  |  |  | 				    MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks)) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG, | 
					
						
							|  |  |  | 				  MGMT_STATUS_NOT_SUPPORTED); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (cp->config) | 
					
						
							|  |  |  | 		changed = !test_and_set_bit(HCI_EXT_CONFIGURED, | 
					
						
							|  |  |  | 					    &hdev->dev_flags); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		changed = test_and_clear_bit(HCI_EXT_CONFIGURED, | 
					
						
							|  |  |  | 					     &hdev->dev_flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = send_options_rsp(sk, MGMT_OP_SET_EXTERNAL_CONFIG, hdev); | 
					
						
							|  |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!changed) | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-04 19:06:23 +02:00
										 |  |  | 	err = new_options(hdev, sk); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-04 18:11:55 +02:00
										 |  |  | 	if (test_bit(HCI_UNCONFIGURED, &hdev->dev_flags) == is_configured(hdev)) { | 
					
						
							|  |  |  | 		mgmt_index_removed(hdev); | 
					
						
							| 
									
										
										
										
											2014-07-06 12:11:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (test_and_change_bit(HCI_UNCONFIGURED, &hdev->dev_flags)) { | 
					
						
							|  |  |  | 			set_bit(HCI_CONFIG, &hdev->dev_flags); | 
					
						
							|  |  |  | 			set_bit(HCI_AUTO_OFF, &hdev->dev_flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			queue_work(hdev->req_workqueue, &hdev->power_on); | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2014-07-06 12:11:16 +02:00
										 |  |  | 			set_bit(HCI_RAW, &hdev->flags); | 
					
						
							| 
									
										
										
										
											2014-07-06 12:11:14 +02:00
										 |  |  | 			mgmt_index_added(hdev); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-07-04 18:11:55 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-06 12:11:15 +02:00
										 |  |  | static int set_public_address(struct sock *sk, struct hci_dev *hdev, | 
					
						
							|  |  |  | 			      void *data, u16 len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_cp_set_public_address *cp = data; | 
					
						
							|  |  |  | 	bool changed; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (hdev_is_powered(hdev)) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_REJECTED); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!bacmp(&cp->bdaddr, BDADDR_ANY)) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_INVALID_PARAMS); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!hdev->set_bdaddr) | 
					
						
							|  |  |  | 		return cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS, | 
					
						
							|  |  |  | 				  MGMT_STATUS_NOT_SUPPORTED); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	changed = !!bacmp(&hdev->public_addr, &cp->bdaddr); | 
					
						
							|  |  |  | 	bacpy(&hdev->public_addr, &cp->bdaddr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = send_options_rsp(sk, MGMT_OP_SET_PUBLIC_ADDRESS, hdev); | 
					
						
							|  |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!changed) | 
					
						
							|  |  |  | 		goto unlock; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (test_bit(HCI_UNCONFIGURED, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		err = new_options(hdev, sk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (is_configured(hdev)) { | 
					
						
							|  |  |  | 		mgmt_index_removed(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		clear_bit(HCI_UNCONFIGURED, &hdev->dev_flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		set_bit(HCI_CONFIG, &hdev->dev_flags); | 
					
						
							|  |  |  | 		set_bit(HCI_AUTO_OFF, &hdev->dev_flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		queue_work(hdev->req_workqueue, &hdev->power_on); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlock: | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-14 18:54:15 +02:00
										 |  |  | static const struct mgmt_handler { | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 	int (*func) (struct sock *sk, struct hci_dev *hdev, void *data, | 
					
						
							|  |  |  | 		     u16 data_len); | 
					
						
							| 
									
										
										
										
											2012-03-01 22:24:41 +02:00
										 |  |  | 	bool var_len; | 
					
						
							|  |  |  | 	size_t data_len; | 
					
						
							| 
									
										
										
										
											2012-02-28 17:18:30 +02:00
										 |  |  | } mgmt_handlers[] = { | 
					
						
							|  |  |  | 	{ NULL }, /* 0x0000 (no command) */ | 
					
						
							| 
									
										
										
										
											2012-03-01 22:24:41 +02:00
										 |  |  | 	{ read_version,           false, MGMT_READ_VERSION_SIZE }, | 
					
						
							|  |  |  | 	{ read_commands,          false, MGMT_READ_COMMANDS_SIZE }, | 
					
						
							|  |  |  | 	{ read_index_list,        false, MGMT_READ_INDEX_LIST_SIZE }, | 
					
						
							|  |  |  | 	{ read_controller_info,   false, MGMT_READ_INFO_SIZE }, | 
					
						
							|  |  |  | 	{ set_powered,            false, MGMT_SETTING_SIZE }, | 
					
						
							|  |  |  | 	{ set_discoverable,       false, MGMT_SET_DISCOVERABLE_SIZE }, | 
					
						
							|  |  |  | 	{ set_connectable,        false, MGMT_SETTING_SIZE }, | 
					
						
							|  |  |  | 	{ set_fast_connectable,   false, MGMT_SETTING_SIZE }, | 
					
						
							| 
									
										
										
										
											2014-07-30 09:22:23 +03:00
										 |  |  | 	{ set_bondable,           false, MGMT_SETTING_SIZE }, | 
					
						
							| 
									
										
										
										
											2012-03-01 22:24:41 +02:00
										 |  |  | 	{ set_link_security,      false, MGMT_SETTING_SIZE }, | 
					
						
							|  |  |  | 	{ set_ssp,                false, MGMT_SETTING_SIZE }, | 
					
						
							|  |  |  | 	{ set_hs,                 false, MGMT_SETTING_SIZE }, | 
					
						
							|  |  |  | 	{ set_le,                 false, MGMT_SETTING_SIZE }, | 
					
						
							|  |  |  | 	{ set_dev_class,          false, MGMT_SET_DEV_CLASS_SIZE }, | 
					
						
							|  |  |  | 	{ set_local_name,         false, MGMT_SET_LOCAL_NAME_SIZE }, | 
					
						
							|  |  |  | 	{ add_uuid,               false, MGMT_ADD_UUID_SIZE }, | 
					
						
							|  |  |  | 	{ remove_uuid,            false, MGMT_REMOVE_UUID_SIZE }, | 
					
						
							|  |  |  | 	{ load_link_keys,         true,  MGMT_LOAD_LINK_KEYS_SIZE }, | 
					
						
							|  |  |  | 	{ load_long_term_keys,    true,  MGMT_LOAD_LONG_TERM_KEYS_SIZE }, | 
					
						
							|  |  |  | 	{ disconnect,             false, MGMT_DISCONNECT_SIZE }, | 
					
						
							|  |  |  | 	{ get_connections,        false, MGMT_GET_CONNECTIONS_SIZE }, | 
					
						
							|  |  |  | 	{ pin_code_reply,         false, MGMT_PIN_CODE_REPLY_SIZE }, | 
					
						
							|  |  |  | 	{ pin_code_neg_reply,     false, MGMT_PIN_CODE_NEG_REPLY_SIZE }, | 
					
						
							|  |  |  | 	{ set_io_capability,      false, MGMT_SET_IO_CAPABILITY_SIZE }, | 
					
						
							|  |  |  | 	{ pair_device,            false, MGMT_PAIR_DEVICE_SIZE }, | 
					
						
							|  |  |  | 	{ cancel_pair_device,     false, MGMT_CANCEL_PAIR_DEVICE_SIZE }, | 
					
						
							|  |  |  | 	{ unpair_device,          false, MGMT_UNPAIR_DEVICE_SIZE }, | 
					
						
							|  |  |  | 	{ user_confirm_reply,     false, MGMT_USER_CONFIRM_REPLY_SIZE }, | 
					
						
							|  |  |  | 	{ user_confirm_neg_reply, false, MGMT_USER_CONFIRM_NEG_REPLY_SIZE }, | 
					
						
							|  |  |  | 	{ user_passkey_reply,     false, MGMT_USER_PASSKEY_REPLY_SIZE }, | 
					
						
							|  |  |  | 	{ user_passkey_neg_reply, false, MGMT_USER_PASSKEY_NEG_REPLY_SIZE }, | 
					
						
							|  |  |  | 	{ read_local_oob_data,    false, MGMT_READ_LOCAL_OOB_DATA_SIZE }, | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:30 -08:00
										 |  |  | 	{ add_remote_oob_data,    true,  MGMT_ADD_REMOTE_OOB_DATA_SIZE }, | 
					
						
							| 
									
										
										
										
											2012-03-01 22:24:41 +02:00
										 |  |  | 	{ remove_remote_oob_data, false, MGMT_REMOVE_REMOTE_OOB_DATA_SIZE }, | 
					
						
							|  |  |  | 	{ start_discovery,        false, MGMT_START_DISCOVERY_SIZE }, | 
					
						
							|  |  |  | 	{ stop_discovery,         false, MGMT_STOP_DISCOVERY_SIZE }, | 
					
						
							|  |  |  | 	{ confirm_name,           false, MGMT_CONFIRM_NAME_SIZE }, | 
					
						
							|  |  |  | 	{ block_device,           false, MGMT_BLOCK_DEVICE_SIZE }, | 
					
						
							|  |  |  | 	{ unblock_device,         false, MGMT_UNBLOCK_DEVICE_SIZE }, | 
					
						
							| 
									
										
										
										
											2012-03-11 20:00:29 -07:00
										 |  |  | 	{ set_device_id,          false, MGMT_SET_DEVICE_ID_SIZE }, | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:10 +03:00
										 |  |  | 	{ set_advertising,        false, MGMT_SETTING_SIZE }, | 
					
						
							| 
									
										
										
										
											2013-10-02 13:43:14 +03:00
										 |  |  | 	{ set_bredr,              false, MGMT_SETTING_SIZE }, | 
					
						
							| 
									
										
										
										
											2013-10-02 04:41:30 -07:00
										 |  |  | 	{ set_static_address,     false, MGMT_SET_STATIC_ADDRESS_SIZE }, | 
					
						
							| 
									
										
										
										
											2013-10-11 08:23:20 -07:00
										 |  |  | 	{ set_scan_params,        false, MGMT_SET_SCAN_PARAMS_SIZE }, | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:23 -08:00
										 |  |  | 	{ set_secure_conn,        false, MGMT_SETTING_SIZE }, | 
					
						
							| 
									
										
										
										
											2014-01-31 11:55:22 -08:00
										 |  |  | 	{ set_debug_keys,         false, MGMT_SETTING_SIZE }, | 
					
						
							| 
									
										
										
										
											2014-02-23 19:42:27 +02:00
										 |  |  | 	{ set_privacy,            false, MGMT_SET_PRIVACY_SIZE }, | 
					
						
							| 
									
										
										
										
											2014-02-18 10:19:35 +02:00
										 |  |  | 	{ load_irks,              true,  MGMT_LOAD_IRKS_SIZE }, | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:03 +02:00
										 |  |  | 	{ get_conn_info,          false, MGMT_GET_CONN_INFO_SIZE }, | 
					
						
							| 
									
										
										
										
											2014-06-28 17:54:07 +03:00
										 |  |  | 	{ get_clock_info,         false, MGMT_GET_CLOCK_INFO_SIZE }, | 
					
						
							| 
									
										
										
										
											2014-06-29 19:44:03 +02:00
										 |  |  | 	{ add_device,             false, MGMT_ADD_DEVICE_SIZE }, | 
					
						
							|  |  |  | 	{ remove_device,          false, MGMT_REMOVE_DEVICE_SIZE }, | 
					
						
							| 
									
										
										
										
											2014-07-02 22:10:52 +02:00
										 |  |  | 	{ load_conn_param,        true,  MGMT_LOAD_CONN_PARAM_SIZE }, | 
					
						
							|  |  |  | 	{ read_unconf_index_list, false, MGMT_READ_UNCONF_INDEX_LIST_SIZE }, | 
					
						
							| 
									
										
										
										
											2014-07-04 00:46:56 +02:00
										 |  |  | 	{ read_config_info,       false, MGMT_READ_CONFIG_INFO_SIZE }, | 
					
						
							| 
									
										
										
										
											2014-07-04 18:11:55 +02:00
										 |  |  | 	{ set_external_config,    false, MGMT_SET_EXTERNAL_CONFIG_SIZE }, | 
					
						
							| 
									
										
										
										
											2014-07-06 12:11:15 +02:00
										 |  |  | 	{ set_public_address,     false, MGMT_SET_PUBLIC_ADDRESS_SIZE }, | 
					
						
							| 
									
										
										
										
											2012-02-28 17:18:30 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:06 +02:00
										 |  |  | int mgmt_control(struct sock *sk, struct msghdr *msg, size_t msglen) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	void *buf; | 
					
						
							|  |  |  | 	u8 *cp; | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:06 +02:00
										 |  |  | 	struct mgmt_hdr *hdr; | 
					
						
							| 
									
										
										
										
											2011-02-25 19:05:48 +01:00
										 |  |  | 	u16 opcode, index, len; | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	struct hci_dev *hdev = NULL; | 
					
						
							| 
									
										
										
										
											2012-03-14 18:54:15 +02:00
										 |  |  | 	const struct mgmt_handler *handler; | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:06 +02:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("got %zu bytes", msglen); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (msglen < sizeof(*hdr)) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-04 18:56:53 -03:00
										 |  |  | 	buf = kmalloc(msglen, GFP_KERNEL); | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:06 +02:00
										 |  |  | 	if (!buf) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (memcpy_fromiovec(buf, msg->msg_iov, msglen)) { | 
					
						
							|  |  |  | 		err = -EFAULT; | 
					
						
							|  |  |  | 		goto done; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-02 21:07:59 -03:00
										 |  |  | 	hdr = buf; | 
					
						
							| 
									
										
										
										
											2012-03-12 20:31:08 -07:00
										 |  |  | 	opcode = __le16_to_cpu(hdr->opcode); | 
					
						
							|  |  |  | 	index = __le16_to_cpu(hdr->index); | 
					
						
							|  |  |  | 	len = __le16_to_cpu(hdr->len); | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:06 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (len != msglen - sizeof(*hdr)) { | 
					
						
							|  |  |  | 		err = -EINVAL; | 
					
						
							|  |  |  | 		goto done; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 17:18:30 +02:00
										 |  |  | 	if (index != MGMT_INDEX_NONE) { | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 		hdev = hci_dev_get(index); | 
					
						
							|  |  |  | 		if (!hdev) { | 
					
						
							|  |  |  | 			err = cmd_status(sk, index, opcode, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 					 MGMT_STATUS_INVALID_INDEX); | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 			goto done; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-08-26 21:40:51 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-10 18:06:04 +02:00
										 |  |  | 		if (test_bit(HCI_SETUP, &hdev->dev_flags) || | 
					
						
							| 
									
										
										
										
											2014-07-06 12:11:14 +02:00
										 |  |  | 		    test_bit(HCI_CONFIG, &hdev->dev_flags) || | 
					
						
							| 
									
										
										
										
											2014-07-02 19:10:33 +02:00
										 |  |  | 		    test_bit(HCI_USER_CHANNEL, &hdev->dev_flags)) { | 
					
						
							| 
									
										
										
										
											2013-08-26 21:40:51 -07:00
										 |  |  | 			err = cmd_status(sk, index, opcode, | 
					
						
							|  |  |  | 					 MGMT_STATUS_INVALID_INDEX); | 
					
						
							|  |  |  | 			goto done; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-07-04 16:54:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (test_bit(HCI_UNCONFIGURED, &hdev->dev_flags) && | 
					
						
							| 
									
										
										
										
											2014-07-04 18:11:55 +02:00
										 |  |  | 		    opcode != MGMT_OP_READ_CONFIG_INFO && | 
					
						
							| 
									
										
										
										
											2014-07-06 12:11:15 +02:00
										 |  |  | 		    opcode != MGMT_OP_SET_EXTERNAL_CONFIG && | 
					
						
							|  |  |  | 		    opcode != MGMT_OP_SET_PUBLIC_ADDRESS) { | 
					
						
							| 
									
										
										
										
											2014-07-04 16:54:40 +02:00
										 |  |  | 			err = cmd_status(sk, index, opcode, | 
					
						
							|  |  |  | 					 MGMT_STATUS_INVALID_INDEX); | 
					
						
							|  |  |  | 			goto done; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 17:18:30 +02:00
										 |  |  | 	if (opcode >= ARRAY_SIZE(mgmt_handlers) || | 
					
						
							| 
									
										
										
										
											2012-05-17 00:36:20 -03:00
										 |  |  | 	    mgmt_handlers[opcode].func == NULL) { | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:06 +02:00
										 |  |  | 		BT_DBG("Unknown op %u", opcode); | 
					
						
							| 
									
										
										
										
											2011-11-11 18:10:00 +02:00
										 |  |  | 		err = cmd_status(sk, index, opcode, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_UNKNOWN_COMMAND); | 
					
						
							| 
									
										
										
										
											2012-02-28 17:18:30 +02:00
										 |  |  | 		goto done; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-02 22:10:52 +02:00
										 |  |  | 	if (hdev && (opcode <= MGMT_OP_READ_INDEX_LIST || | 
					
						
							|  |  |  | 		     opcode == MGMT_OP_READ_UNCONF_INDEX_LIST)) { | 
					
						
							|  |  |  | 		err = cmd_status(sk, index, opcode, | 
					
						
							|  |  |  | 				 MGMT_STATUS_INVALID_INDEX); | 
					
						
							|  |  |  | 		goto done; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!hdev && (opcode > MGMT_OP_READ_INDEX_LIST && | 
					
						
							|  |  |  | 		      opcode != MGMT_OP_READ_UNCONF_INDEX_LIST)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 17:18:30 +02:00
										 |  |  | 		err = cmd_status(sk, index, opcode, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_INVALID_INDEX); | 
					
						
							| 
									
										
										
										
											2012-02-28 17:18:30 +02:00
										 |  |  | 		goto done; | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:06 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-01 22:24:41 +02:00
										 |  |  | 	handler = &mgmt_handlers[opcode]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((handler->var_len && len < handler->data_len) || | 
					
						
							| 
									
										
										
										
											2012-05-17 00:36:20 -03:00
										 |  |  | 	    (!handler->var_len && len != handler->data_len)) { | 
					
						
							| 
									
										
										
										
											2012-03-01 22:24:41 +02:00
										 |  |  | 		err = cmd_status(sk, index, opcode, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				 MGMT_STATUS_INVALID_PARAMS); | 
					
						
							| 
									
										
										
										
											2012-03-01 22:24:41 +02:00
										 |  |  | 		goto done; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 17:18:30 +02:00
										 |  |  | 	if (hdev) | 
					
						
							|  |  |  | 		mgmt_init_hdev(sk, hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cp = buf + sizeof(*hdr); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-01 22:24:41 +02:00
										 |  |  | 	err = handler->func(sk, hdev, cp, len); | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:03 +02:00
										 |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		goto done; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:06 +02:00
										 |  |  | 	err = msglen; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | done: | 
					
						
							| 
									
										
										
										
											2012-02-28 06:13:32 +02:00
										 |  |  | 	if (hdev) | 
					
						
							|  |  |  | 		hci_dev_put(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:06 +02:00
										 |  |  | 	kfree(buf); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:45 -07:00
										 |  |  | void mgmt_index_added(struct hci_dev *hdev) | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:07 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-10-06 08:25:01 -07:00
										 |  |  | 	if (hdev->dev_type != HCI_BREDR) | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:45 -07:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2012-07-19 17:03:40 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-02 21:30:54 +02:00
										 |  |  | 	if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (test_bit(HCI_UNCONFIGURED, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		mgmt_event(MGMT_EV_UNCONF_INDEX_ADDED, hdev, NULL, 0, NULL); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		mgmt_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0, NULL); | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:07 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:45 -07:00
										 |  |  | void mgmt_index_removed(struct hci_dev *hdev) | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:07 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-03-02 03:13:19 +02:00
										 |  |  | 	u8 status = MGMT_STATUS_INVALID_INDEX; | 
					
						
							| 
									
										
										
										
											2011-11-03 14:40:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 08:25:01 -07:00
										 |  |  | 	if (hdev->dev_type != HCI_BREDR) | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:45 -07:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2012-07-19 17:03:40 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-02 21:30:54 +02:00
										 |  |  | 	if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:14 +02:00
										 |  |  | 	mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status); | 
					
						
							| 
									
										
										
										
											2011-11-03 14:40:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-02 21:30:55 +02:00
										 |  |  | 	if (test_bit(HCI_UNCONFIGURED, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		mgmt_event(MGMT_EV_UNCONF_INDEX_REMOVED, hdev, NULL, 0, NULL); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		mgmt_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0, NULL); | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 20:21:51 -03:00
										 |  |  | /* This function requires the caller holds hdev->lock */ | 
					
						
							| 
									
										
										
										
											2014-07-04 12:37:23 +03:00
										 |  |  | static void restart_le_actions(struct hci_dev *hdev) | 
					
						
							| 
									
										
										
										
											2014-02-26 20:21:51 -03:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct hci_conn_params *p; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_for_each_entry(p, &hdev->le_conn_params, list) { | 
					
						
							| 
									
										
										
										
											2014-07-04 12:37:23 +03:00
										 |  |  | 		/* Needed for AUTO_OFF case where might not "really"
 | 
					
						
							|  |  |  | 		 * have been powered off. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		list_del_init(&p->action); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		switch (p->auto_connect) { | 
					
						
							| 
									
										
										
										
											2014-07-23 21:55:23 +02:00
										 |  |  | 		case HCI_AUTO_CONN_DIRECT: | 
					
						
							| 
									
										
										
										
											2014-07-04 12:37:23 +03:00
										 |  |  | 		case HCI_AUTO_CONN_ALWAYS: | 
					
						
							|  |  |  | 			list_add(&p->action, &hdev->pend_le_conns); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case HCI_AUTO_CONN_REPORT: | 
					
						
							|  |  |  | 			list_add(&p->action, &hdev->pend_le_reports); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2014-07-01 19:28:24 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-26 20:21:51 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-07-01 19:28:24 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	hci_update_background_scan(hdev); | 
					
						
							| 
									
										
										
										
											2014-02-26 20:21:51 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:53 -05:00
										 |  |  | static void powered_complete(struct hci_dev *hdev, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct cmd_lookup match = { NULL, hdev }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("status 0x%02x", status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-04 12:37:23 +03:00
										 |  |  | 	restart_le_actions(hdev); | 
					
						
							| 
									
										
										
										
											2014-02-26 20:21:51 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:53 -05:00
										 |  |  | 	mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	new_settings(hdev, match.sk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (match.sk) | 
					
						
							|  |  |  | 		sock_put(match.sk); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:51 -05:00
										 |  |  | static int powered_update_hci(struct hci_dev *hdev) | 
					
						
							| 
									
										
										
										
											2010-12-16 10:00:37 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	struct hci_request req; | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:51 -05:00
										 |  |  | 	u8 link_sec; | 
					
						
							| 
									
										
										
										
											2010-12-16 10:00:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	hci_req_init(&req, hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:51 -05:00
										 |  |  | 	if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags) && | 
					
						
							|  |  |  | 	    !lmp_host_ssp_capable(hdev)) { | 
					
						
							|  |  |  | 		u8 ssp = 1; | 
					
						
							| 
									
										
										
										
											2012-02-21 16:01:30 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 		hci_req_add(&req, HCI_OP_WRITE_SSP_MODE, 1, &ssp); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:51 -05:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-12-16 10:00:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-19 18:35:21 +03:00
										 |  |  | 	if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags) && | 
					
						
							|  |  |  | 	    lmp_bredr_capable(hdev)) { | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:51 -05:00
										 |  |  | 		struct hci_cp_write_le_host_supported cp; | 
					
						
							| 
									
										
										
										
											2013-01-27 08:32:00 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-24 20:04:16 +02:00
										 |  |  | 		cp.le = 0x01; | 
					
						
							|  |  |  | 		cp.simul = 0x00; | 
					
						
							| 
									
										
										
										
											2012-08-29 10:02:08 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:51 -05:00
										 |  |  | 		/* Check first if we already have the right
 | 
					
						
							|  |  |  | 		 * host state (host features set) | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (cp.le != lmp_host_le_capable(hdev) || | 
					
						
							|  |  |  | 		    cp.simul != lmp_host_le_br_capable(hdev)) | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 			hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED, | 
					
						
							|  |  |  | 				    sizeof(cp), &cp); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:51 -05:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-08-29 10:02:08 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-02 04:41:30 -07:00
										 |  |  | 	if (lmp_le_capable(hdev)) { | 
					
						
							| 
									
										
										
										
											2013-10-15 06:33:52 -07:00
										 |  |  | 		/* Make sure the controller has a good default for
 | 
					
						
							|  |  |  | 		 * advertising data. This also applies to the case | 
					
						
							|  |  |  | 		 * where BR/EDR was toggled during the AUTO_OFF phase. | 
					
						
							|  |  |  | 		 */ | 
					
						
							| 
									
										
										
										
											2013-10-16 00:16:48 -07:00
										 |  |  | 		if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) { | 
					
						
							| 
									
										
										
										
											2013-10-16 00:16:50 -07:00
										 |  |  | 			update_adv_data(&req); | 
					
						
							| 
									
										
										
										
											2013-10-16 00:16:48 -07:00
										 |  |  | 			update_scan_rsp_data(&req); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-10-15 06:33:52 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 02:55:21 -07:00
										 |  |  | 		if (test_bit(HCI_ADVERTISING, &hdev->dev_flags)) | 
					
						
							|  |  |  | 			enable_advertising(&req); | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:09 +03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:51 -05:00
										 |  |  | 	link_sec = test_bit(HCI_LINK_SECURITY, &hdev->dev_flags); | 
					
						
							|  |  |  | 	if (link_sec != test_bit(HCI_AUTH, &hdev->flags)) | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 		hci_req_add(&req, HCI_OP_WRITE_AUTH_ENABLE, | 
					
						
							|  |  |  | 			    sizeof(link_sec), &link_sec); | 
					
						
							| 
									
										
										
										
											2012-08-29 10:02:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:51 -05:00
										 |  |  | 	if (lmp_bredr_capable(hdev)) { | 
					
						
							| 
									
										
										
										
											2014-08-01 11:13:31 +03:00
										 |  |  | 		write_fast_connectable(&req, false); | 
					
						
							|  |  |  | 		hci_update_page_scan(hdev, &req); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 		update_class(&req); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:00 -05:00
										 |  |  | 		update_name(&req); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 		update_eir(&req); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:51 -05:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-08-29 10:02:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:53 -05:00
										 |  |  | 	return hci_req_run(&req, powered_complete); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:51 -05:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2012-08-29 10:02:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:51 -05:00
										 |  |  | int mgmt_powered(struct hci_dev *hdev, u8 powered) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct cmd_lookup match = { NULL, hdev }; | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:53 -05:00
										 |  |  | 	u8 status_not_powered = MGMT_STATUS_NOT_POWERED; | 
					
						
							|  |  |  | 	u8 zero_cod[] = { 0, 0, 0 }; | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:51 -05:00
										 |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2013-01-27 08:32:00 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:51 -05:00
										 |  |  | 	if (!test_bit(HCI_MGMT, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (powered) { | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:53 -05:00
										 |  |  | 		if (powered_update_hci(hdev) == 0) | 
					
						
							|  |  |  | 			return 0; | 
					
						
							| 
									
										
										
										
											2013-01-16 16:15:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:53 -05:00
										 |  |  | 		mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, | 
					
						
							|  |  |  | 				     &match); | 
					
						
							|  |  |  | 		goto new_settings; | 
					
						
							| 
									
										
										
										
											2011-11-03 14:40:33 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:53 -05:00
										 |  |  | 	mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match); | 
					
						
							|  |  |  | 	mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status_not_powered); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (memcmp(hdev->dev_class, zero_cod, sizeof(zero_cod)) != 0) | 
					
						
							|  |  |  | 		mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev, | 
					
						
							|  |  |  | 			   zero_cod, sizeof(zero_cod), NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | new_settings: | 
					
						
							| 
									
										
										
										
											2012-02-21 16:55:31 +02:00
										 |  |  | 	err = new_settings(hdev, match.sk); | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (match.sk) | 
					
						
							|  |  |  | 		sock_put(match.sk); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-17 01:20:00 +02:00
										 |  |  | 	return err; | 
					
						
							| 
									
										
										
										
											2010-12-16 10:00:37 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:46 -07:00
										 |  |  | void mgmt_set_powered_failed(struct hci_dev *hdev, int err) | 
					
						
							| 
									
										
										
										
											2013-05-29 09:51:29 +03:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 	u8 status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev); | 
					
						
							|  |  |  | 	if (!cmd) | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:46 -07:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2013-05-29 09:51:29 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (err == -ERFKILL) | 
					
						
							|  |  |  | 		status = MGMT_STATUS_RFKILLED; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		status = MGMT_STATUS_FAILED; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:46 -07:00
										 |  |  | 	cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status); | 
					
						
							| 
									
										
										
										
											2013-05-29 09:51:29 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 10:57:40 -07:00
										 |  |  | void mgmt_discoverable_timeout(struct hci_dev *hdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct hci_request req; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_dev_lock(hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* When discoverable timeout triggers, then just make sure
 | 
					
						
							|  |  |  | 	 * the limited discoverable flag is cleared. Even in the case | 
					
						
							|  |  |  | 	 * of a timeout triggered from general discoverable, it is | 
					
						
							|  |  |  | 	 * safe to unconditionally clear the flag. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2013-10-20 19:00:07 +03:00
										 |  |  | 	clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2013-10-15 10:57:40 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	hci_req_init(&req, hdev); | 
					
						
							| 
									
										
										
										
											2013-10-19 23:38:21 +03:00
										 |  |  | 	if (test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) { | 
					
						
							|  |  |  | 		u8 scan = SCAN_PAGE; | 
					
						
							|  |  |  | 		hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, | 
					
						
							|  |  |  | 			    sizeof(scan), &scan); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-10-15 10:57:40 -07:00
										 |  |  | 	update_class(&req); | 
					
						
							| 
									
										
										
										
											2013-10-20 19:00:07 +03:00
										 |  |  | 	update_adv_data(&req); | 
					
						
							| 
									
										
										
										
											2013-10-15 10:57:40 -07:00
										 |  |  | 	hci_req_run(&req, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hdev->discov_timeout = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-20 19:00:07 +03:00
										 |  |  | 	new_settings(hdev, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 10:57:40 -07:00
										 |  |  | 	hci_dev_unlock(hdev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 10:15:57 -07:00
										 |  |  | void mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key, | 
					
						
							|  |  |  | 		       bool persistent) | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-11-07 23:13:38 +02:00
										 |  |  | 	struct mgmt_ev_new_link_key ev; | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-25 20:02:29 -03:00
										 |  |  | 	memset(&ev, 0, sizeof(ev)); | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-25 20:02:29 -03:00
										 |  |  | 	ev.store_hint = persistent; | 
					
						
							| 
									
										
										
										
											2012-02-17 14:06:34 +02:00
										 |  |  | 	bacpy(&ev.key.addr.bdaddr, &key->bdaddr); | 
					
						
							| 
									
										
										
										
											2012-04-24 21:02:49 -03:00
										 |  |  | 	ev.key.addr.type = BDADDR_BREDR; | 
					
						
							| 
									
										
										
										
											2011-08-25 20:02:29 -03:00
										 |  |  | 	ev.key.type = key->type; | 
					
						
							| 
									
										
										
										
											2012-05-23 11:31:20 +03:00
										 |  |  | 	memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE); | 
					
						
							| 
									
										
										
										
											2011-08-25 20:02:29 -03:00
										 |  |  | 	ev.key.pin_len = key->pin_len; | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 10:15:57 -07:00
										 |  |  | 	mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL); | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2011-01-20 12:34:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-23 13:19:53 +03:00
										 |  |  | static u8 mgmt_ltk_type(struct smp_ltk *ltk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (ltk->authenticated) | 
					
						
							|  |  |  | 		return MGMT_LTK_AUTHENTICATED; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return MGMT_LTK_UNAUTHENTICATED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-09 23:38:42 -07:00
										 |  |  | void mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, bool persistent) | 
					
						
							| 
									
										
										
										
											2012-02-02 21:08:02 -03:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_ev_new_long_term_key ev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(&ev, 0, sizeof(ev)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-19 17:11:58 -08:00
										 |  |  | 	/* Devices using resolvable or non-resolvable random addresses
 | 
					
						
							|  |  |  | 	 * without providing an indentity resolving key don't require | 
					
						
							|  |  |  | 	 * to store long term keys. Their addresses will change the | 
					
						
							|  |  |  | 	 * next time around. | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * Only when a remote device provides an identity address | 
					
						
							|  |  |  | 	 * make sure the long term key is stored. If the remote | 
					
						
							|  |  |  | 	 * identity is known, the long term keys are internally | 
					
						
							|  |  |  | 	 * mapped to the identity address. So allow static random | 
					
						
							|  |  |  | 	 * and public addresses here. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2014-02-19 14:57:45 +02:00
										 |  |  | 	if (key->bdaddr_type == ADDR_LE_DEV_RANDOM && | 
					
						
							|  |  |  | 	    (key->bdaddr.b[5] & 0xc0) != 0xc0) | 
					
						
							|  |  |  | 		ev.store_hint = 0x00; | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											2014-03-09 23:38:42 -07:00
										 |  |  | 		ev.store_hint = persistent; | 
					
						
							| 
									
										
										
										
											2014-02-19 14:57:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-02 21:08:02 -03:00
										 |  |  | 	bacpy(&ev.key.addr.bdaddr, &key->bdaddr); | 
					
						
							| 
									
										
										
										
											2012-04-24 21:02:50 -03:00
										 |  |  | 	ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type); | 
					
						
							| 
									
										
										
										
											2014-05-23 13:19:53 +03:00
										 |  |  | 	ev.key.type = mgmt_ltk_type(key); | 
					
						
							| 
									
										
										
										
											2012-02-02 21:08:02 -03:00
										 |  |  | 	ev.key.enc_size = key->enc_size; | 
					
						
							|  |  |  | 	ev.key.ediv = key->ediv; | 
					
						
							| 
									
										
										
										
											2014-02-27 16:00:28 -08:00
										 |  |  | 	ev.key.rand = key->rand; | 
					
						
							| 
									
										
										
										
											2012-02-02 21:08:02 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-16 19:25:16 +03:00
										 |  |  | 	if (key->type == SMP_LTK) | 
					
						
							| 
									
										
										
										
											2012-02-02 21:08:02 -03:00
										 |  |  | 		ev.key.master = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memcpy(ev.key.val, key->val, sizeof(key->val)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:29 -07:00
										 |  |  | 	mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev), NULL); | 
					
						
							| 
									
										
										
										
											2012-02-02 21:08:02 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-19 15:18:31 +02:00
										 |  |  | void mgmt_new_irk(struct hci_dev *hdev, struct smp_irk *irk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_ev_new_irk ev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(&ev, 0, sizeof(ev)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-19 11:51:54 -08:00
										 |  |  | 	/* For identity resolving keys from devices that are already
 | 
					
						
							|  |  |  | 	 * using a public address or static random address, do not | 
					
						
							|  |  |  | 	 * ask for storing this key. The identity resolving key really | 
					
						
							|  |  |  | 	 * is only mandatory for devices using resovlable random | 
					
						
							|  |  |  | 	 * addresses. | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * Storing all identity resolving keys has the downside that | 
					
						
							|  |  |  | 	 * they will be also loaded on next boot of they system. More | 
					
						
							|  |  |  | 	 * identity resolving keys, means more time during scanning is | 
					
						
							|  |  |  | 	 * needed to actually resolve these addresses. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (bacmp(&irk->rpa, BDADDR_ANY)) | 
					
						
							|  |  |  | 		ev.store_hint = 0x01; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		ev.store_hint = 0x00; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-19 15:18:31 +02:00
										 |  |  | 	bacpy(&ev.rpa, &irk->rpa); | 
					
						
							|  |  |  | 	bacpy(&ev.irk.addr.bdaddr, &irk->bdaddr); | 
					
						
							|  |  |  | 	ev.irk.addr.type = link_to_bdaddr(LE_LINK, irk->addr_type); | 
					
						
							|  |  |  | 	memcpy(ev.irk.val, irk->val, sizeof(irk->val)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_event(MGMT_EV_NEW_IRK, hdev, &ev, sizeof(ev), NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-09 23:38:42 -07:00
										 |  |  | void mgmt_new_csrk(struct hci_dev *hdev, struct smp_csrk *csrk, | 
					
						
							|  |  |  | 		   bool persistent) | 
					
						
							| 
									
										
										
										
											2014-03-09 12:19:17 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_ev_new_csrk ev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(&ev, 0, sizeof(ev)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Devices using resolvable or non-resolvable random addresses
 | 
					
						
							|  |  |  | 	 * without providing an indentity resolving key don't require | 
					
						
							|  |  |  | 	 * to store signature resolving keys. Their addresses will change | 
					
						
							|  |  |  | 	 * the next time around. | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * Only when a remote device provides an identity address | 
					
						
							|  |  |  | 	 * make sure the signature resolving key is stored. So allow | 
					
						
							|  |  |  | 	 * static random and public addresses here. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (csrk->bdaddr_type == ADDR_LE_DEV_RANDOM && | 
					
						
							|  |  |  | 	    (csrk->bdaddr.b[5] & 0xc0) != 0xc0) | 
					
						
							|  |  |  | 		ev.store_hint = 0x00; | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											2014-03-09 23:38:42 -07:00
										 |  |  | 		ev.store_hint = persistent; | 
					
						
							| 
									
										
										
										
											2014-03-09 12:19:17 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	bacpy(&ev.key.addr.bdaddr, &csrk->bdaddr); | 
					
						
							|  |  |  | 	ev.key.addr.type = link_to_bdaddr(LE_LINK, csrk->bdaddr_type); | 
					
						
							|  |  |  | 	ev.key.master = csrk->master; | 
					
						
							|  |  |  | 	memcpy(ev.key.val, csrk->val, sizeof(csrk->val)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_event(MGMT_EV_NEW_CSRK, hdev, &ev, sizeof(ev), NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-01 18:10:11 -03:00
										 |  |  | void mgmt_new_conn_param(struct hci_dev *hdev, bdaddr_t *bdaddr, | 
					
						
							| 
									
										
										
										
											2014-07-02 17:37:32 +03:00
										 |  |  | 			 u8 bdaddr_type, u8 store_hint, u16 min_interval, | 
					
						
							|  |  |  | 			 u16 max_interval, u16 latency, u16 timeout) | 
					
						
							| 
									
										
										
										
											2014-07-01 18:10:11 -03:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_ev_new_conn_param ev; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-02 17:37:34 +03:00
										 |  |  | 	if (!hci_is_identity_address(bdaddr, bdaddr_type)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-01 18:10:11 -03:00
										 |  |  | 	memset(&ev, 0, sizeof(ev)); | 
					
						
							|  |  |  | 	bacpy(&ev.addr.bdaddr, bdaddr); | 
					
						
							|  |  |  | 	ev.addr.type = link_to_bdaddr(LE_LINK, bdaddr_type); | 
					
						
							| 
									
										
										
										
											2014-07-02 17:37:32 +03:00
										 |  |  | 	ev.store_hint = store_hint; | 
					
						
							| 
									
										
										
										
											2014-07-01 18:10:11 -03:00
										 |  |  | 	ev.min_interval = cpu_to_le16(min_interval); | 
					
						
							|  |  |  | 	ev.max_interval = cpu_to_le16(max_interval); | 
					
						
							|  |  |  | 	ev.latency = cpu_to_le16(latency); | 
					
						
							|  |  |  | 	ev.timeout = cpu_to_le16(timeout); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_event(MGMT_EV_NEW_CONN_PARAM, hdev, &ev, sizeof(ev), NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 10:26:39 -07:00
										 |  |  | static inline u16 eir_append_data(u8 *eir, u16 eir_len, u8 type, u8 *data, | 
					
						
							|  |  |  | 				  u8 data_len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	eir[eir_len++] = sizeof(type) + data_len; | 
					
						
							|  |  |  | 	eir[eir_len++] = type; | 
					
						
							|  |  |  | 	memcpy(&eir[eir_len], data, data_len); | 
					
						
							|  |  |  | 	eir_len += data_len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return eir_len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:49 -07:00
										 |  |  | void mgmt_device_connected(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type, | 
					
						
							|  |  |  | 			   u8 addr_type, u32 flags, u8 *name, u8 name_len, | 
					
						
							|  |  |  | 			   u8 *dev_class) | 
					
						
							| 
									
										
										
										
											2011-01-20 12:34:39 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-01-17 21:48:47 +02:00
										 |  |  | 	char buf[512]; | 
					
						
							|  |  |  | 	struct mgmt_ev_device_connected *ev = (void *) buf; | 
					
						
							|  |  |  | 	u16 eir_len = 0; | 
					
						
							| 
									
										
										
										
											2011-01-20 12:34:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-17 21:48:47 +02:00
										 |  |  | 	bacpy(&ev->addr.bdaddr, bdaddr); | 
					
						
							| 
									
										
										
										
											2012-04-24 21:02:50 -03:00
										 |  |  | 	ev->addr.type = link_to_bdaddr(link_type, addr_type); | 
					
						
							| 
									
										
										
										
											2011-01-20 12:34:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-23 22:54:38 +02:00
										 |  |  | 	ev->flags = __cpu_to_le32(flags); | 
					
						
							| 
									
										
										
										
											2012-02-23 22:31:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-17 21:48:47 +02:00
										 |  |  | 	if (name_len > 0) | 
					
						
							|  |  |  | 		eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 					  name, name_len); | 
					
						
							| 
									
										
										
										
											2012-01-17 21:48:47 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (dev_class && memcmp(dev_class, "\0\0\0", 3) != 0) | 
					
						
							| 
									
										
										
										
											2012-03-09 14:07:03 -08:00
										 |  |  | 		eir_len = eir_append_data(ev->eir, eir_len, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 					  EIR_CLASS_OF_DEV, dev_class, 3); | 
					
						
							| 
									
										
										
										
											2012-01-17 21:48:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-14 18:08:46 +02:00
										 |  |  | 	ev->eir_len = cpu_to_le16(eir_len); | 
					
						
							| 
									
										
										
										
											2012-01-17 21:48:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:49 -07:00
										 |  |  | 	mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf, | 
					
						
							|  |  |  | 		    sizeof(*ev) + eir_len, NULL); | 
					
						
							| 
									
										
										
										
											2011-01-20 12:34:39 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | static void disconnect_rsp(struct pending_cmd *cmd, void *data) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:19 +01:00
										 |  |  | 	struct mgmt_cp_disconnect *cp = cmd->param; | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 	struct sock **sk = data; | 
					
						
							| 
									
										
										
										
											2011-01-22 06:46:43 +02:00
										 |  |  | 	struct mgmt_rp_disconnect rp; | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 14:27:38 +02:00
										 |  |  | 	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr); | 
					
						
							|  |  |  | 	rp.addr.type = cp->addr.type; | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-18 15:07:59 +02:00
										 |  |  | 	cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT, 0, &rp, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 		     sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	*sk = cmd->sk; | 
					
						
							|  |  |  | 	sock_hold(*sk); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-19 12:06:02 -03:00
										 |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 13:50:12 +02:00
										 |  |  | static void unpair_device_rsp(struct pending_cmd *cmd, void *data) | 
					
						
							| 
									
										
										
										
											2011-11-10 15:54:38 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-09 17:21:16 +02:00
										 |  |  | 	struct hci_dev *hdev = data; | 
					
						
							| 
									
										
										
										
											2012-02-09 13:50:12 +02:00
										 |  |  | 	struct mgmt_cp_unpair_device *cp = cmd->param; | 
					
						
							|  |  |  | 	struct mgmt_rp_unpair_device rp; | 
					
						
							| 
									
										
										
										
											2011-11-10 15:54:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	memset(&rp, 0, sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2012-02-09 13:50:12 +02:00
										 |  |  | 	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr); | 
					
						
							|  |  |  | 	rp.addr.type = cp->addr.type; | 
					
						
							| 
									
										
										
										
											2011-11-10 15:54:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 17:21:16 +02:00
										 |  |  | 	device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, cmd->sk); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-18 15:07:59 +02:00
										 |  |  | 	cmd_complete(cmd->sk, cmd->index, cmd->opcode, 0, &rp, sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2011-11-10 15:54:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-01 11:13:30 +03:00
										 |  |  | bool mgmt_powering_down(struct hci_dev *hdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 	struct mgmt_mode *cp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev); | 
					
						
							|  |  |  | 	if (!cmd) | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cp = cmd->param; | 
					
						
							|  |  |  | 	if (!cp->val) | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:50 -07:00
										 |  |  | void mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr, | 
					
						
							| 
									
										
										
										
											2014-02-24 14:52:18 +02:00
										 |  |  | 			      u8 link_type, u8 addr_type, u8 reason, | 
					
						
							|  |  |  | 			      bool mgmt_connected) | 
					
						
							| 
									
										
										
										
											2011-01-20 12:34:39 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-08-09 09:52:30 +02:00
										 |  |  | 	struct mgmt_ev_device_disconnected ev; | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 	struct sock *sk = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-01 11:13:30 +03:00
										 |  |  | 	/* The connection is still in hci_conn_hash so test for 1
 | 
					
						
							|  |  |  | 	 * instead of 0 to know if this is the last one. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (mgmt_powering_down(hdev) && hci_conn_count(hdev) == 1) { | 
					
						
							|  |  |  | 		cancel_delayed_work(&hdev->power_off); | 
					
						
							|  |  |  | 		queue_work(hdev->req_workqueue, &hdev->power_off.work); | 
					
						
							| 
									
										
										
										
											2014-02-24 14:52:22 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-24 14:52:18 +02:00
										 |  |  | 	if (!mgmt_connected) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-30 19:01:41 -03:00
										 |  |  | 	if (link_type != ACL_LINK && link_type != LE_LINK) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:14 +02:00
										 |  |  | 	mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk); | 
					
						
							| 
									
										
										
										
											2011-01-20 12:34:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-09 09:52:30 +02:00
										 |  |  | 	bacpy(&ev.addr.bdaddr, bdaddr); | 
					
						
							|  |  |  | 	ev.addr.type = link_to_bdaddr(link_type, addr_type); | 
					
						
							|  |  |  | 	ev.reason = reason; | 
					
						
							| 
									
										
										
										
											2011-01-20 12:34:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:50 -07:00
										 |  |  | 	mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev), sk); | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (sk) | 
					
						
							| 
									
										
										
										
											2012-03-16 16:02:56 +01:00
										 |  |  | 		sock_put(sk); | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 13:50:12 +02:00
										 |  |  | 	mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			     hdev); | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:47 -07:00
										 |  |  | void mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, | 
					
						
							|  |  |  | 			    u8 link_type, u8 addr_type, u8 status) | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-10-30 19:01:40 -03:00
										 |  |  | 	u8 bdaddr_type = link_to_bdaddr(link_type, addr_type); | 
					
						
							|  |  |  | 	struct mgmt_cp_disconnect *cp; | 
					
						
							| 
									
										
										
										
											2012-02-09 14:27:38 +02:00
										 |  |  | 	struct mgmt_rp_disconnect rp; | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-18 13:36:54 -04:00
										 |  |  | 	mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp, | 
					
						
							|  |  |  | 			     hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	cmd = mgmt_pending_find(MGMT_OP_DISCONNECT, hdev); | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 	if (!cmd) | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:47 -07:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-30 19:01:40 -03:00
										 |  |  | 	cp = cmd->param; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (bacmp(bdaddr, &cp->addr.bdaddr)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (cp->addr.type != bdaddr_type) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 14:27:38 +02:00
										 |  |  | 	bacpy(&rp.addr.bdaddr, bdaddr); | 
					
						
							| 
									
										
										
										
											2013-10-30 19:01:40 -03:00
										 |  |  | 	rp.addr.type = bdaddr_type; | 
					
						
							| 
									
										
										
										
											2011-11-10 15:54:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:47 -07:00
										 |  |  | 	cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT, | 
					
						
							|  |  |  | 		     mgmt_status(status), &rp, sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-19 12:06:02 -03:00
										 |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							| 
									
										
										
										
											2011-01-20 12:34:39 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2011-01-22 06:09:08 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:48 -07:00
										 |  |  | void mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type, | 
					
						
							|  |  |  | 			 u8 addr_type, u8 status) | 
					
						
							| 
									
										
										
										
											2011-01-22 06:09:08 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_ev_connect_failed ev; | 
					
						
							| 
									
										
										
										
											2014-02-27 14:35:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-01 11:13:30 +03:00
										 |  |  | 	/* The connection is still in hci_conn_hash so test for 1
 | 
					
						
							|  |  |  | 	 * instead of 0 to know if this is the last one. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (mgmt_powering_down(hdev) && hci_conn_count(hdev) == 1) { | 
					
						
							|  |  |  | 		cancel_delayed_work(&hdev->power_off); | 
					
						
							|  |  |  | 		queue_work(hdev->req_workqueue, &hdev->power_off.work); | 
					
						
							| 
									
										
										
										
											2014-02-27 14:35:12 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-01-22 06:09:08 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-07 23:13:39 +02:00
										 |  |  | 	bacpy(&ev.addr.bdaddr, bdaddr); | 
					
						
							| 
									
										
										
										
											2012-04-24 21:02:50 -03:00
										 |  |  | 	ev.addr.type = link_to_bdaddr(link_type, addr_type); | 
					
						
							| 
									
										
										
										
											2011-11-11 18:10:00 +02:00
										 |  |  | 	ev.status = mgmt_status(status); | 
					
						
							| 
									
										
										
										
											2011-01-22 06:09:08 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:48 -07:00
										 |  |  | 	mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL); | 
					
						
							| 
									
										
										
										
											2011-01-22 06:09:08 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:20 -07:00
										 |  |  | void mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure) | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_ev_pin_code_request ev; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-17 14:24:57 +02:00
										 |  |  | 	bacpy(&ev.addr.bdaddr, bdaddr); | 
					
						
							| 
									
										
										
										
											2012-04-24 21:02:49 -03:00
										 |  |  | 	ev.addr.type = BDADDR_BREDR; | 
					
						
							| 
									
										
										
										
											2011-04-28 12:07:59 +02:00
										 |  |  | 	ev.secure = secure; | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:20 -07:00
										 |  |  | 	mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev), NULL); | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:21 -07:00
										 |  |  | void mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr, | 
					
						
							|  |  |  | 				  u8 status) | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:59 -03:00
										 |  |  | 	struct mgmt_rp_pin_code_reply rp; | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_REPLY, hdev); | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 	if (!cmd) | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:21 -07:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-17 14:24:57 +02:00
										 |  |  | 	bacpy(&rp.addr.bdaddr, bdaddr); | 
					
						
							| 
									
										
										
										
											2012-04-24 21:02:49 -03:00
										 |  |  | 	rp.addr.type = BDADDR_BREDR; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:59 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:21 -07:00
										 |  |  | 	cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_REPLY, | 
					
						
							|  |  |  | 		     mgmt_status(status), &rp, sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-19 12:06:02 -03:00
										 |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:22 -07:00
										 |  |  | void mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr, | 
					
						
							|  |  |  | 				      u8 status) | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:59 -03:00
										 |  |  | 	struct mgmt_rp_pin_code_reply rp; | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev); | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 	if (!cmd) | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:22 -07:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-17 14:24:57 +02:00
										 |  |  | 	bacpy(&rp.addr.bdaddr, bdaddr); | 
					
						
							| 
									
										
										
										
											2012-04-24 21:02:49 -03:00
										 |  |  | 	rp.addr.type = BDADDR_BREDR; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:59 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:22 -07:00
										 |  |  | 	cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_NEG_REPLY, | 
					
						
							|  |  |  | 		     mgmt_status(status), &rp, sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-19 12:06:02 -03:00
										 |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:14 +02:00
										 |  |  | int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr, | 
					
						
							| 
									
										
										
										
											2014-03-20 08:18:14 +02:00
										 |  |  | 			      u8 link_type, u8 addr_type, u32 value, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			      u8 confirm_hint) | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_ev_user_confirm_request ev; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:14 +02:00
										 |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | 	bacpy(&ev.addr.bdaddr, bdaddr); | 
					
						
							| 
									
										
										
										
											2012-04-24 21:02:50 -03:00
										 |  |  | 	ev.addr.type = link_to_bdaddr(link_type, addr_type); | 
					
						
							| 
									
										
										
										
											2011-04-28 11:28:56 -07:00
										 |  |  | 	ev.confirm_hint = confirm_hint; | 
					
						
							| 
									
										
										
										
											2014-03-20 08:18:14 +02:00
										 |  |  | 	ev.value = cpu_to_le32(value); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:14 +02:00
										 |  |  | 	return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev), | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			  NULL); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr, | 
					
						
							| 
									
										
										
										
											2012-05-17 00:36:20 -03:00
										 |  |  | 			      u8 link_type, u8 addr_type) | 
					
						
							| 
									
										
										
										
											2011-11-23 08:28:33 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_ev_user_passkey_request ev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | 	bacpy(&ev.addr.bdaddr, bdaddr); | 
					
						
							| 
									
										
										
										
											2012-04-24 21:02:50 -03:00
										 |  |  | 	ev.addr.type = link_to_bdaddr(link_type, addr_type); | 
					
						
							| 
									
										
										
										
											2011-11-23 08:28:33 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev), | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			  NULL); | 
					
						
							| 
									
										
										
										
											2011-11-23 08:28:33 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-16 13:53:13 -08:00
										 |  |  | static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr, | 
					
						
							| 
									
										
										
										
											2012-05-17 00:36:20 -03:00
										 |  |  | 				      u8 link_type, u8 addr_type, u8 status, | 
					
						
							|  |  |  | 				      u8 opcode) | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 	struct mgmt_rp_user_confirm_reply rp; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	cmd = mgmt_pending_find(opcode, hdev); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | 	if (!cmd) | 
					
						
							|  |  |  | 		return -ENOENT; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | 	bacpy(&rp.addr.bdaddr, bdaddr); | 
					
						
							| 
									
										
										
										
											2012-04-24 21:02:50 -03:00
										 |  |  | 	rp.addr.type = link_to_bdaddr(link_type, addr_type); | 
					
						
							| 
									
										
										
										
											2012-02-18 15:07:59 +02:00
										 |  |  | 	err = cmd_complete(cmd->sk, hdev->id, opcode, mgmt_status(status), | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			   &rp, sizeof(rp)); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-19 12:06:02 -03:00
										 |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:14 +02:00
										 |  |  | int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				     u8 link_type, u8 addr_type, u8 status) | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | 	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 					  status, MGMT_OP_USER_CONFIRM_REPLY); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 					 u8 link_type, u8 addr_type, u8 status) | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | 	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type, | 
					
						
							| 
									
										
										
										
											2012-05-23 04:04:21 -03:00
										 |  |  | 					  status, | 
					
						
							|  |  |  | 					  MGMT_OP_USER_CONFIRM_NEG_REPLY); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2011-02-19 12:06:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-23 08:28:33 -08:00
										 |  |  | int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				     u8 link_type, u8 addr_type, u8 status) | 
					
						
							| 
									
										
										
										
											2011-11-23 08:28:33 -08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | 	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 					  status, MGMT_OP_USER_PASSKEY_REPLY); | 
					
						
							| 
									
										
										
										
											2011-11-23 08:28:33 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 					 u8 link_type, u8 addr_type, u8 status) | 
					
						
							| 
									
										
										
										
											2011-11-23 08:28:33 -08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | 	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type, | 
					
						
							| 
									
										
										
										
											2012-05-23 04:04:21 -03:00
										 |  |  | 					  status, | 
					
						
							|  |  |  | 					  MGMT_OP_USER_PASSKEY_NEG_REPLY); | 
					
						
							| 
									
										
										
										
											2011-11-23 08:28:33 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-06 18:39:26 +03:00
										 |  |  | int mgmt_user_passkey_notify(struct hci_dev *hdev, bdaddr_t *bdaddr, | 
					
						
							|  |  |  | 			     u8 link_type, u8 addr_type, u32 passkey, | 
					
						
							|  |  |  | 			     u8 entered) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_ev_passkey_notify ev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BT_DBG("%s", hdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bacpy(&ev.addr.bdaddr, bdaddr); | 
					
						
							|  |  |  | 	ev.addr.type = link_to_bdaddr(link_type, addr_type); | 
					
						
							|  |  |  | 	ev.passkey = __cpu_to_le32(passkey); | 
					
						
							|  |  |  | 	ev.entered = entered; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return mgmt_event(MGMT_EV_PASSKEY_NOTIFY, hdev, &ev, sizeof(ev), NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-08 17:09:49 -07:00
										 |  |  | void mgmt_auth_failed(struct hci_conn *conn, u8 hci_status) | 
					
						
							| 
									
										
										
										
											2011-02-19 12:06:00 -03:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_ev_auth_failed ev; | 
					
						
							| 
									
										
										
										
											2014-09-08 17:09:49 -07:00
										 |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 	u8 status = mgmt_status(hci_status); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:06:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-08 17:09:49 -07:00
										 |  |  | 	bacpy(&ev.addr.bdaddr, &conn->dst); | 
					
						
							|  |  |  | 	ev.addr.type = link_to_bdaddr(conn->type, conn->dst_type); | 
					
						
							|  |  |  | 	ev.status = status; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:06:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-08 17:09:49 -07:00
										 |  |  | 	cmd = find_pairing(conn); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_event(MGMT_EV_AUTH_FAILED, conn->hdev, &ev, sizeof(ev), | 
					
						
							|  |  |  | 		    cmd ? cmd->sk : NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (cmd) | 
					
						
							|  |  |  | 		pairing_complete(cmd, status); | 
					
						
							| 
									
										
										
										
											2011-02-19 12:06:00 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:24 -07:00
										 |  |  | void mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status) | 
					
						
							| 
									
										
										
										
											2012-02-16 23:56:27 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct cmd_lookup match = { NULL, hdev }; | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:24 -07:00
										 |  |  | 	bool changed; | 
					
						
							| 
									
										
										
										
											2012-02-16 23:56:27 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (status) { | 
					
						
							|  |  |  | 		u8 mgmt_err = mgmt_status(status); | 
					
						
							|  |  |  | 		mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				     cmd_status_rsp, &mgmt_err); | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:24 -07:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2012-02-16 23:56:27 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:24 -07:00
										 |  |  | 	if (test_bit(HCI_AUTH, &hdev->flags)) | 
					
						
							|  |  |  | 		changed = !test_and_set_bit(HCI_LINK_SECURITY, | 
					
						
							|  |  |  | 					    &hdev->dev_flags); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		changed = test_and_clear_bit(HCI_LINK_SECURITY, | 
					
						
							|  |  |  | 					     &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2012-02-22 11:58:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-16 23:56:27 +02:00
										 |  |  | 	mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 			     &match); | 
					
						
							| 
									
										
										
										
											2012-02-16 23:56:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-22 11:58:37 +02:00
										 |  |  | 	if (changed) | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:24 -07:00
										 |  |  | 		new_settings(hdev, match.sk); | 
					
						
							| 
									
										
										
										
											2012-02-16 23:56:27 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (match.sk) | 
					
						
							|  |  |  | 		sock_put(match.sk); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | static void clear_eir(struct hci_request *req) | 
					
						
							| 
									
										
										
										
											2012-02-21 00:52:42 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	struct hci_dev *hdev = req->hdev; | 
					
						
							| 
									
										
										
										
											2012-02-21 00:52:42 +02:00
										 |  |  | 	struct hci_cp_write_eir cp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-24 21:12:01 +03:00
										 |  |  | 	if (!lmp_ext_inq_capable(hdev)) | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2012-02-21 00:52:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-22 15:38:48 +02:00
										 |  |  | 	memset(hdev->eir, 0, sizeof(hdev->eir)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 00:52:42 +02:00
										 |  |  | 	memset(&cp, 0, sizeof(cp)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp); | 
					
						
							| 
									
										
										
										
											2012-02-21 00:52:42 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:25 -07:00
										 |  |  | void mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status) | 
					
						
							| 
									
										
										
										
											2012-02-17 00:56:28 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct cmd_lookup match = { NULL, hdev }; | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	struct hci_request req; | 
					
						
							| 
									
										
										
										
											2012-02-22 12:38:31 +02:00
										 |  |  | 	bool changed = false; | 
					
						
							| 
									
										
										
										
											2012-02-17 00:56:28 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (status) { | 
					
						
							|  |  |  | 		u8 mgmt_err = mgmt_status(status); | 
					
						
							| 
									
										
										
										
											2012-02-22 12:38:31 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (enable && test_and_clear_bit(HCI_SSP_ENABLED, | 
					
						
							| 
									
										
										
										
											2013-10-10 03:08:11 -07:00
										 |  |  | 						 &hdev->dev_flags)) { | 
					
						
							|  |  |  | 			clear_bit(HCI_HS_ENABLED, &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:25 -07:00
										 |  |  | 			new_settings(hdev, NULL); | 
					
						
							| 
									
										
										
										
											2013-10-10 03:08:11 -07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-02-22 12:38:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 		mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp, | 
					
						
							|  |  |  | 				     &mgmt_err); | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:25 -07:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2012-02-22 12:38:31 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (enable) { | 
					
						
							| 
									
										
										
										
											2013-10-10 03:08:11 -07:00
										 |  |  | 		changed = !test_and_set_bit(HCI_SSP_ENABLED, &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2012-02-22 12:38:31 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2013-10-10 03:08:11 -07:00
										 |  |  | 		changed = test_and_clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags); | 
					
						
							|  |  |  | 		if (!changed) | 
					
						
							|  |  |  | 			changed = test_and_clear_bit(HCI_HS_ENABLED, | 
					
						
							|  |  |  | 						     &hdev->dev_flags); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			clear_bit(HCI_HS_ENABLED, &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2012-02-17 00:56:28 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, settings_rsp, &match); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-22 12:38:31 +02:00
										 |  |  | 	if (changed) | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:25 -07:00
										 |  |  | 		new_settings(hdev, match.sk); | 
					
						
							| 
									
										
										
										
											2012-02-17 00:56:28 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-22 15:10:59 +02:00
										 |  |  | 	if (match.sk) | 
					
						
							| 
									
										
										
										
											2012-02-17 00:56:28 +02:00
										 |  |  | 		sock_put(match.sk); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	hci_req_init(&req, hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-24 14:00:27 +03:00
										 |  |  | 	if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) { | 
					
						
							|  |  |  | 		if (test_bit(HCI_USE_DEBUG_KEYS, &hdev->dev_flags)) | 
					
						
							|  |  |  | 			hci_req_add(&req, HCI_OP_WRITE_SSP_DEBUG_MODE, | 
					
						
							|  |  |  | 				    sizeof(enable), &enable); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 		update_eir(&req); | 
					
						
							| 
									
										
										
										
											2014-06-24 14:00:27 +03:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 		clear_eir(&req); | 
					
						
							| 
									
										
										
										
											2014-06-24 14:00:27 +03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	hci_req_run(&req, NULL); | 
					
						
							| 
									
										
										
										
											2012-02-17 00:56:28 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:23 -08:00
										 |  |  | void mgmt_sc_enable_complete(struct hci_dev *hdev, u8 enable, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct cmd_lookup match = { NULL, hdev }; | 
					
						
							|  |  |  | 	bool changed = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (status) { | 
					
						
							|  |  |  | 		u8 mgmt_err = mgmt_status(status); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-01 09:19:57 -08:00
										 |  |  | 		if (enable) { | 
					
						
							|  |  |  | 			if (test_and_clear_bit(HCI_SC_ENABLED, | 
					
						
							|  |  |  | 					       &hdev->dev_flags)) | 
					
						
							|  |  |  | 				new_settings(hdev, NULL); | 
					
						
							|  |  |  | 			clear_bit(HCI_SC_ONLY, &hdev->dev_flags); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:23 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		mgmt_pending_foreach(MGMT_OP_SET_SECURE_CONN, hdev, | 
					
						
							|  |  |  | 				     cmd_status_rsp, &mgmt_err); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-01 09:19:57 -08:00
										 |  |  | 	if (enable) { | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:23 -08:00
										 |  |  | 		changed = !test_and_set_bit(HCI_SC_ENABLED, &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2014-02-01 09:19:57 -08:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:23 -08:00
										 |  |  | 		changed = test_and_clear_bit(HCI_SC_ENABLED, &hdev->dev_flags); | 
					
						
							| 
									
										
										
										
											2014-02-01 09:19:57 -08:00
										 |  |  | 		clear_bit(HCI_SC_ONLY, &hdev->dev_flags); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:23 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_pending_foreach(MGMT_OP_SET_SECURE_CONN, hdev, | 
					
						
							|  |  |  | 			     settings_rsp, &match); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (changed) | 
					
						
							|  |  |  | 		new_settings(hdev, match.sk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (match.sk) | 
					
						
							|  |  |  | 		sock_put(match.sk); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:55 -05:00
										 |  |  | static void sk_lookup(struct pending_cmd *cmd, void *data) | 
					
						
							| 
									
										
										
										
											2012-02-23 23:09:40 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct cmd_lookup *match = data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (match->sk == NULL) { | 
					
						
							|  |  |  | 		match->sk = cmd->sk; | 
					
						
							|  |  |  | 		sock_hold(match->sk); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:26 -07:00
										 |  |  | void mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class, | 
					
						
							|  |  |  | 				    u8 status) | 
					
						
							| 
									
										
										
										
											2012-02-22 18:38:01 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-23 23:09:40 +02:00
										 |  |  | 	struct cmd_lookup match = { NULL, hdev, mgmt_status(status) }; | 
					
						
							| 
									
										
										
										
											2012-02-22 18:38:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:55 -05:00
										 |  |  | 	mgmt_pending_foreach(MGMT_OP_SET_DEV_CLASS, hdev, sk_lookup, &match); | 
					
						
							|  |  |  | 	mgmt_pending_foreach(MGMT_OP_ADD_UUID, hdev, sk_lookup, &match); | 
					
						
							|  |  |  | 	mgmt_pending_foreach(MGMT_OP_REMOVE_UUID, hdev, sk_lookup, &match); | 
					
						
							| 
									
										
										
										
											2012-02-23 23:09:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!status) | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:26 -07:00
										 |  |  | 		mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev, dev_class, 3, | 
					
						
							|  |  |  | 			   NULL); | 
					
						
							| 
									
										
										
										
											2012-02-23 23:09:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (match.sk) | 
					
						
							|  |  |  | 		sock_put(match.sk); | 
					
						
							| 
									
										
										
										
											2012-02-22 18:38:01 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:27 -07:00
										 |  |  | void mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status) | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:37 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mgmt_cp_set_local_name ev; | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:00 -05:00
										 |  |  | 	struct pending_cmd *cmd; | 
					
						
							| 
									
										
										
										
											2012-02-22 21:06:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:00 -05:00
										 |  |  | 	if (status) | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:27 -07:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:37 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	memset(&ev, 0, sizeof(ev)); | 
					
						
							|  |  |  | 	memcpy(ev.name, name, HCI_MAX_NAME_LENGTH); | 
					
						
							| 
									
										
										
										
											2012-02-22 21:06:55 +02:00
										 |  |  | 	memcpy(ev.short_name, hdev->short_name, HCI_MAX_SHORT_NAME_LENGTH); | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev); | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:00 -05:00
										 |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		memcpy(hdev->dev_name, name, sizeof(hdev->dev_name)); | 
					
						
							| 
									
										
										
										
											2012-02-22 21:06:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 17:07:00 -05:00
										 |  |  | 		/* If this is a HCI command related to powering on the
 | 
					
						
							|  |  |  | 		 * HCI dev don't send any mgmt signals. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev)) | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:27 -07:00
										 |  |  | 			return; | 
					
						
							| 
									
										
										
										
											2013-03-15 17:06:52 -05:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:27 -07:00
										 |  |  | 	mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev, sizeof(ev), | 
					
						
							|  |  |  | 		   cmd ? cmd->sk : NULL); | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:37 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:26 -08:00
										 |  |  | void mgmt_read_local_oob_data_complete(struct hci_dev *hdev, u8 *hash192, | 
					
						
							|  |  |  | 				       u8 *randomizer192, u8 *hash256, | 
					
						
							|  |  |  | 				       u8 *randomizer256, u8 status) | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:14 +02:00
										 |  |  | 	BT_DBG("%s status %u", hdev->name, status); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 	cmd = mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | 	if (!cmd) | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:28 -07:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (status) { | 
					
						
							| 
									
										
										
										
											2013-10-15 14:26:28 -07:00
										 |  |  | 		cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA, | 
					
						
							|  |  |  | 			   mgmt_status(status)); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:26 -08:00
										 |  |  | 		if (test_bit(HCI_SC_ENABLED, &hdev->dev_flags) && | 
					
						
							|  |  |  | 		    hash256 && randomizer256) { | 
					
						
							|  |  |  | 			struct mgmt_rp_read_local_oob_ext_data rp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			memcpy(rp.hash192, hash192, sizeof(rp.hash192)); | 
					
						
							|  |  |  | 			memcpy(rp.randomizer192, randomizer192, | 
					
						
							|  |  |  | 			       sizeof(rp.randomizer192)); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:26 -08:00
										 |  |  | 			memcpy(rp.hash256, hash256, sizeof(rp.hash256)); | 
					
						
							|  |  |  | 			memcpy(rp.randomizer256, randomizer256, | 
					
						
							|  |  |  | 			       sizeof(rp.randomizer256)); | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:26 -08:00
										 |  |  | 			cmd_complete(cmd->sk, hdev->id, | 
					
						
							|  |  |  | 				     MGMT_OP_READ_LOCAL_OOB_DATA, 0, | 
					
						
							|  |  |  | 				     &rp, sizeof(rp)); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			struct mgmt_rp_read_local_oob_data rp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			memcpy(rp.hash, hash192, sizeof(rp.hash)); | 
					
						
							|  |  |  | 			memcpy(rp.randomizer, randomizer192, | 
					
						
							|  |  |  | 			       sizeof(rp.randomizer)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			cmd_complete(cmd->sk, hdev->id, | 
					
						
							|  |  |  | 				     MGMT_OP_READ_LOCAL_OOB_DATA, 0, | 
					
						
							|  |  |  | 				     &rp, sizeof(rp)); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2011-03-30 23:57:16 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:51 -07:00
										 |  |  | void mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type, | 
					
						
							| 
									
										
										
										
											2014-07-01 14:11:20 +02:00
										 |  |  | 		       u8 addr_type, u8 *dev_class, s8 rssi, u32 flags, | 
					
						
							|  |  |  | 		       u8 *eir, u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len) | 
					
						
							| 
									
										
										
										
											2011-03-30 23:57:16 +03:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-01-15 19:51:59 +02:00
										 |  |  | 	char buf[512]; | 
					
						
							|  |  |  | 	struct mgmt_ev_device_found *ev = (void *) buf; | 
					
						
							| 
									
										
										
										
											2012-01-15 21:01:23 +02:00
										 |  |  | 	size_t ev_size; | 
					
						
							| 
									
										
										
										
											2011-03-30 23:57:16 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-02 22:42:01 +03:00
										 |  |  | 	/* Don't send events for a non-kernel initiated discovery. With
 | 
					
						
							|  |  |  | 	 * LE one exception is if we have pend_le_reports > 0 in which | 
					
						
							|  |  |  | 	 * case we're doing passive scanning and want these events. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (!hci_discovery_active(hdev)) { | 
					
						
							|  |  |  | 		if (link_type == ACL_LINK) | 
					
						
							|  |  |  | 			return; | 
					
						
							| 
									
										
										
										
											2014-07-04 12:37:18 +03:00
										 |  |  | 		if (link_type == LE_LINK && list_empty(&hdev->pend_le_reports)) | 
					
						
							| 
									
										
										
										
											2014-07-02 22:42:01 +03:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-04-30 15:29:40 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-25 10:30:47 +02:00
										 |  |  | 	/* Make sure that the buffer is big enough. The 5 extra bytes
 | 
					
						
							|  |  |  | 	 * are for the potential CoD field. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (sizeof(*ev) + eir_len + scan_rsp_len + 5 > sizeof(buf)) | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:51 -07:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2012-01-10 18:20:49 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-15 21:01:23 +02:00
										 |  |  | 	memset(buf, 0, sizeof(buf)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-07 12:45:54 +03:00
										 |  |  | 	bacpy(&ev->addr.bdaddr, bdaddr); | 
					
						
							|  |  |  | 	ev->addr.type = link_to_bdaddr(link_type, addr_type); | 
					
						
							| 
									
										
										
										
											2012-01-15 19:51:59 +02:00
										 |  |  | 	ev->rssi = rssi; | 
					
						
							| 
									
										
										
										
											2014-07-01 14:11:20 +02:00
										 |  |  | 	ev->flags = cpu_to_le32(flags); | 
					
						
							| 
									
										
										
										
											2011-03-30 23:57:16 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-15 21:01:23 +02:00
										 |  |  | 	if (eir_len > 0) | 
					
						
							| 
									
										
										
										
											2012-01-15 19:51:59 +02:00
										 |  |  | 		memcpy(ev->eir, eir, eir_len); | 
					
						
							| 
									
										
										
										
											2011-03-30 23:57:16 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-15 21:01:23 +02:00
										 |  |  | 	if (dev_class && !eir_has_data_type(ev->eir, eir_len, EIR_CLASS_OF_DEV)) | 
					
						
							|  |  |  | 		eir_len = eir_append_data(ev->eir, eir_len, EIR_CLASS_OF_DEV, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 					  dev_class, 3); | 
					
						
							| 
									
										
										
										
											2012-01-15 21:01:23 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-25 10:30:47 +02:00
										 |  |  | 	if (scan_rsp_len > 0) | 
					
						
							|  |  |  | 		memcpy(ev->eir + eir_len, scan_rsp, scan_rsp_len); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ev->eir_len = cpu_to_le16(eir_len + scan_rsp_len); | 
					
						
							|  |  |  | 	ev_size = sizeof(*ev) + eir_len + scan_rsp_len; | 
					
						
							| 
									
										
										
										
											2011-09-09 18:56:26 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:51 -07:00
										 |  |  | 	mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL); | 
					
						
							| 
									
										
										
										
											2011-03-30 23:57:16 +03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2011-03-30 13:18:12 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:52 -07:00
										 |  |  | void mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type, | 
					
						
							|  |  |  | 		      u8 addr_type, s8 rssi, u8 *name, u8 name_len) | 
					
						
							| 
									
										
										
										
											2011-03-30 13:18:12 +03:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-01-17 21:48:47 +02:00
										 |  |  | 	struct mgmt_ev_device_found *ev; | 
					
						
							|  |  |  | 	char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2]; | 
					
						
							|  |  |  | 	u16 eir_len; | 
					
						
							| 
									
										
										
										
											2011-03-30 13:18:12 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-17 21:48:47 +02:00
										 |  |  | 	ev = (struct mgmt_ev_device_found *) buf; | 
					
						
							| 
									
										
										
										
											2011-03-30 13:18:12 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-17 21:48:47 +02:00
										 |  |  | 	memset(buf, 0, sizeof(buf)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bacpy(&ev->addr.bdaddr, bdaddr); | 
					
						
							| 
									
										
										
										
											2012-04-24 21:02:50 -03:00
										 |  |  | 	ev->addr.type = link_to_bdaddr(link_type, addr_type); | 
					
						
							| 
									
										
										
										
											2012-01-17 21:48:47 +02:00
										 |  |  | 	ev->rssi = rssi; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name, | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 				  name_len); | 
					
						
							| 
									
										
										
										
											2012-01-17 21:48:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-14 18:08:46 +02:00
										 |  |  | 	ev->eir_len = cpu_to_le16(eir_len); | 
					
						
							| 
									
										
										
										
											2011-03-30 13:18:12 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:52 -07:00
										 |  |  | 	mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, sizeof(*ev) + eir_len, NULL); | 
					
						
							| 
									
										
										
										
											2011-03-30 13:18:12 +03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:57 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:53 -07:00
										 |  |  | void mgmt_discovering(struct hci_dev *hdev, u8 discovering) | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:57 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-20 23:30:44 +02:00
										 |  |  | 	struct mgmt_ev_discovering ev; | 
					
						
							| 
									
										
										
										
											2011-11-01 17:06:44 +02:00
										 |  |  | 	struct pending_cmd *cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-22 17:14:19 -03:00
										 |  |  | 	BT_DBG("%s discovering %u", hdev->name, discovering); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-01 17:06:44 +02:00
										 |  |  | 	if (discovering) | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 		cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev); | 
					
						
							| 
									
										
										
										
											2011-11-01 17:06:44 +02:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2011-11-08 20:40:15 +02:00
										 |  |  | 		cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev); | 
					
						
							| 
									
										
										
										
											2011-11-01 17:06:44 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (cmd != NULL) { | 
					
						
							| 
									
										
										
										
											2012-02-19 12:52:07 +02:00
										 |  |  | 		u8 type = hdev->discovery.type; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-08 01:25:00 -03:00
										 |  |  | 		cmd_complete(cmd->sk, hdev->id, cmd->opcode, 0, &type, | 
					
						
							|  |  |  | 			     sizeof(type)); | 
					
						
							| 
									
										
										
										
											2011-11-01 17:06:44 +02:00
										 |  |  | 		mgmt_pending_remove(cmd); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-20 23:30:44 +02:00
										 |  |  | 	memset(&ev, 0, sizeof(ev)); | 
					
						
							|  |  |  | 	ev.type = hdev->discovery.type; | 
					
						
							|  |  |  | 	ev.discovering = discovering; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 23:55:53 -07:00
										 |  |  | 	mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL); | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:57 -04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2011-08-25 16:48:02 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 04:08:14 -07:00
										 |  |  | static void adv_enable_complete(struct hci_dev *hdev, u8 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	BT_DBG("%s status %u", hdev->name, status); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void mgmt_reenable_advertising(struct hci_dev *hdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct hci_request req; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!test_bit(HCI_ADVERTISING, &hdev->dev_flags)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hci_req_init(&req, hdev); | 
					
						
							|  |  |  | 	enable_advertising(&req); | 
					
						
							| 
									
										
										
										
											2014-07-08 15:07:50 +03:00
										 |  |  | 	hci_req_run(&req, adv_enable_complete); | 
					
						
							| 
									
										
										
										
											2013-10-06 04:08:14 -07:00
										 |  |  | } |