hci_sock.c 26.6 KB
Newer Older
1
/*
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14
   BlueZ - Bluetooth protocol stack for Linux
   Copyright (C) 2000-2001 Qualcomm Incorporated

   Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>

   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
15 16 17
   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
L
Linus Torvalds 已提交
18 19
   OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

20 21
   ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
   COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
L
Linus Torvalds 已提交
22 23 24 25 26
   SOFTWARE IS DISCLAIMED.
*/

/* Bluetooth HCI sockets. */

27
#include <linux/export.h>
L
Linus Torvalds 已提交
28 29 30 31
#include <asm/unaligned.h>

#include <net/bluetooth/bluetooth.h>
#include <net/bluetooth/hci_core.h>
32
#include <net/bluetooth/hci_mon.h>
L
Linus Torvalds 已提交
33

34 35 36
static LIST_HEAD(mgmt_chan_list);
static DEFINE_MUTEX(mgmt_chan_list_lock);

37 38
static atomic_t monitor_promisc = ATOMIC_INIT(0);

L
Linus Torvalds 已提交
39 40
/* ----- HCI socket interface ----- */

41 42 43 44 45 46 47 48 49
/* Socket info */
#define hci_pi(sk) ((struct hci_pinfo *) sk)

struct hci_pinfo {
	struct bt_sock    bt;
	struct hci_dev    *hdev;
	struct hci_filter filter;
	__u32             cmsg_mask;
	unsigned short    channel;
50
	unsigned long     flags;
51 52
};

53 54 55 56 57 58 59 60 61 62
void hci_sock_set_flag(struct sock *sk, int nr)
{
	set_bit(nr, &hci_pi(sk)->flags);
}

void hci_sock_clear_flag(struct sock *sk, int nr)
{
	clear_bit(nr, &hci_pi(sk)->flags);
}

63
static inline int hci_test_bit(int nr, const void *addr)
L
Linus Torvalds 已提交
64
{
65
	return *((const __u32 *) addr + (nr >> 5)) & ((__u32) 1 << (nr & 31));
L
Linus Torvalds 已提交
66 67 68
}

/* Security filter */
69 70 71 72 73 74 75 76
#define HCI_SFLT_MAX_OGF  5

struct hci_sec_filter {
	__u32 type_mask;
	__u32 event_mask[2];
	__u32 ocf_mask[HCI_SFLT_MAX_OGF + 1][4];
};

77
static const struct hci_sec_filter hci_sec_filter = {
L
Linus Torvalds 已提交
78 79 80
	/* Packet types */
	0x10,
	/* Events */
81
	{ 0x1000d9fe, 0x0000b00c },
L
Linus Torvalds 已提交
82 83 84 85
	/* Commands */
	{
		{ 0x0 },
		/* OGF_LINK_CTL */
86
		{ 0xbe000006, 0x00000001, 0x00000000, 0x00 },
L
Linus Torvalds 已提交
87
		/* OGF_LINK_POLICY */
88
		{ 0x00005200, 0x00000000, 0x00000000, 0x00 },
L
Linus Torvalds 已提交
89
		/* OGF_HOST_CTL */
90
		{ 0xaab00200, 0x2b402aaa, 0x05220154, 0x00 },
L
Linus Torvalds 已提交
91
		/* OGF_INFO_PARAM */
92
		{ 0x000002be, 0x00000000, 0x00000000, 0x00 },
L
Linus Torvalds 已提交
93
		/* OGF_STATUS_PARAM */
94
		{ 0x000000ea, 0x00000000, 0x00000000, 0x00 }
L
Linus Torvalds 已提交
95 96 97 98
	}
};

static struct bt_sock_list hci_sk_list = {
99
	.lock = __RW_LOCK_UNLOCKED(hci_sk_list.lock)
L
Linus Torvalds 已提交
100 101
};

102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
static bool is_filtered_packet(struct sock *sk, struct sk_buff *skb)
{
	struct hci_filter *flt;
	int flt_type, flt_event;

	/* Apply filter */
	flt = &hci_pi(sk)->filter;

	if (bt_cb(skb)->pkt_type == HCI_VENDOR_PKT)
		flt_type = 0;
	else
		flt_type = bt_cb(skb)->pkt_type & HCI_FLT_TYPE_BITS;

	if (!test_bit(flt_type, &flt->type_mask))
		return true;

	/* Extra filter for event packets only */
	if (bt_cb(skb)->pkt_type != HCI_EVENT_PKT)
		return false;

	flt_event = (*(__u8 *)skb->data & HCI_FLT_EVENT_BITS);

	if (!hci_test_bit(flt_event, &flt->event_mask))
		return true;

	/* Check filter only when opcode is set */
	if (!flt->opcode)
		return false;

	if (flt_event == HCI_EV_CMD_COMPLETE &&
	    flt->opcode != get_unaligned((__le16 *)(skb->data + 3)))
		return true;

	if (flt_event == HCI_EV_CMD_STATUS &&
	    flt->opcode != get_unaligned((__le16 *)(skb->data + 4)))
		return true;

	return false;
}

