All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net] net: bridge: fix uninitialized variables when BRIDGE_CFM is disabled
@ 2021-10-27 13:49 ` Ivan Vecera
  0 siblings, 0 replies; 6+ messages in thread
From: Ivan Vecera @ 2021-10-27 13:49 UTC (permalink / raw)
  To: netdev
  Cc: Roopa Prabhu, Nikolay Aleksandrov, David S. Miller,
	Jakub Kicinski, Horatiu Vultur, Henrik Bjoernlund,
	moderated list:ETHERNET BRIDGE, open list

Function br_get_link_af_size_filtered() calls br_cfm_{,peer}_mep_count()
but does not check their return value. When BRIDGE_CFM is not enabled
these functions return -EOPNOTSUPP but do not modify count parameter.
Calling function then works with uninitialized variables.

Fixes: b6d0425b816e ("bridge: cfm: Netlink Notifications.")
Signed-off-by: Ivan Vecera <ivecera@redhat.com>
---
 net/bridge/br_netlink.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/net/bridge/br_netlink.c b/net/bridge/br_netlink.c
index 5c6c4305ed23..12d602495ea0 100644
--- a/net/bridge/br_netlink.c
+++ b/net/bridge/br_netlink.c
@@ -126,8 +126,10 @@ static size_t br_get_link_af_size_filtered(const struct net_device *dev,
 		return vinfo_sz;
 
 	/* CFM status info must be added */
-	br_cfm_mep_count(br, &num_cfm_mep_infos);
-	br_cfm_peer_mep_count(br, &num_cfm_peer_mep_infos);
+	if (br_cfm_mep_count(br, &num_cfm_mep_infos) < 0)
+		num_cfm_mep_infos = 0;
+	if (br_cfm_peer_mep_count(br, &num_cfm_peer_mep_infos) < 0)
+		num_cfm_peer_mep_infos = 0;
 
 	vinfo_sz += nla_total_size(0);	/* IFLA_BRIDGE_CFM */
 	/* For each status struct the MEP instance (u32) is added */
-- 
2.32.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Bridge] [PATCH net] net: bridge: fix uninitialized variables when BRIDGE_CFM is disabled
@ 2021-10-27 13:49 ` Ivan Vecera
  0 siblings, 0 replies; 6+ messages in thread
From: Ivan Vecera @ 2021-10-27 13:49 UTC (permalink / raw)
  To: netdev
  Cc: moderated list:ETHERNET BRIDGE, open list, Horatiu Vultur,
	Henrik Bjoernlund, Nikolay Aleksandrov, Roopa Prabhu,
	Jakub Kicinski, David S. Miller

Function br_get_link_af_size_filtered() calls br_cfm_{,peer}_mep_count()
but does not check their return value. When BRIDGE_CFM is not enabled
these functions return -EOPNOTSUPP but do not modify count parameter.
Calling function then works with uninitialized variables.

Fixes: b6d0425b816e ("bridge: cfm: Netlink Notifications.")
Signed-off-by: Ivan Vecera <ivecera@redhat.com>
---
 net/bridge/br_netlink.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/net/bridge/br_netlink.c b/net/bridge/br_netlink.c
index 5c6c4305ed23..12d602495ea0 100644
--- a/net/bridge/br_netlink.c
+++ b/net/bridge/br_netlink.c
@@ -126,8 +126,10 @@ static size_t br_get_link_af_size_filtered(const struct net_device *dev,
 		return vinfo_sz;
 
 	/* CFM status info must be added */
-	br_cfm_mep_count(br, &num_cfm_mep_infos);
-	br_cfm_peer_mep_count(br, &num_cfm_peer_mep_infos);
+	if (br_cfm_mep_count(br, &num_cfm_mep_infos) < 0)
+		num_cfm_mep_infos = 0;
+	if (br_cfm_peer_mep_count(br, &num_cfm_peer_mep_infos) < 0)
+		num_cfm_peer_mep_infos = 0;
 
 	vinfo_sz += nla_total_size(0);	/* IFLA_BRIDGE_CFM */
 	/* For each status struct the MEP instance (u32) is added */
-- 
2.32.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH net] net: bridge: fix uninitialized variables when BRIDGE_CFM is disabled
  2021-10-27 13:49 ` [Bridge] " Ivan Vecera
@ 2021-10-27 13:54   ` Nikolay Aleksandrov
  -1 siblings, 0 replies; 6+ messages in thread
From: Nikolay Aleksandrov @ 2021-10-27 13:54 UTC (permalink / raw)
  To: Ivan Vecera, netdev
  Cc: Roopa Prabhu, David S. Miller, Jakub Kicinski, Horatiu Vultur,
	Henrik Bjoernlund, moderated list:ETHERNET BRIDGE, open list

On 27/10/2021 16:49, Ivan Vecera wrote:
> Function br_get_link_af_size_filtered() calls br_cfm_{,peer}_mep_count()
> but does not check their return value. When BRIDGE_CFM is not enabled
> these functions return -EOPNOTSUPP but do not modify count parameter.
> Calling function then works with uninitialized variables.
> 
> Fixes: b6d0425b816e ("bridge: cfm: Netlink Notifications.")
> Signed-off-by: Ivan Vecera <ivecera@redhat.com>
> ---
>  net/bridge/br_netlink.c | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/net/bridge/br_netlink.c b/net/bridge/br_netlink.c
> index 5c6c4305ed23..12d602495ea0 100644
> --- a/net/bridge/br_netlink.c
> +++ b/net/bridge/br_netlink.c
> @@ -126,8 +126,10 @@ static size_t br_get_link_af_size_filtered(const struct net_device *dev,
>  		return vinfo_sz;
>  
>  	/* CFM status info must be added */
> -	br_cfm_mep_count(br, &num_cfm_mep_infos);
> -	br_cfm_peer_mep_count(br, &num_cfm_peer_mep_infos);
> +	if (br_cfm_mep_count(br, &num_cfm_mep_infos) < 0)
> +		num_cfm_mep_infos = 0;
> +	if (br_cfm_peer_mep_count(br, &num_cfm_peer_mep_infos) < 0)
> +		num_cfm_peer_mep_infos = 0;
>  
>  	vinfo_sz += nla_total_size(0);	/* IFLA_BRIDGE_CFM */
>  	/* For each status struct the MEP instance (u32) is added */
> 

Hi,
Could you please rather update the EOPNOTSUPP helpers to set these infos to 0 before
returning? Someone else might decide to use them and hit the same bug.

E.g.
static inline int br_cfm_mep_count(struct net_bridge *br, u32 *count)
{
	*count = 0;
        return -EOPNOTSUPP;
}

We already do the same for br_allowed_ingress, nbp_vlan_add() etc.

Thanks,
 Nik


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Bridge] [PATCH net] net: bridge: fix uninitialized variables when BRIDGE_CFM is disabled
@ 2021-10-27 13:54   ` Nikolay Aleksandrov
  0 siblings, 0 replies; 6+ messages in thread
From: Nikolay Aleksandrov @ 2021-10-27 13:54 UTC (permalink / raw)
  To: Ivan Vecera, netdev
  Cc: moderated list:ETHERNET BRIDGE, open list, David S. Miller,
	Henrik Bjoernlund, Roopa Prabhu, Jakub Kicinski, Horatiu Vultur

On 27/10/2021 16:49, Ivan Vecera wrote:
> Function br_get_link_af_size_filtered() calls br_cfm_{,peer}_mep_count()
> but does not check their return value. When BRIDGE_CFM is not enabled
> these functions return -EOPNOTSUPP but do not modify count parameter.
> Calling function then works with uninitialized variables.
> 
> Fixes: b6d0425b816e ("bridge: cfm: Netlink Notifications.")
> Signed-off-by: Ivan Vecera <ivecera@redhat.com>
> ---
>  net/bridge/br_netlink.c | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/net/bridge/br_netlink.c b/net/bridge/br_netlink.c
> index 5c6c4305ed23..12d602495ea0 100644
> --- a/net/bridge/br_netlink.c
> +++ b/net/bridge/br_netlink.c
> @@ -126,8 +126,10 @@ static size_t br_get_link_af_size_filtered(const struct net_device *dev,
>  		return vinfo_sz;
>  
>  	/* CFM status info must be added */
> -	br_cfm_mep_count(br, &num_cfm_mep_infos);
> -	br_cfm_peer_mep_count(br, &num_cfm_peer_mep_infos);
> +	if (br_cfm_mep_count(br, &num_cfm_mep_infos) < 0)
> +		num_cfm_mep_infos = 0;
> +	if (br_cfm_peer_mep_count(br, &num_cfm_peer_mep_infos) < 0)
> +		num_cfm_peer_mep_infos = 0;
>  
>  	vinfo_sz += nla_total_size(0);	/* IFLA_BRIDGE_CFM */
>  	/* For each status struct the MEP instance (u32) is added */
> 

Hi,
Could you please rather update the EOPNOTSUPP helpers to set these infos to 0 before
returning? Someone else might decide to use them and hit the same bug.

E.g.
static inline int br_cfm_mep_count(struct net_bridge *br, u32 *count)
{
	*count = 0;
        return -EOPNOTSUPP;
}

We already do the same for br_allowed_ingress, nbp_vlan_add() etc.

Thanks,
 Nik


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH net] net: bridge: fix uninitialized variables when BRIDGE_CFM is disabled
  2021-10-27 13:54   ` [Bridge] " Nikolay Aleksandrov
