Bluetooth: Add eir_len parameter to mgmt_ev_device_found
authorJohan Hedberg <johan.hedberg@intel.com>
Sun, 15 Jan 2012 17:51:59 +0000 (19:51 +0200)
committerJohan Hedberg <johan.hedberg@intel.com>
Mon, 13 Feb 2012 15:01:27 +0000 (17:01 +0200)
This patch add a two byte eir_len parameter mgmt_ev_device_found. Since
it's unlikely that the data will in the short term be much bigger than
conventional EIR lengths just use a small stack based buffer for now to
avoid dynamic memory allocation & freeing.

Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
include/net/bluetooth/hci_core.h
include/net/bluetooth/mgmt.h
net/bluetooth/mgmt.c

index f3fbfd6f6c3bf4d88af379870975f2d94d6fba40..33dff8ef2e085b2acfc2394d90e54dda892e718c 100644 (file)
@@ -925,7 +925,7 @@ int mgmt_read_local_oob_data_reply_complete(struct hci_dev *hdev, u8 *hash,
                                                u8 *randomizer, u8 status);
 int mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
                                        u8 addr_type, u8 *dev_class, s8 rssi,
-                                       u8 cfm_name, u8 *eir, u8 eir_len);
+                                       u8 cfm_name, u8 *eir, u16 eir_len);
 int mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 *name);
 int mgmt_start_discovery_failed(struct hci_dev *hdev, u8 status);
 int mgmt_stop_discovery_failed(struct hci_dev *hdev, u8 status);
index d1d13dc0cca8592890556d692cd6e1fc7512f5fa..4f166c834ddbb5bbcca91636b113600e22a06293 100644 (file)
@@ -368,7 +368,8 @@ struct mgmt_ev_device_found {
        __u8 dev_class[3];
        __s8 rssi;
        __u8 confirm_name;
-       __u8 eir[HCI_MAX_EIR_LENGTH];
+       __le16 eir_len;
+       __u8 eir[0];
 } __packed;
 
 #define MGMT_EV_REMOTE_NAME            0x0012
index c8042c6e2b468af36994d7f0d210745b93eb827d..b7e7fdfaee380c31dc54b2e3a4965ed159d82bd8 100644 (file)
@@ -2782,27 +2782,29 @@ int mgmt_read_local_oob_data_reply_complete(struct hci_dev *hdev, u8 *hash,
 
 int mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
                                u8 addr_type, u8 *dev_class, s8 rssi,
-                               u8 cfm_name, u8 *eir, u8 eir_len)
+                               u8 cfm_name, u8 *eir, u16 eir_len)
 {
-       struct mgmt_ev_device_found ev;
+       char buf[512];
+       struct mgmt_ev_device_found *ev = (void *) buf;
+       size_t ev_size = sizeof(*ev) + eir_len;
 
-       if (eir_len > sizeof(ev.eir))
+       if (ev_size > sizeof(buf))
                return -EINVAL;
 
-       memset(&ev, 0, sizeof(ev));
+       bacpy(&ev->addr.bdaddr, bdaddr);
+       ev->addr.type = link_to_mgmt(link_type, addr_type);
+       ev->rssi = rssi;
+       ev->confirm_name = cfm_name;
 
-       bacpy(&ev.addr.bdaddr, bdaddr);
-       ev.addr.type = link_to_mgmt(link_type, addr_type);
-       ev.rssi = rssi;
-       ev.confirm_name = cfm_name;
-
-       if (eir)
-               memcpy(ev.eir, eir, eir_len);
+       if (eir_len > 0) {
+               put_unaligned_le16(eir_len, &ev->eir_len);
+               memcpy(ev->eir, eir, eir_len);
+       }
 
        if (dev_class)
-               memcpy(ev.dev_class, dev_class, sizeof(ev.dev_class));
+               memcpy(ev->dev_class, dev_class, sizeof(ev->dev_class));
 
-       return mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, &ev, sizeof(ev), NULL);
+       return mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
 }
 
 int mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 *name)
This page took 0.032028 seconds and 5 git commands to generate.