L
Linus Torvalds 已提交
142
/* Send frame to RAW socket */
143
void hci_send_to_sock(struct hci_dev *hdev, struct sk_buff *skb)
L
Linus Torvalds 已提交
144 145
{
	struct sock *sk;
146
	struct sk_buff *skb_copy = NULL;
L
Linus Torvalds 已提交
147 148 149 150

	BT_DBG("hdev %p len %d", hdev, skb->len);

	read_lock(&hci_sk_list.lock);
151

152
	sk_for_each(sk, &hci_sk_list.head) {
L
Linus Torvalds 已提交
153 154 155 156 157 158 159 160 161
		struct sk_buff *nskb;

		if (sk->sk_state != BT_BOUND || hci_pi(sk)->hdev != hdev)
			continue;

		/* Don't send frame to the socket it came from */
		if (skb->sk == sk)
			continue;

162 163 164 165 166 167 168 169 170 171 172 173
		if (hci_pi(sk)->channel == HCI_CHANNEL_RAW) {
			if (is_filtered_packet(sk, skb))
				continue;
		} else if (hci_pi(sk)->channel == HCI_CHANNEL_USER) {
			if (!bt_cb(skb)->incoming)
				continue;
			if (bt_cb(skb)->pkt_type != HCI_EVENT_PKT &&
			    bt_cb(skb)->pkt_type != HCI_ACLDATA_PKT &&
			    bt_cb(skb)->pkt_type != HCI_SCODATA_PKT)
				continue;
		} else {
			/* Don't send frame to other channel types */
L
Linus Torvalds 已提交
174
			continue;
175
		}
L
Linus Torvalds 已提交
176

177 178
		if (!skb_copy) {
			/* Create a private copy with headroom */
179
			skb_copy = __pskb_copy_fclone(skb, 1, GFP_ATOMIC, true);
180 181 182 183 184 185 186 187
			if (!skb_copy)
				continue;

			/* Put type byte before the data */
			memcpy(skb_push(skb_copy, 1), &bt_cb(skb)->pkt_type, 1);
		}

		nskb = skb_clone(skb_copy, GFP_ATOMIC);
A
Andrei Emeltchenko 已提交
188
		if (!nskb)
L
Linus Torvalds 已提交
189 190
			continue;

191 192 193 194 195
		if (sock_queue_rcv_skb(sk, nskb))
			kfree_skb(nskb);
	}

	read_unlock(&hci_sk_list.lock);
196 197

	kfree_skb(skb_copy);
198 199
}

200 201 202
/* Send frame to sockets with specific channel */
void hci_send_to_channel(unsigned short channel, struct sk_buff *skb,
			 struct sock *skip_sk)
203 204 205
{
	struct sock *sk;

206
	BT_DBG("channel %u len %d", channel, skb->len);
207 208 209

	read_lock(&hci_sk_list.lock);

210
	sk_for_each(sk, &hci_sk_list.head) {
211 212 213 214 215 216 217 218 219
		struct sk_buff *nskb;

		/* Skip the original socket */
		if (sk == skip_sk)
			continue;

		if (sk->sk_state != BT_BOUND)
			continue;

220
		if (hci_pi(sk)->channel != channel)
221 222 223 224 225 226 227 228 229 230 231 232 233
			continue;

		nskb = skb_clone(skb, GFP_ATOMIC);
		if (!nskb)
			continue;

		if (sock_queue_rcv_skb(sk, nskb))
			kfree_skb(nskb);
	}

	read_unlock(&hci_sk_list.lock);
}

234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
/* Send frame to sockets with specific channel flag set */
void hci_send_to_flagged_channel(unsigned short channel, struct sk_buff *skb,
				 int flag)
{
	struct sock *sk;

	BT_DBG("channel %u len %d", channel, skb->len);

	read_lock(&hci_sk_list.lock);

	sk_for_each(sk, &hci_sk_list.head) {
		struct sk_buff *nskb;

		if (!test_bit(flag, &hci_pi(sk)->flags))
			continue;

		if (sk->sk_state != BT_BOUND)
			continue;

		if (hci_pi(sk)->channel != channel)
			continue;

		nskb = skb_clone(skb, GFP_ATOMIC);
		if (!nskb)
			continue;

		if (sock_queue_rcv_skb(sk, nskb))
			kfree_skb(nskb);
	}

	read_unlock(&hci_sk_list.lock);
}

267 268 269 270
/* Send frame to monitor socket */
void hci_send_to_monitor(struct hci_dev *hdev, struct sk_buff *skb)
{
	struct sk_buff *skb_copy = NULL;
271
	struct hci_mon_hdr *hdr;
272 273 274 275 276 277 278 279 280
	__le16 opcode;

	if (!atomic_read(&monitor_promisc))
		return;

	BT_DBG("hdev %p len %d", hdev, skb->len);

	switch (bt_cb(skb)->pkt_type) {
	case HCI_COMMAND_PKT:
281
		opcode = cpu_to_le16(HCI_MON_COMMAND_PKT);
282 283
		break;
	case HCI_EVENT_PKT:
284
		opcode = cpu_to_le16(HCI_MON_EVENT_PKT);
285 286 287
		break;
	case HCI_ACLDATA_PKT:
		if (bt_cb(skb)->incoming)
288
			opcode = cpu_to_le16(HCI_MON_ACL_RX_PKT);
289
		else
290
			opcode = cpu_to_le16(HCI_MON_ACL_TX_PKT);
291 292 293
		break;
	case HCI_SCODATA_PKT:
		if (bt_cb(skb)->incoming)
294
			opcode = cpu_to_le16(HCI_MON_SCO_RX_PKT);
295
		else
296
			opcode = cpu_to_le16(HCI_MON_SCO_TX_PKT);
297 298 299 300 301
		break;
	default:
		return;
	}

302 303 304 305 306 307 308 309 310 311 312
	/* Create a private copy with headroom */
	skb_copy = __pskb_copy_fclone(skb, HCI_MON_HDR_SIZE, GFP_ATOMIC, true);
	if (!skb_copy)
		return;

	/* Put header before the data */
	hdr = (void *) skb_push(skb_copy, HCI_MON_HDR_SIZE);
	hdr->opcode = opcode;
	hdr->index = cpu_to_le16(hdev->id);
	hdr->len = cpu_to_le16(skb->len);

313
	hci_send_to_channel(HCI_CHANNEL_MONITOR, skb_copy, NULL);
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
	kfree_skb(skb_copy);
}

static struct sk_buff *create_monitor_event(struct hci_dev *hdev, int event)
{
	struct hci_mon_hdr *hdr;
	struct hci_mon_new_index *ni;
	struct sk_buff *skb;
	__le16 opcode;

