[PATCH net 1/1] net/mlx5: Avoid dereferencing uninitialized pointer

Subsystems: mellanox mlx5 core vpi driver, networking drivers, the rest

STALE3412d REVIEWED: 2 (0M)

2 review trailers.

2 messages, 2 authors, 2017-03-29 · open the first message on its own page

[PATCH net 1/1] net/mlx5: Avoid dereferencing uninitialized pointer

From: Saeed Mahameed <hidden>
Date: 2017-03-28 13:25:33

From: Talat Batheesh <redacted>

In NETDEV_CHANGEUPPER event the upper_info field is valid
only when linking is true. Otherwise it should be ignored.

Fixes: 7907f23adc18 (net/mlx5: Implement RoCE LAG feature)
Signed-off-by: Talat Batheesh <redacted>
Reviewed-by: Aviv Heller <redacted>
Reviewed-by: Moni Shoua <redacted>
Signed-off-by: Saeed Mahameed <redacted>
---

Hi Dave,

I will appreciate it if you queue up this patch for v4.9-stable.

Thanks in advance,
Saeed.

 drivers/net/ethernet/mellanox/mlx5/core/lag.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/lag.c b/drivers/net/ethernet/mellanox/mlx5/core/lag.c
index 55957246c0e8..b5d5519542e8 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/lag.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/lag.c
@@ -294,7 +294,7 @@ static int mlx5_handle_changeupper_event(struct mlx5_lag *ldev,
 					 struct netdev_notifier_changeupper_info *info)
 {
 	struct net_device *upper = info->upper_dev, *ndev_tmp;
-	struct netdev_lag_upper_info *lag_upper_info;
+	struct netdev_lag_upper_info *lag_upper_info = NULL;
 	bool is_bonded;
 	int bond_status = 0;
 	int num_slaves = 0;
@@ -303,7 +303,8 @@ static int mlx5_handle_changeupper_event(struct mlx5_lag *ldev,
 	if (!netif_is_lag_master(upper))
 		return 0;
 
-	lag_upper_info = info->upper_info;
+	if (info->linking)
+		lag_upper_info = info->upper_info;
 
 	/* The event may still be of interest if the slave does not belong to
 	 * us, but is enslaved to a master which has one or more of our netdevs
-- 
2.11.0

Re: [PATCH net 1/1] net/mlx5: Avoid dereferencing uninitialized pointer

From: David Miller <davem@davemloft.net>
Date: 2017-03-29 01:07:50

From: Saeed Mahameed <redacted>
Date: Tue, 28 Mar 2017 16:13:41 +0300
From: Talat Batheesh <redacted>

In NETDEV_CHANGEUPPER event the upper_info field is valid
only when linking is true. Otherwise it should be ignored.

Fixes: 7907f23adc18 (net/mlx5: Implement RoCE LAG feature)
Signed-off-by: Talat Batheesh <redacted>
Reviewed-by: Aviv Heller <redacted>
Reviewed-by: Moni Shoua <redacted>
Signed-off-by: Saeed Mahameed <redacted>
---

Hi Dave,

I will appreciate it if you queue up this patch for v4.9-stable.
Applied and queued up for -stable, thanks.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help