17db7d9f3SSven Eckelmann // SPDX-License-Identifier: GPL-2.0 2ac79cbb9SSven Eckelmann /* Copyright (C) 2013-2017 B.A.T.M.A.N. contributors: 3610bfc6bSMartin Hundebøll * 4610bfc6bSMartin Hundebøll * Martin Hundebøll <martin@hundeboll.net> 5610bfc6bSMartin Hundebøll * 6610bfc6bSMartin Hundebøll * This program is free software; you can redistribute it and/or 7610bfc6bSMartin Hundebøll * modify it under the terms of version 2 of the GNU General Public 8610bfc6bSMartin Hundebøll * License as published by the Free Software Foundation. 9610bfc6bSMartin Hundebøll * 10610bfc6bSMartin Hundebøll * This program is distributed in the hope that it will be useful, but 11610bfc6bSMartin Hundebøll * WITHOUT ANY WARRANTY; without even the implied warranty of 12610bfc6bSMartin Hundebøll * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13610bfc6bSMartin Hundebøll * General Public License for more details. 14610bfc6bSMartin Hundebøll * 15610bfc6bSMartin Hundebøll * You should have received a copy of the GNU General Public License 16ebf38fb7SAntonio Quartulli * along with this program; if not, see <http://www.gnu.org/licenses/>. 17610bfc6bSMartin Hundebøll */ 18610bfc6bSMartin Hundebøll 19610bfc6bSMartin Hundebøll #include "fragmentation.h" 201e2c2a4fSSven Eckelmann #include "main.h" 211e2c2a4fSSven Eckelmann 221e2c2a4fSSven Eckelmann #include <linux/atomic.h> 231e2c2a4fSSven Eckelmann #include <linux/byteorder/generic.h> 248def0be8SSven Eckelmann #include <linux/errno.h> 251e2c2a4fSSven Eckelmann #include <linux/etherdevice.h> 26b92b94acSSven Eckelmann #include <linux/gfp.h> 271e2c2a4fSSven Eckelmann #include <linux/if_ether.h> 281e2c2a4fSSven Eckelmann #include <linux/jiffies.h> 291e2c2a4fSSven Eckelmann #include <linux/kernel.h> 305274cd68SSven Eckelmann #include <linux/lockdep.h> 311e2c2a4fSSven Eckelmann #include <linux/netdevice.h> 321e2c2a4fSSven Eckelmann #include <linux/skbuff.h> 331e2c2a4fSSven Eckelmann #include <linux/slab.h> 341e2c2a4fSSven Eckelmann #include <linux/spinlock.h> 351e2c2a4fSSven Eckelmann #include <linux/string.h> 361e2c2a4fSSven Eckelmann 37610bfc6bSMartin Hundebøll #include "hard-interface.h" 381e2c2a4fSSven Eckelmann #include "originator.h" 391e2c2a4fSSven Eckelmann #include "packet.h" 401e2c2a4fSSven Eckelmann #include "routing.h" 411e2c2a4fSSven Eckelmann #include "send.h" 42610bfc6bSMartin Hundebøll #include "soft-interface.h" 43610bfc6bSMartin Hundebøll 44610bfc6bSMartin Hundebøll /** 45*7e9a8c2cSSven Eckelmann * batadv_frag_clear_chain() - delete entries in the fragment buffer chain 46610bfc6bSMartin Hundebøll * @head: head of chain with entries. 47bd687fe4SSven Eckelmann * @dropped: whether the chain is cleared because all fragments are dropped 48610bfc6bSMartin Hundebøll * 49610bfc6bSMartin Hundebøll * Free fragments in the passed hlist. Should be called with appropriate lock. 50610bfc6bSMartin Hundebøll */ 51bd687fe4SSven Eckelmann static void batadv_frag_clear_chain(struct hlist_head *head, bool dropped) 52610bfc6bSMartin Hundebøll { 53610bfc6bSMartin Hundebøll struct batadv_frag_list_entry *entry; 54610bfc6bSMartin Hundebøll struct hlist_node *node; 55610bfc6bSMartin Hundebøll 56610bfc6bSMartin Hundebøll hlist_for_each_entry_safe(entry, node, head, list) { 57610bfc6bSMartin Hundebøll hlist_del(&entry->list); 58bd687fe4SSven Eckelmann 59bd687fe4SSven Eckelmann if (dropped) 60610bfc6bSMartin Hundebøll kfree_skb(entry->skb); 61bd687fe4SSven Eckelmann else 62bd687fe4SSven Eckelmann consume_skb(entry->skb); 63bd687fe4SSven Eckelmann 64610bfc6bSMartin Hundebøll kfree(entry); 65610bfc6bSMartin Hundebøll } 66610bfc6bSMartin Hundebøll } 67610bfc6bSMartin Hundebøll 68610bfc6bSMartin Hundebøll /** 69*7e9a8c2cSSven Eckelmann * batadv_frag_purge_orig() - free fragments associated to an orig 70610bfc6bSMartin Hundebøll * @orig_node: originator to free fragments from 71610bfc6bSMartin Hundebøll * @check_cb: optional function to tell if an entry should be purged 72610bfc6bSMartin Hundebøll */ 73610bfc6bSMartin Hundebøll void batadv_frag_purge_orig(struct batadv_orig_node *orig_node, 74610bfc6bSMartin Hundebøll bool (*check_cb)(struct batadv_frag_table_entry *)) 75610bfc6bSMartin Hundebøll { 76610bfc6bSMartin Hundebøll struct batadv_frag_table_entry *chain; 776b5e971aSSven Eckelmann u8 i; 78610bfc6bSMartin Hundebøll 79610bfc6bSMartin Hundebøll for (i = 0; i < BATADV_FRAG_BUFFER_COUNT; i++) { 80610bfc6bSMartin Hundebøll chain = &orig_node->fragments[i]; 8101f6b5c7SSven Eckelmann spin_lock_bh(&chain->lock); 82610bfc6bSMartin Hundebøll 83610bfc6bSMartin Hundebøll if (!check_cb || check_cb(chain)) { 84bd687fe4SSven Eckelmann batadv_frag_clear_chain(&chain->fragment_list, true); 8501f6b5c7SSven Eckelmann chain->size = 0; 86610bfc6bSMartin Hundebøll } 87610bfc6bSMartin Hundebøll 8801f6b5c7SSven Eckelmann spin_unlock_bh(&chain->lock); 89610bfc6bSMartin Hundebøll } 90610bfc6bSMartin Hundebøll } 91610bfc6bSMartin Hundebøll 92610bfc6bSMartin Hundebøll /** 93*7e9a8c2cSSven Eckelmann * batadv_frag_size_limit() - maximum possible size of packet to be fragmented 94610bfc6bSMartin Hundebøll * 9562fe710fSSven Eckelmann * Return: the maximum size of payload that can be fragmented. 96610bfc6bSMartin Hundebøll */ 97610bfc6bSMartin Hundebøll static int batadv_frag_size_limit(void) 98610bfc6bSMartin Hundebøll { 99610bfc6bSMartin Hundebøll int limit = BATADV_FRAG_MAX_FRAG_SIZE; 100610bfc6bSMartin Hundebøll 101610bfc6bSMartin Hundebøll limit -= sizeof(struct batadv_frag_packet); 102610bfc6bSMartin Hundebøll limit *= BATADV_FRAG_MAX_FRAGMENTS; 103610bfc6bSMartin Hundebøll 104610bfc6bSMartin Hundebøll return limit; 105610bfc6bSMartin Hundebøll } 106610bfc6bSMartin Hundebøll 107610bfc6bSMartin Hundebøll /** 108*7e9a8c2cSSven Eckelmann * batadv_frag_init_chain() - check and prepare fragment chain for new fragment 109610bfc6bSMartin Hundebøll * @chain: chain in fragments table to init 110610bfc6bSMartin Hundebøll * @seqno: sequence number of the received fragment 111610bfc6bSMartin Hundebøll * 112610bfc6bSMartin Hundebøll * Make chain ready for a fragment with sequence number "seqno". Delete existing 113610bfc6bSMartin Hundebøll * entries if they have an "old" sequence number. 114610bfc6bSMartin Hundebøll * 115610bfc6bSMartin Hundebøll * Caller must hold chain->lock. 116610bfc6bSMartin Hundebøll * 11762fe710fSSven Eckelmann * Return: true if chain is empty and caller can just insert the new fragment 118610bfc6bSMartin Hundebøll * without searching for the right position. 119610bfc6bSMartin Hundebøll */ 120610bfc6bSMartin Hundebøll static bool batadv_frag_init_chain(struct batadv_frag_table_entry *chain, 1216b5e971aSSven Eckelmann u16 seqno) 122610bfc6bSMartin Hundebøll { 1235274cd68SSven Eckelmann lockdep_assert_held(&chain->lock); 1245274cd68SSven Eckelmann 125610bfc6bSMartin Hundebøll if (chain->seqno == seqno) 126610bfc6bSMartin Hundebøll return false; 127610bfc6bSMartin Hundebøll 128176e5b77SSven Eckelmann if (!hlist_empty(&chain->fragment_list)) 129bd687fe4SSven Eckelmann batadv_frag_clear_chain(&chain->fragment_list, true); 130610bfc6bSMartin Hundebøll 131610bfc6bSMartin Hundebøll chain->size = 0; 132610bfc6bSMartin Hundebøll chain->seqno = seqno; 133610bfc6bSMartin Hundebøll 134610bfc6bSMartin Hundebøll return true; 135610bfc6bSMartin Hundebøll } 136610bfc6bSMartin Hundebøll 137610bfc6bSMartin Hundebøll /** 138*7e9a8c2cSSven Eckelmann * batadv_frag_insert_packet() - insert a fragment into a fragment chain 139610bfc6bSMartin Hundebøll * @orig_node: originator that the fragment was received from 140610bfc6bSMartin Hundebøll * @skb: skb to insert 141610bfc6bSMartin Hundebøll * @chain_out: list head to attach complete chains of fragments to 142610bfc6bSMartin Hundebøll * 143610bfc6bSMartin Hundebøll * Insert a new fragment into the reverse ordered chain in the right table 144610bfc6bSMartin Hundebøll * entry. The hash table entry is cleared if "old" fragments exist in it. 145610bfc6bSMartin Hundebøll * 14662fe710fSSven Eckelmann * Return: true if skb is buffered, false on error. If the chain has all the 147610bfc6bSMartin Hundebøll * fragments needed to merge the packet, the chain is moved to the passed head 148610bfc6bSMartin Hundebøll * to avoid locking the chain in the table. 149610bfc6bSMartin Hundebøll */ 150610bfc6bSMartin Hundebøll static bool batadv_frag_insert_packet(struct batadv_orig_node *orig_node, 151610bfc6bSMartin Hundebøll struct sk_buff *skb, 152610bfc6bSMartin Hundebøll struct hlist_head *chain_out) 153610bfc6bSMartin Hundebøll { 154610bfc6bSMartin Hundebøll struct batadv_frag_table_entry *chain; 155610bfc6bSMartin Hundebøll struct batadv_frag_list_entry *frag_entry_new = NULL, *frag_entry_curr; 156d9124268SSven Eckelmann struct batadv_frag_list_entry *frag_entry_last = NULL; 157610bfc6bSMartin Hundebøll struct batadv_frag_packet *frag_packet; 1586b5e971aSSven Eckelmann u8 bucket; 1596b5e971aSSven Eckelmann u16 seqno, hdr_size = sizeof(struct batadv_frag_packet); 160610bfc6bSMartin Hundebøll bool ret = false; 161610bfc6bSMartin Hundebøll 162610bfc6bSMartin Hundebøll /* Linearize packet to avoid linearizing 16 packets in a row when doing 163610bfc6bSMartin Hundebøll * the later merge. Non-linear merge should be added to remove this 164610bfc6bSMartin Hundebøll * linearization. 165610bfc6bSMartin Hundebøll */ 166610bfc6bSMartin Hundebøll if (skb_linearize(skb) < 0) 167610bfc6bSMartin Hundebøll goto err; 168610bfc6bSMartin Hundebøll 169610bfc6bSMartin Hundebøll frag_packet = (struct batadv_frag_packet *)skb->data; 170610bfc6bSMartin Hundebøll seqno = ntohs(frag_packet->seqno); 171610bfc6bSMartin Hundebøll bucket = seqno % BATADV_FRAG_BUFFER_COUNT; 172610bfc6bSMartin Hundebøll 173610bfc6bSMartin Hundebøll frag_entry_new = kmalloc(sizeof(*frag_entry_new), GFP_ATOMIC); 174610bfc6bSMartin Hundebøll if (!frag_entry_new) 175610bfc6bSMartin Hundebøll goto err; 176610bfc6bSMartin Hundebøll 177610bfc6bSMartin Hundebøll frag_entry_new->skb = skb; 178610bfc6bSMartin Hundebøll frag_entry_new->no = frag_packet->no; 179610bfc6bSMartin Hundebøll 180610bfc6bSMartin Hundebøll /* Select entry in the "chain table" and delete any prior fragments 181610bfc6bSMartin Hundebøll * with another sequence number. batadv_frag_init_chain() returns true, 182610bfc6bSMartin Hundebøll * if the list is empty at return. 183610bfc6bSMartin Hundebøll */ 184610bfc6bSMartin Hundebøll chain = &orig_node->fragments[bucket]; 185610bfc6bSMartin Hundebøll spin_lock_bh(&chain->lock); 186610bfc6bSMartin Hundebøll if (batadv_frag_init_chain(chain, seqno)) { 187176e5b77SSven Eckelmann hlist_add_head(&frag_entry_new->list, &chain->fragment_list); 188610bfc6bSMartin Hundebøll chain->size = skb->len - hdr_size; 189610bfc6bSMartin Hundebøll chain->timestamp = jiffies; 19053e77145SSven Eckelmann chain->total_size = ntohs(frag_packet->total_size); 191610bfc6bSMartin Hundebøll ret = true; 192610bfc6bSMartin Hundebøll goto out; 193610bfc6bSMartin Hundebøll } 194610bfc6bSMartin Hundebøll 195610bfc6bSMartin Hundebøll /* Find the position for the new fragment. */ 196176e5b77SSven Eckelmann hlist_for_each_entry(frag_entry_curr, &chain->fragment_list, list) { 197610bfc6bSMartin Hundebøll /* Drop packet if fragment already exists. */ 198610bfc6bSMartin Hundebøll if (frag_entry_curr->no == frag_entry_new->no) 199610bfc6bSMartin Hundebøll goto err_unlock; 200610bfc6bSMartin Hundebøll 201610bfc6bSMartin Hundebøll /* Order fragments from highest to lowest. */ 202610bfc6bSMartin Hundebøll if (frag_entry_curr->no < frag_entry_new->no) { 203610bfc6bSMartin Hundebøll hlist_add_before(&frag_entry_new->list, 204610bfc6bSMartin Hundebøll &frag_entry_curr->list); 205610bfc6bSMartin Hundebøll chain->size += skb->len - hdr_size; 206610bfc6bSMartin Hundebøll chain->timestamp = jiffies; 207610bfc6bSMartin Hundebøll ret = true; 208610bfc6bSMartin Hundebøll goto out; 209610bfc6bSMartin Hundebøll } 210d9124268SSven Eckelmann 211d9124268SSven Eckelmann /* store current entry because it could be the last in list */ 212d9124268SSven Eckelmann frag_entry_last = frag_entry_curr; 213610bfc6bSMartin Hundebøll } 214610bfc6bSMartin Hundebøll 215d9124268SSven Eckelmann /* Reached the end of the list, so insert after 'frag_entry_last'. */ 216d9124268SSven Eckelmann if (likely(frag_entry_last)) { 217e050dbebSSven Eckelmann hlist_add_behind(&frag_entry_new->list, &frag_entry_last->list); 218610bfc6bSMartin Hundebøll chain->size += skb->len - hdr_size; 219610bfc6bSMartin Hundebøll chain->timestamp = jiffies; 220610bfc6bSMartin Hundebøll ret = true; 221610bfc6bSMartin Hundebøll } 222610bfc6bSMartin Hundebøll 223610bfc6bSMartin Hundebøll out: 224610bfc6bSMartin Hundebøll if (chain->size > batadv_frag_size_limit() || 22553e77145SSven Eckelmann chain->total_size != ntohs(frag_packet->total_size) || 22653e77145SSven Eckelmann chain->total_size > batadv_frag_size_limit()) { 227610bfc6bSMartin Hundebøll /* Clear chain if total size of either the list or the packet 22853e77145SSven Eckelmann * exceeds the maximum size of one merged packet. Don't allow 22953e77145SSven Eckelmann * packets to have different total_size. 230610bfc6bSMartin Hundebøll */ 231bd687fe4SSven Eckelmann batadv_frag_clear_chain(&chain->fragment_list, true); 232610bfc6bSMartin Hundebøll chain->size = 0; 233610bfc6bSMartin Hundebøll } else if (ntohs(frag_packet->total_size) == chain->size) { 234610bfc6bSMartin Hundebøll /* All fragments received. Hand over chain to caller. */ 235176e5b77SSven Eckelmann hlist_move_list(&chain->fragment_list, chain_out); 236610bfc6bSMartin Hundebøll chain->size = 0; 237610bfc6bSMartin Hundebøll } 238610bfc6bSMartin Hundebøll 239610bfc6bSMartin Hundebøll err_unlock: 240610bfc6bSMartin Hundebøll spin_unlock_bh(&chain->lock); 241610bfc6bSMartin Hundebøll 242610bfc6bSMartin Hundebøll err: 243248e23b5SSven Eckelmann if (!ret) { 244610bfc6bSMartin Hundebøll kfree(frag_entry_new); 245248e23b5SSven Eckelmann kfree_skb(skb); 246248e23b5SSven Eckelmann } 247610bfc6bSMartin Hundebøll 248610bfc6bSMartin Hundebøll return ret; 249610bfc6bSMartin Hundebøll } 250610bfc6bSMartin Hundebøll 251610bfc6bSMartin Hundebøll /** 252*7e9a8c2cSSven Eckelmann * batadv_frag_merge_packets() - merge a chain of fragments 253610bfc6bSMartin Hundebøll * @chain: head of chain with fragments 254610bfc6bSMartin Hundebøll * 255610bfc6bSMartin Hundebøll * Expand the first skb in the chain and copy the content of the remaining 256610bfc6bSMartin Hundebøll * skb's into the expanded one. After doing so, clear the chain. 257610bfc6bSMartin Hundebøll * 25862fe710fSSven Eckelmann * Return: the merged skb or NULL on error. 259610bfc6bSMartin Hundebøll */ 260610bfc6bSMartin Hundebøll static struct sk_buff * 26183e8b877SSven Eckelmann batadv_frag_merge_packets(struct hlist_head *chain) 262610bfc6bSMartin Hundebøll { 263610bfc6bSMartin Hundebøll struct batadv_frag_packet *packet; 264610bfc6bSMartin Hundebøll struct batadv_frag_list_entry *entry; 265422d2f77SSven Eckelmann struct sk_buff *skb_out; 266610bfc6bSMartin Hundebøll int size, hdr_size = sizeof(struct batadv_frag_packet); 267bd687fe4SSven Eckelmann bool dropped = false; 268610bfc6bSMartin Hundebøll 269610bfc6bSMartin Hundebøll /* Remove first entry, as this is the destination for the rest of the 270610bfc6bSMartin Hundebøll * fragments. 271610bfc6bSMartin Hundebøll */ 272610bfc6bSMartin Hundebøll entry = hlist_entry(chain->first, struct batadv_frag_list_entry, list); 273610bfc6bSMartin Hundebøll hlist_del(&entry->list); 274610bfc6bSMartin Hundebøll skb_out = entry->skb; 275610bfc6bSMartin Hundebøll kfree(entry); 276610bfc6bSMartin Hundebøll 27783e8b877SSven Eckelmann packet = (struct batadv_frag_packet *)skb_out->data; 27883e8b877SSven Eckelmann size = ntohs(packet->total_size); 27983e8b877SSven Eckelmann 280610bfc6bSMartin Hundebøll /* Make room for the rest of the fragments. */ 2815b6698b0SSven Eckelmann if (pskb_expand_head(skb_out, 0, size - skb_out->len, GFP_ATOMIC) < 0) { 282610bfc6bSMartin Hundebøll kfree_skb(skb_out); 283610bfc6bSMartin Hundebøll skb_out = NULL; 284bd687fe4SSven Eckelmann dropped = true; 285610bfc6bSMartin Hundebøll goto free; 286610bfc6bSMartin Hundebøll } 287610bfc6bSMartin Hundebøll 288610bfc6bSMartin Hundebøll /* Move the existing MAC header to just before the payload. (Override 289610bfc6bSMartin Hundebøll * the fragment header.) 290610bfc6bSMartin Hundebøll */ 291610bfc6bSMartin Hundebøll skb_pull_rcsum(skb_out, hdr_size); 292610bfc6bSMartin Hundebøll memmove(skb_out->data - ETH_HLEN, skb_mac_header(skb_out), ETH_HLEN); 293610bfc6bSMartin Hundebøll skb_set_mac_header(skb_out, -ETH_HLEN); 294610bfc6bSMartin Hundebøll skb_reset_network_header(skb_out); 295610bfc6bSMartin Hundebøll skb_reset_transport_header(skb_out); 296610bfc6bSMartin Hundebøll 297610bfc6bSMartin Hundebøll /* Copy the payload of the each fragment into the last skb */ 298610bfc6bSMartin Hundebøll hlist_for_each_entry(entry, chain, list) { 299610bfc6bSMartin Hundebøll size = entry->skb->len - hdr_size; 30059ae1d12SJohannes Berg skb_put_data(skb_out, entry->skb->data + hdr_size, size); 301610bfc6bSMartin Hundebøll } 302610bfc6bSMartin Hundebøll 303610bfc6bSMartin Hundebøll free: 304610bfc6bSMartin Hundebøll /* Locking is not needed, because 'chain' is not part of any orig. */ 305bd687fe4SSven Eckelmann batadv_frag_clear_chain(chain, dropped); 306610bfc6bSMartin Hundebøll return skb_out; 307610bfc6bSMartin Hundebøll } 308610bfc6bSMartin Hundebøll 309610bfc6bSMartin Hundebøll /** 310*7e9a8c2cSSven Eckelmann * batadv_frag_skb_buffer() - buffer fragment for later merge 311610bfc6bSMartin Hundebøll * @skb: skb to buffer 312610bfc6bSMartin Hundebøll * @orig_node_src: originator that the skb is received from 313610bfc6bSMartin Hundebøll * 314610bfc6bSMartin Hundebøll * Add fragment to buffer and merge fragments if possible. 315610bfc6bSMartin Hundebøll * 316610bfc6bSMartin Hundebøll * There are three possible outcomes: 1) Packet is merged: Return true and 317610bfc6bSMartin Hundebøll * set *skb to merged packet; 2) Packet is buffered: Return true and set *skb 318248e23b5SSven Eckelmann * to NULL; 3) Error: Return false and free skb. 31962fe710fSSven Eckelmann * 32062fe710fSSven Eckelmann * Return: true when packet is merged or buffered, false when skb is not not 32162fe710fSSven Eckelmann * used. 322610bfc6bSMartin Hundebøll */ 323610bfc6bSMartin Hundebøll bool batadv_frag_skb_buffer(struct sk_buff **skb, 324610bfc6bSMartin Hundebøll struct batadv_orig_node *orig_node_src) 325610bfc6bSMartin Hundebøll { 326610bfc6bSMartin Hundebøll struct sk_buff *skb_out = NULL; 327610bfc6bSMartin Hundebøll struct hlist_head head = HLIST_HEAD_INIT; 328610bfc6bSMartin Hundebøll bool ret = false; 329610bfc6bSMartin Hundebøll 330610bfc6bSMartin Hundebøll /* Add packet to buffer and table entry if merge is possible. */ 331610bfc6bSMartin Hundebøll if (!batadv_frag_insert_packet(orig_node_src, *skb, &head)) 332610bfc6bSMartin Hundebøll goto out_err; 333610bfc6bSMartin Hundebøll 334610bfc6bSMartin Hundebøll /* Leave if more fragments are needed to merge. */ 335610bfc6bSMartin Hundebøll if (hlist_empty(&head)) 336610bfc6bSMartin Hundebøll goto out; 337610bfc6bSMartin Hundebøll 33883e8b877SSven Eckelmann skb_out = batadv_frag_merge_packets(&head); 339610bfc6bSMartin Hundebøll if (!skb_out) 340610bfc6bSMartin Hundebøll goto out_err; 341610bfc6bSMartin Hundebøll 342610bfc6bSMartin Hundebøll out: 343610bfc6bSMartin Hundebøll ret = true; 344610bfc6bSMartin Hundebøll out_err: 345248e23b5SSven Eckelmann *skb = skb_out; 346610bfc6bSMartin Hundebøll return ret; 347610bfc6bSMartin Hundebøll } 348610bfc6bSMartin Hundebøll 349610bfc6bSMartin Hundebøll /** 350*7e9a8c2cSSven Eckelmann * batadv_frag_skb_fwd() - forward fragments that would exceed MTU when merged 351610bfc6bSMartin Hundebøll * @skb: skb to forward 352610bfc6bSMartin Hundebøll * @recv_if: interface that the skb is received on 353610bfc6bSMartin Hundebøll * @orig_node_src: originator that the skb is received from 354610bfc6bSMartin Hundebøll * 355610bfc6bSMartin Hundebøll * Look up the next-hop of the fragments payload and check if the merged packet 356610bfc6bSMartin Hundebøll * will exceed the MTU towards the next-hop. If so, the fragment is forwarded 357610bfc6bSMartin Hundebøll * without merging it. 358610bfc6bSMartin Hundebøll * 35962fe710fSSven Eckelmann * Return: true if the fragment is consumed/forwarded, false otherwise. 360610bfc6bSMartin Hundebøll */ 361610bfc6bSMartin Hundebøll bool batadv_frag_skb_fwd(struct sk_buff *skb, 362610bfc6bSMartin Hundebøll struct batadv_hard_iface *recv_if, 363610bfc6bSMartin Hundebøll struct batadv_orig_node *orig_node_src) 364610bfc6bSMartin Hundebøll { 365610bfc6bSMartin Hundebøll struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface); 366422d2f77SSven Eckelmann struct batadv_orig_node *orig_node_dst; 367610bfc6bSMartin Hundebøll struct batadv_neigh_node *neigh_node = NULL; 368610bfc6bSMartin Hundebøll struct batadv_frag_packet *packet; 3696b5e971aSSven Eckelmann u16 total_size; 370610bfc6bSMartin Hundebøll bool ret = false; 371610bfc6bSMartin Hundebøll 372610bfc6bSMartin Hundebøll packet = (struct batadv_frag_packet *)skb->data; 373610bfc6bSMartin Hundebøll orig_node_dst = batadv_orig_hash_find(bat_priv, packet->dest); 374610bfc6bSMartin Hundebøll if (!orig_node_dst) 375610bfc6bSMartin Hundebøll goto out; 376610bfc6bSMartin Hundebøll 377610bfc6bSMartin Hundebøll neigh_node = batadv_find_router(bat_priv, orig_node_dst, recv_if); 378610bfc6bSMartin Hundebøll if (!neigh_node) 379610bfc6bSMartin Hundebøll goto out; 380610bfc6bSMartin Hundebøll 381610bfc6bSMartin Hundebøll /* Forward the fragment, if the merged packet would be too big to 382610bfc6bSMartin Hundebøll * be assembled. 383610bfc6bSMartin Hundebøll */ 384610bfc6bSMartin Hundebøll total_size = ntohs(packet->total_size); 385610bfc6bSMartin Hundebøll if (total_size > neigh_node->if_incoming->net_dev->mtu) { 386610bfc6bSMartin Hundebøll batadv_inc_counter(bat_priv, BATADV_CNT_FRAG_FWD); 387610bfc6bSMartin Hundebøll batadv_add_counter(bat_priv, BATADV_CNT_FRAG_FWD_BYTES, 388610bfc6bSMartin Hundebøll skb->len + ETH_HLEN); 389610bfc6bSMartin Hundebøll 390a40d9b07SSimon Wunderlich packet->ttl--; 39195d39278SAntonio Quartulli batadv_send_unicast_skb(skb, neigh_node); 392610bfc6bSMartin Hundebøll ret = true; 393610bfc6bSMartin Hundebøll } 394610bfc6bSMartin Hundebøll 395610bfc6bSMartin Hundebøll out: 396610bfc6bSMartin Hundebøll if (orig_node_dst) 3975d967310SSven Eckelmann batadv_orig_node_put(orig_node_dst); 398610bfc6bSMartin Hundebøll if (neigh_node) 39925bb2509SSven Eckelmann batadv_neigh_node_put(neigh_node); 400610bfc6bSMartin Hundebøll return ret; 401610bfc6bSMartin Hundebøll } 402ee75ed88SMartin Hundebøll 403ee75ed88SMartin Hundebøll /** 404*7e9a8c2cSSven Eckelmann * batadv_frag_create() - create a fragment from skb 405ee75ed88SMartin Hundebøll * @skb: skb to create fragment from 406ee75ed88SMartin Hundebøll * @frag_head: header to use in new fragment 4071c2bcc76SSven Eckelmann * @fragment_size: size of new fragment 408ee75ed88SMartin Hundebøll * 409ee75ed88SMartin Hundebøll * Split the passed skb into two fragments: A new one with size matching the 410ee75ed88SMartin Hundebøll * passed mtu and the old one with the rest. The new skb contains data from the 411ee75ed88SMartin Hundebøll * tail of the old skb. 412ee75ed88SMartin Hundebøll * 41362fe710fSSven Eckelmann * Return: the new fragment, NULL on error. 414ee75ed88SMartin Hundebøll */ 415ee75ed88SMartin Hundebøll static struct sk_buff *batadv_frag_create(struct sk_buff *skb, 416ee75ed88SMartin Hundebøll struct batadv_frag_packet *frag_head, 4171c2bcc76SSven Eckelmann unsigned int fragment_size) 418ee75ed88SMartin Hundebøll { 419ee75ed88SMartin Hundebøll struct sk_buff *skb_fragment; 420d3abce78SSven Eckelmann unsigned int header_size = sizeof(*frag_head); 4211c2bcc76SSven Eckelmann unsigned int mtu = fragment_size + header_size; 422ee75ed88SMartin Hundebøll 423ee75ed88SMartin Hundebøll skb_fragment = netdev_alloc_skb(NULL, mtu + ETH_HLEN); 424ee75ed88SMartin Hundebøll if (!skb_fragment) 425ee75ed88SMartin Hundebøll goto err; 426ee75ed88SMartin Hundebøll 4271914848eSAndrew Lunn skb_fragment->priority = skb->priority; 428ee75ed88SMartin Hundebøll 429ee75ed88SMartin Hundebøll /* Eat the last mtu-bytes of the skb */ 430ee75ed88SMartin Hundebøll skb_reserve(skb_fragment, header_size + ETH_HLEN); 431ee75ed88SMartin Hundebøll skb_split(skb, skb_fragment, skb->len - fragment_size); 432ee75ed88SMartin Hundebøll 433ee75ed88SMartin Hundebøll /* Add the header */ 434ee75ed88SMartin Hundebøll skb_push(skb_fragment, header_size); 435ee75ed88SMartin Hundebøll memcpy(skb_fragment->data, frag_head, header_size); 436ee75ed88SMartin Hundebøll 437ee75ed88SMartin Hundebøll err: 438ee75ed88SMartin Hundebøll return skb_fragment; 439ee75ed88SMartin Hundebøll } 440ee75ed88SMartin Hundebøll 441ee75ed88SMartin Hundebøll /** 442*7e9a8c2cSSven Eckelmann * batadv_frag_send_packet() - create up to 16 fragments from the passed skb 443ee75ed88SMartin Hundebøll * @skb: skb to create fragments from 444ee75ed88SMartin Hundebøll * @orig_node: final destination of the created fragments 445ee75ed88SMartin Hundebøll * @neigh_node: next-hop of the created fragments 446ee75ed88SMartin Hundebøll * 4478def0be8SSven Eckelmann * Return: the netdev tx status or a negative errno code on a failure 448ee75ed88SMartin Hundebøll */ 449f50ca95aSAntonio Quartulli int batadv_frag_send_packet(struct sk_buff *skb, 450ee75ed88SMartin Hundebøll struct batadv_orig_node *orig_node, 451ee75ed88SMartin Hundebøll struct batadv_neigh_node *neigh_node) 452ee75ed88SMartin Hundebøll { 453ee75ed88SMartin Hundebøll struct batadv_priv *bat_priv; 454be181015SAntonio Quartulli struct batadv_hard_iface *primary_if = NULL; 455ee75ed88SMartin Hundebøll struct batadv_frag_packet frag_header; 456ee75ed88SMartin Hundebøll struct sk_buff *skb_fragment; 457d3abce78SSven Eckelmann unsigned int mtu = neigh_node->if_incoming->net_dev->mtu; 458d3abce78SSven Eckelmann unsigned int header_size = sizeof(frag_header); 4591c2bcc76SSven Eckelmann unsigned int max_fragment_size, num_fragments; 4608def0be8SSven Eckelmann int ret; 461ee75ed88SMartin Hundebøll 462ee75ed88SMartin Hundebøll /* To avoid merge and refragmentation at next-hops we never send 463ee75ed88SMartin Hundebøll * fragments larger than BATADV_FRAG_MAX_FRAG_SIZE 464ee75ed88SMartin Hundebøll */ 465d3abce78SSven Eckelmann mtu = min_t(unsigned int, mtu, BATADV_FRAG_MAX_FRAG_SIZE); 4660402e444SSven Eckelmann max_fragment_size = mtu - header_size; 4671c2bcc76SSven Eckelmann 4681c2bcc76SSven Eckelmann if (skb->len == 0 || max_fragment_size == 0) 4691c2bcc76SSven Eckelmann return -EINVAL; 4701c2bcc76SSven Eckelmann 4711c2bcc76SSven Eckelmann num_fragments = (skb->len - 1) / max_fragment_size + 1; 4721c2bcc76SSven Eckelmann max_fragment_size = (skb->len - 1) / num_fragments + 1; 473ee75ed88SMartin Hundebøll 474ee75ed88SMartin Hundebøll /* Don't even try to fragment, if we need more than 16 fragments */ 4751c2bcc76SSven Eckelmann if (num_fragments > BATADV_FRAG_MAX_FRAGMENTS) { 4768def0be8SSven Eckelmann ret = -EAGAIN; 4778def0be8SSven Eckelmann goto free_skb; 4788def0be8SSven Eckelmann } 479ee75ed88SMartin Hundebøll 480ee75ed88SMartin Hundebøll bat_priv = orig_node->bat_priv; 481ee75ed88SMartin Hundebøll primary_if = batadv_primary_if_get_selected(bat_priv); 4828def0be8SSven Eckelmann if (!primary_if) { 4838def0be8SSven Eckelmann ret = -EINVAL; 4844ea33ef0SSven Eckelmann goto free_skb; 4858def0be8SSven Eckelmann } 486ee75ed88SMartin Hundebøll 487ee75ed88SMartin Hundebøll /* Create one header to be copied to all fragments */ 488a40d9b07SSimon Wunderlich frag_header.packet_type = BATADV_UNICAST_FRAG; 489a40d9b07SSimon Wunderlich frag_header.version = BATADV_COMPAT_VERSION; 490a40d9b07SSimon Wunderlich frag_header.ttl = BATADV_TTL; 491ee75ed88SMartin Hundebøll frag_header.seqno = htons(atomic_inc_return(&bat_priv->frag_seqno)); 492ee75ed88SMartin Hundebøll frag_header.reserved = 0; 493ee75ed88SMartin Hundebøll frag_header.no = 0; 494ee75ed88SMartin Hundebøll frag_header.total_size = htons(skb->len); 495c0f25c80SAndrew Lunn 496c0f25c80SAndrew Lunn /* skb->priority values from 256->263 are magic values to 497c0f25c80SAndrew Lunn * directly indicate a specific 802.1d priority. This is used 498c0f25c80SAndrew Lunn * to allow 802.1d priority to be passed directly in from VLAN 499c0f25c80SAndrew Lunn * tags, etc. 500c0f25c80SAndrew Lunn */ 501c0f25c80SAndrew Lunn if (skb->priority >= 256 && skb->priority <= 263) 502c0f25c80SAndrew Lunn frag_header.priority = skb->priority - 256; 503c0f25c80SAndrew Lunn 5048fdd0153SAntonio Quartulli ether_addr_copy(frag_header.orig, primary_if->net_dev->dev_addr); 5058fdd0153SAntonio Quartulli ether_addr_copy(frag_header.dest, orig_node->orig); 506ee75ed88SMartin Hundebøll 507ee75ed88SMartin Hundebøll /* Eat and send fragments from the tail of skb */ 508ee75ed88SMartin Hundebøll while (skb->len > max_fragment_size) { 50951c6b429SLinus Lüssing /* The initial check in this function should cover this case */ 51051c6b429SLinus Lüssing if (unlikely(frag_header.no == BATADV_FRAG_MAX_FRAGMENTS - 1)) { 51151c6b429SLinus Lüssing ret = -EINVAL; 51251c6b429SLinus Lüssing goto put_primary_if; 51351c6b429SLinus Lüssing } 51451c6b429SLinus Lüssing 5151c2bcc76SSven Eckelmann skb_fragment = batadv_frag_create(skb, &frag_header, 5161c2bcc76SSven Eckelmann max_fragment_size); 5178def0be8SSven Eckelmann if (!skb_fragment) { 5188def0be8SSven Eckelmann ret = -ENOMEM; 5194ea33ef0SSven Eckelmann goto put_primary_if; 5208def0be8SSven Eckelmann } 521ee75ed88SMartin Hundebøll 522ee75ed88SMartin Hundebøll batadv_inc_counter(bat_priv, BATADV_CNT_FRAG_TX); 523ee75ed88SMartin Hundebøll batadv_add_counter(bat_priv, BATADV_CNT_FRAG_TX_BYTES, 524ee75ed88SMartin Hundebøll skb_fragment->len + ETH_HLEN); 525f50ca95aSAntonio Quartulli ret = batadv_send_unicast_skb(skb_fragment, neigh_node); 526f50ca95aSAntonio Quartulli if (ret != NET_XMIT_SUCCESS) { 5278def0be8SSven Eckelmann ret = NET_XMIT_DROP; 5284ea33ef0SSven Eckelmann goto put_primary_if; 529f50ca95aSAntonio Quartulli } 530f50ca95aSAntonio Quartulli 531ee75ed88SMartin Hundebøll frag_header.no++; 532ee75ed88SMartin Hundebøll } 533ee75ed88SMartin Hundebøll 534ee75ed88SMartin Hundebøll /* Make room for the fragment header. */ 535ee75ed88SMartin Hundebøll if (batadv_skb_head_push(skb, header_size) < 0 || 5368def0be8SSven Eckelmann pskb_expand_head(skb, header_size + ETH_HLEN, 0, GFP_ATOMIC) < 0) { 5378def0be8SSven Eckelmann ret = -ENOMEM; 5384ea33ef0SSven Eckelmann goto put_primary_if; 5398def0be8SSven Eckelmann } 540ee75ed88SMartin Hundebøll 541ee75ed88SMartin Hundebøll memcpy(skb->data, &frag_header, header_size); 542ee75ed88SMartin Hundebøll 543ee75ed88SMartin Hundebøll /* Send the last fragment */ 544ee75ed88SMartin Hundebøll batadv_inc_counter(bat_priv, BATADV_CNT_FRAG_TX); 545ee75ed88SMartin Hundebøll batadv_add_counter(bat_priv, BATADV_CNT_FRAG_TX_BYTES, 546ee75ed88SMartin Hundebøll skb->len + ETH_HLEN); 547f50ca95aSAntonio Quartulli ret = batadv_send_unicast_skb(skb, neigh_node); 5488def0be8SSven Eckelmann /* skb was consumed */ 5498def0be8SSven Eckelmann skb = NULL; 550ee75ed88SMartin Hundebøll 5518def0be8SSven Eckelmann put_primary_if: 55282047ad7SSven Eckelmann batadv_hardif_put(primary_if); 5538def0be8SSven Eckelmann free_skb: 5548def0be8SSven Eckelmann kfree_skb(skb); 555be181015SAntonio Quartulli 556be181015SAntonio Quartulli return ret; 557ee75ed88SMartin Hundebøll } 558