Sven Eckelmann | ac79cbb | 2017-01-01 00:00:00 +0100 | [diff] [blame] | 1 | /* Copyright (C) 2007-2017 B.A.T.M.A.N. contributors: |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 2 | * |
Antonio Quartulli | 35c133a | 2012-03-14 13:03:01 +0100 | [diff] [blame] | 3 | * Marek Lindner, Simon Wunderlich, Antonio Quartulli |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 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_TRANSLATION_TABLE_H_ |
| 19 | #define _NET_BATMAN_ADV_TRANSLATION_TABLE_H_ |
| 20 | |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 21 | #include "main.h" |
| 22 | |
| 23 | #include <linux/types.h> |
| 24 | |
Matthias Schiffer | d34f055 | 2016-07-03 13:31:37 +0200 | [diff] [blame] | 25 | struct netlink_callback; |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 26 | struct net_device; |
| 27 | struct seq_file; |
Matthias Schiffer | d34f055 | 2016-07-03 13:31:37 +0200 | [diff] [blame] | 28 | struct sk_buff; |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 29 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 30 | int batadv_tt_init(struct batadv_priv *bat_priv); |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 31 | bool batadv_tt_local_add(struct net_device *soft_iface, const u8 *addr, |
| 32 | unsigned short vid, int ifindex, u32 mark); |
| 33 | u16 batadv_tt_local_remove(struct batadv_priv *bat_priv, |
| 34 | const u8 *addr, unsigned short vid, |
| 35 | const char *message, bool roaming); |
Sven Eckelmann | 08c36d3 | 2012-05-12 02:09:39 +0200 | [diff] [blame] | 36 | int batadv_tt_local_seq_print_text(struct seq_file *seq, void *offset); |
Sven Eckelmann | 08c36d3 | 2012-05-12 02:09:39 +0200 | [diff] [blame] | 37 | int batadv_tt_global_seq_print_text(struct seq_file *seq, void *offset); |
Matthias Schiffer | d34f055 | 2016-07-03 13:31:37 +0200 | [diff] [blame] | 38 | int batadv_tt_local_dump(struct sk_buff *msg, struct netlink_callback *cb); |
| 39 | int batadv_tt_global_dump(struct sk_buff *msg, struct netlink_callback *cb); |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 40 | void batadv_tt_global_del_orig(struct batadv_priv *bat_priv, |
| 41 | struct batadv_orig_node *orig_node, |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 42 | s32 match_vid, const char *message); |
Linus Lüssing | 1d8ab8d | 2014-02-15 17:47:52 +0100 | [diff] [blame] | 43 | int batadv_tt_global_hash_count(struct batadv_priv *bat_priv, |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 44 | const u8 *addr, unsigned short vid); |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 45 | struct batadv_orig_node *batadv_transtable_search(struct batadv_priv *bat_priv, |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 46 | const u8 *src, const u8 *addr, |
Antonio Quartulli | c018ad3 | 2013-06-04 12:11:39 +0200 | [diff] [blame] | 47 | unsigned short vid); |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 48 | void batadv_tt_free(struct batadv_priv *bat_priv); |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 49 | bool batadv_is_my_client(struct batadv_priv *bat_priv, const u8 *addr, |
Antonio Quartulli | c018ad3 | 2013-06-04 12:11:39 +0200 | [diff] [blame] | 50 | unsigned short vid); |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 51 | bool batadv_is_ap_isolated(struct batadv_priv *bat_priv, u8 *src, u8 *dst, |
| 52 | unsigned short vid); |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 53 | void batadv_tt_local_commit_changes(struct batadv_priv *bat_priv); |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 54 | bool batadv_tt_global_client_is_roaming(struct batadv_priv *bat_priv, |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 55 | u8 *addr, unsigned short vid); |
Antonio Quartulli | 7c1fd91 | 2012-09-23 22:38:34 +0200 | [diff] [blame] | 56 | bool batadv_tt_local_client_is_roaming(struct batadv_priv *bat_priv, |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 57 | u8 *addr, unsigned short vid); |
Marek Lindner | a19d3d8 | 2013-05-27 15:33:25 +0800 | [diff] [blame] | 58 | void batadv_tt_local_resize_to_mtu(struct net_device *soft_iface); |
Antonio Quartulli | 30cfd02 | 2012-07-05 23:38:29 +0200 | [diff] [blame] | 59 | bool batadv_tt_add_temporary_global_entry(struct batadv_priv *bat_priv, |
| 60 | struct batadv_orig_node *orig_node, |
Antonio Quartulli | c018ad3 | 2013-06-04 12:11:39 +0200 | [diff] [blame] | 61 | const unsigned char *addr, |
| 62 | unsigned short vid); |
Antonio Quartulli | 42cb0be | 2013-11-16 12:03:52 +0100 | [diff] [blame] | 63 | bool batadv_tt_global_is_isolated(struct batadv_priv *bat_priv, |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 64 | const u8 *addr, unsigned short vid); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 65 | |
Sven Eckelmann | 86452f8 | 2016-06-25 16:44:06 +0200 | [diff] [blame] | 66 | int batadv_tt_cache_init(void); |
| 67 | void batadv_tt_cache_destroy(void); |
| 68 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 69 | #endif /* _NET_BATMAN_ADV_TRANSLATION_TABLE_H_ */ |