Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Linux NET3: Internet Group Management Protocol [IGMP] |
| 3 | * |
| 4 | * This code implements the IGMP protocol as defined in RFC1112. There has |
| 5 | * been a further revision of this protocol since which is now supported. |
| 6 | * |
| 7 | * If you have trouble with this module be careful what gcc you have used, |
| 8 | * the older version didn't come out right using gcc 2.5.8, the newer one |
| 9 | * seems to fall out with gcc 2.6.2. |
| 10 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * Authors: |
Alan Cox | 113aa83 | 2008-10-13 19:01:08 -0700 | [diff] [blame] | 12 | * Alan Cox <alan@lxorguk.ukuu.org.uk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
| 14 | * This program is free software; you can redistribute it and/or |
| 15 | * modify it under the terms of the GNU General Public License |
| 16 | * as published by the Free Software Foundation; either version |
| 17 | * 2 of the License, or (at your option) any later version. |
| 18 | * |
| 19 | * Fixes: |
| 20 | * |
| 21 | * Alan Cox : Added lots of __inline__ to optimise |
| 22 | * the memory usage of all the tiny little |
| 23 | * functions. |
| 24 | * Alan Cox : Dumped the header building experiment. |
| 25 | * Alan Cox : Minor tweaks ready for multicast routing |
| 26 | * and extended IGMP protocol. |
| 27 | * Alan Cox : Removed a load of inline directives. Gcc 2.5.8 |
| 28 | * writes utterly bogus code otherwise (sigh) |
| 29 | * fixed IGMP loopback to behave in the manner |
| 30 | * desired by mrouted, fixed the fact it has been |
| 31 | * broken since 1.3.6 and cleaned up a few minor |
| 32 | * points. |
| 33 | * |
| 34 | * Chih-Jen Chang : Tried to revise IGMP to Version 2 |
| 35 | * Tsu-Sheng Tsao E-mail: chihjenc@scf.usc.edu and tsusheng@scf.usc.edu |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 36 | * The enhancements are mainly based on Steve Deering's |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | * ipmulti-3.5 source code. |
| 38 | * Chih-Jen Chang : Added the igmp_get_mrouter_info and |
| 39 | * Tsu-Sheng Tsao igmp_set_mrouter_info to keep track of |
| 40 | * the mrouted version on that device. |
| 41 | * Chih-Jen Chang : Added the max_resp_time parameter to |
| 42 | * Tsu-Sheng Tsao igmp_heard_query(). Using this parameter |
| 43 | * to identify the multicast router version |
| 44 | * and do what the IGMP version 2 specified. |
| 45 | * Chih-Jen Chang : Added a timer to revert to IGMP V2 router |
| 46 | * Tsu-Sheng Tsao if the specified time expired. |
| 47 | * Alan Cox : Stop IGMP from 0.0.0.0 being accepted. |
| 48 | * Alan Cox : Use GFP_ATOMIC in the right places. |
| 49 | * Christian Daudt : igmp timer wasn't set for local group |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 50 | * memberships but was being deleted, |
| 51 | * which caused a "del_timer() called |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | * from %p with timer not initialized\n" |
| 53 | * message (960131). |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 54 | * Christian Daudt : removed del_timer from |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | * igmp_timer_expire function (960205). |
| 56 | * Christian Daudt : igmp_heard_report now only calls |
| 57 | * igmp_timer_expire if tm->running is |
| 58 | * true (960216). |
| 59 | * Malcolm Beattie : ttl comparison wrong in igmp_rcv made |
| 60 | * igmp_heard_query never trigger. Expiry |
| 61 | * miscalculation fixed in igmp_heard_query |
| 62 | * and random() made to return unsigned to |
| 63 | * prevent negative expiry times. |
| 64 | * Alexey Kuznetsov: Wrong group leaving behaviour, backport |
| 65 | * fix from pending 2.1.x patches. |
| 66 | * Alan Cox: Forget to enable FDDI support earlier. |
| 67 | * Alexey Kuznetsov: Fixed leaving groups on device down. |
| 68 | * Alexey Kuznetsov: Accordance to igmp-v2-06 draft. |
| 69 | * David L Stevens: IGMPv3 support, with help from |
| 70 | * Vinay Kulkarni |
| 71 | */ |
| 72 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 74 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | #include <asm/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | #include <linux/types.h> |
| 77 | #include <linux/kernel.h> |
| 78 | #include <linux/jiffies.h> |
| 79 | #include <linux/string.h> |
| 80 | #include <linux/socket.h> |
| 81 | #include <linux/sockios.h> |
| 82 | #include <linux/in.h> |
| 83 | #include <linux/inet.h> |
| 84 | #include <linux/netdevice.h> |
| 85 | #include <linux/skbuff.h> |
| 86 | #include <linux/inetdevice.h> |
| 87 | #include <linux/igmp.h> |
| 88 | #include <linux/if_arp.h> |
| 89 | #include <linux/rtnetlink.h> |
| 90 | #include <linux/times.h> |
Hannes Frederic Sowa | 9d4a031 | 2013-07-26 17:05:16 +0200 | [diff] [blame] | 91 | #include <linux/pkt_sched.h> |
Arnaldo Carvalho de Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 92 | |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 93 | #include <net/net_namespace.h> |
Arnaldo Carvalho de Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 94 | #include <net/arp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | #include <net/ip.h> |
| 96 | #include <net/protocol.h> |
| 97 | #include <net/route.h> |
| 98 | #include <net/sock.h> |
| 99 | #include <net/checksum.h> |
Madhu Challa | 93a714d | 2015-02-25 09:58:35 -0800 | [diff] [blame] | 100 | #include <net/inet_common.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | #include <linux/netfilter_ipv4.h> |
| 102 | #ifdef CONFIG_IP_MROUTE |
| 103 | #include <linux/mroute.h> |
| 104 | #endif |
| 105 | #ifdef CONFIG_PROC_FS |
| 106 | #include <linux/proc_fs.h> |
| 107 | #include <linux/seq_file.h> |
| 108 | #endif |
| 109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | #ifdef CONFIG_IP_MULTICAST |
| 111 | /* Parameter names and values are taken from igmp-v2-06 draft */ |
| 112 | |
Fabian Frederick | 436f7c2 | 2014-11-04 20:52:14 +0100 | [diff] [blame] | 113 | #define IGMP_V1_ROUTER_PRESENT_TIMEOUT (400*HZ) |
| 114 | #define IGMP_V2_ROUTER_PRESENT_TIMEOUT (400*HZ) |
| 115 | #define IGMP_V2_UNSOLICITED_REPORT_INTERVAL (10*HZ) |
| 116 | #define IGMP_V3_UNSOLICITED_REPORT_INTERVAL (1*HZ) |
| 117 | #define IGMP_QUERY_RESPONSE_INTERVAL (10*HZ) |
| 118 | #define IGMP_QUERY_ROBUSTNESS_VARIABLE 2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | |
| 120 | |
Fabian Frederick | 436f7c2 | 2014-11-04 20:52:14 +0100 | [diff] [blame] | 121 | #define IGMP_INITIAL_REPORT_DELAY (1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
Fabian Frederick | 436f7c2 | 2014-11-04 20:52:14 +0100 | [diff] [blame] | 123 | /* IGMP_INITIAL_REPORT_DELAY is not from IGMP specs! |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | * IGMP specs require to report membership immediately after |
| 125 | * joining a group, but we delay the first report by a |
| 126 | * small interval. It seems more natural and still does not |
| 127 | * contradict to specs provided this delay is small enough. |
| 128 | */ |
| 129 | |
Herbert Xu | 42f811b | 2007-06-04 23:34:44 -0700 | [diff] [blame] | 130 | #define IGMP_V1_SEEN(in_dev) \ |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 131 | (IPV4_DEVCONF_ALL(dev_net(in_dev->dev), FORCE_IGMP_VERSION) == 1 || \ |
Herbert Xu | 42f811b | 2007-06-04 23:34:44 -0700 | [diff] [blame] | 132 | IN_DEV_CONF_GET((in_dev), FORCE_IGMP_VERSION) == 1 || \ |
| 133 | ((in_dev)->mr_v1_seen && \ |
| 134 | time_before(jiffies, (in_dev)->mr_v1_seen))) |
| 135 | #define IGMP_V2_SEEN(in_dev) \ |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 136 | (IPV4_DEVCONF_ALL(dev_net(in_dev->dev), FORCE_IGMP_VERSION) == 2 || \ |
Herbert Xu | 42f811b | 2007-06-04 23:34:44 -0700 | [diff] [blame] | 137 | IN_DEV_CONF_GET((in_dev), FORCE_IGMP_VERSION) == 2 || \ |
| 138 | ((in_dev)->mr_v2_seen && \ |
| 139 | time_before(jiffies, (in_dev)->mr_v2_seen))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | |
William Manley | cab7004 | 2013-08-06 19:03:13 +0100 | [diff] [blame] | 141 | static int unsolicited_report_interval(struct in_device *in_dev) |
| 142 | { |
William Manley | 2690048 | 2013-08-06 19:03:15 +0100 | [diff] [blame] | 143 | int interval_ms, interval_jiffies; |
| 144 | |
William Manley | cab7004 | 2013-08-06 19:03:13 +0100 | [diff] [blame] | 145 | if (IGMP_V1_SEEN(in_dev) || IGMP_V2_SEEN(in_dev)) |
William Manley | 2690048 | 2013-08-06 19:03:15 +0100 | [diff] [blame] | 146 | interval_ms = IN_DEV_CONF_GET( |
| 147 | in_dev, |
| 148 | IGMPV2_UNSOLICITED_REPORT_INTERVAL); |
William Manley | cab7004 | 2013-08-06 19:03:13 +0100 | [diff] [blame] | 149 | else /* v3 */ |
William Manley | 2690048 | 2013-08-06 19:03:15 +0100 | [diff] [blame] | 150 | interval_ms = IN_DEV_CONF_GET( |
| 151 | in_dev, |
| 152 | IGMPV3_UNSOLICITED_REPORT_INTERVAL); |
| 153 | |
| 154 | interval_jiffies = msecs_to_jiffies(interval_ms); |
| 155 | |
| 156 | /* _timer functions can't handle a delay of 0 jiffies so ensure |
| 157 | * we always return a positive value. |
| 158 | */ |
| 159 | if (interval_jiffies <= 0) |
| 160 | interval_jiffies = 1; |
| 161 | return interval_jiffies; |
William Manley | cab7004 | 2013-08-06 19:03:13 +0100 | [diff] [blame] | 162 | } |
| 163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | static void igmpv3_add_delrec(struct in_device *in_dev, struct ip_mc_list *im); |
Al Viro | 6300772 | 2006-09-27 18:31:32 -0700 | [diff] [blame] | 165 | static void igmpv3_del_delrec(struct in_device *in_dev, __be32 multiaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | static void igmpv3_clear_delrec(struct in_device *in_dev); |
| 167 | static int sf_setstate(struct ip_mc_list *pmc); |
| 168 | static void sf_markstate(struct ip_mc_list *pmc); |
| 169 | #endif |
| 170 | static void ip_mc_clear_src(struct ip_mc_list *pmc); |
Al Viro | 8f935bb | 2006-09-27 18:30:07 -0700 | [diff] [blame] | 171 | static int ip_mc_add_src(struct in_device *in_dev, __be32 *pmca, int sfmode, |
| 172 | int sfcount, __be32 *psfsrc, int delta); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
| 174 | static void ip_ma_put(struct ip_mc_list *im) |
| 175 | { |
| 176 | if (atomic_dec_and_test(&im->refcnt)) { |
| 177 | in_dev_put(im->interface); |
Lai Jiangshan | 42ea299d | 2011-03-18 11:44:08 +0800 | [diff] [blame] | 178 | kfree_rcu(im, rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | } |
| 180 | } |
| 181 | |
David S. Miller | d9aa938 | 2010-11-15 08:52:02 -0800 | [diff] [blame] | 182 | #define for_each_pmc_rcu(in_dev, pmc) \ |
| 183 | for (pmc = rcu_dereference(in_dev->mc_list); \ |
| 184 | pmc != NULL; \ |
| 185 | pmc = rcu_dereference(pmc->next_rcu)) |
| 186 | |
| 187 | #define for_each_pmc_rtnl(in_dev, pmc) \ |
| 188 | for (pmc = rtnl_dereference(in_dev->mc_list); \ |
| 189 | pmc != NULL; \ |
| 190 | pmc = rtnl_dereference(pmc->next_rcu)) |
| 191 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | #ifdef CONFIG_IP_MULTICAST |
| 193 | |
| 194 | /* |
| 195 | * Timer management |
| 196 | */ |
| 197 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 198 | static void igmp_stop_timer(struct ip_mc_list *im) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | { |
| 200 | spin_lock_bh(&im->lock); |
| 201 | if (del_timer(&im->timer)) |
| 202 | atomic_dec(&im->refcnt); |
Jianjun Kong | a7e9ff7 | 2008-11-03 00:26:09 -0800 | [diff] [blame] | 203 | im->tm_running = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | im->reporter = 0; |
| 205 | im->unsolicit_count = 0; |
| 206 | spin_unlock_bh(&im->lock); |
| 207 | } |
| 208 | |
| 209 | /* It must be called with locked im->lock */ |
| 210 | static void igmp_start_timer(struct ip_mc_list *im, int max_delay) |
| 211 | { |
Aruna-Hewapathirane | 63862b5 | 2014-01-11 07:15:59 -0500 | [diff] [blame] | 212 | int tv = prandom_u32() % max_delay; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | |
Jianjun Kong | a7e9ff7 | 2008-11-03 00:26:09 -0800 | [diff] [blame] | 214 | im->tm_running = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | if (!mod_timer(&im->timer, jiffies+tv+2)) |
| 216 | atomic_inc(&im->refcnt); |
| 217 | } |
| 218 | |
| 219 | static void igmp_gq_start_timer(struct in_device *in_dev) |
| 220 | { |
Aruna-Hewapathirane | 63862b5 | 2014-01-11 07:15:59 -0500 | [diff] [blame] | 221 | int tv = prandom_u32() % in_dev->mr_maxdelay; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | |
| 223 | in_dev->mr_gq_running = 1; |
| 224 | if (!mod_timer(&in_dev->mr_gq_timer, jiffies+tv+2)) |
| 225 | in_dev_hold(in_dev); |
| 226 | } |
| 227 | |
| 228 | static void igmp_ifc_start_timer(struct in_device *in_dev, int delay) |
| 229 | { |
Aruna-Hewapathirane | 63862b5 | 2014-01-11 07:15:59 -0500 | [diff] [blame] | 230 | int tv = prandom_u32() % delay; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
| 232 | if (!mod_timer(&in_dev->mr_ifc_timer, jiffies+tv+2)) |
| 233 | in_dev_hold(in_dev); |
| 234 | } |
| 235 | |
| 236 | static void igmp_mod_timer(struct ip_mc_list *im, int max_delay) |
| 237 | { |
| 238 | spin_lock_bh(&im->lock); |
| 239 | im->unsolicit_count = 0; |
| 240 | if (del_timer(&im->timer)) { |
| 241 | if ((long)(im->timer.expires-jiffies) < max_delay) { |
| 242 | add_timer(&im->timer); |
Jianjun Kong | a7e9ff7 | 2008-11-03 00:26:09 -0800 | [diff] [blame] | 243 | im->tm_running = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | spin_unlock_bh(&im->lock); |
| 245 | return; |
| 246 | } |
| 247 | atomic_dec(&im->refcnt); |
| 248 | } |
| 249 | igmp_start_timer(im, max_delay); |
| 250 | spin_unlock_bh(&im->lock); |
| 251 | } |
| 252 | |
| 253 | |
| 254 | /* |
| 255 | * Send an IGMP report. |
| 256 | */ |
| 257 | |
| 258 | #define IGMP_SIZE (sizeof(struct igmphdr)+sizeof(struct iphdr)+4) |
| 259 | |
| 260 | |
| 261 | static int is_in(struct ip_mc_list *pmc, struct ip_sf_list *psf, int type, |
| 262 | int gdeleted, int sdeleted) |
| 263 | { |
| 264 | switch (type) { |
| 265 | case IGMPV3_MODE_IS_INCLUDE: |
| 266 | case IGMPV3_MODE_IS_EXCLUDE: |
| 267 | if (gdeleted || sdeleted) |
| 268 | return 0; |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 269 | if (!(pmc->gsquery && !psf->sf_gsresp)) { |
| 270 | if (pmc->sfmode == MCAST_INCLUDE) |
| 271 | return 1; |
| 272 | /* don't include if this source is excluded |
| 273 | * in all filters |
| 274 | */ |
| 275 | if (psf->sf_count[MCAST_INCLUDE]) |
| 276 | return type == IGMPV3_MODE_IS_INCLUDE; |
| 277 | return pmc->sfcount[MCAST_EXCLUDE] == |
| 278 | psf->sf_count[MCAST_EXCLUDE]; |
| 279 | } |
| 280 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | case IGMPV3_CHANGE_TO_INCLUDE: |
| 282 | if (gdeleted || sdeleted) |
| 283 | return 0; |
| 284 | return psf->sf_count[MCAST_INCLUDE] != 0; |
| 285 | case IGMPV3_CHANGE_TO_EXCLUDE: |
| 286 | if (gdeleted || sdeleted) |
| 287 | return 0; |
| 288 | if (pmc->sfcount[MCAST_EXCLUDE] == 0 || |
| 289 | psf->sf_count[MCAST_INCLUDE]) |
| 290 | return 0; |
| 291 | return pmc->sfcount[MCAST_EXCLUDE] == |
| 292 | psf->sf_count[MCAST_EXCLUDE]; |
| 293 | case IGMPV3_ALLOW_NEW_SOURCES: |
| 294 | if (gdeleted || !psf->sf_crcount) |
| 295 | return 0; |
| 296 | return (pmc->sfmode == MCAST_INCLUDE) ^ sdeleted; |
| 297 | case IGMPV3_BLOCK_OLD_SOURCES: |
| 298 | if (pmc->sfmode == MCAST_INCLUDE) |
| 299 | return gdeleted || (psf->sf_crcount && sdeleted); |
| 300 | return psf->sf_crcount && !gdeleted && !sdeleted; |
| 301 | } |
| 302 | return 0; |
| 303 | } |
| 304 | |
| 305 | static int |
| 306 | igmp_scount(struct ip_mc_list *pmc, int type, int gdeleted, int sdeleted) |
| 307 | { |
| 308 | struct ip_sf_list *psf; |
| 309 | int scount = 0; |
| 310 | |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 311 | for (psf = pmc->sources; psf; psf = psf->sf_next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | if (!is_in(pmc, psf, type, gdeleted, sdeleted)) |
| 313 | continue; |
| 314 | scount++; |
| 315 | } |
| 316 | return scount; |
| 317 | } |
| 318 | |
Daniel Borkmann | 4c672e4 | 2014-11-05 20:27:38 +0100 | [diff] [blame] | 319 | static struct sk_buff *igmpv3_newpack(struct net_device *dev, unsigned int mtu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | { |
| 321 | struct sk_buff *skb; |
| 322 | struct rtable *rt; |
| 323 | struct iphdr *pip; |
| 324 | struct igmpv3_report *pig; |
Daniel Lezcano | 877aced | 2008-08-13 16:15:57 -0700 | [diff] [blame] | 325 | struct net *net = dev_net(dev); |
David S. Miller | 31e4543 | 2011-05-03 20:25:42 -0700 | [diff] [blame] | 326 | struct flowi4 fl4; |
Herbert Xu | 6608824 | 2011-11-18 02:20:04 +0000 | [diff] [blame] | 327 | int hlen = LL_RESERVED_SPACE(dev); |
| 328 | int tlen = dev->needed_tailroom; |
Daniel Borkmann | 4c672e4 | 2014-11-05 20:27:38 +0100 | [diff] [blame] | 329 | unsigned int size = mtu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | |
Eric Dumazet | 57e1ab6 | 2010-11-16 20:36:42 +0000 | [diff] [blame] | 331 | while (1) { |
Herbert Xu | 6608824 | 2011-11-18 02:20:04 +0000 | [diff] [blame] | 332 | skb = alloc_skb(size + hlen + tlen, |
Eric Dumazet | 57e1ab6 | 2010-11-16 20:36:42 +0000 | [diff] [blame] | 333 | GFP_ATOMIC | __GFP_NOWARN); |
| 334 | if (skb) |
| 335 | break; |
| 336 | size >>= 1; |
| 337 | if (size < 256) |
| 338 | return NULL; |
| 339 | } |
Hannes Frederic Sowa | 9d4a031 | 2013-07-26 17:05:16 +0200 | [diff] [blame] | 340 | skb->priority = TC_PRIO_CONTROL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | |
David S. Miller | 31e4543 | 2011-05-03 20:25:42 -0700 | [diff] [blame] | 342 | rt = ip_route_output_ports(net, &fl4, NULL, IGMPV3_ALL_MCR, 0, |
David S. Miller | 78fbfd8 | 2011-03-12 00:00:52 -0500 | [diff] [blame] | 343 | 0, 0, |
| 344 | IPPROTO_IGMP, 0, dev->ifindex); |
| 345 | if (IS_ERR(rt)) { |
| 346 | kfree_skb(skb); |
| 347 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 350 | skb_dst_set(skb, &rt->dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | skb->dev = dev; |
| 352 | |
Daniel Borkmann | 4c672e4 | 2014-11-05 20:27:38 +0100 | [diff] [blame] | 353 | skb->reserved_tailroom = skb_end_offset(skb) - |
| 354 | min(mtu, skb_end_offset(skb)); |
Herbert Xu | 6608824 | 2011-11-18 02:20:04 +0000 | [diff] [blame] | 355 | skb_reserve(skb, hlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | |
Arnaldo Carvalho de Melo | 7e28ecc | 2007-03-10 18:40:59 -0300 | [diff] [blame] | 357 | skb_reset_network_header(skb); |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 358 | pip = ip_hdr(skb); |
Arnaldo Carvalho de Melo | 7e28ecc | 2007-03-10 18:40:59 -0300 | [diff] [blame] | 359 | skb_put(skb, sizeof(struct iphdr) + 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | |
| 361 | pip->version = 4; |
| 362 | pip->ihl = (sizeof(struct iphdr)+4)>>2; |
| 363 | pip->tos = 0xc0; |
| 364 | pip->frag_off = htons(IP_DF); |
| 365 | pip->ttl = 1; |
David S. Miller | 492f64c | 2011-05-03 20:53:12 -0700 | [diff] [blame] | 366 | pip->daddr = fl4.daddr; |
| 367 | pip->saddr = fl4.saddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | pip->protocol = IPPROTO_IGMP; |
| 369 | pip->tot_len = 0; /* filled in later */ |
Hannes Frederic Sowa | b6a7719 | 2015-03-25 17:07:44 +0100 | [diff] [blame] | 370 | ip_select_ident(net, skb, NULL); |
Daniel Baluta | 5e73ea1 | 2012-04-15 01:34:41 +0000 | [diff] [blame] | 371 | ((u8 *)&pip[1])[0] = IPOPT_RA; |
| 372 | ((u8 *)&pip[1])[1] = 4; |
| 373 | ((u8 *)&pip[1])[2] = 0; |
| 374 | ((u8 *)&pip[1])[3] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | |
Arnaldo Carvalho de Melo | b0e380b | 2007-04-10 21:21:55 -0700 | [diff] [blame] | 376 | skb->transport_header = skb->network_header + sizeof(struct iphdr) + 4; |
Arnaldo Carvalho de Melo | d10ba34 | 2007-03-14 21:05:37 -0300 | [diff] [blame] | 377 | skb_put(skb, sizeof(*pig)); |
Arnaldo Carvalho de Melo | d9edf9e | 2007-03-13 14:19:23 -0300 | [diff] [blame] | 378 | pig = igmpv3_report_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | pig->type = IGMPV3_HOST_MEMBERSHIP_REPORT; |
| 380 | pig->resv1 = 0; |
| 381 | pig->csum = 0; |
| 382 | pig->resv2 = 0; |
| 383 | pig->ngrec = 0; |
| 384 | return skb; |
| 385 | } |
| 386 | |
| 387 | static int igmpv3_sendpack(struct sk_buff *skb) |
| 388 | { |
Arnaldo Carvalho de Melo | d9edf9e | 2007-03-13 14:19:23 -0300 | [diff] [blame] | 389 | struct igmphdr *pig = igmp_hdr(skb); |
Simon Horman | f7c0c2a | 2013-05-28 20:34:27 +0000 | [diff] [blame] | 390 | const int igmplen = skb_tail_pointer(skb) - skb_transport_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | |
Arnaldo Carvalho de Melo | d9edf9e | 2007-03-13 14:19:23 -0300 | [diff] [blame] | 392 | pig->csum = ip_compute_csum(igmp_hdr(skb), igmplen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | |
Eric W. Biederman | 33224b1 | 2015-10-07 16:48:46 -0500 | [diff] [blame] | 394 | return ip_local_out(dev_net(skb_dst(skb)->dev), skb->sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | static int grec_size(struct ip_mc_list *pmc, int type, int gdel, int sdel) |
| 398 | { |
Jianjun Kong | a7e9ff7 | 2008-11-03 00:26:09 -0800 | [diff] [blame] | 399 | return sizeof(struct igmpv3_grec) + 4*igmp_scount(pmc, type, gdel, sdel); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | } |
| 401 | |
| 402 | static struct sk_buff *add_grhead(struct sk_buff *skb, struct ip_mc_list *pmc, |
| 403 | int type, struct igmpv3_grec **ppgr) |
| 404 | { |
| 405 | struct net_device *dev = pmc->interface->dev; |
| 406 | struct igmpv3_report *pih; |
| 407 | struct igmpv3_grec *pgr; |
| 408 | |
| 409 | if (!skb) |
| 410 | skb = igmpv3_newpack(dev, dev->mtu); |
| 411 | if (!skb) |
| 412 | return NULL; |
| 413 | pgr = (struct igmpv3_grec *)skb_put(skb, sizeof(struct igmpv3_grec)); |
| 414 | pgr->grec_type = type; |
| 415 | pgr->grec_auxwords = 0; |
| 416 | pgr->grec_nsrcs = 0; |
| 417 | pgr->grec_mca = pmc->multiaddr; |
Arnaldo Carvalho de Melo | d9edf9e | 2007-03-13 14:19:23 -0300 | [diff] [blame] | 418 | pih = igmpv3_report_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | pih->ngrec = htons(ntohs(pih->ngrec)+1); |
| 420 | *ppgr = pgr; |
| 421 | return skb; |
| 422 | } |
| 423 | |
Daniel Borkmann | 4c672e4 | 2014-11-05 20:27:38 +0100 | [diff] [blame] | 424 | #define AVAILABLE(skb) ((skb) ? skb_availroom(skb) : 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | |
| 426 | static struct sk_buff *add_grec(struct sk_buff *skb, struct ip_mc_list *pmc, |
| 427 | int type, int gdeleted, int sdeleted) |
| 428 | { |
| 429 | struct net_device *dev = pmc->interface->dev; |
Nikolay Borisov | 87a8a2a | 2016-02-09 00:13:50 +0200 | [diff] [blame^] | 430 | struct net *net = dev_net(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | struct igmpv3_report *pih; |
| 432 | struct igmpv3_grec *pgr = NULL; |
| 433 | struct ip_sf_list *psf, *psf_next, *psf_prev, **psf_list; |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 434 | int scount, stotal, first, isquery, truncate; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | |
| 436 | if (pmc->multiaddr == IGMP_ALL_HOSTS) |
| 437 | return skb; |
Nikolay Borisov | 87a8a2a | 2016-02-09 00:13:50 +0200 | [diff] [blame^] | 438 | if (ipv4_is_local_multicast(pmc->multiaddr) && !net->ipv4.sysctl_igmp_llm_reports) |
Philip Downey | df2cf4a | 2015-08-27 16:46:26 +0100 | [diff] [blame] | 439 | return skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | |
| 441 | isquery = type == IGMPV3_MODE_IS_INCLUDE || |
| 442 | type == IGMPV3_MODE_IS_EXCLUDE; |
| 443 | truncate = type == IGMPV3_MODE_IS_EXCLUDE || |
| 444 | type == IGMPV3_CHANGE_TO_EXCLUDE; |
| 445 | |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 446 | stotal = scount = 0; |
| 447 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | psf_list = sdeleted ? &pmc->tomb : &pmc->sources; |
| 449 | |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 450 | if (!*psf_list) |
| 451 | goto empty_source; |
| 452 | |
Arnaldo Carvalho de Melo | d9edf9e | 2007-03-13 14:19:23 -0300 | [diff] [blame] | 453 | pih = skb ? igmpv3_report_hdr(skb) : NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | |
| 455 | /* EX and TO_EX get a fresh packet, if needed */ |
| 456 | if (truncate) { |
| 457 | if (pih && pih->ngrec && |
| 458 | AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) { |
| 459 | if (skb) |
| 460 | igmpv3_sendpack(skb); |
| 461 | skb = igmpv3_newpack(dev, dev->mtu); |
| 462 | } |
| 463 | } |
| 464 | first = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | psf_prev = NULL; |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 466 | for (psf = *psf_list; psf; psf = psf_next) { |
Al Viro | ea4d9e7 | 2006-09-27 18:30:52 -0700 | [diff] [blame] | 467 | __be32 *psrc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | |
| 469 | psf_next = psf->sf_next; |
| 470 | |
| 471 | if (!is_in(pmc, psf, type, gdeleted, sdeleted)) { |
| 472 | psf_prev = psf; |
| 473 | continue; |
| 474 | } |
| 475 | |
| 476 | /* clear marks on query responses */ |
| 477 | if (isquery) |
| 478 | psf->sf_gsresp = 0; |
| 479 | |
Al Viro | 6300772 | 2006-09-27 18:31:32 -0700 | [diff] [blame] | 480 | if (AVAILABLE(skb) < sizeof(__be32) + |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | first*sizeof(struct igmpv3_grec)) { |
| 482 | if (truncate && !first) |
| 483 | break; /* truncate these */ |
| 484 | if (pgr) |
| 485 | pgr->grec_nsrcs = htons(scount); |
| 486 | if (skb) |
| 487 | igmpv3_sendpack(skb); |
| 488 | skb = igmpv3_newpack(dev, dev->mtu); |
| 489 | first = 1; |
| 490 | scount = 0; |
| 491 | } |
| 492 | if (first) { |
| 493 | skb = add_grhead(skb, pmc, type, &pgr); |
| 494 | first = 0; |
| 495 | } |
Alexey Dobriyan | cc63f70 | 2007-02-06 14:35:25 -0800 | [diff] [blame] | 496 | if (!skb) |
| 497 | return NULL; |
Al Viro | 6300772 | 2006-09-27 18:31:32 -0700 | [diff] [blame] | 498 | psrc = (__be32 *)skb_put(skb, sizeof(__be32)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | *psrc = psf->sf_inaddr; |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 500 | scount++; stotal++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | if ((type == IGMPV3_ALLOW_NEW_SOURCES || |
| 502 | type == IGMPV3_BLOCK_OLD_SOURCES) && psf->sf_crcount) { |
| 503 | psf->sf_crcount--; |
| 504 | if ((sdeleted || gdeleted) && psf->sf_crcount == 0) { |
| 505 | if (psf_prev) |
| 506 | psf_prev->sf_next = psf->sf_next; |
| 507 | else |
| 508 | *psf_list = psf->sf_next; |
| 509 | kfree(psf); |
| 510 | continue; |
| 511 | } |
| 512 | } |
| 513 | psf_prev = psf; |
| 514 | } |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 515 | |
| 516 | empty_source: |
| 517 | if (!stotal) { |
| 518 | if (type == IGMPV3_ALLOW_NEW_SOURCES || |
| 519 | type == IGMPV3_BLOCK_OLD_SOURCES) |
| 520 | return skb; |
| 521 | if (pmc->crcount || isquery) { |
| 522 | /* make sure we have room for group header */ |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 523 | if (skb && AVAILABLE(skb) < sizeof(struct igmpv3_grec)) { |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 524 | igmpv3_sendpack(skb); |
| 525 | skb = NULL; /* add_grhead will get a new one */ |
| 526 | } |
| 527 | skb = add_grhead(skb, pmc, type, &pgr); |
| 528 | } |
| 529 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | if (pgr) |
| 531 | pgr->grec_nsrcs = htons(scount); |
| 532 | |
| 533 | if (isquery) |
| 534 | pmc->gsquery = 0; /* clear query state on report */ |
| 535 | return skb; |
| 536 | } |
| 537 | |
| 538 | static int igmpv3_send_report(struct in_device *in_dev, struct ip_mc_list *pmc) |
| 539 | { |
| 540 | struct sk_buff *skb = NULL; |
Nikolay Borisov | 87a8a2a | 2016-02-09 00:13:50 +0200 | [diff] [blame^] | 541 | struct net *net = dev_net(in_dev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | int type; |
| 543 | |
| 544 | if (!pmc) { |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 545 | rcu_read_lock(); |
| 546 | for_each_pmc_rcu(in_dev, pmc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | if (pmc->multiaddr == IGMP_ALL_HOSTS) |
| 548 | continue; |
Philip Downey | df2cf4a | 2015-08-27 16:46:26 +0100 | [diff] [blame] | 549 | if (ipv4_is_local_multicast(pmc->multiaddr) && |
Nikolay Borisov | 87a8a2a | 2016-02-09 00:13:50 +0200 | [diff] [blame^] | 550 | !net->ipv4.sysctl_igmp_llm_reports) |
Philip Downey | df2cf4a | 2015-08-27 16:46:26 +0100 | [diff] [blame] | 551 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | spin_lock_bh(&pmc->lock); |
| 553 | if (pmc->sfcount[MCAST_EXCLUDE]) |
| 554 | type = IGMPV3_MODE_IS_EXCLUDE; |
| 555 | else |
| 556 | type = IGMPV3_MODE_IS_INCLUDE; |
| 557 | skb = add_grec(skb, pmc, type, 0, 0); |
| 558 | spin_unlock_bh(&pmc->lock); |
| 559 | } |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 560 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | } else { |
| 562 | spin_lock_bh(&pmc->lock); |
| 563 | if (pmc->sfcount[MCAST_EXCLUDE]) |
| 564 | type = IGMPV3_MODE_IS_EXCLUDE; |
| 565 | else |
| 566 | type = IGMPV3_MODE_IS_INCLUDE; |
| 567 | skb = add_grec(skb, pmc, type, 0, 0); |
| 568 | spin_unlock_bh(&pmc->lock); |
| 569 | } |
| 570 | if (!skb) |
| 571 | return 0; |
| 572 | return igmpv3_sendpack(skb); |
| 573 | } |
| 574 | |
| 575 | /* |
| 576 | * remove zero-count source records from a source filter list |
| 577 | */ |
| 578 | static void igmpv3_clear_zeros(struct ip_sf_list **ppsf) |
| 579 | { |
| 580 | struct ip_sf_list *psf_prev, *psf_next, *psf; |
| 581 | |
| 582 | psf_prev = NULL; |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 583 | for (psf = *ppsf; psf; psf = psf_next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | psf_next = psf->sf_next; |
| 585 | if (psf->sf_crcount == 0) { |
| 586 | if (psf_prev) |
| 587 | psf_prev->sf_next = psf->sf_next; |
| 588 | else |
| 589 | *ppsf = psf->sf_next; |
| 590 | kfree(psf); |
| 591 | } else |
| 592 | psf_prev = psf; |
| 593 | } |
| 594 | } |
| 595 | |
| 596 | static void igmpv3_send_cr(struct in_device *in_dev) |
| 597 | { |
| 598 | struct ip_mc_list *pmc, *pmc_prev, *pmc_next; |
| 599 | struct sk_buff *skb = NULL; |
| 600 | int type, dtype; |
| 601 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 602 | rcu_read_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | spin_lock_bh(&in_dev->mc_tomb_lock); |
| 604 | |
| 605 | /* deleted MCA's */ |
| 606 | pmc_prev = NULL; |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 607 | for (pmc = in_dev->mc_tomb; pmc; pmc = pmc_next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | pmc_next = pmc->next; |
| 609 | if (pmc->sfmode == MCAST_INCLUDE) { |
| 610 | type = IGMPV3_BLOCK_OLD_SOURCES; |
| 611 | dtype = IGMPV3_BLOCK_OLD_SOURCES; |
| 612 | skb = add_grec(skb, pmc, type, 1, 0); |
| 613 | skb = add_grec(skb, pmc, dtype, 1, 1); |
| 614 | } |
| 615 | if (pmc->crcount) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | if (pmc->sfmode == MCAST_EXCLUDE) { |
| 617 | type = IGMPV3_CHANGE_TO_INCLUDE; |
| 618 | skb = add_grec(skb, pmc, type, 1, 0); |
| 619 | } |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 620 | pmc->crcount--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | if (pmc->crcount == 0) { |
| 622 | igmpv3_clear_zeros(&pmc->tomb); |
| 623 | igmpv3_clear_zeros(&pmc->sources); |
| 624 | } |
| 625 | } |
| 626 | if (pmc->crcount == 0 && !pmc->tomb && !pmc->sources) { |
| 627 | if (pmc_prev) |
| 628 | pmc_prev->next = pmc_next; |
| 629 | else |
| 630 | in_dev->mc_tomb = pmc_next; |
| 631 | in_dev_put(pmc->interface); |
| 632 | kfree(pmc); |
| 633 | } else |
| 634 | pmc_prev = pmc; |
| 635 | } |
| 636 | spin_unlock_bh(&in_dev->mc_tomb_lock); |
| 637 | |
| 638 | /* change recs */ |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 639 | for_each_pmc_rcu(in_dev, pmc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | spin_lock_bh(&pmc->lock); |
| 641 | if (pmc->sfcount[MCAST_EXCLUDE]) { |
| 642 | type = IGMPV3_BLOCK_OLD_SOURCES; |
| 643 | dtype = IGMPV3_ALLOW_NEW_SOURCES; |
| 644 | } else { |
| 645 | type = IGMPV3_ALLOW_NEW_SOURCES; |
| 646 | dtype = IGMPV3_BLOCK_OLD_SOURCES; |
| 647 | } |
| 648 | skb = add_grec(skb, pmc, type, 0, 0); |
| 649 | skb = add_grec(skb, pmc, dtype, 0, 1); /* deleted sources */ |
| 650 | |
| 651 | /* filter mode changes */ |
| 652 | if (pmc->crcount) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | if (pmc->sfmode == MCAST_EXCLUDE) |
| 654 | type = IGMPV3_CHANGE_TO_EXCLUDE; |
| 655 | else |
| 656 | type = IGMPV3_CHANGE_TO_INCLUDE; |
| 657 | skb = add_grec(skb, pmc, type, 0, 0); |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 658 | pmc->crcount--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | } |
| 660 | spin_unlock_bh(&pmc->lock); |
| 661 | } |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 662 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | |
| 664 | if (!skb) |
| 665 | return; |
| 666 | (void) igmpv3_sendpack(skb); |
| 667 | } |
| 668 | |
| 669 | static int igmp_send_report(struct in_device *in_dev, struct ip_mc_list *pmc, |
| 670 | int type) |
| 671 | { |
| 672 | struct sk_buff *skb; |
| 673 | struct iphdr *iph; |
| 674 | struct igmphdr *ih; |
| 675 | struct rtable *rt; |
| 676 | struct net_device *dev = in_dev->dev; |
Daniel Lezcano | 877aced | 2008-08-13 16:15:57 -0700 | [diff] [blame] | 677 | struct net *net = dev_net(dev); |
Al Viro | 6300772 | 2006-09-27 18:31:32 -0700 | [diff] [blame] | 678 | __be32 group = pmc ? pmc->multiaddr : 0; |
David S. Miller | 31e4543 | 2011-05-03 20:25:42 -0700 | [diff] [blame] | 679 | struct flowi4 fl4; |
Al Viro | 6300772 | 2006-09-27 18:31:32 -0700 | [diff] [blame] | 680 | __be32 dst; |
Herbert Xu | 6608824 | 2011-11-18 02:20:04 +0000 | [diff] [blame] | 681 | int hlen, tlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | |
| 683 | if (type == IGMPV3_HOST_MEMBERSHIP_REPORT) |
| 684 | return igmpv3_send_report(in_dev, pmc); |
Philip Downey | df2cf4a | 2015-08-27 16:46:26 +0100 | [diff] [blame] | 685 | |
Nikolay Borisov | 87a8a2a | 2016-02-09 00:13:50 +0200 | [diff] [blame^] | 686 | if (ipv4_is_local_multicast(group) && !net->ipv4.sysctl_igmp_llm_reports) |
Philip Downey | df2cf4a | 2015-08-27 16:46:26 +0100 | [diff] [blame] | 687 | return 0; |
| 688 | |
| 689 | if (type == IGMP_HOST_LEAVE_MESSAGE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | dst = IGMP_ALL_ROUTER; |
| 691 | else |
| 692 | dst = group; |
| 693 | |
David S. Miller | 31e4543 | 2011-05-03 20:25:42 -0700 | [diff] [blame] | 694 | rt = ip_route_output_ports(net, &fl4, NULL, dst, 0, |
David S. Miller | 78fbfd8 | 2011-03-12 00:00:52 -0500 | [diff] [blame] | 695 | 0, 0, |
| 696 | IPPROTO_IGMP, 0, dev->ifindex); |
| 697 | if (IS_ERR(rt)) |
| 698 | return -1; |
| 699 | |
Herbert Xu | 6608824 | 2011-11-18 02:20:04 +0000 | [diff] [blame] | 700 | hlen = LL_RESERVED_SPACE(dev); |
| 701 | tlen = dev->needed_tailroom; |
| 702 | skb = alloc_skb(IGMP_SIZE + hlen + tlen, GFP_ATOMIC); |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 703 | if (!skb) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | ip_rt_put(rt); |
| 705 | return -1; |
| 706 | } |
Hannes Frederic Sowa | 9d4a031 | 2013-07-26 17:05:16 +0200 | [diff] [blame] | 707 | skb->priority = TC_PRIO_CONTROL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 709 | skb_dst_set(skb, &rt->dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | |
Herbert Xu | 6608824 | 2011-11-18 02:20:04 +0000 | [diff] [blame] | 711 | skb_reserve(skb, hlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | |
Arnaldo Carvalho de Melo | 7e28ecc | 2007-03-10 18:40:59 -0300 | [diff] [blame] | 713 | skb_reset_network_header(skb); |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 714 | iph = ip_hdr(skb); |
Arnaldo Carvalho de Melo | 7e28ecc | 2007-03-10 18:40:59 -0300 | [diff] [blame] | 715 | skb_put(skb, sizeof(struct iphdr) + 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | |
| 717 | iph->version = 4; |
| 718 | iph->ihl = (sizeof(struct iphdr)+4)>>2; |
| 719 | iph->tos = 0xc0; |
| 720 | iph->frag_off = htons(IP_DF); |
| 721 | iph->ttl = 1; |
| 722 | iph->daddr = dst; |
David S. Miller | 492f64c | 2011-05-03 20:53:12 -0700 | [diff] [blame] | 723 | iph->saddr = fl4.saddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | iph->protocol = IPPROTO_IGMP; |
Hannes Frederic Sowa | b6a7719 | 2015-03-25 17:07:44 +0100 | [diff] [blame] | 725 | ip_select_ident(net, skb, NULL); |
Daniel Baluta | 5e73ea1 | 2012-04-15 01:34:41 +0000 | [diff] [blame] | 726 | ((u8 *)&iph[1])[0] = IPOPT_RA; |
| 727 | ((u8 *)&iph[1])[1] = 4; |
| 728 | ((u8 *)&iph[1])[2] = 0; |
| 729 | ((u8 *)&iph[1])[3] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | |
| 731 | ih = (struct igmphdr *)skb_put(skb, sizeof(struct igmphdr)); |
Jianjun Kong | a7e9ff7 | 2008-11-03 00:26:09 -0800 | [diff] [blame] | 732 | ih->type = type; |
| 733 | ih->code = 0; |
| 734 | ih->csum = 0; |
| 735 | ih->group = group; |
| 736 | ih->csum = ip_compute_csum((void *)ih, sizeof(struct igmphdr)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | |
Eric W. Biederman | 33224b1 | 2015-10-07 16:48:46 -0500 | [diff] [blame] | 738 | return ip_local_out(net, skb->sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | } |
| 740 | |
| 741 | static void igmp_gq_timer_expire(unsigned long data) |
| 742 | { |
| 743 | struct in_device *in_dev = (struct in_device *)data; |
| 744 | |
| 745 | in_dev->mr_gq_running = 0; |
| 746 | igmpv3_send_report(in_dev, NULL); |
Salam Noureddine | e240165 | 2013-09-29 13:39:42 -0700 | [diff] [blame] | 747 | in_dev_put(in_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | } |
| 749 | |
| 750 | static void igmp_ifc_timer_expire(unsigned long data) |
| 751 | { |
| 752 | struct in_device *in_dev = (struct in_device *)data; |
| 753 | |
| 754 | igmpv3_send_cr(in_dev); |
| 755 | if (in_dev->mr_ifc_count) { |
| 756 | in_dev->mr_ifc_count--; |
William Manley | cab7004 | 2013-08-06 19:03:13 +0100 | [diff] [blame] | 757 | igmp_ifc_start_timer(in_dev, |
| 758 | unsolicited_report_interval(in_dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | } |
Salam Noureddine | e240165 | 2013-09-29 13:39:42 -0700 | [diff] [blame] | 760 | in_dev_put(in_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | } |
| 762 | |
| 763 | static void igmp_ifc_event(struct in_device *in_dev) |
| 764 | { |
| 765 | if (IGMP_V1_SEEN(in_dev) || IGMP_V2_SEEN(in_dev)) |
| 766 | return; |
Hannes Frederic Sowa | a9fe8e2 | 2014-09-02 15:49:26 +0200 | [diff] [blame] | 767 | in_dev->mr_ifc_count = in_dev->mr_qrv ?: sysctl_igmp_qrv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | igmp_ifc_start_timer(in_dev, 1); |
| 769 | } |
| 770 | |
| 771 | |
| 772 | static void igmp_timer_expire(unsigned long data) |
| 773 | { |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 774 | struct ip_mc_list *im = (struct ip_mc_list *)data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | struct in_device *in_dev = im->interface; |
| 776 | |
| 777 | spin_lock(&im->lock); |
Jianjun Kong | a7e9ff7 | 2008-11-03 00:26:09 -0800 | [diff] [blame] | 778 | im->tm_running = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | |
| 780 | if (im->unsolicit_count) { |
| 781 | im->unsolicit_count--; |
William Manley | cab7004 | 2013-08-06 19:03:13 +0100 | [diff] [blame] | 782 | igmp_start_timer(im, unsolicited_report_interval(in_dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | } |
| 784 | im->reporter = 1; |
| 785 | spin_unlock(&im->lock); |
| 786 | |
| 787 | if (IGMP_V1_SEEN(in_dev)) |
| 788 | igmp_send_report(in_dev, im, IGMP_HOST_MEMBERSHIP_REPORT); |
| 789 | else if (IGMP_V2_SEEN(in_dev)) |
| 790 | igmp_send_report(in_dev, im, IGMPV2_HOST_MEMBERSHIP_REPORT); |
| 791 | else |
| 792 | igmp_send_report(in_dev, im, IGMPV3_HOST_MEMBERSHIP_REPORT); |
| 793 | |
| 794 | ip_ma_put(im); |
| 795 | } |
| 796 | |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 797 | /* mark EXCLUDE-mode sources */ |
Al Viro | ea4d9e7 | 2006-09-27 18:30:52 -0700 | [diff] [blame] | 798 | static int igmp_xmarksources(struct ip_mc_list *pmc, int nsrcs, __be32 *srcs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | { |
| 800 | struct ip_sf_list *psf; |
| 801 | int i, scount; |
| 802 | |
| 803 | scount = 0; |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 804 | for (psf = pmc->sources; psf; psf = psf->sf_next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | if (scount == nsrcs) |
| 806 | break; |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 807 | for (i = 0; i < nsrcs; i++) { |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 808 | /* skip inactive filters */ |
Yan, Zheng | e05c4ad3 | 2011-08-23 22:54:37 +0000 | [diff] [blame] | 809 | if (psf->sf_count[MCAST_INCLUDE] || |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 810 | pmc->sfcount[MCAST_EXCLUDE] != |
| 811 | psf->sf_count[MCAST_EXCLUDE]) |
RongQing.Li | ce713ee | 2012-04-05 17:36:29 +0800 | [diff] [blame] | 812 | break; |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 813 | if (srcs[i] == psf->sf_inaddr) { |
| 814 | scount++; |
| 815 | break; |
| 816 | } |
| 817 | } |
| 818 | } |
| 819 | pmc->gsquery = 0; |
| 820 | if (scount == nsrcs) /* all sources excluded */ |
| 821 | return 0; |
| 822 | return 1; |
| 823 | } |
| 824 | |
Al Viro | ea4d9e7 | 2006-09-27 18:30:52 -0700 | [diff] [blame] | 825 | static int igmp_marksources(struct ip_mc_list *pmc, int nsrcs, __be32 *srcs) |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 826 | { |
| 827 | struct ip_sf_list *psf; |
| 828 | int i, scount; |
| 829 | |
| 830 | if (pmc->sfmode == MCAST_EXCLUDE) |
| 831 | return igmp_xmarksources(pmc, nsrcs, srcs); |
| 832 | |
| 833 | /* mark INCLUDE-mode sources */ |
| 834 | scount = 0; |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 835 | for (psf = pmc->sources; psf; psf = psf->sf_next) { |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 836 | if (scount == nsrcs) |
| 837 | break; |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 838 | for (i = 0; i < nsrcs; i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | if (srcs[i] == psf->sf_inaddr) { |
| 840 | psf->sf_gsresp = 1; |
| 841 | scount++; |
| 842 | break; |
| 843 | } |
| 844 | } |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 845 | if (!scount) { |
| 846 | pmc->gsquery = 0; |
| 847 | return 0; |
| 848 | } |
| 849 | pmc->gsquery = 1; |
| 850 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | } |
| 852 | |
Eric Dumazet | d679c53 | 2012-09-06 20:37:06 +0000 | [diff] [blame] | 853 | /* return true if packet was dropped */ |
| 854 | static bool igmp_heard_report(struct in_device *in_dev, __be32 group) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | { |
| 856 | struct ip_mc_list *im; |
Nikolay Borisov | 87a8a2a | 2016-02-09 00:13:50 +0200 | [diff] [blame^] | 857 | struct net *net = dev_net(in_dev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | |
| 859 | /* Timers are only set for non-local groups */ |
| 860 | |
| 861 | if (group == IGMP_ALL_HOSTS) |
Eric Dumazet | d679c53 | 2012-09-06 20:37:06 +0000 | [diff] [blame] | 862 | return false; |
Nikolay Borisov | 87a8a2a | 2016-02-09 00:13:50 +0200 | [diff] [blame^] | 863 | if (ipv4_is_local_multicast(group) && !net->ipv4.sysctl_igmp_llm_reports) |
Philip Downey | df2cf4a | 2015-08-27 16:46:26 +0100 | [diff] [blame] | 864 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 866 | rcu_read_lock(); |
| 867 | for_each_pmc_rcu(in_dev, im) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | if (im->multiaddr == group) { |
| 869 | igmp_stop_timer(im); |
| 870 | break; |
| 871 | } |
| 872 | } |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 873 | rcu_read_unlock(); |
Eric Dumazet | d679c53 | 2012-09-06 20:37:06 +0000 | [diff] [blame] | 874 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | } |
| 876 | |
Eric Dumazet | d679c53 | 2012-09-06 20:37:06 +0000 | [diff] [blame] | 877 | /* return true if packet was dropped */ |
| 878 | static bool igmp_heard_query(struct in_device *in_dev, struct sk_buff *skb, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | int len) |
| 880 | { |
Arnaldo Carvalho de Melo | d9edf9e | 2007-03-13 14:19:23 -0300 | [diff] [blame] | 881 | struct igmphdr *ih = igmp_hdr(skb); |
| 882 | struct igmpv3_query *ih3 = igmpv3_query_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | struct ip_mc_list *im; |
Al Viro | 6300772 | 2006-09-27 18:31:32 -0700 | [diff] [blame] | 884 | __be32 group = ih->group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | int max_delay; |
| 886 | int mark = 0; |
Nikolay Borisov | 87a8a2a | 2016-02-09 00:13:50 +0200 | [diff] [blame^] | 887 | struct net *net = dev_net(in_dev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | |
| 889 | |
David Stevens | 5b7c840 | 2010-09-30 14:29:40 +0000 | [diff] [blame] | 890 | if (len == 8) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | if (ih->code == 0) { |
| 892 | /* Alas, old v1 router presents here. */ |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 893 | |
Fabian Frederick | 436f7c2 | 2014-11-04 20:52:14 +0100 | [diff] [blame] | 894 | max_delay = IGMP_QUERY_RESPONSE_INTERVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | in_dev->mr_v1_seen = jiffies + |
Fabian Frederick | 436f7c2 | 2014-11-04 20:52:14 +0100 | [diff] [blame] | 896 | IGMP_V1_ROUTER_PRESENT_TIMEOUT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | group = 0; |
| 898 | } else { |
| 899 | /* v2 router present */ |
| 900 | max_delay = ih->code*(HZ/IGMP_TIMER_SCALE); |
| 901 | in_dev->mr_v2_seen = jiffies + |
Fabian Frederick | 436f7c2 | 2014-11-04 20:52:14 +0100 | [diff] [blame] | 902 | IGMP_V2_ROUTER_PRESENT_TIMEOUT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | } |
| 904 | /* cancel the interface change timer */ |
| 905 | in_dev->mr_ifc_count = 0; |
| 906 | if (del_timer(&in_dev->mr_ifc_timer)) |
| 907 | __in_dev_put(in_dev); |
| 908 | /* clear deleted report items */ |
| 909 | igmpv3_clear_delrec(in_dev); |
| 910 | } else if (len < 12) { |
Eric Dumazet | d679c53 | 2012-09-06 20:37:06 +0000 | [diff] [blame] | 911 | return true; /* ignore bogus packet; freed by caller */ |
David Stevens | 5b7c840 | 2010-09-30 14:29:40 +0000 | [diff] [blame] | 912 | } else if (IGMP_V1_SEEN(in_dev)) { |
| 913 | /* This is a v3 query with v1 queriers present */ |
Fabian Frederick | 436f7c2 | 2014-11-04 20:52:14 +0100 | [diff] [blame] | 914 | max_delay = IGMP_QUERY_RESPONSE_INTERVAL; |
David Stevens | 5b7c840 | 2010-09-30 14:29:40 +0000 | [diff] [blame] | 915 | group = 0; |
| 916 | } else if (IGMP_V2_SEEN(in_dev)) { |
| 917 | /* this is a v3 query with v2 queriers present; |
| 918 | * Interpretation of the max_delay code is problematic here. |
| 919 | * A real v2 host would use ih_code directly, while v3 has a |
| 920 | * different encoding. We use the v3 encoding as more likely |
| 921 | * to be intended in a v3 query. |
| 922 | */ |
| 923 | max_delay = IGMPV3_MRC(ih3->code)*(HZ/IGMP_TIMER_SCALE); |
Ben Hutchings | a8c1f65 | 2012-01-09 14:06:46 -0800 | [diff] [blame] | 924 | if (!max_delay) |
| 925 | max_delay = 1; /* can't mod w/ 0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | } else { /* v3 */ |
| 927 | if (!pskb_may_pull(skb, sizeof(struct igmpv3_query))) |
Eric Dumazet | d679c53 | 2012-09-06 20:37:06 +0000 | [diff] [blame] | 928 | return true; |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 929 | |
Arnaldo Carvalho de Melo | d9edf9e | 2007-03-13 14:19:23 -0300 | [diff] [blame] | 930 | ih3 = igmpv3_query_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | if (ih3->nsrcs) { |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 932 | if (!pskb_may_pull(skb, sizeof(struct igmpv3_query) |
Al Viro | 6300772 | 2006-09-27 18:31:32 -0700 | [diff] [blame] | 933 | + ntohs(ih3->nsrcs)*sizeof(__be32))) |
Eric Dumazet | d679c53 | 2012-09-06 20:37:06 +0000 | [diff] [blame] | 934 | return true; |
Arnaldo Carvalho de Melo | d9edf9e | 2007-03-13 14:19:23 -0300 | [diff] [blame] | 935 | ih3 = igmpv3_query_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | } |
| 937 | |
| 938 | max_delay = IGMPV3_MRC(ih3->code)*(HZ/IGMP_TIMER_SCALE); |
| 939 | if (!max_delay) |
| 940 | max_delay = 1; /* can't mod w/ 0 */ |
| 941 | in_dev->mr_maxdelay = max_delay; |
| 942 | if (ih3->qrv) |
| 943 | in_dev->mr_qrv = ih3->qrv; |
| 944 | if (!group) { /* general query */ |
| 945 | if (ih3->nsrcs) |
Daniel Borkmann | b47bd8d | 2014-10-05 17:27:50 +0200 | [diff] [blame] | 946 | return true; /* no sources allowed */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | igmp_gq_start_timer(in_dev); |
Eric Dumazet | d679c53 | 2012-09-06 20:37:06 +0000 | [diff] [blame] | 948 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | } |
| 950 | /* mark sources to include, if group & source-specific */ |
| 951 | mark = ih3->nsrcs != 0; |
| 952 | } |
| 953 | |
| 954 | /* |
| 955 | * - Start the timers in all of our membership records |
| 956 | * that the query applies to for the interface on |
| 957 | * which the query arrived excl. those that belong |
| 958 | * to a "local" group (224.0.0.X) |
| 959 | * - For timers already running check if they need to |
| 960 | * be reset. |
| 961 | * - Use the igmp->igmp_code field as the maximum |
| 962 | * delay possible |
| 963 | */ |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 964 | rcu_read_lock(); |
| 965 | for_each_pmc_rcu(in_dev, im) { |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 966 | int changed; |
| 967 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | if (group && group != im->multiaddr) |
| 969 | continue; |
| 970 | if (im->multiaddr == IGMP_ALL_HOSTS) |
| 971 | continue; |
Philip Downey | df2cf4a | 2015-08-27 16:46:26 +0100 | [diff] [blame] | 972 | if (ipv4_is_local_multicast(im->multiaddr) && |
Nikolay Borisov | 87a8a2a | 2016-02-09 00:13:50 +0200 | [diff] [blame^] | 973 | !net->ipv4.sysctl_igmp_llm_reports) |
Philip Downey | df2cf4a | 2015-08-27 16:46:26 +0100 | [diff] [blame] | 974 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | spin_lock_bh(&im->lock); |
| 976 | if (im->tm_running) |
| 977 | im->gsquery = im->gsquery && mark; |
| 978 | else |
| 979 | im->gsquery = mark; |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 980 | changed = !im->gsquery || |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 981 | igmp_marksources(im, ntohs(ih3->nsrcs), ih3->srcs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | spin_unlock_bh(&im->lock); |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 983 | if (changed) |
| 984 | igmp_mod_timer(im, max_delay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | } |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 986 | rcu_read_unlock(); |
Eric Dumazet | d679c53 | 2012-09-06 20:37:06 +0000 | [diff] [blame] | 987 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | } |
| 989 | |
Eric Dumazet | 9a57a9d | 2010-06-07 03:17:10 +0000 | [diff] [blame] | 990 | /* called in rcu_read_lock() section */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | int igmp_rcv(struct sk_buff *skb) |
| 992 | { |
| 993 | /* This basically follows the spec line by line -- see RFC1112 */ |
| 994 | struct igmphdr *ih; |
Eric Dumazet | 9a57a9d | 2010-06-07 03:17:10 +0000 | [diff] [blame] | 995 | struct in_device *in_dev = __in_dev_get_rcu(skb->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | int len = skb->len; |
Eric Dumazet | d679c53 | 2012-09-06 20:37:06 +0000 | [diff] [blame] | 997 | bool dropped = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 999 | if (!in_dev) |
Denis V. Lunev | cd557bc | 2008-02-09 23:22:26 -0800 | [diff] [blame] | 1000 | goto drop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | |
Herbert Xu | fb286bb | 2005-11-10 13:01:24 -0800 | [diff] [blame] | 1002 | if (!pskb_may_pull(skb, sizeof(struct igmphdr))) |
Eric Dumazet | 9a57a9d | 2010-06-07 03:17:10 +0000 | [diff] [blame] | 1003 | goto drop; |
Herbert Xu | fb286bb | 2005-11-10 13:01:24 -0800 | [diff] [blame] | 1004 | |
Tom Herbert | de08dc1 | 2014-05-07 16:52:10 -0700 | [diff] [blame] | 1005 | if (skb_checksum_simple_validate(skb)) |
| 1006 | goto drop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | |
Arnaldo Carvalho de Melo | d9edf9e | 2007-03-13 14:19:23 -0300 | [diff] [blame] | 1008 | ih = igmp_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | switch (ih->type) { |
| 1010 | case IGMP_HOST_MEMBERSHIP_QUERY: |
Eric Dumazet | d679c53 | 2012-09-06 20:37:06 +0000 | [diff] [blame] | 1011 | dropped = igmp_heard_query(in_dev, skb, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | break; |
| 1013 | case IGMP_HOST_MEMBERSHIP_REPORT: |
| 1014 | case IGMPV2_HOST_MEMBERSHIP_REPORT: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | /* Is it our report looped back? */ |
David S. Miller | c753796 | 2010-11-11 17:07:48 -0800 | [diff] [blame] | 1016 | if (rt_is_output_route(skb_rtable(skb))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | break; |
David Stevens | 24c6927 | 2005-12-02 20:32:59 -0800 | [diff] [blame] | 1018 | /* don't rely on MC router hearing unicast reports */ |
| 1019 | if (skb->pkt_type == PACKET_MULTICAST || |
| 1020 | skb->pkt_type == PACKET_BROADCAST) |
Eric Dumazet | d679c53 | 2012-09-06 20:37:06 +0000 | [diff] [blame] | 1021 | dropped = igmp_heard_report(in_dev, ih->group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | break; |
| 1023 | case IGMP_PIM: |
| 1024 | #ifdef CONFIG_IP_PIMSM_V1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | return pim_rcv_v1(skb); |
| 1026 | #endif |
Herbert Xu | c6b471e | 2010-02-07 17:26:30 +0000 | [diff] [blame] | 1027 | case IGMPV3_HOST_MEMBERSHIP_REPORT: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | case IGMP_DVMRP: |
| 1029 | case IGMP_TRACE: |
| 1030 | case IGMP_HOST_LEAVE_MESSAGE: |
| 1031 | case IGMP_MTRACE: |
| 1032 | case IGMP_MTRACE_RESP: |
| 1033 | break; |
| 1034 | default: |
Linus Torvalds | dd1c185 | 2006-01-31 13:11:41 -0800 | [diff] [blame] | 1035 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | } |
Herbert Xu | fb286bb | 2005-11-10 13:01:24 -0800 | [diff] [blame] | 1037 | |
Denis V. Lunev | cd557bc | 2008-02-09 23:22:26 -0800 | [diff] [blame] | 1038 | drop: |
Eric Dumazet | d679c53 | 2012-09-06 20:37:06 +0000 | [diff] [blame] | 1039 | if (dropped) |
| 1040 | kfree_skb(skb); |
| 1041 | else |
| 1042 | consume_skb(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | return 0; |
| 1044 | } |
| 1045 | |
| 1046 | #endif |
| 1047 | |
| 1048 | |
| 1049 | /* |
| 1050 | * Add a filter to a device |
| 1051 | */ |
| 1052 | |
Al Viro | 6300772 | 2006-09-27 18:31:32 -0700 | [diff] [blame] | 1053 | static void ip_mc_filter_add(struct in_device *in_dev, __be32 addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | { |
| 1055 | char buf[MAX_ADDR_LEN]; |
| 1056 | struct net_device *dev = in_dev->dev; |
| 1057 | |
| 1058 | /* Checking for IFF_MULTICAST here is WRONG-WRONG-WRONG. |
| 1059 | We will get multicast token leakage, when IFF_MULTICAST |
Jiri Pirko | b81693d | 2011-08-16 06:29:02 +0000 | [diff] [blame] | 1060 | is changed. This check should be done in ndo_set_rx_mode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | routine. Something sort of: |
| 1062 | if (dev->mc_list && dev->flags&IFF_MULTICAST) { do it; } |
| 1063 | --ANK |
| 1064 | */ |
| 1065 | if (arp_mc_map(addr, buf, dev, 0) == 0) |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 1066 | dev_mc_add(dev, buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | } |
| 1068 | |
| 1069 | /* |
| 1070 | * Remove a filter from a device |
| 1071 | */ |
| 1072 | |
Al Viro | 6300772 | 2006-09-27 18:31:32 -0700 | [diff] [blame] | 1073 | static void ip_mc_filter_del(struct in_device *in_dev, __be32 addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | { |
| 1075 | char buf[MAX_ADDR_LEN]; |
| 1076 | struct net_device *dev = in_dev->dev; |
| 1077 | |
| 1078 | if (arp_mc_map(addr, buf, dev, 0) == 0) |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 1079 | dev_mc_del(dev, buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | } |
| 1081 | |
| 1082 | #ifdef CONFIG_IP_MULTICAST |
| 1083 | /* |
| 1084 | * deleted ip_mc_list manipulation |
| 1085 | */ |
| 1086 | static void igmpv3_add_delrec(struct in_device *in_dev, struct ip_mc_list *im) |
| 1087 | { |
| 1088 | struct ip_mc_list *pmc; |
| 1089 | |
| 1090 | /* this is an "ip_mc_list" for convenience; only the fields below |
| 1091 | * are actually used. In particular, the refcnt and users are not |
| 1092 | * used for management of the delete list. Using the same structure |
| 1093 | * for deleted items allows change reports to use common code with |
| 1094 | * non-deleted or query-response MCA's. |
| 1095 | */ |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 1096 | pmc = kzalloc(sizeof(*pmc), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | if (!pmc) |
| 1098 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | spin_lock_bh(&im->lock); |
| 1100 | pmc->interface = im->interface; |
| 1101 | in_dev_hold(in_dev); |
| 1102 | pmc->multiaddr = im->multiaddr; |
Hannes Frederic Sowa | a9fe8e2 | 2014-09-02 15:49:26 +0200 | [diff] [blame] | 1103 | pmc->crcount = in_dev->mr_qrv ?: sysctl_igmp_qrv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | pmc->sfmode = im->sfmode; |
| 1105 | if (pmc->sfmode == MCAST_INCLUDE) { |
| 1106 | struct ip_sf_list *psf; |
| 1107 | |
| 1108 | pmc->tomb = im->tomb; |
| 1109 | pmc->sources = im->sources; |
| 1110 | im->tomb = im->sources = NULL; |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 1111 | for (psf = pmc->sources; psf; psf = psf->sf_next) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | psf->sf_crcount = pmc->crcount; |
| 1113 | } |
| 1114 | spin_unlock_bh(&im->lock); |
| 1115 | |
| 1116 | spin_lock_bh(&in_dev->mc_tomb_lock); |
| 1117 | pmc->next = in_dev->mc_tomb; |
| 1118 | in_dev->mc_tomb = pmc; |
| 1119 | spin_unlock_bh(&in_dev->mc_tomb_lock); |
| 1120 | } |
| 1121 | |
Al Viro | 6300772 | 2006-09-27 18:31:32 -0700 | [diff] [blame] | 1122 | static void igmpv3_del_delrec(struct in_device *in_dev, __be32 multiaddr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | { |
| 1124 | struct ip_mc_list *pmc, *pmc_prev; |
| 1125 | struct ip_sf_list *psf, *psf_next; |
| 1126 | |
| 1127 | spin_lock_bh(&in_dev->mc_tomb_lock); |
| 1128 | pmc_prev = NULL; |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 1129 | for (pmc = in_dev->mc_tomb; pmc; pmc = pmc->next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | if (pmc->multiaddr == multiaddr) |
| 1131 | break; |
| 1132 | pmc_prev = pmc; |
| 1133 | } |
| 1134 | if (pmc) { |
| 1135 | if (pmc_prev) |
| 1136 | pmc_prev->next = pmc->next; |
| 1137 | else |
| 1138 | in_dev->mc_tomb = pmc->next; |
| 1139 | } |
| 1140 | spin_unlock_bh(&in_dev->mc_tomb_lock); |
| 1141 | if (pmc) { |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 1142 | for (psf = pmc->tomb; psf; psf = psf_next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | psf_next = psf->sf_next; |
| 1144 | kfree(psf); |
| 1145 | } |
| 1146 | in_dev_put(pmc->interface); |
| 1147 | kfree(pmc); |
| 1148 | } |
| 1149 | } |
| 1150 | |
| 1151 | static void igmpv3_clear_delrec(struct in_device *in_dev) |
| 1152 | { |
| 1153 | struct ip_mc_list *pmc, *nextpmc; |
| 1154 | |
| 1155 | spin_lock_bh(&in_dev->mc_tomb_lock); |
| 1156 | pmc = in_dev->mc_tomb; |
| 1157 | in_dev->mc_tomb = NULL; |
| 1158 | spin_unlock_bh(&in_dev->mc_tomb_lock); |
| 1159 | |
| 1160 | for (; pmc; pmc = nextpmc) { |
| 1161 | nextpmc = pmc->next; |
| 1162 | ip_mc_clear_src(pmc); |
| 1163 | in_dev_put(pmc->interface); |
| 1164 | kfree(pmc); |
| 1165 | } |
| 1166 | /* clear dead sources, too */ |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1167 | rcu_read_lock(); |
| 1168 | for_each_pmc_rcu(in_dev, pmc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | struct ip_sf_list *psf, *psf_next; |
| 1170 | |
| 1171 | spin_lock_bh(&pmc->lock); |
| 1172 | psf = pmc->tomb; |
| 1173 | pmc->tomb = NULL; |
| 1174 | spin_unlock_bh(&pmc->lock); |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 1175 | for (; psf; psf = psf_next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | psf_next = psf->sf_next; |
| 1177 | kfree(psf); |
| 1178 | } |
| 1179 | } |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1180 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | } |
| 1182 | #endif |
| 1183 | |
| 1184 | static void igmp_group_dropped(struct ip_mc_list *im) |
| 1185 | { |
| 1186 | struct in_device *in_dev = im->interface; |
| 1187 | #ifdef CONFIG_IP_MULTICAST |
Nikolay Borisov | 87a8a2a | 2016-02-09 00:13:50 +0200 | [diff] [blame^] | 1188 | struct net *net = dev_net(in_dev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | int reporter; |
| 1190 | #endif |
| 1191 | |
| 1192 | if (im->loaded) { |
| 1193 | im->loaded = 0; |
| 1194 | ip_mc_filter_del(in_dev, im->multiaddr); |
| 1195 | } |
| 1196 | |
| 1197 | #ifdef CONFIG_IP_MULTICAST |
| 1198 | if (im->multiaddr == IGMP_ALL_HOSTS) |
| 1199 | return; |
Nikolay Borisov | 87a8a2a | 2016-02-09 00:13:50 +0200 | [diff] [blame^] | 1200 | if (ipv4_is_local_multicast(im->multiaddr) && !net->ipv4.sysctl_igmp_llm_reports) |
Philip Downey | df2cf4a | 2015-08-27 16:46:26 +0100 | [diff] [blame] | 1201 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1202 | |
| 1203 | reporter = im->reporter; |
| 1204 | igmp_stop_timer(im); |
| 1205 | |
| 1206 | if (!in_dev->dead) { |
| 1207 | if (IGMP_V1_SEEN(in_dev)) |
Veaceslav Falico | 24cf3af | 2011-05-23 23:15:05 +0000 | [diff] [blame] | 1208 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | if (IGMP_V2_SEEN(in_dev)) { |
| 1210 | if (reporter) |
| 1211 | igmp_send_report(in_dev, im, IGMP_HOST_LEAVE_MESSAGE); |
Veaceslav Falico | 24cf3af | 2011-05-23 23:15:05 +0000 | [diff] [blame] | 1212 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | } |
| 1214 | /* IGMPv3 */ |
| 1215 | igmpv3_add_delrec(in_dev, im); |
| 1216 | |
| 1217 | igmp_ifc_event(in_dev); |
| 1218 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | } |
| 1221 | |
| 1222 | static void igmp_group_added(struct ip_mc_list *im) |
| 1223 | { |
| 1224 | struct in_device *in_dev = im->interface; |
Nikolay Borisov | 87a8a2a | 2016-02-09 00:13:50 +0200 | [diff] [blame^] | 1225 | struct net *net = dev_net(in_dev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | |
| 1227 | if (im->loaded == 0) { |
| 1228 | im->loaded = 1; |
| 1229 | ip_mc_filter_add(in_dev, im->multiaddr); |
| 1230 | } |
| 1231 | |
| 1232 | #ifdef CONFIG_IP_MULTICAST |
| 1233 | if (im->multiaddr == IGMP_ALL_HOSTS) |
| 1234 | return; |
Nikolay Borisov | 87a8a2a | 2016-02-09 00:13:50 +0200 | [diff] [blame^] | 1235 | if (ipv4_is_local_multicast(im->multiaddr) && !net->ipv4.sysctl_igmp_llm_reports) |
Philip Downey | df2cf4a | 2015-08-27 16:46:26 +0100 | [diff] [blame] | 1236 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | |
| 1238 | if (in_dev->dead) |
| 1239 | return; |
| 1240 | if (IGMP_V1_SEEN(in_dev) || IGMP_V2_SEEN(in_dev)) { |
| 1241 | spin_lock_bh(&im->lock); |
Fabian Frederick | 436f7c2 | 2014-11-04 20:52:14 +0100 | [diff] [blame] | 1242 | igmp_start_timer(im, IGMP_INITIAL_REPORT_DELAY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | spin_unlock_bh(&im->lock); |
| 1244 | return; |
| 1245 | } |
| 1246 | /* else, v3 */ |
| 1247 | |
Hannes Frederic Sowa | a9fe8e2 | 2014-09-02 15:49:26 +0200 | [diff] [blame] | 1248 | im->crcount = in_dev->mr_qrv ?: sysctl_igmp_qrv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | igmp_ifc_event(in_dev); |
| 1250 | #endif |
| 1251 | } |
| 1252 | |
| 1253 | |
| 1254 | /* |
| 1255 | * Multicast list managers |
| 1256 | */ |
| 1257 | |
Eric Dumazet | e989707 | 2013-06-07 08:48:57 -0700 | [diff] [blame] | 1258 | static u32 ip_mc_hash(const struct ip_mc_list *im) |
| 1259 | { |
Eric Dumazet | c70eba7 | 2013-06-12 14:11:16 -0700 | [diff] [blame] | 1260 | return hash_32((__force u32)im->multiaddr, MC_HASH_SZ_LOG); |
Eric Dumazet | e989707 | 2013-06-07 08:48:57 -0700 | [diff] [blame] | 1261 | } |
| 1262 | |
| 1263 | static void ip_mc_hash_add(struct in_device *in_dev, |
| 1264 | struct ip_mc_list *im) |
| 1265 | { |
| 1266 | struct ip_mc_list __rcu **mc_hash; |
| 1267 | u32 hash; |
| 1268 | |
| 1269 | mc_hash = rtnl_dereference(in_dev->mc_hash); |
| 1270 | if (mc_hash) { |
| 1271 | hash = ip_mc_hash(im); |
Eric Dumazet | c70eba7 | 2013-06-12 14:11:16 -0700 | [diff] [blame] | 1272 | im->next_hash = mc_hash[hash]; |
Eric Dumazet | e989707 | 2013-06-07 08:48:57 -0700 | [diff] [blame] | 1273 | rcu_assign_pointer(mc_hash[hash], im); |
| 1274 | return; |
| 1275 | } |
| 1276 | |
| 1277 | /* do not use a hash table for small number of items */ |
| 1278 | if (in_dev->mc_count < 4) |
| 1279 | return; |
| 1280 | |
| 1281 | mc_hash = kzalloc(sizeof(struct ip_mc_list *) << MC_HASH_SZ_LOG, |
| 1282 | GFP_KERNEL); |
| 1283 | if (!mc_hash) |
| 1284 | return; |
| 1285 | |
| 1286 | for_each_pmc_rtnl(in_dev, im) { |
| 1287 | hash = ip_mc_hash(im); |
Eric Dumazet | c70eba7 | 2013-06-12 14:11:16 -0700 | [diff] [blame] | 1288 | im->next_hash = mc_hash[hash]; |
Eric Dumazet | e989707 | 2013-06-07 08:48:57 -0700 | [diff] [blame] | 1289 | RCU_INIT_POINTER(mc_hash[hash], im); |
| 1290 | } |
| 1291 | |
| 1292 | rcu_assign_pointer(in_dev->mc_hash, mc_hash); |
| 1293 | } |
| 1294 | |
| 1295 | static void ip_mc_hash_remove(struct in_device *in_dev, |
| 1296 | struct ip_mc_list *im) |
| 1297 | { |
| 1298 | struct ip_mc_list __rcu **mc_hash = rtnl_dereference(in_dev->mc_hash); |
| 1299 | struct ip_mc_list *aux; |
| 1300 | |
| 1301 | if (!mc_hash) |
| 1302 | return; |
| 1303 | mc_hash += ip_mc_hash(im); |
| 1304 | while ((aux = rtnl_dereference(*mc_hash)) != im) |
| 1305 | mc_hash = &aux->next_hash; |
| 1306 | *mc_hash = im->next_hash; |
| 1307 | } |
| 1308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | |
| 1310 | /* |
| 1311 | * A socket has joined a multicast group on device dev. |
| 1312 | */ |
| 1313 | |
Al Viro | 8f935bb | 2006-09-27 18:30:07 -0700 | [diff] [blame] | 1314 | void ip_mc_inc_group(struct in_device *in_dev, __be32 addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1315 | { |
| 1316 | struct ip_mc_list *im; |
| 1317 | |
| 1318 | ASSERT_RTNL(); |
| 1319 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1320 | for_each_pmc_rtnl(in_dev, im) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1321 | if (im->multiaddr == addr) { |
| 1322 | im->users++; |
| 1323 | ip_mc_add_src(in_dev, &addr, MCAST_EXCLUDE, 0, NULL, 0); |
| 1324 | goto out; |
| 1325 | } |
| 1326 | } |
| 1327 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1328 | im = kzalloc(sizeof(*im), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1329 | if (!im) |
| 1330 | goto out; |
| 1331 | |
Jianjun Kong | a7e9ff7 | 2008-11-03 00:26:09 -0800 | [diff] [blame] | 1332 | im->users = 1; |
| 1333 | im->interface = in_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 | in_dev_hold(in_dev); |
Jianjun Kong | a7e9ff7 | 2008-11-03 00:26:09 -0800 | [diff] [blame] | 1335 | im->multiaddr = addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | /* initial mode is (EX, empty) */ |
| 1337 | im->sfmode = MCAST_EXCLUDE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1338 | im->sfcount[MCAST_EXCLUDE] = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | atomic_set(&im->refcnt, 1); |
| 1340 | spin_lock_init(&im->lock); |
| 1341 | #ifdef CONFIG_IP_MULTICAST |
Himangi Saraogi | 179542a | 2014-07-25 01:48:44 +0530 | [diff] [blame] | 1342 | setup_timer(&im->timer, igmp_timer_expire, (unsigned long)im); |
Hannes Frederic Sowa | a9fe8e2 | 2014-09-02 15:49:26 +0200 | [diff] [blame] | 1343 | im->unsolicit_count = sysctl_igmp_qrv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1344 | #endif |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1345 | |
| 1346 | im->next_rcu = in_dev->mc_list; |
Rami Rosen | b8bae41 | 2008-10-07 15:34:37 -0700 | [diff] [blame] | 1347 | in_dev->mc_count++; |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 1348 | rcu_assign_pointer(in_dev->mc_list, im); |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1349 | |
Eric Dumazet | e989707 | 2013-06-07 08:48:57 -0700 | [diff] [blame] | 1350 | ip_mc_hash_add(in_dev, im); |
| 1351 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | #ifdef CONFIG_IP_MULTICAST |
| 1353 | igmpv3_del_delrec(in_dev, im->multiaddr); |
| 1354 | #endif |
| 1355 | igmp_group_added(im); |
| 1356 | if (!in_dev->dead) |
| 1357 | ip_rt_multicast_event(in_dev); |
| 1358 | out: |
| 1359 | return; |
| 1360 | } |
Eric Dumazet | 4bc2f18 | 2010-07-09 21:22:10 +0000 | [diff] [blame] | 1361 | EXPORT_SYMBOL(ip_mc_inc_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | |
Linus Lüssing | 9afd85c | 2015-05-02 14:01:07 +0200 | [diff] [blame] | 1363 | static int ip_mc_check_iphdr(struct sk_buff *skb) |
| 1364 | { |
| 1365 | const struct iphdr *iph; |
| 1366 | unsigned int len; |
| 1367 | unsigned int offset = skb_network_offset(skb) + sizeof(*iph); |
| 1368 | |
| 1369 | if (!pskb_may_pull(skb, offset)) |
| 1370 | return -EINVAL; |
| 1371 | |
| 1372 | iph = ip_hdr(skb); |
| 1373 | |
| 1374 | if (iph->version != 4 || ip_hdrlen(skb) < sizeof(*iph)) |
| 1375 | return -EINVAL; |
| 1376 | |
| 1377 | offset += ip_hdrlen(skb) - sizeof(*iph); |
| 1378 | |
| 1379 | if (!pskb_may_pull(skb, offset)) |
| 1380 | return -EINVAL; |
| 1381 | |
| 1382 | iph = ip_hdr(skb); |
| 1383 | |
| 1384 | if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl))) |
| 1385 | return -EINVAL; |
| 1386 | |
| 1387 | len = skb_network_offset(skb) + ntohs(iph->tot_len); |
| 1388 | if (skb->len < len || len < offset) |
| 1389 | return -EINVAL; |
| 1390 | |
| 1391 | skb_set_transport_header(skb, offset); |
| 1392 | |
| 1393 | return 0; |
| 1394 | } |
| 1395 | |
| 1396 | static int ip_mc_check_igmp_reportv3(struct sk_buff *skb) |
| 1397 | { |
| 1398 | unsigned int len = skb_transport_offset(skb); |
| 1399 | |
| 1400 | len += sizeof(struct igmpv3_report); |
| 1401 | |
| 1402 | return pskb_may_pull(skb, len) ? 0 : -EINVAL; |
| 1403 | } |
| 1404 | |
| 1405 | static int ip_mc_check_igmp_query(struct sk_buff *skb) |
| 1406 | { |
| 1407 | unsigned int len = skb_transport_offset(skb); |
| 1408 | |
| 1409 | len += sizeof(struct igmphdr); |
| 1410 | if (skb->len < len) |
| 1411 | return -EINVAL; |
| 1412 | |
| 1413 | /* IGMPv{1,2}? */ |
| 1414 | if (skb->len != len) { |
| 1415 | /* or IGMPv3? */ |
| 1416 | len += sizeof(struct igmpv3_query) - sizeof(struct igmphdr); |
| 1417 | if (skb->len < len || !pskb_may_pull(skb, len)) |
| 1418 | return -EINVAL; |
| 1419 | } |
| 1420 | |
| 1421 | /* RFC2236+RFC3376 (IGMPv2+IGMPv3) require the multicast link layer |
| 1422 | * all-systems destination addresses (224.0.0.1) for general queries |
| 1423 | */ |
| 1424 | if (!igmp_hdr(skb)->group && |
| 1425 | ip_hdr(skb)->daddr != htonl(INADDR_ALLHOSTS_GROUP)) |
| 1426 | return -EINVAL; |
| 1427 | |
| 1428 | return 0; |
| 1429 | } |
| 1430 | |
| 1431 | static int ip_mc_check_igmp_msg(struct sk_buff *skb) |
| 1432 | { |
| 1433 | switch (igmp_hdr(skb)->type) { |
| 1434 | case IGMP_HOST_LEAVE_MESSAGE: |
| 1435 | case IGMP_HOST_MEMBERSHIP_REPORT: |
| 1436 | case IGMPV2_HOST_MEMBERSHIP_REPORT: |
| 1437 | /* fall through */ |
| 1438 | return 0; |
| 1439 | case IGMPV3_HOST_MEMBERSHIP_REPORT: |
| 1440 | return ip_mc_check_igmp_reportv3(skb); |
| 1441 | case IGMP_HOST_MEMBERSHIP_QUERY: |
| 1442 | return ip_mc_check_igmp_query(skb); |
| 1443 | default: |
| 1444 | return -ENOMSG; |
| 1445 | } |
| 1446 | } |
| 1447 | |
| 1448 | static inline __sum16 ip_mc_validate_checksum(struct sk_buff *skb) |
| 1449 | { |
| 1450 | return skb_checksum_simple_validate(skb); |
| 1451 | } |
| 1452 | |
| 1453 | static int __ip_mc_check_igmp(struct sk_buff *skb, struct sk_buff **skb_trimmed) |
| 1454 | |
| 1455 | { |
| 1456 | struct sk_buff *skb_chk; |
| 1457 | unsigned int transport_len; |
| 1458 | unsigned int len = skb_transport_offset(skb) + sizeof(struct igmphdr); |
Linus Lüssing | a516993 | 2015-08-13 05:54:07 +0200 | [diff] [blame] | 1459 | int ret = -EINVAL; |
Linus Lüssing | 9afd85c | 2015-05-02 14:01:07 +0200 | [diff] [blame] | 1460 | |
| 1461 | transport_len = ntohs(ip_hdr(skb)->tot_len) - ip_hdrlen(skb); |
| 1462 | |
Linus Lüssing | 9afd85c | 2015-05-02 14:01:07 +0200 | [diff] [blame] | 1463 | skb_chk = skb_checksum_trimmed(skb, transport_len, |
| 1464 | ip_mc_validate_checksum); |
| 1465 | if (!skb_chk) |
Linus Lüssing | a516993 | 2015-08-13 05:54:07 +0200 | [diff] [blame] | 1466 | goto err; |
Linus Lüssing | 9afd85c | 2015-05-02 14:01:07 +0200 | [diff] [blame] | 1467 | |
Linus Lüssing | a516993 | 2015-08-13 05:54:07 +0200 | [diff] [blame] | 1468 | if (!pskb_may_pull(skb_chk, len)) |
| 1469 | goto err; |
Linus Lüssing | 9afd85c | 2015-05-02 14:01:07 +0200 | [diff] [blame] | 1470 | |
| 1471 | ret = ip_mc_check_igmp_msg(skb_chk); |
Linus Lüssing | a516993 | 2015-08-13 05:54:07 +0200 | [diff] [blame] | 1472 | if (ret) |
| 1473 | goto err; |
Linus Lüssing | 9afd85c | 2015-05-02 14:01:07 +0200 | [diff] [blame] | 1474 | |
| 1475 | if (skb_trimmed) |
| 1476 | *skb_trimmed = skb_chk; |
Linus Lüssing | a516993 | 2015-08-13 05:54:07 +0200 | [diff] [blame] | 1477 | /* free now unneeded clone */ |
| 1478 | else if (skb_chk != skb) |
Linus Lüssing | 9afd85c | 2015-05-02 14:01:07 +0200 | [diff] [blame] | 1479 | kfree_skb(skb_chk); |
| 1480 | |
Linus Lüssing | a516993 | 2015-08-13 05:54:07 +0200 | [diff] [blame] | 1481 | ret = 0; |
| 1482 | |
| 1483 | err: |
| 1484 | if (ret && skb_chk && skb_chk != skb) |
| 1485 | kfree_skb(skb_chk); |
| 1486 | |
| 1487 | return ret; |
Linus Lüssing | 9afd85c | 2015-05-02 14:01:07 +0200 | [diff] [blame] | 1488 | } |
| 1489 | |
| 1490 | /** |
| 1491 | * ip_mc_check_igmp - checks whether this is a sane IGMP packet |
| 1492 | * @skb: the skb to validate |
| 1493 | * @skb_trimmed: to store an skb pointer trimmed to IPv4 packet tail (optional) |
| 1494 | * |
| 1495 | * Checks whether an IPv4 packet is a valid IGMP packet. If so sets |
Linus Lüssing | a516993 | 2015-08-13 05:54:07 +0200 | [diff] [blame] | 1496 | * skb transport header accordingly and returns zero. |
Linus Lüssing | 9afd85c | 2015-05-02 14:01:07 +0200 | [diff] [blame] | 1497 | * |
| 1498 | * -EINVAL: A broken packet was detected, i.e. it violates some internet |
| 1499 | * standard |
| 1500 | * -ENOMSG: IP header validation succeeded but it is not an IGMP packet. |
| 1501 | * -ENOMEM: A memory allocation failure happened. |
| 1502 | * |
| 1503 | * Optionally, an skb pointer might be provided via skb_trimmed (or set it |
| 1504 | * to NULL): After parsing an IGMP packet successfully it will point to |
| 1505 | * an skb which has its tail aligned to the IP packet end. This might |
| 1506 | * either be the originally provided skb or a trimmed, cloned version if |
| 1507 | * the skb frame had data beyond the IP packet. A cloned skb allows us |
| 1508 | * to leave the original skb and its full frame unchanged (which might be |
| 1509 | * desirable for layer 2 frame jugglers). |
| 1510 | * |
Linus Lüssing | a516993 | 2015-08-13 05:54:07 +0200 | [diff] [blame] | 1511 | * Caller needs to set the skb network header and free any returned skb if it |
| 1512 | * differs from the provided skb. |
Linus Lüssing | 9afd85c | 2015-05-02 14:01:07 +0200 | [diff] [blame] | 1513 | */ |
| 1514 | int ip_mc_check_igmp(struct sk_buff *skb, struct sk_buff **skb_trimmed) |
| 1515 | { |
| 1516 | int ret = ip_mc_check_iphdr(skb); |
| 1517 | |
| 1518 | if (ret < 0) |
| 1519 | return ret; |
| 1520 | |
| 1521 | if (ip_hdr(skb)->protocol != IPPROTO_IGMP) |
| 1522 | return -ENOMSG; |
| 1523 | |
| 1524 | return __ip_mc_check_igmp(skb, skb_trimmed); |
| 1525 | } |
| 1526 | EXPORT_SYMBOL(ip_mc_check_igmp); |
| 1527 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | /* |
Jiri Pirko | 4aa5dee | 2013-07-20 12:13:53 +0200 | [diff] [blame] | 1529 | * Resend IGMP JOIN report; used by netdev notifier. |
Jay Vosburgh | a816c7c | 2007-02-28 17:03:37 -0800 | [diff] [blame] | 1530 | */ |
Jiri Pirko | 4aa5dee | 2013-07-20 12:13:53 +0200 | [diff] [blame] | 1531 | static void ip_mc_rejoin_groups(struct in_device *in_dev) |
Jay Vosburgh | a816c7c | 2007-02-28 17:03:37 -0800 | [diff] [blame] | 1532 | { |
Geert Uytterhoeven | 0888266 | 2007-03-12 17:02:37 -0700 | [diff] [blame] | 1533 | #ifdef CONFIG_IP_MULTICAST |
Eric Dumazet | 866f3b2 | 2010-11-18 09:33:19 -0800 | [diff] [blame] | 1534 | struct ip_mc_list *im; |
| 1535 | int type; |
Nikolay Borisov | 87a8a2a | 2016-02-09 00:13:50 +0200 | [diff] [blame^] | 1536 | struct net *net = dev_net(in_dev->dev); |
Jay Vosburgh | a816c7c | 2007-02-28 17:03:37 -0800 | [diff] [blame] | 1537 | |
Jiri Pirko | 4aa5dee | 2013-07-20 12:13:53 +0200 | [diff] [blame] | 1538 | ASSERT_RTNL(); |
| 1539 | |
| 1540 | for_each_pmc_rtnl(in_dev, im) { |
Eric Dumazet | 866f3b2 | 2010-11-18 09:33:19 -0800 | [diff] [blame] | 1541 | if (im->multiaddr == IGMP_ALL_HOSTS) |
| 1542 | continue; |
Philip Downey | df2cf4a | 2015-08-27 16:46:26 +0100 | [diff] [blame] | 1543 | if (ipv4_is_local_multicast(im->multiaddr) && |
Nikolay Borisov | 87a8a2a | 2016-02-09 00:13:50 +0200 | [diff] [blame^] | 1544 | !net->ipv4.sysctl_igmp_llm_reports) |
Philip Downey | df2cf4a | 2015-08-27 16:46:26 +0100 | [diff] [blame] | 1545 | continue; |
Jay Vosburgh | a816c7c | 2007-02-28 17:03:37 -0800 | [diff] [blame] | 1546 | |
Eric Dumazet | 866f3b2 | 2010-11-18 09:33:19 -0800 | [diff] [blame] | 1547 | /* a failover is happening and switches |
| 1548 | * must be notified immediately |
| 1549 | */ |
| 1550 | if (IGMP_V1_SEEN(in_dev)) |
| 1551 | type = IGMP_HOST_MEMBERSHIP_REPORT; |
| 1552 | else if (IGMP_V2_SEEN(in_dev)) |
| 1553 | type = IGMPV2_HOST_MEMBERSHIP_REPORT; |
| 1554 | else |
| 1555 | type = IGMPV3_HOST_MEMBERSHIP_REPORT; |
| 1556 | igmp_send_report(in_dev, im, type); |
| 1557 | } |
Jay Vosburgh | a816c7c | 2007-02-28 17:03:37 -0800 | [diff] [blame] | 1558 | #endif |
| 1559 | } |
| 1560 | |
| 1561 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1562 | * A socket has left a multicast group on device dev |
| 1563 | */ |
| 1564 | |
Al Viro | 8f935bb | 2006-09-27 18:30:07 -0700 | [diff] [blame] | 1565 | void ip_mc_dec_group(struct in_device *in_dev, __be32 addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | { |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1567 | struct ip_mc_list *i; |
| 1568 | struct ip_mc_list __rcu **ip; |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 1569 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1570 | ASSERT_RTNL(); |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 1571 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1572 | for (ip = &in_dev->mc_list; |
| 1573 | (i = rtnl_dereference(*ip)) != NULL; |
| 1574 | ip = &i->next_rcu) { |
Jianjun Kong | a7e9ff7 | 2008-11-03 00:26:09 -0800 | [diff] [blame] | 1575 | if (i->multiaddr == addr) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1576 | if (--i->users == 0) { |
Eric Dumazet | e989707 | 2013-06-07 08:48:57 -0700 | [diff] [blame] | 1577 | ip_mc_hash_remove(in_dev, i); |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1578 | *ip = i->next_rcu; |
Rami Rosen | b8bae41 | 2008-10-07 15:34:37 -0700 | [diff] [blame] | 1579 | in_dev->mc_count--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1580 | igmp_group_dropped(i); |
Veaceslav Falico | 24cf3af | 2011-05-23 23:15:05 +0000 | [diff] [blame] | 1581 | ip_mc_clear_src(i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1582 | |
| 1583 | if (!in_dev->dead) |
| 1584 | ip_rt_multicast_event(in_dev); |
| 1585 | |
| 1586 | ip_ma_put(i); |
| 1587 | return; |
| 1588 | } |
| 1589 | break; |
| 1590 | } |
| 1591 | } |
| 1592 | } |
Eric Dumazet | 4bc2f18 | 2010-07-09 21:22:10 +0000 | [diff] [blame] | 1593 | EXPORT_SYMBOL(ip_mc_dec_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1594 | |
Moni Shoua | 75c7850 | 2009-09-15 02:37:40 -0700 | [diff] [blame] | 1595 | /* Device changing type */ |
| 1596 | |
| 1597 | void ip_mc_unmap(struct in_device *in_dev) |
| 1598 | { |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1599 | struct ip_mc_list *pmc; |
Moni Shoua | 75c7850 | 2009-09-15 02:37:40 -0700 | [diff] [blame] | 1600 | |
| 1601 | ASSERT_RTNL(); |
| 1602 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1603 | for_each_pmc_rtnl(in_dev, pmc) |
| 1604 | igmp_group_dropped(pmc); |
Moni Shoua | 75c7850 | 2009-09-15 02:37:40 -0700 | [diff] [blame] | 1605 | } |
| 1606 | |
| 1607 | void ip_mc_remap(struct in_device *in_dev) |
| 1608 | { |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1609 | struct ip_mc_list *pmc; |
Moni Shoua | 75c7850 | 2009-09-15 02:37:40 -0700 | [diff] [blame] | 1610 | |
| 1611 | ASSERT_RTNL(); |
| 1612 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1613 | for_each_pmc_rtnl(in_dev, pmc) |
| 1614 | igmp_group_added(pmc); |
Moni Shoua | 75c7850 | 2009-09-15 02:37:40 -0700 | [diff] [blame] | 1615 | } |
| 1616 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1617 | /* Device going down */ |
| 1618 | |
| 1619 | void ip_mc_down(struct in_device *in_dev) |
| 1620 | { |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1621 | struct ip_mc_list *pmc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1622 | |
| 1623 | ASSERT_RTNL(); |
| 1624 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1625 | for_each_pmc_rtnl(in_dev, pmc) |
| 1626 | igmp_group_dropped(pmc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1627 | |
| 1628 | #ifdef CONFIG_IP_MULTICAST |
| 1629 | in_dev->mr_ifc_count = 0; |
| 1630 | if (del_timer(&in_dev->mr_ifc_timer)) |
| 1631 | __in_dev_put(in_dev); |
| 1632 | in_dev->mr_gq_running = 0; |
| 1633 | if (del_timer(&in_dev->mr_gq_timer)) |
| 1634 | __in_dev_put(in_dev); |
| 1635 | igmpv3_clear_delrec(in_dev); |
| 1636 | #endif |
| 1637 | |
| 1638 | ip_mc_dec_group(in_dev, IGMP_ALL_HOSTS); |
| 1639 | } |
| 1640 | |
| 1641 | void ip_mc_init_dev(struct in_device *in_dev) |
| 1642 | { |
| 1643 | ASSERT_RTNL(); |
| 1644 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1645 | #ifdef CONFIG_IP_MULTICAST |
Pavel Emelyanov | b24b8a2 | 2008-01-23 21:20:07 -0800 | [diff] [blame] | 1646 | setup_timer(&in_dev->mr_gq_timer, igmp_gq_timer_expire, |
| 1647 | (unsigned long)in_dev); |
Pavel Emelyanov | b24b8a2 | 2008-01-23 21:20:07 -0800 | [diff] [blame] | 1648 | setup_timer(&in_dev->mr_ifc_timer, igmp_ifc_timer_expire, |
| 1649 | (unsigned long)in_dev); |
Hannes Frederic Sowa | a9fe8e2 | 2014-09-02 15:49:26 +0200 | [diff] [blame] | 1650 | in_dev->mr_qrv = sysctl_igmp_qrv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | #endif |
| 1652 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 | spin_lock_init(&in_dev->mc_tomb_lock); |
| 1654 | } |
| 1655 | |
| 1656 | /* Device going up */ |
| 1657 | |
| 1658 | void ip_mc_up(struct in_device *in_dev) |
| 1659 | { |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1660 | struct ip_mc_list *pmc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | |
| 1662 | ASSERT_RTNL(); |
| 1663 | |
Hannes Frederic Sowa | a9fe8e2 | 2014-09-02 15:49:26 +0200 | [diff] [blame] | 1664 | #ifdef CONFIG_IP_MULTICAST |
| 1665 | in_dev->mr_qrv = sysctl_igmp_qrv; |
| 1666 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1667 | ip_mc_inc_group(in_dev, IGMP_ALL_HOSTS); |
| 1668 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1669 | for_each_pmc_rtnl(in_dev, pmc) |
| 1670 | igmp_group_added(pmc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1671 | } |
| 1672 | |
| 1673 | /* |
| 1674 | * Device is about to be destroyed: clean up. |
| 1675 | */ |
| 1676 | |
| 1677 | void ip_mc_destroy_dev(struct in_device *in_dev) |
| 1678 | { |
| 1679 | struct ip_mc_list *i; |
| 1680 | |
| 1681 | ASSERT_RTNL(); |
| 1682 | |
| 1683 | /* Deactivate timers */ |
| 1684 | ip_mc_down(in_dev); |
| 1685 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1686 | while ((i = rtnl_dereference(in_dev->mc_list)) != NULL) { |
| 1687 | in_dev->mc_list = i->next_rcu; |
Rami Rosen | b8bae41 | 2008-10-07 15:34:37 -0700 | [diff] [blame] | 1688 | in_dev->mc_count--; |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1689 | |
Veaceslav Falico | 24cf3af | 2011-05-23 23:15:05 +0000 | [diff] [blame] | 1690 | /* We've dropped the groups in ip_mc_down already */ |
| 1691 | ip_mc_clear_src(i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1692 | ip_ma_put(i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1693 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1694 | } |
| 1695 | |
Eric Dumazet | 9e917dc | 2010-10-19 00:39:18 +0000 | [diff] [blame] | 1696 | /* RTNL is locked */ |
Daniel Lezcano | 877aced | 2008-08-13 16:15:57 -0700 | [diff] [blame] | 1697 | static struct in_device *ip_mc_find_dev(struct net *net, struct ip_mreqn *imr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1698 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1699 | struct net_device *dev = NULL; |
| 1700 | struct in_device *idev = NULL; |
| 1701 | |
| 1702 | if (imr->imr_ifindex) { |
Daniel Lezcano | 877aced | 2008-08-13 16:15:57 -0700 | [diff] [blame] | 1703 | idev = inetdev_by_index(net, imr->imr_ifindex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1704 | return idev; |
| 1705 | } |
| 1706 | if (imr->imr_address.s_addr) { |
Eric Dumazet | 9e917dc | 2010-10-19 00:39:18 +0000 | [diff] [blame] | 1707 | dev = __ip_dev_find(net, imr->imr_address.s_addr, false); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1708 | if (!dev) |
| 1709 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1710 | } |
| 1711 | |
David S. Miller | b23dd4f | 2011-03-02 14:31:35 -0800 | [diff] [blame] | 1712 | if (!dev) { |
David S. Miller | 78fbfd8 | 2011-03-12 00:00:52 -0500 | [diff] [blame] | 1713 | struct rtable *rt = ip_route_output(net, |
| 1714 | imr->imr_multiaddr.s_addr, |
| 1715 | 0, 0, 0); |
David S. Miller | b23dd4f | 2011-03-02 14:31:35 -0800 | [diff] [blame] | 1716 | if (!IS_ERR(rt)) { |
| 1717 | dev = rt->dst.dev; |
| 1718 | ip_rt_put(rt); |
| 1719 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | } |
| 1721 | if (dev) { |
| 1722 | imr->imr_ifindex = dev->ifindex; |
Herbert Xu | e5ed639 | 2005-10-03 14:35:55 -0700 | [diff] [blame] | 1723 | idev = __in_dev_get_rtnl(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1724 | } |
| 1725 | return idev; |
| 1726 | } |
| 1727 | |
| 1728 | /* |
| 1729 | * Join a socket to a group |
| 1730 | */ |
Hannes Frederic Sowa | a9fe8e2 | 2014-09-02 15:49:26 +0200 | [diff] [blame] | 1731 | #ifdef CONFIG_IP_MULTICAST |
Fabian Frederick | 436f7c2 | 2014-11-04 20:52:14 +0100 | [diff] [blame] | 1732 | int sysctl_igmp_qrv __read_mostly = IGMP_QUERY_ROBUSTNESS_VARIABLE; |
Hannes Frederic Sowa | a9fe8e2 | 2014-09-02 15:49:26 +0200 | [diff] [blame] | 1733 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | |
| 1735 | static int ip_mc_del1_src(struct ip_mc_list *pmc, int sfmode, |
Al Viro | 8f935bb | 2006-09-27 18:30:07 -0700 | [diff] [blame] | 1736 | __be32 *psfsrc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1737 | { |
| 1738 | struct ip_sf_list *psf, *psf_prev; |
| 1739 | int rv = 0; |
| 1740 | |
| 1741 | psf_prev = NULL; |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 1742 | for (psf = pmc->sources; psf; psf = psf->sf_next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1743 | if (psf->sf_inaddr == *psfsrc) |
| 1744 | break; |
| 1745 | psf_prev = psf; |
| 1746 | } |
| 1747 | if (!psf || psf->sf_count[sfmode] == 0) { |
| 1748 | /* source filter not found, or count wrong => bug */ |
| 1749 | return -ESRCH; |
| 1750 | } |
| 1751 | psf->sf_count[sfmode]--; |
| 1752 | if (psf->sf_count[sfmode] == 0) { |
| 1753 | ip_rt_multicast_event(pmc->interface); |
| 1754 | } |
| 1755 | if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) { |
| 1756 | #ifdef CONFIG_IP_MULTICAST |
| 1757 | struct in_device *in_dev = pmc->interface; |
| 1758 | #endif |
| 1759 | |
| 1760 | /* no more filters for this source */ |
| 1761 | if (psf_prev) |
| 1762 | psf_prev->sf_next = psf->sf_next; |
| 1763 | else |
| 1764 | pmc->sources = psf->sf_next; |
| 1765 | #ifdef CONFIG_IP_MULTICAST |
| 1766 | if (psf->sf_oldin && |
| 1767 | !IGMP_V1_SEEN(in_dev) && !IGMP_V2_SEEN(in_dev)) { |
Hannes Frederic Sowa | a9fe8e2 | 2014-09-02 15:49:26 +0200 | [diff] [blame] | 1768 | psf->sf_crcount = in_dev->mr_qrv ?: sysctl_igmp_qrv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1769 | psf->sf_next = pmc->tomb; |
| 1770 | pmc->tomb = psf; |
| 1771 | rv = 1; |
| 1772 | } else |
| 1773 | #endif |
| 1774 | kfree(psf); |
| 1775 | } |
| 1776 | return rv; |
| 1777 | } |
| 1778 | |
| 1779 | #ifndef CONFIG_IP_MULTICAST |
| 1780 | #define igmp_ifc_event(x) do { } while (0) |
| 1781 | #endif |
| 1782 | |
Al Viro | 8f935bb | 2006-09-27 18:30:07 -0700 | [diff] [blame] | 1783 | static int ip_mc_del_src(struct in_device *in_dev, __be32 *pmca, int sfmode, |
| 1784 | int sfcount, __be32 *psfsrc, int delta) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1785 | { |
| 1786 | struct ip_mc_list *pmc; |
| 1787 | int changerec = 0; |
| 1788 | int i, err; |
| 1789 | |
| 1790 | if (!in_dev) |
| 1791 | return -ENODEV; |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1792 | rcu_read_lock(); |
| 1793 | for_each_pmc_rcu(in_dev, pmc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1794 | if (*pmca == pmc->multiaddr) |
| 1795 | break; |
| 1796 | } |
| 1797 | if (!pmc) { |
| 1798 | /* MCA not found?? bug */ |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1799 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1800 | return -ESRCH; |
| 1801 | } |
| 1802 | spin_lock_bh(&pmc->lock); |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1803 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1804 | #ifdef CONFIG_IP_MULTICAST |
| 1805 | sf_markstate(pmc); |
| 1806 | #endif |
| 1807 | if (!delta) { |
| 1808 | err = -EINVAL; |
| 1809 | if (!pmc->sfcount[sfmode]) |
| 1810 | goto out_unlock; |
| 1811 | pmc->sfcount[sfmode]--; |
| 1812 | } |
| 1813 | err = 0; |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 1814 | for (i = 0; i < sfcount; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1815 | int rv = ip_mc_del1_src(pmc, sfmode, &psfsrc[i]); |
| 1816 | |
| 1817 | changerec |= rv > 0; |
| 1818 | if (!err && rv < 0) |
| 1819 | err = rv; |
| 1820 | } |
| 1821 | if (pmc->sfmode == MCAST_EXCLUDE && |
| 1822 | pmc->sfcount[MCAST_EXCLUDE] == 0 && |
| 1823 | pmc->sfcount[MCAST_INCLUDE]) { |
| 1824 | #ifdef CONFIG_IP_MULTICAST |
| 1825 | struct ip_sf_list *psf; |
| 1826 | #endif |
| 1827 | |
| 1828 | /* filter mode change */ |
| 1829 | pmc->sfmode = MCAST_INCLUDE; |
| 1830 | #ifdef CONFIG_IP_MULTICAST |
Hannes Frederic Sowa | a9fe8e2 | 2014-09-02 15:49:26 +0200 | [diff] [blame] | 1831 | pmc->crcount = in_dev->mr_qrv ?: sysctl_igmp_qrv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1832 | in_dev->mr_ifc_count = pmc->crcount; |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 1833 | for (psf = pmc->sources; psf; psf = psf->sf_next) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | psf->sf_crcount = 0; |
| 1835 | igmp_ifc_event(pmc->interface); |
| 1836 | } else if (sf_setstate(pmc) || changerec) { |
| 1837 | igmp_ifc_event(pmc->interface); |
| 1838 | #endif |
| 1839 | } |
| 1840 | out_unlock: |
| 1841 | spin_unlock_bh(&pmc->lock); |
| 1842 | return err; |
| 1843 | } |
| 1844 | |
| 1845 | /* |
| 1846 | * Add multicast single-source filter to the interface list |
| 1847 | */ |
| 1848 | static int ip_mc_add1_src(struct ip_mc_list *pmc, int sfmode, |
Jun Zhao | 5eb81e89 | 2011-11-30 06:21:04 +0000 | [diff] [blame] | 1849 | __be32 *psfsrc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1850 | { |
| 1851 | struct ip_sf_list *psf, *psf_prev; |
| 1852 | |
| 1853 | psf_prev = NULL; |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 1854 | for (psf = pmc->sources; psf; psf = psf->sf_next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1855 | if (psf->sf_inaddr == *psfsrc) |
| 1856 | break; |
| 1857 | psf_prev = psf; |
| 1858 | } |
| 1859 | if (!psf) { |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 1860 | psf = kzalloc(sizeof(*psf), GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1861 | if (!psf) |
| 1862 | return -ENOBUFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1863 | psf->sf_inaddr = *psfsrc; |
| 1864 | if (psf_prev) { |
| 1865 | psf_prev->sf_next = psf; |
| 1866 | } else |
| 1867 | pmc->sources = psf; |
| 1868 | } |
| 1869 | psf->sf_count[sfmode]++; |
| 1870 | if (psf->sf_count[sfmode] == 1) { |
| 1871 | ip_rt_multicast_event(pmc->interface); |
| 1872 | } |
| 1873 | return 0; |
| 1874 | } |
| 1875 | |
| 1876 | #ifdef CONFIG_IP_MULTICAST |
| 1877 | static void sf_markstate(struct ip_mc_list *pmc) |
| 1878 | { |
| 1879 | struct ip_sf_list *psf; |
| 1880 | int mca_xcount = pmc->sfcount[MCAST_EXCLUDE]; |
| 1881 | |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 1882 | for (psf = pmc->sources; psf; psf = psf->sf_next) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1883 | if (pmc->sfcount[MCAST_EXCLUDE]) { |
| 1884 | psf->sf_oldin = mca_xcount == |
| 1885 | psf->sf_count[MCAST_EXCLUDE] && |
| 1886 | !psf->sf_count[MCAST_INCLUDE]; |
| 1887 | } else |
| 1888 | psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0; |
| 1889 | } |
| 1890 | |
| 1891 | static int sf_setstate(struct ip_mc_list *pmc) |
| 1892 | { |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 1893 | struct ip_sf_list *psf, *dpsf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1894 | int mca_xcount = pmc->sfcount[MCAST_EXCLUDE]; |
| 1895 | int qrv = pmc->interface->mr_qrv; |
| 1896 | int new_in, rv; |
| 1897 | |
| 1898 | rv = 0; |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 1899 | for (psf = pmc->sources; psf; psf = psf->sf_next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | if (pmc->sfcount[MCAST_EXCLUDE]) { |
| 1901 | new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] && |
| 1902 | !psf->sf_count[MCAST_INCLUDE]; |
| 1903 | } else |
| 1904 | new_in = psf->sf_count[MCAST_INCLUDE] != 0; |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 1905 | if (new_in) { |
| 1906 | if (!psf->sf_oldin) { |
Al Viro | 76edc60 | 2006-02-01 05:54:35 -0500 | [diff] [blame] | 1907 | struct ip_sf_list *prev = NULL; |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 1908 | |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 1909 | for (dpsf = pmc->tomb; dpsf; dpsf = dpsf->sf_next) { |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 1910 | if (dpsf->sf_inaddr == psf->sf_inaddr) |
| 1911 | break; |
| 1912 | prev = dpsf; |
| 1913 | } |
| 1914 | if (dpsf) { |
| 1915 | if (prev) |
| 1916 | prev->sf_next = dpsf->sf_next; |
| 1917 | else |
| 1918 | pmc->tomb = dpsf->sf_next; |
| 1919 | kfree(dpsf); |
| 1920 | } |
| 1921 | psf->sf_crcount = qrv; |
| 1922 | rv++; |
| 1923 | } |
| 1924 | } else if (psf->sf_oldin) { |
| 1925 | |
| 1926 | psf->sf_crcount = 0; |
| 1927 | /* |
| 1928 | * add or update "delete" records if an active filter |
| 1929 | * is now inactive |
| 1930 | */ |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 1931 | for (dpsf = pmc->tomb; dpsf; dpsf = dpsf->sf_next) |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 1932 | if (dpsf->sf_inaddr == psf->sf_inaddr) |
| 1933 | break; |
| 1934 | if (!dpsf) { |
Joe Perches | 3ed37a6 | 2010-05-31 17:23:21 +0000 | [diff] [blame] | 1935 | dpsf = kmalloc(sizeof(*dpsf), GFP_ATOMIC); |
David L Stevens | ad12583 | 2006-01-18 14:20:56 -0800 | [diff] [blame] | 1936 | if (!dpsf) |
| 1937 | continue; |
| 1938 | *dpsf = *psf; |
| 1939 | /* pmc->lock held by callers */ |
| 1940 | dpsf->sf_next = pmc->tomb; |
| 1941 | pmc->tomb = dpsf; |
| 1942 | } |
| 1943 | dpsf->sf_crcount = qrv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1944 | rv++; |
| 1945 | } |
| 1946 | } |
| 1947 | return rv; |
| 1948 | } |
| 1949 | #endif |
| 1950 | |
| 1951 | /* |
| 1952 | * Add multicast source filter list to the interface list |
| 1953 | */ |
Al Viro | 8f935bb | 2006-09-27 18:30:07 -0700 | [diff] [blame] | 1954 | static int ip_mc_add_src(struct in_device *in_dev, __be32 *pmca, int sfmode, |
| 1955 | int sfcount, __be32 *psfsrc, int delta) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1956 | { |
| 1957 | struct ip_mc_list *pmc; |
| 1958 | int isexclude; |
| 1959 | int i, err; |
| 1960 | |
| 1961 | if (!in_dev) |
| 1962 | return -ENODEV; |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1963 | rcu_read_lock(); |
| 1964 | for_each_pmc_rcu(in_dev, pmc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1965 | if (*pmca == pmc->multiaddr) |
| 1966 | break; |
| 1967 | } |
| 1968 | if (!pmc) { |
| 1969 | /* MCA not found?? bug */ |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1970 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1971 | return -ESRCH; |
| 1972 | } |
| 1973 | spin_lock_bh(&pmc->lock); |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 1974 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1975 | |
| 1976 | #ifdef CONFIG_IP_MULTICAST |
| 1977 | sf_markstate(pmc); |
| 1978 | #endif |
| 1979 | isexclude = pmc->sfmode == MCAST_EXCLUDE; |
| 1980 | if (!delta) |
| 1981 | pmc->sfcount[sfmode]++; |
| 1982 | err = 0; |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 1983 | for (i = 0; i < sfcount; i++) { |
Jun Zhao | 5eb81e89 | 2011-11-30 06:21:04 +0000 | [diff] [blame] | 1984 | err = ip_mc_add1_src(pmc, sfmode, &psfsrc[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1985 | if (err) |
| 1986 | break; |
| 1987 | } |
| 1988 | if (err) { |
| 1989 | int j; |
| 1990 | |
Jun Zhao | 685f94e6 | 2011-11-22 17:19:03 +0000 | [diff] [blame] | 1991 | if (!delta) |
| 1992 | pmc->sfcount[sfmode]--; |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 1993 | for (j = 0; j < i; j++) |
Julia Lawall | a1889c0 | 2011-07-28 02:46:01 +0000 | [diff] [blame] | 1994 | (void) ip_mc_del1_src(pmc, sfmode, &psfsrc[j]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | } else if (isexclude != (pmc->sfcount[MCAST_EXCLUDE] != 0)) { |
| 1996 | #ifdef CONFIG_IP_MULTICAST |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | struct ip_sf_list *psf; |
Stephen Hemminger | cfcabdc | 2007-10-09 01:59:42 -0700 | [diff] [blame] | 1998 | in_dev = pmc->interface; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1999 | #endif |
| 2000 | |
| 2001 | /* filter mode change */ |
| 2002 | if (pmc->sfcount[MCAST_EXCLUDE]) |
| 2003 | pmc->sfmode = MCAST_EXCLUDE; |
| 2004 | else if (pmc->sfcount[MCAST_INCLUDE]) |
| 2005 | pmc->sfmode = MCAST_INCLUDE; |
| 2006 | #ifdef CONFIG_IP_MULTICAST |
| 2007 | /* else no filters; keep old mode for reports */ |
| 2008 | |
Hannes Frederic Sowa | a9fe8e2 | 2014-09-02 15:49:26 +0200 | [diff] [blame] | 2009 | pmc->crcount = in_dev->mr_qrv ?: sysctl_igmp_qrv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2010 | in_dev->mr_ifc_count = pmc->crcount; |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 2011 | for (psf = pmc->sources; psf; psf = psf->sf_next) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2012 | psf->sf_crcount = 0; |
| 2013 | igmp_ifc_event(in_dev); |
| 2014 | } else if (sf_setstate(pmc)) { |
| 2015 | igmp_ifc_event(in_dev); |
| 2016 | #endif |
| 2017 | } |
| 2018 | spin_unlock_bh(&pmc->lock); |
| 2019 | return err; |
| 2020 | } |
| 2021 | |
| 2022 | static void ip_mc_clear_src(struct ip_mc_list *pmc) |
| 2023 | { |
| 2024 | struct ip_sf_list *psf, *nextpsf; |
| 2025 | |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 2026 | for (psf = pmc->tomb; psf; psf = nextpsf) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | nextpsf = psf->sf_next; |
| 2028 | kfree(psf); |
| 2029 | } |
| 2030 | pmc->tomb = NULL; |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 2031 | for (psf = pmc->sources; psf; psf = nextpsf) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2032 | nextpsf = psf->sf_next; |
| 2033 | kfree(psf); |
| 2034 | } |
| 2035 | pmc->sources = NULL; |
| 2036 | pmc->sfmode = MCAST_EXCLUDE; |
Denis Lukianov | de9daad | 2005-09-14 20:53:42 -0700 | [diff] [blame] | 2037 | pmc->sfcount[MCAST_INCLUDE] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2038 | pmc->sfcount[MCAST_EXCLUDE] = 1; |
| 2039 | } |
| 2040 | |
Marcelo Ricardo Leitner | 54ff9ef | 2015-03-18 14:50:43 -0300 | [diff] [blame] | 2041 | /* Join a multicast group |
| 2042 | */ |
| 2043 | |
| 2044 | int ip_mc_join_group(struct sock *sk, struct ip_mreqn *imr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2045 | { |
Al Viro | 8f935bb | 2006-09-27 18:30:07 -0700 | [diff] [blame] | 2046 | __be32 addr = imr->imr_multiaddr.s_addr; |
Eric Dumazet | 959d10f | 2015-02-17 03:19:24 -0800 | [diff] [blame] | 2047 | struct ip_mc_socklist *iml, *i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2048 | struct in_device *in_dev; |
| 2049 | struct inet_sock *inet = inet_sk(sk); |
Daniel Lezcano | 877aced | 2008-08-13 16:15:57 -0700 | [diff] [blame] | 2050 | struct net *net = sock_net(sk); |
David L Stevens | ca9b907 | 2005-07-08 17:38:07 -0700 | [diff] [blame] | 2051 | int ifindex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2052 | int count = 0; |
Eric Dumazet | 959d10f | 2015-02-17 03:19:24 -0800 | [diff] [blame] | 2053 | int err; |
| 2054 | |
| 2055 | ASSERT_RTNL(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2056 | |
Joe Perches | f97c1e0 | 2007-12-16 13:45:43 -0800 | [diff] [blame] | 2057 | if (!ipv4_is_multicast(addr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2058 | return -EINVAL; |
| 2059 | |
Daniel Lezcano | 877aced | 2008-08-13 16:15:57 -0700 | [diff] [blame] | 2060 | in_dev = ip_mc_find_dev(net, imr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2061 | |
| 2062 | if (!in_dev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 | err = -ENODEV; |
| 2064 | goto done; |
| 2065 | } |
| 2066 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2067 | err = -EADDRINUSE; |
David L Stevens | ca9b907 | 2005-07-08 17:38:07 -0700 | [diff] [blame] | 2068 | ifindex = imr->imr_ifindex; |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2069 | for_each_pmc_rtnl(inet, i) { |
David L Stevens | ca9b907 | 2005-07-08 17:38:07 -0700 | [diff] [blame] | 2070 | if (i->multi.imr_multiaddr.s_addr == addr && |
| 2071 | i->multi.imr_ifindex == ifindex) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2072 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2073 | count++; |
| 2074 | } |
| 2075 | err = -ENOBUFS; |
Nikolay Borisov | 815c527 | 2016-02-08 23:29:21 +0200 | [diff] [blame] | 2076 | if (count >= net->ipv4.sysctl_igmp_max_memberships) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2077 | goto done; |
Jianjun Kong | a7e9ff7 | 2008-11-03 00:26:09 -0800 | [diff] [blame] | 2078 | iml = sock_kmalloc(sk, sizeof(*iml), GFP_KERNEL); |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 2079 | if (!iml) |
David L Stevens | ca9b907 | 2005-07-08 17:38:07 -0700 | [diff] [blame] | 2080 | goto done; |
| 2081 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2082 | memcpy(&iml->multi, imr, sizeof(*imr)); |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2083 | iml->next_rcu = inet->mc_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2084 | iml->sflist = NULL; |
| 2085 | iml->sfmode = MCAST_EXCLUDE; |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 2086 | rcu_assign_pointer(inet->mc_list, iml); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2087 | ip_mc_inc_group(in_dev, addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2088 | err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2089 | done: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | return err; |
| 2091 | } |
Eric Dumazet | 4bc2f18 | 2010-07-09 21:22:10 +0000 | [diff] [blame] | 2092 | EXPORT_SYMBOL(ip_mc_join_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2093 | |
| 2094 | static int ip_mc_leave_src(struct sock *sk, struct ip_mc_socklist *iml, |
| 2095 | struct in_device *in_dev) |
| 2096 | { |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2097 | struct ip_sf_socklist *psf = rtnl_dereference(iml->sflist); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2098 | int err; |
| 2099 | |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 2100 | if (!psf) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2101 | /* any-source empty exclude case */ |
| 2102 | return ip_mc_del_src(in_dev, &iml->multi.imr_multiaddr.s_addr, |
| 2103 | iml->sfmode, 0, NULL, 0); |
| 2104 | } |
| 2105 | err = ip_mc_del_src(in_dev, &iml->multi.imr_multiaddr.s_addr, |
Flavio Leitner | c85bb41 | 2010-02-02 07:32:29 -0800 | [diff] [blame] | 2106 | iml->sfmode, psf->sl_count, psf->sl_addr, 0); |
Stephen Hemminger | a9b3cd7 | 2011-08-01 16:19:00 +0000 | [diff] [blame] | 2107 | RCU_INIT_POINTER(iml->sflist, NULL); |
Flavio Leitner | c85bb41 | 2010-02-02 07:32:29 -0800 | [diff] [blame] | 2108 | /* decrease mem now to avoid the memleak warning */ |
| 2109 | atomic_sub(IP_SFLSIZE(psf->sl_max), &sk->sk_omem_alloc); |
Lai Jiangshan | 7519cce | 2011-03-18 11:44:46 +0800 | [diff] [blame] | 2110 | kfree_rcu(psf, rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2111 | return err; |
| 2112 | } |
| 2113 | |
Marcelo Ricardo Leitner | 54ff9ef | 2015-03-18 14:50:43 -0300 | [diff] [blame] | 2114 | int ip_mc_leave_group(struct sock *sk, struct ip_mreqn *imr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2115 | { |
| 2116 | struct inet_sock *inet = inet_sk(sk); |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2117 | struct ip_mc_socklist *iml; |
| 2118 | struct ip_mc_socklist __rcu **imlp; |
David L Stevens | 84b42ba | 2005-07-08 17:48:38 -0700 | [diff] [blame] | 2119 | struct in_device *in_dev; |
Daniel Lezcano | 877aced | 2008-08-13 16:15:57 -0700 | [diff] [blame] | 2120 | struct net *net = sock_net(sk); |
Al Viro | 8f935bb | 2006-09-27 18:30:07 -0700 | [diff] [blame] | 2121 | __be32 group = imr->imr_multiaddr.s_addr; |
David L Stevens | 84b42ba | 2005-07-08 17:48:38 -0700 | [diff] [blame] | 2122 | u32 ifindex; |
David L Stevens | acd6e00 | 2006-08-17 16:27:39 -0700 | [diff] [blame] | 2123 | int ret = -EADDRNOTAVAIL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2124 | |
Eric Dumazet | 959d10f | 2015-02-17 03:19:24 -0800 | [diff] [blame] | 2125 | ASSERT_RTNL(); |
| 2126 | |
Daniel Lezcano | 877aced | 2008-08-13 16:15:57 -0700 | [diff] [blame] | 2127 | in_dev = ip_mc_find_dev(net, imr); |
Andrew Lunn | 4eba7bb | 2015-12-01 16:31:08 +0100 | [diff] [blame] | 2128 | if (!imr->imr_ifindex && !imr->imr_address.s_addr && !in_dev) { |
dingtianhong | 52ad353 | 2014-07-02 13:50:48 +0800 | [diff] [blame] | 2129 | ret = -ENODEV; |
| 2130 | goto out; |
| 2131 | } |
David L Stevens | 84b42ba | 2005-07-08 17:48:38 -0700 | [diff] [blame] | 2132 | ifindex = imr->imr_ifindex; |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2133 | for (imlp = &inet->mc_list; |
| 2134 | (iml = rtnl_dereference(*imlp)) != NULL; |
| 2135 | imlp = &iml->next_rcu) { |
David L Stevens | acd6e00 | 2006-08-17 16:27:39 -0700 | [diff] [blame] | 2136 | if (iml->multi.imr_multiaddr.s_addr != group) |
| 2137 | continue; |
| 2138 | if (ifindex) { |
| 2139 | if (iml->multi.imr_ifindex != ifindex) |
| 2140 | continue; |
| 2141 | } else if (imr->imr_address.s_addr && imr->imr_address.s_addr != |
| 2142 | iml->multi.imr_address.s_addr) |
| 2143 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2144 | |
David L Stevens | acd6e00 | 2006-08-17 16:27:39 -0700 | [diff] [blame] | 2145 | (void) ip_mc_leave_src(sk, iml, in_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2146 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2147 | *imlp = iml->next_rcu; |
David L Stevens | acd6e00 | 2006-08-17 16:27:39 -0700 | [diff] [blame] | 2148 | |
Andrew Lunn | 4eba7bb | 2015-12-01 16:31:08 +0100 | [diff] [blame] | 2149 | if (in_dev) |
| 2150 | ip_mc_dec_group(in_dev, group); |
Eric Dumazet | 959d10f | 2015-02-17 03:19:24 -0800 | [diff] [blame] | 2151 | |
Flavio Leitner | c85bb41 | 2010-02-02 07:32:29 -0800 | [diff] [blame] | 2152 | /* decrease mem now to avoid the memleak warning */ |
| 2153 | atomic_sub(sizeof(*iml), &sk->sk_omem_alloc); |
Lai Jiangshan | 10d50e7 | 2011-03-18 11:45:08 +0800 | [diff] [blame] | 2154 | kfree_rcu(iml, rcu); |
David L Stevens | acd6e00 | 2006-08-17 16:27:39 -0700 | [diff] [blame] | 2155 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2156 | } |
dingtianhong | 52ad353 | 2014-07-02 13:50:48 +0800 | [diff] [blame] | 2157 | out: |
Eric Dumazet | 959d10f | 2015-02-17 03:19:24 -0800 | [diff] [blame] | 2158 | return ret; |
| 2159 | } |
stephen hemminger | 193ba92 | 2012-10-01 12:32:34 +0000 | [diff] [blame] | 2160 | EXPORT_SYMBOL(ip_mc_leave_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2161 | |
| 2162 | int ip_mc_source(int add, int omode, struct sock *sk, struct |
| 2163 | ip_mreq_source *mreqs, int ifindex) |
| 2164 | { |
| 2165 | int err; |
| 2166 | struct ip_mreqn imr; |
Al Viro | 6300772 | 2006-09-27 18:31:32 -0700 | [diff] [blame] | 2167 | __be32 addr = mreqs->imr_multiaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2168 | struct ip_mc_socklist *pmc; |
| 2169 | struct in_device *in_dev = NULL; |
| 2170 | struct inet_sock *inet = inet_sk(sk); |
| 2171 | struct ip_sf_socklist *psl; |
Daniel Lezcano | 877aced | 2008-08-13 16:15:57 -0700 | [diff] [blame] | 2172 | struct net *net = sock_net(sk); |
David L Stevens | 8cdaaa1 | 2005-07-08 17:39:23 -0700 | [diff] [blame] | 2173 | int leavegroup = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2174 | int i, j, rv; |
| 2175 | |
Joe Perches | f97c1e0 | 2007-12-16 13:45:43 -0800 | [diff] [blame] | 2176 | if (!ipv4_is_multicast(addr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | return -EINVAL; |
| 2178 | |
Marcelo Ricardo Leitner | 54ff9ef | 2015-03-18 14:50:43 -0300 | [diff] [blame] | 2179 | ASSERT_RTNL(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2180 | |
| 2181 | imr.imr_multiaddr.s_addr = mreqs->imr_multiaddr; |
| 2182 | imr.imr_address.s_addr = mreqs->imr_interface; |
| 2183 | imr.imr_ifindex = ifindex; |
Daniel Lezcano | 877aced | 2008-08-13 16:15:57 -0700 | [diff] [blame] | 2184 | in_dev = ip_mc_find_dev(net, &imr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2185 | |
| 2186 | if (!in_dev) { |
| 2187 | err = -ENODEV; |
| 2188 | goto done; |
| 2189 | } |
| 2190 | err = -EADDRNOTAVAIL; |
| 2191 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2192 | for_each_pmc_rtnl(inet, pmc) { |
Joe Perches | f64f9e7 | 2009-11-29 16:55:45 -0800 | [diff] [blame] | 2193 | if ((pmc->multi.imr_multiaddr.s_addr == |
| 2194 | imr.imr_multiaddr.s_addr) && |
| 2195 | (pmc->multi.imr_ifindex == imr.imr_ifindex)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2196 | break; |
| 2197 | } |
David L Stevens | 917f2f1 | 2005-07-08 17:45:16 -0700 | [diff] [blame] | 2198 | if (!pmc) { /* must have a prior join */ |
| 2199 | err = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2200 | goto done; |
David L Stevens | 917f2f1 | 2005-07-08 17:45:16 -0700 | [diff] [blame] | 2201 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2202 | /* if a source filter was set, must be the same mode as before */ |
| 2203 | if (pmc->sflist) { |
David L Stevens | 917f2f1 | 2005-07-08 17:45:16 -0700 | [diff] [blame] | 2204 | if (pmc->sfmode != omode) { |
| 2205 | err = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2206 | goto done; |
David L Stevens | 917f2f1 | 2005-07-08 17:45:16 -0700 | [diff] [blame] | 2207 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2208 | } else if (pmc->sfmode != omode) { |
| 2209 | /* allow mode switches for empty-set filters */ |
| 2210 | ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 0, NULL, 0); |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 2211 | ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode, 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2212 | NULL, 0); |
| 2213 | pmc->sfmode = omode; |
| 2214 | } |
| 2215 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2216 | psl = rtnl_dereference(pmc->sflist); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2217 | if (!add) { |
| 2218 | if (!psl) |
David L Stevens | 917f2f1 | 2005-07-08 17:45:16 -0700 | [diff] [blame] | 2219 | goto done; /* err = -EADDRNOTAVAIL */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2220 | rv = !0; |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 2221 | for (i = 0; i < psl->sl_count; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2222 | rv = memcmp(&psl->sl_addr[i], &mreqs->imr_sourceaddr, |
Al Viro | 6300772 | 2006-09-27 18:31:32 -0700 | [diff] [blame] | 2223 | sizeof(__be32)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2224 | if (rv == 0) |
| 2225 | break; |
| 2226 | } |
| 2227 | if (rv) /* source not found */ |
David L Stevens | 917f2f1 | 2005-07-08 17:45:16 -0700 | [diff] [blame] | 2228 | goto done; /* err = -EADDRNOTAVAIL */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2229 | |
David L Stevens | 8cdaaa1 | 2005-07-08 17:39:23 -0700 | [diff] [blame] | 2230 | /* special case - (INCLUDE, empty) == LEAVE_GROUP */ |
| 2231 | if (psl->sl_count == 1 && omode == MCAST_INCLUDE) { |
| 2232 | leavegroup = 1; |
| 2233 | goto done; |
| 2234 | } |
| 2235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2236 | /* update the interface filter */ |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 2237 | ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, omode, 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2238 | &mreqs->imr_sourceaddr, 1); |
| 2239 | |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 2240 | for (j = i+1; j < psl->sl_count; j++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2241 | psl->sl_addr[j-1] = psl->sl_addr[j]; |
| 2242 | psl->sl_count--; |
| 2243 | err = 0; |
| 2244 | goto done; |
| 2245 | } |
| 2246 | /* else, add a new source to the filter */ |
| 2247 | |
Nikolay Borisov | 166b6b2 | 2016-02-08 23:29:22 +0200 | [diff] [blame] | 2248 | if (psl && psl->sl_count >= net->ipv4.sysctl_igmp_max_msf) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2249 | err = -ENOBUFS; |
| 2250 | goto done; |
| 2251 | } |
| 2252 | if (!psl || psl->sl_count == psl->sl_max) { |
| 2253 | struct ip_sf_socklist *newpsl; |
| 2254 | int count = IP_SFBLOCK; |
| 2255 | |
| 2256 | if (psl) |
| 2257 | count += psl->sl_max; |
Kris Katterjohn | 8b3a700 | 2006-01-11 15:56:43 -0800 | [diff] [blame] | 2258 | newpsl = sock_kmalloc(sk, IP_SFLSIZE(count), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2259 | if (!newpsl) { |
| 2260 | err = -ENOBUFS; |
| 2261 | goto done; |
| 2262 | } |
| 2263 | newpsl->sl_max = count; |
| 2264 | newpsl->sl_count = count - IP_SFBLOCK; |
| 2265 | if (psl) { |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 2266 | for (i = 0; i < psl->sl_count; i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2267 | newpsl->sl_addr[i] = psl->sl_addr[i]; |
Flavio Leitner | c85bb41 | 2010-02-02 07:32:29 -0800 | [diff] [blame] | 2268 | /* decrease mem now to avoid the memleak warning */ |
| 2269 | atomic_sub(IP_SFLSIZE(psl->sl_max), &sk->sk_omem_alloc); |
Lai Jiangshan | 7519cce | 2011-03-18 11:44:46 +0800 | [diff] [blame] | 2270 | kfree_rcu(psl, rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2271 | } |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 2272 | rcu_assign_pointer(pmc->sflist, newpsl); |
Flavio Leitner | c85bb41 | 2010-02-02 07:32:29 -0800 | [diff] [blame] | 2273 | psl = newpsl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2274 | } |
| 2275 | rv = 1; /* > 0 for insert logic below if sl_count is 0 */ |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 2276 | for (i = 0; i < psl->sl_count; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2277 | rv = memcmp(&psl->sl_addr[i], &mreqs->imr_sourceaddr, |
Al Viro | 6300772 | 2006-09-27 18:31:32 -0700 | [diff] [blame] | 2278 | sizeof(__be32)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2279 | if (rv == 0) |
| 2280 | break; |
| 2281 | } |
| 2282 | if (rv == 0) /* address already there is an error */ |
| 2283 | goto done; |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 2284 | for (j = psl->sl_count-1; j >= i; j--) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2285 | psl->sl_addr[j+1] = psl->sl_addr[j]; |
| 2286 | psl->sl_addr[i] = mreqs->imr_sourceaddr; |
| 2287 | psl->sl_count++; |
| 2288 | err = 0; |
| 2289 | /* update the interface list */ |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 2290 | ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2291 | &mreqs->imr_sourceaddr, 1); |
| 2292 | done: |
David L Stevens | 8cdaaa1 | 2005-07-08 17:39:23 -0700 | [diff] [blame] | 2293 | if (leavegroup) |
Marcelo Ricardo Leitner | 54ff9ef | 2015-03-18 14:50:43 -0300 | [diff] [blame] | 2294 | err = ip_mc_leave_group(sk, &imr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2295 | return err; |
| 2296 | } |
| 2297 | |
| 2298 | int ip_mc_msfilter(struct sock *sk, struct ip_msfilter *msf, int ifindex) |
| 2299 | { |
David L Stevens | 9951f03 | 2005-07-08 17:47:28 -0700 | [diff] [blame] | 2300 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2301 | struct ip_mreqn imr; |
Al Viro | 6300772 | 2006-09-27 18:31:32 -0700 | [diff] [blame] | 2302 | __be32 addr = msf->imsf_multiaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2303 | struct ip_mc_socklist *pmc; |
| 2304 | struct in_device *in_dev; |
| 2305 | struct inet_sock *inet = inet_sk(sk); |
| 2306 | struct ip_sf_socklist *newpsl, *psl; |
Daniel Lezcano | 877aced | 2008-08-13 16:15:57 -0700 | [diff] [blame] | 2307 | struct net *net = sock_net(sk); |
David L Stevens | 9951f03 | 2005-07-08 17:47:28 -0700 | [diff] [blame] | 2308 | int leavegroup = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2309 | |
Joe Perches | f97c1e0 | 2007-12-16 13:45:43 -0800 | [diff] [blame] | 2310 | if (!ipv4_is_multicast(addr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2311 | return -EINVAL; |
| 2312 | if (msf->imsf_fmode != MCAST_INCLUDE && |
| 2313 | msf->imsf_fmode != MCAST_EXCLUDE) |
| 2314 | return -EINVAL; |
| 2315 | |
Marcelo Ricardo Leitner | 54ff9ef | 2015-03-18 14:50:43 -0300 | [diff] [blame] | 2316 | ASSERT_RTNL(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2317 | |
| 2318 | imr.imr_multiaddr.s_addr = msf->imsf_multiaddr; |
| 2319 | imr.imr_address.s_addr = msf->imsf_interface; |
| 2320 | imr.imr_ifindex = ifindex; |
Daniel Lezcano | 877aced | 2008-08-13 16:15:57 -0700 | [diff] [blame] | 2321 | in_dev = ip_mc_find_dev(net, &imr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2322 | |
| 2323 | if (!in_dev) { |
| 2324 | err = -ENODEV; |
| 2325 | goto done; |
| 2326 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2327 | |
David L Stevens | 9951f03 | 2005-07-08 17:47:28 -0700 | [diff] [blame] | 2328 | /* special case - (INCLUDE, empty) == LEAVE_GROUP */ |
| 2329 | if (msf->imsf_fmode == MCAST_INCLUDE && msf->imsf_numsrc == 0) { |
| 2330 | leavegroup = 1; |
| 2331 | goto done; |
| 2332 | } |
| 2333 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2334 | for_each_pmc_rtnl(inet, pmc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2335 | if (pmc->multi.imr_multiaddr.s_addr == msf->imsf_multiaddr && |
| 2336 | pmc->multi.imr_ifindex == imr.imr_ifindex) |
| 2337 | break; |
| 2338 | } |
David L Stevens | 917f2f1 | 2005-07-08 17:45:16 -0700 | [diff] [blame] | 2339 | if (!pmc) { /* must have a prior join */ |
| 2340 | err = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2341 | goto done; |
David L Stevens | 917f2f1 | 2005-07-08 17:45:16 -0700 | [diff] [blame] | 2342 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2343 | if (msf->imsf_numsrc) { |
Kris Katterjohn | 8b3a700 | 2006-01-11 15:56:43 -0800 | [diff] [blame] | 2344 | newpsl = sock_kmalloc(sk, IP_SFLSIZE(msf->imsf_numsrc), |
| 2345 | GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2346 | if (!newpsl) { |
| 2347 | err = -ENOBUFS; |
| 2348 | goto done; |
| 2349 | } |
| 2350 | newpsl->sl_max = newpsl->sl_count = msf->imsf_numsrc; |
| 2351 | memcpy(newpsl->sl_addr, msf->imsf_slist, |
| 2352 | msf->imsf_numsrc * sizeof(msf->imsf_slist[0])); |
| 2353 | err = ip_mc_add_src(in_dev, &msf->imsf_multiaddr, |
| 2354 | msf->imsf_fmode, newpsl->sl_count, newpsl->sl_addr, 0); |
| 2355 | if (err) { |
| 2356 | sock_kfree_s(sk, newpsl, IP_SFLSIZE(newpsl->sl_max)); |
| 2357 | goto done; |
| 2358 | } |
Yan Zheng | 8713dbf | 2005-10-28 08:02:08 +0800 | [diff] [blame] | 2359 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2360 | newpsl = NULL; |
Yan Zheng | 8713dbf | 2005-10-28 08:02:08 +0800 | [diff] [blame] | 2361 | (void) ip_mc_add_src(in_dev, &msf->imsf_multiaddr, |
| 2362 | msf->imsf_fmode, 0, NULL, 0); |
| 2363 | } |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2364 | psl = rtnl_dereference(pmc->sflist); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2365 | if (psl) { |
| 2366 | (void) ip_mc_del_src(in_dev, &msf->imsf_multiaddr, pmc->sfmode, |
| 2367 | psl->sl_count, psl->sl_addr, 0); |
Flavio Leitner | c85bb41 | 2010-02-02 07:32:29 -0800 | [diff] [blame] | 2368 | /* decrease mem now to avoid the memleak warning */ |
| 2369 | atomic_sub(IP_SFLSIZE(psl->sl_max), &sk->sk_omem_alloc); |
Lai Jiangshan | 7519cce | 2011-03-18 11:44:46 +0800 | [diff] [blame] | 2370 | kfree_rcu(psl, rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2371 | } else |
| 2372 | (void) ip_mc_del_src(in_dev, &msf->imsf_multiaddr, pmc->sfmode, |
| 2373 | 0, NULL, 0); |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 2374 | rcu_assign_pointer(pmc->sflist, newpsl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2375 | pmc->sfmode = msf->imsf_fmode; |
David L Stevens | 917f2f1 | 2005-07-08 17:45:16 -0700 | [diff] [blame] | 2376 | err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2377 | done: |
David L Stevens | 9951f03 | 2005-07-08 17:47:28 -0700 | [diff] [blame] | 2378 | if (leavegroup) |
| 2379 | err = ip_mc_leave_group(sk, &imr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2380 | return err; |
| 2381 | } |
| 2382 | |
| 2383 | int ip_mc_msfget(struct sock *sk, struct ip_msfilter *msf, |
| 2384 | struct ip_msfilter __user *optval, int __user *optlen) |
| 2385 | { |
| 2386 | int err, len, count, copycount; |
| 2387 | struct ip_mreqn imr; |
Al Viro | 6300772 | 2006-09-27 18:31:32 -0700 | [diff] [blame] | 2388 | __be32 addr = msf->imsf_multiaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2389 | struct ip_mc_socklist *pmc; |
| 2390 | struct in_device *in_dev; |
| 2391 | struct inet_sock *inet = inet_sk(sk); |
| 2392 | struct ip_sf_socklist *psl; |
Daniel Lezcano | 877aced | 2008-08-13 16:15:57 -0700 | [diff] [blame] | 2393 | struct net *net = sock_net(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2394 | |
WANG Cong | 87e9f03 | 2015-11-03 15:41:16 -0800 | [diff] [blame] | 2395 | ASSERT_RTNL(); |
| 2396 | |
Joe Perches | f97c1e0 | 2007-12-16 13:45:43 -0800 | [diff] [blame] | 2397 | if (!ipv4_is_multicast(addr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2398 | return -EINVAL; |
| 2399 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2400 | imr.imr_multiaddr.s_addr = msf->imsf_multiaddr; |
| 2401 | imr.imr_address.s_addr = msf->imsf_interface; |
| 2402 | imr.imr_ifindex = 0; |
Daniel Lezcano | 877aced | 2008-08-13 16:15:57 -0700 | [diff] [blame] | 2403 | in_dev = ip_mc_find_dev(net, &imr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2404 | |
| 2405 | if (!in_dev) { |
| 2406 | err = -ENODEV; |
| 2407 | goto done; |
| 2408 | } |
| 2409 | err = -EADDRNOTAVAIL; |
| 2410 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2411 | for_each_pmc_rtnl(inet, pmc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2412 | if (pmc->multi.imr_multiaddr.s_addr == msf->imsf_multiaddr && |
| 2413 | pmc->multi.imr_ifindex == imr.imr_ifindex) |
| 2414 | break; |
| 2415 | } |
| 2416 | if (!pmc) /* must have a prior join */ |
| 2417 | goto done; |
| 2418 | msf->imsf_fmode = pmc->sfmode; |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2419 | psl = rtnl_dereference(pmc->sflist); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2420 | if (!psl) { |
| 2421 | len = 0; |
| 2422 | count = 0; |
| 2423 | } else { |
| 2424 | count = psl->sl_count; |
| 2425 | } |
| 2426 | copycount = count < msf->imsf_numsrc ? count : msf->imsf_numsrc; |
| 2427 | len = copycount * sizeof(psl->sl_addr[0]); |
| 2428 | msf->imsf_numsrc = count; |
| 2429 | if (put_user(IP_MSFILTER_SIZE(copycount), optlen) || |
| 2430 | copy_to_user(optval, msf, IP_MSFILTER_SIZE(0))) { |
| 2431 | return -EFAULT; |
| 2432 | } |
| 2433 | if (len && |
| 2434 | copy_to_user(&optval->imsf_slist[0], psl->sl_addr, len)) |
| 2435 | return -EFAULT; |
| 2436 | return 0; |
| 2437 | done: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2438 | return err; |
| 2439 | } |
| 2440 | |
| 2441 | int ip_mc_gsfget(struct sock *sk, struct group_filter *gsf, |
| 2442 | struct group_filter __user *optval, int __user *optlen) |
| 2443 | { |
| 2444 | int err, i, count, copycount; |
| 2445 | struct sockaddr_in *psin; |
Al Viro | 6300772 | 2006-09-27 18:31:32 -0700 | [diff] [blame] | 2446 | __be32 addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2447 | struct ip_mc_socklist *pmc; |
| 2448 | struct inet_sock *inet = inet_sk(sk); |
| 2449 | struct ip_sf_socklist *psl; |
| 2450 | |
WANG Cong | 87e9f03 | 2015-11-03 15:41:16 -0800 | [diff] [blame] | 2451 | ASSERT_RTNL(); |
| 2452 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2453 | psin = (struct sockaddr_in *)&gsf->gf_group; |
| 2454 | if (psin->sin_family != AF_INET) |
| 2455 | return -EINVAL; |
| 2456 | addr = psin->sin_addr.s_addr; |
Joe Perches | f97c1e0 | 2007-12-16 13:45:43 -0800 | [diff] [blame] | 2457 | if (!ipv4_is_multicast(addr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2458 | return -EINVAL; |
| 2459 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2460 | err = -EADDRNOTAVAIL; |
| 2461 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2462 | for_each_pmc_rtnl(inet, pmc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2463 | if (pmc->multi.imr_multiaddr.s_addr == addr && |
| 2464 | pmc->multi.imr_ifindex == gsf->gf_interface) |
| 2465 | break; |
| 2466 | } |
| 2467 | if (!pmc) /* must have a prior join */ |
| 2468 | goto done; |
| 2469 | gsf->gf_fmode = pmc->sfmode; |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2470 | psl = rtnl_dereference(pmc->sflist); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2471 | count = psl ? psl->sl_count : 0; |
| 2472 | copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc; |
| 2473 | gsf->gf_numsrc = count; |
| 2474 | if (put_user(GROUP_FILTER_SIZE(copycount), optlen) || |
| 2475 | copy_to_user(optval, gsf, GROUP_FILTER_SIZE(0))) { |
| 2476 | return -EFAULT; |
| 2477 | } |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 2478 | for (i = 0; i < copycount; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2479 | struct sockaddr_storage ss; |
| 2480 | |
| 2481 | psin = (struct sockaddr_in *)&ss; |
| 2482 | memset(&ss, 0, sizeof(ss)); |
| 2483 | psin->sin_family = AF_INET; |
| 2484 | psin->sin_addr.s_addr = psl->sl_addr[i]; |
| 2485 | if (copy_to_user(&optval->gf_slist[i], &ss, sizeof(ss))) |
| 2486 | return -EFAULT; |
| 2487 | } |
| 2488 | return 0; |
| 2489 | done: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2490 | return err; |
| 2491 | } |
| 2492 | |
| 2493 | /* |
| 2494 | * check if a multicast source filter allows delivery for a given <src,dst,intf> |
| 2495 | */ |
Al Viro | c0cda06 | 2006-09-27 18:31:10 -0700 | [diff] [blame] | 2496 | int ip_mc_sf_allow(struct sock *sk, __be32 loc_addr, __be32 rmt_addr, int dif) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2497 | { |
| 2498 | struct inet_sock *inet = inet_sk(sk); |
| 2499 | struct ip_mc_socklist *pmc; |
| 2500 | struct ip_sf_socklist *psl; |
| 2501 | int i; |
Flavio Leitner | c85bb41 | 2010-02-02 07:32:29 -0800 | [diff] [blame] | 2502 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2503 | |
Flavio Leitner | c85bb41 | 2010-02-02 07:32:29 -0800 | [diff] [blame] | 2504 | ret = 1; |
Joe Perches | f97c1e0 | 2007-12-16 13:45:43 -0800 | [diff] [blame] | 2505 | if (!ipv4_is_multicast(loc_addr)) |
Flavio Leitner | c85bb41 | 2010-02-02 07:32:29 -0800 | [diff] [blame] | 2506 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2507 | |
Flavio Leitner | c85bb41 | 2010-02-02 07:32:29 -0800 | [diff] [blame] | 2508 | rcu_read_lock(); |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2509 | for_each_pmc_rcu(inet, pmc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2510 | if (pmc->multi.imr_multiaddr.s_addr == loc_addr && |
| 2511 | pmc->multi.imr_ifindex == dif) |
| 2512 | break; |
| 2513 | } |
Flavio Leitner | c85bb41 | 2010-02-02 07:32:29 -0800 | [diff] [blame] | 2514 | ret = inet->mc_all; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2515 | if (!pmc) |
Flavio Leitner | c85bb41 | 2010-02-02 07:32:29 -0800 | [diff] [blame] | 2516 | goto unlock; |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2517 | psl = rcu_dereference(pmc->sflist); |
Flavio Leitner | c85bb41 | 2010-02-02 07:32:29 -0800 | [diff] [blame] | 2518 | ret = (pmc->sfmode == MCAST_EXCLUDE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2519 | if (!psl) |
Flavio Leitner | c85bb41 | 2010-02-02 07:32:29 -0800 | [diff] [blame] | 2520 | goto unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2521 | |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 2522 | for (i = 0; i < psl->sl_count; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2523 | if (psl->sl_addr[i] == rmt_addr) |
| 2524 | break; |
| 2525 | } |
Flavio Leitner | c85bb41 | 2010-02-02 07:32:29 -0800 | [diff] [blame] | 2526 | ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2527 | if (pmc->sfmode == MCAST_INCLUDE && i >= psl->sl_count) |
Flavio Leitner | c85bb41 | 2010-02-02 07:32:29 -0800 | [diff] [blame] | 2528 | goto unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2529 | if (pmc->sfmode == MCAST_EXCLUDE && i < psl->sl_count) |
Flavio Leitner | c85bb41 | 2010-02-02 07:32:29 -0800 | [diff] [blame] | 2530 | goto unlock; |
| 2531 | ret = 1; |
| 2532 | unlock: |
| 2533 | rcu_read_unlock(); |
| 2534 | out: |
| 2535 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2536 | } |
| 2537 | |
| 2538 | /* |
| 2539 | * A socket is closing. |
| 2540 | */ |
| 2541 | |
| 2542 | void ip_mc_drop_socket(struct sock *sk) |
| 2543 | { |
| 2544 | struct inet_sock *inet = inet_sk(sk); |
| 2545 | struct ip_mc_socklist *iml; |
Daniel Lezcano | 877aced | 2008-08-13 16:15:57 -0700 | [diff] [blame] | 2546 | struct net *net = sock_net(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2547 | |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 2548 | if (!inet->mc_list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2549 | return; |
| 2550 | |
| 2551 | rtnl_lock(); |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2552 | while ((iml = rtnl_dereference(inet->mc_list)) != NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2553 | struct in_device *in_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2554 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2555 | inet->mc_list = iml->next_rcu; |
Daniel Lezcano | 877aced | 2008-08-13 16:15:57 -0700 | [diff] [blame] | 2556 | in_dev = inetdev_by_index(net, iml->multi.imr_ifindex); |
Michal Ruzicka | bb699cbc | 2006-08-15 00:20:17 -0700 | [diff] [blame] | 2557 | (void) ip_mc_leave_src(sk, iml, in_dev); |
Ian Morris | 00db412 | 2015-04-03 09:17:27 +0100 | [diff] [blame] | 2558 | if (in_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2559 | ip_mc_dec_group(in_dev, iml->multi.imr_multiaddr.s_addr); |
Flavio Leitner | c85bb41 | 2010-02-02 07:32:29 -0800 | [diff] [blame] | 2560 | /* decrease mem now to avoid the memleak warning */ |
| 2561 | atomic_sub(sizeof(*iml), &sk->sk_omem_alloc); |
Lai Jiangshan | 10d50e7 | 2011-03-18 11:45:08 +0800 | [diff] [blame] | 2562 | kfree_rcu(iml, rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2563 | } |
| 2564 | rtnl_unlock(); |
| 2565 | } |
| 2566 | |
David S. Miller | dbdd9a5 | 2011-03-10 16:34:38 -0800 | [diff] [blame] | 2567 | /* called with rcu_read_lock() */ |
Alexander Duyck | 2094acb | 2015-09-28 11:10:31 -0700 | [diff] [blame] | 2568 | int ip_check_mc_rcu(struct in_device *in_dev, __be32 mc_addr, __be32 src_addr, u8 proto) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2569 | { |
| 2570 | struct ip_mc_list *im; |
Eric Dumazet | e989707 | 2013-06-07 08:48:57 -0700 | [diff] [blame] | 2571 | struct ip_mc_list __rcu **mc_hash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2572 | struct ip_sf_list *psf; |
| 2573 | int rv = 0; |
| 2574 | |
Eric Dumazet | e989707 | 2013-06-07 08:48:57 -0700 | [diff] [blame] | 2575 | mc_hash = rcu_dereference(in_dev->mc_hash); |
| 2576 | if (mc_hash) { |
Eric Dumazet | c70eba7 | 2013-06-12 14:11:16 -0700 | [diff] [blame] | 2577 | u32 hash = hash_32((__force u32)mc_addr, MC_HASH_SZ_LOG); |
Eric Dumazet | e989707 | 2013-06-07 08:48:57 -0700 | [diff] [blame] | 2578 | |
| 2579 | for (im = rcu_dereference(mc_hash[hash]); |
| 2580 | im != NULL; |
| 2581 | im = rcu_dereference(im->next_hash)) { |
| 2582 | if (im->multiaddr == mc_addr) |
| 2583 | break; |
| 2584 | } |
| 2585 | } else { |
| 2586 | for_each_pmc_rcu(in_dev, im) { |
| 2587 | if (im->multiaddr == mc_addr) |
| 2588 | break; |
| 2589 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2590 | } |
| 2591 | if (im && proto == IPPROTO_IGMP) { |
| 2592 | rv = 1; |
| 2593 | } else if (im) { |
| 2594 | if (src_addr) { |
Weilong Chen | c71151f | 2013-12-23 14:37:29 +0800 | [diff] [blame] | 2595 | for (psf = im->sources; psf; psf = psf->sf_next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2596 | if (psf->sf_inaddr == src_addr) |
| 2597 | break; |
| 2598 | } |
| 2599 | if (psf) |
| 2600 | rv = psf->sf_count[MCAST_INCLUDE] || |
| 2601 | psf->sf_count[MCAST_EXCLUDE] != |
| 2602 | im->sfcount[MCAST_EXCLUDE]; |
| 2603 | else |
| 2604 | rv = im->sfcount[MCAST_EXCLUDE] != 0; |
| 2605 | } else |
| 2606 | rv = 1; /* unspecified source; tentatively allow */ |
| 2607 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2608 | return rv; |
| 2609 | } |
| 2610 | |
| 2611 | #if defined(CONFIG_PROC_FS) |
| 2612 | struct igmp_mc_iter_state { |
Alexey Dobriyan | 7091e72 | 2008-12-25 16:42:51 -0800 | [diff] [blame] | 2613 | struct seq_net_private p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2614 | struct net_device *dev; |
| 2615 | struct in_device *in_dev; |
| 2616 | }; |
| 2617 | |
| 2618 | #define igmp_mc_seq_private(seq) ((struct igmp_mc_iter_state *)(seq)->private) |
| 2619 | |
| 2620 | static inline struct ip_mc_list *igmp_mc_get_first(struct seq_file *seq) |
| 2621 | { |
Alexey Dobriyan | 7091e72 | 2008-12-25 16:42:51 -0800 | [diff] [blame] | 2622 | struct net *net = seq_file_net(seq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2623 | struct ip_mc_list *im = NULL; |
| 2624 | struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq); |
| 2625 | |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 2626 | state->in_dev = NULL; |
stephen hemminger | 61fbab7 | 2009-11-10 07:54:55 +0000 | [diff] [blame] | 2627 | for_each_netdev_rcu(net, state->dev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2628 | struct in_device *in_dev; |
Eric Dumazet | 6baff15 | 2009-11-11 17:48:52 +0000 | [diff] [blame] | 2629 | |
| 2630 | in_dev = __in_dev_get_rcu(state->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2631 | if (!in_dev) |
| 2632 | continue; |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2633 | im = rcu_dereference(in_dev->mc_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2634 | if (im) { |
| 2635 | state->in_dev = in_dev; |
| 2636 | break; |
| 2637 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2638 | } |
| 2639 | return im; |
| 2640 | } |
| 2641 | |
| 2642 | static struct ip_mc_list *igmp_mc_get_next(struct seq_file *seq, struct ip_mc_list *im) |
| 2643 | { |
| 2644 | struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq); |
Eric Dumazet | 6baff15 | 2009-11-11 17:48:52 +0000 | [diff] [blame] | 2645 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2646 | im = rcu_dereference(im->next_rcu); |
| 2647 | while (!im) { |
Eric Dumazet | 6baff15 | 2009-11-11 17:48:52 +0000 | [diff] [blame] | 2648 | state->dev = next_net_device_rcu(state->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2649 | if (!state->dev) { |
| 2650 | state->in_dev = NULL; |
| 2651 | break; |
| 2652 | } |
Eric Dumazet | 6baff15 | 2009-11-11 17:48:52 +0000 | [diff] [blame] | 2653 | state->in_dev = __in_dev_get_rcu(state->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2654 | if (!state->in_dev) |
| 2655 | continue; |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2656 | im = rcu_dereference(state->in_dev->mc_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2657 | } |
| 2658 | return im; |
| 2659 | } |
| 2660 | |
| 2661 | static struct ip_mc_list *igmp_mc_get_idx(struct seq_file *seq, loff_t pos) |
| 2662 | { |
| 2663 | struct ip_mc_list *im = igmp_mc_get_first(seq); |
| 2664 | if (im) |
| 2665 | while (pos && (im = igmp_mc_get_next(seq, im)) != NULL) |
| 2666 | --pos; |
| 2667 | return pos ? NULL : im; |
| 2668 | } |
| 2669 | |
| 2670 | static void *igmp_mc_seq_start(struct seq_file *seq, loff_t *pos) |
stephen hemminger | 61fbab7 | 2009-11-10 07:54:55 +0000 | [diff] [blame] | 2671 | __acquires(rcu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2672 | { |
stephen hemminger | 61fbab7 | 2009-11-10 07:54:55 +0000 | [diff] [blame] | 2673 | rcu_read_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2674 | return *pos ? igmp_mc_get_idx(seq, *pos - 1) : SEQ_START_TOKEN; |
| 2675 | } |
| 2676 | |
| 2677 | static void *igmp_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
| 2678 | { |
| 2679 | struct ip_mc_list *im; |
| 2680 | if (v == SEQ_START_TOKEN) |
| 2681 | im = igmp_mc_get_first(seq); |
| 2682 | else |
| 2683 | im = igmp_mc_get_next(seq, v); |
| 2684 | ++*pos; |
| 2685 | return im; |
| 2686 | } |
| 2687 | |
| 2688 | static void igmp_mc_seq_stop(struct seq_file *seq, void *v) |
stephen hemminger | 61fbab7 | 2009-11-10 07:54:55 +0000 | [diff] [blame] | 2689 | __releases(rcu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2690 | { |
| 2691 | struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq); |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2692 | |
| 2693 | state->in_dev = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2694 | state->dev = NULL; |
stephen hemminger | 61fbab7 | 2009-11-10 07:54:55 +0000 | [diff] [blame] | 2695 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2696 | } |
| 2697 | |
| 2698 | static int igmp_mc_seq_show(struct seq_file *seq, void *v) |
| 2699 | { |
| 2700 | if (v == SEQ_START_TOKEN) |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 2701 | seq_puts(seq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2702 | "Idx\tDevice : Count Querier\tGroup Users Timer\tReporter\n"); |
| 2703 | else { |
| 2704 | struct ip_mc_list *im = (struct ip_mc_list *)v; |
| 2705 | struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq); |
| 2706 | char *querier; |
Eric Dumazet | a399a80 | 2012-08-08 21:13:53 +0000 | [diff] [blame] | 2707 | long delta; |
| 2708 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2709 | #ifdef CONFIG_IP_MULTICAST |
| 2710 | querier = IGMP_V1_SEEN(state->in_dev) ? "V1" : |
| 2711 | IGMP_V2_SEEN(state->in_dev) ? "V2" : |
| 2712 | "V3"; |
| 2713 | #else |
| 2714 | querier = "NONE"; |
| 2715 | #endif |
| 2716 | |
Andreea-Cristina Bernat | e6b6888 | 2014-08-17 15:49:41 +0300 | [diff] [blame] | 2717 | if (rcu_access_pointer(state->in_dev->mc_list) == im) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2718 | seq_printf(seq, "%d\t%-10s: %5d %7s\n", |
Rami Rosen | b8bae41 | 2008-10-07 15:34:37 -0700 | [diff] [blame] | 2719 | state->dev->ifindex, state->dev->name, state->in_dev->mc_count, querier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2720 | } |
| 2721 | |
Eric Dumazet | a399a80 | 2012-08-08 21:13:53 +0000 | [diff] [blame] | 2722 | delta = im->timer.expires - jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2723 | seq_printf(seq, |
Alexey Dobriyan | 338fcf9 | 2006-06-05 21:04:39 -0700 | [diff] [blame] | 2724 | "\t\t\t\t%08X %5d %d:%08lX\t\t%d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2725 | im->multiaddr, im->users, |
Eric Dumazet | a399a80 | 2012-08-08 21:13:53 +0000 | [diff] [blame] | 2726 | im->tm_running, |
| 2727 | im->tm_running ? jiffies_delta_to_clock_t(delta) : 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2728 | im->reporter); |
| 2729 | } |
| 2730 | return 0; |
| 2731 | } |
| 2732 | |
Stephen Hemminger | f690808 | 2007-03-12 14:34:29 -0700 | [diff] [blame] | 2733 | static const struct seq_operations igmp_mc_seq_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2734 | .start = igmp_mc_seq_start, |
| 2735 | .next = igmp_mc_seq_next, |
| 2736 | .stop = igmp_mc_seq_stop, |
| 2737 | .show = igmp_mc_seq_show, |
| 2738 | }; |
| 2739 | |
| 2740 | static int igmp_mc_seq_open(struct inode *inode, struct file *file) |
| 2741 | { |
Alexey Dobriyan | 7091e72 | 2008-12-25 16:42:51 -0800 | [diff] [blame] | 2742 | return seq_open_net(inode, file, &igmp_mc_seq_ops, |
Pavel Emelyanov | cf7732e | 2007-10-10 02:29:29 -0700 | [diff] [blame] | 2743 | sizeof(struct igmp_mc_iter_state)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2744 | } |
| 2745 | |
Arjan van de Ven | 9a32144 | 2007-02-12 00:55:35 -0800 | [diff] [blame] | 2746 | static const struct file_operations igmp_mc_seq_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2747 | .owner = THIS_MODULE, |
| 2748 | .open = igmp_mc_seq_open, |
| 2749 | .read = seq_read, |
| 2750 | .llseek = seq_lseek, |
Alexey Dobriyan | 7091e72 | 2008-12-25 16:42:51 -0800 | [diff] [blame] | 2751 | .release = seq_release_net, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2752 | }; |
| 2753 | |
| 2754 | struct igmp_mcf_iter_state { |
Alexey Dobriyan | 7091e72 | 2008-12-25 16:42:51 -0800 | [diff] [blame] | 2755 | struct seq_net_private p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2756 | struct net_device *dev; |
| 2757 | struct in_device *idev; |
| 2758 | struct ip_mc_list *im; |
| 2759 | }; |
| 2760 | |
| 2761 | #define igmp_mcf_seq_private(seq) ((struct igmp_mcf_iter_state *)(seq)->private) |
| 2762 | |
| 2763 | static inline struct ip_sf_list *igmp_mcf_get_first(struct seq_file *seq) |
| 2764 | { |
Alexey Dobriyan | 7091e72 | 2008-12-25 16:42:51 -0800 | [diff] [blame] | 2765 | struct net *net = seq_file_net(seq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2766 | struct ip_sf_list *psf = NULL; |
| 2767 | struct ip_mc_list *im = NULL; |
| 2768 | struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq); |
| 2769 | |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 2770 | state->idev = NULL; |
| 2771 | state->im = NULL; |
stephen hemminger | 61fbab7 | 2009-11-10 07:54:55 +0000 | [diff] [blame] | 2772 | for_each_netdev_rcu(net, state->dev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2773 | struct in_device *idev; |
Eric Dumazet | 6baff15 | 2009-11-11 17:48:52 +0000 | [diff] [blame] | 2774 | idev = __in_dev_get_rcu(state->dev); |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 2775 | if (unlikely(!idev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2776 | continue; |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2777 | im = rcu_dereference(idev->mc_list); |
Ian Morris | 00db412 | 2015-04-03 09:17:27 +0100 | [diff] [blame] | 2778 | if (likely(im)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2779 | spin_lock_bh(&im->lock); |
| 2780 | psf = im->sources; |
Ian Morris | 00db412 | 2015-04-03 09:17:27 +0100 | [diff] [blame] | 2781 | if (likely(psf)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2782 | state->im = im; |
| 2783 | state->idev = idev; |
| 2784 | break; |
| 2785 | } |
| 2786 | spin_unlock_bh(&im->lock); |
| 2787 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2788 | } |
| 2789 | return psf; |
| 2790 | } |
| 2791 | |
| 2792 | static struct ip_sf_list *igmp_mcf_get_next(struct seq_file *seq, struct ip_sf_list *psf) |
| 2793 | { |
| 2794 | struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq); |
| 2795 | |
| 2796 | psf = psf->sf_next; |
| 2797 | while (!psf) { |
| 2798 | spin_unlock_bh(&state->im->lock); |
| 2799 | state->im = state->im->next; |
| 2800 | while (!state->im) { |
Eric Dumazet | 6baff15 | 2009-11-11 17:48:52 +0000 | [diff] [blame] | 2801 | state->dev = next_net_device_rcu(state->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2802 | if (!state->dev) { |
| 2803 | state->idev = NULL; |
| 2804 | goto out; |
| 2805 | } |
Eric Dumazet | 6baff15 | 2009-11-11 17:48:52 +0000 | [diff] [blame] | 2806 | state->idev = __in_dev_get_rcu(state->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2807 | if (!state->idev) |
| 2808 | continue; |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2809 | state->im = rcu_dereference(state->idev->mc_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2810 | } |
| 2811 | if (!state->im) |
| 2812 | break; |
| 2813 | spin_lock_bh(&state->im->lock); |
| 2814 | psf = state->im->sources; |
| 2815 | } |
| 2816 | out: |
| 2817 | return psf; |
| 2818 | } |
| 2819 | |
| 2820 | static struct ip_sf_list *igmp_mcf_get_idx(struct seq_file *seq, loff_t pos) |
| 2821 | { |
| 2822 | struct ip_sf_list *psf = igmp_mcf_get_first(seq); |
| 2823 | if (psf) |
| 2824 | while (pos && (psf = igmp_mcf_get_next(seq, psf)) != NULL) |
| 2825 | --pos; |
| 2826 | return pos ? NULL : psf; |
| 2827 | } |
| 2828 | |
| 2829 | static void *igmp_mcf_seq_start(struct seq_file *seq, loff_t *pos) |
stephen hemminger | 61fbab7 | 2009-11-10 07:54:55 +0000 | [diff] [blame] | 2830 | __acquires(rcu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2831 | { |
stephen hemminger | 61fbab7 | 2009-11-10 07:54:55 +0000 | [diff] [blame] | 2832 | rcu_read_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2833 | return *pos ? igmp_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN; |
| 2834 | } |
| 2835 | |
| 2836 | static void *igmp_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
| 2837 | { |
| 2838 | struct ip_sf_list *psf; |
| 2839 | if (v == SEQ_START_TOKEN) |
| 2840 | psf = igmp_mcf_get_first(seq); |
| 2841 | else |
| 2842 | psf = igmp_mcf_get_next(seq, v); |
| 2843 | ++*pos; |
| 2844 | return psf; |
| 2845 | } |
| 2846 | |
| 2847 | static void igmp_mcf_seq_stop(struct seq_file *seq, void *v) |
stephen hemminger | 61fbab7 | 2009-11-10 07:54:55 +0000 | [diff] [blame] | 2848 | __releases(rcu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2849 | { |
| 2850 | struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq); |
Ian Morris | 00db412 | 2015-04-03 09:17:27 +0100 | [diff] [blame] | 2851 | if (likely(state->im)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2852 | spin_unlock_bh(&state->im->lock); |
| 2853 | state->im = NULL; |
| 2854 | } |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 2855 | state->idev = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2856 | state->dev = NULL; |
stephen hemminger | 61fbab7 | 2009-11-10 07:54:55 +0000 | [diff] [blame] | 2857 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2858 | } |
| 2859 | |
| 2860 | static int igmp_mcf_seq_show(struct seq_file *seq, void *v) |
| 2861 | { |
| 2862 | struct ip_sf_list *psf = (struct ip_sf_list *)v; |
| 2863 | struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq); |
| 2864 | |
| 2865 | if (v == SEQ_START_TOKEN) { |
Joe Perches | 1744bea | 2014-11-04 15:37:03 -0800 | [diff] [blame] | 2866 | seq_puts(seq, "Idx Device MCA SRC INC EXC\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2867 | } else { |
| 2868 | seq_printf(seq, |
| 2869 | "%3d %6.6s 0x%08x " |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 2870 | "0x%08x %6lu %6lu\n", |
| 2871 | state->dev->ifindex, state->dev->name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2872 | ntohl(state->im->multiaddr), |
| 2873 | ntohl(psf->sf_inaddr), |
| 2874 | psf->sf_count[MCAST_INCLUDE], |
| 2875 | psf->sf_count[MCAST_EXCLUDE]); |
| 2876 | } |
| 2877 | return 0; |
| 2878 | } |
| 2879 | |
Stephen Hemminger | f690808 | 2007-03-12 14:34:29 -0700 | [diff] [blame] | 2880 | static const struct seq_operations igmp_mcf_seq_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2881 | .start = igmp_mcf_seq_start, |
| 2882 | .next = igmp_mcf_seq_next, |
| 2883 | .stop = igmp_mcf_seq_stop, |
| 2884 | .show = igmp_mcf_seq_show, |
| 2885 | }; |
| 2886 | |
| 2887 | static int igmp_mcf_seq_open(struct inode *inode, struct file *file) |
| 2888 | { |
Alexey Dobriyan | 7091e72 | 2008-12-25 16:42:51 -0800 | [diff] [blame] | 2889 | return seq_open_net(inode, file, &igmp_mcf_seq_ops, |
Pavel Emelyanov | cf7732e | 2007-10-10 02:29:29 -0700 | [diff] [blame] | 2890 | sizeof(struct igmp_mcf_iter_state)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2891 | } |
| 2892 | |
Arjan van de Ven | 9a32144 | 2007-02-12 00:55:35 -0800 | [diff] [blame] | 2893 | static const struct file_operations igmp_mcf_seq_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2894 | .owner = THIS_MODULE, |
| 2895 | .open = igmp_mcf_seq_open, |
| 2896 | .read = seq_read, |
| 2897 | .llseek = seq_lseek, |
Alexey Dobriyan | 7091e72 | 2008-12-25 16:42:51 -0800 | [diff] [blame] | 2898 | .release = seq_release_net, |
| 2899 | }; |
| 2900 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 2901 | static int __net_init igmp_net_init(struct net *net) |
Alexey Dobriyan | 7091e72 | 2008-12-25 16:42:51 -0800 | [diff] [blame] | 2902 | { |
| 2903 | struct proc_dir_entry *pde; |
Madhu Challa | 93a714d | 2015-02-25 09:58:35 -0800 | [diff] [blame] | 2904 | int err; |
Alexey Dobriyan | 7091e72 | 2008-12-25 16:42:51 -0800 | [diff] [blame] | 2905 | |
Gao feng | d4beaa6 | 2013-02-18 01:34:54 +0000 | [diff] [blame] | 2906 | pde = proc_create("igmp", S_IRUGO, net->proc_net, &igmp_mc_seq_fops); |
Alexey Dobriyan | 7091e72 | 2008-12-25 16:42:51 -0800 | [diff] [blame] | 2907 | if (!pde) |
| 2908 | goto out_igmp; |
Gao feng | d4beaa6 | 2013-02-18 01:34:54 +0000 | [diff] [blame] | 2909 | pde = proc_create("mcfilter", S_IRUGO, net->proc_net, |
| 2910 | &igmp_mcf_seq_fops); |
Alexey Dobriyan | 7091e72 | 2008-12-25 16:42:51 -0800 | [diff] [blame] | 2911 | if (!pde) |
| 2912 | goto out_mcfilter; |
Madhu Challa | 93a714d | 2015-02-25 09:58:35 -0800 | [diff] [blame] | 2913 | err = inet_ctl_sock_create(&net->ipv4.mc_autojoin_sk, AF_INET, |
| 2914 | SOCK_DGRAM, 0, net); |
| 2915 | if (err < 0) { |
| 2916 | pr_err("Failed to initialize the IGMP autojoin socket (err %d)\n", |
| 2917 | err); |
| 2918 | goto out_sock; |
| 2919 | } |
| 2920 | |
Alexey Dobriyan | 7091e72 | 2008-12-25 16:42:51 -0800 | [diff] [blame] | 2921 | return 0; |
| 2922 | |
Madhu Challa | 93a714d | 2015-02-25 09:58:35 -0800 | [diff] [blame] | 2923 | out_sock: |
| 2924 | remove_proc_entry("mcfilter", net->proc_net); |
Alexey Dobriyan | 7091e72 | 2008-12-25 16:42:51 -0800 | [diff] [blame] | 2925 | out_mcfilter: |
Gao feng | ece31ff | 2013-02-18 01:34:56 +0000 | [diff] [blame] | 2926 | remove_proc_entry("igmp", net->proc_net); |
Alexey Dobriyan | 7091e72 | 2008-12-25 16:42:51 -0800 | [diff] [blame] | 2927 | out_igmp: |
| 2928 | return -ENOMEM; |
| 2929 | } |
| 2930 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 2931 | static void __net_exit igmp_net_exit(struct net *net) |
Alexey Dobriyan | 7091e72 | 2008-12-25 16:42:51 -0800 | [diff] [blame] | 2932 | { |
Gao feng | ece31ff | 2013-02-18 01:34:56 +0000 | [diff] [blame] | 2933 | remove_proc_entry("mcfilter", net->proc_net); |
| 2934 | remove_proc_entry("igmp", net->proc_net); |
Madhu Challa | 93a714d | 2015-02-25 09:58:35 -0800 | [diff] [blame] | 2935 | inet_ctl_sock_destroy(net->ipv4.mc_autojoin_sk); |
Alexey Dobriyan | 7091e72 | 2008-12-25 16:42:51 -0800 | [diff] [blame] | 2936 | } |
| 2937 | |
| 2938 | static struct pernet_operations igmp_net_ops = { |
| 2939 | .init = igmp_net_init, |
| 2940 | .exit = igmp_net_exit, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2941 | }; |
WANG Cong | 72c1d3b | 2014-01-10 16:09:45 -0800 | [diff] [blame] | 2942 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2943 | |
Jiri Pirko | 4aa5dee | 2013-07-20 12:13:53 +0200 | [diff] [blame] | 2944 | static int igmp_netdev_event(struct notifier_block *this, |
| 2945 | unsigned long event, void *ptr) |
| 2946 | { |
| 2947 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
| 2948 | struct in_device *in_dev; |
| 2949 | |
| 2950 | switch (event) { |
| 2951 | case NETDEV_RESEND_IGMP: |
| 2952 | in_dev = __in_dev_get_rtnl(dev); |
| 2953 | if (in_dev) |
| 2954 | ip_mc_rejoin_groups(in_dev); |
| 2955 | break; |
| 2956 | default: |
| 2957 | break; |
| 2958 | } |
| 2959 | return NOTIFY_DONE; |
| 2960 | } |
| 2961 | |
| 2962 | static struct notifier_block igmp_notifier = { |
| 2963 | .notifier_call = igmp_netdev_event, |
| 2964 | }; |
| 2965 | |
WANG Cong | 72c1d3b | 2014-01-10 16:09:45 -0800 | [diff] [blame] | 2966 | int __init igmp_mc_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2967 | { |
WANG Cong | 72c1d3b | 2014-01-10 16:09:45 -0800 | [diff] [blame] | 2968 | #if defined(CONFIG_PROC_FS) |
Jiri Pirko | 4aa5dee | 2013-07-20 12:13:53 +0200 | [diff] [blame] | 2969 | int err; |
| 2970 | |
| 2971 | err = register_pernet_subsys(&igmp_net_ops); |
| 2972 | if (err) |
| 2973 | return err; |
| 2974 | err = register_netdevice_notifier(&igmp_notifier); |
| 2975 | if (err) |
| 2976 | goto reg_notif_fail; |
| 2977 | return 0; |
| 2978 | |
| 2979 | reg_notif_fail: |
| 2980 | unregister_pernet_subsys(&igmp_net_ops); |
| 2981 | return err; |
WANG Cong | 72c1d3b | 2014-01-10 16:09:45 -0800 | [diff] [blame] | 2982 | #else |
| 2983 | return register_netdevice_notifier(&igmp_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2984 | #endif |
WANG Cong | 72c1d3b | 2014-01-10 16:09:45 -0800 | [diff] [blame] | 2985 | } |