xref: /openbmc/linux/net/batman-adv/types.h (revision b9762beb)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (C) 2007-2018  B.A.T.M.A.N. contributors:
3  *
4  * Marek Lindner, Simon Wunderlich
5  *
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
16  * along with this program; if not, see <http://www.gnu.org/licenses/>.
17  */
18 
19 #ifndef _NET_BATMAN_ADV_TYPES_H_
20 #define _NET_BATMAN_ADV_TYPES_H_
21 
22 #ifndef _NET_BATMAN_ADV_MAIN_H_
23 #error only "main.h" can be included directly
24 #endif
25 
26 #include <linux/average.h>
27 #include <linux/bitops.h>
28 #include <linux/compiler.h>
29 #include <linux/if_ether.h>
30 #include <linux/kref.h>
31 #include <linux/netdevice.h>
32 #include <linux/netlink.h>
33 #include <linux/sched.h> /* for linux/wait.h */
34 #include <linux/spinlock.h>
35 #include <linux/types.h>
36 #include <linux/wait.h>
37 #include <linux/workqueue.h>
38 #include <uapi/linux/batadv_packet.h>
39 #include <uapi/linux/batman_adv.h>
40 
41 struct seq_file;
42 
43 #ifdef CONFIG_BATMAN_ADV_DAT
44 
45 /**
46  * typedef batadv_dat_addr_t - type used for all DHT addresses
47  *
48  * If it is changed, BATADV_DAT_ADDR_MAX is changed as well.
49  *
50  * *Please be careful: batadv_dat_addr_t must be UNSIGNED*
51  */
52 typedef u16 batadv_dat_addr_t;
53 
54 #endif /* CONFIG_BATMAN_ADV_DAT */
55 
56 /**
57  * enum batadv_dhcp_recipient - dhcp destination
58  */
59 enum batadv_dhcp_recipient {
60 	/** @BATADV_DHCP_NO: packet is not a dhcp message */
61 	BATADV_DHCP_NO = 0,
62 
63 	/** @BATADV_DHCP_TO_SERVER: dhcp message is directed to a server */
64 	BATADV_DHCP_TO_SERVER,
65 
66 	/** @BATADV_DHCP_TO_CLIENT: dhcp message is directed to a client */
67 	BATADV_DHCP_TO_CLIENT,
68 };
69 
70 /**
71  * BATADV_TT_REMOTE_MASK - bitmask selecting the flags that are sent over the
72  *  wire only
73  */
74 #define BATADV_TT_REMOTE_MASK	0x00FF
75 
76 /**
77  * BATADV_TT_SYNC_MASK - bitmask of the flags that need to be kept in sync
78  *  among the nodes. These flags are used to compute the global/local CRC
79  */
80 #define BATADV_TT_SYNC_MASK	0x00F0
81 
82 /**
83  * struct batadv_hard_iface_bat_iv - per hard-interface B.A.T.M.A.N. IV data
84  */
85 struct batadv_hard_iface_bat_iv {
86 	/** @ogm_buff: buffer holding the OGM packet */
87 	unsigned char *ogm_buff;
88 
89 	/** @ogm_buff_len: length of the OGM packet buffer */
90 	int ogm_buff_len;
91 
92 	/** @ogm_seqno: OGM sequence number - used to identify each OGM */
93 	atomic_t ogm_seqno;
94 };
95 
96 /**
97  * enum batadv_v_hard_iface_flags - interface flags useful to B.A.T.M.A.N. V
98  */
99 enum batadv_v_hard_iface_flags {
100 	/**
101 	 * @BATADV_FULL_DUPLEX: tells if the connection over this link is
102 	 *  full-duplex
103 	 */
104 	BATADV_FULL_DUPLEX	= BIT(0),
105 
106 	/**
107 	 * @BATADV_WARNING_DEFAULT: tells whether we have warned the user that
108 	 *  no throughput data is available for this interface and that default
109 	 *  values are assumed.
110 	 */
111 	BATADV_WARNING_DEFAULT	= BIT(1),
112 };
113 
114 /**
115  * struct batadv_hard_iface_bat_v - per hard-interface B.A.T.M.A.N. V data
116  */
117 struct batadv_hard_iface_bat_v {
118 	/** @elp_interval: time interval between two ELP transmissions */
119 	atomic_t elp_interval;
120 
121 	/** @elp_seqno: current ELP sequence number */
122 	atomic_t elp_seqno;
123 
124 	/** @elp_skb: base skb containing the ELP message to send */
125 	struct sk_buff *elp_skb;
126 
127 	/** @elp_wq: workqueue used to schedule ELP transmissions */
128 	struct delayed_work elp_wq;
129 
130 	/**
131 	 * @throughput_override: throughput override to disable link
132 	 *  auto-detection
133 	 */
134 	atomic_t throughput_override;
135 
136 	/** @flags: interface specific flags */
137 	u8 flags;
138 };
139 
140 /**
141  * enum batadv_hard_iface_wifi_flags - Flags describing the wifi configuration
142  *  of a batadv_hard_iface
143  */
144 enum batadv_hard_iface_wifi_flags {
145 	/** @BATADV_HARDIF_WIFI_WEXT_DIRECT: it is a wext wifi device */
146 	BATADV_HARDIF_WIFI_WEXT_DIRECT = BIT(0),
147 
148 	/** @BATADV_HARDIF_WIFI_CFG80211_DIRECT: it is a cfg80211 wifi device */
149 	BATADV_HARDIF_WIFI_CFG80211_DIRECT = BIT(1),
150 
151 	/**
152 	 * @BATADV_HARDIF_WIFI_WEXT_INDIRECT: link device is a wext wifi device
153 	 */
154 	BATADV_HARDIF_WIFI_WEXT_INDIRECT = BIT(2),
155 
156 	/**
157 	 * @BATADV_HARDIF_WIFI_CFG80211_INDIRECT: link device is a cfg80211 wifi
158 	 * device
159 	 */
160 	BATADV_HARDIF_WIFI_CFG80211_INDIRECT = BIT(3),
161 };
162 
163 /**
164  * struct batadv_hard_iface - network device known to batman-adv
165  */
166 struct batadv_hard_iface {
167 	/** @list: list node for batadv_hardif_list */
168 	struct list_head list;
169 
170 	/** @if_num: identificator of the interface */
171 	unsigned int if_num;
172 
173 	/** @if_status: status of the interface for batman-adv */
174 	char if_status;
175 
176 	/**
177 	 * @num_bcasts: number of payload re-broadcasts on this interface (ARQ)
178 	 */
179 	u8 num_bcasts;
180 
181 	/**
182 	 * @wifi_flags: flags whether this is (directly or indirectly) a wifi
183 	 *  interface
184 	 */
185 	u32 wifi_flags;
186 
187 	/** @net_dev: pointer to the net_device */
188 	struct net_device *net_dev;
189 
190 	/** @hardif_obj: kobject of the per interface sysfs "mesh" directory */
191 	struct kobject *hardif_obj;
192 
193 	/** @refcount: number of contexts the object is used */
194 	struct kref refcount;
195 
196 	/**
197 	 * @batman_adv_ptype: packet type describing packets that should be
198 	 * processed by batman-adv for this interface
199 	 */
200 	struct packet_type batman_adv_ptype;
201 
202 	/**
203 	 * @soft_iface: the batman-adv interface which uses this network
204 	 *  interface
205 	 */
206 	struct net_device *soft_iface;
207 
208 	/** @rcu: struct used for freeing in an RCU-safe manner */
209 	struct rcu_head rcu;
210 
211 	/** @bat_iv: per hard-interface B.A.T.M.A.N. IV data */
212 	struct batadv_hard_iface_bat_iv bat_iv;
213 
214 #ifdef CONFIG_BATMAN_ADV_BATMAN_V
215 	/** @bat_v: per hard-interface B.A.T.M.A.N. V data */
216 	struct batadv_hard_iface_bat_v bat_v;
217 #endif
218 
219 #ifdef CONFIG_BATMAN_ADV_DEBUGFS
220 	/**
221 	 * @debug_dir: dentry for nc subdir in batman-adv directory in debugfs
222 	 */
223 	struct dentry *debug_dir;
224 #endif
225 
226 	/**
227 	 * @neigh_list: list of unique single hop neighbors via this interface
228 	 */
229 	struct hlist_head neigh_list;
230 
231 	/** @neigh_list_lock: lock protecting neigh_list */
232 	spinlock_t neigh_list_lock;
233 };
234 
235 /**
236  * struct batadv_orig_ifinfo - originator info per outgoing interface
237  */
238 struct batadv_orig_ifinfo {
239 	/** @list: list node for &batadv_orig_node.ifinfo_list */
240 	struct hlist_node list;
241 
242 	/** @if_outgoing: pointer to outgoing hard-interface */
243 	struct batadv_hard_iface *if_outgoing;
244 
245 	/** @router: router that should be used to reach this originator */
246 	struct batadv_neigh_node __rcu *router;
247 
248 	/** @last_real_seqno: last and best known sequence number */
249 	u32 last_real_seqno;
250 
251 	/** @last_ttl: ttl of last received packet */
252 	u8 last_ttl;
253 
254 	/** @last_seqno_forwarded: seqno of the OGM which was forwarded last */
255 	u32 last_seqno_forwarded;
256 
257 	/** @batman_seqno_reset: time when the batman seqno window was reset */
258 	unsigned long batman_seqno_reset;
259 
260 	/** @refcount: number of contexts the object is used */
261 	struct kref refcount;
262 
263 	/** @rcu: struct used for freeing in an RCU-safe manner */
264 	struct rcu_head rcu;
265 };
266 
267 /**
268  * struct batadv_frag_table_entry - head in the fragment buffer table
269  */
270 struct batadv_frag_table_entry {
271 	/** @fragment_list: head of list with fragments */
272 	struct hlist_head fragment_list;
273 
274 	/** @lock: lock to protect the list of fragments */
275 	spinlock_t lock;
276 
277 	/** @timestamp: time (jiffie) of last received fragment */
278 	unsigned long timestamp;
279 
280 	/** @seqno: sequence number of the fragments in the list */
281 	u16 seqno;
282 
283 	/** @size: accumulated size of packets in list */
284 	u16 size;
285 
286 	/** @total_size: expected size of the assembled packet */
287 	u16 total_size;
288 };
289 
290 /**
291  * struct batadv_frag_list_entry - entry in a list of fragments
292  */
293 struct batadv_frag_list_entry {
294 	/** @list: list node information */
295 	struct hlist_node list;
296 
297 	/** @skb: fragment */
298 	struct sk_buff *skb;
299 
300 	/** @no: fragment number in the set */
301 	u8 no;
302 };
303 
304 /**
305  * struct batadv_vlan_tt - VLAN specific TT attributes
306  */
307 struct batadv_vlan_tt {
308 	/** @crc: CRC32 checksum of the entries belonging to this vlan */
309 	u32 crc;
310 
311 	/** @num_entries: number of TT entries for this VLAN */
312 	atomic_t num_entries;
313 };
314 
315 /**
316  * struct batadv_orig_node_vlan - VLAN specific data per orig_node
317  */
318 struct batadv_orig_node_vlan {
319 	/** @vid: the VLAN identifier */
320 	unsigned short vid;
321 
322 	/** @tt: VLAN specific TT attributes */
323 	struct batadv_vlan_tt tt;
324 
325 	/** @list: list node for &batadv_orig_node.vlan_list */
326 	struct hlist_node list;
327 
328 	/**
329 	 * @refcount: number of context where this object is currently in use
330 	 */
331 	struct kref refcount;
332 
333 	/** @rcu: struct used for freeing in a RCU-safe manner */
334 	struct rcu_head rcu;
335 };
336 
337 /**
338  * struct batadv_orig_bat_iv - B.A.T.M.A.N. IV private orig_node members
339  */
340 struct batadv_orig_bat_iv {
341 	/**
342 	 * @bcast_own: set of bitfields (one per hard-interface) where each one
343 	 * counts the number of our OGMs this orig_node rebroadcasted "back" to
344 	 * us  (relative to last_real_seqno). Every bitfield is
345 	 * BATADV_TQ_LOCAL_WINDOW_SIZE bits long.
346 	 */
347 	unsigned long *bcast_own;
348 
349 	/** @bcast_own_sum: sum of bcast_own */
350 	u8 *bcast_own_sum;
351 
352 	/**
353 	 * @ogm_cnt_lock: lock protecting bcast_own, bcast_own_sum,
354 	 * neigh_node->bat_iv.real_bits & neigh_node->bat_iv.real_packet_count
355 	 */
356 	spinlock_t ogm_cnt_lock;
357 };
358 
359 /**
360  * struct batadv_orig_node - structure for orig_list maintaining nodes of mesh
361  */
362 struct batadv_orig_node {
363 	/** @orig: originator ethernet address */
364 	u8 orig[ETH_ALEN];
365 
366 	/** @ifinfo_list: list for routers per outgoing interface */
367 	struct hlist_head ifinfo_list;
368 
369 	/**
370 	 * @last_bonding_candidate: pointer to last ifinfo of last used router
371 	 */
372 	struct batadv_orig_ifinfo *last_bonding_candidate;
373 
374 #ifdef CONFIG_BATMAN_ADV_DAT
375 	/** @dat_addr: address of the orig node in the distributed hash */
376 	batadv_dat_addr_t dat_addr;
377 #endif
378 
379 	/** @last_seen: time when last packet from this node was received */
380 	unsigned long last_seen;
381 
382 	/**
383 	 * @bcast_seqno_reset: time when the broadcast seqno window was reset
384 	 */
385 	unsigned long bcast_seqno_reset;
386 
387 #ifdef CONFIG_BATMAN_ADV_MCAST
388 	/**
389 	 * @mcast_handler_lock: synchronizes mcast-capability and -flag changes
390 	 */
391 	spinlock_t mcast_handler_lock;
392 
393 	/** @mcast_flags: multicast flags announced by the orig node */
394 	u8 mcast_flags;
395 
396 	/**
397 	 * @mcast_want_all_unsnoopables_node: a list node for the
398 	 *  mcast.want_all_unsnoopables list
399 	 */
400 	struct hlist_node mcast_want_all_unsnoopables_node;
401 
402 	/**
403 	 * @mcast_want_all_ipv4_node: a list node for the mcast.want_all_ipv4
404 	 *  list
405 	 */
406 	struct hlist_node mcast_want_all_ipv4_node;
407 	/**
408 	 * @mcast_want_all_ipv6_node: a list node for the mcast.want_all_ipv6
409 	 *  list
410 	 */
411 	struct hlist_node mcast_want_all_ipv6_node;
412 #endif
413 
414 	/** @capabilities: announced capabilities of this originator */
415 	unsigned long capabilities;
416 
417 	/**
418 	 * @capa_initialized: bitfield to remember whether a capability was
419 	 *  initialized
420 	 */
421 	unsigned long capa_initialized;
422 
423 	/** @last_ttvn: last seen translation table version number */
424 	atomic_t last_ttvn;
425 
426 	/** @tt_buff: last tt changeset this node received from the orig node */
427 	unsigned char *tt_buff;
428 
429 	/**
430 	 * @tt_buff_len: length of the last tt changeset this node received
431 	 *  from the orig node
432 	 */
433 	s16 tt_buff_len;
434 
435 	/** @tt_buff_lock: lock that protects tt_buff and tt_buff_len */
436 	spinlock_t tt_buff_lock;
437 
438 	/**
439 	 * @tt_lock: prevents from updating the table while reading it. Table
440 	 *  update is made up by two operations (data structure update and
441 	 *  metdata -CRC/TTVN-recalculation) and they have to be executed
442 	 *  atomically in order to avoid another thread to read the
443 	 *  table/metadata between those.
444 	 */
445 	spinlock_t tt_lock;
446 
447 	/**
448 	 * @bcast_bits: bitfield containing the info which payload broadcast
449 	 *  originated from this orig node this host already has seen (relative
450 	 *  to last_bcast_seqno)
451 	 */
452 	DECLARE_BITMAP(bcast_bits, BATADV_TQ_LOCAL_WINDOW_SIZE);
453 
454 	/**
455 	 * @last_bcast_seqno: last broadcast sequence number received by this
456 	 *  host
457 	 */
458 	u32 last_bcast_seqno;
459 
460 	/**
461 	 * @neigh_list: list of potential next hop neighbor towards this orig
462 	 *  node
463 	 */
464 	struct hlist_head neigh_list;
465 
466 	/**
467 	 * @neigh_list_lock: lock protecting neigh_list, ifinfo_list,
468 	 *  last_bonding_candidate and router
469 	 */
470 	spinlock_t neigh_list_lock;
471 
472 	/** @hash_entry: hlist node for &batadv_priv.orig_hash */
473 	struct hlist_node hash_entry;
474 
475 	/** @bat_priv: pointer to soft_iface this orig node belongs to */
476 	struct batadv_priv *bat_priv;
477 
478 	/** @bcast_seqno_lock: lock protecting bcast_bits & last_bcast_seqno */
479 	spinlock_t bcast_seqno_lock;
480 
481 	/** @refcount: number of contexts the object is used */
482 	struct kref refcount;
483 
484 	/** @rcu: struct used for freeing in an RCU-safe manner */
485 	struct rcu_head rcu;
486 
487 #ifdef CONFIG_BATMAN_ADV_NC
488 	/** @in_coding_list: list of nodes this orig can hear */
489 	struct list_head in_coding_list;
490 
491 	/** @out_coding_list: list of nodes that can hear this orig */
492 	struct list_head out_coding_list;
493 
494 	/** @in_coding_list_lock: protects in_coding_list */
495 	spinlock_t in_coding_list_lock;
496 
497 	/** @out_coding_list_lock: protects out_coding_list */
498 	spinlock_t out_coding_list_lock;
499 #endif
500 
501 	/** @fragments: array with heads for fragment chains */
502 	struct batadv_frag_table_entry fragments[BATADV_FRAG_BUFFER_COUNT];
503 
504 	/**
505 	 * @vlan_list: a list of orig_node_vlan structs, one per VLAN served by
506 	 *  the originator represented by this object
507 	 */
508 	struct hlist_head vlan_list;
509 
510 	/** @vlan_list_lock: lock protecting vlan_list */
511 	spinlock_t vlan_list_lock;
512 
513 	/** @bat_iv: B.A.T.M.A.N. IV private structure */
514 	struct batadv_orig_bat_iv bat_iv;
515 };
516 
517 /**
518  * enum batadv_orig_capabilities - orig node capabilities
519  */
520 enum batadv_orig_capabilities {
521 	/**
522 	 * @BATADV_ORIG_CAPA_HAS_DAT: orig node has distributed arp table
523 	 *  enabled
524 	 */
525 	BATADV_ORIG_CAPA_HAS_DAT,
526 
527 	/** @BATADV_ORIG_CAPA_HAS_NC: orig node has network coding enabled */
528 	BATADV_ORIG_CAPA_HAS_NC,
529 
530 	/** @BATADV_ORIG_CAPA_HAS_TT: orig node has tt capability */
531 	BATADV_ORIG_CAPA_HAS_TT,
532 
533 	/**
534 	 * @BATADV_ORIG_CAPA_HAS_MCAST: orig node has some multicast capability
535 	 *  (= orig node announces a tvlv of type BATADV_TVLV_MCAST)
536 	 */
537 	BATADV_ORIG_CAPA_HAS_MCAST,
538 };
539 
540 /**
541  * struct batadv_gw_node - structure for orig nodes announcing gw capabilities
542  */
543 struct batadv_gw_node {
544 	/** @list: list node for &batadv_priv_gw.list */
545 	struct hlist_node list;
546 
547 	/** @orig_node: pointer to corresponding orig node */
548 	struct batadv_orig_node *orig_node;
549 
550 	/** @bandwidth_down: advertised uplink download bandwidth */
551 	u32 bandwidth_down;
552 
553 	/** @bandwidth_up: advertised uplink upload bandwidth */
554 	u32 bandwidth_up;
555 
556 	/** @refcount: number of contexts the object is used */
557 	struct kref refcount;
558 
559 	/** @rcu: struct used for freeing in an RCU-safe manner */
560 	struct rcu_head rcu;
561 };
562 
563 DECLARE_EWMA(throughput, 10, 8)
564 
565 /**
566  * struct batadv_hardif_neigh_node_bat_v - B.A.T.M.A.N. V private neighbor
567  *  information
568  */
569 struct batadv_hardif_neigh_node_bat_v {
570 	/** @throughput: ewma link throughput towards this neighbor */
571 	struct ewma_throughput throughput;
572 
573 	/** @elp_interval: time interval between two ELP transmissions */
574 	u32 elp_interval;
575 
576 	/** @elp_latest_seqno: latest and best known ELP sequence number */
577 	u32 elp_latest_seqno;
578 
579 	/**
580 	 * @last_unicast_tx: when the last unicast packet has been sent to this
581 	 *  neighbor
582 	 */
583 	unsigned long last_unicast_tx;
584 
585 	/** @metric_work: work queue callback item for metric update */
586 	struct work_struct metric_work;
587 };
588 
589 /**
590  * struct batadv_hardif_neigh_node - unique neighbor per hard-interface
591  */
592 struct batadv_hardif_neigh_node {
593 	/** @list: list node for &batadv_hard_iface.neigh_list */
594 	struct hlist_node list;
595 
596 	/** @addr: the MAC address of the neighboring interface */
597 	u8 addr[ETH_ALEN];
598 
599 	/**
600 	 * @orig: the address of the originator this neighbor node belongs to
601 	 */
602 	u8 orig[ETH_ALEN];
603 
604 	/** @if_incoming: pointer to incoming hard-interface */
605 	struct batadv_hard_iface *if_incoming;
606 
607 	/** @last_seen: when last packet via this neighbor was received */
608 	unsigned long last_seen;
609 
610 #ifdef CONFIG_BATMAN_ADV_BATMAN_V
611 	/** @bat_v: B.A.T.M.A.N. V private data */
612 	struct batadv_hardif_neigh_node_bat_v bat_v;
613 #endif
614 
615 	/** @refcount: number of contexts the object is used */
616 	struct kref refcount;
617 
618 	/** @rcu: struct used for freeing in a RCU-safe manner */
619 	struct rcu_head rcu;
620 };
621 
622 /**
623  * struct batadv_neigh_node - structure for single hops neighbors
624  */
625 struct batadv_neigh_node {
626 	/** @list: list node for &batadv_orig_node.neigh_list */
627 	struct hlist_node list;
628 
629 	/** @orig_node: pointer to corresponding orig_node */
630 	struct batadv_orig_node *orig_node;
631 
632 	/** @addr: the MAC address of the neighboring interface */
633 	u8 addr[ETH_ALEN];
634 
635 	/** @ifinfo_list: list for routing metrics per outgoing interface */
636 	struct hlist_head ifinfo_list;
637 
638 	/** @ifinfo_lock: lock protecting ifinfo_list and its members */
639 	spinlock_t ifinfo_lock;
640 
641 	/** @if_incoming: pointer to incoming hard-interface */
642 	struct batadv_hard_iface *if_incoming;
643 
644 	/** @last_seen: when last packet via this neighbor was received */
645 	unsigned long last_seen;
646 
647 	/** @hardif_neigh: hardif_neigh of this neighbor */
648 	struct batadv_hardif_neigh_node *hardif_neigh;
649 
650 	/** @refcount: number of contexts the object is used */
651 	struct kref refcount;
652 
653 	/** @rcu: struct used for freeing in an RCU-safe manner */
654 	struct rcu_head rcu;
655 };
656 
657 /**
658  * struct batadv_neigh_ifinfo_bat_iv - neighbor information per outgoing
659  *  interface for B.A.T.M.A.N. IV
660  */
661 struct batadv_neigh_ifinfo_bat_iv {
662 	/** @tq_recv: ring buffer of received TQ values from this neigh node */
663 	u8 tq_recv[BATADV_TQ_GLOBAL_WINDOW_SIZE];
664 
665 	/** @tq_index: ring buffer index */
666 	u8 tq_index;
667 
668 	/**
669 	 * @tq_avg: averaged tq of all tq values in the ring buffer (tq_recv)
670 	 */
671 	u8 tq_avg;
672 
673 	/**
674 	 * @real_bits: bitfield containing the number of OGMs received from this
675 	 *  neigh node (relative to orig_node->last_real_seqno)
676 	 */
677 	DECLARE_BITMAP(real_bits, BATADV_TQ_LOCAL_WINDOW_SIZE);
678 
679 	/** @real_packet_count: counted result of real_bits */
680 	u8 real_packet_count;
681 };
682 
683 /**
684  * struct batadv_neigh_ifinfo_bat_v - neighbor information per outgoing
685  *  interface for B.A.T.M.A.N. V
686  */
687 struct batadv_neigh_ifinfo_bat_v {
688 	/**
689 	 * @throughput: last throughput metric received from originator via this
690 	 *  neigh
691 	 */
692 	u32 throughput;
693 
694 	/** @last_seqno: last sequence number known for this neighbor */
695 	u32 last_seqno;
696 };
697 
698 /**
699  * struct batadv_neigh_ifinfo - neighbor information per outgoing interface
700  */
701 struct batadv_neigh_ifinfo {
702 	/** @list: list node for &batadv_neigh_node.ifinfo_list */
703 	struct hlist_node list;
704 
705 	/** @if_outgoing: pointer to outgoing hard-interface */
706 	struct batadv_hard_iface *if_outgoing;
707 
708 	/** @bat_iv: B.A.T.M.A.N. IV private structure */
709 	struct batadv_neigh_ifinfo_bat_iv bat_iv;
710 
711 #ifdef CONFIG_BATMAN_ADV_BATMAN_V
712 	/** @bat_v: B.A.T.M.A.N. V private data */
713 	struct batadv_neigh_ifinfo_bat_v bat_v;
714 #endif
715 
716 	/** @last_ttl: last received ttl from this neigh node */
717 	u8 last_ttl;
718 
719 	/** @refcount: number of contexts the object is used */
720 	struct kref refcount;
721 
722 	/** @rcu: struct used for freeing in a RCU-safe manner */
723 	struct rcu_head rcu;
724 };
725 
726 #ifdef CONFIG_BATMAN_ADV_BLA
727 
728 /**
729  * struct batadv_bcast_duplist_entry - structure for LAN broadcast suppression
730  */
731 struct batadv_bcast_duplist_entry {
732 	/** @orig: mac address of orig node orginating the broadcast */
733 	u8 orig[ETH_ALEN];
734 
735 	/** @crc: crc32 checksum of broadcast payload */
736 	__be32 crc;
737 
738 	/** @entrytime: time when the broadcast packet was received */
739 	unsigned long entrytime;
740 };
741 #endif
742 
743 /**
744  * enum batadv_counters - indices for traffic counters
745  */
746 enum batadv_counters {
747 	/** @BATADV_CNT_TX: transmitted payload traffic packet counter */
748 	BATADV_CNT_TX,
749 
750 	/** @BATADV_CNT_TX_BYTES: transmitted payload traffic bytes counter */
751 	BATADV_CNT_TX_BYTES,
752 
753 	/**
754 	 * @BATADV_CNT_TX_DROPPED: dropped transmission payload traffic packet
755 	 *  counter
756 	 */
757 	BATADV_CNT_TX_DROPPED,
758 
759 	/** @BATADV_CNT_RX: received payload traffic packet counter */
760 	BATADV_CNT_RX,
761 
762 	/** @BATADV_CNT_RX_BYTES: received payload traffic bytes counter */
763 	BATADV_CNT_RX_BYTES,
764 
765 	/** @BATADV_CNT_FORWARD: forwarded payload traffic packet counter */
766 	BATADV_CNT_FORWARD,
767 
768 	/**
769 	 * @BATADV_CNT_FORWARD_BYTES: forwarded payload traffic bytes counter
770 	 */
771 	BATADV_CNT_FORWARD_BYTES,
772 
773 	/**
774 	 * @BATADV_CNT_MGMT_TX: transmitted routing protocol traffic packet
775 	 *  counter
776 	 */
777 	BATADV_CNT_MGMT_TX,
778 
779 	/**
780 	 * @BATADV_CNT_MGMT_TX_BYTES: transmitted routing protocol traffic bytes
781 	 *  counter
782 	 */
783 	BATADV_CNT_MGMT_TX_BYTES,
784 
785 	/**
786 	 * @BATADV_CNT_MGMT_RX: received routing protocol traffic packet counter
787 	 */
788 	BATADV_CNT_MGMT_RX,
789 
790 	/**
791 	 * @BATADV_CNT_MGMT_RX_BYTES: received routing protocol traffic bytes
792 	 *  counter
793 	 */
794 	BATADV_CNT_MGMT_RX_BYTES,
795 
796 	/** @BATADV_CNT_FRAG_TX: transmitted fragment traffic packet counter */
797 	BATADV_CNT_FRAG_TX,
798 
799 	/**
800 	 * @BATADV_CNT_FRAG_TX_BYTES: transmitted fragment traffic bytes counter
801 	 */
802 	BATADV_CNT_FRAG_TX_BYTES,
803 
804 	/** @BATADV_CNT_FRAG_RX: received fragment traffic packet counter */
805 	BATADV_CNT_FRAG_RX,
806 
807 	/**
808 	 * @BATADV_CNT_FRAG_RX_BYTES: received fragment traffic bytes counter
809 	 */
810 	BATADV_CNT_FRAG_RX_BYTES,
811 
812 	/** @BATADV_CNT_FRAG_FWD: forwarded fragment traffic packet counter */
813 	BATADV_CNT_FRAG_FWD,
814 
815 	/**
816 	 * @BATADV_CNT_FRAG_FWD_BYTES: forwarded fragment traffic bytes counter
817 	 */
818 	BATADV_CNT_FRAG_FWD_BYTES,
819 
820 	/**
821 	 * @BATADV_CNT_TT_REQUEST_TX: transmitted tt req traffic packet counter
822 	 */
823 	BATADV_CNT_TT_REQUEST_TX,
824 
825 	/** @BATADV_CNT_TT_REQUEST_RX: received tt req traffic packet counter */
826 	BATADV_CNT_TT_REQUEST_RX,
827 
828 	/**
829 	 * @BATADV_CNT_TT_RESPONSE_TX: transmitted tt resp traffic packet
830 	 *  counter
831 	 */
832 	BATADV_CNT_TT_RESPONSE_TX,
833 
834 	/**
835 	 * @BATADV_CNT_TT_RESPONSE_RX: received tt resp traffic packet counter
836 	 */
837 	BATADV_CNT_TT_RESPONSE_RX,
838 
839 	/**
840 	 * @BATADV_CNT_TT_ROAM_ADV_TX: transmitted tt roam traffic packet
841 	 *  counter
842 	 */
843 	BATADV_CNT_TT_ROAM_ADV_TX,
844 
845 	/**
846 	 * @BATADV_CNT_TT_ROAM_ADV_RX: received tt roam traffic packet counter
847 	 */
848 	BATADV_CNT_TT_ROAM_ADV_RX,
849 
850 #ifdef CONFIG_BATMAN_ADV_DAT
851 	/**
852 	 * @BATADV_CNT_DAT_GET_TX: transmitted dht GET traffic packet counter
853 	 */
854 	BATADV_CNT_DAT_GET_TX,
855 
856 	/** @BATADV_CNT_DAT_GET_RX: received dht GET traffic packet counter */
857 	BATADV_CNT_DAT_GET_RX,
858 
859 	/**
860 	 * @BATADV_CNT_DAT_PUT_TX: transmitted dht PUT traffic packet counter
861 	 */
862 	BATADV_CNT_DAT_PUT_TX,
863 
864 	/** @BATADV_CNT_DAT_PUT_RX: received dht PUT traffic packet counter */
865 	BATADV_CNT_DAT_PUT_RX,
866 
867 	/**
868 	 * @BATADV_CNT_DAT_CACHED_REPLY_TX: transmitted dat cache reply traffic
869 	 *  packet counter
870 	 */
871 	BATADV_CNT_DAT_CACHED_REPLY_TX,
872 #endif
873 
874 #ifdef CONFIG_BATMAN_ADV_NC
875 	/**
876 	 * @BATADV_CNT_NC_CODE: transmitted nc-combined traffic packet counter
877 	 */
878 	BATADV_CNT_NC_CODE,
879 
880 	/**
881 	 * @BATADV_CNT_NC_CODE_BYTES: transmitted nc-combined traffic bytes
882 	 *  counter
883 	 */
884 	BATADV_CNT_NC_CODE_BYTES,
885 
886 	/**
887 	 * @BATADV_CNT_NC_RECODE: transmitted nc-recombined traffic packet
888 	 *  counter
889 	 */
890 	BATADV_CNT_NC_RECODE,
891 
892 	/**
893 	 * @BATADV_CNT_NC_RECODE_BYTES: transmitted nc-recombined traffic bytes
894 	 *  counter
895 	 */
896 	BATADV_CNT_NC_RECODE_BYTES,
897 
898 	/**
899 	 * @BATADV_CNT_NC_BUFFER: counter for packets buffered for later nc
900 	 *  decoding
901 	 */
902 	BATADV_CNT_NC_BUFFER,
903 
904 	/**
905 	 * @BATADV_CNT_NC_DECODE: received and nc-decoded traffic packet counter
906 	 */
907 	BATADV_CNT_NC_DECODE,
908 
909 	/**
910 	 * @BATADV_CNT_NC_DECODE_BYTES: received and nc-decoded traffic bytes
911 	 *  counter
912 	 */
913 	BATADV_CNT_NC_DECODE_BYTES,
914 
915 	/**
916 	 * @BATADV_CNT_NC_DECODE_FAILED: received and decode-failed traffic
917 	 *  packet counter
918 	 */
919 	BATADV_CNT_NC_DECODE_FAILED,
920 
921 	/**
922 	 * @BATADV_CNT_NC_SNIFFED: counter for nc-decoded packets received in
923 	 *  promisc mode.
924 	 */
925 	BATADV_CNT_NC_SNIFFED,
926 #endif
927 
928 	/** @BATADV_CNT_NUM: number of traffic counters */
929 	BATADV_CNT_NUM,
930 };
931 
932 /**
933  * struct batadv_priv_tt - per mesh interface translation table data
934  */
935 struct batadv_priv_tt {
936 	/** @vn: translation table version number */
937 	atomic_t vn;
938 
939 	/**
940 	 * @ogm_append_cnt: counter of number of OGMs containing the local tt
941 	 *  diff
942 	 */
943 	atomic_t ogm_append_cnt;
944 
945 	/** @local_changes: changes registered in an originator interval */
946 	atomic_t local_changes;
947 
948 	/**
949 	 * @changes_list: tracks tt local changes within an originator interval
950 	 */
951 	struct list_head changes_list;
952 
953 	/** @local_hash: local translation table hash table */
954 	struct batadv_hashtable *local_hash;
955 
956 	/** @global_hash: global translation table hash table */
957 	struct batadv_hashtable *global_hash;
958 
959 	/** @req_list: list of pending & unanswered tt_requests */
960 	struct hlist_head req_list;
961 
962 	/**
963 	 * @roam_list: list of the last roaming events of each client limiting
964 	 *  the number of roaming events to avoid route flapping
965 	 */
966 	struct list_head roam_list;
967 
968 	/** @changes_list_lock: lock protecting changes_list */
969 	spinlock_t changes_list_lock;
970 
971 	/** @req_list_lock: lock protecting req_list */
972 	spinlock_t req_list_lock;
973 
974 	/** @roam_list_lock: lock protecting roam_list */
975 	spinlock_t roam_list_lock;
976 
977 	/** @last_changeset: last tt changeset this host has generated */
978 	unsigned char *last_changeset;
979 
980 	/**
981 	 * @last_changeset_len: length of last tt changeset this host has
982 	 *  generated
983 	 */
984 	s16 last_changeset_len;
985 
986 	/**
987 	 * @last_changeset_lock: lock protecting last_changeset &
988 	 *  last_changeset_len
989 	 */
990 	spinlock_t last_changeset_lock;
991 
992 	/**
993 	 * @commit_lock: prevents from executing a local TT commit while reading
994 	 *  the local table. The local TT commit is made up by two operations
995 	 *  (data structure update and metdata -CRC/TTVN- recalculation) and
996 	 *  they have to be executed atomically in order to avoid another thread
997 	 *  to read the table/metadata between those.
998 	 */
999 	spinlock_t commit_lock;
1000 
1001 	/** @work: work queue callback item for translation table purging */
1002 	struct delayed_work work;
1003 };
1004 
1005 #ifdef CONFIG_BATMAN_ADV_BLA
1006 
1007 /**
1008  * struct batadv_priv_bla - per mesh interface bridge loope avoidance data
1009  */
1010 struct batadv_priv_bla {
1011 	/** @num_requests: number of bla requests in flight */
1012 	atomic_t num_requests;
1013 
1014 	/**
1015 	 * @claim_hash: hash table containing mesh nodes this host has claimed
1016 	 */
1017 	struct batadv_hashtable *claim_hash;
1018 
1019 	/**
1020 	 * @backbone_hash: hash table containing all detected backbone gateways
1021 	 */
1022 	struct batadv_hashtable *backbone_hash;
1023 
1024 	/** @loopdetect_addr: MAC address used for own loopdetection frames */
1025 	u8 loopdetect_addr[ETH_ALEN];
1026 
1027 	/**
1028 	 * @loopdetect_lasttime: time when the loopdetection frames were sent
1029 	 */
1030 	unsigned long loopdetect_lasttime;
1031 
1032 	/**
1033 	 * @loopdetect_next: how many periods to wait for the next loopdetect
1034 	 *  process
1035 	 */
1036 	atomic_t loopdetect_next;
1037 
1038 	/**
1039 	 * @bcast_duplist: recently received broadcast packets array (for
1040 	 *  broadcast duplicate suppression)
1041 	 */
1042 	struct batadv_bcast_duplist_entry bcast_duplist[BATADV_DUPLIST_SIZE];
1043 
1044 	/**
1045 	 * @bcast_duplist_curr: index of last broadcast packet added to
1046 	 *  bcast_duplist
1047 	 */
1048 	int bcast_duplist_curr;
1049 
1050 	/**
1051 	 * @bcast_duplist_lock: lock protecting bcast_duplist &
1052 	 *  bcast_duplist_curr
1053 	 */
1054 	spinlock_t bcast_duplist_lock;
1055 
1056 	/** @claim_dest: local claim data (e.g. claim group) */
1057 	struct batadv_bla_claim_dst claim_dest;
1058 
1059 	/** @work: work queue callback item for cleanups & bla announcements */
1060 	struct delayed_work work;
1061 };
1062 #endif
1063 
1064 #ifdef CONFIG_BATMAN_ADV_DEBUG
1065 
1066 /**
1067  * struct batadv_priv_debug_log - debug logging data
1068  */
1069 struct batadv_priv_debug_log {
1070 	/** @log_buff: buffer holding the logs (ring bufer) */
1071 	char log_buff[BATADV_LOG_BUF_LEN];
1072 
1073 	/** @log_start: index of next character to read */
1074 	unsigned long log_start;
1075 
1076 	/** @log_end: index of next character to write */
1077 	unsigned long log_end;
1078 
1079 	/** @lock: lock protecting log_buff, log_start & log_end */
1080 	spinlock_t lock;
1081 
1082 	/** @queue_wait: log reader's wait queue */
1083 	wait_queue_head_t queue_wait;
1084 };
1085 #endif
1086 
1087 /**
1088  * struct batadv_priv_gw - per mesh interface gateway data
1089  */
1090 struct batadv_priv_gw {
1091 	/** @gateway_list: list of available gateway nodes */
1092 	struct hlist_head gateway_list;
1093 
1094 	/** @list_lock: lock protecting gateway_list & curr_gw */
1095 	spinlock_t list_lock;
1096 
1097 	/** @curr_gw: pointer to currently selected gateway node */
1098 	struct batadv_gw_node __rcu *curr_gw;
1099 
1100 	/**
1101 	 * @mode: gateway operation: off, client or server (see batadv_gw_modes)
1102 	 */
1103 	atomic_t mode;
1104 
1105 	/** @sel_class: gateway selection class (applies if gw_mode client) */
1106 	atomic_t sel_class;
1107 
1108 	/**
1109 	 * @bandwidth_down: advertised uplink download bandwidth (if gw_mode
1110 	 *  server)
1111 	 */
1112 	atomic_t bandwidth_down;
1113 
1114 	/**
1115 	 * @bandwidth_up: advertised uplink upload bandwidth (if gw_mode server)
1116 	 */
1117 	atomic_t bandwidth_up;
1118 
1119 	/** @reselect: bool indicating a gateway re-selection is in progress */
1120 	atomic_t reselect;
1121 };
1122 
1123 /**
1124  * struct batadv_priv_tvlv - per mesh interface tvlv data
1125  */
1126 struct batadv_priv_tvlv {
1127 	/**
1128 	 * @container_list: list of registered tvlv containers to be sent with
1129 	 *  each OGM
1130 	 */
1131 	struct hlist_head container_list;
1132 
1133 	/** @handler_list: list of the various tvlv content handlers */
1134 	struct hlist_head handler_list;
1135 
1136 	/** @container_list_lock: protects tvlv container list access */
1137 	spinlock_t container_list_lock;
1138 
1139 	/** @handler_list_lock: protects handler list access */
1140 	spinlock_t handler_list_lock;
1141 };
1142 
1143 #ifdef CONFIG_BATMAN_ADV_DAT
1144 
1145 /**
1146  * struct batadv_priv_dat - per mesh interface DAT private data
1147  */
1148 struct batadv_priv_dat {
1149 	/** @addr: node DAT address */
1150 	batadv_dat_addr_t addr;
1151 
1152 	/** @hash: hashtable representing the local ARP cache */
1153 	struct batadv_hashtable *hash;
1154 
1155 	/** @work: work queue callback item for cache purging */
1156 	struct delayed_work work;
1157 };
1158 #endif
1159 
1160 #ifdef CONFIG_BATMAN_ADV_MCAST
1161 /**
1162  * struct batadv_mcast_querier_state - IGMP/MLD querier state when bridged
1163  */
1164 struct batadv_mcast_querier_state {
1165 	/** @exists: whether a querier exists in the mesh */
1166 	unsigned char exists:1;
1167 
1168 	/**
1169 	 * @shadowing: if a querier exists, whether it is potentially shadowing
1170 	 *  multicast listeners (i.e. querier is behind our own bridge segment)
1171 	 */
1172 	unsigned char shadowing:1;
1173 };
1174 
1175 /**
1176  * struct batadv_priv_mcast - per mesh interface mcast data
1177  */
1178 struct batadv_priv_mcast {
1179 	/**
1180 	 * @mla_list: list of multicast addresses we are currently announcing
1181 	 *  via TT
1182 	 */
1183 	struct hlist_head mla_list; /* see __batadv_mcast_mla_update() */
1184 
1185 	/**
1186 	 * @want_all_unsnoopables_list: a list of orig_nodes wanting all
1187 	 *  unsnoopable multicast traffic
1188 	 */
1189 	struct hlist_head want_all_unsnoopables_list;
1190 
1191 	/**
1192 	 * @want_all_ipv4_list: a list of orig_nodes wanting all IPv4 multicast
1193 	 *  traffic
1194 	 */
1195 	struct hlist_head want_all_ipv4_list;
1196 
1197 	/**
1198 	 * @want_all_ipv6_list: a list of orig_nodes wanting all IPv6 multicast
1199 	 *  traffic
1200 	 */
1201 	struct hlist_head want_all_ipv6_list;
1202 
1203 	/** @querier_ipv4: the current state of an IGMP querier in the mesh */
1204 	struct batadv_mcast_querier_state querier_ipv4;
1205 
1206 	/** @querier_ipv6: the current state of an MLD querier in the mesh */
1207 	struct batadv_mcast_querier_state querier_ipv6;
1208 
1209 	/** @flags: the flags we have last sent in our mcast tvlv */
1210 	u8 flags;
1211 
1212 	/** @enabled: whether the multicast tvlv is currently enabled */
1213 	unsigned char enabled:1;
1214 
1215 	/** @bridged: whether the soft interface has a bridge on top */
1216 	unsigned char bridged:1;
1217 
1218 	/**
1219 	 * @num_want_all_unsnoopables: number of nodes wanting unsnoopable IP
1220 	 *  traffic
1221 	 */
1222 	atomic_t num_want_all_unsnoopables;
1223 
1224 	/** @num_want_all_ipv4: counter for items in want_all_ipv4_list */
1225 	atomic_t num_want_all_ipv4;
1226 
1227 	/** @num_want_all_ipv6: counter for items in want_all_ipv6_list */
1228 	atomic_t num_want_all_ipv6;
1229 
1230 	/**
1231 	 * @want_lists_lock: lock for protecting modifications to mcasts
1232 	 *  want_all_{unsnoopables,ipv4,ipv6}_list (traversals are rcu-locked)
1233 	 */
1234 	spinlock_t want_lists_lock;
1235 
1236 	/** @work: work queue callback item for multicast TT and TVLV updates */
1237 	struct delayed_work work;
1238 };
1239 #endif
1240 
1241 /**
1242  * struct batadv_priv_nc - per mesh interface network coding private data
1243  */
1244 struct batadv_priv_nc {
1245 	/** @work: work queue callback item for cleanup */
1246 	struct delayed_work work;
1247 
1248 #ifdef CONFIG_BATMAN_ADV_DEBUGFS
1249 	/**
1250 	 * @debug_dir: dentry for nc subdir in batman-adv directory in debugfs
1251 	 */
1252 	struct dentry *debug_dir;
1253 #endif
1254 
1255 	/**
1256 	 * @min_tq: only consider neighbors for encoding if neigh_tq > min_tq
1257 	 */
1258 	u8 min_tq;
1259 
1260 	/**
1261 	 * @max_fwd_delay: maximum packet forward delay to allow coding of
1262 	 *  packets
1263 	 */
1264 	u32 max_fwd_delay;
1265 
1266 	/**
1267 	 * @max_buffer_time: buffer time for sniffed packets used to decoding
1268 	 */
1269 	u32 max_buffer_time;
1270 
1271 	/**
1272 	 * @timestamp_fwd_flush: timestamp of last forward packet queue flush
1273 	 */
1274 	unsigned long timestamp_fwd_flush;
1275 
1276 	/**
1277 	 * @timestamp_sniffed_purge: timestamp of last sniffed packet queue
1278 	 *  purge
1279 	 */
1280 	unsigned long timestamp_sniffed_purge;
1281 
1282 	/**
1283 	 * @coding_hash: Hash table used to buffer skbs while waiting for
1284 	 *  another incoming skb to code it with. Skbs are added to the buffer
1285 	 *  just before being forwarded in routing.c
1286 	 */
1287 	struct batadv_hashtable *coding_hash;
1288 
1289 	/**
1290 	 * @decoding_hash: Hash table used to buffer skbs that might be needed
1291 	 *  to decode a received coded skb. The buffer is used for 1) skbs
1292 	 *  arriving on the soft-interface; 2) skbs overheard on the
1293 	 *  hard-interface; and 3) skbs forwarded by batman-adv.
1294 	 */
1295 	struct batadv_hashtable *decoding_hash;
1296 };
1297 
1298 /**
1299  * struct batadv_tp_unacked - unacked packet meta-information
1300  *
1301  * This struct is supposed to represent a buffer unacked packet. However, since
1302  * the purpose of the TP meter is to count the traffic only, there is no need to
1303  * store the entire sk_buff, the starting offset and the length are enough
1304  */
1305 struct batadv_tp_unacked {
1306 	/** @seqno: seqno of the unacked packet */
1307 	u32 seqno;
1308 
1309 	/** @len: length of the packet */
1310 	u16 len;
1311 
1312 	/** @list: list node for &batadv_tp_vars.unacked_list */
1313 	struct list_head list;
1314 };
1315 
1316 /**
1317  * enum batadv_tp_meter_role - Modus in tp meter session
1318  */
1319 enum batadv_tp_meter_role {
1320 	/** @BATADV_TP_RECEIVER: Initialized as receiver */
1321 	BATADV_TP_RECEIVER,
1322 
1323 	/** @BATADV_TP_SENDER: Initialized as sender */
1324 	BATADV_TP_SENDER
1325 };
1326 
1327 /**
1328  * struct batadv_tp_vars - tp meter private variables per session
1329  */
1330 struct batadv_tp_vars {
1331 	/** @list: list node for &bat_priv.tp_list */
1332 	struct hlist_node list;
1333 
1334 	/** @timer: timer for ack (receiver) and retry (sender) */
1335 	struct timer_list timer;
1336 
1337 	/** @bat_priv: pointer to the mesh object */
1338 	struct batadv_priv *bat_priv;
1339 
1340 	/** @start_time: start time in jiffies */
1341 	unsigned long start_time;
1342 
1343 	/** @other_end: mac address of remote */
1344 	u8 other_end[ETH_ALEN];
1345 
1346 	/** @role: receiver/sender modi */
1347 	enum batadv_tp_meter_role role;
1348 
1349 	/** @sending: sending binary semaphore: 1 if sending, 0 is not */
1350 	atomic_t sending;
1351 
1352 	/** @reason: reason for a stopped session */
1353 	enum batadv_tp_meter_reason reason;
1354 
1355 	/** @finish_work: work item for the finishing procedure */
1356 	struct delayed_work finish_work;
1357 
1358 	/** @test_length: test length in milliseconds */
1359 	u32 test_length;
1360 
1361 	/** @session: TP session identifier */
1362 	u8 session[2];
1363 
1364 	/** @icmp_uid: local ICMP "socket" index */
1365 	u8 icmp_uid;
1366 
1367 	/* sender variables */
1368 
1369 	/** @dec_cwnd: decimal part of the cwnd used during linear growth */
1370 	u16 dec_cwnd;
1371 
1372 	/** @cwnd: current size of the congestion window */
1373 	u32 cwnd;
1374 
1375 	/** @cwnd_lock: lock do protect @cwnd & @dec_cwnd */
1376 	spinlock_t cwnd_lock;
1377 
1378 	/**
1379 	 * @ss_threshold: Slow Start threshold. Once cwnd exceeds this value the
1380 	 *  connection switches to the Congestion Avoidance state
1381 	 */
1382 	u32 ss_threshold;
1383 
1384 	/** @last_acked: last acked byte */
1385 	atomic_t last_acked;
1386 
1387 	/** @last_sent: last sent byte, not yet acked */
1388 	u32 last_sent;
1389 
1390 	/** @tot_sent: amount of data sent/ACKed so far */
1391 	atomic64_t tot_sent;
1392 
1393 	/** @dup_acks: duplicate ACKs counter */
1394 	atomic_t dup_acks;
1395 
1396 	/** @fast_recovery: true if in Fast Recovery mode */
1397 	unsigned char fast_recovery:1;
1398 
1399 	/** @recover: last sent seqno when entering Fast Recovery */
1400 	u32 recover;
1401 
1402 	/** @rto: sender timeout */
1403 	u32 rto;
1404 
1405 	/** @srtt: smoothed RTT scaled by 2^3 */
1406 	u32 srtt;
1407 
1408 	/** @rttvar: RTT variation scaled by 2^2 */
1409 	u32 rttvar;
1410 
1411 	/**
1412 	 * @more_bytes: waiting queue anchor when waiting for more ack/retry
1413 	 *  timeout
1414 	 */
1415 	wait_queue_head_t more_bytes;
1416 
1417 	/** @prerandom_offset: offset inside the prerandom buffer */
1418 	u32 prerandom_offset;
1419 
1420 	/** @prerandom_lock: spinlock protecting access to prerandom_offset */
1421 	spinlock_t prerandom_lock;
1422 
1423 	/* receiver variables */
1424 
1425 	/** @last_recv: last in-order received packet */
1426 	u32 last_recv;
1427 
1428 	/** @unacked_list: list of unacked packets (meta-info only) */
1429 	struct list_head unacked_list;
1430 
1431 	/** @unacked_lock: protect unacked_list */
1432 	spinlock_t unacked_lock;
1433 
1434 	/** @last_recv_time: time time (jiffies) a msg was received */
1435 	unsigned long last_recv_time;
1436 
1437 	/** @refcount: number of context where the object is used */
1438 	struct kref refcount;
1439 
1440 	/** @rcu: struct used for freeing in an RCU-safe manner */
1441 	struct rcu_head rcu;
1442 };
1443 
1444 /**
1445  * struct batadv_softif_vlan - per VLAN attributes set
1446  */
1447 struct batadv_softif_vlan {
1448 	/** @bat_priv: pointer to the mesh object */
1449 	struct batadv_priv *bat_priv;
1450 
1451 	/** @vid: VLAN identifier */
1452 	unsigned short vid;
1453 
1454 	/** @kobj: kobject for sysfs vlan subdirectory */
1455 	struct kobject *kobj;
1456 
1457 	/** @ap_isolation: AP isolation state */
1458 	atomic_t ap_isolation;		/* boolean */
1459 
1460 	/** @tt: TT private attributes (VLAN specific) */
1461 	struct batadv_vlan_tt tt;
1462 
1463 	/** @list: list node for &bat_priv.softif_vlan_list */
1464 	struct hlist_node list;
1465 
1466 	/**
1467 	 * @refcount: number of context where this object is currently in use
1468 	 */
1469 	struct kref refcount;
1470 
1471 	/** @rcu: struct used for freeing in a RCU-safe manner */
1472 	struct rcu_head rcu;
1473 };
1474 
1475 /**
1476  * struct batadv_priv_bat_v - B.A.T.M.A.N. V per soft-interface private data
1477  */
1478 struct batadv_priv_bat_v {
1479 	/** @ogm_buff: buffer holding the OGM packet */
1480 	unsigned char *ogm_buff;
1481 
1482 	/** @ogm_buff_len: length of the OGM packet buffer */
1483 	int ogm_buff_len;
1484 
1485 	/** @ogm_seqno: OGM sequence number - used to identify each OGM */
1486 	atomic_t ogm_seqno;
1487 
1488 	/** @ogm_wq: workqueue used to schedule OGM transmissions */
1489 	struct delayed_work ogm_wq;
1490 };
1491 
1492 /**
1493  * struct batadv_priv - per mesh interface data
1494  */
1495 struct batadv_priv {
1496 	/**
1497 	 * @mesh_state: current status of the mesh
1498 	 *  (inactive/active/deactivating)
1499 	 */
1500 	atomic_t mesh_state;
1501 
1502 	/** @soft_iface: net device which holds this struct as private data */
1503 	struct net_device *soft_iface;
1504 
1505 	/**
1506 	 * @bat_counters: mesh internal traffic statistic counters (see
1507 	 *  batadv_counters)
1508 	 */
1509 	u64 __percpu *bat_counters; /* Per cpu counters */
1510 
1511 	/**
1512 	 * @aggregated_ogms: bool indicating whether OGM aggregation is enabled
1513 	 */
1514 	atomic_t aggregated_ogms;
1515 
1516 	/** @bonding: bool indicating whether traffic bonding is enabled */
1517 	atomic_t bonding;
1518 
1519 	/**
1520 	 * @fragmentation: bool indicating whether traffic fragmentation is
1521 	 *  enabled
1522 	 */
1523 	atomic_t fragmentation;
1524 
1525 	/**
1526 	 * @packet_size_max: max packet size that can be transmitted via
1527 	 *  multiple fragmented skbs or a single frame if fragmentation is
1528 	 *  disabled
1529 	 */
1530 	atomic_t packet_size_max;
1531 
1532 	/**
1533 	 * @frag_seqno: incremental counter to identify chains of egress
1534 	 *  fragments
1535 	 */
1536 	atomic_t frag_seqno;
1537 
1538 #ifdef CONFIG_BATMAN_ADV_BLA
1539 	/**
1540 	 * @bridge_loop_avoidance: bool indicating whether bridge loop
1541 	 *  avoidance is enabled
1542 	 */
1543 	atomic_t bridge_loop_avoidance;
1544 #endif
1545 
1546 #ifdef CONFIG_BATMAN_ADV_DAT
1547 	/**
1548 	 * @distributed_arp_table: bool indicating whether distributed ARP table
1549 	 *  is enabled
1550 	 */
1551 	atomic_t distributed_arp_table;
1552 #endif
1553 
1554 #ifdef CONFIG_BATMAN_ADV_MCAST
1555 	/**
1556 	 * @multicast_mode: Enable or disable multicast optimizations on this
1557 	 *  node's sender/originating side
1558 	 */
1559 	atomic_t multicast_mode;
1560 #endif
1561 
1562 	/** @orig_interval: OGM broadcast interval in milliseconds */
1563 	atomic_t orig_interval;
1564 
1565 	/**
1566 	 * @hop_penalty: penalty which will be applied to an OGM's tq-field on
1567 	 *  every hop
1568 	 */
1569 	atomic_t hop_penalty;
1570 
1571 #ifdef CONFIG_BATMAN_ADV_DEBUG
1572 	/** @log_level: configured log level (see batadv_dbg_level) */
1573 	atomic_t log_level;
1574 #endif
1575 
1576 	/**
1577 	 * @isolation_mark: the skb->mark value used to match packets for AP
1578 	 *  isolation
1579 	 */
1580 	u32 isolation_mark;
1581 
1582 	/**
1583 	 * @isolation_mark_mask: bitmask identifying the bits in skb->mark to be
1584 	 *  used for the isolation mark
1585 	 */
1586 	u32 isolation_mark_mask;
1587 
1588 	/** @bcast_seqno: last sent broadcast packet sequence number */
1589 	atomic_t bcast_seqno;
1590 
1591 	/**
1592 	 * @bcast_queue_left: number of remaining buffered broadcast packet
1593 	 *  slots
1594 	 */
1595 	atomic_t bcast_queue_left;
1596 
1597 	/** @batman_queue_left: number of remaining OGM packet slots */
1598 	atomic_t batman_queue_left;
1599 
1600 	/** @num_ifaces: number of interfaces assigned to this mesh interface */
1601 	unsigned int num_ifaces;
1602 
1603 	/** @mesh_obj: kobject for sysfs mesh subdirectory */
1604 	struct kobject *mesh_obj;
1605 
1606 #ifdef CONFIG_BATMAN_ADV_DEBUGFS
1607 	/** @debug_dir: dentry for debugfs batman-adv subdirectory */
1608 	struct dentry *debug_dir;
1609 #endif
1610 
1611 	/** @forw_bat_list: list of aggregated OGMs that will be forwarded */
1612 	struct hlist_head forw_bat_list;
1613 
1614 	/**
1615 	 * @forw_bcast_list: list of broadcast packets that will be
1616 	 *  rebroadcasted
1617 	 */
1618 	struct hlist_head forw_bcast_list;
1619 
1620 	/** @tp_list: list of tp sessions */
1621 	struct hlist_head tp_list;
1622 
1623 	/** @tp_num: number of currently active tp sessions */
1624 	struct batadv_hashtable *orig_hash;
1625 
1626 	/** @orig_hash: hash table containing mesh participants (orig nodes) */
1627 	spinlock_t forw_bat_list_lock;
1628 
1629 	/** @forw_bat_list_lock: lock protecting forw_bat_list */
1630 	spinlock_t forw_bcast_list_lock;
1631 
1632 	/** @forw_bcast_list_lock: lock protecting forw_bcast_list */
1633 	spinlock_t tp_list_lock;
1634 
1635 	/** @tp_list_lock: spinlock protecting @tp_list */
1636 	atomic_t tp_num;
1637 
1638 	/** @orig_work: work queue callback item for orig node purging */
1639 	struct delayed_work orig_work;
1640 
1641 	/**
1642 	 * @primary_if: one of the hard-interfaces assigned to this mesh
1643 	 *  interface becomes the primary interface
1644 	 */
1645 	struct batadv_hard_iface __rcu *primary_if;  /* rcu protected pointer */
1646 
1647 	/** @algo_ops: routing algorithm used by this mesh interface */
1648 	struct batadv_algo_ops *algo_ops;
1649 
1650 	/**
1651 	 * @softif_vlan_list: a list of softif_vlan structs, one per VLAN
1652 	 *  created on top of the mesh interface represented by this object
1653 	 */
1654 	struct hlist_head softif_vlan_list;
1655 
1656 	/** @softif_vlan_list_lock: lock protecting softif_vlan_list */
1657 	spinlock_t softif_vlan_list_lock;
1658 
1659 #ifdef CONFIG_BATMAN_ADV_BLA
1660 	/** @bla: bridge loope avoidance data */
1661 	struct batadv_priv_bla bla;
1662 #endif
1663 
1664 #ifdef CONFIG_BATMAN_ADV_DEBUG
1665 	/** @debug_log: holding debug logging relevant data */
1666 	struct batadv_priv_debug_log *debug_log;
1667 #endif
1668 
1669 	/** @gw: gateway data */
1670 	struct batadv_priv_gw gw;
1671 
1672 	/** @tt: translation table data */
1673 	struct batadv_priv_tt tt;
1674 
1675 	/** @tvlv: type-version-length-value data */
1676 	struct batadv_priv_tvlv tvlv;
1677 
1678 #ifdef CONFIG_BATMAN_ADV_DAT
1679 	/** @dat: distributed arp table data */
1680 	struct batadv_priv_dat dat;
1681 #endif
1682 
1683 #ifdef CONFIG_BATMAN_ADV_MCAST
1684 	/** @mcast: multicast data */
1685 	struct batadv_priv_mcast mcast;
1686 #endif
1687 
1688 #ifdef CONFIG_BATMAN_ADV_NC
1689 	/**
1690 	 * @network_coding: bool indicating whether network coding is enabled
1691 	 */
1692 	atomic_t network_coding;
1693 
1694 	/** @nc: network coding data */
1695 	struct batadv_priv_nc nc;
1696 #endif /* CONFIG_BATMAN_ADV_NC */
1697 
1698 #ifdef CONFIG_BATMAN_ADV_BATMAN_V
1699 	/** @bat_v: B.A.T.M.A.N. V per soft-interface private data */
1700 	struct batadv_priv_bat_v bat_v;
1701 #endif
1702 };
1703 
1704 /**
1705  * struct batadv_socket_client - layer2 icmp socket client data
1706  */
1707 struct batadv_socket_client {
1708 	/**
1709 	 * @queue_list: packet queue for packets destined for this socket client
1710 	 */
1711 	struct list_head queue_list;
1712 
1713 	/** @queue_len: number of packets in the packet queue (queue_list) */
1714 	unsigned int queue_len;
1715 
1716 	/** @index: socket client's index in the batadv_socket_client_hash */
1717 	unsigned char index;
1718 
1719 	/** @lock: lock protecting queue_list, queue_len & index */
1720 	spinlock_t lock;
1721 
1722 	/** @queue_wait: socket client's wait queue */
1723 	wait_queue_head_t queue_wait;
1724 
1725 	/** @bat_priv: pointer to soft_iface this client belongs to */
1726 	struct batadv_priv *bat_priv;
1727 };
1728 
1729 /**
1730  * struct batadv_socket_packet - layer2 icmp packet for socket client
1731  */
1732 struct batadv_socket_packet {
1733 	/** @list: list node for &batadv_socket_client.queue_list */
1734 	struct list_head list;
1735 
1736 	/** @icmp_len: size of the layer2 icmp packet */
1737 	size_t icmp_len;
1738 
1739 	/** @icmp_packet: layer2 icmp packet */
1740 	u8 icmp_packet[BATADV_ICMP_MAX_PACKET_SIZE];
1741 };
1742 
1743 #ifdef CONFIG_BATMAN_ADV_BLA
1744 
1745 /**
1746  * struct batadv_bla_backbone_gw - batman-adv gateway bridged into the LAN
1747  */
1748 struct batadv_bla_backbone_gw {
1749 	/**
1750 	 * @orig: originator address of backbone node (mac address of primary
1751 	 *  iface)
1752 	 */
1753 	u8 orig[ETH_ALEN];
1754 
1755 	/** @vid: vlan id this gateway was detected on */
1756 	unsigned short vid;
1757 
1758 	/** @hash_entry: hlist node for &batadv_priv_bla.backbone_hash */
1759 	struct hlist_node hash_entry;
1760 
1761 	/** @bat_priv: pointer to soft_iface this backbone gateway belongs to */
1762 	struct batadv_priv *bat_priv;
1763 
1764 	/** @lasttime: last time we heard of this backbone gw */
1765 	unsigned long lasttime;
1766 
1767 	/**
1768 	 * @wait_periods: grace time for bridge forward delays and bla group
1769 	 *  forming at bootup phase - no bcast traffic is formwared until it has
1770 	 *  elapsed
1771 	 */
1772 	atomic_t wait_periods;
1773 
1774 	/**
1775 	 * @request_sent: if this bool is set to true we are out of sync with
1776 	 *  this backbone gateway - no bcast traffic is formwared until the
1777 	 *  situation was resolved
1778 	 */
1779 	atomic_t request_sent;
1780 
1781 	/** @crc: crc16 checksum over all claims */
1782 	u16 crc;
1783 
1784 	/** @crc_lock: lock protecting crc */
1785 	spinlock_t crc_lock;
1786 
1787 	/** @report_work: work struct for reporting detected loops */
1788 	struct work_struct report_work;
1789 
1790 	/** @refcount: number of contexts the object is used */
1791 	struct kref refcount;
1792 
1793 	/** @rcu: struct used for freeing in an RCU-safe manner */
1794 	struct rcu_head rcu;
1795 };
1796 
1797 /**
1798  * struct batadv_bla_claim - claimed non-mesh client structure
1799  */
1800 struct batadv_bla_claim {
1801 	/** @addr: mac address of claimed non-mesh client */
1802 	u8 addr[ETH_ALEN];
1803 
1804 	/** @vid: vlan id this client was detected on */
1805 	unsigned short vid;
1806 
1807 	/** @backbone_gw: pointer to backbone gw claiming this client */
1808 	struct batadv_bla_backbone_gw *backbone_gw;
1809 
1810 	/** @backbone_lock: lock protecting backbone_gw pointer */
1811 	spinlock_t backbone_lock;
1812 
1813 	/** @lasttime: last time we heard of claim (locals only) */
1814 	unsigned long lasttime;
1815 
1816 	/** @hash_entry: hlist node for &batadv_priv_bla.claim_hash */
1817 	struct hlist_node hash_entry;
1818 
1819 	/** @refcount: number of contexts the object is used */
1820 	struct rcu_head rcu;
1821 
1822 	/** @rcu: struct used for freeing in an RCU-safe manner */
1823 	struct kref refcount;
1824 };
1825 #endif
1826 
1827 /**
1828  * struct batadv_tt_common_entry - tt local & tt global common data
1829  */
1830 struct batadv_tt_common_entry {
1831 	/** @addr: mac address of non-mesh client */
1832 	u8 addr[ETH_ALEN];
1833 
1834 	/** @vid: VLAN identifier */
1835 	unsigned short vid;
1836 
1837 	/**
1838 	 * @hash_entry: hlist node for &batadv_priv_tt.local_hash or for
1839 	 *  &batadv_priv_tt.global_hash
1840 	 */
1841 	struct hlist_node hash_entry;
1842 
1843 	/** @flags: various state handling flags (see batadv_tt_client_flags) */
1844 	u16 flags;
1845 
1846 	/** @added_at: timestamp used for purging stale tt common entries */
1847 	unsigned long added_at;
1848 
1849 	/** @refcount: number of contexts the object is used */
1850 	struct kref refcount;
1851 
1852 	/** @rcu: struct used for freeing in an RCU-safe manner */
1853 	struct rcu_head rcu;
1854 };
1855 
1856 /**
1857  * struct batadv_tt_local_entry - translation table local entry data
1858  */
1859 struct batadv_tt_local_entry {
1860 	/** @common: general translation table data */
1861 	struct batadv_tt_common_entry common;
1862 
1863 	/** @last_seen: timestamp used for purging stale tt local entries */
1864 	unsigned long last_seen;
1865 
1866 	/** @vlan: soft-interface vlan of the entry */
1867 	struct batadv_softif_vlan *vlan;
1868 };
1869 
1870 /**
1871  * struct batadv_tt_global_entry - translation table global entry data
1872  */
1873 struct batadv_tt_global_entry {
1874 	/** @common: general translation table data */
1875 	struct batadv_tt_common_entry common;
1876 
1877 	/** @orig_list: list of orig nodes announcing this non-mesh client */
1878 	struct hlist_head orig_list;
1879 
1880 	/** @orig_list_count: number of items in the orig_list */
1881 	atomic_t orig_list_count;
1882 
1883 	/** @list_lock: lock protecting orig_list */
1884 	spinlock_t list_lock;
1885 
1886 	/** @roam_at: time at which TT_GLOBAL_ROAM was set */
1887 	unsigned long roam_at;
1888 };
1889 
1890 /**
1891  * struct batadv_tt_orig_list_entry - orig node announcing a non-mesh client
1892  */
1893 struct batadv_tt_orig_list_entry {
1894 	/** @orig_node: pointer to orig node announcing this non-mesh client */
1895 	struct batadv_orig_node *orig_node;
1896 
1897 	/**
1898 	 * @ttvn: translation table version number which added the non-mesh
1899 	 *  client
1900 	 */
1901 	u8 ttvn;
1902 
1903 	/** @flags: per orig entry TT sync flags */
1904 	u8 flags;
1905 
1906 	/** @list: list node for &batadv_tt_global_entry.orig_list */
1907 	struct hlist_node list;
1908 
1909 	/** @refcount: number of contexts the object is used */
1910 	struct kref refcount;
1911 
1912 	/** @rcu: struct used for freeing in an RCU-safe manner */
1913 	struct rcu_head rcu;
1914 };
1915 
1916 /**
1917  * struct batadv_tt_change_node - structure for tt changes occurred
1918  */
1919 struct batadv_tt_change_node {
1920 	/** @list: list node for &batadv_priv_tt.changes_list */
1921 	struct list_head list;
1922 
1923 	/** @change: holds the actual translation table diff data */
1924 	struct batadv_tvlv_tt_change change;
1925 };
1926 
1927 /**
1928  * struct batadv_tt_req_node - data to keep track of the tt requests in flight
1929  */
1930 struct batadv_tt_req_node {
1931 	/**
1932 	 * @addr: mac address address of the originator this request was sent to
1933 	 */
1934 	u8 addr[ETH_ALEN];
1935 
1936 	/** @issued_at: timestamp used for purging stale tt requests */
1937 	unsigned long issued_at;
1938 
1939 	/** @refcount: number of contexts the object is used by */
1940 	struct kref refcount;
1941 
1942 	/** @list: list node for &batadv_priv_tt.req_list */
1943 	struct hlist_node list;
1944 };
1945 
1946 /**
1947  * struct batadv_tt_roam_node - roaming client data
1948  */
1949 struct batadv_tt_roam_node {
1950 	/** @addr: mac address of the client in the roaming phase */
1951 	u8 addr[ETH_ALEN];
1952 
1953 	/**
1954 	 * @counter: number of allowed roaming events per client within a single
1955 	 * OGM interval (changes are committed with each OGM)
1956 	 */
1957 	atomic_t counter;
1958 
1959 	/**
1960 	 * @first_time: timestamp used for purging stale roaming node entries
1961 	 */
1962 	unsigned long first_time;
1963 
1964 	/** @list: list node for &batadv_priv_tt.roam_list */
1965 	struct list_head list;
1966 };
1967 
1968 /**
1969  * struct batadv_nc_node - network coding node
1970  */
1971 struct batadv_nc_node {
1972 	/** @list: next and prev pointer for the list handling */
1973 	struct list_head list;
1974 
1975 	/** @addr: the node's mac address */
1976 	u8 addr[ETH_ALEN];
1977 
1978 	/** @refcount: number of contexts the object is used by */
1979 	struct kref refcount;
1980 
1981 	/** @rcu: struct used for freeing in an RCU-safe manner */
1982 	struct rcu_head rcu;
1983 
1984 	/** @orig_node: pointer to corresponding orig node struct */
1985 	struct batadv_orig_node *orig_node;
1986 
1987 	/** @last_seen: timestamp of last ogm received from this node */
1988 	unsigned long last_seen;
1989 };
1990 
1991 /**
1992  * struct batadv_nc_path - network coding path
1993  */
1994 struct batadv_nc_path {
1995 	/** @hash_entry: next and prev pointer for the list handling */
1996 	struct hlist_node hash_entry;
1997 
1998 	/** @rcu: struct used for freeing in an RCU-safe manner */
1999 	struct rcu_head rcu;
2000 
2001 	/** @refcount: number of contexts the object is used by */
2002 	struct kref refcount;
2003 
2004 	/** @packet_list: list of buffered packets for this path */
2005 	struct list_head packet_list;
2006 
2007 	/** @packet_list_lock: access lock for packet list */
2008 	spinlock_t packet_list_lock;
2009 
2010 	/** @next_hop: next hop (destination) of path */
2011 	u8 next_hop[ETH_ALEN];
2012 
2013 	/** @prev_hop: previous hop (source) of path */
2014 	u8 prev_hop[ETH_ALEN];
2015 
2016 	/** @last_valid: timestamp for last validation of path */
2017 	unsigned long last_valid;
2018 };
2019 
2020 /**
2021  * struct batadv_nc_packet - network coding packet used when coding and
2022  *  decoding packets
2023  */
2024 struct batadv_nc_packet {
2025 	/** @list: next and prev pointer for the list handling */
2026 	struct list_head list;
2027 
2028 	/** @packet_id: crc32 checksum of skb data */
2029 	__be32 packet_id;
2030 
2031 	/**
2032 	 * @timestamp: field containing the info when the packet was added to
2033 	 *  path
2034 	 */
2035 	unsigned long timestamp;
2036 
2037 	/** @neigh_node: pointer to original next hop neighbor of skb */
2038 	struct batadv_neigh_node *neigh_node;
2039 
2040 	/** @skb: skb which can be encoded or used for decoding */
2041 	struct sk_buff *skb;
2042 
2043 	/** @nc_path: pointer to path this nc packet is attached to */
2044 	struct batadv_nc_path *nc_path;
2045 };
2046 
2047 /**
2048  * struct batadv_skb_cb - control buffer structure used to store private data
2049  *  relevant to batman-adv in the skb->cb buffer in skbs.
2050  */
2051 struct batadv_skb_cb {
2052 	/**
2053 	 * @decoded: Marks a skb as decoded, which is checked when searching for
2054 	 *  coding opportunities in network-coding.c
2055 	 */
2056 	unsigned char decoded:1;
2057 
2058 	/** @num_bcasts: Counter for broadcast packet retransmissions */
2059 	unsigned char num_bcasts;
2060 };
2061 
2062 /**
2063  * struct batadv_forw_packet - structure for bcast packets to be sent/forwarded
2064  */
2065 struct batadv_forw_packet {
2066 	/**
2067 	 * @list: list node for &batadv_priv.forw.bcast_list and
2068 	 *  &batadv_priv.forw.bat_list
2069 	 */
2070 	struct hlist_node list;
2071 
2072 	/** @cleanup_list: list node for purging functions */
2073 	struct hlist_node cleanup_list;
2074 
2075 	/** @send_time: execution time for delayed_work (packet sending) */
2076 	unsigned long send_time;
2077 
2078 	/**
2079 	 * @own: bool for locally generated packets (local OGMs are re-scheduled
2080 	 * after sending)
2081 	 */
2082 	u8 own;
2083 
2084 	/** @skb: bcast packet's skb buffer */
2085 	struct sk_buff *skb;
2086 
2087 	/** @packet_len: size of aggregated OGM packet inside the skb buffer */
2088 	u16 packet_len;
2089 
2090 	/** @direct_link_flags: direct link flags for aggregated OGM packets */
2091 	u32 direct_link_flags;
2092 
2093 	/** @num_packets: counter for aggregated OGMv1 packets */
2094 	u8 num_packets;
2095 
2096 	/** @delayed_work: work queue callback item for packet sending */
2097 	struct delayed_work delayed_work;
2098 
2099 	/**
2100 	 * @if_incoming: pointer to incoming hard-iface or primary iface if
2101 	 *  locally generated packet
2102 	 */
2103 	struct batadv_hard_iface *if_incoming;
2104 
2105 	/**
2106 	 * @if_outgoing: packet where the packet should be sent to, or NULL if
2107 	 *  unspecified
2108 	 */
2109 	struct batadv_hard_iface *if_outgoing;
2110 
2111 	/** @queue_left: The queue (counter) this packet was applied to */
2112 	atomic_t *queue_left;
2113 };
2114 
2115 /**
2116  * struct batadv_algo_iface_ops - mesh algorithm callbacks (interface specific)
2117  */
2118 struct batadv_algo_iface_ops {
2119 	/**
2120 	 * @activate: start routing mechanisms when hard-interface is brought up
2121 	 *  (optional)
2122 	 */
2123 	void (*activate)(struct batadv_hard_iface *hard_iface);
2124 
2125 	/** @enable: init routing info when hard-interface is enabled */
2126 	int (*enable)(struct batadv_hard_iface *hard_iface);
2127 
2128 	/** @disable: de-init routing info when hard-interface is disabled */
2129 	void (*disable)(struct batadv_hard_iface *hard_iface);
2130 
2131 	/**
2132 	 * @update_mac: (re-)init mac addresses of the protocol information
2133 	 *  belonging to this hard-interface
2134 	 */
2135 	void (*update_mac)(struct batadv_hard_iface *hard_iface);
2136 
2137 	/** @primary_set: called when primary interface is selected / changed */
2138 	void (*primary_set)(struct batadv_hard_iface *hard_iface);
2139 };
2140 
2141 /**
2142  * struct batadv_algo_neigh_ops - mesh algorithm callbacks (neighbour specific)
2143  */
2144 struct batadv_algo_neigh_ops {
2145 	/** @hardif_init: called on creation of single hop entry (optional) */
2146 	void (*hardif_init)(struct batadv_hardif_neigh_node *neigh);
2147 
2148 	/**
2149 	 * @cmp: compare the metrics of two neighbors for their respective
2150 	 *  outgoing interfaces
2151 	 */
2152 	int (*cmp)(struct batadv_neigh_node *neigh1,
2153 		   struct batadv_hard_iface *if_outgoing1,
2154 		   struct batadv_neigh_node *neigh2,
2155 		   struct batadv_hard_iface *if_outgoing2);
2156 
2157 	/**
2158 	 * @is_similar_or_better: check if neigh1 is equally similar or better
2159 	 *  than neigh2 for their respective outgoing interface from the metric
2160 	 *  prospective
2161 	 */
2162 	bool (*is_similar_or_better)(struct batadv_neigh_node *neigh1,
2163 				     struct batadv_hard_iface *if_outgoing1,
2164 				     struct batadv_neigh_node *neigh2,
2165 				     struct batadv_hard_iface *if_outgoing2);
2166 
2167 #ifdef CONFIG_BATMAN_ADV_DEBUGFS
2168 	/** @print: print the single hop neighbor list (optional) */
2169 	void (*print)(struct batadv_priv *priv, struct seq_file *seq);
2170 #endif
2171 
2172 	/** @dump: dump neighbors to a netlink socket (optional) */
2173 	void (*dump)(struct sk_buff *msg, struct netlink_callback *cb,
2174 		     struct batadv_priv *priv,
2175 		     struct batadv_hard_iface *hard_iface);
2176 };
2177 
2178 /**
2179  * struct batadv_algo_orig_ops - mesh algorithm callbacks (originator specific)
2180  */
2181 struct batadv_algo_orig_ops {
2182 	/**
2183 	 * @free: free the resources allocated by the routing algorithm for an
2184 	 *  orig_node object (optional)
2185 	 */
2186 	void (*free)(struct batadv_orig_node *orig_node);
2187 
2188 	/**
2189 	 * @add_if: ask the routing algorithm to apply the needed changes to the
2190 	 *  orig_node due to a new hard-interface being added into the mesh
2191 	 *  (optional)
2192 	 */
2193 	int (*add_if)(struct batadv_orig_node *orig_node,
2194 		      unsigned int max_if_num);
2195 
2196 	/**
2197 	 * @del_if: ask the routing algorithm to apply the needed changes to the
2198 	 *  orig_node due to an hard-interface being removed from the mesh
2199 	 *  (optional)
2200 	 */
2201 	int (*del_if)(struct batadv_orig_node *orig_node,
2202 		      unsigned int max_if_num, unsigned int del_if_num);
2203 
2204 #ifdef CONFIG_BATMAN_ADV_DEBUGFS
2205 	/** @print: print the originator table (optional) */
2206 	void (*print)(struct batadv_priv *priv, struct seq_file *seq,
2207 		      struct batadv_hard_iface *hard_iface);
2208 #endif
2209 
2210 	/** @dump: dump originators to a netlink socket (optional) */
2211 	void (*dump)(struct sk_buff *msg, struct netlink_callback *cb,
2212 		     struct batadv_priv *priv,
2213 		     struct batadv_hard_iface *hard_iface);
2214 };
2215 
2216 /**
2217  * struct batadv_algo_gw_ops - mesh algorithm callbacks (GW specific)
2218  */
2219 struct batadv_algo_gw_ops {
2220 	/** @init_sel_class: initialize GW selection class (optional) */
2221 	void (*init_sel_class)(struct batadv_priv *bat_priv);
2222 
2223 	/**
2224 	 * @store_sel_class: parse and stores a new GW selection class
2225 	 *  (optional)
2226 	 */
2227 	ssize_t (*store_sel_class)(struct batadv_priv *bat_priv, char *buff,
2228 				   size_t count);
2229 
2230 	/** @show_sel_class: prints the current GW selection class (optional) */
2231 	ssize_t (*show_sel_class)(struct batadv_priv *bat_priv, char *buff);
2232 
2233 	/**
2234 	 * @get_best_gw_node: select the best GW from the list of available
2235 	 *  nodes (optional)
2236 	 */
2237 	struct batadv_gw_node *(*get_best_gw_node)
2238 		(struct batadv_priv *bat_priv);
2239 
2240 	/**
2241 	 * @is_eligible: check if a newly discovered GW is a potential candidate
2242 	 *  for the election as best GW (optional)
2243 	 */
2244 	bool (*is_eligible)(struct batadv_priv *bat_priv,
2245 			    struct batadv_orig_node *curr_gw_orig,
2246 			    struct batadv_orig_node *orig_node);
2247 
2248 #ifdef CONFIG_BATMAN_ADV_DEBUGFS
2249 	/** @print: print the gateway table (optional) */
2250 	void (*print)(struct batadv_priv *bat_priv, struct seq_file *seq);
2251 #endif
2252 
2253 	/** @dump: dump gateways to a netlink socket (optional) */
2254 	void (*dump)(struct sk_buff *msg, struct netlink_callback *cb,
2255 		     struct batadv_priv *priv);
2256 };
2257 
2258 /**
2259  * struct batadv_algo_ops - mesh algorithm callbacks
2260  */
2261 struct batadv_algo_ops {
2262 	/** @list: list node for the batadv_algo_list */
2263 	struct hlist_node list;
2264 
2265 	/** @name: name of the algorithm */
2266 	char *name;
2267 
2268 	/** @iface: callbacks related to interface handling */
2269 	struct batadv_algo_iface_ops iface;
2270 
2271 	/** @neigh: callbacks related to neighbors handling */
2272 	struct batadv_algo_neigh_ops neigh;
2273 
2274 	/** @orig: callbacks related to originators handling */
2275 	struct batadv_algo_orig_ops orig;
2276 
2277 	/** @gw: callbacks related to GW mode */
2278 	struct batadv_algo_gw_ops gw;
2279 };
2280 
2281 /**
2282  * struct batadv_dat_entry - it is a single entry of batman-adv ARP backend. It
2283  * is used to stored ARP entries needed for the global DAT cache
2284  */
2285 struct batadv_dat_entry {
2286 	/** @ip: the IPv4 corresponding to this DAT/ARP entry */
2287 	__be32 ip;
2288 
2289 	/** @mac_addr: the MAC address associated to the stored IPv4 */
2290 	u8 mac_addr[ETH_ALEN];
2291 
2292 	/** @vid: the vlan ID associated to this entry */
2293 	unsigned short vid;
2294 
2295 	/**
2296 	 * @last_update: time in jiffies when this entry was refreshed last time
2297 	 */
2298 	unsigned long last_update;
2299 
2300 	/** @hash_entry: hlist node for &batadv_priv_dat.hash */
2301 	struct hlist_node hash_entry;
2302 
2303 	/** @refcount: number of contexts the object is used */
2304 	struct kref refcount;
2305 
2306 	/** @rcu: struct used for freeing in an RCU-safe manner */
2307 	struct rcu_head rcu;
2308 };
2309 
2310 /**
2311  * struct batadv_hw_addr - a list entry for a MAC address
2312  */
2313 struct batadv_hw_addr {
2314 	/** @list: list node for the linking of entries */
2315 	struct hlist_node list;
2316 
2317 	/** @addr: the MAC address of this list entry */
2318 	unsigned char addr[ETH_ALEN];
2319 };
2320 
2321 /**
2322  * struct batadv_dat_candidate - candidate destination for DAT operations
2323  */
2324 struct batadv_dat_candidate {
2325 	/**
2326 	 * @type: the type of the selected candidate. It can one of the
2327 	 *  following:
2328 	 *	  - BATADV_DAT_CANDIDATE_NOT_FOUND
2329 	 *	  - BATADV_DAT_CANDIDATE_ORIG
2330 	 */
2331 	int type;
2332 
2333 	/**
2334 	 * @orig_node: if type is BATADV_DAT_CANDIDATE_ORIG this field points to
2335 	 * the corresponding originator node structure
2336 	 */
2337 	struct batadv_orig_node *orig_node;
2338 };
2339 
2340 /**
2341  * struct batadv_tvlv_container - container for tvlv appended to OGMs
2342  */
2343 struct batadv_tvlv_container {
2344 	/** @list: hlist node for &batadv_priv_tvlv.container_list */
2345 	struct hlist_node list;
2346 
2347 	/** @tvlv_hdr: tvlv header information needed to construct the tvlv */
2348 	struct batadv_tvlv_hdr tvlv_hdr;
2349 
2350 	/** @refcount: number of contexts the object is used */
2351 	struct kref refcount;
2352 };
2353 
2354 /**
2355  * struct batadv_tvlv_handler - handler for specific tvlv type and version
2356  */
2357 struct batadv_tvlv_handler {
2358 	/** @list: hlist node for &batadv_priv_tvlv.handler_list */
2359 	struct hlist_node list;
2360 
2361 	/**
2362 	 * @ogm_handler: handler callback which is given the tvlv payload to
2363 	 *  process on incoming OGM packets
2364 	 */
2365 	void (*ogm_handler)(struct batadv_priv *bat_priv,
2366 			    struct batadv_orig_node *orig,
2367 			    u8 flags, void *tvlv_value, u16 tvlv_value_len);
2368 
2369 	/**
2370 	 * @unicast_handler: handler callback which is given the tvlv payload to
2371 	 *  process on incoming unicast tvlv packets
2372 	 */
2373 	int (*unicast_handler)(struct batadv_priv *bat_priv,
2374 			       u8 *src, u8 *dst,
2375 			       void *tvlv_value, u16 tvlv_value_len);
2376 
2377 	/** @type: tvlv type this handler feels responsible for */
2378 	u8 type;
2379 
2380 	/** @version: tvlv version this handler feels responsible for */
2381 	u8 version;
2382 
2383 	/** @flags: tvlv handler flags */
2384 	u8 flags;
2385 
2386 	/** @refcount: number of contexts the object is used */
2387 	struct kref refcount;
2388 
2389 	/** @rcu: struct used for freeing in an RCU-safe manner */
2390 	struct rcu_head rcu;
2391 };
2392 
2393 /**
2394  * enum batadv_tvlv_handler_flags - tvlv handler flags definitions
2395  */
2396 enum batadv_tvlv_handler_flags {
2397 	/**
2398 	 * @BATADV_TVLV_HANDLER_OGM_CIFNOTFND: tvlv ogm processing function
2399 	 *  will call this handler even if its type was not found (with no data)
2400 	 */
2401 	BATADV_TVLV_HANDLER_OGM_CIFNOTFND = BIT(1),
2402 
2403 	/**
2404 	 * @BATADV_TVLV_HANDLER_OGM_CALLED: interval tvlv handling flag - the
2405 	 *  API marks a handler as being called, so it won't be called if the
2406 	 *  BATADV_TVLV_HANDLER_OGM_CIFNOTFND flag was set
2407 	 */
2408 	BATADV_TVLV_HANDLER_OGM_CALLED = BIT(2),
2409 };
2410 
2411 /**
2412  * struct batadv_store_mesh_work - Work queue item to detach add/del interface
2413  *  from sysfs locks
2414  */
2415 struct batadv_store_mesh_work {
2416 	/**
2417 	 * @net_dev: netdevice to add/remove to/from batman-adv soft-interface
2418 	 */
2419 	struct net_device *net_dev;
2420 
2421 	/** @soft_iface_name: name of soft-interface to modify */
2422 	char soft_iface_name[IFNAMSIZ];
2423 
2424 	/** @work: work queue item */
2425 	struct work_struct work;
2426 };
2427 
2428 #endif /* _NET_BATMAN_ADV_TYPES_H_ */
2429