Sven Eckelmann | 7db7d9f | 2017-11-19 15:05:11 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Sven Eckelmann | 6b1aea8 | 2018-01-01 00:00:00 +0100 | [diff] [blame] | 2 | /* Copyright (C) 2007-2018 B.A.T.M.A.N. contributors: |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 3 | * |
| 4 | * Marek Lindner, Simon Wunderlich |
| 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 |
Antonio Quartulli | ebf38fb | 2013-11-03 20:40:48 +0100 | [diff] [blame] | 16 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 17 | */ |
| 18 | |
| 19 | #ifndef _NET_BATMAN_ADV_HARD_INTERFACE_H_ |
| 20 | #define _NET_BATMAN_ADV_HARD_INTERFACE_H_ |
| 21 | |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 22 | #include "main.h" |
| 23 | |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 24 | #include <linux/compiler.h> |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 25 | #include <linux/kref.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 26 | #include <linux/notifier.h> |
| 27 | #include <linux/rcupdate.h> |
| 28 | #include <linux/stddef.h> |
| 29 | #include <linux/types.h> |
| 30 | |
| 31 | struct net_device; |
Andrew Lunn | 2cd45a0 | 2016-04-21 12:57:27 +0200 | [diff] [blame] | 32 | struct net; |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 33 | |
Sven Eckelmann | 73844a8 | 2017-12-02 19:51:51 +0100 | [diff] [blame] | 34 | /** |
| 35 | * enum batadv_hard_if_state - State of a hard interface |
| 36 | */ |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 37 | enum batadv_hard_if_state { |
Sven Eckelmann | 73844a8 | 2017-12-02 19:51:51 +0100 | [diff] [blame] | 38 | /** |
| 39 | * @BATADV_IF_NOT_IN_USE: interface is not used as slave interface of a |
| 40 | * batman-adv soft interface |
| 41 | */ |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 42 | BATADV_IF_NOT_IN_USE, |
Sven Eckelmann | 73844a8 | 2017-12-02 19:51:51 +0100 | [diff] [blame] | 43 | |
| 44 | /** |
| 45 | * @BATADV_IF_TO_BE_REMOVED: interface will be removed from soft |
| 46 | * interface |
| 47 | */ |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 48 | BATADV_IF_TO_BE_REMOVED, |
Sven Eckelmann | 73844a8 | 2017-12-02 19:51:51 +0100 | [diff] [blame] | 49 | |
| 50 | /** @BATADV_IF_INACTIVE: interface is deactivated */ |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 51 | BATADV_IF_INACTIVE, |
Sven Eckelmann | 73844a8 | 2017-12-02 19:51:51 +0100 | [diff] [blame] | 52 | |
| 53 | /** @BATADV_IF_ACTIVE: interface is used */ |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 54 | BATADV_IF_ACTIVE, |
Sven Eckelmann | 73844a8 | 2017-12-02 19:51:51 +0100 | [diff] [blame] | 55 | |
| 56 | /** @BATADV_IF_TO_BE_ACTIVATED: interface is getting activated */ |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 57 | BATADV_IF_TO_BE_ACTIVATED, |
Sven Eckelmann | 73844a8 | 2017-12-02 19:51:51 +0100 | [diff] [blame] | 58 | |
| 59 | /** |
| 60 | * @BATADV_IF_I_WANT_YOU: interface is queued up (using sysfs) for being |
| 61 | * added as slave interface of a batman-adv soft interface |
| 62 | */ |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 63 | BATADV_IF_I_WANT_YOU, |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 64 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 65 | |
Sven Eckelmann | a15fd36 | 2013-02-11 17:10:24 +0800 | [diff] [blame] | 66 | /** |
Linus Lüssing | 3111bee | 2016-08-07 12:34:19 +0200 | [diff] [blame] | 67 | * enum batadv_hard_if_bcast - broadcast avoidance options |
Linus Lüssing | 3111bee | 2016-08-07 12:34:19 +0200 | [diff] [blame] | 68 | */ |
| 69 | enum batadv_hard_if_bcast { |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 70 | /** @BATADV_HARDIF_BCAST_OK: Do broadcast on according hard interface */ |
Linus Lüssing | 3111bee | 2016-08-07 12:34:19 +0200 | [diff] [blame] | 71 | BATADV_HARDIF_BCAST_OK = 0, |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 72 | |
| 73 | /** |
| 74 | * @BATADV_HARDIF_BCAST_NORECIPIENT: Broadcast not needed, there is no |
| 75 | * recipient |
| 76 | */ |
Linus Lüssing | 3111bee | 2016-08-07 12:34:19 +0200 | [diff] [blame] | 77 | BATADV_HARDIF_BCAST_NORECIPIENT, |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 78 | |
| 79 | /** |
| 80 | * @BATADV_HARDIF_BCAST_DUPFWD: There is just the neighbor we got it |
| 81 | * from |
| 82 | */ |
Linus Lüssing | 3111bee | 2016-08-07 12:34:19 +0200 | [diff] [blame] | 83 | BATADV_HARDIF_BCAST_DUPFWD, |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 84 | |
| 85 | /** @BATADV_HARDIF_BCAST_DUPORIG: There is just the originator */ |
Linus Lüssing | 3111bee | 2016-08-07 12:34:19 +0200 | [diff] [blame] | 86 | BATADV_HARDIF_BCAST_DUPORIG, |
| 87 | }; |
| 88 | |
| 89 | /** |
Sven Eckelmann | a15fd36 | 2013-02-11 17:10:24 +0800 | [diff] [blame] | 90 | * enum batadv_hard_if_cleanup - Cleanup modi for soft_iface after slave removal |
Sven Eckelmann | a15fd36 | 2013-02-11 17:10:24 +0800 | [diff] [blame] | 91 | */ |
| 92 | enum batadv_hard_if_cleanup { |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 93 | /** |
| 94 | * @BATADV_IF_CLEANUP_KEEP: Don't automatically delete soft-interface |
| 95 | */ |
Sven Eckelmann | a15fd36 | 2013-02-11 17:10:24 +0800 | [diff] [blame] | 96 | BATADV_IF_CLEANUP_KEEP, |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 97 | |
| 98 | /** |
| 99 | * @BATADV_IF_CLEANUP_AUTO: Delete soft-interface after last slave was |
| 100 | * removed |
| 101 | */ |
Sven Eckelmann | a15fd36 | 2013-02-11 17:10:24 +0800 | [diff] [blame] | 102 | BATADV_IF_CLEANUP_AUTO, |
| 103 | }; |
| 104 | |
Sven Eckelmann | 9563877 | 2012-05-12 02:09:31 +0200 | [diff] [blame] | 105 | extern struct notifier_block batadv_hard_if_notifier; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 106 | |
Marek Lindner | 1942de1 | 2016-09-30 15:21:05 +0200 | [diff] [blame] | 107 | struct net_device *batadv_get_real_netdev(struct net_device *net_device); |
Sven Eckelmann | 10b1bbb | 2016-09-30 15:21:03 +0200 | [diff] [blame] | 108 | bool batadv_is_cfg80211_hardif(struct batadv_hard_iface *hard_iface); |
| 109 | bool batadv_is_wifi_hardif(struct batadv_hard_iface *hard_iface); |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 110 | struct batadv_hard_iface* |
Sven Eckelmann | 9563877 | 2012-05-12 02:09:31 +0200 | [diff] [blame] | 111 | batadv_hardif_get_by_netdev(const struct net_device *net_dev); |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 112 | int batadv_hardif_enable_interface(struct batadv_hard_iface *hard_iface, |
Andrew Lunn | 2cd45a0 | 2016-04-21 12:57:27 +0200 | [diff] [blame] | 113 | struct net *net, const char *iface_name); |
Sven Eckelmann | a15fd36 | 2013-02-11 17:10:24 +0800 | [diff] [blame] | 114 | void batadv_hardif_disable_interface(struct batadv_hard_iface *hard_iface, |
| 115 | enum batadv_hard_if_cleanup autodel); |
Sven Eckelmann | 9563877 | 2012-05-12 02:09:31 +0200 | [diff] [blame] | 116 | void batadv_hardif_remove_interfaces(void); |
| 117 | int batadv_hardif_min_mtu(struct net_device *soft_iface); |
| 118 | void batadv_update_min_mtu(struct net_device *soft_iface); |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 119 | void batadv_hardif_release(struct kref *ref); |
Linus Lüssing | 3111bee | 2016-08-07 12:34:19 +0200 | [diff] [blame] | 120 | int batadv_hardif_no_broadcast(struct batadv_hard_iface *if_outgoing, |
| 121 | u8 *orig_addr, u8 *orig_neigh); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 122 | |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 123 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 124 | * batadv_hardif_put() - decrement the hard interface refcounter and possibly |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 125 | * release it |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 126 | * @hard_iface: the hard interface to free |
| 127 | */ |
Sven Eckelmann | 82047ad | 2016-01-17 11:01:10 +0100 | [diff] [blame] | 128 | static inline void batadv_hardif_put(struct batadv_hard_iface *hard_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 129 | { |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 130 | kref_put(&hard_iface->refcount, batadv_hardif_release); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 131 | } |
| 132 | |
Sven Eckelmann | e57acf8 | 2017-12-02 19:51:52 +0100 | [diff] [blame] | 133 | /** |
| 134 | * batadv_primary_if_get_selected() - Get reference to primary interface |
| 135 | * @bat_priv: the bat priv with all the soft interface information |
| 136 | * |
| 137 | * Return: primary interface (with increased refcnt), otherwise NULL |
| 138 | */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 139 | static inline struct batadv_hard_iface * |
| 140 | batadv_primary_if_get_selected(struct batadv_priv *bat_priv) |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 141 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 142 | struct batadv_hard_iface *hard_iface; |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 143 | |
| 144 | rcu_read_lock(); |
| 145 | hard_iface = rcu_dereference(bat_priv->primary_if); |
| 146 | if (!hard_iface) |
| 147 | goto out; |
| 148 | |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 149 | if (!kref_get_unless_zero(&hard_iface->refcount)) |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 150 | hard_iface = NULL; |
| 151 | |
| 152 | out: |
| 153 | rcu_read_unlock(); |
| 154 | return hard_iface; |
| 155 | } |
| 156 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 157 | #endif /* _NET_BATMAN_ADV_HARD_INTERFACE_H_ */ |