blob: 8a2a3df17fff1f39739b624f61be34b4c24a3b10 [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,
34 struct frag_packet_list_entry *tfp,
35 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{
83 struct 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;
101 struct frag_packet_list_entry *tfp;
102
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 Eckelmann03544402012-05-16 20:23:17 +0200118static struct frag_packet_list_entry *
119batadv_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{
122 struct frag_packet_list_entry *tfp;
Sven Eckelmann96412692012-06-05 22:31:30 +0200123 struct batadv_unicast_frag_packet *tmp_up = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000124 uint16_t search_seqno;
125
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200126 if (up->flags & BATADV_UNI_FRAG_HEAD)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000127 search_seqno = ntohs(up->seqno)+1;
128 else
129 search_seqno = ntohs(up->seqno)-1;
130
131 list_for_each_entry(tfp, head, list) {
132
133 if (!tfp->skb)
134 continue;
135
136 if (tfp->seqno == ntohs(up->seqno))
137 goto mov_tail;
138
Sven Eckelmann96412692012-06-05 22:31:30 +0200139 tmp_up = (struct batadv_unicast_frag_packet *)tfp->skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000140
141 if (tfp->seqno == search_seqno) {
142
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200143 if ((tmp_up->flags & BATADV_UNI_FRAG_HEAD) !=
144 (up->flags & BATADV_UNI_FRAG_HEAD))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000145 return tfp;
146 else
147 goto mov_tail;
148 }
149 }
150 return NULL;
151
152mov_tail:
153 list_move_tail(&tfp->list, head);
154 return NULL;
155}
156
Sven Eckelmann88ed1e772012-05-12 02:09:40 +0200157void batadv_frag_list_free(struct list_head *head)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000158{
159 struct frag_packet_list_entry *pf, *tmp_pf;
160
161 if (!list_empty(head)) {
162
163 list_for_each_entry_safe(pf, tmp_pf, head, list) {
164 kfree_skb(pf->skb);
165 list_del(&pf->list);
166 kfree(pf);
167 }
168 }
169 return;
170}
171
172/* frag_reassemble_skb():
173 * returns NET_RX_DROP if the operation failed - skb is left intact
174 * returns NET_RX_SUCCESS if the fragment was buffered (skb_new will be NULL)
175 * or the skb could be reassembled (skb_new will point to the new packet and
176 * skb was freed)
177 */
Sven Eckelmann88ed1e772012-05-12 02:09:40 +0200178int batadv_frag_reassemble_skb(struct sk_buff *skb, struct bat_priv *bat_priv,
179 struct sk_buff **new_skb)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000180{
181 struct orig_node *orig_node;
182 struct frag_packet_list_entry *tmp_frag_entry;
183 int ret = NET_RX_DROP;
Sven Eckelmann96412692012-06-05 22:31:30 +0200184 struct batadv_unicast_frag_packet *unicast_packet;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000185
Sven Eckelmann96412692012-06-05 22:31:30 +0200186 unicast_packet = (struct batadv_unicast_frag_packet *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000187 *new_skb = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000188
Sven Eckelmannda641192012-05-12 13:48:56 +0200189 orig_node = batadv_orig_hash_find(bat_priv, unicast_packet->orig);
Marek Lindner7aadf882011-02-18 12:28:09 +0000190 if (!orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000191 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000192
193 orig_node->last_frag_packet = jiffies;
194
195 if (list_empty(&orig_node->frag_list) &&
Sven Eckelmann03544402012-05-16 20:23:17 +0200196 batadv_frag_create_buffer(&orig_node->frag_list)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000197 pr_debug("couldn't create frag buffer\n");
198 goto out;
199 }
200
Sven Eckelmann03544402012-05-16 20:23:17 +0200201 tmp_frag_entry = batadv_frag_search_packet(&orig_node->frag_list,
202 unicast_packet);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000203
204 if (!tmp_frag_entry) {
Sven Eckelmann03544402012-05-16 20:23:17 +0200205 batadv_frag_create_entry(&orig_node->frag_list, skb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000206 ret = NET_RX_SUCCESS;
207 goto out;
208 }
209
Sven Eckelmann03544402012-05-16 20:23:17 +0200210 *new_skb = batadv_frag_merge_packet(&orig_node->frag_list,
211 tmp_frag_entry, skb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000212 /* if not, merge failed */
213 if (*new_skb)
214 ret = NET_RX_SUCCESS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000215
Marek Lindner7aadf882011-02-18 12:28:09 +0000216out:
217 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200218 batadv_orig_node_free_ref(orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000219 return ret;
220}
221
Sven Eckelmann88ed1e772012-05-12 02:09:40 +0200222int batadv_frag_send_skb(struct sk_buff *skb, struct bat_priv *bat_priv,
223 struct hard_iface *hard_iface, const uint8_t dstaddr[])
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000224{
Sven Eckelmann96412692012-06-05 22:31:30 +0200225 struct batadv_unicast_packet tmp_uc, *unicast_packet;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200226 struct hard_iface *primary_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000227 struct sk_buff *frag_skb;
Sven Eckelmann96412692012-06-05 22:31:30 +0200228 struct batadv_unicast_frag_packet *frag1, *frag2;
Sven Eckelmann704509b2011-05-14 23:14:54 +0200229 int uc_hdr_len = sizeof(*unicast_packet);
230 int ucf_hdr_len = sizeof(*frag1);
Sven Eckelmann5c77d8b2011-01-25 21:59:26 +0000231 int data_len = skb->len - uc_hdr_len;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200232 int large_tail = 0, ret = NET_RX_DROP;
Sven Eckelmannc2f7f0e2011-02-10 14:33:56 +0000233 uint16_t seqno;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000234
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200235 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200236 if (!primary_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000237 goto dropped;
238
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000239 frag_skb = dev_alloc_skb(data_len - (data_len / 2) + ucf_hdr_len);
Jesper Juhled7809d2011-01-13 21:53:38 +0100240 if (!frag_skb)
241 goto dropped;
Sven Eckelmann5c77d8b2011-01-25 21:59:26 +0000242 skb_reserve(frag_skb, ucf_hdr_len);
Jesper Juhled7809d2011-01-13 21:53:38 +0100243
Sven Eckelmann96412692012-06-05 22:31:30 +0200244 unicast_packet = (struct batadv_unicast_packet *)skb->data;
Jesper Juhled7809d2011-01-13 21:53:38 +0100245 memcpy(&tmp_uc, unicast_packet, uc_hdr_len);
Sven Eckelmann5c77d8b2011-01-25 21:59:26 +0000246 skb_split(skb, frag_skb, data_len / 2 + uc_hdr_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000247
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200248 if (batadv_skb_head_push(skb, ucf_hdr_len - uc_hdr_len) < 0 ||
249 batadv_skb_head_push(frag_skb, ucf_hdr_len) < 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000250 goto drop_frag;
251
Sven Eckelmann96412692012-06-05 22:31:30 +0200252 frag1 = (struct batadv_unicast_frag_packet *)skb->data;
253 frag2 = (struct batadv_unicast_frag_packet *)frag_skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000254
Sven Eckelmann704509b2011-05-14 23:14:54 +0200255 memcpy(frag1, &tmp_uc, sizeof(tmp_uc));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000256
Sven Eckelmann76543d12011-11-20 15:47:38 +0100257 frag1->header.ttl--;
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200258 frag1->header.version = BATADV_COMPAT_VERSION;
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200259 frag1->header.packet_type = BATADV_UNICAST_FRAG;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000260
Marek Lindner32ae9b22011-04-20 15:40:58 +0200261 memcpy(frag1->orig, primary_if->net_dev->dev_addr, ETH_ALEN);
Sven Eckelmann704509b2011-05-14 23:14:54 +0200262 memcpy(frag2, frag1, sizeof(*frag2));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000263
Sven Eckelmannae361ce2011-01-25 22:02:31 +0000264 if (data_len & 1)
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200265 large_tail = BATADV_UNI_FRAG_LARGETAIL;
Sven Eckelmannae361ce2011-01-25 22:02:31 +0000266
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200267 frag1->flags = BATADV_UNI_FRAG_HEAD | large_tail;
Sven Eckelmannae361ce2011-01-25 22:02:31 +0000268 frag2->flags = large_tail;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000269
Marek Lindnere6c10f42011-02-18 12:33:20 +0000270 seqno = atomic_add_return(2, &hard_iface->frag_seqno);
Sven Eckelmannc2f7f0e2011-02-10 14:33:56 +0000271 frag1->seqno = htons(seqno - 1);
272 frag2->seqno = htons(seqno);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000273
Sven Eckelmann9455e342012-05-12 02:09:37 +0200274 batadv_send_skb_packet(skb, hard_iface, dstaddr);
275 batadv_send_skb_packet(frag_skb, hard_iface, dstaddr);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200276 ret = NET_RX_SUCCESS;
277 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000278
279drop_frag:
280 kfree_skb(frag_skb);
281dropped:
282 kfree_skb(skb);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200283out:
284 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200285 batadv_hardif_free_ref(primary_if);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200286 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000287}
288
Sven Eckelmann88ed1e772012-05-12 02:09:40 +0200289int batadv_unicast_send_skb(struct sk_buff *skb, struct bat_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000290{
291 struct ethhdr *ethhdr = (struct ethhdr *)skb->data;
Sven Eckelmann96412692012-06-05 22:31:30 +0200292 struct batadv_unicast_packet *unicast_packet;
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000293 struct orig_node *orig_node;
Marek Lindner44524fc2011-02-10 14:33:53 +0000294 struct neigh_node *neigh_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000295 int data_len = skb->len;
Marek Lindner44524fc2011-02-10 14:33:53 +0000296 int ret = 1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000297
298 /* get routing information */
Linus Lüssing43c70ad2011-02-13 21:13:04 +0000299 if (is_multicast_ether_addr(ethhdr->h_dest)) {
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200300 orig_node = batadv_gw_get_selected_orig(bat_priv);
Linus Lüssing43c70ad2011-02-13 21:13:04 +0000301 if (orig_node)
Marek Lindner44524fc2011-02-10 14:33:53 +0000302 goto find_router;
303 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000304
Antonio Quartulli3d393e42011-07-07 15:35:37 +0200305 /* check for tt host - increases orig_node refcount.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200306 * returns NULL in case of AP isolation
307 */
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200308 orig_node = batadv_transtable_search(bat_priv, ethhdr->h_source,
309 ethhdr->h_dest);
Marek Lindner44524fc2011-02-10 14:33:53 +0000310find_router:
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200311 /* find_router():
Marek Lindnerd0072602011-01-19 20:01:44 +0000312 * - if orig_node is NULL it returns NULL
313 * - increases neigh_nodes refcount if found.
314 */
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200315 neigh_node = batadv_find_router(bat_priv, orig_node, NULL);
Marek Lindner44524fc2011-02-10 14:33:53 +0000316 if (!neigh_node)
Marek Lindnerd0072602011-01-19 20:01:44 +0000317 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000318
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200319 if (batadv_skb_head_push(skb, sizeof(*unicast_packet)) < 0)
Marek Lindnerd0072602011-01-19 20:01:44 +0000320 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000321
Sven Eckelmann96412692012-06-05 22:31:30 +0200322 unicast_packet = (struct batadv_unicast_packet *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000323
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200324 unicast_packet->header.version = BATADV_COMPAT_VERSION;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000325 /* batman packet type: unicast */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200326 unicast_packet->header.packet_type = BATADV_UNICAST;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000327 /* set unicast ttl */
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200328 unicast_packet->header.ttl = BATADV_TTL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000329 /* copy the destination for faster routing */
330 memcpy(unicast_packet->dest, orig_node->orig, ETH_ALEN);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200331 /* set the destination tt version number */
332 unicast_packet->ttvn =
333 (uint8_t)atomic_read(&orig_node->last_ttvn);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000334
Antonio Quartulli3275e7c2012-03-16 18:03:28 +0100335 /* inform the destination node that we are still missing a correct route
336 * for this client. The destination will receive this packet and will
337 * try to reroute it because the ttvn contained in the header is less
338 * than the current one
339 */
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200340 if (batadv_tt_global_client_is_roaming(bat_priv, ethhdr->h_dest))
Antonio Quartulli3275e7c2012-03-16 18:03:28 +0100341 unicast_packet->ttvn = unicast_packet->ttvn - 1;
342
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000343 if (atomic_read(&bat_priv->fragmentation) &&
Sven Eckelmann704509b2011-05-14 23:14:54 +0200344 data_len + sizeof(*unicast_packet) >
Marek Lindnerd0072602011-01-19 20:01:44 +0000345 neigh_node->if_incoming->net_dev->mtu) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000346 /* send frag skb decreases ttl */
Sven Eckelmann76543d12011-11-20 15:47:38 +0100347 unicast_packet->header.ttl++;
Sven Eckelmann88ed1e772012-05-12 02:09:40 +0200348 ret = batadv_frag_send_skb(skb, bat_priv,
349 neigh_node->if_incoming,
350 neigh_node->addr);
Marek Lindner44524fc2011-02-10 14:33:53 +0000351 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000352 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000353
Sven Eckelmann9455e342012-05-12 02:09:37 +0200354 batadv_send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr);
Marek Lindner44524fc2011-02-10 14:33:53 +0000355 ret = 0;
356 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000357
Marek Lindner44524fc2011-02-10 14:33:53 +0000358out:
359 if (neigh_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200360 batadv_neigh_node_free_ref(neigh_node);
Marek Lindner44524fc2011-02-10 14:33:53 +0000361 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200362 batadv_orig_node_free_ref(orig_node);
Marek Lindner44524fc2011-02-10 14:33:53 +0000363 if (ret == 1)
364 kfree_skb(skb);
365 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000366}