nl80211: add error messages to nl80211_parse_chandef()
Add some error messages to nl80211_parse_chandef() to make failures here - especially with disabled channels - easier to diagnose. Signed-off-by: Johannes Berg <johannes.berg@intel.com> CRs-Fixed: 2857900 Change-Id: I3cf82d70dc98dafb3691f382f0a11f264203f7a4 Git-commit: 49f9cf0e1bf518c006425b59e3b705f6276a8b7c Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git Signed-off-by: Veerendranath Jakkam <vjakkam@codeaurora.org>
This commit is contained in:
parent
6cb02c4041
commit
e6445006b3
1 changed files with 40 additions and 22 deletions
|
@ -2412,12 +2412,14 @@ static int nl80211_parse_chandef(struct cfg80211_registered_device *rdev,
|
|||
struct genl_info *info,
|
||||
struct cfg80211_chan_def *chandef)
|
||||
{
|
||||
struct netlink_ext_ack *extack = info->extack;
|
||||
struct nlattr **attrs = info->attrs;
|
||||
u32 control_freq;
|
||||
|
||||
if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
|
||||
if (!attrs[NL80211_ATTR_WIPHY_FREQ])
|
||||
return -EINVAL;
|
||||
|
||||
control_freq = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]);
|
||||
control_freq = nla_get_u32(attrs[NL80211_ATTR_WIPHY_FREQ]);
|
||||
|
||||
memset(chandef, 0, sizeof(*chandef));
|
||||
|
||||
|
@ -2427,14 +2429,16 @@ static int nl80211_parse_chandef(struct cfg80211_registered_device *rdev,
|
|||
chandef->center_freq2 = 0;
|
||||
|
||||
/* Primary channel not allowed */
|
||||
if (!chandef->chan || chandef->chan->flags & IEEE80211_CHAN_DISABLED)
|
||||
if (!chandef->chan || chandef->chan->flags & IEEE80211_CHAN_DISABLED) {
|
||||
NL_SET_ERR_MSG_ATTR(extack, attrs[NL80211_ATTR_WIPHY_FREQ],
|
||||
"Channel is disabled");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]) {
|
||||
if (attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]) {
|
||||
enum nl80211_channel_type chantype;
|
||||
|
||||
chantype = nla_get_u32(
|
||||
info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]);
|
||||
chantype = nla_get_u32(attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]);
|
||||
|
||||
switch (chantype) {
|
||||
case NL80211_CHAN_NO_HT:
|
||||
|
@ -2444,29 +2448,37 @@ static int nl80211_parse_chandef(struct cfg80211_registered_device *rdev,
|
|||
cfg80211_chandef_create(chandef, chandef->chan,
|
||||
chantype);
|
||||
/* user input for center_freq is incorrect */
|
||||
if (info->attrs[NL80211_ATTR_CENTER_FREQ1] &&
|
||||
chandef->center_freq1 != nla_get_u32(
|
||||
info->attrs[NL80211_ATTR_CENTER_FREQ1]))
|
||||
if (attrs[NL80211_ATTR_CENTER_FREQ1] &&
|
||||
chandef->center_freq1 != nla_get_u32(attrs[NL80211_ATTR_CENTER_FREQ1])) {
|
||||
NL_SET_ERR_MSG_ATTR(extack,
|
||||
attrs[NL80211_ATTR_CENTER_FREQ1],
|
||||
"bad center frequency 1");
|
||||
return -EINVAL;
|
||||
}
|
||||
/* center_freq2 must be zero */
|
||||
if (info->attrs[NL80211_ATTR_CENTER_FREQ2] &&
|
||||
nla_get_u32(info->attrs[NL80211_ATTR_CENTER_FREQ2]))
|
||||
if (attrs[NL80211_ATTR_CENTER_FREQ2] &&
|
||||
nla_get_u32(attrs[NL80211_ATTR_CENTER_FREQ2])) {
|
||||
NL_SET_ERR_MSG_ATTR(extack,
|
||||
attrs[NL80211_ATTR_CENTER_FREQ2],
|
||||
"center frequency 2 can't be used");
|
||||
return -EINVAL;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
NL_SET_ERR_MSG_ATTR(extack,
|
||||
attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE],
|
||||
"invalid channel type");
|
||||
return -EINVAL;
|
||||
}
|
||||
} else if (info->attrs[NL80211_ATTR_CHANNEL_WIDTH]) {
|
||||
} else if (attrs[NL80211_ATTR_CHANNEL_WIDTH]) {
|
||||
chandef->width =
|
||||
nla_get_u32(info->attrs[NL80211_ATTR_CHANNEL_WIDTH]);
|
||||
if (info->attrs[NL80211_ATTR_CENTER_FREQ1])
|
||||
nla_get_u32(attrs[NL80211_ATTR_CHANNEL_WIDTH]);
|
||||
if (attrs[NL80211_ATTR_CENTER_FREQ1])
|
||||
chandef->center_freq1 =
|
||||
nla_get_u32(
|
||||
info->attrs[NL80211_ATTR_CENTER_FREQ1]);
|
||||
if (info->attrs[NL80211_ATTR_CENTER_FREQ2])
|
||||
nla_get_u32(attrs[NL80211_ATTR_CENTER_FREQ1]);
|
||||
if (attrs[NL80211_ATTR_CENTER_FREQ2])
|
||||
chandef->center_freq2 =
|
||||
nla_get_u32(
|
||||
info->attrs[NL80211_ATTR_CENTER_FREQ2]);
|
||||
nla_get_u32(attrs[NL80211_ATTR_CENTER_FREQ2]);
|
||||
}
|
||||
|
||||
if (info->attrs[NL80211_ATTR_WIPHY_EDMG_CHANNELS]) {
|
||||
|
@ -2481,17 +2493,23 @@ static int nl80211_parse_chandef(struct cfg80211_registered_device *rdev,
|
|||
chandef->edmg.channels = 0;
|
||||
}
|
||||
|
||||
if (!cfg80211_chandef_valid(chandef))
|
||||
if (!cfg80211_chandef_valid(chandef)) {
|
||||
NL_SET_ERR_MSG(extack, "invalid channel definition");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (!cfg80211_chandef_usable(&rdev->wiphy, chandef,
|
||||
IEEE80211_CHAN_DISABLED))
|
||||
IEEE80211_CHAN_DISABLED)) {
|
||||
NL_SET_ERR_MSG(extack, "(extension) channel is disabled");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if ((chandef->width == NL80211_CHAN_WIDTH_5 ||
|
||||
chandef->width == NL80211_CHAN_WIDTH_10) &&
|
||||
!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_5_10_MHZ))
|
||||
!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_5_10_MHZ)) {
|
||||
NL_SET_ERR_MSG(extack, "5/10 MHz not supported");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue