blob: 03197f5ebf6ce05d35195dcbf5c3333a77f27855 [file] [log] [blame]
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001/* Copyright (C) 2007-2012 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002 *
3 * Marek Lindner, 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
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000018 */
19
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000020#ifndef _NET_BATMAN_ADV_TYPES_H_
21#define _NET_BATMAN_ADV_TYPES_H_
22
23#include "packet.h"
24#include "bitarray.h"
Sven Eckelmannc11fdfa2012-06-03 22:19:14 +020025#include <linux/kernel.h>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000026
Marek Lindner88a32c92012-12-25 21:45:12 +080027/**
28 * Maximum overhead for the encapsulation for a payload packet
29 */
Sven Eckelmannc11fdfa2012-06-03 22:19:14 +020030#define BATADV_HEADER_LEN \
Sven Eckelmann96412692012-06-05 22:31:30 +020031 (ETH_HLEN + max(sizeof(struct batadv_unicast_packet), \
32 sizeof(struct batadv_bcast_packet)))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000033
Antonio Quartulli17224472011-11-06 12:23:55 +010034#ifdef CONFIG_BATMAN_ADV_DAT
35
Antonio Quartulli785ea112011-11-23 11:35:44 +010036/* batadv_dat_addr_t is the type used for all DHT addresses. If it is changed,
37 * BATADV_DAT_ADDR_MAX is changed as well.
38 *
39 * *Please be careful: batadv_dat_addr_t must be UNSIGNED*
40 */
41#define batadv_dat_addr_t uint16_t
42
Antonio Quartulli17224472011-11-06 12:23:55 +010043#endif /* CONFIG_BATMAN_ADV_DAT */
44
Marek Lindner14511512012-08-02 17:20:26 +020045/**
46 * struct batadv_hard_iface_bat_iv - per hard interface B.A.T.M.A.N. IV data
47 * @ogm_buff: buffer holding the OGM packet
48 * @ogm_buff_len: length of the OGM packet buffer
49 * @ogm_seqno: OGM sequence number - used to identify each OGM
50 */
51struct batadv_hard_iface_bat_iv {
52 unsigned char *ogm_buff;
53 int ogm_buff_len;
54 atomic_t ogm_seqno;
55};
56
Marek Lindner88a32c92012-12-25 21:45:12 +080057/**
58 * struct batadv_hard_iface - network device known to batman-adv
59 * @list: list node for batadv_hardif_list
60 * @if_num: identificator of the interface
61 * @if_status: status of the interface for batman-adv
62 * @net_dev: pointer to the net_device
63 * @frag_seqno: last fragment sequence number sent by this interface
64 * @hardif_obj: kobject of the per interface sysfs "mesh" directory
65 * @refcount: number of contexts the object is used
66 * @batman_adv_ptype: packet type describing packets that should be processed by
67 * batman-adv for this interface
68 * @soft_iface: the batman-adv interface which uses this network interface
69 * @rcu: struct used for freeing in an RCU-safe manner
70 * @bat_iv: BATMAN IV specific per hard interface data
71 */
Sven Eckelmann56303d32012-06-05 22:31:31 +020072struct batadv_hard_iface {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000073 struct list_head list;
74 int16_t if_num;
75 char if_status;
76 struct net_device *net_dev;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000077 atomic_t frag_seqno;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000078 struct kobject *hardif_obj;
Marek Lindnered75ccb2011-02-10 14:33:51 +000079 atomic_t refcount;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000080 struct packet_type batman_adv_ptype;
81 struct net_device *soft_iface;
82 struct rcu_head rcu;
Marek Lindner14511512012-08-02 17:20:26 +020083 struct batadv_hard_iface_bat_iv bat_iv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000084};
85
Ben Hutchings2c530402012-07-10 10:55:09 +000086/**
Marek Lindnerb6d0ab72012-12-25 17:03:19 +080087 * struct batadv_orig_node - structure for orig_list maintaining nodes of mesh
Marek Lindner88a32c92012-12-25 21:45:12 +080088 * @orig: originator ethernet address
Marek Lindnerb6d0ab72012-12-25 17:03:19 +080089 * @primary_addr: hosts primary interface address
Marek Lindner88a32c92012-12-25 21:45:12 +080090 * @router: router that should be used to reach this originator
91 * @batadv_dat_addr_t: address of the orig node in the distributed hash
92 * @bcast_own: bitfield containing the number of our OGMs this orig_node
93 * rebroadcasted "back" to us (relative to last_real_seqno)
94 * @bcast_own_sum: counted result of bcast_own
95 * @last_seen: time when last packet from this node was received
Marek Lindnerb6d0ab72012-12-25 17:03:19 +080096 * @bcast_seqno_reset: time when the broadcast seqno window was reset
97 * @batman_seqno_reset: time when the batman seqno window was reset
98 * @gw_flags: flags related to gateway class
99 * @flags: for now only VIS_SERVER flag
Marek Lindner88a32c92012-12-25 21:45:12 +0800100 * @last_ttvn: last seen translation table version number
101 * @tt_crc: CRC of the translation table
102 * @tt_buff: last tt changeset this node received from the orig node
103 * @tt_buff_len: length of the last tt changeset this node received from the
104 * orig node
105 * @tt_buff_lock: lock that protects tt_buff and tt_buff_len
106 * @tt_size: number of global TT entries announced by the orig node
107 * @tt_initialised: bool keeping track of whether or not this node have received
108 * any translation table information from the orig node yet
Marek Lindnerb6d0ab72012-12-25 17:03:19 +0800109 * @last_real_seqno: last and best known sequence number
110 * @last_ttl: ttl of last received packet
Marek Lindner88a32c92012-12-25 21:45:12 +0800111 * @bcast_bits: bitfield containing the info which payload broadcast originated
112 * from this orig node this host already has seen (relative to
113 * last_bcast_seqno)
Marek Lindnerb6d0ab72012-12-25 17:03:19 +0800114 * @last_bcast_seqno: last broadcast sequence number received by this host
Marek Lindner88a32c92012-12-25 21:45:12 +0800115 * @neigh_list: list of potential next hop neighbor towards this orig node
116 * @frag_list: fragmentation buffer list for fragment re-assembly
117 * @last_frag_packet: time when last fragmented packet from this node was
118 * received
119 * @neigh_list_lock: lock protecting neigh_list, router and bonding_list
120 * @hash_entry: hlist node for batadv_priv::orig_hash
121 * @bat_priv: pointer to soft_iface this orig node belongs to
122 * @ogm_cnt_lock: lock protecting bcast_own, bcast_own_sum,
123 * neigh_node->real_bits & neigh_node->real_packet_count
124 * @bcast_seqno_lock: lock protecting bcast_bits & last_bcast_seqno
125 * @bond_candidates: how many candidates are available
126 * @bond_list: list of bonding candidates
127 * @refcount: number of contexts the object is used
128 * @rcu: struct used for freeing in an RCU-safe manner
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000129 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200130struct batadv_orig_node {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000131 uint8_t orig[ETH_ALEN];
132 uint8_t primary_addr[ETH_ALEN];
Sven Eckelmann56303d32012-06-05 22:31:31 +0200133 struct batadv_neigh_node __rcu *router; /* rcu protected pointer */
Antonio Quartulli17224472011-11-06 12:23:55 +0100134#ifdef CONFIG_BATMAN_ADV_DAT
Antonio Quartulli785ea112011-11-23 11:35:44 +0100135 batadv_dat_addr_t dat_addr;
Antonio Quartulli17224472011-11-06 12:23:55 +0100136#endif
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000137 unsigned long *bcast_own;
138 uint8_t *bcast_own_sum;
Marek Lindnerd7b2a972012-03-01 15:35:19 +0800139 unsigned long last_seen;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000140 unsigned long bcast_seqno_reset;
141 unsigned long batman_seqno_reset;
142 uint8_t gw_flags;
143 uint8_t flags;
Marek Lindner88a32c92012-12-25 21:45:12 +0800144 atomic_t last_ttvn;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200145 uint16_t tt_crc;
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200146 unsigned char *tt_buff;
147 int16_t tt_buff_len;
Marek Lindner88a32c92012-12-25 21:45:12 +0800148 spinlock_t tt_buff_lock; /* protects tt_buff & tt_buff_len */
Antonio Quartullia73105b2011-04-27 14:27:44 +0200149 atomic_t tt_size;
Antonio Quartulli17071572011-11-07 16:36:40 +0100150 bool tt_initialised;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000151 uint32_t last_real_seqno;
152 uint8_t last_ttl;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200153 DECLARE_BITMAP(bcast_bits, BATADV_TQ_LOCAL_WINDOW_SIZE);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000154 uint32_t last_bcast_seqno;
Marek Lindner9591a792010-12-12 21:57:11 +0000155 struct hlist_head neigh_list;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000156 struct list_head frag_list;
Marek Lindner88a32c92012-12-25 21:45:12 +0800157 unsigned long last_frag_packet;
158 /* neigh_list_lock protects: neigh_list, router & bonding_list */
159 spinlock_t neigh_list_lock;
Marek Lindner7aadf882011-02-18 12:28:09 +0000160 struct hlist_node hash_entry;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200161 struct batadv_priv *bat_priv;
Sven Eckelmann6e215fd2011-05-08 12:45:45 +0200162 /* ogm_cnt_lock protects: bcast_own, bcast_own_sum,
Marek Lindner88a32c92012-12-25 21:45:12 +0800163 * neigh_node->real_bits & neigh_node->real_packet_count
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200164 */
Sven Eckelmann6e215fd2011-05-08 12:45:45 +0200165 spinlock_t ogm_cnt_lock;
Marek Lindner88a32c92012-12-25 21:45:12 +0800166 /* bcast_seqno_lock protects: bcast_bits & last_bcast_seqno */
Sven Eckelmann6e215fd2011-05-08 12:45:45 +0200167 spinlock_t bcast_seqno_lock;
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000168 atomic_t bond_candidates;
169 struct list_head bond_list;
Marek Lindner88a32c92012-12-25 21:45:12 +0800170 atomic_t refcount;
171 struct rcu_head rcu;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000172};
173
Marek Lindner88a32c92012-12-25 21:45:12 +0800174/**
175 * struct batadv_gw_node - structure for orig nodes announcing gw capabilities
176 * @list: list node for batadv_priv_gw::list
177 * @orig_node: pointer to corresponding orig node
178 * @deleted: this struct is scheduled for deletion
179 * @refcount: number of contexts the object is used
180 * @rcu: struct used for freeing in an RCU-safe manner
181 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200182struct batadv_gw_node {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000183 struct hlist_node list;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200184 struct batadv_orig_node *orig_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000185 unsigned long deleted;
Marek Lindner25b6d3c2011-02-10 14:33:49 +0000186 atomic_t refcount;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000187 struct rcu_head rcu;
188};
189
Marek Lindner88a32c92012-12-25 21:45:12 +0800190/**
191 * struct batadv_neigh_node - structure for single hop neighbors
192 * @list: list node for batadv_orig_node::neigh_list
193 * @addr: mac address of neigh node
194 * @tq_recv: ring buffer of received TQ values from this neigh node
195 * @tq_index: ring buffer index
196 * @tq_avg: averaged tq of all tq values in the ring buffer (tq_recv)
197 * @last_ttl: last received ttl from this neigh node
198 * @bonding_list: list node for batadv_orig_node::bond_list
199 * @last_seen: when last packet via this neighbor was received
200 * @real_bits: bitfield containing the number of OGMs received from this neigh
201 * node (relative to orig_node->last_real_seqno)
202 * @real_packet_count: counted result of real_bits
203 * @orig_node: pointer to corresponding orig_node
204 * @if_incoming: pointer to incoming hard interface
205 * @lq_update_lock: lock protecting tq_recv & tq_index
206 * @refcount: number of contexts the object is used
207 * @rcu: struct used for freeing in an RCU-safe manner
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000208 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200209struct batadv_neigh_node {
Marek Lindner9591a792010-12-12 21:57:11 +0000210 struct hlist_node list;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000211 uint8_t addr[ETH_ALEN];
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200212 uint8_t tq_recv[BATADV_TQ_GLOBAL_WINDOW_SIZE];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000213 uint8_t tq_index;
214 uint8_t tq_avg;
215 uint8_t last_ttl;
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000216 struct list_head bonding_list;
Marek Lindnerd7b2a972012-03-01 15:35:19 +0800217 unsigned long last_seen;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200218 DECLARE_BITMAP(real_bits, BATADV_TQ_LOCAL_WINDOW_SIZE);
Marek Lindner88a32c92012-12-25 21:45:12 +0800219 uint8_t real_packet_count;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200220 struct batadv_orig_node *orig_node;
221 struct batadv_hard_iface *if_incoming;
Marek Lindner88a32c92012-12-25 21:45:12 +0800222 spinlock_t lq_update_lock; /* protects tq_recv & tq_index */
223 atomic_t refcount;
224 struct rcu_head rcu;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000225};
226
Marek Lindner88a32c92012-12-25 21:45:12 +0800227/**
228 * struct batadv_bcast_duplist_entry - structure for LAN broadcast suppression
229 * @orig[ETH_ALEN]: mac address of orig node orginating the broadcast
230 * @crc: crc32 checksum of broadcast payload
231 * @entrytime: time when the broadcast packet was received
232 */
Simon Wunderlich7a5cc242012-01-22 20:00:27 +0100233#ifdef CONFIG_BATMAN_ADV_BLA
Sven Eckelmann56303d32012-06-05 22:31:31 +0200234struct batadv_bcast_duplist_entry {
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +0100235 uint8_t orig[ETH_ALEN];
Simon Wunderlich004e86f2012-10-18 13:47:42 +0200236 __be32 crc;
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +0100237 unsigned long entrytime;
238};
Simon Wunderlich7a5cc242012-01-22 20:00:27 +0100239#endif
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000240
Marek Lindner88a32c92012-12-25 21:45:12 +0800241/**
242 * enum batadv_counters - indices for traffic counters
243 * @BATADV_CNT_TX: transmitted payload traffic packet counter
244 * @BATADV_CNT_TX_BYTES: transmitted payload traffic bytes counter
245 * @BATADV_CNT_TX_DROPPED: dropped transmission payload traffic packet counter
246 * @BATADV_CNT_RX: received payload traffic packet counter
247 * @BATADV_CNT_RX_BYTES: received payload traffic bytes counter
248 * @BATADV_CNT_FORWARD: forwarded payload traffic packet counter
249 * @BATADV_CNT_FORWARD_BYTES: forwarded payload traffic bytes counter
250 * @BATADV_CNT_MGMT_TX: transmitted routing protocol traffic packet counter
251 * @BATADV_CNT_MGMT_TX_BYTES: transmitted routing protocol traffic bytes counter
252 * @BATADV_CNT_MGMT_RX: received routing protocol traffic packet counter
253 * @BATADV_CNT_MGMT_RX_BYTES: received routing protocol traffic bytes counter
254 * @BATADV_CNT_TT_REQUEST_TX: transmitted tt req traffic packet counter
255 * @BATADV_CNT_TT_REQUEST_RX: received tt req traffic packet counter
256 * @BATADV_CNT_TT_RESPONSE_TX: transmitted tt resp traffic packet counter
257 * @BATADV_CNT_TT_RESPONSE_RX: received tt resp traffic packet counter
258 * @BATADV_CNT_TT_ROAM_ADV_TX: transmitted tt roam traffic packet counter
259 * @BATADV_CNT_TT_ROAM_ADV_RX: received tt roam traffic packet counter
260 * @BATADV_CNT_DAT_GET_TX: transmitted dht GET traffic packet counter
261 * @BATADV_CNT_DAT_GET_RX: received dht GET traffic packet counter
262 * @BATADV_CNT_DAT_PUT_TX: transmitted dht PUT traffic packet counter
263 * @BATADV_CNT_DAT_PUT_RX: received dht PUT traffic packet counter
264 * @BATADV_CNT_DAT_CACHED_REPLY_TX: transmitted dat cache reply traffic packet
265 * counter
266 * @BATADV_CNT_NUM: number of traffic counters
267 */
Sven Eckelmannd69909d2012-06-03 22:19:20 +0200268enum batadv_counters {
Marek Lindner1c9b0552012-06-23 11:47:53 +0200269 BATADV_CNT_TX,
270 BATADV_CNT_TX_BYTES,
271 BATADV_CNT_TX_DROPPED,
272 BATADV_CNT_RX,
273 BATADV_CNT_RX_BYTES,
Sven Eckelmannd69909d2012-06-03 22:19:20 +0200274 BATADV_CNT_FORWARD,
275 BATADV_CNT_FORWARD_BYTES,
276 BATADV_CNT_MGMT_TX,
277 BATADV_CNT_MGMT_TX_BYTES,
278 BATADV_CNT_MGMT_RX,
279 BATADV_CNT_MGMT_RX_BYTES,
280 BATADV_CNT_TT_REQUEST_TX,
281 BATADV_CNT_TT_REQUEST_RX,
282 BATADV_CNT_TT_RESPONSE_TX,
283 BATADV_CNT_TT_RESPONSE_RX,
284 BATADV_CNT_TT_ROAM_ADV_TX,
285 BATADV_CNT_TT_ROAM_ADV_RX,
Martin Hundebøll4046b242012-04-20 17:02:45 +0200286#ifdef CONFIG_BATMAN_ADV_DAT
287 BATADV_CNT_DAT_GET_TX,
288 BATADV_CNT_DAT_GET_RX,
289 BATADV_CNT_DAT_PUT_TX,
290 BATADV_CNT_DAT_PUT_RX,
291 BATADV_CNT_DAT_CACHED_REPLY_TX,
292#endif
Sven Eckelmannd69909d2012-06-03 22:19:20 +0200293 BATADV_CNT_NUM,
Martin Hundebøllf8214862012-04-20 17:02:45 +0200294};
295
Sven Eckelmann807736f2012-07-15 22:26:51 +0200296/**
297 * struct batadv_priv_tt - per mesh interface translation table data
298 * @vn: translation table version number
Marek Lindner88a32c92012-12-25 21:45:12 +0800299 * @ogm_append_cnt: counter of number of OGMs containing the local tt diff
Sven Eckelmann807736f2012-07-15 22:26:51 +0200300 * @local_changes: changes registered in an originator interval
Sven Eckelmann807736f2012-07-15 22:26:51 +0200301 * @changes_list: tracks tt local changes within an originator interval
Marek Lindner88a32c92012-12-25 21:45:12 +0800302 * @local_hash: local translation table hash table
303 * @global_hash: global translation table hash table
304 * @req_list: list of pending & unanswered tt_requests
305 * @roam_list: list of the last roaming events of each client limiting the
306 * number of roaming events to avoid route flapping
307 * @changes_list_lock: lock protecting changes_list
308 * @req_list_lock: lock protecting req_list
309 * @roam_list_lock: lock protecting roam_list
310 * @local_entry_num: number of entries in the local hash table
Sven Eckelmann807736f2012-07-15 22:26:51 +0200311 * @local_crc: Checksum of the local table, recomputed before sending a new OGM
Marek Lindner88a32c92012-12-25 21:45:12 +0800312 * @last_changeset: last tt changeset this host has generated
313 * @last_changeset_len: length of last tt changeset this host has generated
314 * @last_changeset_lock: lock protecting last_changeset & last_changeset_len
315 * @work: work queue callback item for translation table purging
Sven Eckelmann807736f2012-07-15 22:26:51 +0200316 */
317struct batadv_priv_tt {
318 atomic_t vn;
319 atomic_t ogm_append_cnt;
320 atomic_t local_changes;
Sven Eckelmann807736f2012-07-15 22:26:51 +0200321 struct list_head changes_list;
322 struct batadv_hashtable *local_hash;
323 struct batadv_hashtable *global_hash;
324 struct list_head req_list;
325 struct list_head roam_list;
326 spinlock_t changes_list_lock; /* protects changes */
327 spinlock_t req_list_lock; /* protects req_list */
328 spinlock_t roam_list_lock; /* protects roam_list */
329 atomic_t local_entry_num;
330 uint16_t local_crc;
331 unsigned char *last_changeset;
332 int16_t last_changeset_len;
Marek Lindner88a32c92012-12-25 21:45:12 +0800333 /* protects last_changeset & last_changeset_len */
334 spinlock_t last_changeset_lock;
Sven Eckelmann807736f2012-07-15 22:26:51 +0200335 struct delayed_work work;
336};
337
Marek Lindner88a32c92012-12-25 21:45:12 +0800338/**
339 * struct batadv_priv_bla - per mesh interface bridge loope avoidance data
340 * @num_requests; number of bla requests in flight
341 * @claim_hash: hash table containing mesh nodes this host has claimed
342 * @backbone_hash: hash table containing all detected backbone gateways
343 * @bcast_duplist: recently received broadcast packets array (for broadcast
344 * duplicate suppression)
345 * @bcast_duplist_curr: index of last broadcast packet added to bcast_duplist
346 * @bcast_duplist_lock: lock protecting bcast_duplist & bcast_duplist_curr
347 * @claim_dest: local claim data (e.g. claim group)
348 * @work: work queue callback item for cleanups & bla announcements
349 */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200350#ifdef CONFIG_BATMAN_ADV_BLA
351struct batadv_priv_bla {
Marek Lindner88a32c92012-12-25 21:45:12 +0800352 atomic_t num_requests;
Sven Eckelmann807736f2012-07-15 22:26:51 +0200353 struct batadv_hashtable *claim_hash;
354 struct batadv_hashtable *backbone_hash;
355 struct batadv_bcast_duplist_entry bcast_duplist[BATADV_DUPLIST_SIZE];
356 int bcast_duplist_curr;
Marek Lindner88a32c92012-12-25 21:45:12 +0800357 /* protects bcast_duplist & bcast_duplist_curr */
Linus Lüssing7dac7b72012-10-17 14:53:05 +0200358 spinlock_t bcast_duplist_lock;
Sven Eckelmann807736f2012-07-15 22:26:51 +0200359 struct batadv_bla_claim_dst claim_dest;
360 struct delayed_work work;
361};
362#endif
363
Marek Lindner88a32c92012-12-25 21:45:12 +0800364/**
365 * struct batadv_debug_log - debug logging data
366 * @log_buff: buffer holding the logs (ring bufer)
367 * @log_start: index of next character to read
368 * @log_end: index of next character to write
369 * @lock: lock protecting log_buff, log_start & log_end
370 * @queue_wait: log reader's wait queue
371 */
Marek Lindner0abf5d82012-12-25 17:03:20 +0800372#ifdef CONFIG_BATMAN_ADV_DEBUG
373struct batadv_priv_debug_log {
374 char log_buff[BATADV_LOG_BUF_LEN];
375 unsigned long log_start;
376 unsigned long log_end;
377 spinlock_t lock; /* protects log_buff, log_start and log_end */
378 wait_queue_head_t queue_wait;
379};
380#endif
381
Marek Lindner88a32c92012-12-25 21:45:12 +0800382/**
383 * struct batadv_priv_gw - per mesh interface gateway data
384 * @list: list of available gateway nodes
385 * @list_lock: lock protecting gw_list & curr_gw
386 * @curr_gw: pointer to currently selected gateway node
387 * @reselect: bool indicating a gateway re-selection is in progress
388 */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200389struct batadv_priv_gw {
390 struct hlist_head list;
Marek Lindner88a32c92012-12-25 21:45:12 +0800391 spinlock_t list_lock; /* protects gw_list & curr_gw */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200392 struct batadv_gw_node __rcu *curr_gw; /* rcu protected pointer */
393 atomic_t reselect;
394};
395
Marek Lindner88a32c92012-12-25 21:45:12 +0800396/**
397 * struct batadv_priv_vis - per mesh interface vis data
398 * @send_list: list of batadv_vis_info packets to sent
399 * @hash: hash table containing vis data from other nodes in the network
400 * @hash_lock: lock protecting the hash table
401 * @list_lock: lock protecting my_info::recv_list
402 * @work: work queue callback item for vis packet sending
403 * @my_info: holds this node's vis data sent on a regular basis
404 */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200405struct batadv_priv_vis {
406 struct list_head send_list;
407 struct batadv_hashtable *hash;
408 spinlock_t hash_lock; /* protects hash */
Marek Lindner88a32c92012-12-25 21:45:12 +0800409 spinlock_t list_lock; /* protects my_info::recv_list */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200410 struct delayed_work work;
411 struct batadv_vis_info *my_info;
412};
413
Antonio Quartulli785ea112011-11-23 11:35:44 +0100414/**
415 * struct batadv_priv_dat - per mesh interface DAT private data
416 * @addr: node DAT address
Antonio Quartulli2f1dfbe2012-06-30 20:01:19 +0200417 * @hash: hashtable representing the local ARP cache
418 * @work: work queue callback item for cache purging
Antonio Quartulli785ea112011-11-23 11:35:44 +0100419 */
Antonio Quartulli17224472011-11-06 12:23:55 +0100420#ifdef CONFIG_BATMAN_ADV_DAT
Antonio Quartulli785ea112011-11-23 11:35:44 +0100421struct batadv_priv_dat {
422 batadv_dat_addr_t addr;
Antonio Quartulli2f1dfbe2012-06-30 20:01:19 +0200423 struct batadv_hashtable *hash;
424 struct delayed_work work;
Antonio Quartulli785ea112011-11-23 11:35:44 +0100425};
Antonio Quartulli17224472011-11-06 12:23:55 +0100426#endif
Antonio Quartulli785ea112011-11-23 11:35:44 +0100427
Marek Lindner88a32c92012-12-25 21:45:12 +0800428/**
429 * struct batadv_priv - per mesh interface data
430 * @mesh_state: current status of the mesh (inactive/active/deactivating)
431 * @stats: structure holding the data for the ndo_get_stats() call
432 * @bat_counters: mesh internal traffic statistic counters (see batadv_counters)
433 * @aggregated_ogms: bool indicating whether OGM aggregation is enabled
434 * @bonding: bool indicating whether traffic bonding is enabled
435 * @fragmentation: bool indicating whether traffic fragmentation is enabled
436 * @ap_isolation: bool indicating whether ap isolation is enabled
437 * @bridge_loop_avoidance: bool indicating whether bridge loop avoidance is
438 * enabled
439 * @distributed_arp_table: bool indicating whether distributed ARP table is
440 * enabled
441 * @vis_mode: vis operation: client or server (see batadv_vis_packettype)
442 * @gw_mode: gateway operation: off, client or server (see batadv_gw_modes)
443 * @gw_sel_class: gateway selection class (applies if gw_mode client)
444 * @gw_bandwidth: gateway announced bandwidth (applies if gw_mode server)
445 * @orig_interval: OGM broadcast interval in milliseconds
446 * @hop_penalty: penalty which will be applied to an OGM's tq-field on every hop
447 * @log_level: configured log level (see batadv_dbg_level)
448 * @bcast_seqno: last sent broadcast packet sequence number
449 * @bcast_queue_left: number of remaining buffered broadcast packet slots
450 * @batman_queue_left: number of remaining OGM packet slots
451 * @num_ifaces: number of interfaces assigned to this mesh interface
452 * @mesh_obj: kobject for sysfs mesh subdirectory
453 * @debug_dir: dentry for debugfs batman-adv subdirectory
454 * @forw_bat_list: list of aggregated OGMs that will be forwarded
455 * @forw_bcast_list: list of broadcast packets that will be rebroadcasted
456 * @orig_hash: hash table containing mesh participants (orig nodes)
457 * @forw_bat_list_lock: lock protecting forw_bat_list
458 * @forw_bcast_list_lock: lock protecting forw_bcast_list
459 * @orig_work: work queue callback item for orig node purging
460 * @primary_if: one of the hard interfaces assigned to this mesh interface
461 * becomes the primary interface
462 * @bat_algo_ops: routing algorithm used by this mesh interface
463 * @bla: bridge loope avoidance data
464 * @debug_log: holding debug logging relevant data
465 * @gw: gateway data
466 * @tt: translation table data
467 * @vis: vis data
468 * @dat: distributed arp table data
469 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200470struct batadv_priv {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000471 atomic_t mesh_state;
472 struct net_device_stats stats;
Martin Hundebøllf8214862012-04-20 17:02:45 +0200473 uint64_t __percpu *bat_counters; /* Per cpu counters */
Marek Lindner88a32c92012-12-25 21:45:12 +0800474 atomic_t aggregated_ogms;
475 atomic_t bonding;
476 atomic_t fragmentation;
477 atomic_t ap_isolation;
Antonio Quartullifa706552012-11-26 01:27:29 +0100478#ifdef CONFIG_BATMAN_ADV_BLA
Marek Lindner88a32c92012-12-25 21:45:12 +0800479 atomic_t bridge_loop_avoidance;
Antonio Quartullifa706552012-11-26 01:27:29 +0100480#endif
Antonio Quartulli33af49a2012-08-08 18:50:57 +0200481#ifdef CONFIG_BATMAN_ADV_DAT
Marek Lindner88a32c92012-12-25 21:45:12 +0800482 atomic_t distributed_arp_table;
Antonio Quartulli33af49a2012-08-08 18:50:57 +0200483#endif
Marek Lindner88a32c92012-12-25 21:45:12 +0800484 atomic_t vis_mode;
485 atomic_t gw_mode;
486 atomic_t gw_sel_class;
487 atomic_t gw_bandwidth;
488 atomic_t orig_interval;
489 atomic_t hop_penalty;
Marek Lindner0c430d02012-12-16 13:53:15 +0800490#ifdef CONFIG_BATMAN_ADV_DEBUG
Marek Lindner88a32c92012-12-25 21:45:12 +0800491 atomic_t log_level;
Marek Lindner0c430d02012-12-16 13:53:15 +0800492#endif
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000493 atomic_t bcast_seqno;
494 atomic_t bcast_queue_left;
495 atomic_t batman_queue_left;
496 char num_ifaces;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000497 struct kobject *mesh_obj;
498 struct dentry *debug_dir;
499 struct hlist_head forw_bat_list;
500 struct hlist_head forw_bcast_list;
Sven Eckelmann5bf74e92012-06-05 22:31:28 +0200501 struct batadv_hashtable *orig_hash;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000502 spinlock_t forw_bat_list_lock; /* protects forw_bat_list */
Antonio Quartullia7528f82012-09-02 19:00:38 +0200503 spinlock_t forw_bcast_list_lock; /* protects forw_bcast_list */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000504 struct delayed_work orig_work;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200505 struct batadv_hard_iface __rcu *primary_if; /* rcu protected pointer */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200506 struct batadv_algo_ops *bat_algo_ops;
Sven Eckelmann807736f2012-07-15 22:26:51 +0200507#ifdef CONFIG_BATMAN_ADV_BLA
508 struct batadv_priv_bla bla;
509#endif
Marek Lindner0abf5d82012-12-25 17:03:20 +0800510#ifdef CONFIG_BATMAN_ADV_DEBUG
511 struct batadv_priv_debug_log *debug_log;
512#endif
Sven Eckelmann807736f2012-07-15 22:26:51 +0200513 struct batadv_priv_gw gw;
514 struct batadv_priv_tt tt;
515 struct batadv_priv_vis vis;
Antonio Quartulli17224472011-11-06 12:23:55 +0100516#ifdef CONFIG_BATMAN_ADV_DAT
Antonio Quartulli785ea112011-11-23 11:35:44 +0100517 struct batadv_priv_dat dat;
Antonio Quartulli17224472011-11-06 12:23:55 +0100518#endif
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000519};
520
Marek Lindner88a32c92012-12-25 21:45:12 +0800521/**
522 * struct batadv_socket_client - layer2 icmp socket client data
523 * @queue_list: packet queue for packets destined for this socket client
524 * @queue_len: number of packets in the packet queue (queue_list)
525 * @index: socket client's index in the batadv_socket_client_hash
526 * @lock: lock protecting queue_list, queue_len & index
527 * @queue_wait: socket client's wait queue
528 * @bat_priv: pointer to soft_iface this client belongs to
529 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200530struct batadv_socket_client {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000531 struct list_head queue_list;
532 unsigned int queue_len;
533 unsigned char index;
Marek Lindner88a32c92012-12-25 21:45:12 +0800534 spinlock_t lock; /* protects queue_list, queue_len & index */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000535 wait_queue_head_t queue_wait;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200536 struct batadv_priv *bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000537};
538
Marek Lindner88a32c92012-12-25 21:45:12 +0800539/**
540 * struct batadv_socket_packet - layer2 icmp packet for socket client
541 * @list: list node for batadv_socket_client::queue_list
542 * @icmp_len: size of the layer2 icmp packet
543 * @icmp_packet: layer2 icmp packet
544 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200545struct batadv_socket_packet {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000546 struct list_head list;
547 size_t icmp_len;
Sven Eckelmann96412692012-06-05 22:31:30 +0200548 struct batadv_icmp_packet_rr icmp_packet;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000549};
550
Marek Lindner88a32c92012-12-25 21:45:12 +0800551/**
552 * struct batadv_bla_backbone_gw - batman-adv gateway bridged into the LAN
553 * @orig: originator address of backbone node (mac address of primary iface)
554 * @vid: vlan id this gateway was detected on
555 * @hash_entry: hlist node for batadv_priv_bla::backbone_hash
556 * @bat_priv: pointer to soft_iface this backbone gateway belongs to
557 * @lasttime: last time we heard of this backbone gw
558 * @wait_periods: grace time for bridge forward delays and bla group forming at
559 * bootup phase - no bcast traffic is formwared until it has elapsed
560 * @request_sent: if this bool is set to true we are out of sync with this
561 * backbone gateway - no bcast traffic is formwared until the situation was
562 * resolved
563 * @crc: crc16 checksum over all claims
564 * @refcount: number of contexts the object is used
565 * @rcu: struct used for freeing in an RCU-safe manner
566 */
Marek Lindner2006fea2012-12-25 17:03:21 +0800567#ifdef CONFIG_BATMAN_ADV_BLA
Marek Lindnerbae98772012-12-25 17:03:24 +0800568struct batadv_bla_backbone_gw {
Marek Lindner2006fea2012-12-25 17:03:21 +0800569 uint8_t orig[ETH_ALEN];
Marek Lindner88a32c92012-12-25 21:45:12 +0800570 short vid;
Marek Lindner2006fea2012-12-25 17:03:21 +0800571 struct hlist_node hash_entry;
572 struct batadv_priv *bat_priv;
Marek Lindner88a32c92012-12-25 21:45:12 +0800573 unsigned long lasttime;
Marek Lindner2006fea2012-12-25 17:03:21 +0800574 atomic_t wait_periods;
575 atomic_t request_sent;
Marek Lindner88a32c92012-12-25 21:45:12 +0800576 uint16_t crc;
Marek Lindner2006fea2012-12-25 17:03:21 +0800577 atomic_t refcount;
578 struct rcu_head rcu;
Marek Lindner2006fea2012-12-25 17:03:21 +0800579};
580
Marek Lindner88a32c92012-12-25 21:45:12 +0800581/**
582 * struct batadv_bla_claim - claimed non-mesh client structure
583 * @addr: mac address of claimed non-mesh client
584 * @vid: vlan id this client was detected on
585 * @batadv_bla_backbone_gw: pointer to backbone gw claiming this client
586 * @lasttime: last time we heard of claim (locals only)
587 * @hash_entry: hlist node for batadv_priv_bla::claim_hash
588 * @refcount: number of contexts the object is used
589 * @rcu: struct used for freeing in an RCU-safe manner
590 */
Marek Lindner712bbfe42012-12-25 17:03:25 +0800591struct batadv_bla_claim {
Marek Lindner2006fea2012-12-25 17:03:21 +0800592 uint8_t addr[ETH_ALEN];
593 short vid;
Marek Lindnerbae98772012-12-25 17:03:24 +0800594 struct batadv_bla_backbone_gw *backbone_gw;
Marek Lindner88a32c92012-12-25 21:45:12 +0800595 unsigned long lasttime;
596 struct hlist_node hash_entry;
Marek Lindner2006fea2012-12-25 17:03:21 +0800597 struct rcu_head rcu;
598 atomic_t refcount;
Marek Lindner2006fea2012-12-25 17:03:21 +0800599};
600#endif
601
Marek Lindner88a32c92012-12-25 21:45:12 +0800602/**
603 * struct batadv_tt_common_entry - tt local & tt global common data
604 * @addr: mac address of non-mesh client
605 * @hash_entry: hlist node for batadv_priv_tt::local_hash or for
606 * batadv_priv_tt::global_hash
607 * @flags: various state handling flags (see batadv_tt_client_flags)
608 * @added_at: timestamp used for purging stale tt common entries
609 * @refcount: number of contexts the object is used
610 * @rcu: struct used for freeing in an RCU-safe manner
611 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200612struct batadv_tt_common_entry {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000613 uint8_t addr[ETH_ALEN];
Antonio Quartulli93840ac2011-10-22 00:55:39 +0200614 struct hlist_node hash_entry;
Antonio Quartulli5fbc1592011-06-17 16:11:27 +0200615 uint16_t flags;
Antonio Quartulli30cfd022012-07-05 23:38:29 +0200616 unsigned long added_at;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200617 atomic_t refcount;
618 struct rcu_head rcu;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000619};
620
Marek Lindner88a32c92012-12-25 21:45:12 +0800621/**
622 * struct batadv_tt_local_entry - translation table local entry data
623 * @common: general translation table data
624 * @last_seen: timestamp used for purging stale tt local entries
625 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200626struct batadv_tt_local_entry {
627 struct batadv_tt_common_entry common;
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100628 unsigned long last_seen;
629};
630
Marek Lindner88a32c92012-12-25 21:45:12 +0800631/**
632 * struct batadv_tt_global_entry - translation table global entry data
633 * @common: general translation table data
634 * @orig_list: list of orig nodes announcing this non-mesh client
635 * @list_lock: lock protecting orig_list
636 * @roam_at: time at which TT_GLOBAL_ROAM was set
637 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200638struct batadv_tt_global_entry {
639 struct batadv_tt_common_entry common;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200640 struct hlist_head orig_list;
Marek Lindner88a32c92012-12-25 21:45:12 +0800641 spinlock_t list_lock; /* protects orig_list */
642 unsigned long roam_at;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200643};
644
Marek Lindner88a32c92012-12-25 21:45:12 +0800645/**
646 * struct batadv_tt_orig_list_entry - orig node announcing a non-mesh client
647 * @orig_node: pointer to orig node announcing this non-mesh client
648 * @ttvn: translation table version number which added the non-mesh client
649 * @list: list node for batadv_tt_global_entry::orig_list
650 * @refcount: number of contexts the object is used
651 * @rcu: struct used for freeing in an RCU-safe manner
652 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200653struct batadv_tt_orig_list_entry {
654 struct batadv_orig_node *orig_node;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200655 uint8_t ttvn;
Marek Lindner88a32c92012-12-25 21:45:12 +0800656 struct hlist_node list;
Antonio Quartullid657e622012-07-01 14:09:12 +0200657 atomic_t refcount;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200658 struct rcu_head rcu;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000659};
660
Marek Lindner88a32c92012-12-25 21:45:12 +0800661/**
662 * struct batadv_tt_change_node - structure for tt changes occured
663 * @list: list node for batadv_priv_tt::changes_list
664 * @change: holds the actual translation table diff data
665 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200666struct batadv_tt_change_node {
Antonio Quartullia73105b2011-04-27 14:27:44 +0200667 struct list_head list;
Sven Eckelmann96412692012-06-05 22:31:30 +0200668 struct batadv_tt_change change;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200669};
670
Marek Lindner88a32c92012-12-25 21:45:12 +0800671/**
672 * struct batadv_tt_req_node - data to keep track of the tt requests in flight
673 * @addr: mac address address of the originator this request was sent to
674 * @issued_at: timestamp used for purging stale tt requests
675 * @list: list node for batadv_priv_tt::req_list
676 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200677struct batadv_tt_req_node {
Antonio Quartullia73105b2011-04-27 14:27:44 +0200678 uint8_t addr[ETH_ALEN];
679 unsigned long issued_at;
680 struct list_head list;
681};
682
Marek Lindner88a32c92012-12-25 21:45:12 +0800683/**
684 * struct batadv_tt_roam_node - roaming client data
685 * @addr: mac address of the client in the roaming phase
686 * @counter: number of allowed roaming events per client within a single
687 * OGM interval (changes are committed with each OGM)
688 * @first_time: timestamp used for purging stale roaming node entries
689 * @list: list node for batadv_priv_tt::roam_list
690 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200691struct batadv_tt_roam_node {
Antonio Quartullicc47f662011-04-27 14:27:57 +0200692 uint8_t addr[ETH_ALEN];
693 atomic_t counter;
694 unsigned long first_time;
695 struct list_head list;
696};
697
Marek Lindner88a32c92012-12-25 21:45:12 +0800698/**
699 * struct batadv_forw_packet - structure for bcast packets to be sent/forwarded
700 * @list: list node for batadv_socket_client::queue_list
701 * @send_time: execution time for delayed_work (packet sending)
702 * @own: bool for locally generated packets (local OGMs are re-scheduled after
703 * sending)
704 * @skb: bcast packet's skb buffer
705 * @packet_len: size of aggregated OGM packet inside the skb buffer
706 * @direct_link_flags: direct link flags for aggregated OGM packets
707 * @num_packets: counter for bcast packet retransmission
708 * @delayed_work: work queue callback item for packet sending
709 * @if_incoming: pointer incoming hard-iface or primary iface if locally
710 * generated packet
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000711 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200712struct batadv_forw_packet {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000713 struct hlist_node list;
714 unsigned long send_time;
715 uint8_t own;
716 struct sk_buff *skb;
717 uint16_t packet_len;
718 uint32_t direct_link_flags;
719 uint8_t num_packets;
720 struct delayed_work delayed_work;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200721 struct batadv_hard_iface *if_incoming;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000722};
723
Marek Lindner88a32c92012-12-25 21:45:12 +0800724/**
725 * struct batadv_frag_packet_list_entry - storage for fragment packet
726 * @list: list node for orig_node::frag_list
727 * @seqno: sequence number of the fragment
728 * @skb: fragment's skb buffer
729 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200730struct batadv_frag_packet_list_entry {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000731 struct list_head list;
732 uint16_t seqno;
733 struct sk_buff *skb;
734};
735
Marek Lindner88a32c92012-12-25 21:45:12 +0800736/**
737 * struct batadv_vis_info - local data for vis information
738 * @first_seen: timestamp used for purging stale vis info entries
739 * @recv_list: List of server-neighbors we have received this packet from. This
740 * packet should not be re-forward to them again. List elements are struct
741 * batadv_vis_recvlist_node
742 * @send_list: list of packets to be forwarded
743 * @refcount: number of contexts the object is used
744 * @hash_entry: hlist node for batadv_priv_vis::hash
745 * @bat_priv: pointer to soft_iface this orig node belongs to
746 * @skb_packet: contains the vis packet
747 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200748struct batadv_vis_info {
Antonio Quartulli40219672011-05-18 16:47:23 +0200749 unsigned long first_seen;
Antonio Quartulli40219672011-05-18 16:47:23 +0200750 struct list_head recv_list;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000751 struct list_head send_list;
752 struct kref refcount;
Marek Lindner7aadf882011-02-18 12:28:09 +0000753 struct hlist_node hash_entry;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200754 struct batadv_priv *bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000755 struct sk_buff *skb_packet;
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000756} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000757
Marek Lindner88a32c92012-12-25 21:45:12 +0800758/**
759 * struct batadv_vis_info_entry - contains link information for vis
760 * @src: source MAC of the link, all zero for local TT entry
761 * @dst: destination MAC of the link, client mac address for local TT entry
762 * @quality: transmission quality of the link, or 0 for local TT entry
763 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200764struct batadv_vis_info_entry {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000765 uint8_t src[ETH_ALEN];
766 uint8_t dest[ETH_ALEN];
Marek Lindner88a32c92012-12-25 21:45:12 +0800767 uint8_t quality;
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000768} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000769
Marek Lindner88a32c92012-12-25 21:45:12 +0800770/**
771 * struct batadv_vis_recvlist_node - list entry for batadv_vis_info::recv_list
772 * @list: list node for batadv_vis_info::recv_list
773 * @mac: MAC address of the originator from where the vis_info was received
774 */
Marek Lindner28500f02012-12-25 17:03:23 +0800775struct batadv_vis_recvlist_node {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000776 struct list_head list;
777 uint8_t mac[ETH_ALEN];
778};
779
Marek Lindner88a32c92012-12-25 21:45:12 +0800780/**
781 * struct batadv_vis_if_list_entry - auxiliary data for vis data generation
782 * @addr: MAC address of the interface
783 * @primary: true if this interface is the primary interface
784 * @list: list node the interface list
785 *
786 * While scanning for vis-entries of a particular vis-originator
Marek Lindner015b4ae2012-12-25 17:03:22 +0800787 * this list collects its interfaces to create a subgraph/cluster
788 * out of them later
789 */
790struct batadv_vis_if_list_entry {
791 uint8_t addr[ETH_ALEN];
792 bool primary;
793 struct hlist_node list;
794};
795
Marek Lindner88a32c92012-12-25 21:45:12 +0800796/**
797 * struct batadv_algo_ops - mesh algorithm callbacks
798 * @list: list node for the batadv_algo_list
799 * @name: name of the algorithm
800 * @bat_iface_enable: init routing info when hard-interface is enabled
801 * @bat_iface_disable: de-init routing info when hard-interface is disabled
802 * @bat_iface_update_mac: (re-)init mac addresses of the protocol information
803 * belonging to this hard-interface
804 * @bat_primary_iface_set: called when primary interface is selected / changed
805 * @bat_ogm_schedule: prepare a new outgoing OGM for the send queue
806 * @bat_ogm_emit: send scheduled OGM
807 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200808struct batadv_algo_ops {
Marek Lindner1c280472011-11-28 17:40:17 +0800809 struct hlist_node list;
810 char *name;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200811 int (*bat_iface_enable)(struct batadv_hard_iface *hard_iface);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200812 void (*bat_iface_disable)(struct batadv_hard_iface *hard_iface);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200813 void (*bat_iface_update_mac)(struct batadv_hard_iface *hard_iface);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200814 void (*bat_primary_iface_set)(struct batadv_hard_iface *hard_iface);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200815 void (*bat_ogm_schedule)(struct batadv_hard_iface *hard_iface);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200816 void (*bat_ogm_emit)(struct batadv_forw_packet *forw_packet);
Marek Lindner1c280472011-11-28 17:40:17 +0800817};
818
Antonio Quartulli785ea112011-11-23 11:35:44 +0100819/**
Antonio Quartulli2f1dfbe2012-06-30 20:01:19 +0200820 * struct batadv_dat_entry - it is a single entry of batman-adv ARP backend. It
821 * is used to stored ARP entries needed for the global DAT cache
822 * @ip: the IPv4 corresponding to this DAT/ARP entry
823 * @mac_addr: the MAC address associated to the stored IPv4
824 * @last_update: time in jiffies when this entry was refreshed last time
825 * @hash_entry: hlist node for batadv_priv_dat::hash
826 * @refcount: number of contexts the object is used
827 * @rcu: struct used for freeing in an RCU-safe manner
828 */
829struct batadv_dat_entry {
830 __be32 ip;
831 uint8_t mac_addr[ETH_ALEN];
832 unsigned long last_update;
833 struct hlist_node hash_entry;
834 atomic_t refcount;
835 struct rcu_head rcu;
836};
837
838/**
Antonio Quartulli785ea112011-11-23 11:35:44 +0100839 * struct batadv_dat_candidate - candidate destination for DAT operations
840 * @type: the type of the selected candidate. It can one of the following:
841 * - BATADV_DAT_CANDIDATE_NOT_FOUND
842 * - BATADV_DAT_CANDIDATE_ORIG
843 * @orig_node: if type is BATADV_DAT_CANDIDATE_ORIG this field points to the
844 * corresponding originator node structure
845 */
846struct batadv_dat_candidate {
847 int type;
848 struct batadv_orig_node *orig_node;
849};
850
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000851#endif /* _NET_BATMAN_ADV_TYPES_H_ */