* [PATCH] station: fix setting an empty affinities list
@ 2025-04-17 16:16 James Prestwood
2025-04-23 14:43 ` Denis Kenzior
0 siblings, 1 reply; 2+ messages in thread
From: James Prestwood @ 2025-04-17 16:16 UTC (permalink / raw)
To: iwd; +Cc: James Prestwood
A prior patch broke this by checking the return of
l_dbus_message_iter_next_entry. This was really subtle but the logic
actually relied on _not_ checking that return in order to handle
empty lists.
Instead of reverting the logic was adapted/commented to make it more
clear what the API expects from DBus. If list contains at least one
value the first element path will get set, if it contains zero
values "new_path" will be set to NULL which will then cause the
list to be cleared later on.
This both fixes the regression, and makes it clear that a zero
element list is supported and handled.
---
src/station.c | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/src/station.c b/src/station.c
index 14c93671..d8016c2a 100644
--- a/src/station.c
+++ b/src/station.c
@@ -4815,7 +4815,7 @@ static struct l_dbus_message *station_property_set_affinities(
struct l_dbus_message_iter array;
const char *sender = l_dbus_message_get_sender(message);
char *old_path = l_queue_peek_head(station->affinities);
- const char *new_path = NULL;
+ const char *new_path;
struct scan_bss *new_bss = NULL;
struct scan_bss *old_bss = NULL;
bool lower_threshold = false;
@@ -4835,11 +4835,15 @@ static struct l_dbus_message *station_property_set_affinities(
if (!l_dbus_message_iter_get_variant(new_value, "ao", &array))
return dbus_error_invalid_args(message);
- /* Get first entry, there should be only one */
+ /* Get first entry, or if an empty array set the path to NULL */
if (!l_dbus_message_iter_next_entry(&array, &new_path))
- return dbus_error_invalid_args(message);
+ new_path = NULL;
- if (l_dbus_message_iter_next_entry(&array, &new_path))
+ /*
+ * Only allowing single values for now. If there is more than a single
+ * value, fail
+ */
+ if (new_path && l_dbus_message_iter_next_entry(&array, &new_path))
return dbus_error_invalid_args(message);
old_path = l_queue_peek_head(station->affinities);
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] station: fix setting an empty affinities list
2025-04-17 16:16 [PATCH] station: fix setting an empty affinities list James Prestwood
@ 2025-04-23 14:43 ` Denis Kenzior
0 siblings, 0 replies; 2+ messages in thread
From: Denis Kenzior @ 2025-04-23 14:43 UTC (permalink / raw)
To: James Prestwood, iwd
Hi James,
On 4/17/25 11:16 AM, James Prestwood wrote:
> A prior patch broke this by checking the return of
> l_dbus_message_iter_next_entry. This was really subtle but the logic
> actually relied on _not_ checking that return in order to handle
> empty lists.
>
> Instead of reverting the logic was adapted/commented to make it more
> clear what the API expects from DBus. If list contains at least one
> value the first element path will get set, if it contains zero
> values "new_path" will be set to NULL which will then cause the
> list to be cleared later on.
>
> This both fixes the regression, and makes it clear that a zero
> element list is supported and handled.
> ---
> src/station.c | 12 ++++++++----
> 1 file changed, 8 insertions(+), 4 deletions(-)
>
Applied, thanks.
Regards,
-Denis
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-04-23 14:43 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-17 16:16 [PATCH] station: fix setting an empty affinities list James Prestwood
2025-04-23 14:43 ` Denis Kenzior
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox