nl80211: fix validation of scheduled scan info for wowlan netdetect
For wowlan netdetect a separate limit is defined for the number of matchsets. Currently, this limit is ignored and the regular limit for scheduled scan matchsets, ie. struct wiphy::max_match_sets, is used for the net-detect case as well. Cc: Johannes Berg <johannes@sipsolutions.net> Reviewed-by: Hante Meuleman <hante.meuleman@broadcom.com> Reviewed-by: Pieter-Paul Giesberts <pieter-paul.giesberts@broadcom.com> Reviewed-by: Franky Lin <franky.lin@broadcom.com> Signed-off-by: Arend van Spriel <arend.vanspriel@broadcom.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
66cd794e3c
commit
aad1e812ee
@ -6912,7 +6912,7 @@ nl80211_parse_sched_scan_plans(struct wiphy *wiphy, int n_plans,
|
|||||||
|
|
||||||
static struct cfg80211_sched_scan_request *
|
static struct cfg80211_sched_scan_request *
|
||||||
nl80211_parse_sched_scan(struct wiphy *wiphy, struct wireless_dev *wdev,
|
nl80211_parse_sched_scan(struct wiphy *wiphy, struct wireless_dev *wdev,
|
||||||
struct nlattr **attrs)
|
struct nlattr **attrs, int max_match_sets)
|
||||||
{
|
{
|
||||||
struct cfg80211_sched_scan_request *request;
|
struct cfg80211_sched_scan_request *request;
|
||||||
struct nlattr *attr;
|
struct nlattr *attr;
|
||||||
@ -6977,7 +6977,7 @@ nl80211_parse_sched_scan(struct wiphy *wiphy, struct wireless_dev *wdev,
|
|||||||
if (!n_match_sets && default_match_rssi != NL80211_SCAN_RSSI_THOLD_OFF)
|
if (!n_match_sets && default_match_rssi != NL80211_SCAN_RSSI_THOLD_OFF)
|
||||||
n_match_sets = 1;
|
n_match_sets = 1;
|
||||||
|
|
||||||
if (n_match_sets > wiphy->max_match_sets)
|
if (n_match_sets > max_match_sets)
|
||||||
return ERR_PTR(-EINVAL);
|
return ERR_PTR(-EINVAL);
|
||||||
|
|
||||||
if (attrs[NL80211_ATTR_IE])
|
if (attrs[NL80211_ATTR_IE])
|
||||||
@ -7277,7 +7277,8 @@ static int nl80211_start_sched_scan(struct sk_buff *skb,
|
|||||||
return -EINPROGRESS;
|
return -EINPROGRESS;
|
||||||
|
|
||||||
sched_scan_req = nl80211_parse_sched_scan(&rdev->wiphy, wdev,
|
sched_scan_req = nl80211_parse_sched_scan(&rdev->wiphy, wdev,
|
||||||
info->attrs);
|
info->attrs,
|
||||||
|
rdev->wiphy.max_match_sets);
|
||||||
|
|
||||||
err = PTR_ERR_OR_ZERO(sched_scan_req);
|
err = PTR_ERR_OR_ZERO(sched_scan_req);
|
||||||
if (err)
|
if (err)
|
||||||
@ -10089,7 +10090,8 @@ static int nl80211_parse_wowlan_nd(struct cfg80211_registered_device *rdev,
|
|||||||
if (err)
|
if (err)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
trig->nd_config = nl80211_parse_sched_scan(&rdev->wiphy, NULL, tb);
|
trig->nd_config = nl80211_parse_sched_scan(&rdev->wiphy, NULL, tb,
|
||||||
|
wowlan->max_nd_match_sets);
|
||||||
err = PTR_ERR_OR_ZERO(trig->nd_config);
|
err = PTR_ERR_OR_ZERO(trig->nd_config);
|
||||||
if (err)
|
if (err)
|
||||||
trig->nd_config = NULL;
|
trig->nd_config = NULL;
|
||||||
|
Loading…
Reference in New Issue
Block a user