1 /* Copyright (C) 2012-2015 B.A.T.M.A.N. contributors:
3 * Martin Hundebøll, Jeppe Ledet-Pedersen
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.
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.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 #include "network-coding.h"
21 #include <linux/atomic.h>
22 #include <linux/byteorder/generic.h>
23 #include <linux/compiler.h>
24 #include <linux/debugfs.h>
25 #include <linux/errno.h>
26 #include <linux/etherdevice.h>
28 #include <linux/if_ether.h>
29 #include <linux/if_packet.h>
30 #include <linux/init.h>
31 #include <linux/jhash.h>
32 #include <linux/jiffies.h>
33 #include <linux/kernel.h>
34 #include <linux/list.h>
35 #include <linux/lockdep.h>
36 #include <linux/netdevice.h>
37 #include <linux/printk.h>
38 #include <linux/random.h>
39 #include <linux/rculist.h>
40 #include <linux/rcupdate.h>
41 #include <linux/seq_file.h>
42 #include <linux/skbuff.h>
43 #include <linux/slab.h>
44 #include <linux/spinlock.h>
45 #include <linux/stat.h>
46 #include <linux/stddef.h>
47 #include <linux/string.h>
48 #include <linux/workqueue.h>
50 #include "hard-interface.h"
52 #include "originator.h"
57 static struct lock_class_key batadv_nc_coding_hash_lock_class_key
;
58 static struct lock_class_key batadv_nc_decoding_hash_lock_class_key
;
60 static void batadv_nc_worker(struct work_struct
*work
);
61 static int batadv_nc_recv_coded_packet(struct sk_buff
*skb
,
62 struct batadv_hard_iface
*recv_if
);
65 * batadv_nc_init - one-time initialization for network coding
67 int __init
batadv_nc_init(void)
71 /* Register our packet type */
72 ret
= batadv_recv_handler_register(BATADV_CODED
,
73 batadv_nc_recv_coded_packet
);
79 * batadv_nc_start_timer - initialise the nc periodic worker
80 * @bat_priv: the bat priv with all the soft interface information
82 static void batadv_nc_start_timer(struct batadv_priv
*bat_priv
)
84 queue_delayed_work(batadv_event_workqueue
, &bat_priv
->nc
.work
,
85 msecs_to_jiffies(10));
89 * batadv_nc_tvlv_container_update - update the network coding tvlv container
90 * after network coding setting change
91 * @bat_priv: the bat priv with all the soft interface information
93 static void batadv_nc_tvlv_container_update(struct batadv_priv
*bat_priv
)
97 nc_mode
= atomic_read(&bat_priv
->network_coding
);
101 batadv_tvlv_container_unregister(bat_priv
, BATADV_TVLV_NC
, 1);
104 batadv_tvlv_container_register(bat_priv
, BATADV_TVLV_NC
, 1,
111 * batadv_nc_status_update - update the network coding tvlv container after
112 * network coding setting change
113 * @net_dev: the soft interface net device
115 void batadv_nc_status_update(struct net_device
*net_dev
)
117 struct batadv_priv
*bat_priv
= netdev_priv(net_dev
);
119 batadv_nc_tvlv_container_update(bat_priv
);
123 * batadv_nc_tvlv_ogm_handler_v1 - process incoming nc tvlv container
124 * @bat_priv: the bat priv with all the soft interface information
125 * @orig: the orig_node of the ogm
126 * @flags: flags indicating the tvlv state (see batadv_tvlv_handler_flags)
127 * @tvlv_value: tvlv buffer containing the gateway data
128 * @tvlv_value_len: tvlv buffer length
130 static void batadv_nc_tvlv_ogm_handler_v1(struct batadv_priv
*bat_priv
,
131 struct batadv_orig_node
*orig
,
134 uint16_t tvlv_value_len
)
136 if (flags
& BATADV_TVLV_HANDLER_OGM_CIFNOTFND
)
137 orig
->capabilities
&= ~BATADV_ORIG_CAPA_HAS_NC
;
139 orig
->capabilities
|= BATADV_ORIG_CAPA_HAS_NC
;
143 * batadv_nc_mesh_init - initialise coding hash table and start house keeping
144 * @bat_priv: the bat priv with all the soft interface information
146 int batadv_nc_mesh_init(struct batadv_priv
*bat_priv
)
148 bat_priv
->nc
.timestamp_fwd_flush
= jiffies
;
149 bat_priv
->nc
.timestamp_sniffed_purge
= jiffies
;
151 if (bat_priv
->nc
.coding_hash
|| bat_priv
->nc
.decoding_hash
)
154 bat_priv
->nc
.coding_hash
= batadv_hash_new(128);
155 if (!bat_priv
->nc
.coding_hash
)
158 batadv_hash_set_lock_class(bat_priv
->nc
.coding_hash
,
159 &batadv_nc_coding_hash_lock_class_key
);
161 bat_priv
->nc
.decoding_hash
= batadv_hash_new(128);
162 if (!bat_priv
->nc
.decoding_hash
)
165 batadv_hash_set_lock_class(bat_priv
->nc
.decoding_hash
,
166 &batadv_nc_decoding_hash_lock_class_key
);
168 INIT_DELAYED_WORK(&bat_priv
->nc
.work
, batadv_nc_worker
);
169 batadv_nc_start_timer(bat_priv
);
171 batadv_tvlv_handler_register(bat_priv
, batadv_nc_tvlv_ogm_handler_v1
,
172 NULL
, BATADV_TVLV_NC
, 1,
173 BATADV_TVLV_HANDLER_OGM_CIFNOTFND
);
174 batadv_nc_tvlv_container_update(bat_priv
);
182 * batadv_nc_init_bat_priv - initialise the nc specific bat_priv variables
183 * @bat_priv: the bat priv with all the soft interface information
185 void batadv_nc_init_bat_priv(struct batadv_priv
*bat_priv
)
187 atomic_set(&bat_priv
->network_coding
, 0);
188 bat_priv
->nc
.min_tq
= 200;
189 bat_priv
->nc
.max_fwd_delay
= 10;
190 bat_priv
->nc
.max_buffer_time
= 200;
194 * batadv_nc_init_orig - initialise the nc fields of an orig_node
195 * @orig_node: the orig_node which is going to be initialised
197 void batadv_nc_init_orig(struct batadv_orig_node
*orig_node
)
199 INIT_LIST_HEAD(&orig_node
->in_coding_list
);
200 INIT_LIST_HEAD(&orig_node
->out_coding_list
);
201 spin_lock_init(&orig_node
->in_coding_list_lock
);
202 spin_lock_init(&orig_node
->out_coding_list_lock
);
206 * batadv_nc_node_free_rcu - rcu callback to free an nc node and remove
207 * its refcount on the orig_node
208 * @rcu: rcu pointer of the nc node
210 static void batadv_nc_node_free_rcu(struct rcu_head
*rcu
)
212 struct batadv_nc_node
*nc_node
;
214 nc_node
= container_of(rcu
, struct batadv_nc_node
, rcu
);
215 batadv_orig_node_free_ref(nc_node
->orig_node
);
220 * batadv_nc_node_free_ref - decrements the nc node refcounter and possibly
222 * @nc_node: the nc node to free
224 static void batadv_nc_node_free_ref(struct batadv_nc_node
*nc_node
)
226 if (atomic_dec_and_test(&nc_node
->refcount
))
227 call_rcu(&nc_node
->rcu
, batadv_nc_node_free_rcu
);
231 * batadv_nc_path_free_ref - decrements the nc path refcounter and possibly
233 * @nc_path: the nc node to free
235 static void batadv_nc_path_free_ref(struct batadv_nc_path
*nc_path
)
237 if (atomic_dec_and_test(&nc_path
->refcount
))
238 kfree_rcu(nc_path
, rcu
);
242 * batadv_nc_packet_free - frees nc packet
243 * @nc_packet: the nc packet to free
245 static void batadv_nc_packet_free(struct batadv_nc_packet
*nc_packet
)
248 kfree_skb(nc_packet
->skb
);
250 batadv_nc_path_free_ref(nc_packet
->nc_path
);
255 * batadv_nc_to_purge_nc_node - checks whether an nc node has to be purged
256 * @bat_priv: the bat priv with all the soft interface information
257 * @nc_node: the nc node to check
259 * Returns true if the entry has to be purged now, false otherwise
261 static bool batadv_nc_to_purge_nc_node(struct batadv_priv
*bat_priv
,
262 struct batadv_nc_node
*nc_node
)
264 if (atomic_read(&bat_priv
->mesh_state
) != BATADV_MESH_ACTIVE
)
267 return batadv_has_timed_out(nc_node
->last_seen
, BATADV_NC_NODE_TIMEOUT
);
271 * batadv_nc_to_purge_nc_path_coding - checks whether an nc path has timed out
272 * @bat_priv: the bat priv with all the soft interface information
273 * @nc_path: the nc path to check
275 * Returns true if the entry has to be purged now, false otherwise
277 static bool batadv_nc_to_purge_nc_path_coding(struct batadv_priv
*bat_priv
,
278 struct batadv_nc_path
*nc_path
)
280 if (atomic_read(&bat_priv
->mesh_state
) != BATADV_MESH_ACTIVE
)
283 /* purge the path when no packets has been added for 10 times the
286 return batadv_has_timed_out(nc_path
->last_valid
,
287 bat_priv
->nc
.max_fwd_delay
* 10);
291 * batadv_nc_to_purge_nc_path_decoding - checks whether an nc path has timed out
292 * @bat_priv: the bat priv with all the soft interface information
293 * @nc_path: the nc path to check
295 * Returns true if the entry has to be purged now, false otherwise
297 static bool batadv_nc_to_purge_nc_path_decoding(struct batadv_priv
*bat_priv
,
298 struct batadv_nc_path
*nc_path
)
300 if (atomic_read(&bat_priv
->mesh_state
) != BATADV_MESH_ACTIVE
)
303 /* purge the path when no packets has been added for 10 times the
306 return batadv_has_timed_out(nc_path
->last_valid
,
307 bat_priv
->nc
.max_buffer_time
* 10);
311 * batadv_nc_purge_orig_nc_nodes - go through list of nc nodes and purge stale
313 * @bat_priv: the bat priv with all the soft interface information
314 * @list: list of nc nodes
315 * @lock: nc node list lock
316 * @to_purge: function in charge to decide whether an entry has to be purged or
317 * not. This function takes the nc node as argument and has to return
318 * a boolean value: true if the entry has to be deleted, false
322 batadv_nc_purge_orig_nc_nodes(struct batadv_priv
*bat_priv
,
323 struct list_head
*list
,
325 bool (*to_purge
)(struct batadv_priv
*,
326 struct batadv_nc_node
*))
328 struct batadv_nc_node
*nc_node
, *nc_node_tmp
;
330 /* For each nc_node in list */
332 list_for_each_entry_safe(nc_node
, nc_node_tmp
, list
, list
) {
333 /* if an helper function has been passed as parameter,
334 * ask it if the entry has to be purged or not
336 if (to_purge
&& !to_purge(bat_priv
, nc_node
))
339 batadv_dbg(BATADV_DBG_NC
, bat_priv
,
340 "Removing nc_node %pM -> %pM\n",
341 nc_node
->addr
, nc_node
->orig_node
->orig
);
342 list_del_rcu(&nc_node
->list
);
343 batadv_nc_node_free_ref(nc_node
);
345 spin_unlock_bh(lock
);
349 * batadv_nc_purge_orig - purges all nc node data attached of the given
351 * @bat_priv: the bat priv with all the soft interface information
352 * @orig_node: orig_node with the nc node entries to be purged
353 * @to_purge: function in charge to decide whether an entry has to be purged or
354 * not. This function takes the nc node as argument and has to return
355 * a boolean value: true is the entry has to be deleted, false
358 void batadv_nc_purge_orig(struct batadv_priv
*bat_priv
,
359 struct batadv_orig_node
*orig_node
,
360 bool (*to_purge
)(struct batadv_priv
*,
361 struct batadv_nc_node
*))
363 /* Check ingoing nc_node's of this orig_node */
364 batadv_nc_purge_orig_nc_nodes(bat_priv
, &orig_node
->in_coding_list
,
365 &orig_node
->in_coding_list_lock
,
368 /* Check outgoing nc_node's of this orig_node */
369 batadv_nc_purge_orig_nc_nodes(bat_priv
, &orig_node
->out_coding_list
,
370 &orig_node
->out_coding_list_lock
,
375 * batadv_nc_purge_orig_hash - traverse entire originator hash to check if they
376 * have timed out nc nodes
377 * @bat_priv: the bat priv with all the soft interface information
379 static void batadv_nc_purge_orig_hash(struct batadv_priv
*bat_priv
)
381 struct batadv_hashtable
*hash
= bat_priv
->orig_hash
;
382 struct hlist_head
*head
;
383 struct batadv_orig_node
*orig_node
;
389 /* For each orig_node */
390 for (i
= 0; i
< hash
->size
; i
++) {
391 head
= &hash
->table
[i
];
394 hlist_for_each_entry_rcu(orig_node
, head
, hash_entry
)
395 batadv_nc_purge_orig(bat_priv
, orig_node
,
396 batadv_nc_to_purge_nc_node
);
402 * batadv_nc_purge_paths - traverse all nc paths part of the hash and remove
404 * @bat_priv: the bat priv with all the soft interface information
405 * @hash: hash table containing the nc paths to check
406 * @to_purge: function in charge to decide whether an entry has to be purged or
407 * not. This function takes the nc node as argument and has to return
408 * a boolean value: true is the entry has to be deleted, false
411 static void batadv_nc_purge_paths(struct batadv_priv
*bat_priv
,
412 struct batadv_hashtable
*hash
,
413 bool (*to_purge
)(struct batadv_priv
*,
414 struct batadv_nc_path
*))
416 struct hlist_head
*head
;
417 struct hlist_node
*node_tmp
;
418 struct batadv_nc_path
*nc_path
;
419 spinlock_t
*lock
; /* Protects lists in hash */
422 for (i
= 0; i
< hash
->size
; i
++) {
423 head
= &hash
->table
[i
];
424 lock
= &hash
->list_locks
[i
];
426 /* For each nc_path in this bin */
428 hlist_for_each_entry_safe(nc_path
, node_tmp
, head
, hash_entry
) {
429 /* if an helper function has been passed as parameter,
430 * ask it if the entry has to be purged or not
432 if (to_purge
&& !to_purge(bat_priv
, nc_path
))
435 /* purging an non-empty nc_path should never happen, but
436 * is observed under high CPU load. Delay the purging
437 * until next iteration to allow the packet_list to be
440 if (!unlikely(list_empty(&nc_path
->packet_list
))) {
441 net_ratelimited_function(printk
,
443 "Skipping free of non-empty nc_path (%pM -> %pM)!\n",
449 /* nc_path is unused, so remove it */
450 batadv_dbg(BATADV_DBG_NC
, bat_priv
,
451 "Remove nc_path %pM -> %pM\n",
452 nc_path
->prev_hop
, nc_path
->next_hop
);
453 hlist_del_rcu(&nc_path
->hash_entry
);
454 batadv_nc_path_free_ref(nc_path
);
456 spin_unlock_bh(lock
);
461 * batadv_nc_hash_key_gen - computes the nc_path hash key
462 * @key: buffer to hold the final hash key
463 * @src: source ethernet mac address going into the hash key
464 * @dst: destination ethernet mac address going into the hash key
466 static void batadv_nc_hash_key_gen(struct batadv_nc_path
*key
, const char *src
,
469 memcpy(key
->prev_hop
, src
, sizeof(key
->prev_hop
));
470 memcpy(key
->next_hop
, dst
, sizeof(key
->next_hop
));
474 * batadv_nc_hash_choose - compute the hash value for an nc path
475 * @data: data to hash
476 * @size: size of the hash table
478 * Returns the selected index in the hash table for the given data.
480 static uint32_t batadv_nc_hash_choose(const void *data
, uint32_t size
)
482 const struct batadv_nc_path
*nc_path
= data
;
485 hash
= jhash(&nc_path
->prev_hop
, sizeof(nc_path
->prev_hop
), hash
);
486 hash
= jhash(&nc_path
->next_hop
, sizeof(nc_path
->next_hop
), hash
);
492 * batadv_nc_hash_compare - comparing function used in the network coding hash
494 * @node: node in the local table
495 * @data2: second object to compare the node to
497 * Returns 1 if the two entry are the same, 0 otherwise
499 static int batadv_nc_hash_compare(const struct hlist_node
*node
,
502 const struct batadv_nc_path
*nc_path1
, *nc_path2
;
504 nc_path1
= container_of(node
, struct batadv_nc_path
, hash_entry
);
507 /* Return 1 if the two keys are identical */
508 if (memcmp(nc_path1
->prev_hop
, nc_path2
->prev_hop
,
509 sizeof(nc_path1
->prev_hop
)) != 0)
512 if (memcmp(nc_path1
->next_hop
, nc_path2
->next_hop
,
513 sizeof(nc_path1
->next_hop
)) != 0)
520 * batadv_nc_hash_find - search for an existing nc path and return it
521 * @hash: hash table containing the nc path
524 * Returns the nc_path if found, NULL otherwise.
526 static struct batadv_nc_path
*
527 batadv_nc_hash_find(struct batadv_hashtable
*hash
,
530 struct hlist_head
*head
;
531 struct batadv_nc_path
*nc_path
, *nc_path_tmp
= NULL
;
537 index
= batadv_nc_hash_choose(data
, hash
->size
);
538 head
= &hash
->table
[index
];
541 hlist_for_each_entry_rcu(nc_path
, head
, hash_entry
) {
542 if (!batadv_nc_hash_compare(&nc_path
->hash_entry
, data
))
545 if (!atomic_inc_not_zero(&nc_path
->refcount
))
548 nc_path_tmp
= nc_path
;
557 * batadv_nc_send_packet - send non-coded packet and free nc_packet struct
558 * @nc_packet: the nc packet to send
560 static void batadv_nc_send_packet(struct batadv_nc_packet
*nc_packet
)
562 batadv_send_skb_packet(nc_packet
->skb
,
563 nc_packet
->neigh_node
->if_incoming
,
564 nc_packet
->nc_path
->next_hop
);
565 nc_packet
->skb
= NULL
;
566 batadv_nc_packet_free(nc_packet
);
570 * batadv_nc_sniffed_purge - Checks timestamp of given sniffed nc_packet.
571 * @bat_priv: the bat priv with all the soft interface information
572 * @nc_path: the nc path the packet belongs to
573 * @nc_packet: the nc packet to be checked
575 * Checks whether the given sniffed (overheard) nc_packet has hit its buffering
576 * timeout. If so, the packet is no longer kept and the entry deleted from the
577 * queue. Has to be called with the appropriate locks.
579 * Returns false as soon as the entry in the fifo queue has not been timed out
580 * yet and true otherwise.
582 static bool batadv_nc_sniffed_purge(struct batadv_priv
*bat_priv
,
583 struct batadv_nc_path
*nc_path
,
584 struct batadv_nc_packet
*nc_packet
)
586 unsigned long timeout
= bat_priv
->nc
.max_buffer_time
;
589 /* Packets are added to tail, so the remaining packets did not time
590 * out and we can stop processing the current queue
592 if (atomic_read(&bat_priv
->mesh_state
) == BATADV_MESH_ACTIVE
&&
593 !batadv_has_timed_out(nc_packet
->timestamp
, timeout
))
596 /* purge nc packet */
597 list_del(&nc_packet
->list
);
598 batadv_nc_packet_free(nc_packet
);
607 * batadv_nc_fwd_flush - Checks the timestamp of the given nc packet.
608 * @bat_priv: the bat priv with all the soft interface information
609 * @nc_path: the nc path the packet belongs to
610 * @nc_packet: the nc packet to be checked
612 * Checks whether the given nc packet has hit its forward timeout. If so, the
613 * packet is no longer delayed, immediately sent and the entry deleted from the
614 * queue. Has to be called with the appropriate locks.
616 * Returns false as soon as the entry in the fifo queue has not been timed out
617 * yet and true otherwise.
619 static bool batadv_nc_fwd_flush(struct batadv_priv
*bat_priv
,
620 struct batadv_nc_path
*nc_path
,
621 struct batadv_nc_packet
*nc_packet
)
623 unsigned long timeout
= bat_priv
->nc
.max_fwd_delay
;
625 /* Packets are added to tail, so the remaining packets did not time
626 * out and we can stop processing the current queue
628 if (atomic_read(&bat_priv
->mesh_state
) == BATADV_MESH_ACTIVE
&&
629 !batadv_has_timed_out(nc_packet
->timestamp
, timeout
))
633 batadv_inc_counter(bat_priv
, BATADV_CNT_FORWARD
);
634 batadv_add_counter(bat_priv
, BATADV_CNT_FORWARD_BYTES
,
635 nc_packet
->skb
->len
+ ETH_HLEN
);
636 list_del(&nc_packet
->list
);
637 batadv_nc_send_packet(nc_packet
);
643 * batadv_nc_process_nc_paths - traverse given nc packet pool and free timed out
645 * @bat_priv: the bat priv with all the soft interface information
646 * @hash: to be processed hash table
647 * @process_fn: Function called to process given nc packet. Should return true
648 * to encourage this function to proceed with the next packet.
649 * Otherwise the rest of the current queue is skipped.
652 batadv_nc_process_nc_paths(struct batadv_priv
*bat_priv
,
653 struct batadv_hashtable
*hash
,
654 bool (*process_fn
)(struct batadv_priv
*,
655 struct batadv_nc_path
*,
656 struct batadv_nc_packet
*))
658 struct hlist_head
*head
;
659 struct batadv_nc_packet
*nc_packet
, *nc_packet_tmp
;
660 struct batadv_nc_path
*nc_path
;
667 /* Loop hash table bins */
668 for (i
= 0; i
< hash
->size
; i
++) {
669 head
= &hash
->table
[i
];
671 /* Loop coding paths */
673 hlist_for_each_entry_rcu(nc_path
, head
, hash_entry
) {
675 spin_lock_bh(&nc_path
->packet_list_lock
);
676 list_for_each_entry_safe(nc_packet
, nc_packet_tmp
,
677 &nc_path
->packet_list
, list
) {
678 ret
= process_fn(bat_priv
, nc_path
, nc_packet
);
682 spin_unlock_bh(&nc_path
->packet_list_lock
);
689 * batadv_nc_worker - periodic task for house keeping related to network coding
690 * @work: kernel work struct
692 static void batadv_nc_worker(struct work_struct
*work
)
694 struct delayed_work
*delayed_work
;
695 struct batadv_priv_nc
*priv_nc
;
696 struct batadv_priv
*bat_priv
;
697 unsigned long timeout
;
699 delayed_work
= container_of(work
, struct delayed_work
, work
);
700 priv_nc
= container_of(delayed_work
, struct batadv_priv_nc
, work
);
701 bat_priv
= container_of(priv_nc
, struct batadv_priv
, nc
);
703 batadv_nc_purge_orig_hash(bat_priv
);
704 batadv_nc_purge_paths(bat_priv
, bat_priv
->nc
.coding_hash
,
705 batadv_nc_to_purge_nc_path_coding
);
706 batadv_nc_purge_paths(bat_priv
, bat_priv
->nc
.decoding_hash
,
707 batadv_nc_to_purge_nc_path_decoding
);
709 timeout
= bat_priv
->nc
.max_fwd_delay
;
711 if (batadv_has_timed_out(bat_priv
->nc
.timestamp_fwd_flush
, timeout
)) {
712 batadv_nc_process_nc_paths(bat_priv
, bat_priv
->nc
.coding_hash
,
713 batadv_nc_fwd_flush
);
714 bat_priv
->nc
.timestamp_fwd_flush
= jiffies
;
717 if (batadv_has_timed_out(bat_priv
->nc
.timestamp_sniffed_purge
,
718 bat_priv
->nc
.max_buffer_time
)) {
719 batadv_nc_process_nc_paths(bat_priv
, bat_priv
->nc
.decoding_hash
,
720 batadv_nc_sniffed_purge
);
721 bat_priv
->nc
.timestamp_sniffed_purge
= jiffies
;
724 /* Schedule a new check */
725 batadv_nc_start_timer(bat_priv
);
729 * batadv_can_nc_with_orig - checks whether the given orig node is suitable for
731 * @bat_priv: the bat priv with all the soft interface information
732 * @orig_node: neighboring orig node which may be used as nc candidate
733 * @ogm_packet: incoming ogm packet also used for the checks
736 * 1) The OGM must have the most recent sequence number.
737 * 2) The TTL must be decremented by one and only one.
738 * 3) The OGM must be received from the first hop from orig_node.
739 * 4) The TQ value of the OGM must be above bat_priv->nc.min_tq.
741 static bool batadv_can_nc_with_orig(struct batadv_priv
*bat_priv
,
742 struct batadv_orig_node
*orig_node
,
743 struct batadv_ogm_packet
*ogm_packet
)
745 struct batadv_orig_ifinfo
*orig_ifinfo
;
746 uint32_t last_real_seqno
;
749 orig_ifinfo
= batadv_orig_ifinfo_get(orig_node
, BATADV_IF_DEFAULT
);
753 last_ttl
= orig_ifinfo
->last_ttl
;
754 last_real_seqno
= orig_ifinfo
->last_real_seqno
;
755 batadv_orig_ifinfo_free_ref(orig_ifinfo
);
757 if (last_real_seqno
!= ntohl(ogm_packet
->seqno
))
759 if (last_ttl
!= ogm_packet
->ttl
+ 1)
761 if (!batadv_compare_eth(ogm_packet
->orig
, ogm_packet
->prev_sender
))
763 if (ogm_packet
->tq
< bat_priv
->nc
.min_tq
)
770 * batadv_nc_find_nc_node - search for an existing nc node and return it
771 * @orig_node: orig node originating the ogm packet
772 * @orig_neigh_node: neighboring orig node from which we received the ogm packet
773 * (can be equal to orig_node)
774 * @in_coding: traverse incoming or outgoing network coding list
776 * Returns the nc_node if found, NULL otherwise.
778 static struct batadv_nc_node
779 *batadv_nc_find_nc_node(struct batadv_orig_node
*orig_node
,
780 struct batadv_orig_node
*orig_neigh_node
,
783 struct batadv_nc_node
*nc_node
, *nc_node_out
= NULL
;
784 struct list_head
*list
;
787 list
= &orig_neigh_node
->in_coding_list
;
789 list
= &orig_neigh_node
->out_coding_list
;
791 /* Traverse list of nc_nodes to orig_node */
793 list_for_each_entry_rcu(nc_node
, list
, list
) {
794 if (!batadv_compare_eth(nc_node
->addr
, orig_node
->orig
))
797 if (!atomic_inc_not_zero(&nc_node
->refcount
))
801 nc_node_out
= nc_node
;
810 * batadv_nc_get_nc_node - retrieves an nc node or creates the entry if it was
812 * @bat_priv: the bat priv with all the soft interface information
813 * @orig_node: orig node originating the ogm packet
814 * @orig_neigh_node: neighboring orig node from which we received the ogm packet
815 * (can be equal to orig_node)
816 * @in_coding: traverse incoming or outgoing network coding list
818 * Returns the nc_node if found or created, NULL in case of an error.
820 static struct batadv_nc_node
821 *batadv_nc_get_nc_node(struct batadv_priv
*bat_priv
,
822 struct batadv_orig_node
*orig_node
,
823 struct batadv_orig_node
*orig_neigh_node
,
826 struct batadv_nc_node
*nc_node
;
827 spinlock_t
*lock
; /* Used to lock list selected by "int in_coding" */
828 struct list_head
*list
;
830 /* Check if nc_node is already added */
831 nc_node
= batadv_nc_find_nc_node(orig_node
, orig_neigh_node
, in_coding
);
837 nc_node
= kzalloc(sizeof(*nc_node
), GFP_ATOMIC
);
841 if (!atomic_inc_not_zero(&orig_neigh_node
->refcount
))
844 /* Initialize nc_node */
845 INIT_LIST_HEAD(&nc_node
->list
);
846 ether_addr_copy(nc_node
->addr
, orig_node
->orig
);
847 nc_node
->orig_node
= orig_neigh_node
;
848 atomic_set(&nc_node
->refcount
, 2);
850 /* Select ingoing or outgoing coding node */
852 lock
= &orig_neigh_node
->in_coding_list_lock
;
853 list
= &orig_neigh_node
->in_coding_list
;
855 lock
= &orig_neigh_node
->out_coding_list_lock
;
856 list
= &orig_neigh_node
->out_coding_list
;
859 batadv_dbg(BATADV_DBG_NC
, bat_priv
, "Adding nc_node %pM -> %pM\n",
860 nc_node
->addr
, nc_node
->orig_node
->orig
);
862 /* Add nc_node to orig_node */
864 list_add_tail_rcu(&nc_node
->list
, list
);
865 spin_unlock_bh(lock
);
875 * batadv_nc_update_nc_node - updates stored incoming and outgoing nc node structs
876 * (best called on incoming OGMs)
877 * @bat_priv: the bat priv with all the soft interface information
878 * @orig_node: orig node originating the ogm packet
879 * @orig_neigh_node: neighboring orig node from which we received the ogm packet
880 * (can be equal to orig_node)
881 * @ogm_packet: incoming ogm packet
882 * @is_single_hop_neigh: orig_node is a single hop neighbor
884 void batadv_nc_update_nc_node(struct batadv_priv
*bat_priv
,
885 struct batadv_orig_node
*orig_node
,
886 struct batadv_orig_node
*orig_neigh_node
,
887 struct batadv_ogm_packet
*ogm_packet
,
888 int is_single_hop_neigh
)
890 struct batadv_nc_node
*in_nc_node
= NULL
, *out_nc_node
= NULL
;
892 /* Check if network coding is enabled */
893 if (!atomic_read(&bat_priv
->network_coding
))
896 /* check if orig node is network coding enabled */
897 if (!(orig_node
->capabilities
& BATADV_ORIG_CAPA_HAS_NC
))
900 /* accept ogms from 'good' neighbors and single hop neighbors */
901 if (!batadv_can_nc_with_orig(bat_priv
, orig_node
, ogm_packet
) &&
902 !is_single_hop_neigh
)
905 /* Add orig_node as in_nc_node on hop */
906 in_nc_node
= batadv_nc_get_nc_node(bat_priv
, orig_node
,
907 orig_neigh_node
, true);
911 in_nc_node
->last_seen
= jiffies
;
913 /* Add hop as out_nc_node on orig_node */
914 out_nc_node
= batadv_nc_get_nc_node(bat_priv
, orig_neigh_node
,
919 out_nc_node
->last_seen
= jiffies
;
923 batadv_nc_node_free_ref(in_nc_node
);
925 batadv_nc_node_free_ref(out_nc_node
);
929 * batadv_nc_get_path - get existing nc_path or allocate a new one
930 * @bat_priv: the bat priv with all the soft interface information
931 * @hash: hash table containing the nc path
932 * @src: ethernet source address - first half of the nc path search key
933 * @dst: ethernet destination address - second half of the nc path search key
935 * Returns pointer to nc_path if the path was found or created, returns NULL
938 static struct batadv_nc_path
*batadv_nc_get_path(struct batadv_priv
*bat_priv
,
939 struct batadv_hashtable
*hash
,
944 struct batadv_nc_path
*nc_path
, nc_path_key
;
946 batadv_nc_hash_key_gen(&nc_path_key
, src
, dst
);
948 /* Search for existing nc_path */
949 nc_path
= batadv_nc_hash_find(hash
, (void *)&nc_path_key
);
952 /* Set timestamp to delay removal of nc_path */
953 nc_path
->last_valid
= jiffies
;
957 /* No existing nc_path was found; create a new */
958 nc_path
= kzalloc(sizeof(*nc_path
), GFP_ATOMIC
);
963 /* Initialize nc_path */
964 INIT_LIST_HEAD(&nc_path
->packet_list
);
965 spin_lock_init(&nc_path
->packet_list_lock
);
966 atomic_set(&nc_path
->refcount
, 2);
967 nc_path
->last_valid
= jiffies
;
968 ether_addr_copy(nc_path
->next_hop
, dst
);
969 ether_addr_copy(nc_path
->prev_hop
, src
);
971 batadv_dbg(BATADV_DBG_NC
, bat_priv
, "Adding nc_path %pM -> %pM\n",
975 /* Add nc_path to hash table */
976 hash_added
= batadv_hash_add(hash
, batadv_nc_hash_compare
,
977 batadv_nc_hash_choose
, &nc_path_key
,
978 &nc_path
->hash_entry
);
980 if (hash_added
< 0) {
989 * batadv_nc_random_weight_tq - scale the receivers TQ-value to avoid unfair
990 * selection of a receiver with slightly lower TQ than the other
991 * @tq: to be weighted tq value
993 static uint8_t batadv_nc_random_weight_tq(uint8_t tq
)
995 uint8_t rand_val
, rand_tq
;
997 get_random_bytes(&rand_val
, sizeof(rand_val
));
999 /* randomize the estimated packet loss (max TQ - estimated TQ) */
1000 rand_tq
= rand_val
* (BATADV_TQ_MAX_VALUE
- tq
);
1002 /* normalize the randomized packet loss */
1003 rand_tq
/= BATADV_TQ_MAX_VALUE
;
1005 /* convert to (randomized) estimated tq again */
1006 return BATADV_TQ_MAX_VALUE
- rand_tq
;
1010 * batadv_nc_memxor - XOR destination with source
1011 * @dst: byte array to XOR into
1012 * @src: byte array to XOR from
1013 * @len: length of destination array
1015 static void batadv_nc_memxor(char *dst
, const char *src
, unsigned int len
)
1019 for (i
= 0; i
< len
; ++i
)
1024 * batadv_nc_code_packets - code a received unicast_packet with an nc packet
1025 * into a coded_packet and send it
1026 * @bat_priv: the bat priv with all the soft interface information
1027 * @skb: data skb to forward
1028 * @ethhdr: pointer to the ethernet header inside the skb
1029 * @nc_packet: structure containing the packet to the skb can be coded with
1030 * @neigh_node: next hop to forward packet to
1032 * Returns true if both packets are consumed, false otherwise.
1034 static bool batadv_nc_code_packets(struct batadv_priv
*bat_priv
,
1035 struct sk_buff
*skb
,
1036 struct ethhdr
*ethhdr
,
1037 struct batadv_nc_packet
*nc_packet
,
1038 struct batadv_neigh_node
*neigh_node
)
1040 uint8_t tq_weighted_neigh
, tq_weighted_coding
, tq_tmp
;
1041 struct sk_buff
*skb_dest
, *skb_src
;
1042 struct batadv_unicast_packet
*packet1
;
1043 struct batadv_unicast_packet
*packet2
;
1044 struct batadv_coded_packet
*coded_packet
;
1045 struct batadv_neigh_node
*neigh_tmp
, *router_neigh
;
1046 struct batadv_neigh_node
*router_coding
= NULL
;
1047 struct batadv_neigh_ifinfo
*router_neigh_ifinfo
= NULL
;
1048 struct batadv_neigh_ifinfo
*router_coding_ifinfo
= NULL
;
1049 uint8_t *first_source
, *first_dest
, *second_source
, *second_dest
;
1050 __be32 packet_id1
, packet_id2
;
1054 int unicast_size
= sizeof(*packet1
);
1055 int coded_size
= sizeof(*coded_packet
);
1056 int header_add
= coded_size
- unicast_size
;
1058 /* TODO: do we need to consider the outgoing interface for
1061 router_neigh
= batadv_orig_router_get(neigh_node
->orig_node
,
1066 router_neigh_ifinfo
= batadv_neigh_ifinfo_get(router_neigh
,
1068 if (!router_neigh_ifinfo
)
1071 neigh_tmp
= nc_packet
->neigh_node
;
1072 router_coding
= batadv_orig_router_get(neigh_tmp
->orig_node
,
1077 router_coding_ifinfo
= batadv_neigh_ifinfo_get(router_coding
,
1079 if (!router_coding_ifinfo
)
1082 tq_tmp
= router_neigh_ifinfo
->bat_iv
.tq_avg
;
1083 tq_weighted_neigh
= batadv_nc_random_weight_tq(tq_tmp
);
1084 tq_tmp
= router_coding_ifinfo
->bat_iv
.tq_avg
;
1085 tq_weighted_coding
= batadv_nc_random_weight_tq(tq_tmp
);
1087 /* Select one destination for the MAC-header dst-field based on
1088 * weighted TQ-values.
1090 if (tq_weighted_neigh
>= tq_weighted_coding
) {
1091 /* Destination from nc_packet is selected for MAC-header */
1092 first_dest
= nc_packet
->nc_path
->next_hop
;
1093 first_source
= nc_packet
->nc_path
->prev_hop
;
1094 second_dest
= neigh_node
->addr
;
1095 second_source
= ethhdr
->h_source
;
1096 packet1
= (struct batadv_unicast_packet
*)nc_packet
->skb
->data
;
1097 packet2
= (struct batadv_unicast_packet
*)skb
->data
;
1098 packet_id1
= nc_packet
->packet_id
;
1099 packet_id2
= batadv_skb_crc32(skb
,
1100 skb
->data
+ sizeof(*packet2
));
1102 /* Destination for skb is selected for MAC-header */
1103 first_dest
= neigh_node
->addr
;
1104 first_source
= ethhdr
->h_source
;
1105 second_dest
= nc_packet
->nc_path
->next_hop
;
1106 second_source
= nc_packet
->nc_path
->prev_hop
;
1107 packet1
= (struct batadv_unicast_packet
*)skb
->data
;
1108 packet2
= (struct batadv_unicast_packet
*)nc_packet
->skb
->data
;
1109 packet_id1
= batadv_skb_crc32(skb
,
1110 skb
->data
+ sizeof(*packet1
));
1111 packet_id2
= nc_packet
->packet_id
;
1114 /* Instead of zero padding the smallest data buffer, we
1115 * code into the largest.
1117 if (skb
->len
<= nc_packet
->skb
->len
) {
1118 skb_dest
= nc_packet
->skb
;
1122 skb_src
= nc_packet
->skb
;
1125 /* coding_len is used when decoding the packet shorter packet */
1126 coding_len
= skb_src
->len
- unicast_size
;
1128 if (skb_linearize(skb_dest
) < 0 || skb_linearize(skb_src
) < 0)
1131 skb_push(skb_dest
, header_add
);
1133 coded_packet
= (struct batadv_coded_packet
*)skb_dest
->data
;
1134 skb_reset_mac_header(skb_dest
);
1136 coded_packet
->packet_type
= BATADV_CODED
;
1137 coded_packet
->version
= BATADV_COMPAT_VERSION
;
1138 coded_packet
->ttl
= packet1
->ttl
;
1140 /* Info about first unicast packet */
1141 ether_addr_copy(coded_packet
->first_source
, first_source
);
1142 ether_addr_copy(coded_packet
->first_orig_dest
, packet1
->dest
);
1143 coded_packet
->first_crc
= packet_id1
;
1144 coded_packet
->first_ttvn
= packet1
->ttvn
;
1146 /* Info about second unicast packet */
1147 ether_addr_copy(coded_packet
->second_dest
, second_dest
);
1148 ether_addr_copy(coded_packet
->second_source
, second_source
);
1149 ether_addr_copy(coded_packet
->second_orig_dest
, packet2
->dest
);
1150 coded_packet
->second_crc
= packet_id2
;
1151 coded_packet
->second_ttl
= packet2
->ttl
;
1152 coded_packet
->second_ttvn
= packet2
->ttvn
;
1153 coded_packet
->coded_len
= htons(coding_len
);
1155 /* This is where the magic happens: Code skb_src into skb_dest */
1156 batadv_nc_memxor(skb_dest
->data
+ coded_size
,
1157 skb_src
->data
+ unicast_size
, coding_len
);
1159 /* Update counters accordingly */
1160 if (BATADV_SKB_CB(skb_src
)->decoded
&&
1161 BATADV_SKB_CB(skb_dest
)->decoded
) {
1162 /* Both packets are recoded */
1163 count
= skb_src
->len
+ ETH_HLEN
;
1164 count
+= skb_dest
->len
+ ETH_HLEN
;
1165 batadv_add_counter(bat_priv
, BATADV_CNT_NC_RECODE
, 2);
1166 batadv_add_counter(bat_priv
, BATADV_CNT_NC_RECODE_BYTES
, count
);
1167 } else if (!BATADV_SKB_CB(skb_src
)->decoded
&&
1168 !BATADV_SKB_CB(skb_dest
)->decoded
) {
1169 /* Both packets are newly coded */
1170 count
= skb_src
->len
+ ETH_HLEN
;
1171 count
+= skb_dest
->len
+ ETH_HLEN
;
1172 batadv_add_counter(bat_priv
, BATADV_CNT_NC_CODE
, 2);
1173 batadv_add_counter(bat_priv
, BATADV_CNT_NC_CODE_BYTES
, count
);
1174 } else if (BATADV_SKB_CB(skb_src
)->decoded
&&
1175 !BATADV_SKB_CB(skb_dest
)->decoded
) {
1176 /* skb_src recoded and skb_dest is newly coded */
1177 batadv_inc_counter(bat_priv
, BATADV_CNT_NC_RECODE
);
1178 batadv_add_counter(bat_priv
, BATADV_CNT_NC_RECODE_BYTES
,
1179 skb_src
->len
+ ETH_HLEN
);
1180 batadv_inc_counter(bat_priv
, BATADV_CNT_NC_CODE
);
1181 batadv_add_counter(bat_priv
, BATADV_CNT_NC_CODE_BYTES
,
1182 skb_dest
->len
+ ETH_HLEN
);
1183 } else if (!BATADV_SKB_CB(skb_src
)->decoded
&&
1184 BATADV_SKB_CB(skb_dest
)->decoded
) {
1185 /* skb_src is newly coded and skb_dest is recoded */
1186 batadv_inc_counter(bat_priv
, BATADV_CNT_NC_CODE
);
1187 batadv_add_counter(bat_priv
, BATADV_CNT_NC_CODE_BYTES
,
1188 skb_src
->len
+ ETH_HLEN
);
1189 batadv_inc_counter(bat_priv
, BATADV_CNT_NC_RECODE
);
1190 batadv_add_counter(bat_priv
, BATADV_CNT_NC_RECODE_BYTES
,
1191 skb_dest
->len
+ ETH_HLEN
);
1194 /* skb_src is now coded into skb_dest, so free it */
1197 /* avoid duplicate free of skb from nc_packet */
1198 nc_packet
->skb
= NULL
;
1199 batadv_nc_packet_free(nc_packet
);
1201 /* Send the coded packet and return true */
1202 batadv_send_skb_packet(skb_dest
, neigh_node
->if_incoming
, first_dest
);
1206 batadv_neigh_node_free_ref(router_neigh
);
1208 batadv_neigh_node_free_ref(router_coding
);
1209 if (router_neigh_ifinfo
)
1210 batadv_neigh_ifinfo_free_ref(router_neigh_ifinfo
);
1211 if (router_coding_ifinfo
)
1212 batadv_neigh_ifinfo_free_ref(router_coding_ifinfo
);
1217 * batadv_nc_skb_coding_possible - true if a decoded skb is available at dst.
1218 * @skb: data skb to forward
1219 * @dst: destination mac address of the other skb to code with
1220 * @src: source mac address of skb
1222 * Whenever we network code a packet we have to check whether we received it in
1223 * a network coded form. If so, we may not be able to use it for coding because
1224 * some neighbors may also have received (overheard) the packet in the network
1225 * coded form without being able to decode it. It is hard to know which of the
1226 * neighboring nodes was able to decode the packet, therefore we can only
1227 * re-code the packet if the source of the previous encoded packet is involved.
1228 * Since the source encoded the packet we can be certain it has all necessary
1229 * decode information.
1231 * Returns true if coding of a decoded packet is allowed.
1233 static bool batadv_nc_skb_coding_possible(struct sk_buff
*skb
,
1234 uint8_t *dst
, uint8_t *src
)
1236 if (BATADV_SKB_CB(skb
)->decoded
&& !batadv_compare_eth(dst
, src
))
1242 * batadv_nc_path_search - Find the coding path matching in_nc_node and
1243 * out_nc_node to retrieve a buffered packet that can be used for coding.
1244 * @bat_priv: the bat priv with all the soft interface information
1245 * @in_nc_node: pointer to skb next hop's neighbor nc node
1246 * @out_nc_node: pointer to skb source's neighbor nc node
1247 * @skb: data skb to forward
1248 * @eth_dst: next hop mac address of skb
1250 * Returns true if coding of a decoded skb is allowed.
1252 static struct batadv_nc_packet
*
1253 batadv_nc_path_search(struct batadv_priv
*bat_priv
,
1254 struct batadv_nc_node
*in_nc_node
,
1255 struct batadv_nc_node
*out_nc_node
,
1256 struct sk_buff
*skb
,
1259 struct batadv_nc_path
*nc_path
, nc_path_key
;
1260 struct batadv_nc_packet
*nc_packet_out
= NULL
;
1261 struct batadv_nc_packet
*nc_packet
, *nc_packet_tmp
;
1262 struct batadv_hashtable
*hash
= bat_priv
->nc
.coding_hash
;
1268 /* Create almost path key */
1269 batadv_nc_hash_key_gen(&nc_path_key
, in_nc_node
->addr
,
1271 idx
= batadv_nc_hash_choose(&nc_path_key
, hash
->size
);
1273 /* Check for coding opportunities in this nc_path */
1275 hlist_for_each_entry_rcu(nc_path
, &hash
->table
[idx
], hash_entry
) {
1276 if (!batadv_compare_eth(nc_path
->prev_hop
, in_nc_node
->addr
))
1279 if (!batadv_compare_eth(nc_path
->next_hop
, out_nc_node
->addr
))
1282 spin_lock_bh(&nc_path
->packet_list_lock
);
1283 if (list_empty(&nc_path
->packet_list
)) {
1284 spin_unlock_bh(&nc_path
->packet_list_lock
);
1288 list_for_each_entry_safe(nc_packet
, nc_packet_tmp
,
1289 &nc_path
->packet_list
, list
) {
1290 if (!batadv_nc_skb_coding_possible(nc_packet
->skb
,
1295 /* Coding opportunity is found! */
1296 list_del(&nc_packet
->list
);
1297 nc_packet_out
= nc_packet
;
1301 spin_unlock_bh(&nc_path
->packet_list_lock
);
1306 return nc_packet_out
;
1310 * batadv_nc_skb_src_search - Loops through the list of neighoring nodes of the
1311 * skb's sender (may be equal to the originator).
1312 * @bat_priv: the bat priv with all the soft interface information
1313 * @skb: data skb to forward
1314 * @eth_dst: next hop mac address of skb
1315 * @eth_src: source mac address of skb
1316 * @in_nc_node: pointer to skb next hop's neighbor nc node
1318 * Returns an nc packet if a suitable coding packet was found, NULL otherwise.
1320 static struct batadv_nc_packet
*
1321 batadv_nc_skb_src_search(struct batadv_priv
*bat_priv
,
1322 struct sk_buff
*skb
,
1325 struct batadv_nc_node
*in_nc_node
)
1327 struct batadv_orig_node
*orig_node
;
1328 struct batadv_nc_node
*out_nc_node
;
1329 struct batadv_nc_packet
*nc_packet
= NULL
;
1331 orig_node
= batadv_orig_hash_find(bat_priv
, eth_src
);
1336 list_for_each_entry_rcu(out_nc_node
,
1337 &orig_node
->out_coding_list
, list
) {
1338 /* Check if the skb is decoded and if recoding is possible */
1339 if (!batadv_nc_skb_coding_possible(skb
,
1340 out_nc_node
->addr
, eth_src
))
1343 /* Search for an opportunity in this nc_path */
1344 nc_packet
= batadv_nc_path_search(bat_priv
, in_nc_node
,
1345 out_nc_node
, skb
, eth_dst
);
1351 batadv_orig_node_free_ref(orig_node
);
1356 * batadv_nc_skb_store_before_coding - set the ethernet src and dst of the
1357 * unicast skb before it is stored for use in later decoding
1358 * @bat_priv: the bat priv with all the soft interface information
1359 * @skb: data skb to store
1360 * @eth_dst_new: new destination mac address of skb
1362 static void batadv_nc_skb_store_before_coding(struct batadv_priv
*bat_priv
,
1363 struct sk_buff
*skb
,
1364 uint8_t *eth_dst_new
)
1366 struct ethhdr
*ethhdr
;
1368 /* Copy skb header to change the mac header */
1369 skb
= pskb_copy_for_clone(skb
, GFP_ATOMIC
);
1373 /* Set the mac header as if we actually sent the packet uncoded */
1374 ethhdr
= eth_hdr(skb
);
1375 ether_addr_copy(ethhdr
->h_source
, ethhdr
->h_dest
);
1376 ether_addr_copy(ethhdr
->h_dest
, eth_dst_new
);
1378 /* Set data pointer to MAC header to mimic packets from our tx path */
1379 skb_push(skb
, ETH_HLEN
);
1381 /* Add the packet to the decoding packet pool */
1382 batadv_nc_skb_store_for_decoding(bat_priv
, skb
);
1384 /* batadv_nc_skb_store_for_decoding() clones the skb, so we must free
1391 * batadv_nc_skb_dst_search - Loops through list of neighboring nodes to dst.
1392 * @skb: data skb to forward
1393 * @neigh_node: next hop to forward packet to
1394 * @ethhdr: pointer to the ethernet header inside the skb
1396 * Loops through list of neighboring nodes the next hop has a good connection to
1397 * (receives OGMs with a sufficient quality). We need to find a neighbor of our
1398 * next hop that potentially sent a packet which our next hop also received
1399 * (overheard) and has stored for later decoding.
1401 * Returns true if the skb was consumed (encoded packet sent) or false otherwise
1403 static bool batadv_nc_skb_dst_search(struct sk_buff
*skb
,
1404 struct batadv_neigh_node
*neigh_node
,
1405 struct ethhdr
*ethhdr
)
1407 struct net_device
*netdev
= neigh_node
->if_incoming
->soft_iface
;
1408 struct batadv_priv
*bat_priv
= netdev_priv(netdev
);
1409 struct batadv_orig_node
*orig_node
= neigh_node
->orig_node
;
1410 struct batadv_nc_node
*nc_node
;
1411 struct batadv_nc_packet
*nc_packet
= NULL
;
1414 list_for_each_entry_rcu(nc_node
, &orig_node
->in_coding_list
, list
) {
1415 /* Search for coding opportunity with this in_nc_node */
1416 nc_packet
= batadv_nc_skb_src_search(bat_priv
, skb
,
1418 ethhdr
->h_source
, nc_node
);
1420 /* Opportunity was found, so stop searching */
1429 /* Save packets for later decoding */
1430 batadv_nc_skb_store_before_coding(bat_priv
, skb
,
1432 batadv_nc_skb_store_before_coding(bat_priv
, nc_packet
->skb
,
1433 nc_packet
->neigh_node
->addr
);
1435 /* Code and send packets */
1436 if (batadv_nc_code_packets(bat_priv
, skb
, ethhdr
, nc_packet
,
1440 /* out of mem ? Coding failed - we have to free the buffered packet
1441 * to avoid memleaks. The skb passed as argument will be dealt with
1442 * by the calling function.
1444 batadv_nc_send_packet(nc_packet
);
1449 * batadv_nc_skb_add_to_path - buffer skb for later encoding / decoding
1450 * @skb: skb to add to path
1451 * @nc_path: path to add skb to
1452 * @neigh_node: next hop to forward packet to
1453 * @packet_id: checksum to identify packet
1455 * Returns true if the packet was buffered or false in case of an error.
1457 static bool batadv_nc_skb_add_to_path(struct sk_buff
*skb
,
1458 struct batadv_nc_path
*nc_path
,
1459 struct batadv_neigh_node
*neigh_node
,
1462 struct batadv_nc_packet
*nc_packet
;
1464 nc_packet
= kzalloc(sizeof(*nc_packet
), GFP_ATOMIC
);
1468 /* Initialize nc_packet */
1469 nc_packet
->timestamp
= jiffies
;
1470 nc_packet
->packet_id
= packet_id
;
1471 nc_packet
->skb
= skb
;
1472 nc_packet
->neigh_node
= neigh_node
;
1473 nc_packet
->nc_path
= nc_path
;
1475 /* Add coding packet to list */
1476 spin_lock_bh(&nc_path
->packet_list_lock
);
1477 list_add_tail(&nc_packet
->list
, &nc_path
->packet_list
);
1478 spin_unlock_bh(&nc_path
->packet_list_lock
);
1484 * batadv_nc_skb_forward - try to code a packet or add it to the coding packet
1486 * @skb: data skb to forward
1487 * @neigh_node: next hop to forward packet to
1489 * Returns true if the skb was consumed (encoded packet sent) or false otherwise
1491 bool batadv_nc_skb_forward(struct sk_buff
*skb
,
1492 struct batadv_neigh_node
*neigh_node
)
1494 const struct net_device
*netdev
= neigh_node
->if_incoming
->soft_iface
;
1495 struct batadv_priv
*bat_priv
= netdev_priv(netdev
);
1496 struct batadv_unicast_packet
*packet
;
1497 struct batadv_nc_path
*nc_path
;
1498 struct ethhdr
*ethhdr
= eth_hdr(skb
);
1502 /* Check if network coding is enabled */
1503 if (!atomic_read(&bat_priv
->network_coding
))
1506 /* We only handle unicast packets */
1507 payload
= skb_network_header(skb
);
1508 packet
= (struct batadv_unicast_packet
*)payload
;
1509 if (packet
->packet_type
!= BATADV_UNICAST
)
1512 /* Try to find a coding opportunity and send the skb if one is found */
1513 if (batadv_nc_skb_dst_search(skb
, neigh_node
, ethhdr
))
1516 /* Find or create a nc_path for this src-dst pair */
1517 nc_path
= batadv_nc_get_path(bat_priv
,
1518 bat_priv
->nc
.coding_hash
,
1525 /* Add skb to nc_path */
1526 packet_id
= batadv_skb_crc32(skb
, payload
+ sizeof(*packet
));
1527 if (!batadv_nc_skb_add_to_path(skb
, nc_path
, neigh_node
, packet_id
))
1530 /* Packet is consumed */
1534 batadv_nc_path_free_ref(nc_path
);
1536 /* Packet is not consumed */
1541 * batadv_nc_skb_store_for_decoding - save a clone of the skb which can be used
1542 * when decoding coded packets
1543 * @bat_priv: the bat priv with all the soft interface information
1544 * @skb: data skb to store
1546 void batadv_nc_skb_store_for_decoding(struct batadv_priv
*bat_priv
,
1547 struct sk_buff
*skb
)
1549 struct batadv_unicast_packet
*packet
;
1550 struct batadv_nc_path
*nc_path
;
1551 struct ethhdr
*ethhdr
= eth_hdr(skb
);
1555 /* Check if network coding is enabled */
1556 if (!atomic_read(&bat_priv
->network_coding
))
1559 /* Check for supported packet type */
1560 payload
= skb_network_header(skb
);
1561 packet
= (struct batadv_unicast_packet
*)payload
;
1562 if (packet
->packet_type
!= BATADV_UNICAST
)
1565 /* Find existing nc_path or create a new */
1566 nc_path
= batadv_nc_get_path(bat_priv
,
1567 bat_priv
->nc
.decoding_hash
,
1574 /* Clone skb and adjust skb->data to point at batman header */
1575 skb
= skb_clone(skb
, GFP_ATOMIC
);
1579 if (unlikely(!pskb_may_pull(skb
, ETH_HLEN
)))
1582 if (unlikely(!skb_pull_rcsum(skb
, ETH_HLEN
)))
1585 /* Add skb to nc_path */
1586 packet_id
= batadv_skb_crc32(skb
, payload
+ sizeof(*packet
));
1587 if (!batadv_nc_skb_add_to_path(skb
, nc_path
, NULL
, packet_id
))
1590 batadv_inc_counter(bat_priv
, BATADV_CNT_NC_BUFFER
);
1596 batadv_nc_path_free_ref(nc_path
);
1602 * batadv_nc_skb_store_sniffed_unicast - check if a received unicast packet
1603 * should be saved in the decoding buffer and, if so, store it there
1604 * @bat_priv: the bat priv with all the soft interface information
1605 * @skb: unicast skb to store
1607 void batadv_nc_skb_store_sniffed_unicast(struct batadv_priv
*bat_priv
,
1608 struct sk_buff
*skb
)
1610 struct ethhdr
*ethhdr
= eth_hdr(skb
);
1612 if (batadv_is_my_mac(bat_priv
, ethhdr
->h_dest
))
1615 /* Set data pointer to MAC header to mimic packets from our tx path */
1616 skb_push(skb
, ETH_HLEN
);
1618 batadv_nc_skb_store_for_decoding(bat_priv
, skb
);
1622 * batadv_nc_skb_decode_packet - decode given skb using the decode data stored
1624 * @bat_priv: the bat priv with all the soft interface information
1625 * @skb: unicast skb to decode
1626 * @nc_packet: decode data needed to decode the skb
1628 * Returns pointer to decoded unicast packet if the packet was decoded or NULL
1629 * in case of an error.
1631 static struct batadv_unicast_packet
*
1632 batadv_nc_skb_decode_packet(struct batadv_priv
*bat_priv
, struct sk_buff
*skb
,
1633 struct batadv_nc_packet
*nc_packet
)
1635 const int h_size
= sizeof(struct batadv_unicast_packet
);
1636 const int h_diff
= sizeof(struct batadv_coded_packet
) - h_size
;
1637 struct batadv_unicast_packet
*unicast_packet
;
1638 struct batadv_coded_packet coded_packet_tmp
;
1639 struct ethhdr
*ethhdr
, ethhdr_tmp
;
1640 uint8_t *orig_dest
, ttl
, ttvn
;
1641 unsigned int coding_len
;
1644 /* Save headers temporarily */
1645 memcpy(&coded_packet_tmp
, skb
->data
, sizeof(coded_packet_tmp
));
1646 memcpy(ðhdr_tmp
, skb_mac_header(skb
), sizeof(ethhdr_tmp
));
1648 if (skb_cow(skb
, 0) < 0)
1651 if (unlikely(!skb_pull_rcsum(skb
, h_diff
)))
1654 /* Data points to batman header, so set mac header 14 bytes before
1655 * and network to data
1657 skb_set_mac_header(skb
, -ETH_HLEN
);
1658 skb_reset_network_header(skb
);
1660 /* Reconstruct original mac header */
1661 ethhdr
= eth_hdr(skb
);
1662 *ethhdr
= ethhdr_tmp
;
1664 /* Select the correct unicast header information based on the location
1665 * of our mac address in the coded_packet header
1667 if (batadv_is_my_mac(bat_priv
, coded_packet_tmp
.second_dest
)) {
1668 /* If we are the second destination the packet was overheard,
1669 * so the Ethernet address must be copied to h_dest and
1670 * pkt_type changed from PACKET_OTHERHOST to PACKET_HOST
1672 ether_addr_copy(ethhdr
->h_dest
, coded_packet_tmp
.second_dest
);
1673 skb
->pkt_type
= PACKET_HOST
;
1675 orig_dest
= coded_packet_tmp
.second_orig_dest
;
1676 ttl
= coded_packet_tmp
.second_ttl
;
1677 ttvn
= coded_packet_tmp
.second_ttvn
;
1679 orig_dest
= coded_packet_tmp
.first_orig_dest
;
1680 ttl
= coded_packet_tmp
.ttl
;
1681 ttvn
= coded_packet_tmp
.first_ttvn
;
1684 coding_len
= ntohs(coded_packet_tmp
.coded_len
);
1686 if (coding_len
> skb
->len
)
1689 /* Here the magic is reversed:
1690 * extract the missing packet from the received coded packet
1692 batadv_nc_memxor(skb
->data
+ h_size
,
1693 nc_packet
->skb
->data
+ h_size
,
1696 /* Resize decoded skb if decoded with larger packet */
1697 if (nc_packet
->skb
->len
> coding_len
+ h_size
) {
1698 err
= pskb_trim_rcsum(skb
, coding_len
+ h_size
);
1703 /* Create decoded unicast packet */
1704 unicast_packet
= (struct batadv_unicast_packet
*)skb
->data
;
1705 unicast_packet
->packet_type
= BATADV_UNICAST
;
1706 unicast_packet
->version
= BATADV_COMPAT_VERSION
;
1707 unicast_packet
->ttl
= ttl
;
1708 ether_addr_copy(unicast_packet
->dest
, orig_dest
);
1709 unicast_packet
->ttvn
= ttvn
;
1711 batadv_nc_packet_free(nc_packet
);
1712 return unicast_packet
;
1716 * batadv_nc_find_decoding_packet - search through buffered decoding data to
1717 * find the data needed to decode the coded packet
1718 * @bat_priv: the bat priv with all the soft interface information
1719 * @ethhdr: pointer to the ethernet header inside the coded packet
1720 * @coded: coded packet we try to find decode data for
1722 * Returns pointer to nc packet if the needed data was found or NULL otherwise.
1724 static struct batadv_nc_packet
*
1725 batadv_nc_find_decoding_packet(struct batadv_priv
*bat_priv
,
1726 struct ethhdr
*ethhdr
,
1727 struct batadv_coded_packet
*coded
)
1729 struct batadv_hashtable
*hash
= bat_priv
->nc
.decoding_hash
;
1730 struct batadv_nc_packet
*tmp_nc_packet
, *nc_packet
= NULL
;
1731 struct batadv_nc_path
*nc_path
, nc_path_key
;
1732 uint8_t *dest
, *source
;
1739 /* Select the correct packet id based on the location of our mac-addr */
1740 dest
= ethhdr
->h_source
;
1741 if (!batadv_is_my_mac(bat_priv
, coded
->second_dest
)) {
1742 source
= coded
->second_source
;
1743 packet_id
= coded
->second_crc
;
1745 source
= coded
->first_source
;
1746 packet_id
= coded
->first_crc
;
1749 batadv_nc_hash_key_gen(&nc_path_key
, source
, dest
);
1750 index
= batadv_nc_hash_choose(&nc_path_key
, hash
->size
);
1752 /* Search for matching coding path */
1754 hlist_for_each_entry_rcu(nc_path
, &hash
->table
[index
], hash_entry
) {
1755 /* Find matching nc_packet */
1756 spin_lock_bh(&nc_path
->packet_list_lock
);
1757 list_for_each_entry(tmp_nc_packet
,
1758 &nc_path
->packet_list
, list
) {
1759 if (packet_id
== tmp_nc_packet
->packet_id
) {
1760 list_del(&tmp_nc_packet
->list
);
1762 nc_packet
= tmp_nc_packet
;
1766 spin_unlock_bh(&nc_path
->packet_list_lock
);
1774 batadv_dbg(BATADV_DBG_NC
, bat_priv
,
1775 "No decoding packet found for %u\n", packet_id
);
1781 * batadv_nc_recv_coded_packet - try to decode coded packet and enqueue the
1782 * resulting unicast packet
1783 * @skb: incoming coded packet
1784 * @recv_if: pointer to interface this packet was received on
1786 static int batadv_nc_recv_coded_packet(struct sk_buff
*skb
,
1787 struct batadv_hard_iface
*recv_if
)
1789 struct batadv_priv
*bat_priv
= netdev_priv(recv_if
->soft_iface
);
1790 struct batadv_unicast_packet
*unicast_packet
;
1791 struct batadv_coded_packet
*coded_packet
;
1792 struct batadv_nc_packet
*nc_packet
;
1793 struct ethhdr
*ethhdr
;
1794 int hdr_size
= sizeof(*coded_packet
);
1796 /* Check if network coding is enabled */
1797 if (!atomic_read(&bat_priv
->network_coding
))
1800 /* Make sure we can access (and remove) header */
1801 if (unlikely(!pskb_may_pull(skb
, hdr_size
)))
1804 coded_packet
= (struct batadv_coded_packet
*)skb
->data
;
1805 ethhdr
= eth_hdr(skb
);
1807 /* Verify frame is destined for us */
1808 if (!batadv_is_my_mac(bat_priv
, ethhdr
->h_dest
) &&
1809 !batadv_is_my_mac(bat_priv
, coded_packet
->second_dest
))
1812 /* Update stat counter */
1813 if (batadv_is_my_mac(bat_priv
, coded_packet
->second_dest
))
1814 batadv_inc_counter(bat_priv
, BATADV_CNT_NC_SNIFFED
);
1816 nc_packet
= batadv_nc_find_decoding_packet(bat_priv
, ethhdr
,
1819 batadv_inc_counter(bat_priv
, BATADV_CNT_NC_DECODE_FAILED
);
1823 /* Make skb's linear, because decoding accesses the entire buffer */
1824 if (skb_linearize(skb
) < 0)
1825 goto free_nc_packet
;
1827 if (skb_linearize(nc_packet
->skb
) < 0)
1828 goto free_nc_packet
;
1830 /* Decode the packet */
1831 unicast_packet
= batadv_nc_skb_decode_packet(bat_priv
, skb
, nc_packet
);
1832 if (!unicast_packet
) {
1833 batadv_inc_counter(bat_priv
, BATADV_CNT_NC_DECODE_FAILED
);
1834 goto free_nc_packet
;
1837 /* Mark packet as decoded to do correct recoding when forwarding */
1838 BATADV_SKB_CB(skb
)->decoded
= true;
1839 batadv_inc_counter(bat_priv
, BATADV_CNT_NC_DECODE
);
1840 batadv_add_counter(bat_priv
, BATADV_CNT_NC_DECODE_BYTES
,
1841 skb
->len
+ ETH_HLEN
);
1842 return batadv_recv_unicast_packet(skb
, recv_if
);
1845 batadv_nc_packet_free(nc_packet
);
1850 * batadv_nc_mesh_free - clean up network coding memory
1851 * @bat_priv: the bat priv with all the soft interface information
1853 void batadv_nc_mesh_free(struct batadv_priv
*bat_priv
)
1855 batadv_tvlv_container_unregister(bat_priv
, BATADV_TVLV_NC
, 1);
1856 batadv_tvlv_handler_unregister(bat_priv
, BATADV_TVLV_NC
, 1);
1857 cancel_delayed_work_sync(&bat_priv
->nc
.work
);
1859 batadv_nc_purge_paths(bat_priv
, bat_priv
->nc
.coding_hash
, NULL
);
1860 batadv_hash_destroy(bat_priv
->nc
.coding_hash
);
1861 batadv_nc_purge_paths(bat_priv
, bat_priv
->nc
.decoding_hash
, NULL
);
1862 batadv_hash_destroy(bat_priv
->nc
.decoding_hash
);
1866 * batadv_nc_nodes_seq_print_text - print the nc node information
1867 * @seq: seq file to print on
1870 int batadv_nc_nodes_seq_print_text(struct seq_file
*seq
, void *offset
)
1872 struct net_device
*net_dev
= (struct net_device
*)seq
->private;
1873 struct batadv_priv
*bat_priv
= netdev_priv(net_dev
);
1874 struct batadv_hashtable
*hash
= bat_priv
->orig_hash
;
1875 struct batadv_hard_iface
*primary_if
;
1876 struct hlist_head
*head
;
1877 struct batadv_orig_node
*orig_node
;
1878 struct batadv_nc_node
*nc_node
;
1881 primary_if
= batadv_seq_print_text_primary_if_get(seq
);
1885 /* Traverse list of originators */
1886 for (i
= 0; i
< hash
->size
; i
++) {
1887 head
= &hash
->table
[i
];
1889 /* For each orig_node in this bin */
1891 hlist_for_each_entry_rcu(orig_node
, head
, hash_entry
) {
1892 /* no need to print the orig node if it does not have
1893 * network coding neighbors
1895 if (list_empty(&orig_node
->in_coding_list
) &&
1896 list_empty(&orig_node
->out_coding_list
))
1899 seq_printf(seq
, "Node: %pM\n", orig_node
->orig
);
1901 seq_puts(seq
, " Ingoing: ");
1902 /* For each in_nc_node to this orig_node */
1903 list_for_each_entry_rcu(nc_node
,
1904 &orig_node
->in_coding_list
,
1906 seq_printf(seq
, "%pM ",
1908 seq_puts(seq
, "\n");
1910 seq_puts(seq
, " Outgoing: ");
1911 /* For out_nc_node to this orig_node */
1912 list_for_each_entry_rcu(nc_node
,
1913 &orig_node
->out_coding_list
,
1915 seq_printf(seq
, "%pM ",
1917 seq_puts(seq
, "\n\n");
1924 batadv_hardif_free_ref(primary_if
);
1929 * batadv_nc_init_debugfs - create nc folder and related files in debugfs
1930 * @bat_priv: the bat priv with all the soft interface information
1932 int batadv_nc_init_debugfs(struct batadv_priv
*bat_priv
)
1934 struct dentry
*nc_dir
, *file
;
1936 nc_dir
= debugfs_create_dir("nc", bat_priv
->debug_dir
);
1940 file
= debugfs_create_u8("min_tq", S_IRUGO
| S_IWUSR
, nc_dir
,
1941 &bat_priv
->nc
.min_tq
);
1945 file
= debugfs_create_u32("max_fwd_delay", S_IRUGO
| S_IWUSR
, nc_dir
,
1946 &bat_priv
->nc
.max_fwd_delay
);
1950 file
= debugfs_create_u32("max_buffer_time", S_IRUGO
| S_IWUSR
, nc_dir
,
1951 &bat_priv
->nc
.max_buffer_time
);