Skip to content

Commit f87e6f4

Browse files
torvaldsdavem330
authored andcommitted
net: dont leave active on stack LIST_HEAD
Eric W. Biderman and Michal Hocko reported various memory corruptions that we suspected to be related to a LIST head located on stack, that was manipulated after thread left function frame (and eventually exited, so its stack was freed and reused). Eric Dumazet suggested the problem was probably coming from commit 4434572 (net: factorize sync-rcu call in unregister_netdevice_many) This patch fixes __dev_close() and dev_close() to properly deinit their respective LIST_HEAD(single) before exiting. References: https://lkml.org/lkml/2011/2/16/304 References: https://lkml.org/lkml/2011/2/14/223 Reported-by: Michal Hocko <mhocko@suse.cz> Tested-by: Michal Hocko <mhocko@suse.cz> Reported-by: Eric W. Biderman <ebiderman@xmission.com> Tested-by: Eric W. Biderman <ebiderman@xmission.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> CC: Ingo Molnar <mingo@elte.hu> CC: Octavian Purdila <opurdila@ixiacom.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 214f45c commit f87e6f4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

net/core/dev.c

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1280,10 +1280,13 @@ static int __dev_close_many(struct list_head *head)
12801280

12811281
static int __dev_close(struct net_device *dev)
12821282
{
1283+
int retval;
12831284
LIST_HEAD(single);
12841285

12851286
list_add(&dev->unreg_list, &single);
1286-
return __dev_close_many(&single);
1287+
retval = __dev_close_many(&single);
1288+
list_del(&single);
1289+
return retval;
12871290
}
12881291

12891292
int dev_close_many(struct list_head *head)
@@ -1325,7 +1328,7 @@ int dev_close(struct net_device *dev)
13251328

13261329
list_add(&dev->unreg_list, &single);
13271330
dev_close_many(&single);
1328-
1331+
list_del(&single);
13291332
return 0;
13301333
}
13311334
EXPORT_SYMBOL(dev_close);

0 commit comments

Comments
 (0)