Sven Eckelmann | 7db7d9f | 2017-11-19 15:05:11 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Sven Eckelmann | cfa55c6 | 2021-01-01 00:00:01 +0100 | [diff] [blame] | 2 | /* Copyright (C) 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 |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef _NET_BATMAN_ADV_HARD_INTERFACE_H_ |
| 8 | #define _NET_BATMAN_ADV_HARD_INTERFACE_H_ |
| 9 | |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 10 | #include "main.h" |
| 11 | |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 12 | #include <linux/compiler.h> |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 13 | #include <linux/kref.h> |
Sven Eckelmann | 68a600d | 2019-05-24 20:11:17 +0200 | [diff] [blame] | 14 | #include <linux/netdevice.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 15 | #include <linux/notifier.h> |
| 16 | #include <linux/rcupdate.h> |
| 17 | #include <linux/stddef.h> |
| 18 | #include <linux/types.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 19 | |
Sven Eckelmann | 73844a8 | 2017-12-02 19:51:51 +0100 | [diff] [blame] | 20 | /** |
| 21 | * enum batadv_hard_if_state - State of a hard interface |
| 22 | */ |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 23 | enum batadv_hard_if_state { |
Sven Eckelmann | 73844a8 | 2017-12-02 19:51:51 +0100 | [diff] [blame] | 24 | /** |
| 25 | * @BATADV_IF_NOT_IN_USE: interface is not used as slave interface of a |
| 26 | * batman-adv soft interface |
| 27 | */ |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 28 | BATADV_IF_NOT_IN_USE, |
Sven Eckelmann | 73844a8 | 2017-12-02 19:51:51 +0100 | [diff] [blame] | 29 | |
| 30 | /** |
| 31 | * @BATADV_IF_TO_BE_REMOVED: interface will be removed from soft |
| 32 | * interface |
| 33 | */ |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 34 | BATADV_IF_TO_BE_REMOVED, |
Sven Eckelmann | 73844a8 | 2017-12-02 19:51:51 +0100 | [diff] [blame] | 35 | |
| 36 | /** @BATADV_IF_INACTIVE: interface is deactivated */ |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 37 | BATADV_IF_INACTIVE, |
Sven Eckelmann | 73844a8 | 2017-12-02 19:51:51 +0100 | [diff] [blame] | 38 | |
| 39 | /** @BATADV_IF_ACTIVE: interface is used */ |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 40 | BATADV_IF_ACTIVE, |
Sven Eckelmann | 73844a8 | 2017-12-02 19:51:51 +0100 | [diff] [blame] | 41 | |
| 42 | /** @BATADV_IF_TO_BE_ACTIVATED: interface is getting activated */ |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 43 | BATADV_IF_TO_BE_ACTIVATED, |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 44 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 45 | |
Sven Eckelmann | a15fd36 | 2013-02-11 17:10:24 +0800 | [diff] [blame] | 46 | /** |
Linus Lüssing | 3111bee | 2016-08-07 12:34:19 +0200 | [diff] [blame] | 47 | * enum batadv_hard_if_bcast - broadcast avoidance options |
Linus Lüssing | 3111bee | 2016-08-07 12:34:19 +0200 | [diff] [blame] | 48 | */ |
| 49 | enum batadv_hard_if_bcast { |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 50 | /** @BATADV_HARDIF_BCAST_OK: Do broadcast on according hard interface */ |
Linus Lüssing | 3111bee | 2016-08-07 12:34:19 +0200 | [diff] [blame] | 51 | BATADV_HARDIF_BCAST_OK = 0, |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 52 | |
| 53 | /** |
| 54 | * @BATADV_HARDIF_BCAST_NORECIPIENT: Broadcast not needed, there is no |
| 55 | * recipient |
| 56 | */ |
Linus Lüssing | 3111bee | 2016-08-07 12:34:19 +0200 | [diff] [blame] | 57 | BATADV_HARDIF_BCAST_NORECIPIENT, |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 58 | |
| 59 | /** |
| 60 | * @BATADV_HARDIF_BCAST_DUPFWD: There is just the neighbor we got it |
| 61 | * from |
| 62 | */ |
Linus Lüssing | 3111bee | 2016-08-07 12:34:19 +0200 | [diff] [blame] | 63 | BATADV_HARDIF_BCAST_DUPFWD, |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 64 | |
| 65 | /** @BATADV_HARDIF_BCAST_DUPORIG: There is just the originator */ |
Linus Lüssing | 3111bee | 2016-08-07 12:34:19 +0200 | [diff] [blame] | 66 | BATADV_HARDIF_BCAST_DUPORIG, |
| 67 | }; |
| 68 | |
Sven Eckelmann | 9563877 | 2012-05-12 02:09:31 +0200 | [diff] [blame] | 69 | extern struct notifier_block batadv_hard_if_notifier; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 70 | |
Marek Lindner | 1942de1 | 2016-09-30 15:21:05 +0200 | [diff] [blame] | 71 | struct net_device *batadv_get_real_netdev(struct net_device *net_device); |
Sven Eckelmann | 10b1bbb | 2016-09-30 15:21:03 +0200 | [diff] [blame] | 72 | bool batadv_is_cfg80211_hardif(struct batadv_hard_iface *hard_iface); |
| 73 | bool batadv_is_wifi_hardif(struct batadv_hard_iface *hard_iface); |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 74 | struct batadv_hard_iface* |
Sven Eckelmann | 9563877 | 2012-05-12 02:09:31 +0200 | [diff] [blame] | 75 | batadv_hardif_get_by_netdev(const struct net_device *net_dev); |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 76 | int batadv_hardif_enable_interface(struct batadv_hard_iface *hard_iface, |
Sven Eckelmann | fa20560 | 2021-06-01 23:50:35 +0200 | [diff] [blame] | 77 | struct net_device *soft_iface); |
Sven Eckelmann | a962cb2 | 2020-08-17 14:37:13 +0200 | [diff] [blame] | 78 | void batadv_hardif_disable_interface(struct batadv_hard_iface *hard_iface); |
Sven Eckelmann | 9563877 | 2012-05-12 02:09:31 +0200 | [diff] [blame] | 79 | int batadv_hardif_min_mtu(struct net_device *soft_iface); |
| 80 | void batadv_update_min_mtu(struct net_device *soft_iface); |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 81 | void batadv_hardif_release(struct kref *ref); |
Linus Lüssing | 3111bee | 2016-08-07 12:34:19 +0200 | [diff] [blame] | 82 | int batadv_hardif_no_broadcast(struct batadv_hard_iface *if_outgoing, |
| 83 | u8 *orig_addr, u8 *orig_neigh); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 84 | |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 85 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 86 | * batadv_hardif_put() - decrement the hard interface refcounter and possibly |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 87 | * release it |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 88 | * @hard_iface: the hard interface to free |
| 89 | */ |
Sven Eckelmann | 82047ad | 2016-01-17 11:01:10 +0100 | [diff] [blame] | 90 | static inline void batadv_hardif_put(struct batadv_hard_iface *hard_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 91 | { |
Sven Eckelmann | 6340dcb | 2021-08-08 19:56:17 +0200 | [diff] [blame] | 92 | if (!hard_iface) |
| 93 | return; |
| 94 | |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 95 | kref_put(&hard_iface->refcount, batadv_hardif_release); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 96 | } |
| 97 | |
Sven Eckelmann | e57acf8 | 2017-12-02 19:51:52 +0100 | [diff] [blame] | 98 | /** |
| 99 | * batadv_primary_if_get_selected() - Get reference to primary interface |
| 100 | * @bat_priv: the bat priv with all the soft interface information |
| 101 | * |
| 102 | * Return: primary interface (with increased refcnt), otherwise NULL |
| 103 | */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 104 | static inline struct batadv_hard_iface * |
| 105 | batadv_primary_if_get_selected(struct batadv_priv *bat_priv) |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 106 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 107 | struct batadv_hard_iface *hard_iface; |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 108 | |
| 109 | rcu_read_lock(); |
| 110 | hard_iface = rcu_dereference(bat_priv->primary_if); |
| 111 | if (!hard_iface) |
| 112 | goto out; |
| 113 | |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 114 | if (!kref_get_unless_zero(&hard_iface->refcount)) |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 115 | hard_iface = NULL; |
| 116 | |
| 117 | out: |
| 118 | rcu_read_unlock(); |
| 119 | return hard_iface; |
| 120 | } |
| 121 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 122 | #endif /* _NET_BATMAN_ADV_HARD_INTERFACE_H_ */ |