	switch (event) {
	case HCI_DEV_REG:
		skb = bt_skb_alloc(HCI_MON_NEW_INDEX_SIZE, GFP_ATOMIC);
		if (!skb)
			return NULL;

		ni = (void *) skb_put(skb, HCI_MON_NEW_INDEX_SIZE);
		ni->type = hdev->dev_type;
		ni->bus = hdev->bus;
		bacpy(&ni->bdaddr, &hdev->bdaddr);
		memcpy(ni->name, hdev->name, 8);

336
		opcode = cpu_to_le16(HCI_MON_NEW_INDEX);
337 338 339 340 341 342 343
		break;

	case HCI_DEV_UNREG:
		skb = bt_skb_alloc(0, GFP_ATOMIC);
		if (!skb)
			return NULL;

344
		opcode = cpu_to_le16(HCI_MON_DEL_INDEX);
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
		break;

	default:
		return NULL;
	}

	__net_timestamp(skb);

	hdr = (void *) skb_push(skb, HCI_MON_HDR_SIZE);
	hdr->opcode = opcode;
	hdr->index = cpu_to_le16(hdev->id);
	hdr->len = cpu_to_le16(skb->len - HCI_MON_HDR_SIZE);

	return skb;
}

static void send_monitor_replay(struct sock *sk)
{
	struct hci_dev *hdev;

	read_lock(&hci_dev_list_lock);

	list_for_each_entry(hdev, &hci_dev_list, list) {
		struct sk_buff *skb;

		skb = create_monitor_event(hdev, HCI_DEV_REG);
		if (!skb)
			continue;

		if (sock_queue_rcv_skb(sk, skb))
			kfree_skb(skb);
	}

	read_unlock(&hci_dev_list_lock);
}

381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
/* Generate internal stack event */
static void hci_si_event(struct hci_dev *hdev, int type, int dlen, void *data)
{
	struct hci_event_hdr *hdr;
	struct hci_ev_stack_internal *ev;
	struct sk_buff *skb;

	skb = bt_skb_alloc(HCI_EVENT_HDR_SIZE + sizeof(*ev) + dlen, GFP_ATOMIC);
	if (!skb)
		return;

	hdr = (void *) skb_put(skb, HCI_EVENT_HDR_SIZE);
	hdr->evt  = HCI_EV_STACK_INTERNAL;
	hdr->plen = sizeof(*ev) + dlen;

	ev  = (void *) skb_put(skb, sizeof(*ev) + dlen);
	ev->type = type;
	memcpy(ev->data, data, dlen);

	bt_cb(skb)->incoming = 1;
	__net_timestamp(skb);

	bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
	hci_send_to_sock(hdev, skb);
	kfree_skb(skb);
}

void hci_sock_dev_event(struct hci_dev *hdev, int event)
{
	struct hci_ev_si_device ev;

	BT_DBG("hdev %s event %d", hdev->name, event);

414 415 416 417 418 419
	/* Send event to monitor */
	if (atomic_read(&monitor_promisc)) {
		struct sk_buff *skb;

		skb = create_monitor_event(hdev, event);
		if (skb) {
420
			hci_send_to_channel(HCI_CHANNEL_MONITOR, skb, NULL);
421 422 423 424
			kfree_skb(skb);
		}
	}

425 426 427 428 429 430 431 432 433 434
	/* Send event to sockets */
	ev.event  = event;
	ev.dev_id = hdev->id;
	hci_si_event(NULL, HCI_EV_SI_DEVICE, sizeof(ev), &ev);

	if (event == HCI_DEV_UNREG) {
		struct sock *sk;

		/* Detach sockets from device */
		read_lock(&hci_sk_list.lock);
435
		sk_for_each(sk, &hci_sk_list.head) {
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
			bh_lock_sock_nested(sk);
			if (hci_pi(sk)->hdev == hdev) {
				hci_pi(sk)->hdev = NULL;
				sk->sk_err = EPIPE;
				sk->sk_state = BT_OPEN;
				sk->sk_state_change(sk);

				hci_dev_put(hdev);
			}
			bh_unlock_sock(sk);
		}
		read_unlock(&hci_sk_list.lock);
	}
}

451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
static struct hci_mgmt_chan *__hci_mgmt_chan_find(unsigned short channel)
{
	struct hci_mgmt_chan *c;

	list_for_each_entry(c, &mgmt_chan_list, list) {
		if (c->channel == channel)
			return c;
	}

	return NULL;
}

static struct hci_mgmt_chan *hci_mgmt_chan_find(unsigned short channel)
{
	struct hci_mgmt_chan *c;

	mutex_lock(&mgmt_chan_list_lock);
	c = __hci_mgmt_chan_find(channel);
	mutex_unlock(&mgmt_chan_list_lock);

	return c;
}

int hci_mgmt_chan_register(struct hci_mgmt_chan *c)
{
	if (c->channel < HCI_CHANNEL_CONTROL)
		return -EINVAL;

	mutex_lock(&mgmt_chan_list_lock);
	if (__hci_mgmt_chan_find(c->channel)) {
		mutex_unlock(&mgmt_chan_list_lock);
		return -EALREADY;
	}

	list_add_tail(&c->list, &mgmt_chan_list);

	mutex_unlock(&mgmt_chan_list_lock);

	return 0;
}
EXPORT_SYMBOL(hci_mgmt_chan_register);

void hci_mgmt_chan_unregister(struct hci_mgmt_chan *c)
{
	mutex_lock(&mgmt_chan_list_lock);
	list_del(&c->list);
	mutex_unlock(&mgmt_chan_list_lock);
}
EXPORT_SYMBOL(hci_mgmt_chan_unregister);

