Just a few fixes:
* revert NETIF_F_LLTX usage as it caused problems * avoid warning on WMM parameters from AP that are too short * fix possible null-ptr dereference in hwsim * fix interface combinations with 4-addr and crypto control -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEH1e1rEeCd0AIMq6MB8qZga/fl8QFAl1BfGcACgkQB8qZga/f l8TE/A/9G98DIi7UpuseyrW1y+3Bab5G+N4JhNDYMF0fC+f+6VZPsQRQi0aH2GVE fBDnFQogiqIY8WwgQ5RoyUjOux43INpNp3uPjOCzcdjj9+D+lBX/27yhNVBVYK5H Uxq08W2Mv+GWcswa5NMGUF9FlARbIMSu1BsDML031LzSckNvSLwMuANSx/1/d/gr rUa1waaGeC2yT/baefNaHDiqYBj/6Xm6U0Adl1PphGJZ587UjlylCwozNNIrUIwW PeysRXIUakePEqNs0Kl6U6lUJoH3g1KB+fLl5ea94L2aBHHRRaBAG1yROidg1/JG fmz8jostoasG+wuycNSdETVgY3TT37Hv0R7rRB0Wj5QvrdXqgyrAZSR97dMWR9wR fZLZCXtYnxOVZwKUlDusSjDFm9CKdhM+KqINHXBa6RRWpQjFYn4AvbQlJEZrbyuJ lBOvXAvmF1fsX5x9hmDLRM7Irtb9Awb7eHbT+T5c+BtWKvnR2GsujMy2f6TY+swN WPmER6MtQ80VPk9xpLVxU02vLs0EIdoPxE7I348ozDmW6sln0kRI1Pp7uOqDO1RC sX6uA8bSTp9u2tKsgevkHqiz3YiJOqmy475tcOg9F/CefsULZzVfBE0bsU4v0jnJ LTXJS2GtmPhG4AJFn+qiqvvOzJGhAJAEsvmPvUgH0AmB4m0+Cqg= =rE1e -----END PGP SIGNATURE----- Merge tag 'mac80211-for-davem-2019-07-31' of git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211 Johannes Berg says: ==================== Just a few fixes: * revert NETIF_F_LLTX usage as it caused problems * avoid warning on WMM parameters from AP that are too short * fix possible null-ptr dereference in hwsim * fix interface combinations with 4-addr and crypto control ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
commit
f86a677e57
@ -3617,10 +3617,12 @@ static int hwsim_dump_radio_nl(struct sk_buff *skb,
|
||||
hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid,
|
||||
cb->nlh->nlmsg_seq, &hwsim_genl_family,
|
||||
NLM_F_MULTI, HWSIM_CMD_GET_RADIO);
|
||||
if (!hdr)
|
||||
if (hdr) {
|
||||
genl_dump_check_consistent(cb, hdr);
|
||||
genlmsg_end(skb, hdr);
|
||||
} else {
|
||||
res = -EMSGSIZE;
|
||||
genl_dump_check_consistent(cb, hdr);
|
||||
genlmsg_end(skb, hdr);
|
||||
}
|
||||
}
|
||||
|
||||
done:
|
||||
|
@ -7320,6 +7320,21 @@ void cfg80211_pmsr_complete(struct wireless_dev *wdev,
|
||||
struct cfg80211_pmsr_request *req,
|
||||
gfp_t gfp);
|
||||
|
||||
/**
|
||||
* cfg80211_iftype_allowed - check whether the interface can be allowed
|
||||
* @wiphy: the wiphy
|
||||
* @iftype: interface type
|
||||
* @is_4addr: use_4addr flag, must be '0' when check_swif is '1'
|
||||
* @check_swif: check iftype against software interfaces
|
||||
*
|
||||
* Check whether the interface is allowed to operate; additionally, this API
|
||||
* can be used to check iftype against the software interfaces when
|
||||
* check_swif is '1'.
|
||||
*/
|
||||
bool cfg80211_iftype_allowed(struct wiphy *wiphy, enum nl80211_iftype iftype,
|
||||
bool is_4addr, u8 check_swif);
|
||||
|
||||
|
||||
/* Logging, debugging and troubleshooting/diagnostic helpers. */
|
||||
|
||||
/* wiphy_printk helpers, similar to dev_printk */
|
||||
|
@ -1222,7 +1222,6 @@ static void ieee80211_if_setup(struct net_device *dev)
|
||||
static void ieee80211_if_setup_no_queue(struct net_device *dev)
|
||||
{
|
||||
ieee80211_if_setup(dev);
|
||||
dev->features |= NETIF_F_LLTX;
|
||||
dev->priv_flags |= IFF_NO_QUEUE;
|
||||
}
|
||||
|
||||
|
@ -2042,6 +2042,16 @@ ieee80211_sta_wmm_params(struct ieee80211_local *local,
|
||||
ieee80211_regulatory_limit_wmm_params(sdata, ¶ms[ac], ac);
|
||||
}
|
||||
|
||||
/* WMM specification requires all 4 ACIs. */
|
||||
for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
|
||||
if (params[ac].cw_min == 0) {
|
||||
sdata_info(sdata,
|
||||
"AP has invalid WMM params (missing AC %d), using defaults\n",
|
||||
ac);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
|
||||
mlme_dbg(sdata,
|
||||
"WMM AC=%d acm=%d aifs=%d cWmin=%d cWmax=%d txop=%d uapsd=%d, downgraded=%d\n",
|
||||
|
@ -3796,9 +3796,7 @@ int ieee80211_check_combinations(struct ieee80211_sub_if_data *sdata,
|
||||
}
|
||||
|
||||
/* Always allow software iftypes */
|
||||
if (local->hw.wiphy->software_iftypes & BIT(iftype) ||
|
||||
(iftype == NL80211_IFTYPE_AP_VLAN &&
|
||||
local->hw.wiphy->flags & WIPHY_FLAG_4ADDR_AP)) {
|
||||
if (cfg80211_iftype_allowed(local->hw.wiphy, iftype, 0, 1)) {
|
||||
if (radar_detect)
|
||||
return -EINVAL;
|
||||
return 0;
|
||||
@ -3833,7 +3831,8 @@ int ieee80211_check_combinations(struct ieee80211_sub_if_data *sdata,
|
||||
|
||||
if (sdata_iter == sdata ||
|
||||
!ieee80211_sdata_running(sdata_iter) ||
|
||||
local->hw.wiphy->software_iftypes & BIT(wdev_iter->iftype))
|
||||
cfg80211_iftype_allowed(local->hw.wiphy,
|
||||
wdev_iter->iftype, 0, 1))
|
||||
continue;
|
||||
|
||||
params.iftype_num[wdev_iter->iftype]++;
|
||||
|
@ -1410,10 +1410,8 @@ static int cfg80211_netdev_notifier_call(struct notifier_block *nb,
|
||||
}
|
||||
break;
|
||||
case NETDEV_PRE_UP:
|
||||
if (!(wdev->wiphy->interface_modes & BIT(wdev->iftype)) &&
|
||||
!(wdev->iftype == NL80211_IFTYPE_AP_VLAN &&
|
||||
rdev->wiphy.flags & WIPHY_FLAG_4ADDR_AP &&
|
||||
wdev->use_4addr))
|
||||
if (!cfg80211_iftype_allowed(wdev->wiphy, wdev->iftype,
|
||||
wdev->use_4addr, 0))
|
||||
return notifier_from_errno(-EOPNOTSUPP);
|
||||
|
||||
if (rfkill_blocked(rdev->rfkill))
|
||||
|
@ -3484,9 +3484,7 @@ static int nl80211_new_interface(struct sk_buff *skb, struct genl_info *info)
|
||||
return err;
|
||||
}
|
||||
|
||||
if (!(rdev->wiphy.interface_modes & (1 << type)) &&
|
||||
!(type == NL80211_IFTYPE_AP_VLAN && params.use_4addr &&
|
||||
rdev->wiphy.flags & WIPHY_FLAG_4ADDR_AP))
|
||||
if (!cfg80211_iftype_allowed(&rdev->wiphy, type, params.use_4addr, 0))
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
err = nl80211_parse_mon_options(rdev, type, info, ¶ms);
|
||||
|
@ -1697,7 +1697,7 @@ int cfg80211_iter_combinations(struct wiphy *wiphy,
|
||||
for (iftype = 0; iftype < NUM_NL80211_IFTYPES; iftype++) {
|
||||
num_interfaces += params->iftype_num[iftype];
|
||||
if (params->iftype_num[iftype] > 0 &&
|
||||
!(wiphy->software_iftypes & BIT(iftype)))
|
||||
!cfg80211_iftype_allowed(wiphy, iftype, 0, 1))
|
||||
used_iftypes |= BIT(iftype);
|
||||
}
|
||||
|
||||
@ -1719,7 +1719,7 @@ int cfg80211_iter_combinations(struct wiphy *wiphy,
|
||||
return -ENOMEM;
|
||||
|
||||
for (iftype = 0; iftype < NUM_NL80211_IFTYPES; iftype++) {
|
||||
if (wiphy->software_iftypes & BIT(iftype))
|
||||
if (cfg80211_iftype_allowed(wiphy, iftype, 0, 1))
|
||||
continue;
|
||||
for (j = 0; j < c->n_limits; j++) {
|
||||
all_iftypes |= limits[j].types;
|
||||
@ -2072,3 +2072,26 @@ int ieee80211_get_vht_max_nss(struct ieee80211_vht_cap *cap,
|
||||
return max_vht_nss;
|
||||
}
|
||||
EXPORT_SYMBOL(ieee80211_get_vht_max_nss);
|
||||
|
||||
bool cfg80211_iftype_allowed(struct wiphy *wiphy, enum nl80211_iftype iftype,
|
||||
bool is_4addr, u8 check_swif)
|
||||
|
||||
{
|
||||
bool is_vlan = iftype == NL80211_IFTYPE_AP_VLAN;
|
||||
|
||||
switch (check_swif) {
|
||||
case 0:
|
||||
if (is_vlan && is_4addr)
|
||||
return wiphy->flags & WIPHY_FLAG_4ADDR_AP;
|
||||
return wiphy->interface_modes & BIT(iftype);
|
||||
case 1:
|
||||
if (!(wiphy->software_iftypes & BIT(iftype)) && is_vlan)
|
||||
return wiphy->flags & WIPHY_FLAG_4ADDR_AP;
|
||||
return wiphy->software_iftypes & BIT(iftype);
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
EXPORT_SYMBOL(cfg80211_iftype_allowed);
|
||||
|
Loading…
Reference in New Issue
Block a user