* [PATCH] scan: fix crash when driver doesn't report frame type
@ 2018-08-04 20:31 Sergey Matyukevich
2018-08-08 11:20 ` [PATCH] iw: " Sergey Matyukevich
0 siblings, 1 reply; 2+ messages in thread
From: Sergey Matyukevich @ 2018-08-04 20:31 UTC (permalink / raw)
To: Johannes Berg, linux-wireless; +Cc: Sergey Matyukevich
If driver does not know what kind of frame has been received from BSS,
then it is possible to specify CFG80211_BSS_FTYPE_UNKNOWN
in cfg80211_inform_bss[_width].
In this case neither NL80211_BSS_BEACON_IES nor NL80211_BSS_PRESP_DATA
will be reported to userspace.
Signed-off-by: Sergey Matyukevich <sergey.matyukevich.os@quantenna.com>
---
scan.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scan.c b/scan.c
index 09b04a5..d9681f3 100644
--- a/scan.c
+++ b/scan.c
@@ -2188,8 +2188,8 @@ static int print_bss_handler(struct nl_msg *msg, void *arg)
struct nlattr *bcnies = bss[NL80211_BSS_BEACON_IES];
if (bss[NL80211_BSS_PRESP_DATA] ||
- nla_len(ies) != nla_len(bcnies) ||
- memcmp(nla_data(ies), nla_data(bcnies), nla_len(ies)))
+ (bcnies && (nla_len(ies) != nla_len(bcnies) ||
+ memcmp(nla_data(ies), nla_data(bcnies), nla_len(ies)))))
printf("\tInformation elements from Probe Response "
"frame:\n");
print_ies(nla_data(ies), nla_len(ies),
--
2.11.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-08-08 13:40 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-04 20:31 [PATCH] scan: fix crash when driver doesn't report frame type Sergey Matyukevich
2018-08-08 11:20 ` [PATCH] iw: " Sergey Matyukevich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox