blob: d7904bdb1ff95f02599d6ace6652479a097345da [file] [log] [blame]
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001/* Copyright (C) 2010-2012 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002 *
3 * Andreas Langer
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, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000018 */
19
20#include "main.h"
21#include "unicast.h"
22#include "send.h"
23#include "soft-interface.h"
24#include "gateway_client.h"
25#include "originator.h"
26#include "hash.h"
27#include "translation-table.h"
28#include "routing.h"
29#include "hard-interface.h"
30
31
Sven Eckelmann03544402012-05-16 20:23:17 +020032static struct sk_buff *
33batadv_frag_merge_packet(struct list_head *head,
Sven Eckelmann56303d32012-06-05 22:31:31 +020034 struct batadv_frag_packet_list_entry *tfp,
Sven Eckelmann03544402012-05-16 20:23:17 +020035 struct sk_buff *skb)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000036{
Sven Eckelmann96412692012-06-05 22:31:30 +020037 struct batadv_unicast_frag_packet *up;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000038 struct sk_buff *tmp_skb;
Sven Eckelmann96412692012-06-05 22:31:30 +020039 struct batadv_unicast_packet *unicast_packet;
Sven Eckelmann704509b2011-05-14 23:14:54 +020040 int hdr_len = sizeof(*unicast_packet);
41 int uni_diff = sizeof(*up) - hdr_len;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000042
Sven Eckelmann96412692012-06-05 22:31:30 +020043 up = (struct batadv_unicast_frag_packet *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000044 /* set skb to the first part and tmp_skb to the second part */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020045 if (up->flags & BATADV_UNI_FRAG_HEAD) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000046 tmp_skb = tfp->skb;
47 } else {
48 tmp_skb = skb;
49 skb = tfp->skb;
50 }
51
Sven Eckelmann531c9da2011-02-06 23:26:43 +000052 if (skb_linearize(skb) < 0 || skb_linearize(tmp_skb) < 0)
53 goto err;
54
Sven Eckelmann704509b2011-05-14 23:14:54 +020055 skb_pull(tmp_skb, sizeof(*up));
Sven Eckelmann531c9da2011-02-06 23:26:43 +000056 if (pskb_expand_head(skb, 0, tmp_skb->len, GFP_ATOMIC) < 0)
57 goto err;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000058
59 /* move free entry to end */
60 tfp->skb = NULL;
61 tfp->seqno = 0;
62 list_move_tail(&tfp->list, head);
63
64 memcpy(skb_put(skb, tmp_skb->len), tmp_skb->data, tmp_skb->len);
65 kfree_skb(tmp_skb);
66
67 memmove(skb->data + uni_diff, skb->data, hdr_len);
Sven Eckelmann96412692012-06-05 22:31:30 +020068 unicast_packet = (struct batadv_unicast_packet *)skb_pull(skb,
69 uni_diff);
Sven Eckelmannacd34af2012-06-03 22:19:21 +020070 unicast_packet->header.packet_type = BATADV_UNICAST;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000071
72 return skb;
Sven Eckelmann531c9da2011-02-06 23:26:43 +000073
74err:
75 /* free buffered skb, skb will be freed later */
76 kfree_skb(tfp->skb);
77 return NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000078}
79
Sven Eckelmann03544402012-05-16 20:23:17 +020080static void batadv_frag_create_entry(struct list_head *head,
81 struct sk_buff *skb)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000082{
Sven Eckelmann56303d32012-06-05 22:31:31 +020083 struct batadv_frag_packet_list_entry *tfp;
Sven Eckelmann96412692012-06-05 22:31:30 +020084 struct batadv_unicast_frag_packet *up;
85
86 up = (struct batadv_unicast_frag_packet *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000087
88 /* free and oldest packets stand at the end */
89 tfp = list_entry((head)->prev, typeof(*tfp), list);
90 kfree_skb(tfp->skb);
91
92 tfp->seqno = ntohs(up->seqno);
93 tfp->skb = skb;
94 list_move(&tfp->list, head);
95 return;
96}
97
Sven Eckelmann03544402012-05-16 20:23:17 +020098static int batadv_frag_create_buffer(struct list_head *head)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000099{
100 int i;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200101 struct batadv_frag_packet_list_entry *tfp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000102
Sven Eckelmann4d5d2db82012-06-03 22:19:15 +0200103 for (i = 0; i < BATADV_FRAG_BUFFER_SIZE; i++) {
Sven Eckelmann704509b2011-05-14 23:14:54 +0200104 tfp = kmalloc(sizeof(*tfp), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000105 if (!tfp) {
Sven Eckelmann88ed1e772012-05-12 02:09:40 +0200106 batadv_frag_list_free(head);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000107 return -ENOMEM;
108 }
109 tfp->skb = NULL;
110 tfp->seqno = 0;
111 INIT_LIST_HEAD(&tfp->list);
112 list_add(&tfp->list, head);
113 }
114
115 return 0;
116}
117
Sven Eckelmann56303d32012-06-05 22:31:31 +0200118static struct batadv_frag_packet_list_entry *
Sven Eckelmann03544402012-05-16 20:23:17 +0200119batadv_frag_search_packet(struct list_head *head,
Sven Eckelmann96412692012-06-05 22:31:30 +0200120 const struct batadv_unicast_frag_packet *up)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000121{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200122 struct batadv_frag_packet_list_entry *tfp;
Sven Eckelmann96412692012-06-05 22:31:30 +0200123 struct batadv_unicast_frag_packet *tmp_up = NULL;
Sven Eckelmannbbb1f902012-07-08 17:13:15 +0200124 int is_head_tmp, is_head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000125 uint16_t search_seqno;
126
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200127 if (up->flags & BATADV_UNI_FRAG_HEAD)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000128 search_seqno = ntohs(up->seqno)+1;
129 else
130 search_seqno = ntohs(up->seqno)-1;
131
Sven Eckelmannbbb1f902012-07-08 17:13:15 +0200132 is_head = !!(up->flags & BATADV_UNI_FRAG_HEAD);
133
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000134 list_for_each_entry(tfp, head, list) {
135
136 if (!tfp->skb)
137 continue;
138
139 if (tfp->seqno == ntohs(up->seqno))
140 goto mov_tail;
141
Sven Eckelmann96412692012-06-05 22:31:30 +0200142 tmp_up = (struct batadv_unicast_frag_packet *)tfp->skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000143
144 if (tfp->seqno == search_seqno) {
Sven Eckelmannbbb1f902012-07-08 17:13:15 +0200145 is_head_tmp = !!(tmp_up->flags & BATADV_UNI_FRAG_HEAD);
146 if (is_head_tmp != is_head)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000147 return tfp;
148 else
149 goto mov_tail;
150 }
151 }
152 return NULL;
153
154mov_tail:
155 list_move_tail(&tfp->list, head);
156 return NULL;
157}
158
Sven Eckelmann88ed1e772012-05-12 02:09:40 +0200159void batadv_frag_list_free(struct list_head *head)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000160{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200161 struct batadv_frag_packet_list_entry *pf, *tmp_pf;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000162
163 if (!list_empty(head)) {
164
165 list_for_each_entry_safe(pf, tmp_pf, head, list) {
166 kfree_skb(pf->skb);
167 list_del(&pf->list);
168 kfree(pf);
169 }
170 }
171 return;
172}
173
174/* frag_reassemble_skb():
175 * returns NET_RX_DROP if the operation failed - skb is left intact
176 * returns NET_RX_SUCCESS if the fragment was buffered (skb_new will be NULL)
177 * or the skb could be reassembled (skb_new will point to the new packet and
178 * skb was freed)
179 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200180int batadv_frag_reassemble_skb(struct sk_buff *skb,
181 struct batadv_priv *bat_priv,
Sven Eckelmann88ed1e772012-05-12 02:09:40 +0200182 struct sk_buff **new_skb)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000183{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200184 struct batadv_orig_node *orig_node;
185 struct batadv_frag_packet_list_entry *tmp_frag_entry;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000186 int ret = NET_RX_DROP;
Sven Eckelmann96412692012-06-05 22:31:30 +0200187 struct batadv_unicast_frag_packet *unicast_packet;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000188
Sven Eckelmann96412692012-06-05 22:31:30 +0200189 unicast_packet = (struct batadv_unicast_frag_packet *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000190 *new_skb = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000191
Sven Eckelmannda641192012-05-12 13:48:56 +0200192 orig_node = batadv_orig_hash_find(bat_priv, unicast_packet->orig);
Marek Lindner7aadf882011-02-18 12:28:09 +0000193 if (!orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000194 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000195
196 orig_node->last_frag_packet = jiffies;
197
198 if (list_empty(&orig_node->frag_list) &&
Sven Eckelmann03544402012-05-16 20:23:17 +0200199 batadv_frag_create_buffer(&orig_node->frag_list)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000200 pr_debug("couldn't create frag buffer\n");
201 goto out;
202 }
203
Sven Eckelmann03544402012-05-16 20:23:17 +0200204 tmp_frag_entry = batadv_frag_search_packet(&orig_node->frag_list,
205 unicast_packet);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000206
207 if (!tmp_frag_entry) {
Sven Eckelmann03544402012-05-16 20:23:17 +0200208 batadv_frag_create_entry(&orig_node->frag_list, skb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000209 ret = NET_RX_SUCCESS;
210 goto out;
211 }
212
Sven Eckelmann03544402012-05-16 20:23:17 +0200213 *new_skb = batadv_frag_merge_packet(&orig_node->frag_list,
214 tmp_frag_entry, skb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000215 /* if not, merge failed */
216 if (*new_skb)
217 ret = NET_RX_SUCCESS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000218
Marek Lindner7aadf882011-02-18 12:28:09 +0000219out:
220 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200221 batadv_orig_node_free_ref(orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000222 return ret;
223}
224
Sven Eckelmann56303d32012-06-05 22:31:31 +0200225int batadv_frag_send_skb(struct sk_buff *skb, struct batadv_priv *bat_priv,
226 struct batadv_hard_iface *hard_iface,
227 const uint8_t dstaddr[])
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000228{
Sven Eckelmann96412692012-06-05 22:31:30 +0200229 struct batadv_unicast_packet tmp_uc, *unicast_packet;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200230 struct batadv_hard_iface *primary_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000231 struct sk_buff *frag_skb;
Sven Eckelmann96412692012-06-05 22:31:30 +0200232 struct batadv_unicast_frag_packet *frag1, *frag2;
Sven Eckelmann704509b2011-05-14 23:14:54 +0200233 int uc_hdr_len = sizeof(*unicast_packet);
234 int ucf_hdr_len = sizeof(*frag1);
Sven Eckelmann5c77d8b2011-01-25 21:59:26 +0000235 int data_len = skb->len - uc_hdr_len;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200236 int large_tail = 0, ret = NET_RX_DROP;
Sven Eckelmannc2f7f0e2011-02-10 14:33:56 +0000237 uint16_t seqno;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000238
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200239 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200240 if (!primary_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000241 goto dropped;
242
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000243 frag_skb = dev_alloc_skb(data_len - (data_len / 2) + ucf_hdr_len);
Jesper Juhled7809d2011-01-13 21:53:38 +0100244 if (!frag_skb)
245 goto dropped;
Sven Eckelmann5c77d8b2011-01-25 21:59:26 +0000246 skb_reserve(frag_skb, ucf_hdr_len);
Jesper Juhled7809d2011-01-13 21:53:38 +0100247
Sven Eckelmann96412692012-06-05 22:31:30 +0200248 unicast_packet = (struct batadv_unicast_packet *)skb->data;
Jesper Juhled7809d2011-01-13 21:53:38 +0100249 memcpy(&tmp_uc, unicast_packet, uc_hdr_len);
Sven Eckelmann5c77d8b2011-01-25 21:59:26 +0000250 skb_split(skb, frag_skb, data_len / 2 + uc_hdr_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000251
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200252 if (batadv_skb_head_push(skb, ucf_hdr_len - uc_hdr_len) < 0 ||
253 batadv_skb_head_push(frag_skb, ucf_hdr_len) < 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000254 goto drop_frag;
255
Sven Eckelmann96412692012-06-05 22:31:30 +0200256 frag1 = (struct batadv_unicast_frag_packet *)skb->data;
257 frag2 = (struct batadv_unicast_frag_packet *)frag_skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000258
Sven Eckelmann704509b2011-05-14 23:14:54 +0200259 memcpy(frag1, &tmp_uc, sizeof(tmp_uc));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000260
Sven Eckelmann76543d12011-11-20 15:47:38 +0100261 frag1->header.ttl--;
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200262 frag1->header.version = BATADV_COMPAT_VERSION;
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200263 frag1->header.packet_type = BATADV_UNICAST_FRAG;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000264
Marek Lindner32ae9b22011-04-20 15:40:58 +0200265 memcpy(frag1->orig, primary_if->net_dev->dev_addr, ETH_ALEN);
Sven Eckelmann704509b2011-05-14 23:14:54 +0200266 memcpy(frag2, frag1, sizeof(*frag2));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000267
Sven Eckelmannae361ce2011-01-25 22:02:31 +0000268 if (data_len & 1)
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200269 large_tail = BATADV_UNI_FRAG_LARGETAIL;
Sven Eckelmannae361ce2011-01-25 22:02:31 +0000270
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200271 frag1->flags = BATADV_UNI_FRAG_HEAD | large_tail;
Sven Eckelmannae361ce2011-01-25 22:02:31 +0000272 frag2->flags = large_tail;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000273
Marek Lindnere6c10f42011-02-18 12:33:20 +0000274 seqno = atomic_add_return(2, &hard_iface->frag_seqno);
Sven Eckelmannc2f7f0e2011-02-10 14:33:56 +0000275 frag1->seqno = htons(seqno - 1);
276 frag2->seqno = htons(seqno);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000277
Sven Eckelmann9455e342012-05-12 02:09:37 +0200278 batadv_send_skb_packet(skb, hard_iface, dstaddr);
279 batadv_send_skb_packet(frag_skb, hard_iface, dstaddr);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200280 ret = NET_RX_SUCCESS;
281 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000282
283drop_frag:
284 kfree_skb(frag_skb);
285dropped:
286 kfree_skb(skb);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200287out:
288 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200289 batadv_hardif_free_ref(primary_if);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200290 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000291}
292
Sven Eckelmann56303d32012-06-05 22:31:31 +0200293int batadv_unicast_send_skb(struct sk_buff *skb, struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000294{
295 struct ethhdr *ethhdr = (struct ethhdr *)skb->data;
Sven Eckelmann96412692012-06-05 22:31:30 +0200296 struct batadv_unicast_packet *unicast_packet;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200297 struct batadv_orig_node *orig_node;
298 struct batadv_neigh_node *neigh_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000299 int data_len = skb->len;
Marek Lindner44524fc2011-02-10 14:33:53 +0000300 int ret = 1;
Sven Eckelmann0aca2362012-06-19 20:26:30 +0200301 unsigned int dev_mtu;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000302
303 /* get routing information */
Linus Lüssing43c70ad2011-02-13 21:13:04 +0000304 if (is_multicast_ether_addr(ethhdr->h_dest)) {
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200305 orig_node = batadv_gw_get_selected_orig(bat_priv);
Linus Lüssing43c70ad2011-02-13 21:13:04 +0000306 if (orig_node)
Marek Lindner44524fc2011-02-10 14:33:53 +0000307 goto find_router;
308 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000309
Antonio Quartulli3d393e42011-07-07 15:35:37 +0200310 /* check for tt host - increases orig_node refcount.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200311 * returns NULL in case of AP isolation
312 */
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200313 orig_node = batadv_transtable_search(bat_priv, ethhdr->h_source,
314 ethhdr->h_dest);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200315
Marek Lindner44524fc2011-02-10 14:33:53 +0000316find_router:
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200317 /* find_router():
Marek Lindnerd0072602011-01-19 20:01:44 +0000318 * - if orig_node is NULL it returns NULL
319 * - increases neigh_nodes refcount if found.
320 */
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200321 neigh_node = batadv_find_router(bat_priv, orig_node, NULL);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200322
Marek Lindner44524fc2011-02-10 14:33:53 +0000323 if (!neigh_node)
Marek Lindnerd0072602011-01-19 20:01:44 +0000324 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000325
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200326 if (batadv_skb_head_push(skb, sizeof(*unicast_packet)) < 0)
Marek Lindnerd0072602011-01-19 20:01:44 +0000327 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000328
Sven Eckelmann96412692012-06-05 22:31:30 +0200329 unicast_packet = (struct batadv_unicast_packet *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000330
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200331 unicast_packet->header.version = BATADV_COMPAT_VERSION;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000332 /* batman packet type: unicast */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200333 unicast_packet->header.packet_type = BATADV_UNICAST;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000334 /* set unicast ttl */
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200335 unicast_packet->header.ttl = BATADV_TTL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000336 /* copy the destination for faster routing */
337 memcpy(unicast_packet->dest, orig_node->orig, ETH_ALEN);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200338 /* set the destination tt version number */
Sven Eckelmannbbb1f902012-07-08 17:13:15 +0200339 unicast_packet->ttvn = (uint8_t)atomic_read(&orig_node->last_ttvn);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000340
Antonio Quartulli3275e7c2012-03-16 18:03:28 +0100341 /* inform the destination node that we are still missing a correct route
342 * for this client. The destination will receive this packet and will
343 * try to reroute it because the ttvn contained in the header is less
344 * than the current one
345 */
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200346 if (batadv_tt_global_client_is_roaming(bat_priv, ethhdr->h_dest))
Antonio Quartulli3275e7c2012-03-16 18:03:28 +0100347 unicast_packet->ttvn = unicast_packet->ttvn - 1;
348
Sven Eckelmann0aca2362012-06-19 20:26:30 +0200349 dev_mtu = neigh_node->if_incoming->net_dev->mtu;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000350 if (atomic_read(&bat_priv->fragmentation) &&
Sven Eckelmann0aca2362012-06-19 20:26:30 +0200351 data_len + sizeof(*unicast_packet) > dev_mtu) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000352 /* send frag skb decreases ttl */
Sven Eckelmann76543d12011-11-20 15:47:38 +0100353 unicast_packet->header.ttl++;
Sven Eckelmann88ed1e772012-05-12 02:09:40 +0200354 ret = batadv_frag_send_skb(skb, bat_priv,
355 neigh_node->if_incoming,
356 neigh_node->addr);
Marek Lindner44524fc2011-02-10 14:33:53 +0000357 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000358 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000359
Sven Eckelmann9455e342012-05-12 02:09:37 +0200360 batadv_send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr);
Marek Lindner44524fc2011-02-10 14:33:53 +0000361 ret = 0;
362 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000363
Marek Lindner44524fc2011-02-10 14:33:53 +0000364out:
365 if (neigh_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200366 batadv_neigh_node_free_ref(neigh_node);
Marek Lindner44524fc2011-02-10 14:33:53 +0000367 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200368 batadv_orig_node_free_ref(orig_node);
Marek Lindner44524fc2011-02-10 14:33:53 +0000369 if (ret == 1)
370 kfree_skb(skb);
371 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000372}