blob: da173e760e775caab684d63d2a1749cb55e0b930 [file] [log] [blame]
Antonio Quartulli0b873932013-01-04 03:05:31 +01001/* Copyright (C) 2011-2013 B.A.T.M.A.N. contributors:
Simon Wunderlich23721382012-01-22 20:00:19 +01002 *
3 * 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
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA
Simon Wunderlich23721382012-01-22 20:00:19 +010018 */
19
20#ifndef _NET_BATMAN_ADV_BLA_H_
21#define _NET_BATMAN_ADV_BLA_H_
22
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010023#ifdef CONFIG_BATMAN_ADV_BLA
Antonio Quartullieb2deb62013-04-19 18:07:00 +020024int batadv_bla_rx(struct batadv_priv *bat_priv, struct sk_buff *skb,
25 unsigned short vid, bool is_bcast);
26int batadv_bla_tx(struct batadv_priv *bat_priv, struct sk_buff *skb,
27 unsigned short vid);
Sven Eckelmann08adf152012-05-12 13:38:47 +020028int batadv_bla_is_backbone_gw(struct sk_buff *skb,
Sven Eckelmann56303d32012-06-05 22:31:31 +020029 struct batadv_orig_node *orig_node, int hdr_size);
Sven Eckelmann08adf152012-05-12 13:38:47 +020030int batadv_bla_claim_table_seq_print_text(struct seq_file *seq, void *offset);
Simon Wunderlich536a23f2012-06-18 18:39:26 +020031int batadv_bla_backbone_table_seq_print_text(struct seq_file *seq,
32 void *offset);
Antonio Quartullicfd4f752013-08-07 18:28:56 +020033bool batadv_bla_is_backbone_gw_orig(struct batadv_priv *bat_priv, uint8_t *orig,
34 unsigned short vid);
Sven Eckelmann56303d32012-06-05 22:31:31 +020035int batadv_bla_check_bcast_duplist(struct batadv_priv *bat_priv,
Simon Wunderlich004e86f2012-10-18 13:47:42 +020036 struct sk_buff *skb);
Sven Eckelmann56303d32012-06-05 22:31:31 +020037void batadv_bla_update_orig_address(struct batadv_priv *bat_priv,
38 struct batadv_hard_iface *primary_if,
39 struct batadv_hard_iface *oldif);
40int batadv_bla_init(struct batadv_priv *bat_priv);
41void batadv_bla_free(struct batadv_priv *bat_priv);
Simon Wunderlich23721382012-01-22 20:00:19 +010042
Sven Eckelmann3964f722012-06-03 22:19:10 +020043#define BATADV_BLA_CRC_INIT 0
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010044#else /* ifdef CONFIG_BATMAN_ADV_BLA */
45
Sven Eckelmann56303d32012-06-05 22:31:31 +020046static inline int batadv_bla_rx(struct batadv_priv *bat_priv,
Antonio Quartullieb2deb62013-04-19 18:07:00 +020047 struct sk_buff *skb, unsigned short vid,
48 bool is_bcast)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010049{
50 return 0;
51}
52
Sven Eckelmann56303d32012-06-05 22:31:31 +020053static inline int batadv_bla_tx(struct batadv_priv *bat_priv,
Antonio Quartullieb2deb62013-04-19 18:07:00 +020054 struct sk_buff *skb, unsigned short vid)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010055{
56 return 0;
57}
58
Sven Eckelmann08adf152012-05-12 13:38:47 +020059static inline int batadv_bla_is_backbone_gw(struct sk_buff *skb,
Sven Eckelmann56303d32012-06-05 22:31:31 +020060 struct batadv_orig_node *orig_node,
Sven Eckelmann08adf152012-05-12 13:38:47 +020061 int hdr_size)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010062{
63 return 0;
64}
65
Sven Eckelmann08adf152012-05-12 13:38:47 +020066static inline int batadv_bla_claim_table_seq_print_text(struct seq_file *seq,
67 void *offset)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010068{
69 return 0;
70}
71
Simon Wunderlich536a23f2012-06-18 18:39:26 +020072static inline int batadv_bla_backbone_table_seq_print_text(struct seq_file *seq,
73 void *offset)
74{
75 return 0;
76}
77
Antonio Quartullicfd4f752013-08-07 18:28:56 +020078static inline bool batadv_bla_is_backbone_gw_orig(struct batadv_priv *bat_priv,
79 uint8_t *orig,
80 unsigned short vid)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010081{
Antonio Quartullicfd4f752013-08-07 18:28:56 +020082 return false;
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010083}
84
Sven Eckelmann08adf152012-05-12 13:38:47 +020085static inline int
Sven Eckelmann56303d32012-06-05 22:31:31 +020086batadv_bla_check_bcast_duplist(struct batadv_priv *bat_priv,
Simon Wunderlich004e86f2012-10-18 13:47:42 +020087 struct sk_buff *skb)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010088{
89 return 0;
90}
91
Sven Eckelmann08adf152012-05-12 13:38:47 +020092static inline void
Sven Eckelmann56303d32012-06-05 22:31:31 +020093batadv_bla_update_orig_address(struct batadv_priv *bat_priv,
94 struct batadv_hard_iface *primary_if,
95 struct batadv_hard_iface *oldif)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010096{
97}
98
Sven Eckelmann56303d32012-06-05 22:31:31 +020099static inline int batadv_bla_init(struct batadv_priv *bat_priv)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +0100100{
101 return 1;
102}
103
Sven Eckelmann56303d32012-06-05 22:31:31 +0200104static inline void batadv_bla_free(struct batadv_priv *bat_priv)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +0100105{
106}
107
108#endif /* ifdef CONFIG_BATMAN_ADV_BLA */
Simon Wunderlich23721382012-01-22 20:00:19 +0100109
110#endif /* ifndef _NET_BATMAN_ADV_BLA_H_ */