Sven Eckelmann | 7db7d9f | 2017-11-19 15:05:11 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Sven Eckelmann | 7a79d71 | 2018-12-31 23:59:59 +0100 | [diff] [blame^] | 2 | /* Copyright (C) 2014-2019 B.A.T.M.A.N. contributors: |
Linus Lüssing | c5caf4e | 2014-02-15 17:47:49 +0100 | [diff] [blame] | 3 | * |
| 4 | * Linus Lüssing |
| 5 | * |
| 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. |
| 9 | * |
| 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. |
| 14 | * |
| 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/>. |
| 17 | */ |
| 18 | |
| 19 | #ifndef _NET_BATMAN_ADV_MULTICAST_H_ |
| 20 | #define _NET_BATMAN_ADV_MULTICAST_H_ |
| 21 | |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 22 | #include "main.h" |
| 23 | |
Linus Lüssing | 53dd9a6 | 2018-03-13 11:41:13 +0100 | [diff] [blame] | 24 | struct netlink_callback; |
Linus Lüssing | 4e3e823 | 2016-05-10 18:41:27 +0200 | [diff] [blame] | 25 | struct seq_file; |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 26 | struct sk_buff; |
| 27 | |
Linus Lüssing | 1d8ab8d | 2014-02-15 17:47:52 +0100 | [diff] [blame] | 28 | /** |
Sven Eckelmann | 6f68b00 | 2015-09-06 21:38:49 +0200 | [diff] [blame] | 29 | * enum batadv_forw_mode - the way a packet should be forwarded as |
Linus Lüssing | 1d8ab8d | 2014-02-15 17:47:52 +0100 | [diff] [blame] | 30 | */ |
| 31 | enum batadv_forw_mode { |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 32 | /** |
| 33 | * @BATADV_FORW_ALL: forward the packet to all nodes (currently via |
| 34 | * classic flooding) |
| 35 | */ |
Linus Lüssing | 1d8ab8d | 2014-02-15 17:47:52 +0100 | [diff] [blame] | 36 | BATADV_FORW_ALL, |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 37 | |
| 38 | /** |
| 39 | * @BATADV_FORW_SINGLE: forward the packet to a single node (currently |
| 40 | * via the BATMAN unicast routing protocol) |
| 41 | */ |
Linus Lüssing | 1d8ab8d | 2014-02-15 17:47:52 +0100 | [diff] [blame] | 42 | BATADV_FORW_SINGLE, |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 43 | |
| 44 | /** @BATADV_FORW_NONE: don't forward, drop it */ |
Linus Lüssing | 1d8ab8d | 2014-02-15 17:47:52 +0100 | [diff] [blame] | 45 | BATADV_FORW_NONE, |
| 46 | }; |
| 47 | |
Linus Lüssing | c5caf4e | 2014-02-15 17:47:49 +0100 | [diff] [blame] | 48 | #ifdef CONFIG_BATMAN_ADV_MCAST |
| 49 | |
Linus Lüssing | 1d8ab8d | 2014-02-15 17:47:52 +0100 | [diff] [blame] | 50 | enum batadv_forw_mode |
| 51 | batadv_mcast_forw_mode(struct batadv_priv *bat_priv, struct sk_buff *skb, |
| 52 | struct batadv_orig_node **mcast_single_orig); |
| 53 | |
Linus Lüssing | 60432d7 | 2014-02-15 17:47:51 +0100 | [diff] [blame] | 54 | void batadv_mcast_init(struct batadv_priv *bat_priv); |
| 55 | |
Linus Lüssing | 4e3e823 | 2016-05-10 18:41:27 +0200 | [diff] [blame] | 56 | int batadv_mcast_flags_seq_print_text(struct seq_file *seq, void *offset); |
| 57 | |
Linus Lüssing | 53dd9a6 | 2018-03-13 11:41:13 +0100 | [diff] [blame] | 58 | int batadv_mcast_mesh_info_put(struct sk_buff *msg, |
| 59 | struct batadv_priv *bat_priv); |
| 60 | |
| 61 | int batadv_mcast_flags_dump(struct sk_buff *msg, struct netlink_callback *cb); |
| 62 | |
Linus Lüssing | c5caf4e | 2014-02-15 17:47:49 +0100 | [diff] [blame] | 63 | void batadv_mcast_free(struct batadv_priv *bat_priv); |
| 64 | |
Linus Lüssing | 60432d7 | 2014-02-15 17:47:51 +0100 | [diff] [blame] | 65 | void batadv_mcast_purge_orig(struct batadv_orig_node *orig_node); |
| 66 | |
Linus Lüssing | c5caf4e | 2014-02-15 17:47:49 +0100 | [diff] [blame] | 67 | #else |
| 68 | |
Linus Lüssing | 1d8ab8d | 2014-02-15 17:47:52 +0100 | [diff] [blame] | 69 | static inline enum batadv_forw_mode |
| 70 | batadv_mcast_forw_mode(struct batadv_priv *bat_priv, struct sk_buff *skb, |
| 71 | struct batadv_orig_node **mcast_single_orig) |
| 72 | { |
| 73 | return BATADV_FORW_ALL; |
| 74 | } |
| 75 | |
Linus Lüssing | 60432d7 | 2014-02-15 17:47:51 +0100 | [diff] [blame] | 76 | static inline int batadv_mcast_init(struct batadv_priv *bat_priv) |
| 77 | { |
| 78 | return 0; |
| 79 | } |
| 80 | |
Linus Lüssing | 53dd9a6 | 2018-03-13 11:41:13 +0100 | [diff] [blame] | 81 | static inline int |
| 82 | batadv_mcast_mesh_info_put(struct sk_buff *msg, struct batadv_priv *bat_priv) |
| 83 | { |
| 84 | return 0; |
| 85 | } |
| 86 | |
| 87 | static inline int batadv_mcast_flags_dump(struct sk_buff *msg, |
| 88 | struct netlink_callback *cb) |
| 89 | { |
| 90 | return -EOPNOTSUPP; |
| 91 | } |
| 92 | |
Linus Lüssing | c5caf4e | 2014-02-15 17:47:49 +0100 | [diff] [blame] | 93 | static inline void batadv_mcast_free(struct batadv_priv *bat_priv) |
| 94 | { |
Linus Lüssing | c5caf4e | 2014-02-15 17:47:49 +0100 | [diff] [blame] | 95 | } |
| 96 | |
Linus Lüssing | 60432d7 | 2014-02-15 17:47:51 +0100 | [diff] [blame] | 97 | static inline void batadv_mcast_purge_orig(struct batadv_orig_node *orig_node) |
| 98 | { |
Linus Lüssing | 60432d7 | 2014-02-15 17:47:51 +0100 | [diff] [blame] | 99 | } |
| 100 | |
Linus Lüssing | c5caf4e | 2014-02-15 17:47:49 +0100 | [diff] [blame] | 101 | #endif /* CONFIG_BATMAN_ADV_MCAST */ |
| 102 | |
| 103 | #endif /* _NET_BATMAN_ADV_MULTICAST_H_ */ |