blob: 7c7e2c006bfe07d48ce81c5bfa7d08b495ce2245 [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 *
Antonio Quartulli35c133a2012-03-14 13:03:01 +01003 * Marek Lindner, Simon Wunderlich, Antonio Quartulli
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00004 *
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_TRANSLATION_TABLE_H_
19#define _NET_BATMAN_ADV_TRANSLATION_TABLE_H_
20
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020021#include "main.h"
22
23#include <linux/types.h>
24
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020025struct net_device;
26struct seq_file;
27
Sven Eckelmann56303d32012-06-05 22:31:31 +020028int batadv_tt_init(struct batadv_priv *bat_priv);
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020029bool batadv_tt_local_add(struct net_device *soft_iface, const u8 *addr,
30 unsigned short vid, int ifindex, u32 mark);
31u16 batadv_tt_local_remove(struct batadv_priv *bat_priv,
32 const u8 *addr, unsigned short vid,
33 const char *message, bool roaming);
Sven Eckelmann08c36d32012-05-12 02:09:39 +020034int batadv_tt_local_seq_print_text(struct seq_file *seq, void *offset);
Sven Eckelmann08c36d32012-05-12 02:09:39 +020035int batadv_tt_global_seq_print_text(struct seq_file *seq, void *offset);
Sven Eckelmann56303d32012-06-05 22:31:31 +020036void batadv_tt_global_del_orig(struct batadv_priv *bat_priv,
37 struct batadv_orig_node *orig_node,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020038 s32 match_vid, const char *message);
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +010039int batadv_tt_global_hash_count(struct batadv_priv *bat_priv,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020040 const u8 *addr, unsigned short vid);
Sven Eckelmann56303d32012-06-05 22:31:31 +020041struct batadv_orig_node *batadv_transtable_search(struct batadv_priv *bat_priv,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020042 const u8 *src, const u8 *addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +020043 unsigned short vid);
Sven Eckelmann56303d32012-06-05 22:31:31 +020044void batadv_tt_free(struct batadv_priv *bat_priv);
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020045bool batadv_is_my_client(struct batadv_priv *bat_priv, const u8 *addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +020046 unsigned short vid);
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020047bool batadv_is_ap_isolated(struct batadv_priv *bat_priv, u8 *src, u8 *dst,
48 unsigned short vid);
Marek Lindnere1bf0c12013-04-23 21:40:01 +080049void batadv_tt_local_commit_changes(struct batadv_priv *bat_priv);
Sven Eckelmann56303d32012-06-05 22:31:31 +020050bool batadv_tt_global_client_is_roaming(struct batadv_priv *bat_priv,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020051 u8 *addr, unsigned short vid);
Antonio Quartulli7c1fd912012-09-23 22:38:34 +020052bool batadv_tt_local_client_is_roaming(struct batadv_priv *bat_priv,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020053 u8 *addr, unsigned short vid);
Marek Lindnera19d3d82013-05-27 15:33:25 +080054void batadv_tt_local_resize_to_mtu(struct net_device *soft_iface);
Antonio Quartulli30cfd022012-07-05 23:38:29 +020055bool batadv_tt_add_temporary_global_entry(struct batadv_priv *bat_priv,
56 struct batadv_orig_node *orig_node,
Antonio Quartullic018ad32013-06-04 12:11:39 +020057 const unsigned char *addr,
58 unsigned short vid);
Antonio Quartulli42cb0be2013-11-16 12:03:52 +010059bool batadv_tt_global_is_isolated(struct batadv_priv *bat_priv,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020060 const u8 *addr, unsigned short vid);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000061
62#endif /* _NET_BATMAN_ADV_TRANSLATION_TABLE_H_ */