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