blob: d7be21f2174ad0c9acba84915e5da346606da5cb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IP multicast routing support for mrouted 3.6/3.8
3 *
Alan Cox113aa832008-10-13 19:01:08 -07004 * (c) 1995 Alan Cox, <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Linux Consultancy and Custom Driver Development
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Fixes:
13 * Michael Chastain : Incorrect size of copying.
14 * Alan Cox : Added the cache manager code
15 * Alan Cox : Fixed the clone/copy bug and device race.
16 * Mike McLagan : Routing by source
17 * Malcolm Beattie : Buffer handling fixes.
18 * Alexey Kuznetsov : Double buffer free and other fixes.
19 * SVR Anand : Fixed several multicast bugs and problems.
20 * Alexey Kuznetsov : Status, optimisations and more.
21 * Brad Parker : Better behaviour on mrouted upcall
22 * overflow.
23 * Carlos Picoto : PIMv1 Support
24 * Pavlin Ivanov Radoslavov: PIMv2 Registers must checksum only PIM header
Gilles Espinassef77f13e2010-03-29 15:41:47 +020025 * Relax this requirement to work with older peers.
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 *
27 */
28
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080029#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/types.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080031#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/errno.h>
33#include <linux/timer.h>
34#include <linux/mm.h>
35#include <linux/kernel.h>
36#include <linux/fcntl.h>
37#include <linux/stat.h>
38#include <linux/socket.h>
39#include <linux/in.h>
40#include <linux/inet.h>
41#include <linux/netdevice.h>
42#include <linux/inetdevice.h>
43#include <linux/igmp.h>
44#include <linux/proc_fs.h>
45#include <linux/seq_file.h>
46#include <linux/mroute.h>
47#include <linux/init.h>
Kris Katterjohn46f25df2006-01-05 16:35:42 -080048#include <linux/if_ether.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090049#include <linux/slab.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020050#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <net/ip.h>
52#include <net/protocol.h>
53#include <linux/skbuff.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020054#include <net/route.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <net/sock.h>
56#include <net/icmp.h>
57#include <net/udp.h>
58#include <net/raw.h>
59#include <linux/notifier.h>
60#include <linux/if_arp.h>
61#include <linux/netfilter_ipv4.h>
Eric W. Biederman709b46e2011-01-29 16:15:56 +000062#include <linux/compat.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040063#include <linux/export.h>
Pravin B Shelarc5441932013-03-25 14:49:35 +000064#include <net/ip_tunnels.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <net/checksum.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070066#include <net/netlink.h>
Patrick McHardyf0ad0862010-04-13 05:03:23 +000067#include <net/fib_rules.h>
Nicolas Dichteld67b8c62012-12-04 01:13:35 +000068#include <linux/netconf.h>
Nikolay Aleksandrovccbb0aa2015-11-26 15:23:50 +010069#include <net/nexthop.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Patrick McHardyf0ad0862010-04-13 05:03:23 +000071struct ipmr_rule {
72 struct fib_rule common;
73};
74
75struct ipmr_result {
76 struct mr_table *mrt;
77};
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/* Big lock, protecting vif table, mrt cache and mroute socket state.
Eric Dumazeta8cb16d2010-10-01 16:15:29 +000080 * Note that the changes are semaphored via rtnl_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 */
82
83static DEFINE_RWLOCK(mrt_lock);
84
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +010085/* Multicast router control variables */
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087/* Special spinlock for queue of unresolved entries */
88static DEFINE_SPINLOCK(mfc_unres_lock);
89
90/* We return to original Alan's scheme. Hash table of resolved
Eric Dumazeta8cb16d2010-10-01 16:15:29 +000091 * entries is changed only in process context and protected
92 * with weak lock mrt_lock. Queue of unresolved entries is protected
93 * with strong spinlock mfc_unres_lock.
94 *
95 * In this case data path is free of exclusive locks at all.
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 */
97
Christoph Lametere18b8902006-12-06 20:33:20 -080098static struct kmem_cache *mrt_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000100static struct mr_table *ipmr_new_table(struct net *net, u32 id);
Francesco Ruggeriacbb2192012-08-24 07:38:35 +0000101static void ipmr_free_table(struct mr_table *mrt);
102
Rami Rosenc4854ec2013-07-20 15:09:28 +0300103static void ip_mr_forward(struct net *net, struct mr_table *mrt,
104 struct sk_buff *skb, struct mfc_cache *cache,
105 int local);
Patrick McHardy0c122952010-04-13 05:03:22 +0000106static int ipmr_cache_report(struct mr_table *mrt,
Benjamin Thery4feb88e2009-01-22 04:56:23 +0000107 struct sk_buff *pkt, vifi_t vifi, int assert);
Patrick McHardycb6a4e42010-04-26 16:02:08 +0200108static int __ipmr_fill_mroute(struct mr_table *mrt, struct sk_buff *skb,
109 struct mfc_cache *c, struct rtmsg *rtm);
Nicolas Dichtel8cd3ac92012-12-04 01:13:40 +0000110static void mroute_netlink_event(struct mr_table *mrt, struct mfc_cache *mfc,
111 int cmd);
Nikolay Aleksandrov0e615e92015-11-20 13:54:19 +0100112static void mroute_clean_tables(struct mr_table *mrt, bool all);
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000113static void ipmr_expire_process(unsigned long arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000115#ifdef CONFIG_IP_MROUTE_MULTIPLE_TABLES
116#define ipmr_for_each_table(mrt, net) \
117 list_for_each_entry_rcu(mrt, &net->ipv4.mr_tables, list)
118
119static struct mr_table *ipmr_get_table(struct net *net, u32 id)
120{
121 struct mr_table *mrt;
122
123 ipmr_for_each_table(mrt, net) {
124 if (mrt->id == id)
125 return mrt;
126 }
127 return NULL;
128}
129
David S. Millerda919812011-03-12 02:04:50 -0500130static int ipmr_fib_lookup(struct net *net, struct flowi4 *flp4,
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000131 struct mr_table **mrt)
132{
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000133 int err;
Hannes Frederic Sowa95f4a452014-01-13 02:45:22 +0100134 struct ipmr_result res;
135 struct fib_lookup_arg arg = {
136 .result = &res,
137 .flags = FIB_LOOKUP_NOREF,
138 };
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000139
David Aherne58e4152016-10-31 15:54:00 -0700140 /* update flow if oif or iif point to device enslaved to l3mdev */
141 l3mdev_update_flow(net, flowi4_to_flowi(flp4));
142
David S. Millerda919812011-03-12 02:04:50 -0500143 err = fib_rules_lookup(net->ipv4.mr_rules_ops,
144 flowi4_to_flowi(flp4), 0, &arg);
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000145 if (err < 0)
146 return err;
147 *mrt = res.mrt;
148 return 0;
149}
150
151static int ipmr_rule_action(struct fib_rule *rule, struct flowi *flp,
152 int flags, struct fib_lookup_arg *arg)
153{
154 struct ipmr_result *res = arg->result;
155 struct mr_table *mrt;
156
157 switch (rule->action) {
158 case FR_ACT_TO_TBL:
159 break;
160 case FR_ACT_UNREACHABLE:
161 return -ENETUNREACH;
162 case FR_ACT_PROHIBIT:
163 return -EACCES;
164 case FR_ACT_BLACKHOLE:
165 default:
166 return -EINVAL;
167 }
168
David Aherne58e4152016-10-31 15:54:00 -0700169 arg->table = fib_rule_get_table(rule, arg);
170
171 mrt = ipmr_get_table(rule->fr_net, arg->table);
Ian Morris51456b22015-04-03 09:17:26 +0100172 if (!mrt)
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000173 return -EAGAIN;
174 res->mrt = mrt;
175 return 0;
176}
177
178static int ipmr_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
179{
180 return 1;
181}
182
183static const struct nla_policy ipmr_rule_policy[FRA_MAX + 1] = {
184 FRA_GENERIC_POLICY,
185};
186
187static int ipmr_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
188 struct fib_rule_hdr *frh, struct nlattr **tb)
189{
190 return 0;
191}
192
193static int ipmr_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
194 struct nlattr **tb)
195{
196 return 1;
197}
198
199static int ipmr_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
200 struct fib_rule_hdr *frh)
201{
202 frh->dst_len = 0;
203 frh->src_len = 0;
204 frh->tos = 0;
205 return 0;
206}
207
Andi Kleen04a6f822012-10-04 17:12:11 -0700208static const struct fib_rules_ops __net_initconst ipmr_rules_ops_template = {
Patrick McHardy25239ce2010-04-26 16:02:05 +0200209 .family = RTNL_FAMILY_IPMR,
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000210 .rule_size = sizeof(struct ipmr_rule),
211 .addr_size = sizeof(u32),
212 .action = ipmr_rule_action,
213 .match = ipmr_rule_match,
214 .configure = ipmr_rule_configure,
215 .compare = ipmr_rule_compare,
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000216 .fill = ipmr_rule_fill,
217 .nlgroup = RTNLGRP_IPV4_RULE,
218 .policy = ipmr_rule_policy,
219 .owner = THIS_MODULE,
220};
221
222static int __net_init ipmr_rules_init(struct net *net)
223{
224 struct fib_rules_ops *ops;
225 struct mr_table *mrt;
226 int err;
227
228 ops = fib_rules_register(&ipmr_rules_ops_template, net);
229 if (IS_ERR(ops))
230 return PTR_ERR(ops);
231
232 INIT_LIST_HEAD(&net->ipv4.mr_tables);
233
234 mrt = ipmr_new_table(net, RT_TABLE_DEFAULT);
Nikolay Aleksandrov1113ebb2015-11-21 15:57:24 +0100235 if (IS_ERR(mrt)) {
236 err = PTR_ERR(mrt);
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000237 goto err1;
238 }
239
240 err = fib_default_rule_add(ops, 0x7fff, RT_TABLE_DEFAULT, 0);
241 if (err < 0)
242 goto err2;
243
244 net->ipv4.mr_rules_ops = ops;
245 return 0;
246
247err2:
WANG Congf243e5a2015-03-25 14:45:03 -0700248 ipmr_free_table(mrt);
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000249err1:
250 fib_rules_unregister(ops);
251 return err;
252}
253
254static void __net_exit ipmr_rules_exit(struct net *net)
255{
256 struct mr_table *mrt, *next;
257
WANG Conged785302015-03-31 11:01:45 -0700258 rtnl_lock();
Eric Dumazet035320d2010-06-06 23:48:40 +0000259 list_for_each_entry_safe(mrt, next, &net->ipv4.mr_tables, list) {
260 list_del(&mrt->list);
Francesco Ruggeriacbb2192012-08-24 07:38:35 +0000261 ipmr_free_table(mrt);
Eric Dumazet035320d2010-06-06 23:48:40 +0000262 }
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000263 fib_rules_unregister(net->ipv4.mr_rules_ops);
WANG Cong419df122015-03-31 11:01:46 -0700264 rtnl_unlock();
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000265}
266#else
267#define ipmr_for_each_table(mrt, net) \
268 for (mrt = net->ipv4.mrt; mrt; mrt = NULL)
269
270static struct mr_table *ipmr_get_table(struct net *net, u32 id)
271{
272 return net->ipv4.mrt;
273}
274
David S. Millerda919812011-03-12 02:04:50 -0500275static int ipmr_fib_lookup(struct net *net, struct flowi4 *flp4,
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000276 struct mr_table **mrt)
277{
278 *mrt = net->ipv4.mrt;
279 return 0;
280}
281
282static int __net_init ipmr_rules_init(struct net *net)
283{
Nikolay Aleksandrov1113ebb2015-11-21 15:57:24 +0100284 struct mr_table *mrt;
285
286 mrt = ipmr_new_table(net, RT_TABLE_DEFAULT);
287 if (IS_ERR(mrt))
288 return PTR_ERR(mrt);
289 net->ipv4.mrt = mrt;
290 return 0;
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000291}
292
293static void __net_exit ipmr_rules_exit(struct net *net)
294{
WANG Conged785302015-03-31 11:01:45 -0700295 rtnl_lock();
Francesco Ruggeriacbb2192012-08-24 07:38:35 +0000296 ipmr_free_table(net->ipv4.mrt);
WANG Conged785302015-03-31 11:01:45 -0700297 net->ipv4.mrt = NULL;
298 rtnl_unlock();
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000299}
300#endif
301
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +0100302static inline int ipmr_hash_cmp(struct rhashtable_compare_arg *arg,
303 const void *ptr)
304{
305 const struct mfc_cache_cmp_arg *cmparg = arg->key;
306 struct mfc_cache *c = (struct mfc_cache *)ptr;
307
308 return cmparg->mfc_mcastgrp != c->mfc_mcastgrp ||
309 cmparg->mfc_origin != c->mfc_origin;
310}
311
312static const struct rhashtable_params ipmr_rht_params = {
313 .head_offset = offsetof(struct mfc_cache, mnode),
314 .key_offset = offsetof(struct mfc_cache, cmparg),
315 .key_len = sizeof(struct mfc_cache_cmp_arg),
316 .nelem_hint = 3,
317 .locks_mul = 1,
318 .obj_cmpfn = ipmr_hash_cmp,
319 .automatic_shrinking = true,
320};
321
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000322static struct mr_table *ipmr_new_table(struct net *net, u32 id)
323{
324 struct mr_table *mrt;
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000325
Nikolay Aleksandrov1113ebb2015-11-21 15:57:24 +0100326 /* "pimreg%u" should not exceed 16 bytes (IFNAMSIZ) */
327 if (id != RT_TABLE_DEFAULT && id >= 1000000000)
328 return ERR_PTR(-EINVAL);
329
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000330 mrt = ipmr_get_table(net, id);
Ian Morris00db4122015-04-03 09:17:27 +0100331 if (mrt)
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000332 return mrt;
333
334 mrt = kzalloc(sizeof(*mrt), GFP_KERNEL);
Ian Morris51456b22015-04-03 09:17:26 +0100335 if (!mrt)
Nikolay Aleksandrov1113ebb2015-11-21 15:57:24 +0100336 return ERR_PTR(-ENOMEM);
Patrick McHardy8de53df2010-04-15 13:29:28 +0200337 write_pnet(&mrt->net, net);
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000338 mrt->id = id;
339
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +0100340 rhltable_init(&mrt->mfc_hash, &ipmr_rht_params);
341 INIT_LIST_HEAD(&mrt->mfc_cache_list);
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000342 INIT_LIST_HEAD(&mrt->mfc_unres_queue);
343
344 setup_timer(&mrt->ipmr_expire_timer, ipmr_expire_process,
345 (unsigned long)mrt);
346
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000347 mrt->mroute_reg_vif_num = -1;
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000348#ifdef CONFIG_IP_MROUTE_MULTIPLE_TABLES
349 list_add_tail_rcu(&mrt->list, &net->ipv4.mr_tables);
350#endif
351 return mrt;
352}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Francesco Ruggeriacbb2192012-08-24 07:38:35 +0000354static void ipmr_free_table(struct mr_table *mrt)
355{
356 del_timer_sync(&mrt->ipmr_expire_timer);
Nikolay Aleksandrov0e615e92015-11-20 13:54:19 +0100357 mroute_clean_tables(mrt, true);
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +0100358 rhltable_destroy(&mrt->mfc_hash);
Francesco Ruggeriacbb2192012-08-24 07:38:35 +0000359 kfree(mrt);
360}
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362/* Service routines creating virtual interfaces: DVMRP tunnels and PIMREG */
363
Wang Chend6070322008-07-14 20:55:26 -0700364static void ipmr_del_tunnel(struct net_device *dev, struct vifctl *v)
365{
Benjamin Thery4feb88e2009-01-22 04:56:23 +0000366 struct net *net = dev_net(dev);
367
Wang Chend6070322008-07-14 20:55:26 -0700368 dev_close(dev);
369
Benjamin Thery4feb88e2009-01-22 04:56:23 +0000370 dev = __dev_get_by_name(net, "tunl0");
Wang Chend6070322008-07-14 20:55:26 -0700371 if (dev) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -0800372 const struct net_device_ops *ops = dev->netdev_ops;
Wang Chend6070322008-07-14 20:55:26 -0700373 struct ifreq ifr;
Wang Chend6070322008-07-14 20:55:26 -0700374 struct ip_tunnel_parm p;
375
376 memset(&p, 0, sizeof(p));
377 p.iph.daddr = v->vifc_rmt_addr.s_addr;
378 p.iph.saddr = v->vifc_lcl_addr.s_addr;
379 p.iph.version = 4;
380 p.iph.ihl = 5;
381 p.iph.protocol = IPPROTO_IPIP;
382 sprintf(p.name, "dvmrp%d", v->vifc_vifi);
383 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
384
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -0800385 if (ops->ndo_do_ioctl) {
386 mm_segment_t oldfs = get_fs();
387
388 set_fs(KERNEL_DS);
389 ops->ndo_do_ioctl(dev, &ifr, SIOCDELTUNNEL);
390 set_fs(oldfs);
391 }
Wang Chend6070322008-07-14 20:55:26 -0700392 }
393}
394
Nikolay Aleksandrova0b47732015-11-21 15:57:32 +0100395/* Initialize ipmr pimreg/tunnel in_device */
396static bool ipmr_init_vif_indev(const struct net_device *dev)
397{
398 struct in_device *in_dev;
399
400 ASSERT_RTNL();
401
402 in_dev = __in_dev_get_rtnl(dev);
403 if (!in_dev)
404 return false;
405 ipv4_devconf_setall(in_dev);
406 neigh_parms_data_state_setall(in_dev->arp_parms);
407 IPV4_DEVCONF(in_dev->cnf, RP_FILTER) = 0;
408
409 return true;
410}
411
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +0100412static struct net_device *ipmr_new_tunnel(struct net *net, struct vifctl *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
414 struct net_device *dev;
415
Benjamin Thery4feb88e2009-01-22 04:56:23 +0000416 dev = __dev_get_by_name(net, "tunl0");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 if (dev) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -0800419 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 int err;
421 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 struct ip_tunnel_parm p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 memset(&p, 0, sizeof(p));
425 p.iph.daddr = v->vifc_rmt_addr.s_addr;
426 p.iph.saddr = v->vifc_lcl_addr.s_addr;
427 p.iph.version = 4;
428 p.iph.ihl = 5;
429 p.iph.protocol = IPPROTO_IPIP;
430 sprintf(p.name, "dvmrp%d", v->vifc_vifi);
Stephen Hemmingerba93ef72008-01-21 17:28:59 -0800431 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -0800433 if (ops->ndo_do_ioctl) {
434 mm_segment_t oldfs = get_fs();
435
436 set_fs(KERNEL_DS);
437 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
438 set_fs(oldfs);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000439 } else {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -0800440 err = -EOPNOTSUPP;
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 dev = NULL;
443
Benjamin Thery4feb88e2009-01-22 04:56:23 +0000444 if (err == 0 &&
445 (dev = __dev_get_by_name(net, p.name)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 dev->flags |= IFF_MULTICAST;
Nikolay Aleksandrova0b47732015-11-21 15:57:32 +0100447 if (!ipmr_init_vif_indev(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 if (dev_open(dev))
450 goto failure;
Wang Chen7dc00c82008-07-14 20:56:34 -0700451 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
453 }
454 return dev;
455
456failure:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 unregister_netdevice(dev);
458 return NULL;
459}
460
Nikolay Aleksandrovc316c622015-11-21 15:57:26 +0100461#if defined(CONFIG_IP_PIMSM_V1) || defined(CONFIG_IP_PIMSM_V2)
Stephen Hemminger6fef4c02009-08-31 19:50:41 +0000462static netdev_tx_t reg_vif_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
Benjamin Thery4feb88e2009-01-22 04:56:23 +0000464 struct net *net = dev_net(dev);
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000465 struct mr_table *mrt;
David S. Millerda919812011-03-12 02:04:50 -0500466 struct flowi4 fl4 = {
467 .flowi4_oif = dev->ifindex,
Cong Wang6a662712014-04-15 16:25:34 -0700468 .flowi4_iif = skb->skb_iif ? : LOOPBACK_IFINDEX,
David S. Millerda919812011-03-12 02:04:50 -0500469 .flowi4_mark = skb->mark,
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000470 };
471 int err;
472
David S. Millerda919812011-03-12 02:04:50 -0500473 err = ipmr_fib_lookup(net, &fl4, &mrt);
Ben Greeare40dbc52010-07-15 13:22:33 +0000474 if (err < 0) {
475 kfree_skb(skb);
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000476 return err;
Ben Greeare40dbc52010-07-15 13:22:33 +0000477 }
Benjamin Thery4feb88e2009-01-22 04:56:23 +0000478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 read_lock(&mrt_lock);
Pavel Emelyanovcf3677a2008-05-21 14:17:33 -0700480 dev->stats.tx_bytes += skb->len;
481 dev->stats.tx_packets++;
Patrick McHardy0c122952010-04-13 05:03:22 +0000482 ipmr_cache_report(mrt, skb, mrt->mroute_reg_vif_num, IGMPMSG_WHOLEPKT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 read_unlock(&mrt_lock);
484 kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000485 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486}
487
Nicolas Dichtelee9b9592015-04-02 17:07:03 +0200488static int reg_vif_get_iflink(const struct net_device *dev)
489{
490 return 0;
491}
492
Stephen Hemminger007c3832008-11-20 20:28:35 -0800493static const struct net_device_ops reg_vif_netdev_ops = {
494 .ndo_start_xmit = reg_vif_xmit,
Nicolas Dichtelee9b9592015-04-02 17:07:03 +0200495 .ndo_get_iflink = reg_vif_get_iflink,
Stephen Hemminger007c3832008-11-20 20:28:35 -0800496};
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498static void reg_vif_setup(struct net_device *dev)
499{
500 dev->type = ARPHRD_PIMREG;
Kris Katterjohn46f25df2006-01-05 16:35:42 -0800501 dev->mtu = ETH_DATA_LEN - sizeof(struct iphdr) - 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 dev->flags = IFF_NOARP;
Himangi Saraogi70cb4a42014-05-30 21:10:48 +0530503 dev->netdev_ops = &reg_vif_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 dev->destructor = free_netdev;
Tom Goff403dbb92009-06-14 03:16:13 -0700505 dev->features |= NETIF_F_NETNS_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000508static struct net_device *ipmr_reg_vif(struct net *net, struct mr_table *mrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
510 struct net_device *dev;
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000511 char name[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000513 if (mrt->id == RT_TABLE_DEFAULT)
514 sprintf(name, "pimreg");
515 else
516 sprintf(name, "pimreg%u", mrt->id);
517
Tom Gundersenc835a672014-07-14 16:37:24 +0200518 dev = alloc_netdev(0, name, NET_NAME_UNKNOWN, reg_vif_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Ian Morris51456b22015-04-03 09:17:26 +0100520 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return NULL;
522
Tom Goff403dbb92009-06-14 03:16:13 -0700523 dev_net_set(dev, net);
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (register_netdevice(dev)) {
526 free_netdev(dev);
527 return NULL;
528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Nikolay Aleksandrova0b47732015-11-21 15:57:32 +0100530 if (!ipmr_init_vif_indev(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (dev_open(dev))
533 goto failure;
534
Wang Chen7dc00c82008-07-14 20:56:34 -0700535 dev_hold(dev);
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return dev;
538
539failure:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 unregister_netdevice(dev);
541 return NULL;
542}
Nikolay Aleksandrovc316c622015-11-21 15:57:26 +0100543
544/* called with rcu_read_lock() */
545static int __pim_rcv(struct mr_table *mrt, struct sk_buff *skb,
546 unsigned int pimlen)
547{
548 struct net_device *reg_dev = NULL;
549 struct iphdr *encap;
550
551 encap = (struct iphdr *)(skb_transport_header(skb) + pimlen);
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +0100552 /* Check that:
Nikolay Aleksandrovc316c622015-11-21 15:57:26 +0100553 * a. packet is really sent to a multicast group
554 * b. packet is not a NULL-REGISTER
555 * c. packet is not truncated
556 */
557 if (!ipv4_is_multicast(encap->daddr) ||
558 encap->tot_len == 0 ||
559 ntohs(encap->tot_len) + pimlen > skb->len)
560 return 1;
561
562 read_lock(&mrt_lock);
563 if (mrt->mroute_reg_vif_num >= 0)
564 reg_dev = mrt->vif_table[mrt->mroute_reg_vif_num].dev;
565 read_unlock(&mrt_lock);
566
567 if (!reg_dev)
568 return 1;
569
570 skb->mac_header = skb->network_header;
571 skb_pull(skb, (u8 *)encap - skb->data);
572 skb_reset_network_header(skb);
573 skb->protocol = htons(ETH_P_IP);
574 skb->ip_summed = CHECKSUM_NONE;
575
576 skb_tunnel_rx(skb, reg_dev, dev_net(reg_dev));
577
578 netif_rx(skb);
579
580 return NET_RX_SUCCESS;
581}
582#else
583static struct net_device *ipmr_reg_vif(struct net *net, struct mr_table *mrt)
584{
585 return NULL;
586}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587#endif
588
Ben Hutchings2c530402012-07-10 10:55:09 +0000589/**
590 * vif_delete - Delete a VIF entry
Wang Chen7dc00c82008-07-14 20:56:34 -0700591 * @notify: Set to 1, if the caller is a notifier_call
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 */
Patrick McHardy0c122952010-04-13 05:03:22 +0000593static int vif_delete(struct mr_table *mrt, int vifi, int notify,
Eric Dumazetd17fa6f2009-10-28 05:21:38 +0000594 struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
596 struct vif_device *v;
597 struct net_device *dev;
598 struct in_device *in_dev;
599
Patrick McHardy0c122952010-04-13 05:03:22 +0000600 if (vifi < 0 || vifi >= mrt->maxvif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 return -EADDRNOTAVAIL;
602
Patrick McHardy0c122952010-04-13 05:03:22 +0000603 v = &mrt->vif_table[vifi];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 write_lock_bh(&mrt_lock);
606 dev = v->dev;
607 v->dev = NULL;
608
609 if (!dev) {
610 write_unlock_bh(&mrt_lock);
611 return -EADDRNOTAVAIL;
612 }
613
Patrick McHardy0c122952010-04-13 05:03:22 +0000614 if (vifi == mrt->mroute_reg_vif_num)
615 mrt->mroute_reg_vif_num = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000617 if (vifi + 1 == mrt->maxvif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 int tmp;
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000619
620 for (tmp = vifi - 1; tmp >= 0; tmp--) {
Patrick McHardy0c122952010-04-13 05:03:22 +0000621 if (VIF_EXISTS(mrt, tmp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 break;
623 }
Patrick McHardy0c122952010-04-13 05:03:22 +0000624 mrt->maxvif = tmp+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626
627 write_unlock_bh(&mrt_lock);
628
629 dev_set_allmulti(dev, -1);
630
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000631 in_dev = __in_dev_get_rtnl(dev);
632 if (in_dev) {
Herbert Xu42f811b2007-06-04 23:34:44 -0700633 IPV4_DEVCONF(in_dev->cnf, MC_FORWARDING)--;
David Ahern3b022862017-03-28 14:28:02 -0700634 inet_netconf_notify_devconf(dev_net(dev), RTM_NEWNETCONF,
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000635 NETCONFA_MC_FORWARDING,
636 dev->ifindex, &in_dev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 ip_rt_multicast_event(in_dev);
638 }
639
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000640 if (v->flags & (VIFF_TUNNEL | VIFF_REGISTER) && !notify)
Eric Dumazetd17fa6f2009-10-28 05:21:38 +0000641 unregister_netdevice_queue(dev, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 dev_put(dev);
644 return 0;
645}
646
Eric Dumazeta8c94862010-10-01 16:15:08 +0000647static void ipmr_cache_free_rcu(struct rcu_head *head)
648{
649 struct mfc_cache *c = container_of(head, struct mfc_cache, rcu);
650
651 kmem_cache_free(mrt_cachep, c);
652}
653
Benjamin Thery5c0a66f2009-01-22 04:56:17 +0000654static inline void ipmr_cache_free(struct mfc_cache *c)
655{
Eric Dumazeta8c94862010-10-01 16:15:08 +0000656 call_rcu(&c->rcu, ipmr_cache_free_rcu);
Benjamin Thery5c0a66f2009-01-22 04:56:17 +0000657}
658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659/* Destroy an unresolved cache entry, killing queued skbs
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000660 * and reporting error to netlink readers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 */
Patrick McHardy0c122952010-04-13 05:03:22 +0000662static void ipmr_destroy_unres(struct mr_table *mrt, struct mfc_cache *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
Patrick McHardy8de53df2010-04-15 13:29:28 +0200664 struct net *net = read_pnet(&mrt->net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 struct sk_buff *skb;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700666 struct nlmsgerr *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Patrick McHardy0c122952010-04-13 05:03:22 +0000668 atomic_dec(&mrt->cache_resolve_queue_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Jianjun Kongc354e122008-11-03 00:28:02 -0800670 while ((skb = skb_dequeue(&c->mfc_un.unres.unresolved))) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700671 if (ip_hdr(skb)->version == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 struct nlmsghdr *nlh = (struct nlmsghdr *)skb_pull(skb, sizeof(struct iphdr));
673 nlh->nlmsg_type = NLMSG_ERROR;
Hong zhi guo573ce262013-03-27 06:47:04 +0000674 nlh->nlmsg_len = nlmsg_msg_size(sizeof(struct nlmsgerr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 skb_trim(skb, nlh->nlmsg_len);
Hong zhi guo573ce262013-03-27 06:47:04 +0000676 e = nlmsg_data(nlh);
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700677 e->error = -ETIMEDOUT;
678 memset(&e->msg, 0, sizeof(e->msg));
Thomas Graf2942e902006-08-15 00:30:25 -0700679
Eric W. Biederman15e47302012-09-07 20:12:54 +0000680 rtnl_unicast(skb, net, NETLINK_CB(skb).portid);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000681 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 kfree_skb(skb);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685
Benjamin Thery5c0a66f2009-01-22 04:56:17 +0000686 ipmr_cache_free(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
688
Patrick McHardye258beb2010-04-13 05:03:19 +0000689/* Timer process for the unresolved queue. */
Patrick McHardye258beb2010-04-13 05:03:19 +0000690static void ipmr_expire_process(unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
Patrick McHardy0c122952010-04-13 05:03:22 +0000692 struct mr_table *mrt = (struct mr_table *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 unsigned long now;
694 unsigned long expires;
Patrick McHardy862465f2010-04-13 05:03:21 +0000695 struct mfc_cache *c, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 if (!spin_trylock(&mfc_unres_lock)) {
Patrick McHardy0c122952010-04-13 05:03:22 +0000698 mod_timer(&mrt->ipmr_expire_timer, jiffies+HZ/10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return;
700 }
701
Patrick McHardy0c122952010-04-13 05:03:22 +0000702 if (list_empty(&mrt->mfc_unres_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 goto out;
704
705 now = jiffies;
706 expires = 10*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Patrick McHardy0c122952010-04-13 05:03:22 +0000708 list_for_each_entry_safe(c, next, &mrt->mfc_unres_queue, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (time_after(c->mfc_un.unres.expires, now)) {
710 unsigned long interval = c->mfc_un.unres.expires - now;
711 if (interval < expires)
712 expires = interval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 continue;
714 }
715
Patrick McHardy862465f2010-04-13 05:03:21 +0000716 list_del(&c->list);
Nicolas Dichtel8cd3ac92012-12-04 01:13:40 +0000717 mroute_netlink_event(mrt, c, RTM_DELROUTE);
Patrick McHardy0c122952010-04-13 05:03:22 +0000718 ipmr_destroy_unres(mrt, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720
Patrick McHardy0c122952010-04-13 05:03:22 +0000721 if (!list_empty(&mrt->mfc_unres_queue))
722 mod_timer(&mrt->ipmr_expire_timer, jiffies + expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724out:
725 spin_unlock(&mfc_unres_lock);
726}
727
728/* Fill oifs list. It is called under write locked mrt_lock. */
Patrick McHardy0c122952010-04-13 05:03:22 +0000729static void ipmr_update_thresholds(struct mr_table *mrt, struct mfc_cache *cache,
Patrick McHardyd658f8a2010-04-13 05:03:20 +0000730 unsigned char *ttls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
732 int vifi;
733
734 cache->mfc_un.res.minvif = MAXVIFS;
735 cache->mfc_un.res.maxvif = 0;
736 memset(cache->mfc_un.res.ttls, 255, MAXVIFS);
737
Patrick McHardy0c122952010-04-13 05:03:22 +0000738 for (vifi = 0; vifi < mrt->maxvif; vifi++) {
739 if (VIF_EXISTS(mrt, vifi) &&
Benjamin Therycf958ae32009-01-22 04:56:16 +0000740 ttls[vifi] && ttls[vifi] < 255) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 cache->mfc_un.res.ttls[vifi] = ttls[vifi];
742 if (cache->mfc_un.res.minvif > vifi)
743 cache->mfc_un.res.minvif = vifi;
744 if (cache->mfc_un.res.maxvif <= vifi)
745 cache->mfc_un.res.maxvif = vifi + 1;
746 }
747 }
Nikolay Aleksandrov90b5ca12016-07-26 18:54:52 +0200748 cache->mfc_un.res.lastuse = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749}
750
Patrick McHardy0c122952010-04-13 05:03:22 +0000751static int vif_add(struct net *net, struct mr_table *mrt,
752 struct vifctl *vifc, int mrtsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
754 int vifi = vifc->vifc_vifi;
Patrick McHardy0c122952010-04-13 05:03:22 +0000755 struct vif_device *v = &mrt->vif_table[vifi];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 struct net_device *dev;
757 struct in_device *in_dev;
Wang Chend6070322008-07-14 20:55:26 -0700758 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 /* Is vif busy ? */
Patrick McHardy0c122952010-04-13 05:03:22 +0000761 if (VIF_EXISTS(mrt, vifi))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return -EADDRINUSE;
763
764 switch (vifc->vifc_flags) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 case VIFF_REGISTER:
Nikolay Aleksandrov1973a4e2015-11-26 15:23:48 +0100766 if (!ipmr_pimsm_enabled())
Nikolay Aleksandrovc316c622015-11-21 15:57:26 +0100767 return -EINVAL;
768 /* Special Purpose VIF in PIM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 * All the packets will be sent to the daemon
770 */
Patrick McHardy0c122952010-04-13 05:03:22 +0000771 if (mrt->mroute_reg_vif_num >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 return -EADDRINUSE;
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000773 dev = ipmr_reg_vif(net, mrt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 if (!dev)
775 return -ENOBUFS;
Wang Chend6070322008-07-14 20:55:26 -0700776 err = dev_set_allmulti(dev, 1);
777 if (err) {
778 unregister_netdevice(dev);
Wang Chen7dc00c82008-07-14 20:56:34 -0700779 dev_put(dev);
Wang Chend6070322008-07-14 20:55:26 -0700780 return err;
781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 break;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900783 case VIFF_TUNNEL:
Benjamin Thery4feb88e2009-01-22 04:56:23 +0000784 dev = ipmr_new_tunnel(net, vifc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 if (!dev)
786 return -ENOBUFS;
Wang Chend6070322008-07-14 20:55:26 -0700787 err = dev_set_allmulti(dev, 1);
788 if (err) {
789 ipmr_del_tunnel(dev, vifc);
Wang Chen7dc00c82008-07-14 20:56:34 -0700790 dev_put(dev);
Wang Chend6070322008-07-14 20:55:26 -0700791 return err;
792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 break;
Ilia Kee5e81f2009-09-16 05:53:07 +0000794 case VIFF_USE_IFINDEX:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 case 0:
Ilia Kee5e81f2009-09-16 05:53:07 +0000796 if (vifc->vifc_flags == VIFF_USE_IFINDEX) {
797 dev = dev_get_by_index(net, vifc->vifc_lcl_ifindex);
Ian Morris51456b22015-04-03 09:17:26 +0100798 if (dev && !__in_dev_get_rtnl(dev)) {
Ilia Kee5e81f2009-09-16 05:53:07 +0000799 dev_put(dev);
800 return -EADDRNOTAVAIL;
801 }
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000802 } else {
Ilia Kee5e81f2009-09-16 05:53:07 +0000803 dev = ip_dev_find(net, vifc->vifc_lcl_addr.s_addr);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 if (!dev)
806 return -EADDRNOTAVAIL;
Wang Chend6070322008-07-14 20:55:26 -0700807 err = dev_set_allmulti(dev, 1);
Wang Chen7dc00c82008-07-14 20:56:34 -0700808 if (err) {
809 dev_put(dev);
Wang Chend6070322008-07-14 20:55:26 -0700810 return err;
Wang Chen7dc00c82008-07-14 20:56:34 -0700811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 break;
813 default:
814 return -EINVAL;
815 }
816
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000817 in_dev = __in_dev_get_rtnl(dev);
818 if (!in_dev) {
Dan Carpenterd0490cf2009-11-11 02:03:54 +0000819 dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 return -EADDRNOTAVAIL;
Dan Carpenterd0490cf2009-11-11 02:03:54 +0000821 }
Herbert Xu42f811b2007-06-04 23:34:44 -0700822 IPV4_DEVCONF(in_dev->cnf, MC_FORWARDING)++;
David Ahern3b022862017-03-28 14:28:02 -0700823 inet_netconf_notify_devconf(net, RTM_NEWNETCONF, NETCONFA_MC_FORWARDING,
824 dev->ifindex, &in_dev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 ip_rt_multicast_event(in_dev);
826
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000827 /* Fill in the VIF structures */
828
Jianjun Kongc354e122008-11-03 00:28:02 -0800829 v->rate_limit = vifc->vifc_rate_limit;
830 v->local = vifc->vifc_lcl_addr.s_addr;
831 v->remote = vifc->vifc_rmt_addr.s_addr;
832 v->flags = vifc->vifc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 if (!mrtsock)
834 v->flags |= VIFF_STATIC;
Jianjun Kongc354e122008-11-03 00:28:02 -0800835 v->threshold = vifc->vifc_threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 v->bytes_in = 0;
837 v->bytes_out = 0;
838 v->pkt_in = 0;
839 v->pkt_out = 0;
840 v->link = dev->ifindex;
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000841 if (v->flags & (VIFF_TUNNEL | VIFF_REGISTER))
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200842 v->link = dev_get_iflink(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844 /* And finish update writing critical data */
845 write_lock_bh(&mrt_lock);
Jianjun Kongc354e122008-11-03 00:28:02 -0800846 v->dev = dev;
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000847 if (v->flags & VIFF_REGISTER)
Patrick McHardy0c122952010-04-13 05:03:22 +0000848 mrt->mroute_reg_vif_num = vifi;
Patrick McHardy0c122952010-04-13 05:03:22 +0000849 if (vifi+1 > mrt->maxvif)
850 mrt->maxvif = vifi+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 write_unlock_bh(&mrt_lock);
852 return 0;
853}
854
Eric Dumazeta8c94862010-10-01 16:15:08 +0000855/* called with rcu_read_lock() */
Patrick McHardy0c122952010-04-13 05:03:22 +0000856static struct mfc_cache *ipmr_cache_find(struct mr_table *mrt,
Benjamin Thery4feb88e2009-01-22 04:56:23 +0000857 __be32 origin,
858 __be32 mcastgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +0100860 struct mfc_cache_cmp_arg arg = {
861 .mfc_mcastgrp = mcastgrp,
862 .mfc_origin = origin
863 };
864 struct rhlist_head *tmp, *list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 struct mfc_cache *c;
866
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +0100867 list = rhltable_lookup(&mrt->mfc_hash, &arg, ipmr_rht_params);
868 rhl_for_each_entry_rcu(c, tmp, list, mnode)
869 return c;
870
Patrick McHardy862465f2010-04-13 05:03:21 +0000871 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872}
873
Nicolas Dichtel660b26d2013-01-21 06:00:26 +0000874/* Look for a (*,*,oif) entry */
875static struct mfc_cache *ipmr_cache_find_any_parent(struct mr_table *mrt,
876 int vifi)
877{
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +0100878 struct mfc_cache_cmp_arg arg = {
879 .mfc_mcastgrp = htonl(INADDR_ANY),
880 .mfc_origin = htonl(INADDR_ANY)
881 };
882 struct rhlist_head *tmp, *list;
Nicolas Dichtel660b26d2013-01-21 06:00:26 +0000883 struct mfc_cache *c;
884
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +0100885 list = rhltable_lookup(&mrt->mfc_hash, &arg, ipmr_rht_params);
886 rhl_for_each_entry_rcu(c, tmp, list, mnode)
887 if (c->mfc_un.res.ttls[vifi] < 255)
Nicolas Dichtel660b26d2013-01-21 06:00:26 +0000888 return c;
889
890 return NULL;
891}
892
893/* Look for a (*,G) entry */
894static struct mfc_cache *ipmr_cache_find_any(struct mr_table *mrt,
895 __be32 mcastgrp, int vifi)
896{
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +0100897 struct mfc_cache_cmp_arg arg = {
898 .mfc_mcastgrp = mcastgrp,
899 .mfc_origin = htonl(INADDR_ANY)
900 };
901 struct rhlist_head *tmp, *list;
Nicolas Dichtel660b26d2013-01-21 06:00:26 +0000902 struct mfc_cache *c, *proxy;
903
Nicolas Dichtel360eb5d2013-01-22 11:18:03 +0100904 if (mcastgrp == htonl(INADDR_ANY))
Nicolas Dichtel660b26d2013-01-21 06:00:26 +0000905 goto skip;
906
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +0100907 list = rhltable_lookup(&mrt->mfc_hash, &arg, ipmr_rht_params);
908 rhl_for_each_entry_rcu(c, tmp, list, mnode) {
909 if (c->mfc_un.res.ttls[vifi] < 255)
910 return c;
Nicolas Dichtel660b26d2013-01-21 06:00:26 +0000911
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +0100912 /* It's ok if the vifi is part of the static tree */
913 proxy = ipmr_cache_find_any_parent(mrt, c->mfc_parent);
914 if (proxy && proxy->mfc_un.res.ttls[vifi] < 255)
915 return c;
916 }
Nicolas Dichtel660b26d2013-01-21 06:00:26 +0000917
918skip:
919 return ipmr_cache_find_any_parent(mrt, vifi);
920}
921
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +0100922/* Look for a (S,G,iif) entry if parent != -1 */
923static struct mfc_cache *ipmr_cache_find_parent(struct mr_table *mrt,
924 __be32 origin, __be32 mcastgrp,
925 int parent)
926{
927 struct mfc_cache_cmp_arg arg = {
928 .mfc_mcastgrp = mcastgrp,
929 .mfc_origin = origin,
930 };
931 struct rhlist_head *tmp, *list;
932 struct mfc_cache *c;
933
934 list = rhltable_lookup(&mrt->mfc_hash, &arg, ipmr_rht_params);
935 rhl_for_each_entry_rcu(c, tmp, list, mnode)
936 if (parent == -1 || parent == c->mfc_parent)
937 return c;
938
939 return NULL;
940}
941
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +0100942/* Allocate a multicast cache entry */
Patrick McHardyd658f8a2010-04-13 05:03:20 +0000943static struct mfc_cache *ipmr_cache_alloc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
Jianjun Kongc354e122008-11-03 00:28:02 -0800945 struct mfc_cache *c = kmem_cache_zalloc(mrt_cachep, GFP_KERNEL);
Eric Dumazeta8c94862010-10-01 16:15:08 +0000946
Tom Goff70a0dec2016-06-23 16:11:57 -0400947 if (c) {
948 c->mfc_un.res.last_assert = jiffies - MFC_ASSERT_THRESH - 1;
Eric Dumazeta8c94862010-10-01 16:15:08 +0000949 c->mfc_un.res.minvif = MAXVIFS;
Tom Goff70a0dec2016-06-23 16:11:57 -0400950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 return c;
952}
953
Patrick McHardyd658f8a2010-04-13 05:03:20 +0000954static struct mfc_cache *ipmr_cache_alloc_unres(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Jianjun Kongc354e122008-11-03 00:28:02 -0800956 struct mfc_cache *c = kmem_cache_zalloc(mrt_cachep, GFP_ATOMIC);
Eric Dumazeta8c94862010-10-01 16:15:08 +0000957
958 if (c) {
959 skb_queue_head_init(&c->mfc_un.unres.unresolved);
960 c->mfc_un.unres.expires = jiffies + 10*HZ;
961 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 return c;
963}
964
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +0100965/* A cache entry has gone into a resolved state from queued */
Patrick McHardy0c122952010-04-13 05:03:22 +0000966static void ipmr_cache_resolve(struct net *net, struct mr_table *mrt,
967 struct mfc_cache *uc, struct mfc_cache *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
969 struct sk_buff *skb;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700970 struct nlmsgerr *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000972 /* Play the pending entries through our router */
Jianjun Kongc354e122008-11-03 00:28:02 -0800973 while ((skb = __skb_dequeue(&uc->mfc_un.unres.unresolved))) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700974 if (ip_hdr(skb)->version == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 struct nlmsghdr *nlh = (struct nlmsghdr *)skb_pull(skb, sizeof(struct iphdr));
976
Hong zhi guo573ce262013-03-27 06:47:04 +0000977 if (__ipmr_fill_mroute(mrt, skb, c, nlmsg_data(nlh)) > 0) {
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000978 nlh->nlmsg_len = skb_tail_pointer(skb) -
979 (u8 *)nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 } else {
981 nlh->nlmsg_type = NLMSG_ERROR;
Hong zhi guo573ce262013-03-27 06:47:04 +0000982 nlh->nlmsg_len = nlmsg_msg_size(sizeof(struct nlmsgerr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 skb_trim(skb, nlh->nlmsg_len);
Hong zhi guo573ce262013-03-27 06:47:04 +0000984 e = nlmsg_data(nlh);
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700985 e->error = -EMSGSIZE;
986 memset(&e->msg, 0, sizeof(e->msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
Thomas Graf2942e902006-08-15 00:30:25 -0700988
Eric W. Biederman15e47302012-09-07 20:12:54 +0000989 rtnl_unicast(skb, net, NETLINK_CB(skb).portid);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000990 } else {
Patrick McHardy0c122952010-04-13 05:03:22 +0000991 ip_mr_forward(net, mrt, skb, c, 0);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 }
994}
995
Nikolay Aleksandrovc316c622015-11-21 15:57:26 +0100996/* Bounce a cache query up to mrouted. We could use netlink for this but mrouted
997 * expects the following bizarre scheme.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 *
Nikolay Aleksandrovc316c622015-11-21 15:57:26 +0100999 * Called under mrt_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 */
Patrick McHardy0c122952010-04-13 05:03:22 +00001001static int ipmr_cache_report(struct mr_table *mrt,
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001002 struct sk_buff *pkt, vifi_t vifi, int assert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -03001004 const int ihl = ip_hdrlen(pkt);
Nikolay Aleksandrovc316c622015-11-21 15:57:26 +01001005 struct sock *mroute_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 struct igmphdr *igmp;
1007 struct igmpmsg *msg;
Nikolay Aleksandrovc316c622015-11-21 15:57:26 +01001008 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 int ret;
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 if (assert == IGMPMSG_WHOLEPKT)
1012 skb = skb_realloc_headroom(pkt, sizeof(struct iphdr));
1013 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 skb = alloc_skb(128, GFP_ATOMIC);
1015
Stephen Hemminger132adf52007-03-08 20:44:43 -08001016 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 return -ENOBUFS;
1018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 if (assert == IGMPMSG_WHOLEPKT) {
1020 /* Ugly, but we have no choice with this interface.
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001021 * Duplicate old header, fix ihl, length etc.
1022 * And all this only to mangle msg->im_msgtype and
1023 * to set msg->im_mbz to "mbz" :-)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 */
Arnaldo Carvalho de Melo878c8142007-03-11 22:38:29 -03001025 skb_push(skb, sizeof(struct iphdr));
1026 skb_reset_network_header(skb);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03001027 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melo0272ffc2007-03-12 20:05:39 -03001028 msg = (struct igmpmsg *)skb_network_header(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001029 memcpy(msg, skb_network_header(pkt), sizeof(struct iphdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 msg->im_msgtype = IGMPMSG_WHOLEPKT;
1031 msg->im_mbz = 0;
Patrick McHardy0c122952010-04-13 05:03:22 +00001032 msg->im_vif = mrt->mroute_reg_vif_num;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001033 ip_hdr(skb)->ihl = sizeof(struct iphdr) >> 2;
1034 ip_hdr(skb)->tot_len = htons(ntohs(ip_hdr(pkt)->tot_len) +
1035 sizeof(struct iphdr));
Nikolay Aleksandrovc316c622015-11-21 15:57:26 +01001036 } else {
1037 /* Copy the IP header */
1038 skb_set_network_header(skb, skb->len);
1039 skb_put(skb, ihl);
1040 skb_copy_to_linear_data(skb, pkt->data, ihl);
1041 /* Flag to the kernel this is a route add */
1042 ip_hdr(skb)->protocol = 0;
1043 msg = (struct igmpmsg *)skb_network_header(skb);
1044 msg->im_vif = vifi;
1045 skb_dst_set(skb, dst_clone(skb_dst(pkt)));
1046 /* Add our header */
1047 igmp = (struct igmphdr *)skb_put(skb, sizeof(struct igmphdr));
1048 igmp->type = assert;
1049 msg->im_msgtype = assert;
1050 igmp->code = 0;
1051 ip_hdr(skb)->tot_len = htons(skb->len); /* Fix the length */
1052 skb->transport_header = skb->network_header;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Eric Dumazet4c968702010-10-01 16:15:01 +00001055 rcu_read_lock();
1056 mroute_sk = rcu_dereference(mrt->mroute_sk);
Ian Morris51456b22015-04-03 09:17:26 +01001057 if (!mroute_sk) {
Eric Dumazet4c968702010-10-01 16:15:01 +00001058 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 kfree_skb(skb);
1060 return -EINVAL;
1061 }
1062
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001063 /* Deliver to mrouted */
Eric Dumazet4c968702010-10-01 16:15:01 +00001064 ret = sock_queue_rcv_skb(mroute_sk, skb);
1065 rcu_read_unlock();
Benjamin Thery70a269e2009-01-22 04:56:15 +00001066 if (ret < 0) {
Joe Perchese87cc472012-05-13 21:56:26 +00001067 net_warn_ratelimited("mroute: pending queue full, dropping entries\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 kfree_skb(skb);
1069 }
1070
1071 return ret;
1072}
1073
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001074/* Queue a packet for resolution. It gets locked cache entry! */
1075static int ipmr_cache_unresolved(struct mr_table *mrt, vifi_t vifi,
1076 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01001078 const struct iphdr *iph = ip_hdr(skb);
1079 struct mfc_cache *c;
Patrick McHardy862465f2010-04-13 05:03:21 +00001080 bool found = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
1083 spin_lock_bh(&mfc_unres_lock);
Patrick McHardy0c122952010-04-13 05:03:22 +00001084 list_for_each_entry(c, &mrt->mfc_unres_queue, list) {
Patrick McHardye258beb2010-04-13 05:03:19 +00001085 if (c->mfc_mcastgrp == iph->daddr &&
Patrick McHardy862465f2010-04-13 05:03:21 +00001086 c->mfc_origin == iph->saddr) {
1087 found = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 break;
Patrick McHardy862465f2010-04-13 05:03:21 +00001089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 }
1091
Patrick McHardy862465f2010-04-13 05:03:21 +00001092 if (!found) {
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001093 /* Create a new entry if allowable */
Patrick McHardy0c122952010-04-13 05:03:22 +00001094 if (atomic_read(&mrt->cache_resolve_queue_len) >= 10 ||
Patrick McHardyd658f8a2010-04-13 05:03:20 +00001095 (c = ipmr_cache_alloc_unres()) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 spin_unlock_bh(&mfc_unres_lock);
1097
1098 kfree_skb(skb);
1099 return -ENOBUFS;
1100 }
1101
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001102 /* Fill in the new cache entry */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001103 c->mfc_parent = -1;
1104 c->mfc_origin = iph->saddr;
1105 c->mfc_mcastgrp = iph->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001107 /* Reflect first query at mrouted. */
Patrick McHardy0c122952010-04-13 05:03:22 +00001108 err = ipmr_cache_report(mrt, skb, vifi, IGMPMSG_NOCACHE);
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001109 if (err < 0) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001110 /* If the report failed throw the cache entry
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 out - Brad Parker
1112 */
1113 spin_unlock_bh(&mfc_unres_lock);
1114
Benjamin Thery5c0a66f2009-01-22 04:56:17 +00001115 ipmr_cache_free(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 kfree_skb(skb);
1117 return err;
1118 }
1119
Patrick McHardy0c122952010-04-13 05:03:22 +00001120 atomic_inc(&mrt->cache_resolve_queue_len);
1121 list_add(&c->list, &mrt->mfc_unres_queue);
Nicolas Dichtel8cd3ac92012-12-04 01:13:40 +00001122 mroute_netlink_event(mrt, c, RTM_NEWROUTE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
David S. Miller278554b2010-05-12 00:05:35 -07001124 if (atomic_read(&mrt->cache_resolve_queue_len) == 1)
1125 mod_timer(&mrt->ipmr_expire_timer, c->mfc_un.unres.expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 }
1127
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001128 /* See if we can append the packet */
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001129 if (c->mfc_un.unres.unresolved.qlen > 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 kfree_skb(skb);
1131 err = -ENOBUFS;
1132 } else {
Jianjun Kongc354e122008-11-03 00:28:02 -08001133 skb_queue_tail(&c->mfc_un.unres.unresolved, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 err = 0;
1135 }
1136
1137 spin_unlock_bh(&mfc_unres_lock);
1138 return err;
1139}
1140
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001141/* MFC cache manipulation by user space mroute daemon */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001143static int ipmr_mfc_delete(struct mr_table *mrt, struct mfcctl *mfc, int parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01001145 struct mfc_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01001147 /* The entries are added/deleted only under RTNL */
1148 rcu_read_lock();
1149 c = ipmr_cache_find_parent(mrt, mfc->mfcc_origin.s_addr,
1150 mfc->mfcc_mcastgrp.s_addr, parent);
1151 rcu_read_unlock();
1152 if (!c)
1153 return -ENOENT;
1154 rhltable_remove(&mrt->mfc_hash, &c->mnode, ipmr_rht_params);
1155 list_del_rcu(&c->list);
1156 mroute_netlink_event(mrt, c, RTM_DELROUTE);
1157 ipmr_cache_free(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01001159 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160}
1161
Patrick McHardy0c122952010-04-13 05:03:22 +00001162static int ipmr_mfc_add(struct net *net, struct mr_table *mrt,
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001163 struct mfcctl *mfc, int mrtsock, int parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164{
Patrick McHardy862465f2010-04-13 05:03:21 +00001165 struct mfc_cache *uc, *c;
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01001166 bool found;
1167 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Patrick McHardya50436f22010-03-17 06:04:14 +00001169 if (mfc->mfcc_parent >= MAXVIFS)
1170 return -ENFILE;
1171
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01001172 /* The entries are added/deleted only under RTNL */
1173 rcu_read_lock();
1174 c = ipmr_cache_find_parent(mrt, mfc->mfcc_origin.s_addr,
1175 mfc->mfcc_mcastgrp.s_addr, parent);
1176 rcu_read_unlock();
1177 if (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 write_lock_bh(&mrt_lock);
1179 c->mfc_parent = mfc->mfcc_parent;
Patrick McHardy0c122952010-04-13 05:03:22 +00001180 ipmr_update_thresholds(mrt, c, mfc->mfcc_ttls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 if (!mrtsock)
1182 c->mfc_flags |= MFC_STATIC;
1183 write_unlock_bh(&mrt_lock);
Nicolas Dichtel8cd3ac92012-12-04 01:13:40 +00001184 mroute_netlink_event(mrt, c, RTM_NEWROUTE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 return 0;
1186 }
1187
Nicolas Dichtel360eb5d2013-01-22 11:18:03 +01001188 if (mfc->mfcc_mcastgrp.s_addr != htonl(INADDR_ANY) &&
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001189 !ipv4_is_multicast(mfc->mfcc_mcastgrp.s_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return -EINVAL;
1191
Patrick McHardyd658f8a2010-04-13 05:03:20 +00001192 c = ipmr_cache_alloc();
Ian Morris51456b22015-04-03 09:17:26 +01001193 if (!c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 return -ENOMEM;
1195
Jianjun Kongc354e122008-11-03 00:28:02 -08001196 c->mfc_origin = mfc->mfcc_origin.s_addr;
1197 c->mfc_mcastgrp = mfc->mfcc_mcastgrp.s_addr;
1198 c->mfc_parent = mfc->mfcc_parent;
Patrick McHardy0c122952010-04-13 05:03:22 +00001199 ipmr_update_thresholds(mrt, c, mfc->mfcc_ttls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 if (!mrtsock)
1201 c->mfc_flags |= MFC_STATIC;
1202
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01001203 ret = rhltable_insert_key(&mrt->mfc_hash, &c->cmparg, &c->mnode,
1204 ipmr_rht_params);
1205 if (ret) {
1206 pr_err("ipmr: rhtable insert error %d\n", ret);
1207 ipmr_cache_free(c);
1208 return ret;
1209 }
1210 list_add_tail_rcu(&c->list, &mrt->mfc_cache_list);
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001211 /* Check to see if we resolved a queued list. If so we
1212 * need to send on the frames and tidy up.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 */
Patrick McHardyb0ebb732010-04-15 13:29:28 +02001214 found = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 spin_lock_bh(&mfc_unres_lock);
Patrick McHardy0c122952010-04-13 05:03:22 +00001216 list_for_each_entry(uc, &mrt->mfc_unres_queue, list) {
Patrick McHardye258beb2010-04-13 05:03:19 +00001217 if (uc->mfc_origin == c->mfc_origin &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 uc->mfc_mcastgrp == c->mfc_mcastgrp) {
Patrick McHardy862465f2010-04-13 05:03:21 +00001219 list_del(&uc->list);
Patrick McHardy0c122952010-04-13 05:03:22 +00001220 atomic_dec(&mrt->cache_resolve_queue_len);
Patrick McHardyb0ebb732010-04-15 13:29:28 +02001221 found = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 break;
1223 }
1224 }
Patrick McHardy0c122952010-04-13 05:03:22 +00001225 if (list_empty(&mrt->mfc_unres_queue))
1226 del_timer(&mrt->ipmr_expire_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 spin_unlock_bh(&mfc_unres_lock);
1228
Patrick McHardyb0ebb732010-04-15 13:29:28 +02001229 if (found) {
Patrick McHardy0c122952010-04-13 05:03:22 +00001230 ipmr_cache_resolve(net, mrt, uc, c);
Benjamin Thery5c0a66f2009-01-22 04:56:17 +00001231 ipmr_cache_free(uc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
Nicolas Dichtel8cd3ac92012-12-04 01:13:40 +00001233 mroute_netlink_event(mrt, c, RTM_NEWROUTE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 return 0;
1235}
1236
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001237/* Close the multicast socket, and clear the vif tables etc */
Nikolay Aleksandrov0e615e92015-11-20 13:54:19 +01001238static void mroute_clean_tables(struct mr_table *mrt, bool all)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239{
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01001240 struct mfc_cache *c, *tmp;
Eric Dumazetd17fa6f2009-10-28 05:21:38 +00001241 LIST_HEAD(list);
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01001242 int i;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001243
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001244 /* Shut down all active vif entries */
Patrick McHardy0c122952010-04-13 05:03:22 +00001245 for (i = 0; i < mrt->maxvif; i++) {
Nikolay Aleksandrov0e615e92015-11-20 13:54:19 +01001246 if (!all && (mrt->vif_table[i].flags & VIFF_STATIC))
1247 continue;
1248 vif_delete(mrt, i, 0, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
Eric Dumazetd17fa6f2009-10-28 05:21:38 +00001250 unregister_netdevice_many(&list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001252 /* Wipe the cache */
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01001253 list_for_each_entry_safe(c, tmp, &mrt->mfc_cache_list, list) {
1254 if (!all && (c->mfc_flags & MFC_STATIC))
1255 continue;
1256 rhltable_remove(&mrt->mfc_hash, &c->mnode, ipmr_rht_params);
1257 list_del_rcu(&c->list);
1258 mroute_netlink_event(mrt, c, RTM_DELROUTE);
1259 ipmr_cache_free(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 }
1261
Patrick McHardy0c122952010-04-13 05:03:22 +00001262 if (atomic_read(&mrt->cache_resolve_queue_len) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 spin_lock_bh(&mfc_unres_lock);
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01001264 list_for_each_entry_safe(c, tmp, &mrt->mfc_unres_queue, list) {
Patrick McHardy862465f2010-04-13 05:03:21 +00001265 list_del(&c->list);
Nicolas Dichtel8cd3ac92012-12-04 01:13:40 +00001266 mroute_netlink_event(mrt, c, RTM_DELROUTE);
Patrick McHardy0c122952010-04-13 05:03:22 +00001267 ipmr_destroy_unres(mrt, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
1269 spin_unlock_bh(&mfc_unres_lock);
1270 }
1271}
1272
Eric Dumazet4c968702010-10-01 16:15:01 +00001273/* called from ip_ra_control(), before an RCU grace period,
1274 * we dont need to call synchronize_rcu() here
1275 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276static void mrtsock_destruct(struct sock *sk)
1277{
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001278 struct net *net = sock_net(sk);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001279 struct mr_table *mrt;
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 rtnl_lock();
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001282 ipmr_for_each_table(mrt, net) {
Eric Dumazet4c968702010-10-01 16:15:01 +00001283 if (sk == rtnl_dereference(mrt->mroute_sk)) {
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001284 IPV4_DEVCONF_ALL(net, MC_FORWARDING)--;
David Ahern3b022862017-03-28 14:28:02 -07001285 inet_netconf_notify_devconf(net, RTM_NEWNETCONF,
1286 NETCONFA_MC_FORWARDING,
Nicolas Dichteld67b8c62012-12-04 01:13:35 +00001287 NETCONFA_IFINDEX_ALL,
1288 net->ipv4.devconf_all);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001289 RCU_INIT_POINTER(mrt->mroute_sk, NULL);
Nikolay Aleksandrov0e615e92015-11-20 13:54:19 +01001290 mroute_clean_tables(mrt, false);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 }
1293 rtnl_unlock();
1294}
1295
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001296/* Socket options and virtual interface manipulation. The whole
1297 * virtual interface system is a complete heap, but unfortunately
1298 * that's how BSD mrouted happens to think. Maybe one day with a proper
1299 * MOSPF/PIM router set up we can clean this up.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001301
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001302int ip_mroute_setsockopt(struct sock *sk, int optname, char __user *optval,
1303 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001305 struct net *net = sock_net(sk);
1306 int val, ret = 0, parent = 0;
1307 struct mr_table *mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 struct vifctl vif;
1309 struct mfcctl mfc;
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001310 u32 uval;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001311
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001312 /* There's one exception to the lock - MRT_DONE which needs to unlock */
1313 rtnl_lock();
Eric Dumazet5e1859f2012-11-25 06:41:45 +00001314 if (sk->sk_type != SOCK_RAW ||
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001315 inet_sk(sk)->inet_num != IPPROTO_IGMP) {
1316 ret = -EOPNOTSUPP;
1317 goto out_unlock;
1318 }
Eric Dumazet5e1859f2012-11-25 06:41:45 +00001319
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001320 mrt = ipmr_get_table(net, raw_sk(sk)->ipmr_table ? : RT_TABLE_DEFAULT);
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001321 if (!mrt) {
1322 ret = -ENOENT;
1323 goto out_unlock;
1324 }
Stephen Hemminger132adf52007-03-08 20:44:43 -08001325 if (optname != MRT_INIT) {
Eric Dumazet33d480c2011-08-11 19:30:52 +00001326 if (sk != rcu_access_pointer(mrt->mroute_sk) &&
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001327 !ns_capable(net->user_ns, CAP_NET_ADMIN)) {
1328 ret = -EACCES;
1329 goto out_unlock;
1330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 }
1332
Stephen Hemminger132adf52007-03-08 20:44:43 -08001333 switch (optname) {
1334 case MRT_INIT:
Nikolay Aleksandrov42e6b892015-11-26 15:23:49 +01001335 if (optlen != sizeof(int)) {
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001336 ret = -EINVAL;
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001337 break;
Nikolay Aleksandrov42e6b892015-11-26 15:23:49 +01001338 }
1339 if (rtnl_dereference(mrt->mroute_sk)) {
1340 ret = -EADDRINUSE;
1341 break;
1342 }
Stephen Hemminger132adf52007-03-08 20:44:43 -08001343
1344 ret = ip_ra_control(sk, 1, mrtsock_destruct);
1345 if (ret == 0) {
Eric Dumazetcf778b02012-01-12 04:41:32 +00001346 rcu_assign_pointer(mrt->mroute_sk, sk);
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001347 IPV4_DEVCONF_ALL(net, MC_FORWARDING)++;
David Ahern3b022862017-03-28 14:28:02 -07001348 inet_netconf_notify_devconf(net, RTM_NEWNETCONF,
1349 NETCONFA_MC_FORWARDING,
Nicolas Dichteld67b8c62012-12-04 01:13:35 +00001350 NETCONFA_IFINDEX_ALL,
1351 net->ipv4.devconf_all);
Stephen Hemminger132adf52007-03-08 20:44:43 -08001352 }
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001353 break;
Stephen Hemminger132adf52007-03-08 20:44:43 -08001354 case MRT_DONE:
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001355 if (sk != rcu_access_pointer(mrt->mroute_sk)) {
1356 ret = -EACCES;
1357 } else {
1358 /* We need to unlock here because mrtsock_destruct takes
1359 * care of rtnl itself and we can't change that due to
1360 * the IP_ROUTER_ALERT setsockopt which runs without it.
1361 */
1362 rtnl_unlock();
1363 ret = ip_ra_control(sk, 0, NULL);
1364 goto out;
1365 }
1366 break;
Stephen Hemminger132adf52007-03-08 20:44:43 -08001367 case MRT_ADD_VIF:
1368 case MRT_DEL_VIF:
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001369 if (optlen != sizeof(vif)) {
1370 ret = -EINVAL;
1371 break;
1372 }
1373 if (copy_from_user(&vif, optval, sizeof(vif))) {
1374 ret = -EFAULT;
1375 break;
1376 }
1377 if (vif.vifc_vifi >= MAXVIFS) {
1378 ret = -ENFILE;
1379 break;
1380 }
Jianjun Kongc354e122008-11-03 00:28:02 -08001381 if (optname == MRT_ADD_VIF) {
Eric Dumazet4c968702010-10-01 16:15:01 +00001382 ret = vif_add(net, mrt, &vif,
1383 sk == rtnl_dereference(mrt->mroute_sk));
Stephen Hemminger132adf52007-03-08 20:44:43 -08001384 } else {
Patrick McHardy0c122952010-04-13 05:03:22 +00001385 ret = vif_delete(mrt, vif.vifc_vifi, 0, NULL);
Stephen Hemminger132adf52007-03-08 20:44:43 -08001386 }
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001387 break;
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001388 /* Manipulate the forwarding caches. These live
1389 * in a sort of kernel/user symbiosis.
1390 */
Stephen Hemminger132adf52007-03-08 20:44:43 -08001391 case MRT_ADD_MFC:
1392 case MRT_DEL_MFC:
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001393 parent = -1;
1394 case MRT_ADD_MFC_PROXY:
1395 case MRT_DEL_MFC_PROXY:
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001396 if (optlen != sizeof(mfc)) {
1397 ret = -EINVAL;
1398 break;
1399 }
1400 if (copy_from_user(&mfc, optval, sizeof(mfc))) {
1401 ret = -EFAULT;
1402 break;
1403 }
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001404 if (parent == 0)
1405 parent = mfc.mfcc_parent;
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001406 if (optname == MRT_DEL_MFC || optname == MRT_DEL_MFC_PROXY)
1407 ret = ipmr_mfc_delete(mrt, &mfc, parent);
Stephen Hemminger132adf52007-03-08 20:44:43 -08001408 else
Eric Dumazet4c968702010-10-01 16:15:01 +00001409 ret = ipmr_mfc_add(net, mrt, &mfc,
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001410 sk == rtnl_dereference(mrt->mroute_sk),
1411 parent);
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001412 break;
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001413 /* Control PIM assert. */
Stephen Hemminger132adf52007-03-08 20:44:43 -08001414 case MRT_ASSERT:
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001415 if (optlen != sizeof(val)) {
1416 ret = -EINVAL;
1417 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 }
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001419 if (get_user(val, (int __user *)optval)) {
1420 ret = -EFAULT;
1421 break;
1422 }
1423 mrt->mroute_do_assert = val;
1424 break;
1425 case MRT_PIM:
Nikolay Aleksandrov1973a4e2015-11-26 15:23:48 +01001426 if (!ipmr_pimsm_enabled()) {
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001427 ret = -ENOPROTOOPT;
1428 break;
1429 }
1430 if (optlen != sizeof(val)) {
1431 ret = -EINVAL;
1432 break;
1433 }
1434 if (get_user(val, (int __user *)optval)) {
1435 ret = -EFAULT;
1436 break;
1437 }
1438
1439 val = !!val;
1440 if (val != mrt->mroute_do_pim) {
1441 mrt->mroute_do_pim = val;
1442 mrt->mroute_do_assert = val;
1443 }
1444 break;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001445 case MRT_TABLE:
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001446 if (!IS_BUILTIN(CONFIG_IP_MROUTE_MULTIPLE_TABLES)) {
1447 ret = -ENOPROTOOPT;
1448 break;
1449 }
1450 if (optlen != sizeof(uval)) {
1451 ret = -EINVAL;
1452 break;
1453 }
1454 if (get_user(uval, (u32 __user *)optval)) {
1455 ret = -EFAULT;
1456 break;
1457 }
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001458
Eric Dumazet4c968702010-10-01 16:15:01 +00001459 if (sk == rtnl_dereference(mrt->mroute_sk)) {
1460 ret = -EBUSY;
1461 } else {
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001462 mrt = ipmr_new_table(net, uval);
Nikolay Aleksandrov1113ebb2015-11-21 15:57:24 +01001463 if (IS_ERR(mrt))
1464 ret = PTR_ERR(mrt);
Eric Dumazet5e1859f2012-11-25 06:41:45 +00001465 else
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001466 raw_sk(sk)->ipmr_table = uval;
Eric Dumazet4c968702010-10-01 16:15:01 +00001467 }
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001468 break;
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001469 /* Spurious command, or MRT_VERSION which you cannot set. */
Stephen Hemminger132adf52007-03-08 20:44:43 -08001470 default:
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001471 ret = -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 }
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001473out_unlock:
1474 rtnl_unlock();
1475out:
1476 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477}
1478
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001479/* Getsock opt support for the multicast routing system. */
Jianjun Kongc354e122008-11-03 00:28:02 -08001480int ip_mroute_getsockopt(struct sock *sk, int optname, char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481{
1482 int olr;
1483 int val;
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001484 struct net *net = sock_net(sk);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001485 struct mr_table *mrt;
1486
Eric Dumazet5e1859f2012-11-25 06:41:45 +00001487 if (sk->sk_type != SOCK_RAW ||
1488 inet_sk(sk)->inet_num != IPPROTO_IGMP)
1489 return -EOPNOTSUPP;
1490
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001491 mrt = ipmr_get_table(net, raw_sk(sk)->ipmr_table ? : RT_TABLE_DEFAULT);
Ian Morris51456b22015-04-03 09:17:26 +01001492 if (!mrt)
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001493 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Nikolay Aleksandrovfe9ef3c2015-11-21 15:57:28 +01001495 switch (optname) {
1496 case MRT_VERSION:
Jianjun Kongc354e122008-11-03 00:28:02 -08001497 val = 0x0305;
Nikolay Aleksandrovfe9ef3c2015-11-21 15:57:28 +01001498 break;
1499 case MRT_PIM:
Nikolay Aleksandrov1973a4e2015-11-26 15:23:48 +01001500 if (!ipmr_pimsm_enabled())
Nikolay Aleksandrovc316c622015-11-21 15:57:26 +01001501 return -ENOPROTOOPT;
Patrick McHardy0c122952010-04-13 05:03:22 +00001502 val = mrt->mroute_do_pim;
Nikolay Aleksandrovfe9ef3c2015-11-21 15:57:28 +01001503 break;
1504 case MRT_ASSERT:
Patrick McHardy0c122952010-04-13 05:03:22 +00001505 val = mrt->mroute_do_assert;
Nikolay Aleksandrovfe9ef3c2015-11-21 15:57:28 +01001506 break;
1507 default:
1508 return -ENOPROTOOPT;
Nikolay Aleksandrovc316c622015-11-21 15:57:26 +01001509 }
Nikolay Aleksandrovfe9ef3c2015-11-21 15:57:28 +01001510
1511 if (get_user(olr, optlen))
1512 return -EFAULT;
1513 olr = min_t(unsigned int, olr, sizeof(int));
1514 if (olr < 0)
1515 return -EINVAL;
1516 if (put_user(olr, optlen))
1517 return -EFAULT;
Jianjun Kongc354e122008-11-03 00:28:02 -08001518 if (copy_to_user(optval, &val, olr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 return -EFAULT;
1520 return 0;
1521}
1522
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001523/* The IP multicast ioctl support routines. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524int ipmr_ioctl(struct sock *sk, int cmd, void __user *arg)
1525{
1526 struct sioc_sg_req sr;
1527 struct sioc_vif_req vr;
1528 struct vif_device *vif;
1529 struct mfc_cache *c;
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001530 struct net *net = sock_net(sk);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001531 struct mr_table *mrt;
1532
1533 mrt = ipmr_get_table(net, raw_sk(sk)->ipmr_table ? : RT_TABLE_DEFAULT);
Ian Morris51456b22015-04-03 09:17:26 +01001534 if (!mrt)
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001535 return -ENOENT;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001536
Stephen Hemminger132adf52007-03-08 20:44:43 -08001537 switch (cmd) {
1538 case SIOCGETVIFCNT:
Jianjun Kongc354e122008-11-03 00:28:02 -08001539 if (copy_from_user(&vr, arg, sizeof(vr)))
Stephen Hemminger132adf52007-03-08 20:44:43 -08001540 return -EFAULT;
Patrick McHardy0c122952010-04-13 05:03:22 +00001541 if (vr.vifi >= mrt->maxvif)
Stephen Hemminger132adf52007-03-08 20:44:43 -08001542 return -EINVAL;
1543 read_lock(&mrt_lock);
Patrick McHardy0c122952010-04-13 05:03:22 +00001544 vif = &mrt->vif_table[vr.vifi];
1545 if (VIF_EXISTS(mrt, vr.vifi)) {
Jianjun Kongc354e122008-11-03 00:28:02 -08001546 vr.icount = vif->pkt_in;
1547 vr.ocount = vif->pkt_out;
1548 vr.ibytes = vif->bytes_in;
1549 vr.obytes = vif->bytes_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 read_unlock(&mrt_lock);
Stephen Hemminger132adf52007-03-08 20:44:43 -08001551
Jianjun Kongc354e122008-11-03 00:28:02 -08001552 if (copy_to_user(arg, &vr, sizeof(vr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 return -EFAULT;
Stephen Hemminger132adf52007-03-08 20:44:43 -08001554 return 0;
1555 }
1556 read_unlock(&mrt_lock);
1557 return -EADDRNOTAVAIL;
1558 case SIOCGETSGCNT:
Jianjun Kongc354e122008-11-03 00:28:02 -08001559 if (copy_from_user(&sr, arg, sizeof(sr)))
Stephen Hemminger132adf52007-03-08 20:44:43 -08001560 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Eric Dumazeta8c94862010-10-01 16:15:08 +00001562 rcu_read_lock();
Patrick McHardy0c122952010-04-13 05:03:22 +00001563 c = ipmr_cache_find(mrt, sr.src.s_addr, sr.grp.s_addr);
Stephen Hemminger132adf52007-03-08 20:44:43 -08001564 if (c) {
1565 sr.pktcnt = c->mfc_un.res.pkt;
1566 sr.bytecnt = c->mfc_un.res.bytes;
1567 sr.wrong_if = c->mfc_un.res.wrong_if;
Eric Dumazeta8c94862010-10-01 16:15:08 +00001568 rcu_read_unlock();
Stephen Hemminger132adf52007-03-08 20:44:43 -08001569
Jianjun Kongc354e122008-11-03 00:28:02 -08001570 if (copy_to_user(arg, &sr, sizeof(sr)))
Stephen Hemminger132adf52007-03-08 20:44:43 -08001571 return -EFAULT;
1572 return 0;
1573 }
Eric Dumazeta8c94862010-10-01 16:15:08 +00001574 rcu_read_unlock();
Stephen Hemminger132adf52007-03-08 20:44:43 -08001575 return -EADDRNOTAVAIL;
1576 default:
1577 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 }
1579}
1580
Eric W. Biederman709b46e2011-01-29 16:15:56 +00001581#ifdef CONFIG_COMPAT
1582struct compat_sioc_sg_req {
1583 struct in_addr src;
1584 struct in_addr grp;
1585 compat_ulong_t pktcnt;
1586 compat_ulong_t bytecnt;
1587 compat_ulong_t wrong_if;
1588};
1589
David S. Millerca6b8bb02011-02-03 17:24:28 -08001590struct compat_sioc_vif_req {
1591 vifi_t vifi; /* Which iface */
1592 compat_ulong_t icount;
1593 compat_ulong_t ocount;
1594 compat_ulong_t ibytes;
1595 compat_ulong_t obytes;
1596};
1597
Eric W. Biederman709b46e2011-01-29 16:15:56 +00001598int ipmr_compat_ioctl(struct sock *sk, unsigned int cmd, void __user *arg)
1599{
David S. Miller0033d5a2011-02-03 17:21:31 -08001600 struct compat_sioc_sg_req sr;
David S. Millerca6b8bb02011-02-03 17:24:28 -08001601 struct compat_sioc_vif_req vr;
1602 struct vif_device *vif;
Eric W. Biederman709b46e2011-01-29 16:15:56 +00001603 struct mfc_cache *c;
1604 struct net *net = sock_net(sk);
1605 struct mr_table *mrt;
1606
1607 mrt = ipmr_get_table(net, raw_sk(sk)->ipmr_table ? : RT_TABLE_DEFAULT);
Ian Morris51456b22015-04-03 09:17:26 +01001608 if (!mrt)
Eric W. Biederman709b46e2011-01-29 16:15:56 +00001609 return -ENOENT;
1610
1611 switch (cmd) {
David S. Millerca6b8bb02011-02-03 17:24:28 -08001612 case SIOCGETVIFCNT:
1613 if (copy_from_user(&vr, arg, sizeof(vr)))
1614 return -EFAULT;
1615 if (vr.vifi >= mrt->maxvif)
1616 return -EINVAL;
1617 read_lock(&mrt_lock);
1618 vif = &mrt->vif_table[vr.vifi];
1619 if (VIF_EXISTS(mrt, vr.vifi)) {
1620 vr.icount = vif->pkt_in;
1621 vr.ocount = vif->pkt_out;
1622 vr.ibytes = vif->bytes_in;
1623 vr.obytes = vif->bytes_out;
1624 read_unlock(&mrt_lock);
1625
1626 if (copy_to_user(arg, &vr, sizeof(vr)))
1627 return -EFAULT;
1628 return 0;
1629 }
1630 read_unlock(&mrt_lock);
1631 return -EADDRNOTAVAIL;
Eric W. Biederman709b46e2011-01-29 16:15:56 +00001632 case SIOCGETSGCNT:
1633 if (copy_from_user(&sr, arg, sizeof(sr)))
1634 return -EFAULT;
1635
1636 rcu_read_lock();
1637 c = ipmr_cache_find(mrt, sr.src.s_addr, sr.grp.s_addr);
1638 if (c) {
1639 sr.pktcnt = c->mfc_un.res.pkt;
1640 sr.bytecnt = c->mfc_un.res.bytes;
1641 sr.wrong_if = c->mfc_un.res.wrong_if;
1642 rcu_read_unlock();
1643
1644 if (copy_to_user(arg, &sr, sizeof(sr)))
1645 return -EFAULT;
1646 return 0;
1647 }
1648 rcu_read_unlock();
1649 return -EADDRNOTAVAIL;
1650 default:
1651 return -ENOIOCTLCMD;
1652 }
1653}
1654#endif
1655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656static int ipmr_device_event(struct notifier_block *this, unsigned long event, void *ptr)
1657{
Jiri Pirko351638e2013-05-28 01:30:21 +00001658 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001659 struct net *net = dev_net(dev);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001660 struct mr_table *mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 struct vif_device *v;
1662 int ct;
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 if (event != NETDEV_UNREGISTER)
1665 return NOTIFY_DONE;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001666
1667 ipmr_for_each_table(mrt, net) {
1668 v = &mrt->vif_table[0];
1669 for (ct = 0; ct < mrt->maxvif; ct++, v++) {
1670 if (v->dev == dev)
RongQing.Lie92036a2011-11-23 23:10:52 +00001671 vif_delete(mrt, ct, 1, NULL);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 }
1674 return NOTIFY_DONE;
1675}
1676
Jianjun Kongc354e122008-11-03 00:28:02 -08001677static struct notifier_block ip_mr_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 .notifier_call = ipmr_device_event,
1679};
1680
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001681/* Encapsulate a packet by attaching a valid IPIP header to it.
1682 * This avoids tunnel drivers and other mess and gives us the speed so
1683 * important for multicast video.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 */
Hannes Frederic Sowab6a77192015-03-25 17:07:44 +01001685static void ip_encap(struct net *net, struct sk_buff *skb,
1686 __be32 saddr, __be32 daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687{
Arnaldo Carvalho de Melo8856dfa2007-03-10 19:40:39 -03001688 struct iphdr *iph;
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001689 const struct iphdr *old_iph = ip_hdr(skb);
Arnaldo Carvalho de Melo8856dfa2007-03-10 19:40:39 -03001690
1691 skb_push(skb, sizeof(struct iphdr));
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001692 skb->transport_header = skb->network_header;
Arnaldo Carvalho de Melo8856dfa2007-03-10 19:40:39 -03001693 skb_reset_network_header(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001694 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001696 iph->version = 4;
Arnaldo Carvalho de Meloe023dd62007-03-12 20:09:36 -03001697 iph->tos = old_iph->tos;
1698 iph->ttl = old_iph->ttl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 iph->frag_off = 0;
1700 iph->daddr = daddr;
1701 iph->saddr = saddr;
1702 iph->protocol = IPPROTO_IPIP;
1703 iph->ihl = 5;
1704 iph->tot_len = htons(skb->len);
Hannes Frederic Sowab6a77192015-03-25 17:07:44 +01001705 ip_select_ident(net, skb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 ip_send_check(iph);
1707
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
1709 nf_reset(skb);
1710}
1711
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05001712static inline int ipmr_forward_finish(struct net *net, struct sock *sk,
1713 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714{
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001715 struct ip_options *opt = &(IPCB(skb)->opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
David S. Miller73186df2015-11-03 13:41:45 -05001717 IP_INC_STATS(net, IPSTATS_MIB_OUTFORWDATAGRAMS);
1718 IP_ADD_STATS(net, IPSTATS_MIB_OUTOCTETS, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
1720 if (unlikely(opt->optlen))
1721 ip_forward_options(skb);
1722
Eric W. Biederman13206b62015-10-07 16:48:35 -05001723 return dst_output(net, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724}
1725
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001726/* Processing handlers for ipmr_forward */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Patrick McHardy0c122952010-04-13 05:03:22 +00001728static void ipmr_queue_xmit(struct net *net, struct mr_table *mrt,
1729 struct sk_buff *skb, struct mfc_cache *c, int vifi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001731 const struct iphdr *iph = ip_hdr(skb);
Patrick McHardy0c122952010-04-13 05:03:22 +00001732 struct vif_device *vif = &mrt->vif_table[vifi];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 struct net_device *dev;
1734 struct rtable *rt;
David S. Miller31e4543d2011-05-03 20:25:42 -07001735 struct flowi4 fl4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 int encap = 0;
1737
Ian Morris51456b22015-04-03 09:17:26 +01001738 if (!vif->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 goto out_free;
1740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 if (vif->flags & VIFF_REGISTER) {
1742 vif->pkt_out++;
Jianjun Kongc354e122008-11-03 00:28:02 -08001743 vif->bytes_out += skb->len;
Pavel Emelyanovcf3677a2008-05-21 14:17:33 -07001744 vif->dev->stats.tx_bytes += skb->len;
1745 vif->dev->stats.tx_packets++;
Patrick McHardy0c122952010-04-13 05:03:22 +00001746 ipmr_cache_report(mrt, skb, vifi, IGMPMSG_WHOLEPKT);
Ilpo Järvinen69ebbf52009-02-06 23:46:51 -08001747 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001750 if (vif->flags & VIFF_TUNNEL) {
David S. Miller31e4543d2011-05-03 20:25:42 -07001751 rt = ip_route_output_ports(net, &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -05001752 vif->remote, vif->local,
1753 0, 0,
1754 IPPROTO_IPIP,
1755 RT_TOS(iph->tos), vif->link);
David S. Millerb23dd4f2011-03-02 14:31:35 -08001756 if (IS_ERR(rt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 goto out_free;
1758 encap = sizeof(struct iphdr);
1759 } else {
David S. Miller31e4543d2011-05-03 20:25:42 -07001760 rt = ip_route_output_ports(net, &fl4, NULL, iph->daddr, 0,
David S. Miller78fbfd82011-03-12 00:00:52 -05001761 0, 0,
1762 IPPROTO_IPIP,
1763 RT_TOS(iph->tos), vif->link);
David S. Millerb23dd4f2011-03-02 14:31:35 -08001764 if (IS_ERR(rt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 goto out_free;
1766 }
1767
Changli Gaod8d1f302010-06-10 23:31:35 -07001768 dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
Changli Gaod8d1f302010-06-10 23:31:35 -07001770 if (skb->len+encap > dst_mtu(&rt->dst) && (ntohs(iph->frag_off) & IP_DF)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 /* Do not fragment multicasts. Alas, IPv4 does not
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001772 * allow to send ICMP, so that packets will disappear
1773 * to blackhole.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 */
David S. Miller73186df2015-11-03 13:41:45 -05001775 IP_INC_STATS(net, IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 ip_rt_put(rt);
1777 goto out_free;
1778 }
1779
Changli Gaod8d1f302010-06-10 23:31:35 -07001780 encap += LL_RESERVED_SPACE(dev) + rt->dst.header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
1782 if (skb_cow(skb, encap)) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001783 ip_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 goto out_free;
1785 }
1786
1787 vif->pkt_out++;
Jianjun Kongc354e122008-11-03 00:28:02 -08001788 vif->bytes_out += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
Eric Dumazetadf30902009-06-02 05:19:30 +00001790 skb_dst_drop(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -07001791 skb_dst_set(skb, &rt->dst);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001792 ip_decrease_ttl(ip_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 /* FIXME: forward and output firewalls used to be called here.
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001795 * What do we do with netfilter? -- RR
1796 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 if (vif->flags & VIFF_TUNNEL) {
Hannes Frederic Sowab6a77192015-03-25 17:07:44 +01001798 ip_encap(net, skb, vif->local, vif->remote);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 /* FIXME: extra output firewall step used to be here. --RR */
Pavel Emelyanov2f4c02d2008-05-21 14:16:14 -07001800 vif->dev->stats.tx_packets++;
1801 vif->dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 }
1803
Lance Richardson9ee6c5d2016-11-02 16:36:17 -04001804 IPCB(skb)->flags |= IPSKB_FORWARDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001806 /* RFC1584 teaches, that DVMRP/PIM router must deliver packets locally
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 * not only before forwarding, but after forwarding on all output
1808 * interfaces. It is clear, if mrouter runs a multicasting
1809 * program, it should receive packets not depending to what interface
1810 * program is joined.
1811 * If we will not make it, the program will have to join on all
1812 * interfaces. On the other hand, multihoming host (or router, but
1813 * not mrouter) cannot join to more than one interface - it will
1814 * result in receiving multiple packets.
1815 */
Eric W. Biederman29a26a52015-09-15 20:04:16 -05001816 NF_HOOK(NFPROTO_IPV4, NF_INET_FORWARD,
1817 net, NULL, skb, skb->dev, dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 ipmr_forward_finish);
1819 return;
1820
1821out_free:
1822 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823}
1824
Patrick McHardy0c122952010-04-13 05:03:22 +00001825static int ipmr_find_vif(struct mr_table *mrt, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826{
1827 int ct;
Patrick McHardy0c122952010-04-13 05:03:22 +00001828
1829 for (ct = mrt->maxvif-1; ct >= 0; ct--) {
1830 if (mrt->vif_table[ct].dev == dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 break;
1832 }
1833 return ct;
1834}
1835
1836/* "local" means that we should preserve one skb (for local delivery) */
Rami Rosenc4854ec2013-07-20 15:09:28 +03001837static void ip_mr_forward(struct net *net, struct mr_table *mrt,
1838 struct sk_buff *skb, struct mfc_cache *cache,
1839 int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840{
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01001841 int true_vifi = ipmr_find_vif(mrt, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 int psend = -1;
1843 int vif, ct;
1844
1845 vif = cache->mfc_parent;
1846 cache->mfc_un.res.pkt++;
1847 cache->mfc_un.res.bytes += skb->len;
Nikolay Aleksandrov43b9e122016-07-14 19:28:27 +03001848 cache->mfc_un.res.lastuse = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Nicolas Dichtel360eb5d2013-01-22 11:18:03 +01001850 if (cache->mfc_origin == htonl(INADDR_ANY) && true_vifi >= 0) {
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001851 struct mfc_cache *cache_proxy;
1852
1853 /* For an (*,G) entry, we only check that the incomming
1854 * interface is part of the static tree.
1855 */
1856 cache_proxy = ipmr_cache_find_any_parent(mrt, vif);
1857 if (cache_proxy &&
1858 cache_proxy->mfc_un.res.ttls[true_vifi] < 255)
1859 goto forward;
1860 }
1861
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001862 /* Wrong interface: drop packet and (maybe) send PIM assert. */
Patrick McHardy0c122952010-04-13 05:03:22 +00001863 if (mrt->vif_table[vif].dev != skb->dev) {
David Aherne58e4152016-10-31 15:54:00 -07001864 struct net_device *mdev;
1865
1866 mdev = l3mdev_master_dev_rcu(mrt->vif_table[vif].dev);
1867 if (mdev == skb->dev)
1868 goto forward;
1869
David S. Millerc7537962010-11-11 17:07:48 -08001870 if (rt_is_output_route(skb_rtable(skb))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 /* It is our own packet, looped back.
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001872 * Very complicated situation...
1873 *
1874 * The best workaround until routing daemons will be
1875 * fixed is not to redistribute packet, if it was
1876 * send through wrong interface. It means, that
1877 * multicast applications WILL NOT work for
1878 * (S,G), which have default multicast route pointing
1879 * to wrong oif. In any case, it is not a good
1880 * idea to use multicasting applications on router.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 */
1882 goto dont_forward;
1883 }
1884
1885 cache->mfc_un.res.wrong_if++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Patrick McHardy0c122952010-04-13 05:03:22 +00001887 if (true_vifi >= 0 && mrt->mroute_do_assert &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 /* pimsm uses asserts, when switching from RPT to SPT,
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001889 * so that we cannot check that packet arrived on an oif.
1890 * It is bad, but otherwise we would need to move pretty
1891 * large chunk of pimd to kernel. Ough... --ANK
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 */
Patrick McHardy0c122952010-04-13 05:03:22 +00001893 (mrt->mroute_do_pim ||
Benjamin Thery6f9374a2009-01-22 04:56:20 +00001894 cache->mfc_un.res.ttls[true_vifi] < 255) &&
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001895 time_after(jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 cache->mfc_un.res.last_assert + MFC_ASSERT_THRESH)) {
1897 cache->mfc_un.res.last_assert = jiffies;
Patrick McHardy0c122952010-04-13 05:03:22 +00001898 ipmr_cache_report(mrt, skb, true_vifi, IGMPMSG_WRONGVIF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 }
1900 goto dont_forward;
1901 }
1902
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001903forward:
Patrick McHardy0c122952010-04-13 05:03:22 +00001904 mrt->vif_table[vif].pkt_in++;
1905 mrt->vif_table[vif].bytes_in += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001907 /* Forward the frame */
Nicolas Dichtel360eb5d2013-01-22 11:18:03 +01001908 if (cache->mfc_origin == htonl(INADDR_ANY) &&
1909 cache->mfc_mcastgrp == htonl(INADDR_ANY)) {
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001910 if (true_vifi >= 0 &&
1911 true_vifi != cache->mfc_parent &&
1912 ip_hdr(skb)->ttl >
1913 cache->mfc_un.res.ttls[cache->mfc_parent]) {
1914 /* It's an (*,*) entry and the packet is not coming from
1915 * the upstream: forward the packet to the upstream
1916 * only.
1917 */
1918 psend = cache->mfc_parent;
1919 goto last_forward;
1920 }
1921 goto dont_forward;
1922 }
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001923 for (ct = cache->mfc_un.res.maxvif - 1;
1924 ct >= cache->mfc_un.res.minvif; ct--) {
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001925 /* For (*,G) entry, don't forward to the incoming interface */
Nicolas Dichtel360eb5d2013-01-22 11:18:03 +01001926 if ((cache->mfc_origin != htonl(INADDR_ANY) ||
1927 ct != true_vifi) &&
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001928 ip_hdr(skb)->ttl > cache->mfc_un.res.ttls[ct]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 if (psend != -1) {
1930 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 if (skb2)
Patrick McHardy0c122952010-04-13 05:03:22 +00001933 ipmr_queue_xmit(net, mrt, skb2, cache,
1934 psend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 }
Jianjun Kongc354e122008-11-03 00:28:02 -08001936 psend = ct;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 }
1938 }
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001939last_forward:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 if (psend != -1) {
1941 if (local) {
1942 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001943
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 if (skb2)
Patrick McHardy0c122952010-04-13 05:03:22 +00001945 ipmr_queue_xmit(net, mrt, skb2, cache, psend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 } else {
Patrick McHardy0c122952010-04-13 05:03:22 +00001947 ipmr_queue_xmit(net, mrt, skb, cache, psend);
Rami Rosenc4854ec2013-07-20 15:09:28 +03001948 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 }
1950 }
1951
1952dont_forward:
1953 if (!local)
1954 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955}
1956
David S. Miller417da662011-05-03 19:42:43 -07001957static struct mr_table *ipmr_rt_fib_lookup(struct net *net, struct sk_buff *skb)
David S. Milleree3f1aa2011-03-09 14:06:20 -08001958{
David S. Miller417da662011-05-03 19:42:43 -07001959 struct rtable *rt = skb_rtable(skb);
1960 struct iphdr *iph = ip_hdr(skb);
David S. Millerda919812011-03-12 02:04:50 -05001961 struct flowi4 fl4 = {
David S. Miller417da662011-05-03 19:42:43 -07001962 .daddr = iph->daddr,
1963 .saddr = iph->saddr,
Julian Anastasovb0fe4a32011-07-23 02:00:41 +00001964 .flowi4_tos = RT_TOS(iph->tos),
David S. Miller4fd551d2012-07-17 14:39:44 -07001965 .flowi4_oif = (rt_is_output_route(rt) ?
1966 skb->dev->ifindex : 0),
1967 .flowi4_iif = (rt_is_output_route(rt) ?
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001968 LOOPBACK_IFINDEX :
David S. Miller4fd551d2012-07-17 14:39:44 -07001969 skb->dev->ifindex),
David Millerb4869882012-07-01 02:03:01 +00001970 .flowi4_mark = skb->mark,
David S. Milleree3f1aa2011-03-09 14:06:20 -08001971 };
1972 struct mr_table *mrt;
1973 int err;
1974
David S. Millerda919812011-03-12 02:04:50 -05001975 err = ipmr_fib_lookup(net, &fl4, &mrt);
David S. Milleree3f1aa2011-03-09 14:06:20 -08001976 if (err)
1977 return ERR_PTR(err);
1978 return mrt;
1979}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001981/* Multicast packets for forwarding arrive here
1982 * Called with rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984int ip_mr_input(struct sk_buff *skb)
1985{
1986 struct mfc_cache *cache;
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001987 struct net *net = dev_net(skb->dev);
Eric Dumazet511c3f92009-06-02 05:14:27 +00001988 int local = skb_rtable(skb)->rt_flags & RTCF_LOCAL;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001989 struct mr_table *mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
1991 /* Packet is looped back after forward, it should not be
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001992 * forwarded second time, but still can be delivered locally.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 */
Eric Dumazet4c968702010-10-01 16:15:01 +00001994 if (IPCB(skb)->flags & IPSKB_FORWARDED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 goto dont_forward;
1996
David S. Miller417da662011-05-03 19:42:43 -07001997 mrt = ipmr_rt_fib_lookup(net, skb);
David S. Milleree3f1aa2011-03-09 14:06:20 -08001998 if (IS_ERR(mrt)) {
1999 kfree_skb(skb);
2000 return PTR_ERR(mrt);
Ben Greeare40dbc52010-07-15 13:22:33 +00002001 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 if (!local) {
Eric Dumazet4c968702010-10-01 16:15:01 +00002003 if (IPCB(skb)->opt.router_alert) {
2004 if (ip_call_ra_chain(skb))
2005 return 0;
2006 } else if (ip_hdr(skb)->protocol == IPPROTO_IGMP) {
2007 /* IGMPv1 (and broken IGMPv2 implementations sort of
2008 * Cisco IOS <= 11.2(8)) do not put router alert
2009 * option to IGMP packets destined to routable
2010 * groups. It is very bad, because it means
2011 * that we can forward NO IGMP messages.
2012 */
2013 struct sock *mroute_sk;
2014
2015 mroute_sk = rcu_dereference(mrt->mroute_sk);
2016 if (mroute_sk) {
2017 nf_reset(skb);
2018 raw_rcv(mroute_sk, skb);
2019 return 0;
2020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 }
2022 }
2023
Eric Dumazeta8c94862010-10-01 16:15:08 +00002024 /* already under rcu_read_lock() */
Patrick McHardy0c122952010-04-13 05:03:22 +00002025 cache = ipmr_cache_find(mrt, ip_hdr(skb)->saddr, ip_hdr(skb)->daddr);
Ian Morris51456b22015-04-03 09:17:26 +01002026 if (!cache) {
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00002027 int vif = ipmr_find_vif(mrt, skb->dev);
2028
2029 if (vif >= 0)
2030 cache = ipmr_cache_find_any(mrt, ip_hdr(skb)->daddr,
2031 vif);
2032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01002034 /* No usable cache entry */
Ian Morris51456b22015-04-03 09:17:26 +01002035 if (!cache) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 int vif;
2037
2038 if (local) {
2039 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
2040 ip_local_deliver(skb);
Ian Morris51456b22015-04-03 09:17:26 +01002041 if (!skb2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 skb = skb2;
2044 }
2045
Eric Dumazeta8c94862010-10-01 16:15:08 +00002046 read_lock(&mrt_lock);
Patrick McHardy0c122952010-04-13 05:03:22 +00002047 vif = ipmr_find_vif(mrt, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 if (vif >= 0) {
Eric Dumazet0eae88f2010-04-20 19:06:52 -07002049 int err2 = ipmr_cache_unresolved(mrt, vif, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 read_unlock(&mrt_lock);
2051
Eric Dumazet0eae88f2010-04-20 19:06:52 -07002052 return err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 }
2054 read_unlock(&mrt_lock);
2055 kfree_skb(skb);
2056 return -ENODEV;
2057 }
2058
Eric Dumazeta8c94862010-10-01 16:15:08 +00002059 read_lock(&mrt_lock);
Patrick McHardy0c122952010-04-13 05:03:22 +00002060 ip_mr_forward(net, mrt, skb, cache, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 read_unlock(&mrt_lock);
2062
2063 if (local)
2064 return ip_local_deliver(skb);
2065
2066 return 0;
2067
2068dont_forward:
2069 if (local)
2070 return ip_local_deliver(skb);
2071 kfree_skb(skb);
2072 return 0;
2073}
2074
Ilpo Järvinenb1879202008-12-16 01:15:11 -08002075#ifdef CONFIG_IP_PIMSM_V1
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01002076/* Handle IGMP messages of PIMv1 */
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002077int pim_rcv_v1(struct sk_buff *skb)
Ilpo Järvinenb1879202008-12-16 01:15:11 -08002078{
2079 struct igmphdr *pim;
Benjamin Thery4feb88e2009-01-22 04:56:23 +00002080 struct net *net = dev_net(skb->dev);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002081 struct mr_table *mrt;
Ilpo Järvinenb1879202008-12-16 01:15:11 -08002082
2083 if (!pskb_may_pull(skb, sizeof(*pim) + sizeof(struct iphdr)))
2084 goto drop;
2085
2086 pim = igmp_hdr(skb);
2087
David S. Miller417da662011-05-03 19:42:43 -07002088 mrt = ipmr_rt_fib_lookup(net, skb);
David S. Milleree3f1aa2011-03-09 14:06:20 -08002089 if (IS_ERR(mrt))
2090 goto drop;
Patrick McHardy0c122952010-04-13 05:03:22 +00002091 if (!mrt->mroute_do_pim ||
Ilpo Järvinenb1879202008-12-16 01:15:11 -08002092 pim->group != PIM_V1_VERSION || pim->code != PIM_V1_REGISTER)
2093 goto drop;
2094
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002095 if (__pim_rcv(mrt, skb, sizeof(*pim))) {
Ilpo Järvinenb1879202008-12-16 01:15:11 -08002096drop:
2097 kfree_skb(skb);
2098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 return 0;
2100}
2101#endif
2102
2103#ifdef CONFIG_IP_PIMSM_V2
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002104static int pim_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105{
2106 struct pimreghdr *pim;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002107 struct net *net = dev_net(skb->dev);
2108 struct mr_table *mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
Ilpo Järvinenb1879202008-12-16 01:15:11 -08002110 if (!pskb_may_pull(skb, sizeof(*pim) + sizeof(struct iphdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 goto drop;
2112
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002113 pim = (struct pimreghdr *)skb_transport_header(skb);
Nikolay Aleksandrov56245ca2016-10-31 13:21:04 +01002114 if (pim->type != ((PIM_VERSION << 4) | (PIM_TYPE_REGISTER)) ||
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002115 (pim->flags & PIM_NULL_REGISTER) ||
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002116 (ip_compute_csum((void *)pim, sizeof(*pim)) != 0 &&
Al Virod3bc23e2006-11-14 21:24:49 -08002117 csum_fold(skb_checksum(skb, 0, skb->len, 0))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 goto drop;
2119
David S. Miller417da662011-05-03 19:42:43 -07002120 mrt = ipmr_rt_fib_lookup(net, skb);
David S. Milleree3f1aa2011-03-09 14:06:20 -08002121 if (IS_ERR(mrt))
2122 goto drop;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002123 if (__pim_rcv(mrt, skb, sizeof(*pim))) {
Ilpo Järvinenb1879202008-12-16 01:15:11 -08002124drop:
2125 kfree_skb(skb);
2126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 return 0;
2128}
2129#endif
2130
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002131static int __ipmr_fill_mroute(struct mr_table *mrt, struct sk_buff *skb,
2132 struct mfc_cache *c, struct rtmsg *rtm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133{
Nicolas Dichteladfa85e2012-12-04 01:13:37 +00002134 struct rta_mfc_stats mfcs;
Nikolay Aleksandrov43b9e122016-07-14 19:28:27 +03002135 struct nlattr *mp_attr;
2136 struct rtnexthop *nhp;
Nikolay Aleksandrovb5036cd2016-09-20 16:17:22 +02002137 unsigned long lastuse;
Nikolay Aleksandrov43b9e122016-07-14 19:28:27 +03002138 int ct;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
Nicolas Dichtel74381892010-03-25 23:45:35 +00002140 /* If cache is unresolved, don't try to parse IIF and OIF */
Nikolay Aleksandrov1708ebc2017-01-03 12:13:39 +01002141 if (c->mfc_parent >= MAXVIFS) {
2142 rtm->rtm_flags |= RTNH_F_UNRESOLVED;
Nicolas Dichtel74381892010-03-25 23:45:35 +00002143 return -ENOENT;
Nikolay Aleksandrov1708ebc2017-01-03 12:13:39 +01002144 }
Nicolas Dichtel74381892010-03-25 23:45:35 +00002145
Thomas Graf92a395e2012-06-26 23:36:13 +00002146 if (VIF_EXISTS(mrt, c->mfc_parent) &&
2147 nla_put_u32(skb, RTA_IIF, mrt->vif_table[c->mfc_parent].dev->ifindex) < 0)
2148 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Thomas Graf92a395e2012-06-26 23:36:13 +00002150 if (!(mp_attr = nla_nest_start(skb, RTA_MULTIPATH)))
2151 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
2153 for (ct = c->mfc_un.res.minvif; ct < c->mfc_un.res.maxvif; ct++) {
Patrick McHardy0c122952010-04-13 05:03:22 +00002154 if (VIF_EXISTS(mrt, ct) && c->mfc_un.res.ttls[ct] < 255) {
Thomas Graf92a395e2012-06-26 23:36:13 +00002155 if (!(nhp = nla_reserve_nohdr(skb, sizeof(*nhp)))) {
2156 nla_nest_cancel(skb, mp_attr);
2157 return -EMSGSIZE;
2158 }
2159
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 nhp->rtnh_flags = 0;
2161 nhp->rtnh_hops = c->mfc_un.res.ttls[ct];
Patrick McHardy0c122952010-04-13 05:03:22 +00002162 nhp->rtnh_ifindex = mrt->vif_table[ct].dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 nhp->rtnh_len = sizeof(*nhp);
2164 }
2165 }
Thomas Graf92a395e2012-06-26 23:36:13 +00002166
2167 nla_nest_end(skb, mp_attr);
2168
Nikolay Aleksandrovb5036cd2016-09-20 16:17:22 +02002169 lastuse = READ_ONCE(c->mfc_un.res.lastuse);
2170 lastuse = time_after_eq(jiffies, lastuse) ? jiffies - lastuse : 0;
2171
Nicolas Dichteladfa85e2012-12-04 01:13:37 +00002172 mfcs.mfcs_packets = c->mfc_un.res.pkt;
2173 mfcs.mfcs_bytes = c->mfc_un.res.bytes;
2174 mfcs.mfcs_wrong_if = c->mfc_un.res.wrong_if;
Nikolay Aleksandrov43b9e122016-07-14 19:28:27 +03002175 if (nla_put_64bit(skb, RTA_MFC_STATS, sizeof(mfcs), &mfcs, RTA_PAD) ||
Nikolay Aleksandrovb5036cd2016-09-20 16:17:22 +02002176 nla_put_u64_64bit(skb, RTA_EXPIRES, jiffies_to_clock_t(lastuse),
Nikolay Aleksandrov43b9e122016-07-14 19:28:27 +03002177 RTA_PAD))
Nicolas Dichteladfa85e2012-12-04 01:13:37 +00002178 return -EMSGSIZE;
2179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 rtm->rtm_type = RTN_MULTICAST;
2181 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182}
2183
David S. Miller9a1b9492011-05-04 12:18:54 -07002184int ipmr_get_route(struct net *net, struct sk_buff *skb,
2185 __be32 saddr, __be32 daddr,
David Ahern9f09eae2017-01-06 17:39:06 -08002186 struct rtmsg *rtm, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 struct mfc_cache *cache;
David S. Miller9a1b9492011-05-04 12:18:54 -07002189 struct mr_table *mrt;
2190 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002192 mrt = ipmr_get_table(net, RT_TABLE_DEFAULT);
Ian Morris51456b22015-04-03 09:17:26 +01002193 if (!mrt)
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002194 return -ENOENT;
2195
Eric Dumazeta8c94862010-10-01 16:15:08 +00002196 rcu_read_lock();
David S. Miller9a1b9492011-05-04 12:18:54 -07002197 cache = ipmr_cache_find(mrt, saddr, daddr);
Ian Morris51456b22015-04-03 09:17:26 +01002198 if (!cache && skb->dev) {
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00002199 int vif = ipmr_find_vif(mrt, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00002201 if (vif >= 0)
2202 cache = ipmr_cache_find_any(mrt, daddr, vif);
2203 }
Ian Morris51456b22015-04-03 09:17:26 +01002204 if (!cache) {
Alexey Kuznetsov72287492006-07-25 16:45:12 -07002205 struct sk_buff *skb2;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002206 struct iphdr *iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 struct net_device *dev;
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002208 int vif = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 dev = skb->dev;
Eric Dumazeta8c94862010-10-01 16:15:08 +00002211 read_lock(&mrt_lock);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002212 if (dev)
2213 vif = ipmr_find_vif(mrt, dev);
2214 if (vif < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 read_unlock(&mrt_lock);
Eric Dumazeta8c94862010-10-01 16:15:08 +00002216 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 return -ENODEV;
2218 }
Alexey Kuznetsov72287492006-07-25 16:45:12 -07002219 skb2 = skb_clone(skb, GFP_ATOMIC);
2220 if (!skb2) {
2221 read_unlock(&mrt_lock);
Eric Dumazeta8c94862010-10-01 16:15:08 +00002222 rcu_read_unlock();
Alexey Kuznetsov72287492006-07-25 16:45:12 -07002223 return -ENOMEM;
2224 }
2225
Nikolay Aleksandrov2cf75072016-09-25 23:08:31 +02002226 NETLINK_CB(skb2).portid = portid;
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -07002227 skb_push(skb2, sizeof(struct iphdr));
2228 skb_reset_network_header(skb2);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002229 iph = ip_hdr(skb2);
2230 iph->ihl = sizeof(struct iphdr) >> 2;
David S. Miller9a1b9492011-05-04 12:18:54 -07002231 iph->saddr = saddr;
2232 iph->daddr = daddr;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002233 iph->version = 0;
Patrick McHardy0c122952010-04-13 05:03:22 +00002234 err = ipmr_cache_unresolved(mrt, vif, skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 read_unlock(&mrt_lock);
Eric Dumazeta8c94862010-10-01 16:15:08 +00002236 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 return err;
2238 }
2239
Eric Dumazeta8c94862010-10-01 16:15:08 +00002240 read_lock(&mrt_lock);
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002241 err = __ipmr_fill_mroute(mrt, skb, cache, rtm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 read_unlock(&mrt_lock);
Eric Dumazeta8c94862010-10-01 16:15:08 +00002243 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 return err;
2245}
2246
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002247static int ipmr_fill_mroute(struct mr_table *mrt, struct sk_buff *skb,
Nicolas Dichtel65886f42014-03-19 17:47:50 +01002248 u32 portid, u32 seq, struct mfc_cache *c, int cmd,
2249 int flags)
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002250{
2251 struct nlmsghdr *nlh;
2252 struct rtmsg *rtm;
Nicolas Dichtel1eb99af2012-12-04 01:13:39 +00002253 int err;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002254
Nicolas Dichtel65886f42014-03-19 17:47:50 +01002255 nlh = nlmsg_put(skb, portid, seq, cmd, sizeof(*rtm), flags);
Ian Morris51456b22015-04-03 09:17:26 +01002256 if (!nlh)
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002257 return -EMSGSIZE;
2258
2259 rtm = nlmsg_data(nlh);
2260 rtm->rtm_family = RTNL_FAMILY_IPMR;
2261 rtm->rtm_dst_len = 32;
2262 rtm->rtm_src_len = 32;
2263 rtm->rtm_tos = 0;
2264 rtm->rtm_table = mrt->id;
David S. Millerf3756b72012-04-01 20:39:02 -04002265 if (nla_put_u32(skb, RTA_TABLE, mrt->id))
2266 goto nla_put_failure;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002267 rtm->rtm_type = RTN_MULTICAST;
2268 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
Nicolas Dichtel9a68ac72012-12-04 01:13:38 +00002269 if (c->mfc_flags & MFC_STATIC)
2270 rtm->rtm_protocol = RTPROT_STATIC;
2271 else
2272 rtm->rtm_protocol = RTPROT_MROUTED;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002273 rtm->rtm_flags = 0;
2274
Jiri Benc930345e2015-03-29 16:59:25 +02002275 if (nla_put_in_addr(skb, RTA_SRC, c->mfc_origin) ||
2276 nla_put_in_addr(skb, RTA_DST, c->mfc_mcastgrp))
David S. Millerf3756b72012-04-01 20:39:02 -04002277 goto nla_put_failure;
Nicolas Dichtel1eb99af2012-12-04 01:13:39 +00002278 err = __ipmr_fill_mroute(mrt, skb, c, rtm);
2279 /* do not break the dump if cache is unresolved */
2280 if (err < 0 && err != -ENOENT)
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002281 goto nla_put_failure;
2282
Johannes Berg053c0952015-01-16 22:09:00 +01002283 nlmsg_end(skb, nlh);
2284 return 0;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002285
2286nla_put_failure:
2287 nlmsg_cancel(skb, nlh);
2288 return -EMSGSIZE;
2289}
2290
Nicolas Dichtel8cd3ac92012-12-04 01:13:40 +00002291static size_t mroute_msgsize(bool unresolved, int maxvif)
2292{
2293 size_t len =
2294 NLMSG_ALIGN(sizeof(struct rtmsg))
2295 + nla_total_size(4) /* RTA_TABLE */
2296 + nla_total_size(4) /* RTA_SRC */
2297 + nla_total_size(4) /* RTA_DST */
2298 ;
2299
2300 if (!unresolved)
2301 len = len
2302 + nla_total_size(4) /* RTA_IIF */
2303 + nla_total_size(0) /* RTA_MULTIPATH */
2304 + maxvif * NLA_ALIGN(sizeof(struct rtnexthop))
2305 /* RTA_MFC_STATS */
Nicolas Dichtela9a08042016-04-21 18:58:26 +02002306 + nla_total_size_64bit(sizeof(struct rta_mfc_stats))
Nicolas Dichtel8cd3ac92012-12-04 01:13:40 +00002307 ;
2308
2309 return len;
2310}
2311
2312static void mroute_netlink_event(struct mr_table *mrt, struct mfc_cache *mfc,
2313 int cmd)
2314{
2315 struct net *net = read_pnet(&mrt->net);
2316 struct sk_buff *skb;
2317 int err = -ENOBUFS;
2318
2319 skb = nlmsg_new(mroute_msgsize(mfc->mfc_parent >= MAXVIFS, mrt->maxvif),
2320 GFP_ATOMIC);
Ian Morris51456b22015-04-03 09:17:26 +01002321 if (!skb)
Nicolas Dichtel8cd3ac92012-12-04 01:13:40 +00002322 goto errout;
2323
Nicolas Dichtel65886f42014-03-19 17:47:50 +01002324 err = ipmr_fill_mroute(mrt, skb, 0, 0, mfc, cmd, 0);
Nicolas Dichtel8cd3ac92012-12-04 01:13:40 +00002325 if (err < 0)
2326 goto errout;
2327
2328 rtnl_notify(skb, net, 0, RTNLGRP_IPV4_MROUTE, NULL, GFP_ATOMIC);
2329 return;
2330
2331errout:
2332 kfree_skb(skb);
2333 if (err < 0)
2334 rtnl_set_sk_err(net, RTNLGRP_IPV4_MROUTE, err);
2335}
2336
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002337static int ipmr_rtm_dumproute(struct sk_buff *skb, struct netlink_callback *cb)
2338{
2339 struct net *net = sock_net(skb->sk);
2340 struct mr_table *mrt;
2341 struct mfc_cache *mfc;
2342 unsigned int t = 0, s_t;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002343 unsigned int e = 0, s_e;
2344
2345 s_t = cb->args[0];
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01002346 s_e = cb->args[1];
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002347
Eric Dumazeta8c94862010-10-01 16:15:08 +00002348 rcu_read_lock();
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002349 ipmr_for_each_table(mrt, net) {
2350 if (t < s_t)
2351 goto next_table;
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01002352 list_for_each_entry_rcu(mfc, &mrt->mfc_cache_list, list) {
2353 if (e < s_e)
2354 goto next_entry;
2355 if (ipmr_fill_mroute(mrt, skb,
2356 NETLINK_CB(cb->skb).portid,
2357 cb->nlh->nlmsg_seq,
2358 mfc, RTM_NEWROUTE,
2359 NLM_F_MULTI) < 0)
2360 goto done;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002361next_entry:
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01002362 e++;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002363 }
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01002364 e = 0;
2365 s_e = 0;
2366
Nicolas Dichtel1eb99af2012-12-04 01:13:39 +00002367 spin_lock_bh(&mfc_unres_lock);
2368 list_for_each_entry(mfc, &mrt->mfc_unres_queue, list) {
2369 if (e < s_e)
2370 goto next_entry2;
2371 if (ipmr_fill_mroute(mrt, skb,
2372 NETLINK_CB(cb->skb).portid,
2373 cb->nlh->nlmsg_seq,
Nicolas Dichtel65886f42014-03-19 17:47:50 +01002374 mfc, RTM_NEWROUTE,
2375 NLM_F_MULTI) < 0) {
Nicolas Dichtel1eb99af2012-12-04 01:13:39 +00002376 spin_unlock_bh(&mfc_unres_lock);
2377 goto done;
2378 }
2379next_entry2:
2380 e++;
2381 }
2382 spin_unlock_bh(&mfc_unres_lock);
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01002383 e = 0;
2384 s_e = 0;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002385next_table:
2386 t++;
2387 }
2388done:
Eric Dumazeta8c94862010-10-01 16:15:08 +00002389 rcu_read_unlock();
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002390
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01002391 cb->args[1] = e;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002392 cb->args[0] = t;
2393
2394 return skb->len;
2395}
2396
Nikolay Aleksandrovccbb0aa2015-11-26 15:23:50 +01002397static const struct nla_policy rtm_ipmr_policy[RTA_MAX + 1] = {
2398 [RTA_SRC] = { .type = NLA_U32 },
2399 [RTA_DST] = { .type = NLA_U32 },
2400 [RTA_IIF] = { .type = NLA_U32 },
2401 [RTA_TABLE] = { .type = NLA_U32 },
2402 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
2403};
2404
2405static bool ipmr_rtm_validate_proto(unsigned char rtm_protocol)
2406{
2407 switch (rtm_protocol) {
2408 case RTPROT_STATIC:
2409 case RTPROT_MROUTED:
2410 return true;
2411 }
2412 return false;
2413}
2414
2415static int ipmr_nla_get_ttls(const struct nlattr *nla, struct mfcctl *mfcc)
2416{
2417 struct rtnexthop *rtnh = nla_data(nla);
2418 int remaining = nla_len(nla), vifi = 0;
2419
2420 while (rtnh_ok(rtnh, remaining)) {
2421 mfcc->mfcc_ttls[vifi] = rtnh->rtnh_hops;
2422 if (++vifi == MAXVIFS)
2423 break;
2424 rtnh = rtnh_next(rtnh, &remaining);
2425 }
2426
2427 return remaining > 0 ? -EINVAL : vifi;
2428}
2429
2430/* returns < 0 on error, 0 for ADD_MFC and 1 for ADD_MFC_PROXY */
2431static int rtm_to_ipmr_mfcc(struct net *net, struct nlmsghdr *nlh,
2432 struct mfcctl *mfcc, int *mrtsock,
2433 struct mr_table **mrtret)
2434{
2435 struct net_device *dev = NULL;
2436 u32 tblid = RT_TABLE_DEFAULT;
2437 struct mr_table *mrt;
2438 struct nlattr *attr;
2439 struct rtmsg *rtm;
2440 int ret, rem;
2441
Johannes Bergfceb6432017-04-12 14:34:07 +02002442 ret = nlmsg_validate(nlh, sizeof(*rtm), RTA_MAX, rtm_ipmr_policy,
2443 NULL);
Nikolay Aleksandrovccbb0aa2015-11-26 15:23:50 +01002444 if (ret < 0)
2445 goto out;
2446 rtm = nlmsg_data(nlh);
2447
2448 ret = -EINVAL;
2449 if (rtm->rtm_family != RTNL_FAMILY_IPMR || rtm->rtm_dst_len != 32 ||
2450 rtm->rtm_type != RTN_MULTICAST ||
2451 rtm->rtm_scope != RT_SCOPE_UNIVERSE ||
2452 !ipmr_rtm_validate_proto(rtm->rtm_protocol))
2453 goto out;
2454
2455 memset(mfcc, 0, sizeof(*mfcc));
2456 mfcc->mfcc_parent = -1;
2457 ret = 0;
2458 nlmsg_for_each_attr(attr, nlh, sizeof(struct rtmsg), rem) {
2459 switch (nla_type(attr)) {
2460 case RTA_SRC:
2461 mfcc->mfcc_origin.s_addr = nla_get_be32(attr);
2462 break;
2463 case RTA_DST:
2464 mfcc->mfcc_mcastgrp.s_addr = nla_get_be32(attr);
2465 break;
2466 case RTA_IIF:
2467 dev = __dev_get_by_index(net, nla_get_u32(attr));
2468 if (!dev) {
2469 ret = -ENODEV;
2470 goto out;
2471 }
2472 break;
2473 case RTA_MULTIPATH:
2474 if (ipmr_nla_get_ttls(attr, mfcc) < 0) {
2475 ret = -EINVAL;
2476 goto out;
2477 }
2478 break;
2479 case RTA_PREFSRC:
2480 ret = 1;
2481 break;
2482 case RTA_TABLE:
2483 tblid = nla_get_u32(attr);
2484 break;
2485 }
2486 }
2487 mrt = ipmr_get_table(net, tblid);
2488 if (!mrt) {
2489 ret = -ENOENT;
2490 goto out;
2491 }
2492 *mrtret = mrt;
2493 *mrtsock = rtm->rtm_protocol == RTPROT_MROUTED ? 1 : 0;
2494 if (dev)
2495 mfcc->mfcc_parent = ipmr_find_vif(mrt, dev);
2496
2497out:
2498 return ret;
2499}
2500
2501/* takes care of both newroute and delroute */
2502static int ipmr_rtm_route(struct sk_buff *skb, struct nlmsghdr *nlh)
2503{
2504 struct net *net = sock_net(skb->sk);
2505 int ret, mrtsock, parent;
2506 struct mr_table *tbl;
2507 struct mfcctl mfcc;
2508
2509 mrtsock = 0;
2510 tbl = NULL;
2511 ret = rtm_to_ipmr_mfcc(net, nlh, &mfcc, &mrtsock, &tbl);
2512 if (ret < 0)
2513 return ret;
2514
2515 parent = ret ? mfcc.mfcc_parent : -1;
2516 if (nlh->nlmsg_type == RTM_NEWROUTE)
2517 return ipmr_mfc_add(net, tbl, &mfcc, mrtsock, parent);
2518 else
2519 return ipmr_mfc_delete(tbl, &mfcc, parent);
2520}
2521
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002522#ifdef CONFIG_PROC_FS
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01002523/* The /proc interfaces to multicast routing :
2524 * /proc/net/ip_mr_cache & /proc/net/ip_mr_vif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 */
2526struct ipmr_vif_iter {
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002527 struct seq_net_private p;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002528 struct mr_table *mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 int ct;
2530};
2531
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002532static struct vif_device *ipmr_vif_seq_idx(struct net *net,
2533 struct ipmr_vif_iter *iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 loff_t pos)
2535{
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002536 struct mr_table *mrt = iter->mrt;
Patrick McHardy0c122952010-04-13 05:03:22 +00002537
2538 for (iter->ct = 0; iter->ct < mrt->maxvif; ++iter->ct) {
2539 if (!VIF_EXISTS(mrt, iter->ct))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 continue;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002541 if (pos-- == 0)
Patrick McHardy0c122952010-04-13 05:03:22 +00002542 return &mrt->vif_table[iter->ct];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 }
2544 return NULL;
2545}
2546
2547static void *ipmr_vif_seq_start(struct seq_file *seq, loff_t *pos)
Stephen Hemmingerba93ef72008-01-21 17:28:59 -08002548 __acquires(mrt_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549{
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002550 struct ipmr_vif_iter *iter = seq->private;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002551 struct net *net = seq_file_net(seq);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002552 struct mr_table *mrt;
2553
2554 mrt = ipmr_get_table(net, RT_TABLE_DEFAULT);
Ian Morris51456b22015-04-03 09:17:26 +01002555 if (!mrt)
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002556 return ERR_PTR(-ENOENT);
2557
2558 iter->mrt = mrt;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002559
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 read_lock(&mrt_lock);
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002561 return *pos ? ipmr_vif_seq_idx(net, seq->private, *pos - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 : SEQ_START_TOKEN;
2563}
2564
2565static void *ipmr_vif_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2566{
2567 struct ipmr_vif_iter *iter = seq->private;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002568 struct net *net = seq_file_net(seq);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002569 struct mr_table *mrt = iter->mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
2571 ++*pos;
2572 if (v == SEQ_START_TOKEN)
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002573 return ipmr_vif_seq_idx(net, iter, 0);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002574
Patrick McHardy0c122952010-04-13 05:03:22 +00002575 while (++iter->ct < mrt->maxvif) {
2576 if (!VIF_EXISTS(mrt, iter->ct))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 continue;
Patrick McHardy0c122952010-04-13 05:03:22 +00002578 return &mrt->vif_table[iter->ct];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 }
2580 return NULL;
2581}
2582
2583static void ipmr_vif_seq_stop(struct seq_file *seq, void *v)
Stephen Hemmingerba93ef72008-01-21 17:28:59 -08002584 __releases(mrt_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585{
2586 read_unlock(&mrt_lock);
2587}
2588
2589static int ipmr_vif_seq_show(struct seq_file *seq, void *v)
2590{
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002591 struct ipmr_vif_iter *iter = seq->private;
2592 struct mr_table *mrt = iter->mrt;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002593
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 if (v == SEQ_START_TOKEN) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002595 seq_puts(seq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 "Interface BytesIn PktsIn BytesOut PktsOut Flags Local Remote\n");
2597 } else {
2598 const struct vif_device *vif = v;
2599 const char *name = vif->dev ? vif->dev->name : "none";
2600
2601 seq_printf(seq,
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08002602 "%2zd %-10s %8ld %7ld %8ld %7ld %05X %08X %08X\n",
Patrick McHardy0c122952010-04-13 05:03:22 +00002603 vif - mrt->vif_table,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002604 name, vif->bytes_in, vif->pkt_in,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 vif->bytes_out, vif->pkt_out,
2606 vif->flags, vif->local, vif->remote);
2607 }
2608 return 0;
2609}
2610
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002611static const struct seq_operations ipmr_vif_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 .start = ipmr_vif_seq_start,
2613 .next = ipmr_vif_seq_next,
2614 .stop = ipmr_vif_seq_stop,
2615 .show = ipmr_vif_seq_show,
2616};
2617
2618static int ipmr_vif_open(struct inode *inode, struct file *file)
2619{
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002620 return seq_open_net(inode, file, &ipmr_vif_seq_ops,
2621 sizeof(struct ipmr_vif_iter));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622}
2623
Arjan van de Ven9a321442007-02-12 00:55:35 -08002624static const struct file_operations ipmr_vif_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 .owner = THIS_MODULE,
2626 .open = ipmr_vif_open,
2627 .read = seq_read,
2628 .llseek = seq_lseek,
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002629 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630};
2631
2632struct ipmr_mfc_iter {
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002633 struct seq_net_private p;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002634 struct mr_table *mrt;
Patrick McHardy862465f2010-04-13 05:03:21 +00002635 struct list_head *cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636};
2637
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002638static struct mfc_cache *ipmr_mfc_seq_idx(struct net *net,
2639 struct ipmr_mfc_iter *it, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640{
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002641 struct mr_table *mrt = it->mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 struct mfc_cache *mfc;
2643
Eric Dumazeta8c94862010-10-01 16:15:08 +00002644 rcu_read_lock();
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01002645 it->cache = &mrt->mfc_cache_list;
2646 list_for_each_entry_rcu(mfc, &mrt->mfc_cache_list, list)
2647 if (pos-- == 0)
2648 return mfc;
Eric Dumazeta8c94862010-10-01 16:15:08 +00002649 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 spin_lock_bh(&mfc_unres_lock);
Patrick McHardy0c122952010-04-13 05:03:22 +00002652 it->cache = &mrt->mfc_unres_queue;
Patrick McHardy862465f2010-04-13 05:03:21 +00002653 list_for_each_entry(mfc, it->cache, list)
Patrick McHardye258beb2010-04-13 05:03:19 +00002654 if (pos-- == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 return mfc;
2656 spin_unlock_bh(&mfc_unres_lock);
2657
2658 it->cache = NULL;
2659 return NULL;
2660}
2661
2662
2663static void *ipmr_mfc_seq_start(struct seq_file *seq, loff_t *pos)
2664{
2665 struct ipmr_mfc_iter *it = seq->private;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002666 struct net *net = seq_file_net(seq);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002667 struct mr_table *mrt;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002668
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002669 mrt = ipmr_get_table(net, RT_TABLE_DEFAULT);
Ian Morris51456b22015-04-03 09:17:26 +01002670 if (!mrt)
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002671 return ERR_PTR(-ENOENT);
2672
2673 it->mrt = mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 it->cache = NULL;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002675 return *pos ? ipmr_mfc_seq_idx(net, seq->private, *pos - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 : SEQ_START_TOKEN;
2677}
2678
2679static void *ipmr_mfc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2680{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 struct ipmr_mfc_iter *it = seq->private;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002682 struct net *net = seq_file_net(seq);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002683 struct mr_table *mrt = it->mrt;
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01002684 struct mfc_cache *mfc = v;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685
2686 ++*pos;
2687
2688 if (v == SEQ_START_TOKEN)
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002689 return ipmr_mfc_seq_idx(net, seq->private, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
Patrick McHardy862465f2010-04-13 05:03:21 +00002691 if (mfc->list.next != it->cache)
2692 return list_entry(mfc->list.next, struct mfc_cache, list);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002693
Patrick McHardy0c122952010-04-13 05:03:22 +00002694 if (it->cache == &mrt->mfc_unres_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 goto end_of_list;
2696
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 /* exhausted cache_array, show unresolved */
Eric Dumazeta8c94862010-10-01 16:15:08 +00002698 rcu_read_unlock();
Patrick McHardy0c122952010-04-13 05:03:22 +00002699 it->cache = &mrt->mfc_unres_queue;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002700
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 spin_lock_bh(&mfc_unres_lock);
Patrick McHardy862465f2010-04-13 05:03:21 +00002702 if (!list_empty(it->cache))
2703 return list_first_entry(it->cache, struct mfc_cache, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002705end_of_list:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 spin_unlock_bh(&mfc_unres_lock);
2707 it->cache = NULL;
2708
2709 return NULL;
2710}
2711
2712static void ipmr_mfc_seq_stop(struct seq_file *seq, void *v)
2713{
2714 struct ipmr_mfc_iter *it = seq->private;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002715 struct mr_table *mrt = it->mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716
Patrick McHardy0c122952010-04-13 05:03:22 +00002717 if (it->cache == &mrt->mfc_unres_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 spin_unlock_bh(&mfc_unres_lock);
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01002719 else if (it->cache == &mrt->mfc_cache_list)
Eric Dumazeta8c94862010-10-01 16:15:08 +00002720 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721}
2722
2723static int ipmr_mfc_seq_show(struct seq_file *seq, void *v)
2724{
2725 int n;
2726
2727 if (v == SEQ_START_TOKEN) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002728 seq_puts(seq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 "Group Origin Iif Pkts Bytes Wrong Oifs\n");
2730 } else {
2731 const struct mfc_cache *mfc = v;
2732 const struct ipmr_mfc_iter *it = seq->private;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002733 const struct mr_table *mrt = it->mrt;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002734
Eric Dumazet0eae88f2010-04-20 19:06:52 -07002735 seq_printf(seq, "%08X %08X %-3hd",
2736 (__force u32) mfc->mfc_mcastgrp,
2737 (__force u32) mfc->mfc_origin,
Benjamin Thery1ea472e2008-12-03 22:21:47 -08002738 mfc->mfc_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739
Patrick McHardy0c122952010-04-13 05:03:22 +00002740 if (it->cache != &mrt->mfc_unres_queue) {
Benjamin Thery1ea472e2008-12-03 22:21:47 -08002741 seq_printf(seq, " %8lu %8lu %8lu",
2742 mfc->mfc_un.res.pkt,
2743 mfc->mfc_un.res.bytes,
2744 mfc->mfc_un.res.wrong_if);
Stephen Hemminger132adf52007-03-08 20:44:43 -08002745 for (n = mfc->mfc_un.res.minvif;
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002746 n < mfc->mfc_un.res.maxvif; n++) {
Patrick McHardy0c122952010-04-13 05:03:22 +00002747 if (VIF_EXISTS(mrt, n) &&
Benjamin Therycf958ae32009-01-22 04:56:16 +00002748 mfc->mfc_un.res.ttls[n] < 255)
2749 seq_printf(seq,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002750 " %2d:%-3d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 n, mfc->mfc_un.res.ttls[n]);
2752 }
Benjamin Thery1ea472e2008-12-03 22:21:47 -08002753 } else {
2754 /* unresolved mfc_caches don't contain
2755 * pkt, bytes and wrong_if values
2756 */
2757 seq_printf(seq, " %8lu %8lu %8lu", 0ul, 0ul, 0ul);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 }
2759 seq_putc(seq, '\n');
2760 }
2761 return 0;
2762}
2763
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002764static const struct seq_operations ipmr_mfc_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 .start = ipmr_mfc_seq_start,
2766 .next = ipmr_mfc_seq_next,
2767 .stop = ipmr_mfc_seq_stop,
2768 .show = ipmr_mfc_seq_show,
2769};
2770
2771static int ipmr_mfc_open(struct inode *inode, struct file *file)
2772{
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002773 return seq_open_net(inode, file, &ipmr_mfc_seq_ops,
2774 sizeof(struct ipmr_mfc_iter));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775}
2776
Arjan van de Ven9a321442007-02-12 00:55:35 -08002777static const struct file_operations ipmr_mfc_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 .owner = THIS_MODULE,
2779 .open = ipmr_mfc_open,
2780 .read = seq_read,
2781 .llseek = seq_lseek,
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002782 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783};
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002784#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
2786#ifdef CONFIG_IP_PIMSM_V2
Alexey Dobriyan32613092009-09-14 12:21:47 +00002787static const struct net_protocol pim_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 .handler = pim_rcv,
Tom Goff403dbb92009-06-14 03:16:13 -07002789 .netns_ok = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790};
2791#endif
2792
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01002793/* Setup for IP multicast routing */
Benjamin Therycf958ae32009-01-22 04:56:16 +00002794static int __net_init ipmr_net_init(struct net *net)
2795{
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002796 int err;
Benjamin Therycf958ae32009-01-22 04:56:16 +00002797
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002798 err = ipmr_rules_init(net);
2799 if (err < 0)
Benjamin Therycf958ae32009-01-22 04:56:16 +00002800 goto fail;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002801
2802#ifdef CONFIG_PROC_FS
2803 err = -ENOMEM;
Gao fengd4beaa62013-02-18 01:34:54 +00002804 if (!proc_create("ip_mr_vif", 0, net->proc_net, &ipmr_vif_fops))
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002805 goto proc_vif_fail;
Gao fengd4beaa62013-02-18 01:34:54 +00002806 if (!proc_create("ip_mr_cache", 0, net->proc_net, &ipmr_mfc_fops))
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002807 goto proc_cache_fail;
2808#endif
Benjamin Thery2bb8b262009-01-22 04:56:18 +00002809 return 0;
2810
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002811#ifdef CONFIG_PROC_FS
2812proc_cache_fail:
Gao fengece31ff2013-02-18 01:34:56 +00002813 remove_proc_entry("ip_mr_vif", net->proc_net);
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002814proc_vif_fail:
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002815 ipmr_rules_exit(net);
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002816#endif
Benjamin Therycf958ae32009-01-22 04:56:16 +00002817fail:
2818 return err;
2819}
2820
2821static void __net_exit ipmr_net_exit(struct net *net)
2822{
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002823#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00002824 remove_proc_entry("ip_mr_cache", net->proc_net);
2825 remove_proc_entry("ip_mr_vif", net->proc_net);
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002826#endif
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002827 ipmr_rules_exit(net);
Benjamin Therycf958ae32009-01-22 04:56:16 +00002828}
2829
2830static struct pernet_operations ipmr_net_ops = {
2831 .init = ipmr_net_init,
2832 .exit = ipmr_net_exit,
2833};
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002834
Wang Chen03d2f892008-07-03 12:13:36 +08002835int __init ip_mr_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836{
Wang Chen03d2f892008-07-03 12:13:36 +08002837 int err;
2838
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 mrt_cachep = kmem_cache_create("ip_mrt_cache",
2840 sizeof(struct mfc_cache),
Eric Dumazeta8c94862010-10-01 16:15:08 +00002841 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002842 NULL);
Wang Chen03d2f892008-07-03 12:13:36 +08002843
Benjamin Therycf958ae32009-01-22 04:56:16 +00002844 err = register_pernet_subsys(&ipmr_net_ops);
2845 if (err)
2846 goto reg_pernet_fail;
2847
Wang Chen03d2f892008-07-03 12:13:36 +08002848 err = register_netdevice_notifier(&ip_mr_notifier);
2849 if (err)
2850 goto reg_notif_fail;
Tom Goff403dbb92009-06-14 03:16:13 -07002851#ifdef CONFIG_IP_PIMSM_V2
2852 if (inet_add_protocol(&pim_protocol, IPPROTO_PIM) < 0) {
Joe Perches058bd4d2012-03-11 18:36:11 +00002853 pr_err("%s: can't add PIM protocol\n", __func__);
Tom Goff403dbb92009-06-14 03:16:13 -07002854 err = -EAGAIN;
2855 goto add_proto_fail;
2856 }
2857#endif
Greg Rosec7ac8672011-06-10 01:27:09 +00002858 rtnl_register(RTNL_FAMILY_IPMR, RTM_GETROUTE,
2859 NULL, ipmr_rtm_dumproute, NULL);
Nikolay Aleksandrovccbb0aa2015-11-26 15:23:50 +01002860 rtnl_register(RTNL_FAMILY_IPMR, RTM_NEWROUTE,
2861 ipmr_rtm_route, NULL, NULL);
2862 rtnl_register(RTNL_FAMILY_IPMR, RTM_DELROUTE,
2863 ipmr_rtm_route, NULL, NULL);
Wang Chen03d2f892008-07-03 12:13:36 +08002864 return 0;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002865
Tom Goff403dbb92009-06-14 03:16:13 -07002866#ifdef CONFIG_IP_PIMSM_V2
2867add_proto_fail:
2868 unregister_netdevice_notifier(&ip_mr_notifier);
2869#endif
Benjamin Theryc3e38892008-11-19 14:07:41 -08002870reg_notif_fail:
Benjamin Therycf958ae32009-01-22 04:56:16 +00002871 unregister_pernet_subsys(&ipmr_net_ops);
2872reg_pernet_fail:
Benjamin Theryc3e38892008-11-19 14:07:41 -08002873 kmem_cache_destroy(mrt_cachep);
Wang Chen03d2f892008-07-03 12:13:36 +08002874 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875}