blob: 0c452e3fdc1b80404fe47a141098a45940490d50 [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 Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/uaccess.h>
30#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <net/ipip.h>
65#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70#if defined(CONFIG_IP_PIMSM_V1) || defined(CONFIG_IP_PIMSM_V2)
71#define CONFIG_IP_PIMSM 1
72#endif
73
Patrick McHardy0c122952010-04-13 05:03:22 +000074struct mr_table {
Patrick McHardyf0ad0862010-04-13 05:03:23 +000075 struct list_head list;
Patrick McHardy8de53df2010-04-15 13:29:28 +020076#ifdef CONFIG_NET_NS
77 struct net *net;
78#endif
Patrick McHardyf0ad0862010-04-13 05:03:23 +000079 u32 id;
Eric Dumazet4c968702010-10-01 16:15:01 +000080 struct sock __rcu *mroute_sk;
Patrick McHardy0c122952010-04-13 05:03:22 +000081 struct timer_list ipmr_expire_timer;
82 struct list_head mfc_unres_queue;
83 struct list_head mfc_cache_array[MFC_LINES];
84 struct vif_device vif_table[MAXVIFS];
85 int maxvif;
86 atomic_t cache_resolve_queue_len;
Joe Perches53d68412012-11-25 09:35:30 +000087 bool mroute_do_assert;
88 bool mroute_do_pim;
Patrick McHardy0c122952010-04-13 05:03:22 +000089#if defined(CONFIG_IP_PIMSM_V1) || defined(CONFIG_IP_PIMSM_V2)
90 int mroute_reg_vif_num;
91#endif
92};
93
Patrick McHardyf0ad0862010-04-13 05:03:23 +000094struct ipmr_rule {
95 struct fib_rule common;
96};
97
98struct ipmr_result {
99 struct mr_table *mrt;
100};
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/* Big lock, protecting vif table, mrt cache and mroute socket state.
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000103 * Note that the changes are semaphored via rtnl_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 */
105
106static DEFINE_RWLOCK(mrt_lock);
107
108/*
109 * Multicast router control variables
110 */
111
Patrick McHardy0c122952010-04-13 05:03:22 +0000112#define VIF_EXISTS(_mrt, _idx) ((_mrt)->vif_table[_idx].dev != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114/* Special spinlock for queue of unresolved entries */
115static DEFINE_SPINLOCK(mfc_unres_lock);
116
117/* We return to original Alan's scheme. Hash table of resolved
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000118 * entries is changed only in process context and protected
119 * with weak lock mrt_lock. Queue of unresolved entries is protected
120 * with strong spinlock mfc_unres_lock.
121 *
122 * In this case data path is free of exclusive locks at all.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 */
124
Christoph Lametere18b8902006-12-06 20:33:20 -0800125static struct kmem_cache *mrt_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000127static struct mr_table *ipmr_new_table(struct net *net, u32 id);
Francesco Ruggeriacbb2192012-08-24 07:38:35 +0000128static void ipmr_free_table(struct mr_table *mrt);
129
Patrick McHardy0c122952010-04-13 05:03:22 +0000130static int ip_mr_forward(struct net *net, struct mr_table *mrt,
131 struct sk_buff *skb, struct mfc_cache *cache,
132 int local);
133static int ipmr_cache_report(struct mr_table *mrt,
Benjamin Thery4feb88e2009-01-22 04:56:23 +0000134 struct sk_buff *pkt, vifi_t vifi, int assert);
Patrick McHardycb6a4e42010-04-26 16:02:08 +0200135static int __ipmr_fill_mroute(struct mr_table *mrt, struct sk_buff *skb,
136 struct mfc_cache *c, struct rtmsg *rtm);
Francesco Ruggeriacbb2192012-08-24 07:38:35 +0000137static void mroute_clean_tables(struct mr_table *mrt);
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000138static void ipmr_expire_process(unsigned long arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000140#ifdef CONFIG_IP_MROUTE_MULTIPLE_TABLES
141#define ipmr_for_each_table(mrt, net) \
142 list_for_each_entry_rcu(mrt, &net->ipv4.mr_tables, list)
143
144static struct mr_table *ipmr_get_table(struct net *net, u32 id)
145{
146 struct mr_table *mrt;
147
148 ipmr_for_each_table(mrt, net) {
149 if (mrt->id == id)
150 return mrt;
151 }
152 return NULL;
153}
154
David S. Millerda919812011-03-12 02:04:50 -0500155static int ipmr_fib_lookup(struct net *net, struct flowi4 *flp4,
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000156 struct mr_table **mrt)
157{
158 struct ipmr_result res;
159 struct fib_lookup_arg arg = { .result = &res, };
160 int err;
161
David S. Millerda919812011-03-12 02:04:50 -0500162 err = fib_rules_lookup(net->ipv4.mr_rules_ops,
163 flowi4_to_flowi(flp4), 0, &arg);
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000164 if (err < 0)
165 return err;
166 *mrt = res.mrt;
167 return 0;
168}
169
170static int ipmr_rule_action(struct fib_rule *rule, struct flowi *flp,
171 int flags, struct fib_lookup_arg *arg)
172{
173 struct ipmr_result *res = arg->result;
174 struct mr_table *mrt;
175
176 switch (rule->action) {
177 case FR_ACT_TO_TBL:
178 break;
179 case FR_ACT_UNREACHABLE:
180 return -ENETUNREACH;
181 case FR_ACT_PROHIBIT:
182 return -EACCES;
183 case FR_ACT_BLACKHOLE:
184 default:
185 return -EINVAL;
186 }
187
188 mrt = ipmr_get_table(rule->fr_net, rule->table);
189 if (mrt == NULL)
190 return -EAGAIN;
191 res->mrt = mrt;
192 return 0;
193}
194
195static int ipmr_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
196{
197 return 1;
198}
199
200static const struct nla_policy ipmr_rule_policy[FRA_MAX + 1] = {
201 FRA_GENERIC_POLICY,
202};
203
204static int ipmr_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
205 struct fib_rule_hdr *frh, struct nlattr **tb)
206{
207 return 0;
208}
209
210static int ipmr_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
211 struct nlattr **tb)
212{
213 return 1;
214}
215
216static int ipmr_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
217 struct fib_rule_hdr *frh)
218{
219 frh->dst_len = 0;
220 frh->src_len = 0;
221 frh->tos = 0;
222 return 0;
223}
224
Andi Kleen04a6f822012-10-04 17:12:11 -0700225static const struct fib_rules_ops __net_initconst ipmr_rules_ops_template = {
Patrick McHardy25239ce2010-04-26 16:02:05 +0200226 .family = RTNL_FAMILY_IPMR,
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000227 .rule_size = sizeof(struct ipmr_rule),
228 .addr_size = sizeof(u32),
229 .action = ipmr_rule_action,
230 .match = ipmr_rule_match,
231 .configure = ipmr_rule_configure,
232 .compare = ipmr_rule_compare,
233 .default_pref = fib_default_rule_pref,
234 .fill = ipmr_rule_fill,
235 .nlgroup = RTNLGRP_IPV4_RULE,
236 .policy = ipmr_rule_policy,
237 .owner = THIS_MODULE,
238};
239
240static int __net_init ipmr_rules_init(struct net *net)
241{
242 struct fib_rules_ops *ops;
243 struct mr_table *mrt;
244 int err;
245
246 ops = fib_rules_register(&ipmr_rules_ops_template, net);
247 if (IS_ERR(ops))
248 return PTR_ERR(ops);
249
250 INIT_LIST_HEAD(&net->ipv4.mr_tables);
251
252 mrt = ipmr_new_table(net, RT_TABLE_DEFAULT);
253 if (mrt == NULL) {
254 err = -ENOMEM;
255 goto err1;
256 }
257
258 err = fib_default_rule_add(ops, 0x7fff, RT_TABLE_DEFAULT, 0);
259 if (err < 0)
260 goto err2;
261
262 net->ipv4.mr_rules_ops = ops;
263 return 0;
264
265err2:
266 kfree(mrt);
267err1:
268 fib_rules_unregister(ops);
269 return err;
270}
271
272static void __net_exit ipmr_rules_exit(struct net *net)
273{
274 struct mr_table *mrt, *next;
275
Eric Dumazet035320d2010-06-06 23:48:40 +0000276 list_for_each_entry_safe(mrt, next, &net->ipv4.mr_tables, list) {
277 list_del(&mrt->list);
Francesco Ruggeriacbb2192012-08-24 07:38:35 +0000278 ipmr_free_table(mrt);
Eric Dumazet035320d2010-06-06 23:48:40 +0000279 }
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000280 fib_rules_unregister(net->ipv4.mr_rules_ops);
281}
282#else
283#define ipmr_for_each_table(mrt, net) \
284 for (mrt = net->ipv4.mrt; mrt; mrt = NULL)
285
286static struct mr_table *ipmr_get_table(struct net *net, u32 id)
287{
288 return net->ipv4.mrt;
289}
290
David S. Millerda919812011-03-12 02:04:50 -0500291static int ipmr_fib_lookup(struct net *net, struct flowi4 *flp4,
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000292 struct mr_table **mrt)
293{
294 *mrt = net->ipv4.mrt;
295 return 0;
296}
297
298static int __net_init ipmr_rules_init(struct net *net)
299{
300 net->ipv4.mrt = ipmr_new_table(net, RT_TABLE_DEFAULT);
301 return net->ipv4.mrt ? 0 : -ENOMEM;
302}
303
304static void __net_exit ipmr_rules_exit(struct net *net)
305{
Francesco Ruggeriacbb2192012-08-24 07:38:35 +0000306 ipmr_free_table(net->ipv4.mrt);
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000307}
308#endif
309
310static struct mr_table *ipmr_new_table(struct net *net, u32 id)
311{
312 struct mr_table *mrt;
313 unsigned int i;
314
315 mrt = ipmr_get_table(net, id);
316 if (mrt != NULL)
317 return mrt;
318
319 mrt = kzalloc(sizeof(*mrt), GFP_KERNEL);
320 if (mrt == NULL)
321 return NULL;
Patrick McHardy8de53df2010-04-15 13:29:28 +0200322 write_pnet(&mrt->net, net);
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000323 mrt->id = id;
324
325 /* Forwarding cache */
326 for (i = 0; i < MFC_LINES; i++)
327 INIT_LIST_HEAD(&mrt->mfc_cache_array[i]);
328
329 INIT_LIST_HEAD(&mrt->mfc_unres_queue);
330
331 setup_timer(&mrt->ipmr_expire_timer, ipmr_expire_process,
332 (unsigned long)mrt);
333
334#ifdef CONFIG_IP_PIMSM
335 mrt->mroute_reg_vif_num = -1;
336#endif
337#ifdef CONFIG_IP_MROUTE_MULTIPLE_TABLES
338 list_add_tail_rcu(&mrt->list, &net->ipv4.mr_tables);
339#endif
340 return mrt;
341}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Francesco Ruggeriacbb2192012-08-24 07:38:35 +0000343static void ipmr_free_table(struct mr_table *mrt)
344{
345 del_timer_sync(&mrt->ipmr_expire_timer);
346 mroute_clean_tables(mrt);
347 kfree(mrt);
348}
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350/* Service routines creating virtual interfaces: DVMRP tunnels and PIMREG */
351
Wang Chend6070322008-07-14 20:55:26 -0700352static void ipmr_del_tunnel(struct net_device *dev, struct vifctl *v)
353{
Benjamin Thery4feb88e2009-01-22 04:56:23 +0000354 struct net *net = dev_net(dev);
355
Wang Chend6070322008-07-14 20:55:26 -0700356 dev_close(dev);
357
Benjamin Thery4feb88e2009-01-22 04:56:23 +0000358 dev = __dev_get_by_name(net, "tunl0");
Wang Chend6070322008-07-14 20:55:26 -0700359 if (dev) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -0800360 const struct net_device_ops *ops = dev->netdev_ops;
Wang Chend6070322008-07-14 20:55:26 -0700361 struct ifreq ifr;
Wang Chend6070322008-07-14 20:55:26 -0700362 struct ip_tunnel_parm p;
363
364 memset(&p, 0, sizeof(p));
365 p.iph.daddr = v->vifc_rmt_addr.s_addr;
366 p.iph.saddr = v->vifc_lcl_addr.s_addr;
367 p.iph.version = 4;
368 p.iph.ihl = 5;
369 p.iph.protocol = IPPROTO_IPIP;
370 sprintf(p.name, "dvmrp%d", v->vifc_vifi);
371 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
372
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -0800373 if (ops->ndo_do_ioctl) {
374 mm_segment_t oldfs = get_fs();
375
376 set_fs(KERNEL_DS);
377 ops->ndo_do_ioctl(dev, &ifr, SIOCDELTUNNEL);
378 set_fs(oldfs);
379 }
Wang Chend6070322008-07-14 20:55:26 -0700380 }
381}
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383static
Benjamin Thery4feb88e2009-01-22 04:56:23 +0000384struct net_device *ipmr_new_tunnel(struct net *net, struct vifctl *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386 struct net_device *dev;
387
Benjamin Thery4feb88e2009-01-22 04:56:23 +0000388 dev = __dev_get_by_name(net, "tunl0");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 if (dev) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -0800391 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 int err;
393 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 struct ip_tunnel_parm p;
395 struct in_device *in_dev;
396
397 memset(&p, 0, sizeof(p));
398 p.iph.daddr = v->vifc_rmt_addr.s_addr;
399 p.iph.saddr = v->vifc_lcl_addr.s_addr;
400 p.iph.version = 4;
401 p.iph.ihl = 5;
402 p.iph.protocol = IPPROTO_IPIP;
403 sprintf(p.name, "dvmrp%d", v->vifc_vifi);
Stephen Hemmingerba93ef72008-01-21 17:28:59 -0800404 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -0800406 if (ops->ndo_do_ioctl) {
407 mm_segment_t oldfs = get_fs();
408
409 set_fs(KERNEL_DS);
410 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
411 set_fs(oldfs);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000412 } else {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -0800413 err = -EOPNOTSUPP;
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 dev = NULL;
416
Benjamin Thery4feb88e2009-01-22 04:56:23 +0000417 if (err == 0 &&
418 (dev = __dev_get_by_name(net, p.name)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 dev->flags |= IFF_MULTICAST;
420
Herbert Xue5ed6392005-10-03 14:35:55 -0700421 in_dev = __in_dev_get_rtnl(dev);
Herbert Xu71e27da2007-06-04 23:36:06 -0700422 if (in_dev == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 goto failure;
Herbert Xu71e27da2007-06-04 23:36:06 -0700424
425 ipv4_devconf_setall(in_dev);
426 IPV4_DEVCONF(in_dev->cnf, RP_FILTER) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 if (dev_open(dev))
429 goto failure;
Wang Chen7dc00c82008-07-14 20:56:34 -0700430 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
432 }
433 return dev;
434
435failure:
436 /* allow the register to be completed before unregistering. */
437 rtnl_unlock();
438 rtnl_lock();
439
440 unregister_netdevice(dev);
441 return NULL;
442}
443
444#ifdef CONFIG_IP_PIMSM
445
Stephen Hemminger6fef4c02009-08-31 19:50:41 +0000446static netdev_tx_t reg_vif_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Benjamin Thery4feb88e2009-01-22 04:56:23 +0000448 struct net *net = dev_net(dev);
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000449 struct mr_table *mrt;
David S. Millerda919812011-03-12 02:04:50 -0500450 struct flowi4 fl4 = {
451 .flowi4_oif = dev->ifindex,
452 .flowi4_iif = skb->skb_iif,
453 .flowi4_mark = skb->mark,
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000454 };
455 int err;
456
David S. Millerda919812011-03-12 02:04:50 -0500457 err = ipmr_fib_lookup(net, &fl4, &mrt);
Ben Greeare40dbc52010-07-15 13:22:33 +0000458 if (err < 0) {
459 kfree_skb(skb);
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000460 return err;
Ben Greeare40dbc52010-07-15 13:22:33 +0000461 }
Benjamin Thery4feb88e2009-01-22 04:56:23 +0000462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 read_lock(&mrt_lock);
Pavel Emelyanovcf3677a2008-05-21 14:17:33 -0700464 dev->stats.tx_bytes += skb->len;
465 dev->stats.tx_packets++;
Patrick McHardy0c122952010-04-13 05:03:22 +0000466 ipmr_cache_report(mrt, skb, mrt->mroute_reg_vif_num, IGMPMSG_WHOLEPKT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 read_unlock(&mrt_lock);
468 kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000469 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Stephen Hemminger007c3832008-11-20 20:28:35 -0800472static const struct net_device_ops reg_vif_netdev_ops = {
473 .ndo_start_xmit = reg_vif_xmit,
474};
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476static void reg_vif_setup(struct net_device *dev)
477{
478 dev->type = ARPHRD_PIMREG;
Kris Katterjohn46f25df2006-01-05 16:35:42 -0800479 dev->mtu = ETH_DATA_LEN - sizeof(struct iphdr) - 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 dev->flags = IFF_NOARP;
Stephen Hemminger007c3832008-11-20 20:28:35 -0800481 dev->netdev_ops = &reg_vif_netdev_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 dev->destructor = free_netdev;
Tom Goff403dbb92009-06-14 03:16:13 -0700483 dev->features |= NETIF_F_NETNS_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000486static struct net_device *ipmr_reg_vif(struct net *net, struct mr_table *mrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
488 struct net_device *dev;
489 struct in_device *in_dev;
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000490 char name[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000492 if (mrt->id == RT_TABLE_DEFAULT)
493 sprintf(name, "pimreg");
494 else
495 sprintf(name, "pimreg%u", mrt->id);
496
497 dev = alloc_netdev(0, name, reg_vif_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 if (dev == NULL)
500 return NULL;
501
Tom Goff403dbb92009-06-14 03:16:13 -0700502 dev_net_set(dev, net);
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (register_netdevice(dev)) {
505 free_netdev(dev);
506 return NULL;
507 }
508 dev->iflink = 0;
509
Herbert Xu71e27da2007-06-04 23:36:06 -0700510 rcu_read_lock();
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000511 in_dev = __in_dev_get_rcu(dev);
512 if (!in_dev) {
Herbert Xu71e27da2007-06-04 23:36:06 -0700513 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 goto failure;
Herbert Xu71e27da2007-06-04 23:36:06 -0700515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Herbert Xu71e27da2007-06-04 23:36:06 -0700517 ipv4_devconf_setall(in_dev);
518 IPV4_DEVCONF(in_dev->cnf, RP_FILTER) = 0;
519 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 if (dev_open(dev))
522 goto failure;
523
Wang Chen7dc00c82008-07-14 20:56:34 -0700524 dev_hold(dev);
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 return dev;
527
528failure:
529 /* allow the register to be completed before unregistering. */
530 rtnl_unlock();
531 rtnl_lock();
532
533 unregister_netdevice(dev);
534 return NULL;
535}
536#endif
537
Ben Hutchings2c530402012-07-10 10:55:09 +0000538/**
539 * vif_delete - Delete a VIF entry
Wang Chen7dc00c82008-07-14 20:56:34 -0700540 * @notify: Set to 1, if the caller is a notifier_call
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900542
Patrick McHardy0c122952010-04-13 05:03:22 +0000543static int vif_delete(struct mr_table *mrt, int vifi, int notify,
Eric Dumazetd17fa6f2009-10-28 05:21:38 +0000544 struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
546 struct vif_device *v;
547 struct net_device *dev;
548 struct in_device *in_dev;
549
Patrick McHardy0c122952010-04-13 05:03:22 +0000550 if (vifi < 0 || vifi >= mrt->maxvif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return -EADDRNOTAVAIL;
552
Patrick McHardy0c122952010-04-13 05:03:22 +0000553 v = &mrt->vif_table[vifi];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 write_lock_bh(&mrt_lock);
556 dev = v->dev;
557 v->dev = NULL;
558
559 if (!dev) {
560 write_unlock_bh(&mrt_lock);
561 return -EADDRNOTAVAIL;
562 }
563
564#ifdef CONFIG_IP_PIMSM
Patrick McHardy0c122952010-04-13 05:03:22 +0000565 if (vifi == mrt->mroute_reg_vif_num)
566 mrt->mroute_reg_vif_num = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567#endif
568
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000569 if (vifi + 1 == mrt->maxvif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 int tmp;
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000571
572 for (tmp = vifi - 1; tmp >= 0; tmp--) {
Patrick McHardy0c122952010-04-13 05:03:22 +0000573 if (VIF_EXISTS(mrt, tmp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 break;
575 }
Patrick McHardy0c122952010-04-13 05:03:22 +0000576 mrt->maxvif = tmp+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
578
579 write_unlock_bh(&mrt_lock);
580
581 dev_set_allmulti(dev, -1);
582
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000583 in_dev = __in_dev_get_rtnl(dev);
584 if (in_dev) {
Herbert Xu42f811b2007-06-04 23:34:44 -0700585 IPV4_DEVCONF(in_dev->cnf, MC_FORWARDING)--;
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000586 inet_netconf_notify_devconf(dev_net(dev),
587 NETCONFA_MC_FORWARDING,
588 dev->ifindex, &in_dev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 ip_rt_multicast_event(in_dev);
590 }
591
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000592 if (v->flags & (VIFF_TUNNEL | VIFF_REGISTER) && !notify)
Eric Dumazetd17fa6f2009-10-28 05:21:38 +0000593 unregister_netdevice_queue(dev, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 dev_put(dev);
596 return 0;
597}
598
Eric Dumazeta8c94862010-10-01 16:15:08 +0000599static void ipmr_cache_free_rcu(struct rcu_head *head)
600{
601 struct mfc_cache *c = container_of(head, struct mfc_cache, rcu);
602
603 kmem_cache_free(mrt_cachep, c);
604}
605
Benjamin Thery5c0a66f2009-01-22 04:56:17 +0000606static inline void ipmr_cache_free(struct mfc_cache *c)
607{
Eric Dumazeta8c94862010-10-01 16:15:08 +0000608 call_rcu(&c->rcu, ipmr_cache_free_rcu);
Benjamin Thery5c0a66f2009-01-22 04:56:17 +0000609}
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611/* Destroy an unresolved cache entry, killing queued skbs
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000612 * and reporting error to netlink readers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 */
614
Patrick McHardy0c122952010-04-13 05:03:22 +0000615static void ipmr_destroy_unres(struct mr_table *mrt, struct mfc_cache *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
Patrick McHardy8de53df2010-04-15 13:29:28 +0200617 struct net *net = read_pnet(&mrt->net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 struct sk_buff *skb;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700619 struct nlmsgerr *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Patrick McHardy0c122952010-04-13 05:03:22 +0000621 atomic_dec(&mrt->cache_resolve_queue_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Jianjun Kongc354e122008-11-03 00:28:02 -0800623 while ((skb = skb_dequeue(&c->mfc_un.unres.unresolved))) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700624 if (ip_hdr(skb)->version == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 struct nlmsghdr *nlh = (struct nlmsghdr *)skb_pull(skb, sizeof(struct iphdr));
626 nlh->nlmsg_type = NLMSG_ERROR;
627 nlh->nlmsg_len = NLMSG_LENGTH(sizeof(struct nlmsgerr));
628 skb_trim(skb, nlh->nlmsg_len);
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700629 e = NLMSG_DATA(nlh);
630 e->error = -ETIMEDOUT;
631 memset(&e->msg, 0, sizeof(e->msg));
Thomas Graf2942e902006-08-15 00:30:25 -0700632
Eric W. Biederman15e47302012-09-07 20:12:54 +0000633 rtnl_unicast(skb, net, NETLINK_CB(skb).portid);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000634 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 kfree_skb(skb);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
638
Benjamin Thery5c0a66f2009-01-22 04:56:17 +0000639 ipmr_cache_free(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
641
642
Patrick McHardye258beb2010-04-13 05:03:19 +0000643/* Timer process for the unresolved queue. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Patrick McHardye258beb2010-04-13 05:03:19 +0000645static void ipmr_expire_process(unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
Patrick McHardy0c122952010-04-13 05:03:22 +0000647 struct mr_table *mrt = (struct mr_table *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 unsigned long now;
649 unsigned long expires;
Patrick McHardy862465f2010-04-13 05:03:21 +0000650 struct mfc_cache *c, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 if (!spin_trylock(&mfc_unres_lock)) {
Patrick McHardy0c122952010-04-13 05:03:22 +0000653 mod_timer(&mrt->ipmr_expire_timer, jiffies+HZ/10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return;
655 }
656
Patrick McHardy0c122952010-04-13 05:03:22 +0000657 if (list_empty(&mrt->mfc_unres_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 goto out;
659
660 now = jiffies;
661 expires = 10*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Patrick McHardy0c122952010-04-13 05:03:22 +0000663 list_for_each_entry_safe(c, next, &mrt->mfc_unres_queue, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 if (time_after(c->mfc_un.unres.expires, now)) {
665 unsigned long interval = c->mfc_un.unres.expires - now;
666 if (interval < expires)
667 expires = interval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 continue;
669 }
670
Patrick McHardy862465f2010-04-13 05:03:21 +0000671 list_del(&c->list);
Patrick McHardy0c122952010-04-13 05:03:22 +0000672 ipmr_destroy_unres(mrt, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
674
Patrick McHardy0c122952010-04-13 05:03:22 +0000675 if (!list_empty(&mrt->mfc_unres_queue))
676 mod_timer(&mrt->ipmr_expire_timer, jiffies + expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678out:
679 spin_unlock(&mfc_unres_lock);
680}
681
682/* Fill oifs list. It is called under write locked mrt_lock. */
683
Patrick McHardy0c122952010-04-13 05:03:22 +0000684static void ipmr_update_thresholds(struct mr_table *mrt, struct mfc_cache *cache,
Patrick McHardyd658f8a2010-04-13 05:03:20 +0000685 unsigned char *ttls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
687 int vifi;
688
689 cache->mfc_un.res.minvif = MAXVIFS;
690 cache->mfc_un.res.maxvif = 0;
691 memset(cache->mfc_un.res.ttls, 255, MAXVIFS);
692
Patrick McHardy0c122952010-04-13 05:03:22 +0000693 for (vifi = 0; vifi < mrt->maxvif; vifi++) {
694 if (VIF_EXISTS(mrt, vifi) &&
Benjamin Therycf958ae32009-01-22 04:56:16 +0000695 ttls[vifi] && ttls[vifi] < 255) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 cache->mfc_un.res.ttls[vifi] = ttls[vifi];
697 if (cache->mfc_un.res.minvif > vifi)
698 cache->mfc_un.res.minvif = vifi;
699 if (cache->mfc_un.res.maxvif <= vifi)
700 cache->mfc_un.res.maxvif = vifi + 1;
701 }
702 }
703}
704
Patrick McHardy0c122952010-04-13 05:03:22 +0000705static int vif_add(struct net *net, struct mr_table *mrt,
706 struct vifctl *vifc, int mrtsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
708 int vifi = vifc->vifc_vifi;
Patrick McHardy0c122952010-04-13 05:03:22 +0000709 struct vif_device *v = &mrt->vif_table[vifi];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 struct net_device *dev;
711 struct in_device *in_dev;
Wang Chend6070322008-07-14 20:55:26 -0700712 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 /* Is vif busy ? */
Patrick McHardy0c122952010-04-13 05:03:22 +0000715 if (VIF_EXISTS(mrt, vifi))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 return -EADDRINUSE;
717
718 switch (vifc->vifc_flags) {
719#ifdef CONFIG_IP_PIMSM
720 case VIFF_REGISTER:
721 /*
722 * Special Purpose VIF in PIM
723 * All the packets will be sent to the daemon
724 */
Patrick McHardy0c122952010-04-13 05:03:22 +0000725 if (mrt->mroute_reg_vif_num >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 return -EADDRINUSE;
Patrick McHardyf0ad0862010-04-13 05:03:23 +0000727 dev = ipmr_reg_vif(net, mrt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 if (!dev)
729 return -ENOBUFS;
Wang Chend6070322008-07-14 20:55:26 -0700730 err = dev_set_allmulti(dev, 1);
731 if (err) {
732 unregister_netdevice(dev);
Wang Chen7dc00c82008-07-14 20:56:34 -0700733 dev_put(dev);
Wang Chend6070322008-07-14 20:55:26 -0700734 return err;
735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 break;
737#endif
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900738 case VIFF_TUNNEL:
Benjamin Thery4feb88e2009-01-22 04:56:23 +0000739 dev = ipmr_new_tunnel(net, vifc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 if (!dev)
741 return -ENOBUFS;
Wang Chend6070322008-07-14 20:55:26 -0700742 err = dev_set_allmulti(dev, 1);
743 if (err) {
744 ipmr_del_tunnel(dev, vifc);
Wang Chen7dc00c82008-07-14 20:56:34 -0700745 dev_put(dev);
Wang Chend6070322008-07-14 20:55:26 -0700746 return err;
747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 break;
Ilia Kee5e81f2009-09-16 05:53:07 +0000749
750 case VIFF_USE_IFINDEX:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 case 0:
Ilia Kee5e81f2009-09-16 05:53:07 +0000752 if (vifc->vifc_flags == VIFF_USE_IFINDEX) {
753 dev = dev_get_by_index(net, vifc->vifc_lcl_ifindex);
Eric Dumazet95ae6b22010-09-15 04:04:31 +0000754 if (dev && __in_dev_get_rtnl(dev) == NULL) {
Ilia Kee5e81f2009-09-16 05:53:07 +0000755 dev_put(dev);
756 return -EADDRNOTAVAIL;
757 }
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000758 } else {
Ilia Kee5e81f2009-09-16 05:53:07 +0000759 dev = ip_dev_find(net, vifc->vifc_lcl_addr.s_addr);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 if (!dev)
762 return -EADDRNOTAVAIL;
Wang Chend6070322008-07-14 20:55:26 -0700763 err = dev_set_allmulti(dev, 1);
Wang Chen7dc00c82008-07-14 20:56:34 -0700764 if (err) {
765 dev_put(dev);
Wang Chend6070322008-07-14 20:55:26 -0700766 return err;
Wang Chen7dc00c82008-07-14 20:56:34 -0700767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 break;
769 default:
770 return -EINVAL;
771 }
772
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000773 in_dev = __in_dev_get_rtnl(dev);
774 if (!in_dev) {
Dan Carpenterd0490cf2009-11-11 02:03:54 +0000775 dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 return -EADDRNOTAVAIL;
Dan Carpenterd0490cf2009-11-11 02:03:54 +0000777 }
Herbert Xu42f811b2007-06-04 23:34:44 -0700778 IPV4_DEVCONF(in_dev->cnf, MC_FORWARDING)++;
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000779 inet_netconf_notify_devconf(net, NETCONFA_MC_FORWARDING, dev->ifindex,
780 &in_dev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 ip_rt_multicast_event(in_dev);
782
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000783 /* Fill in the VIF structures */
784
Jianjun Kongc354e122008-11-03 00:28:02 -0800785 v->rate_limit = vifc->vifc_rate_limit;
786 v->local = vifc->vifc_lcl_addr.s_addr;
787 v->remote = vifc->vifc_rmt_addr.s_addr;
788 v->flags = vifc->vifc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if (!mrtsock)
790 v->flags |= VIFF_STATIC;
Jianjun Kongc354e122008-11-03 00:28:02 -0800791 v->threshold = vifc->vifc_threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 v->bytes_in = 0;
793 v->bytes_out = 0;
794 v->pkt_in = 0;
795 v->pkt_out = 0;
796 v->link = dev->ifindex;
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000797 if (v->flags & (VIFF_TUNNEL | VIFF_REGISTER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 v->link = dev->iflink;
799
800 /* And finish update writing critical data */
801 write_lock_bh(&mrt_lock);
Jianjun Kongc354e122008-11-03 00:28:02 -0800802 v->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803#ifdef CONFIG_IP_PIMSM
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000804 if (v->flags & VIFF_REGISTER)
Patrick McHardy0c122952010-04-13 05:03:22 +0000805 mrt->mroute_reg_vif_num = vifi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806#endif
Patrick McHardy0c122952010-04-13 05:03:22 +0000807 if (vifi+1 > mrt->maxvif)
808 mrt->maxvif = vifi+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 write_unlock_bh(&mrt_lock);
810 return 0;
811}
812
Eric Dumazeta8c94862010-10-01 16:15:08 +0000813/* called with rcu_read_lock() */
Patrick McHardy0c122952010-04-13 05:03:22 +0000814static struct mfc_cache *ipmr_cache_find(struct mr_table *mrt,
Benjamin Thery4feb88e2009-01-22 04:56:23 +0000815 __be32 origin,
816 __be32 mcastgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Jianjun Kongc354e122008-11-03 00:28:02 -0800818 int line = MFC_HASH(mcastgrp, origin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 struct mfc_cache *c;
820
Eric Dumazeta8c94862010-10-01 16:15:08 +0000821 list_for_each_entry_rcu(c, &mrt->mfc_cache_array[line], list) {
Patrick McHardy862465f2010-04-13 05:03:21 +0000822 if (c->mfc_origin == origin && c->mfc_mcastgrp == mcastgrp)
823 return c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 }
Patrick McHardy862465f2010-04-13 05:03:21 +0000825 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
828/*
829 * Allocate a multicast cache entry
830 */
Patrick McHardyd658f8a2010-04-13 05:03:20 +0000831static struct mfc_cache *ipmr_cache_alloc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
Jianjun Kongc354e122008-11-03 00:28:02 -0800833 struct mfc_cache *c = kmem_cache_zalloc(mrt_cachep, GFP_KERNEL);
Eric Dumazeta8c94862010-10-01 16:15:08 +0000834
835 if (c)
836 c->mfc_un.res.minvif = MAXVIFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 return c;
838}
839
Patrick McHardyd658f8a2010-04-13 05:03:20 +0000840static struct mfc_cache *ipmr_cache_alloc_unres(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
Jianjun Kongc354e122008-11-03 00:28:02 -0800842 struct mfc_cache *c = kmem_cache_zalloc(mrt_cachep, GFP_ATOMIC);
Eric Dumazeta8c94862010-10-01 16:15:08 +0000843
844 if (c) {
845 skb_queue_head_init(&c->mfc_un.unres.unresolved);
846 c->mfc_un.unres.expires = jiffies + 10*HZ;
847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 return c;
849}
850
851/*
852 * A cache entry has gone into a resolved state from queued
853 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900854
Patrick McHardy0c122952010-04-13 05:03:22 +0000855static void ipmr_cache_resolve(struct net *net, struct mr_table *mrt,
856 struct mfc_cache *uc, struct mfc_cache *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
858 struct sk_buff *skb;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700859 struct nlmsgerr *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000861 /* Play the pending entries through our router */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Jianjun Kongc354e122008-11-03 00:28:02 -0800863 while ((skb = __skb_dequeue(&uc->mfc_un.unres.unresolved))) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700864 if (ip_hdr(skb)->version == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 struct nlmsghdr *nlh = (struct nlmsghdr *)skb_pull(skb, sizeof(struct iphdr));
866
Patrick McHardycb6a4e42010-04-26 16:02:08 +0200867 if (__ipmr_fill_mroute(mrt, skb, c, NLMSG_DATA(nlh)) > 0) {
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000868 nlh->nlmsg_len = skb_tail_pointer(skb) -
869 (u8 *)nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 } else {
871 nlh->nlmsg_type = NLMSG_ERROR;
872 nlh->nlmsg_len = NLMSG_LENGTH(sizeof(struct nlmsgerr));
873 skb_trim(skb, nlh->nlmsg_len);
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700874 e = NLMSG_DATA(nlh);
875 e->error = -EMSGSIZE;
876 memset(&e->msg, 0, sizeof(e->msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
Thomas Graf2942e902006-08-15 00:30:25 -0700878
Eric W. Biederman15e47302012-09-07 20:12:54 +0000879 rtnl_unicast(skb, net, NETLINK_CB(skb).portid);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000880 } else {
Patrick McHardy0c122952010-04-13 05:03:22 +0000881 ip_mr_forward(net, mrt, skb, c, 0);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
884}
885
886/*
887 * Bounce a cache query up to mrouted. We could use netlink for this but mrouted
888 * expects the following bizarre scheme.
889 *
890 * Called under mrt_lock.
891 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900892
Patrick McHardy0c122952010-04-13 05:03:22 +0000893static int ipmr_cache_report(struct mr_table *mrt,
Benjamin Thery4feb88e2009-01-22 04:56:23 +0000894 struct sk_buff *pkt, vifi_t vifi, int assert)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
896 struct sk_buff *skb;
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300897 const int ihl = ip_hdrlen(pkt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 struct igmphdr *igmp;
899 struct igmpmsg *msg;
Eric Dumazet4c968702010-10-01 16:15:01 +0000900 struct sock *mroute_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 int ret;
902
903#ifdef CONFIG_IP_PIMSM
904 if (assert == IGMPMSG_WHOLEPKT)
905 skb = skb_realloc_headroom(pkt, sizeof(struct iphdr));
906 else
907#endif
908 skb = alloc_skb(128, GFP_ATOMIC);
909
Stephen Hemminger132adf52007-03-08 20:44:43 -0800910 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return -ENOBUFS;
912
913#ifdef CONFIG_IP_PIMSM
914 if (assert == IGMPMSG_WHOLEPKT) {
915 /* Ugly, but we have no choice with this interface.
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000916 * Duplicate old header, fix ihl, length etc.
917 * And all this only to mangle msg->im_msgtype and
918 * to set msg->im_mbz to "mbz" :-)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 */
Arnaldo Carvalho de Melo878c8142007-03-11 22:38:29 -0300920 skb_push(skb, sizeof(struct iphdr));
921 skb_reset_network_header(skb);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300922 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melo0272ffc2007-03-12 20:05:39 -0300923 msg = (struct igmpmsg *)skb_network_header(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700924 memcpy(msg, skb_network_header(pkt), sizeof(struct iphdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 msg->im_msgtype = IGMPMSG_WHOLEPKT;
926 msg->im_mbz = 0;
Patrick McHardy0c122952010-04-13 05:03:22 +0000927 msg->im_vif = mrt->mroute_reg_vif_num;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700928 ip_hdr(skb)->ihl = sizeof(struct iphdr) >> 2;
929 ip_hdr(skb)->tot_len = htons(ntohs(ip_hdr(pkt)->tot_len) +
930 sizeof(struct iphdr));
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900931 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932#endif
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900933 {
934
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000935 /* Copy the IP header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700937 skb->network_header = skb->tail;
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -0300938 skb_put(skb, ihl);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300939 skb_copy_to_linear_data(skb, pkt->data, ihl);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000940 ip_hdr(skb)->protocol = 0; /* Flag to the kernel this is a route add */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700941 msg = (struct igmpmsg *)skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 msg->im_vif = vifi;
Eric Dumazetadf30902009-06-02 05:19:30 +0000943 skb_dst_set(skb, dst_clone(skb_dst(pkt)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000945 /* Add our header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000947 igmp = (struct igmphdr *)skb_put(skb, sizeof(struct igmphdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 igmp->type =
949 msg->im_msgtype = assert;
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000950 igmp->code = 0;
951 ip_hdr(skb)->tot_len = htons(skb->len); /* Fix the length */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700952 skb->transport_header = skb->network_header;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Eric Dumazet4c968702010-10-01 16:15:01 +0000955 rcu_read_lock();
956 mroute_sk = rcu_dereference(mrt->mroute_sk);
957 if (mroute_sk == NULL) {
958 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 kfree_skb(skb);
960 return -EINVAL;
961 }
962
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000963 /* Deliver to mrouted */
964
Eric Dumazet4c968702010-10-01 16:15:01 +0000965 ret = sock_queue_rcv_skb(mroute_sk, skb);
966 rcu_read_unlock();
Benjamin Thery70a269e2009-01-22 04:56:15 +0000967 if (ret < 0) {
Joe Perchese87cc472012-05-13 21:56:26 +0000968 net_warn_ratelimited("mroute: pending queue full, dropping entries\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 kfree_skb(skb);
970 }
971
972 return ret;
973}
974
975/*
976 * Queue a packet for resolution. It gets locked cache entry!
977 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979static int
Patrick McHardy0c122952010-04-13 05:03:22 +0000980ipmr_cache_unresolved(struct mr_table *mrt, vifi_t vifi, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
Patrick McHardy862465f2010-04-13 05:03:21 +0000982 bool found = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 int err;
984 struct mfc_cache *c;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700985 const struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 spin_lock_bh(&mfc_unres_lock);
Patrick McHardy0c122952010-04-13 05:03:22 +0000988 list_for_each_entry(c, &mrt->mfc_unres_queue, list) {
Patrick McHardye258beb2010-04-13 05:03:19 +0000989 if (c->mfc_mcastgrp == iph->daddr &&
Patrick McHardy862465f2010-04-13 05:03:21 +0000990 c->mfc_origin == iph->saddr) {
991 found = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 break;
Patrick McHardy862465f2010-04-13 05:03:21 +0000993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
995
Patrick McHardy862465f2010-04-13 05:03:21 +0000996 if (!found) {
Eric Dumazeta8cb16d2010-10-01 16:15:29 +0000997 /* Create a new entry if allowable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Patrick McHardy0c122952010-04-13 05:03:22 +0000999 if (atomic_read(&mrt->cache_resolve_queue_len) >= 10 ||
Patrick McHardyd658f8a2010-04-13 05:03:20 +00001000 (c = ipmr_cache_alloc_unres()) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 spin_unlock_bh(&mfc_unres_lock);
1002
1003 kfree_skb(skb);
1004 return -ENOBUFS;
1005 }
1006
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001007 /* Fill in the new cache entry */
1008
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001009 c->mfc_parent = -1;
1010 c->mfc_origin = iph->saddr;
1011 c->mfc_mcastgrp = iph->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001013 /* Reflect first query at mrouted. */
1014
Patrick McHardy0c122952010-04-13 05:03:22 +00001015 err = ipmr_cache_report(mrt, skb, vifi, IGMPMSG_NOCACHE);
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001016 if (err < 0) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001017 /* If the report failed throw the cache entry
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 out - Brad Parker
1019 */
1020 spin_unlock_bh(&mfc_unres_lock);
1021
Benjamin Thery5c0a66f2009-01-22 04:56:17 +00001022 ipmr_cache_free(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 kfree_skb(skb);
1024 return err;
1025 }
1026
Patrick McHardy0c122952010-04-13 05:03:22 +00001027 atomic_inc(&mrt->cache_resolve_queue_len);
1028 list_add(&c->list, &mrt->mfc_unres_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
David S. Miller278554b2010-05-12 00:05:35 -07001030 if (atomic_read(&mrt->cache_resolve_queue_len) == 1)
1031 mod_timer(&mrt->ipmr_expire_timer, c->mfc_un.unres.expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 }
1033
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001034 /* See if we can append the packet */
1035
1036 if (c->mfc_un.unres.unresolved.qlen > 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 kfree_skb(skb);
1038 err = -ENOBUFS;
1039 } else {
Jianjun Kongc354e122008-11-03 00:28:02 -08001040 skb_queue_tail(&c->mfc_un.unres.unresolved, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 err = 0;
1042 }
1043
1044 spin_unlock_bh(&mfc_unres_lock);
1045 return err;
1046}
1047
1048/*
1049 * MFC cache manipulation by user space mroute daemon
1050 */
1051
Patrick McHardy0c122952010-04-13 05:03:22 +00001052static int ipmr_mfc_delete(struct mr_table *mrt, struct mfcctl *mfc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
1054 int line;
Patrick McHardy862465f2010-04-13 05:03:21 +00001055 struct mfc_cache *c, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Jianjun Kongc354e122008-11-03 00:28:02 -08001057 line = MFC_HASH(mfc->mfcc_mcastgrp.s_addr, mfc->mfcc_origin.s_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Patrick McHardy0c122952010-04-13 05:03:22 +00001059 list_for_each_entry_safe(c, next, &mrt->mfc_cache_array[line], list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 if (c->mfc_origin == mfc->mfcc_origin.s_addr &&
1061 c->mfc_mcastgrp == mfc->mfcc_mcastgrp.s_addr) {
Eric Dumazeta8c94862010-10-01 16:15:08 +00001062 list_del_rcu(&c->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Benjamin Thery5c0a66f2009-01-22 04:56:17 +00001064 ipmr_cache_free(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 return 0;
1066 }
1067 }
1068 return -ENOENT;
1069}
1070
Patrick McHardy0c122952010-04-13 05:03:22 +00001071static int ipmr_mfc_add(struct net *net, struct mr_table *mrt,
1072 struct mfcctl *mfc, int mrtsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073{
Patrick McHardy862465f2010-04-13 05:03:21 +00001074 bool found = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 int line;
Patrick McHardy862465f2010-04-13 05:03:21 +00001076 struct mfc_cache *uc, *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Patrick McHardya50436f22010-03-17 06:04:14 +00001078 if (mfc->mfcc_parent >= MAXVIFS)
1079 return -ENFILE;
1080
Jianjun Kongc354e122008-11-03 00:28:02 -08001081 line = MFC_HASH(mfc->mfcc_mcastgrp.s_addr, mfc->mfcc_origin.s_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Patrick McHardy0c122952010-04-13 05:03:22 +00001083 list_for_each_entry(c, &mrt->mfc_cache_array[line], list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if (c->mfc_origin == mfc->mfcc_origin.s_addr &&
Patrick McHardy862465f2010-04-13 05:03:21 +00001085 c->mfc_mcastgrp == mfc->mfcc_mcastgrp.s_addr) {
1086 found = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 break;
Patrick McHardy862465f2010-04-13 05:03:21 +00001088 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 }
1090
Patrick McHardy862465f2010-04-13 05:03:21 +00001091 if (found) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 write_lock_bh(&mrt_lock);
1093 c->mfc_parent = mfc->mfcc_parent;
Patrick McHardy0c122952010-04-13 05:03:22 +00001094 ipmr_update_thresholds(mrt, c, mfc->mfcc_ttls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 if (!mrtsock)
1096 c->mfc_flags |= MFC_STATIC;
1097 write_unlock_bh(&mrt_lock);
1098 return 0;
1099 }
1100
Joe Perchesf97c1e02007-12-16 13:45:43 -08001101 if (!ipv4_is_multicast(mfc->mfcc_mcastgrp.s_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 return -EINVAL;
1103
Patrick McHardyd658f8a2010-04-13 05:03:20 +00001104 c = ipmr_cache_alloc();
Jianjun Kongc354e122008-11-03 00:28:02 -08001105 if (c == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 return -ENOMEM;
1107
Jianjun Kongc354e122008-11-03 00:28:02 -08001108 c->mfc_origin = mfc->mfcc_origin.s_addr;
1109 c->mfc_mcastgrp = mfc->mfcc_mcastgrp.s_addr;
1110 c->mfc_parent = mfc->mfcc_parent;
Patrick McHardy0c122952010-04-13 05:03:22 +00001111 ipmr_update_thresholds(mrt, c, mfc->mfcc_ttls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 if (!mrtsock)
1113 c->mfc_flags |= MFC_STATIC;
1114
Eric Dumazeta8c94862010-10-01 16:15:08 +00001115 list_add_rcu(&c->list, &mrt->mfc_cache_array[line]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
1117 /*
1118 * Check to see if we resolved a queued list. If so we
1119 * need to send on the frames and tidy up.
1120 */
Patrick McHardyb0ebb732010-04-15 13:29:28 +02001121 found = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 spin_lock_bh(&mfc_unres_lock);
Patrick McHardy0c122952010-04-13 05:03:22 +00001123 list_for_each_entry(uc, &mrt->mfc_unres_queue, list) {
Patrick McHardye258beb2010-04-13 05:03:19 +00001124 if (uc->mfc_origin == c->mfc_origin &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 uc->mfc_mcastgrp == c->mfc_mcastgrp) {
Patrick McHardy862465f2010-04-13 05:03:21 +00001126 list_del(&uc->list);
Patrick McHardy0c122952010-04-13 05:03:22 +00001127 atomic_dec(&mrt->cache_resolve_queue_len);
Patrick McHardyb0ebb732010-04-15 13:29:28 +02001128 found = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 break;
1130 }
1131 }
Patrick McHardy0c122952010-04-13 05:03:22 +00001132 if (list_empty(&mrt->mfc_unres_queue))
1133 del_timer(&mrt->ipmr_expire_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 spin_unlock_bh(&mfc_unres_lock);
1135
Patrick McHardyb0ebb732010-04-15 13:29:28 +02001136 if (found) {
Patrick McHardy0c122952010-04-13 05:03:22 +00001137 ipmr_cache_resolve(net, mrt, uc, c);
Benjamin Thery5c0a66f2009-01-22 04:56:17 +00001138 ipmr_cache_free(uc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 }
1140 return 0;
1141}
1142
1143/*
1144 * Close the multicast socket, and clear the vif tables etc
1145 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001146
Patrick McHardy0c122952010-04-13 05:03:22 +00001147static void mroute_clean_tables(struct mr_table *mrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
1149 int i;
Eric Dumazetd17fa6f2009-10-28 05:21:38 +00001150 LIST_HEAD(list);
Patrick McHardy862465f2010-04-13 05:03:21 +00001151 struct mfc_cache *c, *next;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001152
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001153 /* Shut down all active vif entries */
1154
Patrick McHardy0c122952010-04-13 05:03:22 +00001155 for (i = 0; i < mrt->maxvif; i++) {
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001156 if (!(mrt->vif_table[i].flags & VIFF_STATIC))
Patrick McHardy0c122952010-04-13 05:03:22 +00001157 vif_delete(mrt, i, 0, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 }
Eric Dumazetd17fa6f2009-10-28 05:21:38 +00001159 unregister_netdevice_many(&list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001161 /* Wipe the cache */
1162
Patrick McHardy862465f2010-04-13 05:03:21 +00001163 for (i = 0; i < MFC_LINES; i++) {
Patrick McHardy0c122952010-04-13 05:03:22 +00001164 list_for_each_entry_safe(c, next, &mrt->mfc_cache_array[i], list) {
Eric Dumazeta8c94862010-10-01 16:15:08 +00001165 if (c->mfc_flags & MFC_STATIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 continue;
Eric Dumazeta8c94862010-10-01 16:15:08 +00001167 list_del_rcu(&c->list);
Benjamin Thery5c0a66f2009-01-22 04:56:17 +00001168 ipmr_cache_free(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 }
1170 }
1171
Patrick McHardy0c122952010-04-13 05:03:22 +00001172 if (atomic_read(&mrt->cache_resolve_queue_len) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 spin_lock_bh(&mfc_unres_lock);
Patrick McHardy0c122952010-04-13 05:03:22 +00001174 list_for_each_entry_safe(c, next, &mrt->mfc_unres_queue, list) {
Patrick McHardy862465f2010-04-13 05:03:21 +00001175 list_del(&c->list);
Patrick McHardy0c122952010-04-13 05:03:22 +00001176 ipmr_destroy_unres(mrt, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
1178 spin_unlock_bh(&mfc_unres_lock);
1179 }
1180}
1181
Eric Dumazet4c968702010-10-01 16:15:01 +00001182/* called from ip_ra_control(), before an RCU grace period,
1183 * we dont need to call synchronize_rcu() here
1184 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185static void mrtsock_destruct(struct sock *sk)
1186{
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001187 struct net *net = sock_net(sk);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001188 struct mr_table *mrt;
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 rtnl_lock();
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001191 ipmr_for_each_table(mrt, net) {
Eric Dumazet4c968702010-10-01 16:15:01 +00001192 if (sk == rtnl_dereference(mrt->mroute_sk)) {
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001193 IPV4_DEVCONF_ALL(net, MC_FORWARDING)--;
Nicolas Dichteld67b8c62012-12-04 01:13:35 +00001194 inet_netconf_notify_devconf(net, NETCONFA_MC_FORWARDING,
1195 NETCONFA_IFINDEX_ALL,
1196 net->ipv4.devconf_all);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001197 RCU_INIT_POINTER(mrt->mroute_sk, NULL);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001198 mroute_clean_tables(mrt);
1199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 }
1201 rtnl_unlock();
1202}
1203
1204/*
1205 * Socket options and virtual interface manipulation. The whole
1206 * virtual interface system is a complete heap, but unfortunately
1207 * that's how BSD mrouted happens to think. Maybe one day with a proper
1208 * MOSPF/PIM router set up we can clean this up.
1209 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001210
David S. Millerb7058842009-09-30 16:12:20 -07001211int ip_mroute_setsockopt(struct sock *sk, int optname, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
1213 int ret;
1214 struct vifctl vif;
1215 struct mfcctl mfc;
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001216 struct net *net = sock_net(sk);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001217 struct mr_table *mrt;
1218
Eric Dumazet5e1859f2012-11-25 06:41:45 +00001219 if (sk->sk_type != SOCK_RAW ||
1220 inet_sk(sk)->inet_num != IPPROTO_IGMP)
1221 return -EOPNOTSUPP;
1222
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001223 mrt = ipmr_get_table(net, raw_sk(sk)->ipmr_table ? : RT_TABLE_DEFAULT);
1224 if (mrt == NULL)
1225 return -ENOENT;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001226
Stephen Hemminger132adf52007-03-08 20:44:43 -08001227 if (optname != MRT_INIT) {
Eric Dumazet33d480c2011-08-11 19:30:52 +00001228 if (sk != rcu_access_pointer(mrt->mroute_sk) &&
Eric W. Biederman52e804c2012-11-16 03:03:05 +00001229 !ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 return -EACCES;
1231 }
1232
Stephen Hemminger132adf52007-03-08 20:44:43 -08001233 switch (optname) {
1234 case MRT_INIT:
Jianjun Kongc354e122008-11-03 00:28:02 -08001235 if (optlen != sizeof(int))
Eric Dumazet5e1859f2012-11-25 06:41:45 +00001236 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Stephen Hemminger132adf52007-03-08 20:44:43 -08001238 rtnl_lock();
Eric Dumazet4c968702010-10-01 16:15:01 +00001239 if (rtnl_dereference(mrt->mroute_sk)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 rtnl_unlock();
Stephen Hemminger132adf52007-03-08 20:44:43 -08001241 return -EADDRINUSE;
1242 }
1243
1244 ret = ip_ra_control(sk, 1, mrtsock_destruct);
1245 if (ret == 0) {
Eric Dumazetcf778b02012-01-12 04:41:32 +00001246 rcu_assign_pointer(mrt->mroute_sk, sk);
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001247 IPV4_DEVCONF_ALL(net, MC_FORWARDING)++;
Nicolas Dichteld67b8c62012-12-04 01:13:35 +00001248 inet_netconf_notify_devconf(net, NETCONFA_MC_FORWARDING,
1249 NETCONFA_IFINDEX_ALL,
1250 net->ipv4.devconf_all);
Stephen Hemminger132adf52007-03-08 20:44:43 -08001251 }
1252 rtnl_unlock();
1253 return ret;
1254 case MRT_DONE:
Eric Dumazet33d480c2011-08-11 19:30:52 +00001255 if (sk != rcu_access_pointer(mrt->mroute_sk))
Stephen Hemminger132adf52007-03-08 20:44:43 -08001256 return -EACCES;
1257 return ip_ra_control(sk, 0, NULL);
1258 case MRT_ADD_VIF:
1259 case MRT_DEL_VIF:
Jianjun Kongc354e122008-11-03 00:28:02 -08001260 if (optlen != sizeof(vif))
Stephen Hemminger132adf52007-03-08 20:44:43 -08001261 return -EINVAL;
Jianjun Kongc354e122008-11-03 00:28:02 -08001262 if (copy_from_user(&vif, optval, sizeof(vif)))
Stephen Hemminger132adf52007-03-08 20:44:43 -08001263 return -EFAULT;
1264 if (vif.vifc_vifi >= MAXVIFS)
1265 return -ENFILE;
1266 rtnl_lock();
Jianjun Kongc354e122008-11-03 00:28:02 -08001267 if (optname == MRT_ADD_VIF) {
Eric Dumazet4c968702010-10-01 16:15:01 +00001268 ret = vif_add(net, mrt, &vif,
1269 sk == rtnl_dereference(mrt->mroute_sk));
Stephen Hemminger132adf52007-03-08 20:44:43 -08001270 } else {
Patrick McHardy0c122952010-04-13 05:03:22 +00001271 ret = vif_delete(mrt, vif.vifc_vifi, 0, NULL);
Stephen Hemminger132adf52007-03-08 20:44:43 -08001272 }
1273 rtnl_unlock();
1274 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 /*
1277 * Manipulate the forwarding caches. These live
1278 * in a sort of kernel/user symbiosis.
1279 */
Stephen Hemminger132adf52007-03-08 20:44:43 -08001280 case MRT_ADD_MFC:
1281 case MRT_DEL_MFC:
Jianjun Kongc354e122008-11-03 00:28:02 -08001282 if (optlen != sizeof(mfc))
Stephen Hemminger132adf52007-03-08 20:44:43 -08001283 return -EINVAL;
Jianjun Kongc354e122008-11-03 00:28:02 -08001284 if (copy_from_user(&mfc, optval, sizeof(mfc)))
Stephen Hemminger132adf52007-03-08 20:44:43 -08001285 return -EFAULT;
1286 rtnl_lock();
Jianjun Kongc354e122008-11-03 00:28:02 -08001287 if (optname == MRT_DEL_MFC)
Patrick McHardy0c122952010-04-13 05:03:22 +00001288 ret = ipmr_mfc_delete(mrt, &mfc);
Stephen Hemminger132adf52007-03-08 20:44:43 -08001289 else
Eric Dumazet4c968702010-10-01 16:15:01 +00001290 ret = ipmr_mfc_add(net, mrt, &mfc,
1291 sk == rtnl_dereference(mrt->mroute_sk));
Stephen Hemminger132adf52007-03-08 20:44:43 -08001292 rtnl_unlock();
1293 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 /*
1295 * Control PIM assert.
1296 */
Stephen Hemminger132adf52007-03-08 20:44:43 -08001297 case MRT_ASSERT:
1298 {
1299 int v;
Eric Dumazet5e1859f2012-11-25 06:41:45 +00001300 if (optlen != sizeof(v))
1301 return -EINVAL;
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001302 if (get_user(v, (int __user *)optval))
Stephen Hemminger132adf52007-03-08 20:44:43 -08001303 return -EFAULT;
Joe Perches53d68412012-11-25 09:35:30 +00001304 mrt->mroute_do_assert = v;
Stephen Hemminger132adf52007-03-08 20:44:43 -08001305 return 0;
1306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307#ifdef CONFIG_IP_PIMSM
Stephen Hemminger132adf52007-03-08 20:44:43 -08001308 case MRT_PIM:
1309 {
Stephen Hemmingerba93ef72008-01-21 17:28:59 -08001310 int v;
1311
Eric Dumazet5e1859f2012-11-25 06:41:45 +00001312 if (optlen != sizeof(v))
1313 return -EINVAL;
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001314 if (get_user(v, (int __user *)optval))
Stephen Hemminger132adf52007-03-08 20:44:43 -08001315 return -EFAULT;
Eric Dumazet5e1859f2012-11-25 06:41:45 +00001316 v = !!v;
Stephen Hemmingerba93ef72008-01-21 17:28:59 -08001317
Stephen Hemminger132adf52007-03-08 20:44:43 -08001318 rtnl_lock();
1319 ret = 0;
Patrick McHardy0c122952010-04-13 05:03:22 +00001320 if (v != mrt->mroute_do_pim) {
1321 mrt->mroute_do_pim = v;
1322 mrt->mroute_do_assert = v;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 }
Stephen Hemminger132adf52007-03-08 20:44:43 -08001324 rtnl_unlock();
1325 return ret;
1326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327#endif
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001328#ifdef CONFIG_IP_MROUTE_MULTIPLE_TABLES
1329 case MRT_TABLE:
1330 {
1331 u32 v;
1332
1333 if (optlen != sizeof(u32))
1334 return -EINVAL;
1335 if (get_user(v, (u32 __user *)optval))
1336 return -EFAULT;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001337
Eric Dumazetb49d3c12012-11-25 09:44:29 +00001338 /* "pimreg%u" should not exceed 16 bytes (IFNAMSIZ) */
1339 if (v != RT_TABLE_DEFAULT && v >= 1000000000)
1340 return -EINVAL;
1341
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001342 rtnl_lock();
1343 ret = 0;
Eric Dumazet4c968702010-10-01 16:15:01 +00001344 if (sk == rtnl_dereference(mrt->mroute_sk)) {
1345 ret = -EBUSY;
1346 } else {
1347 if (!ipmr_new_table(net, v))
1348 ret = -ENOMEM;
Eric Dumazet5e1859f2012-11-25 06:41:45 +00001349 else
1350 raw_sk(sk)->ipmr_table = v;
Eric Dumazet4c968702010-10-01 16:15:01 +00001351 }
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001352 rtnl_unlock();
1353 return ret;
1354 }
1355#endif
Stephen Hemminger132adf52007-03-08 20:44:43 -08001356 /*
1357 * Spurious command, or MRT_VERSION which you cannot
1358 * set.
1359 */
1360 default:
1361 return -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 }
1363}
1364
1365/*
1366 * Getsock opt support for the multicast routing system.
1367 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001368
Jianjun Kongc354e122008-11-03 00:28:02 -08001369int ip_mroute_getsockopt(struct sock *sk, int optname, char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
1371 int olr;
1372 int val;
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001373 struct net *net = sock_net(sk);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001374 struct mr_table *mrt;
1375
Eric Dumazet5e1859f2012-11-25 06:41:45 +00001376 if (sk->sk_type != SOCK_RAW ||
1377 inet_sk(sk)->inet_num != IPPROTO_IGMP)
1378 return -EOPNOTSUPP;
1379
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001380 mrt = ipmr_get_table(net, raw_sk(sk)->ipmr_table ? : RT_TABLE_DEFAULT);
1381 if (mrt == NULL)
1382 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Jianjun Kongc354e122008-11-03 00:28:02 -08001384 if (optname != MRT_VERSION &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385#ifdef CONFIG_IP_PIMSM
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001386 optname != MRT_PIM &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387#endif
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001388 optname != MRT_ASSERT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 return -ENOPROTOOPT;
1390
1391 if (get_user(olr, optlen))
1392 return -EFAULT;
1393
1394 olr = min_t(unsigned int, olr, sizeof(int));
1395 if (olr < 0)
1396 return -EINVAL;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001397
Jianjun Kongc354e122008-11-03 00:28:02 -08001398 if (put_user(olr, optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 return -EFAULT;
Jianjun Kongc354e122008-11-03 00:28:02 -08001400 if (optname == MRT_VERSION)
1401 val = 0x0305;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402#ifdef CONFIG_IP_PIMSM
Jianjun Kongc354e122008-11-03 00:28:02 -08001403 else if (optname == MRT_PIM)
Patrick McHardy0c122952010-04-13 05:03:22 +00001404 val = mrt->mroute_do_pim;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405#endif
1406 else
Patrick McHardy0c122952010-04-13 05:03:22 +00001407 val = mrt->mroute_do_assert;
Jianjun Kongc354e122008-11-03 00:28:02 -08001408 if (copy_to_user(optval, &val, olr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 return -EFAULT;
1410 return 0;
1411}
1412
1413/*
1414 * The IP multicast ioctl support routines.
1415 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417int ipmr_ioctl(struct sock *sk, int cmd, void __user *arg)
1418{
1419 struct sioc_sg_req sr;
1420 struct sioc_vif_req vr;
1421 struct vif_device *vif;
1422 struct mfc_cache *c;
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001423 struct net *net = sock_net(sk);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001424 struct mr_table *mrt;
1425
1426 mrt = ipmr_get_table(net, raw_sk(sk)->ipmr_table ? : RT_TABLE_DEFAULT);
1427 if (mrt == NULL)
1428 return -ENOENT;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001429
Stephen Hemminger132adf52007-03-08 20:44:43 -08001430 switch (cmd) {
1431 case SIOCGETVIFCNT:
Jianjun Kongc354e122008-11-03 00:28:02 -08001432 if (copy_from_user(&vr, arg, sizeof(vr)))
Stephen Hemminger132adf52007-03-08 20:44:43 -08001433 return -EFAULT;
Patrick McHardy0c122952010-04-13 05:03:22 +00001434 if (vr.vifi >= mrt->maxvif)
Stephen Hemminger132adf52007-03-08 20:44:43 -08001435 return -EINVAL;
1436 read_lock(&mrt_lock);
Patrick McHardy0c122952010-04-13 05:03:22 +00001437 vif = &mrt->vif_table[vr.vifi];
1438 if (VIF_EXISTS(mrt, vr.vifi)) {
Jianjun Kongc354e122008-11-03 00:28:02 -08001439 vr.icount = vif->pkt_in;
1440 vr.ocount = vif->pkt_out;
1441 vr.ibytes = vif->bytes_in;
1442 vr.obytes = vif->bytes_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 read_unlock(&mrt_lock);
Stephen Hemminger132adf52007-03-08 20:44:43 -08001444
Jianjun Kongc354e122008-11-03 00:28:02 -08001445 if (copy_to_user(arg, &vr, sizeof(vr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 return -EFAULT;
Stephen Hemminger132adf52007-03-08 20:44:43 -08001447 return 0;
1448 }
1449 read_unlock(&mrt_lock);
1450 return -EADDRNOTAVAIL;
1451 case SIOCGETSGCNT:
Jianjun Kongc354e122008-11-03 00:28:02 -08001452 if (copy_from_user(&sr, arg, sizeof(sr)))
Stephen Hemminger132adf52007-03-08 20:44:43 -08001453 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Eric Dumazeta8c94862010-10-01 16:15:08 +00001455 rcu_read_lock();
Patrick McHardy0c122952010-04-13 05:03:22 +00001456 c = ipmr_cache_find(mrt, sr.src.s_addr, sr.grp.s_addr);
Stephen Hemminger132adf52007-03-08 20:44:43 -08001457 if (c) {
1458 sr.pktcnt = c->mfc_un.res.pkt;
1459 sr.bytecnt = c->mfc_un.res.bytes;
1460 sr.wrong_if = c->mfc_un.res.wrong_if;
Eric Dumazeta8c94862010-10-01 16:15:08 +00001461 rcu_read_unlock();
Stephen Hemminger132adf52007-03-08 20:44:43 -08001462
Jianjun Kongc354e122008-11-03 00:28:02 -08001463 if (copy_to_user(arg, &sr, sizeof(sr)))
Stephen Hemminger132adf52007-03-08 20:44:43 -08001464 return -EFAULT;
1465 return 0;
1466 }
Eric Dumazeta8c94862010-10-01 16:15:08 +00001467 rcu_read_unlock();
Stephen Hemminger132adf52007-03-08 20:44:43 -08001468 return -EADDRNOTAVAIL;
1469 default:
1470 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 }
1472}
1473
Eric W. Biederman709b46e2011-01-29 16:15:56 +00001474#ifdef CONFIG_COMPAT
1475struct compat_sioc_sg_req {
1476 struct in_addr src;
1477 struct in_addr grp;
1478 compat_ulong_t pktcnt;
1479 compat_ulong_t bytecnt;
1480 compat_ulong_t wrong_if;
1481};
1482
David S. Millerca6b8bb02011-02-03 17:24:28 -08001483struct compat_sioc_vif_req {
1484 vifi_t vifi; /* Which iface */
1485 compat_ulong_t icount;
1486 compat_ulong_t ocount;
1487 compat_ulong_t ibytes;
1488 compat_ulong_t obytes;
1489};
1490
Eric W. Biederman709b46e2011-01-29 16:15:56 +00001491int ipmr_compat_ioctl(struct sock *sk, unsigned int cmd, void __user *arg)
1492{
David S. Miller0033d5a2011-02-03 17:21:31 -08001493 struct compat_sioc_sg_req sr;
David S. Millerca6b8bb02011-02-03 17:24:28 -08001494 struct compat_sioc_vif_req vr;
1495 struct vif_device *vif;
Eric W. Biederman709b46e2011-01-29 16:15:56 +00001496 struct mfc_cache *c;
1497 struct net *net = sock_net(sk);
1498 struct mr_table *mrt;
1499
1500 mrt = ipmr_get_table(net, raw_sk(sk)->ipmr_table ? : RT_TABLE_DEFAULT);
1501 if (mrt == NULL)
1502 return -ENOENT;
1503
1504 switch (cmd) {
David S. Millerca6b8bb02011-02-03 17:24:28 -08001505 case SIOCGETVIFCNT:
1506 if (copy_from_user(&vr, arg, sizeof(vr)))
1507 return -EFAULT;
1508 if (vr.vifi >= mrt->maxvif)
1509 return -EINVAL;
1510 read_lock(&mrt_lock);
1511 vif = &mrt->vif_table[vr.vifi];
1512 if (VIF_EXISTS(mrt, vr.vifi)) {
1513 vr.icount = vif->pkt_in;
1514 vr.ocount = vif->pkt_out;
1515 vr.ibytes = vif->bytes_in;
1516 vr.obytes = vif->bytes_out;
1517 read_unlock(&mrt_lock);
1518
1519 if (copy_to_user(arg, &vr, sizeof(vr)))
1520 return -EFAULT;
1521 return 0;
1522 }
1523 read_unlock(&mrt_lock);
1524 return -EADDRNOTAVAIL;
Eric W. Biederman709b46e2011-01-29 16:15:56 +00001525 case SIOCGETSGCNT:
1526 if (copy_from_user(&sr, arg, sizeof(sr)))
1527 return -EFAULT;
1528
1529 rcu_read_lock();
1530 c = ipmr_cache_find(mrt, sr.src.s_addr, sr.grp.s_addr);
1531 if (c) {
1532 sr.pktcnt = c->mfc_un.res.pkt;
1533 sr.bytecnt = c->mfc_un.res.bytes;
1534 sr.wrong_if = c->mfc_un.res.wrong_if;
1535 rcu_read_unlock();
1536
1537 if (copy_to_user(arg, &sr, sizeof(sr)))
1538 return -EFAULT;
1539 return 0;
1540 }
1541 rcu_read_unlock();
1542 return -EADDRNOTAVAIL;
1543 default:
1544 return -ENOIOCTLCMD;
1545 }
1546}
1547#endif
1548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
1550static int ipmr_device_event(struct notifier_block *this, unsigned long event, void *ptr)
1551{
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001552 struct net_device *dev = ptr;
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001553 struct net *net = dev_net(dev);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001554 struct mr_table *mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 struct vif_device *v;
1556 int ct;
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 if (event != NETDEV_UNREGISTER)
1559 return NOTIFY_DONE;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001560
1561 ipmr_for_each_table(mrt, net) {
1562 v = &mrt->vif_table[0];
1563 for (ct = 0; ct < mrt->maxvif; ct++, v++) {
1564 if (v->dev == dev)
RongQing.Lie92036a2011-11-23 23:10:52 +00001565 vif_delete(mrt, ct, 1, NULL);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 }
1568 return NOTIFY_DONE;
1569}
1570
1571
Jianjun Kongc354e122008-11-03 00:28:02 -08001572static struct notifier_block ip_mr_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 .notifier_call = ipmr_device_event,
1574};
1575
1576/*
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001577 * Encapsulate a packet by attaching a valid IPIP header to it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 * This avoids tunnel drivers and other mess and gives us the speed so
1579 * important for multicast video.
1580 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001581
Al Viro114c7842006-09-27 18:39:29 -07001582static void ip_encap(struct sk_buff *skb, __be32 saddr, __be32 daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583{
Arnaldo Carvalho de Melo8856dfa2007-03-10 19:40:39 -03001584 struct iphdr *iph;
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001585 const struct iphdr *old_iph = ip_hdr(skb);
Arnaldo Carvalho de Melo8856dfa2007-03-10 19:40:39 -03001586
1587 skb_push(skb, sizeof(struct iphdr));
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001588 skb->transport_header = skb->network_header;
Arnaldo Carvalho de Melo8856dfa2007-03-10 19:40:39 -03001589 skb_reset_network_header(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001590 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001592 iph->version = 4;
Arnaldo Carvalho de Meloe023dd62007-03-12 20:09:36 -03001593 iph->tos = old_iph->tos;
1594 iph->ttl = old_iph->ttl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 iph->frag_off = 0;
1596 iph->daddr = daddr;
1597 iph->saddr = saddr;
1598 iph->protocol = IPPROTO_IPIP;
1599 iph->ihl = 5;
1600 iph->tot_len = htons(skb->len);
Eric Dumazetadf30902009-06-02 05:19:30 +00001601 ip_select_ident(iph, skb_dst(skb), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 ip_send_check(iph);
1603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
1605 nf_reset(skb);
1606}
1607
1608static inline int ipmr_forward_finish(struct sk_buff *skb)
1609{
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001610 struct ip_options *opt = &(IPCB(skb)->opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Eric Dumazetadf30902009-06-02 05:19:30 +00001612 IP_INC_STATS_BH(dev_net(skb_dst(skb)->dev), IPSTATS_MIB_OUTFORWDATAGRAMS);
Vincent Bernat2d8dbb02012-06-05 03:41:42 +00001613 IP_ADD_STATS_BH(dev_net(skb_dst(skb)->dev), IPSTATS_MIB_OUTOCTETS, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
1615 if (unlikely(opt->optlen))
1616 ip_forward_options(skb);
1617
1618 return dst_output(skb);
1619}
1620
1621/*
1622 * Processing handlers for ipmr_forward
1623 */
1624
Patrick McHardy0c122952010-04-13 05:03:22 +00001625static void ipmr_queue_xmit(struct net *net, struct mr_table *mrt,
1626 struct sk_buff *skb, struct mfc_cache *c, int vifi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001628 const struct iphdr *iph = ip_hdr(skb);
Patrick McHardy0c122952010-04-13 05:03:22 +00001629 struct vif_device *vif = &mrt->vif_table[vifi];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 struct net_device *dev;
1631 struct rtable *rt;
David S. Miller31e45432011-05-03 20:25:42 -07001632 struct flowi4 fl4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 int encap = 0;
1634
1635 if (vif->dev == NULL)
1636 goto out_free;
1637
1638#ifdef CONFIG_IP_PIMSM
1639 if (vif->flags & VIFF_REGISTER) {
1640 vif->pkt_out++;
Jianjun Kongc354e122008-11-03 00:28:02 -08001641 vif->bytes_out += skb->len;
Pavel Emelyanovcf3677a2008-05-21 14:17:33 -07001642 vif->dev->stats.tx_bytes += skb->len;
1643 vif->dev->stats.tx_packets++;
Patrick McHardy0c122952010-04-13 05:03:22 +00001644 ipmr_cache_report(mrt, skb, vifi, IGMPMSG_WHOLEPKT);
Ilpo Järvinen69ebbf52009-02-06 23:46:51 -08001645 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 }
1647#endif
1648
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001649 if (vif->flags & VIFF_TUNNEL) {
David S. Miller31e45432011-05-03 20:25:42 -07001650 rt = ip_route_output_ports(net, &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -05001651 vif->remote, vif->local,
1652 0, 0,
1653 IPPROTO_IPIP,
1654 RT_TOS(iph->tos), vif->link);
David S. Millerb23dd4f2011-03-02 14:31:35 -08001655 if (IS_ERR(rt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 goto out_free;
1657 encap = sizeof(struct iphdr);
1658 } else {
David S. Miller31e45432011-05-03 20:25:42 -07001659 rt = ip_route_output_ports(net, &fl4, NULL, iph->daddr, 0,
David S. Miller78fbfd82011-03-12 00:00:52 -05001660 0, 0,
1661 IPPROTO_IPIP,
1662 RT_TOS(iph->tos), vif->link);
David S. Millerb23dd4f2011-03-02 14:31:35 -08001663 if (IS_ERR(rt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 goto out_free;
1665 }
1666
Changli Gaod8d1f302010-06-10 23:31:35 -07001667 dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Changli Gaod8d1f302010-06-10 23:31:35 -07001669 if (skb->len+encap > dst_mtu(&rt->dst) && (ntohs(iph->frag_off) & IP_DF)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 /* Do not fragment multicasts. Alas, IPv4 does not
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001671 * allow to send ICMP, so that packets will disappear
1672 * to blackhole.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 */
1674
Pavel Emelyanov7c73a6f2008-07-16 20:20:11 -07001675 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 ip_rt_put(rt);
1677 goto out_free;
1678 }
1679
Changli Gaod8d1f302010-06-10 23:31:35 -07001680 encap += LL_RESERVED_SPACE(dev) + rt->dst.header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
1682 if (skb_cow(skb, encap)) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001683 ip_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 goto out_free;
1685 }
1686
1687 vif->pkt_out++;
Jianjun Kongc354e122008-11-03 00:28:02 -08001688 vif->bytes_out += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Eric Dumazetadf30902009-06-02 05:19:30 +00001690 skb_dst_drop(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -07001691 skb_dst_set(skb, &rt->dst);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001692 ip_decrease_ttl(ip_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
1694 /* FIXME: forward and output firewalls used to be called here.
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001695 * What do we do with netfilter? -- RR
1696 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 if (vif->flags & VIFF_TUNNEL) {
1698 ip_encap(skb, vif->local, vif->remote);
1699 /* FIXME: extra output firewall step used to be here. --RR */
Pavel Emelyanov2f4c02d2008-05-21 14:16:14 -07001700 vif->dev->stats.tx_packets++;
1701 vif->dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 }
1703
1704 IPCB(skb)->flags |= IPSKB_FORWARDED;
1705
1706 /*
1707 * RFC1584 teaches, that DVMRP/PIM router must deliver packets locally
1708 * not only before forwarding, but after forwarding on all output
1709 * interfaces. It is clear, if mrouter runs a multicasting
1710 * program, it should receive packets not depending to what interface
1711 * program is joined.
1712 * If we will not make it, the program will have to join on all
1713 * interfaces. On the other hand, multihoming host (or router, but
1714 * not mrouter) cannot join to more than one interface - it will
1715 * result in receiving multiple packets.
1716 */
Jan Engelhardt9bbc7682010-03-23 04:07:29 +01001717 NF_HOOK(NFPROTO_IPV4, NF_INET_FORWARD, skb, skb->dev, dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 ipmr_forward_finish);
1719 return;
1720
1721out_free:
1722 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723}
1724
Patrick McHardy0c122952010-04-13 05:03:22 +00001725static int ipmr_find_vif(struct mr_table *mrt, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726{
1727 int ct;
Patrick McHardy0c122952010-04-13 05:03:22 +00001728
1729 for (ct = mrt->maxvif-1; ct >= 0; ct--) {
1730 if (mrt->vif_table[ct].dev == dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 break;
1732 }
1733 return ct;
1734}
1735
1736/* "local" means that we should preserve one skb (for local delivery) */
1737
Patrick McHardy0c122952010-04-13 05:03:22 +00001738static int ip_mr_forward(struct net *net, struct mr_table *mrt,
1739 struct sk_buff *skb, struct mfc_cache *cache,
1740 int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741{
1742 int psend = -1;
1743 int vif, ct;
1744
1745 vif = cache->mfc_parent;
1746 cache->mfc_un.res.pkt++;
1747 cache->mfc_un.res.bytes += skb->len;
1748
1749 /*
1750 * Wrong interface: drop packet and (maybe) send PIM assert.
1751 */
Patrick McHardy0c122952010-04-13 05:03:22 +00001752 if (mrt->vif_table[vif].dev != skb->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 int true_vifi;
1754
David S. Millerc7537962010-11-11 17:07:48 -08001755 if (rt_is_output_route(skb_rtable(skb))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 /* It is our own packet, looped back.
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001757 * Very complicated situation...
1758 *
1759 * The best workaround until routing daemons will be
1760 * fixed is not to redistribute packet, if it was
1761 * send through wrong interface. It means, that
1762 * multicast applications WILL NOT work for
1763 * (S,G), which have default multicast route pointing
1764 * to wrong oif. In any case, it is not a good
1765 * idea to use multicasting applications on router.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 */
1767 goto dont_forward;
1768 }
1769
1770 cache->mfc_un.res.wrong_if++;
Patrick McHardy0c122952010-04-13 05:03:22 +00001771 true_vifi = ipmr_find_vif(mrt, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Patrick McHardy0c122952010-04-13 05:03:22 +00001773 if (true_vifi >= 0 && mrt->mroute_do_assert &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 /* pimsm uses asserts, when switching from RPT to SPT,
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001775 * so that we cannot check that packet arrived on an oif.
1776 * It is bad, but otherwise we would need to move pretty
1777 * large chunk of pimd to kernel. Ough... --ANK
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 */
Patrick McHardy0c122952010-04-13 05:03:22 +00001779 (mrt->mroute_do_pim ||
Benjamin Thery6f9374a2009-01-22 04:56:20 +00001780 cache->mfc_un.res.ttls[true_vifi] < 255) &&
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001781 time_after(jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 cache->mfc_un.res.last_assert + MFC_ASSERT_THRESH)) {
1783 cache->mfc_un.res.last_assert = jiffies;
Patrick McHardy0c122952010-04-13 05:03:22 +00001784 ipmr_cache_report(mrt, skb, true_vifi, IGMPMSG_WRONGVIF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 }
1786 goto dont_forward;
1787 }
1788
Patrick McHardy0c122952010-04-13 05:03:22 +00001789 mrt->vif_table[vif].pkt_in++;
1790 mrt->vif_table[vif].bytes_in += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
1792 /*
1793 * Forward the frame
1794 */
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001795 for (ct = cache->mfc_un.res.maxvif - 1;
1796 ct >= cache->mfc_un.res.minvif; ct--) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001797 if (ip_hdr(skb)->ttl > cache->mfc_un.res.ttls[ct]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 if (psend != -1) {
1799 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 if (skb2)
Patrick McHardy0c122952010-04-13 05:03:22 +00001802 ipmr_queue_xmit(net, mrt, skb2, cache,
1803 psend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 }
Jianjun Kongc354e122008-11-03 00:28:02 -08001805 psend = ct;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 }
1807 }
1808 if (psend != -1) {
1809 if (local) {
1810 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001811
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 if (skb2)
Patrick McHardy0c122952010-04-13 05:03:22 +00001813 ipmr_queue_xmit(net, mrt, skb2, cache, psend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 } else {
Patrick McHardy0c122952010-04-13 05:03:22 +00001815 ipmr_queue_xmit(net, mrt, skb, cache, psend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 return 0;
1817 }
1818 }
1819
1820dont_forward:
1821 if (!local)
1822 kfree_skb(skb);
1823 return 0;
1824}
1825
David S. Miller417da662011-05-03 19:42:43 -07001826static struct mr_table *ipmr_rt_fib_lookup(struct net *net, struct sk_buff *skb)
David S. Milleree3f1aa2011-03-09 14:06:20 -08001827{
David S. Miller417da662011-05-03 19:42:43 -07001828 struct rtable *rt = skb_rtable(skb);
1829 struct iphdr *iph = ip_hdr(skb);
David S. Millerda919812011-03-12 02:04:50 -05001830 struct flowi4 fl4 = {
David S. Miller417da662011-05-03 19:42:43 -07001831 .daddr = iph->daddr,
1832 .saddr = iph->saddr,
Julian Anastasovb0fe4a32011-07-23 02:00:41 +00001833 .flowi4_tos = RT_TOS(iph->tos),
David S. Miller4fd551d2012-07-17 14:39:44 -07001834 .flowi4_oif = (rt_is_output_route(rt) ?
1835 skb->dev->ifindex : 0),
1836 .flowi4_iif = (rt_is_output_route(rt) ?
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001837 LOOPBACK_IFINDEX :
David S. Miller4fd551d2012-07-17 14:39:44 -07001838 skb->dev->ifindex),
David Millerb4869882012-07-01 02:03:01 +00001839 .flowi4_mark = skb->mark,
David S. Milleree3f1aa2011-03-09 14:06:20 -08001840 };
1841 struct mr_table *mrt;
1842 int err;
1843
David S. Millerda919812011-03-12 02:04:50 -05001844 err = ipmr_fib_lookup(net, &fl4, &mrt);
David S. Milleree3f1aa2011-03-09 14:06:20 -08001845 if (err)
1846 return ERR_PTR(err);
1847 return mrt;
1848}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850/*
1851 * Multicast packets for forwarding arrive here
Eric Dumazet4c968702010-10-01 16:15:01 +00001852 * Called with rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 */
1854
1855int ip_mr_input(struct sk_buff *skb)
1856{
1857 struct mfc_cache *cache;
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001858 struct net *net = dev_net(skb->dev);
Eric Dumazet511c3f92009-06-02 05:14:27 +00001859 int local = skb_rtable(skb)->rt_flags & RTCF_LOCAL;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001860 struct mr_table *mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
1862 /* Packet is looped back after forward, it should not be
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001863 * forwarded second time, but still can be delivered locally.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 */
Eric Dumazet4c968702010-10-01 16:15:01 +00001865 if (IPCB(skb)->flags & IPSKB_FORWARDED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 goto dont_forward;
1867
David S. Miller417da662011-05-03 19:42:43 -07001868 mrt = ipmr_rt_fib_lookup(net, skb);
David S. Milleree3f1aa2011-03-09 14:06:20 -08001869 if (IS_ERR(mrt)) {
1870 kfree_skb(skb);
1871 return PTR_ERR(mrt);
Ben Greeare40dbc52010-07-15 13:22:33 +00001872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 if (!local) {
Eric Dumazet4c968702010-10-01 16:15:01 +00001874 if (IPCB(skb)->opt.router_alert) {
1875 if (ip_call_ra_chain(skb))
1876 return 0;
1877 } else if (ip_hdr(skb)->protocol == IPPROTO_IGMP) {
1878 /* IGMPv1 (and broken IGMPv2 implementations sort of
1879 * Cisco IOS <= 11.2(8)) do not put router alert
1880 * option to IGMP packets destined to routable
1881 * groups. It is very bad, because it means
1882 * that we can forward NO IGMP messages.
1883 */
1884 struct sock *mroute_sk;
1885
1886 mroute_sk = rcu_dereference(mrt->mroute_sk);
1887 if (mroute_sk) {
1888 nf_reset(skb);
1889 raw_rcv(mroute_sk, skb);
1890 return 0;
1891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 }
1893 }
1894
Eric Dumazeta8c94862010-10-01 16:15:08 +00001895 /* already under rcu_read_lock() */
Patrick McHardy0c122952010-04-13 05:03:22 +00001896 cache = ipmr_cache_find(mrt, ip_hdr(skb)->saddr, ip_hdr(skb)->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
1898 /*
1899 * No usable cache entry
1900 */
Jianjun Kongc354e122008-11-03 00:28:02 -08001901 if (cache == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 int vif;
1903
1904 if (local) {
1905 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
1906 ip_local_deliver(skb);
Eric Dumazeta8c94862010-10-01 16:15:08 +00001907 if (skb2 == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 skb = skb2;
1910 }
1911
Eric Dumazeta8c94862010-10-01 16:15:08 +00001912 read_lock(&mrt_lock);
Patrick McHardy0c122952010-04-13 05:03:22 +00001913 vif = ipmr_find_vif(mrt, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 if (vif >= 0) {
Eric Dumazet0eae88f2010-04-20 19:06:52 -07001915 int err2 = ipmr_cache_unresolved(mrt, vif, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 read_unlock(&mrt_lock);
1917
Eric Dumazet0eae88f2010-04-20 19:06:52 -07001918 return err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 }
1920 read_unlock(&mrt_lock);
1921 kfree_skb(skb);
1922 return -ENODEV;
1923 }
1924
Eric Dumazeta8c94862010-10-01 16:15:08 +00001925 read_lock(&mrt_lock);
Patrick McHardy0c122952010-04-13 05:03:22 +00001926 ip_mr_forward(net, mrt, skb, cache, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 read_unlock(&mrt_lock);
1928
1929 if (local)
1930 return ip_local_deliver(skb);
1931
1932 return 0;
1933
1934dont_forward:
1935 if (local)
1936 return ip_local_deliver(skb);
1937 kfree_skb(skb);
1938 return 0;
1939}
1940
Ilpo Järvinenb1879202008-12-16 01:15:11 -08001941#ifdef CONFIG_IP_PIMSM
Eric Dumazet55747a02010-10-01 16:14:55 +00001942/* called with rcu_read_lock() */
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001943static int __pim_rcv(struct mr_table *mrt, struct sk_buff *skb,
1944 unsigned int pimlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945{
Ilpo Järvinenb1879202008-12-16 01:15:11 -08001946 struct net_device *reg_dev = NULL;
1947 struct iphdr *encap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
Ilpo Järvinenb1879202008-12-16 01:15:11 -08001949 encap = (struct iphdr *)(skb_transport_header(skb) + pimlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 /*
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001951 * Check that:
1952 * a. packet is really sent to a multicast group
1953 * b. packet is not a NULL-REGISTER
1954 * c. packet is not truncated
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 */
Joe Perchesf97c1e02007-12-16 13:45:43 -08001956 if (!ipv4_is_multicast(encap->daddr) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 encap->tot_len == 0 ||
Ilpo Järvinenb1879202008-12-16 01:15:11 -08001958 ntohs(encap->tot_len) + pimlen > skb->len)
1959 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
1961 read_lock(&mrt_lock);
Patrick McHardy0c122952010-04-13 05:03:22 +00001962 if (mrt->mroute_reg_vif_num >= 0)
1963 reg_dev = mrt->vif_table[mrt->mroute_reg_vif_num].dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 read_unlock(&mrt_lock);
1965
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001966 if (reg_dev == NULL)
Ilpo Järvinenb1879202008-12-16 01:15:11 -08001967 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001969 skb->mac_header = skb->network_header;
Eric Dumazet55747a02010-10-01 16:14:55 +00001970 skb_pull(skb, (u8 *)encap - skb->data);
Arnaldo Carvalho de Melo31c77112007-03-10 19:04:55 -03001971 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 skb->protocol = htons(ETH_P_IP);
Eric Dumazet55747a02010-10-01 16:14:55 +00001973 skb->ip_summed = CHECKSUM_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 skb->pkt_type = PACKET_HOST;
Eric Dumazetd19d56d2010-05-17 22:36:55 -07001975
1976 skb_tunnel_rx(skb, reg_dev);
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 netif_rx(skb);
Ilpo Järvinenb1879202008-12-16 01:15:11 -08001979
Eric Dumazet55747a02010-10-01 16:14:55 +00001980 return NET_RX_SUCCESS;
Ilpo Järvinenb1879202008-12-16 01:15:11 -08001981}
1982#endif
1983
1984#ifdef CONFIG_IP_PIMSM_V1
1985/*
1986 * Handle IGMP messages of PIMv1
1987 */
1988
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00001989int pim_rcv_v1(struct sk_buff *skb)
Ilpo Järvinenb1879202008-12-16 01:15:11 -08001990{
1991 struct igmphdr *pim;
Benjamin Thery4feb88e2009-01-22 04:56:23 +00001992 struct net *net = dev_net(skb->dev);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00001993 struct mr_table *mrt;
Ilpo Järvinenb1879202008-12-16 01:15:11 -08001994
1995 if (!pskb_may_pull(skb, sizeof(*pim) + sizeof(struct iphdr)))
1996 goto drop;
1997
1998 pim = igmp_hdr(skb);
1999
David S. Miller417da662011-05-03 19:42:43 -07002000 mrt = ipmr_rt_fib_lookup(net, skb);
David S. Milleree3f1aa2011-03-09 14:06:20 -08002001 if (IS_ERR(mrt))
2002 goto drop;
Patrick McHardy0c122952010-04-13 05:03:22 +00002003 if (!mrt->mroute_do_pim ||
Ilpo Järvinenb1879202008-12-16 01:15:11 -08002004 pim->group != PIM_V1_VERSION || pim->code != PIM_V1_REGISTER)
2005 goto drop;
2006
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002007 if (__pim_rcv(mrt, skb, sizeof(*pim))) {
Ilpo Järvinenb1879202008-12-16 01:15:11 -08002008drop:
2009 kfree_skb(skb);
2010 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 return 0;
2012}
2013#endif
2014
2015#ifdef CONFIG_IP_PIMSM_V2
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002016static int pim_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
2018 struct pimreghdr *pim;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002019 struct net *net = dev_net(skb->dev);
2020 struct mr_table *mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
Ilpo Järvinenb1879202008-12-16 01:15:11 -08002022 if (!pskb_may_pull(skb, sizeof(*pim) + sizeof(struct iphdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 goto drop;
2024
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002025 pim = (struct pimreghdr *)skb_transport_header(skb);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002026 if (pim->type != ((PIM_VERSION << 4) | (PIM_REGISTER)) ||
2027 (pim->flags & PIM_NULL_REGISTER) ||
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002028 (ip_compute_csum((void *)pim, sizeof(*pim)) != 0 &&
Al Virod3bc23e2006-11-14 21:24:49 -08002029 csum_fold(skb_checksum(skb, 0, skb->len, 0))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 goto drop;
2031
David S. Miller417da662011-05-03 19:42:43 -07002032 mrt = ipmr_rt_fib_lookup(net, skb);
David S. Milleree3f1aa2011-03-09 14:06:20 -08002033 if (IS_ERR(mrt))
2034 goto drop;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002035 if (__pim_rcv(mrt, skb, sizeof(*pim))) {
Ilpo Järvinenb1879202008-12-16 01:15:11 -08002036drop:
2037 kfree_skb(skb);
2038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 return 0;
2040}
2041#endif
2042
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002043static int __ipmr_fill_mroute(struct mr_table *mrt, struct sk_buff *skb,
2044 struct mfc_cache *c, struct rtmsg *rtm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045{
2046 int ct;
2047 struct rtnexthop *nhp;
Thomas Graf92a395e2012-06-26 23:36:13 +00002048 struct nlattr *mp_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Nicolas Dichtel74381892010-03-25 23:45:35 +00002050 /* If cache is unresolved, don't try to parse IIF and OIF */
Dan Carpentered0f160a2010-05-26 00:38:56 -07002051 if (c->mfc_parent >= MAXVIFS)
Nicolas Dichtel74381892010-03-25 23:45:35 +00002052 return -ENOENT;
2053
Thomas Graf92a395e2012-06-26 23:36:13 +00002054 if (VIF_EXISTS(mrt, c->mfc_parent) &&
2055 nla_put_u32(skb, RTA_IIF, mrt->vif_table[c->mfc_parent].dev->ifindex) < 0)
2056 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
Thomas Graf92a395e2012-06-26 23:36:13 +00002058 if (!(mp_attr = nla_nest_start(skb, RTA_MULTIPATH)))
2059 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
2061 for (ct = c->mfc_un.res.minvif; ct < c->mfc_un.res.maxvif; ct++) {
Patrick McHardy0c122952010-04-13 05:03:22 +00002062 if (VIF_EXISTS(mrt, ct) && c->mfc_un.res.ttls[ct] < 255) {
Thomas Graf92a395e2012-06-26 23:36:13 +00002063 if (!(nhp = nla_reserve_nohdr(skb, sizeof(*nhp)))) {
2064 nla_nest_cancel(skb, mp_attr);
2065 return -EMSGSIZE;
2066 }
2067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 nhp->rtnh_flags = 0;
2069 nhp->rtnh_hops = c->mfc_un.res.ttls[ct];
Patrick McHardy0c122952010-04-13 05:03:22 +00002070 nhp->rtnh_ifindex = mrt->vif_table[ct].dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 nhp->rtnh_len = sizeof(*nhp);
2072 }
2073 }
Thomas Graf92a395e2012-06-26 23:36:13 +00002074
2075 nla_nest_end(skb, mp_attr);
2076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 rtm->rtm_type = RTN_MULTICAST;
2078 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079}
2080
David S. Miller9a1b9492011-05-04 12:18:54 -07002081int ipmr_get_route(struct net *net, struct sk_buff *skb,
2082 __be32 saddr, __be32 daddr,
2083 struct rtmsg *rtm, int nowait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 struct mfc_cache *cache;
David S. Miller9a1b9492011-05-04 12:18:54 -07002086 struct mr_table *mrt;
2087 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002089 mrt = ipmr_get_table(net, RT_TABLE_DEFAULT);
2090 if (mrt == NULL)
2091 return -ENOENT;
2092
Eric Dumazeta8c94862010-10-01 16:15:08 +00002093 rcu_read_lock();
David S. Miller9a1b9492011-05-04 12:18:54 -07002094 cache = ipmr_cache_find(mrt, saddr, daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Jianjun Kongc354e122008-11-03 00:28:02 -08002096 if (cache == NULL) {
Alexey Kuznetsov72287492006-07-25 16:45:12 -07002097 struct sk_buff *skb2;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002098 struct iphdr *iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 struct net_device *dev;
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002100 int vif = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
2102 if (nowait) {
Eric Dumazeta8c94862010-10-01 16:15:08 +00002103 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 return -EAGAIN;
2105 }
2106
2107 dev = skb->dev;
Eric Dumazeta8c94862010-10-01 16:15:08 +00002108 read_lock(&mrt_lock);
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002109 if (dev)
2110 vif = ipmr_find_vif(mrt, dev);
2111 if (vif < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 read_unlock(&mrt_lock);
Eric Dumazeta8c94862010-10-01 16:15:08 +00002113 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 return -ENODEV;
2115 }
Alexey Kuznetsov72287492006-07-25 16:45:12 -07002116 skb2 = skb_clone(skb, GFP_ATOMIC);
2117 if (!skb2) {
2118 read_unlock(&mrt_lock);
Eric Dumazeta8c94862010-10-01 16:15:08 +00002119 rcu_read_unlock();
Alexey Kuznetsov72287492006-07-25 16:45:12 -07002120 return -ENOMEM;
2121 }
2122
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -07002123 skb_push(skb2, sizeof(struct iphdr));
2124 skb_reset_network_header(skb2);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002125 iph = ip_hdr(skb2);
2126 iph->ihl = sizeof(struct iphdr) >> 2;
David S. Miller9a1b9492011-05-04 12:18:54 -07002127 iph->saddr = saddr;
2128 iph->daddr = daddr;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002129 iph->version = 0;
Patrick McHardy0c122952010-04-13 05:03:22 +00002130 err = ipmr_cache_unresolved(mrt, vif, skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 read_unlock(&mrt_lock);
Eric Dumazeta8c94862010-10-01 16:15:08 +00002132 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 return err;
2134 }
2135
Eric Dumazeta8c94862010-10-01 16:15:08 +00002136 read_lock(&mrt_lock);
2137 if (!nowait && (rtm->rtm_flags & RTM_F_NOTIFY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 cache->mfc_flags |= MFC_NOTIFY;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002139 err = __ipmr_fill_mroute(mrt, skb, cache, rtm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 read_unlock(&mrt_lock);
Eric Dumazeta8c94862010-10-01 16:15:08 +00002141 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 return err;
2143}
2144
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002145static int ipmr_fill_mroute(struct mr_table *mrt, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002146 u32 portid, u32 seq, struct mfc_cache *c)
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002147{
2148 struct nlmsghdr *nlh;
2149 struct rtmsg *rtm;
2150
Eric W. Biederman15e47302012-09-07 20:12:54 +00002151 nlh = nlmsg_put(skb, portid, seq, RTM_NEWROUTE, sizeof(*rtm), NLM_F_MULTI);
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002152 if (nlh == NULL)
2153 return -EMSGSIZE;
2154
2155 rtm = nlmsg_data(nlh);
2156 rtm->rtm_family = RTNL_FAMILY_IPMR;
2157 rtm->rtm_dst_len = 32;
2158 rtm->rtm_src_len = 32;
2159 rtm->rtm_tos = 0;
2160 rtm->rtm_table = mrt->id;
David S. Millerf3756b72012-04-01 20:39:02 -04002161 if (nla_put_u32(skb, RTA_TABLE, mrt->id))
2162 goto nla_put_failure;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002163 rtm->rtm_type = RTN_MULTICAST;
2164 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
2165 rtm->rtm_protocol = RTPROT_UNSPEC;
2166 rtm->rtm_flags = 0;
2167
David S. Millerf3756b72012-04-01 20:39:02 -04002168 if (nla_put_be32(skb, RTA_SRC, c->mfc_origin) ||
2169 nla_put_be32(skb, RTA_DST, c->mfc_mcastgrp))
2170 goto nla_put_failure;
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002171 if (__ipmr_fill_mroute(mrt, skb, c, rtm) < 0)
2172 goto nla_put_failure;
2173
2174 return nlmsg_end(skb, nlh);
2175
2176nla_put_failure:
2177 nlmsg_cancel(skb, nlh);
2178 return -EMSGSIZE;
2179}
2180
2181static int ipmr_rtm_dumproute(struct sk_buff *skb, struct netlink_callback *cb)
2182{
2183 struct net *net = sock_net(skb->sk);
2184 struct mr_table *mrt;
2185 struct mfc_cache *mfc;
2186 unsigned int t = 0, s_t;
2187 unsigned int h = 0, s_h;
2188 unsigned int e = 0, s_e;
2189
2190 s_t = cb->args[0];
2191 s_h = cb->args[1];
2192 s_e = cb->args[2];
2193
Eric Dumazeta8c94862010-10-01 16:15:08 +00002194 rcu_read_lock();
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002195 ipmr_for_each_table(mrt, net) {
2196 if (t < s_t)
2197 goto next_table;
2198 if (t > s_t)
2199 s_h = 0;
2200 for (h = s_h; h < MFC_LINES; h++) {
Eric Dumazeta8c94862010-10-01 16:15:08 +00002201 list_for_each_entry_rcu(mfc, &mrt->mfc_cache_array[h], list) {
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002202 if (e < s_e)
2203 goto next_entry;
2204 if (ipmr_fill_mroute(mrt, skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002205 NETLINK_CB(cb->skb).portid,
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002206 cb->nlh->nlmsg_seq,
2207 mfc) < 0)
2208 goto done;
2209next_entry:
2210 e++;
2211 }
2212 e = s_e = 0;
2213 }
2214 s_h = 0;
2215next_table:
2216 t++;
2217 }
2218done:
Eric Dumazeta8c94862010-10-01 16:15:08 +00002219 rcu_read_unlock();
Patrick McHardycb6a4e42010-04-26 16:02:08 +02002220
2221 cb->args[2] = e;
2222 cb->args[1] = h;
2223 cb->args[0] = t;
2224
2225 return skb->len;
2226}
2227
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002228#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229/*
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002230 * The /proc interfaces to multicast routing :
2231 * /proc/net/ip_mr_cache & /proc/net/ip_mr_vif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 */
2233struct ipmr_vif_iter {
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002234 struct seq_net_private p;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002235 struct mr_table *mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 int ct;
2237};
2238
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002239static struct vif_device *ipmr_vif_seq_idx(struct net *net,
2240 struct ipmr_vif_iter *iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 loff_t pos)
2242{
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002243 struct mr_table *mrt = iter->mrt;
Patrick McHardy0c122952010-04-13 05:03:22 +00002244
2245 for (iter->ct = 0; iter->ct < mrt->maxvif; ++iter->ct) {
2246 if (!VIF_EXISTS(mrt, iter->ct))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 continue;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002248 if (pos-- == 0)
Patrick McHardy0c122952010-04-13 05:03:22 +00002249 return &mrt->vif_table[iter->ct];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 }
2251 return NULL;
2252}
2253
2254static void *ipmr_vif_seq_start(struct seq_file *seq, loff_t *pos)
Stephen Hemmingerba93ef72008-01-21 17:28:59 -08002255 __acquires(mrt_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256{
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002257 struct ipmr_vif_iter *iter = seq->private;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002258 struct net *net = seq_file_net(seq);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002259 struct mr_table *mrt;
2260
2261 mrt = ipmr_get_table(net, RT_TABLE_DEFAULT);
2262 if (mrt == NULL)
2263 return ERR_PTR(-ENOENT);
2264
2265 iter->mrt = mrt;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002266
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 read_lock(&mrt_lock);
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002268 return *pos ? ipmr_vif_seq_idx(net, seq->private, *pos - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 : SEQ_START_TOKEN;
2270}
2271
2272static void *ipmr_vif_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2273{
2274 struct ipmr_vif_iter *iter = seq->private;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002275 struct net *net = seq_file_net(seq);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002276 struct mr_table *mrt = iter->mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
2278 ++*pos;
2279 if (v == SEQ_START_TOKEN)
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002280 return ipmr_vif_seq_idx(net, iter, 0);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002281
Patrick McHardy0c122952010-04-13 05:03:22 +00002282 while (++iter->ct < mrt->maxvif) {
2283 if (!VIF_EXISTS(mrt, iter->ct))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 continue;
Patrick McHardy0c122952010-04-13 05:03:22 +00002285 return &mrt->vif_table[iter->ct];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 }
2287 return NULL;
2288}
2289
2290static void ipmr_vif_seq_stop(struct seq_file *seq, void *v)
Stephen Hemmingerba93ef72008-01-21 17:28:59 -08002291 __releases(mrt_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292{
2293 read_unlock(&mrt_lock);
2294}
2295
2296static int ipmr_vif_seq_show(struct seq_file *seq, void *v)
2297{
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002298 struct ipmr_vif_iter *iter = seq->private;
2299 struct mr_table *mrt = iter->mrt;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002300
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 if (v == SEQ_START_TOKEN) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002302 seq_puts(seq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 "Interface BytesIn PktsIn BytesOut PktsOut Flags Local Remote\n");
2304 } else {
2305 const struct vif_device *vif = v;
2306 const char *name = vif->dev ? vif->dev->name : "none";
2307
2308 seq_printf(seq,
2309 "%2Zd %-10s %8ld %7ld %8ld %7ld %05X %08X %08X\n",
Patrick McHardy0c122952010-04-13 05:03:22 +00002310 vif - mrt->vif_table,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002311 name, vif->bytes_in, vif->pkt_in,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 vif->bytes_out, vif->pkt_out,
2313 vif->flags, vif->local, vif->remote);
2314 }
2315 return 0;
2316}
2317
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002318static const struct seq_operations ipmr_vif_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 .start = ipmr_vif_seq_start,
2320 .next = ipmr_vif_seq_next,
2321 .stop = ipmr_vif_seq_stop,
2322 .show = ipmr_vif_seq_show,
2323};
2324
2325static int ipmr_vif_open(struct inode *inode, struct file *file)
2326{
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002327 return seq_open_net(inode, file, &ipmr_vif_seq_ops,
2328 sizeof(struct ipmr_vif_iter));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329}
2330
Arjan van de Ven9a321442007-02-12 00:55:35 -08002331static const struct file_operations ipmr_vif_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 .owner = THIS_MODULE,
2333 .open = ipmr_vif_open,
2334 .read = seq_read,
2335 .llseek = seq_lseek,
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002336 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337};
2338
2339struct ipmr_mfc_iter {
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002340 struct seq_net_private p;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002341 struct mr_table *mrt;
Patrick McHardy862465f2010-04-13 05:03:21 +00002342 struct list_head *cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 int ct;
2344};
2345
2346
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002347static struct mfc_cache *ipmr_mfc_seq_idx(struct net *net,
2348 struct ipmr_mfc_iter *it, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349{
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002350 struct mr_table *mrt = it->mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 struct mfc_cache *mfc;
2352
Eric Dumazeta8c94862010-10-01 16:15:08 +00002353 rcu_read_lock();
Patrick McHardy862465f2010-04-13 05:03:21 +00002354 for (it->ct = 0; it->ct < MFC_LINES; it->ct++) {
Patrick McHardy0c122952010-04-13 05:03:22 +00002355 it->cache = &mrt->mfc_cache_array[it->ct];
Eric Dumazeta8c94862010-10-01 16:15:08 +00002356 list_for_each_entry_rcu(mfc, it->cache, list)
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002357 if (pos-- == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 return mfc;
Patrick McHardy862465f2010-04-13 05:03:21 +00002359 }
Eric Dumazeta8c94862010-10-01 16:15:08 +00002360 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 spin_lock_bh(&mfc_unres_lock);
Patrick McHardy0c122952010-04-13 05:03:22 +00002363 it->cache = &mrt->mfc_unres_queue;
Patrick McHardy862465f2010-04-13 05:03:21 +00002364 list_for_each_entry(mfc, it->cache, list)
Patrick McHardye258beb2010-04-13 05:03:19 +00002365 if (pos-- == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 return mfc;
2367 spin_unlock_bh(&mfc_unres_lock);
2368
2369 it->cache = NULL;
2370 return NULL;
2371}
2372
2373
2374static void *ipmr_mfc_seq_start(struct seq_file *seq, loff_t *pos)
2375{
2376 struct ipmr_mfc_iter *it = seq->private;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002377 struct net *net = seq_file_net(seq);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002378 struct mr_table *mrt;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002379
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002380 mrt = ipmr_get_table(net, RT_TABLE_DEFAULT);
2381 if (mrt == NULL)
2382 return ERR_PTR(-ENOENT);
2383
2384 it->mrt = mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 it->cache = NULL;
2386 it->ct = 0;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002387 return *pos ? ipmr_mfc_seq_idx(net, seq->private, *pos - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 : SEQ_START_TOKEN;
2389}
2390
2391static void *ipmr_mfc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2392{
2393 struct mfc_cache *mfc = v;
2394 struct ipmr_mfc_iter *it = seq->private;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002395 struct net *net = seq_file_net(seq);
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002396 struct mr_table *mrt = it->mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
2398 ++*pos;
2399
2400 if (v == SEQ_START_TOKEN)
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002401 return ipmr_mfc_seq_idx(net, seq->private, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
Patrick McHardy862465f2010-04-13 05:03:21 +00002403 if (mfc->list.next != it->cache)
2404 return list_entry(mfc->list.next, struct mfc_cache, list);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002405
Patrick McHardy0c122952010-04-13 05:03:22 +00002406 if (it->cache == &mrt->mfc_unres_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 goto end_of_list;
2408
Patrick McHardy0c122952010-04-13 05:03:22 +00002409 BUG_ON(it->cache != &mrt->mfc_cache_array[it->ct]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
2411 while (++it->ct < MFC_LINES) {
Patrick McHardy0c122952010-04-13 05:03:22 +00002412 it->cache = &mrt->mfc_cache_array[it->ct];
Patrick McHardy862465f2010-04-13 05:03:21 +00002413 if (list_empty(it->cache))
2414 continue;
2415 return list_first_entry(it->cache, struct mfc_cache, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 }
2417
2418 /* exhausted cache_array, show unresolved */
Eric Dumazeta8c94862010-10-01 16:15:08 +00002419 rcu_read_unlock();
Patrick McHardy0c122952010-04-13 05:03:22 +00002420 it->cache = &mrt->mfc_unres_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 it->ct = 0;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002422
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 spin_lock_bh(&mfc_unres_lock);
Patrick McHardy862465f2010-04-13 05:03:21 +00002424 if (!list_empty(it->cache))
2425 return list_first_entry(it->cache, struct mfc_cache, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002427end_of_list:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 spin_unlock_bh(&mfc_unres_lock);
2429 it->cache = NULL;
2430
2431 return NULL;
2432}
2433
2434static void ipmr_mfc_seq_stop(struct seq_file *seq, void *v)
2435{
2436 struct ipmr_mfc_iter *it = seq->private;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002437 struct mr_table *mrt = it->mrt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
Patrick McHardy0c122952010-04-13 05:03:22 +00002439 if (it->cache == &mrt->mfc_unres_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 spin_unlock_bh(&mfc_unres_lock);
Patrick McHardy0c122952010-04-13 05:03:22 +00002441 else if (it->cache == &mrt->mfc_cache_array[it->ct])
Eric Dumazeta8c94862010-10-01 16:15:08 +00002442 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443}
2444
2445static int ipmr_mfc_seq_show(struct seq_file *seq, void *v)
2446{
2447 int n;
2448
2449 if (v == SEQ_START_TOKEN) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002450 seq_puts(seq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 "Group Origin Iif Pkts Bytes Wrong Oifs\n");
2452 } else {
2453 const struct mfc_cache *mfc = v;
2454 const struct ipmr_mfc_iter *it = seq->private;
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002455 const struct mr_table *mrt = it->mrt;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002456
Eric Dumazet0eae88f2010-04-20 19:06:52 -07002457 seq_printf(seq, "%08X %08X %-3hd",
2458 (__force u32) mfc->mfc_mcastgrp,
2459 (__force u32) mfc->mfc_origin,
Benjamin Thery1ea472e2008-12-03 22:21:47 -08002460 mfc->mfc_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
Patrick McHardy0c122952010-04-13 05:03:22 +00002462 if (it->cache != &mrt->mfc_unres_queue) {
Benjamin Thery1ea472e2008-12-03 22:21:47 -08002463 seq_printf(seq, " %8lu %8lu %8lu",
2464 mfc->mfc_un.res.pkt,
2465 mfc->mfc_un.res.bytes,
2466 mfc->mfc_un.res.wrong_if);
Stephen Hemminger132adf52007-03-08 20:44:43 -08002467 for (n = mfc->mfc_un.res.minvif;
Eric Dumazeta8cb16d2010-10-01 16:15:29 +00002468 n < mfc->mfc_un.res.maxvif; n++) {
Patrick McHardy0c122952010-04-13 05:03:22 +00002469 if (VIF_EXISTS(mrt, n) &&
Benjamin Therycf958ae32009-01-22 04:56:16 +00002470 mfc->mfc_un.res.ttls[n] < 255)
2471 seq_printf(seq,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002472 " %2d:%-3d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 n, mfc->mfc_un.res.ttls[n]);
2474 }
Benjamin Thery1ea472e2008-12-03 22:21:47 -08002475 } else {
2476 /* unresolved mfc_caches don't contain
2477 * pkt, bytes and wrong_if values
2478 */
2479 seq_printf(seq, " %8lu %8lu %8lu", 0ul, 0ul, 0ul);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 }
2481 seq_putc(seq, '\n');
2482 }
2483 return 0;
2484}
2485
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002486static const struct seq_operations ipmr_mfc_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 .start = ipmr_mfc_seq_start,
2488 .next = ipmr_mfc_seq_next,
2489 .stop = ipmr_mfc_seq_stop,
2490 .show = ipmr_mfc_seq_show,
2491};
2492
2493static int ipmr_mfc_open(struct inode *inode, struct file *file)
2494{
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002495 return seq_open_net(inode, file, &ipmr_mfc_seq_ops,
2496 sizeof(struct ipmr_mfc_iter));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497}
2498
Arjan van de Ven9a321442007-02-12 00:55:35 -08002499static const struct file_operations ipmr_mfc_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 .owner = THIS_MODULE,
2501 .open = ipmr_mfc_open,
2502 .read = seq_read,
2503 .llseek = seq_lseek,
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002504 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505};
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002506#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
2508#ifdef CONFIG_IP_PIMSM_V2
Alexey Dobriyan32613092009-09-14 12:21:47 +00002509static const struct net_protocol pim_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 .handler = pim_rcv,
Tom Goff403dbb92009-06-14 03:16:13 -07002511 .netns_ok = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512};
2513#endif
2514
2515
2516/*
2517 * Setup for IP multicast routing
2518 */
Benjamin Therycf958ae32009-01-22 04:56:16 +00002519static int __net_init ipmr_net_init(struct net *net)
2520{
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002521 int err;
Benjamin Therycf958ae32009-01-22 04:56:16 +00002522
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002523 err = ipmr_rules_init(net);
2524 if (err < 0)
Benjamin Therycf958ae32009-01-22 04:56:16 +00002525 goto fail;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002526
2527#ifdef CONFIG_PROC_FS
2528 err = -ENOMEM;
2529 if (!proc_net_fops_create(net, "ip_mr_vif", 0, &ipmr_vif_fops))
2530 goto proc_vif_fail;
2531 if (!proc_net_fops_create(net, "ip_mr_cache", 0, &ipmr_mfc_fops))
2532 goto proc_cache_fail;
2533#endif
Benjamin Thery2bb8b262009-01-22 04:56:18 +00002534 return 0;
2535
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002536#ifdef CONFIG_PROC_FS
2537proc_cache_fail:
2538 proc_net_remove(net, "ip_mr_vif");
2539proc_vif_fail:
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002540 ipmr_rules_exit(net);
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002541#endif
Benjamin Therycf958ae32009-01-22 04:56:16 +00002542fail:
2543 return err;
2544}
2545
2546static void __net_exit ipmr_net_exit(struct net *net)
2547{
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002548#ifdef CONFIG_PROC_FS
2549 proc_net_remove(net, "ip_mr_cache");
2550 proc_net_remove(net, "ip_mr_vif");
2551#endif
Patrick McHardyf0ad0862010-04-13 05:03:23 +00002552 ipmr_rules_exit(net);
Benjamin Therycf958ae32009-01-22 04:56:16 +00002553}
2554
2555static struct pernet_operations ipmr_net_ops = {
2556 .init = ipmr_net_init,
2557 .exit = ipmr_net_exit,
2558};
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002559
Wang Chen03d2f892008-07-03 12:13:36 +08002560int __init ip_mr_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561{
Wang Chen03d2f892008-07-03 12:13:36 +08002562 int err;
2563
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 mrt_cachep = kmem_cache_create("ip_mrt_cache",
2565 sizeof(struct mfc_cache),
Eric Dumazeta8c94862010-10-01 16:15:08 +00002566 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002567 NULL);
Wang Chen03d2f892008-07-03 12:13:36 +08002568 if (!mrt_cachep)
2569 return -ENOMEM;
2570
Benjamin Therycf958ae32009-01-22 04:56:16 +00002571 err = register_pernet_subsys(&ipmr_net_ops);
2572 if (err)
2573 goto reg_pernet_fail;
2574
Wang Chen03d2f892008-07-03 12:13:36 +08002575 err = register_netdevice_notifier(&ip_mr_notifier);
2576 if (err)
2577 goto reg_notif_fail;
Tom Goff403dbb92009-06-14 03:16:13 -07002578#ifdef CONFIG_IP_PIMSM_V2
2579 if (inet_add_protocol(&pim_protocol, IPPROTO_PIM) < 0) {
Joe Perches058bd4d2012-03-11 18:36:11 +00002580 pr_err("%s: can't add PIM protocol\n", __func__);
Tom Goff403dbb92009-06-14 03:16:13 -07002581 err = -EAGAIN;
2582 goto add_proto_fail;
2583 }
2584#endif
Greg Rosec7ac8672011-06-10 01:27:09 +00002585 rtnl_register(RTNL_FAMILY_IPMR, RTM_GETROUTE,
2586 NULL, ipmr_rtm_dumproute, NULL);
Wang Chen03d2f892008-07-03 12:13:36 +08002587 return 0;
Benjamin Theryf6bb4512009-01-22 04:56:22 +00002588
Tom Goff403dbb92009-06-14 03:16:13 -07002589#ifdef CONFIG_IP_PIMSM_V2
2590add_proto_fail:
2591 unregister_netdevice_notifier(&ip_mr_notifier);
2592#endif
Benjamin Theryc3e38892008-11-19 14:07:41 -08002593reg_notif_fail:
Benjamin Therycf958ae32009-01-22 04:56:16 +00002594 unregister_pernet_subsys(&ipmr_net_ops);
2595reg_pernet_fail:
Benjamin Theryc3e38892008-11-19 14:07:41 -08002596 kmem_cache_destroy(mrt_cachep);
Wang Chen03d2f892008-07-03 12:13:36 +08002597 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598}