1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Linux IPv6 multicast routing support for BSD pim6sd
4 * Based on net/ipv4/ipmr.c.
6 * (c) 2004 Mickael Hoerdt, <hoerdt@clarinet.u-strasbg.fr>
7 * LSIIT Laboratory, Strasbourg, France
8 * (c) 2004 Jean-Philippe Andriot, <jean-philippe.andriot@6WIND.com>
10 * Copyright (C)2007,2008 USAGI/WIDE Project
11 * YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
14 #include <linux/uaccess.h>
15 #include <linux/types.h>
16 #include <linux/sched.h>
17 #include <linux/errno.h>
19 #include <linux/kernel.h>
20 #include <linux/fcntl.h>
21 #include <linux/stat.h>
22 #include <linux/socket.h>
23 #include <linux/inet.h>
24 #include <linux/netdevice.h>
25 #include <linux/inetdevice.h>
26 #include <linux/proc_fs.h>
27 #include <linux/seq_file.h>
28 #include <linux/init.h>
29 #include <linux/compat.h>
30 #include <linux/rhashtable.h>
31 #include <net/protocol.h>
32 #include <linux/skbuff.h>
34 #include <linux/notifier.h>
35 #include <linux/if_arp.h>
36 #include <net/checksum.h>
37 #include <net/netlink.h>
38 #include <net/fib_rules.h>
41 #include <net/ip6_route.h>
42 #include <linux/mroute6.h>
43 #include <linux/pim.h>
44 #include <net/addrconf.h>
45 #include <linux/netfilter_ipv6.h>
46 #include <linux/export.h>
47 #include <net/ip6_checksum.h>
48 #include <linux/netconf.h>
49 #include <net/ip_tunnels.h>
51 #include <linux/nospec.h>
54 struct fib_rule common
;
61 /* Big lock, protecting vif table, mrt cache and mroute socket state.
62 Note that the changes are semaphored via rtnl_lock.
65 static DEFINE_RWLOCK(mrt_lock
);
67 /* Multicast router control variables */
69 /* Special spinlock for queue of unresolved entries */
70 static DEFINE_SPINLOCK(mfc_unres_lock
);
72 /* We return to original Alan's scheme. Hash table of resolved
73 entries is changed only in process context and protected
74 with weak lock mrt_lock. Queue of unresolved entries is protected
75 with strong spinlock mfc_unres_lock.
77 In this case data path is free of exclusive locks at all.
80 static struct kmem_cache
*mrt_cachep __read_mostly
;
82 static struct mr_table
*ip6mr_new_table(struct net
*net
, u32 id
);
83 static void ip6mr_free_table(struct mr_table
*mrt
);
85 static void ip6_mr_forward(struct net
*net
, struct mr_table
*mrt
,
86 struct net_device
*dev
, struct sk_buff
*skb
,
87 struct mfc6_cache
*cache
);
88 static int ip6mr_cache_report(struct mr_table
*mrt
, struct sk_buff
*pkt
,
89 mifi_t mifi
, int assert);
90 static void mr6_netlink_event(struct mr_table
*mrt
, struct mfc6_cache
*mfc
,
92 static void mrt6msg_netlink_event(struct mr_table
*mrt
, struct sk_buff
*pkt
);
93 static int ip6mr_rtm_dumproute(struct sk_buff
*skb
,
94 struct netlink_callback
*cb
);
95 static void mroute_clean_tables(struct mr_table
*mrt
, int flags
);
96 static void ipmr_expire_process(struct timer_list
*t
);
98 #ifdef CONFIG_IPV6_MROUTE_MULTIPLE_TABLES
99 #define ip6mr_for_each_table(mrt, net) \
100 list_for_each_entry_rcu(mrt, &net->ipv6.mr6_tables, list, \
101 lockdep_rtnl_is_held() || \
102 list_empty(&net->ipv6.mr6_tables))
104 static struct mr_table
*ip6mr_mr_table_iter(struct net
*net
,
105 struct mr_table
*mrt
)
107 struct mr_table
*ret
;
110 ret
= list_entry_rcu(net
->ipv6
.mr6_tables
.next
,
111 struct mr_table
, list
);
113 ret
= list_entry_rcu(mrt
->list
.next
,
114 struct mr_table
, list
);
116 if (&ret
->list
== &net
->ipv6
.mr6_tables
)
121 static struct mr_table
*ip6mr_get_table(struct net
*net
, u32 id
)
123 struct mr_table
*mrt
;
125 ip6mr_for_each_table(mrt
, net
) {
132 static int ip6mr_fib_lookup(struct net
*net
, struct flowi6
*flp6
,
133 struct mr_table
**mrt
)
136 struct ip6mr_result res
;
137 struct fib_lookup_arg arg
= {
139 .flags
= FIB_LOOKUP_NOREF
,
142 /* update flow if oif or iif point to device enslaved to l3mdev */
143 l3mdev_update_flow(net
, flowi6_to_flowi(flp6
));
145 err
= fib_rules_lookup(net
->ipv6
.mr6_rules_ops
,
146 flowi6_to_flowi(flp6
), 0, &arg
);
153 static int ip6mr_rule_action(struct fib_rule
*rule
, struct flowi
*flp
,
154 int flags
, struct fib_lookup_arg
*arg
)
156 struct ip6mr_result
*res
= arg
->result
;
157 struct mr_table
*mrt
;
159 switch (rule
->action
) {
162 case FR_ACT_UNREACHABLE
:
164 case FR_ACT_PROHIBIT
:
166 case FR_ACT_BLACKHOLE
:
171 arg
->table
= fib_rule_get_table(rule
, arg
);
173 mrt
= ip6mr_get_table(rule
->fr_net
, arg
->table
);
180 static int ip6mr_rule_match(struct fib_rule
*rule
, struct flowi
*flp
, int flags
)
185 static const struct nla_policy ip6mr_rule_policy
[FRA_MAX
+ 1] = {
189 static int ip6mr_rule_configure(struct fib_rule
*rule
, struct sk_buff
*skb
,
190 struct fib_rule_hdr
*frh
, struct nlattr
**tb
,
191 struct netlink_ext_ack
*extack
)
196 static int ip6mr_rule_compare(struct fib_rule
*rule
, struct fib_rule_hdr
*frh
,
202 static int ip6mr_rule_fill(struct fib_rule
*rule
, struct sk_buff
*skb
,
203 struct fib_rule_hdr
*frh
)
211 static const struct fib_rules_ops __net_initconst ip6mr_rules_ops_template
= {
212 .family
= RTNL_FAMILY_IP6MR
,
213 .rule_size
= sizeof(struct ip6mr_rule
),
214 .addr_size
= sizeof(struct in6_addr
),
215 .action
= ip6mr_rule_action
,
216 .match
= ip6mr_rule_match
,
217 .configure
= ip6mr_rule_configure
,
218 .compare
= ip6mr_rule_compare
,
219 .fill
= ip6mr_rule_fill
,
220 .nlgroup
= RTNLGRP_IPV6_RULE
,
221 .policy
= ip6mr_rule_policy
,
222 .owner
= THIS_MODULE
,
225 static int __net_init
ip6mr_rules_init(struct net
*net
)
227 struct fib_rules_ops
*ops
;
228 struct mr_table
*mrt
;
231 ops
= fib_rules_register(&ip6mr_rules_ops_template
, net
);
235 INIT_LIST_HEAD(&net
->ipv6
.mr6_tables
);
237 mrt
= ip6mr_new_table(net
, RT6_TABLE_DFLT
);
243 err
= fib_default_rule_add(ops
, 0x7fff, RT6_TABLE_DFLT
, 0);
247 net
->ipv6
.mr6_rules_ops
= ops
;
251 ip6mr_free_table(mrt
);
253 fib_rules_unregister(ops
);
257 static void __net_exit
ip6mr_rules_exit(struct net
*net
)
259 struct mr_table
*mrt
, *next
;
262 list_for_each_entry_safe(mrt
, next
, &net
->ipv6
.mr6_tables
, list
) {
263 list_del(&mrt
->list
);
264 ip6mr_free_table(mrt
);
266 fib_rules_unregister(net
->ipv6
.mr6_rules_ops
);
270 static int ip6mr_rules_dump(struct net
*net
, struct notifier_block
*nb
,
271 struct netlink_ext_ack
*extack
)
273 return fib_rules_dump(net
, nb
, RTNL_FAMILY_IP6MR
, extack
);
276 static unsigned int ip6mr_rules_seq_read(struct net
*net
)
278 return fib_rules_seq_read(net
, RTNL_FAMILY_IP6MR
);
281 bool ip6mr_rule_default(const struct fib_rule
*rule
)
283 return fib_rule_matchall(rule
) && rule
->action
== FR_ACT_TO_TBL
&&
284 rule
->table
== RT6_TABLE_DFLT
&& !rule
->l3mdev
;
286 EXPORT_SYMBOL(ip6mr_rule_default
);
288 #define ip6mr_for_each_table(mrt, net) \
289 for (mrt = net->ipv6.mrt6; mrt; mrt = NULL)
291 static struct mr_table
*ip6mr_mr_table_iter(struct net
*net
,
292 struct mr_table
*mrt
)
295 return net
->ipv6
.mrt6
;
299 static struct mr_table
*ip6mr_get_table(struct net
*net
, u32 id
)
301 return net
->ipv6
.mrt6
;
304 static int ip6mr_fib_lookup(struct net
*net
, struct flowi6
*flp6
,
305 struct mr_table
**mrt
)
307 *mrt
= net
->ipv6
.mrt6
;
311 static int __net_init
ip6mr_rules_init(struct net
*net
)
313 struct mr_table
*mrt
;
315 mrt
= ip6mr_new_table(net
, RT6_TABLE_DFLT
);
318 net
->ipv6
.mrt6
= mrt
;
322 static void __net_exit
ip6mr_rules_exit(struct net
*net
)
325 ip6mr_free_table(net
->ipv6
.mrt6
);
326 net
->ipv6
.mrt6
= NULL
;
330 static int ip6mr_rules_dump(struct net
*net
, struct notifier_block
*nb
,
331 struct netlink_ext_ack
*extack
)
336 static unsigned int ip6mr_rules_seq_read(struct net
*net
)
342 static int ip6mr_hash_cmp(struct rhashtable_compare_arg
*arg
,
345 const struct mfc6_cache_cmp_arg
*cmparg
= arg
->key
;
346 struct mfc6_cache
*c
= (struct mfc6_cache
*)ptr
;
348 return !ipv6_addr_equal(&c
->mf6c_mcastgrp
, &cmparg
->mf6c_mcastgrp
) ||
349 !ipv6_addr_equal(&c
->mf6c_origin
, &cmparg
->mf6c_origin
);
352 static const struct rhashtable_params ip6mr_rht_params
= {
353 .head_offset
= offsetof(struct mr_mfc
, mnode
),
354 .key_offset
= offsetof(struct mfc6_cache
, cmparg
),
355 .key_len
= sizeof(struct mfc6_cache_cmp_arg
),
357 .obj_cmpfn
= ip6mr_hash_cmp
,
358 .automatic_shrinking
= true,
361 static void ip6mr_new_table_set(struct mr_table
*mrt
,
364 #ifdef CONFIG_IPV6_MROUTE_MULTIPLE_TABLES
365 list_add_tail_rcu(&mrt
->list
, &net
->ipv6
.mr6_tables
);
369 static struct mfc6_cache_cmp_arg ip6mr_mr_table_ops_cmparg_any
= {
370 .mf6c_origin
= IN6ADDR_ANY_INIT
,
371 .mf6c_mcastgrp
= IN6ADDR_ANY_INIT
,
374 static struct mr_table_ops ip6mr_mr_table_ops
= {
375 .rht_params
= &ip6mr_rht_params
,
376 .cmparg_any
= &ip6mr_mr_table_ops_cmparg_any
,
379 static struct mr_table
*ip6mr_new_table(struct net
*net
, u32 id
)
381 struct mr_table
*mrt
;
383 mrt
= ip6mr_get_table(net
, id
);
387 return mr_table_alloc(net
, id
, &ip6mr_mr_table_ops
,
388 ipmr_expire_process
, ip6mr_new_table_set
);
391 static void ip6mr_free_table(struct mr_table
*mrt
)
393 del_timer_sync(&mrt
->ipmr_expire_timer
);
394 mroute_clean_tables(mrt
, MRT6_FLUSH_MIFS
| MRT6_FLUSH_MIFS_STATIC
|
395 MRT6_FLUSH_MFC
| MRT6_FLUSH_MFC_STATIC
);
396 rhltable_destroy(&mrt
->mfc_hash
);
400 #ifdef CONFIG_PROC_FS
401 /* The /proc interfaces to multicast routing
402 * /proc/ip6_mr_cache /proc/ip6_mr_vif
405 static void *ip6mr_vif_seq_start(struct seq_file
*seq
, loff_t
*pos
)
408 struct mr_vif_iter
*iter
= seq
->private;
409 struct net
*net
= seq_file_net(seq
);
410 struct mr_table
*mrt
;
412 mrt
= ip6mr_get_table(net
, RT6_TABLE_DFLT
);
414 return ERR_PTR(-ENOENT
);
418 read_lock(&mrt_lock
);
419 return mr_vif_seq_start(seq
, pos
);
422 static void ip6mr_vif_seq_stop(struct seq_file
*seq
, void *v
)
425 read_unlock(&mrt_lock
);
428 static int ip6mr_vif_seq_show(struct seq_file
*seq
, void *v
)
430 struct mr_vif_iter
*iter
= seq
->private;
431 struct mr_table
*mrt
= iter
->mrt
;
433 if (v
== SEQ_START_TOKEN
) {
435 "Interface BytesIn PktsIn BytesOut PktsOut Flags\n");
437 const struct vif_device
*vif
= v
;
438 const char *name
= vif
->dev
? vif
->dev
->name
: "none";
441 "%2td %-10s %8ld %7ld %8ld %7ld %05X\n",
442 vif
- mrt
->vif_table
,
443 name
, vif
->bytes_in
, vif
->pkt_in
,
444 vif
->bytes_out
, vif
->pkt_out
,
450 static const struct seq_operations ip6mr_vif_seq_ops
= {
451 .start
= ip6mr_vif_seq_start
,
452 .next
= mr_vif_seq_next
,
453 .stop
= ip6mr_vif_seq_stop
,
454 .show
= ip6mr_vif_seq_show
,
457 static void *ipmr_mfc_seq_start(struct seq_file
*seq
, loff_t
*pos
)
459 struct net
*net
= seq_file_net(seq
);
460 struct mr_table
*mrt
;
462 mrt
= ip6mr_get_table(net
, RT6_TABLE_DFLT
);
464 return ERR_PTR(-ENOENT
);
466 return mr_mfc_seq_start(seq
, pos
, mrt
, &mfc_unres_lock
);
469 static int ipmr_mfc_seq_show(struct seq_file
*seq
, void *v
)
473 if (v
== SEQ_START_TOKEN
) {
477 "Iif Pkts Bytes Wrong Oifs\n");
479 const struct mfc6_cache
*mfc
= v
;
480 const struct mr_mfc_iter
*it
= seq
->private;
481 struct mr_table
*mrt
= it
->mrt
;
483 seq_printf(seq
, "%pI6 %pI6 %-3hd",
484 &mfc
->mf6c_mcastgrp
, &mfc
->mf6c_origin
,
487 if (it
->cache
!= &mrt
->mfc_unres_queue
) {
488 seq_printf(seq
, " %8lu %8lu %8lu",
489 mfc
->_c
.mfc_un
.res
.pkt
,
490 mfc
->_c
.mfc_un
.res
.bytes
,
491 mfc
->_c
.mfc_un
.res
.wrong_if
);
492 for (n
= mfc
->_c
.mfc_un
.res
.minvif
;
493 n
< mfc
->_c
.mfc_un
.res
.maxvif
; n
++) {
494 if (VIF_EXISTS(mrt
, n
) &&
495 mfc
->_c
.mfc_un
.res
.ttls
[n
] < 255)
498 mfc
->_c
.mfc_un
.res
.ttls
[n
]);
501 /* unresolved mfc_caches don't contain
502 * pkt, bytes and wrong_if values
504 seq_printf(seq
, " %8lu %8lu %8lu", 0ul, 0ul, 0ul);
511 static const struct seq_operations ipmr_mfc_seq_ops
= {
512 .start
= ipmr_mfc_seq_start
,
513 .next
= mr_mfc_seq_next
,
514 .stop
= mr_mfc_seq_stop
,
515 .show
= ipmr_mfc_seq_show
,
519 #ifdef CONFIG_IPV6_PIMSM_V2
521 static int pim6_rcv(struct sk_buff
*skb
)
523 struct pimreghdr
*pim
;
524 struct ipv6hdr
*encap
;
525 struct net_device
*reg_dev
= NULL
;
526 struct net
*net
= dev_net(skb
->dev
);
527 struct mr_table
*mrt
;
528 struct flowi6 fl6
= {
529 .flowi6_iif
= skb
->dev
->ifindex
,
530 .flowi6_mark
= skb
->mark
,
534 if (!pskb_may_pull(skb
, sizeof(*pim
) + sizeof(*encap
)))
537 pim
= (struct pimreghdr
*)skb_transport_header(skb
);
538 if (pim
->type
!= ((PIM_VERSION
<< 4) | PIM_TYPE_REGISTER
) ||
539 (pim
->flags
& PIM_NULL_REGISTER
) ||
540 (csum_ipv6_magic(&ipv6_hdr(skb
)->saddr
, &ipv6_hdr(skb
)->daddr
,
541 sizeof(*pim
), IPPROTO_PIM
,
542 csum_partial((void *)pim
, sizeof(*pim
), 0)) &&
543 csum_fold(skb_checksum(skb
, 0, skb
->len
, 0))))
546 /* check if the inner packet is destined to mcast group */
547 encap
= (struct ipv6hdr
*)(skb_transport_header(skb
) +
550 if (!ipv6_addr_is_multicast(&encap
->daddr
) ||
551 encap
->payload_len
== 0 ||
552 ntohs(encap
->payload_len
) + sizeof(*pim
) > skb
->len
)
555 if (ip6mr_fib_lookup(net
, &fl6
, &mrt
) < 0)
557 reg_vif_num
= mrt
->mroute_reg_vif_num
;
559 read_lock(&mrt_lock
);
560 if (reg_vif_num
>= 0)
561 reg_dev
= mrt
->vif_table
[reg_vif_num
].dev
;
564 read_unlock(&mrt_lock
);
569 skb
->mac_header
= skb
->network_header
;
570 skb_pull(skb
, (u8
*)encap
- skb
->data
);
571 skb_reset_network_header(skb
);
572 skb
->protocol
= htons(ETH_P_IPV6
);
573 skb
->ip_summed
= CHECKSUM_NONE
;
575 skb_tunnel_rx(skb
, reg_dev
, dev_net(reg_dev
));
586 static const struct inet6_protocol pim6_protocol
= {
590 /* Service routines creating virtual interfaces: PIMREG */
592 static netdev_tx_t
reg_vif_xmit(struct sk_buff
*skb
,
593 struct net_device
*dev
)
595 struct net
*net
= dev_net(dev
);
596 struct mr_table
*mrt
;
597 struct flowi6 fl6
= {
598 .flowi6_oif
= dev
->ifindex
,
599 .flowi6_iif
= skb
->skb_iif
? : LOOPBACK_IFINDEX
,
600 .flowi6_mark
= skb
->mark
,
603 if (!pskb_inet_may_pull(skb
))
606 if (ip6mr_fib_lookup(net
, &fl6
, &mrt
) < 0)
609 read_lock(&mrt_lock
);
610 dev
->stats
.tx_bytes
+= skb
->len
;
611 dev
->stats
.tx_packets
++;
612 ip6mr_cache_report(mrt
, skb
, mrt
->mroute_reg_vif_num
, MRT6MSG_WHOLEPKT
);
613 read_unlock(&mrt_lock
);
618 dev
->stats
.tx_errors
++;
623 static int reg_vif_get_iflink(const struct net_device
*dev
)
628 static const struct net_device_ops reg_vif_netdev_ops
= {
629 .ndo_start_xmit
= reg_vif_xmit
,
630 .ndo_get_iflink
= reg_vif_get_iflink
,
633 static void reg_vif_setup(struct net_device
*dev
)
635 dev
->type
= ARPHRD_PIMREG
;
636 dev
->mtu
= 1500 - sizeof(struct ipv6hdr
) - 8;
637 dev
->flags
= IFF_NOARP
;
638 dev
->netdev_ops
= ®_vif_netdev_ops
;
639 dev
->needs_free_netdev
= true;
640 dev
->features
|= NETIF_F_NETNS_LOCAL
;
643 static struct net_device
*ip6mr_reg_vif(struct net
*net
, struct mr_table
*mrt
)
645 struct net_device
*dev
;
648 if (mrt
->id
== RT6_TABLE_DFLT
)
649 sprintf(name
, "pim6reg");
651 sprintf(name
, "pim6reg%u", mrt
->id
);
653 dev
= alloc_netdev(0, name
, NET_NAME_UNKNOWN
, reg_vif_setup
);
657 dev_net_set(dev
, net
);
659 if (register_netdevice(dev
)) {
664 if (dev_open(dev
, NULL
))
671 unregister_netdevice(dev
);
676 static int call_ip6mr_vif_entry_notifiers(struct net
*net
,
677 enum fib_event_type event_type
,
678 struct vif_device
*vif
,
679 mifi_t vif_index
, u32 tb_id
)
681 return mr_call_vif_notifiers(net
, RTNL_FAMILY_IP6MR
, event_type
,
682 vif
, vif_index
, tb_id
,
683 &net
->ipv6
.ipmr_seq
);
686 static int call_ip6mr_mfc_entry_notifiers(struct net
*net
,
687 enum fib_event_type event_type
,
688 struct mfc6_cache
*mfc
, u32 tb_id
)
690 return mr_call_mfc_notifiers(net
, RTNL_FAMILY_IP6MR
, event_type
,
691 &mfc
->_c
, tb_id
, &net
->ipv6
.ipmr_seq
);
694 /* Delete a VIF entry */
695 static int mif6_delete(struct mr_table
*mrt
, int vifi
, int notify
,
696 struct list_head
*head
)
698 struct vif_device
*v
;
699 struct net_device
*dev
;
700 struct inet6_dev
*in6_dev
;
702 if (vifi
< 0 || vifi
>= mrt
->maxvif
)
703 return -EADDRNOTAVAIL
;
705 v
= &mrt
->vif_table
[vifi
];
707 if (VIF_EXISTS(mrt
, vifi
))
708 call_ip6mr_vif_entry_notifiers(read_pnet(&mrt
->net
),
709 FIB_EVENT_VIF_DEL
, v
, vifi
,
712 write_lock_bh(&mrt_lock
);
717 write_unlock_bh(&mrt_lock
);
718 return -EADDRNOTAVAIL
;
721 #ifdef CONFIG_IPV6_PIMSM_V2
722 if (vifi
== mrt
->mroute_reg_vif_num
)
723 mrt
->mroute_reg_vif_num
= -1;
726 if (vifi
+ 1 == mrt
->maxvif
) {
728 for (tmp
= vifi
- 1; tmp
>= 0; tmp
--) {
729 if (VIF_EXISTS(mrt
, tmp
))
732 mrt
->maxvif
= tmp
+ 1;
735 write_unlock_bh(&mrt_lock
);
737 dev_set_allmulti(dev
, -1);
739 in6_dev
= __in6_dev_get(dev
);
741 in6_dev
->cnf
.mc_forwarding
--;
742 inet6_netconf_notify_devconf(dev_net(dev
), RTM_NEWNETCONF
,
743 NETCONFA_MC_FORWARDING
,
744 dev
->ifindex
, &in6_dev
->cnf
);
747 if ((v
->flags
& MIFF_REGISTER
) && !notify
)
748 unregister_netdevice_queue(dev
, head
);
754 static inline void ip6mr_cache_free_rcu(struct rcu_head
*head
)
756 struct mr_mfc
*c
= container_of(head
, struct mr_mfc
, rcu
);
758 kmem_cache_free(mrt_cachep
, (struct mfc6_cache
*)c
);
761 static inline void ip6mr_cache_free(struct mfc6_cache
*c
)
763 call_rcu(&c
->_c
.rcu
, ip6mr_cache_free_rcu
);
766 /* Destroy an unresolved cache entry, killing queued skbs
767 and reporting error to netlink readers.
770 static void ip6mr_destroy_unres(struct mr_table
*mrt
, struct mfc6_cache
*c
)
772 struct net
*net
= read_pnet(&mrt
->net
);
775 atomic_dec(&mrt
->cache_resolve_queue_len
);
777 while ((skb
= skb_dequeue(&c
->_c
.mfc_un
.unres
.unresolved
)) != NULL
) {
778 if (ipv6_hdr(skb
)->version
== 0) {
779 struct nlmsghdr
*nlh
= skb_pull(skb
,
780 sizeof(struct ipv6hdr
));
781 nlh
->nlmsg_type
= NLMSG_ERROR
;
782 nlh
->nlmsg_len
= nlmsg_msg_size(sizeof(struct nlmsgerr
));
783 skb_trim(skb
, nlh
->nlmsg_len
);
784 ((struct nlmsgerr
*)nlmsg_data(nlh
))->error
= -ETIMEDOUT
;
785 rtnl_unicast(skb
, net
, NETLINK_CB(skb
).portid
);
794 /* Timer process for all the unresolved queue. */
796 static void ipmr_do_expire_process(struct mr_table
*mrt
)
798 unsigned long now
= jiffies
;
799 unsigned long expires
= 10 * HZ
;
800 struct mr_mfc
*c
, *next
;
802 list_for_each_entry_safe(c
, next
, &mrt
->mfc_unres_queue
, list
) {
803 if (time_after(c
->mfc_un
.unres
.expires
, now
)) {
805 unsigned long interval
= c
->mfc_un
.unres
.expires
- now
;
806 if (interval
< expires
)
812 mr6_netlink_event(mrt
, (struct mfc6_cache
*)c
, RTM_DELROUTE
);
813 ip6mr_destroy_unres(mrt
, (struct mfc6_cache
*)c
);
816 if (!list_empty(&mrt
->mfc_unres_queue
))
817 mod_timer(&mrt
->ipmr_expire_timer
, jiffies
+ expires
);
820 static void ipmr_expire_process(struct timer_list
*t
)
822 struct mr_table
*mrt
= from_timer(mrt
, t
, ipmr_expire_timer
);
824 if (!spin_trylock(&mfc_unres_lock
)) {
825 mod_timer(&mrt
->ipmr_expire_timer
, jiffies
+ 1);
829 if (!list_empty(&mrt
->mfc_unres_queue
))
830 ipmr_do_expire_process(mrt
);
832 spin_unlock(&mfc_unres_lock
);
835 /* Fill oifs list. It is called under write locked mrt_lock. */
837 static void ip6mr_update_thresholds(struct mr_table
*mrt
,
838 struct mr_mfc
*cache
,
843 cache
->mfc_un
.res
.minvif
= MAXMIFS
;
844 cache
->mfc_un
.res
.maxvif
= 0;
845 memset(cache
->mfc_un
.res
.ttls
, 255, MAXMIFS
);
847 for (vifi
= 0; vifi
< mrt
->maxvif
; vifi
++) {
848 if (VIF_EXISTS(mrt
, vifi
) &&
849 ttls
[vifi
] && ttls
[vifi
] < 255) {
850 cache
->mfc_un
.res
.ttls
[vifi
] = ttls
[vifi
];
851 if (cache
->mfc_un
.res
.minvif
> vifi
)
852 cache
->mfc_un
.res
.minvif
= vifi
;
853 if (cache
->mfc_un
.res
.maxvif
<= vifi
)
854 cache
->mfc_un
.res
.maxvif
= vifi
+ 1;
857 cache
->mfc_un
.res
.lastuse
= jiffies
;
860 static int mif6_add(struct net
*net
, struct mr_table
*mrt
,
861 struct mif6ctl
*vifc
, int mrtsock
)
863 int vifi
= vifc
->mif6c_mifi
;
864 struct vif_device
*v
= &mrt
->vif_table
[vifi
];
865 struct net_device
*dev
;
866 struct inet6_dev
*in6_dev
;
870 if (VIF_EXISTS(mrt
, vifi
))
873 switch (vifc
->mif6c_flags
) {
874 #ifdef CONFIG_IPV6_PIMSM_V2
877 * Special Purpose VIF in PIM
878 * All the packets will be sent to the daemon
880 if (mrt
->mroute_reg_vif_num
>= 0)
882 dev
= ip6mr_reg_vif(net
, mrt
);
885 err
= dev_set_allmulti(dev
, 1);
887 unregister_netdevice(dev
);
894 dev
= dev_get_by_index(net
, vifc
->mif6c_pifi
);
896 return -EADDRNOTAVAIL
;
897 err
= dev_set_allmulti(dev
, 1);
907 in6_dev
= __in6_dev_get(dev
);
909 in6_dev
->cnf
.mc_forwarding
++;
910 inet6_netconf_notify_devconf(dev_net(dev
), RTM_NEWNETCONF
,
911 NETCONFA_MC_FORWARDING
,
912 dev
->ifindex
, &in6_dev
->cnf
);
915 /* Fill in the VIF structures */
916 vif_device_init(v
, dev
, vifc
->vifc_rate_limit
, vifc
->vifc_threshold
,
917 vifc
->mif6c_flags
| (!mrtsock
? VIFF_STATIC
: 0),
920 /* And finish update writing critical data */
921 write_lock_bh(&mrt_lock
);
923 #ifdef CONFIG_IPV6_PIMSM_V2
924 if (v
->flags
& MIFF_REGISTER
)
925 mrt
->mroute_reg_vif_num
= vifi
;
927 if (vifi
+ 1 > mrt
->maxvif
)
928 mrt
->maxvif
= vifi
+ 1;
929 write_unlock_bh(&mrt_lock
);
930 call_ip6mr_vif_entry_notifiers(net
, FIB_EVENT_VIF_ADD
,
935 static struct mfc6_cache
*ip6mr_cache_find(struct mr_table
*mrt
,
936 const struct in6_addr
*origin
,
937 const struct in6_addr
*mcastgrp
)
939 struct mfc6_cache_cmp_arg arg
= {
940 .mf6c_origin
= *origin
,
941 .mf6c_mcastgrp
= *mcastgrp
,
944 return mr_mfc_find(mrt
, &arg
);
947 /* Look for a (*,G) entry */
948 static struct mfc6_cache
*ip6mr_cache_find_any(struct mr_table
*mrt
,
949 struct in6_addr
*mcastgrp
,
952 struct mfc6_cache_cmp_arg arg
= {
953 .mf6c_origin
= in6addr_any
,
954 .mf6c_mcastgrp
= *mcastgrp
,
957 if (ipv6_addr_any(mcastgrp
))
958 return mr_mfc_find_any_parent(mrt
, mifi
);
959 return mr_mfc_find_any(mrt
, mifi
, &arg
);
962 /* Look for a (S,G,iif) entry if parent != -1 */
963 static struct mfc6_cache
*
964 ip6mr_cache_find_parent(struct mr_table
*mrt
,
965 const struct in6_addr
*origin
,
966 const struct in6_addr
*mcastgrp
,
969 struct mfc6_cache_cmp_arg arg
= {
970 .mf6c_origin
= *origin
,
971 .mf6c_mcastgrp
= *mcastgrp
,
974 return mr_mfc_find_parent(mrt
, &arg
, parent
);
977 /* Allocate a multicast cache entry */
978 static struct mfc6_cache
*ip6mr_cache_alloc(void)
980 struct mfc6_cache
*c
= kmem_cache_zalloc(mrt_cachep
, GFP_KERNEL
);
983 c
->_c
.mfc_un
.res
.last_assert
= jiffies
- MFC_ASSERT_THRESH
- 1;
984 c
->_c
.mfc_un
.res
.minvif
= MAXMIFS
;
985 c
->_c
.free
= ip6mr_cache_free_rcu
;
986 refcount_set(&c
->_c
.mfc_un
.res
.refcount
, 1);
990 static struct mfc6_cache
*ip6mr_cache_alloc_unres(void)
992 struct mfc6_cache
*c
= kmem_cache_zalloc(mrt_cachep
, GFP_ATOMIC
);
995 skb_queue_head_init(&c
->_c
.mfc_un
.unres
.unresolved
);
996 c
->_c
.mfc_un
.unres
.expires
= jiffies
+ 10 * HZ
;
1001 * A cache entry has gone into a resolved state from queued
1004 static void ip6mr_cache_resolve(struct net
*net
, struct mr_table
*mrt
,
1005 struct mfc6_cache
*uc
, struct mfc6_cache
*c
)
1007 struct sk_buff
*skb
;
1010 * Play the pending entries through our router
1013 while ((skb
= __skb_dequeue(&uc
->_c
.mfc_un
.unres
.unresolved
))) {
1014 if (ipv6_hdr(skb
)->version
== 0) {
1015 struct nlmsghdr
*nlh
= skb_pull(skb
,
1016 sizeof(struct ipv6hdr
));
1018 if (mr_fill_mroute(mrt
, skb
, &c
->_c
,
1019 nlmsg_data(nlh
)) > 0) {
1020 nlh
->nlmsg_len
= skb_tail_pointer(skb
) - (u8
*)nlh
;
1022 nlh
->nlmsg_type
= NLMSG_ERROR
;
1023 nlh
->nlmsg_len
= nlmsg_msg_size(sizeof(struct nlmsgerr
));
1024 skb_trim(skb
, nlh
->nlmsg_len
);
1025 ((struct nlmsgerr
*)nlmsg_data(nlh
))->error
= -EMSGSIZE
;
1027 rtnl_unicast(skb
, net
, NETLINK_CB(skb
).portid
);
1029 ip6_mr_forward(net
, mrt
, skb
->dev
, skb
, c
);
1034 * Bounce a cache query up to pim6sd and netlink.
1036 * Called under mrt_lock.
1039 static int ip6mr_cache_report(struct mr_table
*mrt
, struct sk_buff
*pkt
,
1040 mifi_t mifi
, int assert)
1042 struct sock
*mroute6_sk
;
1043 struct sk_buff
*skb
;
1044 struct mrt6msg
*msg
;
1047 #ifdef CONFIG_IPV6_PIMSM_V2
1048 if (assert == MRT6MSG_WHOLEPKT
)
1049 skb
= skb_realloc_headroom(pkt
, -skb_network_offset(pkt
)
1053 skb
= alloc_skb(sizeof(struct ipv6hdr
) + sizeof(*msg
), GFP_ATOMIC
);
1058 /* I suppose that internal messages
1059 * do not require checksums */
1061 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1063 #ifdef CONFIG_IPV6_PIMSM_V2
1064 if (assert == MRT6MSG_WHOLEPKT
) {
1065 /* Ugly, but we have no choice with this interface.
1066 Duplicate old header, fix length etc.
1067 And all this only to mangle msg->im6_msgtype and
1068 to set msg->im6_mbz to "mbz" :-)
1070 skb_push(skb
, -skb_network_offset(pkt
));
1072 skb_push(skb
, sizeof(*msg
));
1073 skb_reset_transport_header(skb
);
1074 msg
= (struct mrt6msg
*)skb_transport_header(skb
);
1076 msg
->im6_msgtype
= MRT6MSG_WHOLEPKT
;
1077 msg
->im6_mif
= mrt
->mroute_reg_vif_num
;
1079 msg
->im6_src
= ipv6_hdr(pkt
)->saddr
;
1080 msg
->im6_dst
= ipv6_hdr(pkt
)->daddr
;
1082 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1087 * Copy the IP header
1090 skb_put(skb
, sizeof(struct ipv6hdr
));
1091 skb_reset_network_header(skb
);
1092 skb_copy_to_linear_data(skb
, ipv6_hdr(pkt
), sizeof(struct ipv6hdr
));
1097 skb_put(skb
, sizeof(*msg
));
1098 skb_reset_transport_header(skb
);
1099 msg
= (struct mrt6msg
*)skb_transport_header(skb
);
1102 msg
->im6_msgtype
= assert;
1103 msg
->im6_mif
= mifi
;
1105 msg
->im6_src
= ipv6_hdr(pkt
)->saddr
;
1106 msg
->im6_dst
= ipv6_hdr(pkt
)->daddr
;
1108 skb_dst_set(skb
, dst_clone(skb_dst(pkt
)));
1109 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1113 mroute6_sk
= rcu_dereference(mrt
->mroute_sk
);
1120 mrt6msg_netlink_event(mrt
, skb
);
1122 /* Deliver to user space multicast routing algorithms */
1123 ret
= sock_queue_rcv_skb(mroute6_sk
, skb
);
1126 net_warn_ratelimited("mroute6: pending queue full, dropping entries\n");
1133 /* Queue a packet for resolution. It gets locked cache entry! */
1134 static int ip6mr_cache_unresolved(struct mr_table
*mrt
, mifi_t mifi
,
1135 struct sk_buff
*skb
, struct net_device
*dev
)
1137 struct mfc6_cache
*c
;
1141 spin_lock_bh(&mfc_unres_lock
);
1142 list_for_each_entry(c
, &mrt
->mfc_unres_queue
, _c
.list
) {
1143 if (ipv6_addr_equal(&c
->mf6c_mcastgrp
, &ipv6_hdr(skb
)->daddr
) &&
1144 ipv6_addr_equal(&c
->mf6c_origin
, &ipv6_hdr(skb
)->saddr
)) {
1152 * Create a new entry if allowable
1155 c
= ip6mr_cache_alloc_unres();
1157 spin_unlock_bh(&mfc_unres_lock
);
1163 /* Fill in the new cache entry */
1164 c
->_c
.mfc_parent
= -1;
1165 c
->mf6c_origin
= ipv6_hdr(skb
)->saddr
;
1166 c
->mf6c_mcastgrp
= ipv6_hdr(skb
)->daddr
;
1169 * Reflect first query at pim6sd
1171 err
= ip6mr_cache_report(mrt
, skb
, mifi
, MRT6MSG_NOCACHE
);
1173 /* If the report failed throw the cache entry
1176 spin_unlock_bh(&mfc_unres_lock
);
1178 ip6mr_cache_free(c
);
1183 atomic_inc(&mrt
->cache_resolve_queue_len
);
1184 list_add(&c
->_c
.list
, &mrt
->mfc_unres_queue
);
1185 mr6_netlink_event(mrt
, c
, RTM_NEWROUTE
);
1187 ipmr_do_expire_process(mrt
);
1190 /* See if we can append the packet */
1191 if (c
->_c
.mfc_un
.unres
.unresolved
.qlen
> 3) {
1197 skb
->skb_iif
= dev
->ifindex
;
1199 skb_queue_tail(&c
->_c
.mfc_un
.unres
.unresolved
, skb
);
1203 spin_unlock_bh(&mfc_unres_lock
);
1208 * MFC6 cache manipulation by user space
1211 static int ip6mr_mfc_delete(struct mr_table
*mrt
, struct mf6cctl
*mfc
,
1214 struct mfc6_cache
*c
;
1216 /* The entries are added/deleted only under RTNL */
1218 c
= ip6mr_cache_find_parent(mrt
, &mfc
->mf6cc_origin
.sin6_addr
,
1219 &mfc
->mf6cc_mcastgrp
.sin6_addr
, parent
);
1223 rhltable_remove(&mrt
->mfc_hash
, &c
->_c
.mnode
, ip6mr_rht_params
);
1224 list_del_rcu(&c
->_c
.list
);
1226 call_ip6mr_mfc_entry_notifiers(read_pnet(&mrt
->net
),
1227 FIB_EVENT_ENTRY_DEL
, c
, mrt
->id
);
1228 mr6_netlink_event(mrt
, c
, RTM_DELROUTE
);
1229 mr_cache_put(&c
->_c
);
1233 static int ip6mr_device_event(struct notifier_block
*this,
1234 unsigned long event
, void *ptr
)
1236 struct net_device
*dev
= netdev_notifier_info_to_dev(ptr
);
1237 struct net
*net
= dev_net(dev
);
1238 struct mr_table
*mrt
;
1239 struct vif_device
*v
;
1242 if (event
!= NETDEV_UNREGISTER
)
1245 ip6mr_for_each_table(mrt
, net
) {
1246 v
= &mrt
->vif_table
[0];
1247 for (ct
= 0; ct
< mrt
->maxvif
; ct
++, v
++) {
1249 mif6_delete(mrt
, ct
, 1, NULL
);
1256 static unsigned int ip6mr_seq_read(struct net
*net
)
1260 return net
->ipv6
.ipmr_seq
+ ip6mr_rules_seq_read(net
);
1263 static int ip6mr_dump(struct net
*net
, struct notifier_block
*nb
,
1264 struct netlink_ext_ack
*extack
)
1266 return mr_dump(net
, nb
, RTNL_FAMILY_IP6MR
, ip6mr_rules_dump
,
1267 ip6mr_mr_table_iter
, &mrt_lock
, extack
);
1270 static struct notifier_block ip6_mr_notifier
= {
1271 .notifier_call
= ip6mr_device_event
1274 static const struct fib_notifier_ops ip6mr_notifier_ops_template
= {
1275 .family
= RTNL_FAMILY_IP6MR
,
1276 .fib_seq_read
= ip6mr_seq_read
,
1277 .fib_dump
= ip6mr_dump
,
1278 .owner
= THIS_MODULE
,
1281 static int __net_init
ip6mr_notifier_init(struct net
*net
)
1283 struct fib_notifier_ops
*ops
;
1285 net
->ipv6
.ipmr_seq
= 0;
1287 ops
= fib_notifier_ops_register(&ip6mr_notifier_ops_template
, net
);
1289 return PTR_ERR(ops
);
1291 net
->ipv6
.ip6mr_notifier_ops
= ops
;
1296 static void __net_exit
ip6mr_notifier_exit(struct net
*net
)
1298 fib_notifier_ops_unregister(net
->ipv6
.ip6mr_notifier_ops
);
1299 net
->ipv6
.ip6mr_notifier_ops
= NULL
;
1302 /* Setup for IP multicast routing */
1303 static int __net_init
ip6mr_net_init(struct net
*net
)
1307 err
= ip6mr_notifier_init(net
);
1311 err
= ip6mr_rules_init(net
);
1313 goto ip6mr_rules_fail
;
1315 #ifdef CONFIG_PROC_FS
1317 if (!proc_create_net("ip6_mr_vif", 0, net
->proc_net
, &ip6mr_vif_seq_ops
,
1318 sizeof(struct mr_vif_iter
)))
1320 if (!proc_create_net("ip6_mr_cache", 0, net
->proc_net
, &ipmr_mfc_seq_ops
,
1321 sizeof(struct mr_mfc_iter
)))
1322 goto proc_cache_fail
;
1327 #ifdef CONFIG_PROC_FS
1329 remove_proc_entry("ip6_mr_vif", net
->proc_net
);
1331 ip6mr_rules_exit(net
);
1334 ip6mr_notifier_exit(net
);
1338 static void __net_exit
ip6mr_net_exit(struct net
*net
)
1340 #ifdef CONFIG_PROC_FS
1341 remove_proc_entry("ip6_mr_cache", net
->proc_net
);
1342 remove_proc_entry("ip6_mr_vif", net
->proc_net
);
1344 ip6mr_rules_exit(net
);
1345 ip6mr_notifier_exit(net
);
1348 static struct pernet_operations ip6mr_net_ops
= {
1349 .init
= ip6mr_net_init
,
1350 .exit
= ip6mr_net_exit
,
1353 int __init
ip6_mr_init(void)
1357 mrt_cachep
= kmem_cache_create("ip6_mrt_cache",
1358 sizeof(struct mfc6_cache
),
1359 0, SLAB_HWCACHE_ALIGN
,
1364 err
= register_pernet_subsys(&ip6mr_net_ops
);
1366 goto reg_pernet_fail
;
1368 err
= register_netdevice_notifier(&ip6_mr_notifier
);
1370 goto reg_notif_fail
;
1371 #ifdef CONFIG_IPV6_PIMSM_V2
1372 if (inet6_add_protocol(&pim6_protocol
, IPPROTO_PIM
) < 0) {
1373 pr_err("%s: can't add PIM protocol\n", __func__
);
1375 goto add_proto_fail
;
1378 err
= rtnl_register_module(THIS_MODULE
, RTNL_FAMILY_IP6MR
, RTM_GETROUTE
,
1379 NULL
, ip6mr_rtm_dumproute
, 0);
1383 #ifdef CONFIG_IPV6_PIMSM_V2
1384 inet6_del_protocol(&pim6_protocol
, IPPROTO_PIM
);
1386 unregister_netdevice_notifier(&ip6_mr_notifier
);
1389 unregister_pernet_subsys(&ip6mr_net_ops
);
1391 kmem_cache_destroy(mrt_cachep
);
1395 void ip6_mr_cleanup(void)
1397 rtnl_unregister(RTNL_FAMILY_IP6MR
, RTM_GETROUTE
);
1398 #ifdef CONFIG_IPV6_PIMSM_V2
1399 inet6_del_protocol(&pim6_protocol
, IPPROTO_PIM
);
1401 unregister_netdevice_notifier(&ip6_mr_notifier
);
1402 unregister_pernet_subsys(&ip6mr_net_ops
);
1403 kmem_cache_destroy(mrt_cachep
);
1406 static int ip6mr_mfc_add(struct net
*net
, struct mr_table
*mrt
,
1407 struct mf6cctl
*mfc
, int mrtsock
, int parent
)
1409 unsigned char ttls
[MAXMIFS
];
1410 struct mfc6_cache
*uc
, *c
;
1415 if (mfc
->mf6cc_parent
>= MAXMIFS
)
1418 memset(ttls
, 255, MAXMIFS
);
1419 for (i
= 0; i
< MAXMIFS
; i
++) {
1420 if (IF_ISSET(i
, &mfc
->mf6cc_ifset
))
1424 /* The entries are added/deleted only under RTNL */
1426 c
= ip6mr_cache_find_parent(mrt
, &mfc
->mf6cc_origin
.sin6_addr
,
1427 &mfc
->mf6cc_mcastgrp
.sin6_addr
, parent
);
1430 write_lock_bh(&mrt_lock
);
1431 c
->_c
.mfc_parent
= mfc
->mf6cc_parent
;
1432 ip6mr_update_thresholds(mrt
, &c
->_c
, ttls
);
1434 c
->_c
.mfc_flags
|= MFC_STATIC
;
1435 write_unlock_bh(&mrt_lock
);
1436 call_ip6mr_mfc_entry_notifiers(net
, FIB_EVENT_ENTRY_REPLACE
,
1438 mr6_netlink_event(mrt
, c
, RTM_NEWROUTE
);
1442 if (!ipv6_addr_any(&mfc
->mf6cc_mcastgrp
.sin6_addr
) &&
1443 !ipv6_addr_is_multicast(&mfc
->mf6cc_mcastgrp
.sin6_addr
))
1446 c
= ip6mr_cache_alloc();
1450 c
->mf6c_origin
= mfc
->mf6cc_origin
.sin6_addr
;
1451 c
->mf6c_mcastgrp
= mfc
->mf6cc_mcastgrp
.sin6_addr
;
1452 c
->_c
.mfc_parent
= mfc
->mf6cc_parent
;
1453 ip6mr_update_thresholds(mrt
, &c
->_c
, ttls
);
1455 c
->_c
.mfc_flags
|= MFC_STATIC
;
1457 err
= rhltable_insert_key(&mrt
->mfc_hash
, &c
->cmparg
, &c
->_c
.mnode
,
1460 pr_err("ip6mr: rhtable insert error %d\n", err
);
1461 ip6mr_cache_free(c
);
1464 list_add_tail_rcu(&c
->_c
.list
, &mrt
->mfc_cache_list
);
1466 /* Check to see if we resolved a queued list. If so we
1467 * need to send on the frames and tidy up.
1470 spin_lock_bh(&mfc_unres_lock
);
1471 list_for_each_entry(_uc
, &mrt
->mfc_unres_queue
, list
) {
1472 uc
= (struct mfc6_cache
*)_uc
;
1473 if (ipv6_addr_equal(&uc
->mf6c_origin
, &c
->mf6c_origin
) &&
1474 ipv6_addr_equal(&uc
->mf6c_mcastgrp
, &c
->mf6c_mcastgrp
)) {
1475 list_del(&_uc
->list
);
1476 atomic_dec(&mrt
->cache_resolve_queue_len
);
1481 if (list_empty(&mrt
->mfc_unres_queue
))
1482 del_timer(&mrt
->ipmr_expire_timer
);
1483 spin_unlock_bh(&mfc_unres_lock
);
1486 ip6mr_cache_resolve(net
, mrt
, uc
, c
);
1487 ip6mr_cache_free(uc
);
1489 call_ip6mr_mfc_entry_notifiers(net
, FIB_EVENT_ENTRY_ADD
,
1491 mr6_netlink_event(mrt
, c
, RTM_NEWROUTE
);
1496 * Close the multicast socket, and clear the vif tables etc
1499 static void mroute_clean_tables(struct mr_table
*mrt
, int flags
)
1501 struct mr_mfc
*c
, *tmp
;
1505 /* Shut down all active vif entries */
1506 if (flags
& (MRT6_FLUSH_MIFS
| MRT6_FLUSH_MIFS_STATIC
)) {
1507 for (i
= 0; i
< mrt
->maxvif
; i
++) {
1508 if (((mrt
->vif_table
[i
].flags
& VIFF_STATIC
) &&
1509 !(flags
& MRT6_FLUSH_MIFS_STATIC
)) ||
1510 (!(mrt
->vif_table
[i
].flags
& VIFF_STATIC
) && !(flags
& MRT6_FLUSH_MIFS
)))
1512 mif6_delete(mrt
, i
, 0, &list
);
1514 unregister_netdevice_many(&list
);
1517 /* Wipe the cache */
1518 if (flags
& (MRT6_FLUSH_MFC
| MRT6_FLUSH_MFC_STATIC
)) {
1519 list_for_each_entry_safe(c
, tmp
, &mrt
->mfc_cache_list
, list
) {
1520 if (((c
->mfc_flags
& MFC_STATIC
) && !(flags
& MRT6_FLUSH_MFC_STATIC
)) ||
1521 (!(c
->mfc_flags
& MFC_STATIC
) && !(flags
& MRT6_FLUSH_MFC
)))
1523 rhltable_remove(&mrt
->mfc_hash
, &c
->mnode
, ip6mr_rht_params
);
1524 list_del_rcu(&c
->list
);
1525 call_ip6mr_mfc_entry_notifiers(read_pnet(&mrt
->net
),
1526 FIB_EVENT_ENTRY_DEL
,
1527 (struct mfc6_cache
*)c
, mrt
->id
);
1528 mr6_netlink_event(mrt
, (struct mfc6_cache
*)c
, RTM_DELROUTE
);
1533 if (flags
& MRT6_FLUSH_MFC
) {
1534 if (atomic_read(&mrt
->cache_resolve_queue_len
) != 0) {
1535 spin_lock_bh(&mfc_unres_lock
);
1536 list_for_each_entry_safe(c
, tmp
, &mrt
->mfc_unres_queue
, list
) {
1538 mr6_netlink_event(mrt
, (struct mfc6_cache
*)c
,
1540 ip6mr_destroy_unres(mrt
, (struct mfc6_cache
*)c
);
1542 spin_unlock_bh(&mfc_unres_lock
);
1547 static int ip6mr_sk_init(struct mr_table
*mrt
, struct sock
*sk
)
1550 struct net
*net
= sock_net(sk
);
1553 write_lock_bh(&mrt_lock
);
1554 if (rtnl_dereference(mrt
->mroute_sk
)) {
1557 rcu_assign_pointer(mrt
->mroute_sk
, sk
);
1558 sock_set_flag(sk
, SOCK_RCU_FREE
);
1559 net
->ipv6
.devconf_all
->mc_forwarding
++;
1561 write_unlock_bh(&mrt_lock
);
1564 inet6_netconf_notify_devconf(net
, RTM_NEWNETCONF
,
1565 NETCONFA_MC_FORWARDING
,
1566 NETCONFA_IFINDEX_ALL
,
1567 net
->ipv6
.devconf_all
);
1573 int ip6mr_sk_done(struct sock
*sk
)
1576 struct net
*net
= sock_net(sk
);
1577 struct mr_table
*mrt
;
1579 if (sk
->sk_type
!= SOCK_RAW
||
1580 inet_sk(sk
)->inet_num
!= IPPROTO_ICMPV6
)
1584 ip6mr_for_each_table(mrt
, net
) {
1585 if (sk
== rtnl_dereference(mrt
->mroute_sk
)) {
1586 write_lock_bh(&mrt_lock
);
1587 RCU_INIT_POINTER(mrt
->mroute_sk
, NULL
);
1588 /* Note that mroute_sk had SOCK_RCU_FREE set,
1589 * so the RCU grace period before sk freeing
1590 * is guaranteed by sk_destruct()
1592 net
->ipv6
.devconf_all
->mc_forwarding
--;
1593 write_unlock_bh(&mrt_lock
);
1594 inet6_netconf_notify_devconf(net
, RTM_NEWNETCONF
,
1595 NETCONFA_MC_FORWARDING
,
1596 NETCONFA_IFINDEX_ALL
,
1597 net
->ipv6
.devconf_all
);
1599 mroute_clean_tables(mrt
, MRT6_FLUSH_MIFS
| MRT6_FLUSH_MFC
);
1609 bool mroute6_is_socket(struct net
*net
, struct sk_buff
*skb
)
1611 struct mr_table
*mrt
;
1612 struct flowi6 fl6
= {
1613 .flowi6_iif
= skb
->skb_iif
? : LOOPBACK_IFINDEX
,
1614 .flowi6_oif
= skb
->dev
->ifindex
,
1615 .flowi6_mark
= skb
->mark
,
1618 if (ip6mr_fib_lookup(net
, &fl6
, &mrt
) < 0)
1621 return rcu_access_pointer(mrt
->mroute_sk
);
1623 EXPORT_SYMBOL(mroute6_is_socket
);
1626 * Socket options and virtual interface manipulation. The whole
1627 * virtual interface system is a complete heap, but unfortunately
1628 * that's how BSD mrouted happens to think. Maybe one day with a proper
1629 * MOSPF/PIM router set up we can clean this up.
1632 int ip6_mroute_setsockopt(struct sock
*sk
, int optname
, sockptr_t optval
,
1633 unsigned int optlen
)
1635 int ret
, parent
= 0;
1639 struct net
*net
= sock_net(sk
);
1640 struct mr_table
*mrt
;
1642 if (sk
->sk_type
!= SOCK_RAW
||
1643 inet_sk(sk
)->inet_num
!= IPPROTO_ICMPV6
)
1646 mrt
= ip6mr_get_table(net
, raw6_sk(sk
)->ip6mr_table
? : RT6_TABLE_DFLT
);
1650 if (optname
!= MRT6_INIT
) {
1651 if (sk
!= rcu_access_pointer(mrt
->mroute_sk
) &&
1652 !ns_capable(net
->user_ns
, CAP_NET_ADMIN
))
1658 if (optlen
< sizeof(int))
1661 return ip6mr_sk_init(mrt
, sk
);
1664 return ip6mr_sk_done(sk
);
1667 if (optlen
< sizeof(vif
))
1669 if (copy_from_sockptr(&vif
, optval
, sizeof(vif
)))
1671 if (vif
.mif6c_mifi
>= MAXMIFS
)
1674 ret
= mif6_add(net
, mrt
, &vif
,
1675 sk
== rtnl_dereference(mrt
->mroute_sk
));
1680 if (optlen
< sizeof(mifi_t
))
1682 if (copy_from_sockptr(&mifi
, optval
, sizeof(mifi_t
)))
1685 ret
= mif6_delete(mrt
, mifi
, 0, NULL
);
1690 * Manipulate the forwarding caches. These live
1691 * in a sort of kernel/user symbiosis.
1697 case MRT6_ADD_MFC_PROXY
:
1698 case MRT6_DEL_MFC_PROXY
:
1699 if (optlen
< sizeof(mfc
))
1701 if (copy_from_sockptr(&mfc
, optval
, sizeof(mfc
)))
1704 parent
= mfc
.mf6cc_parent
;
1706 if (optname
== MRT6_DEL_MFC
|| optname
== MRT6_DEL_MFC_PROXY
)
1707 ret
= ip6mr_mfc_delete(mrt
, &mfc
, parent
);
1709 ret
= ip6mr_mfc_add(net
, mrt
, &mfc
,
1711 rtnl_dereference(mrt
->mroute_sk
),
1720 if (optlen
!= sizeof(flags
))
1722 if (copy_from_sockptr(&flags
, optval
, sizeof(flags
)))
1725 mroute_clean_tables(mrt
, flags
);
1731 * Control PIM assert (to activate pim will activate assert)
1737 if (optlen
!= sizeof(v
))
1739 if (copy_from_sockptr(&v
, optval
, sizeof(v
)))
1741 mrt
->mroute_do_assert
= v
;
1745 #ifdef CONFIG_IPV6_PIMSM_V2
1750 if (optlen
!= sizeof(v
))
1752 if (copy_from_sockptr(&v
, optval
, sizeof(v
)))
1757 if (v
!= mrt
->mroute_do_pim
) {
1758 mrt
->mroute_do_pim
= v
;
1759 mrt
->mroute_do_assert
= v
;
1766 #ifdef CONFIG_IPV6_MROUTE_MULTIPLE_TABLES
1771 if (optlen
!= sizeof(u32
))
1773 if (copy_from_sockptr(&v
, optval
, sizeof(v
)))
1775 /* "pim6reg%u" should not exceed 16 bytes (IFNAMSIZ) */
1776 if (v
!= RT_TABLE_DEFAULT
&& v
>= 100000000)
1778 if (sk
== rcu_access_pointer(mrt
->mroute_sk
))
1783 mrt
= ip6mr_new_table(net
, v
);
1787 raw6_sk(sk
)->ip6mr_table
= v
;
1793 * Spurious command, or MRT6_VERSION which you cannot
1797 return -ENOPROTOOPT
;
1802 * Getsock opt support for the multicast routing system.
1805 int ip6_mroute_getsockopt(struct sock
*sk
, int optname
, char __user
*optval
,
1810 struct net
*net
= sock_net(sk
);
1811 struct mr_table
*mrt
;
1813 if (sk
->sk_type
!= SOCK_RAW
||
1814 inet_sk(sk
)->inet_num
!= IPPROTO_ICMPV6
)
1817 mrt
= ip6mr_get_table(net
, raw6_sk(sk
)->ip6mr_table
? : RT6_TABLE_DFLT
);
1825 #ifdef CONFIG_IPV6_PIMSM_V2
1827 val
= mrt
->mroute_do_pim
;
1831 val
= mrt
->mroute_do_assert
;
1834 return -ENOPROTOOPT
;
1837 if (get_user(olr
, optlen
))
1840 olr
= min_t(int, olr
, sizeof(int));
1844 if (put_user(olr
, optlen
))
1846 if (copy_to_user(optval
, &val
, olr
))
1852 * The IP multicast ioctl support routines.
1855 int ip6mr_ioctl(struct sock
*sk
, int cmd
, void __user
*arg
)
1857 struct sioc_sg_req6 sr
;
1858 struct sioc_mif_req6 vr
;
1859 struct vif_device
*vif
;
1860 struct mfc6_cache
*c
;
1861 struct net
*net
= sock_net(sk
);
1862 struct mr_table
*mrt
;
1864 mrt
= ip6mr_get_table(net
, raw6_sk(sk
)->ip6mr_table
? : RT6_TABLE_DFLT
);
1869 case SIOCGETMIFCNT_IN6
:
1870 if (copy_from_user(&vr
, arg
, sizeof(vr
)))
1872 if (vr
.mifi
>= mrt
->maxvif
)
1874 vr
.mifi
= array_index_nospec(vr
.mifi
, mrt
->maxvif
);
1875 read_lock(&mrt_lock
);
1876 vif
= &mrt
->vif_table
[vr
.mifi
];
1877 if (VIF_EXISTS(mrt
, vr
.mifi
)) {
1878 vr
.icount
= vif
->pkt_in
;
1879 vr
.ocount
= vif
->pkt_out
;
1880 vr
.ibytes
= vif
->bytes_in
;
1881 vr
.obytes
= vif
->bytes_out
;
1882 read_unlock(&mrt_lock
);
1884 if (copy_to_user(arg
, &vr
, sizeof(vr
)))
1888 read_unlock(&mrt_lock
);
1889 return -EADDRNOTAVAIL
;
1890 case SIOCGETSGCNT_IN6
:
1891 if (copy_from_user(&sr
, arg
, sizeof(sr
)))
1895 c
= ip6mr_cache_find(mrt
, &sr
.src
.sin6_addr
, &sr
.grp
.sin6_addr
);
1897 sr
.pktcnt
= c
->_c
.mfc_un
.res
.pkt
;
1898 sr
.bytecnt
= c
->_c
.mfc_un
.res
.bytes
;
1899 sr
.wrong_if
= c
->_c
.mfc_un
.res
.wrong_if
;
1902 if (copy_to_user(arg
, &sr
, sizeof(sr
)))
1907 return -EADDRNOTAVAIL
;
1909 return -ENOIOCTLCMD
;
1913 #ifdef CONFIG_COMPAT
1914 struct compat_sioc_sg_req6
{
1915 struct sockaddr_in6 src
;
1916 struct sockaddr_in6 grp
;
1917 compat_ulong_t pktcnt
;
1918 compat_ulong_t bytecnt
;
1919 compat_ulong_t wrong_if
;
1922 struct compat_sioc_mif_req6
{
1924 compat_ulong_t icount
;
1925 compat_ulong_t ocount
;
1926 compat_ulong_t ibytes
;
1927 compat_ulong_t obytes
;
1930 int ip6mr_compat_ioctl(struct sock
*sk
, unsigned int cmd
, void __user
*arg
)
1932 struct compat_sioc_sg_req6 sr
;
1933 struct compat_sioc_mif_req6 vr
;
1934 struct vif_device
*vif
;
1935 struct mfc6_cache
*c
;
1936 struct net
*net
= sock_net(sk
);
1937 struct mr_table
*mrt
;
1939 mrt
= ip6mr_get_table(net
, raw6_sk(sk
)->ip6mr_table
? : RT6_TABLE_DFLT
);
1944 case SIOCGETMIFCNT_IN6
:
1945 if (copy_from_user(&vr
, arg
, sizeof(vr
)))
1947 if (vr
.mifi
>= mrt
->maxvif
)
1949 vr
.mifi
= array_index_nospec(vr
.mifi
, mrt
->maxvif
);
1950 read_lock(&mrt_lock
);
1951 vif
= &mrt
->vif_table
[vr
.mifi
];
1952 if (VIF_EXISTS(mrt
, vr
.mifi
)) {
1953 vr
.icount
= vif
->pkt_in
;
1954 vr
.ocount
= vif
->pkt_out
;
1955 vr
.ibytes
= vif
->bytes_in
;
1956 vr
.obytes
= vif
->bytes_out
;
1957 read_unlock(&mrt_lock
);
1959 if (copy_to_user(arg
, &vr
, sizeof(vr
)))
1963 read_unlock(&mrt_lock
);
1964 return -EADDRNOTAVAIL
;
1965 case SIOCGETSGCNT_IN6
:
1966 if (copy_from_user(&sr
, arg
, sizeof(sr
)))
1970 c
= ip6mr_cache_find(mrt
, &sr
.src
.sin6_addr
, &sr
.grp
.sin6_addr
);
1972 sr
.pktcnt
= c
->_c
.mfc_un
.res
.pkt
;
1973 sr
.bytecnt
= c
->_c
.mfc_un
.res
.bytes
;
1974 sr
.wrong_if
= c
->_c
.mfc_un
.res
.wrong_if
;
1977 if (copy_to_user(arg
, &sr
, sizeof(sr
)))
1982 return -EADDRNOTAVAIL
;
1984 return -ENOIOCTLCMD
;
1989 static inline int ip6mr_forward2_finish(struct net
*net
, struct sock
*sk
, struct sk_buff
*skb
)
1991 IP6_INC_STATS(net
, ip6_dst_idev(skb_dst(skb
)),
1992 IPSTATS_MIB_OUTFORWDATAGRAMS
);
1993 IP6_ADD_STATS(net
, ip6_dst_idev(skb_dst(skb
)),
1994 IPSTATS_MIB_OUTOCTETS
, skb
->len
);
1995 return dst_output(net
, sk
, skb
);
1999 * Processing handlers for ip6mr_forward
2002 static int ip6mr_forward2(struct net
*net
, struct mr_table
*mrt
,
2003 struct sk_buff
*skb
, int vifi
)
2005 struct ipv6hdr
*ipv6h
;
2006 struct vif_device
*vif
= &mrt
->vif_table
[vifi
];
2007 struct net_device
*dev
;
2008 struct dst_entry
*dst
;
2014 #ifdef CONFIG_IPV6_PIMSM_V2
2015 if (vif
->flags
& MIFF_REGISTER
) {
2017 vif
->bytes_out
+= skb
->len
;
2018 vif
->dev
->stats
.tx_bytes
+= skb
->len
;
2019 vif
->dev
->stats
.tx_packets
++;
2020 ip6mr_cache_report(mrt
, skb
, vifi
, MRT6MSG_WHOLEPKT
);
2025 ipv6h
= ipv6_hdr(skb
);
2027 fl6
= (struct flowi6
) {
2028 .flowi6_oif
= vif
->link
,
2029 .daddr
= ipv6h
->daddr
,
2032 dst
= ip6_route_output(net
, NULL
, &fl6
);
2039 skb_dst_set(skb
, dst
);
2042 * RFC1584 teaches, that DVMRP/PIM router must deliver packets locally
2043 * not only before forwarding, but after forwarding on all output
2044 * interfaces. It is clear, if mrouter runs a multicasting
2045 * program, it should receive packets not depending to what interface
2046 * program is joined.
2047 * If we will not make it, the program will have to join on all
2048 * interfaces. On the other hand, multihoming host (or router, but
2049 * not mrouter) cannot join to more than one interface - it will
2050 * result in receiving multiple packets.
2055 vif
->bytes_out
+= skb
->len
;
2057 /* We are about to write */
2058 /* XXX: extension headers? */
2059 if (skb_cow(skb
, sizeof(*ipv6h
) + LL_RESERVED_SPACE(dev
)))
2062 ipv6h
= ipv6_hdr(skb
);
2065 IP6CB(skb
)->flags
|= IP6SKB_FORWARDED
;
2067 return NF_HOOK(NFPROTO_IPV6
, NF_INET_FORWARD
,
2068 net
, NULL
, skb
, skb
->dev
, dev
,
2069 ip6mr_forward2_finish
);
2076 static int ip6mr_find_vif(struct mr_table
*mrt
, struct net_device
*dev
)
2080 for (ct
= mrt
->maxvif
- 1; ct
>= 0; ct
--) {
2081 if (mrt
->vif_table
[ct
].dev
== dev
)
2087 static void ip6_mr_forward(struct net
*net
, struct mr_table
*mrt
,
2088 struct net_device
*dev
, struct sk_buff
*skb
,
2089 struct mfc6_cache
*c
)
2093 int true_vifi
= ip6mr_find_vif(mrt
, dev
);
2095 vif
= c
->_c
.mfc_parent
;
2096 c
->_c
.mfc_un
.res
.pkt
++;
2097 c
->_c
.mfc_un
.res
.bytes
+= skb
->len
;
2098 c
->_c
.mfc_un
.res
.lastuse
= jiffies
;
2100 if (ipv6_addr_any(&c
->mf6c_origin
) && true_vifi
>= 0) {
2101 struct mfc6_cache
*cache_proxy
;
2103 /* For an (*,G) entry, we only check that the incoming
2104 * interface is part of the static tree.
2107 cache_proxy
= mr_mfc_find_any_parent(mrt
, vif
);
2109 cache_proxy
->_c
.mfc_un
.res
.ttls
[true_vifi
] < 255) {
2117 * Wrong interface: drop packet and (maybe) send PIM assert.
2119 if (mrt
->vif_table
[vif
].dev
!= dev
) {
2120 c
->_c
.mfc_un
.res
.wrong_if
++;
2122 if (true_vifi
>= 0 && mrt
->mroute_do_assert
&&
2123 /* pimsm uses asserts, when switching from RPT to SPT,
2124 so that we cannot check that packet arrived on an oif.
2125 It is bad, but otherwise we would need to move pretty
2126 large chunk of pimd to kernel. Ough... --ANK
2128 (mrt
->mroute_do_pim
||
2129 c
->_c
.mfc_un
.res
.ttls
[true_vifi
] < 255) &&
2131 c
->_c
.mfc_un
.res
.last_assert
+
2132 MFC_ASSERT_THRESH
)) {
2133 c
->_c
.mfc_un
.res
.last_assert
= jiffies
;
2134 ip6mr_cache_report(mrt
, skb
, true_vifi
, MRT6MSG_WRONGMIF
);
2140 mrt
->vif_table
[vif
].pkt_in
++;
2141 mrt
->vif_table
[vif
].bytes_in
+= skb
->len
;
2146 if (ipv6_addr_any(&c
->mf6c_origin
) &&
2147 ipv6_addr_any(&c
->mf6c_mcastgrp
)) {
2148 if (true_vifi
>= 0 &&
2149 true_vifi
!= c
->_c
.mfc_parent
&&
2150 ipv6_hdr(skb
)->hop_limit
>
2151 c
->_c
.mfc_un
.res
.ttls
[c
->_c
.mfc_parent
]) {
2152 /* It's an (*,*) entry and the packet is not coming from
2153 * the upstream: forward the packet to the upstream
2156 psend
= c
->_c
.mfc_parent
;
2161 for (ct
= c
->_c
.mfc_un
.res
.maxvif
- 1;
2162 ct
>= c
->_c
.mfc_un
.res
.minvif
; ct
--) {
2163 /* For (*,G) entry, don't forward to the incoming interface */
2164 if ((!ipv6_addr_any(&c
->mf6c_origin
) || ct
!= true_vifi
) &&
2165 ipv6_hdr(skb
)->hop_limit
> c
->_c
.mfc_un
.res
.ttls
[ct
]) {
2167 struct sk_buff
*skb2
= skb_clone(skb
, GFP_ATOMIC
);
2169 ip6mr_forward2(net
, mrt
, skb2
, psend
);
2176 ip6mr_forward2(net
, mrt
, skb
, psend
);
2186 * Multicast packets for forwarding arrive here
2189 int ip6_mr_input(struct sk_buff
*skb
)
2191 struct mfc6_cache
*cache
;
2192 struct net
*net
= dev_net(skb
->dev
);
2193 struct mr_table
*mrt
;
2194 struct flowi6 fl6
= {
2195 .flowi6_iif
= skb
->dev
->ifindex
,
2196 .flowi6_mark
= skb
->mark
,
2199 struct net_device
*dev
;
2201 /* skb->dev passed in is the master dev for vrfs.
2202 * Get the proper interface that does have a vif associated with it.
2205 if (netif_is_l3_master(skb
->dev
)) {
2206 dev
= dev_get_by_index_rcu(net
, IPCB(skb
)->iif
);
2213 err
= ip6mr_fib_lookup(net
, &fl6
, &mrt
);
2219 read_lock(&mrt_lock
);
2220 cache
= ip6mr_cache_find(mrt
,
2221 &ipv6_hdr(skb
)->saddr
, &ipv6_hdr(skb
)->daddr
);
2223 int vif
= ip6mr_find_vif(mrt
, dev
);
2226 cache
= ip6mr_cache_find_any(mrt
,
2227 &ipv6_hdr(skb
)->daddr
,
2232 * No usable cache entry
2237 vif
= ip6mr_find_vif(mrt
, dev
);
2239 int err
= ip6mr_cache_unresolved(mrt
, vif
, skb
, dev
);
2240 read_unlock(&mrt_lock
);
2244 read_unlock(&mrt_lock
);
2249 ip6_mr_forward(net
, mrt
, dev
, skb
, cache
);
2251 read_unlock(&mrt_lock
);
2256 int ip6mr_get_route(struct net
*net
, struct sk_buff
*skb
, struct rtmsg
*rtm
,
2260 struct mr_table
*mrt
;
2261 struct mfc6_cache
*cache
;
2262 struct rt6_info
*rt
= (struct rt6_info
*)skb_dst(skb
);
2264 mrt
= ip6mr_get_table(net
, RT6_TABLE_DFLT
);
2268 read_lock(&mrt_lock
);
2269 cache
= ip6mr_cache_find(mrt
, &rt
->rt6i_src
.addr
, &rt
->rt6i_dst
.addr
);
2270 if (!cache
&& skb
->dev
) {
2271 int vif
= ip6mr_find_vif(mrt
, skb
->dev
);
2274 cache
= ip6mr_cache_find_any(mrt
, &rt
->rt6i_dst
.addr
,
2279 struct sk_buff
*skb2
;
2280 struct ipv6hdr
*iph
;
2281 struct net_device
*dev
;
2285 if (!dev
|| (vif
= ip6mr_find_vif(mrt
, dev
)) < 0) {
2286 read_unlock(&mrt_lock
);
2290 /* really correct? */
2291 skb2
= alloc_skb(sizeof(struct ipv6hdr
), GFP_ATOMIC
);
2293 read_unlock(&mrt_lock
);
2297 NETLINK_CB(skb2
).portid
= portid
;
2298 skb_reset_transport_header(skb2
);
2300 skb_put(skb2
, sizeof(struct ipv6hdr
));
2301 skb_reset_network_header(skb2
);
2303 iph
= ipv6_hdr(skb2
);
2306 iph
->flow_lbl
[0] = 0;
2307 iph
->flow_lbl
[1] = 0;
2308 iph
->flow_lbl
[2] = 0;
2309 iph
->payload_len
= 0;
2310 iph
->nexthdr
= IPPROTO_NONE
;
2312 iph
->saddr
= rt
->rt6i_src
.addr
;
2313 iph
->daddr
= rt
->rt6i_dst
.addr
;
2315 err
= ip6mr_cache_unresolved(mrt
, vif
, skb2
, dev
);
2316 read_unlock(&mrt_lock
);
2321 err
= mr_fill_mroute(mrt
, skb
, &cache
->_c
, rtm
);
2322 read_unlock(&mrt_lock
);
2326 static int ip6mr_fill_mroute(struct mr_table
*mrt
, struct sk_buff
*skb
,
2327 u32 portid
, u32 seq
, struct mfc6_cache
*c
, int cmd
,
2330 struct nlmsghdr
*nlh
;
2334 nlh
= nlmsg_put(skb
, portid
, seq
, cmd
, sizeof(*rtm
), flags
);
2338 rtm
= nlmsg_data(nlh
);
2339 rtm
->rtm_family
= RTNL_FAMILY_IP6MR
;
2340 rtm
->rtm_dst_len
= 128;
2341 rtm
->rtm_src_len
= 128;
2343 rtm
->rtm_table
= mrt
->id
;
2344 if (nla_put_u32(skb
, RTA_TABLE
, mrt
->id
))
2345 goto nla_put_failure
;
2346 rtm
->rtm_type
= RTN_MULTICAST
;
2347 rtm
->rtm_scope
= RT_SCOPE_UNIVERSE
;
2348 if (c
->_c
.mfc_flags
& MFC_STATIC
)
2349 rtm
->rtm_protocol
= RTPROT_STATIC
;
2351 rtm
->rtm_protocol
= RTPROT_MROUTED
;
2354 if (nla_put_in6_addr(skb
, RTA_SRC
, &c
->mf6c_origin
) ||
2355 nla_put_in6_addr(skb
, RTA_DST
, &c
->mf6c_mcastgrp
))
2356 goto nla_put_failure
;
2357 err
= mr_fill_mroute(mrt
, skb
, &c
->_c
, rtm
);
2358 /* do not break the dump if cache is unresolved */
2359 if (err
< 0 && err
!= -ENOENT
)
2360 goto nla_put_failure
;
2362 nlmsg_end(skb
, nlh
);
2366 nlmsg_cancel(skb
, nlh
);
2370 static int _ip6mr_fill_mroute(struct mr_table
*mrt
, struct sk_buff
*skb
,
2371 u32 portid
, u32 seq
, struct mr_mfc
*c
,
2374 return ip6mr_fill_mroute(mrt
, skb
, portid
, seq
, (struct mfc6_cache
*)c
,
2378 static int mr6_msgsize(bool unresolved
, int maxvif
)
2381 NLMSG_ALIGN(sizeof(struct rtmsg
))
2382 + nla_total_size(4) /* RTA_TABLE */
2383 + nla_total_size(sizeof(struct in6_addr
)) /* RTA_SRC */
2384 + nla_total_size(sizeof(struct in6_addr
)) /* RTA_DST */
2389 + nla_total_size(4) /* RTA_IIF */
2390 + nla_total_size(0) /* RTA_MULTIPATH */
2391 + maxvif
* NLA_ALIGN(sizeof(struct rtnexthop
))
2393 + nla_total_size_64bit(sizeof(struct rta_mfc_stats
))
2399 static void mr6_netlink_event(struct mr_table
*mrt
, struct mfc6_cache
*mfc
,
2402 struct net
*net
= read_pnet(&mrt
->net
);
2403 struct sk_buff
*skb
;
2406 skb
= nlmsg_new(mr6_msgsize(mfc
->_c
.mfc_parent
>= MAXMIFS
, mrt
->maxvif
),
2411 err
= ip6mr_fill_mroute(mrt
, skb
, 0, 0, mfc
, cmd
, 0);
2415 rtnl_notify(skb
, net
, 0, RTNLGRP_IPV6_MROUTE
, NULL
, GFP_ATOMIC
);
2421 rtnl_set_sk_err(net
, RTNLGRP_IPV6_MROUTE
, err
);
2424 static size_t mrt6msg_netlink_msgsize(size_t payloadlen
)
2427 NLMSG_ALIGN(sizeof(struct rtgenmsg
))
2428 + nla_total_size(1) /* IP6MRA_CREPORT_MSGTYPE */
2429 + nla_total_size(4) /* IP6MRA_CREPORT_MIF_ID */
2430 /* IP6MRA_CREPORT_SRC_ADDR */
2431 + nla_total_size(sizeof(struct in6_addr
))
2432 /* IP6MRA_CREPORT_DST_ADDR */
2433 + nla_total_size(sizeof(struct in6_addr
))
2434 /* IP6MRA_CREPORT_PKT */
2435 + nla_total_size(payloadlen
)
2441 static void mrt6msg_netlink_event(struct mr_table
*mrt
, struct sk_buff
*pkt
)
2443 struct net
*net
= read_pnet(&mrt
->net
);
2444 struct nlmsghdr
*nlh
;
2445 struct rtgenmsg
*rtgenm
;
2446 struct mrt6msg
*msg
;
2447 struct sk_buff
*skb
;
2451 payloadlen
= pkt
->len
- sizeof(struct mrt6msg
);
2452 msg
= (struct mrt6msg
*)skb_transport_header(pkt
);
2454 skb
= nlmsg_new(mrt6msg_netlink_msgsize(payloadlen
), GFP_ATOMIC
);
2458 nlh
= nlmsg_put(skb
, 0, 0, RTM_NEWCACHEREPORT
,
2459 sizeof(struct rtgenmsg
), 0);
2462 rtgenm
= nlmsg_data(nlh
);
2463 rtgenm
->rtgen_family
= RTNL_FAMILY_IP6MR
;
2464 if (nla_put_u8(skb
, IP6MRA_CREPORT_MSGTYPE
, msg
->im6_msgtype
) ||
2465 nla_put_u32(skb
, IP6MRA_CREPORT_MIF_ID
, msg
->im6_mif
) ||
2466 nla_put_in6_addr(skb
, IP6MRA_CREPORT_SRC_ADDR
,
2468 nla_put_in6_addr(skb
, IP6MRA_CREPORT_DST_ADDR
,
2470 goto nla_put_failure
;
2472 nla
= nla_reserve(skb
, IP6MRA_CREPORT_PKT
, payloadlen
);
2473 if (!nla
|| skb_copy_bits(pkt
, sizeof(struct mrt6msg
),
2474 nla_data(nla
), payloadlen
))
2475 goto nla_put_failure
;
2477 nlmsg_end(skb
, nlh
);
2479 rtnl_notify(skb
, net
, 0, RTNLGRP_IPV6_MROUTE_R
, NULL
, GFP_ATOMIC
);
2483 nlmsg_cancel(skb
, nlh
);
2486 rtnl_set_sk_err(net
, RTNLGRP_IPV6_MROUTE_R
, -ENOBUFS
);
2489 static int ip6mr_rtm_dumproute(struct sk_buff
*skb
, struct netlink_callback
*cb
)
2491 const struct nlmsghdr
*nlh
= cb
->nlh
;
2492 struct fib_dump_filter filter
= {};
2495 if (cb
->strict_check
) {
2496 err
= ip_valid_fib_dump_req(sock_net(skb
->sk
), nlh
,
2502 if (filter
.table_id
) {
2503 struct mr_table
*mrt
;
2505 mrt
= ip6mr_get_table(sock_net(skb
->sk
), filter
.table_id
);
2507 if (rtnl_msg_family(cb
->nlh
) != RTNL_FAMILY_IP6MR
)
2510 NL_SET_ERR_MSG_MOD(cb
->extack
, "MR table does not exist");
2513 err
= mr_table_dump(mrt
, skb
, cb
, _ip6mr_fill_mroute
,
2514 &mfc_unres_lock
, &filter
);
2515 return skb
->len
? : err
;
2518 return mr_rtm_dumproute(skb
, cb
, ip6mr_mr_table_iter
,
2519 _ip6mr_fill_mroute
, &mfc_unres_lock
, &filter
);