Commit 6ca5917f authored by Wolfgang Bumiller's avatar Wolfgang Bumiller Committed by Stefan Bader

net: fix deadlock while clearing neighbor proxy table

BugLink: http://bugs.launchpad.net/bugs/1768474

[ Upstream commit 53b76cdf ]

When coming from ndisc_netdev_event() in net/ipv6/ndisc.c,
neigh_ifdown() is called with &nd_tbl, locking this while
clearing the proxy neighbor entries when eg. deleting an
interface. Calling the table's pndisc_destructor() with the
lock still held, however, can cause a deadlock: When a
multicast listener is available an IGMP packet of type
ICMPV6_MGM_REDUCTION may be sent out. When reaching
ip6_finish_output2(), if no neighbor entry for the target
address is found, __neigh_create() is called with &nd_tbl,
which it'll want to lock.

Move the elements into their own list, then unlock the table
and perform the destruction.

Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=199289
Fixes: 6fd6ce20 ("ipv6: Do not depend on rt->n in ip6_finish_output2().")
Signed-off-by: default avatarWolfgang Bumiller <w.bumiller@proxmox.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarJuerg Haefliger <juergh@canonical.com>
Signed-off-by: default avatarKleber Sacilotto de Souza <kleber.souza@canonical.com>
parent 404affa0
...@@ -54,7 +54,8 @@ do { \ ...@@ -54,7 +54,8 @@ do { \
static void neigh_timer_handler(unsigned long arg); static void neigh_timer_handler(unsigned long arg);
static void __neigh_notify(struct neighbour *n, int type, int flags); static void __neigh_notify(struct neighbour *n, int type, int flags);
static void neigh_update_notify(struct neighbour *neigh); static void neigh_update_notify(struct neighbour *neigh);
static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev); static int pneigh_ifdown_and_unlock(struct neigh_table *tbl,
struct net_device *dev);
#ifdef CONFIG_PROC_FS #ifdef CONFIG_PROC_FS
static const struct file_operations neigh_stat_seq_fops; static const struct file_operations neigh_stat_seq_fops;
...@@ -254,8 +255,7 @@ int neigh_ifdown(struct neigh_table *tbl, struct net_device *dev) ...@@ -254,8 +255,7 @@ int neigh_ifdown(struct neigh_table *tbl, struct net_device *dev)
{ {
write_lock_bh(&tbl->lock); write_lock_bh(&tbl->lock);
neigh_flush_dev(tbl, dev); neigh_flush_dev(tbl, dev);
pneigh_ifdown(tbl, dev); pneigh_ifdown_and_unlock(tbl, dev);
write_unlock_bh(&tbl->lock);
del_timer_sync(&tbl->proxy_timer); del_timer_sync(&tbl->proxy_timer);
pneigh_queue_purge(&tbl->proxy_queue); pneigh_queue_purge(&tbl->proxy_queue);
...@@ -645,9 +645,10 @@ int pneigh_delete(struct neigh_table *tbl, struct net *net, const void *pkey, ...@@ -645,9 +645,10 @@ int pneigh_delete(struct neigh_table *tbl, struct net *net, const void *pkey,
return -ENOENT; return -ENOENT;
} }
static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev) static int pneigh_ifdown_and_unlock(struct neigh_table *tbl,
struct net_device *dev)
{ {
struct pneigh_entry *n, **np; struct pneigh_entry *n, **np, *freelist = NULL;
u32 h; u32 h;
for (h = 0; h <= PNEIGH_HASHMASK; h++) { for (h = 0; h <= PNEIGH_HASHMASK; h++) {
...@@ -655,16 +656,23 @@ static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev) ...@@ -655,16 +656,23 @@ static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev)
while ((n = *np) != NULL) { while ((n = *np) != NULL) {
if (!dev || n->dev == dev) { if (!dev || n->dev == dev) {
*np = n->next; *np = n->next;
if (tbl->pdestructor) n->next = freelist;
tbl->pdestructor(n); freelist = n;
if (n->dev)
dev_put(n->dev);
kfree(n);
continue; continue;
} }
np = &n->next; np = &n->next;
} }
} }
write_unlock_bh(&tbl->lock);
while ((n = freelist)) {
freelist = n->next;
n->next = NULL;
if (tbl->pdestructor)
tbl->pdestructor(n);
if (n->dev)
dev_put(n->dev);
kfree(n);
}
return -ENOENT; return -ENOENT;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment