xref: /openbmc/linux/net/batman-adv/fragmentation.c (revision 5d9673109c7c7c6a22b7bedba22701e173e1ea0d)
10046b040SSven Eckelmann /* Copyright (C) 2013-2016  B.A.T.M.A.N. contributors:
2610bfc6bSMartin Hundebøll  *
3610bfc6bSMartin Hundebøll  * Martin Hundebøll <martin@hundeboll.net>
4610bfc6bSMartin Hundebøll  *
5610bfc6bSMartin Hundebøll  * This program is free software; you can redistribute it and/or
6610bfc6bSMartin Hundebøll  * modify it under the terms of version 2 of the GNU General Public
7610bfc6bSMartin Hundebøll  * License as published by the Free Software Foundation.
8610bfc6bSMartin Hundebøll  *
9610bfc6bSMartin Hundebøll  * This program is distributed in the hope that it will be useful, but
10610bfc6bSMartin Hundebøll  * WITHOUT ANY WARRANTY; without even the implied warranty of
11610bfc6bSMartin Hundebøll  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12610bfc6bSMartin Hundebøll  * General Public License for more details.
13610bfc6bSMartin Hundebøll  *
14610bfc6bSMartin Hundebøll  * You should have received a copy of the GNU General Public License
15ebf38fb7SAntonio Quartulli  * along with this program; if not, see <http://www.gnu.org/licenses/>.
16610bfc6bSMartin Hundebøll  */
17610bfc6bSMartin Hundebøll 
18610bfc6bSMartin Hundebøll #include "fragmentation.h"
191e2c2a4fSSven Eckelmann #include "main.h"
201e2c2a4fSSven Eckelmann 
211e2c2a4fSSven Eckelmann #include <linux/atomic.h>
221e2c2a4fSSven Eckelmann #include <linux/byteorder/generic.h>
231e2c2a4fSSven Eckelmann #include <linux/etherdevice.h>
241e2c2a4fSSven Eckelmann #include <linux/fs.h>
251e2c2a4fSSven Eckelmann #include <linux/if_ether.h>
261e2c2a4fSSven Eckelmann #include <linux/jiffies.h>
271e2c2a4fSSven Eckelmann #include <linux/kernel.h>
285274cd68SSven Eckelmann #include <linux/lockdep.h>
291e2c2a4fSSven Eckelmann #include <linux/netdevice.h>
301e2c2a4fSSven Eckelmann #include <linux/pkt_sched.h>
311e2c2a4fSSven Eckelmann #include <linux/skbuff.h>
321e2c2a4fSSven Eckelmann #include <linux/slab.h>
331e2c2a4fSSven Eckelmann #include <linux/spinlock.h>
341e2c2a4fSSven Eckelmann #include <linux/string.h>
351e2c2a4fSSven Eckelmann 
36610bfc6bSMartin Hundebøll #include "hard-interface.h"
371e2c2a4fSSven Eckelmann #include "originator.h"
381e2c2a4fSSven Eckelmann #include "packet.h"
391e2c2a4fSSven Eckelmann #include "routing.h"
401e2c2a4fSSven Eckelmann #include "send.h"
41610bfc6bSMartin Hundebøll #include "soft-interface.h"
42610bfc6bSMartin Hundebøll 
43610bfc6bSMartin Hundebøll /**
44610bfc6bSMartin Hundebøll  * batadv_frag_clear_chain - delete entries in the fragment buffer chain
45610bfc6bSMartin Hundebøll  * @head: head of chain with entries.
46610bfc6bSMartin Hundebøll  *
47610bfc6bSMartin Hundebøll  * Free fragments in the passed hlist. Should be called with appropriate lock.
48610bfc6bSMartin Hundebøll  */
49610bfc6bSMartin Hundebøll static void batadv_frag_clear_chain(struct hlist_head *head)
50610bfc6bSMartin Hundebøll {
51610bfc6bSMartin Hundebøll 	struct batadv_frag_list_entry *entry;
52610bfc6bSMartin Hundebøll 	struct hlist_node *node;
53610bfc6bSMartin Hundebøll 
54610bfc6bSMartin Hundebøll 	hlist_for_each_entry_safe(entry, node, head, list) {
55610bfc6bSMartin Hundebøll 		hlist_del(&entry->list);
56610bfc6bSMartin Hundebøll 		kfree_skb(entry->skb);
57610bfc6bSMartin Hundebøll 		kfree(entry);
58610bfc6bSMartin Hundebøll 	}
59610bfc6bSMartin Hundebøll }
60610bfc6bSMartin Hundebøll 
61610bfc6bSMartin Hundebøll /**
62610bfc6bSMartin Hundebøll  * batadv_frag_purge_orig - free fragments associated to an orig
63610bfc6bSMartin Hundebøll  * @orig_node: originator to free fragments from
64610bfc6bSMartin Hundebøll  * @check_cb: optional function to tell if an entry should be purged
65610bfc6bSMartin Hundebøll  */
66610bfc6bSMartin Hundebøll void batadv_frag_purge_orig(struct batadv_orig_node *orig_node,
67610bfc6bSMartin Hundebøll 			    bool (*check_cb)(struct batadv_frag_table_entry *))
68610bfc6bSMartin Hundebøll {
69610bfc6bSMartin Hundebøll 	struct batadv_frag_table_entry *chain;
706b5e971aSSven Eckelmann 	u8 i;
71610bfc6bSMartin Hundebøll 
72610bfc6bSMartin Hundebøll 	for (i = 0; i < BATADV_FRAG_BUFFER_COUNT; i++) {
73610bfc6bSMartin Hundebøll 		chain = &orig_node->fragments[i];
7401f6b5c7SSven Eckelmann 		spin_lock_bh(&chain->lock);
75610bfc6bSMartin Hundebøll 
76610bfc6bSMartin Hundebøll 		if (!check_cb || check_cb(chain)) {
7701f6b5c7SSven Eckelmann 			batadv_frag_clear_chain(&chain->head);
7801f6b5c7SSven Eckelmann 			chain->size = 0;
79610bfc6bSMartin Hundebøll 		}
80610bfc6bSMartin Hundebøll 
8101f6b5c7SSven Eckelmann 		spin_unlock_bh(&chain->lock);
82610bfc6bSMartin Hundebøll 	}
83610bfc6bSMartin Hundebøll }
84610bfc6bSMartin Hundebøll 
85610bfc6bSMartin Hundebøll /**
86610bfc6bSMartin Hundebøll  * batadv_frag_size_limit - maximum possible size of packet to be fragmented
87610bfc6bSMartin Hundebøll  *
8862fe710fSSven Eckelmann  * Return: the maximum size of payload that can be fragmented.
89610bfc6bSMartin Hundebøll  */
90610bfc6bSMartin Hundebøll static int batadv_frag_size_limit(void)
91610bfc6bSMartin Hundebøll {
92610bfc6bSMartin Hundebøll 	int limit = BATADV_FRAG_MAX_FRAG_SIZE;
93610bfc6bSMartin Hundebøll 
94610bfc6bSMartin Hundebøll 	limit -= sizeof(struct batadv_frag_packet);
95610bfc6bSMartin Hundebøll 	limit *= BATADV_FRAG_MAX_FRAGMENTS;
96610bfc6bSMartin Hundebøll 
97610bfc6bSMartin Hundebøll 	return limit;
98610bfc6bSMartin Hundebøll }
99610bfc6bSMartin Hundebøll 
100610bfc6bSMartin Hundebøll /**
101610bfc6bSMartin Hundebøll  * batadv_frag_init_chain - check and prepare fragment chain for new fragment
102610bfc6bSMartin Hundebøll  * @chain: chain in fragments table to init
103610bfc6bSMartin Hundebøll  * @seqno: sequence number of the received fragment
104610bfc6bSMartin Hundebøll  *
105610bfc6bSMartin Hundebøll  * Make chain ready for a fragment with sequence number "seqno". Delete existing
106610bfc6bSMartin Hundebøll  * entries if they have an "old" sequence number.
107610bfc6bSMartin Hundebøll  *
108610bfc6bSMartin Hundebøll  * Caller must hold chain->lock.
109610bfc6bSMartin Hundebøll  *
11062fe710fSSven Eckelmann  * Return: true if chain is empty and caller can just insert the new fragment
111610bfc6bSMartin Hundebøll  * without searching for the right position.
112610bfc6bSMartin Hundebøll  */
113610bfc6bSMartin Hundebøll static bool batadv_frag_init_chain(struct batadv_frag_table_entry *chain,
1146b5e971aSSven Eckelmann 				   u16 seqno)
115610bfc6bSMartin Hundebøll {
1165274cd68SSven Eckelmann 	lockdep_assert_held(&chain->lock);
1175274cd68SSven Eckelmann 
118610bfc6bSMartin Hundebøll 	if (chain->seqno == seqno)
119610bfc6bSMartin Hundebøll 		return false;
120610bfc6bSMartin Hundebøll 
121610bfc6bSMartin Hundebøll 	if (!hlist_empty(&chain->head))
122610bfc6bSMartin Hundebøll 		batadv_frag_clear_chain(&chain->head);
123610bfc6bSMartin Hundebøll 
124610bfc6bSMartin Hundebøll 	chain->size = 0;
125610bfc6bSMartin Hundebøll 	chain->seqno = seqno;
126610bfc6bSMartin Hundebøll 
127610bfc6bSMartin Hundebøll 	return true;
128610bfc6bSMartin Hundebøll }
129610bfc6bSMartin Hundebøll 
130610bfc6bSMartin Hundebøll /**
131610bfc6bSMartin Hundebøll  * batadv_frag_insert_packet - insert a fragment into a fragment chain
132610bfc6bSMartin Hundebøll  * @orig_node: originator that the fragment was received from
133610bfc6bSMartin Hundebøll  * @skb: skb to insert
134610bfc6bSMartin Hundebøll  * @chain_out: list head to attach complete chains of fragments to
135610bfc6bSMartin Hundebøll  *
136610bfc6bSMartin Hundebøll  * Insert a new fragment into the reverse ordered chain in the right table
137610bfc6bSMartin Hundebøll  * entry. The hash table entry is cleared if "old" fragments exist in it.
138610bfc6bSMartin Hundebøll  *
13962fe710fSSven Eckelmann  * Return: true if skb is buffered, false on error. If the chain has all the
140610bfc6bSMartin Hundebøll  * fragments needed to merge the packet, the chain is moved to the passed head
141610bfc6bSMartin Hundebøll  * to avoid locking the chain in the table.
142610bfc6bSMartin Hundebøll  */
143610bfc6bSMartin Hundebøll static bool batadv_frag_insert_packet(struct batadv_orig_node *orig_node,
144610bfc6bSMartin Hundebøll 				      struct sk_buff *skb,
145610bfc6bSMartin Hundebøll 				      struct hlist_head *chain_out)
146610bfc6bSMartin Hundebøll {
147610bfc6bSMartin Hundebøll 	struct batadv_frag_table_entry *chain;
148610bfc6bSMartin Hundebøll 	struct batadv_frag_list_entry *frag_entry_new = NULL, *frag_entry_curr;
149d9124268SSven Eckelmann 	struct batadv_frag_list_entry *frag_entry_last = NULL;
150610bfc6bSMartin Hundebøll 	struct batadv_frag_packet *frag_packet;
1516b5e971aSSven Eckelmann 	u8 bucket;
1526b5e971aSSven Eckelmann 	u16 seqno, hdr_size = sizeof(struct batadv_frag_packet);
153610bfc6bSMartin Hundebøll 	bool ret = false;
154610bfc6bSMartin Hundebøll 
155610bfc6bSMartin Hundebøll 	/* Linearize packet to avoid linearizing 16 packets in a row when doing
156610bfc6bSMartin Hundebøll 	 * the later merge. Non-linear merge should be added to remove this
157610bfc6bSMartin Hundebøll 	 * linearization.
158610bfc6bSMartin Hundebøll 	 */
159610bfc6bSMartin Hundebøll 	if (skb_linearize(skb) < 0)
160610bfc6bSMartin Hundebøll 		goto err;
161610bfc6bSMartin Hundebøll 
162610bfc6bSMartin Hundebøll 	frag_packet = (struct batadv_frag_packet *)skb->data;
163610bfc6bSMartin Hundebøll 	seqno = ntohs(frag_packet->seqno);
164610bfc6bSMartin Hundebøll 	bucket = seqno % BATADV_FRAG_BUFFER_COUNT;
165610bfc6bSMartin Hundebøll 
166610bfc6bSMartin Hundebøll 	frag_entry_new = kmalloc(sizeof(*frag_entry_new), GFP_ATOMIC);
167610bfc6bSMartin Hundebøll 	if (!frag_entry_new)
168610bfc6bSMartin Hundebøll 		goto err;
169610bfc6bSMartin Hundebøll 
170610bfc6bSMartin Hundebøll 	frag_entry_new->skb = skb;
171610bfc6bSMartin Hundebøll 	frag_entry_new->no = frag_packet->no;
172610bfc6bSMartin Hundebøll 
173610bfc6bSMartin Hundebøll 	/* Select entry in the "chain table" and delete any prior fragments
174610bfc6bSMartin Hundebøll 	 * with another sequence number. batadv_frag_init_chain() returns true,
175610bfc6bSMartin Hundebøll 	 * if the list is empty at return.
176610bfc6bSMartin Hundebøll 	 */
177610bfc6bSMartin Hundebøll 	chain = &orig_node->fragments[bucket];
178610bfc6bSMartin Hundebøll 	spin_lock_bh(&chain->lock);
179610bfc6bSMartin Hundebøll 	if (batadv_frag_init_chain(chain, seqno)) {
180610bfc6bSMartin Hundebøll 		hlist_add_head(&frag_entry_new->list, &chain->head);
181610bfc6bSMartin Hundebøll 		chain->size = skb->len - hdr_size;
182610bfc6bSMartin Hundebøll 		chain->timestamp = jiffies;
18353e77145SSven Eckelmann 		chain->total_size = ntohs(frag_packet->total_size);
184610bfc6bSMartin Hundebøll 		ret = true;
185610bfc6bSMartin Hundebøll 		goto out;
186610bfc6bSMartin Hundebøll 	}
187610bfc6bSMartin Hundebøll 
188610bfc6bSMartin Hundebøll 	/* Find the position for the new fragment. */
189610bfc6bSMartin Hundebøll 	hlist_for_each_entry(frag_entry_curr, &chain->head, list) {
190610bfc6bSMartin Hundebøll 		/* Drop packet if fragment already exists. */
191610bfc6bSMartin Hundebøll 		if (frag_entry_curr->no == frag_entry_new->no)
192610bfc6bSMartin Hundebøll 			goto err_unlock;
193610bfc6bSMartin Hundebøll 
194610bfc6bSMartin Hundebøll 		/* Order fragments from highest to lowest. */
195610bfc6bSMartin Hundebøll 		if (frag_entry_curr->no < frag_entry_new->no) {
196610bfc6bSMartin Hundebøll 			hlist_add_before(&frag_entry_new->list,
197610bfc6bSMartin Hundebøll 					 &frag_entry_curr->list);
198610bfc6bSMartin Hundebøll 			chain->size += skb->len - hdr_size;
199610bfc6bSMartin Hundebøll 			chain->timestamp = jiffies;
200610bfc6bSMartin Hundebøll 			ret = true;
201610bfc6bSMartin Hundebøll 			goto out;
202610bfc6bSMartin Hundebøll 		}
203d9124268SSven Eckelmann 
204d9124268SSven Eckelmann 		/* store current entry because it could be the last in list */
205d9124268SSven Eckelmann 		frag_entry_last = frag_entry_curr;
206610bfc6bSMartin Hundebøll 	}
207610bfc6bSMartin Hundebøll 
208d9124268SSven Eckelmann 	/* Reached the end of the list, so insert after 'frag_entry_last'. */
209d9124268SSven Eckelmann 	if (likely(frag_entry_last)) {
210e050dbebSSven Eckelmann 		hlist_add_behind(&frag_entry_new->list, &frag_entry_last->list);
211610bfc6bSMartin Hundebøll 		chain->size += skb->len - hdr_size;
212610bfc6bSMartin Hundebøll 		chain->timestamp = jiffies;
213610bfc6bSMartin Hundebøll 		ret = true;
214610bfc6bSMartin Hundebøll 	}
215610bfc6bSMartin Hundebøll 
216610bfc6bSMartin Hundebøll out:
217610bfc6bSMartin Hundebøll 	if (chain->size > batadv_frag_size_limit() ||
21853e77145SSven Eckelmann 	    chain->total_size != ntohs(frag_packet->total_size) ||
21953e77145SSven Eckelmann 	    chain->total_size > batadv_frag_size_limit()) {
220610bfc6bSMartin Hundebøll 		/* Clear chain if total size of either the list or the packet
22153e77145SSven Eckelmann 		 * exceeds the maximum size of one merged packet. Don't allow
22253e77145SSven Eckelmann 		 * packets to have different total_size.
223610bfc6bSMartin Hundebøll 		 */
224610bfc6bSMartin Hundebøll 		batadv_frag_clear_chain(&chain->head);
225610bfc6bSMartin Hundebøll 		chain->size = 0;
226610bfc6bSMartin Hundebøll 	} else if (ntohs(frag_packet->total_size) == chain->size) {
227610bfc6bSMartin Hundebøll 		/* All fragments received. Hand over chain to caller. */
228610bfc6bSMartin Hundebøll 		hlist_move_list(&chain->head, chain_out);
229610bfc6bSMartin Hundebøll 		chain->size = 0;
230610bfc6bSMartin Hundebøll 	}
231610bfc6bSMartin Hundebøll 
232610bfc6bSMartin Hundebøll err_unlock:
233610bfc6bSMartin Hundebøll 	spin_unlock_bh(&chain->lock);
234610bfc6bSMartin Hundebøll 
235610bfc6bSMartin Hundebøll err:
236610bfc6bSMartin Hundebøll 	if (!ret)
237610bfc6bSMartin Hundebøll 		kfree(frag_entry_new);
238610bfc6bSMartin Hundebøll 
239610bfc6bSMartin Hundebøll 	return ret;
240610bfc6bSMartin Hundebøll }
241610bfc6bSMartin Hundebøll 
242610bfc6bSMartin Hundebøll /**
243610bfc6bSMartin Hundebøll  * batadv_frag_merge_packets - merge a chain of fragments
244610bfc6bSMartin Hundebøll  * @chain: head of chain with fragments
245610bfc6bSMartin Hundebøll  *
246610bfc6bSMartin Hundebøll  * Expand the first skb in the chain and copy the content of the remaining
247610bfc6bSMartin Hundebøll  * skb's into the expanded one. After doing so, clear the chain.
248610bfc6bSMartin Hundebøll  *
24962fe710fSSven Eckelmann  * Return: the merged skb or NULL on error.
250610bfc6bSMartin Hundebøll  */
251610bfc6bSMartin Hundebøll static struct sk_buff *
25283e8b877SSven Eckelmann batadv_frag_merge_packets(struct hlist_head *chain)
253610bfc6bSMartin Hundebøll {
254610bfc6bSMartin Hundebøll 	struct batadv_frag_packet *packet;
255610bfc6bSMartin Hundebøll 	struct batadv_frag_list_entry *entry;
256610bfc6bSMartin Hundebøll 	struct sk_buff *skb_out = NULL;
257610bfc6bSMartin Hundebøll 	int size, hdr_size = sizeof(struct batadv_frag_packet);
258610bfc6bSMartin Hundebøll 
259610bfc6bSMartin Hundebøll 	/* Remove first entry, as this is the destination for the rest of the
260610bfc6bSMartin Hundebøll 	 * fragments.
261610bfc6bSMartin Hundebøll 	 */
262610bfc6bSMartin Hundebøll 	entry = hlist_entry(chain->first, struct batadv_frag_list_entry, list);
263610bfc6bSMartin Hundebøll 	hlist_del(&entry->list);
264610bfc6bSMartin Hundebøll 	skb_out = entry->skb;
265610bfc6bSMartin Hundebøll 	kfree(entry);
266610bfc6bSMartin Hundebøll 
26783e8b877SSven Eckelmann 	packet = (struct batadv_frag_packet *)skb_out->data;
26883e8b877SSven Eckelmann 	size = ntohs(packet->total_size);
26983e8b877SSven Eckelmann 
270610bfc6bSMartin Hundebøll 	/* Make room for the rest of the fragments. */
2715b6698b0SSven Eckelmann 	if (pskb_expand_head(skb_out, 0, size - skb_out->len, GFP_ATOMIC) < 0) {
272610bfc6bSMartin Hundebøll 		kfree_skb(skb_out);
273610bfc6bSMartin Hundebøll 		skb_out = NULL;
274610bfc6bSMartin Hundebøll 		goto free;
275610bfc6bSMartin Hundebøll 	}
276610bfc6bSMartin Hundebøll 
277610bfc6bSMartin Hundebøll 	/* Move the existing MAC header to just before the payload. (Override
278610bfc6bSMartin Hundebøll 	 * the fragment header.)
279610bfc6bSMartin Hundebøll 	 */
280610bfc6bSMartin Hundebøll 	skb_pull_rcsum(skb_out, hdr_size);
281610bfc6bSMartin Hundebøll 	memmove(skb_out->data - ETH_HLEN, skb_mac_header(skb_out), ETH_HLEN);
282610bfc6bSMartin Hundebøll 	skb_set_mac_header(skb_out, -ETH_HLEN);
283610bfc6bSMartin Hundebøll 	skb_reset_network_header(skb_out);
284610bfc6bSMartin Hundebøll 	skb_reset_transport_header(skb_out);
285610bfc6bSMartin Hundebøll 
286610bfc6bSMartin Hundebøll 	/* Copy the payload of the each fragment into the last skb */
287610bfc6bSMartin Hundebøll 	hlist_for_each_entry(entry, chain, list) {
288610bfc6bSMartin Hundebøll 		size = entry->skb->len - hdr_size;
289610bfc6bSMartin Hundebøll 		memcpy(skb_put(skb_out, size), entry->skb->data + hdr_size,
290610bfc6bSMartin Hundebøll 		       size);
291610bfc6bSMartin Hundebøll 	}
292610bfc6bSMartin Hundebøll 
293610bfc6bSMartin Hundebøll free:
294610bfc6bSMartin Hundebøll 	/* Locking is not needed, because 'chain' is not part of any orig. */
295610bfc6bSMartin Hundebøll 	batadv_frag_clear_chain(chain);
296610bfc6bSMartin Hundebøll 	return skb_out;
297610bfc6bSMartin Hundebøll }
298610bfc6bSMartin Hundebøll 
299610bfc6bSMartin Hundebøll /**
300610bfc6bSMartin Hundebøll  * batadv_frag_skb_buffer - buffer fragment for later merge
301610bfc6bSMartin Hundebøll  * @skb: skb to buffer
302610bfc6bSMartin Hundebøll  * @orig_node_src: originator that the skb is received from
303610bfc6bSMartin Hundebøll  *
304610bfc6bSMartin Hundebøll  * Add fragment to buffer and merge fragments if possible.
305610bfc6bSMartin Hundebøll  *
306610bfc6bSMartin Hundebøll  * There are three possible outcomes: 1) Packet is merged: Return true and
307610bfc6bSMartin Hundebøll  * set *skb to merged packet; 2) Packet is buffered: Return true and set *skb
308610bfc6bSMartin Hundebøll  * to NULL; 3) Error: Return false and leave skb as is.
30962fe710fSSven Eckelmann  *
31062fe710fSSven Eckelmann  * Return: true when packet is merged or buffered, false when skb is not not
31162fe710fSSven Eckelmann  * used.
312610bfc6bSMartin Hundebøll  */
313610bfc6bSMartin Hundebøll bool batadv_frag_skb_buffer(struct sk_buff **skb,
314610bfc6bSMartin Hundebøll 			    struct batadv_orig_node *orig_node_src)
315610bfc6bSMartin Hundebøll {
316610bfc6bSMartin Hundebøll 	struct sk_buff *skb_out = NULL;
317610bfc6bSMartin Hundebøll 	struct hlist_head head = HLIST_HEAD_INIT;
318610bfc6bSMartin Hundebøll 	bool ret = false;
319610bfc6bSMartin Hundebøll 
320610bfc6bSMartin Hundebøll 	/* Add packet to buffer and table entry if merge is possible. */
321610bfc6bSMartin Hundebøll 	if (!batadv_frag_insert_packet(orig_node_src, *skb, &head))
322610bfc6bSMartin Hundebøll 		goto out_err;
323610bfc6bSMartin Hundebøll 
324610bfc6bSMartin Hundebøll 	/* Leave if more fragments are needed to merge. */
325610bfc6bSMartin Hundebøll 	if (hlist_empty(&head))
326610bfc6bSMartin Hundebøll 		goto out;
327610bfc6bSMartin Hundebøll 
32883e8b877SSven Eckelmann 	skb_out = batadv_frag_merge_packets(&head);
329610bfc6bSMartin Hundebøll 	if (!skb_out)
330610bfc6bSMartin Hundebøll 		goto out_err;
331610bfc6bSMartin Hundebøll 
332610bfc6bSMartin Hundebøll out:
333610bfc6bSMartin Hundebøll 	*skb = skb_out;
334610bfc6bSMartin Hundebøll 	ret = true;
335610bfc6bSMartin Hundebøll out_err:
336610bfc6bSMartin Hundebøll 	return ret;
337610bfc6bSMartin Hundebøll }
338610bfc6bSMartin Hundebøll 
339610bfc6bSMartin Hundebøll /**
340610bfc6bSMartin Hundebøll  * batadv_frag_skb_fwd - forward fragments that would exceed MTU when merged
341610bfc6bSMartin Hundebøll  * @skb: skb to forward
342610bfc6bSMartin Hundebøll  * @recv_if: interface that the skb is received on
343610bfc6bSMartin Hundebøll  * @orig_node_src: originator that the skb is received from
344610bfc6bSMartin Hundebøll  *
345610bfc6bSMartin Hundebøll  * Look up the next-hop of the fragments payload and check if the merged packet
346610bfc6bSMartin Hundebøll  * will exceed the MTU towards the next-hop. If so, the fragment is forwarded
347610bfc6bSMartin Hundebøll  * without merging it.
348610bfc6bSMartin Hundebøll  *
34962fe710fSSven Eckelmann  * Return: true if the fragment is consumed/forwarded, false otherwise.
350610bfc6bSMartin Hundebøll  */
351610bfc6bSMartin Hundebøll bool batadv_frag_skb_fwd(struct sk_buff *skb,
352610bfc6bSMartin Hundebøll 			 struct batadv_hard_iface *recv_if,
353610bfc6bSMartin Hundebøll 			 struct batadv_orig_node *orig_node_src)
354610bfc6bSMartin Hundebøll {
355610bfc6bSMartin Hundebøll 	struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
356610bfc6bSMartin Hundebøll 	struct batadv_orig_node *orig_node_dst = NULL;
357610bfc6bSMartin Hundebøll 	struct batadv_neigh_node *neigh_node = NULL;
358610bfc6bSMartin Hundebøll 	struct batadv_frag_packet *packet;
3596b5e971aSSven Eckelmann 	u16 total_size;
360610bfc6bSMartin Hundebøll 	bool ret = false;
361610bfc6bSMartin Hundebøll 
362610bfc6bSMartin Hundebøll 	packet = (struct batadv_frag_packet *)skb->data;
363610bfc6bSMartin Hundebøll 	orig_node_dst = batadv_orig_hash_find(bat_priv, packet->dest);
364610bfc6bSMartin Hundebøll 	if (!orig_node_dst)
365610bfc6bSMartin Hundebøll 		goto out;
366610bfc6bSMartin Hundebøll 
367610bfc6bSMartin Hundebøll 	neigh_node = batadv_find_router(bat_priv, orig_node_dst, recv_if);
368610bfc6bSMartin Hundebøll 	if (!neigh_node)
369610bfc6bSMartin Hundebøll 		goto out;
370610bfc6bSMartin Hundebøll 
371610bfc6bSMartin Hundebøll 	/* Forward the fragment, if the merged packet would be too big to
372610bfc6bSMartin Hundebøll 	 * be assembled.
373610bfc6bSMartin Hundebøll 	 */
374610bfc6bSMartin Hundebøll 	total_size = ntohs(packet->total_size);
375610bfc6bSMartin Hundebøll 	if (total_size > neigh_node->if_incoming->net_dev->mtu) {
376610bfc6bSMartin Hundebøll 		batadv_inc_counter(bat_priv, BATADV_CNT_FRAG_FWD);
377610bfc6bSMartin Hundebøll 		batadv_add_counter(bat_priv, BATADV_CNT_FRAG_FWD_BYTES,
378610bfc6bSMartin Hundebøll 				   skb->len + ETH_HLEN);
379610bfc6bSMartin Hundebøll 
380a40d9b07SSimon Wunderlich 		packet->ttl--;
381610bfc6bSMartin Hundebøll 		batadv_send_skb_packet(skb, neigh_node->if_incoming,
382610bfc6bSMartin Hundebøll 				       neigh_node->addr);
383610bfc6bSMartin Hundebøll 		ret = true;
384610bfc6bSMartin Hundebøll 	}
385610bfc6bSMartin Hundebøll 
386610bfc6bSMartin Hundebøll out:
387610bfc6bSMartin Hundebøll 	if (orig_node_dst)
388*5d967310SSven Eckelmann 		batadv_orig_node_put(orig_node_dst);
389610bfc6bSMartin Hundebøll 	if (neigh_node)
390610bfc6bSMartin Hundebøll 		batadv_neigh_node_free_ref(neigh_node);
391610bfc6bSMartin Hundebøll 	return ret;
392610bfc6bSMartin Hundebøll }
393ee75ed88SMartin Hundebøll 
394ee75ed88SMartin Hundebøll /**
395ee75ed88SMartin Hundebøll  * batadv_frag_create - create a fragment from skb
396ee75ed88SMartin Hundebøll  * @skb: skb to create fragment from
397ee75ed88SMartin Hundebøll  * @frag_head: header to use in new fragment
398ee75ed88SMartin Hundebøll  * @mtu: size of new fragment
399ee75ed88SMartin Hundebøll  *
400ee75ed88SMartin Hundebøll  * Split the passed skb into two fragments: A new one with size matching the
401ee75ed88SMartin Hundebøll  * passed mtu and the old one with the rest. The new skb contains data from the
402ee75ed88SMartin Hundebøll  * tail of the old skb.
403ee75ed88SMartin Hundebøll  *
40462fe710fSSven Eckelmann  * Return: the new fragment, NULL on error.
405ee75ed88SMartin Hundebøll  */
406ee75ed88SMartin Hundebøll static struct sk_buff *batadv_frag_create(struct sk_buff *skb,
407ee75ed88SMartin Hundebøll 					  struct batadv_frag_packet *frag_head,
408ee75ed88SMartin Hundebøll 					  unsigned int mtu)
409ee75ed88SMartin Hundebøll {
410ee75ed88SMartin Hundebøll 	struct sk_buff *skb_fragment;
411ee75ed88SMartin Hundebøll 	unsigned header_size = sizeof(*frag_head);
412ee75ed88SMartin Hundebøll 	unsigned fragment_size = mtu - header_size;
413ee75ed88SMartin Hundebøll 
414ee75ed88SMartin Hundebøll 	skb_fragment = netdev_alloc_skb(NULL, mtu + ETH_HLEN);
415ee75ed88SMartin Hundebøll 	if (!skb_fragment)
416ee75ed88SMartin Hundebøll 		goto err;
417ee75ed88SMartin Hundebøll 
418ee75ed88SMartin Hundebøll 	skb->priority = TC_PRIO_CONTROL;
419ee75ed88SMartin Hundebøll 
420ee75ed88SMartin Hundebøll 	/* Eat the last mtu-bytes of the skb */
421ee75ed88SMartin Hundebøll 	skb_reserve(skb_fragment, header_size + ETH_HLEN);
422ee75ed88SMartin Hundebøll 	skb_split(skb, skb_fragment, skb->len - fragment_size);
423ee75ed88SMartin Hundebøll 
424ee75ed88SMartin Hundebøll 	/* Add the header */
425ee75ed88SMartin Hundebøll 	skb_push(skb_fragment, header_size);
426ee75ed88SMartin Hundebøll 	memcpy(skb_fragment->data, frag_head, header_size);
427ee75ed88SMartin Hundebøll 
428ee75ed88SMartin Hundebøll err:
429ee75ed88SMartin Hundebøll 	return skb_fragment;
430ee75ed88SMartin Hundebøll }
431ee75ed88SMartin Hundebøll 
432ee75ed88SMartin Hundebøll /**
433ee75ed88SMartin Hundebøll  * batadv_frag_send_packet - create up to 16 fragments from the passed skb
434ee75ed88SMartin Hundebøll  * @skb: skb to create fragments from
435ee75ed88SMartin Hundebøll  * @orig_node: final destination of the created fragments
436ee75ed88SMartin Hundebøll  * @neigh_node: next-hop of the created fragments
437ee75ed88SMartin Hundebøll  *
43862fe710fSSven Eckelmann  * Return: true on success, false otherwise.
439ee75ed88SMartin Hundebøll  */
440ee75ed88SMartin Hundebøll bool batadv_frag_send_packet(struct sk_buff *skb,
441ee75ed88SMartin Hundebøll 			     struct batadv_orig_node *orig_node,
442ee75ed88SMartin Hundebøll 			     struct batadv_neigh_node *neigh_node)
443ee75ed88SMartin Hundebøll {
444ee75ed88SMartin Hundebøll 	struct batadv_priv *bat_priv;
445be181015SAntonio Quartulli 	struct batadv_hard_iface *primary_if = NULL;
446ee75ed88SMartin Hundebøll 	struct batadv_frag_packet frag_header;
447ee75ed88SMartin Hundebøll 	struct sk_buff *skb_fragment;
448ee75ed88SMartin Hundebøll 	unsigned mtu = neigh_node->if_incoming->net_dev->mtu;
449ee75ed88SMartin Hundebøll 	unsigned header_size = sizeof(frag_header);
450ee75ed88SMartin Hundebøll 	unsigned max_fragment_size, max_packet_size;
451be181015SAntonio Quartulli 	bool ret = false;
452ee75ed88SMartin Hundebøll 
453ee75ed88SMartin Hundebøll 	/* To avoid merge and refragmentation at next-hops we never send
454ee75ed88SMartin Hundebøll 	 * fragments larger than BATADV_FRAG_MAX_FRAG_SIZE
455ee75ed88SMartin Hundebøll 	 */
456ee75ed88SMartin Hundebøll 	mtu = min_t(unsigned, mtu, BATADV_FRAG_MAX_FRAG_SIZE);
4570402e444SSven Eckelmann 	max_fragment_size = mtu - header_size;
458ee75ed88SMartin Hundebøll 	max_packet_size = max_fragment_size * BATADV_FRAG_MAX_FRAGMENTS;
459ee75ed88SMartin Hundebøll 
460ee75ed88SMartin Hundebøll 	/* Don't even try to fragment, if we need more than 16 fragments */
461ee75ed88SMartin Hundebøll 	if (skb->len > max_packet_size)
462ee75ed88SMartin Hundebøll 		goto out_err;
463ee75ed88SMartin Hundebøll 
464ee75ed88SMartin Hundebøll 	bat_priv = orig_node->bat_priv;
465ee75ed88SMartin Hundebøll 	primary_if = batadv_primary_if_get_selected(bat_priv);
466ee75ed88SMartin Hundebøll 	if (!primary_if)
467ee75ed88SMartin Hundebøll 		goto out_err;
468ee75ed88SMartin Hundebøll 
469ee75ed88SMartin Hundebøll 	/* Create one header to be copied to all fragments */
470a40d9b07SSimon Wunderlich 	frag_header.packet_type = BATADV_UNICAST_FRAG;
471a40d9b07SSimon Wunderlich 	frag_header.version = BATADV_COMPAT_VERSION;
472a40d9b07SSimon Wunderlich 	frag_header.ttl = BATADV_TTL;
473ee75ed88SMartin Hundebøll 	frag_header.seqno = htons(atomic_inc_return(&bat_priv->frag_seqno));
474ee75ed88SMartin Hundebøll 	frag_header.reserved = 0;
475ee75ed88SMartin Hundebøll 	frag_header.no = 0;
476ee75ed88SMartin Hundebøll 	frag_header.total_size = htons(skb->len);
4778fdd0153SAntonio Quartulli 	ether_addr_copy(frag_header.orig, primary_if->net_dev->dev_addr);
4788fdd0153SAntonio Quartulli 	ether_addr_copy(frag_header.dest, orig_node->orig);
479ee75ed88SMartin Hundebøll 
480ee75ed88SMartin Hundebøll 	/* Eat and send fragments from the tail of skb */
481ee75ed88SMartin Hundebøll 	while (skb->len > max_fragment_size) {
482ee75ed88SMartin Hundebøll 		skb_fragment = batadv_frag_create(skb, &frag_header, mtu);
483ee75ed88SMartin Hundebøll 		if (!skb_fragment)
484ee75ed88SMartin Hundebøll 			goto out_err;
485ee75ed88SMartin Hundebøll 
486ee75ed88SMartin Hundebøll 		batadv_inc_counter(bat_priv, BATADV_CNT_FRAG_TX);
487ee75ed88SMartin Hundebøll 		batadv_add_counter(bat_priv, BATADV_CNT_FRAG_TX_BYTES,
488ee75ed88SMartin Hundebøll 				   skb_fragment->len + ETH_HLEN);
489ee75ed88SMartin Hundebøll 		batadv_send_skb_packet(skb_fragment, neigh_node->if_incoming,
490ee75ed88SMartin Hundebøll 				       neigh_node->addr);
491ee75ed88SMartin Hundebøll 		frag_header.no++;
492ee75ed88SMartin Hundebøll 
493ee75ed88SMartin Hundebøll 		/* The initial check in this function should cover this case */
494ee75ed88SMartin Hundebøll 		if (frag_header.no == BATADV_FRAG_MAX_FRAGMENTS - 1)
495ee75ed88SMartin Hundebøll 			goto out_err;
496ee75ed88SMartin Hundebøll 	}
497ee75ed88SMartin Hundebøll 
498ee75ed88SMartin Hundebøll 	/* Make room for the fragment header. */
499ee75ed88SMartin Hundebøll 	if (batadv_skb_head_push(skb, header_size) < 0 ||
500ee75ed88SMartin Hundebøll 	    pskb_expand_head(skb, header_size + ETH_HLEN, 0, GFP_ATOMIC) < 0)
501ee75ed88SMartin Hundebøll 		goto out_err;
502ee75ed88SMartin Hundebøll 
503ee75ed88SMartin Hundebøll 	memcpy(skb->data, &frag_header, header_size);
504ee75ed88SMartin Hundebøll 
505ee75ed88SMartin Hundebøll 	/* Send the last fragment */
506ee75ed88SMartin Hundebøll 	batadv_inc_counter(bat_priv, BATADV_CNT_FRAG_TX);
507ee75ed88SMartin Hundebøll 	batadv_add_counter(bat_priv, BATADV_CNT_FRAG_TX_BYTES,
508ee75ed88SMartin Hundebøll 			   skb->len + ETH_HLEN);
509ee75ed88SMartin Hundebøll 	batadv_send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr);
510ee75ed88SMartin Hundebøll 
511be181015SAntonio Quartulli 	ret = true;
512be181015SAntonio Quartulli 
513ee75ed88SMartin Hundebøll out_err:
514be181015SAntonio Quartulli 	if (primary_if)
515be181015SAntonio Quartulli 		batadv_hardif_free_ref(primary_if);
516be181015SAntonio Quartulli 
517be181015SAntonio Quartulli 	return ret;
518ee75ed88SMartin Hundebøll }
519