L
Linus Torvalds 已提交
501 502 503
static int hci_sock_release(struct socket *sock)
{
	struct sock *sk = sock->sk;
504
	struct hci_dev *hdev;
L
Linus Torvalds 已提交
505 506 507 508 509 510

	BT_DBG("sock %p sk %p", sock, sk);

	if (!sk)
		return 0;

511 512
	hdev = hci_pi(sk)->hdev;

513 514 515
	if (hci_pi(sk)->channel == HCI_CHANNEL_MONITOR)
		atomic_dec(&monitor_promisc);

L
Linus Torvalds 已提交
516 517 518
	bt_sock_unlink(&hci_sk_list, sk);

	if (hdev) {
519
		if (hci_pi(sk)->channel == HCI_CHANNEL_USER) {
520
			mgmt_index_added(hdev);
521
			hci_dev_clear_flag(hdev, HCI_USER_CHANNEL);
522 523 524
			hci_dev_close(hdev->id);
		}

L
Linus Torvalds 已提交
525 526 527 528 529 530 531 532 533 534 535 536 537
		atomic_dec(&hdev->promisc);
		hci_dev_put(hdev);
	}

	sock_orphan(sk);

	skb_queue_purge(&sk->sk_receive_queue);
	skb_queue_purge(&sk->sk_write_queue);

	sock_put(sk);
	return 0;
}

538
static int hci_sock_blacklist_add(struct hci_dev *hdev, void __user *arg)
539 540
{
	bdaddr_t bdaddr;
541
	int err;
542 543 544 545

	if (copy_from_user(&bdaddr, arg, sizeof(bdaddr)))
		return -EFAULT;

546
	hci_dev_lock(hdev);
547

548
	err = hci_bdaddr_list_add(&hdev->blacklist, &bdaddr, BDADDR_BREDR);
549

550
	hci_dev_unlock(hdev);
551 552

	return err;
553 554
}

555
static int hci_sock_blacklist_del(struct hci_dev *hdev, void __user *arg)
556 557
{
	bdaddr_t bdaddr;
558
	int err;
559 560 561 562

	if (copy_from_user(&bdaddr, arg, sizeof(bdaddr)))
		return -EFAULT;

563
	hci_dev_lock(hdev);
564

565
	err = hci_bdaddr_list_del(&hdev->blacklist, &bdaddr, BDADDR_BREDR);
566

567
	hci_dev_unlock(hdev);
568 569

	return err;
570 571
}

572
/* Ioctls that require bound socket */
573 574
static int hci_sock_bound_ioctl(struct sock *sk, unsigned int cmd,
				unsigned long arg)
L
Linus Torvalds 已提交
575 576 577 578 579 580
{
	struct hci_dev *hdev = hci_pi(sk)->hdev;

	if (!hdev)
		return -EBADFD;

581
	if (hci_dev_test_flag(hdev, HCI_USER_CHANNEL))
582 583
		return -EBUSY;

584
	if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED))
585 586
		return -EOPNOTSUPP;

587 588 589
	if (hdev->dev_type != HCI_BREDR)
		return -EOPNOTSUPP;

L
Linus Torvalds 已提交
590 591 592
	switch (cmd) {
	case HCISETRAW:
		if (!capable(CAP_NET_ADMIN))
593
			return -EPERM;
594
		return -EOPNOTSUPP;
L
Linus Torvalds 已提交
595 596

	case HCIGETCONNINFO:
597 598 599 600
		return hci_get_conn_info(hdev, (void __user *) arg);

	case HCIGETAUTHINFO:
		return hci_get_auth_info(hdev, (void __user *) arg);
L
Linus Torvalds 已提交
601

602 603
	case HCIBLOCKADDR:
		if (!capable(CAP_NET_ADMIN))
604
			return -EPERM;
605
		return hci_sock_blacklist_add(hdev, (void __user *) arg);
606 607 608

	case HCIUNBLOCKADDR:
		if (!capable(CAP_NET_ADMIN))
609
			return -EPERM;
610
		return hci_sock_blacklist_del(hdev, (void __user *) arg);
L
Linus Torvalds 已提交
611
	}
612

613
	return -ENOIOCTLCMD;
L
Linus Torvalds 已提交
614 615
}

616 617
static int hci_sock_ioctl(struct socket *sock, unsigned int cmd,
			  unsigned long arg)
L
Linus Torvalds 已提交
618
{
619
	void __user *argp = (void __user *) arg;
620
	struct sock *sk = sock->sk;
L
Linus Torvalds 已提交
621 622 623 624
	int err;

	BT_DBG("cmd %x arg %lx", cmd, arg);

625 626 627 628 629 630 631 632 633
	lock_sock(sk);

	if (hci_pi(sk)->channel != HCI_CHANNEL_RAW) {
		err = -EBADFD;
		goto done;
	}

	release_sock(sk);

L
Linus Torvalds 已提交
634 635 636 637 638 639 640 641 642 643 644 645
	switch (cmd) {
	case HCIGETDEVLIST:
		return hci_get_dev_list(argp);

	case HCIGETDEVINFO:
		return hci_get_dev_info(argp);

	case HCIGETCONNLIST:
		return hci_get_conn_list(argp);

	case HCIDEVUP:
		if (!capable(CAP_NET_ADMIN))
646
			return -EPERM;
L
Linus Torvalds 已提交
647 648 649 650
		return hci_dev_open(arg);

	case HCIDEVDOWN:
		if (!capable(CAP_NET_ADMIN))
651
			return -EPERM;
L
Linus Torvalds 已提交
652 653 654 655
		return hci_dev_close(arg);

	case HCIDEVRESET:
		if (!capable(CAP_NET_ADMIN))
656
			return -EPERM;
L
Linus Torvalds 已提交
657 658 659 660
		return hci_dev_reset(arg);

	case HCIDEVRESTAT:
		if (!capable(CAP_NET_ADMIN))
661
			return -EPERM;
L
Linus Torvalds 已提交
662 663 664 665 666 667 668 669 670 671 672
		return hci_dev_reset_stat(arg);

	case HCISETSCAN:
	case HCISETAUTH:
	case HCISETENCRYPT:
	case HCISETPTYPE:
	case HCISETLINKPOL:
	case HCISETLINKMODE:
	case HCISETACLMTU:
	case HCISETSCOMTU:
		if (!capable(CAP_NET_ADMIN))
673
			return -EPERM;
L
Linus Torvalds 已提交
674 675 676 677 678
		return hci_dev_cmd(cmd, argp);

	case HCIINQUIRY:
		return hci_inquiry(argp);
	}
679 680 681 682 683 684 685 686

	lock_sock(sk);

	err = hci_sock_bound_ioctl(sk, cmd, arg);

done:
	release_sock(sk);
	return err;
L
Linus Torvalds 已提交
687 688
}

