blob: 01b6c8eafaf91322944265233946619fda673381 [file] [log] [blame]
Sven Eckelmann7db7d9f2017-11-19 15:05:11 +01001/* SPDX-License-Identifier: GPL-2.0 */
Sven Eckelmann6b1aea82018-01-01 00:00:00 +01002/* Copyright (C) 2007-2018 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00003 *
Antonio Quartulli35c133a2012-03-14 13:03:01 +01004 * Marek Lindner, Simon Wunderlich, Antonio Quartulli
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00005 *
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_TRANSLATION_TABLE_H_
20#define _NET_BATMAN_ADV_TRANSLATION_TABLE_H_
21
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020022#include "main.h"
23
24#include <linux/types.h>
25
Matthias Schifferd34f0552016-07-03 13:31:37 +020026struct netlink_callback;
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020027struct net_device;
28struct seq_file;
Matthias Schifferd34f0552016-07-03 13:31:37 +020029struct sk_buff;
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020030
Sven Eckelmann56303d32012-06-05 22:31:31 +020031int batadv_tt_init(struct batadv_priv *bat_priv);
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020032bool batadv_tt_local_add(struct net_device *soft_iface, const u8 *addr,
33 unsigned short vid, int ifindex, u32 mark);
34u16 batadv_tt_local_remove(struct batadv_priv *bat_priv,
35 const u8 *addr, unsigned short vid,
36 const char *message, bool roaming);
Sven Eckelmann08c36d32012-05-12 02:09:39 +020037int batadv_tt_local_seq_print_text(struct seq_file *seq, void *offset);
Sven Eckelmann08c36d32012-05-12 02:09:39 +020038int batadv_tt_global_seq_print_text(struct seq_file *seq, void *offset);
Matthias Schifferd34f0552016-07-03 13:31:37 +020039int batadv_tt_local_dump(struct sk_buff *msg, struct netlink_callback *cb);
40int batadv_tt_global_dump(struct sk_buff *msg, struct netlink_callback *cb);
Sven Eckelmann56303d32012-06-05 22:31:31 +020041void batadv_tt_global_del_orig(struct batadv_priv *bat_priv,
42 struct batadv_orig_node *orig_node,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020043 s32 match_vid, const char *message);
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +010044int batadv_tt_global_hash_count(struct batadv_priv *bat_priv,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020045 const u8 *addr, unsigned short vid);
Sven Eckelmann56303d32012-06-05 22:31:31 +020046struct batadv_orig_node *batadv_transtable_search(struct batadv_priv *bat_priv,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020047 const u8 *src, const u8 *addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +020048 unsigned short vid);
Sven Eckelmann56303d32012-06-05 22:31:31 +020049void batadv_tt_free(struct batadv_priv *bat_priv);
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020050bool batadv_is_my_client(struct batadv_priv *bat_priv, const u8 *addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +020051 unsigned short vid);
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020052bool batadv_is_ap_isolated(struct batadv_priv *bat_priv, u8 *src, u8 *dst,
53 unsigned short vid);
Marek Lindnere1bf0c12013-04-23 21:40:01 +080054void batadv_tt_local_commit_changes(struct batadv_priv *bat_priv);
Sven Eckelmann56303d32012-06-05 22:31:31 +020055bool batadv_tt_global_client_is_roaming(struct batadv_priv *bat_priv,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020056 u8 *addr, unsigned short vid);
Antonio Quartulli7c1fd912012-09-23 22:38:34 +020057bool batadv_tt_local_client_is_roaming(struct batadv_priv *bat_priv,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020058 u8 *addr, unsigned short vid);
Marek Lindnera19d3d82013-05-27 15:33:25 +080059void batadv_tt_local_resize_to_mtu(struct net_device *soft_iface);
Antonio Quartulli30cfd022012-07-05 23:38:29 +020060bool batadv_tt_add_temporary_global_entry(struct batadv_priv *bat_priv,
61 struct batadv_orig_node *orig_node,
Antonio Quartullic018ad32013-06-04 12:11:39 +020062 const unsigned char *addr,
63 unsigned short vid);
Antonio Quartulli42cb0be2013-11-16 12:03:52 +010064bool batadv_tt_global_is_isolated(struct batadv_priv *bat_priv,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020065 const u8 *addr, unsigned short vid);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000066
Sven Eckelmann86452f82016-06-25 16:44:06 +020067int batadv_tt_cache_init(void);
68void batadv_tt_cache_destroy(void);
69
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000070#endif /* _NET_BATMAN_ADV_TRANSLATION_TABLE_H_ */