blob: 43c985d92c3ed66b14959f17c95903e27fd84483 [file] [log] [blame]
Simon Wunderliche19f9752014-01-04 18:04:25 +01001/* Copyright (C) 2011-2014 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
Antonio Quartulliebf38fb2013-11-03 20:40:48 +010015 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Simon Wunderlich23721382012-01-22 20:00:19 +010016 */
17
18#ifndef _NET_BATMAN_ADV_BLA_H_
19#define _NET_BATMAN_ADV_BLA_H_
20
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010021#ifdef CONFIG_BATMAN_ADV_BLA
Antonio Quartullieb2deb62013-04-19 18:07:00 +020022int batadv_bla_rx(struct batadv_priv *bat_priv, struct sk_buff *skb,
23 unsigned short vid, bool is_bcast);
24int batadv_bla_tx(struct batadv_priv *bat_priv, struct sk_buff *skb,
25 unsigned short vid);
Sven Eckelmann08adf152012-05-12 13:38:47 +020026int batadv_bla_is_backbone_gw(struct sk_buff *skb,
Sven Eckelmann56303d32012-06-05 22:31:31 +020027 struct batadv_orig_node *orig_node, int hdr_size);
Sven Eckelmann08adf152012-05-12 13:38:47 +020028int batadv_bla_claim_table_seq_print_text(struct seq_file *seq, void *offset);
Simon Wunderlich536a23f2012-06-18 18:39:26 +020029int batadv_bla_backbone_table_seq_print_text(struct seq_file *seq,
30 void *offset);
Antonio Quartullicfd4f752013-08-07 18:28:56 +020031bool batadv_bla_is_backbone_gw_orig(struct batadv_priv *bat_priv, uint8_t *orig,
32 unsigned short vid);
Sven Eckelmann56303d32012-06-05 22:31:31 +020033int batadv_bla_check_bcast_duplist(struct batadv_priv *bat_priv,
Simon Wunderlich004e86f2012-10-18 13:47:42 +020034 struct sk_buff *skb);
Sven Eckelmann56303d32012-06-05 22:31:31 +020035void batadv_bla_update_orig_address(struct batadv_priv *bat_priv,
36 struct batadv_hard_iface *primary_if,
37 struct batadv_hard_iface *oldif);
38int batadv_bla_init(struct batadv_priv *bat_priv);
39void batadv_bla_free(struct batadv_priv *bat_priv);
Simon Wunderlich23721382012-01-22 20:00:19 +010040
Sven Eckelmann3964f722012-06-03 22:19:10 +020041#define BATADV_BLA_CRC_INIT 0
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010042#else /* ifdef CONFIG_BATMAN_ADV_BLA */
43
Sven Eckelmann56303d32012-06-05 22:31:31 +020044static inline int batadv_bla_rx(struct batadv_priv *bat_priv,
Antonio Quartullieb2deb62013-04-19 18:07:00 +020045 struct sk_buff *skb, unsigned short vid,
46 bool is_bcast)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010047{
48 return 0;
49}
50
Sven Eckelmann56303d32012-06-05 22:31:31 +020051static inline int batadv_bla_tx(struct batadv_priv *bat_priv,
Antonio Quartullieb2deb62013-04-19 18:07:00 +020052 struct sk_buff *skb, unsigned short vid)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010053{
54 return 0;
55}
56
Sven Eckelmann08adf152012-05-12 13:38:47 +020057static inline int batadv_bla_is_backbone_gw(struct sk_buff *skb,
Sven Eckelmann56303d32012-06-05 22:31:31 +020058 struct batadv_orig_node *orig_node,
Sven Eckelmann08adf152012-05-12 13:38:47 +020059 int hdr_size)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010060{
61 return 0;
62}
63
Sven Eckelmann08adf152012-05-12 13:38:47 +020064static inline int batadv_bla_claim_table_seq_print_text(struct seq_file *seq,
65 void *offset)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010066{
67 return 0;
68}
69
Simon Wunderlich536a23f2012-06-18 18:39:26 +020070static inline int batadv_bla_backbone_table_seq_print_text(struct seq_file *seq,
71 void *offset)
72{
73 return 0;
74}
75
Antonio Quartullicfd4f752013-08-07 18:28:56 +020076static inline bool batadv_bla_is_backbone_gw_orig(struct batadv_priv *bat_priv,
77 uint8_t *orig,
78 unsigned short vid)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010079{
Antonio Quartullicfd4f752013-08-07 18:28:56 +020080 return false;
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010081}
82
Sven Eckelmann08adf152012-05-12 13:38:47 +020083static inline int
Sven Eckelmann56303d32012-06-05 22:31:31 +020084batadv_bla_check_bcast_duplist(struct batadv_priv *bat_priv,
Simon Wunderlich004e86f2012-10-18 13:47:42 +020085 struct sk_buff *skb)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010086{
87 return 0;
88}
89
Sven Eckelmann08adf152012-05-12 13:38:47 +020090static inline void
Sven Eckelmann56303d32012-06-05 22:31:31 +020091batadv_bla_update_orig_address(struct batadv_priv *bat_priv,
92 struct batadv_hard_iface *primary_if,
93 struct batadv_hard_iface *oldif)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010094{
95}
96
Sven Eckelmann56303d32012-06-05 22:31:31 +020097static inline int batadv_bla_init(struct batadv_priv *bat_priv)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010098{
99 return 1;
100}
101
Sven Eckelmann56303d32012-06-05 22:31:31 +0200102static inline void batadv_bla_free(struct batadv_priv *bat_priv)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +0100103{
104}
105
106#endif /* ifdef CONFIG_BATMAN_ADV_BLA */
Simon Wunderlich23721382012-01-22 20:00:19 +0100107
108#endif /* ifndef _NET_BATMAN_ADV_BLA_H_ */