1 /* Copyright (C) 2014-2016 B.A.T.M.A.N. contributors:
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public
7 * License as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 #include "multicast.h"
21 #include <linux/atomic.h>
22 #include <linux/bitops.h>
23 #include <linux/bug.h>
24 #include <linux/byteorder/generic.h>
25 #include <linux/errno.h>
26 #include <linux/etherdevice.h>
28 #include <linux/icmpv6.h>
29 #include <linux/if_bridge.h>
30 #include <linux/if_ether.h>
31 #include <linux/igmp.h>
33 #include <linux/in6.h>
35 #include <linux/ipv6.h>
36 #include <linux/kernel.h>
37 #include <linux/kref.h>
38 #include <linux/list.h>
39 #include <linux/lockdep.h>
40 #include <linux/netdevice.h>
41 #include <linux/printk.h>
42 #include <linux/rculist.h>
43 #include <linux/rcupdate.h>
44 #include <linux/seq_file.h>
45 #include <linux/skbuff.h>
46 #include <linux/slab.h>
47 #include <linux/spinlock.h>
48 #include <linux/stddef.h>
49 #include <linux/string.h>
50 #include <linux/types.h>
51 #include <net/addrconf.h>
52 #include <net/if_inet6.h>
56 #include "hard-interface.h"
60 #include "translation-table.h"
64 * batadv_mcast_get_bridge - get the bridge on top of the softif if it exists
65 * @soft_iface: netdev struct of the mesh interface
67 * If the given soft interface has a bridge on top then the refcount
68 * of the according net device is increased.
70 * Return: NULL if no such bridge exists. Otherwise the net device of the
73 static struct net_device
*batadv_mcast_get_bridge(struct net_device
*soft_iface
)
75 struct net_device
*upper
= soft_iface
;
79 upper
= netdev_master_upper_dev_get_rcu(upper
);
80 } while (upper
&& !(upper
->priv_flags
& IFF_EBRIDGE
));
90 * batadv_mcast_mla_softif_get - get softif multicast listeners
91 * @dev: the device to collect multicast addresses from
92 * @mcast_list: a list to put found addresses into
94 * Collects multicast addresses of multicast listeners residing
95 * on this kernel on the given soft interface, dev, in
96 * the given mcast_list. In general, multicast listeners provided by
97 * your multicast receiving applications run directly on this node.
99 * If there is a bridge interface on top of dev, collects from that one
100 * instead. Just like with IP addresses and routes, multicast listeners
101 * will(/should) register to the bridge interface instead of an
104 * Return: -ENOMEM on memory allocation error or the number of
105 * items added to the mcast_list otherwise.
107 static int batadv_mcast_mla_softif_get(struct net_device
*dev
,
108 struct hlist_head
*mcast_list
)
110 struct net_device
*bridge
= batadv_mcast_get_bridge(dev
);
111 struct netdev_hw_addr
*mc_list_entry
;
112 struct batadv_hw_addr
*new;
115 netif_addr_lock_bh(bridge
? bridge
: dev
);
116 netdev_for_each_mc_addr(mc_list_entry
, bridge
? bridge
: dev
) {
117 new = kmalloc(sizeof(*new), GFP_ATOMIC
);
123 ether_addr_copy(new->addr
, mc_list_entry
->addr
);
124 hlist_add_head(&new->list
, mcast_list
);
127 netif_addr_unlock_bh(bridge
? bridge
: dev
);
136 * batadv_mcast_mla_is_duplicate - check whether an address is in a list
137 * @mcast_addr: the multicast address to check
138 * @mcast_list: the list with multicast addresses to search in
140 * Return: true if the given address is already in the given list.
141 * Otherwise returns false.
143 static bool batadv_mcast_mla_is_duplicate(u8
*mcast_addr
,
144 struct hlist_head
*mcast_list
)
146 struct batadv_hw_addr
*mcast_entry
;
148 hlist_for_each_entry(mcast_entry
, mcast_list
, list
)
149 if (batadv_compare_eth(mcast_entry
->addr
, mcast_addr
))
156 * batadv_mcast_mla_br_addr_cpy - copy a bridge multicast address
157 * @dst: destination to write to - a multicast MAC address
158 * @src: source to read from - a multicast IP address
160 * Converts a given multicast IPv4/IPv6 address from a bridge
161 * to its matching multicast MAC address and copies it into the given
162 * destination buffer.
164 * Caller needs to make sure the destination buffer can hold
165 * at least ETH_ALEN bytes.
167 static void batadv_mcast_mla_br_addr_cpy(char *dst
, const struct br_ip
*src
)
169 if (src
->proto
== htons(ETH_P_IP
))
170 ip_eth_mc_map(src
->u
.ip4
, dst
);
171 #if IS_ENABLED(CONFIG_IPV6)
172 else if (src
->proto
== htons(ETH_P_IPV6
))
173 ipv6_eth_mc_map(&src
->u
.ip6
, dst
);
180 * batadv_mcast_mla_bridge_get - get bridged-in multicast listeners
181 * @dev: a bridge slave whose bridge to collect multicast addresses from
182 * @mcast_list: a list to put found addresses into
184 * Collects multicast addresses of multicast listeners residing
185 * on foreign, non-mesh devices which we gave access to our mesh via
186 * a bridge on top of the given soft interface, dev, in the given
189 * Return: -ENOMEM on memory allocation error or the number of
190 * items added to the mcast_list otherwise.
192 static int batadv_mcast_mla_bridge_get(struct net_device
*dev
,
193 struct hlist_head
*mcast_list
)
195 struct list_head bridge_mcast_list
= LIST_HEAD_INIT(bridge_mcast_list
);
196 struct br_ip_list
*br_ip_entry
, *tmp
;
197 struct batadv_hw_addr
*new;
198 u8 mcast_addr
[ETH_ALEN
];
201 /* we don't need to detect these devices/listeners, the IGMP/MLD
202 * snooping code of the Linux bridge already does that for us
204 ret
= br_multicast_list_adjacent(dev
, &bridge_mcast_list
);
208 list_for_each_entry(br_ip_entry
, &bridge_mcast_list
, list
) {
209 batadv_mcast_mla_br_addr_cpy(mcast_addr
, &br_ip_entry
->addr
);
210 if (batadv_mcast_mla_is_duplicate(mcast_addr
, mcast_list
))
213 new = kmalloc(sizeof(*new), GFP_ATOMIC
);
219 ether_addr_copy(new->addr
, mcast_addr
);
220 hlist_add_head(&new->list
, mcast_list
);
224 list_for_each_entry_safe(br_ip_entry
, tmp
, &bridge_mcast_list
, list
) {
225 list_del(&br_ip_entry
->list
);
233 * batadv_mcast_mla_list_free - free a list of multicast addresses
234 * @bat_priv: the bat priv with all the soft interface information
235 * @mcast_list: the list to free
237 * Removes and frees all items in the given mcast_list.
239 static void batadv_mcast_mla_list_free(struct batadv_priv
*bat_priv
,
240 struct hlist_head
*mcast_list
)
242 struct batadv_hw_addr
*mcast_entry
;
243 struct hlist_node
*tmp
;
245 lockdep_assert_held(&bat_priv
->tt
.commit_lock
);
247 hlist_for_each_entry_safe(mcast_entry
, tmp
, mcast_list
, list
) {
248 hlist_del(&mcast_entry
->list
);
254 * batadv_mcast_mla_tt_retract - clean up multicast listener announcements
255 * @bat_priv: the bat priv with all the soft interface information
256 * @mcast_list: a list of addresses which should _not_ be removed
258 * Retracts the announcement of any multicast listener from the
259 * translation table except the ones listed in the given mcast_list.
261 * If mcast_list is NULL then all are retracted.
263 static void batadv_mcast_mla_tt_retract(struct batadv_priv
*bat_priv
,
264 struct hlist_head
*mcast_list
)
266 struct batadv_hw_addr
*mcast_entry
;
267 struct hlist_node
*tmp
;
269 lockdep_assert_held(&bat_priv
->tt
.commit_lock
);
271 hlist_for_each_entry_safe(mcast_entry
, tmp
, &bat_priv
->mcast
.mla_list
,
274 batadv_mcast_mla_is_duplicate(mcast_entry
->addr
,
278 batadv_tt_local_remove(bat_priv
, mcast_entry
->addr
,
280 "mcast TT outdated", false);
282 hlist_del(&mcast_entry
->list
);
288 * batadv_mcast_mla_tt_add - add multicast listener announcements
289 * @bat_priv: the bat priv with all the soft interface information
290 * @mcast_list: a list of addresses which are going to get added
292 * Adds multicast listener announcements from the given mcast_list to the
293 * translation table if they have not been added yet.
295 static void batadv_mcast_mla_tt_add(struct batadv_priv
*bat_priv
,
296 struct hlist_head
*mcast_list
)
298 struct batadv_hw_addr
*mcast_entry
;
299 struct hlist_node
*tmp
;
301 lockdep_assert_held(&bat_priv
->tt
.commit_lock
);
306 hlist_for_each_entry_safe(mcast_entry
, tmp
, mcast_list
, list
) {
307 if (batadv_mcast_mla_is_duplicate(mcast_entry
->addr
,
308 &bat_priv
->mcast
.mla_list
))
311 if (!batadv_tt_local_add(bat_priv
->soft_iface
,
312 mcast_entry
->addr
, BATADV_NO_FLAGS
,
313 BATADV_NULL_IFINDEX
, BATADV_NO_MARK
))
316 hlist_del(&mcast_entry
->list
);
317 hlist_add_head(&mcast_entry
->list
, &bat_priv
->mcast
.mla_list
);
322 * batadv_mcast_has_bridge - check whether the soft-iface is bridged
323 * @bat_priv: the bat priv with all the soft interface information
325 * Checks whether there is a bridge on top of our soft interface.
327 * Return: true if there is a bridge, false otherwise.
329 static bool batadv_mcast_has_bridge(struct batadv_priv
*bat_priv
)
331 struct net_device
*upper
= bat_priv
->soft_iface
;
335 upper
= netdev_master_upper_dev_get_rcu(upper
);
336 } while (upper
&& !(upper
->priv_flags
& IFF_EBRIDGE
));
343 * batadv_mcast_querier_log - debug output regarding the querier status on link
344 * @bat_priv: the bat priv with all the soft interface information
345 * @str_proto: a string for the querier protocol (e.g. "IGMP" or "MLD")
346 * @old_state: the previous querier state on our link
347 * @new_state: the new querier state on our link
349 * Outputs debug messages to the logging facility with log level 'mcast'
350 * regarding changes to the querier status on the link which are relevant
351 * to our multicast optimizations.
353 * Usually this is about whether a querier appeared or vanished in
354 * our mesh or whether the querier is in the suboptimal position of being
355 * behind our local bridge segment: Snooping switches will directly
356 * forward listener reports to the querier, therefore batman-adv and
357 * the bridge will potentially not see these listeners - the querier is
358 * potentially shadowing listeners from us then.
360 * This is only interesting for nodes with a bridge on top of their
364 batadv_mcast_querier_log(struct batadv_priv
*bat_priv
, char *str_proto
,
365 struct batadv_mcast_querier_state
*old_state
,
366 struct batadv_mcast_querier_state
*new_state
)
368 if (!old_state
->exists
&& new_state
->exists
)
369 batadv_info(bat_priv
->soft_iface
, "%s Querier appeared\n",
371 else if (old_state
->exists
&& !new_state
->exists
)
372 batadv_info(bat_priv
->soft_iface
,
373 "%s Querier disappeared - multicast optimizations disabled\n",
375 else if (!bat_priv
->mcast
.bridged
&& !new_state
->exists
)
376 batadv_info(bat_priv
->soft_iface
,
377 "No %s Querier present - multicast optimizations disabled\n",
380 if (new_state
->exists
) {
381 if ((!old_state
->shadowing
&& new_state
->shadowing
) ||
382 (!old_state
->exists
&& new_state
->shadowing
))
383 batadv_dbg(BATADV_DBG_MCAST
, bat_priv
,
384 "%s Querier is behind our bridged segment: Might shadow listeners\n",
386 else if (old_state
->shadowing
&& !new_state
->shadowing
)
387 batadv_dbg(BATADV_DBG_MCAST
, bat_priv
,
388 "%s Querier is not behind our bridged segment\n",
394 * batadv_mcast_bridge_log - debug output for topology changes in bridged setups
395 * @bat_priv: the bat priv with all the soft interface information
396 * @bridged: a flag about whether the soft interface is currently bridged or not
397 * @querier_ipv4: (maybe) new status of a potential, selected IGMP querier
398 * @querier_ipv6: (maybe) new status of a potential, selected MLD querier
400 * If no bridges are ever used on this node, then this function does nothing.
402 * Otherwise this function outputs debug information to the 'mcast' log level
403 * which might be relevant to our multicast optimizations.
405 * More precisely, it outputs information when a bridge interface is added or
406 * removed from a soft interface. And when a bridge is present, it further
407 * outputs information about the querier state which is relevant for the
408 * multicast flags this node is going to set.
411 batadv_mcast_bridge_log(struct batadv_priv
*bat_priv
, bool bridged
,
412 struct batadv_mcast_querier_state
*querier_ipv4
,
413 struct batadv_mcast_querier_state
*querier_ipv6
)
415 if (!bat_priv
->mcast
.bridged
&& bridged
)
416 batadv_dbg(BATADV_DBG_MCAST
, bat_priv
,
417 "Bridge added: Setting Unsnoopables(U)-flag\n");
418 else if (bat_priv
->mcast
.bridged
&& !bridged
)
419 batadv_dbg(BATADV_DBG_MCAST
, bat_priv
,
420 "Bridge removed: Unsetting Unsnoopables(U)-flag\n");
423 batadv_mcast_querier_log(bat_priv
, "IGMP",
424 &bat_priv
->mcast
.querier_ipv4
,
426 batadv_mcast_querier_log(bat_priv
, "MLD",
427 &bat_priv
->mcast
.querier_ipv6
,
433 * batadv_mcast_flags_logs - output debug information about mcast flag changes
434 * @bat_priv: the bat priv with all the soft interface information
435 * @flags: flags indicating the new multicast state
437 * Whenever the multicast flags this nodes announces changes (@mcast_flags vs.
438 * bat_priv->mcast.flags), this notifies userspace via the 'mcast' log level.
440 static void batadv_mcast_flags_log(struct batadv_priv
*bat_priv
, u8 flags
)
442 u8 old_flags
= bat_priv
->mcast
.flags
;
443 char str_old_flags
[] = "[...]";
445 sprintf(str_old_flags
, "[%c%c%c]",
446 (old_flags
& BATADV_MCAST_WANT_ALL_UNSNOOPABLES
) ? 'U' : '.',
447 (old_flags
& BATADV_MCAST_WANT_ALL_IPV4
) ? '4' : '.',
448 (old_flags
& BATADV_MCAST_WANT_ALL_IPV6
) ? '6' : '.');
450 batadv_dbg(BATADV_DBG_MCAST
, bat_priv
,
451 "Changing multicast flags from '%s' to '[%c%c%c]'\n",
452 bat_priv
->mcast
.enabled
? str_old_flags
: "<undefined>",
453 (flags
& BATADV_MCAST_WANT_ALL_UNSNOOPABLES
) ? 'U' : '.',
454 (flags
& BATADV_MCAST_WANT_ALL_IPV4
) ? '4' : '.',
455 (flags
& BATADV_MCAST_WANT_ALL_IPV6
) ? '6' : '.');
459 * batadv_mcast_mla_tvlv_update - update multicast tvlv
460 * @bat_priv: the bat priv with all the soft interface information
462 * Updates the own multicast tvlv with our current multicast related settings,
463 * capabilities and inabilities.
465 * Return: false if we want all IPv4 && IPv6 multicast traffic and true
468 static bool batadv_mcast_mla_tvlv_update(struct batadv_priv
*bat_priv
)
470 struct batadv_tvlv_mcast_data mcast_data
;
471 struct batadv_mcast_querier_state querier4
= {false, false};
472 struct batadv_mcast_querier_state querier6
= {false, false};
473 struct net_device
*dev
= bat_priv
->soft_iface
;
476 mcast_data
.flags
= BATADV_NO_FLAGS
;
477 memset(mcast_data
.reserved
, 0, sizeof(mcast_data
.reserved
));
479 bridged
= batadv_mcast_has_bridge(bat_priv
);
483 #if !IS_ENABLED(CONFIG_BRIDGE_IGMP_SNOOPING)
484 pr_warn_once("No bridge IGMP snooping compiled - multicast optimizations disabled\n");
487 querier4
.exists
= br_multicast_has_querier_anywhere(dev
, ETH_P_IP
);
488 querier4
.shadowing
= br_multicast_has_querier_adjacent(dev
, ETH_P_IP
);
490 querier6
.exists
= br_multicast_has_querier_anywhere(dev
, ETH_P_IPV6
);
491 querier6
.shadowing
= br_multicast_has_querier_adjacent(dev
, ETH_P_IPV6
);
493 mcast_data
.flags
|= BATADV_MCAST_WANT_ALL_UNSNOOPABLES
;
495 /* 1) If no querier exists at all, then multicast listeners on
496 * our local TT clients behind the bridge will keep silent.
497 * 2) If the selected querier is on one of our local TT clients,
498 * behind the bridge, then this querier might shadow multicast
499 * listeners on our local TT clients, behind this bridge.
501 * In both cases, we will signalize other batman nodes that
502 * we need all multicast traffic of the according protocol.
504 if (!querier4
.exists
|| querier4
.shadowing
)
505 mcast_data
.flags
|= BATADV_MCAST_WANT_ALL_IPV4
;
507 if (!querier6
.exists
|| querier6
.shadowing
)
508 mcast_data
.flags
|= BATADV_MCAST_WANT_ALL_IPV6
;
511 batadv_mcast_bridge_log(bat_priv
, bridged
, &querier4
, &querier6
);
513 bat_priv
->mcast
.querier_ipv4
.exists
= querier4
.exists
;
514 bat_priv
->mcast
.querier_ipv4
.shadowing
= querier4
.shadowing
;
516 bat_priv
->mcast
.querier_ipv6
.exists
= querier6
.exists
;
517 bat_priv
->mcast
.querier_ipv6
.shadowing
= querier6
.shadowing
;
519 bat_priv
->mcast
.bridged
= bridged
;
521 if (!bat_priv
->mcast
.enabled
||
522 mcast_data
.flags
!= bat_priv
->mcast
.flags
) {
523 batadv_mcast_flags_log(bat_priv
, mcast_data
.flags
);
524 batadv_tvlv_container_register(bat_priv
, BATADV_TVLV_MCAST
, 2,
525 &mcast_data
, sizeof(mcast_data
));
526 bat_priv
->mcast
.flags
= mcast_data
.flags
;
527 bat_priv
->mcast
.enabled
= true;
530 return !(mcast_data
.flags
&
531 (BATADV_MCAST_WANT_ALL_IPV4
| BATADV_MCAST_WANT_ALL_IPV6
));
535 * batadv_mcast_mla_update - update the own MLAs
536 * @bat_priv: the bat priv with all the soft interface information
538 * Updates the own multicast listener announcements in the translation
539 * table as well as the own, announced multicast tvlv container.
541 void batadv_mcast_mla_update(struct batadv_priv
*bat_priv
)
543 struct net_device
*soft_iface
= bat_priv
->soft_iface
;
544 struct hlist_head mcast_list
= HLIST_HEAD_INIT
;
547 if (!batadv_mcast_mla_tvlv_update(bat_priv
))
550 ret
= batadv_mcast_mla_softif_get(soft_iface
, &mcast_list
);
554 ret
= batadv_mcast_mla_bridge_get(soft_iface
, &mcast_list
);
559 batadv_mcast_mla_tt_retract(bat_priv
, &mcast_list
);
560 batadv_mcast_mla_tt_add(bat_priv
, &mcast_list
);
563 batadv_mcast_mla_list_free(bat_priv
, &mcast_list
);
567 * batadv_mcast_is_report_ipv4 - check for IGMP reports
568 * @skb: the ethernet frame destined for the mesh
570 * This call might reallocate skb data.
572 * Checks whether the given frame is a valid IGMP report.
574 * Return: If so then true, otherwise false.
576 static bool batadv_mcast_is_report_ipv4(struct sk_buff
*skb
)
578 if (ip_mc_check_igmp(skb
, NULL
) < 0)
581 switch (igmp_hdr(skb
)->type
) {
582 case IGMP_HOST_MEMBERSHIP_REPORT
:
583 case IGMPV2_HOST_MEMBERSHIP_REPORT
:
584 case IGMPV3_HOST_MEMBERSHIP_REPORT
:
592 * batadv_mcast_forw_mode_check_ipv4 - check for optimized forwarding potential
593 * @bat_priv: the bat priv with all the soft interface information
594 * @skb: the IPv4 packet to check
595 * @is_unsnoopable: stores whether the destination is snoopable
597 * Checks whether the given IPv4 packet has the potential to be forwarded with a
598 * mode more optimal than classic flooding.
600 * Return: If so then 0. Otherwise -EINVAL or -ENOMEM in case of memory
601 * allocation failure.
603 static int batadv_mcast_forw_mode_check_ipv4(struct batadv_priv
*bat_priv
,
605 bool *is_unsnoopable
)
609 /* We might fail due to out-of-memory -> drop it */
610 if (!pskb_may_pull(skb
, sizeof(struct ethhdr
) + sizeof(*iphdr
)))
613 if (batadv_mcast_is_report_ipv4(skb
))
618 /* TODO: Implement Multicast Router Discovery (RFC4286),
619 * then allow scope > link local, too
621 if (!ipv4_is_local_multicast(iphdr
->daddr
))
624 /* link-local multicast listeners behind a bridge are
625 * not snoopable (see RFC4541, section 2.1.2.2)
627 *is_unsnoopable
= true;
632 #if IS_ENABLED(CONFIG_IPV6)
634 * batadv_mcast_is_report_ipv6 - check for MLD reports
635 * @skb: the ethernet frame destined for the mesh
637 * This call might reallocate skb data.
639 * Checks whether the given frame is a valid MLD report.
641 * Return: If so then true, otherwise false.
643 static bool batadv_mcast_is_report_ipv6(struct sk_buff
*skb
)
645 if (ipv6_mc_check_mld(skb
, NULL
) < 0)
648 switch (icmp6_hdr(skb
)->icmp6_type
) {
649 case ICMPV6_MGM_REPORT
:
650 case ICMPV6_MLD2_REPORT
:
658 * batadv_mcast_forw_mode_check_ipv6 - check for optimized forwarding potential
659 * @bat_priv: the bat priv with all the soft interface information
660 * @skb: the IPv6 packet to check
661 * @is_unsnoopable: stores whether the destination is snoopable
663 * Checks whether the given IPv6 packet has the potential to be forwarded with a
664 * mode more optimal than classic flooding.
666 * Return: If so then 0. Otherwise -EINVAL is or -ENOMEM if we are out of memory
668 static int batadv_mcast_forw_mode_check_ipv6(struct batadv_priv
*bat_priv
,
670 bool *is_unsnoopable
)
672 struct ipv6hdr
*ip6hdr
;
674 /* We might fail due to out-of-memory -> drop it */
675 if (!pskb_may_pull(skb
, sizeof(struct ethhdr
) + sizeof(*ip6hdr
)))
678 if (batadv_mcast_is_report_ipv6(skb
))
681 ip6hdr
= ipv6_hdr(skb
);
683 /* TODO: Implement Multicast Router Discovery (RFC4286),
684 * then allow scope > link local, too
686 if (IPV6_ADDR_MC_SCOPE(&ip6hdr
->daddr
) != IPV6_ADDR_SCOPE_LINKLOCAL
)
689 /* link-local-all-nodes multicast listeners behind a bridge are
690 * not snoopable (see RFC4541, section 3, paragraph 3)
692 if (ipv6_addr_is_ll_all_nodes(&ip6hdr
->daddr
))
693 *is_unsnoopable
= true;
700 * batadv_mcast_forw_mode_check - check for optimized forwarding potential
701 * @bat_priv: the bat priv with all the soft interface information
702 * @skb: the multicast frame to check
703 * @is_unsnoopable: stores whether the destination is snoopable
705 * Checks whether the given multicast ethernet frame has the potential to be
706 * forwarded with a mode more optimal than classic flooding.
708 * Return: If so then 0. Otherwise -EINVAL is or -ENOMEM if we are out of memory
710 static int batadv_mcast_forw_mode_check(struct batadv_priv
*bat_priv
,
712 bool *is_unsnoopable
)
714 struct ethhdr
*ethhdr
= eth_hdr(skb
);
716 if (!atomic_read(&bat_priv
->multicast_mode
))
719 if (atomic_read(&bat_priv
->mcast
.num_disabled
))
722 switch (ntohs(ethhdr
->h_proto
)) {
724 return batadv_mcast_forw_mode_check_ipv4(bat_priv
, skb
,
726 #if IS_ENABLED(CONFIG_IPV6)
728 return batadv_mcast_forw_mode_check_ipv6(bat_priv
, skb
,
737 * batadv_mcast_forw_want_all_ip_count - count nodes with unspecific mcast
739 * @bat_priv: the bat priv with all the soft interface information
740 * @ethhdr: ethernet header of a packet
742 * Return: the number of nodes which want all IPv4 multicast traffic if the
743 * given ethhdr is from an IPv4 packet or the number of nodes which want all
744 * IPv6 traffic if it matches an IPv6 packet.
746 static int batadv_mcast_forw_want_all_ip_count(struct batadv_priv
*bat_priv
,
747 struct ethhdr
*ethhdr
)
749 switch (ntohs(ethhdr
->h_proto
)) {
751 return atomic_read(&bat_priv
->mcast
.num_want_all_ipv4
);
753 return atomic_read(&bat_priv
->mcast
.num_want_all_ipv6
);
755 /* we shouldn't be here... */
761 * batadv_mcast_forw_tt_node_get - get a multicast tt node
762 * @bat_priv: the bat priv with all the soft interface information
763 * @ethhdr: the ether header containing the multicast destination
765 * Return: an orig_node matching the multicast address provided by ethhdr
766 * via a translation table lookup. This increases the returned nodes refcount.
768 static struct batadv_orig_node
*
769 batadv_mcast_forw_tt_node_get(struct batadv_priv
*bat_priv
,
770 struct ethhdr
*ethhdr
)
772 return batadv_transtable_search(bat_priv
, ethhdr
->h_source
,
773 ethhdr
->h_dest
, BATADV_NO_FLAGS
);
777 * batadv_mcast_forw_ipv4_node_get - get a node with an ipv4 flag
778 * @bat_priv: the bat priv with all the soft interface information
780 * Return: an orig_node which has the BATADV_MCAST_WANT_ALL_IPV4 flag set and
781 * increases its refcount.
783 static struct batadv_orig_node
*
784 batadv_mcast_forw_ipv4_node_get(struct batadv_priv
*bat_priv
)
786 struct batadv_orig_node
*tmp_orig_node
, *orig_node
= NULL
;
789 hlist_for_each_entry_rcu(tmp_orig_node
,
790 &bat_priv
->mcast
.want_all_ipv4_list
,
791 mcast_want_all_ipv4_node
) {
792 if (!kref_get_unless_zero(&tmp_orig_node
->refcount
))
795 orig_node
= tmp_orig_node
;
804 * batadv_mcast_forw_ipv6_node_get - get a node with an ipv6 flag
805 * @bat_priv: the bat priv with all the soft interface information
807 * Return: an orig_node which has the BATADV_MCAST_WANT_ALL_IPV6 flag set
808 * and increases its refcount.
810 static struct batadv_orig_node
*
811 batadv_mcast_forw_ipv6_node_get(struct batadv_priv
*bat_priv
)
813 struct batadv_orig_node
*tmp_orig_node
, *orig_node
= NULL
;
816 hlist_for_each_entry_rcu(tmp_orig_node
,
817 &bat_priv
->mcast
.want_all_ipv6_list
,
818 mcast_want_all_ipv6_node
) {
819 if (!kref_get_unless_zero(&tmp_orig_node
->refcount
))
822 orig_node
= tmp_orig_node
;
831 * batadv_mcast_forw_ip_node_get - get a node with an ipv4/ipv6 flag
832 * @bat_priv: the bat priv with all the soft interface information
833 * @ethhdr: an ethernet header to determine the protocol family from
835 * Return: an orig_node which has the BATADV_MCAST_WANT_ALL_IPV4 or
836 * BATADV_MCAST_WANT_ALL_IPV6 flag, depending on the provided ethhdr, set and
837 * increases its refcount.
839 static struct batadv_orig_node
*
840 batadv_mcast_forw_ip_node_get(struct batadv_priv
*bat_priv
,
841 struct ethhdr
*ethhdr
)
843 switch (ntohs(ethhdr
->h_proto
)) {
845 return batadv_mcast_forw_ipv4_node_get(bat_priv
);
847 return batadv_mcast_forw_ipv6_node_get(bat_priv
);
849 /* we shouldn't be here... */
855 * batadv_mcast_forw_unsnoop_node_get - get a node with an unsnoopable flag
856 * @bat_priv: the bat priv with all the soft interface information
858 * Return: an orig_node which has the BATADV_MCAST_WANT_ALL_UNSNOOPABLES flag
859 * set and increases its refcount.
861 static struct batadv_orig_node
*
862 batadv_mcast_forw_unsnoop_node_get(struct batadv_priv
*bat_priv
)
864 struct batadv_orig_node
*tmp_orig_node
, *orig_node
= NULL
;
867 hlist_for_each_entry_rcu(tmp_orig_node
,
868 &bat_priv
->mcast
.want_all_unsnoopables_list
,
869 mcast_want_all_unsnoopables_node
) {
870 if (!kref_get_unless_zero(&tmp_orig_node
->refcount
))
873 orig_node
= tmp_orig_node
;
882 * batadv_mcast_forw_mode - check on how to forward a multicast packet
883 * @bat_priv: the bat priv with all the soft interface information
884 * @skb: The multicast packet to check
885 * @orig: an originator to be set to forward the skb to
887 * Return: the forwarding mode as enum batadv_forw_mode and in case of
888 * BATADV_FORW_SINGLE set the orig to the single originator the skb
889 * should be forwarded to.
891 enum batadv_forw_mode
892 batadv_mcast_forw_mode(struct batadv_priv
*bat_priv
, struct sk_buff
*skb
,
893 struct batadv_orig_node
**orig
)
895 int ret
, tt_count
, ip_count
, unsnoop_count
, total_count
;
896 bool is_unsnoopable
= false;
897 struct ethhdr
*ethhdr
;
899 ret
= batadv_mcast_forw_mode_check(bat_priv
, skb
, &is_unsnoopable
);
901 return BATADV_FORW_NONE
;
903 return BATADV_FORW_ALL
;
905 ethhdr
= eth_hdr(skb
);
907 tt_count
= batadv_tt_global_hash_count(bat_priv
, ethhdr
->h_dest
,
909 ip_count
= batadv_mcast_forw_want_all_ip_count(bat_priv
, ethhdr
);
910 unsnoop_count
= !is_unsnoopable
? 0 :
911 atomic_read(&bat_priv
->mcast
.num_want_all_unsnoopables
);
913 total_count
= tt_count
+ ip_count
+ unsnoop_count
;
915 switch (total_count
) {
918 *orig
= batadv_mcast_forw_tt_node_get(bat_priv
, ethhdr
);
920 *orig
= batadv_mcast_forw_ip_node_get(bat_priv
, ethhdr
);
921 else if (unsnoop_count
)
922 *orig
= batadv_mcast_forw_unsnoop_node_get(bat_priv
);
925 return BATADV_FORW_SINGLE
;
929 return BATADV_FORW_NONE
;
931 return BATADV_FORW_ALL
;
936 * batadv_mcast_want_unsnoop_update - update unsnoop counter and list
937 * @bat_priv: the bat priv with all the soft interface information
938 * @orig: the orig_node which multicast state might have changed of
939 * @mcast_flags: flags indicating the new multicast state
941 * If the BATADV_MCAST_WANT_ALL_UNSNOOPABLES flag of this originator,
942 * orig, has toggled then this method updates counter and list accordingly.
944 * Caller needs to hold orig->mcast_handler_lock.
946 static void batadv_mcast_want_unsnoop_update(struct batadv_priv
*bat_priv
,
947 struct batadv_orig_node
*orig
,
950 struct hlist_node
*node
= &orig
->mcast_want_all_unsnoopables_node
;
951 struct hlist_head
*head
= &bat_priv
->mcast
.want_all_unsnoopables_list
;
953 lockdep_assert_held(&orig
->mcast_handler_lock
);
955 /* switched from flag unset to set */
956 if (mcast_flags
& BATADV_MCAST_WANT_ALL_UNSNOOPABLES
&&
957 !(orig
->mcast_flags
& BATADV_MCAST_WANT_ALL_UNSNOOPABLES
)) {
958 atomic_inc(&bat_priv
->mcast
.num_want_all_unsnoopables
);
960 spin_lock_bh(&bat_priv
->mcast
.want_lists_lock
);
961 /* flag checks above + mcast_handler_lock prevents this */
962 WARN_ON(!hlist_unhashed(node
));
964 hlist_add_head_rcu(node
, head
);
965 spin_unlock_bh(&bat_priv
->mcast
.want_lists_lock
);
966 /* switched from flag set to unset */
967 } else if (!(mcast_flags
& BATADV_MCAST_WANT_ALL_UNSNOOPABLES
) &&
968 orig
->mcast_flags
& BATADV_MCAST_WANT_ALL_UNSNOOPABLES
) {
969 atomic_dec(&bat_priv
->mcast
.num_want_all_unsnoopables
);
971 spin_lock_bh(&bat_priv
->mcast
.want_lists_lock
);
972 /* flag checks above + mcast_handler_lock prevents this */
973 WARN_ON(hlist_unhashed(node
));
975 hlist_del_init_rcu(node
);
976 spin_unlock_bh(&bat_priv
->mcast
.want_lists_lock
);
981 * batadv_mcast_want_ipv4_update - update want-all-ipv4 counter and list
982 * @bat_priv: the bat priv with all the soft interface information
983 * @orig: the orig_node which multicast state might have changed of
984 * @mcast_flags: flags indicating the new multicast state
986 * If the BATADV_MCAST_WANT_ALL_IPV4 flag of this originator, orig, has
987 * toggled then this method updates counter and list accordingly.
989 * Caller needs to hold orig->mcast_handler_lock.
991 static void batadv_mcast_want_ipv4_update(struct batadv_priv
*bat_priv
,
992 struct batadv_orig_node
*orig
,
995 struct hlist_node
*node
= &orig
->mcast_want_all_ipv4_node
;
996 struct hlist_head
*head
= &bat_priv
->mcast
.want_all_ipv4_list
;
998 lockdep_assert_held(&orig
->mcast_handler_lock
);
1000 /* switched from flag unset to set */
1001 if (mcast_flags
& BATADV_MCAST_WANT_ALL_IPV4
&&
1002 !(orig
->mcast_flags
& BATADV_MCAST_WANT_ALL_IPV4
)) {
1003 atomic_inc(&bat_priv
->mcast
.num_want_all_ipv4
);
1005 spin_lock_bh(&bat_priv
->mcast
.want_lists_lock
);
1006 /* flag checks above + mcast_handler_lock prevents this */
1007 WARN_ON(!hlist_unhashed(node
));
1009 hlist_add_head_rcu(node
, head
);
1010 spin_unlock_bh(&bat_priv
->mcast
.want_lists_lock
);
1011 /* switched from flag set to unset */
1012 } else if (!(mcast_flags
& BATADV_MCAST_WANT_ALL_IPV4
) &&
1013 orig
->mcast_flags
& BATADV_MCAST_WANT_ALL_IPV4
) {
1014 atomic_dec(&bat_priv
->mcast
.num_want_all_ipv4
);
1016 spin_lock_bh(&bat_priv
->mcast
.want_lists_lock
);
1017 /* flag checks above + mcast_handler_lock prevents this */
1018 WARN_ON(hlist_unhashed(node
));
1020 hlist_del_init_rcu(node
);
1021 spin_unlock_bh(&bat_priv
->mcast
.want_lists_lock
);
1026 * batadv_mcast_want_ipv6_update - update want-all-ipv6 counter and list
1027 * @bat_priv: the bat priv with all the soft interface information
1028 * @orig: the orig_node which multicast state might have changed of
1029 * @mcast_flags: flags indicating the new multicast state
1031 * If the BATADV_MCAST_WANT_ALL_IPV6 flag of this originator, orig, has
1032 * toggled then this method updates counter and list accordingly.
1034 * Caller needs to hold orig->mcast_handler_lock.
1036 static void batadv_mcast_want_ipv6_update(struct batadv_priv
*bat_priv
,
1037 struct batadv_orig_node
*orig
,
1040 struct hlist_node
*node
= &orig
->mcast_want_all_ipv6_node
;
1041 struct hlist_head
*head
= &bat_priv
->mcast
.want_all_ipv6_list
;
1043 lockdep_assert_held(&orig
->mcast_handler_lock
);
1045 /* switched from flag unset to set */
1046 if (mcast_flags
& BATADV_MCAST_WANT_ALL_IPV6
&&
1047 !(orig
->mcast_flags
& BATADV_MCAST_WANT_ALL_IPV6
)) {
1048 atomic_inc(&bat_priv
->mcast
.num_want_all_ipv6
);
1050 spin_lock_bh(&bat_priv
->mcast
.want_lists_lock
);
1051 /* flag checks above + mcast_handler_lock prevents this */
1052 WARN_ON(!hlist_unhashed(node
));
1054 hlist_add_head_rcu(node
, head
);
1055 spin_unlock_bh(&bat_priv
->mcast
.want_lists_lock
);
1056 /* switched from flag set to unset */
1057 } else if (!(mcast_flags
& BATADV_MCAST_WANT_ALL_IPV6
) &&
1058 orig
->mcast_flags
& BATADV_MCAST_WANT_ALL_IPV6
) {
1059 atomic_dec(&bat_priv
->mcast
.num_want_all_ipv6
);
1061 spin_lock_bh(&bat_priv
->mcast
.want_lists_lock
);
1062 /* flag checks above + mcast_handler_lock prevents this */
1063 WARN_ON(hlist_unhashed(node
));
1065 hlist_del_init_rcu(node
);
1066 spin_unlock_bh(&bat_priv
->mcast
.want_lists_lock
);
1071 * batadv_mcast_tvlv_ogm_handler - process incoming multicast tvlv container
1072 * @bat_priv: the bat priv with all the soft interface information
1073 * @orig: the orig_node of the ogm
1074 * @flags: flags indicating the tvlv state (see batadv_tvlv_handler_flags)
1075 * @tvlv_value: tvlv buffer containing the multicast data
1076 * @tvlv_value_len: tvlv buffer length
1078 static void batadv_mcast_tvlv_ogm_handler(struct batadv_priv
*bat_priv
,
1079 struct batadv_orig_node
*orig
,
1084 bool orig_mcast_enabled
= !(flags
& BATADV_TVLV_HANDLER_OGM_CIFNOTFND
);
1085 u8 mcast_flags
= BATADV_NO_FLAGS
;
1086 bool orig_initialized
;
1088 if (orig_mcast_enabled
&& tvlv_value
&&
1089 (tvlv_value_len
>= sizeof(mcast_flags
)))
1090 mcast_flags
= *(u8
*)tvlv_value
;
1092 spin_lock_bh(&orig
->mcast_handler_lock
);
1093 orig_initialized
= test_bit(BATADV_ORIG_CAPA_HAS_MCAST
,
1094 &orig
->capa_initialized
);
1096 /* If mcast support is turned on decrease the disabled mcast node
1097 * counter only if we had increased it for this node before. If this
1098 * is a completely new orig_node no need to decrease the counter.
1100 if (orig_mcast_enabled
&&
1101 !test_bit(BATADV_ORIG_CAPA_HAS_MCAST
, &orig
->capabilities
)) {
1102 if (orig_initialized
)
1103 atomic_dec(&bat_priv
->mcast
.num_disabled
);
1104 set_bit(BATADV_ORIG_CAPA_HAS_MCAST
, &orig
->capabilities
);
1105 /* If mcast support is being switched off or if this is an initial
1106 * OGM without mcast support then increase the disabled mcast
1109 } else if (!orig_mcast_enabled
&&
1110 (test_bit(BATADV_ORIG_CAPA_HAS_MCAST
, &orig
->capabilities
) ||
1111 !orig_initialized
)) {
1112 atomic_inc(&bat_priv
->mcast
.num_disabled
);
1113 clear_bit(BATADV_ORIG_CAPA_HAS_MCAST
, &orig
->capabilities
);
1116 set_bit(BATADV_ORIG_CAPA_HAS_MCAST
, &orig
->capa_initialized
);
1118 batadv_mcast_want_unsnoop_update(bat_priv
, orig
, mcast_flags
);
1119 batadv_mcast_want_ipv4_update(bat_priv
, orig
, mcast_flags
);
1120 batadv_mcast_want_ipv6_update(bat_priv
, orig
, mcast_flags
);
1122 orig
->mcast_flags
= mcast_flags
;
1123 spin_unlock_bh(&orig
->mcast_handler_lock
);
1127 * batadv_mcast_init - initialize the multicast optimizations structures
1128 * @bat_priv: the bat priv with all the soft interface information
1130 void batadv_mcast_init(struct batadv_priv
*bat_priv
)
1132 batadv_tvlv_handler_register(bat_priv
, batadv_mcast_tvlv_ogm_handler
,
1133 NULL
, BATADV_TVLV_MCAST
, 2,
1134 BATADV_TVLV_HANDLER_OGM_CIFNOTFND
);
1137 #ifdef CONFIG_BATMAN_ADV_DEBUGFS
1139 * batadv_mcast_flags_print_header - print own mcast flags to debugfs table
1140 * @bat_priv: the bat priv with all the soft interface information
1141 * @seq: debugfs table seq_file struct
1143 * Prints our own multicast flags including a more specific reason why
1144 * they are set, that is prints the bridge and querier state too, to
1145 * the debugfs table specified via @seq.
1147 static void batadv_mcast_flags_print_header(struct batadv_priv
*bat_priv
,
1148 struct seq_file
*seq
)
1150 u8 flags
= bat_priv
->mcast
.flags
;
1151 char querier4
, querier6
, shadowing4
, shadowing6
;
1152 bool bridged
= bat_priv
->mcast
.bridged
;
1155 querier4
= bat_priv
->mcast
.querier_ipv4
.exists
? '.' : '4';
1156 querier6
= bat_priv
->mcast
.querier_ipv6
.exists
? '.' : '6';
1157 shadowing4
= bat_priv
->mcast
.querier_ipv4
.shadowing
? '4' : '.';
1158 shadowing6
= bat_priv
->mcast
.querier_ipv6
.shadowing
? '6' : '.';
1166 seq_printf(seq
, "Multicast flags (own flags: [%c%c%c])\n",
1167 (flags
& BATADV_MCAST_WANT_ALL_UNSNOOPABLES
) ? 'U' : '.',
1168 (flags
& BATADV_MCAST_WANT_ALL_IPV4
) ? '4' : '.',
1169 (flags
& BATADV_MCAST_WANT_ALL_IPV6
) ? '6' : '.');
1170 seq_printf(seq
, "* Bridged [U]\t\t\t\t%c\n", bridged
? 'U' : '.');
1171 seq_printf(seq
, "* No IGMP/MLD Querier [4/6]:\t\t%c/%c\n",
1172 querier4
, querier6
);
1173 seq_printf(seq
, "* Shadowing IGMP/MLD Querier [4/6]:\t%c/%c\n",
1174 shadowing4
, shadowing6
);
1175 seq_puts(seq
, "-------------------------------------------\n");
1176 seq_printf(seq
, " %-10s %s\n", "Originator", "Flags");
1180 * batadv_mcast_flags_seq_print_text - print the mcast flags of other nodes
1181 * @seq: seq file to print on
1184 * This prints a table of (primary) originators and their according
1185 * multicast flags, including (in the header) our own.
1189 int batadv_mcast_flags_seq_print_text(struct seq_file
*seq
, void *offset
)
1191 struct net_device
*net_dev
= (struct net_device
*)seq
->private;
1192 struct batadv_priv
*bat_priv
= netdev_priv(net_dev
);
1193 struct batadv_hard_iface
*primary_if
;
1194 struct batadv_hashtable
*hash
= bat_priv
->orig_hash
;
1195 struct batadv_orig_node
*orig_node
;
1196 struct hlist_head
*head
;
1200 primary_if
= batadv_seq_print_text_primary_if_get(seq
);
1204 batadv_mcast_flags_print_header(bat_priv
, seq
);
1206 for (i
= 0; i
< hash
->size
; i
++) {
1207 head
= &hash
->table
[i
];
1210 hlist_for_each_entry_rcu(orig_node
, head
, hash_entry
) {
1211 if (!test_bit(BATADV_ORIG_CAPA_HAS_MCAST
,
1212 &orig_node
->capa_initialized
))
1215 if (!test_bit(BATADV_ORIG_CAPA_HAS_MCAST
,
1216 &orig_node
->capabilities
)) {
1217 seq_printf(seq
, "%pM -\n", orig_node
->orig
);
1221 flags
= orig_node
->mcast_flags
;
1223 seq_printf(seq
, "%pM [%c%c%c]\n", orig_node
->orig
,
1224 (flags
& BATADV_MCAST_WANT_ALL_UNSNOOPABLES
)
1226 (flags
& BATADV_MCAST_WANT_ALL_IPV4
)
1228 (flags
& BATADV_MCAST_WANT_ALL_IPV6
)
1234 batadv_hardif_put(primary_if
);
1241 * batadv_mcast_free - free the multicast optimizations structures
1242 * @bat_priv: the bat priv with all the soft interface information
1244 void batadv_mcast_free(struct batadv_priv
*bat_priv
)
1246 batadv_tvlv_container_unregister(bat_priv
, BATADV_TVLV_MCAST
, 2);
1247 batadv_tvlv_handler_unregister(bat_priv
, BATADV_TVLV_MCAST
, 2);
1249 spin_lock_bh(&bat_priv
->tt
.commit_lock
);
1250 batadv_mcast_mla_tt_retract(bat_priv
, NULL
);
1251 spin_unlock_bh(&bat_priv
->tt
.commit_lock
);
1255 * batadv_mcast_purge_orig - reset originator global mcast state modifications
1256 * @orig: the originator which is going to get purged
1258 void batadv_mcast_purge_orig(struct batadv_orig_node
*orig
)
1260 struct batadv_priv
*bat_priv
= orig
->bat_priv
;
1262 spin_lock_bh(&orig
->mcast_handler_lock
);
1264 if (!test_bit(BATADV_ORIG_CAPA_HAS_MCAST
, &orig
->capabilities
) &&
1265 test_bit(BATADV_ORIG_CAPA_HAS_MCAST
, &orig
->capa_initialized
))
1266 atomic_dec(&bat_priv
->mcast
.num_disabled
);
1268 batadv_mcast_want_unsnoop_update(bat_priv
, orig
, BATADV_NO_FLAGS
);
1269 batadv_mcast_want_ipv4_update(bat_priv
, orig
, BATADV_NO_FLAGS
);
1270 batadv_mcast_want_ipv6_update(bat_priv
, orig
, BATADV_NO_FLAGS
);
1272 spin_unlock_bh(&orig
->mcast_handler_lock
);