2 * Linux IPv6 multicast routing support for BSD pim6sd
3 * Based on net/ipv4/ipmr.c.
5 * (c) 2004 Mickael Hoerdt, <hoerdt@clarinet.u-strasbg.fr>
6 * LSIIT Laboratory, Strasbourg, France
7 * (c) 2004 Jean-Philippe Andriot, <jean-philippe.andriot@6WIND.com>
9 * Copyright (C)2007,2008 USAGI/WIDE Project
10 * YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
19 #include <asm/system.h>
20 #include <asm/uaccess.h>
21 #include <linux/types.h>
22 #include <linux/sched.h>
23 #include <linux/errno.h>
24 #include <linux/timer.h>
26 #include <linux/kernel.h>
27 #include <linux/fcntl.h>
28 #include <linux/stat.h>
29 #include <linux/socket.h>
30 #include <linux/inet.h>
31 #include <linux/netdevice.h>
32 #include <linux/inetdevice.h>
33 #include <linux/proc_fs.h>
34 #include <linux/seq_file.h>
35 #include <linux/init.h>
36 #include <linux/slab.h>
37 #include <net/protocol.h>
38 #include <linux/skbuff.h>
41 #include <linux/notifier.h>
42 #include <linux/if_arp.h>
43 #include <net/checksum.h>
44 #include <net/netlink.h>
45 #include <net/fib_rules.h>
48 #include <net/ip6_route.h>
49 #include <linux/mroute6.h>
50 #include <linux/pim.h>
51 #include <net/addrconf.h>
52 #include <linux/netfilter_ipv6.h>
53 #include <net/ip6_checksum.h>
56 struct list_head list
;
61 struct sock
*mroute6_sk
;
62 struct timer_list ipmr_expire_timer
;
63 struct list_head mfc6_unres_queue
;
64 struct list_head mfc6_cache_array
[MFC6_LINES
];
65 struct mif_device vif6_table
[MAXMIFS
];
67 atomic_t cache_resolve_queue_len
;
70 #ifdef CONFIG_IPV6_PIMSM_V2
71 int mroute_reg_vif_num
;
76 struct fib_rule common
;
80 struct mr6_table
*mrt
;
83 /* Big lock, protecting vif table, mrt cache and mroute socket state.
84 Note that the changes are semaphored via rtnl_lock.
87 static DEFINE_RWLOCK(mrt_lock
);
90 * Multicast router control variables
93 #define MIF_EXISTS(_mrt, _idx) ((_mrt)->vif6_table[_idx].dev != NULL)
95 /* Special spinlock for queue of unresolved entries */
96 static DEFINE_SPINLOCK(mfc_unres_lock
);
98 /* We return to original Alan's scheme. Hash table of resolved
99 entries is changed only in process context and protected
100 with weak lock mrt_lock. Queue of unresolved entries is protected
101 with strong spinlock mfc_unres_lock.
103 In this case data path is free of exclusive locks at all.
106 static struct kmem_cache
*mrt_cachep __read_mostly
;
108 static struct mr6_table
*ip6mr_new_table(struct net
*net
, u32 id
);
109 static void ip6mr_free_table(struct mr6_table
*mrt
);
111 static int ip6_mr_forward(struct net
*net
, struct mr6_table
*mrt
,
112 struct sk_buff
*skb
, struct mfc6_cache
*cache
);
113 static int ip6mr_cache_report(struct mr6_table
*mrt
, struct sk_buff
*pkt
,
114 mifi_t mifi
, int assert);
115 static int __ip6mr_fill_mroute(struct mr6_table
*mrt
, struct sk_buff
*skb
,
116 struct mfc6_cache
*c
, struct rtmsg
*rtm
);
117 static int ip6mr_rtm_dumproute(struct sk_buff
*skb
,
118 struct netlink_callback
*cb
);
119 static void mroute_clean_tables(struct mr6_table
*mrt
);
120 static void ipmr_expire_process(unsigned long arg
);
122 #ifdef CONFIG_IPV6_MROUTE_MULTIPLE_TABLES
123 #define ip6mr_for_each_table(mrt, net) \
124 list_for_each_entry_rcu(mrt, &net->ipv6.mr6_tables, list)
126 static struct mr6_table
*ip6mr_get_table(struct net
*net
, u32 id
)
128 struct mr6_table
*mrt
;
130 ip6mr_for_each_table(mrt
, net
) {
137 static int ip6mr_fib_lookup(struct net
*net
, struct flowi
*flp
,
138 struct mr6_table
**mrt
)
140 struct ip6mr_result res
;
141 struct fib_lookup_arg arg
= { .result
= &res
, };
144 err
= fib_rules_lookup(net
->ipv6
.mr6_rules_ops
, flp
, 0, &arg
);
151 static int ip6mr_rule_action(struct fib_rule
*rule
, struct flowi
*flp
,
152 int flags
, struct fib_lookup_arg
*arg
)
154 struct ip6mr_result
*res
= arg
->result
;
155 struct mr6_table
*mrt
;
157 switch (rule
->action
) {
160 case FR_ACT_UNREACHABLE
:
162 case FR_ACT_PROHIBIT
:
164 case FR_ACT_BLACKHOLE
:
169 mrt
= ip6mr_get_table(rule
->fr_net
, rule
->table
);
176 static int ip6mr_rule_match(struct fib_rule
*rule
, struct flowi
*flp
, int flags
)
181 static const struct nla_policy ip6mr_rule_policy
[FRA_MAX
+ 1] = {
185 static int ip6mr_rule_configure(struct fib_rule
*rule
, struct sk_buff
*skb
,
186 struct fib_rule_hdr
*frh
, struct nlattr
**tb
)
191 static int ip6mr_rule_compare(struct fib_rule
*rule
, struct fib_rule_hdr
*frh
,
197 static int ip6mr_rule_fill(struct fib_rule
*rule
, struct sk_buff
*skb
,
198 struct fib_rule_hdr
*frh
)
206 static const struct fib_rules_ops __net_initdata ip6mr_rules_ops_template
= {
207 .family
= RTNL_FAMILY_IP6MR
,
208 .rule_size
= sizeof(struct ip6mr_rule
),
209 .addr_size
= sizeof(struct in6_addr
),
210 .action
= ip6mr_rule_action
,
211 .match
= ip6mr_rule_match
,
212 .configure
= ip6mr_rule_configure
,
213 .compare
= ip6mr_rule_compare
,
214 .default_pref
= fib_default_rule_pref
,
215 .fill
= ip6mr_rule_fill
,
216 .nlgroup
= RTNLGRP_IPV6_RULE
,
217 .policy
= ip6mr_rule_policy
,
218 .owner
= THIS_MODULE
,
221 static int __net_init
ip6mr_rules_init(struct net
*net
)
223 struct fib_rules_ops
*ops
;
224 struct mr6_table
*mrt
;
227 ops
= fib_rules_register(&ip6mr_rules_ops_template
, net
);
231 INIT_LIST_HEAD(&net
->ipv6
.mr6_tables
);
233 mrt
= ip6mr_new_table(net
, RT6_TABLE_DFLT
);
239 err
= fib_default_rule_add(ops
, 0x7fff, RT6_TABLE_DFLT
, 0);
243 net
->ipv6
.mr6_rules_ops
= ops
;
249 fib_rules_unregister(ops
);
253 static void __net_exit
ip6mr_rules_exit(struct net
*net
)
255 struct mr6_table
*mrt
, *next
;
257 list_for_each_entry_safe(mrt
, next
, &net
->ipv6
.mr6_tables
, list
) {
258 list_del(&mrt
->list
);
259 ip6mr_free_table(mrt
);
261 fib_rules_unregister(net
->ipv6
.mr6_rules_ops
);
264 #define ip6mr_for_each_table(mrt, net) \
265 for (mrt = net->ipv6.mrt6; mrt; mrt = NULL)
267 static struct mr6_table
*ip6mr_get_table(struct net
*net
, u32 id
)
269 return net
->ipv6
.mrt6
;
272 static int ip6mr_fib_lookup(struct net
*net
, struct flowi
*flp
,
273 struct mr6_table
**mrt
)
275 *mrt
= net
->ipv6
.mrt6
;
279 static int __net_init
ip6mr_rules_init(struct net
*net
)
281 net
->ipv6
.mrt6
= ip6mr_new_table(net
, RT6_TABLE_DFLT
);
282 return net
->ipv6
.mrt6
? 0 : -ENOMEM
;
285 static void __net_exit
ip6mr_rules_exit(struct net
*net
)
287 ip6mr_free_table(net
->ipv6
.mrt6
);
291 static struct mr6_table
*ip6mr_new_table(struct net
*net
, u32 id
)
293 struct mr6_table
*mrt
;
296 mrt
= ip6mr_get_table(net
, id
);
300 mrt
= kzalloc(sizeof(*mrt
), GFP_KERNEL
);
304 write_pnet(&mrt
->net
, net
);
306 /* Forwarding cache */
307 for (i
= 0; i
< MFC6_LINES
; i
++)
308 INIT_LIST_HEAD(&mrt
->mfc6_cache_array
[i
]);
310 INIT_LIST_HEAD(&mrt
->mfc6_unres_queue
);
312 setup_timer(&mrt
->ipmr_expire_timer
, ipmr_expire_process
,
315 #ifdef CONFIG_IPV6_PIMSM_V2
316 mrt
->mroute_reg_vif_num
= -1;
318 #ifdef CONFIG_IPV6_MROUTE_MULTIPLE_TABLES
319 list_add_tail_rcu(&mrt
->list
, &net
->ipv6
.mr6_tables
);
324 static void ip6mr_free_table(struct mr6_table
*mrt
)
326 del_timer(&mrt
->ipmr_expire_timer
);
327 mroute_clean_tables(mrt
);
331 #ifdef CONFIG_PROC_FS
333 struct ipmr_mfc_iter
{
334 struct seq_net_private p
;
335 struct mr6_table
*mrt
;
336 struct list_head
*cache
;
341 static struct mfc6_cache
*ipmr_mfc_seq_idx(struct net
*net
,
342 struct ipmr_mfc_iter
*it
, loff_t pos
)
344 struct mr6_table
*mrt
= it
->mrt
;
345 struct mfc6_cache
*mfc
;
347 read_lock(&mrt_lock
);
348 for (it
->ct
= 0; it
->ct
< MFC6_LINES
; it
->ct
++) {
349 it
->cache
= &mrt
->mfc6_cache_array
[it
->ct
];
350 list_for_each_entry(mfc
, it
->cache
, list
)
354 read_unlock(&mrt_lock
);
356 spin_lock_bh(&mfc_unres_lock
);
357 it
->cache
= &mrt
->mfc6_unres_queue
;
358 list_for_each_entry(mfc
, it
->cache
, list
)
361 spin_unlock_bh(&mfc_unres_lock
);
368 * The /proc interfaces to multicast routing /proc/ip6_mr_cache /proc/ip6_mr_vif
371 struct ipmr_vif_iter
{
372 struct seq_net_private p
;
373 struct mr6_table
*mrt
;
377 static struct mif_device
*ip6mr_vif_seq_idx(struct net
*net
,
378 struct ipmr_vif_iter
*iter
,
381 struct mr6_table
*mrt
= iter
->mrt
;
383 for (iter
->ct
= 0; iter
->ct
< mrt
->maxvif
; ++iter
->ct
) {
384 if (!MIF_EXISTS(mrt
, iter
->ct
))
387 return &mrt
->vif6_table
[iter
->ct
];
392 static void *ip6mr_vif_seq_start(struct seq_file
*seq
, loff_t
*pos
)
395 struct ipmr_vif_iter
*iter
= seq
->private;
396 struct net
*net
= seq_file_net(seq
);
397 struct mr6_table
*mrt
;
399 mrt
= ip6mr_get_table(net
, RT6_TABLE_DFLT
);
401 return ERR_PTR(-ENOENT
);
405 read_lock(&mrt_lock
);
406 return *pos
? ip6mr_vif_seq_idx(net
, seq
->private, *pos
- 1)
410 static void *ip6mr_vif_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
412 struct ipmr_vif_iter
*iter
= seq
->private;
413 struct net
*net
= seq_file_net(seq
);
414 struct mr6_table
*mrt
= iter
->mrt
;
417 if (v
== SEQ_START_TOKEN
)
418 return ip6mr_vif_seq_idx(net
, iter
, 0);
420 while (++iter
->ct
< mrt
->maxvif
) {
421 if (!MIF_EXISTS(mrt
, iter
->ct
))
423 return &mrt
->vif6_table
[iter
->ct
];
428 static void ip6mr_vif_seq_stop(struct seq_file
*seq
, void *v
)
431 read_unlock(&mrt_lock
);
434 static int ip6mr_vif_seq_show(struct seq_file
*seq
, void *v
)
436 struct ipmr_vif_iter
*iter
= seq
->private;
437 struct mr6_table
*mrt
= iter
->mrt
;
439 if (v
== SEQ_START_TOKEN
) {
441 "Interface BytesIn PktsIn BytesOut PktsOut Flags\n");
443 const struct mif_device
*vif
= v
;
444 const char *name
= vif
->dev
? vif
->dev
->name
: "none";
447 "%2td %-10s %8ld %7ld %8ld %7ld %05X\n",
448 vif
- mrt
->vif6_table
,
449 name
, vif
->bytes_in
, vif
->pkt_in
,
450 vif
->bytes_out
, vif
->pkt_out
,
456 static const struct seq_operations ip6mr_vif_seq_ops
= {
457 .start
= ip6mr_vif_seq_start
,
458 .next
= ip6mr_vif_seq_next
,
459 .stop
= ip6mr_vif_seq_stop
,
460 .show
= ip6mr_vif_seq_show
,
463 static int ip6mr_vif_open(struct inode
*inode
, struct file
*file
)
465 return seq_open_net(inode
, file
, &ip6mr_vif_seq_ops
,
466 sizeof(struct ipmr_vif_iter
));
469 static const struct file_operations ip6mr_vif_fops
= {
470 .owner
= THIS_MODULE
,
471 .open
= ip6mr_vif_open
,
474 .release
= seq_release_net
,
477 static void *ipmr_mfc_seq_start(struct seq_file
*seq
, loff_t
*pos
)
479 struct ipmr_mfc_iter
*it
= seq
->private;
480 struct net
*net
= seq_file_net(seq
);
481 struct mr6_table
*mrt
;
483 mrt
= ip6mr_get_table(net
, RT6_TABLE_DFLT
);
485 return ERR_PTR(-ENOENT
);
488 return *pos
? ipmr_mfc_seq_idx(net
, seq
->private, *pos
- 1)
492 static void *ipmr_mfc_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
494 struct mfc6_cache
*mfc
= v
;
495 struct ipmr_mfc_iter
*it
= seq
->private;
496 struct net
*net
= seq_file_net(seq
);
497 struct mr6_table
*mrt
= it
->mrt
;
501 if (v
== SEQ_START_TOKEN
)
502 return ipmr_mfc_seq_idx(net
, seq
->private, 0);
504 if (mfc
->list
.next
!= it
->cache
)
505 return list_entry(mfc
->list
.next
, struct mfc6_cache
, list
);
507 if (it
->cache
== &mrt
->mfc6_unres_queue
)
510 BUG_ON(it
->cache
!= &mrt
->mfc6_cache_array
[it
->ct
]);
512 while (++it
->ct
< MFC6_LINES
) {
513 it
->cache
= &mrt
->mfc6_cache_array
[it
->ct
];
514 if (list_empty(it
->cache
))
516 return list_first_entry(it
->cache
, struct mfc6_cache
, list
);
519 /* exhausted cache_array, show unresolved */
520 read_unlock(&mrt_lock
);
521 it
->cache
= &mrt
->mfc6_unres_queue
;
524 spin_lock_bh(&mfc_unres_lock
);
525 if (!list_empty(it
->cache
))
526 return list_first_entry(it
->cache
, struct mfc6_cache
, list
);
529 spin_unlock_bh(&mfc_unres_lock
);
535 static void ipmr_mfc_seq_stop(struct seq_file
*seq
, void *v
)
537 struct ipmr_mfc_iter
*it
= seq
->private;
538 struct mr6_table
*mrt
= it
->mrt
;
540 if (it
->cache
== &mrt
->mfc6_unres_queue
)
541 spin_unlock_bh(&mfc_unres_lock
);
542 else if (it
->cache
== mrt
->mfc6_cache_array
)
543 read_unlock(&mrt_lock
);
546 static int ipmr_mfc_seq_show(struct seq_file
*seq
, void *v
)
550 if (v
== SEQ_START_TOKEN
) {
554 "Iif Pkts Bytes Wrong Oifs\n");
556 const struct mfc6_cache
*mfc
= v
;
557 const struct ipmr_mfc_iter
*it
= seq
->private;
558 struct mr6_table
*mrt
= it
->mrt
;
560 seq_printf(seq
, "%pI6 %pI6 %-3hd",
561 &mfc
->mf6c_mcastgrp
, &mfc
->mf6c_origin
,
564 if (it
->cache
!= &mrt
->mfc6_unres_queue
) {
565 seq_printf(seq
, " %8lu %8lu %8lu",
567 mfc
->mfc_un
.res
.bytes
,
568 mfc
->mfc_un
.res
.wrong_if
);
569 for (n
= mfc
->mfc_un
.res
.minvif
;
570 n
< mfc
->mfc_un
.res
.maxvif
; n
++) {
571 if (MIF_EXISTS(mrt
, n
) &&
572 mfc
->mfc_un
.res
.ttls
[n
] < 255)
575 n
, mfc
->mfc_un
.res
.ttls
[n
]);
578 /* unresolved mfc_caches don't contain
579 * pkt, bytes and wrong_if values
581 seq_printf(seq
, " %8lu %8lu %8lu", 0ul, 0ul, 0ul);
588 static const struct seq_operations ipmr_mfc_seq_ops
= {
589 .start
= ipmr_mfc_seq_start
,
590 .next
= ipmr_mfc_seq_next
,
591 .stop
= ipmr_mfc_seq_stop
,
592 .show
= ipmr_mfc_seq_show
,
595 static int ipmr_mfc_open(struct inode
*inode
, struct file
*file
)
597 return seq_open_net(inode
, file
, &ipmr_mfc_seq_ops
,
598 sizeof(struct ipmr_mfc_iter
));
601 static const struct file_operations ip6mr_mfc_fops
= {
602 .owner
= THIS_MODULE
,
603 .open
= ipmr_mfc_open
,
606 .release
= seq_release_net
,
610 #ifdef CONFIG_IPV6_PIMSM_V2
612 static int pim6_rcv(struct sk_buff
*skb
)
614 struct pimreghdr
*pim
;
615 struct ipv6hdr
*encap
;
616 struct net_device
*reg_dev
= NULL
;
617 struct net
*net
= dev_net(skb
->dev
);
618 struct mr6_table
*mrt
;
620 .iif
= skb
->dev
->ifindex
,
625 if (!pskb_may_pull(skb
, sizeof(*pim
) + sizeof(*encap
)))
628 pim
= (struct pimreghdr
*)skb_transport_header(skb
);
629 if (pim
->type
!= ((PIM_VERSION
<< 4) | PIM_REGISTER
) ||
630 (pim
->flags
& PIM_NULL_REGISTER
) ||
631 (csum_ipv6_magic(&ipv6_hdr(skb
)->saddr
, &ipv6_hdr(skb
)->daddr
,
632 sizeof(*pim
), IPPROTO_PIM
,
633 csum_partial((void *)pim
, sizeof(*pim
), 0)) &&
634 csum_fold(skb_checksum(skb
, 0, skb
->len
, 0))))
637 /* check if the inner packet is destined to mcast group */
638 encap
= (struct ipv6hdr
*)(skb_transport_header(skb
) +
641 if (!ipv6_addr_is_multicast(&encap
->daddr
) ||
642 encap
->payload_len
== 0 ||
643 ntohs(encap
->payload_len
) + sizeof(*pim
) > skb
->len
)
646 if (ip6mr_fib_lookup(net
, &fl
, &mrt
) < 0)
648 reg_vif_num
= mrt
->mroute_reg_vif_num
;
650 read_lock(&mrt_lock
);
651 if (reg_vif_num
>= 0)
652 reg_dev
= mrt
->vif6_table
[reg_vif_num
].dev
;
655 read_unlock(&mrt_lock
);
660 skb
->mac_header
= skb
->network_header
;
661 skb_pull(skb
, (u8
*)encap
- skb
->data
);
662 skb_reset_network_header(skb
);
663 skb
->protocol
= htons(ETH_P_IPV6
);
665 skb
->pkt_type
= PACKET_HOST
;
667 skb_tunnel_rx(skb
, reg_dev
);
677 static const struct inet6_protocol pim6_protocol
= {
681 /* Service routines creating virtual interfaces: PIMREG */
683 static netdev_tx_t
reg_vif_xmit(struct sk_buff
*skb
,
684 struct net_device
*dev
)
686 struct net
*net
= dev_net(dev
);
687 struct mr6_table
*mrt
;
695 err
= ip6mr_fib_lookup(net
, &fl
, &mrt
);
699 read_lock(&mrt_lock
);
700 dev
->stats
.tx_bytes
+= skb
->len
;
701 dev
->stats
.tx_packets
++;
702 ip6mr_cache_report(mrt
, skb
, mrt
->mroute_reg_vif_num
, MRT6MSG_WHOLEPKT
);
703 read_unlock(&mrt_lock
);
708 static const struct net_device_ops reg_vif_netdev_ops
= {
709 .ndo_start_xmit
= reg_vif_xmit
,
712 static void reg_vif_setup(struct net_device
*dev
)
714 dev
->type
= ARPHRD_PIMREG
;
715 dev
->mtu
= 1500 - sizeof(struct ipv6hdr
) - 8;
716 dev
->flags
= IFF_NOARP
;
717 dev
->netdev_ops
= ®_vif_netdev_ops
;
718 dev
->destructor
= free_netdev
;
719 dev
->features
|= NETIF_F_NETNS_LOCAL
;
722 static struct net_device
*ip6mr_reg_vif(struct net
*net
, struct mr6_table
*mrt
)
724 struct net_device
*dev
;
727 if (mrt
->id
== RT6_TABLE_DFLT
)
728 sprintf(name
, "pim6reg");
730 sprintf(name
, "pim6reg%u", mrt
->id
);
732 dev
= alloc_netdev(0, name
, reg_vif_setup
);
736 dev_net_set(dev
, net
);
738 if (register_netdevice(dev
)) {
751 /* allow the register to be completed before unregistering. */
755 unregister_netdevice(dev
);
764 static int mif6_delete(struct mr6_table
*mrt
, int vifi
, struct list_head
*head
)
766 struct mif_device
*v
;
767 struct net_device
*dev
;
768 struct inet6_dev
*in6_dev
;
770 if (vifi
< 0 || vifi
>= mrt
->maxvif
)
771 return -EADDRNOTAVAIL
;
773 v
= &mrt
->vif6_table
[vifi
];
775 write_lock_bh(&mrt_lock
);
780 write_unlock_bh(&mrt_lock
);
781 return -EADDRNOTAVAIL
;
784 #ifdef CONFIG_IPV6_PIMSM_V2
785 if (vifi
== mrt
->mroute_reg_vif_num
)
786 mrt
->mroute_reg_vif_num
= -1;
789 if (vifi
+ 1 == mrt
->maxvif
) {
791 for (tmp
= vifi
- 1; tmp
>= 0; tmp
--) {
792 if (MIF_EXISTS(mrt
, tmp
))
795 mrt
->maxvif
= tmp
+ 1;
798 write_unlock_bh(&mrt_lock
);
800 dev_set_allmulti(dev
, -1);
802 in6_dev
= __in6_dev_get(dev
);
804 in6_dev
->cnf
.mc_forwarding
--;
806 if (v
->flags
& MIFF_REGISTER
)
807 unregister_netdevice_queue(dev
, head
);
813 static inline void ip6mr_cache_free(struct mfc6_cache
*c
)
815 kmem_cache_free(mrt_cachep
, c
);
818 /* Destroy an unresolved cache entry, killing queued skbs
819 and reporting error to netlink readers.
822 static void ip6mr_destroy_unres(struct mr6_table
*mrt
, struct mfc6_cache
*c
)
824 struct net
*net
= read_pnet(&mrt
->net
);
827 atomic_dec(&mrt
->cache_resolve_queue_len
);
829 while((skb
= skb_dequeue(&c
->mfc_un
.unres
.unresolved
)) != NULL
) {
830 if (ipv6_hdr(skb
)->version
== 0) {
831 struct nlmsghdr
*nlh
= (struct nlmsghdr
*)skb_pull(skb
, sizeof(struct ipv6hdr
));
832 nlh
->nlmsg_type
= NLMSG_ERROR
;
833 nlh
->nlmsg_len
= NLMSG_LENGTH(sizeof(struct nlmsgerr
));
834 skb_trim(skb
, nlh
->nlmsg_len
);
835 ((struct nlmsgerr
*)NLMSG_DATA(nlh
))->error
= -ETIMEDOUT
;
836 rtnl_unicast(skb
, net
, NETLINK_CB(skb
).pid
);
845 /* Timer process for all the unresolved queue. */
847 static void ipmr_do_expire_process(struct mr6_table
*mrt
)
849 unsigned long now
= jiffies
;
850 unsigned long expires
= 10 * HZ
;
851 struct mfc6_cache
*c
, *next
;
853 list_for_each_entry_safe(c
, next
, &mrt
->mfc6_unres_queue
, list
) {
854 if (time_after(c
->mfc_un
.unres
.expires
, now
)) {
856 unsigned long interval
= c
->mfc_un
.unres
.expires
- now
;
857 if (interval
< expires
)
863 ip6mr_destroy_unres(mrt
, c
);
866 if (!list_empty(&mrt
->mfc6_unres_queue
))
867 mod_timer(&mrt
->ipmr_expire_timer
, jiffies
+ expires
);
870 static void ipmr_expire_process(unsigned long arg
)
872 struct mr6_table
*mrt
= (struct mr6_table
*)arg
;
874 if (!spin_trylock(&mfc_unres_lock
)) {
875 mod_timer(&mrt
->ipmr_expire_timer
, jiffies
+ 1);
879 if (!list_empty(&mrt
->mfc6_unres_queue
))
880 ipmr_do_expire_process(mrt
);
882 spin_unlock(&mfc_unres_lock
);
885 /* Fill oifs list. It is called under write locked mrt_lock. */
887 static void ip6mr_update_thresholds(struct mr6_table
*mrt
, struct mfc6_cache
*cache
,
892 cache
->mfc_un
.res
.minvif
= MAXMIFS
;
893 cache
->mfc_un
.res
.maxvif
= 0;
894 memset(cache
->mfc_un
.res
.ttls
, 255, MAXMIFS
);
896 for (vifi
= 0; vifi
< mrt
->maxvif
; vifi
++) {
897 if (MIF_EXISTS(mrt
, vifi
) &&
898 ttls
[vifi
] && ttls
[vifi
] < 255) {
899 cache
->mfc_un
.res
.ttls
[vifi
] = ttls
[vifi
];
900 if (cache
->mfc_un
.res
.minvif
> vifi
)
901 cache
->mfc_un
.res
.minvif
= vifi
;
902 if (cache
->mfc_un
.res
.maxvif
<= vifi
)
903 cache
->mfc_un
.res
.maxvif
= vifi
+ 1;
908 static int mif6_add(struct net
*net
, struct mr6_table
*mrt
,
909 struct mif6ctl
*vifc
, int mrtsock
)
911 int vifi
= vifc
->mif6c_mifi
;
912 struct mif_device
*v
= &mrt
->vif6_table
[vifi
];
913 struct net_device
*dev
;
914 struct inet6_dev
*in6_dev
;
918 if (MIF_EXISTS(mrt
, vifi
))
921 switch (vifc
->mif6c_flags
) {
922 #ifdef CONFIG_IPV6_PIMSM_V2
925 * Special Purpose VIF in PIM
926 * All the packets will be sent to the daemon
928 if (mrt
->mroute_reg_vif_num
>= 0)
930 dev
= ip6mr_reg_vif(net
, mrt
);
933 err
= dev_set_allmulti(dev
, 1);
935 unregister_netdevice(dev
);
942 dev
= dev_get_by_index(net
, vifc
->mif6c_pifi
);
944 return -EADDRNOTAVAIL
;
945 err
= dev_set_allmulti(dev
, 1);
955 in6_dev
= __in6_dev_get(dev
);
957 in6_dev
->cnf
.mc_forwarding
++;
960 * Fill in the VIF structures
962 v
->rate_limit
= vifc
->vifc_rate_limit
;
963 v
->flags
= vifc
->mif6c_flags
;
965 v
->flags
|= VIFF_STATIC
;
966 v
->threshold
= vifc
->vifc_threshold
;
971 v
->link
= dev
->ifindex
;
972 if (v
->flags
& MIFF_REGISTER
)
973 v
->link
= dev
->iflink
;
975 /* And finish update writing critical data */
976 write_lock_bh(&mrt_lock
);
978 #ifdef CONFIG_IPV6_PIMSM_V2
979 if (v
->flags
& MIFF_REGISTER
)
980 mrt
->mroute_reg_vif_num
= vifi
;
982 if (vifi
+ 1 > mrt
->maxvif
)
983 mrt
->maxvif
= vifi
+ 1;
984 write_unlock_bh(&mrt_lock
);
988 static struct mfc6_cache
*ip6mr_cache_find(struct mr6_table
*mrt
,
989 struct in6_addr
*origin
,
990 struct in6_addr
*mcastgrp
)
992 int line
= MFC6_HASH(mcastgrp
, origin
);
993 struct mfc6_cache
*c
;
995 list_for_each_entry(c
, &mrt
->mfc6_cache_array
[line
], list
) {
996 if (ipv6_addr_equal(&c
->mf6c_origin
, origin
) &&
997 ipv6_addr_equal(&c
->mf6c_mcastgrp
, mcastgrp
))
1004 * Allocate a multicast cache entry
1006 static struct mfc6_cache
*ip6mr_cache_alloc(void)
1008 struct mfc6_cache
*c
= kmem_cache_zalloc(mrt_cachep
, GFP_KERNEL
);
1011 c
->mfc_un
.res
.minvif
= MAXMIFS
;
1015 static struct mfc6_cache
*ip6mr_cache_alloc_unres(void)
1017 struct mfc6_cache
*c
= kmem_cache_zalloc(mrt_cachep
, GFP_ATOMIC
);
1020 skb_queue_head_init(&c
->mfc_un
.unres
.unresolved
);
1021 c
->mfc_un
.unres
.expires
= jiffies
+ 10 * HZ
;
1026 * A cache entry has gone into a resolved state from queued
1029 static void ip6mr_cache_resolve(struct net
*net
, struct mr6_table
*mrt
,
1030 struct mfc6_cache
*uc
, struct mfc6_cache
*c
)
1032 struct sk_buff
*skb
;
1035 * Play the pending entries through our router
1038 while((skb
= __skb_dequeue(&uc
->mfc_un
.unres
.unresolved
))) {
1039 if (ipv6_hdr(skb
)->version
== 0) {
1041 struct nlmsghdr
*nlh
= (struct nlmsghdr
*)skb_pull(skb
, sizeof(struct ipv6hdr
));
1043 if (__ip6mr_fill_mroute(mrt
, skb
, c
, NLMSG_DATA(nlh
)) > 0) {
1044 nlh
->nlmsg_len
= skb_tail_pointer(skb
) - (u8
*)nlh
;
1046 nlh
->nlmsg_type
= NLMSG_ERROR
;
1047 nlh
->nlmsg_len
= NLMSG_LENGTH(sizeof(struct nlmsgerr
));
1048 skb_trim(skb
, nlh
->nlmsg_len
);
1049 ((struct nlmsgerr
*)NLMSG_DATA(nlh
))->error
= -EMSGSIZE
;
1051 err
= rtnl_unicast(skb
, net
, NETLINK_CB(skb
).pid
);
1053 ip6_mr_forward(net
, mrt
, skb
, c
);
1058 * Bounce a cache query up to pim6sd. We could use netlink for this but pim6sd
1059 * expects the following bizarre scheme.
1061 * Called under mrt_lock.
1064 static int ip6mr_cache_report(struct mr6_table
*mrt
, struct sk_buff
*pkt
,
1065 mifi_t mifi
, int assert)
1067 struct sk_buff
*skb
;
1068 struct mrt6msg
*msg
;
1071 #ifdef CONFIG_IPV6_PIMSM_V2
1072 if (assert == MRT6MSG_WHOLEPKT
)
1073 skb
= skb_realloc_headroom(pkt
, -skb_network_offset(pkt
)
1077 skb
= alloc_skb(sizeof(struct ipv6hdr
) + sizeof(*msg
), GFP_ATOMIC
);
1082 /* I suppose that internal messages
1083 * do not require checksums */
1085 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1087 #ifdef CONFIG_IPV6_PIMSM_V2
1088 if (assert == MRT6MSG_WHOLEPKT
) {
1089 /* Ugly, but we have no choice with this interface.
1090 Duplicate old header, fix length etc.
1091 And all this only to mangle msg->im6_msgtype and
1092 to set msg->im6_mbz to "mbz" :-)
1094 skb_push(skb
, -skb_network_offset(pkt
));
1096 skb_push(skb
, sizeof(*msg
));
1097 skb_reset_transport_header(skb
);
1098 msg
= (struct mrt6msg
*)skb_transport_header(skb
);
1100 msg
->im6_msgtype
= MRT6MSG_WHOLEPKT
;
1101 msg
->im6_mif
= mrt
->mroute_reg_vif_num
;
1103 ipv6_addr_copy(&msg
->im6_src
, &ipv6_hdr(pkt
)->saddr
);
1104 ipv6_addr_copy(&msg
->im6_dst
, &ipv6_hdr(pkt
)->daddr
);
1106 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1111 * Copy the IP header
1114 skb_put(skb
, sizeof(struct ipv6hdr
));
1115 skb_reset_network_header(skb
);
1116 skb_copy_to_linear_data(skb
, ipv6_hdr(pkt
), sizeof(struct ipv6hdr
));
1121 skb_put(skb
, sizeof(*msg
));
1122 skb_reset_transport_header(skb
);
1123 msg
= (struct mrt6msg
*)skb_transport_header(skb
);
1126 msg
->im6_msgtype
= assert;
1127 msg
->im6_mif
= mifi
;
1129 ipv6_addr_copy(&msg
->im6_src
, &ipv6_hdr(pkt
)->saddr
);
1130 ipv6_addr_copy(&msg
->im6_dst
, &ipv6_hdr(pkt
)->daddr
);
1132 skb_dst_set(skb
, dst_clone(skb_dst(pkt
)));
1133 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1136 if (mrt
->mroute6_sk
== NULL
) {
1142 * Deliver to user space multicast routing algorithms
1144 ret
= sock_queue_rcv_skb(mrt
->mroute6_sk
, skb
);
1146 if (net_ratelimit())
1147 printk(KERN_WARNING
"mroute6: pending queue full, dropping entries.\n");
1155 * Queue a packet for resolution. It gets locked cache entry!
1159 ip6mr_cache_unresolved(struct mr6_table
*mrt
, mifi_t mifi
, struct sk_buff
*skb
)
1163 struct mfc6_cache
*c
;
1165 spin_lock_bh(&mfc_unres_lock
);
1166 list_for_each_entry(c
, &mrt
->mfc6_unres_queue
, list
) {
1167 if (ipv6_addr_equal(&c
->mf6c_mcastgrp
, &ipv6_hdr(skb
)->daddr
) &&
1168 ipv6_addr_equal(&c
->mf6c_origin
, &ipv6_hdr(skb
)->saddr
)) {
1176 * Create a new entry if allowable
1179 if (atomic_read(&mrt
->cache_resolve_queue_len
) >= 10 ||
1180 (c
= ip6mr_cache_alloc_unres()) == NULL
) {
1181 spin_unlock_bh(&mfc_unres_lock
);
1188 * Fill in the new cache entry
1190 c
->mf6c_parent
= -1;
1191 c
->mf6c_origin
= ipv6_hdr(skb
)->saddr
;
1192 c
->mf6c_mcastgrp
= ipv6_hdr(skb
)->daddr
;
1195 * Reflect first query at pim6sd
1197 err
= ip6mr_cache_report(mrt
, skb
, mifi
, MRT6MSG_NOCACHE
);
1199 /* If the report failed throw the cache entry
1202 spin_unlock_bh(&mfc_unres_lock
);
1204 ip6mr_cache_free(c
);
1209 atomic_inc(&mrt
->cache_resolve_queue_len
);
1210 list_add(&c
->list
, &mrt
->mfc6_unres_queue
);
1212 ipmr_do_expire_process(mrt
);
1216 * See if we can append the packet
1218 if (c
->mfc_un
.unres
.unresolved
.qlen
> 3) {
1222 skb_queue_tail(&c
->mfc_un
.unres
.unresolved
, skb
);
1226 spin_unlock_bh(&mfc_unres_lock
);
1231 * MFC6 cache manipulation by user space
1234 static int ip6mr_mfc_delete(struct mr6_table
*mrt
, struct mf6cctl
*mfc
)
1237 struct mfc6_cache
*c
, *next
;
1239 line
= MFC6_HASH(&mfc
->mf6cc_mcastgrp
.sin6_addr
, &mfc
->mf6cc_origin
.sin6_addr
);
1241 list_for_each_entry_safe(c
, next
, &mrt
->mfc6_cache_array
[line
], list
) {
1242 if (ipv6_addr_equal(&c
->mf6c_origin
, &mfc
->mf6cc_origin
.sin6_addr
) &&
1243 ipv6_addr_equal(&c
->mf6c_mcastgrp
, &mfc
->mf6cc_mcastgrp
.sin6_addr
)) {
1244 write_lock_bh(&mrt_lock
);
1246 write_unlock_bh(&mrt_lock
);
1248 ip6mr_cache_free(c
);
1255 static int ip6mr_device_event(struct notifier_block
*this,
1256 unsigned long event
, void *ptr
)
1258 struct net_device
*dev
= ptr
;
1259 struct net
*net
= dev_net(dev
);
1260 struct mr6_table
*mrt
;
1261 struct mif_device
*v
;
1265 if (event
!= NETDEV_UNREGISTER
)
1268 ip6mr_for_each_table(mrt
, net
) {
1269 v
= &mrt
->vif6_table
[0];
1270 for (ct
= 0; ct
< mrt
->maxvif
; ct
++, v
++) {
1272 mif6_delete(mrt
, ct
, &list
);
1275 unregister_netdevice_many(&list
);
1280 static struct notifier_block ip6_mr_notifier
= {
1281 .notifier_call
= ip6mr_device_event
1285 * Setup for IP multicast routing
1288 static int __net_init
ip6mr_net_init(struct net
*net
)
1292 err
= ip6mr_rules_init(net
);
1296 #ifdef CONFIG_PROC_FS
1298 if (!proc_net_fops_create(net
, "ip6_mr_vif", 0, &ip6mr_vif_fops
))
1300 if (!proc_net_fops_create(net
, "ip6_mr_cache", 0, &ip6mr_mfc_fops
))
1301 goto proc_cache_fail
;
1306 #ifdef CONFIG_PROC_FS
1308 proc_net_remove(net
, "ip6_mr_vif");
1310 ip6mr_rules_exit(net
);
1316 static void __net_exit
ip6mr_net_exit(struct net
*net
)
1318 #ifdef CONFIG_PROC_FS
1319 proc_net_remove(net
, "ip6_mr_cache");
1320 proc_net_remove(net
, "ip6_mr_vif");
1322 ip6mr_rules_exit(net
);
1325 static struct pernet_operations ip6mr_net_ops
= {
1326 .init
= ip6mr_net_init
,
1327 .exit
= ip6mr_net_exit
,
1330 int __init
ip6_mr_init(void)
1334 mrt_cachep
= kmem_cache_create("ip6_mrt_cache",
1335 sizeof(struct mfc6_cache
),
1336 0, SLAB_HWCACHE_ALIGN
,
1341 err
= register_pernet_subsys(&ip6mr_net_ops
);
1343 goto reg_pernet_fail
;
1345 err
= register_netdevice_notifier(&ip6_mr_notifier
);
1347 goto reg_notif_fail
;
1348 #ifdef CONFIG_IPV6_PIMSM_V2
1349 if (inet6_add_protocol(&pim6_protocol
, IPPROTO_PIM
) < 0) {
1350 printk(KERN_ERR
"ip6_mr_init: can't add PIM protocol\n");
1352 goto add_proto_fail
;
1355 rtnl_register(RTNL_FAMILY_IP6MR
, RTM_GETROUTE
, NULL
, ip6mr_rtm_dumproute
);
1357 #ifdef CONFIG_IPV6_PIMSM_V2
1359 unregister_netdevice_notifier(&ip6_mr_notifier
);
1362 unregister_pernet_subsys(&ip6mr_net_ops
);
1364 kmem_cache_destroy(mrt_cachep
);
1368 void ip6_mr_cleanup(void)
1370 unregister_netdevice_notifier(&ip6_mr_notifier
);
1371 unregister_pernet_subsys(&ip6mr_net_ops
);
1372 kmem_cache_destroy(mrt_cachep
);
1375 static int ip6mr_mfc_add(struct net
*net
, struct mr6_table
*mrt
,
1376 struct mf6cctl
*mfc
, int mrtsock
)
1380 struct mfc6_cache
*uc
, *c
;
1381 unsigned char ttls
[MAXMIFS
];
1384 if (mfc
->mf6cc_parent
>= MAXMIFS
)
1387 memset(ttls
, 255, MAXMIFS
);
1388 for (i
= 0; i
< MAXMIFS
; i
++) {
1389 if (IF_ISSET(i
, &mfc
->mf6cc_ifset
))
1394 line
= MFC6_HASH(&mfc
->mf6cc_mcastgrp
.sin6_addr
, &mfc
->mf6cc_origin
.sin6_addr
);
1396 list_for_each_entry(c
, &mrt
->mfc6_cache_array
[line
], list
) {
1397 if (ipv6_addr_equal(&c
->mf6c_origin
, &mfc
->mf6cc_origin
.sin6_addr
) &&
1398 ipv6_addr_equal(&c
->mf6c_mcastgrp
, &mfc
->mf6cc_mcastgrp
.sin6_addr
)) {
1405 write_lock_bh(&mrt_lock
);
1406 c
->mf6c_parent
= mfc
->mf6cc_parent
;
1407 ip6mr_update_thresholds(mrt
, c
, ttls
);
1409 c
->mfc_flags
|= MFC_STATIC
;
1410 write_unlock_bh(&mrt_lock
);
1414 if (!ipv6_addr_is_multicast(&mfc
->mf6cc_mcastgrp
.sin6_addr
))
1417 c
= ip6mr_cache_alloc();
1421 c
->mf6c_origin
= mfc
->mf6cc_origin
.sin6_addr
;
1422 c
->mf6c_mcastgrp
= mfc
->mf6cc_mcastgrp
.sin6_addr
;
1423 c
->mf6c_parent
= mfc
->mf6cc_parent
;
1424 ip6mr_update_thresholds(mrt
, c
, ttls
);
1426 c
->mfc_flags
|= MFC_STATIC
;
1428 write_lock_bh(&mrt_lock
);
1429 list_add(&c
->list
, &mrt
->mfc6_cache_array
[line
]);
1430 write_unlock_bh(&mrt_lock
);
1433 * Check to see if we resolved a queued list. If so we
1434 * need to send on the frames and tidy up.
1437 spin_lock_bh(&mfc_unres_lock
);
1438 list_for_each_entry(uc
, &mrt
->mfc6_unres_queue
, list
) {
1439 if (ipv6_addr_equal(&uc
->mf6c_origin
, &c
->mf6c_origin
) &&
1440 ipv6_addr_equal(&uc
->mf6c_mcastgrp
, &c
->mf6c_mcastgrp
)) {
1441 list_del(&uc
->list
);
1442 atomic_dec(&mrt
->cache_resolve_queue_len
);
1447 if (list_empty(&mrt
->mfc6_unres_queue
))
1448 del_timer(&mrt
->ipmr_expire_timer
);
1449 spin_unlock_bh(&mfc_unres_lock
);
1452 ip6mr_cache_resolve(net
, mrt
, uc
, c
);
1453 ip6mr_cache_free(uc
);
1459 * Close the multicast socket, and clear the vif tables etc
1462 static void mroute_clean_tables(struct mr6_table
*mrt
)
1466 struct mfc6_cache
*c
, *next
;
1469 * Shut down all active vif entries
1471 for (i
= 0; i
< mrt
->maxvif
; i
++) {
1472 if (!(mrt
->vif6_table
[i
].flags
& VIFF_STATIC
))
1473 mif6_delete(mrt
, i
, &list
);
1475 unregister_netdevice_many(&list
);
1480 for (i
= 0; i
< MFC6_LINES
; i
++) {
1481 list_for_each_entry_safe(c
, next
, &mrt
->mfc6_cache_array
[i
], list
) {
1482 if (c
->mfc_flags
& MFC_STATIC
)
1484 write_lock_bh(&mrt_lock
);
1486 write_unlock_bh(&mrt_lock
);
1488 ip6mr_cache_free(c
);
1492 if (atomic_read(&mrt
->cache_resolve_queue_len
) != 0) {
1493 spin_lock_bh(&mfc_unres_lock
);
1494 list_for_each_entry_safe(c
, next
, &mrt
->mfc6_unres_queue
, list
) {
1496 ip6mr_destroy_unres(mrt
, c
);
1498 spin_unlock_bh(&mfc_unres_lock
);
1502 static int ip6mr_sk_init(struct mr6_table
*mrt
, struct sock
*sk
)
1505 struct net
*net
= sock_net(sk
);
1508 write_lock_bh(&mrt_lock
);
1509 if (likely(mrt
->mroute6_sk
== NULL
)) {
1510 mrt
->mroute6_sk
= sk
;
1511 net
->ipv6
.devconf_all
->mc_forwarding
++;
1515 write_unlock_bh(&mrt_lock
);
1522 int ip6mr_sk_done(struct sock
*sk
)
1525 struct net
*net
= sock_net(sk
);
1526 struct mr6_table
*mrt
;
1529 ip6mr_for_each_table(mrt
, net
) {
1530 if (sk
== mrt
->mroute6_sk
) {
1531 write_lock_bh(&mrt_lock
);
1532 mrt
->mroute6_sk
= NULL
;
1533 net
->ipv6
.devconf_all
->mc_forwarding
--;
1534 write_unlock_bh(&mrt_lock
);
1536 mroute_clean_tables(mrt
);
1546 struct sock
*mroute6_socket(struct net
*net
, struct sk_buff
*skb
)
1548 struct mr6_table
*mrt
;
1550 .iif
= skb
->skb_iif
,
1551 .oif
= skb
->dev
->ifindex
,
1555 if (ip6mr_fib_lookup(net
, &fl
, &mrt
) < 0)
1558 return mrt
->mroute6_sk
;
1562 * Socket options and virtual interface manipulation. The whole
1563 * virtual interface system is a complete heap, but unfortunately
1564 * that's how BSD mrouted happens to think. Maybe one day with a proper
1565 * MOSPF/PIM router set up we can clean this up.
1568 int ip6_mroute_setsockopt(struct sock
*sk
, int optname
, char __user
*optval
, unsigned int optlen
)
1574 struct net
*net
= sock_net(sk
);
1575 struct mr6_table
*mrt
;
1577 mrt
= ip6mr_get_table(net
, raw6_sk(sk
)->ip6mr_table
? : RT6_TABLE_DFLT
);
1581 if (optname
!= MRT6_INIT
) {
1582 if (sk
!= mrt
->mroute6_sk
&& !capable(CAP_NET_ADMIN
))
1588 if (sk
->sk_type
!= SOCK_RAW
||
1589 inet_sk(sk
)->inet_num
!= IPPROTO_ICMPV6
)
1591 if (optlen
< sizeof(int))
1594 return ip6mr_sk_init(mrt
, sk
);
1597 return ip6mr_sk_done(sk
);
1600 if (optlen
< sizeof(vif
))
1602 if (copy_from_user(&vif
, optval
, sizeof(vif
)))
1604 if (vif
.mif6c_mifi
>= MAXMIFS
)
1607 ret
= mif6_add(net
, mrt
, &vif
, sk
== mrt
->mroute6_sk
);
1612 if (optlen
< sizeof(mifi_t
))
1614 if (copy_from_user(&mifi
, optval
, sizeof(mifi_t
)))
1617 ret
= mif6_delete(mrt
, mifi
, NULL
);
1622 * Manipulate the forwarding caches. These live
1623 * in a sort of kernel/user symbiosis.
1627 if (optlen
< sizeof(mfc
))
1629 if (copy_from_user(&mfc
, optval
, sizeof(mfc
)))
1632 if (optname
== MRT6_DEL_MFC
)
1633 ret
= ip6mr_mfc_delete(mrt
, &mfc
);
1635 ret
= ip6mr_mfc_add(net
, mrt
, &mfc
, sk
== mrt
->mroute6_sk
);
1640 * Control PIM assert (to activate pim will activate assert)
1645 if (get_user(v
, (int __user
*)optval
))
1647 mrt
->mroute_do_assert
= !!v
;
1651 #ifdef CONFIG_IPV6_PIMSM_V2
1655 if (get_user(v
, (int __user
*)optval
))
1660 if (v
!= mrt
->mroute_do_pim
) {
1661 mrt
->mroute_do_pim
= v
;
1662 mrt
->mroute_do_assert
= v
;
1669 #ifdef CONFIG_IPV6_MROUTE_MULTIPLE_TABLES
1674 if (optlen
!= sizeof(u32
))
1676 if (get_user(v
, (u32 __user
*)optval
))
1678 if (sk
== mrt
->mroute6_sk
)
1683 if (!ip6mr_new_table(net
, v
))
1685 raw6_sk(sk
)->ip6mr_table
= v
;
1691 * Spurious command, or MRT6_VERSION which you cannot
1695 return -ENOPROTOOPT
;
1700 * Getsock opt support for the multicast routing system.
1703 int ip6_mroute_getsockopt(struct sock
*sk
, int optname
, char __user
*optval
,
1708 struct net
*net
= sock_net(sk
);
1709 struct mr6_table
*mrt
;
1711 mrt
= ip6mr_get_table(net
, raw6_sk(sk
)->ip6mr_table
? : RT6_TABLE_DFLT
);
1719 #ifdef CONFIG_IPV6_PIMSM_V2
1721 val
= mrt
->mroute_do_pim
;
1725 val
= mrt
->mroute_do_assert
;
1728 return -ENOPROTOOPT
;
1731 if (get_user(olr
, optlen
))
1734 olr
= min_t(int, olr
, sizeof(int));
1738 if (put_user(olr
, optlen
))
1740 if (copy_to_user(optval
, &val
, olr
))
1746 * The IP multicast ioctl support routines.
1749 int ip6mr_ioctl(struct sock
*sk
, int cmd
, void __user
*arg
)
1751 struct sioc_sg_req6 sr
;
1752 struct sioc_mif_req6 vr
;
1753 struct mif_device
*vif
;
1754 struct mfc6_cache
*c
;
1755 struct net
*net
= sock_net(sk
);
1756 struct mr6_table
*mrt
;
1758 mrt
= ip6mr_get_table(net
, raw6_sk(sk
)->ip6mr_table
? : RT6_TABLE_DFLT
);
1763 case SIOCGETMIFCNT_IN6
:
1764 if (copy_from_user(&vr
, arg
, sizeof(vr
)))
1766 if (vr
.mifi
>= mrt
->maxvif
)
1768 read_lock(&mrt_lock
);
1769 vif
= &mrt
->vif6_table
[vr
.mifi
];
1770 if (MIF_EXISTS(mrt
, vr
.mifi
)) {
1771 vr
.icount
= vif
->pkt_in
;
1772 vr
.ocount
= vif
->pkt_out
;
1773 vr
.ibytes
= vif
->bytes_in
;
1774 vr
.obytes
= vif
->bytes_out
;
1775 read_unlock(&mrt_lock
);
1777 if (copy_to_user(arg
, &vr
, sizeof(vr
)))
1781 read_unlock(&mrt_lock
);
1782 return -EADDRNOTAVAIL
;
1783 case SIOCGETSGCNT_IN6
:
1784 if (copy_from_user(&sr
, arg
, sizeof(sr
)))
1787 read_lock(&mrt_lock
);
1788 c
= ip6mr_cache_find(mrt
, &sr
.src
.sin6_addr
, &sr
.grp
.sin6_addr
);
1790 sr
.pktcnt
= c
->mfc_un
.res
.pkt
;
1791 sr
.bytecnt
= c
->mfc_un
.res
.bytes
;
1792 sr
.wrong_if
= c
->mfc_un
.res
.wrong_if
;
1793 read_unlock(&mrt_lock
);
1795 if (copy_to_user(arg
, &sr
, sizeof(sr
)))
1799 read_unlock(&mrt_lock
);
1800 return -EADDRNOTAVAIL
;
1802 return -ENOIOCTLCMD
;
1807 static inline int ip6mr_forward2_finish(struct sk_buff
*skb
)
1809 IP6_INC_STATS_BH(dev_net(skb_dst(skb
)->dev
), ip6_dst_idev(skb_dst(skb
)),
1810 IPSTATS_MIB_OUTFORWDATAGRAMS
);
1811 return dst_output(skb
);
1815 * Processing handlers for ip6mr_forward
1818 static int ip6mr_forward2(struct net
*net
, struct mr6_table
*mrt
,
1819 struct sk_buff
*skb
, struct mfc6_cache
*c
, int vifi
)
1821 struct ipv6hdr
*ipv6h
;
1822 struct mif_device
*vif
= &mrt
->vif6_table
[vifi
];
1823 struct net_device
*dev
;
1824 struct dst_entry
*dst
;
1827 if (vif
->dev
== NULL
)
1830 #ifdef CONFIG_IPV6_PIMSM_V2
1831 if (vif
->flags
& MIFF_REGISTER
) {
1833 vif
->bytes_out
+= skb
->len
;
1834 vif
->dev
->stats
.tx_bytes
+= skb
->len
;
1835 vif
->dev
->stats
.tx_packets
++;
1836 ip6mr_cache_report(mrt
, skb
, vifi
, MRT6MSG_WHOLEPKT
);
1841 ipv6h
= ipv6_hdr(skb
);
1843 fl
= (struct flowi
) {
1846 { .daddr
= ipv6h
->daddr
, }
1850 dst
= ip6_route_output(net
, NULL
, &fl
);
1855 skb_dst_set(skb
, dst
);
1858 * RFC1584 teaches, that DVMRP/PIM router must deliver packets locally
1859 * not only before forwarding, but after forwarding on all output
1860 * interfaces. It is clear, if mrouter runs a multicasting
1861 * program, it should receive packets not depending to what interface
1862 * program is joined.
1863 * If we will not make it, the program will have to join on all
1864 * interfaces. On the other hand, multihoming host (or router, but
1865 * not mrouter) cannot join to more than one interface - it will
1866 * result in receiving multiple packets.
1871 vif
->bytes_out
+= skb
->len
;
1873 /* We are about to write */
1874 /* XXX: extension headers? */
1875 if (skb_cow(skb
, sizeof(*ipv6h
) + LL_RESERVED_SPACE(dev
)))
1878 ipv6h
= ipv6_hdr(skb
);
1881 IP6CB(skb
)->flags
|= IP6SKB_FORWARDED
;
1883 return NF_HOOK(NFPROTO_IPV6
, NF_INET_FORWARD
, skb
, skb
->dev
, dev
,
1884 ip6mr_forward2_finish
);
1891 static int ip6mr_find_vif(struct mr6_table
*mrt
, struct net_device
*dev
)
1895 for (ct
= mrt
->maxvif
- 1; ct
>= 0; ct
--) {
1896 if (mrt
->vif6_table
[ct
].dev
== dev
)
1902 static int ip6_mr_forward(struct net
*net
, struct mr6_table
*mrt
,
1903 struct sk_buff
*skb
, struct mfc6_cache
*cache
)
1908 vif
= cache
->mf6c_parent
;
1909 cache
->mfc_un
.res
.pkt
++;
1910 cache
->mfc_un
.res
.bytes
+= skb
->len
;
1913 * Wrong interface: drop packet and (maybe) send PIM assert.
1915 if (mrt
->vif6_table
[vif
].dev
!= skb
->dev
) {
1918 cache
->mfc_un
.res
.wrong_if
++;
1919 true_vifi
= ip6mr_find_vif(mrt
, skb
->dev
);
1921 if (true_vifi
>= 0 && mrt
->mroute_do_assert
&&
1922 /* pimsm uses asserts, when switching from RPT to SPT,
1923 so that we cannot check that packet arrived on an oif.
1924 It is bad, but otherwise we would need to move pretty
1925 large chunk of pimd to kernel. Ough... --ANK
1927 (mrt
->mroute_do_pim
||
1928 cache
->mfc_un
.res
.ttls
[true_vifi
] < 255) &&
1930 cache
->mfc_un
.res
.last_assert
+ MFC_ASSERT_THRESH
)) {
1931 cache
->mfc_un
.res
.last_assert
= jiffies
;
1932 ip6mr_cache_report(mrt
, skb
, true_vifi
, MRT6MSG_WRONGMIF
);
1937 mrt
->vif6_table
[vif
].pkt_in
++;
1938 mrt
->vif6_table
[vif
].bytes_in
+= skb
->len
;
1943 for (ct
= cache
->mfc_un
.res
.maxvif
- 1; ct
>= cache
->mfc_un
.res
.minvif
; ct
--) {
1944 if (ipv6_hdr(skb
)->hop_limit
> cache
->mfc_un
.res
.ttls
[ct
]) {
1946 struct sk_buff
*skb2
= skb_clone(skb
, GFP_ATOMIC
);
1948 ip6mr_forward2(net
, mrt
, skb2
, cache
, psend
);
1954 ip6mr_forward2(net
, mrt
, skb
, cache
, psend
);
1965 * Multicast packets for forwarding arrive here
1968 int ip6_mr_input(struct sk_buff
*skb
)
1970 struct mfc6_cache
*cache
;
1971 struct net
*net
= dev_net(skb
->dev
);
1972 struct mr6_table
*mrt
;
1974 .iif
= skb
->dev
->ifindex
,
1979 err
= ip6mr_fib_lookup(net
, &fl
, &mrt
);
1983 read_lock(&mrt_lock
);
1984 cache
= ip6mr_cache_find(mrt
,
1985 &ipv6_hdr(skb
)->saddr
, &ipv6_hdr(skb
)->daddr
);
1988 * No usable cache entry
1990 if (cache
== NULL
) {
1993 vif
= ip6mr_find_vif(mrt
, skb
->dev
);
1995 int err
= ip6mr_cache_unresolved(mrt
, vif
, skb
);
1996 read_unlock(&mrt_lock
);
2000 read_unlock(&mrt_lock
);
2005 ip6_mr_forward(net
, mrt
, skb
, cache
);
2007 read_unlock(&mrt_lock
);
2013 static int __ip6mr_fill_mroute(struct mr6_table
*mrt
, struct sk_buff
*skb
,
2014 struct mfc6_cache
*c
, struct rtmsg
*rtm
)
2017 struct rtnexthop
*nhp
;
2018 u8
*b
= skb_tail_pointer(skb
);
2019 struct rtattr
*mp_head
;
2021 /* If cache is unresolved, don't try to parse IIF and OIF */
2022 if (c
->mf6c_parent
>= MAXMIFS
)
2025 if (MIF_EXISTS(mrt
, c
->mf6c_parent
))
2026 RTA_PUT(skb
, RTA_IIF
, 4, &mrt
->vif6_table
[c
->mf6c_parent
].dev
->ifindex
);
2028 mp_head
= (struct rtattr
*)skb_put(skb
, RTA_LENGTH(0));
2030 for (ct
= c
->mfc_un
.res
.minvif
; ct
< c
->mfc_un
.res
.maxvif
; ct
++) {
2031 if (MIF_EXISTS(mrt
, ct
) && c
->mfc_un
.res
.ttls
[ct
] < 255) {
2032 if (skb_tailroom(skb
) < RTA_ALIGN(RTA_ALIGN(sizeof(*nhp
)) + 4))
2033 goto rtattr_failure
;
2034 nhp
= (struct rtnexthop
*)skb_put(skb
, RTA_ALIGN(sizeof(*nhp
)));
2035 nhp
->rtnh_flags
= 0;
2036 nhp
->rtnh_hops
= c
->mfc_un
.res
.ttls
[ct
];
2037 nhp
->rtnh_ifindex
= mrt
->vif6_table
[ct
].dev
->ifindex
;
2038 nhp
->rtnh_len
= sizeof(*nhp
);
2041 mp_head
->rta_type
= RTA_MULTIPATH
;
2042 mp_head
->rta_len
= skb_tail_pointer(skb
) - (u8
*)mp_head
;
2043 rtm
->rtm_type
= RTN_MULTICAST
;
2051 int ip6mr_get_route(struct net
*net
,
2052 struct sk_buff
*skb
, struct rtmsg
*rtm
, int nowait
)
2055 struct mr6_table
*mrt
;
2056 struct mfc6_cache
*cache
;
2057 struct rt6_info
*rt
= (struct rt6_info
*)skb_dst(skb
);
2059 mrt
= ip6mr_get_table(net
, RT6_TABLE_DFLT
);
2063 read_lock(&mrt_lock
);
2064 cache
= ip6mr_cache_find(mrt
, &rt
->rt6i_src
.addr
, &rt
->rt6i_dst
.addr
);
2067 struct sk_buff
*skb2
;
2068 struct ipv6hdr
*iph
;
2069 struct net_device
*dev
;
2073 read_unlock(&mrt_lock
);
2078 if (dev
== NULL
|| (vif
= ip6mr_find_vif(mrt
, dev
)) < 0) {
2079 read_unlock(&mrt_lock
);
2083 /* really correct? */
2084 skb2
= alloc_skb(sizeof(struct ipv6hdr
), GFP_ATOMIC
);
2086 read_unlock(&mrt_lock
);
2090 skb_reset_transport_header(skb2
);
2092 skb_put(skb2
, sizeof(struct ipv6hdr
));
2093 skb_reset_network_header(skb2
);
2095 iph
= ipv6_hdr(skb2
);
2098 iph
->flow_lbl
[0] = 0;
2099 iph
->flow_lbl
[1] = 0;
2100 iph
->flow_lbl
[2] = 0;
2101 iph
->payload_len
= 0;
2102 iph
->nexthdr
= IPPROTO_NONE
;
2104 ipv6_addr_copy(&iph
->saddr
, &rt
->rt6i_src
.addr
);
2105 ipv6_addr_copy(&iph
->daddr
, &rt
->rt6i_dst
.addr
);
2107 err
= ip6mr_cache_unresolved(mrt
, vif
, skb2
);
2108 read_unlock(&mrt_lock
);
2113 if (!nowait
&& (rtm
->rtm_flags
&RTM_F_NOTIFY
))
2114 cache
->mfc_flags
|= MFC_NOTIFY
;
2116 err
= __ip6mr_fill_mroute(mrt
, skb
, cache
, rtm
);
2117 read_unlock(&mrt_lock
);
2121 static int ip6mr_fill_mroute(struct mr6_table
*mrt
, struct sk_buff
*skb
,
2122 u32 pid
, u32 seq
, struct mfc6_cache
*c
)
2124 struct nlmsghdr
*nlh
;
2127 nlh
= nlmsg_put(skb
, pid
, seq
, RTM_NEWROUTE
, sizeof(*rtm
), NLM_F_MULTI
);
2131 rtm
= nlmsg_data(nlh
);
2132 rtm
->rtm_family
= RTNL_FAMILY_IPMR
;
2133 rtm
->rtm_dst_len
= 128;
2134 rtm
->rtm_src_len
= 128;
2136 rtm
->rtm_table
= mrt
->id
;
2137 NLA_PUT_U32(skb
, RTA_TABLE
, mrt
->id
);
2138 rtm
->rtm_scope
= RT_SCOPE_UNIVERSE
;
2139 rtm
->rtm_protocol
= RTPROT_UNSPEC
;
2142 NLA_PUT(skb
, RTA_SRC
, 16, &c
->mf6c_origin
);
2143 NLA_PUT(skb
, RTA_DST
, 16, &c
->mf6c_mcastgrp
);
2145 if (__ip6mr_fill_mroute(mrt
, skb
, c
, rtm
) < 0)
2146 goto nla_put_failure
;
2148 return nlmsg_end(skb
, nlh
);
2151 nlmsg_cancel(skb
, nlh
);
2155 static int ip6mr_rtm_dumproute(struct sk_buff
*skb
, struct netlink_callback
*cb
)
2157 struct net
*net
= sock_net(skb
->sk
);
2158 struct mr6_table
*mrt
;
2159 struct mfc6_cache
*mfc
;
2160 unsigned int t
= 0, s_t
;
2161 unsigned int h
= 0, s_h
;
2162 unsigned int e
= 0, s_e
;
2168 read_lock(&mrt_lock
);
2169 ip6mr_for_each_table(mrt
, net
) {
2174 for (h
= s_h
; h
< MFC6_LINES
; h
++) {
2175 list_for_each_entry(mfc
, &mrt
->mfc6_cache_array
[h
], list
) {
2178 if (ip6mr_fill_mroute(mrt
, skb
,
2179 NETLINK_CB(cb
->skb
).pid
,
2193 read_unlock(&mrt_lock
);