@ 2021-10-27 14:14     ` Ivan Vecera
  -1 siblings, 0 replies; 6+ messages in thread
From: Ivan Vecera @ 2021-10-27 14:14 UTC (permalink / raw)
  To: Nikolay Aleksandrov
  Cc: netdev, Roopa Prabhu, David S. Miller, Jakub Kicinski,
	Horatiu Vultur, Henrik Bjoernlund,
	moderated list:ETHERNET BRIDGE, open list

On Wed, 27 Oct 2021 16:54:39 +0300
Nikolay Aleksandrov <nikolay@nvidia.com> wrote:

> On 27/10/2021 16:49, Ivan Vecera wrote:
> > Function br_get_link_af_size_filtered() calls br_cfm_{,peer}_mep_count()
> > but does not check their return value. When BRIDGE_CFM is not enabled
> > these functions return -EOPNOTSUPP but do not modify count parameter.
> > Calling function then works with uninitialized variables.
> > 
> > Fixes: b6d0425b816e ("bridge: cfm: Netlink Notifications.")
> > Signed-off-by: Ivan Vecera <ivecera@redhat.com>
> > ---
> >  net/bridge/br_netlink.c | 6 ++++--
> >  1 file changed, 4 insertions(+), 2 deletions(-)
> > 
> > diff --git a/net/bridge/br_netlink.c b/net/bridge/br_netlink.c
> > index 5c6c4305ed23..12d602495ea0 100644
> > --- a/net/bridge/br_netlink.c
> > +++ b/net/bridge/br_netlink.c
> > @@ -126,8 +126,10 @@ static size_t br_get_link_af_size_filtered(const struct net_device *dev,
> >  		return vinfo_sz;
> >  
> >  	/* CFM status info must be added */
> > -	br_cfm_mep_count(br, &num_cfm_mep_infos);
> > -	br_cfm_peer_mep_count(br, &num_cfm_peer_mep_infos);
> > +	if (br_cfm_mep_count(br, &num_cfm_mep_infos) < 0)
> > +		num_cfm_mep_infos = 0;
> > +	if (br_cfm_peer_mep_count(br, &num_cfm_peer_mep_infos) < 0)
> > +		num_cfm_peer_mep_infos = 0;
> >  
> >  	vinfo_sz += nla_total_size(0);	/* IFLA_BRIDGE_CFM */
> >  	/* For each status struct the MEP instance (u32) is added */
> >   
> 
> Hi,
> Could you please rather update the EOPNOTSUPP helpers to set these infos to 0 before
> returning? Someone else might decide to use them and hit the same bug.
> 
> E.g.
> static inline int br_cfm_mep_count(struct net_bridge *br, u32 *count)
> {
> 	*count = 0;
>         return -EOPNOTSUPP;
> }
> 
> We already do the same for br_allowed_ingress, nbp_vlan_add() etc.
> 
> Thanks,
>  Nik
> 

Ok, Nik... works for me.

Thanks,
Ivan


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Bridge] [PATCH net] net: bridge: fix uninitialized variables when BRIDGE_CFM is disabled
@ 2021-10-27 14:14     ` Ivan Vecera
  0 siblings, 0 replies; 6+ messages in thread
