x86/microcode_amd: Add support for CPU family specific container files
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / bluetooth / mgmt.c
blob2c76342968660f97a1911783f26d60a7a96b715a
1 /*
2 BlueZ - Bluetooth protocol stack for Linux
3 Copyright (C) 2010 Nokia Corporation
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License version 2 as
7 published by the Free Software Foundation;
9 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
10 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
11 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
12 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
13 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
14 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
19 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
20 SOFTWARE IS DISCLAIMED.
23 /* Bluetooth HCI Management interface */
25 #include <linux/uaccess.h>
26 #include <linux/module.h>
27 #include <asm/unaligned.h>
29 #include <net/bluetooth/bluetooth.h>
30 #include <net/bluetooth/hci_core.h>
31 #include <net/bluetooth/mgmt.h>
33 #define MGMT_VERSION 0
34 #define MGMT_REVISION 1
36 struct pending_cmd {
37 struct list_head list;
38 __u16 opcode;
39 int index;
40 void *param;
41 struct sock *sk;
42 void *user_data;
45 static LIST_HEAD(cmd_list);
47 static int cmd_status(struct sock *sk, u16 index, u16 cmd, u8 status)
49 struct sk_buff *skb;
50 struct mgmt_hdr *hdr;
51 struct mgmt_ev_cmd_status *ev;
53 BT_DBG("sock %p, index %u, cmd %u, status %u", sk, index, cmd, status);
55 skb = alloc_skb(sizeof(*hdr) + sizeof(*ev), GFP_ATOMIC);
56 if (!skb)
57 return -ENOMEM;
59 hdr = (void *) skb_put(skb, sizeof(*hdr));
61 hdr->opcode = cpu_to_le16(MGMT_EV_CMD_STATUS);
62 hdr->index = cpu_to_le16(index);
63 hdr->len = cpu_to_le16(sizeof(*ev));
65 ev = (void *) skb_put(skb, sizeof(*ev));
66 ev->status = status;
67 put_unaligned_le16(cmd, &ev->opcode);
69 if (sock_queue_rcv_skb(sk, skb) < 0)
70 kfree_skb(skb);
72 return 0;
75 static int cmd_complete(struct sock *sk, u16 index, u16 cmd, void *rp,
76 size_t rp_len)
78 struct sk_buff *skb;
79 struct mgmt_hdr *hdr;
80 struct mgmt_ev_cmd_complete *ev;
82 BT_DBG("sock %p", sk);
84 skb = alloc_skb(sizeof(*hdr) + sizeof(*ev) + rp_len, GFP_ATOMIC);
85 if (!skb)
86 return -ENOMEM;
88 hdr = (void *) skb_put(skb, sizeof(*hdr));
90 hdr->opcode = cpu_to_le16(MGMT_EV_CMD_COMPLETE);
91 hdr->index = cpu_to_le16(index);
92 hdr->len = cpu_to_le16(sizeof(*ev) + rp_len);
94 ev = (void *) skb_put(skb, sizeof(*ev) + rp_len);
95 put_unaligned_le16(cmd, &ev->opcode);
97 if (rp)
98 memcpy(ev->data, rp, rp_len);
100 if (sock_queue_rcv_skb(sk, skb) < 0)
101 kfree_skb(skb);
103 return 0;
106 static int read_version(struct sock *sk)
108 struct mgmt_rp_read_version rp;
110 BT_DBG("sock %p", sk);
112 rp.version = MGMT_VERSION;
113 put_unaligned_le16(MGMT_REVISION, &rp.revision);
115 return cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_VERSION, &rp,
116 sizeof(rp));
119 static int read_index_list(struct sock *sk)
121 struct mgmt_rp_read_index_list *rp;
122 struct list_head *p;
123 size_t rp_len;
124 u16 count;
125 int i, err;
127 BT_DBG("sock %p", sk);
129 read_lock(&hci_dev_list_lock);
131 count = 0;
132 list_for_each(p, &hci_dev_list) {
133 count++;
136 rp_len = sizeof(*rp) + (2 * count);
137 rp = kmalloc(rp_len, GFP_ATOMIC);
138 if (!rp) {
139 read_unlock(&hci_dev_list_lock);
140 return -ENOMEM;
143 put_unaligned_le16(count, &rp->num_controllers);
145 i = 0;
146 list_for_each(p, &hci_dev_list) {
147 struct hci_dev *d = list_entry(p, struct hci_dev, list);
149 hci_del_off_timer(d);
151 if (test_bit(HCI_SETUP, &d->flags))
152 continue;
154 put_unaligned_le16(d->id, &rp->index[i++]);
155 BT_DBG("Added hci%u", d->id);
158 read_unlock(&hci_dev_list_lock);
160 err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST, rp,
161 rp_len);
163 kfree(rp);
165 return err;
168 static int read_controller_info(struct sock *sk, u16 index)
170 struct mgmt_rp_read_info rp;
171 struct hci_dev *hdev;
173 BT_DBG("sock %p hci%u", sk, index);
175 hdev = hci_dev_get(index);
176 if (!hdev)
177 return cmd_status(sk, index, MGMT_OP_READ_INFO, ENODEV);
179 hci_del_off_timer(hdev);
181 hci_dev_lock_bh(hdev);
183 set_bit(HCI_MGMT, &hdev->flags);
185 memset(&rp, 0, sizeof(rp));
187 rp.type = hdev->dev_type;
189 rp.powered = test_bit(HCI_UP, &hdev->flags);
190 rp.connectable = test_bit(HCI_PSCAN, &hdev->flags);
191 rp.discoverable = test_bit(HCI_ISCAN, &hdev->flags);
192 rp.pairable = test_bit(HCI_PSCAN, &hdev->flags);
194 if (test_bit(HCI_AUTH, &hdev->flags))
195 rp.sec_mode = 3;
196 else if (hdev->ssp_mode > 0)
197 rp.sec_mode = 4;
198 else
199 rp.sec_mode = 2;
201 bacpy(&rp.bdaddr, &hdev->bdaddr);
202 memcpy(rp.features, hdev->features, 8);
203 memcpy(rp.dev_class, hdev->dev_class, 3);
204 put_unaligned_le16(hdev->manufacturer, &rp.manufacturer);
205 rp.hci_ver = hdev->hci_ver;
206 put_unaligned_le16(hdev->hci_rev, &rp.hci_rev);
208 memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));
210 hci_dev_unlock_bh(hdev);
211 hci_dev_put(hdev);
213 return cmd_complete(sk, index, MGMT_OP_READ_INFO, &rp, sizeof(rp));
216 static void mgmt_pending_free(struct pending_cmd *cmd)
218 sock_put(cmd->sk);
219 kfree(cmd->param);
220 kfree(cmd);
223 static struct pending_cmd *mgmt_pending_add(struct sock *sk, u16 opcode,
224 u16 index, void *data, u16 len)
226 struct pending_cmd *cmd;
228 cmd = kmalloc(sizeof(*cmd), GFP_ATOMIC);
229 if (!cmd)
230 return NULL;
232 cmd->opcode = opcode;
233 cmd->index = index;
235 cmd->param = kmalloc(len, GFP_ATOMIC);
236 if (!cmd->param) {
237 kfree(cmd);
238 return NULL;
241 if (data)
242 memcpy(cmd->param, data, len);
244 cmd->sk = sk;
245 sock_hold(sk);
247 list_add(&cmd->list, &cmd_list);
249 return cmd;
252 static void mgmt_pending_foreach(u16 opcode, int index,
253 void (*cb)(struct pending_cmd *cmd, void *data),
254 void *data)
256 struct list_head *p, *n;
258 list_for_each_safe(p, n, &cmd_list) {
259 struct pending_cmd *cmd;
261 cmd = list_entry(p, struct pending_cmd, list);
263 if (cmd->opcode != opcode)
264 continue;
266 if (index >= 0 && cmd->index != index)
267 continue;
269 cb(cmd, data);
273 static struct pending_cmd *mgmt_pending_find(u16 opcode, int index)
275 struct list_head *p;
277 list_for_each(p, &cmd_list) {
278 struct pending_cmd *cmd;
280 cmd = list_entry(p, struct pending_cmd, list);
282 if (cmd->opcode != opcode)
283 continue;
285 if (index >= 0 && cmd->index != index)
286 continue;
288 return cmd;
291 return NULL;
294 static void mgmt_pending_remove(struct pending_cmd *cmd)
296 list_del(&cmd->list);
297 mgmt_pending_free(cmd);
300 static int set_powered(struct sock *sk, u16 index, unsigned char *data, u16 len)
302 struct mgmt_mode *cp;
303 struct hci_dev *hdev;
304 struct pending_cmd *cmd;
305 int err, up;
307 cp = (void *) data;
309 BT_DBG("request for hci%u", index);
311 if (len != sizeof(*cp))
312 return cmd_status(sk, index, MGMT_OP_SET_POWERED, EINVAL);
314 hdev = hci_dev_get(index);
315 if (!hdev)
316 return cmd_status(sk, index, MGMT_OP_SET_POWERED, ENODEV);
318 hci_dev_lock_bh(hdev);
320 up = test_bit(HCI_UP, &hdev->flags);
321 if ((cp->val && up) || (!cp->val && !up)) {
322 err = cmd_status(sk, index, MGMT_OP_SET_POWERED, EALREADY);
323 goto failed;
326 if (mgmt_pending_find(MGMT_OP_SET_POWERED, index)) {
327 err = cmd_status(sk, index, MGMT_OP_SET_POWERED, EBUSY);
328 goto failed;
331 cmd = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, index, data, len);
332 if (!cmd) {
333 err = -ENOMEM;
334 goto failed;
337 if (cp->val)
338 queue_work(hdev->workqueue, &hdev->power_on);
339 else
340 queue_work(hdev->workqueue, &hdev->power_off);
342 err = 0;
344 failed:
345 hci_dev_unlock_bh(hdev);
346 hci_dev_put(hdev);
347 return err;
350 static int set_discoverable(struct sock *sk, u16 index, unsigned char *data,
351 u16 len)
353 struct mgmt_mode *cp;
354 struct hci_dev *hdev;
355 struct pending_cmd *cmd;
356 u8 scan;
357 int err;
359 cp = (void *) data;
361 BT_DBG("request for hci%u", index);
363 if (len != sizeof(*cp))
364 return cmd_status(sk, index, MGMT_OP_SET_DISCOVERABLE, EINVAL);
366 hdev = hci_dev_get(index);
367 if (!hdev)
368 return cmd_status(sk, index, MGMT_OP_SET_DISCOVERABLE, ENODEV);
370 hci_dev_lock_bh(hdev);
372 if (!test_bit(HCI_UP, &hdev->flags)) {
373 err = cmd_status(sk, index, MGMT_OP_SET_DISCOVERABLE, ENETDOWN);
374 goto failed;
377 if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, index) ||
378 mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, index)) {
379 err = cmd_status(sk, index, MGMT_OP_SET_DISCOVERABLE, EBUSY);
380 goto failed;
383 if (cp->val == test_bit(HCI_ISCAN, &hdev->flags) &&
384 test_bit(HCI_PSCAN, &hdev->flags)) {
385 err = cmd_status(sk, index, MGMT_OP_SET_DISCOVERABLE, EALREADY);
386 goto failed;
389 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, index, data, len);
390 if (!cmd) {
391 err = -ENOMEM;
392 goto failed;
395 scan = SCAN_PAGE;
397 if (cp->val)
398 scan |= SCAN_INQUIRY;
400 err = hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
401 if (err < 0)
402 mgmt_pending_remove(cmd);
404 failed:
405 hci_dev_unlock_bh(hdev);
406 hci_dev_put(hdev);
408 return err;
411 static int set_connectable(struct sock *sk, u16 index, unsigned char *data,
412 u16 len)
414 struct mgmt_mode *cp;
415 struct hci_dev *hdev;
416 struct pending_cmd *cmd;
417 u8 scan;
418 int err;
420 cp = (void *) data;
422 BT_DBG("request for hci%u", index);
424 if (len != sizeof(*cp))
425 return cmd_status(sk, index, MGMT_OP_SET_CONNECTABLE, EINVAL);
427 hdev = hci_dev_get(index);
428 if (!hdev)
429 return cmd_status(sk, index, MGMT_OP_SET_CONNECTABLE, ENODEV);
431 hci_dev_lock_bh(hdev);
433 if (!test_bit(HCI_UP, &hdev->flags)) {
434 err = cmd_status(sk, index, MGMT_OP_SET_CONNECTABLE, ENETDOWN);
435 goto failed;
438 if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, index) ||
439 mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, index)) {
440 err = cmd_status(sk, index, MGMT_OP_SET_CONNECTABLE, EBUSY);
441 goto failed;
444 if (cp->val == test_bit(HCI_PSCAN, &hdev->flags)) {
445 err = cmd_status(sk, index, MGMT_OP_SET_CONNECTABLE, EALREADY);
446 goto failed;
449 cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, index, data, len);
450 if (!cmd) {
451 err = -ENOMEM;
452 goto failed;
455 if (cp->val)
456 scan = SCAN_PAGE;
457 else
458 scan = 0;
460 err = hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
461 if (err < 0)
462 mgmt_pending_remove(cmd);
464 failed:
465 hci_dev_unlock_bh(hdev);
466 hci_dev_put(hdev);
468 return err;
471 static int mgmt_event(u16 event, u16 index, void *data, u16 data_len,
472 struct sock *skip_sk)
474 struct sk_buff *skb;
475 struct mgmt_hdr *hdr;
477 skb = alloc_skb(sizeof(*hdr) + data_len, GFP_ATOMIC);
478 if (!skb)
479 return -ENOMEM;
481 bt_cb(skb)->channel = HCI_CHANNEL_CONTROL;
483 hdr = (void *) skb_put(skb, sizeof(*hdr));
484 hdr->opcode = cpu_to_le16(event);
485 hdr->index = cpu_to_le16(index);
486 hdr->len = cpu_to_le16(data_len);
488 if (data)
489 memcpy(skb_put(skb, data_len), data, data_len);
491 hci_send_to_sock(NULL, skb, skip_sk);
492 kfree_skb(skb);
494 return 0;
497 static int send_mode_rsp(struct sock *sk, u16 opcode, u16 index, u8 val)
499 struct mgmt_mode rp;
501 rp.val = val;
503 return cmd_complete(sk, index, opcode, &rp, sizeof(rp));
506 static int set_pairable(struct sock *sk, u16 index, unsigned char *data,
507 u16 len)
509 struct mgmt_mode *cp, ev;
510 struct hci_dev *hdev;
511 int err;
513 cp = (void *) data;
515 BT_DBG("request for hci%u", index);
517 if (len != sizeof(*cp))
518 return cmd_status(sk, index, MGMT_OP_SET_PAIRABLE, EINVAL);
520 hdev = hci_dev_get(index);
521 if (!hdev)
522 return cmd_status(sk, index, MGMT_OP_SET_PAIRABLE, ENODEV);
524 hci_dev_lock_bh(hdev);
526 if (cp->val)
527 set_bit(HCI_PAIRABLE, &hdev->flags);
528 else
529 clear_bit(HCI_PAIRABLE, &hdev->flags);
531 err = send_mode_rsp(sk, MGMT_OP_SET_PAIRABLE, index, cp->val);
532 if (err < 0)
533 goto failed;
535 ev.val = cp->val;
537 err = mgmt_event(MGMT_EV_PAIRABLE, index, &ev, sizeof(ev), sk);
539 failed:
540 hci_dev_unlock_bh(hdev);
541 hci_dev_put(hdev);
543 return err;
546 #define EIR_FLAGS 0x01 /* flags */
547 #define EIR_UUID16_SOME 0x02 /* 16-bit UUID, more available */
548 #define EIR_UUID16_ALL 0x03 /* 16-bit UUID, all listed */
549 #define EIR_UUID32_SOME 0x04 /* 32-bit UUID, more available */
550 #define EIR_UUID32_ALL 0x05 /* 32-bit UUID, all listed */
551 #define EIR_UUID128_SOME 0x06 /* 128-bit UUID, more available */
552 #define EIR_UUID128_ALL 0x07 /* 128-bit UUID, all listed */
553 #define EIR_NAME_SHORT 0x08 /* shortened local name */
554 #define EIR_NAME_COMPLETE 0x09 /* complete local name */
555 #define EIR_TX_POWER 0x0A /* transmit power level */
556 #define EIR_DEVICE_ID 0x10 /* device ID */
558 #define PNP_INFO_SVCLASS_ID 0x1200
560 static u8 bluetooth_base_uuid[] = {
561 0xFB, 0x34, 0x9B, 0x5F, 0x80, 0x00, 0x00, 0x80,
562 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
565 static u16 get_uuid16(u8 *uuid128)
567 u32 val;
568 int i;
570 for (i = 0; i < 12; i++) {
571 if (bluetooth_base_uuid[i] != uuid128[i])
572 return 0;
575 memcpy(&val, &uuid128[12], 4);
577 val = le32_to_cpu(val);
578 if (val > 0xffff)
579 return 0;
581 return (u16) val;
584 static void create_eir(struct hci_dev *hdev, u8 *data)
586 u8 *ptr = data;
587 u16 eir_len = 0;
588 u16 uuid16_list[HCI_MAX_EIR_LENGTH / sizeof(u16)];
589 int i, truncated = 0;
590 struct list_head *p;
591 size_t name_len;
593 name_len = strlen(hdev->dev_name);
595 if (name_len > 0) {
596 /* EIR Data type */
597 if (name_len > 48) {
598 name_len = 48;
599 ptr[1] = EIR_NAME_SHORT;
600 } else
601 ptr[1] = EIR_NAME_COMPLETE;
603 /* EIR Data length */
604 ptr[0] = name_len + 1;
606 memcpy(ptr + 2, hdev->dev_name, name_len);
608 eir_len += (name_len + 2);
609 ptr += (name_len + 2);
612 memset(uuid16_list, 0, sizeof(uuid16_list));
614 /* Group all UUID16 types */
615 list_for_each(p, &hdev->uuids) {
616 struct bt_uuid *uuid = list_entry(p, struct bt_uuid, list);
617 u16 uuid16;
619 uuid16 = get_uuid16(uuid->uuid);
620 if (uuid16 == 0)
621 return;
623 if (uuid16 < 0x1100)
624 continue;
626 if (uuid16 == PNP_INFO_SVCLASS_ID)
627 continue;
629 /* Stop if not enough space to put next UUID */
630 if (eir_len + 2 + sizeof(u16) > HCI_MAX_EIR_LENGTH) {
631 truncated = 1;
632 break;
635 /* Check for duplicates */
636 for (i = 0; uuid16_list[i] != 0; i++)
637 if (uuid16_list[i] == uuid16)
638 break;
640 if (uuid16_list[i] == 0) {
641 uuid16_list[i] = uuid16;
642 eir_len += sizeof(u16);
646 if (uuid16_list[0] != 0) {
647 u8 *length = ptr;
649 /* EIR Data type */
650 ptr[1] = truncated ? EIR_UUID16_SOME : EIR_UUID16_ALL;
652 ptr += 2;
653 eir_len += 2;
655 for (i = 0; uuid16_list[i] != 0; i++) {
656 *ptr++ = (uuid16_list[i] & 0x00ff);
657 *ptr++ = (uuid16_list[i] & 0xff00) >> 8;
660 /* EIR Data length */
661 *length = (i * sizeof(u16)) + 1;
665 static int update_eir(struct hci_dev *hdev)
667 struct hci_cp_write_eir cp;
669 if (!(hdev->features[6] & LMP_EXT_INQ))
670 return 0;
672 if (hdev->ssp_mode == 0)
673 return 0;
675 if (test_bit(HCI_SERVICE_CACHE, &hdev->flags))
676 return 0;
678 memset(&cp, 0, sizeof(cp));
680 create_eir(hdev, cp.data);
682 if (memcmp(cp.data, hdev->eir, sizeof(cp.data)) == 0)
683 return 0;
685 memcpy(hdev->eir, cp.data, sizeof(cp.data));
687 return hci_send_cmd(hdev, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
690 static u8 get_service_classes(struct hci_dev *hdev)
692 struct list_head *p;
693 u8 val = 0;
695 list_for_each(p, &hdev->uuids) {
696 struct bt_uuid *uuid = list_entry(p, struct bt_uuid, list);
698 val |= uuid->svc_hint;
701 return val;
704 static int update_class(struct hci_dev *hdev)
706 u8 cod[3];
708 BT_DBG("%s", hdev->name);
710 if (test_bit(HCI_SERVICE_CACHE, &hdev->flags))
711 return 0;
713 cod[0] = hdev->minor_class;
714 cod[1] = hdev->major_class;
715 cod[2] = get_service_classes(hdev);
717 if (memcmp(cod, hdev->dev_class, 3) == 0)
718 return 0;
720 return hci_send_cmd(hdev, HCI_OP_WRITE_CLASS_OF_DEV, sizeof(cod), cod);
723 static int add_uuid(struct sock *sk, u16 index, unsigned char *data, u16 len)
725 struct mgmt_cp_add_uuid *cp;
726 struct hci_dev *hdev;
727 struct bt_uuid *uuid;
728 int err;
730 cp = (void *) data;
732 BT_DBG("request for hci%u", index);
734 if (len != sizeof(*cp))
735 return cmd_status(sk, index, MGMT_OP_ADD_UUID, EINVAL);
737 hdev = hci_dev_get(index);
738 if (!hdev)
739 return cmd_status(sk, index, MGMT_OP_ADD_UUID, ENODEV);
741 hci_dev_lock_bh(hdev);
743 uuid = kmalloc(sizeof(*uuid), GFP_ATOMIC);
744 if (!uuid) {
745 err = -ENOMEM;
746 goto failed;
749 memcpy(uuid->uuid, cp->uuid, 16);
750 uuid->svc_hint = cp->svc_hint;
752 list_add(&uuid->list, &hdev->uuids);
754 err = update_class(hdev);
755 if (err < 0)
756 goto failed;
758 err = update_eir(hdev);
759 if (err < 0)
760 goto failed;
762 err = cmd_complete(sk, index, MGMT_OP_ADD_UUID, NULL, 0);
764 failed:
765 hci_dev_unlock_bh(hdev);
766 hci_dev_put(hdev);
768 return err;
771 static int remove_uuid(struct sock *sk, u16 index, unsigned char *data, u16 len)
773 struct list_head *p, *n;
774 struct mgmt_cp_remove_uuid *cp;
775 struct hci_dev *hdev;
776 u8 bt_uuid_any[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
777 int err, found;
779 cp = (void *) data;
781 BT_DBG("request for hci%u", index);
783 if (len != sizeof(*cp))
784 return cmd_status(sk, index, MGMT_OP_REMOVE_UUID, EINVAL);
786 hdev = hci_dev_get(index);
787 if (!hdev)
788 return cmd_status(sk, index, MGMT_OP_REMOVE_UUID, ENODEV);
790 hci_dev_lock_bh(hdev);
792 if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
793 err = hci_uuids_clear(hdev);
794 goto unlock;
797 found = 0;
799 list_for_each_safe(p, n, &hdev->uuids) {
800 struct bt_uuid *match = list_entry(p, struct bt_uuid, list);
802 if (memcmp(match->uuid, cp->uuid, 16) != 0)
803 continue;
805 list_del(&match->list);
806 found++;
809 if (found == 0) {
810 err = cmd_status(sk, index, MGMT_OP_REMOVE_UUID, ENOENT);
811 goto unlock;
814 err = update_class(hdev);
815 if (err < 0)
816 goto unlock;
818 err = update_eir(hdev);
819 if (err < 0)
820 goto unlock;
822 err = cmd_complete(sk, index, MGMT_OP_REMOVE_UUID, NULL, 0);
824 unlock:
825 hci_dev_unlock_bh(hdev);
826 hci_dev_put(hdev);
828 return err;
831 static int set_dev_class(struct sock *sk, u16 index, unsigned char *data,
832 u16 len)
834 struct hci_dev *hdev;
835 struct mgmt_cp_set_dev_class *cp;
836 int err;
838 cp = (void *) data;
840 BT_DBG("request for hci%u", index);
842 if (len != sizeof(*cp))
843 return cmd_status(sk, index, MGMT_OP_SET_DEV_CLASS, EINVAL);
845 hdev = hci_dev_get(index);
846 if (!hdev)
847 return cmd_status(sk, index, MGMT_OP_SET_DEV_CLASS, ENODEV);
849 hci_dev_lock_bh(hdev);
851 hdev->major_class = cp->major;
852 hdev->minor_class = cp->minor;
854 err = update_class(hdev);
856 if (err == 0)
857 err = cmd_complete(sk, index, MGMT_OP_SET_DEV_CLASS, NULL, 0);
859 hci_dev_unlock_bh(hdev);
860 hci_dev_put(hdev);
862 return err;
865 static int set_service_cache(struct sock *sk, u16 index, unsigned char *data,
866 u16 len)
868 struct hci_dev *hdev;
869 struct mgmt_cp_set_service_cache *cp;
870 int err;
872 cp = (void *) data;
874 if (len != sizeof(*cp))
875 return cmd_status(sk, index, MGMT_OP_SET_SERVICE_CACHE, EINVAL);
877 hdev = hci_dev_get(index);
878 if (!hdev)
879 return cmd_status(sk, index, MGMT_OP_SET_SERVICE_CACHE, ENODEV);
881 hci_dev_lock_bh(hdev);
883 BT_DBG("hci%u enable %d", index, cp->enable);
885 if (cp->enable) {
886 set_bit(HCI_SERVICE_CACHE, &hdev->flags);
887 err = 0;
888 } else {
889 clear_bit(HCI_SERVICE_CACHE, &hdev->flags);
890 err = update_class(hdev);
891 if (err == 0)
892 err = update_eir(hdev);
895 if (err == 0)
896 err = cmd_complete(sk, index, MGMT_OP_SET_SERVICE_CACHE, NULL,
899 hci_dev_unlock_bh(hdev);
900 hci_dev_put(hdev);
902 return err;
905 static int load_keys(struct sock *sk, u16 index, unsigned char *data, u16 len)
907 struct hci_dev *hdev;
908 struct mgmt_cp_load_keys *cp;
909 u16 key_count, expected_len;
910 int i;
912 cp = (void *) data;
914 if (len < sizeof(*cp))
915 return -EINVAL;
917 key_count = get_unaligned_le16(&cp->key_count);
919 expected_len = sizeof(*cp) + key_count * sizeof(struct mgmt_key_info);
920 if (expected_len != len) {
921 BT_ERR("load_keys: expected %u bytes, got %u bytes",
922 len, expected_len);
923 return -EINVAL;
926 hdev = hci_dev_get(index);
927 if (!hdev)
928 return cmd_status(sk, index, MGMT_OP_LOAD_KEYS, ENODEV);
930 BT_DBG("hci%u debug_keys %u key_count %u", index, cp->debug_keys,
931 key_count);
933 hci_dev_lock_bh(hdev);
935 hci_link_keys_clear(hdev);
937 set_bit(HCI_LINK_KEYS, &hdev->flags);
939 if (cp->debug_keys)
940 set_bit(HCI_DEBUG_KEYS, &hdev->flags);
941 else
942 clear_bit(HCI_DEBUG_KEYS, &hdev->flags);
944 for (i = 0; i < key_count; i++) {
945 struct mgmt_key_info *key = &cp->keys[i];
947 hci_add_link_key(hdev, NULL, 0, &key->bdaddr, key->val, key->type,
948 key->pin_len);
951 hci_dev_unlock_bh(hdev);
952 hci_dev_put(hdev);
954 return 0;
957 static int remove_key(struct sock *sk, u16 index, unsigned char *data, u16 len)
959 struct hci_dev *hdev;
960 struct mgmt_cp_remove_key *cp;
961 struct hci_conn *conn;
962 int err;
964 cp = (void *) data;
966 if (len != sizeof(*cp))
967 return cmd_status(sk, index, MGMT_OP_REMOVE_KEY, EINVAL);
969 hdev = hci_dev_get(index);
970 if (!hdev)
971 return cmd_status(sk, index, MGMT_OP_REMOVE_KEY, ENODEV);
973 hci_dev_lock_bh(hdev);
975 err = hci_remove_link_key(hdev, &cp->bdaddr);
976 if (err < 0) {
977 err = cmd_status(sk, index, MGMT_OP_REMOVE_KEY, -err);
978 goto unlock;
981 err = 0;
983 if (!test_bit(HCI_UP, &hdev->flags) || !cp->disconnect)
984 goto unlock;
986 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
987 if (conn) {
988 struct hci_cp_disconnect dc;
990 put_unaligned_le16(conn->handle, &dc.handle);
991 dc.reason = 0x13; /* Remote User Terminated Connection */
992 err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
995 unlock:
996 hci_dev_unlock_bh(hdev);
997 hci_dev_put(hdev);
999 return err;
1002 static int disconnect(struct sock *sk, u16 index, unsigned char *data, u16 len)
1004 struct hci_dev *hdev;
1005 struct mgmt_cp_disconnect *cp;
1006 struct hci_cp_disconnect dc;
1007 struct pending_cmd *cmd;
1008 struct hci_conn *conn;
1009 int err;
1011 BT_DBG("");
1013 cp = (void *) data;
1015 if (len != sizeof(*cp))
1016 return cmd_status(sk, index, MGMT_OP_DISCONNECT, EINVAL);
1018 hdev = hci_dev_get(index);
1019 if (!hdev)
1020 return cmd_status(sk, index, MGMT_OP_DISCONNECT, ENODEV);
1022 hci_dev_lock_bh(hdev);
1024 if (!test_bit(HCI_UP, &hdev->flags)) {
1025 err = cmd_status(sk, index, MGMT_OP_DISCONNECT, ENETDOWN);
1026 goto failed;
1029 if (mgmt_pending_find(MGMT_OP_DISCONNECT, index)) {
1030 err = cmd_status(sk, index, MGMT_OP_DISCONNECT, EBUSY);
1031 goto failed;
1034 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
1035 if (!conn)
1036 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->bdaddr);
1038 if (!conn) {
1039 err = cmd_status(sk, index, MGMT_OP_DISCONNECT, ENOTCONN);
1040 goto failed;
1043 cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, index, data, len);
1044 if (!cmd) {
1045 err = -ENOMEM;
1046 goto failed;
1049 put_unaligned_le16(conn->handle, &dc.handle);
1050 dc.reason = 0x13; /* Remote User Terminated Connection */
1052 err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
1053 if (err < 0)
1054 mgmt_pending_remove(cmd);
1056 failed:
1057 hci_dev_unlock_bh(hdev);
1058 hci_dev_put(hdev);
1060 return err;
1063 static int get_connections(struct sock *sk, u16 index)
1065 struct mgmt_rp_get_connections *rp;
1066 struct hci_dev *hdev;
1067 struct list_head *p;
1068 size_t rp_len;
1069 u16 count;
1070 int i, err;
1072 BT_DBG("");
1074 hdev = hci_dev_get(index);
1075 if (!hdev)
1076 return cmd_status(sk, index, MGMT_OP_GET_CONNECTIONS, ENODEV);
1078 hci_dev_lock_bh(hdev);
1080 count = 0;
1081 list_for_each(p, &hdev->conn_hash.list) {
1082 count++;
1085 rp_len = sizeof(*rp) + (count * sizeof(bdaddr_t));
1086 rp = kmalloc(rp_len, GFP_ATOMIC);
1087 if (!rp) {
1088 err = -ENOMEM;
1089 goto unlock;
1092 put_unaligned_le16(count, &rp->conn_count);
1094 i = 0;
1095 list_for_each(p, &hdev->conn_hash.list) {
1096 struct hci_conn *c = list_entry(p, struct hci_conn, list);
1098 bacpy(&rp->conn[i++], &c->dst);
1101 err = cmd_complete(sk, index, MGMT_OP_GET_CONNECTIONS, rp, rp_len);
1103 unlock:
1104 kfree(rp);
1105 hci_dev_unlock_bh(hdev);
1106 hci_dev_put(hdev);
1107 return err;
1110 static int send_pin_code_neg_reply(struct sock *sk, u16 index,
1111 struct hci_dev *hdev, struct mgmt_cp_pin_code_neg_reply *cp)
1113 struct pending_cmd *cmd;
1114 int err;
1116 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, index, cp,
1117 sizeof(*cp));
1118 if (!cmd)
1119 return -ENOMEM;
1121 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY, sizeof(cp->bdaddr),
1122 &cp->bdaddr);
1123 if (err < 0)
1124 mgmt_pending_remove(cmd);
1126 return err;
1129 static int pin_code_reply(struct sock *sk, u16 index, unsigned char *data,
1130 u16 len)
1132 struct hci_dev *hdev;
1133 struct hci_conn *conn;
1134 struct mgmt_cp_pin_code_reply *cp;
1135 struct mgmt_cp_pin_code_neg_reply ncp;
1136 struct hci_cp_pin_code_reply reply;
1137 struct pending_cmd *cmd;
1138 int err;
1140 BT_DBG("");
1142 cp = (void *) data;
1144 if (len != sizeof(*cp))
1145 return cmd_status(sk, index, MGMT_OP_PIN_CODE_REPLY, EINVAL);
1147 hdev = hci_dev_get(index);
1148 if (!hdev)
1149 return cmd_status(sk, index, MGMT_OP_PIN_CODE_REPLY, ENODEV);
1151 hci_dev_lock_bh(hdev);
1153 if (!test_bit(HCI_UP, &hdev->flags)) {
1154 err = cmd_status(sk, index, MGMT_OP_PIN_CODE_REPLY, ENETDOWN);
1155 goto failed;
1158 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
1159 if (!conn) {
1160 err = cmd_status(sk, index, MGMT_OP_PIN_CODE_REPLY, ENOTCONN);
1161 goto failed;
1164 if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) {
1165 bacpy(&ncp.bdaddr, &cp->bdaddr);
1167 BT_ERR("PIN code is not 16 bytes long");
1169 err = send_pin_code_neg_reply(sk, index, hdev, &ncp);
1170 if (err >= 0)
1171 err = cmd_status(sk, index, MGMT_OP_PIN_CODE_REPLY,
1172 EINVAL);
1174 goto failed;
1177 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, index, data, len);
1178 if (!cmd) {
1179 err = -ENOMEM;
1180 goto failed;
1183 bacpy(&reply.bdaddr, &cp->bdaddr);
1184 reply.pin_len = cp->pin_len;
1185 memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
1187 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
1188 if (err < 0)
1189 mgmt_pending_remove(cmd);
1191 failed:
1192 hci_dev_unlock_bh(hdev);
1193 hci_dev_put(hdev);
1195 return err;
1198 static int pin_code_neg_reply(struct sock *sk, u16 index, unsigned char *data,
1199 u16 len)
1201 struct hci_dev *hdev;
1202 struct mgmt_cp_pin_code_neg_reply *cp;
1203 int err;
1205 BT_DBG("");
1207 cp = (void *) data;
1209 if (len != sizeof(*cp))
1210 return cmd_status(sk, index, MGMT_OP_PIN_CODE_NEG_REPLY,
1211 EINVAL);
1213 hdev = hci_dev_get(index);
1214 if (!hdev)
1215 return cmd_status(sk, index, MGMT_OP_PIN_CODE_NEG_REPLY,
1216 ENODEV);
1218 hci_dev_lock_bh(hdev);
1220 if (!test_bit(HCI_UP, &hdev->flags)) {
1221 err = cmd_status(sk, index, MGMT_OP_PIN_CODE_NEG_REPLY,
1222 ENETDOWN);
1223 goto failed;
1226 err = send_pin_code_neg_reply(sk, index, hdev, cp);
1228 failed:
1229 hci_dev_unlock_bh(hdev);
1230 hci_dev_put(hdev);
1232 return err;
1235 static int set_io_capability(struct sock *sk, u16 index, unsigned char *data,
1236 u16 len)
1238 struct hci_dev *hdev;
1239 struct mgmt_cp_set_io_capability *cp;
1241 BT_DBG("");
1243 cp = (void *) data;
1245 if (len != sizeof(*cp))
1246 return cmd_status(sk, index, MGMT_OP_SET_IO_CAPABILITY, EINVAL);
1248 hdev = hci_dev_get(index);
1249 if (!hdev)
1250 return cmd_status(sk, index, MGMT_OP_SET_IO_CAPABILITY, ENODEV);
1252 hci_dev_lock_bh(hdev);
1254 hdev->io_capability = cp->io_capability;
1256 BT_DBG("%s IO capability set to 0x%02x", hdev->name,
1257 hdev->io_capability);
1259 hci_dev_unlock_bh(hdev);
1260 hci_dev_put(hdev);
1262 return cmd_complete(sk, index, MGMT_OP_SET_IO_CAPABILITY, NULL, 0);
1265 static inline struct pending_cmd *find_pairing(struct hci_conn *conn)
1267 struct hci_dev *hdev = conn->hdev;
1268 struct list_head *p;
1270 list_for_each(p, &cmd_list) {
1271 struct pending_cmd *cmd;
1273 cmd = list_entry(p, struct pending_cmd, list);
1275 if (cmd->opcode != MGMT_OP_PAIR_DEVICE)
1276 continue;
1278 if (cmd->index != hdev->id)
1279 continue;
1281 if (cmd->user_data != conn)
1282 continue;
1284 return cmd;
1287 return NULL;
1290 static void pairing_complete(struct pending_cmd *cmd, u8 status)
1292 struct mgmt_rp_pair_device rp;
1293 struct hci_conn *conn = cmd->user_data;
1295 bacpy(&rp.bdaddr, &conn->dst);
1296 rp.status = status;
1298 cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE, &rp, sizeof(rp));
1300 /* So we don't get further callbacks for this connection */
1301 conn->connect_cfm_cb = NULL;
1302 conn->security_cfm_cb = NULL;
1303 conn->disconn_cfm_cb = NULL;
1305 hci_conn_put(conn);
1307 mgmt_pending_remove(cmd);
1310 static void pairing_complete_cb(struct hci_conn *conn, u8 status)
1312 struct pending_cmd *cmd;
1314 BT_DBG("status %u", status);
1316 cmd = find_pairing(conn);
1317 if (!cmd) {
1318 BT_DBG("Unable to find a pending command");
1319 return;
1322 pairing_complete(cmd, status);
1325 static int pair_device(struct sock *sk, u16 index, unsigned char *data, u16 len)
1327 struct hci_dev *hdev;
1328 struct mgmt_cp_pair_device *cp;
1329 struct pending_cmd *cmd;
1330 struct adv_entry *entry;
1331 u8 sec_level, auth_type;
1332 struct hci_conn *conn;
1333 int err;
1335 BT_DBG("");
1337 cp = (void *) data;
1339 if (len != sizeof(*cp))
1340 return cmd_status(sk, index, MGMT_OP_PAIR_DEVICE, EINVAL);
1342 hdev = hci_dev_get(index);
1343 if (!hdev)
1344 return cmd_status(sk, index, MGMT_OP_PAIR_DEVICE, ENODEV);
1346 hci_dev_lock_bh(hdev);
1348 sec_level = BT_SECURITY_MEDIUM;
1349 if (cp->io_cap == 0x03)
1350 auth_type = HCI_AT_DEDICATED_BONDING;
1351 else
1352 auth_type = HCI_AT_DEDICATED_BONDING_MITM;
1354 entry = hci_find_adv_entry(hdev, &cp->bdaddr);
1355 if (entry)
1356 conn = hci_connect(hdev, LE_LINK, &cp->bdaddr, sec_level,
1357 auth_type);
1358 else
1359 conn = hci_connect(hdev, ACL_LINK, &cp->bdaddr, sec_level,
1360 auth_type);
1362 if (IS_ERR(conn)) {
1363 err = PTR_ERR(conn);
1364 goto unlock;
1367 if (conn->connect_cfm_cb) {
1368 hci_conn_put(conn);
1369 err = cmd_status(sk, index, MGMT_OP_PAIR_DEVICE, EBUSY);
1370 goto unlock;
1373 cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, index, data, len);
1374 if (!cmd) {
1375 err = -ENOMEM;
1376 hci_conn_put(conn);
1377 goto unlock;
1380 /* For LE, just connecting isn't a proof that the pairing finished */
1381 if (!entry)
1382 conn->connect_cfm_cb = pairing_complete_cb;
1384 conn->security_cfm_cb = pairing_complete_cb;
1385 conn->disconn_cfm_cb = pairing_complete_cb;
1386 conn->io_capability = cp->io_cap;
1387 cmd->user_data = conn;
1389 if (conn->state == BT_CONNECTED &&
1390 hci_conn_security(conn, sec_level, auth_type))
1391 pairing_complete(cmd, 0);
1393 err = 0;
1395 unlock:
1396 hci_dev_unlock_bh(hdev);
1397 hci_dev_put(hdev);
1399 return err;
1402 static int user_confirm_reply(struct sock *sk, u16 index, unsigned char *data,
1403 u16 len, int success)
1405 struct mgmt_cp_user_confirm_reply *cp = (void *) data;
1406 u16 mgmt_op, hci_op;
1407 struct pending_cmd *cmd;
1408 struct hci_dev *hdev;
1409 int err;
1411 BT_DBG("");
1413 if (success) {
1414 mgmt_op = MGMT_OP_USER_CONFIRM_REPLY;
1415 hci_op = HCI_OP_USER_CONFIRM_REPLY;
1416 } else {
1417 mgmt_op = MGMT_OP_USER_CONFIRM_NEG_REPLY;
1418 hci_op = HCI_OP_USER_CONFIRM_NEG_REPLY;
1421 if (len != sizeof(*cp))
1422 return cmd_status(sk, index, mgmt_op, EINVAL);
1424 hdev = hci_dev_get(index);
1425 if (!hdev)
1426 return cmd_status(sk, index, mgmt_op, ENODEV);
1428 hci_dev_lock_bh(hdev);
1430 if (!test_bit(HCI_UP, &hdev->flags)) {
1431 err = cmd_status(sk, index, mgmt_op, ENETDOWN);
1432 goto failed;
1435 cmd = mgmt_pending_add(sk, mgmt_op, index, data, len);
1436 if (!cmd) {
1437 err = -ENOMEM;
1438 goto failed;
1441 err = hci_send_cmd(hdev, hci_op, sizeof(cp->bdaddr), &cp->bdaddr);
1442 if (err < 0)
1443 mgmt_pending_remove(cmd);
1445 failed:
1446 hci_dev_unlock_bh(hdev);
1447 hci_dev_put(hdev);
1449 return err;
1452 static int set_local_name(struct sock *sk, u16 index, unsigned char *data,
1453 u16 len)
1455 struct mgmt_cp_set_local_name *mgmt_cp = (void *) data;
1456 struct hci_cp_write_local_name hci_cp;
1457 struct hci_dev *hdev;
1458 struct pending_cmd *cmd;
1459 int err;
1461 BT_DBG("");
1463 if (len != sizeof(*mgmt_cp))
1464 return cmd_status(sk, index, MGMT_OP_SET_LOCAL_NAME, EINVAL);
1466 hdev = hci_dev_get(index);
1467 if (!hdev)
1468 return cmd_status(sk, index, MGMT_OP_SET_LOCAL_NAME, ENODEV);
1470 hci_dev_lock_bh(hdev);
1472 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, index, data, len);
1473 if (!cmd) {
1474 err = -ENOMEM;
1475 goto failed;
1478 memcpy(hci_cp.name, mgmt_cp->name, sizeof(hci_cp.name));
1479 err = hci_send_cmd(hdev, HCI_OP_WRITE_LOCAL_NAME, sizeof(hci_cp),
1480 &hci_cp);
1481 if (err < 0)
1482 mgmt_pending_remove(cmd);
1484 failed:
1485 hci_dev_unlock_bh(hdev);
1486 hci_dev_put(hdev);
1488 return err;
1491 static int read_local_oob_data(struct sock *sk, u16 index)
1493 struct hci_dev *hdev;
1494 struct pending_cmd *cmd;
1495 int err;
1497 BT_DBG("hci%u", index);
1499 hdev = hci_dev_get(index);
1500 if (!hdev)
1501 return cmd_status(sk, index, MGMT_OP_READ_LOCAL_OOB_DATA,
1502 ENODEV);
1504 hci_dev_lock_bh(hdev);
1506 if (!test_bit(HCI_UP, &hdev->flags)) {
1507 err = cmd_status(sk, index, MGMT_OP_READ_LOCAL_OOB_DATA,
1508 ENETDOWN);
1509 goto unlock;
1512 if (!(hdev->features[6] & LMP_SIMPLE_PAIR)) {
1513 err = cmd_status(sk, index, MGMT_OP_READ_LOCAL_OOB_DATA,
1514 EOPNOTSUPP);
1515 goto unlock;
1518 if (mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, index)) {
1519 err = cmd_status(sk, index, MGMT_OP_READ_LOCAL_OOB_DATA, EBUSY);
1520 goto unlock;
1523 cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, index, NULL, 0);
1524 if (!cmd) {
1525 err = -ENOMEM;
1526 goto unlock;
1529 err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
1530 if (err < 0)
1531 mgmt_pending_remove(cmd);
1533 unlock:
1534 hci_dev_unlock_bh(hdev);
1535 hci_dev_put(hdev);
1537 return err;
1540 static int add_remote_oob_data(struct sock *sk, u16 index, unsigned char *data,
1541 u16 len)
1543 struct hci_dev *hdev;
1544 struct mgmt_cp_add_remote_oob_data *cp = (void *) data;
1545 int err;
1547 BT_DBG("hci%u ", index);
1549 if (len != sizeof(*cp))
1550 return cmd_status(sk, index, MGMT_OP_ADD_REMOTE_OOB_DATA,
1551 EINVAL);
1553 hdev = hci_dev_get(index);
1554 if (!hdev)
1555 return cmd_status(sk, index, MGMT_OP_ADD_REMOTE_OOB_DATA,
1556 ENODEV);
1558 hci_dev_lock_bh(hdev);
1560 err = hci_add_remote_oob_data(hdev, &cp->bdaddr, cp->hash,
1561 cp->randomizer);
1562 if (err < 0)
1563 err = cmd_status(sk, index, MGMT_OP_ADD_REMOTE_OOB_DATA, -err);
1564 else
1565 err = cmd_complete(sk, index, MGMT_OP_ADD_REMOTE_OOB_DATA, NULL,
1568 hci_dev_unlock_bh(hdev);
1569 hci_dev_put(hdev);
1571 return err;
1574 static int remove_remote_oob_data(struct sock *sk, u16 index,
1575 unsigned char *data, u16 len)
1577 struct hci_dev *hdev;
1578 struct mgmt_cp_remove_remote_oob_data *cp = (void *) data;
1579 int err;
1581 BT_DBG("hci%u ", index);
1583 if (len != sizeof(*cp))
1584 return cmd_status(sk, index, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
1585 EINVAL);
1587 hdev = hci_dev_get(index);
1588 if (!hdev)
1589 return cmd_status(sk, index, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
1590 ENODEV);
1592 hci_dev_lock_bh(hdev);
1594 err = hci_remove_remote_oob_data(hdev, &cp->bdaddr);
1595 if (err < 0)
1596 err = cmd_status(sk, index, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
1597 -err);
1598 else
1599 err = cmd_complete(sk, index, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
1600 NULL, 0);
1602 hci_dev_unlock_bh(hdev);
1603 hci_dev_put(hdev);
1605 return err;
1608 static int start_discovery(struct sock *sk, u16 index)
1610 u8 lap[3] = { 0x33, 0x8b, 0x9e };
1611 struct hci_cp_inquiry cp;
1612 struct pending_cmd *cmd;
1613 struct hci_dev *hdev;
1614 int err;
1616 BT_DBG("hci%u", index);
1618 hdev = hci_dev_get(index);
1619 if (!hdev)
1620 return cmd_status(sk, index, MGMT_OP_START_DISCOVERY, ENODEV);
1622 hci_dev_lock_bh(hdev);
1624 cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, index, NULL, 0);
1625 if (!cmd) {
1626 err = -ENOMEM;
1627 goto failed;
1630 memset(&cp, 0, sizeof(cp));
1631 memcpy(&cp.lap, lap, 3);
1632 cp.length = 0x08;
1633 cp.num_rsp = 0x00;
1635 err = hci_send_cmd(hdev, HCI_OP_INQUIRY, sizeof(cp), &cp);
1636 if (err < 0)
1637 mgmt_pending_remove(cmd);
1639 failed:
1640 hci_dev_unlock_bh(hdev);
1641 hci_dev_put(hdev);
1643 return err;
1646 static int stop_discovery(struct sock *sk, u16 index)
1648 struct hci_dev *hdev;
1649 struct pending_cmd *cmd;
1650 int err;
1652 BT_DBG("hci%u", index);
1654 hdev = hci_dev_get(index);
1655 if (!hdev)
1656 return cmd_status(sk, index, MGMT_OP_STOP_DISCOVERY, ENODEV);
1658 hci_dev_lock_bh(hdev);
1660 cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, index, NULL, 0);
1661 if (!cmd) {
1662 err = -ENOMEM;
1663 goto failed;
1666 err = hci_send_cmd(hdev, HCI_OP_INQUIRY_CANCEL, 0, NULL);
1667 if (err < 0)
1668 mgmt_pending_remove(cmd);
1670 failed:
1671 hci_dev_unlock_bh(hdev);
1672 hci_dev_put(hdev);
1674 return err;
1677 static int block_device(struct sock *sk, u16 index, unsigned char *data,
1678 u16 len)
1680 struct hci_dev *hdev;
1681 struct pending_cmd *cmd;
1682 struct mgmt_cp_block_device *cp = (void *) data;
1683 int err;
1685 BT_DBG("hci%u", index);
1687 if (len != sizeof(*cp))
1688 return cmd_status(sk, index, MGMT_OP_BLOCK_DEVICE,
1689 EINVAL);
1691 hdev = hci_dev_get(index);
1692 if (!hdev)
1693 return cmd_status(sk, index, MGMT_OP_BLOCK_DEVICE,
1694 ENODEV);
1696 hci_dev_lock_bh(hdev);
1698 cmd = mgmt_pending_add(sk, MGMT_OP_BLOCK_DEVICE, index, NULL, 0);
1699 if (!cmd) {
1700 err = -ENOMEM;
1701 goto failed;
1704 err = hci_blacklist_add(hdev, &cp->bdaddr);
1706 if (err < 0)
1707 err = cmd_status(sk, index, MGMT_OP_BLOCK_DEVICE, -err);
1708 else
1709 err = cmd_complete(sk, index, MGMT_OP_BLOCK_DEVICE,
1710 NULL, 0);
1712 mgmt_pending_remove(cmd);
1714 failed:
1715 hci_dev_unlock_bh(hdev);
1716 hci_dev_put(hdev);
1718 return err;
1721 static int unblock_device(struct sock *sk, u16 index, unsigned char *data,
1722 u16 len)
1724 struct hci_dev *hdev;
1725 struct pending_cmd *cmd;
1726 struct mgmt_cp_unblock_device *cp = (void *) data;
1727 int err;
1729 BT_DBG("hci%u", index);
1731 if (len != sizeof(*cp))
1732 return cmd_status(sk, index, MGMT_OP_UNBLOCK_DEVICE,
1733 EINVAL);
1735 hdev = hci_dev_get(index);
1736 if (!hdev)
1737 return cmd_status(sk, index, MGMT_OP_UNBLOCK_DEVICE,
1738 ENODEV);
1740 hci_dev_lock_bh(hdev);
1742 cmd = mgmt_pending_add(sk, MGMT_OP_UNBLOCK_DEVICE, index, NULL, 0);
1743 if (!cmd) {
1744 err = -ENOMEM;
1745 goto failed;
1748 err = hci_blacklist_del(hdev, &cp->bdaddr);
1750 if (err < 0)
1751 err = cmd_status(sk, index, MGMT_OP_UNBLOCK_DEVICE, -err);
1752 else
1753 err = cmd_complete(sk, index, MGMT_OP_UNBLOCK_DEVICE,
1754 NULL, 0);
1756 mgmt_pending_remove(cmd);
1758 failed:
1759 hci_dev_unlock_bh(hdev);
1760 hci_dev_put(hdev);
1762 return err;
1765 static int set_fast_connectable(struct sock *sk, u16 index,
1766 unsigned char *data, u16 len)
1768 struct hci_dev *hdev;
1769 struct mgmt_cp_set_fast_connectable *cp = (void *) data;
1770 struct hci_cp_write_page_scan_activity acp;
1771 u8 type;
1772 int err;
1774 BT_DBG("hci%u", index);
1776 if (len != sizeof(*cp))
1777 return cmd_status(sk, index, MGMT_OP_SET_FAST_CONNECTABLE,
1778 EINVAL);
1780 hdev = hci_dev_get(index);
1781 if (!hdev)
1782 return cmd_status(sk, index, MGMT_OP_SET_FAST_CONNECTABLE,
1783 ENODEV);
1785 hci_dev_lock(hdev);
1787 if (cp->enable) {
1788 type = PAGE_SCAN_TYPE_INTERLACED;
1789 acp.interval = 0x0024; /* 22.5 msec page scan interval */
1790 } else {
1791 type = PAGE_SCAN_TYPE_STANDARD; /* default */
1792 acp.interval = 0x0800; /* default 1.28 sec page scan */
1795 acp.window = 0x0012; /* default 11.25 msec page scan window */
1797 err = hci_send_cmd(hdev, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY,
1798 sizeof(acp), &acp);
1799 if (err < 0) {
1800 err = cmd_status(sk, index, MGMT_OP_SET_FAST_CONNECTABLE,
1801 -err);
1802 goto done;
1805 err = hci_send_cmd(hdev, HCI_OP_WRITE_PAGE_SCAN_TYPE, 1, &type);
1806 if (err < 0) {
1807 err = cmd_status(sk, index, MGMT_OP_SET_FAST_CONNECTABLE,
1808 -err);
1809 goto done;
1812 err = cmd_complete(sk, index, MGMT_OP_SET_FAST_CONNECTABLE,
1813 NULL, 0);
1814 done:
1815 hci_dev_unlock(hdev);
1816 hci_dev_put(hdev);
1818 return err;
1821 int mgmt_control(struct sock *sk, struct msghdr *msg, size_t msglen)
1823 unsigned char *buf;
1824 struct mgmt_hdr *hdr;
1825 u16 opcode, index, len;
1826 int err;
1828 BT_DBG("got %zu bytes", msglen);
1830 if (msglen < sizeof(*hdr))
1831 return -EINVAL;
1833 buf = kmalloc(msglen, GFP_KERNEL);
1834 if (!buf)
1835 return -ENOMEM;
1837 if (memcpy_fromiovec(buf, msg->msg_iov, msglen)) {
1838 err = -EFAULT;
1839 goto done;
1842 hdr = (struct mgmt_hdr *) buf;
1843 opcode = get_unaligned_le16(&hdr->opcode);
1844 index = get_unaligned_le16(&hdr->index);
1845 len = get_unaligned_le16(&hdr->len);
1847 if (len != msglen - sizeof(*hdr)) {
1848 err = -EINVAL;
1849 goto done;
1852 switch (opcode) {
1853 case MGMT_OP_READ_VERSION:
1854 err = read_version(sk);
1855 break;
1856 case MGMT_OP_READ_INDEX_LIST:
1857 err = read_index_list(sk);
1858 break;
1859 case MGMT_OP_READ_INFO:
1860 err = read_controller_info(sk, index);
1861 break;
1862 case MGMT_OP_SET_POWERED:
1863 err = set_powered(sk, index, buf + sizeof(*hdr), len);
1864 break;
1865 case MGMT_OP_SET_DISCOVERABLE:
1866 err = set_discoverable(sk, index, buf + sizeof(*hdr), len);
1867 break;
1868 case MGMT_OP_SET_CONNECTABLE:
1869 err = set_connectable(sk, index, buf + sizeof(*hdr), len);
1870 break;
1871 case MGMT_OP_SET_PAIRABLE:
1872 err = set_pairable(sk, index, buf + sizeof(*hdr), len);
1873 break;
1874 case MGMT_OP_ADD_UUID:
1875 err = add_uuid(sk, index, buf + sizeof(*hdr), len);
1876 break;
1877 case MGMT_OP_REMOVE_UUID:
1878 err = remove_uuid(sk, index, buf + sizeof(*hdr), len);
1879 break;
1880 case MGMT_OP_SET_DEV_CLASS:
1881 err = set_dev_class(sk, index, buf + sizeof(*hdr), len);
1882 break;
1883 case MGMT_OP_SET_SERVICE_CACHE:
1884 err = set_service_cache(sk, index, buf + sizeof(*hdr), len);
1885 break;
1886 case MGMT_OP_LOAD_KEYS:
1887 err = load_keys(sk, index, buf + sizeof(*hdr), len);
1888 break;
1889 case MGMT_OP_REMOVE_KEY:
1890 err = remove_key(sk, index, buf + sizeof(*hdr), len);
1891 break;
1892 case MGMT_OP_DISCONNECT:
1893 err = disconnect(sk, index, buf + sizeof(*hdr), len);
1894 break;
1895 case MGMT_OP_GET_CONNECTIONS:
1896 err = get_connections(sk, index);
1897 break;
1898 case MGMT_OP_PIN_CODE_REPLY:
1899 err = pin_code_reply(sk, index, buf + sizeof(*hdr), len);
1900 break;
1901 case MGMT_OP_PIN_CODE_NEG_REPLY:
1902 err = pin_code_neg_reply(sk, index, buf + sizeof(*hdr), len);
1903 break;
1904 case MGMT_OP_SET_IO_CAPABILITY:
1905 err = set_io_capability(sk, index, buf + sizeof(*hdr), len);
1906 break;
1907 case MGMT_OP_PAIR_DEVICE:
1908 err = pair_device(sk, index, buf + sizeof(*hdr), len);
1909 break;
1910 case MGMT_OP_USER_CONFIRM_REPLY:
1911 err = user_confirm_reply(sk, index, buf + sizeof(*hdr), len, 1);
1912 break;
1913 case MGMT_OP_USER_CONFIRM_NEG_REPLY:
1914 err = user_confirm_reply(sk, index, buf + sizeof(*hdr), len, 0);
1915 break;
1916 case MGMT_OP_SET_LOCAL_NAME:
1917 err = set_local_name(sk, index, buf + sizeof(*hdr), len);
1918 break;
1919 case MGMT_OP_READ_LOCAL_OOB_DATA:
1920 err = read_local_oob_data(sk, index);
1921 break;
1922 case MGMT_OP_ADD_REMOTE_OOB_DATA:
1923 err = add_remote_oob_data(sk, index, buf + sizeof(*hdr), len);
1924 break;
1925 case MGMT_OP_REMOVE_REMOTE_OOB_DATA:
1926 err = remove_remote_oob_data(sk, index, buf + sizeof(*hdr),
1927 len);
1928 break;
1929 case MGMT_OP_START_DISCOVERY:
1930 err = start_discovery(sk, index);
1931 break;
1932 case MGMT_OP_STOP_DISCOVERY:
1933 err = stop_discovery(sk, index);
1934 break;
1935 case MGMT_OP_BLOCK_DEVICE:
1936 err = block_device(sk, index, buf + sizeof(*hdr), len);
1937 break;
1938 case MGMT_OP_UNBLOCK_DEVICE:
1939 err = unblock_device(sk, index, buf + sizeof(*hdr), len);
1940 break;
1941 case MGMT_OP_SET_FAST_CONNECTABLE:
1942 err = set_fast_connectable(sk, index, buf + sizeof(*hdr),
1943 len);
1944 break;
1945 default:
1946 BT_DBG("Unknown op %u", opcode);
1947 err = cmd_status(sk, index, opcode, 0x01);
1948 break;
1951 if (err < 0)
1952 goto done;
1954 err = msglen;
1956 done:
1957 kfree(buf);
1958 return err;
1961 int mgmt_index_added(u16 index)
1963 return mgmt_event(MGMT_EV_INDEX_ADDED, index, NULL, 0, NULL);
1966 int mgmt_index_removed(u16 index)
1968 return mgmt_event(MGMT_EV_INDEX_REMOVED, index, NULL, 0, NULL);
1971 struct cmd_lookup {
1972 u8 val;
1973 struct sock *sk;
1976 static void mode_rsp(struct pending_cmd *cmd, void *data)
1978 struct mgmt_mode *cp = cmd->param;
1979 struct cmd_lookup *match = data;
1981 if (cp->val != match->val)
1982 return;
1984 send_mode_rsp(cmd->sk, cmd->opcode, cmd->index, cp->val);
1986 list_del(&cmd->list);
1988 if (match->sk == NULL) {
1989 match->sk = cmd->sk;
1990 sock_hold(match->sk);
1993 mgmt_pending_free(cmd);
1996 int mgmt_powered(u16 index, u8 powered)
1998 struct mgmt_mode ev;
1999 struct cmd_lookup match = { powered, NULL };
2000 int ret;
2002 mgmt_pending_foreach(MGMT_OP_SET_POWERED, index, mode_rsp, &match);
2004 ev.val = powered;
2006 ret = mgmt_event(MGMT_EV_POWERED, index, &ev, sizeof(ev), match.sk);
2008 if (match.sk)
2009 sock_put(match.sk);
2011 return ret;
2014 int mgmt_discoverable(u16 index, u8 discoverable)
2016 struct mgmt_mode ev;
2017 struct cmd_lookup match = { discoverable, NULL };
2018 int ret;
2020 mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, index, mode_rsp, &match);
2022 ev.val = discoverable;
2024 ret = mgmt_event(MGMT_EV_DISCOVERABLE, index, &ev, sizeof(ev),
2025 match.sk);
2027 if (match.sk)
2028 sock_put(match.sk);
2030 return ret;
2033 int mgmt_connectable(u16 index, u8 connectable)
2035 struct mgmt_mode ev;
2036 struct cmd_lookup match = { connectable, NULL };
2037 int ret;
2039 mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, index, mode_rsp, &match);
2041 ev.val = connectable;
2043 ret = mgmt_event(MGMT_EV_CONNECTABLE, index, &ev, sizeof(ev), match.sk);
2045 if (match.sk)
2046 sock_put(match.sk);
2048 return ret;
2051 int mgmt_new_key(u16 index, struct link_key *key, u8 persistent)
2053 struct mgmt_ev_new_key ev;
2055 memset(&ev, 0, sizeof(ev));
2057 ev.store_hint = persistent;
2058 bacpy(&ev.key.bdaddr, &key->bdaddr);
2059 ev.key.type = key->type;
2060 memcpy(ev.key.val, key->val, 16);
2061 ev.key.pin_len = key->pin_len;
2063 return mgmt_event(MGMT_EV_NEW_KEY, index, &ev, sizeof(ev), NULL);
2066 int mgmt_connected(u16 index, bdaddr_t *bdaddr, u8 link_type)
2068 struct mgmt_ev_connected ev;
2070 bacpy(&ev.bdaddr, bdaddr);
2071 ev.link_type = link_type;
2073 return mgmt_event(MGMT_EV_CONNECTED, index, &ev, sizeof(ev), NULL);
2076 static void disconnect_rsp(struct pending_cmd *cmd, void *data)
2078 struct mgmt_cp_disconnect *cp = cmd->param;
2079 struct sock **sk = data;
2080 struct mgmt_rp_disconnect rp;
2082 bacpy(&rp.bdaddr, &cp->bdaddr);
2084 cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT, &rp, sizeof(rp));
2086 *sk = cmd->sk;
2087 sock_hold(*sk);
2089 mgmt_pending_remove(cmd);
2092 int mgmt_disconnected(u16 index, bdaddr_t *bdaddr)
2094 struct mgmt_ev_disconnected ev;
2095 struct sock *sk = NULL;
2096 int err;
2098 mgmt_pending_foreach(MGMT_OP_DISCONNECT, index, disconnect_rsp, &sk);
2100 bacpy(&ev.bdaddr, bdaddr);
2102 err = mgmt_event(MGMT_EV_DISCONNECTED, index, &ev, sizeof(ev), sk);
2104 if (sk)
2105 sock_put(sk);
2107 return err;
2110 int mgmt_disconnect_failed(u16 index)
2112 struct pending_cmd *cmd;
2113 int err;
2115 cmd = mgmt_pending_find(MGMT_OP_DISCONNECT, index);
2116 if (!cmd)
2117 return -ENOENT;
2119 err = cmd_status(cmd->sk, index, MGMT_OP_DISCONNECT, EIO);
2121 mgmt_pending_remove(cmd);
2123 return err;
2126 int mgmt_connect_failed(u16 index, bdaddr_t *bdaddr, u8 status)
2128 struct mgmt_ev_connect_failed ev;
2130 bacpy(&ev.bdaddr, bdaddr);
2131 ev.status = status;
2133 return mgmt_event(MGMT_EV_CONNECT_FAILED, index, &ev, sizeof(ev), NULL);
2136 int mgmt_pin_code_request(u16 index, bdaddr_t *bdaddr, u8 secure)
2138 struct mgmt_ev_pin_code_request ev;
2140 bacpy(&ev.bdaddr, bdaddr);
2141 ev.secure = secure;
2143 return mgmt_event(MGMT_EV_PIN_CODE_REQUEST, index, &ev, sizeof(ev),
2144 NULL);
2147 int mgmt_pin_code_reply_complete(u16 index, bdaddr_t *bdaddr, u8 status)
2149 struct pending_cmd *cmd;
2150 struct mgmt_rp_pin_code_reply rp;
2151 int err;
2153 cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_REPLY, index);
2154 if (!cmd)
2155 return -ENOENT;
2157 bacpy(&rp.bdaddr, bdaddr);
2158 rp.status = status;
2160 err = cmd_complete(cmd->sk, index, MGMT_OP_PIN_CODE_REPLY, &rp,
2161 sizeof(rp));
2163 mgmt_pending_remove(cmd);
2165 return err;
2168 int mgmt_pin_code_neg_reply_complete(u16 index, bdaddr_t *bdaddr, u8 status)
2170 struct pending_cmd *cmd;
2171 struct mgmt_rp_pin_code_reply rp;
2172 int err;
2174 cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, index);
2175 if (!cmd)
2176 return -ENOENT;
2178 bacpy(&rp.bdaddr, bdaddr);
2179 rp.status = status;
2181 err = cmd_complete(cmd->sk, index, MGMT_OP_PIN_CODE_NEG_REPLY, &rp,
2182 sizeof(rp));
2184 mgmt_pending_remove(cmd);
2186 return err;
2189 int mgmt_user_confirm_request(u16 index, bdaddr_t *bdaddr, __le32 value,
2190 u8 confirm_hint)
2192 struct mgmt_ev_user_confirm_request ev;
2194 BT_DBG("hci%u", index);
2196 bacpy(&ev.bdaddr, bdaddr);
2197 ev.confirm_hint = confirm_hint;
2198 put_unaligned_le32(value, &ev.value);
2200 return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, index, &ev, sizeof(ev),
2201 NULL);
2204 static int confirm_reply_complete(u16 index, bdaddr_t *bdaddr, u8 status,
2205 u8 opcode)
2207 struct pending_cmd *cmd;
2208 struct mgmt_rp_user_confirm_reply rp;
2209 int err;
2211 cmd = mgmt_pending_find(opcode, index);
2212 if (!cmd)
2213 return -ENOENT;
2215 bacpy(&rp.bdaddr, bdaddr);
2216 rp.status = status;
2217 err = cmd_complete(cmd->sk, index, opcode, &rp, sizeof(rp));
2219 mgmt_pending_remove(cmd);
2221 return err;
2224 int mgmt_user_confirm_reply_complete(u16 index, bdaddr_t *bdaddr, u8 status)
2226 return confirm_reply_complete(index, bdaddr, status,
2227 MGMT_OP_USER_CONFIRM_REPLY);
2230 int mgmt_user_confirm_neg_reply_complete(u16 index, bdaddr_t *bdaddr, u8 status)
2232 return confirm_reply_complete(index, bdaddr, status,
2233 MGMT_OP_USER_CONFIRM_NEG_REPLY);
2236 int mgmt_auth_failed(u16 index, bdaddr_t *bdaddr, u8 status)
2238 struct mgmt_ev_auth_failed ev;
2240 bacpy(&ev.bdaddr, bdaddr);
2241 ev.status = status;
2243 return mgmt_event(MGMT_EV_AUTH_FAILED, index, &ev, sizeof(ev), NULL);
2246 int mgmt_set_local_name_complete(u16 index, u8 *name, u8 status)
2248 struct pending_cmd *cmd;
2249 struct hci_dev *hdev;
2250 struct mgmt_cp_set_local_name ev;
2251 int err;
2253 memset(&ev, 0, sizeof(ev));
2254 memcpy(ev.name, name, HCI_MAX_NAME_LENGTH);
2256 cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, index);
2257 if (!cmd)
2258 goto send_event;
2260 if (status) {
2261 err = cmd_status(cmd->sk, index, MGMT_OP_SET_LOCAL_NAME, EIO);
2262 goto failed;
2265 hdev = hci_dev_get(index);
2266 if (hdev) {
2267 hci_dev_lock_bh(hdev);
2268 update_eir(hdev);
2269 hci_dev_unlock_bh(hdev);
2270 hci_dev_put(hdev);
2273 err = cmd_complete(cmd->sk, index, MGMT_OP_SET_LOCAL_NAME, &ev,
2274 sizeof(ev));
2275 if (err < 0)
2276 goto failed;
2278 send_event:
2279 err = mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, index, &ev, sizeof(ev),
2280 cmd ? cmd->sk : NULL);
2282 failed:
2283 if (cmd)
2284 mgmt_pending_remove(cmd);
2285 return err;
2288 int mgmt_read_local_oob_data_reply_complete(u16 index, u8 *hash, u8 *randomizer,
2289 u8 status)
2291 struct pending_cmd *cmd;
2292 int err;
2294 BT_DBG("hci%u status %u", index, status);
2296 cmd = mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, index);
2297 if (!cmd)
2298 return -ENOENT;
2300 if (status) {
2301 err = cmd_status(cmd->sk, index, MGMT_OP_READ_LOCAL_OOB_DATA,
2302 EIO);
2303 } else {
2304 struct mgmt_rp_read_local_oob_data rp;
2306 memcpy(rp.hash, hash, sizeof(rp.hash));
2307 memcpy(rp.randomizer, randomizer, sizeof(rp.randomizer));
2309 err = cmd_complete(cmd->sk, index, MGMT_OP_READ_LOCAL_OOB_DATA,
2310 &rp, sizeof(rp));
2313 mgmt_pending_remove(cmd);
2315 return err;
2318 int mgmt_device_found(u16 index, bdaddr_t *bdaddr, u8 *dev_class, s8 rssi,
2319 u8 *eir)
2321 struct mgmt_ev_device_found ev;
2323 memset(&ev, 0, sizeof(ev));
2325 bacpy(&ev.bdaddr, bdaddr);
2326 ev.rssi = rssi;
2328 if (eir)
2329 memcpy(ev.eir, eir, sizeof(ev.eir));
2331 if (dev_class)
2332 memcpy(ev.dev_class, dev_class, sizeof(ev.dev_class));
2334 return mgmt_event(MGMT_EV_DEVICE_FOUND, index, &ev, sizeof(ev), NULL);
2337 int mgmt_remote_name(u16 index, bdaddr_t *bdaddr, u8 *name)
2339 struct mgmt_ev_remote_name ev;
2341 memset(&ev, 0, sizeof(ev));
2343 bacpy(&ev.bdaddr, bdaddr);
2344 memcpy(ev.name, name, HCI_MAX_NAME_LENGTH);
2346 return mgmt_event(MGMT_EV_REMOTE_NAME, index, &ev, sizeof(ev), NULL);
2349 int mgmt_discovering(u16 index, u8 discovering)
2351 return mgmt_event(MGMT_EV_DISCOVERING, index, &discovering,
2352 sizeof(discovering), NULL);
2355 int mgmt_device_blocked(u16 index, bdaddr_t *bdaddr)
2357 struct pending_cmd *cmd;
2358 struct mgmt_ev_device_blocked ev;
2360 cmd = mgmt_pending_find(MGMT_OP_BLOCK_DEVICE, index);
2362 bacpy(&ev.bdaddr, bdaddr);
2364 return mgmt_event(MGMT_EV_DEVICE_BLOCKED, index, &ev, sizeof(ev),
2365 cmd ? cmd->sk : NULL);
2368 int mgmt_device_unblocked(u16 index, bdaddr_t *bdaddr)
2370 struct pending_cmd *cmd;
2371 struct mgmt_ev_device_unblocked ev;
2373 cmd = mgmt_pending_find(MGMT_OP_UNBLOCK_DEVICE, index);
2375 bacpy(&ev.bdaddr, bdaddr);
2377 return mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, index, &ev, sizeof(ev),
2378 cmd ? cmd->sk : NULL);