Sven Eckelmann | 0046b04 | 2016-01-01 00:01:03 +0100 | [diff] [blame] | 1 | /* Copyright (C) 2007-2016 B.A.T.M.A.N. contributors: |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 2 | * |
| 3 | * Marek Lindner, Simon Wunderlich |
| 4 | * |
| 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. |
| 8 | * |
| 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. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
Antonio Quartulli | ebf38fb | 2013-11-03 20:40:48 +0100 | [diff] [blame] | 15 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 16 | */ |
| 17 | |
| 18 | #ifndef _NET_BATMAN_ADV_HARD_INTERFACE_H_ |
| 19 | #define _NET_BATMAN_ADV_HARD_INTERFACE_H_ |
| 20 | |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 21 | #include "main.h" |
| 22 | |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 23 | #include <linux/compiler.h> |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 24 | #include <linux/kref.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 25 | #include <linux/notifier.h> |
| 26 | #include <linux/rcupdate.h> |
| 27 | #include <linux/stddef.h> |
| 28 | #include <linux/types.h> |
| 29 | |
| 30 | struct net_device; |
Andrew Lunn | 2cd45a0 | 2016-04-21 12:57:27 +0200 | [diff] [blame] | 31 | struct net; |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 32 | |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 33 | enum batadv_hard_if_state { |
| 34 | BATADV_IF_NOT_IN_USE, |
| 35 | BATADV_IF_TO_BE_REMOVED, |
| 36 | BATADV_IF_INACTIVE, |
| 37 | BATADV_IF_ACTIVE, |
| 38 | BATADV_IF_TO_BE_ACTIVATED, |
| 39 | BATADV_IF_I_WANT_YOU, |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 40 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 41 | |
Sven Eckelmann | a15fd36 | 2013-02-11 17:10:24 +0800 | [diff] [blame] | 42 | /** |
| 43 | * enum batadv_hard_if_cleanup - Cleanup modi for soft_iface after slave removal |
| 44 | * @BATADV_IF_CLEANUP_KEEP: Don't automatically delete soft-interface |
| 45 | * @BATADV_IF_CLEANUP_AUTO: Delete soft-interface after last slave was removed |
| 46 | */ |
| 47 | enum batadv_hard_if_cleanup { |
| 48 | BATADV_IF_CLEANUP_KEEP, |
| 49 | BATADV_IF_CLEANUP_AUTO, |
| 50 | }; |
| 51 | |
Sven Eckelmann | 9563877 | 2012-05-12 02:09:31 +0200 | [diff] [blame] | 52 | extern struct notifier_block batadv_hard_if_notifier; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 53 | |
Antonio Quartulli | 0c69aec | 2013-10-13 02:50:18 +0200 | [diff] [blame] | 54 | bool batadv_is_wifi_netdev(struct net_device *net_device); |
Simon Wunderlich | c039876 | 2013-11-13 19:14:48 +0100 | [diff] [blame] | 55 | bool batadv_is_wifi_iface(int ifindex); |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 56 | struct batadv_hard_iface* |
Sven Eckelmann | 9563877 | 2012-05-12 02:09:31 +0200 | [diff] [blame] | 57 | batadv_hardif_get_by_netdev(const struct net_device *net_dev); |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 58 | int batadv_hardif_enable_interface(struct batadv_hard_iface *hard_iface, |
Andrew Lunn | 2cd45a0 | 2016-04-21 12:57:27 +0200 | [diff] [blame] | 59 | struct net *net, const char *iface_name); |
Sven Eckelmann | a15fd36 | 2013-02-11 17:10:24 +0800 | [diff] [blame] | 60 | void batadv_hardif_disable_interface(struct batadv_hard_iface *hard_iface, |
| 61 | enum batadv_hard_if_cleanup autodel); |
Sven Eckelmann | 9563877 | 2012-05-12 02:09:31 +0200 | [diff] [blame] | 62 | void batadv_hardif_remove_interfaces(void); |
| 63 | int batadv_hardif_min_mtu(struct net_device *soft_iface); |
| 64 | void batadv_update_min_mtu(struct net_device *soft_iface); |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 65 | void batadv_hardif_release(struct kref *ref); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 66 | |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 67 | /** |
Sven Eckelmann | 82047ad | 2016-01-17 11:01:10 +0100 | [diff] [blame] | 68 | * batadv_hardif_put - decrement the hard interface refcounter and possibly |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 69 | * release it |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 70 | * @hard_iface: the hard interface to free |
| 71 | */ |
Sven Eckelmann | 82047ad | 2016-01-17 11:01:10 +0100 | [diff] [blame] | 72 | static inline void batadv_hardif_put(struct batadv_hard_iface *hard_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 73 | { |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 74 | kref_put(&hard_iface->refcount, batadv_hardif_release); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 75 | } |
| 76 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 77 | static inline struct batadv_hard_iface * |
| 78 | batadv_primary_if_get_selected(struct batadv_priv *bat_priv) |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 79 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 80 | struct batadv_hard_iface *hard_iface; |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 81 | |
| 82 | rcu_read_lock(); |
| 83 | hard_iface = rcu_dereference(bat_priv->primary_if); |
| 84 | if (!hard_iface) |
| 85 | goto out; |
| 86 | |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 87 | if (!kref_get_unless_zero(&hard_iface->refcount)) |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 88 | hard_iface = NULL; |
| 89 | |
| 90 | out: |
| 91 | rcu_read_unlock(); |
| 92 | return hard_iface; |
| 93 | } |
| 94 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 95 | #endif /* _NET_BATMAN_ADV_HARD_INTERFACE_H_ */ |