1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240 |
- /*
- BlueZ - Bluetooth protocol stack for Linux
- Copyright (C) 2010 Nokia Corporation
- 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 */
- #include <asm/uaccess.h>
- #include <asm/unaligned.h>
- #include <net/bluetooth/bluetooth.h>
- #include <net/bluetooth/hci_core.h>
- #include <net/bluetooth/mgmt.h>
- #define MGMT_VERSION 0
- #define MGMT_REVISION 1
- struct pending_cmd {
- struct list_head list;
- __u16 opcode;
- int index;
- void *cmd;
- struct sock *sk;
- };
- LIST_HEAD(cmd_list);
- static int cmd_status(struct sock *sk, u16 cmd, u8 status)
- {
- struct sk_buff *skb;
- struct mgmt_hdr *hdr;
- struct mgmt_ev_cmd_status *ev;
- BT_DBG("sock %p", sk);
- skb = alloc_skb(sizeof(*hdr) + sizeof(*ev), GFP_ATOMIC);
- if (!skb)
- return -ENOMEM;
- hdr = (void *) skb_put(skb, sizeof(*hdr));
- hdr->opcode = cpu_to_le16(MGMT_EV_CMD_STATUS);
- hdr->len = cpu_to_le16(sizeof(*ev));
- ev = (void *) skb_put(skb, sizeof(*ev));
- ev->status = status;
- put_unaligned_le16(cmd, &ev->opcode);
- if (sock_queue_rcv_skb(sk, skb) < 0)
- kfree_skb(skb);
- return 0;
- }
- static int read_version(struct sock *sk)
- {
- struct sk_buff *skb;
- struct mgmt_hdr *hdr;
- struct mgmt_ev_cmd_complete *ev;
- struct mgmt_rp_read_version *rp;
- BT_DBG("sock %p", sk);
- skb = alloc_skb(sizeof(*hdr) + sizeof(*ev) + sizeof(*rp), GFP_ATOMIC);
- if (!skb)
- return -ENOMEM;
- hdr = (void *) skb_put(skb, sizeof(*hdr));
- hdr->opcode = cpu_to_le16(MGMT_EV_CMD_COMPLETE);
- hdr->len = cpu_to_le16(sizeof(*ev) + sizeof(*rp));
- ev = (void *) skb_put(skb, sizeof(*ev));
- put_unaligned_le16(MGMT_OP_READ_VERSION, &ev->opcode);
- rp = (void *) skb_put(skb, sizeof(*rp));
- rp->version = MGMT_VERSION;
- put_unaligned_le16(MGMT_REVISION, &rp->revision);
- if (sock_queue_rcv_skb(sk, skb) < 0)
- kfree_skb(skb);
- return 0;
- }
- static int read_index_list(struct sock *sk)
- {
- struct sk_buff *skb;
- struct mgmt_hdr *hdr;
- struct mgmt_ev_cmd_complete *ev;
- struct mgmt_rp_read_index_list *rp;
- struct list_head *p;
- size_t body_len;
- u16 count;
- int i;
- BT_DBG("sock %p", sk);
- read_lock(&hci_dev_list_lock);
- count = 0;
- list_for_each(p, &hci_dev_list) {
- count++;
- }
- body_len = sizeof(*ev) + sizeof(*rp) + (2 * count);
- skb = alloc_skb(sizeof(*hdr) + body_len, GFP_ATOMIC);
- if (!skb) {
- read_unlock(&hci_dev_list_lock);
- return -ENOMEM;
- }
- hdr = (void *) skb_put(skb, sizeof(*hdr));
- hdr->opcode = cpu_to_le16(MGMT_EV_CMD_COMPLETE);
- hdr->len = cpu_to_le16(body_len);
- ev = (void *) skb_put(skb, sizeof(*ev));
- put_unaligned_le16(MGMT_OP_READ_INDEX_LIST, &ev->opcode);
- rp = (void *) skb_put(skb, sizeof(*rp) + (2 * count));
- put_unaligned_le16(count, &rp->num_controllers);
- i = 0;
- list_for_each(p, &hci_dev_list) {
- struct hci_dev *d = list_entry(p, struct hci_dev, list);
- hci_del_off_timer(d);
- set_bit(HCI_MGMT, &d->flags);
- if (test_bit(HCI_SETUP, &d->flags))
- continue;
- put_unaligned_le16(d->id, &rp->index[i++]);
- BT_DBG("Added hci%u", d->id);
- }
- read_unlock(&hci_dev_list_lock);
- if (sock_queue_rcv_skb(sk, skb) < 0)
- kfree_skb(skb);
- return 0;
- }
- static int read_controller_info(struct sock *sk, unsigned char *data, u16 len)
- {
- struct sk_buff *skb;
- struct mgmt_hdr *hdr;
- struct mgmt_ev_cmd_complete *ev;
- struct mgmt_rp_read_info *rp;
- struct mgmt_cp_read_info *cp;
- struct hci_dev *hdev;
- u16 dev_id;
- BT_DBG("sock %p", sk);
- if (len != 2)
- return cmd_status(sk, MGMT_OP_READ_INFO, EINVAL);
- skb = alloc_skb(sizeof(*hdr) + sizeof(*ev) + sizeof(*rp), GFP_ATOMIC);
- if (!skb)
- return -ENOMEM;
- hdr = (void *) skb_put(skb, sizeof(*hdr));
- hdr->opcode = cpu_to_le16(MGMT_EV_CMD_COMPLETE);
- hdr->len = cpu_to_le16(sizeof(*ev) + sizeof(*rp));
- ev = (void *) skb_put(skb, sizeof(*ev));
- put_unaligned_le16(MGMT_OP_READ_INFO, &ev->opcode);
- rp = (void *) skb_put(skb, sizeof(*rp));
- cp = (void *) data;
- dev_id = get_unaligned_le16(&cp->index);
- BT_DBG("request for hci%u", dev_id);
- hdev = hci_dev_get(dev_id);
- if (!hdev) {
- kfree_skb(skb);
- return cmd_status(sk, MGMT_OP_READ_INFO, ENODEV);
- }
- hci_del_off_timer(hdev);
- hci_dev_lock_bh(hdev);
- set_bit(HCI_MGMT, &hdev->flags);
- put_unaligned_le16(hdev->id, &rp->index);
- rp->type = hdev->dev_type;
- rp->powered = test_bit(HCI_UP, &hdev->flags);
- rp->connectable = test_bit(HCI_PSCAN, &hdev->flags);
- rp->discoverable = test_bit(HCI_ISCAN, &hdev->flags);
- rp->pairable = test_bit(HCI_PSCAN, &hdev->flags);
- if (test_bit(HCI_AUTH, &hdev->flags))
- rp->sec_mode = 3;
- else if (hdev->ssp_mode > 0)
- rp->sec_mode = 4;
- else
- rp->sec_mode = 2;
- bacpy(&rp->bdaddr, &hdev->bdaddr);
- memcpy(rp->features, hdev->features, 8);
- memcpy(rp->dev_class, hdev->dev_class, 3);
- put_unaligned_le16(hdev->manufacturer, &rp->manufacturer);
- rp->hci_ver = hdev->hci_ver;
- put_unaligned_le16(hdev->hci_rev, &rp->hci_rev);
- hci_dev_unlock_bh(hdev);
- hci_dev_put(hdev);
- if (sock_queue_rcv_skb(sk, skb) < 0)
- kfree_skb(skb);
- return 0;
- }
- static void mgmt_pending_free(struct pending_cmd *cmd)
- {
- sock_put(cmd->sk);
- kfree(cmd->cmd);
- kfree(cmd);
- }
- static int mgmt_pending_add(struct sock *sk, u16 opcode, int index,
- void *data, u16 len)
- {
- struct pending_cmd *cmd;
- cmd = kmalloc(sizeof(*cmd), GFP_ATOMIC);
- if (!cmd)
- return -ENOMEM;
- cmd->opcode = opcode;
- cmd->index = index;
- cmd->cmd = kmalloc(len, GFP_ATOMIC);
- if (!cmd->cmd) {
- kfree(cmd);
- return -ENOMEM;
- }
- memcpy(cmd->cmd, data, len);
- cmd->sk = sk;
- sock_hold(sk);
- list_add(&cmd->list, &cmd_list);
- return 0;
- }
- static void mgmt_pending_foreach(u16 opcode, int index,
- void (*cb)(struct pending_cmd *cmd, void *data),
- void *data)
- {
- struct list_head *p, *n;
- list_for_each_safe(p, n, &cmd_list) {
- struct pending_cmd *cmd;
- cmd = list_entry(p, struct pending_cmd, list);
- if (cmd->opcode != opcode)
- continue;
- if (index >= 0 && cmd->index != index)
- continue;
- cb(cmd, data);
- }
- }
- static struct pending_cmd *mgmt_pending_find(u16 opcode, int index)
- {
- struct list_head *p;
- list_for_each(p, &cmd_list) {
- struct pending_cmd *cmd;
- cmd = list_entry(p, struct pending_cmd, list);
- if (cmd->opcode != opcode)
- continue;
- if (index >= 0 && cmd->index != index)
- continue;
- return cmd;
- }
- return NULL;
- }
- static void mgmt_pending_remove(u16 opcode, int index)
- {
- struct pending_cmd *cmd;
- cmd = mgmt_pending_find(opcode, index);
- if (cmd == NULL)
- return;
- list_del(&cmd->list);
- mgmt_pending_free(cmd);
- }
- static int set_powered(struct sock *sk, unsigned char *data, u16 len)
- {
- struct mgmt_mode *cp;
- struct hci_dev *hdev;
- u16 dev_id;
- int ret, up;
- cp = (void *) data;
- dev_id = get_unaligned_le16(&cp->index);
- BT_DBG("request for hci%u", dev_id);
- hdev = hci_dev_get(dev_id);
- if (!hdev)
- return cmd_status(sk, MGMT_OP_SET_POWERED, ENODEV);
- hci_dev_lock_bh(hdev);
- up = test_bit(HCI_UP, &hdev->flags);
- if ((cp->val && up) || (!cp->val && !up)) {
- ret = cmd_status(sk, MGMT_OP_SET_POWERED, EALREADY);
- goto failed;
- }
- if (mgmt_pending_find(MGMT_OP_SET_POWERED, dev_id)) {
- ret = cmd_status(sk, MGMT_OP_SET_POWERED, EBUSY);
- goto failed;
- }
- ret = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, dev_id, data, len);
- if (ret < 0)
- goto failed;
- if (cp->val)
- queue_work(hdev->workqueue, &hdev->power_on);
- else
- queue_work(hdev->workqueue, &hdev->power_off);
- ret = 0;
- failed:
- hci_dev_unlock_bh(hdev);
- hci_dev_put(hdev);
- return ret;
- }
- static int set_discoverable(struct sock *sk, unsigned char *data, u16 len)
- {
- struct mgmt_mode *cp;
- struct hci_dev *hdev;
- u16 dev_id;
- u8 scan;
- int err;
- cp = (void *) data;
- dev_id = get_unaligned_le16(&cp->index);
- BT_DBG("request for hci%u", dev_id);
- hdev = hci_dev_get(dev_id);
- if (!hdev)
- return cmd_status(sk, MGMT_OP_SET_DISCOVERABLE, ENODEV);
- hci_dev_lock_bh(hdev);
- if (!test_bit(HCI_UP, &hdev->flags)) {
- err = cmd_status(sk, MGMT_OP_SET_DISCOVERABLE, ENETDOWN);
- goto failed;
- }
- if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, dev_id) ||
- mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, dev_id)) {
- err = cmd_status(sk, MGMT_OP_SET_DISCOVERABLE, EBUSY);
- goto failed;
- }
- if (cp->val == test_bit(HCI_ISCAN, &hdev->flags) &&
- test_bit(HCI_PSCAN, &hdev->flags)) {
- err = cmd_status(sk, MGMT_OP_SET_DISCOVERABLE, EALREADY);
- goto failed;
- }
- err = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, dev_id, data, len);
- if (err < 0)
- goto failed;
- scan = SCAN_PAGE;
- if (cp->val)
- scan |= SCAN_INQUIRY;
- err = hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
- if (err < 0)
- mgmt_pending_remove(MGMT_OP_SET_DISCOVERABLE, dev_id);
- failed:
- hci_dev_unlock_bh(hdev);
- hci_dev_put(hdev);
- return err;
- }
- static int set_connectable(struct sock *sk, unsigned char *data, u16 len)
- {
- struct mgmt_mode *cp;
- struct hci_dev *hdev;
- u16 dev_id;
- u8 scan;
- int err;
- cp = (void *) data;
- dev_id = get_unaligned_le16(&cp->index);
- BT_DBG("request for hci%u", dev_id);
- hdev = hci_dev_get(dev_id);
- if (!hdev)
- return cmd_status(sk, MGMT_OP_SET_CONNECTABLE, ENODEV);
- hci_dev_lock_bh(hdev);
- if (!test_bit(HCI_UP, &hdev->flags)) {
- err = cmd_status(sk, MGMT_OP_SET_CONNECTABLE, ENETDOWN);
- goto failed;
- }
- if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, dev_id) ||
- mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, dev_id)) {
- err = cmd_status(sk, MGMT_OP_SET_CONNECTABLE, EBUSY);
- goto failed;
- }
- if (cp->val == test_bit(HCI_PSCAN, &hdev->flags)) {
- err = cmd_status(sk, MGMT_OP_SET_CONNECTABLE, EALREADY);
- goto failed;
- }
- err = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, dev_id, data, len);
- if (err < 0)
- goto failed;
- if (cp->val)
- scan = SCAN_PAGE;
- else
- scan = 0;
- err = hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
- if (err < 0)
- mgmt_pending_remove(MGMT_OP_SET_CONNECTABLE, dev_id);
- failed:
- hci_dev_unlock_bh(hdev);
- hci_dev_put(hdev);
- return err;
- }
- static int mgmt_event(u16 event, 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_ATOMIC);
- if (!skb)
- return -ENOMEM;
- bt_cb(skb)->channel = HCI_CHANNEL_CONTROL;
- hdr = (void *) skb_put(skb, sizeof(*hdr));
- hdr->opcode = cpu_to_le16(event);
- hdr->len = cpu_to_le16(data_len);
- memcpy(skb_put(skb, data_len), data, data_len);
- hci_send_to_sock(NULL, skb, skip_sk);
- kfree_skb(skb);
- return 0;
- }
- static int send_mode_rsp(struct sock *sk, u16 opcode, u16 index, u8 val)
- {
- struct mgmt_hdr *hdr;
- struct mgmt_ev_cmd_complete *ev;
- struct mgmt_mode *rp;
- struct sk_buff *skb;
- skb = alloc_skb(sizeof(*hdr) + sizeof(*ev) + sizeof(*rp), GFP_ATOMIC);
- if (!skb)
- return -ENOMEM;
- hdr = (void *) skb_put(skb, sizeof(*hdr));
- hdr->opcode = cpu_to_le16(MGMT_EV_CMD_COMPLETE);
- hdr->len = cpu_to_le16(sizeof(*ev) + sizeof(*rp));
- ev = (void *) skb_put(skb, sizeof(*ev));
- put_unaligned_le16(opcode, &ev->opcode);
- rp = (void *) skb_put(skb, sizeof(*rp));
- put_unaligned_le16(index, &rp->index);
- rp->val = val;
- if (sock_queue_rcv_skb(sk, skb) < 0)
- kfree_skb(skb);
- return 0;
- }
- static int set_pairable(struct sock *sk, unsigned char *data, u16 len)
- {
- struct mgmt_mode *cp, ev;
- struct hci_dev *hdev;
- u16 dev_id;
- int err;
- cp = (void *) data;
- dev_id = get_unaligned_le16(&cp->index);
- BT_DBG("request for hci%u", dev_id);
- hdev = hci_dev_get(dev_id);
- if (!hdev)
- return cmd_status(sk, MGMT_OP_SET_PAIRABLE, ENODEV);
- hci_dev_lock_bh(hdev);
- if (cp->val)
- set_bit(HCI_PAIRABLE, &hdev->flags);
- else
- clear_bit(HCI_PAIRABLE, &hdev->flags);
- err = send_mode_rsp(sk, MGMT_OP_SET_PAIRABLE, dev_id, cp->val);
- if (err < 0)
- goto failed;
- put_unaligned_le16(dev_id, &ev.index);
- ev.val = cp->val;
- err = mgmt_event(MGMT_EV_PAIRABLE, &ev, sizeof(ev), sk);
- failed:
- hci_dev_unlock_bh(hdev);
- hci_dev_put(hdev);
- return err;
- }
- static int index_rsp(struct sock *sk, u16 opcode, u16 index)
- {
- struct mgmt_hdr *hdr;
- struct mgmt_ev_cmd_complete *ev;
- struct sk_buff *skb;
- skb = alloc_skb(sizeof(*hdr) + sizeof(*ev) + sizeof(index), GFP_ATOMIC);
- if (!skb)
- return -ENOMEM;
- hdr = (void *) skb_put(skb, sizeof(*hdr));
- hdr->opcode = cpu_to_le16(MGMT_EV_CMD_COMPLETE);
- hdr->len = cpu_to_le16(sizeof(*ev) + sizeof(index));
- ev = (void *) skb_put(skb, sizeof(*ev));
- put_unaligned_le16(opcode, &ev->opcode);
- put_unaligned_le16(index, skb_put(skb, sizeof(index)));
- if (sock_queue_rcv_skb(sk, skb) < 0)
- kfree_skb(skb);
- return 0;
- }
- static u8 get_service_classes(struct hci_dev *hdev)
- {
- struct list_head *p;
- u8 val = 0;
- list_for_each(p, &hdev->uuids) {
- struct bt_uuid *uuid = list_entry(p, struct bt_uuid, list);
- val |= uuid->svc_hint;
- }
- return val;
- }
- static int update_class(struct hci_dev *hdev)
- {
- u8 cod[3];
- BT_DBG("%s", hdev->name);
- if (test_bit(HCI_SERVICE_CACHE, &hdev->flags))
- return 0;
- cod[0] = hdev->minor_class;
- cod[1] = hdev->major_class;
- cod[2] = get_service_classes(hdev);
- if (memcmp(cod, hdev->dev_class, 3) == 0)
- return 0;
- return hci_send_cmd(hdev, HCI_OP_WRITE_CLASS_OF_DEV, sizeof(cod), cod);
- }
- static int add_uuid(struct sock *sk, unsigned char *data, u16 len)
- {
- struct mgmt_cp_add_uuid *cp;
- struct hci_dev *hdev;
- struct bt_uuid *uuid;
- u16 dev_id;
- int err;
- cp = (void *) data;
- dev_id = get_unaligned_le16(&cp->index);
- BT_DBG("request for hci%u", dev_id);
- hdev = hci_dev_get(dev_id);
- if (!hdev)
- return cmd_status(sk, MGMT_OP_ADD_UUID, ENODEV);
- hci_dev_lock_bh(hdev);
- uuid = kmalloc(sizeof(*uuid), GFP_ATOMIC);
- if (!uuid) {
- err = -ENOMEM;
- goto failed;
- }
- memcpy(uuid->uuid, cp->uuid, 16);
- uuid->svc_hint = cp->svc_hint;
- list_add(&uuid->list, &hdev->uuids);
- err = update_class(hdev);
- if (err < 0)
- goto failed;
- err = index_rsp(sk, MGMT_OP_ADD_UUID, dev_id);
- failed:
- hci_dev_unlock_bh(hdev);
- hci_dev_put(hdev);
- return err;
- }
- static int remove_uuid(struct sock *sk, unsigned char *data, u16 len)
- {
- struct list_head *p, *n;
- struct mgmt_cp_add_uuid *cp;
- struct hci_dev *hdev;
- u8 bt_uuid_any[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
- u16 dev_id;
- int err, found;
- cp = (void *) data;
- dev_id = get_unaligned_le16(&cp->index);
- BT_DBG("request for hci%u", dev_id);
- hdev = hci_dev_get(dev_id);
- if (!hdev)
- return cmd_status(sk, MGMT_OP_REMOVE_UUID, ENODEV);
- hci_dev_lock_bh(hdev);
- if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
- err = hci_uuids_clear(hdev);
- goto unlock;
- }
- found = 0;
- list_for_each_safe(p, n, &hdev->uuids) {
- struct bt_uuid *match = list_entry(p, struct bt_uuid, list);
- if (memcmp(match->uuid, cp->uuid, 16) != 0)
- continue;
- list_del(&match->list);
- found++;
- }
- if (found == 0) {
- err = cmd_status(sk, MGMT_OP_REMOVE_UUID, ENOENT);
- goto unlock;
- }
- err = update_class(hdev);
- if (err < 0)
- goto unlock;
- err = index_rsp(sk, MGMT_OP_REMOVE_UUID, dev_id);
- unlock:
- hci_dev_unlock_bh(hdev);
- hci_dev_put(hdev);
- return err;
- }
- static int set_dev_class(struct sock *sk, unsigned char *data, u16 len)
- {
- struct hci_dev *hdev;
- struct mgmt_cp_set_dev_class *cp;
- u16 dev_id;
- int err;
- cp = (void *) data;
- dev_id = get_unaligned_le16(&cp->index);
- BT_DBG("request for hci%u", dev_id);
- hdev = hci_dev_get(dev_id);
- if (!hdev)
- return cmd_status(sk, MGMT_OP_SET_DEV_CLASS, ENODEV);
- hci_dev_lock_bh(hdev);
- hdev->major_class = cp->major;
- hdev->minor_class = cp->minor;
- err = update_class(hdev);
- if (err == 0)
- err = index_rsp(sk, MGMT_OP_SET_DEV_CLASS, dev_id);
- hci_dev_unlock_bh(hdev);
- hci_dev_put(hdev);
- return err;
- }
- static int set_service_cache(struct sock *sk, unsigned char *data, u16 len)
- {
- struct hci_dev *hdev;
- struct mgmt_cp_set_service_cache *cp;
- u16 dev_id;
- int err;
- cp = (void *) data;
- dev_id = get_unaligned_le16(&cp->index);
- hdev = hci_dev_get(dev_id);
- if (!hdev)
- return cmd_status(sk, MGMT_OP_SET_SERVICE_CACHE, ENODEV);
- hci_dev_lock_bh(hdev);
- BT_DBG("hci%u enable %d", dev_id, cp->enable);
- if (cp->enable) {
- set_bit(HCI_SERVICE_CACHE, &hdev->flags);
- err = 0;
- } else {
- clear_bit(HCI_SERVICE_CACHE, &hdev->flags);
- err = update_class(hdev);
- }
- if (err == 0)
- err = index_rsp(sk, MGMT_OP_SET_SERVICE_CACHE, dev_id);
- hci_dev_unlock_bh(hdev);
- hci_dev_put(hdev);
- return err;
- }
- static int load_keys(struct sock *sk, unsigned char *data, u16 len)
- {
- struct hci_dev *hdev;
- struct mgmt_cp_load_keys *cp;
- u16 dev_id, key_count, expected_len;
- int i;
- cp = (void *) data;
- dev_id = get_unaligned_le16(&cp->index);
- key_count = get_unaligned_le16(&cp->key_count);
- expected_len = sizeof(*cp) + key_count * sizeof(struct mgmt_key_info);
- if (expected_len != len) {
- BT_ERR("load_keys: expected %u bytes, got %u bytes",
- len, expected_len);
- return -EINVAL;
- }
- hdev = hci_dev_get(dev_id);
- if (!hdev)
- return cmd_status(sk, MGMT_OP_LOAD_KEYS, ENODEV);
- BT_DBG("hci%u debug_keys %u key_count %u", dev_id, cp->debug_keys,
- key_count);
- hci_dev_lock_bh(hdev);
- hci_link_keys_clear(hdev);
- set_bit(HCI_LINK_KEYS, &hdev->flags);
- if (cp->debug_keys)
- set_bit(HCI_DEBUG_KEYS, &hdev->flags);
- else
- clear_bit(HCI_DEBUG_KEYS, &hdev->flags);
- for (i = 0; i < key_count; i++) {
- struct mgmt_key_info *key = &cp->keys[i];
- hci_add_link_key(hdev, 0, &key->bdaddr, key->val, key->type,
- key->pin_len);
- }
- hci_dev_unlock_bh(hdev);
- hci_dev_put(hdev);
- return 0;
- }
- static int remove_key(struct sock *sk, unsigned char *data, u16 len)
- {
- struct hci_dev *hdev;
- struct mgmt_cp_remove_key *cp;
- struct hci_conn *conn;
- u16 dev_id;
- int err;
- cp = (void *) data;
- dev_id = get_unaligned_le16(&cp->index);
- hdev = hci_dev_get(dev_id);
- if (!hdev)
- return cmd_status(sk, MGMT_OP_REMOVE_KEY, ENODEV);
- hci_dev_lock_bh(hdev);
- err = hci_remove_link_key(hdev, &cp->bdaddr);
- if (err < 0) {
- err = cmd_status(sk, MGMT_OP_REMOVE_KEY, -err);
- goto unlock;
- }
- err = 0;
- if (!test_bit(HCI_UP, &hdev->flags) || !cp->disconnect)
- goto unlock;
- conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
- if (conn) {
- struct hci_cp_disconnect dc;
- put_unaligned_le16(conn->handle, &dc.handle);
- dc.reason = 0x13; /* Remote User Terminated Connection */
- err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, 0, NULL);
- }
- unlock:
- hci_dev_unlock_bh(hdev);
- hci_dev_put(hdev);
- return err;
- }
- static int disconnect(struct sock *sk, unsigned char *data, u16 len)
- {
- struct hci_dev *hdev;
- struct mgmt_cp_disconnect *cp;
- struct hci_cp_disconnect dc;
- struct hci_conn *conn;
- u16 dev_id;
- int err;
- BT_DBG("");
- cp = (void *) data;
- dev_id = get_unaligned_le16(&cp->index);
- hdev = hci_dev_get(dev_id);
- if (!hdev)
- return cmd_status(sk, MGMT_OP_DISCONNECT, ENODEV);
- hci_dev_lock_bh(hdev);
- if (!test_bit(HCI_UP, &hdev->flags)) {
- err = cmd_status(sk, MGMT_OP_DISCONNECT, ENETDOWN);
- goto failed;
- }
- if (mgmt_pending_find(MGMT_OP_DISCONNECT, dev_id)) {
- err = cmd_status(sk, MGMT_OP_DISCONNECT, EBUSY);
- goto failed;
- }
- conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
- if (!conn) {
- err = cmd_status(sk, MGMT_OP_DISCONNECT, ENOTCONN);
- goto failed;
- }
- err = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, dev_id, data, len);
- if (err < 0)
- goto failed;
- put_unaligned_le16(conn->handle, &dc.handle);
- dc.reason = 0x13; /* Remote User Terminated Connection */
- err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
- if (err < 0)
- mgmt_pending_remove(MGMT_OP_DISCONNECT, dev_id);
- failed:
- hci_dev_unlock_bh(hdev);
- hci_dev_put(hdev);
- return err;
- }
- int mgmt_control(struct sock *sk, struct msghdr *msg, size_t msglen)
- {
- unsigned char *buf;
- struct mgmt_hdr *hdr;
- u16 opcode, len;
- int err;
- BT_DBG("got %zu bytes", msglen);
- if (msglen < sizeof(*hdr))
- return -EINVAL;
- buf = kmalloc(msglen, GFP_ATOMIC);
- if (!buf)
- return -ENOMEM;
- if (memcpy_fromiovec(buf, msg->msg_iov, msglen)) {
- err = -EFAULT;
- goto done;
- }
- hdr = (struct mgmt_hdr *) buf;
- opcode = get_unaligned_le16(&hdr->opcode);
- len = get_unaligned_le16(&hdr->len);
- if (len != msglen - sizeof(*hdr)) {
- err = -EINVAL;
- goto done;
- }
- switch (opcode) {
- case MGMT_OP_READ_VERSION:
- err = read_version(sk);
- break;
- case MGMT_OP_READ_INDEX_LIST:
- err = read_index_list(sk);
- break;
- case MGMT_OP_READ_INFO:
- err = read_controller_info(sk, buf + sizeof(*hdr), len);
- break;
- case MGMT_OP_SET_POWERED:
- err = set_powered(sk, buf + sizeof(*hdr), len);
- break;
- case MGMT_OP_SET_DISCOVERABLE:
- err = set_discoverable(sk, buf + sizeof(*hdr), len);
- break;
- case MGMT_OP_SET_CONNECTABLE:
- err = set_connectable(sk, buf + sizeof(*hdr), len);
- break;
- case MGMT_OP_SET_PAIRABLE:
- err = set_pairable(sk, buf + sizeof(*hdr), len);
- break;
- case MGMT_OP_ADD_UUID:
- err = add_uuid(sk, buf + sizeof(*hdr), len);
- break;
- case MGMT_OP_REMOVE_UUID:
- err = remove_uuid(sk, buf + sizeof(*hdr), len);
- break;
- case MGMT_OP_SET_DEV_CLASS:
- err = set_dev_class(sk, buf + sizeof(*hdr), len);
- break;
- case MGMT_OP_SET_SERVICE_CACHE:
- err = set_service_cache(sk, buf + sizeof(*hdr), len);
- break;
- case MGMT_OP_LOAD_KEYS:
- err = load_keys(sk, buf + sizeof(*hdr), len);
- break;
- case MGMT_OP_REMOVE_KEY:
- err = remove_key(sk, buf + sizeof(*hdr), len);
- break;
- case MGMT_OP_DISCONNECT:
- err = disconnect(sk, buf + sizeof(*hdr), len);
- break;
- default:
- BT_DBG("Unknown op %u", opcode);
- err = cmd_status(sk, opcode, 0x01);
- break;
- }
- if (err < 0)
- goto done;
- err = msglen;
- done:
- kfree(buf);
- return err;
- }
- int mgmt_index_added(u16 index)
- {
- struct mgmt_ev_index_added ev;
- put_unaligned_le16(index, &ev.index);
- return mgmt_event(MGMT_EV_INDEX_ADDED, &ev, sizeof(ev), NULL);
- }
- int mgmt_index_removed(u16 index)
- {
- struct mgmt_ev_index_added ev;
- put_unaligned_le16(index, &ev.index);
- return mgmt_event(MGMT_EV_INDEX_REMOVED, &ev, sizeof(ev), NULL);
- }
- struct cmd_lookup {
- u8 val;
- struct sock *sk;
- };
- static void mode_rsp(struct pending_cmd *cmd, void *data)
- {
- struct mgmt_mode *cp = cmd->cmd;
- struct cmd_lookup *match = data;
- if (cp->val != match->val)
- return;
- send_mode_rsp(cmd->sk, cmd->opcode, cmd->index, cp->val);
- list_del(&cmd->list);
- if (match->sk == NULL) {
- match->sk = cmd->sk;
- sock_hold(match->sk);
- }
- mgmt_pending_free(cmd);
- }
- int mgmt_powered(u16 index, u8 powered)
- {
- struct mgmt_mode ev;
- struct cmd_lookup match = { powered, NULL };
- int ret;
- mgmt_pending_foreach(MGMT_OP_SET_POWERED, index, mode_rsp, &match);
- put_unaligned_le16(index, &ev.index);
- ev.val = powered;
- ret = mgmt_event(MGMT_EV_POWERED, &ev, sizeof(ev), match.sk);
- if (match.sk)
- sock_put(match.sk);
- return ret;
- }
- int mgmt_discoverable(u16 index, u8 discoverable)
- {
- struct mgmt_mode ev;
- struct cmd_lookup match = { discoverable, NULL };
- int ret;
- mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, index,
- mode_rsp, &match);
- put_unaligned_le16(index, &ev.index);
- ev.val = discoverable;
- ret = mgmt_event(MGMT_EV_DISCOVERABLE, &ev, sizeof(ev), match.sk);
- if (match.sk)
- sock_put(match.sk);
- return ret;
- }
- int mgmt_connectable(u16 index, u8 connectable)
- {
- struct mgmt_mode ev;
- struct cmd_lookup match = { connectable, NULL };
- int ret;
- mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, index, mode_rsp, &match);
- put_unaligned_le16(index, &ev.index);
- ev.val = connectable;
- ret = mgmt_event(MGMT_EV_CONNECTABLE, &ev, sizeof(ev), match.sk);
- if (match.sk)
- sock_put(match.sk);
- return ret;
- }
- int mgmt_new_key(u16 index, struct link_key *key, u8 old_key_type)
- {
- struct mgmt_ev_new_key ev;
- memset(&ev, 0, sizeof(ev));
- put_unaligned_le16(index, &ev.index);
- bacpy(&ev.key.bdaddr, &key->bdaddr);
- ev.key.type = key->type;
- memcpy(ev.key.val, key->val, 16);
- ev.key.pin_len = key->pin_len;
- ev.old_key_type = old_key_type;
- return mgmt_event(MGMT_EV_NEW_KEY, &ev, sizeof(ev), NULL);
- }
- int mgmt_connected(u16 index, bdaddr_t *bdaddr)
- {
- struct mgmt_ev_connected ev;
- put_unaligned_le16(index, &ev.index);
- bacpy(&ev.bdaddr, bdaddr);
- return mgmt_event(MGMT_EV_CONNECTED, &ev, sizeof(ev), NULL);
- }
- static void disconnect_rsp(struct pending_cmd *cmd, void *data)
- {
- struct mgmt_cp_disconnect *cp = cmd->cmd;
- struct sock **sk = data;
- struct sk_buff *skb;
- struct mgmt_hdr *hdr;
- struct mgmt_ev_cmd_complete *ev;
- struct mgmt_rp_disconnect *rp;
- skb = alloc_skb(sizeof(*hdr) + sizeof(*ev) + sizeof(*rp), GFP_ATOMIC);
- if (!skb)
- return;
- hdr = (void *) skb_put(skb, sizeof(*hdr));
- hdr->opcode = cpu_to_le16(MGMT_EV_CMD_COMPLETE);
- hdr->len = cpu_to_le16(sizeof(*ev) + sizeof(*rp));
- ev = (void *) skb_put(skb, sizeof(*ev));
- put_unaligned_le16(MGMT_OP_DISCONNECT, &ev->opcode);
- rp = (void *) skb_put(skb, sizeof(*rp));
- put_unaligned_le16(cmd->index, &rp->index);
- bacpy(&rp->bdaddr, &cp->bdaddr);
- if (sock_queue_rcv_skb(cmd->sk, skb) < 0)
- kfree_skb(skb);
- *sk = cmd->sk;
- sock_hold(*sk);
- list_del(&cmd->list);
- mgmt_pending_free(cmd);
- }
- int mgmt_disconnected(u16 index, bdaddr_t *bdaddr)
- {
- struct mgmt_ev_disconnected ev;
- struct sock *sk = NULL;
- int err;
- mgmt_pending_foreach(MGMT_OP_DISCONNECT, index, disconnect_rsp, &sk);
- put_unaligned_le16(index, &ev.index);
- bacpy(&ev.bdaddr, bdaddr);
- err = mgmt_event(MGMT_EV_DISCONNECTED, &ev, sizeof(ev), sk);
- if (sk)
- sock_put(sk);
- return err;
- }
- int mgmt_disconnect_failed(u16 index)
- {
- struct pending_cmd *cmd;
- int err;
- cmd = mgmt_pending_find(MGMT_OP_DISCONNECT, index);
- if (!cmd)
- return -ENOENT;
- err = cmd_status(cmd->sk, MGMT_OP_DISCONNECT, EIO);
- list_del(&cmd->list);
- mgmt_pending_free(cmd);
- return err;
- }
- int mgmt_connect_failed(u16 index, bdaddr_t *bdaddr, u8 status)
- {
- struct mgmt_ev_connect_failed ev;
- put_unaligned_le16(index, &ev.index);
- bacpy(&ev.bdaddr, bdaddr);
- ev.status = status;
- return mgmt_event(MGMT_EV_CONNECT_FAILED, &ev, sizeof(ev), NULL);
- }
|