689 690
static int hci_sock_bind(struct socket *sock, struct sockaddr *addr,
			 int addr_len)
L
Linus Torvalds 已提交
691
{
692
	struct sockaddr_hci haddr;
L
Linus Torvalds 已提交
693 694
	struct sock *sk = sock->sk;
	struct hci_dev *hdev = NULL;
695
	int len, err = 0;
L
Linus Torvalds 已提交
696 697 698

	BT_DBG("sock %p sk %p", sock, sk);

699 700 701 702 703 704 705 706 707 708
	if (!addr)
		return -EINVAL;

	memset(&haddr, 0, sizeof(haddr));
	len = min_t(unsigned int, sizeof(haddr), addr_len);
	memcpy(&haddr, addr, len);

	if (haddr.hci_family != AF_BLUETOOTH)
		return -EINVAL;

L
Linus Torvalds 已提交
709 710
	lock_sock(sk);

711
	if (sk->sk_state == BT_BOUND) {
L
Linus Torvalds 已提交
712 713 714 715
		err = -EALREADY;
		goto done;
	}

716 717 718 719
	switch (haddr.hci_channel) {
	case HCI_CHANNEL_RAW:
		if (hci_pi(sk)->hdev) {
			err = -EALREADY;
L
Linus Torvalds 已提交
720 721 722
			goto done;
		}

723 724 725 726 727 728 729 730 731 732 733 734 735
		if (haddr.hci_dev != HCI_DEV_NONE) {
			hdev = hci_dev_get(haddr.hci_dev);
			if (!hdev) {
				err = -ENODEV;
				goto done;
			}

			atomic_inc(&hdev->promisc);
		}

		hci_pi(sk)->hdev = hdev;
		break;

736 737 738 739 740 741 742 743 744 745 746
	case HCI_CHANNEL_USER:
		if (hci_pi(sk)->hdev) {
			err = -EALREADY;
			goto done;
		}

		if (haddr.hci_dev == HCI_DEV_NONE) {
			err = -EINVAL;
			goto done;
		}

747
		if (!capable(CAP_NET_ADMIN)) {
748 749 750 751 752 753 754 755 756 757 758 759
			err = -EPERM;
			goto done;
		}

		hdev = hci_dev_get(haddr.hci_dev);
		if (!hdev) {
			err = -ENODEV;
			goto done;
		}

		if (test_bit(HCI_UP, &hdev->flags) ||
		    test_bit(HCI_INIT, &hdev->flags) ||
760 761
		    hci_dev_test_flag(hdev, HCI_SETUP) ||
		    hci_dev_test_flag(hdev, HCI_CONFIG)) {
762 763 764 765 766
			err = -EBUSY;
			hci_dev_put(hdev);
			goto done;
		}

767
		if (hci_dev_test_and_set_flag(hdev, HCI_USER_CHANNEL)) {
768 769 770 771 772
			err = -EUSERS;
			hci_dev_put(hdev);
			goto done;
		}

773
		mgmt_index_removed(hdev);
774 775 776

		err = hci_dev_open(hdev->id);
		if (err) {
777
			hci_dev_clear_flag(hdev, HCI_USER_CHANNEL);
778
			mgmt_index_added(hdev);
779 780 781 782 783 784 785 786 787
			hci_dev_put(hdev);
			goto done;
		}

		atomic_inc(&hdev->promisc);

		hci_pi(sk)->hdev = hdev;
		break;

788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803
	case HCI_CHANNEL_MONITOR:
		if (haddr.hci_dev != HCI_DEV_NONE) {
			err = -EINVAL;
			goto done;
		}

		if (!capable(CAP_NET_RAW)) {
			err = -EPERM;
			goto done;
		}

		send_monitor_replay(sk);

		atomic_inc(&monitor_promisc);
		break;

804
	default:
805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820
		if (!hci_mgmt_chan_find(haddr.hci_channel)) {
			err = -EINVAL;
			goto done;
		}

		if (haddr.hci_dev != HCI_DEV_NONE) {
			err = -EINVAL;
			goto done;
		}

		if (!capable(CAP_NET_ADMIN)) {
			err = -EPERM;
			goto done;
		}

		break;
L
Linus Torvalds 已提交
821 822
	}

823

824
	hci_pi(sk)->channel = haddr.hci_channel;
L
Linus Torvalds 已提交
825 826 827 828 829 830 831
	sk->sk_state = BT_BOUND;

done:
	release_sock(sk);
	return err;
}

832 833
static int hci_sock_getname(struct socket *sock, struct sockaddr *addr,
			    int *addr_len, int peer)
L
Linus Torvalds 已提交
834 835 836
{
	struct sockaddr_hci *haddr = (struct sockaddr_hci *) addr;
	struct sock *sk = sock->sk;
837 838
	struct hci_dev *hdev;
	int err = 0;
L
Linus Torvalds 已提交
839 840 841

	BT_DBG("sock %p sk %p", sock, sk);

842 843 844
	if (peer)
		return -EOPNOTSUPP;

L
Linus Torvalds 已提交
845 846
	lock_sock(sk);

847 848 849 850 851 852
	hdev = hci_pi(sk)->hdev;
	if (!hdev) {
		err = -EBADFD;
		goto done;
	}

L
Linus Torvalds 已提交
853 854
	*addr_len = sizeof(*haddr);
	haddr->hci_family = AF_BLUETOOTH;
855
	haddr->hci_dev    = hdev->id;
856
	haddr->hci_channel= hci_pi(sk)->channel;
L
Linus Torvalds 已提交
857

858
done:
L
Linus Torvalds 已提交
859
	release_sock(sk);
860
	return err;
L
Linus Torvalds 已提交
861 862
}

