blob: ac7311a91f9dac68157aabe7c8621a9cc179eb69 [file] [log] [blame]
Sven Eckelmann7db7d9f2017-11-19 15:05:11 +01001/* SPDX-License-Identifier: GPL-2.0 */
Sven Eckelmannac79cbb2017-01-01 00:00:00 +01002/* Copyright (C) 2007-2017 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00003 *
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 Quartulliebf38fb2013-11-03 20:40:48 +010016 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000017 */
18
19#ifndef _NET_BATMAN_ADV_HARD_INTERFACE_H_
20#define _NET_BATMAN_ADV_HARD_INTERFACE_H_
21
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020022#include "main.h"
23
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020024#include <linux/compiler.h>
Sven Eckelmann7a659d52016-01-16 10:29:54 +010025#include <linux/kref.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020026#include <linux/notifier.h>
27#include <linux/rcupdate.h>
28#include <linux/stddef.h>
29#include <linux/types.h>
30
31struct net_device;
Andrew Lunn2cd45a02016-04-21 12:57:27 +020032struct net;
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020033
Sven Eckelmanne9a4f292012-06-03 22:19:19 +020034enum batadv_hard_if_state {
35 BATADV_IF_NOT_IN_USE,
36 BATADV_IF_TO_BE_REMOVED,
37 BATADV_IF_INACTIVE,
38 BATADV_IF_ACTIVE,
39 BATADV_IF_TO_BE_ACTIVATED,
40 BATADV_IF_I_WANT_YOU,
Sven Eckelmanne8958db2011-06-04 11:26:00 +020041};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000042
Sven Eckelmanna15fd362013-02-11 17:10:24 +080043/**
Linus Lüssing3111bee2016-08-07 12:34:19 +020044 * enum batadv_hard_if_bcast - broadcast avoidance options
45 * @BATADV_HARDIF_BCAST_OK: Do broadcast on according hard interface
46 * @BATADV_HARDIF_BCAST_NORECIPIENT: Broadcast not needed, there is no recipient
47 * @BATADV_HARDIF_BCAST_DUPFWD: There is just the neighbor we got it from
48 * @BATADV_HARDIF_BCAST_DUPORIG: There is just the originator
49 */
50enum batadv_hard_if_bcast {
51 BATADV_HARDIF_BCAST_OK = 0,
52 BATADV_HARDIF_BCAST_NORECIPIENT,
53 BATADV_HARDIF_BCAST_DUPFWD,
54 BATADV_HARDIF_BCAST_DUPORIG,
55};
56
57/**
Sven Eckelmanna15fd362013-02-11 17:10:24 +080058 * enum batadv_hard_if_cleanup - Cleanup modi for soft_iface after slave removal
59 * @BATADV_IF_CLEANUP_KEEP: Don't automatically delete soft-interface
60 * @BATADV_IF_CLEANUP_AUTO: Delete soft-interface after last slave was removed
61 */
62enum batadv_hard_if_cleanup {
63 BATADV_IF_CLEANUP_KEEP,
64 BATADV_IF_CLEANUP_AUTO,
65};
66
Sven Eckelmann95638772012-05-12 02:09:31 +020067extern struct notifier_block batadv_hard_if_notifier;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000068
Marek Lindner1942de12016-09-30 15:21:05 +020069struct net_device *batadv_get_real_netdev(struct net_device *net_device);
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +020070bool batadv_is_cfg80211_hardif(struct batadv_hard_iface *hard_iface);
71bool batadv_is_wifi_hardif(struct batadv_hard_iface *hard_iface);
Sven Eckelmann56303d32012-06-05 22:31:31 +020072struct batadv_hard_iface*
Sven Eckelmann95638772012-05-12 02:09:31 +020073batadv_hardif_get_by_netdev(const struct net_device *net_dev);
Sven Eckelmann56303d32012-06-05 22:31:31 +020074int batadv_hardif_enable_interface(struct batadv_hard_iface *hard_iface,
Andrew Lunn2cd45a02016-04-21 12:57:27 +020075 struct net *net, const char *iface_name);
Sven Eckelmanna15fd362013-02-11 17:10:24 +080076void batadv_hardif_disable_interface(struct batadv_hard_iface *hard_iface,
77 enum batadv_hard_if_cleanup autodel);
Sven Eckelmann95638772012-05-12 02:09:31 +020078void batadv_hardif_remove_interfaces(void);
79int batadv_hardif_min_mtu(struct net_device *soft_iface);
80void batadv_update_min_mtu(struct net_device *soft_iface);
Sven Eckelmann7a659d52016-01-16 10:29:54 +010081void batadv_hardif_release(struct kref *ref);
Linus Lüssing3111bee2016-08-07 12:34:19 +020082int batadv_hardif_no_broadcast(struct batadv_hard_iface *if_outgoing,
83 u8 *orig_addr, u8 *orig_neigh);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000084
Simon Wunderlich89652332013-11-13 19:14:46 +010085/**
Sven Eckelmann82047ad2016-01-17 11:01:10 +010086 * batadv_hardif_put - decrement the hard interface refcounter and possibly
Sven Eckelmann7a659d52016-01-16 10:29:54 +010087 * release it
Simon Wunderlich89652332013-11-13 19:14:46 +010088 * @hard_iface: the hard interface to free
89 */
Sven Eckelmann82047ad2016-01-17 11:01:10 +010090static inline void batadv_hardif_put(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000091{
Sven Eckelmann7a659d52016-01-16 10:29:54 +010092 kref_put(&hard_iface->refcount, batadv_hardif_release);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000093}
94
Sven Eckelmann56303d32012-06-05 22:31:31 +020095static inline struct batadv_hard_iface *
96batadv_primary_if_get_selected(struct batadv_priv *bat_priv)
Marek Lindner32ae9b22011-04-20 15:40:58 +020097{
Sven Eckelmann56303d32012-06-05 22:31:31 +020098 struct batadv_hard_iface *hard_iface;
Marek Lindner32ae9b22011-04-20 15:40:58 +020099
100 rcu_read_lock();
101 hard_iface = rcu_dereference(bat_priv->primary_if);
102 if (!hard_iface)
103 goto out;
104
Sven Eckelmann7a659d52016-01-16 10:29:54 +0100105 if (!kref_get_unless_zero(&hard_iface->refcount))
Marek Lindner32ae9b22011-04-20 15:40:58 +0200106 hard_iface = NULL;
107
108out:
109 rcu_read_unlock();
110 return hard_iface;
111}
112
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000113#endif /* _NET_BATMAN_ADV_HARD_INTERFACE_H_ */