linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [BlueZ PATCH v2] adv_monitor: Clear any running DeviceLost timers on power down
@ 2021-09-10  2:05 Manish Mandlik
  2021-09-10  2:26 ` [BlueZ,v2] " bluez.test.bot
       [not found] ` <CAGPPCLDpXtXfhMHp39ABmYB8=OduvJmR0VkN2nh9E8Sqg7V_gw@mail.gmail.com>
  0 siblings, 2 replies; 3+ messages in thread
From: Manish Mandlik @ 2021-09-10  2:05 UTC (permalink / raw)
  To: luiz.dentz, marcel
  Cc: linux-bluetooth, chromeos-bluetooth-upstreaming, Manish Mandlik, mcchou

This patch clears any running Adv Monitor DeviceLost timers on bt power
down. It'll also invoke DeviceLost event if the device is already found
and is being tracked for the DeviceLost event.

Verified this by adding a monitor using bluetoothctl and confirming that
the DeviceLost event is getting triggered for already found device in
case of bt power down.

Reviewed-by: mcchou@google.com
---

Changes in v2:
- Removed the wrapper in adapter.c, updated the debug log.

 src/adapter.c     |  2 ++
 src/adv_monitor.c | 51 +++++++++++++++++++++++++++++++++++++++++++++++
 src/adv_monitor.h |  2 ++
 3 files changed, 55 insertions(+)

diff --git a/src/adapter.c b/src/adapter.c
index 84bc5a1b0..5ddc5eee6 100644
--- a/src/adapter.c
+++ b/src/adapter.c
@@ -2912,6 +2912,8 @@ static void property_set_mode(struct btd_adapter *adapter, uint32_t setting,
 		len = sizeof(mode);
 
 		if (!mode) {
+			btd_adv_monitor_notify_power_down(
+					adapter->adv_monitor_manager);
 			clear_discoverable(adapter);
 			remove_temporary_devices(adapter);
 		}
diff --git a/src/adv_monitor.c b/src/adv_monitor.c
index 715ac5904..39094c10d 100644
--- a/src/adv_monitor.c
+++ b/src/adv_monitor.c
@@ -2011,3 +2011,54 @@ static void adv_monitor_filter_rssi(struct adv_monitor *monitor,
 					    NULL);
 	}
 }
