Commit 821732c5 authored by David Stevens's avatar David Stevens Committed by David S. Miller

[NET]: Fix IGMPv2/MLDv2 list handling OOPS.

parent e81ab60e
...@@ -373,7 +373,7 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ip_mc_list *pmc, ...@@ -373,7 +373,7 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ip_mc_list *pmc,
struct net_device *dev = pmc->interface->dev; struct net_device *dev = pmc->interface->dev;
struct igmpv3_report *pih; struct igmpv3_report *pih;
struct igmpv3_grec *pgr = 0; struct igmpv3_grec *pgr = 0;
struct ip_sf_list *psf, *psf_next, *psf_prev, *psf_list; struct ip_sf_list *psf, *psf_next, *psf_prev, **psf_list;
int scount, first, isquery, truncate; int scount, first, isquery, truncate;
if (pmc->multiaddr == IGMP_ALL_HOSTS) if (pmc->multiaddr == IGMP_ALL_HOSTS)
...@@ -384,9 +384,9 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ip_mc_list *pmc, ...@@ -384,9 +384,9 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ip_mc_list *pmc,
truncate = type == IGMPV3_MODE_IS_EXCLUDE || truncate = type == IGMPV3_MODE_IS_EXCLUDE ||
type == IGMPV3_CHANGE_TO_EXCLUDE; type == IGMPV3_CHANGE_TO_EXCLUDE;
psf_list = sdeleted ? pmc->tomb : pmc->sources; psf_list = sdeleted ? &pmc->tomb : &pmc->sources;
if (!psf_list) { if (!*psf_list) {
if (type == IGMPV3_ALLOW_NEW_SOURCES || if (type == IGMPV3_ALLOW_NEW_SOURCES ||
type == IGMPV3_BLOCK_OLD_SOURCES) type == IGMPV3_BLOCK_OLD_SOURCES)
return skb; return skb;
...@@ -417,7 +417,7 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ip_mc_list *pmc, ...@@ -417,7 +417,7 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ip_mc_list *pmc,
first = 1; first = 1;
scount = 0; scount = 0;
psf_prev = 0; psf_prev = 0;
for (psf=psf_list; psf; psf=psf_next) { for (psf=*psf_list; psf; psf=psf_next) {
u32 *psrc; u32 *psrc;
psf_next = psf->sf_next; psf_next = psf->sf_next;
...@@ -457,7 +457,7 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ip_mc_list *pmc, ...@@ -457,7 +457,7 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ip_mc_list *pmc,
if (psf_prev) if (psf_prev)
psf_prev->sf_next = psf->sf_next; psf_prev->sf_next = psf->sf_next;
else else
pmc->tomb = psf->sf_next; *psf_list = psf->sf_next;
kfree(psf); kfree(psf);
continue; continue;
} }
......
...@@ -659,10 +659,10 @@ static void igmp6_group_dropped(struct ifmcaddr6 *mc) ...@@ -659,10 +659,10 @@ static void igmp6_group_dropped(struct ifmcaddr6 *mc)
if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0) if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
dev_mc_delete(dev, buf, dev->addr_len, 0); dev_mc_delete(dev, buf, dev->addr_len, 0);
} }
spin_unlock_bh(&mc->mca_lock);
if (mc->mca_flags & MAF_NOREPORT) if (mc->mca_flags & MAF_NOREPORT)
goto done; goto done;
spin_unlock_bh(&mc->mca_lock);
if (dev->flags&IFF_UP) if (dev->flags&IFF_UP)
igmp6_leave_group(mc); igmp6_leave_group(mc);
...@@ -670,10 +670,9 @@ static void igmp6_group_dropped(struct ifmcaddr6 *mc) ...@@ -670,10 +670,9 @@ static void igmp6_group_dropped(struct ifmcaddr6 *mc)
spin_lock_bh(&mc->mca_lock); spin_lock_bh(&mc->mca_lock);
if (del_timer(&mc->mca_timer)) if (del_timer(&mc->mca_timer))
atomic_dec(&mc->mca_refcnt); atomic_dec(&mc->mca_refcnt);
spin_unlock_bh(&mc->mca_lock);
done: done:
ip6_mc_clear_src(mc); ip6_mc_clear_src(mc);
spin_unlock_bh(&mc->mca_lock);
} }
/* /*
...@@ -1307,7 +1306,7 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc, ...@@ -1307,7 +1306,7 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc,
struct net_device *dev = pmc->idev->dev; struct net_device *dev = pmc->idev->dev;
struct mld2_report *pmr; struct mld2_report *pmr;
struct mld2_grec *pgr = 0; struct mld2_grec *pgr = 0;
struct ip6_sf_list *psf, *psf_next, *psf_prev, *psf_list; struct ip6_sf_list *psf, *psf_next, *psf_prev, **psf_list;
int scount, first, isquery, truncate; int scount, first, isquery, truncate;
if (pmc->mca_flags & MAF_NOREPORT) if (pmc->mca_flags & MAF_NOREPORT)
...@@ -1318,9 +1317,9 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc, ...@@ -1318,9 +1317,9 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc,
truncate = type == MLD2_MODE_IS_EXCLUDE || truncate = type == MLD2_MODE_IS_EXCLUDE ||
type == MLD2_CHANGE_TO_EXCLUDE; type == MLD2_CHANGE_TO_EXCLUDE;
psf_list = sdeleted ? pmc->mca_tomb : pmc->mca_sources; psf_list = sdeleted ? &pmc->mca_tomb : &pmc->mca_sources;
if (!psf_list) { if (!*psf_list) {
if (type == MLD2_ALLOW_NEW_SOURCES || if (type == MLD2_ALLOW_NEW_SOURCES ||
type == MLD2_BLOCK_OLD_SOURCES) type == MLD2_BLOCK_OLD_SOURCES)
return skb; return skb;
...@@ -1351,7 +1350,7 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc, ...@@ -1351,7 +1350,7 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc,
first = 1; first = 1;
scount = 0; scount = 0;
psf_prev = 0; psf_prev = 0;
for (psf=psf_list; psf; psf=psf_next) { for (psf=*psf_list; psf; psf=psf_next) {
struct in6_addr *psrc; struct in6_addr *psrc;
psf_next = psf->sf_next; psf_next = psf->sf_next;
...@@ -1391,7 +1390,7 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc, ...@@ -1391,7 +1390,7 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc,
if (psf_prev) if (psf_prev)
psf_prev->sf_next = psf->sf_next; psf_prev->sf_next = psf->sf_next;
else else
pmc->mca_tomb = psf->sf_next; *psf_list = psf->sf_next;
kfree(psf); kfree(psf);
continue; continue;
} }
...@@ -1667,11 +1666,11 @@ int ip6_mc_del_src(struct inet6_dev *idev, struct in6_addr *pmca, int sfmode, ...@@ -1667,11 +1666,11 @@ int ip6_mc_del_src(struct inet6_dev *idev, struct in6_addr *pmca, int sfmode,
return -ESRCH; return -ESRCH;
} }
spin_lock_bh(&pmc->mca_lock); spin_lock_bh(&pmc->mca_lock);
read_unlock_bh(&idev->lock);
sf_markstate(pmc); sf_markstate(pmc);
if (!delta) { if (!delta) {
if (!pmc->mca_sfcount[sfmode]) { if (!pmc->mca_sfcount[sfmode]) {
spin_unlock_bh(&pmc->mca_lock); spin_unlock_bh(&pmc->mca_lock);
read_unlock_bh(&idev->lock);
return -EINVAL; return -EINVAL;
} }
pmc->mca_sfcount[sfmode]--; pmc->mca_sfcount[sfmode]--;
...@@ -1699,6 +1698,7 @@ int ip6_mc_del_src(struct inet6_dev *idev, struct in6_addr *pmca, int sfmode, ...@@ -1699,6 +1698,7 @@ int ip6_mc_del_src(struct inet6_dev *idev, struct in6_addr *pmca, int sfmode,
} else if (sf_setstate(pmc) || changerec) } else if (sf_setstate(pmc) || changerec)
mld_ifc_event(pmc->idev); mld_ifc_event(pmc->idev);
spin_unlock_bh(&pmc->mca_lock); spin_unlock_bh(&pmc->mca_lock);
read_unlock_bh(&idev->lock);
return err; return err;
} }
...@@ -1790,7 +1790,6 @@ int ip6_mc_add_src(struct inet6_dev *idev, struct in6_addr *pmca, int sfmode, ...@@ -1790,7 +1790,6 @@ int ip6_mc_add_src(struct inet6_dev *idev, struct in6_addr *pmca, int sfmode,
return -ESRCH; return -ESRCH;
} }
spin_lock_bh(&pmc->mca_lock); spin_lock_bh(&pmc->mca_lock);
read_unlock_bh(&idev->lock);
sf_markstate(pmc); sf_markstate(pmc);
isexclude = pmc->mca_sfmode == MCAST_EXCLUDE; isexclude = pmc->mca_sfmode == MCAST_EXCLUDE;
...@@ -1827,6 +1826,7 @@ int ip6_mc_add_src(struct inet6_dev *idev, struct in6_addr *pmca, int sfmode, ...@@ -1827,6 +1826,7 @@ int ip6_mc_add_src(struct inet6_dev *idev, struct in6_addr *pmca, int sfmode,
} else if (sf_setstate(pmc)) } else if (sf_setstate(pmc))
mld_ifc_event(idev); mld_ifc_event(idev);
spin_unlock_bh(&pmc->mca_lock); spin_unlock_bh(&pmc->mca_lock);
read_unlock_bh(&idev->lock);
return err; return err;
} }
......
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