blob: c0317c940bcdc303015f500b52198e0862440e17 [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)--;
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000634 inet_netconf_notify_devconf(dev_net(dev),
635 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)++;
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000823 inet_netconf_notify_devconf(net, NETCONFA_MC_FORWARDING, dev->ifindex,
824 &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)--;
Nicolas Dichteld67b8c62012-12-04 01:13:35 +00001285 inet_netconf_notify_devconf(net, NETCONFA_MC_FORWARDING,
1286 NETCONFA_IFINDEX_ALL,
1287 net->ipv4.devconf_all);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001288 RCU_INIT_POINTER(mrt->mroute_sk, NULL);
Nikolay Aleksandrov0e615e92015-11-20 13:54:19 +01001289 mroute_clean_tables(mrt, false);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
1292 rtnl_unlock();
1293}
1294
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001295/* Socket options and virtual interface manipulation. The whole
1296 * virtual interface system is a complete heap, but unfortunately
1297 * that's how BSD mrouted happens to think. Maybe one day with a proper
1298 * MOSPF/PIM router set up we can clean this up.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001300
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001301int ip_mroute_setsockopt(struct sock *sk, int optname, char __user *optval,
1302 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001304 struct net *net = sock_net(sk);
1305 int val, ret = 0, parent = 0;
1306 struct mr_table *mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 struct vifctl vif;
1308 struct mfcctl mfc;
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001309 u32 uval;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001310
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001311 /* There's one exception to the lock - MRT_DONE which needs to unlock */
1312 rtnl_lock();
Eric Dumazet5e1859f2012-11-25 06:41:45 +00001313 if (sk->sk_type != SOCK_RAW ||
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001314 inet_sk(sk)->inet_num != IPPROTO_IGMP) {
1315 ret = -EOPNOTSUPP;
1316 goto out_unlock;
1317 }
Eric Dumazet5e1859f2012-11-25 06:41:45 +00001318
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001319 mrt = ipmr_get_table(net, raw_sk(sk)->ipmr_table ? : RT_TABLE_DEFAULT);
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001320 if (!mrt) {
1321 ret = -ENOENT;
1322 goto out_unlock;
1323 }
Stephen Hemminger132adf52007-03-08 20:44:43 -08001324 if (optname != MRT_INIT) {
Eric Dumazet33d480c2011-08-11 19:30:52 +00001325 if (sk != rcu_access_pointer(mrt->mroute_sk) &&
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001326 !ns_capable(net->user_ns, CAP_NET_ADMIN)) {
1327 ret = -EACCES;
1328 goto out_unlock;
1329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 }
1331
Stephen Hemminger132adf52007-03-08 20:44:43 -08001332 switch (optname) {
1333 case MRT_INIT:
Nikolay Aleksandrov42e6b892015-11-26 15:23:49 +01001334 if (optlen != sizeof(int)) {
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001335 ret = -EINVAL;
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001336 break;
Nikolay Aleksandrov42e6b892015-11-26 15:23:49 +01001337 }
1338 if (rtnl_dereference(mrt->mroute_sk)) {
1339 ret = -EADDRINUSE;
1340 break;
1341 }
Stephen Hemminger132adf52007-03-08 20:44:43 -08001342
1343 ret = ip_ra_control(sk, 1, mrtsock_destruct);
1344 if (ret == 0) {
Eric Dumazetcf778b02012-01-12 04:41:32 +00001345 rcu_assign_pointer(mrt->mroute_sk, sk);
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001346 IPV4_DEVCONF_ALL(net, MC_FORWARDING)++;
Nicolas Dichteld67b8c62012-12-04 01:13:35 +00001347 inet_netconf_notify_devconf(net, NETCONFA_MC_FORWARDING,
1348 NETCONFA_IFINDEX_ALL,
1349 net->ipv4.devconf_all);
Stephen Hemminger132adf52007-03-08 20:44:43 -08001350 }
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001351 break;
Stephen Hemminger132adf52007-03-08 20:44:43 -08001352 case MRT_DONE:
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001353 if (sk != rcu_access_pointer(mrt->mroute_sk)) {
1354 ret = -EACCES;
1355 } else {
1356 /* We need to unlock here because mrtsock_destruct takes
1357 * care of rtnl itself and we can't change that due to
1358 * the IP_ROUTER_ALERT setsockopt which runs without it.
1359 */
1360 rtnl_unlock();
1361 ret = ip_ra_control(sk, 0, NULL);
1362 goto out;
1363 }
1364 break;
Stephen Hemminger132adf52007-03-08 20:44:43 -08001365 case MRT_ADD_VIF:
1366 case MRT_DEL_VIF:
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001367 if (optlen != sizeof(vif)) {
1368 ret = -EINVAL;
1369 break;
1370 }
1371 if (copy_from_user(&vif, optval, sizeof(vif))) {
1372 ret = -EFAULT;
1373 break;
1374 }
1375 if (vif.vifc_vifi >= MAXVIFS) {
1376 ret = -ENFILE;
1377 break;
1378 }
Jianjun Kongc354e122008-11-03 00:28:02 -08001379 if (optname == MRT_ADD_VIF) {
Eric Dumazet4c968702010-10-01 16:15:01 +00001380 ret = vif_add(net, mrt, &vif,
1381 sk == rtnl_dereference(mrt->mroute_sk));
Stephen Hemminger132adf52007-03-08 20:44:43 -08001382 } else {
Patrick McHardy0c122952010-04-13 05:03:22 +00001383 ret = vif_delete(mrt, vif.vifc_vifi, 0, NULL);
Stephen Hemminger132adf52007-03-08 20:44:43 -08001384 }
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001385 break;
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001386 /* Manipulate the forwarding caches. These live
1387 * in a sort of kernel/user symbiosis.
1388 */
Stephen Hemminger132adf52007-03-08 20:44:43 -08001389 case MRT_ADD_MFC:
1390 case MRT_DEL_MFC:
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001391 parent = -1;
1392 case MRT_ADD_MFC_PROXY:
1393 case MRT_DEL_MFC_PROXY:
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001394 if (optlen != sizeof(mfc)) {
1395 ret = -EINVAL;
1396 break;
1397 }
1398 if (copy_from_user(&mfc, optval, sizeof(mfc))) {
1399 ret = -EFAULT;
1400 break;
1401 }
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001402 if (parent == 0)
1403 parent = mfc.mfcc_parent;
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001404 if (optname == MRT_DEL_MFC || optname == MRT_DEL_MFC_PROXY)
1405 ret = ipmr_mfc_delete(mrt, &mfc, parent);
Stephen Hemminger132adf52007-03-08 20:44:43 -08001406 else
Eric Dumazet4c968702010-10-01 16:15:01 +00001407 ret = ipmr_mfc_add(net, mrt, &mfc,
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001408 sk == rtnl_dereference(mrt->mroute_sk),
1409 parent);
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001410 break;
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001411 /* Control PIM assert. */
Stephen Hemminger132adf52007-03-08 20:44:43 -08001412 case MRT_ASSERT:
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001413 if (optlen != sizeof(val)) {
1414 ret = -EINVAL;
1415 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 }
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001417 if (get_user(val, (int __user *)optval)) {
1418 ret = -EFAULT;
1419 break;
1420 }
1421 mrt->mroute_do_assert = val;
1422 break;
1423 case MRT_PIM:
Nikolay Aleksandrov1973a4e2015-11-26 15:23:48 +01001424 if (!ipmr_pimsm_enabled()) {
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001425 ret = -ENOPROTOOPT;
1426 break;
1427 }
1428 if (optlen != sizeof(val)) {
1429 ret = -EINVAL;
1430 break;
1431 }
1432 if (get_user(val, (int __user *)optval)) {
1433 ret = -EFAULT;
1434 break;
1435 }
1436
1437 val = !!val;
1438 if (val != mrt->mroute_do_pim) {
1439 mrt->mroute_do_pim = val;
1440 mrt->mroute_do_assert = val;
1441 }
1442 break;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001443 case MRT_TABLE:
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001444 if (!IS_BUILTIN(CONFIG_IP_MROUTE_MULTIPLE_TABLES)) {
1445 ret = -ENOPROTOOPT;
1446 break;
1447 }
1448 if (optlen != sizeof(uval)) {
1449 ret = -EINVAL;
1450 break;
1451 }
1452 if (get_user(uval, (u32 __user *)optval)) {
1453 ret = -EFAULT;
1454 break;
1455 }
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001456
Eric Dumazet4c968702010-10-01 16:15:01 +00001457 if (sk == rtnl_dereference(mrt->mroute_sk)) {
1458 ret = -EBUSY;
1459 } else {
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001460 mrt = ipmr_new_table(net, uval);
Nikolay Aleksandrov1113ebb2015-11-21 15:57:24 +01001461 if (IS_ERR(mrt))
1462 ret = PTR_ERR(mrt);
Eric Dumazet5e1859f2012-11-25 06:41:45 +00001463 else
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001464 raw_sk(sk)->ipmr_table = uval;
Eric Dumazet4c968702010-10-01 16:15:01 +00001465 }
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001466 break;
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001467 /* Spurious command, or MRT_VERSION which you cannot set. */
Stephen Hemminger132adf52007-03-08 20:44:43 -08001468 default:
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001469 ret = -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 }
Nikolay Aleksandrov29e97d22015-11-21 15:57:31 +01001471out_unlock:
1472 rtnl_unlock();
1473out:
1474 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475}
1476
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001477/* Getsock opt support for the multicast routing system. */
Jianjun Kongc354e122008-11-03 00:28:02 -08001478int ip_mroute_getsockopt(struct sock *sk, int optname, char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
1480 int olr;
1481 int val;
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001482 struct net *net = sock_net(sk);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001483 struct mr_table *mrt;
1484
Eric Dumazet5e1859f2012-11-25 06:41:45 +00001485 if (sk->sk_type != SOCK_RAW ||
1486 inet_sk(sk)->inet_num != IPPROTO_IGMP)
1487 return -EOPNOTSUPP;
1488
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001489 mrt = ipmr_get_table(net, raw_sk(sk)->ipmr_table ? : RT_TABLE_DEFAULT);
Ian Morris51456b22015-04-03 09:17:26 +01001490 if (!mrt)
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001491 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Nikolay Aleksandrovfe9ef3c2015-11-21 15:57:28 +01001493 switch (optname) {
1494 case MRT_VERSION:
Jianjun Kongc354e122008-11-03 00:28:02 -08001495 val = 0x0305;
Nikolay Aleksandrovfe9ef3c2015-11-21 15:57:28 +01001496 break;
1497 case MRT_PIM:
Nikolay Aleksandrov1973a4e2015-11-26 15:23:48 +01001498 if (!ipmr_pimsm_enabled())
Nikolay Aleksandrovc316c622015-11-21 15:57:26 +01001499 return -ENOPROTOOPT;
Patrick McHardy0c122952010-04-13 05:03:22 +00001500 val = mrt->mroute_do_pim;
Nikolay Aleksandrovfe9ef3c2015-11-21 15:57:28 +01001501 break;
1502 case MRT_ASSERT:
Patrick McHardy0c122952010-04-13 05:03:22 +00001503 val = mrt->mroute_do_assert;
Nikolay Aleksandrovfe9ef3c2015-11-21 15:57:28 +01001504 break;
1505 default:
1506 return -ENOPROTOOPT;
Nikolay Aleksandrovc316c622015-11-21 15:57:26 +01001507 }
Nikolay Aleksandrovfe9ef3c2015-11-21 15:57:28 +01001508
1509 if (get_user(olr, optlen))
1510 return -EFAULT;
1511 olr = min_t(unsigned int, olr, sizeof(int));
1512 if (olr < 0)
1513 return -EINVAL;
1514 if (put_user(olr, optlen))
1515 return -EFAULT;
Jianjun Kongc354e122008-11-03 00:28:02 -08001516 if (copy_to_user(optval, &val, olr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 return -EFAULT;
1518 return 0;
1519}
1520
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001521/* The IP multicast ioctl support routines. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522int ipmr_ioctl(struct sock *sk, int cmd, void __user *arg)
1523{
1524 struct sioc_sg_req sr;
1525 struct sioc_vif_req vr;
1526 struct vif_device *vif;
1527 struct mfc_cache *c;
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001528 struct net *net = sock_net(sk);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001529 struct mr_table *mrt;
1530
1531 mrt = ipmr_get_table(net, raw_sk(sk)->ipmr_table ? : RT_TABLE_DEFAULT);
Ian Morris51456b22015-04-03 09:17:26 +01001532 if (!mrt)
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001533 return -ENOENT;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001534
Stephen Hemminger132adf52007-03-08 20:44:43 -08001535 switch (cmd) {
1536 case SIOCGETVIFCNT:
Jianjun Kongc354e122008-11-03 00:28:02 -08001537 if (copy_from_user(&vr, arg, sizeof(vr)))
Stephen Hemminger132adf52007-03-08 20:44:43 -08001538 return -EFAULT;
Patrick McHardy0c122952010-04-13 05:03:22 +00001539 if (vr.vifi >= mrt->maxvif)
Stephen Hemminger132adf52007-03-08 20:44:43 -08001540 return -EINVAL;
1541 read_lock(&mrt_lock);
Patrick McHardy0c122952010-04-13 05:03:22 +00001542 vif = &mrt->vif_table[vr.vifi];
1543 if (VIF_EXISTS(mrt, vr.vifi)) {
Jianjun Kongc354e122008-11-03 00:28:02 -08001544 vr.icount = vif->pkt_in;
1545 vr.ocount = vif->pkt_out;
1546 vr.ibytes = vif->bytes_in;
1547 vr.obytes = vif->bytes_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 read_unlock(&mrt_lock);
Stephen Hemminger132adf52007-03-08 20:44:43 -08001549
Jianjun Kongc354e122008-11-03 00:28:02 -08001550 if (copy_to_user(arg, &vr, sizeof(vr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 return -EFAULT;
Stephen Hemminger132adf52007-03-08 20:44:43 -08001552 return 0;
1553 }
1554 read_unlock(&mrt_lock);
1555 return -EADDRNOTAVAIL;
1556 case SIOCGETSGCNT:
Jianjun Kongc354e122008-11-03 00:28:02 -08001557 if (copy_from_user(&sr, arg, sizeof(sr)))
Stephen Hemminger132adf52007-03-08 20:44:43 -08001558 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Eric Dumazeta8c94862010-10-01 16:15:08 +00001560 rcu_read_lock();
Patrick McHardy0c122952010-04-13 05:03:22 +00001561 c = ipmr_cache_find(mrt, sr.src.s_addr, sr.grp.s_addr);
Stephen Hemminger132adf52007-03-08 20:44:43 -08001562 if (c) {
1563 sr.pktcnt = c->mfc_un.res.pkt;
1564 sr.bytecnt = c->mfc_un.res.bytes;
1565 sr.wrong_if = c->mfc_un.res.wrong_if;
Eric Dumazeta8c94862010-10-01 16:15:08 +00001566 rcu_read_unlock();
Stephen Hemminger132adf52007-03-08 20:44:43 -08001567
Jianjun Kongc354e122008-11-03 00:28:02 -08001568 if (copy_to_user(arg, &sr, sizeof(sr)))
Stephen Hemminger132adf52007-03-08 20:44:43 -08001569 return -EFAULT;
1570 return 0;
1571 }
Eric Dumazeta8c94862010-10-01 16:15:08 +00001572 rcu_read_unlock();
Stephen Hemminger132adf52007-03-08 20:44:43 -08001573 return -EADDRNOTAVAIL;
1574 default:
1575 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 }
1577}
1578
Eric W. Biederman709b46e2011-01-29 16:15:56 +00001579#ifdef CONFIG_COMPAT
1580struct compat_sioc_sg_req {
1581 struct in_addr src;
1582 struct in_addr grp;
1583 compat_ulong_t pktcnt;
1584 compat_ulong_t bytecnt;
1585 compat_ulong_t wrong_if;
1586};
1587
David S. Millerca6b8bb02011-02-03 17:24:28 -08001588struct compat_sioc_vif_req {
1589 vifi_t vifi; /* Which iface */
1590 compat_ulong_t icount;
1591 compat_ulong_t ocount;
1592 compat_ulong_t ibytes;
1593 compat_ulong_t obytes;
1594};
1595
Eric W. Biederman709b46e2011-01-29 16:15:56 +00001596int ipmr_compat_ioctl(struct sock *sk, unsigned int cmd, void __user *arg)
1597{
David S. Miller0033d5a2011-02-03 17:21:31 -08001598 struct compat_sioc_sg_req sr;
David S. Millerca6b8bb02011-02-03 17:24:28 -08001599 struct compat_sioc_vif_req vr;
1600 struct vif_device *vif;
Eric W. Biederman709b46e2011-01-29 16:15:56 +00001601 struct mfc_cache *c;
1602 struct net *net = sock_net(sk);
1603 struct mr_table *mrt;
1604
1605 mrt = ipmr_get_table(net, raw_sk(sk)->ipmr_table ? : RT_TABLE_DEFAULT);
Ian Morris51456b22015-04-03 09:17:26 +01001606 if (!mrt)
Eric W. Biederman709b46e2011-01-29 16:15:56 +00001607 return -ENOENT;
1608
1609 switch (cmd) {
David S. Millerca6b8bb02011-02-03 17:24:28 -08001610 case SIOCGETVIFCNT:
1611 if (copy_from_user(&vr, arg, sizeof(vr)))
1612 return -EFAULT;
1613 if (vr.vifi >= mrt->maxvif)
1614 return -EINVAL;
1615 read_lock(&mrt_lock);
1616 vif = &mrt->vif_table[vr.vifi];
1617 if (VIF_EXISTS(mrt, vr.vifi)) {
1618 vr.icount = vif->pkt_in;
1619 vr.ocount = vif->pkt_out;
1620 vr.ibytes = vif->bytes_in;
1621 vr.obytes = vif->bytes_out;
1622 read_unlock(&mrt_lock);
1623
1624 if (copy_to_user(arg, &vr, sizeof(vr)))
1625 return -EFAULT;
1626 return 0;
1627 }
1628 read_unlock(&mrt_lock);
1629 return -EADDRNOTAVAIL;
Eric W. Biederman709b46e2011-01-29 16:15:56 +00001630 case SIOCGETSGCNT:
1631 if (copy_from_user(&sr, arg, sizeof(sr)))
1632 return -EFAULT;
1633
1634 rcu_read_lock();
1635 c = ipmr_cache_find(mrt, sr.src.s_addr, sr.grp.s_addr);
1636 if (c) {
1637 sr.pktcnt = c->mfc_un.res.pkt;
1638 sr.bytecnt = c->mfc_un.res.bytes;
1639 sr.wrong_if = c->mfc_un.res.wrong_if;
1640 rcu_read_unlock();
1641
1642 if (copy_to_user(arg, &sr, sizeof(sr)))
1643 return -EFAULT;
1644 return 0;
1645 }
1646 rcu_read_unlock();
1647 return -EADDRNOTAVAIL;
1648 default:
1649 return -ENOIOCTLCMD;
1650 }
1651}
1652#endif
1653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654static int ipmr_device_event(struct notifier_block *this, unsigned long event, void *ptr)
1655{
Jiri Pirko351638e2013-05-28 01:30:21 +00001656 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001657 struct net *net = dev_net(dev);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001658 struct mr_table *mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 struct vif_device *v;
1660 int ct;
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001661
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 if (event != NETDEV_UNREGISTER)
1663 return NOTIFY_DONE;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001664
1665 ipmr_for_each_table(mrt, net) {
1666 v = &mrt->vif_table[0];
1667 for (ct = 0; ct < mrt->maxvif; ct++, v++) {
1668 if (v->dev == dev)
RongQing.Lie92036a2011-11-23 23:10:52 +00001669 vif_delete(mrt, ct, 1, NULL);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 }
1672 return NOTIFY_DONE;
1673}
1674
Jianjun Kongc354e122008-11-03 00:28:02 -08001675static struct notifier_block ip_mr_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 .notifier_call = ipmr_device_event,
1677};
1678
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001679/* Encapsulate a packet by attaching a valid IPIP header to it.
1680 * This avoids tunnel drivers and other mess and gives us the speed so
1681 * important for multicast video.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 */
Hannes Frederic Sowab6a77192015-03-25 17:07:44 +01001683static void ip_encap(struct net *net, struct sk_buff *skb,
1684 __be32 saddr, __be32 daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685{
Arnaldo Carvalho de Melo8856dfa2007-03-10 19:40:39 -03001686 struct iphdr *iph;
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001687 const struct iphdr *old_iph = ip_hdr(skb);
Arnaldo Carvalho de Melo8856dfa2007-03-10 19:40:39 -03001688
1689 skb_push(skb, sizeof(struct iphdr));
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001690 skb->transport_header = skb->network_header;
Arnaldo Carvalho de Melo8856dfa2007-03-10 19:40:39 -03001691 skb_reset_network_header(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001692 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001694 iph->version = 4;
Arnaldo Carvalho de Meloe023dd62007-03-12 20:09:36 -03001695 iph->tos = old_iph->tos;
1696 iph->ttl = old_iph->ttl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 iph->frag_off = 0;
1698 iph->daddr = daddr;
1699 iph->saddr = saddr;
1700 iph->protocol = IPPROTO_IPIP;
1701 iph->ihl = 5;
1702 iph->tot_len = htons(skb->len);
Hannes Frederic Sowab6a77192015-03-25 17:07:44 +01001703 ip_select_ident(net, skb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 ip_send_check(iph);
1705
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
1707 nf_reset(skb);
1708}
1709
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05001710static inline int ipmr_forward_finish(struct net *net, struct sock *sk,
1711 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712{
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001713 struct ip_options *opt = &(IPCB(skb)->opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
David S. Miller73186df2015-11-03 13:41:45 -05001715 IP_INC_STATS(net, IPSTATS_MIB_OUTFORWDATAGRAMS);
1716 IP_ADD_STATS(net, IPSTATS_MIB_OUTOCTETS, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
1718 if (unlikely(opt->optlen))
1719 ip_forward_options(skb);
1720
Eric W. Biederman13206b62015-10-07 16:48:35 -05001721 return dst_output(net, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722}
1723
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001724/* Processing handlers for ipmr_forward */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Patrick McHardy0c122952010-04-13 05:03:22 +00001726static void ipmr_queue_xmit(struct net *net, struct mr_table *mrt,
1727 struct sk_buff *skb, struct mfc_cache *c, int vifi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001729 const struct iphdr *iph = ip_hdr(skb);
Patrick McHardy0c122952010-04-13 05:03:22 +00001730 struct vif_device *vif = &mrt->vif_table[vifi];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 struct net_device *dev;
1732 struct rtable *rt;
David S. Miller31e4543d2011-05-03 20:25:42 -07001733 struct flowi4 fl4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 int encap = 0;
1735
Ian Morris51456b22015-04-03 09:17:26 +01001736 if (!vif->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 goto out_free;
1738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 if (vif->flags & VIFF_REGISTER) {
1740 vif->pkt_out++;
Jianjun Kongc354e122008-11-03 00:28:02 -08001741 vif->bytes_out += skb->len;
Pavel Emelyanovcf3677a2008-05-21 14:17:33 -07001742 vif->dev->stats.tx_bytes += skb->len;
1743 vif->dev->stats.tx_packets++;
Patrick McHardy0c122952010-04-13 05:03:22 +00001744 ipmr_cache_report(mrt, skb, vifi, IGMPMSG_WHOLEPKT);
Ilpo Järvinen69ebbf52009-02-06 23:46:51 -08001745 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001748 if (vif->flags & VIFF_TUNNEL) {
David S. Miller31e4543d2011-05-03 20:25:42 -07001749 rt = ip_route_output_ports(net, &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -05001750 vif->remote, vif->local,
1751 0, 0,
1752 IPPROTO_IPIP,
1753 RT_TOS(iph->tos), vif->link);
David S. Millerb23dd4f2011-03-02 14:31:35 -08001754 if (IS_ERR(rt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 goto out_free;
1756 encap = sizeof(struct iphdr);
1757 } else {
David S. Miller31e4543d2011-05-03 20:25:42 -07001758 rt = ip_route_output_ports(net, &fl4, NULL, iph->daddr, 0,
David S. Miller78fbfd82011-03-12 00:00:52 -05001759 0, 0,
1760 IPPROTO_IPIP,
1761 RT_TOS(iph->tos), vif->link);
David S. Millerb23dd4f2011-03-02 14:31:35 -08001762 if (IS_ERR(rt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 goto out_free;
1764 }
1765
Changli Gaod8d1f302010-06-10 23:31:35 -07001766 dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Changli Gaod8d1f302010-06-10 23:31:35 -07001768 if (skb->len+encap > dst_mtu(&rt->dst) && (ntohs(iph->frag_off) & IP_DF)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 /* Do not fragment multicasts. Alas, IPv4 does not
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001770 * allow to send ICMP, so that packets will disappear
1771 * to blackhole.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 */
David S. Miller73186df2015-11-03 13:41:45 -05001773 IP_INC_STATS(net, IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 ip_rt_put(rt);
1775 goto out_free;
1776 }
1777
Changli Gaod8d1f302010-06-10 23:31:35 -07001778 encap += LL_RESERVED_SPACE(dev) + rt->dst.header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
1780 if (skb_cow(skb, encap)) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001781 ip_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 goto out_free;
1783 }
1784
1785 vif->pkt_out++;
Jianjun Kongc354e122008-11-03 00:28:02 -08001786 vif->bytes_out += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Eric Dumazetadf30902009-06-02 05:19:30 +00001788 skb_dst_drop(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -07001789 skb_dst_set(skb, &rt->dst);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001790 ip_decrease_ttl(ip_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
1792 /* FIXME: forward and output firewalls used to be called here.
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001793 * What do we do with netfilter? -- RR
1794 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 if (vif->flags & VIFF_TUNNEL) {
Hannes Frederic Sowab6a77192015-03-25 17:07:44 +01001796 ip_encap(net, skb, vif->local, vif->remote);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 /* FIXME: extra output firewall step used to be here. --RR */
Pavel Emelyanov2f4c02d2008-05-21 14:16:14 -07001798 vif->dev->stats.tx_packets++;
1799 vif->dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 }
1801
Lance Richardson9ee6c5d2016-11-02 16:36:17 -04001802 IPCB(skb)->flags |= IPSKB_FORWARDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001804 /* RFC1584 teaches, that DVMRP/PIM router must deliver packets locally
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 * not only before forwarding, but after forwarding on all output
1806 * interfaces. It is clear, if mrouter runs a multicasting
1807 * program, it should receive packets not depending to what interface
1808 * program is joined.
1809 * If we will not make it, the program will have to join on all
1810 * interfaces. On the other hand, multihoming host (or router, but
1811 * not mrouter) cannot join to more than one interface - it will
1812 * result in receiving multiple packets.
1813 */
Eric W. Biederman29a26a52015-09-15 20:04:16 -05001814 NF_HOOK(NFPROTO_IPV4, NF_INET_FORWARD,
1815 net, NULL, skb, skb->dev, dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 ipmr_forward_finish);
1817 return;
1818
1819out_free:
1820 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821}
1822
Patrick McHardy0c122952010-04-13 05:03:22 +00001823static int ipmr_find_vif(struct mr_table *mrt, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824{
1825 int ct;
Patrick McHardy0c122952010-04-13 05:03:22 +00001826
1827 for (ct = mrt->maxvif-1; ct >= 0; ct--) {
1828 if (mrt->vif_table[ct].dev == dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 break;
1830 }
1831 return ct;
1832}
1833
1834/* "local" means that we should preserve one skb (for local delivery) */
Rami Rosenc4854ec2013-07-20 15:09:28 +03001835static void ip_mr_forward(struct net *net, struct mr_table *mrt,
1836 struct sk_buff *skb, struct mfc_cache *cache,
1837 int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838{
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01001839 int true_vifi = ipmr_find_vif(mrt, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 int psend = -1;
1841 int vif, ct;
1842
1843 vif = cache->mfc_parent;
1844 cache->mfc_un.res.pkt++;
1845 cache->mfc_un.res.bytes += skb->len;
Nikolay Aleksandrov43b9e122016-07-14 19:28:27 +03001846 cache->mfc_un.res.lastuse = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Nicolas Dichtel360eb5d2013-01-22 11:18:03 +01001848 if (cache->mfc_origin == htonl(INADDR_ANY) && true_vifi >= 0) {
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001849 struct mfc_cache *cache_proxy;
1850
1851 /* For an (*,G) entry, we only check that the incomming
1852 * interface is part of the static tree.
1853 */
1854 cache_proxy = ipmr_cache_find_any_parent(mrt, vif);
1855 if (cache_proxy &&
1856 cache_proxy->mfc_un.res.ttls[true_vifi] < 255)
1857 goto forward;
1858 }
1859
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001860 /* Wrong interface: drop packet and (maybe) send PIM assert. */
Patrick McHardy0c122952010-04-13 05:03:22 +00001861 if (mrt->vif_table[vif].dev != skb->dev) {
David Aherne58e4152016-10-31 15:54:00 -07001862 struct net_device *mdev;
1863
1864 mdev = l3mdev_master_dev_rcu(mrt->vif_table[vif].dev);
1865 if (mdev == skb->dev)
1866 goto forward;
1867
David S. Millerc7537962010-11-11 17:07:48 -08001868 if (rt_is_output_route(skb_rtable(skb))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 /* It is our own packet, looped back.
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001870 * Very complicated situation...
1871 *
1872 * The best workaround until routing daemons will be
1873 * fixed is not to redistribute packet, if it was
1874 * send through wrong interface. It means, that
1875 * multicast applications WILL NOT work for
1876 * (S,G), which have default multicast route pointing
1877 * to wrong oif. In any case, it is not a good
1878 * idea to use multicasting applications on router.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 */
1880 goto dont_forward;
1881 }
1882
1883 cache->mfc_un.res.wrong_if++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Patrick McHardy0c122952010-04-13 05:03:22 +00001885 if (true_vifi >= 0 && mrt->mroute_do_assert &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 /* pimsm uses asserts, when switching from RPT to SPT,
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001887 * so that we cannot check that packet arrived on an oif.
1888 * It is bad, but otherwise we would need to move pretty
1889 * large chunk of pimd to kernel. Ough... --ANK
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 */
Patrick McHardy0c122952010-04-13 05:03:22 +00001891 (mrt->mroute_do_pim ||
Benjamin Thery6f9374a2009-01-22 04:56:20 +00001892 cache->mfc_un.res.ttls[true_vifi] < 255) &&
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001893 time_after(jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 cache->mfc_un.res.last_assert + MFC_ASSERT_THRESH)) {
1895 cache->mfc_un.res.last_assert = jiffies;
Patrick McHardy0c122952010-04-13 05:03:22 +00001896 ipmr_cache_report(mrt, skb, true_vifi, IGMPMSG_WRONGVIF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 }
1898 goto dont_forward;
1899 }
1900
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001901forward:
Patrick McHardy0c122952010-04-13 05:03:22 +00001902 mrt->vif_table[vif].pkt_in++;
1903 mrt->vif_table[vif].bytes_in += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001905 /* Forward the frame */
Nicolas Dichtel360eb5d2013-01-22 11:18:03 +01001906 if (cache->mfc_origin == htonl(INADDR_ANY) &&
1907 cache->mfc_mcastgrp == htonl(INADDR_ANY)) {
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001908 if (true_vifi >= 0 &&
1909 true_vifi != cache->mfc_parent &&
1910 ip_hdr(skb)->ttl >
1911 cache->mfc_un.res.ttls[cache->mfc_parent]) {
1912 /* It's an (*,*) entry and the packet is not coming from
1913 * the upstream: forward the packet to the upstream
1914 * only.
1915 */
1916 psend = cache->mfc_parent;
1917 goto last_forward;
1918 }
1919 goto dont_forward;
1920 }
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001921 for (ct = cache->mfc_un.res.maxvif - 1;
1922 ct >= cache->mfc_un.res.minvif; ct--) {
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001923 /* For (*,G) entry, don't forward to the incoming interface */
Nicolas Dichtel360eb5d2013-01-22 11:18:03 +01001924 if ((cache->mfc_origin != htonl(INADDR_ANY) ||
1925 ct != true_vifi) &&
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001926 ip_hdr(skb)->ttl > cache->mfc_un.res.ttls[ct]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 if (psend != -1) {
1928 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001929
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 if (skb2)
Patrick McHardy0c122952010-04-13 05:03:22 +00001931 ipmr_queue_xmit(net, mrt, skb2, cache,
1932 psend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 }
Jianjun Kongc354e122008-11-03 00:28:02 -08001934 psend = ct;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 }
1936 }
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00001937last_forward:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 if (psend != -1) {
1939 if (local) {
1940 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001941
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 if (skb2)
Patrick McHardy0c122952010-04-13 05:03:22 +00001943 ipmr_queue_xmit(net, mrt, skb2, cache, psend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 } else {
Patrick McHardy0c122952010-04-13 05:03:22 +00001945 ipmr_queue_xmit(net, mrt, skb, cache, psend);
Rami Rosenc4854ec2013-07-20 15:09:28 +03001946 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 }
1948 }
1949
1950dont_forward:
1951 if (!local)
1952 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953}
1954
David S. Miller417da662011-05-03 19:42:43 -07001955static struct mr_table *ipmr_rt_fib_lookup(struct net *net, struct sk_buff *skb)
David S. Milleree3f1aa2011-03-09 14:06:20 -08001956{
David S. Miller417da662011-05-03 19:42:43 -07001957 struct rtable *rt = skb_rtable(skb);
1958 struct iphdr *iph = ip_hdr(skb);
David S. Millerda919812011-03-12 02:04:50 -05001959 struct flowi4 fl4 = {
David S. Miller417da662011-05-03 19:42:43 -07001960 .daddr = iph->daddr,
1961 .saddr = iph->saddr,
Julian Anastasovb0fe4a32011-07-23 02:00:41 +00001962 .flowi4_tos = RT_TOS(iph->tos),
David S. Miller4fd551d2012-07-17 14:39:44 -07001963 .flowi4_oif = (rt_is_output_route(rt) ?
1964 skb->dev->ifindex : 0),
1965 .flowi4_iif = (rt_is_output_route(rt) ?
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001966 LOOPBACK_IFINDEX :
David S. Miller4fd551d2012-07-17 14:39:44 -07001967 skb->dev->ifindex),
David Millerb4869882012-07-01 02:03:01 +00001968 .flowi4_mark = skb->mark,
David S. Milleree3f1aa2011-03-09 14:06:20 -08001969 };
1970 struct mr_table *mrt;
1971 int err;
1972
David S. Millerda919812011-03-12 02:04:50 -05001973 err = ipmr_fib_lookup(net, &fl4, &mrt);
David S. Milleree3f1aa2011-03-09 14:06:20 -08001974 if (err)
1975 return ERR_PTR(err);
1976 return mrt;
1977}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01001979/* Multicast packets for forwarding arrive here
1980 * Called with rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982int ip_mr_input(struct sk_buff *skb)
1983{
1984 struct mfc_cache *cache;
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001985 struct net *net = dev_net(skb->dev);
Eric Dumazet511c3f92009-06-02 05:14:27 +00001986 int local = skb_rtable(skb)->rt_flags & RTCF_LOCAL;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001987 struct mr_table *mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
1989 /* Packet is looped back after forward, it should not be
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001990 * forwarded second time, but still can be delivered locally.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 */
Eric Dumazet4c968702010-10-01 16:15:01 +00001992 if (IPCB(skb)->flags & IPSKB_FORWARDED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 goto dont_forward;
1994
David S. Miller417da662011-05-03 19:42:43 -07001995 mrt = ipmr_rt_fib_lookup(net, skb);
David S. Milleree3f1aa2011-03-09 14:06:20 -08001996 if (IS_ERR(mrt)) {
1997 kfree_skb(skb);
1998 return PTR_ERR(mrt);
Ben Greeare40dbc52010-07-15 13:22:33 +00001999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 if (!local) {
Eric Dumazet4c968702010-10-01 16:15:01 +00002001 if (IPCB(skb)->opt.router_alert) {
2002 if (ip_call_ra_chain(skb))
2003 return 0;
2004 } else if (ip_hdr(skb)->protocol == IPPROTO_IGMP) {
2005 /* IGMPv1 (and broken IGMPv2 implementations sort of
2006 * Cisco IOS <= 11.2(8)) do not put router alert
2007 * option to IGMP packets destined to routable
2008 * groups. It is very bad, because it means
2009 * that we can forward NO IGMP messages.
2010 */
2011 struct sock *mroute_sk;
2012
2013 mroute_sk = rcu_dereference(mrt->mroute_sk);
2014 if (mroute_sk) {
2015 nf_reset(skb);
2016 raw_rcv(mroute_sk, skb);
2017 return 0;
2018 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 }
2020 }
2021
Eric Dumazeta8c94862010-10-01 16:15:08 +00002022 /* already under rcu_read_lock() */
Patrick McHardy0c122952010-04-13 05:03:22 +00002023 cache = ipmr_cache_find(mrt, ip_hdr(skb)->saddr, ip_hdr(skb)->daddr);
Ian Morris51456b22015-04-03 09:17:26 +01002024 if (!cache) {
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00002025 int vif = ipmr_find_vif(mrt, skb->dev);
2026
2027 if (vif >= 0)
2028 cache = ipmr_cache_find_any(mrt, ip_hdr(skb)->daddr,
2029 vif);
2030 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01002032 /* No usable cache entry */
Ian Morris51456b22015-04-03 09:17:26 +01002033 if (!cache) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 int vif;
2035
2036 if (local) {
2037 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
2038 ip_local_deliver(skb);
Ian Morris51456b22015-04-03 09:17:26 +01002039 if (!skb2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 skb = skb2;
2042 }
2043
Eric Dumazeta8c94862010-10-01 16:15:08 +00002044 read_lock(&mrt_lock);
Patrick McHardy0c122952010-04-13 05:03:22 +00002045 vif = ipmr_find_vif(mrt, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 if (vif >= 0) {
Eric Dumazet0eae88f2010-04-20 19:06:52 -07002047 int err2 = ipmr_cache_unresolved(mrt, vif, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 read_unlock(&mrt_lock);
2049
Eric Dumazet0eae88f2010-04-20 19:06:52 -07002050 return err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 }
2052 read_unlock(&mrt_lock);
2053 kfree_skb(skb);
2054 return -ENODEV;
2055 }
2056
Eric Dumazeta8c94862010-10-01 16:15:08 +00002057 read_lock(&mrt_lock);
Patrick McHardy0c122952010-04-13 05:03:22 +00002058 ip_mr_forward(net, mrt, skb, cache, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 read_unlock(&mrt_lock);
2060
2061 if (local)
2062 return ip_local_deliver(skb);
2063
2064 return 0;
2065
2066dont_forward:
2067 if (local)
2068 return ip_local_deliver(skb);
2069 kfree_skb(skb);
2070 return 0;
2071}
2072
Ilpo Järvinenb1879202008-12-16 01:15:11 -08002073#ifdef CONFIG_IP_PIMSM_V1
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01002074/* Handle IGMP messages of PIMv1 */
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002075int pim_rcv_v1(struct sk_buff *skb)
Ilpo Järvinenb1879202008-12-16 01:15:11 -08002076{
2077 struct igmphdr *pim;
Benjamin Thery4feb88e2009-01-22 04:56:23 +00002078 struct net *net = dev_net(skb->dev);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002079 struct mr_table *mrt;
Ilpo Järvinenb1879202008-12-16 01:15:11 -08002080
2081 if (!pskb_may_pull(skb, sizeof(*pim) + sizeof(struct iphdr)))
2082 goto drop;
2083
2084 pim = igmp_hdr(skb);
2085
David S. Miller417da662011-05-03 19:42:43 -07002086 mrt = ipmr_rt_fib_lookup(net, skb);
David S. Milleree3f1aa2011-03-09 14:06:20 -08002087 if (IS_ERR(mrt))
2088 goto drop;
Patrick McHardy0c122952010-04-13 05:03:22 +00002089 if (!mrt->mroute_do_pim ||
Ilpo Järvinenb1879202008-12-16 01:15:11 -08002090 pim->group != PIM_V1_VERSION || pim->code != PIM_V1_REGISTER)
2091 goto drop;
2092
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002093 if (__pim_rcv(mrt, skb, sizeof(*pim))) {
Ilpo Järvinenb1879202008-12-16 01:15:11 -08002094drop:
2095 kfree_skb(skb);
2096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 return 0;
2098}
2099#endif
2100
2101#ifdef CONFIG_IP_PIMSM_V2
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002102static int pim_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103{
2104 struct pimreghdr *pim;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002105 struct net *net = dev_net(skb->dev);
2106 struct mr_table *mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Ilpo Järvinenb1879202008-12-16 01:15:11 -08002108 if (!pskb_may_pull(skb, sizeof(*pim) + sizeof(struct iphdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 goto drop;
2110
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002111 pim = (struct pimreghdr *)skb_transport_header(skb);
Nikolay Aleksandrov56245ca2016-10-31 13:21:04 +01002112 if (pim->type != ((PIM_VERSION << 4) | (PIM_TYPE_REGISTER)) ||
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002113 (pim->flags & PIM_NULL_REGISTER) ||
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002114 (ip_compute_csum((void *)pim, sizeof(*pim)) != 0 &&
Al Virod3bc23e2006-11-14 21:24:49 -08002115 csum_fold(skb_checksum(skb, 0, skb->len, 0))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 goto drop;
2117
David S. Miller417da662011-05-03 19:42:43 -07002118 mrt = ipmr_rt_fib_lookup(net, skb);
David S. Milleree3f1aa2011-03-09 14:06:20 -08002119 if (IS_ERR(mrt))
2120 goto drop;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002121 if (__pim_rcv(mrt, skb, sizeof(*pim))) {
Ilpo Järvinenb1879202008-12-16 01:15:11 -08002122drop:
2123 kfree_skb(skb);
2124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 return 0;
2126}
2127#endif
2128
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002129static int __ipmr_fill_mroute(struct mr_table *mrt, struct sk_buff *skb,
2130 struct mfc_cache *c, struct rtmsg *rtm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131{
Nicolas Dichteladfa85e2012-12-04 01:13:37 +00002132 struct rta_mfc_stats mfcs;
Nikolay Aleksandrov43b9e122016-07-14 19:28:27 +03002133 struct nlattr *mp_attr;
2134 struct rtnexthop *nhp;
Nikolay Aleksandrovb5036cd2016-09-20 16:17:22 +02002135 unsigned long lastuse;
Nikolay Aleksandrov43b9e122016-07-14 19:28:27 +03002136 int ct;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Nicolas Dichtel74381892010-03-25 23:45:35 +00002138 /* If cache is unresolved, don't try to parse IIF and OIF */
Nikolay Aleksandrov1708ebc2017-01-03 12:13:39 +01002139 if (c->mfc_parent >= MAXVIFS) {
2140 rtm->rtm_flags |= RTNH_F_UNRESOLVED;
Nicolas Dichtel74381892010-03-25 23:45:35 +00002141 return -ENOENT;
Nikolay Aleksandrov1708ebc2017-01-03 12:13:39 +01002142 }
Nicolas Dichtel74381892010-03-25 23:45:35 +00002143
Thomas Graf92a395e2012-06-26 23:36:13 +00002144 if (VIF_EXISTS(mrt, c->mfc_parent) &&
2145 nla_put_u32(skb, RTA_IIF, mrt->vif_table[c->mfc_parent].dev->ifindex) < 0)
2146 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
Thomas Graf92a395e2012-06-26 23:36:13 +00002148 if (!(mp_attr = nla_nest_start(skb, RTA_MULTIPATH)))
2149 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
2151 for (ct = c->mfc_un.res.minvif; ct < c->mfc_un.res.maxvif; ct++) {
Patrick McHardy0c122952010-04-13 05:03:22 +00002152 if (VIF_EXISTS(mrt, ct) && c->mfc_un.res.ttls[ct] < 255) {
Thomas Graf92a395e2012-06-26 23:36:13 +00002153 if (!(nhp = nla_reserve_nohdr(skb, sizeof(*nhp)))) {
2154 nla_nest_cancel(skb, mp_attr);
2155 return -EMSGSIZE;
2156 }
2157
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 nhp->rtnh_flags = 0;
2159 nhp->rtnh_hops = c->mfc_un.res.ttls[ct];
Patrick McHardy0c122952010-04-13 05:03:22 +00002160 nhp->rtnh_ifindex = mrt->vif_table[ct].dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 nhp->rtnh_len = sizeof(*nhp);
2162 }
2163 }
Thomas Graf92a395e2012-06-26 23:36:13 +00002164
2165 nla_nest_end(skb, mp_attr);
2166
Nikolay Aleksandrovb5036cd2016-09-20 16:17:22 +02002167 lastuse = READ_ONCE(c->mfc_un.res.lastuse);
2168 lastuse = time_after_eq(jiffies, lastuse) ? jiffies - lastuse : 0;
2169
Nicolas Dichteladfa85e2012-12-04 01:13:37 +00002170 mfcs.mfcs_packets = c->mfc_un.res.pkt;
2171 mfcs.mfcs_bytes = c->mfc_un.res.bytes;
2172 mfcs.mfcs_wrong_if = c->mfc_un.res.wrong_if;
Nikolay Aleksandrov43b9e122016-07-14 19:28:27 +03002173 if (nla_put_64bit(skb, RTA_MFC_STATS, sizeof(mfcs), &mfcs, RTA_PAD) ||
Nikolay Aleksandrovb5036cd2016-09-20 16:17:22 +02002174 nla_put_u64_64bit(skb, RTA_EXPIRES, jiffies_to_clock_t(lastuse),
Nikolay Aleksandrov43b9e122016-07-14 19:28:27 +03002175 RTA_PAD))
Nicolas Dichteladfa85e2012-12-04 01:13:37 +00002176 return -EMSGSIZE;
2177
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 rtm->rtm_type = RTN_MULTICAST;
2179 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180}
2181
David S. Miller9a1b9492011-05-04 12:18:54 -07002182int ipmr_get_route(struct net *net, struct sk_buff *skb,
2183 __be32 saddr, __be32 daddr,
David Ahern9f09eae2017-01-06 17:39:06 -08002184 struct rtmsg *rtm, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 struct mfc_cache *cache;
David S. Miller9a1b9492011-05-04 12:18:54 -07002187 struct mr_table *mrt;
2188 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002190 mrt = ipmr_get_table(net, RT_TABLE_DEFAULT);
Ian Morris51456b22015-04-03 09:17:26 +01002191 if (!mrt)
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002192 return -ENOENT;
2193
Eric Dumazeta8c94862010-10-01 16:15:08 +00002194 rcu_read_lock();
David S. Miller9a1b9492011-05-04 12:18:54 -07002195 cache = ipmr_cache_find(mrt, saddr, daddr);
Ian Morris51456b22015-04-03 09:17:26 +01002196 if (!cache && skb->dev) {
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00002197 int vif = ipmr_find_vif(mrt, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
Nicolas Dichtel660b26d2013-01-21 06:00:26 +00002199 if (vif >= 0)
2200 cache = ipmr_cache_find_any(mrt, daddr, vif);
2201 }
Ian Morris51456b22015-04-03 09:17:26 +01002202 if (!cache) {
Alexey Kuznetsov72287492006-07-25 16:45:12 -07002203 struct sk_buff *skb2;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002204 struct iphdr *iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 struct net_device *dev;
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002206 int vif = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 dev = skb->dev;
Eric Dumazeta8c94862010-10-01 16:15:08 +00002209 read_lock(&mrt_lock);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002210 if (dev)
2211 vif = ipmr_find_vif(mrt, dev);
2212 if (vif < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 read_unlock(&mrt_lock);
Eric Dumazeta8c94862010-10-01 16:15:08 +00002214 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 return -ENODEV;
2216 }
Alexey Kuznetsov72287492006-07-25 16:45:12 -07002217 skb2 = skb_clone(skb, GFP_ATOMIC);
2218 if (!skb2) {
2219 read_unlock(&mrt_lock);
Eric Dumazeta8c94862010-10-01 16:15:08 +00002220 rcu_read_unlock();
Alexey Kuznetsov72287492006-07-25 16:45:12 -07002221 return -ENOMEM;
2222 }
2223
Nikolay Aleksandrov2cf75072016-09-25 23:08:31 +02002224 NETLINK_CB(skb2).portid = portid;
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -07002225 skb_push(skb2, sizeof(struct iphdr));
2226 skb_reset_network_header(skb2);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002227 iph = ip_hdr(skb2);
2228 iph->ihl = sizeof(struct iphdr) >> 2;
David S. Miller9a1b9492011-05-04 12:18:54 -07002229 iph->saddr = saddr;
2230 iph->daddr = daddr;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002231 iph->version = 0;
Patrick McHardy0c122952010-04-13 05:03:22 +00002232 err = ipmr_cache_unresolved(mrt, vif, skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 read_unlock(&mrt_lock);
Eric Dumazeta8c94862010-10-01 16:15:08 +00002234 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 return err;
2236 }
2237
Eric Dumazeta8c94862010-10-01 16:15:08 +00002238 read_lock(&mrt_lock);
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002239 err = __ipmr_fill_mroute(mrt, skb, cache, rtm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 read_unlock(&mrt_lock);
Eric Dumazeta8c94862010-10-01 16:15:08 +00002241 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 return err;
2243}
2244
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002245static int ipmr_fill_mroute(struct mr_table *mrt, struct sk_buff *skb,
Nicolas Dichtel65886f42014-03-19 17:47:50 +01002246 u32 portid, u32 seq, struct mfc_cache *c, int cmd,
2247 int flags)
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002248{
2249 struct nlmsghdr *nlh;
2250 struct rtmsg *rtm;
Nicolas Dichtel1eb99af2012-12-04 01:13:39 +00002251 int err;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002252
Nicolas Dichtel65886f42014-03-19 17:47:50 +01002253 nlh = nlmsg_put(skb, portid, seq, cmd, sizeof(*rtm), flags);
Ian Morris51456b22015-04-03 09:17:26 +01002254 if (!nlh)
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002255 return -EMSGSIZE;
2256
2257 rtm = nlmsg_data(nlh);
2258 rtm->rtm_family = RTNL_FAMILY_IPMR;
2259 rtm->rtm_dst_len = 32;
2260 rtm->rtm_src_len = 32;
2261 rtm->rtm_tos = 0;
2262 rtm->rtm_table = mrt->id;
David S. Millerf3756b72012-04-01 20:39:02 -04002263 if (nla_put_u32(skb, RTA_TABLE, mrt->id))
2264 goto nla_put_failure;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002265 rtm->rtm_type = RTN_MULTICAST;
2266 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
Nicolas Dichtel9a68ac72012-12-04 01:13:38 +00002267 if (c->mfc_flags & MFC_STATIC)
2268 rtm->rtm_protocol = RTPROT_STATIC;
2269 else
2270 rtm->rtm_protocol = RTPROT_MROUTED;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002271 rtm->rtm_flags = 0;
2272
Jiri Benc930345e2015-03-29 16:59:25 +02002273 if (nla_put_in_addr(skb, RTA_SRC, c->mfc_origin) ||
2274 nla_put_in_addr(skb, RTA_DST, c->mfc_mcastgrp))
David S. Millerf3756b72012-04-01 20:39:02 -04002275 goto nla_put_failure;
Nicolas Dichtel1eb99af2012-12-04 01:13:39 +00002276 err = __ipmr_fill_mroute(mrt, skb, c, rtm);
2277 /* do not break the dump if cache is unresolved */
2278 if (err < 0 && err != -ENOENT)
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002279 goto nla_put_failure;
2280
Johannes Berg053c0952015-01-16 22:09:00 +01002281 nlmsg_end(skb, nlh);
2282 return 0;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002283
2284nla_put_failure:
2285 nlmsg_cancel(skb, nlh);
2286 return -EMSGSIZE;
2287}
2288
Nicolas Dichtel8cd3ac92012-12-04 01:13:40 +00002289static size_t mroute_msgsize(bool unresolved, int maxvif)
2290{
2291 size_t len =
2292 NLMSG_ALIGN(sizeof(struct rtmsg))
2293 + nla_total_size(4) /* RTA_TABLE */
2294 + nla_total_size(4) /* RTA_SRC */
2295 + nla_total_size(4) /* RTA_DST */
2296 ;
2297
2298 if (!unresolved)
2299 len = len
2300 + nla_total_size(4) /* RTA_IIF */
2301 + nla_total_size(0) /* RTA_MULTIPATH */
2302 + maxvif * NLA_ALIGN(sizeof(struct rtnexthop))
2303 /* RTA_MFC_STATS */
Nicolas Dichtela9a08042016-04-21 18:58:26 +02002304 + nla_total_size_64bit(sizeof(struct rta_mfc_stats))
Nicolas Dichtel8cd3ac92012-12-04 01:13:40 +00002305 ;
2306
2307 return len;
2308}
2309
2310static void mroute_netlink_event(struct mr_table *mrt, struct mfc_cache *mfc,
2311 int cmd)
2312{
2313 struct net *net = read_pnet(&mrt->net);
2314 struct sk_buff *skb;
2315 int err = -ENOBUFS;
2316
2317 skb = nlmsg_new(mroute_msgsize(mfc->mfc_parent >= MAXVIFS, mrt->maxvif),
2318 GFP_ATOMIC);
Ian Morris51456b22015-04-03 09:17:26 +01002319 if (!skb)
Nicolas Dichtel8cd3ac92012-12-04 01:13:40 +00002320 goto errout;
2321
Nicolas Dichtel65886f42014-03-19 17:47:50 +01002322 err = ipmr_fill_mroute(mrt, skb, 0, 0, mfc, cmd, 0);
Nicolas Dichtel8cd3ac92012-12-04 01:13:40 +00002323 if (err < 0)
2324 goto errout;
2325
2326 rtnl_notify(skb, net, 0, RTNLGRP_IPV4_MROUTE, NULL, GFP_ATOMIC);
2327 return;
2328
2329errout:
2330 kfree_skb(skb);
2331 if (err < 0)
2332 rtnl_set_sk_err(net, RTNLGRP_IPV4_MROUTE, err);
2333}
2334
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002335static int ipmr_rtm_dumproute(struct sk_buff *skb, struct netlink_callback *cb)
2336{
2337 struct net *net = sock_net(skb->sk);
2338 struct mr_table *mrt;
2339 struct mfc_cache *mfc;
2340 unsigned int t = 0, s_t;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002341 unsigned int e = 0, s_e;
2342
2343 s_t = cb->args[0];
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01002344 s_e = cb->args[1];
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002345
Eric Dumazeta8c94862010-10-01 16:15:08 +00002346 rcu_read_lock();
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002347 ipmr_for_each_table(mrt, net) {
2348 if (t < s_t)
2349 goto next_table;
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01002350 list_for_each_entry_rcu(mfc, &mrt->mfc_cache_list, list) {
2351 if (e < s_e)
2352 goto next_entry;
2353 if (ipmr_fill_mroute(mrt, skb,
2354 NETLINK_CB(cb->skb).portid,
2355 cb->nlh->nlmsg_seq,
2356 mfc, RTM_NEWROUTE,
2357 NLM_F_MULTI) < 0)
2358 goto done;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002359next_entry:
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01002360 e++;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002361 }
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01002362 e = 0;
2363 s_e = 0;
2364
Nicolas Dichtel1eb99af2012-12-04 01:13:39 +00002365 spin_lock_bh(&mfc_unres_lock);
2366 list_for_each_entry(mfc, &mrt->mfc_unres_queue, list) {
2367 if (e < s_e)
2368 goto next_entry2;
2369 if (ipmr_fill_mroute(mrt, skb,
2370 NETLINK_CB(cb->skb).portid,
2371 cb->nlh->nlmsg_seq,
Nicolas Dichtel65886f42014-03-19 17:47:50 +01002372 mfc, RTM_NEWROUTE,
2373 NLM_F_MULTI) < 0) {
Nicolas Dichtel1eb99af2012-12-04 01:13:39 +00002374 spin_unlock_bh(&mfc_unres_lock);
2375 goto done;
2376 }
2377next_entry2:
2378 e++;
2379 }
2380 spin_unlock_bh(&mfc_unres_lock);
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01002381 e = 0;
2382 s_e = 0;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002383next_table:
2384 t++;
2385 }
2386done:
Eric Dumazeta8c94862010-10-01 16:15:08 +00002387 rcu_read_unlock();
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002388
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01002389 cb->args[1] = e;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002390 cb->args[0] = t;
2391
2392 return skb->len;
2393}
2394
Nikolay Aleksandrovccbb0aa2015-11-26 15:23:50 +01002395static const struct nla_policy rtm_ipmr_policy[RTA_MAX + 1] = {
2396 [RTA_SRC] = { .type = NLA_U32 },
2397 [RTA_DST] = { .type = NLA_U32 },
2398 [RTA_IIF] = { .type = NLA_U32 },
2399 [RTA_TABLE] = { .type = NLA_U32 },
2400 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
2401};
2402
2403static bool ipmr_rtm_validate_proto(unsigned char rtm_protocol)
2404{
2405 switch (rtm_protocol) {
2406 case RTPROT_STATIC:
2407 case RTPROT_MROUTED:
2408 return true;
2409 }
2410 return false;
2411}
2412
2413static int ipmr_nla_get_ttls(const struct nlattr *nla, struct mfcctl *mfcc)
2414{
2415 struct rtnexthop *rtnh = nla_data(nla);
2416 int remaining = nla_len(nla), vifi = 0;
2417
2418 while (rtnh_ok(rtnh, remaining)) {
2419 mfcc->mfcc_ttls[vifi] = rtnh->rtnh_hops;
2420 if (++vifi == MAXVIFS)
2421 break;
2422 rtnh = rtnh_next(rtnh, &remaining);
2423 }
2424
2425 return remaining > 0 ? -EINVAL : vifi;
2426}
2427
2428/* returns < 0 on error, 0 for ADD_MFC and 1 for ADD_MFC_PROXY */
2429static int rtm_to_ipmr_mfcc(struct net *net, struct nlmsghdr *nlh,
2430 struct mfcctl *mfcc, int *mrtsock,
2431 struct mr_table **mrtret)
2432{
2433 struct net_device *dev = NULL;
2434 u32 tblid = RT_TABLE_DEFAULT;
2435 struct mr_table *mrt;
2436 struct nlattr *attr;
2437 struct rtmsg *rtm;
2438 int ret, rem;
2439
2440 ret = nlmsg_validate(nlh, sizeof(*rtm), RTA_MAX, rtm_ipmr_policy);
2441 if (ret < 0)
2442 goto out;
2443 rtm = nlmsg_data(nlh);
2444
2445 ret = -EINVAL;
2446 if (rtm->rtm_family != RTNL_FAMILY_IPMR || rtm->rtm_dst_len != 32 ||
2447 rtm->rtm_type != RTN_MULTICAST ||
2448 rtm->rtm_scope != RT_SCOPE_UNIVERSE ||
2449 !ipmr_rtm_validate_proto(rtm->rtm_protocol))
2450 goto out;
2451
2452 memset(mfcc, 0, sizeof(*mfcc));
2453 mfcc->mfcc_parent = -1;
2454 ret = 0;
2455 nlmsg_for_each_attr(attr, nlh, sizeof(struct rtmsg), rem) {
2456 switch (nla_type(attr)) {
2457 case RTA_SRC:
2458 mfcc->mfcc_origin.s_addr = nla_get_be32(attr);
2459 break;
2460 case RTA_DST:
2461 mfcc->mfcc_mcastgrp.s_addr = nla_get_be32(attr);
2462 break;
2463 case RTA_IIF:
2464 dev = __dev_get_by_index(net, nla_get_u32(attr));
2465 if (!dev) {
2466 ret = -ENODEV;
2467 goto out;
2468 }
2469 break;
2470 case RTA_MULTIPATH:
2471 if (ipmr_nla_get_ttls(attr, mfcc) < 0) {
2472 ret = -EINVAL;
2473 goto out;
2474 }
2475 break;
2476 case RTA_PREFSRC:
2477 ret = 1;
2478 break;
2479 case RTA_TABLE:
2480 tblid = nla_get_u32(attr);
2481 break;
2482 }
2483 }
2484 mrt = ipmr_get_table(net, tblid);
2485 if (!mrt) {
2486 ret = -ENOENT;
2487 goto out;
2488 }
2489 *mrtret = mrt;
2490 *mrtsock = rtm->rtm_protocol == RTPROT_MROUTED ? 1 : 0;
2491 if (dev)
2492 mfcc->mfcc_parent = ipmr_find_vif(mrt, dev);
2493
2494out:
2495 return ret;
2496}
2497
2498/* takes care of both newroute and delroute */
2499static int ipmr_rtm_route(struct sk_buff *skb, struct nlmsghdr *nlh)
2500{
2501 struct net *net = sock_net(skb->sk);
2502 int ret, mrtsock, parent;
2503 struct mr_table *tbl;
2504 struct mfcctl mfcc;
2505
2506 mrtsock = 0;
2507 tbl = NULL;
2508 ret = rtm_to_ipmr_mfcc(net, nlh, &mfcc, &mrtsock, &tbl);
2509 if (ret < 0)
2510 return ret;
2511
2512 parent = ret ? mfcc.mfcc_parent : -1;
2513 if (nlh->nlmsg_type == RTM_NEWROUTE)
2514 return ipmr_mfc_add(net, tbl, &mfcc, mrtsock, parent);
2515 else
2516 return ipmr_mfc_delete(tbl, &mfcc, parent);
2517}
2518
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002519#ifdef CONFIG_PROC_FS
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01002520/* The /proc interfaces to multicast routing :
2521 * /proc/net/ip_mr_cache & /proc/net/ip_mr_vif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 */
2523struct ipmr_vif_iter {
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002524 struct seq_net_private p;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002525 struct mr_table *mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 int ct;
2527};
2528
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002529static struct vif_device *ipmr_vif_seq_idx(struct net *net,
2530 struct ipmr_vif_iter *iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 loff_t pos)
2532{
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002533 struct mr_table *mrt = iter->mrt;
Patrick McHardy0c122952010-04-13 05:03:22 +00002534
2535 for (iter->ct = 0; iter->ct < mrt->maxvif; ++iter->ct) {
2536 if (!VIF_EXISTS(mrt, iter->ct))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 continue;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002538 if (pos-- == 0)
Patrick McHardy0c122952010-04-13 05:03:22 +00002539 return &mrt->vif_table[iter->ct];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 }
2541 return NULL;
2542}
2543
2544static void *ipmr_vif_seq_start(struct seq_file *seq, loff_t *pos)
Stephen Hemmingerba93ef72008-01-21 17:28:59 -08002545 __acquires(mrt_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546{
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002547 struct ipmr_vif_iter *iter = seq->private;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002548 struct net *net = seq_file_net(seq);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002549 struct mr_table *mrt;
2550
2551 mrt = ipmr_get_table(net, RT_TABLE_DEFAULT);
Ian Morris51456b22015-04-03 09:17:26 +01002552 if (!mrt)
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002553 return ERR_PTR(-ENOENT);
2554
2555 iter->mrt = mrt;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002556
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 read_lock(&mrt_lock);
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002558 return *pos ? ipmr_vif_seq_idx(net, seq->private, *pos - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 : SEQ_START_TOKEN;
2560}
2561
2562static void *ipmr_vif_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2563{
2564 struct ipmr_vif_iter *iter = seq->private;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002565 struct net *net = seq_file_net(seq);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002566 struct mr_table *mrt = iter->mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
2568 ++*pos;
2569 if (v == SEQ_START_TOKEN)
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002570 return ipmr_vif_seq_idx(net, iter, 0);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002571
Patrick McHardy0c122952010-04-13 05:03:22 +00002572 while (++iter->ct < mrt->maxvif) {
2573 if (!VIF_EXISTS(mrt, iter->ct))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 continue;
Patrick McHardy0c122952010-04-13 05:03:22 +00002575 return &mrt->vif_table[iter->ct];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 }
2577 return NULL;
2578}
2579
2580static void ipmr_vif_seq_stop(struct seq_file *seq, void *v)
Stephen Hemmingerba93ef72008-01-21 17:28:59 -08002581 __releases(mrt_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582{
2583 read_unlock(&mrt_lock);
2584}
2585
2586static int ipmr_vif_seq_show(struct seq_file *seq, void *v)
2587{
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002588 struct ipmr_vif_iter *iter = seq->private;
2589 struct mr_table *mrt = iter->mrt;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002590
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 if (v == SEQ_START_TOKEN) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002592 seq_puts(seq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 "Interface BytesIn PktsIn BytesOut PktsOut Flags Local Remote\n");
2594 } else {
2595 const struct vif_device *vif = v;
2596 const char *name = vif->dev ? vif->dev->name : "none";
2597
2598 seq_printf(seq,
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08002599 "%2zd %-10s %8ld %7ld %8ld %7ld %05X %08X %08X\n",
Patrick McHardy0c122952010-04-13 05:03:22 +00002600 vif - mrt->vif_table,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002601 name, vif->bytes_in, vif->pkt_in,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 vif->bytes_out, vif->pkt_out,
2603 vif->flags, vif->local, vif->remote);
2604 }
2605 return 0;
2606}
2607
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002608static const struct seq_operations ipmr_vif_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 .start = ipmr_vif_seq_start,
2610 .next = ipmr_vif_seq_next,
2611 .stop = ipmr_vif_seq_stop,
2612 .show = ipmr_vif_seq_show,
2613};
2614
2615static int ipmr_vif_open(struct inode *inode, struct file *file)
2616{
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002617 return seq_open_net(inode, file, &ipmr_vif_seq_ops,
2618 sizeof(struct ipmr_vif_iter));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619}
2620
Arjan van de Ven9a321442007-02-12 00:55:35 -08002621static const struct file_operations ipmr_vif_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 .owner = THIS_MODULE,
2623 .open = ipmr_vif_open,
2624 .read = seq_read,
2625 .llseek = seq_lseek,
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002626 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627};
2628
2629struct ipmr_mfc_iter {
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002630 struct seq_net_private p;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002631 struct mr_table *mrt;
Patrick McHardy862465f2010-04-13 05:03:21 +00002632 struct list_head *cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633};
2634
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002635static struct mfc_cache *ipmr_mfc_seq_idx(struct net *net,
2636 struct ipmr_mfc_iter *it, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637{
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002638 struct mr_table *mrt = it->mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 struct mfc_cache *mfc;
2640
Eric Dumazeta8c94862010-10-01 16:15:08 +00002641 rcu_read_lock();
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01002642 it->cache = &mrt->mfc_cache_list;
2643 list_for_each_entry_rcu(mfc, &mrt->mfc_cache_list, list)
2644 if (pos-- == 0)
2645 return mfc;
Eric Dumazeta8c94862010-10-01 16:15:08 +00002646 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 spin_lock_bh(&mfc_unres_lock);
Patrick McHardy0c122952010-04-13 05:03:22 +00002649 it->cache = &mrt->mfc_unres_queue;
Patrick McHardy862465f2010-04-13 05:03:21 +00002650 list_for_each_entry(mfc, it->cache, list)
Patrick McHardye258beb2010-04-13 05:03:19 +00002651 if (pos-- == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 return mfc;
2653 spin_unlock_bh(&mfc_unres_lock);
2654
2655 it->cache = NULL;
2656 return NULL;
2657}
2658
2659
2660static void *ipmr_mfc_seq_start(struct seq_file *seq, loff_t *pos)
2661{
2662 struct ipmr_mfc_iter *it = seq->private;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002663 struct net *net = seq_file_net(seq);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002664 struct mr_table *mrt;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002665
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002666 mrt = ipmr_get_table(net, RT_TABLE_DEFAULT);
Ian Morris51456b22015-04-03 09:17:26 +01002667 if (!mrt)
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002668 return ERR_PTR(-ENOENT);
2669
2670 it->mrt = mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 it->cache = NULL;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002672 return *pos ? ipmr_mfc_seq_idx(net, seq->private, *pos - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 : SEQ_START_TOKEN;
2674}
2675
2676static void *ipmr_mfc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2677{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 struct ipmr_mfc_iter *it = seq->private;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002679 struct net *net = seq_file_net(seq);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002680 struct mr_table *mrt = it->mrt;
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01002681 struct mfc_cache *mfc = v;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682
2683 ++*pos;
2684
2685 if (v == SEQ_START_TOKEN)
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002686 return ipmr_mfc_seq_idx(net, seq->private, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687
Patrick McHardy862465f2010-04-13 05:03:21 +00002688 if (mfc->list.next != it->cache)
2689 return list_entry(mfc->list.next, struct mfc_cache, list);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002690
Patrick McHardy0c122952010-04-13 05:03:22 +00002691 if (it->cache == &mrt->mfc_unres_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 goto end_of_list;
2693
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 /* exhausted cache_array, show unresolved */
Eric Dumazeta8c94862010-10-01 16:15:08 +00002695 rcu_read_unlock();
Patrick McHardy0c122952010-04-13 05:03:22 +00002696 it->cache = &mrt->mfc_unres_queue;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002697
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 spin_lock_bh(&mfc_unres_lock);
Patrick McHardy862465f2010-04-13 05:03:21 +00002699 if (!list_empty(it->cache))
2700 return list_first_entry(it->cache, struct mfc_cache, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002702end_of_list:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 spin_unlock_bh(&mfc_unres_lock);
2704 it->cache = NULL;
2705
2706 return NULL;
2707}
2708
2709static void ipmr_mfc_seq_stop(struct seq_file *seq, void *v)
2710{
2711 struct ipmr_mfc_iter *it = seq->private;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002712 struct mr_table *mrt = it->mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713
Patrick McHardy0c122952010-04-13 05:03:22 +00002714 if (it->cache == &mrt->mfc_unres_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 spin_unlock_bh(&mfc_unres_lock);
Nikolay Aleksandrov8fb472c2017-01-12 15:53:33 +01002716 else if (it->cache == &mrt->mfc_cache_list)
Eric Dumazeta8c94862010-10-01 16:15:08 +00002717 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718}
2719
2720static int ipmr_mfc_seq_show(struct seq_file *seq, void *v)
2721{
2722 int n;
2723
2724 if (v == SEQ_START_TOKEN) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002725 seq_puts(seq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 "Group Origin Iif Pkts Bytes Wrong Oifs\n");
2727 } else {
2728 const struct mfc_cache *mfc = v;
2729 const struct ipmr_mfc_iter *it = seq->private;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002730 const struct mr_table *mrt = it->mrt;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002731
Eric Dumazet0eae88f2010-04-20 19:06:52 -07002732 seq_printf(seq, "%08X %08X %-3hd",
2733 (__force u32) mfc->mfc_mcastgrp,
2734 (__force u32) mfc->mfc_origin,
Benjamin Thery1ea472e2008-12-03 22:21:47 -08002735 mfc->mfc_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
Patrick McHardy0c122952010-04-13 05:03:22 +00002737 if (it->cache != &mrt->mfc_unres_queue) {
Benjamin Thery1ea472e2008-12-03 22:21:47 -08002738 seq_printf(seq, " %8lu %8lu %8lu",
2739 mfc->mfc_un.res.pkt,
2740 mfc->mfc_un.res.bytes,
2741 mfc->mfc_un.res.wrong_if);
Stephen Hemminger132adf52007-03-08 20:44:43 -08002742 for (n = mfc->mfc_un.res.minvif;
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002743 n < mfc->mfc_un.res.maxvif; n++) {
Patrick McHardy0c122952010-04-13 05:03:22 +00002744 if (VIF_EXISTS(mrt, n) &&
Benjamin Therycf958ae32009-01-22 04:56:16 +00002745 mfc->mfc_un.res.ttls[n] < 255)
2746 seq_printf(seq,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002747 " %2d:%-3d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 n, mfc->mfc_un.res.ttls[n]);
2749 }
Benjamin Thery1ea472e2008-12-03 22:21:47 -08002750 } else {
2751 /* unresolved mfc_caches don't contain
2752 * pkt, bytes and wrong_if values
2753 */
2754 seq_printf(seq, " %8lu %8lu %8lu", 0ul, 0ul, 0ul);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 }
2756 seq_putc(seq, '\n');
2757 }
2758 return 0;
2759}
2760
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002761static const struct seq_operations ipmr_mfc_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 .start = ipmr_mfc_seq_start,
2763 .next = ipmr_mfc_seq_next,
2764 .stop = ipmr_mfc_seq_stop,
2765 .show = ipmr_mfc_seq_show,
2766};
2767
2768static int ipmr_mfc_open(struct inode *inode, struct file *file)
2769{
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002770 return seq_open_net(inode, file, &ipmr_mfc_seq_ops,
2771 sizeof(struct ipmr_mfc_iter));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772}
2773
Arjan van de Ven9a321442007-02-12 00:55:35 -08002774static const struct file_operations ipmr_mfc_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 .owner = THIS_MODULE,
2776 .open = ipmr_mfc_open,
2777 .read = seq_read,
2778 .llseek = seq_lseek,
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002779 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780};
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002781#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782
2783#ifdef CONFIG_IP_PIMSM_V2
Alexey Dobriyan32613092009-09-14 12:21:47 +00002784static const struct net_protocol pim_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 .handler = pim_rcv,
Tom Goff403dbb92009-06-14 03:16:13 -07002786 .netns_ok = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787};
2788#endif
2789
Nikolay Aleksandrov7ef8f652015-11-21 15:57:27 +01002790/* Setup for IP multicast routing */
Benjamin Therycf958ae32009-01-22 04:56:16 +00002791static int __net_init ipmr_net_init(struct net *net)
2792{
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002793 int err;
Benjamin Therycf958ae32009-01-22 04:56:16 +00002794
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002795 err = ipmr_rules_init(net);
2796 if (err < 0)
Benjamin Therycf958ae32009-01-22 04:56:16 +00002797 goto fail;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002798
2799#ifdef CONFIG_PROC_FS
2800 err = -ENOMEM;
Gao fengd4beaa62013-02-18 01:34:54 +00002801 if (!proc_create("ip_mr_vif", 0, net->proc_net, &ipmr_vif_fops))
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002802 goto proc_vif_fail;
Gao fengd4beaa62013-02-18 01:34:54 +00002803 if (!proc_create("ip_mr_cache", 0, net->proc_net, &ipmr_mfc_fops))
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002804 goto proc_cache_fail;
2805#endif
Benjamin Thery2bb8b262009-01-22 04:56:18 +00002806 return 0;
2807
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002808#ifdef CONFIG_PROC_FS
2809proc_cache_fail:
Gao fengece31ff2013-02-18 01:34:56 +00002810 remove_proc_entry("ip_mr_vif", net->proc_net);
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002811proc_vif_fail:
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002812 ipmr_rules_exit(net);
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002813#endif
Benjamin Therycf958ae32009-01-22 04:56:16 +00002814fail:
2815 return err;
2816}
2817
2818static void __net_exit ipmr_net_exit(struct net *net)
2819{
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002820#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00002821 remove_proc_entry("ip_mr_cache", net->proc_net);
2822 remove_proc_entry("ip_mr_vif", net->proc_net);
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002823#endif
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002824 ipmr_rules_exit(net);
Benjamin Therycf958ae32009-01-22 04:56:16 +00002825}
2826
2827static struct pernet_operations ipmr_net_ops = {
2828 .init = ipmr_net_init,
2829 .exit = ipmr_net_exit,
2830};
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002831
Wang Chen03d2f892008-07-03 12:13:36 +08002832int __init ip_mr_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833{
Wang Chen03d2f892008-07-03 12:13:36 +08002834 int err;
2835
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 mrt_cachep = kmem_cache_create("ip_mrt_cache",
2837 sizeof(struct mfc_cache),
Eric Dumazeta8c94862010-10-01 16:15:08 +00002838 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002839 NULL);
Wang Chen03d2f892008-07-03 12:13:36 +08002840
Benjamin Therycf958ae32009-01-22 04:56:16 +00002841 err = register_pernet_subsys(&ipmr_net_ops);
2842 if (err)
2843 goto reg_pernet_fail;
2844
Wang Chen03d2f892008-07-03 12:13:36 +08002845 err = register_netdevice_notifier(&ip_mr_notifier);
2846 if (err)
2847 goto reg_notif_fail;
Tom Goff403dbb92009-06-14 03:16:13 -07002848#ifdef CONFIG_IP_PIMSM_V2
2849 if (inet_add_protocol(&pim_protocol, IPPROTO_PIM) < 0) {
Joe Perches058bd4d2012-03-11 18:36:11 +00002850 pr_err("%s: can't add PIM protocol\n", __func__);
Tom Goff403dbb92009-06-14 03:16:13 -07002851 err = -EAGAIN;
2852 goto add_proto_fail;
2853 }
2854#endif
Greg Rosec7ac8672011-06-10 01:27:09 +00002855 rtnl_register(RTNL_FAMILY_IPMR, RTM_GETROUTE,
2856 NULL, ipmr_rtm_dumproute, NULL);
Nikolay Aleksandrovccbb0aa2015-11-26 15:23:50 +01002857 rtnl_register(RTNL_FAMILY_IPMR, RTM_NEWROUTE,
2858 ipmr_rtm_route, NULL, NULL);
2859 rtnl_register(RTNL_FAMILY_IPMR, RTM_DELROUTE,
2860 ipmr_rtm_route, NULL, NULL);
Wang Chen03d2f892008-07-03 12:13:36 +08002861 return 0;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002862
Tom Goff403dbb92009-06-14 03:16:13 -07002863#ifdef CONFIG_IP_PIMSM_V2
2864add_proto_fail:
2865 unregister_netdevice_notifier(&ip_mr_notifier);
2866#endif
Benjamin Theryc3e38892008-11-19 14:07:41 -08002867reg_notif_fail:
Benjamin Therycf958ae32009-01-22 04:56:16 +00002868 unregister_pernet_subsys(&ipmr_net_ops);
2869reg_pernet_fail:
Benjamin Theryc3e38892008-11-19 14:07:41 -08002870 kmem_cache_destroy(mrt_cachep);
Wang Chen03d2f892008-07-03 12:13:36 +08002871 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872}