863 864
static void hci_sock_cmsg(struct sock *sk, struct msghdr *msg,
			  struct sk_buff *skb)
L
Linus Torvalds 已提交
865 866 867
{
	__u32 mask = hci_pi(sk)->cmsg_mask;

868 869
	if (mask & HCI_CMSG_DIR) {
		int incoming = bt_cb(skb)->incoming;
870 871
		put_cmsg(msg, SOL_HCI, HCI_CMSG_DIR, sizeof(incoming),
			 &incoming);
872
	}
L
Linus Torvalds 已提交
873

874
	if (mask & HCI_CMSG_TSTAMP) {
875 876 877
#ifdef CONFIG_COMPAT
		struct compat_timeval ctv;
#endif
878
		struct timeval tv;
879 880
		void *data;
		int len;
881 882

		skb_get_timestamp(skb, &tv);
883

884 885 886
		data = &tv;
		len = sizeof(tv);
#ifdef CONFIG_COMPAT
887 888
		if (!COMPAT_USE_64BIT_TIME &&
		    (msg->msg_flags & MSG_CMSG_COMPAT)) {
889 890 891 892 893
			ctv.tv_sec = tv.tv_sec;
			ctv.tv_usec = tv.tv_usec;
			data = &ctv;
			len = sizeof(ctv);
		}
894
#endif
895 896

		put_cmsg(msg, SOL_HCI, HCI_CMSG_TSTAMP, len, data);
897
	}
L
Linus Torvalds 已提交
898
}
899

900 901
static int hci_sock_recvmsg(struct socket *sock, struct msghdr *msg, size_t len,
			    int flags)
L
Linus Torvalds 已提交
902 903 904 905 906 907 908 909 910 911 912 913 914 915
{
	int noblock = flags & MSG_DONTWAIT;
	struct sock *sk = sock->sk;
	struct sk_buff *skb;
	int copied, err;

	BT_DBG("sock %p, sk %p", sock, sk);

	if (flags & (MSG_OOB))
		return -EOPNOTSUPP;

	if (sk->sk_state == BT_CLOSED)
		return 0;

A
Andrei Emeltchenko 已提交
916 917
	skb = skb_recv_datagram(sk, flags, noblock, &err);
	if (!skb)
L
Linus Torvalds 已提交
918 919 920 921 922 923 924 925
		return err;

	copied = skb->len;
	if (len < copied) {
		msg->msg_flags |= MSG_TRUNC;
		copied = len;
	}

926
	skb_reset_transport_header(skb);
927
	err = skb_copy_datagram_msg(skb, 0, msg, copied);
L
Linus Torvalds 已提交
928

929 930 931 932
	switch (hci_pi(sk)->channel) {
	case HCI_CHANNEL_RAW:
		hci_sock_cmsg(sk, msg, skb);
		break;
933
	case HCI_CHANNEL_USER:
934 935 936
	case HCI_CHANNEL_MONITOR:
		sock_recv_timestamp(msg, sk, skb);
		break;
937 938 939 940
	default:
		if (hci_mgmt_chan_find(hci_pi(sk)->channel))
			sock_recv_timestamp(msg, sk, skb);
		break;
941
	}
L
Linus Torvalds 已提交
942 943 944 945 946 947

	skb_free_datagram(sk, skb);

	return err ? : copied;
}

948 949
static int hci_sock_sendmsg(struct socket *sock, struct msghdr *msg,
			    size_t len)
L
Linus Torvalds 已提交
950 951
{
	struct sock *sk = sock->sk;
952
	struct hci_mgmt_chan *chan;
L
Linus Torvalds 已提交
953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969
	struct hci_dev *hdev;
	struct sk_buff *skb;
	int err;

	BT_DBG("sock %p sk %p", sock, sk);

	if (msg->msg_flags & MSG_OOB)
		return -EOPNOTSUPP;

	if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_NOSIGNAL|MSG_ERRQUEUE))
		return -EINVAL;

	if (len < 4 || len > HCI_MAX_FRAME_SIZE)
		return -EINVAL;

	lock_sock(sk);

970 971
	switch (hci_pi(sk)->channel) {
	case HCI_CHANNEL_RAW:
972
	case HCI_CHANNEL_USER:
973
		break;
974 975 976
	case HCI_CHANNEL_MONITOR:
		err = -EOPNOTSUPP;
		goto done;
977
	default:
978 979 980
		mutex_lock(&mgmt_chan_list_lock);
		chan = __hci_mgmt_chan_find(hci_pi(sk)->channel);
		if (chan)
981
			err = mgmt_control(chan, sk, msg, len);
982 983 984 985
		else
			err = -EINVAL;

		mutex_unlock(&mgmt_chan_list_lock);
986 987 988
		goto done;
	}

A
Andrei Emeltchenko 已提交
989 990
	hdev = hci_pi(sk)->hdev;
	if (!hdev) {
L
Linus Torvalds 已提交
991 992 993 994
		err = -EBADFD;
		goto done;
	}

995 996 997 998 999
	if (!test_bit(HCI_UP, &hdev->flags)) {
		err = -ENETDOWN;
		goto done;
	}

A
Andrei Emeltchenko 已提交
1000 1001
	skb = bt_skb_send_alloc(sk, len, msg->msg_flags & MSG_DONTWAIT, &err);
	if (!skb)
L
Linus Torvalds 已提交
1002 1003
		goto done;

A
Al Viro 已提交
1004
	if (memcpy_from_msg(skb_put(skb, len), msg, len)) {
L
Linus Torvalds 已提交
1005 1006 1007 1008
		err = -EFAULT;
		goto drop;
	}

1009
	bt_cb(skb)->pkt_type = *((unsigned char *) skb->data);
L
Linus Torvalds 已提交
1010 1011
	skb_pull(skb, 1);

