diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2013-10-16 03:16:49 -0400 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2013-10-16 03:31:42 -0400 |
commit | 7a5f4990a4c6934a84b040337bdd7682637c2562 (patch) | |
tree | d491e1d7541ec44831644a19859def70cd270521 | |
parent | f14d8f643733a564b299ec24464ae23a0d7eb230 (diff) |
Bluetooth: Store device name in scan response data
The scan response data is a better place to store the device name
since it has more space available and is also enforcing privacy.
When the controller is advertising, the connectable setting decides
if ADV_IND or ADV_NONCONN_IND is used. In case of ADV_IND, the
remote side is allowed to request the scan response data. Same as
with BR/EDR where either EIR is used or a remote name request. In
non-connectable mode, the device name is not available since it is
not allowed to request scan response data. Same as in BR/EDR where
the device is non-discoverable and no name requests are answered.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
-rw-r--r-- | net/bluetooth/mgmt.c | 47 |
1 files changed, 26 insertions, 21 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index 59bbf434ba9a..cd285d6c1ebf 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c | |||
@@ -538,7 +538,28 @@ static u8 *create_uuid128_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len) | |||
538 | 538 | ||
539 | static u8 create_scan_rsp_data(struct hci_dev *hdev, u8 *ptr) | 539 | static u8 create_scan_rsp_data(struct hci_dev *hdev, u8 *ptr) |
540 | { | 540 | { |
541 | return 0; | 541 | u8 ad_len = 0; |
542 | size_t name_len; | ||
543 | |||
544 | name_len = strlen(hdev->dev_name); | ||
545 | if (name_len > 0) { | ||
546 | size_t max_len = HCI_MAX_AD_LENGTH - ad_len - 2; | ||
547 | |||
548 | if (name_len > max_len) { | ||
549 | name_len = max_len; | ||
550 | ptr[1] = EIR_NAME_SHORT; | ||
551 | } else | ||
552 | ptr[1] = EIR_NAME_COMPLETE; | ||
553 | |||
554 | ptr[0] = name_len + 1; | ||
555 | |||
556 | memcpy(ptr + 2, hdev->dev_name, name_len); | ||
557 | |||
558 | ad_len += (name_len + 2); | ||
559 | ptr += (name_len + 2); | ||
560 | } | ||
561 | |||
562 | return ad_len; | ||
542 | } | 563 | } |
543 | 564 | ||
544 | static void update_scan_rsp_data(struct hci_request *req) | 565 | static void update_scan_rsp_data(struct hci_request *req) |
@@ -569,7 +590,6 @@ static void update_scan_rsp_data(struct hci_request *req) | |||
569 | static u8 create_adv_data(struct hci_dev *hdev, u8 *ptr) | 590 | static u8 create_adv_data(struct hci_dev *hdev, u8 *ptr) |
570 | { | 591 | { |
571 | u8 ad_len = 0, flags = 0; | 592 | u8 ad_len = 0, flags = 0; |
572 | size_t name_len; | ||
573 | 593 | ||
574 | if (test_bit(HCI_ADVERTISING, &hdev->dev_flags)) | 594 | if (test_bit(HCI_ADVERTISING, &hdev->dev_flags)) |
575 | flags |= LE_AD_GENERAL; | 595 | flags |= LE_AD_GENERAL; |
@@ -603,24 +623,6 @@ static u8 create_adv_data(struct hci_dev *hdev, u8 *ptr) | |||
603 | ptr += 3; | 623 | ptr += 3; |
604 | } | 624 | } |
605 | 625 | ||
606 | name_len = strlen(hdev->dev_name); | ||
607 | if (name_len > 0) { | ||
608 | size_t max_len = HCI_MAX_AD_LENGTH - ad_len - 2; | ||
609 | |||
610 | if (name_len > max_len) { | ||
611 | name_len = max_len; | ||
612 | ptr[1] = EIR_NAME_SHORT; | ||
613 | } else | ||
614 | ptr[1] = EIR_NAME_COMPLETE; | ||
615 | |||
616 | ptr[0] = name_len + 1; | ||
617 | |||
618 | memcpy(ptr + 2, hdev->dev_name, name_len); | ||
619 | |||
620 | ad_len += (name_len + 2); | ||
621 | ptr += (name_len + 2); | ||
622 | } | ||
623 | |||
624 | return ad_len; | 626 | return ad_len; |
625 | } | 627 | } |
626 | 628 | ||
@@ -2966,8 +2968,11 @@ static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data, | |||
2966 | update_eir(&req); | 2968 | update_eir(&req); |
2967 | } | 2969 | } |
2968 | 2970 | ||
2971 | /* The name is stored in the scan response data and so | ||
2972 | * no need to udpate the advertising data here. | ||
2973 | */ | ||
2969 | if (lmp_le_capable(hdev)) | 2974 | if (lmp_le_capable(hdev)) |
2970 | update_ad(&req); | 2975 | update_scan_rsp_data(&req); |
2971 | 2976 | ||
2972 | err = hci_req_run(&req, set_name_complete); | 2977 | err = hci_req_run(&req, set_name_complete); |
2973 | if (err < 0) | 2978 | if (err < 0) |