1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (C) 2014-2018 B.A.T.M.A.N. contributors:
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 #include "multicast.h"
22 #include <linux/atomic.h>
23 #include <linux/bitops.h>
24 #include <linux/bug.h>
25 #include <linux/byteorder/generic.h>
26 #include <linux/errno.h>
27 #include <linux/etherdevice.h>
28 #include <linux/gfp.h>
29 #include <linux/icmpv6.h>
30 #include <linux/if_bridge.h>
31 #include <linux/if_ether.h>
32 #include <linux/igmp.h>
34 #include <linux/in6.h>
36 #include <linux/ipv6.h>
37 #include <linux/jiffies.h>
38 #include <linux/kernel.h>
39 #include <linux/kref.h>
40 #include <linux/list.h>
41 #include <linux/lockdep.h>
42 #include <linux/netdevice.h>
43 #include <linux/netlink.h>
44 #include <linux/printk.h>
45 #include <linux/rculist.h>
46 #include <linux/rcupdate.h>
47 #include <linux/seq_file.h>
48 #include <linux/skbuff.h>
49 #include <linux/slab.h>
50 #include <linux/spinlock.h>
51 #include <linux/stddef.h>
52 #include <linux/string.h>
53 #include <linux/types.h>
54 #include <linux/workqueue.h>
55 #include <net/addrconf.h>
56 #include <net/genetlink.h>
57 #include <net/if_inet6.h>
60 #include <net/netlink.h>
62 #include <uapi/linux/batadv_packet.h>
63 #include <uapi/linux/batman_adv.h>
65 #include "hard-interface.h"
69 #include "soft-interface.h"
70 #include "translation-table.h"
73 static void batadv_mcast_mla_update(struct work_struct *work);
76 * batadv_mcast_start_timer() - schedule the multicast periodic worker
77 * @bat_priv: the bat priv with all the soft interface information
79 static void batadv_mcast_start_timer(struct batadv_priv *bat_priv)
81 queue_delayed_work(batadv_event_workqueue, &bat_priv->mcast.work,
82 msecs_to_jiffies(BATADV_MCAST_WORK_PERIOD));
86 * batadv_mcast_get_bridge() - get the bridge on top of the softif if it exists
87 * @soft_iface: netdev struct of the mesh interface
89 * If the given soft interface has a bridge on top then the refcount
90 * of the according net device is increased.
92 * Return: NULL if no such bridge exists. Otherwise the net device of the
95 static struct net_device *batadv_mcast_get_bridge(struct net_device *soft_iface)
97 struct net_device *upper = soft_iface;
101 upper = netdev_master_upper_dev_get_rcu(upper);
102 } while (upper && !(upper->priv_flags & IFF_EBRIDGE));
112 * batadv_mcast_addr_is_ipv4() - check if multicast MAC is IPv4
113 * @addr: the MAC address to check
115 * Return: True, if MAC address is one reserved for IPv4 multicast, false
118 static bool batadv_mcast_addr_is_ipv4(const u8 *addr)
120 static const u8 prefix[] = {0x01, 0x00, 0x5E};
122 return memcmp(prefix, addr, sizeof(prefix)) == 0;
126 * batadv_mcast_addr_is_ipv6() - check if multicast MAC is IPv6
127 * @addr: the MAC address to check
129 * Return: True, if MAC address is one reserved for IPv6 multicast, false
132 static bool batadv_mcast_addr_is_ipv6(const u8 *addr)
134 static const u8 prefix[] = {0x33, 0x33};
136 return memcmp(prefix, addr, sizeof(prefix)) == 0;
140 * batadv_mcast_mla_softif_get() - get softif multicast listeners
141 * @bat_priv: the bat priv with all the soft interface information
142 * @dev: the device to collect multicast addresses from
143 * @mcast_list: a list to put found addresses into
145 * Collects multicast addresses of multicast listeners residing
146 * on this kernel on the given soft interface, dev, in
147 * the given mcast_list. In general, multicast listeners provided by
148 * your multicast receiving applications run directly on this node.
150 * If there is a bridge interface on top of dev, collects from that one
151 * instead. Just like with IP addresses and routes, multicast listeners
152 * will(/should) register to the bridge interface instead of an
155 * Return: -ENOMEM on memory allocation error or the number of
156 * items added to the mcast_list otherwise.
158 static int batadv_mcast_mla_softif_get(struct batadv_priv *bat_priv,
159 struct net_device *dev,
160 struct hlist_head *mcast_list)
162 bool all_ipv4 = bat_priv->mcast.flags & BATADV_MCAST_WANT_ALL_IPV4;
163 bool all_ipv6 = bat_priv->mcast.flags & BATADV_MCAST_WANT_ALL_IPV6;
164 struct net_device *bridge = batadv_mcast_get_bridge(dev);
165 struct netdev_hw_addr *mc_list_entry;
166 struct batadv_hw_addr *new;
169 netif_addr_lock_bh(bridge ? bridge : dev);
170 netdev_for_each_mc_addr(mc_list_entry, bridge ? bridge : dev) {
171 if (all_ipv4 && batadv_mcast_addr_is_ipv4(mc_list_entry->addr))
174 if (all_ipv6 && batadv_mcast_addr_is_ipv6(mc_list_entry->addr))
177 new = kmalloc(sizeof(*new), GFP_ATOMIC);
183 ether_addr_copy(new->addr, mc_list_entry->addr);
184 hlist_add_head(&new->list, mcast_list);
187 netif_addr_unlock_bh(bridge ? bridge : dev);
196 * batadv_mcast_mla_is_duplicate() - check whether an address is in a list
197 * @mcast_addr: the multicast address to check
198 * @mcast_list: the list with multicast addresses to search in
200 * Return: true if the given address is already in the given list.
201 * Otherwise returns false.
203 static bool batadv_mcast_mla_is_duplicate(u8 *mcast_addr,
204 struct hlist_head *mcast_list)
206 struct batadv_hw_addr *mcast_entry;
208 hlist_for_each_entry(mcast_entry, mcast_list, list)
209 if (batadv_compare_eth(mcast_entry->addr, mcast_addr))
216 * batadv_mcast_mla_br_addr_cpy() - copy a bridge multicast address
217 * @dst: destination to write to - a multicast MAC address
218 * @src: source to read from - a multicast IP address
220 * Converts a given multicast IPv4/IPv6 address from a bridge
221 * to its matching multicast MAC address and copies it into the given
222 * destination buffer.
224 * Caller needs to make sure the destination buffer can hold
225 * at least ETH_ALEN bytes.
227 static void batadv_mcast_mla_br_addr_cpy(char *dst, const struct br_ip *src)
229 if (src->proto == htons(ETH_P_IP))
230 ip_eth_mc_map(src->u.ip4, dst);
231 #if IS_ENABLED(CONFIG_IPV6)
232 else if (src->proto == htons(ETH_P_IPV6))
233 ipv6_eth_mc_map(&src->u.ip6, dst);
240 * batadv_mcast_mla_bridge_get() - get bridged-in multicast listeners
241 * @bat_priv: the bat priv with all the soft interface information
242 * @dev: a bridge slave whose bridge to collect multicast addresses from
243 * @mcast_list: a list to put found addresses into
245 * Collects multicast addresses of multicast listeners residing
246 * on foreign, non-mesh devices which we gave access to our mesh via
247 * a bridge on top of the given soft interface, dev, in the given
250 * Return: -ENOMEM on memory allocation error or the number of
251 * items added to the mcast_list otherwise.
253 static int batadv_mcast_mla_bridge_get(struct batadv_priv *bat_priv,
254 struct net_device *dev,
255 struct hlist_head *mcast_list)
257 struct list_head bridge_mcast_list = LIST_HEAD_INIT(bridge_mcast_list);
258 bool all_ipv4 = bat_priv->mcast.flags & BATADV_MCAST_WANT_ALL_IPV4;
259 bool all_ipv6 = bat_priv->mcast.flags & BATADV_MCAST_WANT_ALL_IPV6;
260 struct br_ip_list *br_ip_entry, *tmp;
261 struct batadv_hw_addr *new;
262 u8 mcast_addr[ETH_ALEN];
265 /* we don't need to detect these devices/listeners, the IGMP/MLD
266 * snooping code of the Linux bridge already does that for us
268 ret = br_multicast_list_adjacent(dev, &bridge_mcast_list);
272 list_for_each_entry(br_ip_entry, &bridge_mcast_list, list) {
273 if (all_ipv4 && br_ip_entry->addr.proto == htons(ETH_P_IP))
276 if (all_ipv6 && br_ip_entry->addr.proto == htons(ETH_P_IPV6))
279 batadv_mcast_mla_br_addr_cpy(mcast_addr, &br_ip_entry->addr);
280 if (batadv_mcast_mla_is_duplicate(mcast_addr, mcast_list))
283 new = kmalloc(sizeof(*new), GFP_ATOMIC);
289 ether_addr_copy(new->addr, mcast_addr);
290 hlist_add_head(&new->list, mcast_list);
294 list_for_each_entry_safe(br_ip_entry, tmp, &bridge_mcast_list, list) {
295 list_del(&br_ip_entry->list);
303 * batadv_mcast_mla_list_free() - free a list of multicast addresses
304 * @mcast_list: the list to free
306 * Removes and frees all items in the given mcast_list.
308 static void batadv_mcast_mla_list_free(struct hlist_head *mcast_list)
310 struct batadv_hw_addr *mcast_entry;
311 struct hlist_node *tmp;
313 hlist_for_each_entry_safe(mcast_entry, tmp, mcast_list, list) {
314 hlist_del(&mcast_entry->list);
320 * batadv_mcast_mla_tt_retract() - clean up multicast listener announcements
321 * @bat_priv: the bat priv with all the soft interface information
322 * @mcast_list: a list of addresses which should _not_ be removed
324 * Retracts the announcement of any multicast listener from the
325 * translation table except the ones listed in the given mcast_list.
327 * If mcast_list is NULL then all are retracted.
329 static void batadv_mcast_mla_tt_retract(struct batadv_priv *bat_priv,
330 struct hlist_head *mcast_list)
332 struct batadv_hw_addr *mcast_entry;
333 struct hlist_node *tmp;
335 hlist_for_each_entry_safe(mcast_entry, tmp, &bat_priv->mcast.mla_list,
338 batadv_mcast_mla_is_duplicate(mcast_entry->addr,
342 batadv_tt_local_remove(bat_priv, mcast_entry->addr,
344 "mcast TT outdated", false);
346 hlist_del(&mcast_entry->list);
352 * batadv_mcast_mla_tt_add() - add multicast listener announcements
353 * @bat_priv: the bat priv with all the soft interface information
354 * @mcast_list: a list of addresses which are going to get added
356 * Adds multicast listener announcements from the given mcast_list to the
357 * translation table if they have not been added yet.
359 static void batadv_mcast_mla_tt_add(struct batadv_priv *bat_priv,
360 struct hlist_head *mcast_list)
362 struct batadv_hw_addr *mcast_entry;
363 struct hlist_node *tmp;
368 hlist_for_each_entry_safe(mcast_entry, tmp, mcast_list, list) {
369 if (batadv_mcast_mla_is_duplicate(mcast_entry->addr,
370 &bat_priv->mcast.mla_list))
373 if (!batadv_tt_local_add(bat_priv->soft_iface,
374 mcast_entry->addr, BATADV_NO_FLAGS,
375 BATADV_NULL_IFINDEX, BATADV_NO_MARK))
378 hlist_del(&mcast_entry->list);
379 hlist_add_head(&mcast_entry->list, &bat_priv->mcast.mla_list);
384 * batadv_mcast_has_bridge() - check whether the soft-iface is bridged
385 * @bat_priv: the bat priv with all the soft interface information
387 * Checks whether there is a bridge on top of our soft interface.
389 * Return: true if there is a bridge, false otherwise.
391 static bool batadv_mcast_has_bridge(struct batadv_priv *bat_priv)
393 struct net_device *upper = bat_priv->soft_iface;
397 upper = netdev_master_upper_dev_get_rcu(upper);
398 } while (upper && !(upper->priv_flags & IFF_EBRIDGE));
405 * batadv_mcast_querier_log() - debug output regarding the querier status on
407 * @bat_priv: the bat priv with all the soft interface information
408 * @str_proto: a string for the querier protocol (e.g. "IGMP" or "MLD")
409 * @old_state: the previous querier state on our link
410 * @new_state: the new querier state on our link
412 * Outputs debug messages to the logging facility with log level 'mcast'
413 * regarding changes to the querier status on the link which are relevant
414 * to our multicast optimizations.
416 * Usually this is about whether a querier appeared or vanished in
417 * our mesh or whether the querier is in the suboptimal position of being
418 * behind our local bridge segment: Snooping switches will directly
419 * forward listener reports to the querier, therefore batman-adv and
420 * the bridge will potentially not see these listeners - the querier is
421 * potentially shadowing listeners from us then.
423 * This is only interesting for nodes with a bridge on top of their
427 batadv_mcast_querier_log(struct batadv_priv *bat_priv, char *str_proto,
428 struct batadv_mcast_querier_state *old_state,
429 struct batadv_mcast_querier_state *new_state)
431 if (!old_state->exists && new_state->exists)
432 batadv_info(bat_priv->soft_iface, "%s Querier appeared\n",
434 else if (old_state->exists && !new_state->exists)
435 batadv_info(bat_priv->soft_iface,
436 "%s Querier disappeared - multicast optimizations disabled\n",
438 else if (!bat_priv->mcast.bridged && !new_state->exists)
439 batadv_info(bat_priv->soft_iface,
440 "No %s Querier present - multicast optimizations disabled\n",
443 if (new_state->exists) {
444 if ((!old_state->shadowing && new_state->shadowing) ||
445 (!old_state->exists && new_state->shadowing))
446 batadv_dbg(BATADV_DBG_MCAST, bat_priv,
447 "%s Querier is behind our bridged segment: Might shadow listeners\n",
449 else if (old_state->shadowing && !new_state->shadowing)
450 batadv_dbg(BATADV_DBG_MCAST, bat_priv,
451 "%s Querier is not behind our bridged segment\n",
457 * batadv_mcast_bridge_log() - debug output for topology changes in bridged
459 * @bat_priv: the bat priv with all the soft interface information
460 * @bridged: a flag about whether the soft interface is currently bridged or not
461 * @querier_ipv4: (maybe) new status of a potential, selected IGMP querier
462 * @querier_ipv6: (maybe) new status of a potential, selected MLD querier
464 * If no bridges are ever used on this node, then this function does nothing.
466 * Otherwise this function outputs debug information to the 'mcast' log level
467 * which might be relevant to our multicast optimizations.
469 * More precisely, it outputs information when a bridge interface is added or
470 * removed from a soft interface. And when a bridge is present, it further
471 * outputs information about the querier state which is relevant for the
472 * multicast flags this node is going to set.
475 batadv_mcast_bridge_log(struct batadv_priv *bat_priv, bool bridged,
476 struct batadv_mcast_querier_state *querier_ipv4,
477 struct batadv_mcast_querier_state *querier_ipv6)
479 if (!bat_priv->mcast.bridged && bridged)
480 batadv_dbg(BATADV_DBG_MCAST, bat_priv,
481 "Bridge added: Setting Unsnoopables(U)-flag\n");
482 else if (bat_priv->mcast.bridged && !bridged)
483 batadv_dbg(BATADV_DBG_MCAST, bat_priv,
484 "Bridge removed: Unsetting Unsnoopables(U)-flag\n");
487 batadv_mcast_querier_log(bat_priv, "IGMP",
488 &bat_priv->mcast.querier_ipv4,
490 batadv_mcast_querier_log(bat_priv, "MLD",
491 &bat_priv->mcast.querier_ipv6,
497 * batadv_mcast_flags_logs() - output debug information about mcast flag changes
498 * @bat_priv: the bat priv with all the soft interface information
499 * @flags: flags indicating the new multicast state
501 * Whenever the multicast flags this nodes announces changes (@mcast_flags vs.
502 * bat_priv->mcast.flags), this notifies userspace via the 'mcast' log level.
504 static void batadv_mcast_flags_log(struct batadv_priv *bat_priv, u8 flags)
506 u8 old_flags = bat_priv->mcast.flags;
507 char str_old_flags[] = "[...]";
509 sprintf(str_old_flags, "[%c%c%c]",
510 (old_flags & BATADV_MCAST_WANT_ALL_UNSNOOPABLES) ? 'U' : '.',
511 (old_flags & BATADV_MCAST_WANT_ALL_IPV4) ? '4' : '.',
512 (old_flags & BATADV_MCAST_WANT_ALL_IPV6) ? '6' : '.');
514 batadv_dbg(BATADV_DBG_MCAST, bat_priv,
515 "Changing multicast flags from '%s' to '[%c%c%c]'\n",
516 bat_priv->mcast.enabled ? str_old_flags : "<undefined>",
517 (flags & BATADV_MCAST_WANT_ALL_UNSNOOPABLES) ? 'U' : '.',
518 (flags & BATADV_MCAST_WANT_ALL_IPV4) ? '4' : '.',
519 (flags & BATADV_MCAST_WANT_ALL_IPV6) ? '6' : '.');
523 * batadv_mcast_mla_tvlv_update() - update multicast tvlv
524 * @bat_priv: the bat priv with all the soft interface information
526 * Updates the own multicast tvlv with our current multicast related settings,
527 * capabilities and inabilities.
529 * Return: false if we want all IPv4 && IPv6 multicast traffic and true
532 static bool batadv_mcast_mla_tvlv_update(struct batadv_priv *bat_priv)
534 struct batadv_tvlv_mcast_data mcast_data;
535 struct batadv_mcast_querier_state querier4 = {false, false};
536 struct batadv_mcast_querier_state querier6 = {false, false};
537 struct net_device *dev = bat_priv->soft_iface;
540 mcast_data.flags = BATADV_NO_FLAGS;
541 memset(mcast_data.reserved, 0, sizeof(mcast_data.reserved));
543 bridged = batadv_mcast_has_bridge(bat_priv);
547 if (!IS_ENABLED(CONFIG_BRIDGE_IGMP_SNOOPING))
548 pr_warn_once("No bridge IGMP snooping compiled - multicast optimizations disabled\n");
550 querier4.exists = br_multicast_has_querier_anywhere(dev, ETH_P_IP);
551 querier4.shadowing = br_multicast_has_querier_adjacent(dev, ETH_P_IP);
553 querier6.exists = br_multicast_has_querier_anywhere(dev, ETH_P_IPV6);
554 querier6.shadowing = br_multicast_has_querier_adjacent(dev, ETH_P_IPV6);
556 mcast_data.flags |= BATADV_MCAST_WANT_ALL_UNSNOOPABLES;
558 /* 1) If no querier exists at all, then multicast listeners on
559 * our local TT clients behind the bridge will keep silent.
560 * 2) If the selected querier is on one of our local TT clients,
561 * behind the bridge, then this querier might shadow multicast
562 * listeners on our local TT clients, behind this bridge.
564 * In both cases, we will signalize other batman nodes that
565 * we need all multicast traffic of the according protocol.
567 if (!querier4.exists || querier4.shadowing)
568 mcast_data.flags |= BATADV_MCAST_WANT_ALL_IPV4;
570 if (!querier6.exists || querier6.shadowing)
571 mcast_data.flags |= BATADV_MCAST_WANT_ALL_IPV6;
574 batadv_mcast_bridge_log(bat_priv, bridged, &querier4, &querier6);
576 bat_priv->mcast.querier_ipv4.exists = querier4.exists;
577 bat_priv->mcast.querier_ipv4.shadowing = querier4.shadowing;
579 bat_priv->mcast.querier_ipv6.exists = querier6.exists;
580 bat_priv->mcast.querier_ipv6.shadowing = querier6.shadowing;
582 bat_priv->mcast.bridged = bridged;
584 if (!bat_priv->mcast.enabled ||
585 mcast_data.flags != bat_priv->mcast.flags) {
586 batadv_mcast_flags_log(bat_priv, mcast_data.flags);
587 batadv_tvlv_container_register(bat_priv, BATADV_TVLV_MCAST, 2,
588 &mcast_data, sizeof(mcast_data));
589 bat_priv->mcast.flags = mcast_data.flags;
590 bat_priv->mcast.enabled = true;
593 return !(mcast_data.flags & BATADV_MCAST_WANT_ALL_IPV4 &&
594 mcast_data.flags & BATADV_MCAST_WANT_ALL_IPV6);
598 * __batadv_mcast_mla_update() - update the own MLAs
599 * @bat_priv: the bat priv with all the soft interface information
601 * Updates the own multicast listener announcements in the translation
602 * table as well as the own, announced multicast tvlv container.
604 * Note that non-conflicting reads and writes to bat_priv->mcast.mla_list
605 * in batadv_mcast_mla_tt_retract() and batadv_mcast_mla_tt_add() are
606 * ensured by the non-parallel execution of the worker this function
609 static void __batadv_mcast_mla_update(struct batadv_priv *bat_priv)
611 struct net_device *soft_iface = bat_priv->soft_iface;
612 struct hlist_head mcast_list = HLIST_HEAD_INIT;
615 if (!batadv_mcast_mla_tvlv_update(bat_priv))
618 ret = batadv_mcast_mla_softif_get(bat_priv, soft_iface, &mcast_list);
622 ret = batadv_mcast_mla_bridge_get(bat_priv, soft_iface, &mcast_list);
627 batadv_mcast_mla_tt_retract(bat_priv, &mcast_list);
628 batadv_mcast_mla_tt_add(bat_priv, &mcast_list);
631 batadv_mcast_mla_list_free(&mcast_list);
635 * batadv_mcast_mla_update() - update the own MLAs
636 * @work: kernel work struct
638 * Updates the own multicast listener announcements in the translation
639 * table as well as the own, announced multicast tvlv container.
641 * In the end, reschedules the work timer.
643 static void batadv_mcast_mla_update(struct work_struct *work)
645 struct delayed_work *delayed_work;
646 struct batadv_priv_mcast *priv_mcast;
647 struct batadv_priv *bat_priv;
649 delayed_work = to_delayed_work(work);
650 priv_mcast = container_of(delayed_work, struct batadv_priv_mcast, work);
651 bat_priv = container_of(priv_mcast, struct batadv_priv, mcast);
653 spin_lock(&bat_priv->mcast.mla_lock);
654 __batadv_mcast_mla_update(bat_priv);
655 spin_unlock(&bat_priv->mcast.mla_lock);
657 batadv_mcast_start_timer(bat_priv);
661 * batadv_mcast_is_report_ipv4() - check for IGMP reports
662 * @skb: the ethernet frame destined for the mesh
664 * This call might reallocate skb data.
666 * Checks whether the given frame is a valid IGMP report.
668 * Return: If so then true, otherwise false.
670 static bool batadv_mcast_is_report_ipv4(struct sk_buff *skb)
672 if (ip_mc_check_igmp(skb, NULL) < 0)
675 switch (igmp_hdr(skb)->type) {
676 case IGMP_HOST_MEMBERSHIP_REPORT:
677 case IGMPV2_HOST_MEMBERSHIP_REPORT:
678 case IGMPV3_HOST_MEMBERSHIP_REPORT:
686 * batadv_mcast_forw_mode_check_ipv4() - check for optimized forwarding
688 * @bat_priv: the bat priv with all the soft interface information
689 * @skb: the IPv4 packet to check
690 * @is_unsnoopable: stores whether the destination is snoopable
692 * Checks whether the given IPv4 packet has the potential to be forwarded with a
693 * mode more optimal than classic flooding.
695 * Return: If so then 0. Otherwise -EINVAL or -ENOMEM in case of memory
696 * allocation failure.
698 static int batadv_mcast_forw_mode_check_ipv4(struct batadv_priv *bat_priv,
700 bool *is_unsnoopable)
704 /* We might fail due to out-of-memory -> drop it */
705 if (!pskb_may_pull(skb, sizeof(struct ethhdr) + sizeof(*iphdr)))
708 if (batadv_mcast_is_report_ipv4(skb))
713 /* TODO: Implement Multicast Router Discovery (RFC4286),
714 * then allow scope > link local, too
716 if (!ipv4_is_local_multicast(iphdr->daddr))
719 /* link-local multicast listeners behind a bridge are
720 * not snoopable (see RFC4541, section 2.1.2.2)
722 *is_unsnoopable = true;
728 * batadv_mcast_is_report_ipv6() - check for MLD reports
729 * @skb: the ethernet frame destined for the mesh
731 * This call might reallocate skb data.
733 * Checks whether the given frame is a valid MLD report.
735 * Return: If so then true, otherwise false.
737 static bool batadv_mcast_is_report_ipv6(struct sk_buff *skb)
739 if (ipv6_mc_check_mld(skb, NULL) < 0)
742 switch (icmp6_hdr(skb)->icmp6_type) {
743 case ICMPV6_MGM_REPORT:
744 case ICMPV6_MLD2_REPORT:
752 * batadv_mcast_forw_mode_check_ipv6() - check for optimized forwarding
754 * @bat_priv: the bat priv with all the soft interface information
755 * @skb: the IPv6 packet to check
756 * @is_unsnoopable: stores whether the destination is snoopable
758 * Checks whether the given IPv6 packet has the potential to be forwarded with a
759 * mode more optimal than classic flooding.
761 * Return: If so then 0. Otherwise -EINVAL is or -ENOMEM if we are out of memory
763 static int batadv_mcast_forw_mode_check_ipv6(struct batadv_priv *bat_priv,
765 bool *is_unsnoopable)
767 struct ipv6hdr *ip6hdr;
769 /* We might fail due to out-of-memory -> drop it */
770 if (!pskb_may_pull(skb, sizeof(struct ethhdr) + sizeof(*ip6hdr)))
773 if (batadv_mcast_is_report_ipv6(skb))
776 ip6hdr = ipv6_hdr(skb);
778 /* TODO: Implement Multicast Router Discovery (RFC4286),
779 * then allow scope > link local, too
781 if (IPV6_ADDR_MC_SCOPE(&ip6hdr->daddr) != IPV6_ADDR_SCOPE_LINKLOCAL)
784 /* link-local-all-nodes multicast listeners behind a bridge are
785 * not snoopable (see RFC4541, section 3, paragraph 3)
787 if (ipv6_addr_is_ll_all_nodes(&ip6hdr->daddr))
788 *is_unsnoopable = true;
794 * batadv_mcast_forw_mode_check() - check for optimized forwarding potential
795 * @bat_priv: the bat priv with all the soft interface information
796 * @skb: the multicast frame to check
797 * @is_unsnoopable: stores whether the destination is snoopable
799 * Checks whether the given multicast ethernet frame has the potential to be
800 * forwarded with a mode more optimal than classic flooding.
802 * Return: If so then 0. Otherwise -EINVAL is or -ENOMEM if we are out of memory
804 static int batadv_mcast_forw_mode_check(struct batadv_priv *bat_priv,
806 bool *is_unsnoopable)
808 struct ethhdr *ethhdr = eth_hdr(skb);
810 if (!atomic_read(&bat_priv->multicast_mode))
813 switch (ntohs(ethhdr->h_proto)) {
815 return batadv_mcast_forw_mode_check_ipv4(bat_priv, skb,
818 if (!IS_ENABLED(CONFIG_IPV6))
821 return batadv_mcast_forw_mode_check_ipv6(bat_priv, skb,
829 * batadv_mcast_forw_want_all_ip_count() - count nodes with unspecific mcast
831 * @bat_priv: the bat priv with all the soft interface information
832 * @ethhdr: ethernet header of a packet
834 * Return: the number of nodes which want all IPv4 multicast traffic if the
835 * given ethhdr is from an IPv4 packet or the number of nodes which want all
836 * IPv6 traffic if it matches an IPv6 packet.
838 static int batadv_mcast_forw_want_all_ip_count(struct batadv_priv *bat_priv,
839 struct ethhdr *ethhdr)
841 switch (ntohs(ethhdr->h_proto)) {
843 return atomic_read(&bat_priv->mcast.num_want_all_ipv4);
845 return atomic_read(&bat_priv->mcast.num_want_all_ipv6);
847 /* we shouldn't be here... */
853 * batadv_mcast_forw_tt_node_get() - get a multicast tt node
854 * @bat_priv: the bat priv with all the soft interface information
855 * @ethhdr: the ether header containing the multicast destination
857 * Return: an orig_node matching the multicast address provided by ethhdr
858 * via a translation table lookup. This increases the returned nodes refcount.
860 static struct batadv_orig_node *
861 batadv_mcast_forw_tt_node_get(struct batadv_priv *bat_priv,
862 struct ethhdr *ethhdr)
864 return batadv_transtable_search(bat_priv, NULL, ethhdr->h_dest,
869 * batadv_mcast_forw_ipv4_node_get() - get a node with an ipv4 flag
870 * @bat_priv: the bat priv with all the soft interface information
872 * Return: an orig_node which has the BATADV_MCAST_WANT_ALL_IPV4 flag set and
873 * increases its refcount.
875 static struct batadv_orig_node *
876 batadv_mcast_forw_ipv4_node_get(struct batadv_priv *bat_priv)
878 struct batadv_orig_node *tmp_orig_node, *orig_node = NULL;
881 hlist_for_each_entry_rcu(tmp_orig_node,
882 &bat_priv->mcast.want_all_ipv4_list,
883 mcast_want_all_ipv4_node) {
884 if (!kref_get_unless_zero(&tmp_orig_node->refcount))
887 orig_node = tmp_orig_node;
896 * batadv_mcast_forw_ipv6_node_get() - get a node with an ipv6 flag
897 * @bat_priv: the bat priv with all the soft interface information
899 * Return: an orig_node which has the BATADV_MCAST_WANT_ALL_IPV6 flag set
900 * and increases its refcount.
902 static struct batadv_orig_node *
903 batadv_mcast_forw_ipv6_node_get(struct batadv_priv *bat_priv)
905 struct batadv_orig_node *tmp_orig_node, *orig_node = NULL;
908 hlist_for_each_entry_rcu(tmp_orig_node,
909 &bat_priv->mcast.want_all_ipv6_list,
910 mcast_want_all_ipv6_node) {
911 if (!kref_get_unless_zero(&tmp_orig_node->refcount))
914 orig_node = tmp_orig_node;
923 * batadv_mcast_forw_ip_node_get() - get a node with an ipv4/ipv6 flag
924 * @bat_priv: the bat priv with all the soft interface information
925 * @ethhdr: an ethernet header to determine the protocol family from
927 * Return: an orig_node which has the BATADV_MCAST_WANT_ALL_IPV4 or
928 * BATADV_MCAST_WANT_ALL_IPV6 flag, depending on the provided ethhdr, set and
929 * increases its refcount.
931 static struct batadv_orig_node *
932 batadv_mcast_forw_ip_node_get(struct batadv_priv *bat_priv,
933 struct ethhdr *ethhdr)
935 switch (ntohs(ethhdr->h_proto)) {
937 return batadv_mcast_forw_ipv4_node_get(bat_priv);
939 return batadv_mcast_forw_ipv6_node_get(bat_priv);
941 /* we shouldn't be here... */
947 * batadv_mcast_forw_unsnoop_node_get() - get a node with an unsnoopable flag
948 * @bat_priv: the bat priv with all the soft interface information
950 * Return: an orig_node which has the BATADV_MCAST_WANT_ALL_UNSNOOPABLES flag
951 * set and increases its refcount.
953 static struct batadv_orig_node *
954 batadv_mcast_forw_unsnoop_node_get(struct batadv_priv *bat_priv)
956 struct batadv_orig_node *tmp_orig_node, *orig_node = NULL;
959 hlist_for_each_entry_rcu(tmp_orig_node,
960 &bat_priv->mcast.want_all_unsnoopables_list,
961 mcast_want_all_unsnoopables_node) {
962 if (!kref_get_unless_zero(&tmp_orig_node->refcount))
965 orig_node = tmp_orig_node;
974 * batadv_mcast_forw_mode() - check on how to forward a multicast packet
975 * @bat_priv: the bat priv with all the soft interface information
976 * @skb: The multicast packet to check
977 * @orig: an originator to be set to forward the skb to
979 * Return: the forwarding mode as enum batadv_forw_mode and in case of
980 * BATADV_FORW_SINGLE set the orig to the single originator the skb
981 * should be forwarded to.
983 enum batadv_forw_mode
984 batadv_mcast_forw_mode(struct batadv_priv *bat_priv, struct sk_buff *skb,
985 struct batadv_orig_node **orig)
987 int ret, tt_count, ip_count, unsnoop_count, total_count;
988 bool is_unsnoopable = false;
989 struct ethhdr *ethhdr;
991 ret = batadv_mcast_forw_mode_check(bat_priv, skb, &is_unsnoopable);
993 return BATADV_FORW_NONE;
995 return BATADV_FORW_ALL;
997 ethhdr = eth_hdr(skb);
999 tt_count = batadv_tt_global_hash_count(bat_priv, ethhdr->h_dest,
1001 ip_count = batadv_mcast_forw_want_all_ip_count(bat_priv, ethhdr);
1002 unsnoop_count = !is_unsnoopable ? 0 :
1003 atomic_read(&bat_priv->mcast.num_want_all_unsnoopables);
1005 total_count = tt_count + ip_count + unsnoop_count;
1007 switch (total_count) {
1010 *orig = batadv_mcast_forw_tt_node_get(bat_priv, ethhdr);
1012 *orig = batadv_mcast_forw_ip_node_get(bat_priv, ethhdr);
1013 else if (unsnoop_count)
1014 *orig = batadv_mcast_forw_unsnoop_node_get(bat_priv);
1017 return BATADV_FORW_SINGLE;
1021 return BATADV_FORW_NONE;
1023 return BATADV_FORW_ALL;
1028 * batadv_mcast_want_unsnoop_update() - update unsnoop counter and list
1029 * @bat_priv: the bat priv with all the soft interface information
1030 * @orig: the orig_node which multicast state might have changed of
1031 * @mcast_flags: flags indicating the new multicast state
1033 * If the BATADV_MCAST_WANT_ALL_UNSNOOPABLES flag of this originator,
1034 * orig, has toggled then this method updates counter and list accordingly.
1036 * Caller needs to hold orig->mcast_handler_lock.
1038 static void batadv_mcast_want_unsnoop_update(struct batadv_priv *bat_priv,
1039 struct batadv_orig_node *orig,
1042 struct hlist_node *node = &orig->mcast_want_all_unsnoopables_node;
1043 struct hlist_head *head = &bat_priv->mcast.want_all_unsnoopables_list;
1045 lockdep_assert_held(&orig->mcast_handler_lock);
1047 /* switched from flag unset to set */
1048 if (mcast_flags & BATADV_MCAST_WANT_ALL_UNSNOOPABLES &&
1049 !(orig->mcast_flags & BATADV_MCAST_WANT_ALL_UNSNOOPABLES)) {
1050 atomic_inc(&bat_priv->mcast.num_want_all_unsnoopables);
1052 spin_lock_bh(&bat_priv->mcast.want_lists_lock);
1053 /* flag checks above + mcast_handler_lock prevents this */
1054 WARN_ON(!hlist_unhashed(node));
1056 hlist_add_head_rcu(node, head);
1057 spin_unlock_bh(&bat_priv->mcast.want_lists_lock);
1058 /* switched from flag set to unset */
1059 } else if (!(mcast_flags & BATADV_MCAST_WANT_ALL_UNSNOOPABLES) &&
1060 orig->mcast_flags & BATADV_MCAST_WANT_ALL_UNSNOOPABLES) {
1061 atomic_dec(&bat_priv->mcast.num_want_all_unsnoopables);
1063 spin_lock_bh(&bat_priv->mcast.want_lists_lock);
1064 /* flag checks above + mcast_handler_lock prevents this */
1065 WARN_ON(hlist_unhashed(node));
1067 hlist_del_init_rcu(node);
1068 spin_unlock_bh(&bat_priv->mcast.want_lists_lock);
1073 * batadv_mcast_want_ipv4_update() - update want-all-ipv4 counter and list
1074 * @bat_priv: the bat priv with all the soft interface information
1075 * @orig: the orig_node which multicast state might have changed of
1076 * @mcast_flags: flags indicating the new multicast state
1078 * If the BATADV_MCAST_WANT_ALL_IPV4 flag of this originator, orig, has
1079 * toggled then this method updates counter and list accordingly.
1081 * Caller needs to hold orig->mcast_handler_lock.
1083 static void batadv_mcast_want_ipv4_update(struct batadv_priv *bat_priv,
1084 struct batadv_orig_node *orig,
1087 struct hlist_node *node = &orig->mcast_want_all_ipv4_node;
1088 struct hlist_head *head = &bat_priv->mcast.want_all_ipv4_list;
1090 lockdep_assert_held(&orig->mcast_handler_lock);
1092 /* switched from flag unset to set */
1093 if (mcast_flags & BATADV_MCAST_WANT_ALL_IPV4 &&
1094 !(orig->mcast_flags & BATADV_MCAST_WANT_ALL_IPV4)) {
1095 atomic_inc(&bat_priv->mcast.num_want_all_ipv4);
1097 spin_lock_bh(&bat_priv->mcast.want_lists_lock);
1098 /* flag checks above + mcast_handler_lock prevents this */
1099 WARN_ON(!hlist_unhashed(node));
1101 hlist_add_head_rcu(node, head);
1102 spin_unlock_bh(&bat_priv->mcast.want_lists_lock);
1103 /* switched from flag set to unset */
1104 } else if (!(mcast_flags & BATADV_MCAST_WANT_ALL_IPV4) &&
1105 orig->mcast_flags & BATADV_MCAST_WANT_ALL_IPV4) {
1106 atomic_dec(&bat_priv->mcast.num_want_all_ipv4);
1108 spin_lock_bh(&bat_priv->mcast.want_lists_lock);
1109 /* flag checks above + mcast_handler_lock prevents this */
1110 WARN_ON(hlist_unhashed(node));
1112 hlist_del_init_rcu(node);
1113 spin_unlock_bh(&bat_priv->mcast.want_lists_lock);
1118 * batadv_mcast_want_ipv6_update() - update want-all-ipv6 counter and list
1119 * @bat_priv: the bat priv with all the soft interface information
1120 * @orig: the orig_node which multicast state might have changed of
1121 * @mcast_flags: flags indicating the new multicast state
1123 * If the BATADV_MCAST_WANT_ALL_IPV6 flag of this originator, orig, has
1124 * toggled then this method updates counter and list accordingly.
1126 * Caller needs to hold orig->mcast_handler_lock.
1128 static void batadv_mcast_want_ipv6_update(struct batadv_priv *bat_priv,
1129 struct batadv_orig_node *orig,
1132 struct hlist_node *node = &orig->mcast_want_all_ipv6_node;
1133 struct hlist_head *head = &bat_priv->mcast.want_all_ipv6_list;
1135 lockdep_assert_held(&orig->mcast_handler_lock);
1137 /* switched from flag unset to set */
1138 if (mcast_flags & BATADV_MCAST_WANT_ALL_IPV6 &&
1139 !(orig->mcast_flags & BATADV_MCAST_WANT_ALL_IPV6)) {
1140 atomic_inc(&bat_priv->mcast.num_want_all_ipv6);
1142 spin_lock_bh(&bat_priv->mcast.want_lists_lock);
1143 /* flag checks above + mcast_handler_lock prevents this */
1144 WARN_ON(!hlist_unhashed(node));
1146 hlist_add_head_rcu(node, head);
1147 spin_unlock_bh(&bat_priv->mcast.want_lists_lock);
1148 /* switched from flag set to unset */
1149 } else if (!(mcast_flags & BATADV_MCAST_WANT_ALL_IPV6) &&
1150 orig->mcast_flags & BATADV_MCAST_WANT_ALL_IPV6) {
1151 atomic_dec(&bat_priv->mcast.num_want_all_ipv6);
1153 spin_lock_bh(&bat_priv->mcast.want_lists_lock);
1154 /* flag checks above + mcast_handler_lock prevents this */
1155 WARN_ON(hlist_unhashed(node));
1157 hlist_del_init_rcu(node);
1158 spin_unlock_bh(&bat_priv->mcast.want_lists_lock);
1163 * batadv_mcast_tvlv_ogm_handler() - process incoming multicast tvlv container
1164 * @bat_priv: the bat priv with all the soft interface information
1165 * @orig: the orig_node of the ogm
1166 * @flags: flags indicating the tvlv state (see batadv_tvlv_handler_flags)
1167 * @tvlv_value: tvlv buffer containing the multicast data
1168 * @tvlv_value_len: tvlv buffer length
1170 static void batadv_mcast_tvlv_ogm_handler(struct batadv_priv *bat_priv,
1171 struct batadv_orig_node *orig,
1176 bool orig_mcast_enabled = !(flags & BATADV_TVLV_HANDLER_OGM_CIFNOTFND);
1177 u8 mcast_flags = BATADV_NO_FLAGS;
1179 if (orig_mcast_enabled && tvlv_value &&
1180 tvlv_value_len >= sizeof(mcast_flags))
1181 mcast_flags = *(u8 *)tvlv_value;
1183 if (!orig_mcast_enabled) {
1184 mcast_flags |= BATADV_MCAST_WANT_ALL_IPV4;
1185 mcast_flags |= BATADV_MCAST_WANT_ALL_IPV6;
1188 spin_lock_bh(&orig->mcast_handler_lock);
1190 if (orig_mcast_enabled &&
1191 !test_bit(BATADV_ORIG_CAPA_HAS_MCAST, &orig->capabilities)) {
1192 set_bit(BATADV_ORIG_CAPA_HAS_MCAST, &orig->capabilities);
1193 } else if (!orig_mcast_enabled &&
1194 test_bit(BATADV_ORIG_CAPA_HAS_MCAST, &orig->capabilities)) {
1195 clear_bit(BATADV_ORIG_CAPA_HAS_MCAST, &orig->capabilities);
1198 set_bit(BATADV_ORIG_CAPA_HAS_MCAST, &orig->capa_initialized);
1200 batadv_mcast_want_unsnoop_update(bat_priv, orig, mcast_flags);
1201 batadv_mcast_want_ipv4_update(bat_priv, orig, mcast_flags);
1202 batadv_mcast_want_ipv6_update(bat_priv, orig, mcast_flags);
1204 orig->mcast_flags = mcast_flags;
1205 spin_unlock_bh(&orig->mcast_handler_lock);
1209 * batadv_mcast_init() - initialize the multicast optimizations structures
1210 * @bat_priv: the bat priv with all the soft interface information
1212 void batadv_mcast_init(struct batadv_priv *bat_priv)
1214 batadv_tvlv_handler_register(bat_priv, batadv_mcast_tvlv_ogm_handler,
1215 NULL, BATADV_TVLV_MCAST, 2,
1216 BATADV_TVLV_HANDLER_OGM_CIFNOTFND);
1218 INIT_DELAYED_WORK(&bat_priv->mcast.work, batadv_mcast_mla_update);
1219 batadv_mcast_start_timer(bat_priv);
1222 #ifdef CONFIG_BATMAN_ADV_DEBUGFS
1224 * batadv_mcast_flags_print_header() - print own mcast flags to debugfs table
1225 * @bat_priv: the bat priv with all the soft interface information
1226 * @seq: debugfs table seq_file struct
1228 * Prints our own multicast flags including a more specific reason why
1229 * they are set, that is prints the bridge and querier state too, to
1230 * the debugfs table specified via @seq.
1232 static void batadv_mcast_flags_print_header(struct batadv_priv *bat_priv,
1233 struct seq_file *seq)
1235 u8 flags = bat_priv->mcast.flags;
1236 char querier4, querier6, shadowing4, shadowing6;
1237 bool bridged = bat_priv->mcast.bridged;
1240 querier4 = bat_priv->mcast.querier_ipv4.exists ? '.' : '4';
1241 querier6 = bat_priv->mcast.querier_ipv6.exists ? '.' : '6';
1242 shadowing4 = bat_priv->mcast.querier_ipv4.shadowing ? '4' : '.';
1243 shadowing6 = bat_priv->mcast.querier_ipv6.shadowing ? '6' : '.';
1251 seq_printf(seq, "Multicast flags (own flags: [%c%c%c])\n",
1252 (flags & BATADV_MCAST_WANT_ALL_UNSNOOPABLES) ? 'U' : '.',
1253 (flags & BATADV_MCAST_WANT_ALL_IPV4) ? '4' : '.',
1254 (flags & BATADV_MCAST_WANT_ALL_IPV6) ? '6' : '.');
1255 seq_printf(seq, "* Bridged [U]\t\t\t\t%c\n", bridged ? 'U' : '.');
1256 seq_printf(seq, "* No IGMP/MLD Querier [4/6]:\t\t%c/%c\n",
1257 querier4, querier6);
1258 seq_printf(seq, "* Shadowing IGMP/MLD Querier [4/6]:\t%c/%c\n",
1259 shadowing4, shadowing6);
1260 seq_puts(seq, "-------------------------------------------\n");
1261 seq_printf(seq, " %-10s %s\n", "Originator", "Flags");
1265 * batadv_mcast_flags_seq_print_text() - print the mcast flags of other nodes
1266 * @seq: seq file to print on
1269 * This prints a table of (primary) originators and their according
1270 * multicast flags, including (in the header) our own.
1274 int batadv_mcast_flags_seq_print_text(struct seq_file *seq, void *offset)
1276 struct net_device *net_dev = (struct net_device *)seq->private;
1277 struct batadv_priv *bat_priv = netdev_priv(net_dev);
1278 struct batadv_hard_iface *primary_if;
1279 struct batadv_hashtable *hash = bat_priv->orig_hash;
1280 struct batadv_orig_node *orig_node;
1281 struct hlist_head *head;
1285 primary_if = batadv_seq_print_text_primary_if_get(seq);
1289 batadv_mcast_flags_print_header(bat_priv, seq);
1291 for (i = 0; i < hash->size; i++) {
1292 head = &hash->table[i];
1295 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
1296 if (!test_bit(BATADV_ORIG_CAPA_HAS_MCAST,
1297 &orig_node->capa_initialized))
1300 if (!test_bit(BATADV_ORIG_CAPA_HAS_MCAST,
1301 &orig_node->capabilities)) {
1302 seq_printf(seq, "%pM -\n", orig_node->orig);
1306 flags = orig_node->mcast_flags;
1308 seq_printf(seq, "%pM [%c%c%c]\n", orig_node->orig,
1309 (flags & BATADV_MCAST_WANT_ALL_UNSNOOPABLES)
1311 (flags & BATADV_MCAST_WANT_ALL_IPV4)
1313 (flags & BATADV_MCAST_WANT_ALL_IPV6)
1319 batadv_hardif_put(primary_if);
1326 * batadv_mcast_mesh_info_put() - put multicast info into a netlink message
1327 * @msg: buffer for the message
1328 * @bat_priv: the bat priv with all the soft interface information
1330 * Return: 0 or error code.
1332 int batadv_mcast_mesh_info_put(struct sk_buff *msg,
1333 struct batadv_priv *bat_priv)
1335 u32 flags = bat_priv->mcast.flags;
1336 u32 flags_priv = BATADV_NO_FLAGS;
1338 if (bat_priv->mcast.bridged) {
1339 flags_priv |= BATADV_MCAST_FLAGS_BRIDGED;
1341 if (bat_priv->mcast.querier_ipv4.exists)
1342 flags_priv |= BATADV_MCAST_FLAGS_QUERIER_IPV4_EXISTS;
1343 if (bat_priv->mcast.querier_ipv6.exists)
1344 flags_priv |= BATADV_MCAST_FLAGS_QUERIER_IPV6_EXISTS;
1345 if (bat_priv->mcast.querier_ipv4.shadowing)
1346 flags_priv |= BATADV_MCAST_FLAGS_QUERIER_IPV4_SHADOWING;
1347 if (bat_priv->mcast.querier_ipv6.shadowing)
1348 flags_priv |= BATADV_MCAST_FLAGS_QUERIER_IPV6_SHADOWING;
1351 if (nla_put_u32(msg, BATADV_ATTR_MCAST_FLAGS, flags) ||
1352 nla_put_u32(msg, BATADV_ATTR_MCAST_FLAGS_PRIV, flags_priv))
1359 * batadv_mcast_flags_dump_entry() - dump one entry of the multicast flags table
1360 * to a netlink socket
1361 * @msg: buffer for the message
1362 * @portid: netlink port
1363 * @seq: Sequence number of netlink message
1364 * @orig_node: originator to dump the multicast flags of
1366 * Return: 0 or error code.
1369 batadv_mcast_flags_dump_entry(struct sk_buff *msg, u32 portid, u32 seq,
1370 struct batadv_orig_node *orig_node)
1374 hdr = genlmsg_put(msg, portid, seq, &batadv_netlink_family,
1375 NLM_F_MULTI, BATADV_CMD_GET_MCAST_FLAGS);
1379 if (nla_put(msg, BATADV_ATTR_ORIG_ADDRESS, ETH_ALEN,
1381 genlmsg_cancel(msg, hdr);
1385 if (test_bit(BATADV_ORIG_CAPA_HAS_MCAST,
1386 &orig_node->capabilities)) {
1387 if (nla_put_u32(msg, BATADV_ATTR_MCAST_FLAGS,
1388 orig_node->mcast_flags)) {
1389 genlmsg_cancel(msg, hdr);
1394 genlmsg_end(msg, hdr);
1399 * batadv_mcast_flags_dump_bucket() - dump one bucket of the multicast flags
1400 * table to a netlink socket
1401 * @msg: buffer for the message
1402 * @portid: netlink port
1403 * @seq: Sequence number of netlink message
1404 * @head: bucket to dump
1405 * @idx_skip: How many entries to skip
1407 * Return: 0 or error code.
1410 batadv_mcast_flags_dump_bucket(struct sk_buff *msg, u32 portid, u32 seq,
1411 struct hlist_head *head, long *idx_skip)
1413 struct batadv_orig_node *orig_node;
1417 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
1418 if (!test_bit(BATADV_ORIG_CAPA_HAS_MCAST,
1419 &orig_node->capa_initialized))
1422 if (idx < *idx_skip)
1425 if (batadv_mcast_flags_dump_entry(msg, portid, seq,
1442 * __batadv_mcast_flags_dump() - dump multicast flags table to a netlink socket
1443 * @msg: buffer for the message
1444 * @portid: netlink port
1445 * @seq: Sequence number of netlink message
1446 * @bat_priv: the bat priv with all the soft interface information
1447 * @bucket: current bucket to dump
1448 * @idx: index in current bucket to the next entry to dump
1450 * Return: 0 or error code.
1453 __batadv_mcast_flags_dump(struct sk_buff *msg, u32 portid, u32 seq,
1454 struct batadv_priv *bat_priv, long *bucket, long *idx)
1456 struct batadv_hashtable *hash = bat_priv->orig_hash;
1457 long bucket_tmp = *bucket;
1458 struct hlist_head *head;
1459 long idx_tmp = *idx;
1461 while (bucket_tmp < hash->size) {
1462 head = &hash->table[bucket_tmp];
1464 if (batadv_mcast_flags_dump_bucket(msg, portid, seq, head,
1472 *bucket = bucket_tmp;
1479 * batadv_mcast_netlink_get_primary() - get primary interface from netlink
1481 * @cb: netlink callback structure
1482 * @primary_if: the primary interface pointer to return the result in
1484 * Return: 0 or error code.
1487 batadv_mcast_netlink_get_primary(struct netlink_callback *cb,
1488 struct batadv_hard_iface **primary_if)
1490 struct batadv_hard_iface *hard_iface = NULL;
1491 struct net *net = sock_net(cb->skb->sk);
1492 struct net_device *soft_iface;
1493 struct batadv_priv *bat_priv;
1497 ifindex = batadv_netlink_get_ifindex(cb->nlh, BATADV_ATTR_MESH_IFINDEX);
1501 soft_iface = dev_get_by_index(net, ifindex);
1502 if (!soft_iface || !batadv_softif_is_valid(soft_iface)) {
1507 bat_priv = netdev_priv(soft_iface);
1509 hard_iface = batadv_primary_if_get_selected(bat_priv);
1510 if (!hard_iface || hard_iface->if_status != BATADV_IF_ACTIVE) {
1517 dev_put(soft_iface);
1519 if (!ret && primary_if)
1520 *primary_if = hard_iface;
1521 else if (hard_iface)
1522 batadv_hardif_put(hard_iface);
1528 * batadv_mcast_flags_dump() - dump multicast flags table to a netlink socket
1529 * @msg: buffer for the message
1530 * @cb: callback structure containing arguments
1532 * Return: message length.
1534 int batadv_mcast_flags_dump(struct sk_buff *msg, struct netlink_callback *cb)
1536 struct batadv_hard_iface *primary_if = NULL;
1537 int portid = NETLINK_CB(cb->skb).portid;
1538 struct batadv_priv *bat_priv;
1539 long *bucket = &cb->args[0];
1540 long *idx = &cb->args[1];
1543 ret = batadv_mcast_netlink_get_primary(cb, &primary_if);
1547 bat_priv = netdev_priv(primary_if->soft_iface);
1548 ret = __batadv_mcast_flags_dump(msg, portid, cb->nlh->nlmsg_seq,
1549 bat_priv, bucket, idx);
1551 batadv_hardif_put(primary_if);
1556 * batadv_mcast_free() - free the multicast optimizations structures
1557 * @bat_priv: the bat priv with all the soft interface information
1559 void batadv_mcast_free(struct batadv_priv *bat_priv)
1561 cancel_delayed_work_sync(&bat_priv->mcast.work);
1563 batadv_tvlv_container_unregister(bat_priv, BATADV_TVLV_MCAST, 2);
1564 batadv_tvlv_handler_unregister(bat_priv, BATADV_TVLV_MCAST, 2);
1566 /* safely calling outside of worker, as worker was canceled above */
1567 batadv_mcast_mla_tt_retract(bat_priv, NULL);
1571 * batadv_mcast_purge_orig() - reset originator global mcast state modifications
1572 * @orig: the originator which is going to get purged
1574 void batadv_mcast_purge_orig(struct batadv_orig_node *orig)
1576 struct batadv_priv *bat_priv = orig->bat_priv;
1578 spin_lock_bh(&orig->mcast_handler_lock);
1580 batadv_mcast_want_unsnoop_update(bat_priv, orig, BATADV_NO_FLAGS);
1581 batadv_mcast_want_ipv4_update(bat_priv, orig, BATADV_NO_FLAGS);
1582 batadv_mcast_want_ipv6_update(bat_priv, orig, BATADV_NO_FLAGS);
1584 spin_unlock_bh(&orig->mcast_handler_lock);