blob: a76724d369bfda14a772b56af2bff2b9cb836e80 [file] [log] [blame]
Sven Eckelmann0046b042016-01-01 00:01:03 +01001/* Copyright (C) 2007-2016 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002 *
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 Quartulliebf38fb2013-11-03 20:40:48 +010015 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000016 */
17
18#ifndef _NET_BATMAN_ADV_HARD_INTERFACE_H_
19#define _NET_BATMAN_ADV_HARD_INTERFACE_H_
20
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020021#include "main.h"
22
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020023#include <linux/compiler.h>
Sven Eckelmann7a659d52016-01-16 10:29:54 +010024#include <linux/kref.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020025#include <linux/notifier.h>
26#include <linux/rcupdate.h>
27#include <linux/stddef.h>
28#include <linux/types.h>
29
30struct net_device;
Andrew Lunn2cd45a02016-04-21 12:57:27 +020031struct net;
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020032
Sven Eckelmanne9a4f292012-06-03 22:19:19 +020033enum 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 Eckelmanne8958db2011-06-04 11:26:00 +020040};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000041
Sven Eckelmanna15fd362013-02-11 17:10:24 +080042/**
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 */
47enum batadv_hard_if_cleanup {
48 BATADV_IF_CLEANUP_KEEP,
49 BATADV_IF_CLEANUP_AUTO,
50};
51
Sven Eckelmann95638772012-05-12 02:09:31 +020052extern struct notifier_block batadv_hard_if_notifier;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000053
Antonio Quartulli0c69aec2013-10-13 02:50:18 +020054bool batadv_is_wifi_netdev(struct net_device *net_device);
Simon Wunderlichc0398762013-11-13 19:14:48 +010055bool batadv_is_wifi_iface(int ifindex);
Sven Eckelmann56303d32012-06-05 22:31:31 +020056struct batadv_hard_iface*
Sven Eckelmann95638772012-05-12 02:09:31 +020057batadv_hardif_get_by_netdev(const struct net_device *net_dev);
Sven Eckelmann56303d32012-06-05 22:31:31 +020058int batadv_hardif_enable_interface(struct batadv_hard_iface *hard_iface,
Andrew Lunn2cd45a02016-04-21 12:57:27 +020059 struct net *net, const char *iface_name);
Sven Eckelmanna15fd362013-02-11 17:10:24 +080060void batadv_hardif_disable_interface(struct batadv_hard_iface *hard_iface,
61 enum batadv_hard_if_cleanup autodel);
Sven Eckelmann95638772012-05-12 02:09:31 +020062void batadv_hardif_remove_interfaces(void);
63int batadv_hardif_min_mtu(struct net_device *soft_iface);
64void batadv_update_min_mtu(struct net_device *soft_iface);
Sven Eckelmann7a659d52016-01-16 10:29:54 +010065void batadv_hardif_release(struct kref *ref);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000066
Simon Wunderlich89652332013-11-13 19:14:46 +010067/**
Sven Eckelmann82047ad2016-01-17 11:01:10 +010068 * batadv_hardif_put - decrement the hard interface refcounter and possibly
Sven Eckelmann7a659d52016-01-16 10:29:54 +010069 * release it
Simon Wunderlich89652332013-11-13 19:14:46 +010070 * @hard_iface: the hard interface to free
71 */
Sven Eckelmann82047ad2016-01-17 11:01:10 +010072static inline void batadv_hardif_put(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000073{
Sven Eckelmann7a659d52016-01-16 10:29:54 +010074 kref_put(&hard_iface->refcount, batadv_hardif_release);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000075}
76
Sven Eckelmann56303d32012-06-05 22:31:31 +020077static inline struct batadv_hard_iface *
78batadv_primary_if_get_selected(struct batadv_priv *bat_priv)
Marek Lindner32ae9b22011-04-20 15:40:58 +020079{
Sven Eckelmann56303d32012-06-05 22:31:31 +020080 struct batadv_hard_iface *hard_iface;
Marek Lindner32ae9b22011-04-20 15:40:58 +020081
82 rcu_read_lock();
83 hard_iface = rcu_dereference(bat_priv->primary_if);
84 if (!hard_iface)
85 goto out;
86
Sven Eckelmann7a659d52016-01-16 10:29:54 +010087 if (!kref_get_unless_zero(&hard_iface->refcount))
Marek Lindner32ae9b22011-04-20 15:40:58 +020088 hard_iface = NULL;
89
90out:
91 rcu_read_unlock();
92 return hard_iface;
93}
94
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000095#endif /* _NET_BATMAN_ADV_HARD_INTERFACE_H_ */