Commit 8f4cc940 authored by Nikolay Aleksandrov's avatar Nikolay Aleksandrov Committed by David S. Miller

net: bridge: netlink: add extack error messages when processing vlans

Add extack messages on vlan processing errors. We need to move the flags
missing check after the "last" check since we may have "last" set but
lack a range end flag in the next entry.
Signed-off-by: default avatarNikolay Aleksandrov <nikolay@cumulusnetworks.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5a46facb
...@@ -568,11 +568,11 @@ static int br_process_vlan_info(struct net_bridge *br, ...@@ -568,11 +568,11 @@ static int br_process_vlan_info(struct net_bridge *br,
bool *changed, bool *changed,
struct netlink_ext_ack *extack) struct netlink_ext_ack *extack)
{ {
if (!br_vlan_valid_id(vinfo_curr->vid)) if (!br_vlan_valid_id(vinfo_curr->vid, extack))
return -EINVAL; return -EINVAL;
if (vinfo_curr->flags & BRIDGE_VLAN_INFO_RANGE_BEGIN) { if (vinfo_curr->flags & BRIDGE_VLAN_INFO_RANGE_BEGIN) {
if (!br_vlan_valid_range(vinfo_curr, *vinfo_last)) if (!br_vlan_valid_range(vinfo_curr, *vinfo_last, extack))
return -EINVAL; return -EINVAL;
*vinfo_last = vinfo_curr; *vinfo_last = vinfo_curr;
return 0; return 0;
...@@ -582,7 +582,7 @@ static int br_process_vlan_info(struct net_bridge *br, ...@@ -582,7 +582,7 @@ static int br_process_vlan_info(struct net_bridge *br,
struct bridge_vlan_info tmp_vinfo; struct bridge_vlan_info tmp_vinfo;
int v, err; int v, err;
if (!br_vlan_valid_range(vinfo_curr, *vinfo_last)) if (!br_vlan_valid_range(vinfo_curr, *vinfo_last, extack))
return -EINVAL; return -EINVAL;
memcpy(&tmp_vinfo, *vinfo_last, memcpy(&tmp_vinfo, *vinfo_last,
......
...@@ -507,31 +507,47 @@ static inline bool nbp_state_should_learn(const struct net_bridge_port *p) ...@@ -507,31 +507,47 @@ static inline bool nbp_state_should_learn(const struct net_bridge_port *p)
return p->state == BR_STATE_LEARNING || p->state == BR_STATE_FORWARDING; return p->state == BR_STATE_LEARNING || p->state == BR_STATE_FORWARDING;
} }
static inline bool br_vlan_valid_id(u16 vid) static inline bool br_vlan_valid_id(u16 vid, struct netlink_ext_ack *extack)
{ {
return vid > 0 && vid < VLAN_VID_MASK; bool ret = vid > 0 && vid < VLAN_VID_MASK;
if (!ret)
NL_SET_ERR_MSG_MOD(extack, "Vlan id is invalid");
return ret;
} }
static inline bool br_vlan_valid_range(const struct bridge_vlan_info *cur, static inline bool br_vlan_valid_range(const struct bridge_vlan_info *cur,
const struct bridge_vlan_info *last) const struct bridge_vlan_info *last,
struct netlink_ext_ack *extack)
{ {
/* pvid flag is not allowed in ranges */ /* pvid flag is not allowed in ranges */
if (cur->flags & BRIDGE_VLAN_INFO_PVID) if (cur->flags & BRIDGE_VLAN_INFO_PVID) {
return false; NL_SET_ERR_MSG_MOD(extack, "Pvid isn't allowed in a range");
/* check for required range flags */
if (!(cur->flags & (BRIDGE_VLAN_INFO_RANGE_BEGIN |
BRIDGE_VLAN_INFO_RANGE_END)))
return false; return false;
}
/* when cur is the range end, check if: /* when cur is the range end, check if:
* - it has range start flag * - it has range start flag
* - range ids are invalid (end is equal to or before start) * - range ids are invalid (end is equal to or before start)
*/ */
if (last) { if (last) {
if (cur->flags & BRIDGE_VLAN_INFO_RANGE_BEGIN) if (cur->flags & BRIDGE_VLAN_INFO_RANGE_BEGIN) {
NL_SET_ERR_MSG_MOD(extack, "Found a new vlan range start while processing one");
return false; return false;
else if (cur->vid <= last->vid) } else if (!(cur->flags & BRIDGE_VLAN_INFO_RANGE_END)) {
NL_SET_ERR_MSG_MOD(extack, "Vlan range end flag is missing");
return false;
} else if (cur->vid <= last->vid) {
NL_SET_ERR_MSG_MOD(extack, "End vlan id is less than or equal to start vlan id");
return false;
}
}
/* check for required range flags */
if (!(cur->flags & (BRIDGE_VLAN_INFO_RANGE_BEGIN |
BRIDGE_VLAN_INFO_RANGE_END))) {
NL_SET_ERR_MSG_MOD(extack, "Both vlan range flags are missing");
return false; return false;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment