All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] net: fix two possible memory leaks in netif_set_xps_queue
@ 2015-03-26  7:40 roy.qing.li
  2015-03-26 18:15 ` Alexander Duyck
  0 siblings, 1 reply; 2+ messages in thread
From: roy.qing.li @ 2015-03-26  7:40 UTC (permalink / raw)
  To: netdev, alexander.h.duyck

From: Li RongQing <roy.qing.li@gmail.com>

new_dev_maps->cpu_map[cpu] maybe be assigned to the memory from
expand_xps_map() in the first loop, so should be freed

when free dev_maps, make sure to free new_dev_maps->cpu_map[cpu]
firstly

Fixes: 537c00de1c [net: Add functions netif_reset_xps_queue and netif_set_xps_queue]
Cc: Alexander Duyck <alexander.h.duyck@redhat.com>
Signed-off-by: Li RongQing <roy.qing.li@gmail.com>
---
 net/core/dev.c | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/net/core/dev.c b/net/core/dev.c
index 5d43e01..aa6459f 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -2025,9 +2025,11 @@ int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
 		} else if (dev_maps) {
 			/* fill in the new device map from the old device map */
 			map = xmap_dereference(dev_maps->cpu_map[cpu]);
+			new_map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
 			RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], map);
+			if (new_map && map != new_map)
+				kfree_rcu(new_map, rcu);
 		}
-
 	}
 
 	rcu_assign_pointer(dev->xps_maps, new_dev_maps);
@@ -2068,6 +2070,13 @@ out_no_new_maps:
 	/* free map if not active */
 	if (!active) {
 		RCU_INIT_POINTER(dev->xps_maps, NULL);
+
+		for_each_possible_cpu(cpu) {
+			map = xmap_dereference(dev_maps->cpu_map[cpu]);
+			if (map)
+				kfree_rcu(map, rcu);
+		}
+
 		kfree_rcu(dev_maps, rcu);
 	}
 
-- 
2.1.0

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

* Re: [PATCH] net: fix two possible memory leaks in netif_set_xps_queue
  2015-03-26  7:40 [PATCH] net: fix two possible memory leaks in netif_set_xps_queue roy.qing.li
@ 2015-03-26 18:15 ` Alexander Duyck
  0 siblings, 0 replies; 2+ messages in thread
From: Alexander Duyck @ 2015-03-26 18:15 UTC (permalink / raw)
  To: roy.qing.li, netdev

On 03/26/2015 12:40 AM, roy.qing.li@gmail.com wrote:
> From: Li RongQing <roy.qing.li@gmail.com>
>
> new_dev_maps->cpu_map[cpu] maybe be assigned to the memory from
> expand_xps_map() in the first loop, so should be freed
>
> when free dev_maps, make sure to free new_dev_maps->cpu_map[cpu]
> firstly
>
> Fixes: 537c00de1c [net: Add functions netif_reset_xps_queue and netif_set_xps_queue]
> Cc: Alexander Duyck <alexander.h.duyck@redhat.com>
> Signed-off-by: Li RongQing <roy.qing.li@gmail.com>
> ---
>   net/core/dev.c | 11 ++++++++++-
>   1 file changed, 10 insertions(+), 1 deletion(-)
>
> diff --git a/net/core/dev.c b/net/core/dev.c
> index 5d43e01..aa6459f 100644
> --- a/net/core/dev.c
> +++ b/net/core/dev.c
> @@ -2025,9 +2025,11 @@ int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
>   		} else if (dev_maps) {
>   			/* fill in the new device map from the old device map */
>   			map = xmap_dereference(dev_maps->cpu_map[cpu]);
> +			new_map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
>   			RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], map);
> +			if (new_map && map != new_map)
> +				kfree_rcu(new_map, rcu);
>   		}
> -
>   	}
>   

This would cause memory corruption as you are freeing objects that are 
still active in dev->xps_maps, they cannot be freed until the section 
clearly called out as "Cleanup old maps" below it.  That is where this 
memory is freed using the exact same logic you seemed to copy from below.

>   	rcu_assign_pointer(dev->xps_maps, new_dev_maps);
> @@ -2068,6 +2070,13 @@ out_no_new_maps:
>   	/* free map if not active */
>   	if (!active) {
>   		RCU_INIT_POINTER(dev->xps_maps, NULL);
> +
> +		for_each_possible_cpu(cpu) {
> +			map = xmap_dereference(dev_maps->cpu_map[cpu]);
> +			if (map)
> +				kfree_rcu(map, rcu);
> +		}
> +
>   		kfree_rcu(dev_maps, rcu);
>   	}
>   

This is unnecessary.  If there are no active queue sets left then we 
already removed all of the memory in remove_xps_queue.

- Alex

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

end of thread, other threads:[~2015-03-26 18:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-26  7:40 [PATCH] net: fix two possible memory leaks in netif_set_xps_queue roy.qing.li
2015-03-26 18:15 ` Alexander Duyck

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.