+
+/* Clears running DeviceLost timer for a given device */
+static void clear_device_lost_timer(void *data, void *user_data)
+{
+	struct adv_monitor_device *dev = data;
+	struct adv_monitor *monitor = NULL;
+
+	if (dev->lost_timer) {
+		timeout_remove(dev->lost_timer);
+		dev->lost_timer = 0;
+
+		monitor = dev->monitor;
+
+		DBG("Calling DeviceLost() for device %p on Adv Monitor "
+				"of owner %s at path %s", dev->device,
+				monitor->app->owner, monitor->path);
+
+		g_dbus_proxy_method_call(monitor->proxy, "DeviceLost",
+				report_device_state_setup,
+				NULL, dev->device, NULL);
+	}
+}
+
+/* Clears running DeviceLost timers from each monitor */
+static void clear_lost_timers_from_monitor(void *data, void *user_data)
+{
+	struct adv_monitor *monitor = data;
+
+	queue_foreach(monitor->devices, clear_device_lost_timer, NULL);
+}
+
+/* Clears running DeviceLost timers from each app */
+static void clear_lost_timers_from_app(void *data, void *user_data)
+{
+	struct adv_monitor_app *app = data;
+
+	queue_foreach(app->monitors, clear_lost_timers_from_monitor, NULL);
+}
+
+/* Handles bt power down scenario */
+void btd_adv_monitor_notify_power_down(struct btd_adv_monitor_manager *manager)
+{
+	if (!manager) {
+		error("Unexpected NULL btd_adv_monitor_manager object upon "
+				"power down");
+		return;
+	}
+
+	/* Clear any running DeviceLost timers in case of power down */
+	queue_foreach(manager->apps, clear_lost_timers_from_app, NULL);
+}
diff --git a/src/adv_monitor.h b/src/adv_monitor.h
index 2b4f68abf..20da012d4 100644
--- a/src/adv_monitor.h
+++ b/src/adv_monitor.h
@@ -38,4 +38,6 @@ void btd_adv_monitor_notify_monitors(struct btd_adv_monitor_manager *manager,
 void btd_adv_monitor_device_remove(struct btd_adv_monitor_manager *manager,
 				   struct btd_device *device);
 
+void btd_adv_monitor_notify_power_down(struct btd_adv_monitor_manager *manager);
+
 #endif /* __ADV_MONITOR_H */
-- 
2.33.0.309.g3052b89438-goog


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* RE: [BlueZ,v2] adv_monitor: Clear any running DeviceLost timers on power down
  2021-09-10  2:05 [BlueZ PATCH v2] adv_monitor: Clear any running DeviceLost timers on power down Manish Mandlik
@ 2021-09-10  2:26 ` bluez.test.bot
       [not found] ` <CAGPPCLDpXtXfhMHp39ABmYB8=OduvJmR0VkN2nh9E8Sqg7V_gw@mail.gmail.com>
  1 sibling, 0 replies; 3+ messages in thread
From: bluez.test.bot @ 2021-09-10  2:26 UTC (permalink / raw)
  To: linux-bluetooth, mmandlik

[-- Attachment #1: Type: text/plain, Size: 1953 bytes --]

This is automated email and please do not reply to this email!

Dear submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=544689

---Test result---

Test Summary:
CheckPatch                    PASS      0.29 seconds
GitLint                       PASS      0.10 seconds
Prep - Setup ELL              PASS      36.89 seconds
Build - Prep                  PASS      0.08 seconds
Build - Configure             PASS      6.37 seconds
Build - Make                  PASS      164.22 seconds
Make Check                    PASS      8.91 seconds
Make Distcheck                PASS      195.81 seconds
Build w/ext ELL - Configure   PASS      6.89 seconds
Build w/ext ELL - Make        PASS      156.41 seconds

Details
##############################
Test: CheckPatch - PASS
Desc: Run checkpatch.pl script with rule in .checkpatch.conf

##############################
Test: GitLint - PASS
Desc: Run gitlint with rule in .gitlint

##############################
Test: Prep - Setup ELL - PASS
Desc: Clone, build, and install ELL

##############################
Test: Build - Prep - PASS
Desc: Prepare environment for build

##############################
Test: Build - Configure - PASS
Desc: Configure the BlueZ source tree

##############################
Test: Build - Make - PASS
Desc: Build the BlueZ source tree

##############################
Test: Make Check - PASS
Desc: Run 'make check'

##############################
Test: Make Distcheck - PASS
Desc: Run distcheck to check the distribution

##############################
Test: Build w/ext ELL - Configure - PASS
Desc: Configure BlueZ source with '--enable-external-ell' configuration

##############################
Test: Build w/ext ELL - Make - PASS
Desc: Build BlueZ source with '--enable-external-ell' configuration



---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [BlueZ PATCH v2] adv_monitor: Clear any running DeviceLost timers on power down
       [not found] ` <CAGPPCLDpXtXfhMHp39ABmYB8=OduvJmR0VkN2nh9E8Sqg7V_gw@mail.gmail.com>
@ 2021-09-20 21:54   ` Luiz Augusto von Dentz
  0 siblings, 0 replies; 3+ messages in thread
From: Luiz Augusto von Dentz @ 2021-09-20 21:54 UTC (permalink / raw)
  To: Manish Mandlik
  Cc: Marcel Holtmann, linux-bluetooth, ChromeOS Bluetooth Upstreaming,
	Miao-chen Chou

Hi Manish,

On Mon, Sep 20, 2021 at 8:53 AM Manish Mandlik <mmandlik@google.com> wrote:
>
> Friendly reminder to review this patch.
>
> Thanks,
> Manish.
>
>
> On Thu, Sep 9, 2021 at 7:05 PM Manish Mandlik <mmandlik@google.com> wrote:
>>
>> This patch clears any running Adv Monitor DeviceLost timers on bt power
>> down. It'll also invoke DeviceLost event if the device is already found
>> and is being tracked for the DeviceLost event.
>>
>> Verified this by adding a monitor using bluetoothctl and confirming that
>> the DeviceLost event is getting triggered for already found device in
>> case of bt power down.
>>
>> Reviewed-by: mcchou@google.com
>> ---
>>
>> Changes in v2:
>> - Removed the wrapper in adapter.c, updated the debug log.
>>
>>  src/adapter.c     |  2 ++
>>  src/adv_monitor.c | 51 +++++++++++++++++++++++++++++++++++++++++++++++
>>  src/adv_monitor.h |  2 ++
>>  3 files changed, 55 insertions(+)
>>
>> diff --git a/src/adapter.c b/src/adapter.c
>> index 84bc5a1b0..5ddc5eee6 100644
>> --- a/src/adapter.c
>> +++ b/src/adapter.c
>> @@ -2912,6 +2912,8 @@ static void property_set_mode(struct btd_adapter *adapter, uint32_t setting,
>>                 len = sizeof(mode);
>>
>>                 if (!mode) {
>> +                       btd_adv_monitor_notify_power_down(
>> +                                       adapter->adv_monitor_manager);
>>                         clear_discoverable(adapter);
>>                         remove_temporary_devices(adapter);
>>                 }
>> diff --git a/src/adv_monitor.c b/src/adv_monitor.c
>> index 715ac5904..39094c10d 100644
>> --- a/src/adv_monitor.c
>> +++ b/src/adv_monitor.c
>> @@ -2011,3 +2011,54 @@ static void adv_monitor_filter_rssi(struct adv_monitor *monitor,
>>                                             NULL);
>>         }
>>  }
>> +
>> +/* Clears running DeviceLost timer for a given device */
>> +static void clear_device_lost_timer(void *data, void *user_data)
>> +{
>> +       struct adv_monitor_device *dev = data;
>> +       struct adv_monitor *monitor = NULL;
>> +
>> +       if (dev->lost_timer) {
>> +               timeout_remove(dev->lost_timer);
>> +               dev->lost_timer = 0;
>> +
>> +               monitor = dev->monitor;
>> +
>> +               DBG("Calling DeviceLost() for device %p on Adv Monitor "
>> +                               "of owner %s at path %s", dev->device,
>> +                               monitor->app->owner, monitor->path);
>> +
>> +               g_dbus_proxy_method_call(monitor->proxy, "DeviceLost",
>> +                               report_device_state_setup,
>> +                               NULL, dev->device, NULL);
>> +       }
>> +}
>> +
>> +/* Clears running DeviceLost timers from each monitor */
>> +static void clear_lost_timers_from_monitor(void *data, void *user_data)
>> +{
>> +       struct adv_monitor *monitor = data;
>> +
>> +       queue_foreach(monitor->devices, clear_device_lost_timer, NULL);
>> +}
>> +
>> +/* Clears running DeviceLost timers from each app */
>> +static void clear_lost_timers_from_app(void *data, void *user_data)
>> +{
>> +       struct adv_monitor_app *app = data;
>> +
>> +       queue_foreach(app->monitors, clear_lost_timers_from_monitor, NULL);
>> +}
>> +
>> +/* Handles bt power down scenario */
>> +void btd_adv_monitor_notify_power_down(struct btd_adv_monitor_manager *manager)
>> +{
>> +       if (!manager) {
>> +               error("Unexpected NULL btd_adv_monitor_manager object upon "
>> +                               "power down");
>> +               return;
>> +       }
>> +
>> +       /* Clear any running DeviceLost timers in case of power down */
>> +       queue_foreach(manager->apps, clear_lost_timers_from_app, NULL);
>> +}
>> diff --git a/src/adv_monitor.h b/src/adv_monitor.h
>> index 2b4f68abf..20da012d4 100644
>> --- a/src/adv_monitor.h
>> +++ b/src/adv_monitor.h
>> @@ -38,4 +38,6 @@ void btd_adv_monitor_notify_monitors(struct btd_adv_monitor_manager *manager,
>>  void btd_adv_monitor_device_remove(struct btd_adv_monitor_manager *manager,
>>                                    struct btd_device *device);
>>
>> +void btd_adv_monitor_notify_power_down(struct btd_adv_monitor_manager *manager);
>> +
>>  #endif /* __ADV_MONITOR_H */
>> --
>> 2.33.0.309.g3052b89438-goog
>>

It has already been pushed some 10 days ago:
https://git.kernel.org/pub/scm/bluetooth/bluez.git/commit/?id=cec1ef63ff3f74d98c9fa6b480c7416726927870


-- 
Luiz Augusto von Dentz

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-09-21  2:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-10  2:05 [BlueZ PATCH v2] adv_monitor: Clear any running DeviceLost timers on power down Manish Mandlik
2021-09-10  2:26 ` [BlueZ,v2] " bluez.test.bot
     [not found] ` <CAGPPCLDpXtXfhMHp39ABmYB8=OduvJmR0VkN2nh9E8Sqg7V_gw@mail.gmail.com>
2021-09-20 21:54   ` [BlueZ PATCH v2] " Luiz Augusto von Dentz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).