diff options
author | Patrick McHardy <kaber@trash.net> | 2013-04-20 19:34:40 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-04-21 15:55:42 -0400 |
commit | cf2c014adef10c75af7042f38e74adb91d7bff6c (patch) | |
tree | 6efd653355117c6e07c8731f0618c9ce578929eb /net/8021q | |
parent | 95a06161e6b903ad5b96285cb57c8df3b7c8ad34 (diff) |
net: vlan: fix memory leak in vlan_info_rcu_free()
The following leak is reported by kmemleak:
[ 86.812073] kmemleak: Found object by alias at 0xffff88006ecc76f0
[ 86.816019] Pid: 739, comm: kworker/u:1 Not tainted 3.9.0-rc5+ #842
[ 86.816019] Call Trace:
[ 86.816019] <IRQ> [<ffffffff81151c58>] find_and_get_object+0x8c/0xdf
[ 86.816019] [<ffffffff8190e90d>] ? vlan_info_rcu_free+0x33/0x49
[ 86.816019] [<ffffffff81151cbe>] delete_object_full+0x13/0x2f
[ 86.816019] [<ffffffff8194bbb6>] kmemleak_free+0x26/0x45
[ 86.816019] [<ffffffff8113e8c7>] slab_free_hook+0x1e/0x7b
[ 86.816019] [<ffffffff81141c05>] kfree+0xce/0x14b
[ 86.816019] [<ffffffff8190e90d>] vlan_info_rcu_free+0x33/0x49
[ 86.816019] [<ffffffff810d0b0b>] rcu_do_batch+0x261/0x4e7
The reason is that in vlan_info_rcu_free() we don't take the VLAN protocol
into account when iterating over the vlan_devices_array.
Reported-by: Cong Wang <amwang@redhat.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Tested-by: Cong Wang <amwang@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/8021q')
-rw-r--r-- | net/8021q/vlan_core.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/net/8021q/vlan_core.c b/net/8021q/vlan_core.c index ebfa2fceb88b..8a15eaadc4bd 100644 --- a/net/8021q/vlan_core.c +++ b/net/8021q/vlan_core.c | |||
@@ -157,10 +157,11 @@ EXPORT_SYMBOL(vlan_untag); | |||
157 | 157 | ||
158 | static void vlan_group_free(struct vlan_group *grp) | 158 | static void vlan_group_free(struct vlan_group *grp) |
159 | { | 159 | { |
160 | int i; | 160 | int i, j; |
161 | 161 | ||
162 | for (i = 0; i < VLAN_GROUP_ARRAY_SPLIT_PARTS; i++) | 162 | for (i = 0; i < VLAN_PROTO_NUM; i++) |
163 | kfree(grp->vlan_devices_arrays[i]); | 163 | for (j = 0; j < VLAN_GROUP_ARRAY_SPLIT_PARTS; j++) |
164 | kfree(grp->vlan_devices_arrays[i][j]); | ||
164 | } | 165 | } |
165 | 166 | ||
166 | static void vlan_info_free(struct vlan_info *vlan_info) | 167 | static void vlan_info_free(struct vlan_info *vlan_info) |