GNU Linux-libre 4.19.264-gnu1
[releases.git] / net / batman-adv / network-coding.c
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (C) 2012-2018  B.A.T.M.A.N. contributors:
3  *
4  * Martin Hundebøll, Jeppe Ledet-Pedersen
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 #include "network-coding.h"
20 #include "main.h"
21
22 #include <linux/atomic.h>
23 #include <linux/bitops.h>
24 #include <linux/byteorder/generic.h>
25 #include <linux/compiler.h>
26 #include <linux/debugfs.h>
27 #include <linux/errno.h>
28 #include <linux/etherdevice.h>
29 #include <linux/gfp.h>
30 #include <linux/if_ether.h>
31 #include <linux/if_packet.h>
32 #include <linux/init.h>
33 #include <linux/jhash.h>
34 #include <linux/jiffies.h>
35 #include <linux/kernel.h>
36 #include <linux/kref.h>
37 #include <linux/list.h>
38 #include <linux/lockdep.h>
39 #include <linux/net.h>
40 #include <linux/netdevice.h>
41 #include <linux/printk.h>
42 #include <linux/random.h>
43 #include <linux/rculist.h>
44 #include <linux/rcupdate.h>
45 #include <linux/seq_file.h>
46 #include <linux/skbuff.h>
47 #include <linux/slab.h>
48 #include <linux/spinlock.h>
49 #include <linux/stddef.h>
50 #include <linux/string.h>
51 #include <linux/workqueue.h>
52 #include <uapi/linux/batadv_packet.h>
53
54 #include "hard-interface.h"
55 #include "hash.h"
56 #include "log.h"
57 #include "originator.h"
58 #include "routing.h"
59 #include "send.h"
60 #include "tvlv.h"
61
62 static struct lock_class_key batadv_nc_coding_hash_lock_class_key;
63 static struct lock_class_key batadv_nc_decoding_hash_lock_class_key;
64
65 static void batadv_nc_worker(struct work_struct *work);
66 static int batadv_nc_recv_coded_packet(struct sk_buff *skb,
67                                        struct batadv_hard_iface *recv_if);
68
69 /**
70  * batadv_nc_init() - one-time initialization for network coding
71  *
72  * Return: 0 on success or negative error number in case of failure
73  */
74 int __init batadv_nc_init(void)
75 {
76         int ret;
77
78         /* Register our packet type */
79         ret = batadv_recv_handler_register(BATADV_CODED,
80                                            batadv_nc_recv_coded_packet);
81
82         return ret;
83 }
84
85 /**
86  * batadv_nc_start_timer() - initialise the nc periodic worker
87  * @bat_priv: the bat priv with all the soft interface information
88  */
89 static void batadv_nc_start_timer(struct batadv_priv *bat_priv)
90 {
91         queue_delayed_work(batadv_event_workqueue, &bat_priv->nc.work,
92                            msecs_to_jiffies(10));
93 }
94
95 /**
96  * batadv_nc_tvlv_container_update() - update the network coding tvlv container
97  *  after network coding setting change
98  * @bat_priv: the bat priv with all the soft interface information
99  */
100 static void batadv_nc_tvlv_container_update(struct batadv_priv *bat_priv)
101 {
102         char nc_mode;
103
104         nc_mode = atomic_read(&bat_priv->network_coding);
105
106         switch (nc_mode) {
107         case 0:
108                 batadv_tvlv_container_unregister(bat_priv, BATADV_TVLV_NC, 1);
109                 break;
110         case 1:
111                 batadv_tvlv_container_register(bat_priv, BATADV_TVLV_NC, 1,
112                                                NULL, 0);
113                 break;
114         }
115 }
116
117 /**
118  * batadv_nc_status_update() - update the network coding tvlv container after
119  *  network coding setting change
120  * @net_dev: the soft interface net device
121  */
122 void batadv_nc_status_update(struct net_device *net_dev)
123 {
124         struct batadv_priv *bat_priv = netdev_priv(net_dev);
125
126         batadv_nc_tvlv_container_update(bat_priv);
127 }
128
129 /**
130  * batadv_nc_tvlv_ogm_handler_v1() - process incoming nc tvlv container
131  * @bat_priv: the bat priv with all the soft interface information
132  * @orig: the orig_node of the ogm
133  * @flags: flags indicating the tvlv state (see batadv_tvlv_handler_flags)
134  * @tvlv_value: tvlv buffer containing the gateway data
135  * @tvlv_value_len: tvlv buffer length
136  */
137 static void batadv_nc_tvlv_ogm_handler_v1(struct batadv_priv *bat_priv,
138                                           struct batadv_orig_node *orig,
139                                           u8 flags,
140                                           void *tvlv_value, u16 tvlv_value_len)
141 {
142         if (flags & BATADV_TVLV_HANDLER_OGM_CIFNOTFND)
143                 clear_bit(BATADV_ORIG_CAPA_HAS_NC, &orig->capabilities);
144         else
145                 set_bit(BATADV_ORIG_CAPA_HAS_NC, &orig->capabilities);
146 }
147
148 /**
149  * batadv_nc_mesh_init() - initialise coding hash table and start house keeping
150  * @bat_priv: the bat priv with all the soft interface information
151  *
152  * Return: 0 on success or negative error number in case of failure
153  */
154 int batadv_nc_mesh_init(struct batadv_priv *bat_priv)
155 {
156         bat_priv->nc.timestamp_fwd_flush = jiffies;
157         bat_priv->nc.timestamp_sniffed_purge = jiffies;
158
159         if (bat_priv->nc.coding_hash || bat_priv->nc.decoding_hash)
160                 return 0;
161
162         bat_priv->nc.coding_hash = batadv_hash_new(128);
163         if (!bat_priv->nc.coding_hash)
164                 goto err;
165
166         batadv_hash_set_lock_class(bat_priv->nc.coding_hash,
167                                    &batadv_nc_coding_hash_lock_class_key);
168
169         bat_priv->nc.decoding_hash = batadv_hash_new(128);
170         if (!bat_priv->nc.decoding_hash) {
171                 batadv_hash_destroy(bat_priv->nc.coding_hash);
172                 goto err;
173         }
174
175         batadv_hash_set_lock_class(bat_priv->nc.decoding_hash,
176                                    &batadv_nc_decoding_hash_lock_class_key);
177
178         INIT_DELAYED_WORK(&bat_priv->nc.work, batadv_nc_worker);
179         batadv_nc_start_timer(bat_priv);
180
181         batadv_tvlv_handler_register(bat_priv, batadv_nc_tvlv_ogm_handler_v1,
182                                      NULL, BATADV_TVLV_NC, 1,
183                                      BATADV_TVLV_HANDLER_OGM_CIFNOTFND);
184         batadv_nc_tvlv_container_update(bat_priv);
185         return 0;
186
187 err:
188         return -ENOMEM;
189 }
190
191 /**
192  * batadv_nc_init_bat_priv() - initialise the nc specific bat_priv variables
193  * @bat_priv: the bat priv with all the soft interface information
194  */
195 void batadv_nc_init_bat_priv(struct batadv_priv *bat_priv)
196 {
197         atomic_set(&bat_priv->network_coding, 0);
198         bat_priv->nc.min_tq = 200;
199         bat_priv->nc.max_fwd_delay = 10;
200         bat_priv->nc.max_buffer_time = 200;
201 }
202
203 /**
204  * batadv_nc_init_orig() - initialise the nc fields of an orig_node
205  * @orig_node: the orig_node which is going to be initialised
206  */
207 void batadv_nc_init_orig(struct batadv_orig_node *orig_node)
208 {
209         INIT_LIST_HEAD(&orig_node->in_coding_list);
210         INIT_LIST_HEAD(&orig_node->out_coding_list);
211         spin_lock_init(&orig_node->in_coding_list_lock);
212         spin_lock_init(&orig_node->out_coding_list_lock);
213 }
214
215 /**
216  * batadv_nc_node_release() - release nc_node from lists and queue for free
217  *  after rcu grace period
218  * @ref: kref pointer of the nc_node
219  */
220 static void batadv_nc_node_release(struct kref *ref)
221 {
222         struct batadv_nc_node *nc_node;
223
224         nc_node = container_of(ref, struct batadv_nc_node, refcount);
225
226         batadv_orig_node_put(nc_node->orig_node);
227         kfree_rcu(nc_node, rcu);
228 }
229
230 /**
231  * batadv_nc_node_put() - decrement the nc_node refcounter and possibly
232  *  release it
233  * @nc_node: nc_node to be free'd
234  */
235 static void batadv_nc_node_put(struct batadv_nc_node *nc_node)
236 {
237         kref_put(&nc_node->refcount, batadv_nc_node_release);
238 }
239
240 /**
241  * batadv_nc_path_release() - release nc_path from lists and queue for free
242  *  after rcu grace period
243  * @ref: kref pointer of the nc_path
244  */
245 static void batadv_nc_path_release(struct kref *ref)
246 {
247         struct batadv_nc_path *nc_path;
248
249         nc_path = container_of(ref, struct batadv_nc_path, refcount);
250
251         kfree_rcu(nc_path, rcu);
252 }
253
254 /**
255  * batadv_nc_path_put() - decrement the nc_path refcounter and possibly
256  *  release it
257  * @nc_path: nc_path to be free'd
258  */
259 static void batadv_nc_path_put(struct batadv_nc_path *nc_path)
260 {
261         kref_put(&nc_path->refcount, batadv_nc_path_release);
262 }
263
264 /**
265  * batadv_nc_packet_free() - frees nc packet
266  * @nc_packet: the nc packet to free
267  * @dropped: whether the packet is freed because is is dropped
268  */
269 static void batadv_nc_packet_free(struct batadv_nc_packet *nc_packet,
270                                   bool dropped)
271 {
272         if (dropped)
273                 kfree_skb(nc_packet->skb);
274         else
275                 consume_skb(nc_packet->skb);
276
277         batadv_nc_path_put(nc_packet->nc_path);
278         kfree(nc_packet);
279 }
280
281 /**
282  * batadv_nc_to_purge_nc_node() - checks whether an nc node has to be purged
283  * @bat_priv: the bat priv with all the soft interface information
284  * @nc_node: the nc node to check
285  *
286  * Return: true if the entry has to be purged now, false otherwise
287  */
288 static bool batadv_nc_to_purge_nc_node(struct batadv_priv *bat_priv,
289                                        struct batadv_nc_node *nc_node)
290 {
291         if (atomic_read(&bat_priv->mesh_state) != BATADV_MESH_ACTIVE)
292                 return true;
293
294         return batadv_has_timed_out(nc_node->last_seen, BATADV_NC_NODE_TIMEOUT);
295 }
296
297 /**
298  * batadv_nc_to_purge_nc_path_coding() - checks whether an nc path has timed out
299  * @bat_priv: the bat priv with all the soft interface information
300  * @nc_path: the nc path to check
301  *
302  * Return: true if the entry has to be purged now, false otherwise
303  */
304 static bool batadv_nc_to_purge_nc_path_coding(struct batadv_priv *bat_priv,
305                                               struct batadv_nc_path *nc_path)
306 {
307         if (atomic_read(&bat_priv->mesh_state) != BATADV_MESH_ACTIVE)
308                 return true;
309
310         /* purge the path when no packets has been added for 10 times the
311          * max_fwd_delay time
312          */
313         return batadv_has_timed_out(nc_path->last_valid,
314                                     bat_priv->nc.max_fwd_delay * 10);
315 }
316
317 /**
318  * batadv_nc_to_purge_nc_path_decoding() - checks whether an nc path has timed
319  *  out
320  * @bat_priv: the bat priv with all the soft interface information
321  * @nc_path: the nc path to check
322  *
323  * Return: true if the entry has to be purged now, false otherwise
324  */
325 static bool batadv_nc_to_purge_nc_path_decoding(struct batadv_priv *bat_priv,
326                                                 struct batadv_nc_path *nc_path)
327 {
328         if (atomic_read(&bat_priv->mesh_state) != BATADV_MESH_ACTIVE)
329                 return true;
330
331         /* purge the path when no packets has been added for 10 times the
332          * max_buffer time
333          */
334         return batadv_has_timed_out(nc_path->last_valid,
335                                     bat_priv->nc.max_buffer_time * 10);
336 }
337
338 /**
339  * batadv_nc_purge_orig_nc_nodes() - go through list of nc nodes and purge stale
340  *  entries
341  * @bat_priv: the bat priv with all the soft interface information
342  * @list: list of nc nodes
343  * @lock: nc node list lock
344  * @to_purge: function in charge to decide whether an entry has to be purged or
345  *            not. This function takes the nc node as argument and has to return
346  *            a boolean value: true if the entry has to be deleted, false
347  *            otherwise
348  */
349 static void
350 batadv_nc_purge_orig_nc_nodes(struct batadv_priv *bat_priv,
351                               struct list_head *list,
352                               spinlock_t *lock,
353                               bool (*to_purge)(struct batadv_priv *,
354                                                struct batadv_nc_node *))
355 {
356         struct batadv_nc_node *nc_node, *nc_node_tmp;
357
358         /* For each nc_node in list */
359         spin_lock_bh(lock);
360         list_for_each_entry_safe(nc_node, nc_node_tmp, list, list) {
361                 /* if an helper function has been passed as parameter,
362                  * ask it if the entry has to be purged or not
363                  */
364                 if (to_purge && !to_purge(bat_priv, nc_node))
365                         continue;
366
367                 batadv_dbg(BATADV_DBG_NC, bat_priv,
368                            "Removing nc_node %pM -> %pM\n",
369                            nc_node->addr, nc_node->orig_node->orig);
370                 list_del_rcu(&nc_node->list);
371                 batadv_nc_node_put(nc_node);
372         }
373         spin_unlock_bh(lock);
374 }
375
376 /**
377  * batadv_nc_purge_orig() - purges all nc node data attached of the given
378  *  originator
379  * @bat_priv: the bat priv with all the soft interface information
380  * @orig_node: orig_node with the nc node entries to be purged
381  * @to_purge: function in charge to decide whether an entry has to be purged or
382  *            not. This function takes the nc node as argument and has to return
383  *            a boolean value: true is the entry has to be deleted, false
384  *            otherwise
385  */
386 void batadv_nc_purge_orig(struct batadv_priv *bat_priv,
387                           struct batadv_orig_node *orig_node,
388                           bool (*to_purge)(struct batadv_priv *,
389                                            struct batadv_nc_node *))
390 {
391         /* Check ingoing nc_node's of this orig_node */
392         batadv_nc_purge_orig_nc_nodes(bat_priv, &orig_node->in_coding_list,
393                                       &orig_node->in_coding_list_lock,
394                                       to_purge);
395
396         /* Check outgoing nc_node's of this orig_node */
397         batadv_nc_purge_orig_nc_nodes(bat_priv, &orig_node->out_coding_list,
398                                       &orig_node->out_coding_list_lock,
399                                       to_purge);
400 }
401
402 /**
403  * batadv_nc_purge_orig_hash() - traverse entire originator hash to check if
404  *  they have timed out nc nodes
405  * @bat_priv: the bat priv with all the soft interface information
406  */
407 static void batadv_nc_purge_orig_hash(struct batadv_priv *bat_priv)
408 {
409         struct batadv_hashtable *hash = bat_priv->orig_hash;
410         struct hlist_head *head;
411         struct batadv_orig_node *orig_node;
412         u32 i;
413
414         if (!hash)
415                 return;
416
417         /* For each orig_node */
418         for (i = 0; i < hash->size; i++) {
419                 head = &hash->table[i];
420
421                 rcu_read_lock();
422                 hlist_for_each_entry_rcu(orig_node, head, hash_entry)
423                         batadv_nc_purge_orig(bat_priv, orig_node,
424                                              batadv_nc_to_purge_nc_node);
425                 rcu_read_unlock();
426         }
427 }
428
429 /**
430  * batadv_nc_purge_paths() - traverse all nc paths part of the hash and remove
431  *  unused ones
432  * @bat_priv: the bat priv with all the soft interface information
433  * @hash: hash table containing the nc paths to check
434  * @to_purge: function in charge to decide whether an entry has to be purged or
435  *            not. This function takes the nc node as argument and has to return
436  *            a boolean value: true is the entry has to be deleted, false
437  *            otherwise
438  */
439 static void batadv_nc_purge_paths(struct batadv_priv *bat_priv,
440                                   struct batadv_hashtable *hash,
441                                   bool (*to_purge)(struct batadv_priv *,
442                                                    struct batadv_nc_path *))
443 {
444         struct hlist_head *head;
445         struct hlist_node *node_tmp;
446         struct batadv_nc_path *nc_path;
447         spinlock_t *lock; /* Protects lists in hash */
448         u32 i;
449
450         for (i = 0; i < hash->size; i++) {
451                 head = &hash->table[i];
452                 lock = &hash->list_locks[i];
453
454                 /* For each nc_path in this bin */
455                 spin_lock_bh(lock);
456                 hlist_for_each_entry_safe(nc_path, node_tmp, head, hash_entry) {
457                         /* if an helper function has been passed as parameter,
458                          * ask it if the entry has to be purged or not
459                          */
460                         if (to_purge && !to_purge(bat_priv, nc_path))
461                                 continue;
462
463                         /* purging an non-empty nc_path should never happen, but
464                          * is observed under high CPU load. Delay the purging
465                          * until next iteration to allow the packet_list to be
466                          * emptied first.
467                          */
468                         if (!unlikely(list_empty(&nc_path->packet_list))) {
469                                 net_ratelimited_function(printk,
470                                                          KERN_WARNING
471                                                          "Skipping free of non-empty nc_path (%pM -> %pM)!\n",
472                                                          nc_path->prev_hop,
473                                                          nc_path->next_hop);
474                                 continue;
475                         }
476
477                         /* nc_path is unused, so remove it */
478                         batadv_dbg(BATADV_DBG_NC, bat_priv,
479                                    "Remove nc_path %pM -> %pM\n",
480                                    nc_path->prev_hop, nc_path->next_hop);
481                         hlist_del_rcu(&nc_path->hash_entry);
482                         batadv_nc_path_put(nc_path);
483                 }
484                 spin_unlock_bh(lock);
485         }
486 }
487
488 /**
489  * batadv_nc_hash_key_gen() - computes the nc_path hash key
490  * @key: buffer to hold the final hash key
491  * @src: source ethernet mac address going into the hash key
492  * @dst: destination ethernet mac address going into the hash key
493  */
494 static void batadv_nc_hash_key_gen(struct batadv_nc_path *key, const char *src,
495                                    const char *dst)
496 {
497         memcpy(key->prev_hop, src, sizeof(key->prev_hop));
498         memcpy(key->next_hop, dst, sizeof(key->next_hop));
499 }
500
501 /**
502  * batadv_nc_hash_choose() - compute the hash value for an nc path
503  * @data: data to hash
504  * @size: size of the hash table
505  *
506  * Return: the selected index in the hash table for the given data.
507  */
508 static u32 batadv_nc_hash_choose(const void *data, u32 size)
509 {
510         const struct batadv_nc_path *nc_path = data;
511         u32 hash = 0;
512
513         hash = jhash(&nc_path->prev_hop, sizeof(nc_path->prev_hop), hash);
514         hash = jhash(&nc_path->next_hop, sizeof(nc_path->next_hop), hash);
515
516         return hash % size;
517 }
518
519 /**
520  * batadv_nc_hash_compare() - comparing function used in the network coding hash
521  *  tables
522  * @node: node in the local table
523  * @data2: second object to compare the node to
524  *
525  * Return: true if the two entry are the same, false otherwise
526  */
527 static bool batadv_nc_hash_compare(const struct hlist_node *node,
528                                    const void *data2)
529 {
530         const struct batadv_nc_path *nc_path1, *nc_path2;
531
532         nc_path1 = container_of(node, struct batadv_nc_path, hash_entry);
533         nc_path2 = data2;
534
535         /* Return 1 if the two keys are identical */
536         if (!batadv_compare_eth(nc_path1->prev_hop, nc_path2->prev_hop))
537                 return false;
538
539         if (!batadv_compare_eth(nc_path1->next_hop, nc_path2->next_hop))
540                 return false;
541
542         return true;
543 }
544
545 /**
546  * batadv_nc_hash_find() - search for an existing nc path and return it
547  * @hash: hash table containing the nc path
548  * @data: search key
549  *
550  * Return: the nc_path if found, NULL otherwise.
551  */
552 static struct batadv_nc_path *
553 batadv_nc_hash_find(struct batadv_hashtable *hash,
554                     void *data)
555 {
556         struct hlist_head *head;
557         struct batadv_nc_path *nc_path, *nc_path_tmp = NULL;
558         int index;
559
560         if (!hash)
561                 return NULL;
562
563         index = batadv_nc_hash_choose(data, hash->size);
564         head = &hash->table[index];
565
566         rcu_read_lock();
567         hlist_for_each_entry_rcu(nc_path, head, hash_entry) {
568                 if (!batadv_nc_hash_compare(&nc_path->hash_entry, data))
569                         continue;
570
571                 if (!kref_get_unless_zero(&nc_path->refcount))
572                         continue;
573
574                 nc_path_tmp = nc_path;
575                 break;
576         }
577         rcu_read_unlock();
578
579         return nc_path_tmp;
580 }
581
582 /**
583  * batadv_nc_send_packet() - send non-coded packet and free nc_packet struct
584  * @nc_packet: the nc packet to send
585  */
586 static void batadv_nc_send_packet(struct batadv_nc_packet *nc_packet)
587 {
588         batadv_send_unicast_skb(nc_packet->skb, nc_packet->neigh_node);
589         nc_packet->skb = NULL;
590         batadv_nc_packet_free(nc_packet, false);
591 }
592
593 /**
594  * batadv_nc_sniffed_purge() - Checks timestamp of given sniffed nc_packet.
595  * @bat_priv: the bat priv with all the soft interface information
596  * @nc_path: the nc path the packet belongs to
597  * @nc_packet: the nc packet to be checked
598  *
599  * Checks whether the given sniffed (overheard) nc_packet has hit its buffering
600  * timeout. If so, the packet is no longer kept and the entry deleted from the
601  * queue. Has to be called with the appropriate locks.
602  *
603  * Return: false as soon as the entry in the fifo queue has not been timed out
604  * yet and true otherwise.
605  */
606 static bool batadv_nc_sniffed_purge(struct batadv_priv *bat_priv,
607                                     struct batadv_nc_path *nc_path,
608                                     struct batadv_nc_packet *nc_packet)
609 {
610         unsigned long timeout = bat_priv->nc.max_buffer_time;
611         bool res = false;
612
613         lockdep_assert_held(&nc_path->packet_list_lock);
614
615         /* Packets are added to tail, so the remaining packets did not time
616          * out and we can stop processing the current queue
617          */
618         if (atomic_read(&bat_priv->mesh_state) == BATADV_MESH_ACTIVE &&
619             !batadv_has_timed_out(nc_packet->timestamp, timeout))
620                 goto out;
621
622         /* purge nc packet */
623         list_del(&nc_packet->list);
624         batadv_nc_packet_free(nc_packet, true);
625
626         res = true;
627
628 out:
629         return res;
630 }
631
632 /**
633  * batadv_nc_fwd_flush() - Checks the timestamp of the given nc packet.
634  * @bat_priv: the bat priv with all the soft interface information
635  * @nc_path: the nc path the packet belongs to
636  * @nc_packet: the nc packet to be checked
637  *
638  * Checks whether the given nc packet has hit its forward timeout. If so, the
639  * packet is no longer delayed, immediately sent and the entry deleted from the
640  * queue. Has to be called with the appropriate locks.
641  *
642  * Return: false as soon as the entry in the fifo queue has not been timed out
643  * yet and true otherwise.
644  */
645 static bool batadv_nc_fwd_flush(struct batadv_priv *bat_priv,
646                                 struct batadv_nc_path *nc_path,
647                                 struct batadv_nc_packet *nc_packet)
648 {
649         unsigned long timeout = bat_priv->nc.max_fwd_delay;
650
651         lockdep_assert_held(&nc_path->packet_list_lock);
652
653         /* Packets are added to tail, so the remaining packets did not time
654          * out and we can stop processing the current queue
655          */
656         if (atomic_read(&bat_priv->mesh_state) == BATADV_MESH_ACTIVE &&
657             !batadv_has_timed_out(nc_packet->timestamp, timeout))
658                 return false;
659
660         /* Send packet */
661         batadv_inc_counter(bat_priv, BATADV_CNT_FORWARD);
662         batadv_add_counter(bat_priv, BATADV_CNT_FORWARD_BYTES,
663                            nc_packet->skb->len + ETH_HLEN);
664         list_del(&nc_packet->list);
665         batadv_nc_send_packet(nc_packet);
666
667         return true;
668 }
669
670 /**
671  * batadv_nc_process_nc_paths() - traverse given nc packet pool and free timed
672  *  out nc packets
673  * @bat_priv: the bat priv with all the soft interface information
674  * @hash: to be processed hash table
675  * @process_fn: Function called to process given nc packet. Should return true
676  *              to encourage this function to proceed with the next packet.
677  *              Otherwise the rest of the current queue is skipped.
678  */
679 static void
680 batadv_nc_process_nc_paths(struct batadv_priv *bat_priv,
681                            struct batadv_hashtable *hash,
682                            bool (*process_fn)(struct batadv_priv *,
683                                               struct batadv_nc_path *,
684                                               struct batadv_nc_packet *))
685 {
686         struct hlist_head *head;
687         struct batadv_nc_packet *nc_packet, *nc_packet_tmp;
688         struct batadv_nc_path *nc_path;
689         bool ret;
690         int i;
691
692         if (!hash)
693                 return;
694
695         /* Loop hash table bins */
696         for (i = 0; i < hash->size; i++) {
697                 head = &hash->table[i];
698
699                 /* Loop coding paths */
700                 rcu_read_lock();
701                 hlist_for_each_entry_rcu(nc_path, head, hash_entry) {
702                         /* Loop packets */
703                         spin_lock_bh(&nc_path->packet_list_lock);
704                         list_for_each_entry_safe(nc_packet, nc_packet_tmp,
705                                                  &nc_path->packet_list, list) {
706                                 ret = process_fn(bat_priv, nc_path, nc_packet);
707                                 if (!ret)
708                                         break;
709                         }
710                         spin_unlock_bh(&nc_path->packet_list_lock);
711                 }
712                 rcu_read_unlock();
713         }
714 }
715
716 /**
717  * batadv_nc_worker() - periodic task for house keeping related to network
718  *  coding
719  * @work: kernel work struct
720  */
721 static void batadv_nc_worker(struct work_struct *work)
722 {
723         struct delayed_work *delayed_work;
724         struct batadv_priv_nc *priv_nc;
725         struct batadv_priv *bat_priv;
726         unsigned long timeout;
727
728         delayed_work = to_delayed_work(work);
729         priv_nc = container_of(delayed_work, struct batadv_priv_nc, work);
730         bat_priv = container_of(priv_nc, struct batadv_priv, nc);
731
732         batadv_nc_purge_orig_hash(bat_priv);
733         batadv_nc_purge_paths(bat_priv, bat_priv->nc.coding_hash,
734                               batadv_nc_to_purge_nc_path_coding);
735         batadv_nc_purge_paths(bat_priv, bat_priv->nc.decoding_hash,
736                               batadv_nc_to_purge_nc_path_decoding);
737
738         timeout = bat_priv->nc.max_fwd_delay;
739
740         if (batadv_has_timed_out(bat_priv->nc.timestamp_fwd_flush, timeout)) {
741                 batadv_nc_process_nc_paths(bat_priv, bat_priv->nc.coding_hash,
742                                            batadv_nc_fwd_flush);
743                 bat_priv->nc.timestamp_fwd_flush = jiffies;
744         }
745
746         if (batadv_has_timed_out(bat_priv->nc.timestamp_sniffed_purge,
747                                  bat_priv->nc.max_buffer_time)) {
748                 batadv_nc_process_nc_paths(bat_priv, bat_priv->nc.decoding_hash,
749                                            batadv_nc_sniffed_purge);
750                 bat_priv->nc.timestamp_sniffed_purge = jiffies;
751         }
752
753         /* Schedule a new check */
754         batadv_nc_start_timer(bat_priv);
755 }
756
757 /**
758  * batadv_can_nc_with_orig() - checks whether the given orig node is suitable
759  *  for coding or not
760  * @bat_priv: the bat priv with all the soft interface information
761  * @orig_node: neighboring orig node which may be used as nc candidate
762  * @ogm_packet: incoming ogm packet also used for the checks
763  *
764  * Return: true if:
765  *  1) The OGM must have the most recent sequence number.
766  *  2) The TTL must be decremented by one and only one.
767  *  3) The OGM must be received from the first hop from orig_node.
768  *  4) The TQ value of the OGM must be above bat_priv->nc.min_tq.
769  */
770 static bool batadv_can_nc_with_orig(struct batadv_priv *bat_priv,
771                                     struct batadv_orig_node *orig_node,
772                                     struct batadv_ogm_packet *ogm_packet)
773 {
774         struct batadv_orig_ifinfo *orig_ifinfo;
775         u32 last_real_seqno;
776         u8 last_ttl;
777
778         orig_ifinfo = batadv_orig_ifinfo_get(orig_node, BATADV_IF_DEFAULT);
779         if (!orig_ifinfo)
780                 return false;
781
782         last_ttl = orig_ifinfo->last_ttl;
783         last_real_seqno = orig_ifinfo->last_real_seqno;
784         batadv_orig_ifinfo_put(orig_ifinfo);
785
786         if (last_real_seqno != ntohl(ogm_packet->seqno))
787                 return false;
788         if (last_ttl != ogm_packet->ttl + 1)
789                 return false;
790         if (!batadv_compare_eth(ogm_packet->orig, ogm_packet->prev_sender))
791                 return false;
792         if (ogm_packet->tq < bat_priv->nc.min_tq)
793                 return false;
794
795         return true;
796 }
797
798 /**
799  * batadv_nc_find_nc_node() - search for an existing nc node and return it
800  * @orig_node: orig node originating the ogm packet
801  * @orig_neigh_node: neighboring orig node from which we received the ogm packet
802  *  (can be equal to orig_node)
803  * @in_coding: traverse incoming or outgoing network coding list
804  *
805  * Return: the nc_node if found, NULL otherwise.
806  */
807 static struct batadv_nc_node *
808 batadv_nc_find_nc_node(struct batadv_orig_node *orig_node,
809                        struct batadv_orig_node *orig_neigh_node,
810                        bool in_coding)
811 {
812         struct batadv_nc_node *nc_node, *nc_node_out = NULL;
813         struct list_head *list;
814
815         if (in_coding)
816                 list = &orig_neigh_node->in_coding_list;
817         else
818                 list = &orig_neigh_node->out_coding_list;
819
820         /* Traverse list of nc_nodes to orig_node */
821         rcu_read_lock();
822         list_for_each_entry_rcu(nc_node, list, list) {
823                 if (!batadv_compare_eth(nc_node->addr, orig_node->orig))
824                         continue;
825
826                 if (!kref_get_unless_zero(&nc_node->refcount))
827                         continue;
828
829                 /* Found a match */
830                 nc_node_out = nc_node;
831                 break;
832         }
833         rcu_read_unlock();
834
835         return nc_node_out;
836 }
837
838 /**
839  * batadv_nc_get_nc_node() - retrieves an nc node or creates the entry if it was
840  *  not found
841  * @bat_priv: the bat priv with all the soft interface information
842  * @orig_node: orig node originating the ogm packet
843  * @orig_neigh_node: neighboring orig node from which we received the ogm packet
844  *  (can be equal to orig_node)
845  * @in_coding: traverse incoming or outgoing network coding list
846  *
847  * Return: the nc_node if found or created, NULL in case of an error.
848  */
849 static struct batadv_nc_node *
850 batadv_nc_get_nc_node(struct batadv_priv *bat_priv,
851                       struct batadv_orig_node *orig_node,
852                       struct batadv_orig_node *orig_neigh_node,
853                       bool in_coding)
854 {
855         struct batadv_nc_node *nc_node;
856         spinlock_t *lock; /* Used to lock list selected by "int in_coding" */
857         struct list_head *list;
858
859         /* Select ingoing or outgoing coding node */
860         if (in_coding) {
861                 lock = &orig_neigh_node->in_coding_list_lock;
862                 list = &orig_neigh_node->in_coding_list;
863         } else {
864                 lock = &orig_neigh_node->out_coding_list_lock;
865                 list = &orig_neigh_node->out_coding_list;
866         }
867
868         spin_lock_bh(lock);
869
870         /* Check if nc_node is already added */
871         nc_node = batadv_nc_find_nc_node(orig_node, orig_neigh_node, in_coding);
872
873         /* Node found */
874         if (nc_node)
875                 goto unlock;
876
877         nc_node = kzalloc(sizeof(*nc_node), GFP_ATOMIC);
878         if (!nc_node)
879                 goto unlock;
880
881         /* Initialize nc_node */
882         INIT_LIST_HEAD(&nc_node->list);
883         kref_init(&nc_node->refcount);
884         ether_addr_copy(nc_node->addr, orig_node->orig);
885         kref_get(&orig_neigh_node->refcount);
886         nc_node->orig_node = orig_neigh_node;
887
888         batadv_dbg(BATADV_DBG_NC, bat_priv, "Adding nc_node %pM -> %pM\n",
889                    nc_node->addr, nc_node->orig_node->orig);
890
891         /* Add nc_node to orig_node */
892         kref_get(&nc_node->refcount);
893         list_add_tail_rcu(&nc_node->list, list);
894
895 unlock:
896         spin_unlock_bh(lock);
897
898         return nc_node;
899 }
900
901 /**
902  * batadv_nc_update_nc_node() - updates stored incoming and outgoing nc node
903  *  structs (best called on incoming OGMs)
904  * @bat_priv: the bat priv with all the soft interface information
905  * @orig_node: orig node originating the ogm packet
906  * @orig_neigh_node: neighboring orig node from which we received the ogm packet
907  *  (can be equal to orig_node)
908  * @ogm_packet: incoming ogm packet
909  * @is_single_hop_neigh: orig_node is a single hop neighbor
910  */
911 void batadv_nc_update_nc_node(struct batadv_priv *bat_priv,
912                               struct batadv_orig_node *orig_node,
913                               struct batadv_orig_node *orig_neigh_node,
914                               struct batadv_ogm_packet *ogm_packet,
915                               int is_single_hop_neigh)
916 {
917         struct batadv_nc_node *in_nc_node = NULL;
918         struct batadv_nc_node *out_nc_node = NULL;
919
920         /* Check if network coding is enabled */
921         if (!atomic_read(&bat_priv->network_coding))
922                 goto out;
923
924         /* check if orig node is network coding enabled */
925         if (!test_bit(BATADV_ORIG_CAPA_HAS_NC, &orig_node->capabilities))
926                 goto out;
927
928         /* accept ogms from 'good' neighbors and single hop neighbors */
929         if (!batadv_can_nc_with_orig(bat_priv, orig_node, ogm_packet) &&
930             !is_single_hop_neigh)
931                 goto out;
932
933         /* Add orig_node as in_nc_node on hop */
934         in_nc_node = batadv_nc_get_nc_node(bat_priv, orig_node,
935                                            orig_neigh_node, true);
936         if (!in_nc_node)
937                 goto out;
938
939         in_nc_node->last_seen = jiffies;
940
941         /* Add hop as out_nc_node on orig_node */
942         out_nc_node = batadv_nc_get_nc_node(bat_priv, orig_neigh_node,
943                                             orig_node, false);
944         if (!out_nc_node)
945                 goto out;
946
947         out_nc_node->last_seen = jiffies;
948
949 out:
950         if (in_nc_node)
951                 batadv_nc_node_put(in_nc_node);
952         if (out_nc_node)
953                 batadv_nc_node_put(out_nc_node);
954 }
955
956 /**
957  * batadv_nc_get_path() - get existing nc_path or allocate a new one
958  * @bat_priv: the bat priv with all the soft interface information
959  * @hash: hash table containing the nc path
960  * @src: ethernet source address - first half of the nc path search key
961  * @dst: ethernet destination address - second half of the nc path search key
962  *
963  * Return: pointer to nc_path if the path was found or created, returns NULL
964  * on error.
965  */
966 static struct batadv_nc_path *batadv_nc_get_path(struct batadv_priv *bat_priv,
967                                                  struct batadv_hashtable *hash,
968                                                  u8 *src,
969                                                  u8 *dst)
970 {
971         int hash_added;
972         struct batadv_nc_path *nc_path, nc_path_key;
973
974         batadv_nc_hash_key_gen(&nc_path_key, src, dst);
975
976         /* Search for existing nc_path */
977         nc_path = batadv_nc_hash_find(hash, (void *)&nc_path_key);
978
979         if (nc_path) {
980                 /* Set timestamp to delay removal of nc_path */
981                 nc_path->last_valid = jiffies;
982                 return nc_path;
983         }
984
985         /* No existing nc_path was found; create a new */
986         nc_path = kzalloc(sizeof(*nc_path), GFP_ATOMIC);
987
988         if (!nc_path)
989                 return NULL;
990
991         /* Initialize nc_path */
992         INIT_LIST_HEAD(&nc_path->packet_list);
993         spin_lock_init(&nc_path->packet_list_lock);
994         kref_init(&nc_path->refcount);
995         nc_path->last_valid = jiffies;
996         ether_addr_copy(nc_path->next_hop, dst);
997         ether_addr_copy(nc_path->prev_hop, src);
998
999         batadv_dbg(BATADV_DBG_NC, bat_priv, "Adding nc_path %pM -> %pM\n",
1000                    nc_path->prev_hop,
1001                    nc_path->next_hop);
1002
1003         /* Add nc_path to hash table */
1004         kref_get(&nc_path->refcount);
1005         hash_added = batadv_hash_add(hash, batadv_nc_hash_compare,
1006                                      batadv_nc_hash_choose, &nc_path_key,
1007                                      &nc_path->hash_entry);
1008
1009         if (hash_added < 0) {
1010                 kfree(nc_path);
1011                 return NULL;
1012         }
1013
1014         return nc_path;
1015 }
1016
1017 /**
1018  * batadv_nc_random_weight_tq() - scale the receivers TQ-value to avoid unfair
1019  *  selection of a receiver with slightly lower TQ than the other
1020  * @tq: to be weighted tq value
1021  *
1022  * Return: scaled tq value
1023  */
1024 static u8 batadv_nc_random_weight_tq(u8 tq)
1025 {
1026         /* randomize the estimated packet loss (max TQ - estimated TQ) */
1027         u8 rand_tq = prandom_u32_max(BATADV_TQ_MAX_VALUE + 1 - tq);
1028
1029         /* convert to (randomized) estimated tq again */
1030         return BATADV_TQ_MAX_VALUE - rand_tq;
1031 }
1032
1033 /**
1034  * batadv_nc_memxor() - XOR destination with source
1035  * @dst: byte array to XOR into
1036  * @src: byte array to XOR from
1037  * @len: length of destination array
1038  */
1039 static void batadv_nc_memxor(char *dst, const char *src, unsigned int len)
1040 {
1041         unsigned int i;
1042
1043         for (i = 0; i < len; ++i)
1044                 dst[i] ^= src[i];
1045 }
1046
1047 /**
1048  * batadv_nc_code_packets() - code a received unicast_packet with an nc packet
1049  *  into a coded_packet and send it
1050  * @bat_priv: the bat priv with all the soft interface information
1051  * @skb: data skb to forward
1052  * @ethhdr: pointer to the ethernet header inside the skb
1053  * @nc_packet: structure containing the packet to the skb can be coded with
1054  * @neigh_node: next hop to forward packet to
1055  *
1056  * Return: true if both packets are consumed, false otherwise.
1057  */
1058 static bool batadv_nc_code_packets(struct batadv_priv *bat_priv,
1059                                    struct sk_buff *skb,
1060                                    struct ethhdr *ethhdr,
1061                                    struct batadv_nc_packet *nc_packet,
1062                                    struct batadv_neigh_node *neigh_node)
1063 {
1064         u8 tq_weighted_neigh, tq_weighted_coding, tq_tmp;
1065         struct sk_buff *skb_dest, *skb_src;
1066         struct batadv_unicast_packet *packet1;
1067         struct batadv_unicast_packet *packet2;
1068         struct batadv_coded_packet *coded_packet;
1069         struct batadv_neigh_node *neigh_tmp, *router_neigh, *first_dest;
1070         struct batadv_neigh_node *router_coding = NULL, *second_dest;
1071         struct batadv_neigh_ifinfo *router_neigh_ifinfo = NULL;
1072         struct batadv_neigh_ifinfo *router_coding_ifinfo = NULL;
1073         u8 *first_source, *second_source;
1074         __be32 packet_id1, packet_id2;
1075         size_t count;
1076         bool res = false;
1077         int coding_len;
1078         int unicast_size = sizeof(*packet1);
1079         int coded_size = sizeof(*coded_packet);
1080         int header_add = coded_size - unicast_size;
1081
1082         /* TODO: do we need to consider the outgoing interface for
1083          * coded packets?
1084          */
1085         router_neigh = batadv_orig_router_get(neigh_node->orig_node,
1086                                               BATADV_IF_DEFAULT);
1087         if (!router_neigh)
1088                 goto out;
1089
1090         router_neigh_ifinfo = batadv_neigh_ifinfo_get(router_neigh,
1091                                                       BATADV_IF_DEFAULT);
1092         if (!router_neigh_ifinfo)
1093                 goto out;
1094
1095         neigh_tmp = nc_packet->neigh_node;
1096         router_coding = batadv_orig_router_get(neigh_tmp->orig_node,
1097                                                BATADV_IF_DEFAULT);
1098         if (!router_coding)
1099                 goto out;
1100
1101         router_coding_ifinfo = batadv_neigh_ifinfo_get(router_coding,
1102                                                        BATADV_IF_DEFAULT);
1103         if (!router_coding_ifinfo)
1104                 goto out;
1105
1106         tq_tmp = router_neigh_ifinfo->bat_iv.tq_avg;
1107         tq_weighted_neigh = batadv_nc_random_weight_tq(tq_tmp);
1108         tq_tmp = router_coding_ifinfo->bat_iv.tq_avg;
1109         tq_weighted_coding = batadv_nc_random_weight_tq(tq_tmp);
1110
1111         /* Select one destination for the MAC-header dst-field based on
1112          * weighted TQ-values.
1113          */
1114         if (tq_weighted_neigh >= tq_weighted_coding) {
1115                 /* Destination from nc_packet is selected for MAC-header */
1116                 first_dest = nc_packet->neigh_node;
1117                 first_source = nc_packet->nc_path->prev_hop;
1118                 second_dest = neigh_node;
1119                 second_source = ethhdr->h_source;
1120                 packet1 = (struct batadv_unicast_packet *)nc_packet->skb->data;
1121                 packet2 = (struct batadv_unicast_packet *)skb->data;
1122                 packet_id1 = nc_packet->packet_id;
1123                 packet_id2 = batadv_skb_crc32(skb,
1124                                               skb->data + sizeof(*packet2));
1125         } else {
1126                 /* Destination for skb is selected for MAC-header */
1127                 first_dest = neigh_node;
1128                 first_source = ethhdr->h_source;
1129                 second_dest = nc_packet->neigh_node;
1130                 second_source = nc_packet->nc_path->prev_hop;
1131                 packet1 = (struct batadv_unicast_packet *)skb->data;
1132                 packet2 = (struct batadv_unicast_packet *)nc_packet->skb->data;
1133                 packet_id1 = batadv_skb_crc32(skb,
1134                                               skb->data + sizeof(*packet1));
1135                 packet_id2 = nc_packet->packet_id;
1136         }
1137
1138         /* Instead of zero padding the smallest data buffer, we
1139          * code into the largest.
1140          */
1141         if (skb->len <= nc_packet->skb->len) {
1142                 skb_dest = nc_packet->skb;
1143                 skb_src = skb;
1144         } else {
1145                 skb_dest = skb;
1146                 skb_src = nc_packet->skb;
1147         }
1148
1149         /* coding_len is used when decoding the packet shorter packet */
1150         coding_len = skb_src->len - unicast_size;
1151
1152         if (skb_linearize(skb_dest) < 0 || skb_linearize(skb_src) < 0)
1153                 goto out;
1154
1155         skb_push(skb_dest, header_add);
1156
1157         coded_packet = (struct batadv_coded_packet *)skb_dest->data;
1158         skb_reset_mac_header(skb_dest);
1159
1160         coded_packet->packet_type = BATADV_CODED;
1161         coded_packet->version = BATADV_COMPAT_VERSION;
1162         coded_packet->ttl = packet1->ttl;
1163
1164         /* Info about first unicast packet */
1165         ether_addr_copy(coded_packet->first_source, first_source);
1166         ether_addr_copy(coded_packet->first_orig_dest, packet1->dest);
1167         coded_packet->first_crc = packet_id1;
1168         coded_packet->first_ttvn = packet1->ttvn;
1169
1170         /* Info about second unicast packet */
1171         ether_addr_copy(coded_packet->second_dest, second_dest->addr);
1172         ether_addr_copy(coded_packet->second_source, second_source);
1173         ether_addr_copy(coded_packet->second_orig_dest, packet2->dest);
1174         coded_packet->second_crc = packet_id2;
1175         coded_packet->second_ttl = packet2->ttl;
1176         coded_packet->second_ttvn = packet2->ttvn;
1177         coded_packet->coded_len = htons(coding_len);
1178
1179         /* This is where the magic happens: Code skb_src into skb_dest */
1180         batadv_nc_memxor(skb_dest->data + coded_size,
1181                          skb_src->data + unicast_size, coding_len);
1182
1183         /* Update counters accordingly */
1184         if (BATADV_SKB_CB(skb_src)->decoded &&
1185             BATADV_SKB_CB(skb_dest)->decoded) {
1186                 /* Both packets are recoded */
1187                 count = skb_src->len + ETH_HLEN;
1188                 count += skb_dest->len + ETH_HLEN;
1189                 batadv_add_counter(bat_priv, BATADV_CNT_NC_RECODE, 2);
1190                 batadv_add_counter(bat_priv, BATADV_CNT_NC_RECODE_BYTES, count);
1191         } else if (!BATADV_SKB_CB(skb_src)->decoded &&
1192                    !BATADV_SKB_CB(skb_dest)->decoded) {
1193                 /* Both packets are newly coded */
1194                 count = skb_src->len + ETH_HLEN;
1195                 count += skb_dest->len + ETH_HLEN;
1196                 batadv_add_counter(bat_priv, BATADV_CNT_NC_CODE, 2);
1197                 batadv_add_counter(bat_priv, BATADV_CNT_NC_CODE_BYTES, count);
1198         } else if (BATADV_SKB_CB(skb_src)->decoded &&
1199                    !BATADV_SKB_CB(skb_dest)->decoded) {
1200                 /* skb_src recoded and skb_dest is newly coded */
1201                 batadv_inc_counter(bat_priv, BATADV_CNT_NC_RECODE);
1202                 batadv_add_counter(bat_priv, BATADV_CNT_NC_RECODE_BYTES,
1203                                    skb_src->len + ETH_HLEN);
1204                 batadv_inc_counter(bat_priv, BATADV_CNT_NC_CODE);
1205                 batadv_add_counter(bat_priv, BATADV_CNT_NC_CODE_BYTES,
1206                                    skb_dest->len + ETH_HLEN);
1207         } else if (!BATADV_SKB_CB(skb_src)->decoded &&
1208                    BATADV_SKB_CB(skb_dest)->decoded) {
1209                 /* skb_src is newly coded and skb_dest is recoded */
1210                 batadv_inc_counter(bat_priv, BATADV_CNT_NC_CODE);
1211                 batadv_add_counter(bat_priv, BATADV_CNT_NC_CODE_BYTES,
1212                                    skb_src->len + ETH_HLEN);
1213                 batadv_inc_counter(bat_priv, BATADV_CNT_NC_RECODE);
1214                 batadv_add_counter(bat_priv, BATADV_CNT_NC_RECODE_BYTES,
1215                                    skb_dest->len + ETH_HLEN);
1216         }
1217
1218         /* skb_src is now coded into skb_dest, so free it */
1219         consume_skb(skb_src);
1220
1221         /* avoid duplicate free of skb from nc_packet */
1222         nc_packet->skb = NULL;
1223         batadv_nc_packet_free(nc_packet, false);
1224
1225         /* Send the coded packet and return true */
1226         batadv_send_unicast_skb(skb_dest, first_dest);
1227         res = true;
1228 out:
1229         if (router_neigh)
1230                 batadv_neigh_node_put(router_neigh);
1231         if (router_coding)
1232                 batadv_neigh_node_put(router_coding);
1233         if (router_neigh_ifinfo)
1234                 batadv_neigh_ifinfo_put(router_neigh_ifinfo);
1235         if (router_coding_ifinfo)
1236                 batadv_neigh_ifinfo_put(router_coding_ifinfo);
1237         return res;
1238 }
1239
1240 /**
1241  * batadv_nc_skb_coding_possible() - true if a decoded skb is available at dst.
1242  * @skb: data skb to forward
1243  * @dst: destination mac address of the other skb to code with
1244  * @src: source mac address of skb
1245  *
1246  * Whenever we network code a packet we have to check whether we received it in
1247  * a network coded form. If so, we may not be able to use it for coding because
1248  * some neighbors may also have received (overheard) the packet in the network
1249  * coded form without being able to decode it. It is hard to know which of the
1250  * neighboring nodes was able to decode the packet, therefore we can only
1251  * re-code the packet if the source of the previous encoded packet is involved.
1252  * Since the source encoded the packet we can be certain it has all necessary
1253  * decode information.
1254  *
1255  * Return: true if coding of a decoded packet is allowed.
1256  */
1257 static bool batadv_nc_skb_coding_possible(struct sk_buff *skb, u8 *dst, u8 *src)
1258 {
1259         if (BATADV_SKB_CB(skb)->decoded && !batadv_compare_eth(dst, src))
1260                 return false;
1261         return true;
1262 }
1263
1264 /**
1265  * batadv_nc_path_search() - Find the coding path matching in_nc_node and
1266  *  out_nc_node to retrieve a buffered packet that can be used for coding.
1267  * @bat_priv: the bat priv with all the soft interface information
1268  * @in_nc_node: pointer to skb next hop's neighbor nc node
1269  * @out_nc_node: pointer to skb source's neighbor nc node
1270  * @skb: data skb to forward
1271  * @eth_dst: next hop mac address of skb
1272  *
1273  * Return: true if coding of a decoded skb is allowed.
1274  */
1275 static struct batadv_nc_packet *
1276 batadv_nc_path_search(struct batadv_priv *bat_priv,
1277                       struct batadv_nc_node *in_nc_node,
1278                       struct batadv_nc_node *out_nc_node,
1279                       struct sk_buff *skb,
1280                       u8 *eth_dst)
1281 {
1282         struct batadv_nc_path *nc_path, nc_path_key;
1283         struct batadv_nc_packet *nc_packet_out = NULL;
1284         struct batadv_nc_packet *nc_packet, *nc_packet_tmp;
1285         struct batadv_hashtable *hash = bat_priv->nc.coding_hash;
1286         int idx;
1287
1288         if (!hash)
1289                 return NULL;
1290
1291         /* Create almost path key */
1292         batadv_nc_hash_key_gen(&nc_path_key, in_nc_node->addr,
1293                                out_nc_node->addr);
1294         idx = batadv_nc_hash_choose(&nc_path_key, hash->size);
1295
1296         /* Check for coding opportunities in this nc_path */
1297         rcu_read_lock();
1298         hlist_for_each_entry_rcu(nc_path, &hash->table[idx], hash_entry) {
1299                 if (!batadv_compare_eth(nc_path->prev_hop, in_nc_node->addr))
1300                         continue;
1301
1302                 if (!batadv_compare_eth(nc_path->next_hop, out_nc_node->addr))
1303                         continue;
1304
1305                 spin_lock_bh(&nc_path->packet_list_lock);
1306                 if (list_empty(&nc_path->packet_list)) {
1307                         spin_unlock_bh(&nc_path->packet_list_lock);
1308                         continue;
1309                 }
1310
1311                 list_for_each_entry_safe(nc_packet, nc_packet_tmp,
1312                                          &nc_path->packet_list, list) {
1313                         if (!batadv_nc_skb_coding_possible(nc_packet->skb,
1314                                                            eth_dst,
1315                                                            in_nc_node->addr))
1316                                 continue;
1317
1318                         /* Coding opportunity is found! */
1319                         list_del(&nc_packet->list);
1320                         nc_packet_out = nc_packet;
1321                         break;
1322                 }
1323
1324                 spin_unlock_bh(&nc_path->packet_list_lock);
1325                 break;
1326         }
1327         rcu_read_unlock();
1328
1329         return nc_packet_out;
1330 }
1331
1332 /**
1333  * batadv_nc_skb_src_search() - Loops through the list of neighoring nodes of
1334  *  the skb's sender (may be equal to the originator).
1335  * @bat_priv: the bat priv with all the soft interface information
1336  * @skb: data skb to forward
1337  * @eth_dst: next hop mac address of skb
1338  * @eth_src: source mac address of skb
1339  * @in_nc_node: pointer to skb next hop's neighbor nc node
1340  *
1341  * Return: an nc packet if a suitable coding packet was found, NULL otherwise.
1342  */
1343 static struct batadv_nc_packet *
1344 batadv_nc_skb_src_search(struct batadv_priv *bat_priv,
1345                          struct sk_buff *skb,
1346                          u8 *eth_dst,
1347                          u8 *eth_src,
1348                          struct batadv_nc_node *in_nc_node)
1349 {
1350         struct batadv_orig_node *orig_node;
1351         struct batadv_nc_node *out_nc_node;
1352         struct batadv_nc_packet *nc_packet = NULL;
1353
1354         orig_node = batadv_orig_hash_find(bat_priv, eth_src);
1355         if (!orig_node)
1356                 return NULL;
1357
1358         rcu_read_lock();
1359         list_for_each_entry_rcu(out_nc_node,
1360                                 &orig_node->out_coding_list, list) {
1361                 /* Check if the skb is decoded and if recoding is possible */
1362                 if (!batadv_nc_skb_coding_possible(skb,
1363                                                    out_nc_node->addr, eth_src))
1364                         continue;
1365
1366                 /* Search for an opportunity in this nc_path */
1367                 nc_packet = batadv_nc_path_search(bat_priv, in_nc_node,
1368                                                   out_nc_node, skb, eth_dst);
1369                 if (nc_packet)
1370                         break;
1371         }
1372         rcu_read_unlock();
1373
1374         batadv_orig_node_put(orig_node);
1375         return nc_packet;
1376 }
1377
1378 /**
1379  * batadv_nc_skb_store_before_coding() - set the ethernet src and dst of the
1380  *  unicast skb before it is stored for use in later decoding
1381  * @bat_priv: the bat priv with all the soft interface information
1382  * @skb: data skb to store
1383  * @eth_dst_new: new destination mac address of skb
1384  */
1385 static void batadv_nc_skb_store_before_coding(struct batadv_priv *bat_priv,
1386                                               struct sk_buff *skb,
1387                                               u8 *eth_dst_new)
1388 {
1389         struct ethhdr *ethhdr;
1390
1391         /* Copy skb header to change the mac header */
1392         skb = pskb_copy_for_clone(skb, GFP_ATOMIC);
1393         if (!skb)
1394                 return;
1395
1396         /* Set the mac header as if we actually sent the packet uncoded */
1397         ethhdr = eth_hdr(skb);
1398         ether_addr_copy(ethhdr->h_source, ethhdr->h_dest);
1399         ether_addr_copy(ethhdr->h_dest, eth_dst_new);
1400
1401         /* Set data pointer to MAC header to mimic packets from our tx path */
1402         skb_push(skb, ETH_HLEN);
1403
1404         /* Add the packet to the decoding packet pool */
1405         batadv_nc_skb_store_for_decoding(bat_priv, skb);
1406
1407         /* batadv_nc_skb_store_for_decoding() clones the skb, so we must free
1408          * our ref
1409          */
1410         consume_skb(skb);
1411 }
1412
1413 /**
1414  * batadv_nc_skb_dst_search() - Loops through list of neighboring nodes to dst.
1415  * @skb: data skb to forward
1416  * @neigh_node: next hop to forward packet to
1417  * @ethhdr: pointer to the ethernet header inside the skb
1418  *
1419  * Loops through list of neighboring nodes the next hop has a good connection to
1420  * (receives OGMs with a sufficient quality). We need to find a neighbor of our
1421  * next hop that potentially sent a packet which our next hop also received
1422  * (overheard) and has stored for later decoding.
1423  *
1424  * Return: true if the skb was consumed (encoded packet sent) or false otherwise
1425  */
1426 static bool batadv_nc_skb_dst_search(struct sk_buff *skb,
1427                                      struct batadv_neigh_node *neigh_node,
1428                                      struct ethhdr *ethhdr)
1429 {
1430         struct net_device *netdev = neigh_node->if_incoming->soft_iface;
1431         struct batadv_priv *bat_priv = netdev_priv(netdev);
1432         struct batadv_orig_node *orig_node = neigh_node->orig_node;
1433         struct batadv_nc_node *nc_node;
1434         struct batadv_nc_packet *nc_packet = NULL;
1435
1436         rcu_read_lock();
1437         list_for_each_entry_rcu(nc_node, &orig_node->in_coding_list, list) {
1438                 /* Search for coding opportunity with this in_nc_node */
1439                 nc_packet = batadv_nc_skb_src_search(bat_priv, skb,
1440                                                      neigh_node->addr,
1441                                                      ethhdr->h_source, nc_node);
1442
1443                 /* Opportunity was found, so stop searching */
1444                 if (nc_packet)
1445                         break;
1446         }
1447         rcu_read_unlock();
1448
1449         if (!nc_packet)
1450                 return false;
1451
1452         /* Save packets for later decoding */
1453         batadv_nc_skb_store_before_coding(bat_priv, skb,
1454                                           neigh_node->addr);
1455         batadv_nc_skb_store_before_coding(bat_priv, nc_packet->skb,
1456                                           nc_packet->neigh_node->addr);
1457
1458         /* Code and send packets */
1459         if (batadv_nc_code_packets(bat_priv, skb, ethhdr, nc_packet,
1460                                    neigh_node))
1461                 return true;
1462
1463         /* out of mem ? Coding failed - we have to free the buffered packet
1464          * to avoid memleaks. The skb passed as argument will be dealt with
1465          * by the calling function.
1466          */
1467         batadv_nc_send_packet(nc_packet);
1468         return false;
1469 }
1470
1471 /**
1472  * batadv_nc_skb_add_to_path() - buffer skb for later encoding / decoding
1473  * @skb: skb to add to path
1474  * @nc_path: path to add skb to
1475  * @neigh_node: next hop to forward packet to
1476  * @packet_id: checksum to identify packet
1477  *
1478  * Return: true if the packet was buffered or false in case of an error.
1479  */
1480 static bool batadv_nc_skb_add_to_path(struct sk_buff *skb,
1481                                       struct batadv_nc_path *nc_path,
1482                                       struct batadv_neigh_node *neigh_node,
1483                                       __be32 packet_id)
1484 {
1485         struct batadv_nc_packet *nc_packet;
1486
1487         nc_packet = kzalloc(sizeof(*nc_packet), GFP_ATOMIC);
1488         if (!nc_packet)
1489                 return false;
1490
1491         /* Initialize nc_packet */
1492         nc_packet->timestamp = jiffies;
1493         nc_packet->packet_id = packet_id;
1494         nc_packet->skb = skb;
1495         nc_packet->neigh_node = neigh_node;
1496         nc_packet->nc_path = nc_path;
1497
1498         /* Add coding packet to list */
1499         spin_lock_bh(&nc_path->packet_list_lock);
1500         list_add_tail(&nc_packet->list, &nc_path->packet_list);
1501         spin_unlock_bh(&nc_path->packet_list_lock);
1502
1503         return true;
1504 }
1505
1506 /**
1507  * batadv_nc_skb_forward() - try to code a packet or add it to the coding packet
1508  *  buffer
1509  * @skb: data skb to forward
1510  * @neigh_node: next hop to forward packet to
1511  *
1512  * Return: true if the skb was consumed (encoded packet sent) or false otherwise
1513  */
1514 bool batadv_nc_skb_forward(struct sk_buff *skb,
1515                            struct batadv_neigh_node *neigh_node)
1516 {
1517         const struct net_device *netdev = neigh_node->if_incoming->soft_iface;
1518         struct batadv_priv *bat_priv = netdev_priv(netdev);
1519         struct batadv_unicast_packet *packet;
1520         struct batadv_nc_path *nc_path;
1521         struct ethhdr *ethhdr = eth_hdr(skb);
1522         __be32 packet_id;
1523         u8 *payload;
1524
1525         /* Check if network coding is enabled */
1526         if (!atomic_read(&bat_priv->network_coding))
1527                 goto out;
1528
1529         /* We only handle unicast packets */
1530         payload = skb_network_header(skb);
1531         packet = (struct batadv_unicast_packet *)payload;
1532         if (packet->packet_type != BATADV_UNICAST)
1533                 goto out;
1534
1535         /* Try to find a coding opportunity and send the skb if one is found */
1536         if (batadv_nc_skb_dst_search(skb, neigh_node, ethhdr))
1537                 return true;
1538
1539         /* Find or create a nc_path for this src-dst pair */
1540         nc_path = batadv_nc_get_path(bat_priv,
1541                                      bat_priv->nc.coding_hash,
1542                                      ethhdr->h_source,
1543                                      neigh_node->addr);
1544
1545         if (!nc_path)
1546                 goto out;
1547
1548         /* Add skb to nc_path */
1549         packet_id = batadv_skb_crc32(skb, payload + sizeof(*packet));
1550         if (!batadv_nc_skb_add_to_path(skb, nc_path, neigh_node, packet_id))
1551                 goto free_nc_path;
1552
1553         /* Packet is consumed */
1554         return true;
1555
1556 free_nc_path:
1557         batadv_nc_path_put(nc_path);
1558 out:
1559         /* Packet is not consumed */
1560         return false;
1561 }
1562
1563 /**
1564  * batadv_nc_skb_store_for_decoding() - save a clone of the skb which can be
1565  *  used when decoding coded packets
1566  * @bat_priv: the bat priv with all the soft interface information
1567  * @skb: data skb to store
1568  */
1569 void batadv_nc_skb_store_for_decoding(struct batadv_priv *bat_priv,
1570                                       struct sk_buff *skb)
1571 {
1572         struct batadv_unicast_packet *packet;
1573         struct batadv_nc_path *nc_path;
1574         struct ethhdr *ethhdr = eth_hdr(skb);
1575         __be32 packet_id;
1576         u8 *payload;
1577
1578         /* Check if network coding is enabled */
1579         if (!atomic_read(&bat_priv->network_coding))
1580                 goto out;
1581
1582         /* Check for supported packet type */
1583         payload = skb_network_header(skb);
1584         packet = (struct batadv_unicast_packet *)payload;
1585         if (packet->packet_type != BATADV_UNICAST)
1586                 goto out;
1587
1588         /* Find existing nc_path or create a new */
1589         nc_path = batadv_nc_get_path(bat_priv,
1590                                      bat_priv->nc.decoding_hash,
1591                                      ethhdr->h_source,
1592                                      ethhdr->h_dest);
1593
1594         if (!nc_path)
1595                 goto out;
1596
1597         /* Clone skb and adjust skb->data to point at batman header */
1598         skb = skb_clone(skb, GFP_ATOMIC);
1599         if (unlikely(!skb))
1600                 goto free_nc_path;
1601
1602         if (unlikely(!pskb_may_pull(skb, ETH_HLEN)))
1603                 goto free_skb;
1604
1605         if (unlikely(!skb_pull_rcsum(skb, ETH_HLEN)))
1606                 goto free_skb;
1607
1608         /* Add skb to nc_path */
1609         packet_id = batadv_skb_crc32(skb, payload + sizeof(*packet));
1610         if (!batadv_nc_skb_add_to_path(skb, nc_path, NULL, packet_id))
1611                 goto free_skb;
1612
1613         batadv_inc_counter(bat_priv, BATADV_CNT_NC_BUFFER);
1614         return;
1615
1616 free_skb:
1617         kfree_skb(skb);
1618 free_nc_path:
1619         batadv_nc_path_put(nc_path);
1620 out:
1621         return;
1622 }
1623
1624 /**
1625  * batadv_nc_skb_store_sniffed_unicast() - check if a received unicast packet
1626  *  should be saved in the decoding buffer and, if so, store it there
1627  * @bat_priv: the bat priv with all the soft interface information
1628  * @skb: unicast skb to store
1629  */
1630 void batadv_nc_skb_store_sniffed_unicast(struct batadv_priv *bat_priv,
1631                                          struct sk_buff *skb)
1632 {
1633         struct ethhdr *ethhdr = eth_hdr(skb);
1634
1635         if (batadv_is_my_mac(bat_priv, ethhdr->h_dest))
1636                 return;
1637
1638         /* Set data pointer to MAC header to mimic packets from our tx path */
1639         skb_push(skb, ETH_HLEN);
1640
1641         batadv_nc_skb_store_for_decoding(bat_priv, skb);
1642 }
1643
1644 /**
1645  * batadv_nc_skb_decode_packet() - decode given skb using the decode data stored
1646  *  in nc_packet
1647  * @bat_priv: the bat priv with all the soft interface information
1648  * @skb: unicast skb to decode
1649  * @nc_packet: decode data needed to decode the skb
1650  *
1651  * Return: pointer to decoded unicast packet if the packet was decoded or NULL
1652  * in case of an error.
1653  */
1654 static struct batadv_unicast_packet *
1655 batadv_nc_skb_decode_packet(struct batadv_priv *bat_priv, struct sk_buff *skb,
1656                             struct batadv_nc_packet *nc_packet)
1657 {
1658         const int h_size = sizeof(struct batadv_unicast_packet);
1659         const int h_diff = sizeof(struct batadv_coded_packet) - h_size;
1660         struct batadv_unicast_packet *unicast_packet;
1661         struct batadv_coded_packet coded_packet_tmp;
1662         struct ethhdr *ethhdr, ethhdr_tmp;
1663         u8 *orig_dest, ttl, ttvn;
1664         unsigned int coding_len;
1665         int err;
1666
1667         /* Save headers temporarily */
1668         memcpy(&coded_packet_tmp, skb->data, sizeof(coded_packet_tmp));
1669         memcpy(&ethhdr_tmp, skb_mac_header(skb), sizeof(ethhdr_tmp));
1670
1671         if (skb_cow(skb, 0) < 0)
1672                 return NULL;
1673
1674         if (unlikely(!skb_pull_rcsum(skb, h_diff)))
1675                 return NULL;
1676
1677         /* Data points to batman header, so set mac header 14 bytes before
1678          * and network to data
1679          */
1680         skb_set_mac_header(skb, -ETH_HLEN);
1681         skb_reset_network_header(skb);
1682
1683         /* Reconstruct original mac header */
1684         ethhdr = eth_hdr(skb);
1685         *ethhdr = ethhdr_tmp;
1686
1687         /* Select the correct unicast header information based on the location
1688          * of our mac address in the coded_packet header
1689          */
1690         if (batadv_is_my_mac(bat_priv, coded_packet_tmp.second_dest)) {
1691                 /* If we are the second destination the packet was overheard,
1692                  * so the Ethernet address must be copied to h_dest and
1693                  * pkt_type changed from PACKET_OTHERHOST to PACKET_HOST
1694                  */
1695                 ether_addr_copy(ethhdr->h_dest, coded_packet_tmp.second_dest);
1696                 skb->pkt_type = PACKET_HOST;
1697
1698                 orig_dest = coded_packet_tmp.second_orig_dest;
1699                 ttl = coded_packet_tmp.second_ttl;
1700                 ttvn = coded_packet_tmp.second_ttvn;
1701         } else {
1702                 orig_dest = coded_packet_tmp.first_orig_dest;
1703                 ttl = coded_packet_tmp.ttl;
1704                 ttvn = coded_packet_tmp.first_ttvn;
1705         }
1706
1707         coding_len = ntohs(coded_packet_tmp.coded_len);
1708
1709         if (coding_len > skb->len)
1710                 return NULL;
1711
1712         /* Here the magic is reversed:
1713          *   extract the missing packet from the received coded packet
1714          */
1715         batadv_nc_memxor(skb->data + h_size,
1716                          nc_packet->skb->data + h_size,
1717                          coding_len);
1718
1719         /* Resize decoded skb if decoded with larger packet */
1720         if (nc_packet->skb->len > coding_len + h_size) {
1721                 err = pskb_trim_rcsum(skb, coding_len + h_size);
1722                 if (err)
1723                         return NULL;
1724         }
1725
1726         /* Create decoded unicast packet */
1727         unicast_packet = (struct batadv_unicast_packet *)skb->data;
1728         unicast_packet->packet_type = BATADV_UNICAST;
1729         unicast_packet->version = BATADV_COMPAT_VERSION;
1730         unicast_packet->ttl = ttl;
1731         ether_addr_copy(unicast_packet->dest, orig_dest);
1732         unicast_packet->ttvn = ttvn;
1733
1734         batadv_nc_packet_free(nc_packet, false);
1735         return unicast_packet;
1736 }
1737
1738 /**
1739  * batadv_nc_find_decoding_packet() - search through buffered decoding data to
1740  *  find the data needed to decode the coded packet
1741  * @bat_priv: the bat priv with all the soft interface information
1742  * @ethhdr: pointer to the ethernet header inside the coded packet
1743  * @coded: coded packet we try to find decode data for
1744  *
1745  * Return: pointer to nc packet if the needed data was found or NULL otherwise.
1746  */
1747 static struct batadv_nc_packet *
1748 batadv_nc_find_decoding_packet(struct batadv_priv *bat_priv,
1749                                struct ethhdr *ethhdr,
1750                                struct batadv_coded_packet *coded)
1751 {
1752         struct batadv_hashtable *hash = bat_priv->nc.decoding_hash;
1753         struct batadv_nc_packet *tmp_nc_packet, *nc_packet = NULL;
1754         struct batadv_nc_path *nc_path, nc_path_key;
1755         u8 *dest, *source;
1756         __be32 packet_id;
1757         int index;
1758
1759         if (!hash)
1760                 return NULL;
1761
1762         /* Select the correct packet id based on the location of our mac-addr */
1763         dest = ethhdr->h_source;
1764         if (!batadv_is_my_mac(bat_priv, coded->second_dest)) {
1765                 source = coded->second_source;
1766                 packet_id = coded->second_crc;
1767         } else {
1768                 source = coded->first_source;
1769                 packet_id = coded->first_crc;
1770         }
1771
1772         batadv_nc_hash_key_gen(&nc_path_key, source, dest);
1773         index = batadv_nc_hash_choose(&nc_path_key, hash->size);
1774
1775         /* Search for matching coding path */
1776         rcu_read_lock();
1777         hlist_for_each_entry_rcu(nc_path, &hash->table[index], hash_entry) {
1778                 /* Find matching nc_packet */
1779                 spin_lock_bh(&nc_path->packet_list_lock);
1780                 list_for_each_entry(tmp_nc_packet,
1781                                     &nc_path->packet_list, list) {
1782                         if (packet_id == tmp_nc_packet->packet_id) {
1783                                 list_del(&tmp_nc_packet->list);
1784
1785                                 nc_packet = tmp_nc_packet;
1786                                 break;
1787                         }
1788                 }
1789                 spin_unlock_bh(&nc_path->packet_list_lock);
1790
1791                 if (nc_packet)
1792                         break;
1793         }
1794         rcu_read_unlock();
1795
1796         if (!nc_packet)
1797                 batadv_dbg(BATADV_DBG_NC, bat_priv,
1798                            "No decoding packet found for %u\n", packet_id);
1799
1800         return nc_packet;
1801 }
1802
1803 /**
1804  * batadv_nc_recv_coded_packet() - try to decode coded packet and enqueue the
1805  *  resulting unicast packet
1806  * @skb: incoming coded packet
1807  * @recv_if: pointer to interface this packet was received on
1808  *
1809  * Return: NET_RX_SUCCESS if the packet has been consumed or NET_RX_DROP
1810  * otherwise.
1811  */
1812 static int batadv_nc_recv_coded_packet(struct sk_buff *skb,
1813                                        struct batadv_hard_iface *recv_if)
1814 {
1815         struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
1816         struct batadv_unicast_packet *unicast_packet;
1817         struct batadv_coded_packet *coded_packet;
1818         struct batadv_nc_packet *nc_packet;
1819         struct ethhdr *ethhdr;
1820         int hdr_size = sizeof(*coded_packet);
1821
1822         /* Check if network coding is enabled */
1823         if (!atomic_read(&bat_priv->network_coding))
1824                 goto free_skb;
1825
1826         /* Make sure we can access (and remove) header */
1827         if (unlikely(!pskb_may_pull(skb, hdr_size)))
1828                 goto free_skb;
1829
1830         coded_packet = (struct batadv_coded_packet *)skb->data;
1831         ethhdr = eth_hdr(skb);
1832
1833         /* Verify frame is destined for us */
1834         if (!batadv_is_my_mac(bat_priv, ethhdr->h_dest) &&
1835             !batadv_is_my_mac(bat_priv, coded_packet->second_dest))
1836                 goto free_skb;
1837
1838         /* Update stat counter */
1839         if (batadv_is_my_mac(bat_priv, coded_packet->second_dest))
1840                 batadv_inc_counter(bat_priv, BATADV_CNT_NC_SNIFFED);
1841
1842         nc_packet = batadv_nc_find_decoding_packet(bat_priv, ethhdr,
1843                                                    coded_packet);
1844         if (!nc_packet) {
1845                 batadv_inc_counter(bat_priv, BATADV_CNT_NC_DECODE_FAILED);
1846                 goto free_skb;
1847         }
1848
1849         /* Make skb's linear, because decoding accesses the entire buffer */
1850         if (skb_linearize(skb) < 0)
1851                 goto free_nc_packet;
1852
1853         if (skb_linearize(nc_packet->skb) < 0)
1854                 goto free_nc_packet;
1855
1856         /* Decode the packet */
1857         unicast_packet = batadv_nc_skb_decode_packet(bat_priv, skb, nc_packet);
1858         if (!unicast_packet) {
1859                 batadv_inc_counter(bat_priv, BATADV_CNT_NC_DECODE_FAILED);
1860                 goto free_nc_packet;
1861         }
1862
1863         /* Mark packet as decoded to do correct recoding when forwarding */
1864         BATADV_SKB_CB(skb)->decoded = true;
1865         batadv_inc_counter(bat_priv, BATADV_CNT_NC_DECODE);
1866         batadv_add_counter(bat_priv, BATADV_CNT_NC_DECODE_BYTES,
1867                            skb->len + ETH_HLEN);
1868         return batadv_recv_unicast_packet(skb, recv_if);
1869
1870 free_nc_packet:
1871         batadv_nc_packet_free(nc_packet, true);
1872 free_skb:
1873         kfree_skb(skb);
1874
1875         return NET_RX_DROP;
1876 }
1877
1878 /**
1879  * batadv_nc_mesh_free() - clean up network coding memory
1880  * @bat_priv: the bat priv with all the soft interface information
1881  */
1882 void batadv_nc_mesh_free(struct batadv_priv *bat_priv)
1883 {
1884         batadv_tvlv_container_unregister(bat_priv, BATADV_TVLV_NC, 1);
1885         batadv_tvlv_handler_unregister(bat_priv, BATADV_TVLV_NC, 1);
1886         cancel_delayed_work_sync(&bat_priv->nc.work);
1887
1888         batadv_nc_purge_paths(bat_priv, bat_priv->nc.coding_hash, NULL);
1889         batadv_hash_destroy(bat_priv->nc.coding_hash);
1890         batadv_nc_purge_paths(bat_priv, bat_priv->nc.decoding_hash, NULL);
1891         batadv_hash_destroy(bat_priv->nc.decoding_hash);
1892 }
1893
1894 #ifdef CONFIG_BATMAN_ADV_DEBUGFS
1895 /**
1896  * batadv_nc_nodes_seq_print_text() - print the nc node information
1897  * @seq: seq file to print on
1898  * @offset: not used
1899  *
1900  * Return: always 0
1901  */
1902 int batadv_nc_nodes_seq_print_text(struct seq_file *seq, void *offset)
1903 {
1904         struct net_device *net_dev = (struct net_device *)seq->private;
1905         struct batadv_priv *bat_priv = netdev_priv(net_dev);
1906         struct batadv_hashtable *hash = bat_priv->orig_hash;
1907         struct batadv_hard_iface *primary_if;
1908         struct hlist_head *head;
1909         struct batadv_orig_node *orig_node;
1910         struct batadv_nc_node *nc_node;
1911         int i;
1912
1913         primary_if = batadv_seq_print_text_primary_if_get(seq);
1914         if (!primary_if)
1915                 goto out;
1916
1917         /* Traverse list of originators */
1918         for (i = 0; i < hash->size; i++) {
1919                 head = &hash->table[i];
1920
1921                 /* For each orig_node in this bin */
1922                 rcu_read_lock();
1923                 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
1924                         /* no need to print the orig node if it does not have
1925                          * network coding neighbors
1926                          */
1927                         if (list_empty(&orig_node->in_coding_list) &&
1928                             list_empty(&orig_node->out_coding_list))
1929                                 continue;
1930
1931                         seq_printf(seq, "Node:      %pM\n", orig_node->orig);
1932
1933                         seq_puts(seq, " Ingoing:  ");
1934                         /* For each in_nc_node to this orig_node */
1935                         list_for_each_entry_rcu(nc_node,
1936                                                 &orig_node->in_coding_list,
1937                                                 list)
1938                                 seq_printf(seq, "%pM ",
1939                                            nc_node->addr);
1940                         seq_puts(seq, "\n Outgoing: ");
1941                         /* For out_nc_node to this orig_node */
1942                         list_for_each_entry_rcu(nc_node,
1943                                                 &orig_node->out_coding_list,
1944                                                 list)
1945                                 seq_printf(seq, "%pM ",
1946                                            nc_node->addr);
1947                         seq_puts(seq, "\n\n");
1948                 }
1949                 rcu_read_unlock();
1950         }
1951
1952 out:
1953         if (primary_if)
1954                 batadv_hardif_put(primary_if);
1955         return 0;
1956 }
1957
1958 /**
1959  * batadv_nc_init_debugfs() - create nc folder and related files in debugfs
1960  * @bat_priv: the bat priv with all the soft interface information
1961  *
1962  * Return: 0 on success or negative error number in case of failure
1963  */
1964 int batadv_nc_init_debugfs(struct batadv_priv *bat_priv)
1965 {
1966         struct dentry *nc_dir, *file;
1967
1968         nc_dir = debugfs_create_dir("nc", bat_priv->debug_dir);
1969         if (!nc_dir)
1970                 goto out;
1971
1972         file = debugfs_create_u8("min_tq", 0644, nc_dir, &bat_priv->nc.min_tq);
1973         if (!file)
1974                 goto out;
1975
1976         file = debugfs_create_u32("max_fwd_delay", 0644, nc_dir,
1977                                   &bat_priv->nc.max_fwd_delay);
1978         if (!file)
1979                 goto out;
1980
1981         file = debugfs_create_u32("max_buffer_time", 0644, nc_dir,
1982                                   &bat_priv->nc.max_buffer_time);
1983         if (!file)
1984                 goto out;
1985
1986         return 0;
1987
1988 out:
1989         return -ENOMEM;
1990 }
1991 #endif