Skip to content

Commit

Permalink
bridge: make buffer larger in br_setlink()
Browse files Browse the repository at this point in the history
We pass IFLA_BRPORT_MAX to nla_parse_nested() so we need
IFLA_BRPORT_MAX + 1 elements.  Also Smatch complains that we read past
the end of the array when in br_set_port_flag() when it's called with
IFLA_BRPORT_FAST_LEAVE.

Signed-off-by: Dan Carpenter <[email protected]>
Acked-by: Stephen Hemminger <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Dan Carpenter authored and davem330 committed Dec 10, 2012
1 parent 65d2897 commit 2062cc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/bridge/br_netlink.c
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ int br_setlink(struct net_device *dev, struct nlmsghdr *nlh)
struct ifinfomsg *ifm;
struct nlattr *protinfo;
struct net_bridge_port *p;
struct nlattr *tb[IFLA_BRPORT_MAX];
struct nlattr *tb[IFLA_BRPORT_MAX + 1];
int err;

ifm = nlmsg_data(nlh);
Expand Down

0 comments on commit 2062cc2

Please sign in to comment.