2 * IP multicast routing support for mrouted 3.6/3.8
5 * Linux Consultancy and Custom Driver Development
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.
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
23 * Carlos Picoto : PIMv1 Support
24 * Pavlin Ivanov Radoslavov: PIMv2 Registers must checksum only PIM header
25 * Relax this requirement to work with older peers.
29 #include <asm/uaccess.h>
30 #include <linux/types.h>
31 #include <linux/capability.h>
32 #include <linux/errno.h>
33 #include <linux/timer.h>
35 #include <linux/kernel.h>
36 #include <linux/fcntl.h>
37 #include <linux/stat.h>
38 #include <linux/socket.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>
48 #include <linux/if_ether.h>
49 #include <linux/slab.h>
50 #include <net/net_namespace.h>
52 #include <net/protocol.h>
53 #include <linux/skbuff.h>
54 #include <net/route.h>
59 #include <linux/notifier.h>
60 #include <linux/if_arp.h>
61 #include <linux/netfilter_ipv4.h>
62 #include <linux/compat.h>
63 #include <linux/export.h>
64 #include <net/ip_tunnels.h>
65 #include <net/checksum.h>
66 #include <net/netlink.h>
67 #include <net/fib_rules.h>
68 #include <linux/netconf.h>
70 #if defined(CONFIG_IP_PIMSM_V1) || defined(CONFIG_IP_PIMSM_V2)
71 #define CONFIG_IP_PIMSM 1
75 struct list_head list;
80 struct sock __rcu *mroute_sk;
81 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];
86 atomic_t cache_resolve_queue_len;
87 bool mroute_do_assert;
89 #if defined(CONFIG_IP_PIMSM_V1) || defined(CONFIG_IP_PIMSM_V2)
90 int mroute_reg_vif_num;
95 struct fib_rule common;
102 /* Big lock, protecting vif table, mrt cache and mroute socket state.
103 * Note that the changes are semaphored via rtnl_lock.
106 static DEFINE_RWLOCK(mrt_lock);
109 * Multicast router control variables
112 #define VIF_EXISTS(_mrt, _idx) ((_mrt)->vif_table[_idx].dev != NULL)
114 /* Special spinlock for queue of unresolved entries */
115 static DEFINE_SPINLOCK(mfc_unres_lock);
117 /* We return to original Alan's scheme. Hash table of resolved
118 * 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.
122 * In this case data path is free of exclusive locks at all.
125 static struct kmem_cache *mrt_cachep __read_mostly;
127 static struct mr_table *ipmr_new_table(struct net *net, u32 id);
128 static void ipmr_free_table(struct mr_table *mrt);
130 static void ip_mr_forward(struct net *net, struct mr_table *mrt,
131 struct sk_buff *skb, struct mfc_cache *cache,
133 static int ipmr_cache_report(struct mr_table *mrt,
134 struct sk_buff *pkt, vifi_t vifi, int assert);
135 static int __ipmr_fill_mroute(struct mr_table *mrt, struct sk_buff *skb,
136 struct mfc_cache *c, struct rtmsg *rtm);
137 static void mroute_netlink_event(struct mr_table *mrt, struct mfc_cache *mfc,
139 static void mroute_clean_tables(struct mr_table *mrt);
140 static void ipmr_expire_process(unsigned long arg);
142 #ifdef CONFIG_IP_MROUTE_MULTIPLE_TABLES
143 #define ipmr_for_each_table(mrt, net) \
144 list_for_each_entry_rcu(mrt, &net->ipv4.mr_tables, list)
146 static struct mr_table *ipmr_get_table(struct net *net, u32 id)
148 struct mr_table *mrt;
150 ipmr_for_each_table(mrt, net) {
157 static int ipmr_fib_lookup(struct net *net, struct flowi4 *flp4,
158 struct mr_table **mrt)
161 struct ipmr_result res;
162 struct fib_lookup_arg arg = {
164 .flags = FIB_LOOKUP_NOREF,
167 err = fib_rules_lookup(net->ipv4.mr_rules_ops,
168 flowi4_to_flowi(flp4), 0, &arg);
175 static int ipmr_rule_action(struct fib_rule *rule, struct flowi *flp,
176 int flags, struct fib_lookup_arg *arg)
178 struct ipmr_result *res = arg->result;
179 struct mr_table *mrt;
181 switch (rule->action) {
184 case FR_ACT_UNREACHABLE:
186 case FR_ACT_PROHIBIT:
188 case FR_ACT_BLACKHOLE:
193 mrt = ipmr_get_table(rule->fr_net, rule->table);
200 static int ipmr_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
205 static const struct nla_policy ipmr_rule_policy[FRA_MAX + 1] = {
209 static int ipmr_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
210 struct fib_rule_hdr *frh, struct nlattr **tb)
215 static int ipmr_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
221 static int ipmr_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
222 struct fib_rule_hdr *frh)
230 static const struct fib_rules_ops __net_initconst ipmr_rules_ops_template = {
231 .family = RTNL_FAMILY_IPMR,
232 .rule_size = sizeof(struct ipmr_rule),
233 .addr_size = sizeof(u32),
234 .action = ipmr_rule_action,
235 .match = ipmr_rule_match,
236 .configure = ipmr_rule_configure,
237 .compare = ipmr_rule_compare,
238 .default_pref = fib_default_rule_pref,
239 .fill = ipmr_rule_fill,
240 .nlgroup = RTNLGRP_IPV4_RULE,
241 .policy = ipmr_rule_policy,
242 .owner = THIS_MODULE,
245 static int __net_init ipmr_rules_init(struct net *net)
247 struct fib_rules_ops *ops;
248 struct mr_table *mrt;
251 ops = fib_rules_register(&ipmr_rules_ops_template, net);
255 INIT_LIST_HEAD(&net->ipv4.mr_tables);
257 mrt = ipmr_new_table(net, RT_TABLE_DEFAULT);
263 err = fib_default_rule_add(ops, 0x7fff, RT_TABLE_DEFAULT, 0);
267 net->ipv4.mr_rules_ops = ops;
271 ipmr_free_table(mrt);
273 fib_rules_unregister(ops);
277 static void __net_exit ipmr_rules_exit(struct net *net)
279 struct mr_table *mrt, *next;
282 list_for_each_entry_safe(mrt, next, &net->ipv4.mr_tables, list) {
283 list_del(&mrt->list);
284 ipmr_free_table(mrt);
286 fib_rules_unregister(net->ipv4.mr_rules_ops);
290 #define ipmr_for_each_table(mrt, net) \
291 for (mrt = net->ipv4.mrt; mrt; mrt = NULL)
293 static struct mr_table *ipmr_get_table(struct net *net, u32 id)
295 return net->ipv4.mrt;
298 static int ipmr_fib_lookup(struct net *net, struct flowi4 *flp4,
299 struct mr_table **mrt)
301 *mrt = net->ipv4.mrt;
305 static int __net_init ipmr_rules_init(struct net *net)
307 net->ipv4.mrt = ipmr_new_table(net, RT_TABLE_DEFAULT);
308 return net->ipv4.mrt ? 0 : -ENOMEM;
311 static void __net_exit ipmr_rules_exit(struct net *net)
314 ipmr_free_table(net->ipv4.mrt);
315 net->ipv4.mrt = NULL;
320 static struct mr_table *ipmr_new_table(struct net *net, u32 id)
322 struct mr_table *mrt;
325 mrt = ipmr_get_table(net, id);
329 mrt = kzalloc(sizeof(*mrt), GFP_KERNEL);
332 write_pnet(&mrt->net, net);
335 /* Forwarding cache */
336 for (i = 0; i < MFC_LINES; i++)
337 INIT_LIST_HEAD(&mrt->mfc_cache_array[i]);
339 INIT_LIST_HEAD(&mrt->mfc_unres_queue);
341 setup_timer(&mrt->ipmr_expire_timer, ipmr_expire_process,
344 #ifdef CONFIG_IP_PIMSM
345 mrt->mroute_reg_vif_num = -1;
347 #ifdef CONFIG_IP_MROUTE_MULTIPLE_TABLES
348 list_add_tail_rcu(&mrt->list, &net->ipv4.mr_tables);
353 static void ipmr_free_table(struct mr_table *mrt)
355 del_timer_sync(&mrt->ipmr_expire_timer);
356 mroute_clean_tables(mrt);
360 /* Service routines creating virtual interfaces: DVMRP tunnels and PIMREG */
362 static void ipmr_del_tunnel(struct net_device *dev, struct vifctl *v)
364 struct net *net = dev_net(dev);
368 dev = __dev_get_by_name(net, "tunl0");
370 const struct net_device_ops *ops = dev->netdev_ops;
372 struct ip_tunnel_parm p;
374 memset(&p, 0, sizeof(p));
375 p.iph.daddr = v->vifc_rmt_addr.s_addr;
376 p.iph.saddr = v->vifc_lcl_addr.s_addr;
379 p.iph.protocol = IPPROTO_IPIP;
380 sprintf(p.name, "dvmrp%d", v->vifc_vifi);
381 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
383 if (ops->ndo_do_ioctl) {
384 mm_segment_t oldfs = get_fs();
387 ops->ndo_do_ioctl(dev, &ifr, SIOCDELTUNNEL);
394 struct net_device *ipmr_new_tunnel(struct net *net, struct vifctl *v)
396 struct net_device *dev;
398 dev = __dev_get_by_name(net, "tunl0");
401 const struct net_device_ops *ops = dev->netdev_ops;
404 struct ip_tunnel_parm p;
405 struct in_device *in_dev;
407 memset(&p, 0, sizeof(p));
408 p.iph.daddr = v->vifc_rmt_addr.s_addr;
409 p.iph.saddr = v->vifc_lcl_addr.s_addr;
412 p.iph.protocol = IPPROTO_IPIP;
413 sprintf(p.name, "dvmrp%d", v->vifc_vifi);
414 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
416 if (ops->ndo_do_ioctl) {
417 mm_segment_t oldfs = get_fs();
420 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
428 (dev = __dev_get_by_name(net, p.name)) != NULL) {
429 dev->flags |= IFF_MULTICAST;
431 in_dev = __in_dev_get_rtnl(dev);
435 ipv4_devconf_setall(in_dev);
436 neigh_parms_data_state_setall(in_dev->arp_parms);
437 IPV4_DEVCONF(in_dev->cnf, RP_FILTER) = 0;
447 /* allow the register to be completed before unregistering. */
451 unregister_netdevice(dev);
455 #ifdef CONFIG_IP_PIMSM
457 static netdev_tx_t reg_vif_xmit(struct sk_buff *skb, struct net_device *dev)
459 struct net *net = dev_net(dev);
460 struct mr_table *mrt;
461 struct flowi4 fl4 = {
462 .flowi4_oif = dev->ifindex,
463 .flowi4_iif = skb->skb_iif ? : LOOPBACK_IFINDEX,
464 .flowi4_mark = skb->mark,
468 err = ipmr_fib_lookup(net, &fl4, &mrt);
474 read_lock(&mrt_lock);
475 dev->stats.tx_bytes += skb->len;
476 dev->stats.tx_packets++;
477 ipmr_cache_report(mrt, skb, mrt->mroute_reg_vif_num, IGMPMSG_WHOLEPKT);
478 read_unlock(&mrt_lock);
483 static const struct net_device_ops reg_vif_netdev_ops = {
484 .ndo_start_xmit = reg_vif_xmit,
487 static void reg_vif_setup(struct net_device *dev)
489 dev->type = ARPHRD_PIMREG;
490 dev->mtu = ETH_DATA_LEN - sizeof(struct iphdr) - 8;
491 dev->flags = IFF_NOARP;
492 dev->netdev_ops = ®_vif_netdev_ops;
493 dev->destructor = free_netdev;
494 dev->features |= NETIF_F_NETNS_LOCAL;
497 static struct net_device *ipmr_reg_vif(struct net *net, struct mr_table *mrt)
499 struct net_device *dev;
500 struct in_device *in_dev;
503 if (mrt->id == RT_TABLE_DEFAULT)
504 sprintf(name, "pimreg");
506 sprintf(name, "pimreg%u", mrt->id);
508 dev = alloc_netdev(0, name, NET_NAME_UNKNOWN, reg_vif_setup);
513 dev_net_set(dev, net);
515 if (register_netdevice(dev)) {
522 in_dev = __in_dev_get_rcu(dev);
528 ipv4_devconf_setall(in_dev);
529 neigh_parms_data_state_setall(in_dev->arp_parms);
530 IPV4_DEVCONF(in_dev->cnf, RP_FILTER) = 0;
541 /* allow the register to be completed before unregistering. */
545 unregister_netdevice(dev);
551 * vif_delete - Delete a VIF entry
552 * @notify: Set to 1, if the caller is a notifier_call
555 static int vif_delete(struct mr_table *mrt, int vifi, int notify,
556 struct list_head *head)
558 struct vif_device *v;
559 struct net_device *dev;
560 struct in_device *in_dev;
562 if (vifi < 0 || vifi >= mrt->maxvif)
563 return -EADDRNOTAVAIL;
565 v = &mrt->vif_table[vifi];
567 write_lock_bh(&mrt_lock);
572 write_unlock_bh(&mrt_lock);
573 return -EADDRNOTAVAIL;
576 #ifdef CONFIG_IP_PIMSM
577 if (vifi == mrt->mroute_reg_vif_num)
578 mrt->mroute_reg_vif_num = -1;
581 if (vifi + 1 == mrt->maxvif) {
584 for (tmp = vifi - 1; tmp >= 0; tmp--) {
585 if (VIF_EXISTS(mrt, tmp))
591 write_unlock_bh(&mrt_lock);
593 dev_set_allmulti(dev, -1);
595 in_dev = __in_dev_get_rtnl(dev);
597 IPV4_DEVCONF(in_dev->cnf, MC_FORWARDING)--;
598 inet_netconf_notify_devconf(dev_net(dev),
599 NETCONFA_MC_FORWARDING,
600 dev->ifindex, &in_dev->cnf);
601 ip_rt_multicast_event(in_dev);
604 if (v->flags & (VIFF_TUNNEL | VIFF_REGISTER) && !notify)
605 unregister_netdevice_queue(dev, head);
611 static void ipmr_cache_free_rcu(struct rcu_head *head)
613 struct mfc_cache *c = container_of(head, struct mfc_cache, rcu);
615 kmem_cache_free(mrt_cachep, c);
618 static inline void ipmr_cache_free(struct mfc_cache *c)
620 call_rcu(&c->rcu, ipmr_cache_free_rcu);
623 /* Destroy an unresolved cache entry, killing queued skbs
624 * and reporting error to netlink readers.
627 static void ipmr_destroy_unres(struct mr_table *mrt, struct mfc_cache *c)
629 struct net *net = read_pnet(&mrt->net);
633 atomic_dec(&mrt->cache_resolve_queue_len);
635 while ((skb = skb_dequeue(&c->mfc_un.unres.unresolved))) {
636 if (ip_hdr(skb)->version == 0) {
637 struct nlmsghdr *nlh = (struct nlmsghdr *)skb_pull(skb, sizeof(struct iphdr));
638 nlh->nlmsg_type = NLMSG_ERROR;
639 nlh->nlmsg_len = nlmsg_msg_size(sizeof(struct nlmsgerr));
640 skb_trim(skb, nlh->nlmsg_len);
642 e->error = -ETIMEDOUT;
643 memset(&e->msg, 0, sizeof(e->msg));
645 rtnl_unicast(skb, net, NETLINK_CB(skb).portid);
655 /* Timer process for the unresolved queue. */
657 static void ipmr_expire_process(unsigned long arg)
659 struct mr_table *mrt = (struct mr_table *)arg;
661 unsigned long expires;
662 struct mfc_cache *c, *next;
664 if (!spin_trylock(&mfc_unres_lock)) {
665 mod_timer(&mrt->ipmr_expire_timer, jiffies+HZ/10);
669 if (list_empty(&mrt->mfc_unres_queue))
675 list_for_each_entry_safe(c, next, &mrt->mfc_unres_queue, list) {
676 if (time_after(c->mfc_un.unres.expires, now)) {
677 unsigned long interval = c->mfc_un.unres.expires - now;
678 if (interval < expires)
684 mroute_netlink_event(mrt, c, RTM_DELROUTE);
685 ipmr_destroy_unres(mrt, c);
688 if (!list_empty(&mrt->mfc_unres_queue))
689 mod_timer(&mrt->ipmr_expire_timer, jiffies + expires);
692 spin_unlock(&mfc_unres_lock);
695 /* Fill oifs list. It is called under write locked mrt_lock. */
697 static void ipmr_update_thresholds(struct mr_table *mrt, struct mfc_cache *cache,
702 cache->mfc_un.res.minvif = MAXVIFS;
703 cache->mfc_un.res.maxvif = 0;
704 memset(cache->mfc_un.res.ttls, 255, MAXVIFS);
706 for (vifi = 0; vifi < mrt->maxvif; vifi++) {
707 if (VIF_EXISTS(mrt, vifi) &&
708 ttls[vifi] && ttls[vifi] < 255) {
709 cache->mfc_un.res.ttls[vifi] = ttls[vifi];
710 if (cache->mfc_un.res.minvif > vifi)
711 cache->mfc_un.res.minvif = vifi;
712 if (cache->mfc_un.res.maxvif <= vifi)
713 cache->mfc_un.res.maxvif = vifi + 1;
718 static int vif_add(struct net *net, struct mr_table *mrt,
719 struct vifctl *vifc, int mrtsock)
721 int vifi = vifc->vifc_vifi;
722 struct vif_device *v = &mrt->vif_table[vifi];
723 struct net_device *dev;
724 struct in_device *in_dev;
728 if (VIF_EXISTS(mrt, vifi))
731 switch (vifc->vifc_flags) {
732 #ifdef CONFIG_IP_PIMSM
735 * Special Purpose VIF in PIM
736 * All the packets will be sent to the daemon
738 if (mrt->mroute_reg_vif_num >= 0)
740 dev = ipmr_reg_vif(net, mrt);
743 err = dev_set_allmulti(dev, 1);
745 unregister_netdevice(dev);
752 dev = ipmr_new_tunnel(net, vifc);
755 err = dev_set_allmulti(dev, 1);
757 ipmr_del_tunnel(dev, vifc);
763 case VIFF_USE_IFINDEX:
765 if (vifc->vifc_flags == VIFF_USE_IFINDEX) {
766 dev = dev_get_by_index(net, vifc->vifc_lcl_ifindex);
767 if (dev && __in_dev_get_rtnl(dev) == NULL) {
769 return -EADDRNOTAVAIL;
772 dev = ip_dev_find(net, vifc->vifc_lcl_addr.s_addr);
775 return -EADDRNOTAVAIL;
776 err = dev_set_allmulti(dev, 1);
786 in_dev = __in_dev_get_rtnl(dev);
789 return -EADDRNOTAVAIL;
791 IPV4_DEVCONF(in_dev->cnf, MC_FORWARDING)++;
792 inet_netconf_notify_devconf(net, NETCONFA_MC_FORWARDING, dev->ifindex,
794 ip_rt_multicast_event(in_dev);
796 /* Fill in the VIF structures */
798 v->rate_limit = vifc->vifc_rate_limit;
799 v->local = vifc->vifc_lcl_addr.s_addr;
800 v->remote = vifc->vifc_rmt_addr.s_addr;
801 v->flags = vifc->vifc_flags;
803 v->flags |= VIFF_STATIC;
804 v->threshold = vifc->vifc_threshold;
809 v->link = dev->ifindex;
810 if (v->flags & (VIFF_TUNNEL | VIFF_REGISTER))
811 v->link = dev->iflink;
813 /* And finish update writing critical data */
814 write_lock_bh(&mrt_lock);
816 #ifdef CONFIG_IP_PIMSM
817 if (v->flags & VIFF_REGISTER)
818 mrt->mroute_reg_vif_num = vifi;
820 if (vifi+1 > mrt->maxvif)
821 mrt->maxvif = vifi+1;
822 write_unlock_bh(&mrt_lock);
826 /* called with rcu_read_lock() */
827 static struct mfc_cache *ipmr_cache_find(struct mr_table *mrt,
831 int line = MFC_HASH(mcastgrp, origin);
834 list_for_each_entry_rcu(c, &mrt->mfc_cache_array[line], list) {
835 if (c->mfc_origin == origin && c->mfc_mcastgrp == mcastgrp)
841 /* Look for a (*,*,oif) entry */
842 static struct mfc_cache *ipmr_cache_find_any_parent(struct mr_table *mrt,
845 int line = MFC_HASH(htonl(INADDR_ANY), htonl(INADDR_ANY));
848 list_for_each_entry_rcu(c, &mrt->mfc_cache_array[line], list)
849 if (c->mfc_origin == htonl(INADDR_ANY) &&
850 c->mfc_mcastgrp == htonl(INADDR_ANY) &&
851 c->mfc_un.res.ttls[vifi] < 255)
857 /* Look for a (*,G) entry */
858 static struct mfc_cache *ipmr_cache_find_any(struct mr_table *mrt,
859 __be32 mcastgrp, int vifi)
861 int line = MFC_HASH(mcastgrp, htonl(INADDR_ANY));
862 struct mfc_cache *c, *proxy;
864 if (mcastgrp == htonl(INADDR_ANY))
867 list_for_each_entry_rcu(c, &mrt->mfc_cache_array[line], list)
868 if (c->mfc_origin == htonl(INADDR_ANY) &&
869 c->mfc_mcastgrp == mcastgrp) {
870 if (c->mfc_un.res.ttls[vifi] < 255)
873 /* It's ok if the vifi is part of the static tree */
874 proxy = ipmr_cache_find_any_parent(mrt,
876 if (proxy && proxy->mfc_un.res.ttls[vifi] < 255)
881 return ipmr_cache_find_any_parent(mrt, vifi);
885 * Allocate a multicast cache entry
887 static struct mfc_cache *ipmr_cache_alloc(void)
889 struct mfc_cache *c = kmem_cache_zalloc(mrt_cachep, GFP_KERNEL);
892 c->mfc_un.res.minvif = MAXVIFS;
896 static struct mfc_cache *ipmr_cache_alloc_unres(void)
898 struct mfc_cache *c = kmem_cache_zalloc(mrt_cachep, GFP_ATOMIC);
901 skb_queue_head_init(&c->mfc_un.unres.unresolved);
902 c->mfc_un.unres.expires = jiffies + 10*HZ;
908 * A cache entry has gone into a resolved state from queued
911 static void ipmr_cache_resolve(struct net *net, struct mr_table *mrt,
912 struct mfc_cache *uc, struct mfc_cache *c)
917 /* Play the pending entries through our router */
919 while ((skb = __skb_dequeue(&uc->mfc_un.unres.unresolved))) {
920 if (ip_hdr(skb)->version == 0) {
921 struct nlmsghdr *nlh = (struct nlmsghdr *)skb_pull(skb, sizeof(struct iphdr));
923 if (__ipmr_fill_mroute(mrt, skb, c, nlmsg_data(nlh)) > 0) {
924 nlh->nlmsg_len = skb_tail_pointer(skb) -
927 nlh->nlmsg_type = NLMSG_ERROR;
928 nlh->nlmsg_len = nlmsg_msg_size(sizeof(struct nlmsgerr));
929 skb_trim(skb, nlh->nlmsg_len);
931 e->error = -EMSGSIZE;
932 memset(&e->msg, 0, sizeof(e->msg));
935 rtnl_unicast(skb, net, NETLINK_CB(skb).portid);
937 ip_mr_forward(net, mrt, skb, c, 0);
943 * Bounce a cache query up to mrouted. We could use netlink for this but mrouted
944 * expects the following bizarre scheme.
946 * Called under mrt_lock.
949 static int ipmr_cache_report(struct mr_table *mrt,
950 struct sk_buff *pkt, vifi_t vifi, int assert)
953 const int ihl = ip_hdrlen(pkt);
954 struct igmphdr *igmp;
956 struct sock *mroute_sk;
959 #ifdef CONFIG_IP_PIMSM
960 if (assert == IGMPMSG_WHOLEPKT)
961 skb = skb_realloc_headroom(pkt, sizeof(struct iphdr));
964 skb = alloc_skb(128, GFP_ATOMIC);
969 #ifdef CONFIG_IP_PIMSM
970 if (assert == IGMPMSG_WHOLEPKT) {
971 /* Ugly, but we have no choice with this interface.
972 * Duplicate old header, fix ihl, length etc.
973 * And all this only to mangle msg->im_msgtype and
974 * to set msg->im_mbz to "mbz" :-)
976 skb_push(skb, sizeof(struct iphdr));
977 skb_reset_network_header(skb);
978 skb_reset_transport_header(skb);
979 msg = (struct igmpmsg *)skb_network_header(skb);
980 memcpy(msg, skb_network_header(pkt), sizeof(struct iphdr));
981 msg->im_msgtype = IGMPMSG_WHOLEPKT;
983 msg->im_vif = mrt->mroute_reg_vif_num;
984 ip_hdr(skb)->ihl = sizeof(struct iphdr) >> 2;
985 ip_hdr(skb)->tot_len = htons(ntohs(ip_hdr(pkt)->tot_len) +
986 sizeof(struct iphdr));
991 /* Copy the IP header */
993 skb_set_network_header(skb, skb->len);
995 skb_copy_to_linear_data(skb, pkt->data, ihl);
996 ip_hdr(skb)->protocol = 0; /* Flag to the kernel this is a route add */
997 msg = (struct igmpmsg *)skb_network_header(skb);
999 skb_dst_set(skb, dst_clone(skb_dst(pkt)));
1001 /* Add our header */
1003 igmp = (struct igmphdr *)skb_put(skb, sizeof(struct igmphdr));
1005 msg->im_msgtype = assert;
1007 ip_hdr(skb)->tot_len = htons(skb->len); /* Fix the length */
1008 skb->transport_header = skb->network_header;
1012 mroute_sk = rcu_dereference(mrt->mroute_sk);
1013 if (mroute_sk == NULL) {
1019 /* Deliver to mrouted */
1021 ret = sock_queue_rcv_skb(mroute_sk, skb);
1024 net_warn_ratelimited("mroute: pending queue full, dropping entries\n");
1032 * Queue a packet for resolution. It gets locked cache entry!
1036 ipmr_cache_unresolved(struct mr_table *mrt, vifi_t vifi, struct sk_buff *skb)
1040 struct mfc_cache *c;
1041 const struct iphdr *iph = ip_hdr(skb);
1043 spin_lock_bh(&mfc_unres_lock);
1044 list_for_each_entry(c, &mrt->mfc_unres_queue, list) {
1045 if (c->mfc_mcastgrp == iph->daddr &&
1046 c->mfc_origin == iph->saddr) {
1053 /* Create a new entry if allowable */
1055 if (atomic_read(&mrt->cache_resolve_queue_len) >= 10 ||
1056 (c = ipmr_cache_alloc_unres()) == NULL) {
1057 spin_unlock_bh(&mfc_unres_lock);
1063 /* Fill in the new cache entry */
1066 c->mfc_origin = iph->saddr;
1067 c->mfc_mcastgrp = iph->daddr;
1069 /* Reflect first query at mrouted. */
1071 err = ipmr_cache_report(mrt, skb, vifi, IGMPMSG_NOCACHE);
1073 /* If the report failed throw the cache entry
1076 spin_unlock_bh(&mfc_unres_lock);
1083 atomic_inc(&mrt->cache_resolve_queue_len);
1084 list_add(&c->list, &mrt->mfc_unres_queue);
1085 mroute_netlink_event(mrt, c, RTM_NEWROUTE);
1087 if (atomic_read(&mrt->cache_resolve_queue_len) == 1)
1088 mod_timer(&mrt->ipmr_expire_timer, c->mfc_un.unres.expires);
1091 /* See if we can append the packet */
1093 if (c->mfc_un.unres.unresolved.qlen > 3) {
1097 skb_queue_tail(&c->mfc_un.unres.unresolved, skb);
1101 spin_unlock_bh(&mfc_unres_lock);
1106 * MFC cache manipulation by user space mroute daemon
1109 static int ipmr_mfc_delete(struct mr_table *mrt, struct mfcctl *mfc, int parent)
1112 struct mfc_cache *c, *next;
1114 line = MFC_HASH(mfc->mfcc_mcastgrp.s_addr, mfc->mfcc_origin.s_addr);
1116 list_for_each_entry_safe(c, next, &mrt->mfc_cache_array[line], list) {
1117 if (c->mfc_origin == mfc->mfcc_origin.s_addr &&
1118 c->mfc_mcastgrp == mfc->mfcc_mcastgrp.s_addr &&
1119 (parent == -1 || parent == c->mfc_parent)) {
1120 list_del_rcu(&c->list);
1121 mroute_netlink_event(mrt, c, RTM_DELROUTE);
1129 static int ipmr_mfc_add(struct net *net, struct mr_table *mrt,
1130 struct mfcctl *mfc, int mrtsock, int parent)
1134 struct mfc_cache *uc, *c;
1136 if (mfc->mfcc_parent >= MAXVIFS)
1139 line = MFC_HASH(mfc->mfcc_mcastgrp.s_addr, mfc->mfcc_origin.s_addr);
1141 list_for_each_entry(c, &mrt->mfc_cache_array[line], list) {
1142 if (c->mfc_origin == mfc->mfcc_origin.s_addr &&
1143 c->mfc_mcastgrp == mfc->mfcc_mcastgrp.s_addr &&
1144 (parent == -1 || parent == c->mfc_parent)) {
1151 write_lock_bh(&mrt_lock);
1152 c->mfc_parent = mfc->mfcc_parent;
1153 ipmr_update_thresholds(mrt, c, mfc->mfcc_ttls);
1155 c->mfc_flags |= MFC_STATIC;
1156 write_unlock_bh(&mrt_lock);
1157 mroute_netlink_event(mrt, c, RTM_NEWROUTE);
1161 if (mfc->mfcc_mcastgrp.s_addr != htonl(INADDR_ANY) &&
1162 !ipv4_is_multicast(mfc->mfcc_mcastgrp.s_addr))
1165 c = ipmr_cache_alloc();
1169 c->mfc_origin = mfc->mfcc_origin.s_addr;
1170 c->mfc_mcastgrp = mfc->mfcc_mcastgrp.s_addr;
1171 c->mfc_parent = mfc->mfcc_parent;
1172 ipmr_update_thresholds(mrt, c, mfc->mfcc_ttls);
1174 c->mfc_flags |= MFC_STATIC;
1176 list_add_rcu(&c->list, &mrt->mfc_cache_array[line]);
1179 * Check to see if we resolved a queued list. If so we
1180 * need to send on the frames and tidy up.
1183 spin_lock_bh(&mfc_unres_lock);
1184 list_for_each_entry(uc, &mrt->mfc_unres_queue, list) {
1185 if (uc->mfc_origin == c->mfc_origin &&
1186 uc->mfc_mcastgrp == c->mfc_mcastgrp) {
1187 list_del(&uc->list);
1188 atomic_dec(&mrt->cache_resolve_queue_len);
1193 if (list_empty(&mrt->mfc_unres_queue))
1194 del_timer(&mrt->ipmr_expire_timer);
1195 spin_unlock_bh(&mfc_unres_lock);
1198 ipmr_cache_resolve(net, mrt, uc, c);
1199 ipmr_cache_free(uc);
1201 mroute_netlink_event(mrt, c, RTM_NEWROUTE);
1206 * Close the multicast socket, and clear the vif tables etc
1209 static void mroute_clean_tables(struct mr_table *mrt)
1213 struct mfc_cache *c, *next;
1215 /* Shut down all active vif entries */
1217 for (i = 0; i < mrt->maxvif; i++) {
1218 if (!(mrt->vif_table[i].flags & VIFF_STATIC))
1219 vif_delete(mrt, i, 0, &list);
1221 unregister_netdevice_many(&list);
1223 /* Wipe the cache */
1225 for (i = 0; i < MFC_LINES; i++) {
1226 list_for_each_entry_safe(c, next, &mrt->mfc_cache_array[i], list) {
1227 if (c->mfc_flags & MFC_STATIC)
1229 list_del_rcu(&c->list);
1230 mroute_netlink_event(mrt, c, RTM_DELROUTE);
1235 if (atomic_read(&mrt->cache_resolve_queue_len) != 0) {
1236 spin_lock_bh(&mfc_unres_lock);
1237 list_for_each_entry_safe(c, next, &mrt->mfc_unres_queue, list) {
1239 mroute_netlink_event(mrt, c, RTM_DELROUTE);
1240 ipmr_destroy_unres(mrt, c);
1242 spin_unlock_bh(&mfc_unres_lock);
1246 /* called from ip_ra_control(), before an RCU grace period,
1247 * we dont need to call synchronize_rcu() here
1249 static void mrtsock_destruct(struct sock *sk)
1251 struct net *net = sock_net(sk);
1252 struct mr_table *mrt;
1255 ipmr_for_each_table(mrt, net) {
1256 if (sk == rtnl_dereference(mrt->mroute_sk)) {
1257 IPV4_DEVCONF_ALL(net, MC_FORWARDING)--;
1258 inet_netconf_notify_devconf(net, NETCONFA_MC_FORWARDING,
1259 NETCONFA_IFINDEX_ALL,
1260 net->ipv4.devconf_all);
1261 RCU_INIT_POINTER(mrt->mroute_sk, NULL);
1262 mroute_clean_tables(mrt);
1269 * Socket options and virtual interface manipulation. The whole
1270 * virtual interface system is a complete heap, but unfortunately
1271 * that's how BSD mrouted happens to think. Maybe one day with a proper
1272 * MOSPF/PIM router set up we can clean this up.
1275 int ip_mroute_setsockopt(struct sock *sk, int optname, char __user *optval, unsigned int optlen)
1277 int ret, parent = 0;
1280 struct net *net = sock_net(sk);
1281 struct mr_table *mrt;
1283 if (sk->sk_type != SOCK_RAW ||
1284 inet_sk(sk)->inet_num != IPPROTO_IGMP)
1287 mrt = ipmr_get_table(net, raw_sk(sk)->ipmr_table ? : RT_TABLE_DEFAULT);
1291 if (optname != MRT_INIT) {
1292 if (sk != rcu_access_pointer(mrt->mroute_sk) &&
1293 !ns_capable(net->user_ns, CAP_NET_ADMIN))
1299 if (optlen != sizeof(int))
1303 if (rtnl_dereference(mrt->mroute_sk)) {
1308 ret = ip_ra_control(sk, 1, mrtsock_destruct);
1310 rcu_assign_pointer(mrt->mroute_sk, sk);
1311 IPV4_DEVCONF_ALL(net, MC_FORWARDING)++;
1312 inet_netconf_notify_devconf(net, NETCONFA_MC_FORWARDING,
1313 NETCONFA_IFINDEX_ALL,
1314 net->ipv4.devconf_all);
1319 if (sk != rcu_access_pointer(mrt->mroute_sk))
1321 return ip_ra_control(sk, 0, NULL);
1324 if (optlen != sizeof(vif))
1326 if (copy_from_user(&vif, optval, sizeof(vif)))
1328 if (vif.vifc_vifi >= MAXVIFS)
1331 if (optname == MRT_ADD_VIF) {
1332 ret = vif_add(net, mrt, &vif,
1333 sk == rtnl_dereference(mrt->mroute_sk));
1335 ret = vif_delete(mrt, vif.vifc_vifi, 0, NULL);
1341 * Manipulate the forwarding caches. These live
1342 * in a sort of kernel/user symbiosis.
1347 case MRT_ADD_MFC_PROXY:
1348 case MRT_DEL_MFC_PROXY:
1349 if (optlen != sizeof(mfc))
1351 if (copy_from_user(&mfc, optval, sizeof(mfc)))
1354 parent = mfc.mfcc_parent;
1356 if (optname == MRT_DEL_MFC || optname == MRT_DEL_MFC_PROXY)
1357 ret = ipmr_mfc_delete(mrt, &mfc, parent);
1359 ret = ipmr_mfc_add(net, mrt, &mfc,
1360 sk == rtnl_dereference(mrt->mroute_sk),
1365 * Control PIM assert.
1370 if (optlen != sizeof(v))
1372 if (get_user(v, (int __user *)optval))
1374 mrt->mroute_do_assert = v;
1377 #ifdef CONFIG_IP_PIMSM
1382 if (optlen != sizeof(v))
1384 if (get_user(v, (int __user *)optval))
1390 if (v != mrt->mroute_do_pim) {
1391 mrt->mroute_do_pim = v;
1392 mrt->mroute_do_assert = v;
1398 #ifdef CONFIG_IP_MROUTE_MULTIPLE_TABLES
1403 if (optlen != sizeof(u32))
1405 if (get_user(v, (u32 __user *)optval))
1408 /* "pimreg%u" should not exceed 16 bytes (IFNAMSIZ) */
1409 if (v != RT_TABLE_DEFAULT && v >= 1000000000)
1414 if (sk == rtnl_dereference(mrt->mroute_sk)) {
1417 if (!ipmr_new_table(net, v))
1420 raw_sk(sk)->ipmr_table = v;
1427 * Spurious command, or MRT_VERSION which you cannot
1431 return -ENOPROTOOPT;
1436 * Getsock opt support for the multicast routing system.
1439 int ip_mroute_getsockopt(struct sock *sk, int optname, char __user *optval, int __user *optlen)
1443 struct net *net = sock_net(sk);
1444 struct mr_table *mrt;
1446 if (sk->sk_type != SOCK_RAW ||
1447 inet_sk(sk)->inet_num != IPPROTO_IGMP)
1450 mrt = ipmr_get_table(net, raw_sk(sk)->ipmr_table ? : RT_TABLE_DEFAULT);
1454 if (optname != MRT_VERSION &&
1455 #ifdef CONFIG_IP_PIMSM
1456 optname != MRT_PIM &&
1458 optname != MRT_ASSERT)
1459 return -ENOPROTOOPT;
1461 if (get_user(olr, optlen))
1464 olr = min_t(unsigned int, olr, sizeof(int));
1468 if (put_user(olr, optlen))
1470 if (optname == MRT_VERSION)
1472 #ifdef CONFIG_IP_PIMSM
1473 else if (optname == MRT_PIM)
1474 val = mrt->mroute_do_pim;
1477 val = mrt->mroute_do_assert;
1478 if (copy_to_user(optval, &val, olr))
1484 * The IP multicast ioctl support routines.
1487 int ipmr_ioctl(struct sock *sk, int cmd, void __user *arg)
1489 struct sioc_sg_req sr;
1490 struct sioc_vif_req vr;
1491 struct vif_device *vif;
1492 struct mfc_cache *c;
1493 struct net *net = sock_net(sk);
1494 struct mr_table *mrt;
1496 mrt = ipmr_get_table(net, raw_sk(sk)->ipmr_table ? : RT_TABLE_DEFAULT);
1502 if (copy_from_user(&vr, arg, sizeof(vr)))
1504 if (vr.vifi >= mrt->maxvif)
1506 read_lock(&mrt_lock);
1507 vif = &mrt->vif_table[vr.vifi];
1508 if (VIF_EXISTS(mrt, vr.vifi)) {
1509 vr.icount = vif->pkt_in;
1510 vr.ocount = vif->pkt_out;
1511 vr.ibytes = vif->bytes_in;
1512 vr.obytes = vif->bytes_out;
1513 read_unlock(&mrt_lock);
1515 if (copy_to_user(arg, &vr, sizeof(vr)))
1519 read_unlock(&mrt_lock);
1520 return -EADDRNOTAVAIL;
1522 if (copy_from_user(&sr, arg, sizeof(sr)))
1526 c = ipmr_cache_find(mrt, sr.src.s_addr, sr.grp.s_addr);
1528 sr.pktcnt = c->mfc_un.res.pkt;
1529 sr.bytecnt = c->mfc_un.res.bytes;
1530 sr.wrong_if = c->mfc_un.res.wrong_if;
1533 if (copy_to_user(arg, &sr, sizeof(sr)))
1538 return -EADDRNOTAVAIL;
1540 return -ENOIOCTLCMD;
1544 #ifdef CONFIG_COMPAT
1545 struct compat_sioc_sg_req {
1548 compat_ulong_t pktcnt;
1549 compat_ulong_t bytecnt;
1550 compat_ulong_t wrong_if;
1553 struct compat_sioc_vif_req {
1554 vifi_t vifi; /* Which iface */
1555 compat_ulong_t icount;
1556 compat_ulong_t ocount;
1557 compat_ulong_t ibytes;
1558 compat_ulong_t obytes;
1561 int ipmr_compat_ioctl(struct sock *sk, unsigned int cmd, void __user *arg)
1563 struct compat_sioc_sg_req sr;
1564 struct compat_sioc_vif_req vr;
1565 struct vif_device *vif;
1566 struct mfc_cache *c;
1567 struct net *net = sock_net(sk);
1568 struct mr_table *mrt;
1570 mrt = ipmr_get_table(net, raw_sk(sk)->ipmr_table ? : RT_TABLE_DEFAULT);
1576 if (copy_from_user(&vr, arg, sizeof(vr)))
1578 if (vr.vifi >= mrt->maxvif)
1580 read_lock(&mrt_lock);
1581 vif = &mrt->vif_table[vr.vifi];
1582 if (VIF_EXISTS(mrt, vr.vifi)) {
1583 vr.icount = vif->pkt_in;
1584 vr.ocount = vif->pkt_out;
1585 vr.ibytes = vif->bytes_in;
1586 vr.obytes = vif->bytes_out;
1587 read_unlock(&mrt_lock);
1589 if (copy_to_user(arg, &vr, sizeof(vr)))
1593 read_unlock(&mrt_lock);
1594 return -EADDRNOTAVAIL;
1596 if (copy_from_user(&sr, arg, sizeof(sr)))
1600 c = ipmr_cache_find(mrt, sr.src.s_addr, sr.grp.s_addr);
1602 sr.pktcnt = c->mfc_un.res.pkt;
1603 sr.bytecnt = c->mfc_un.res.bytes;
1604 sr.wrong_if = c->mfc_un.res.wrong_if;
1607 if (copy_to_user(arg, &sr, sizeof(sr)))
1612 return -EADDRNOTAVAIL;
1614 return -ENOIOCTLCMD;
1620 static int ipmr_device_event(struct notifier_block *this, unsigned long event, void *ptr)
1622 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1623 struct net *net = dev_net(dev);
1624 struct mr_table *mrt;
1625 struct vif_device *v;
1628 if (event != NETDEV_UNREGISTER)
1631 ipmr_for_each_table(mrt, net) {
1632 v = &mrt->vif_table[0];
1633 for (ct = 0; ct < mrt->maxvif; ct++, v++) {
1635 vif_delete(mrt, ct, 1, NULL);
1642 static struct notifier_block ip_mr_notifier = {
1643 .notifier_call = ipmr_device_event,
1647 * Encapsulate a packet by attaching a valid IPIP header to it.
1648 * This avoids tunnel drivers and other mess and gives us the speed so
1649 * important for multicast video.
1652 static void ip_encap(struct sk_buff *skb, __be32 saddr, __be32 daddr)
1655 const struct iphdr *old_iph = ip_hdr(skb);
1657 skb_push(skb, sizeof(struct iphdr));
1658 skb->transport_header = skb->network_header;
1659 skb_reset_network_header(skb);
1663 iph->tos = old_iph->tos;
1664 iph->ttl = old_iph->ttl;
1668 iph->protocol = IPPROTO_IPIP;
1670 iph->tot_len = htons(skb->len);
1671 ip_select_ident(skb, NULL);
1674 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
1678 static inline int ipmr_forward_finish(struct sk_buff *skb)
1680 struct ip_options *opt = &(IPCB(skb)->opt);
1682 IP_INC_STATS_BH(dev_net(skb_dst(skb)->dev), IPSTATS_MIB_OUTFORWDATAGRAMS);
1683 IP_ADD_STATS_BH(dev_net(skb_dst(skb)->dev), IPSTATS_MIB_OUTOCTETS, skb->len);
1685 if (unlikely(opt->optlen))
1686 ip_forward_options(skb);
1688 return dst_output(skb);
1692 * Processing handlers for ipmr_forward
1695 static void ipmr_queue_xmit(struct net *net, struct mr_table *mrt,
1696 struct sk_buff *skb, struct mfc_cache *c, int vifi)
1698 const struct iphdr *iph = ip_hdr(skb);
1699 struct vif_device *vif = &mrt->vif_table[vifi];
1700 struct net_device *dev;
1705 if (vif->dev == NULL)
1708 #ifdef CONFIG_IP_PIMSM
1709 if (vif->flags & VIFF_REGISTER) {
1711 vif->bytes_out += skb->len;
1712 vif->dev->stats.tx_bytes += skb->len;
1713 vif->dev->stats.tx_packets++;
1714 ipmr_cache_report(mrt, skb, vifi, IGMPMSG_WHOLEPKT);
1719 if (vif->flags & VIFF_TUNNEL) {
1720 rt = ip_route_output_ports(net, &fl4, NULL,
1721 vif->remote, vif->local,
1724 RT_TOS(iph->tos), vif->link);
1727 encap = sizeof(struct iphdr);
1729 rt = ip_route_output_ports(net, &fl4, NULL, iph->daddr, 0,
1732 RT_TOS(iph->tos), vif->link);
1739 if (skb->len+encap > dst_mtu(&rt->dst) && (ntohs(iph->frag_off) & IP_DF)) {
1740 /* Do not fragment multicasts. Alas, IPv4 does not
1741 * allow to send ICMP, so that packets will disappear
1745 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_FRAGFAILS);
1750 encap += LL_RESERVED_SPACE(dev) + rt->dst.header_len;
1752 if (skb_cow(skb, encap)) {
1758 vif->bytes_out += skb->len;
1761 skb_dst_set(skb, &rt->dst);
1762 ip_decrease_ttl(ip_hdr(skb));
1764 /* FIXME: forward and output firewalls used to be called here.
1765 * What do we do with netfilter? -- RR
1767 if (vif->flags & VIFF_TUNNEL) {
1768 ip_encap(skb, vif->local, vif->remote);
1769 /* FIXME: extra output firewall step used to be here. --RR */
1770 vif->dev->stats.tx_packets++;
1771 vif->dev->stats.tx_bytes += skb->len;
1774 IPCB(skb)->flags |= IPSKB_FORWARDED;
1777 * RFC1584 teaches, that DVMRP/PIM router must deliver packets locally
1778 * not only before forwarding, but after forwarding on all output
1779 * interfaces. It is clear, if mrouter runs a multicasting
1780 * program, it should receive packets not depending to what interface
1781 * program is joined.
1782 * If we will not make it, the program will have to join on all
1783 * interfaces. On the other hand, multihoming host (or router, but
1784 * not mrouter) cannot join to more than one interface - it will
1785 * result in receiving multiple packets.
1787 NF_HOOK(NFPROTO_IPV4, NF_INET_FORWARD, skb, skb->dev, dev,
1788 ipmr_forward_finish);
1795 static int ipmr_find_vif(struct mr_table *mrt, struct net_device *dev)
1799 for (ct = mrt->maxvif-1; ct >= 0; ct--) {
1800 if (mrt->vif_table[ct].dev == dev)
1806 /* "local" means that we should preserve one skb (for local delivery) */
1808 static void ip_mr_forward(struct net *net, struct mr_table *mrt,
1809 struct sk_buff *skb, struct mfc_cache *cache,
1814 int true_vifi = ipmr_find_vif(mrt, skb->dev);
1816 vif = cache->mfc_parent;
1817 cache->mfc_un.res.pkt++;
1818 cache->mfc_un.res.bytes += skb->len;
1820 if (cache->mfc_origin == htonl(INADDR_ANY) && true_vifi >= 0) {
1821 struct mfc_cache *cache_proxy;
1823 /* For an (*,G) entry, we only check that the incomming
1824 * interface is part of the static tree.
1826 cache_proxy = ipmr_cache_find_any_parent(mrt, vif);
1828 cache_proxy->mfc_un.res.ttls[true_vifi] < 255)
1833 * Wrong interface: drop packet and (maybe) send PIM assert.
1835 if (mrt->vif_table[vif].dev != skb->dev) {
1836 if (rt_is_output_route(skb_rtable(skb))) {
1837 /* It is our own packet, looped back.
1838 * Very complicated situation...
1840 * The best workaround until routing daemons will be
1841 * fixed is not to redistribute packet, if it was
1842 * send through wrong interface. It means, that
1843 * multicast applications WILL NOT work for
1844 * (S,G), which have default multicast route pointing
1845 * to wrong oif. In any case, it is not a good
1846 * idea to use multicasting applications on router.
1851 cache->mfc_un.res.wrong_if++;
1853 if (true_vifi >= 0 && mrt->mroute_do_assert &&
1854 /* pimsm uses asserts, when switching from RPT to SPT,
1855 * so that we cannot check that packet arrived on an oif.
1856 * It is bad, but otherwise we would need to move pretty
1857 * large chunk of pimd to kernel. Ough... --ANK
1859 (mrt->mroute_do_pim ||
1860 cache->mfc_un.res.ttls[true_vifi] < 255) &&
1862 cache->mfc_un.res.last_assert + MFC_ASSERT_THRESH)) {
1863 cache->mfc_un.res.last_assert = jiffies;
1864 ipmr_cache_report(mrt, skb, true_vifi, IGMPMSG_WRONGVIF);
1870 mrt->vif_table[vif].pkt_in++;
1871 mrt->vif_table[vif].bytes_in += skb->len;
1876 if (cache->mfc_origin == htonl(INADDR_ANY) &&
1877 cache->mfc_mcastgrp == htonl(INADDR_ANY)) {
1878 if (true_vifi >= 0 &&
1879 true_vifi != cache->mfc_parent &&
1881 cache->mfc_un.res.ttls[cache->mfc_parent]) {
1882 /* It's an (*,*) entry and the packet is not coming from
1883 * the upstream: forward the packet to the upstream
1886 psend = cache->mfc_parent;
1891 for (ct = cache->mfc_un.res.maxvif - 1;
1892 ct >= cache->mfc_un.res.minvif; ct--) {
1893 /* For (*,G) entry, don't forward to the incoming interface */
1894 if ((cache->mfc_origin != htonl(INADDR_ANY) ||
1896 ip_hdr(skb)->ttl > cache->mfc_un.res.ttls[ct]) {
1898 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
1901 ipmr_queue_xmit(net, mrt, skb2, cache,
1910 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
1913 ipmr_queue_xmit(net, mrt, skb2, cache, psend);
1915 ipmr_queue_xmit(net, mrt, skb, cache, psend);
1925 static struct mr_table *ipmr_rt_fib_lookup(struct net *net, struct sk_buff *skb)
1927 struct rtable *rt = skb_rtable(skb);
1928 struct iphdr *iph = ip_hdr(skb);
1929 struct flowi4 fl4 = {
1930 .daddr = iph->daddr,
1931 .saddr = iph->saddr,
1932 .flowi4_tos = RT_TOS(iph->tos),
1933 .flowi4_oif = (rt_is_output_route(rt) ?
1934 skb->dev->ifindex : 0),
1935 .flowi4_iif = (rt_is_output_route(rt) ?
1938 .flowi4_mark = skb->mark,
1940 struct mr_table *mrt;
1943 err = ipmr_fib_lookup(net, &fl4, &mrt);
1945 return ERR_PTR(err);
1950 * Multicast packets for forwarding arrive here
1951 * Called with rcu_read_lock();
1954 int ip_mr_input(struct sk_buff *skb)
1956 struct mfc_cache *cache;
1957 struct net *net = dev_net(skb->dev);
1958 int local = skb_rtable(skb)->rt_flags & RTCF_LOCAL;
1959 struct mr_table *mrt;
1961 /* Packet is looped back after forward, it should not be
1962 * forwarded second time, but still can be delivered locally.
1964 if (IPCB(skb)->flags & IPSKB_FORWARDED)
1967 mrt = ipmr_rt_fib_lookup(net, skb);
1970 return PTR_ERR(mrt);
1973 if (IPCB(skb)->opt.router_alert) {
1974 if (ip_call_ra_chain(skb))
1976 } else if (ip_hdr(skb)->protocol == IPPROTO_IGMP) {
1977 /* IGMPv1 (and broken IGMPv2 implementations sort of
1978 * Cisco IOS <= 11.2(8)) do not put router alert
1979 * option to IGMP packets destined to routable
1980 * groups. It is very bad, because it means
1981 * that we can forward NO IGMP messages.
1983 struct sock *mroute_sk;
1985 mroute_sk = rcu_dereference(mrt->mroute_sk);
1988 raw_rcv(mroute_sk, skb);
1994 /* already under rcu_read_lock() */
1995 cache = ipmr_cache_find(mrt, ip_hdr(skb)->saddr, ip_hdr(skb)->daddr);
1996 if (cache == NULL) {
1997 int vif = ipmr_find_vif(mrt, skb->dev);
2000 cache = ipmr_cache_find_any(mrt, ip_hdr(skb)->daddr,
2005 * No usable cache entry
2007 if (cache == NULL) {
2011 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
2012 ip_local_deliver(skb);
2018 read_lock(&mrt_lock);
2019 vif = ipmr_find_vif(mrt, skb->dev);
2021 int err2 = ipmr_cache_unresolved(mrt, vif, skb);
2022 read_unlock(&mrt_lock);
2026 read_unlock(&mrt_lock);
2031 read_lock(&mrt_lock);
2032 ip_mr_forward(net, mrt, skb, cache, local);
2033 read_unlock(&mrt_lock);
2036 return ip_local_deliver(skb);
2042 return ip_local_deliver(skb);
2047 #ifdef CONFIG_IP_PIMSM
2048 /* called with rcu_read_lock() */
2049 static int __pim_rcv(struct mr_table *mrt, struct sk_buff *skb,
2050 unsigned int pimlen)
2052 struct net_device *reg_dev = NULL;
2053 struct iphdr *encap;
2055 encap = (struct iphdr *)(skb_transport_header(skb) + pimlen);
2058 * a. packet is really sent to a multicast group
2059 * b. packet is not a NULL-REGISTER
2060 * c. packet is not truncated
2062 if (!ipv4_is_multicast(encap->daddr) ||
2063 encap->tot_len == 0 ||
2064 ntohs(encap->tot_len) + pimlen > skb->len)
2067 read_lock(&mrt_lock);
2068 if (mrt->mroute_reg_vif_num >= 0)
2069 reg_dev = mrt->vif_table[mrt->mroute_reg_vif_num].dev;
2070 read_unlock(&mrt_lock);
2072 if (reg_dev == NULL)
2075 skb->mac_header = skb->network_header;
2076 skb_pull(skb, (u8 *)encap - skb->data);
2077 skb_reset_network_header(skb);
2078 skb->protocol = htons(ETH_P_IP);
2079 skb->ip_summed = CHECKSUM_NONE;
2081 skb_tunnel_rx(skb, reg_dev, dev_net(reg_dev));
2085 return NET_RX_SUCCESS;
2089 #ifdef CONFIG_IP_PIMSM_V1
2091 * Handle IGMP messages of PIMv1
2094 int pim_rcv_v1(struct sk_buff *skb)
2096 struct igmphdr *pim;
2097 struct net *net = dev_net(skb->dev);
2098 struct mr_table *mrt;
2100 if (!pskb_may_pull(skb, sizeof(*pim) + sizeof(struct iphdr)))
2103 pim = igmp_hdr(skb);
2105 mrt = ipmr_rt_fib_lookup(net, skb);
2108 if (!mrt->mroute_do_pim ||
2109 pim->group != PIM_V1_VERSION || pim->code != PIM_V1_REGISTER)
2112 if (__pim_rcv(mrt, skb, sizeof(*pim))) {
2120 #ifdef CONFIG_IP_PIMSM_V2
2121 static int pim_rcv(struct sk_buff *skb)
2123 struct pimreghdr *pim;
2124 struct net *net = dev_net(skb->dev);
2125 struct mr_table *mrt;
2127 if (!pskb_may_pull(skb, sizeof(*pim) + sizeof(struct iphdr)))
2130 pim = (struct pimreghdr *)skb_transport_header(skb);
2131 if (pim->type != ((PIM_VERSION << 4) | (PIM_REGISTER)) ||
2132 (pim->flags & PIM_NULL_REGISTER) ||
2133 (ip_compute_csum((void *)pim, sizeof(*pim)) != 0 &&
2134 csum_fold(skb_checksum(skb, 0, skb->len, 0))))
2137 mrt = ipmr_rt_fib_lookup(net, skb);
2140 if (__pim_rcv(mrt, skb, sizeof(*pim))) {
2148 static int __ipmr_fill_mroute(struct mr_table *mrt, struct sk_buff *skb,
2149 struct mfc_cache *c, struct rtmsg *rtm)
2152 struct rtnexthop *nhp;
2153 struct nlattr *mp_attr;
2154 struct rta_mfc_stats mfcs;
2156 /* If cache is unresolved, don't try to parse IIF and OIF */
2157 if (c->mfc_parent >= MAXVIFS)
2160 if (VIF_EXISTS(mrt, c->mfc_parent) &&
2161 nla_put_u32(skb, RTA_IIF, mrt->vif_table[c->mfc_parent].dev->ifindex) < 0)
2164 if (!(mp_attr = nla_nest_start(skb, RTA_MULTIPATH)))
2167 for (ct = c->mfc_un.res.minvif; ct < c->mfc_un.res.maxvif; ct++) {
2168 if (VIF_EXISTS(mrt, ct) && c->mfc_un.res.ttls[ct] < 255) {
2169 if (!(nhp = nla_reserve_nohdr(skb, sizeof(*nhp)))) {
2170 nla_nest_cancel(skb, mp_attr);
2174 nhp->rtnh_flags = 0;
2175 nhp->rtnh_hops = c->mfc_un.res.ttls[ct];
2176 nhp->rtnh_ifindex = mrt->vif_table[ct].dev->ifindex;
2177 nhp->rtnh_len = sizeof(*nhp);
2181 nla_nest_end(skb, mp_attr);
2183 mfcs.mfcs_packets = c->mfc_un.res.pkt;
2184 mfcs.mfcs_bytes = c->mfc_un.res.bytes;
2185 mfcs.mfcs_wrong_if = c->mfc_un.res.wrong_if;
2186 if (nla_put(skb, RTA_MFC_STATS, sizeof(mfcs), &mfcs) < 0)
2189 rtm->rtm_type = RTN_MULTICAST;
2193 int ipmr_get_route(struct net *net, struct sk_buff *skb,
2194 __be32 saddr, __be32 daddr,
2195 struct rtmsg *rtm, int nowait)
2197 struct mfc_cache *cache;
2198 struct mr_table *mrt;
2201 mrt = ipmr_get_table(net, RT_TABLE_DEFAULT);
2206 cache = ipmr_cache_find(mrt, saddr, daddr);
2207 if (cache == NULL && skb->dev) {
2208 int vif = ipmr_find_vif(mrt, skb->dev);
2211 cache = ipmr_cache_find_any(mrt, daddr, vif);
2213 if (cache == NULL) {
2214 struct sk_buff *skb2;
2216 struct net_device *dev;
2225 read_lock(&mrt_lock);
2227 vif = ipmr_find_vif(mrt, dev);
2229 read_unlock(&mrt_lock);
2233 skb2 = skb_clone(skb, GFP_ATOMIC);
2235 read_unlock(&mrt_lock);
2240 skb_push(skb2, sizeof(struct iphdr));
2241 skb_reset_network_header(skb2);
2243 iph->ihl = sizeof(struct iphdr) >> 2;
2247 err = ipmr_cache_unresolved(mrt, vif, skb2);
2248 read_unlock(&mrt_lock);
2253 read_lock(&mrt_lock);
2254 if (!nowait && (rtm->rtm_flags & RTM_F_NOTIFY))
2255 cache->mfc_flags |= MFC_NOTIFY;
2256 err = __ipmr_fill_mroute(mrt, skb, cache, rtm);
2257 read_unlock(&mrt_lock);
2262 static int ipmr_fill_mroute(struct mr_table *mrt, struct sk_buff *skb,
2263 u32 portid, u32 seq, struct mfc_cache *c, int cmd,
2266 struct nlmsghdr *nlh;
2270 nlh = nlmsg_put(skb, portid, seq, cmd, sizeof(*rtm), flags);
2274 rtm = nlmsg_data(nlh);
2275 rtm->rtm_family = RTNL_FAMILY_IPMR;
2276 rtm->rtm_dst_len = 32;
2277 rtm->rtm_src_len = 32;
2279 rtm->rtm_table = mrt->id;
2280 if (nla_put_u32(skb, RTA_TABLE, mrt->id))
2281 goto nla_put_failure;
2282 rtm->rtm_type = RTN_MULTICAST;
2283 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
2284 if (c->mfc_flags & MFC_STATIC)
2285 rtm->rtm_protocol = RTPROT_STATIC;
2287 rtm->rtm_protocol = RTPROT_MROUTED;
2290 if (nla_put_be32(skb, RTA_SRC, c->mfc_origin) ||
2291 nla_put_be32(skb, RTA_DST, c->mfc_mcastgrp))
2292 goto nla_put_failure;
2293 err = __ipmr_fill_mroute(mrt, skb, c, rtm);
2294 /* do not break the dump if cache is unresolved */
2295 if (err < 0 && err != -ENOENT)
2296 goto nla_put_failure;
2298 nlmsg_end(skb, nlh);
2302 nlmsg_cancel(skb, nlh);
2306 static size_t mroute_msgsize(bool unresolved, int maxvif)
2309 NLMSG_ALIGN(sizeof(struct rtmsg))
2310 + nla_total_size(4) /* RTA_TABLE */
2311 + nla_total_size(4) /* RTA_SRC */
2312 + nla_total_size(4) /* RTA_DST */
2317 + nla_total_size(4) /* RTA_IIF */
2318 + nla_total_size(0) /* RTA_MULTIPATH */
2319 + maxvif * NLA_ALIGN(sizeof(struct rtnexthop))
2321 + nla_total_size(sizeof(struct rta_mfc_stats))
2327 static void mroute_netlink_event(struct mr_table *mrt, struct mfc_cache *mfc,
2330 struct net *net = read_pnet(&mrt->net);
2331 struct sk_buff *skb;
2334 skb = nlmsg_new(mroute_msgsize(mfc->mfc_parent >= MAXVIFS, mrt->maxvif),
2339 err = ipmr_fill_mroute(mrt, skb, 0, 0, mfc, cmd, 0);
2343 rtnl_notify(skb, net, 0, RTNLGRP_IPV4_MROUTE, NULL, GFP_ATOMIC);
2349 rtnl_set_sk_err(net, RTNLGRP_IPV4_MROUTE, err);
2352 static int ipmr_rtm_dumproute(struct sk_buff *skb, struct netlink_callback *cb)
2354 struct net *net = sock_net(skb->sk);
2355 struct mr_table *mrt;
2356 struct mfc_cache *mfc;
2357 unsigned int t = 0, s_t;
2358 unsigned int h = 0, s_h;
2359 unsigned int e = 0, s_e;
2366 ipmr_for_each_table(mrt, net) {
2371 for (h = s_h; h < MFC_LINES; h++) {
2372 list_for_each_entry_rcu(mfc, &mrt->mfc_cache_array[h], list) {
2375 if (ipmr_fill_mroute(mrt, skb,
2376 NETLINK_CB(cb->skb).portid,
2386 spin_lock_bh(&mfc_unres_lock);
2387 list_for_each_entry(mfc, &mrt->mfc_unres_queue, list) {
2390 if (ipmr_fill_mroute(mrt, skb,
2391 NETLINK_CB(cb->skb).portid,
2395 spin_unlock_bh(&mfc_unres_lock);
2401 spin_unlock_bh(&mfc_unres_lock);
2417 #ifdef CONFIG_PROC_FS
2419 * The /proc interfaces to multicast routing :
2420 * /proc/net/ip_mr_cache & /proc/net/ip_mr_vif
2422 struct ipmr_vif_iter {
2423 struct seq_net_private p;
2424 struct mr_table *mrt;
2428 static struct vif_device *ipmr_vif_seq_idx(struct net *net,
2429 struct ipmr_vif_iter *iter,
2432 struct mr_table *mrt = iter->mrt;
2434 for (iter->ct = 0; iter->ct < mrt->maxvif; ++iter->ct) {
2435 if (!VIF_EXISTS(mrt, iter->ct))
2438 return &mrt->vif_table[iter->ct];
2443 static void *ipmr_vif_seq_start(struct seq_file *seq, loff_t *pos)
2444 __acquires(mrt_lock)
2446 struct ipmr_vif_iter *iter = seq->private;
2447 struct net *net = seq_file_net(seq);
2448 struct mr_table *mrt;
2450 mrt = ipmr_get_table(net, RT_TABLE_DEFAULT);
2452 return ERR_PTR(-ENOENT);
2456 read_lock(&mrt_lock);
2457 return *pos ? ipmr_vif_seq_idx(net, seq->private, *pos - 1)
2461 static void *ipmr_vif_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2463 struct ipmr_vif_iter *iter = seq->private;
2464 struct net *net = seq_file_net(seq);
2465 struct mr_table *mrt = iter->mrt;
2468 if (v == SEQ_START_TOKEN)
2469 return ipmr_vif_seq_idx(net, iter, 0);
2471 while (++iter->ct < mrt->maxvif) {
2472 if (!VIF_EXISTS(mrt, iter->ct))
2474 return &mrt->vif_table[iter->ct];
2479 static void ipmr_vif_seq_stop(struct seq_file *seq, void *v)
2480 __releases(mrt_lock)
2482 read_unlock(&mrt_lock);
2485 static int ipmr_vif_seq_show(struct seq_file *seq, void *v)
2487 struct ipmr_vif_iter *iter = seq->private;
2488 struct mr_table *mrt = iter->mrt;
2490 if (v == SEQ_START_TOKEN) {
2492 "Interface BytesIn PktsIn BytesOut PktsOut Flags Local Remote\n");
2494 const struct vif_device *vif = v;
2495 const char *name = vif->dev ? vif->dev->name : "none";
2498 "%2Zd %-10s %8ld %7ld %8ld %7ld %05X %08X %08X\n",
2499 vif - mrt->vif_table,
2500 name, vif->bytes_in, vif->pkt_in,
2501 vif->bytes_out, vif->pkt_out,
2502 vif->flags, vif->local, vif->remote);
2507 static const struct seq_operations ipmr_vif_seq_ops = {
2508 .start = ipmr_vif_seq_start,
2509 .next = ipmr_vif_seq_next,
2510 .stop = ipmr_vif_seq_stop,
2511 .show = ipmr_vif_seq_show,
2514 static int ipmr_vif_open(struct inode *inode, struct file *file)
2516 return seq_open_net(inode, file, &ipmr_vif_seq_ops,
2517 sizeof(struct ipmr_vif_iter));
2520 static const struct file_operations ipmr_vif_fops = {
2521 .owner = THIS_MODULE,
2522 .open = ipmr_vif_open,
2524 .llseek = seq_lseek,
2525 .release = seq_release_net,
2528 struct ipmr_mfc_iter {
2529 struct seq_net_private p;
2530 struct mr_table *mrt;
2531 struct list_head *cache;
2536 static struct mfc_cache *ipmr_mfc_seq_idx(struct net *net,
2537 struct ipmr_mfc_iter *it, loff_t pos)
2539 struct mr_table *mrt = it->mrt;
2540 struct mfc_cache *mfc;
2543 for (it->ct = 0; it->ct < MFC_LINES; it->ct++) {
2544 it->cache = &mrt->mfc_cache_array[it->ct];
2545 list_for_each_entry_rcu(mfc, it->cache, list)
2551 spin_lock_bh(&mfc_unres_lock);
2552 it->cache = &mrt->mfc_unres_queue;
2553 list_for_each_entry(mfc, it->cache, list)
2556 spin_unlock_bh(&mfc_unres_lock);
2563 static void *ipmr_mfc_seq_start(struct seq_file *seq, loff_t *pos)
2565 struct ipmr_mfc_iter *it = seq->private;
2566 struct net *net = seq_file_net(seq);
2567 struct mr_table *mrt;
2569 mrt = ipmr_get_table(net, RT_TABLE_DEFAULT);
2571 return ERR_PTR(-ENOENT);
2576 return *pos ? ipmr_mfc_seq_idx(net, seq->private, *pos - 1)
2580 static void *ipmr_mfc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2582 struct mfc_cache *mfc = v;
2583 struct ipmr_mfc_iter *it = seq->private;
2584 struct net *net = seq_file_net(seq);
2585 struct mr_table *mrt = it->mrt;
2589 if (v == SEQ_START_TOKEN)
2590 return ipmr_mfc_seq_idx(net, seq->private, 0);
2592 if (mfc->list.next != it->cache)
2593 return list_entry(mfc->list.next, struct mfc_cache, list);
2595 if (it->cache == &mrt->mfc_unres_queue)
2598 BUG_ON(it->cache != &mrt->mfc_cache_array[it->ct]);
2600 while (++it->ct < MFC_LINES) {
2601 it->cache = &mrt->mfc_cache_array[it->ct];
2602 if (list_empty(it->cache))
2604 return list_first_entry(it->cache, struct mfc_cache, list);
2607 /* exhausted cache_array, show unresolved */
2609 it->cache = &mrt->mfc_unres_queue;
2612 spin_lock_bh(&mfc_unres_lock);
2613 if (!list_empty(it->cache))
2614 return list_first_entry(it->cache, struct mfc_cache, list);
2617 spin_unlock_bh(&mfc_unres_lock);
2623 static void ipmr_mfc_seq_stop(struct seq_file *seq, void *v)
2625 struct ipmr_mfc_iter *it = seq->private;
2626 struct mr_table *mrt = it->mrt;
2628 if (it->cache == &mrt->mfc_unres_queue)
2629 spin_unlock_bh(&mfc_unres_lock);
2630 else if (it->cache == &mrt->mfc_cache_array[it->ct])
2634 static int ipmr_mfc_seq_show(struct seq_file *seq, void *v)
2638 if (v == SEQ_START_TOKEN) {
2640 "Group Origin Iif Pkts Bytes Wrong Oifs\n");
2642 const struct mfc_cache *mfc = v;
2643 const struct ipmr_mfc_iter *it = seq->private;
2644 const struct mr_table *mrt = it->mrt;
2646 seq_printf(seq, "%08X %08X %-3hd",
2647 (__force u32) mfc->mfc_mcastgrp,
2648 (__force u32) mfc->mfc_origin,
2651 if (it->cache != &mrt->mfc_unres_queue) {
2652 seq_printf(seq, " %8lu %8lu %8lu",
2653 mfc->mfc_un.res.pkt,
2654 mfc->mfc_un.res.bytes,
2655 mfc->mfc_un.res.wrong_if);
2656 for (n = mfc->mfc_un.res.minvif;
2657 n < mfc->mfc_un.res.maxvif; n++) {
2658 if (VIF_EXISTS(mrt, n) &&
2659 mfc->mfc_un.res.ttls[n] < 255)
2662 n, mfc->mfc_un.res.ttls[n]);
2665 /* unresolved mfc_caches don't contain
2666 * pkt, bytes and wrong_if values
2668 seq_printf(seq, " %8lu %8lu %8lu", 0ul, 0ul, 0ul);
2670 seq_putc(seq, '\n');
2675 static const struct seq_operations ipmr_mfc_seq_ops = {
2676 .start = ipmr_mfc_seq_start,
2677 .next = ipmr_mfc_seq_next,
2678 .stop = ipmr_mfc_seq_stop,
2679 .show = ipmr_mfc_seq_show,
2682 static int ipmr_mfc_open(struct inode *inode, struct file *file)
2684 return seq_open_net(inode, file, &ipmr_mfc_seq_ops,
2685 sizeof(struct ipmr_mfc_iter));
2688 static const struct file_operations ipmr_mfc_fops = {
2689 .owner = THIS_MODULE,
2690 .open = ipmr_mfc_open,
2692 .llseek = seq_lseek,
2693 .release = seq_release_net,
2697 #ifdef CONFIG_IP_PIMSM_V2
2698 static const struct net_protocol pim_protocol = {
2706 * Setup for IP multicast routing
2708 static int __net_init ipmr_net_init(struct net *net)
2712 err = ipmr_rules_init(net);
2716 #ifdef CONFIG_PROC_FS
2718 if (!proc_create("ip_mr_vif", 0, net->proc_net, &ipmr_vif_fops))
2720 if (!proc_create("ip_mr_cache", 0, net->proc_net, &ipmr_mfc_fops))
2721 goto proc_cache_fail;
2725 #ifdef CONFIG_PROC_FS
2727 remove_proc_entry("ip_mr_vif", net->proc_net);
2729 ipmr_rules_exit(net);
2735 static void __net_exit ipmr_net_exit(struct net *net)
2737 #ifdef CONFIG_PROC_FS
2738 remove_proc_entry("ip_mr_cache", net->proc_net);
2739 remove_proc_entry("ip_mr_vif", net->proc_net);
2741 ipmr_rules_exit(net);
2744 static struct pernet_operations ipmr_net_ops = {
2745 .init = ipmr_net_init,
2746 .exit = ipmr_net_exit,
2749 int __init ip_mr_init(void)
2753 mrt_cachep = kmem_cache_create("ip_mrt_cache",
2754 sizeof(struct mfc_cache),
2755 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC,
2760 err = register_pernet_subsys(&ipmr_net_ops);
2762 goto reg_pernet_fail;
2764 err = register_netdevice_notifier(&ip_mr_notifier);
2766 goto reg_notif_fail;
2767 #ifdef CONFIG_IP_PIMSM_V2
2768 if (inet_add_protocol(&pim_protocol, IPPROTO_PIM) < 0) {
2769 pr_err("%s: can't add PIM protocol\n", __func__);
2771 goto add_proto_fail;
2774 rtnl_register(RTNL_FAMILY_IPMR, RTM_GETROUTE,
2775 NULL, ipmr_rtm_dumproute, NULL);
2778 #ifdef CONFIG_IP_PIMSM_V2
2780 unregister_netdevice_notifier(&ip_mr_notifier);
2783 unregister_pernet_subsys(&ipmr_net_ops);
2785 kmem_cache_destroy(mrt_cachep);