1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
	if (hci_pi(sk)->channel == HCI_CHANNEL_USER) {
		/* No permission check is needed for user channel
		 * since that gets enforced when binding the socket.
		 *
		 * However check that the packet type is valid.
		 */
		if (bt_cb(skb)->pkt_type != HCI_COMMAND_PKT &&
		    bt_cb(skb)->pkt_type != HCI_ACLDATA_PKT &&
		    bt_cb(skb)->pkt_type != HCI_SCODATA_PKT) {
			err = -EINVAL;
			goto drop;
		}

		skb_queue_tail(&hdev->raw_q, skb);
		queue_work(hdev->workqueue, &hdev->tx_work);
	} else if (bt_cb(skb)->pkt_type == HCI_COMMAND_PKT) {
1028
		u16 opcode = get_unaligned_le16(skb->data);
L
Linus Torvalds 已提交
1029 1030 1031 1032
		u16 ogf = hci_opcode_ogf(opcode);
		u16 ocf = hci_opcode_ocf(opcode);

		if (((ogf > HCI_SFLT_MAX_OGF) ||
1033 1034 1035
		     !hci_test_bit(ocf & HCI_FLT_OCF_BITS,
				   &hci_sec_filter.ocf_mask[ogf])) &&
		    !capable(CAP_NET_RAW)) {
L
Linus Torvalds 已提交
1036 1037 1038 1039
			err = -EPERM;
			goto drop;
		}

1040
		if (ogf == 0x3f) {
L
Linus Torvalds 已提交
1041
			skb_queue_tail(&hdev->raw_q, skb);
1042
			queue_work(hdev->workqueue, &hdev->tx_work);
L
Linus Torvalds 已提交
1043
		} else {
S
Stephen Hemminger 已提交
1044
			/* Stand-alone HCI commands must be flagged as
1045 1046
			 * single-command requests.
			 */
1047
			bt_cb(skb)->req_start = 1;
1048

L
Linus Torvalds 已提交
1049
			skb_queue_tail(&hdev->cmd_q, skb);
1050
			queue_work(hdev->workqueue, &hdev->cmd_work);
L
Linus Torvalds 已提交
1051 1052 1053 1054 1055 1056 1057 1058
		}
	} else {
		if (!capable(CAP_NET_RAW)) {
			err = -EPERM;
			goto drop;
		}

		skb_queue_tail(&hdev->raw_q, skb);
1059
		queue_work(hdev->workqueue, &hdev->tx_work);
L
Linus Torvalds 已提交
1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072
	}

	err = len;

done:
	release_sock(sk);
	return err;

drop:
	kfree_skb(skb);
	goto done;
}

1073 1074
static int hci_sock_setsockopt(struct socket *sock, int level, int optname,
			       char __user *optval, unsigned int len)
L
Linus Torvalds 已提交
1075 1076 1077 1078 1079 1080 1081 1082 1083
{
	struct hci_ufilter uf = { .opcode = 0 };
	struct sock *sk = sock->sk;
	int err = 0, opt = 0;

	BT_DBG("sk %p, opt %d", sk, optname);

	lock_sock(sk);

1084
	if (hci_pi(sk)->channel != HCI_CHANNEL_RAW) {
1085
		err = -EBADFD;
1086 1087 1088
		goto done;
	}

L
Linus Torvalds 已提交
1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114
	switch (optname) {
	case HCI_DATA_DIR:
		if (get_user(opt, (int __user *)optval)) {
			err = -EFAULT;
			break;
		}

		if (opt)
			hci_pi(sk)->cmsg_mask |= HCI_CMSG_DIR;
		else
			hci_pi(sk)->cmsg_mask &= ~HCI_CMSG_DIR;
		break;

	case HCI_TIME_STAMP:
		if (get_user(opt, (int __user *)optval)) {
			err = -EFAULT;
			break;
		}

		if (opt)
			hci_pi(sk)->cmsg_mask |= HCI_CMSG_TSTAMP;
		else
			hci_pi(sk)->cmsg_mask &= ~HCI_CMSG_TSTAMP;
		break;

	case HCI_FILTER:
1115 1116 1117 1118 1119 1120 1121 1122 1123
		{
			struct hci_filter *f = &hci_pi(sk)->filter;

			uf.type_mask = f->type_mask;
			uf.opcode    = f->opcode;
			uf.event_mask[0] = *((u32 *) f->event_mask + 0);
			uf.event_mask[1] = *((u32 *) f->event_mask + 1);
		}

L
Linus Torvalds 已提交
1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143
		len = min_t(unsigned int, len, sizeof(uf));
		if (copy_from_user(&uf, optval, len)) {
			err = -EFAULT;
			break;
		}

		if (!capable(CAP_NET_RAW)) {
			uf.type_mask &= hci_sec_filter.type_mask;
			uf.event_mask[0] &= *((u32 *) hci_sec_filter.event_mask + 0);
			uf.event_mask[1] &= *((u32 *) hci_sec_filter.event_mask + 1);
		}

		{
			struct hci_filter *f = &hci_pi(sk)->filter;

			f->type_mask = uf.type_mask;
			f->opcode    = uf.opcode;
			*((u32 *) f->event_mask + 0) = uf.event_mask[0];
			*((u32 *) f->event_mask + 1) = uf.event_mask[1];
		}
1144
		break;
L
Linus Torvalds 已提交
1145 1146 1147 1148 1149 1150

	default:
		err = -ENOPROTOOPT;
		break;
	}

1151
done:
L
Linus Torvalds 已提交
1152 1153 1154 1155
	release_sock(sk);
	return err;
}

1156 1157
static int hci_sock_getsockopt(struct socket *sock, int level, int optname,
			       char __user *optval, int __user *optlen)