From: Ivan Vecera @ 2021-10-27 14:14 UTC (permalink / raw)
  To: Nikolay Aleksandrov
  Cc: netdev, moderated list:ETHERNET BRIDGE, open list,
	David S. Miller, Henrik Bjoernlund, Roopa Prabhu, Jakub Kicinski,
	Horatiu Vultur

On Wed, 27 Oct 2021 16:54:39 +0300
Nikolay Aleksandrov <nikolay@nvidia.com> wrote:

> On 27/10/2021 16:49, Ivan Vecera wrote:
> > Function br_get_link_af_size_filtered() calls br_cfm_{,peer}_mep_count()
> > but does not check their return value. When BRIDGE_CFM is not enabled
> > these functions return -EOPNOTSUPP but do not modify count parameter.
> > Calling function then works with uninitialized variables.
> > 
> > Fixes: b6d0425b816e ("bridge: cfm: Netlink Notifications.")
> > Signed-off-by: Ivan Vecera <ivecera@redhat.com>
> > ---
> >  net/bridge/br_netlink.c | 6 ++++--
> >  1 file changed, 4 insertions(+), 2 deletions(-)
> > 
> > diff --git a/net/bridge/br_netlink.c b/net/bridge/br_netlink.c
> > index 5c6c4305ed23..12d602495ea0 100644
> > --- a/net/bridge/br_netlink.c
> > +++ b/net/bridge/br_netlink.c
> > @@ -126,8 +126,10 @@ static size_t br_get_link_af_size_filtered(const struct net_device *dev,
> >  		return vinfo_sz;
> >  
> >  	/* CFM status info must be added */
> > -	br_cfm_mep_count(br, &num_cfm_mep_infos);
> > -	br_cfm_peer_mep_count(br, &num_cfm_peer_mep_infos);
> > +	if (br_cfm_mep_count(br, &num_cfm_mep_infos) < 0)
> > +		num_cfm_mep_infos = 0;
> > +	if (br_cfm_peer_mep_count(br, &num_cfm_peer_mep_infos) < 0)
> > +		num_cfm_peer_mep_infos = 0;
> >  
> >  	vinfo_sz += nla_total_size(0);	/* IFLA_BRIDGE_CFM */
> >  	/* For each status struct the MEP instance (u32) is added */
> >   
> 
> Hi,
> Could you please rather update the EOPNOTSUPP helpers to set these infos to 0 before
> returning? Someone else might decide to use them and hit the same bug.
> 
> E.g.
> static inline int br_cfm_mep_count(struct net_bridge *br, u32 *count)
> {
> 	*count = 0;
>         return -EOPNOTSUPP;
> }
> 
> We already do the same for br_allowed_ingress, nbp_vlan_add() etc.
> 
> Thanks,
>  Nik
> 

Ok, Nik... works for me.

Thanks,
Ivan


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-10-27 14:17 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-27 13:49 [PATCH net] net: bridge: fix uninitialized variables when BRIDGE_CFM is disabled Ivan Vecera
2021-10-27 13:49 ` [Bridge] " Ivan Vecera
2021-10-27 13:54 ` Nikolay Aleksandrov
2021-10-27 13:54   ` [Bridge] " Nikolay Aleksandrov
2021-10-27 14:14   ` Ivan Vecera
2021-10-27 14:14     ` [Bridge] " Ivan Vecera

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.