L
Linus Torvalds 已提交
1158 1159 1160
{
	struct hci_ufilter uf;
	struct sock *sk = sock->sk;
1161 1162 1163
	int len, opt, err = 0;

	BT_DBG("sk %p, opt %d", sk, optname);
L
Linus Torvalds 已提交
1164 1165 1166 1167

	if (get_user(len, optlen))
		return -EFAULT;

1168 1169 1170
	lock_sock(sk);

	if (hci_pi(sk)->channel != HCI_CHANNEL_RAW) {
1171
		err = -EBADFD;
1172 1173 1174
		goto done;
	}

L
Linus Torvalds 已提交
1175 1176 1177 1178
	switch (optname) {
	case HCI_DATA_DIR:
		if (hci_pi(sk)->cmsg_mask & HCI_CMSG_DIR)
			opt = 1;
1179
		else
L
Linus Torvalds 已提交
1180 1181 1182
			opt = 0;

		if (put_user(opt, optval))
1183
			err = -EFAULT;
L
Linus Torvalds 已提交
1184 1185 1186 1187 1188
		break;

	case HCI_TIME_STAMP:
		if (hci_pi(sk)->cmsg_mask & HCI_CMSG_TSTAMP)
			opt = 1;
1189
		else
L
Linus Torvalds 已提交
1190 1191 1192
			opt = 0;

		if (put_user(opt, optval))
1193
			err = -EFAULT;
L
Linus Torvalds 已提交
1194 1195 1196 1197 1198 1199
		break;

	case HCI_FILTER:
		{
			struct hci_filter *f = &hci_pi(sk)->filter;

1200
			memset(&uf, 0, sizeof(uf));
L
Linus Torvalds 已提交
1201 1202 1203 1204 1205 1206 1207 1208
			uf.type_mask = f->type_mask;
			uf.opcode    = f->opcode;
			uf.event_mask[0] = *((u32 *) f->event_mask + 0);
			uf.event_mask[1] = *((u32 *) f->event_mask + 1);
		}

		len = min_t(unsigned int, len, sizeof(uf));
		if (copy_to_user(optval, &uf, len))
1209
			err = -EFAULT;
L
Linus Torvalds 已提交
1210 1211 1212
		break;

	default:
1213
		err = -ENOPROTOOPT;
L
Linus Torvalds 已提交
1214 1215 1216
		break;
	}

1217 1218 1219
done:
	release_sock(sk);
	return err;
L
Linus Torvalds 已提交
1220 1221
}

1222
static const struct proto_ops hci_sock_ops = {
L
Linus Torvalds 已提交
1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247
	.family		= PF_BLUETOOTH,
	.owner		= THIS_MODULE,
	.release	= hci_sock_release,
	.bind		= hci_sock_bind,
	.getname	= hci_sock_getname,
	.sendmsg	= hci_sock_sendmsg,
	.recvmsg	= hci_sock_recvmsg,
	.ioctl		= hci_sock_ioctl,
	.poll		= datagram_poll,
	.listen		= sock_no_listen,
	.shutdown	= sock_no_shutdown,
	.setsockopt	= hci_sock_setsockopt,
	.getsockopt	= hci_sock_getsockopt,
	.connect	= sock_no_connect,
	.socketpair	= sock_no_socketpair,
	.accept		= sock_no_accept,
	.mmap		= sock_no_mmap
};

static struct proto hci_sk_proto = {
	.name		= "HCI",
	.owner		= THIS_MODULE,
	.obj_size	= sizeof(struct hci_pinfo)
};

1248 1249
static int hci_sock_create(struct net *net, struct socket *sock, int protocol,
			   int kern)
L
Linus Torvalds 已提交
1250 1251 1252 1253 1254 1255 1256 1257 1258 1259
{
	struct sock *sk;

	BT_DBG("sock %p", sock);

	if (sock->type != SOCK_RAW)
		return -ESOCKTNOSUPPORT;

	sock->ops = &hci_sock_ops;

1260
	sk = sk_alloc(net, PF_BLUETOOTH, GFP_ATOMIC, &hci_sk_proto);
L
Linus Torvalds 已提交
1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276
	if (!sk)
		return -ENOMEM;

	sock_init_data(sock, sk);

	sock_reset_flag(sk, SOCK_ZAPPED);

	sk->sk_protocol = protocol;

	sock->state = SS_UNCONNECTED;
	sk->sk_state = BT_OPEN;

	bt_sock_link(&hci_sk_list, sk);
	return 0;
}

1277
static const struct net_proto_family hci_sock_family_ops = {
L
Linus Torvalds 已提交
1278 1279 1280 1281 1282 1283 1284 1285 1286
	.family	= PF_BLUETOOTH,
	.owner	= THIS_MODULE,
	.create	= hci_sock_create,
};

int __init hci_sock_init(void)
{
	int err;

1287 1288
	BUILD_BUG_ON(sizeof(struct sockaddr_hci) > sizeof(struct sockaddr));

L
Linus Torvalds 已提交
1289 1290 1291 1292 1293
	err = proto_register(&hci_sk_proto, 0);
	if (err < 0)
		return err;

	err = bt_sock_register(BTPROTO_HCI, &hci_sock_family_ops);
1294 1295
	if (err < 0) {
		BT_ERR("HCI socket registration failed");
L
Linus Torvalds 已提交
1296
		goto error;
1297 1298
	}

1299
	err = bt_procfs_init(&init_net, "hci", &hci_sk_list, NULL);
1300 1301 1302 1303 1304
	if (err < 0) {
		BT_ERR("Failed to create HCI proc file");
		bt_sock_unregister(BTPROTO_HCI);
		goto error;
	}
L
Linus Torvalds 已提交
1305 1306 1307 1308 1309 1310 1311 1312 1313 1314

	BT_INFO("HCI socket layer initialized");

	return 0;

error:
	proto_unregister(&hci_sk_proto);
	return err;
}

1315
void hci_sock_cleanup(void)
L
Linus Torvalds 已提交
1316
{
1317
	bt_procfs_cleanup(&init_net, "hci");
1318
	bt_sock_unregister(BTPROTO_HCI);
L
Linus Torvalds 已提交
1319 1320
	proto_unregister(&hci_sk_proto);
}